C++ Linked Lists
list_reading/.cproject
list_reading/.project
list_reading org.eclipse.cdt.managedbuilder.core.genmakebuilder clean,full,incremental, org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder full,incremental, org.eclipse.cdt.core.cnature org.eclipse.cdt.core.ccnature org.eclipse.cdt.managedbuilder.core.managedBuildNature org.eclipse.cdt.managedbuilder.core.ScannerConfigNature
list_reading/.settings/language.settings.xml
list_reading/book.cpp
#include "book.h" using namespace std; /** * Create a book. * * @param id the Gutenberg ID for this book * @param authorInfo the author of the book * @param title the title of the book */ Book::Book (std::string theId, std::string authorInfo, std::string theTitle) : title(theTitle), id(theId), authorName(authorInfo) { } bool Book::operator< (const Book& b) const { return id < b.id; } bool Book::operator== (const Book& b) const { return (id == b.id); } std::ostream& operator<< (std::ostream& out, const Book& b) { out << b.getID() << "\t" << b.getAuthor() << "\t" << b.getTitle(); return out; } std::istream& operator>> (std::istream& in, Book& b) { string line; getline (in, line); if (!in.good()) return in; int tab1 = line.find ("\t"); int tab2 = line.find ("\t", tab1+1); string id = line.substr(0, tab1); string author = line.substr (tab1+1, tab2-tab1-1); string title = line.substr(tab2+1); b.setID (id); b.setAuthor (author); b.setTitle (title); return in; }
list_reading/book.d
book.o: book.cpp book.h counted.h
list_reading/book.h
#ifndef BOOK_H #define BOOK_H #include <iostream> #include <string> #include "counted.h" /** * An ebook. */ class Book { private: std::string title; std::string id; std::string authorName; Counted _counted; public: /** * Create a default book. * * @post getID() == "" && getTitle() == "" && getAuthor() == "" */ Book() {} /** * Create a book. * * @param theId the Gutenberg ID for this book * @param authorInfo the author of the book * @param theTitle the title of the book */ Book (std::string theId, std::string authorInfo, std::string theTitle); /** * The Gutenberg project ID for this book */ std::string getID() const {return id;} void setID (std::string ID) {id = ID;} /** * Title of this book */ std::string getTitle() const {return title;} void setTitle (std::string theTitle) {title = theTitle;} /** * Name of the book's author(s) */ std::string getAuthor() const {return authorName;} void setAuthor (std::string name) {authorName = name;} /** * Ordered by ID */ bool operator< (const Book&) const; bool operator== (const Book&) const; }; // Print a book as id, tab, author, tab, title std::ostream& operator<< (std::ostream& out, const Book& b); // Read a book. Input format is id, then author, then title, // all on one line, separated by tab characters. std::istream& operator>> (std::istream& in, Book& b); #endif
list_reading/book.o
list_reading/counted.cpp
list_reading/counted.cpp
/*
* counted.cpp
*
* Created on: Apr 10, 2017
* Author: zeil
*/
#include
"counted.h"
int
Counted
::
numObjects
=
0
;
list_reading/counted.d
counted.o: counted.cpp counted.h
list_reading/counted.h
/* * counted.h * * Created on: Apr 10, 2017 * Author: zeil */ #ifndef COUNTED_H_ #define COUNTED_H_ /** * Utility for detecting memory leaks. */ class Counted { /** * A count of the number of Counted objects currently in use. */ static int numObjects; // = 0; public: Counted () { ++numObjects; } Counted (const Counted& c) { ++numObjects; } ~Counted() {--numObjects;} static int getCurrentCount() {return numObjects;} }; #endif /* COUNTED_H_ */
list_reading/counted.o
list_reading/Doxyfile
# Doxyfile 1.8.3.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a hash (#) is considered a comment and will be ignored. # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" "). #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or sequence of words) that should # identify the project. Note that if you do not use Doxywizard you need # to put quotes around the project name if it contains spaces. PROJECT_NAME = Reading Lists # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = structs, modular # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer # a quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = # With the PROJECT_LOGO tag one can specify an logo or icon that is # included in the documentation. The maximum height of the logo should not # exceed 55 pixels and the maximum width should not exceed 200 pixels. # Doxygen will copy the logo to the output directory. PROJECT_LOGO = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = docs # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = YES # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. Note that you specify absolute paths here, but also # relative paths, which will be relative from the directory where doxygen is # started. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful if your file system # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = YES # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding # "class=itcl::class" will allow you to use the command class in the # itcl::class meaning. TCL_SUBST = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, # and language is one of the parsers supported by doxygen: IDL, Java, # Javascript, CSharp, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, # C++. For instance to make doxygen treat .inc files as Fortran files (default # is PHP), and .f files as C (default is Fortran), use: inc=Fortran f=C. Note # that for custom extensions you also need to set FILE_PATTERNS otherwise the # files are not read by doxygen. EXTENSION_MAPPING = # If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all # comments according to the Markdown format, which allows for more readable # documentation. See http://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you # can mix doxygen, HTML, and XML commands with Markdown formatting. # Disable only in case of backward compatibilities issues. MARKDOWN_SUPPORT = YES # When enabled doxygen tries to link words that correspond to documented classes, # or namespaces to their corresponding documentation. Such a link can be # prevented in individual cases by by putting a % sign in front of the word or # globally by setting AUTOLINK_SUPPORT to NO. AUTOLINK_SUPPORT = YES # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also makes the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate # getter and setter methods for a property. Setting this option to YES (the # default) will make doxygen replace the get and set methods by a property in # the documentation. This will only work if the methods are indeed getting or # setting a simple type. If this is not the case, or you want to show the # methods anyway, you should set this option to NO. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and # unions are shown inside the group in which they are included (e.g. using # @ingroup) instead of on a separate page (for HTML and Man pages) or # section (for LaTeX and RTF). INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and # unions with only public data fields will be shown inline in the documentation # of the scope in which they are defined (i.e. file, namespace, or group # documentation), provided this scope is documented. If set to NO (the default), # structs, classes, and unions are shown on a separate page (for HTML and Man # pages) or section (for LaTeX and RTF). INLINE_SIMPLE_STRUCTS = NO # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO # Similar to the SYMBOL_CACHE_SIZE the size of the symbol lookup cache can be # set using LOOKUP_CACHE_SIZE. This cache is used to resolve symbols given # their name and scope. Since this can be an expensive process and often the # same symbol appear multiple times in the code, doxygen keeps a cache of # pre-resolved symbols. If the cache is too small doxygen will become slower. # If the cache is too large, memory is wasted. The cache size is given by this # formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols. LOOKUP_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = YES # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal # scope will be included in the documentation. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespaces are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen # will list include files with double quotes in the documentation # rather than with sharp brackets. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen # will sort the (brief and detailed) documentation of class members so that # constructors and destructors are listed first. If set to NO (the default) # the constructors will appear in the respective orders defined by # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to # do proper type resolution of all parameters of a function it will reject a # match between the prototype and the implementation of a member function even # if there is only one candidate or it is obvious which candidate to choose # by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen # will still accept a match between prototype and implementation in such cases. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST = YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if section-label ... \endif # and \cond section-label ... \endcond blocks. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or macro consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and macros in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # Set the SHOW_FILES tag to NO to disable the generation of the Files page. # This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default is YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the # Namespaces page. # This will remove the Namespaces entry from the Quick Index # and from the Folder Tree View (if specified). The default is YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command <command> <input-file>, where <command> is the value of # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. # You can optionally specify a file name after the option, if omitted # DoxygenLayout.xml will be used as the name of the layout file. LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files # containing the references data. This must be a list of .bib files. The # .bib extension is automatically appended if omitted. Using this command # requires the bibtex tool to be installed. See also # http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style # of the bibliography can be controlled using LATEX_BIB_STYLE. To use this # feature you need bibtex and perl available in the search path. Do not use # file names with spaces, bibtex cannot handle them. CITE_BIB_FILES = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # The WARN_NO_PARAMDOC option can be enabled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py # *.f90 *.f *.for *.vhd *.vhdl FILE_PATTERNS = # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command <filter> <input-file>, where <filter> # is the value of the INPUT_FILTER tag, and <input-file> is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. # If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. # Doxygen will compare the file name with each pattern and apply the # filter if there is a match. # The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty or if # non of the patterns match the file name, INPUT_FILTER is applied. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) # and it is also possible to disable source filtering for a specific pattern # using *.ext= (so without naming a filter). This option only has effect when # FILTER_SOURCE_FILES is enabled. FILTER_SOURCE_PATTERNS = # If the USE_MD_FILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page (index.html). # This can be useful if you have a project on for instance GitHub and want reuse # the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C, C++ and Fortran comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = NO # If the REFERENCES_RELATION tag is set to YES # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. # Otherwise they will link to the documentation. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. Note that when using a custom header you are responsible # for the proper inclusion of any scripts and style sheets that doxygen # needs, which is dependent on the configuration options used. # It is advised to generate a default header using "doxygen -w html # header.html footer.html stylesheet.css YourConfigFile" and then modify # that header. Note that the header is subject to change so you typically # have to redo this when upgrading to a newer version of doxygen or when # changing the value of configuration settings such as GENERATE_TREEVIEW! HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If left blank doxygen will # generate a default style sheet. Note that it is recommended to use # HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this # tag will in the future become obsolete. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify an additional # user-defined cascading style sheet that is included after the standard # style sheets created by doxygen. Using this option one can overrule # certain style aspects. This is preferred over using HTML_STYLESHEET # since it does not replace the standard style sheet and is therefor more # robust against future updates. Doxygen will copy the style sheet file to # the output directory. HTML_EXTRA_STYLESHEET = # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath$ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that # the files will be copied as-is; there are no commands or markers available. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. # Doxygen will adjust the colors in the style sheet and background images # according to this color. Hue is specified as an angle on a colorwheel, # see http://en.wikipedia.org/wiki/Hue for more information. # For instance the value 0 represents red, 60 is yellow, 120 is green, # 180 is cyan, 240 is blue, 300 purple, and 360 is red again. # The allowed range is 0 to 359. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of # the colors in the HTML output. For a value of 0 the output will use # grayscales only. A value of 255 will produce the most vivid colors. HTML_COLORSTYLE_SAT = 100 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to # the luminance component of the colors in the HTML output. Values below # 100 gradually make the output lighter, whereas values above 100 make # the output darker. The value divided by 100 is the actual gamma applied, # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, # and 100 does not change the gamma. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting # this to NO can help when comparing the output of multiple runs. HTML_TIMESTAMP = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. HTML_DYNAMIC_SECTIONS = NO # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of # entries shown in the various tree structured indices initially; the user # can expand and collapse entries dynamically later on. Doxygen will expand # the tree to such a level that at most the specified number of entries are # visible (unless a fully collapsed tree already exceeds this amount). # So setting the number of entries 1 will produce a full collapsed tree by # default. 0 is a special value representing an infinite number of entries # and will result in a full expanded tree by default. HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html # for more information. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.Project # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely # identify the documentation publisher. This should be a reverse domain-name # style string, e.g. com.mycompany.MyDocSet.documentation. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated # that can be used as input for Qt's qhelpgenerator to generate a # Qt Compressed Help (.qch) of the generated HTML documentation. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can # be used to specify the file name of the resulting .qch file. # The path specified is relative to the HTML output folder. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#namespace QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to # add. For more information please see # http://doc.trolltech.com/qthelpproject.html#custom-filters QHP_CUST_FILTER_NAME = # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see # <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters"> # Qt Help Project / Custom Filters</a>. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's # filter section matches. # <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes"> # Qt Help Project / Filter Attributes</a>. QHP_SECT_FILTER_ATTRS = # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can # be used to specify the location of Qt's qhelpgenerator. # If non-empty doxygen will try to run qhelpgenerator on the generated # .qhp file. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files # will be generated, which together with the HTML files, form an Eclipse help # plugin. To install this plugin and make it available under the help contents # menu in Eclipse, the contents of the directory containing the HTML and XML # files needs to be copied into the plugins directory of eclipse. The name of # the directory within the plugins directory should be the same as # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before # the help appears. GENERATE_ECLIPSEHELP = NO # A unique identifier for the eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have # this name. ECLIPSE_DOC_ID = org.doxygen.Project # The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) # at top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. Since the tabs have the same information as the # navigation tree you can set this option to NO if you already set # GENERATE_TREEVIEW to YES. DISABLE_INDEX = NO # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. # If the tag value is set to YES, a side panel will be generated # containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). # Windows users are probably better off using the HTML help feature. # Since the tree basically has the same information as the tab index you # could consider to set DISABLE_INDEX to NO when enabling this option. GENERATE_TREEVIEW = NO # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values # (range [0,1..20]) that doxygen will group on one line in the generated HTML # documentation. Note that a value of 0 will completely suppress the enum # values from appearing in the overview section. ENUM_VALUES_PER_LINE = 4 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open # links to external symbols imported via tag files in a separate window. EXT_LINKS_IN_WINDOW = NO # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # when you change the font size after a successful doxygen run you need # to manually remove any form_*.png images from the HTML output directory # to force them to be regenerated. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are # not supported properly for IE 6.0, but are supported on all modern browsers. # Note that when changing this option you need to delete any form_*.png files # in the HTML output before the changes have effect. FORMULA_TRANSPARENT = YES # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax # (see http://www.mathjax.org) which uses client side Javascript for the # rendering instead of using prerendered bitmaps. Use this if you do not # have LaTeX installed or if you want to formulas look prettier in the HTML # output. When enabled you may also need to install MathJax separately and # configure the path to it using the MATHJAX_RELPATH option. USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # thA MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and # SVG. The default value is HTML-CSS, which is slower, but has the best # compatibility. MATHJAX_FORMAT = HTML-CSS # When MathJax is enabled you need to specify the location relative to the # HTML output directory using the MATHJAX_RELPATH option. The destination # directory should contain the MathJax.js script. For instance, if the mathjax # directory is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to # the MathJax Content Delivery Network so you can quickly see the result without # installing MathJax. # However, it is strongly recommended to install a local # copy of MathJax from http://www.mathjax.org before deployment. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension # names that should be enabled during MathJax rendering. MATHJAX_EXTENSIONS = # When the SEARCHENGINE tag is enabled doxygen will generate a search box # for the HTML output. The underlying search engine uses javascript # and DHTML and should work on any modern browser. Note that when using # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets # (GENERATE_DOCSET) there is already a search function so this one should # typically be disabled. For large projects the javascript based search engine # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. SEARCHENGINE = YES # When the SERVER_BASED_SEARCH tag is enabled the search engine will be # implemented using a web server instead of a web client using Javascript. # There are two flavours of web server based search depending on the # EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for # searching and an index file used by the script. When EXTERNAL_SEARCH is # enabled the indexing and searching needs to be provided by external tools. # See the manual for details. SERVER_BASED_SEARCH = NO # When EXTERNAL_SEARCH is enabled doxygen will no longer generate the PHP # script for searching. Instead the search results are written to an XML file # which needs to be processed by an external indexer. Doxygen will invoke an # external search engine pointed to by the SEARCHENGINE_URL option to obtain # the search results. Doxygen ships with an example indexer (doxyindexer) and # search engine (doxysearch.cgi) which are based on the open source search engine # library Xapian. See the manual for configuration details. EXTERNAL_SEARCH = NO # The SEARCHENGINE_URL should point to a search engine hosted by a web server # which will returned the search results when EXTERNAL_SEARCH is enabled. # Doxygen ships with an example search engine (doxysearch) which is based on # the open source search engine library Xapian. See the manual for configuration # details. SEARCHENGINE_URL = # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed # search data is written to a file for indexing by an external tool. With the # SEARCHDATA_FILE tag the name of this file can be specified. SEARCHDATA_FILE = searchdata.xml # When SERVER_BASED_SEARCH AND EXTERNAL_SEARCH are both enabled the # EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is # useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple # projects and redirect the results back to the right project. EXTERNAL_SEARCH_ID = # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen # projects other than the one defined by this configuration file, but that are # all added to the same external search index. Each project needs to have a # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id # of to a relative location where the documentation can be found. # The format is: EXTRA_SEARCH_MAPPINGS = id1=loc1 id2=loc2 ... EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. # Note that when enabling USE_PDFLATEX this option is only used for # generating bitmaps for formulas in the HTML output, but not in the # Makefile that is written to the output directory. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for # the generated latex document. The footer should contain everything after # the last chapter. If it is left blank doxygen will generate a # standard footer. Notice: only use this tag if you know what you are doing! LATEX_FOOTER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = YES # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO # If LATEX_SOURCE_CODE is set to YES then doxygen will include # source code with syntax highlighting in the LaTeX output. # Note that which sources are shown also depends on other settings # such as SOURCE_BROWSER. LATEX_SOURCE_CODE = NO # The LATEX_BIB_STYLE tag can be used to specify the style to use for the # bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See # http://en.wikipedia.org/wiki/BibTeX for more info. LATEX_BIB_STYLE = plain #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load style sheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. # This is useful # if you want to understand what is going on. # On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # pointed to by INCLUDE_PATH will be searched when a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition that # overrules the definition found in the source code. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all references to function-like macros # that are alone on a line, have an all uppercase name, and do not end with a # semicolon, because these will confuse the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. For each # tag file the location of the external documentation should be added. The # format of a tag file without this location is as follows: # # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths # or URLs. Note that each tag file must have a unique name (where the name does # NOT include the path). If a tag file is not located in the directory in which # doxygen is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option also works with HAVE_DOT disabled, but it is recommended to # install and use dot, since it yields more powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = NO # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is # allowed to run in parallel. When set to 0 (the default) doxygen will # base this on the number of processors available in the system. You can set it # explicitly to a value larger than 0 to get control over the balance # between CPU load and processing speed. DOT_NUM_THREADS = 0 # By default doxygen will use the Helvetica font for all dot files that # doxygen generates. When you want a differently looking font you can specify # the font name using DOT_FONTNAME. You need to make sure dot is able to find # the font, which can be done by putting it in a standard location or by setting # the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the # directory containing the font. DOT_FONTNAME = Helvetica # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the Helvetica font. # If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to # set the path where dot can find it. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If the UML_LOOK tag is enabled, the fields and methods are shown inside # the class node. If there are many fields or methods and many nodes the # graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS # threshold limits the number of items for each type to make the size more # managable. Set this to 0 for no limit. Note that the threshold may be # exceeded by 50% before the limit is enforced. UML_LIMIT_NUM_FIELDS = 10 # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will generate a graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are svg, png, jpg, or gif. # If left blank png will be used. If you choose svg you need to set # HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible in IE 9+ (other browsers do not have this requirement). DOT_IMAGE_FORMAT = png # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to # enable generation of interactive SVG images that allow zooming and panning. # Note that this requires a modern browser other than Internet Explorer. # Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you # need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible. Older versions of IE do not have SVG support. INTERACTIVE_SVG = NO # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MSCFILE_DIRS tag can be used to specify one or more directories that # contain msc files that are included in the documentation (see the # \mscfile command). MSCFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = NO # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = YES # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES
list_reading/longList.txt
| etext27905 | Guizot, M. (François), 1787-1874 | Histoire parlementaire de France, Volume I. |
| etext27911 | Reid, Mayne, 1818-1883 | The Giraffe Hunters |
| etext27936 | Jacomy-Régnier | Histoire des nombres et de la numération mécanique |
| etext28006 | Oliphant, Mrs. (Margaret), 1828-1897 | The Perpetual Curate |
| etext28156 | Sharkey, Jack, 1931- | Minor Detail |
| etext2022 | Lang, Andrew, 1844-1912 | Angling Sketches |
| etext7356 | Ralphson, G. Harvey (George Harvey), 1879-1940 | The Boy Scout Camera Club, or, the Confession of a Photograph |
| etext10860 | Beesley, A.H. | The Gracchi Marius and Sulla |
| etext10888 | Anonymous | Arthur Hamilton, and His Dog |
| etext20245 | Müller, George, 1805-1898 | A Narrative of Some of the Lord's Dealings with George Müller |
| etext20307 | Leslie, Emma | Kate's Ordeal |
| etext28987 | Harris, Credo Fitch, 1874-1956 | Sunlight Patch |
| etext29193 | Slesar, Henry, 1927-2002 | Dream Town |
| etext12068 | Knox, Thomas Wallace, 1835-1896 | Camp-Fire and Cotton-Field |
| etext18717 | Doyle, Arthur Conan, Sir, 1859-1930 | Micah Clarke - Tome II |
| etext18781 | Marlowe, Christopher, 1564-1593 | Hero and Leander |
| etext18874 | Rolt-Wheeler, Francis, 1876-1960 | The Boy With the U. S. Foresters |
| etext18893 | Symonds, John Addington, 1840-1893 | Sketches and Studies in Italy and Greece, Complete |
| etext18921 | Sue, Eugène, 1804-1857 | Les mystères de Paris, Tome I |
| etext18927 | Lowndes, Marie Belloc, 1868-1947 | The Uttermost Farthing |
| etext19024 | Guerrazzi, Francesco Domenico, 1804-1873 | La battaglia di Benevento |
| etext19029 | Norton, Andre, 1912-2005 | The Gifts of Asti |
| etext19052 | O'Neill, Elizabeth (Elizabeth Speakman), 1877- | Stories That Words Tell Us |
| etext19076 | Piper, H. Beam, 1904-1964 | Naudsonce |
| etext19096 | Horsford, Mary Gardiner, 1824-1855 | Indian Legends and Other Poems |
| etext19158 | ||
| etext19161 | Lennep, J. van (Jacob), 1802-1868 | De Roos van Dekama |
| etext23651 | Douglas, Jack | Test Rocket! |
| etext23661 | Nesbit, E. (Edith), 1858-1924 | The Book of Dragons |
| etext23697 | Smith, Francis Hopkinson, 1838-1915 | Forty Minutes Late |
| etext23699 | Smith, Francis Hopkinson, 1838-1915 | Abijah's Bubble |
| etext23833 | Shang, Yang, -338 BC | 商君書 |
| etext23843 | Weng, Gui | 明月台 |
| etext23849 | Tang, Xianzu, 1550-1616 | 牡丹亭 |
| etext23926 | Various | St. Nicholas Magazine for Boys and Girls, V. 5, Nov 1877-Nov 1878 |
| etext23964 | Burnett, Frances Hodgson, 1849-1924 | Sara Crewe: or, What Happened at Miss Minchin's Boarding School |
| etext18458 | Norton, Andre, 1912-2005 | Star Born |
| etext18476 | Flaubert, Gustave, 1821-1880 | Yksinkertainen sydän |
| etext18504 | Clarke, Edward Hammond, 1820-1877 | Sex in Education |
| etext4643 | Bailey, Almira | Vignettes of San Francisco |
| etext4714 | Lee, Jennette, 1860-1951 | Mr. Achilles |
| etext10677 | Harris, Thaddeus Mason | Biographical Memorials of James Oglethorpe |
| etext4314 | Tilden, John Henry, 1851-1940 | Appendicitis |
| etext14034 | Whistler, Charles W. (Charles Watts), 1856-1913 | King Alfred's Viking |
| etext6435 | Taylor, Frederick Winslow, 1856-1915 | The Principles of Scientific Management |
| etext7275 | Eliot, T. S. (Thomas Stearns), 1888-1965 | Ezra Pound: His Metric and Poetry |
| etext7316 | Shen, Kuo, 1031-1095 | 夢溪筆談, Volume 22-26 |
| etext7368 | Glaspell, Susan, 1882-1948 | Lifted Masks; stories |
| etext7517 | Wharton, Edith, 1862-1937 | Sanctuary |
| etext7556 | Twain, Mark, 1835-1910 | Quotes and Images From The Works of Mark Twain |
| etext7559 | Goldsmith, Lewis, 1763-1846 | Quotes and Images from The Court of St. Cloud |
| etext7589 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | The Caxtons — Volume 04 |
| etext7622 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Pelham — Volume 08 |
| etext2291 | MacDonald, George, 1824-1905 | David Elginbrod |
| etext2335 | Goethe, Johann Wolfgang von, 1749-1832 | Wilhelm Meisters Lehrjahre — Band 1 |
| etext21587 | Doyle, Arthur Conan, Sir, 1859-1930 | The Parasite |
| etext21639 | Webster, Jean, 1876-1916 | When Patty Went to College |
| etext9129 | ||
| etext10229 | Shackleton, Ernest Henry, Sir, 1874-1922 | My South Polar Expedition |
| etext10326 | Kingsley, Charles, 1819-1875 | David |
| etext11225 | Various | Punch, or the London Charivari, Volume 156, January 22, 1919 |
| etext30328 | Francis, J. G. (Joseph Greene), 1849-1930 | A Book of Cheerful Cats and Other Animated Animals |
| etext10535 | Pierpont, John | Jingle Bells |
| etext20202 | Walnut Growing in Oregon | |
| etext9131 | ||
| etext9118 | ||
| etext3614 | Bunyan, John, 1628-1688 | An Exhortation to Peace and Unity |
| etext3622 | Trollope, Anthony, 1815-1882 | The Duke's Children |
| etext3669 | Reade, Charles, 1814-1884 | A Woman-Hater |
| etext9124 | ||
| etext2919 | Galsworthy, John, 1867-1933 | The Little Man |
| etext2944 | Emerson, Ralph Waldo, 1803-1882 | Essays — First Series |
| etext2949 | Thanet, Octave, 1850-1934 | Stories of a Western Town |
| etext2962 | Casanova, Giacomo, 1725-1798 | Memoirs of Casanova — Volume 12: Return to Paris |
| etext2995 | Tacitus, Cornelius, 56-120 | Tacitus on Germany |
| etext3961 | Coppée, François, 1842-1908 | A Romance of Youth — Volume 4 |
| etext16150 | Holmes, Mary Jane, 1825-1907 | Miss McDonald |
| etext6052 | Hornaday, William Temple, 1854-1937 | The Minds and Manners of Wild Animals |
| etext27651 | Davenport, Daniel, 1773-1860 | The Two Hundredth Anniversary of the Settlement of the Town of New Milford, Conn. June 17th, 1907 |
| etext28252 | Mayson, Walter H. (Walter Henry), 1835-1904 | Violin Making |
| etext30133 | Various | Notes and Queries, Number 217, December 24, 1853 |
| etext30163 | Vasárnapi Könyv | |
| etext30182 | Various | Punch, or the London Charivari, Vol. 98, March 15, 1890 |
| etext30273 | Eliot, George, 1819-1880 | Tom and Maggie Tulliver |
| etext10064 | Farnol, Jeffery, 1878-1952 | Beltane the Smith |
| etext6431 | Hough, Emerson, 1857-1923 | The Law of the Land |
| etext6399 | Suetonius Tranquillus, Gaius, 75-160 | The Lives of the Twelve Caesars, Volume 14: Lives of the Poets |
| etext6339 | Blaine, Captain John | The Boy Scouts on a Submarine |
| etext13243 | Crawford, F. Marion (Francis Marion), 1854-1909 | In the Palace of the King |
| etext13254 | Hastings, Milo M. (Milo Milton), 1884-1957 | The Dollar Hen |
| etext13265 | Anonymous | A Book of Fruits and Flowers |
| etext14335 | Various | The Nursery, Volume 17, No. 101, May, 1875 |
| etext14373 | Craik, Dinah Maria Mulock, 1826-1887 | A Noble Life |
| etext3359 | Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773 | Letters to His Son on the Art of Becoming a Man of the World and a Gentleman, 1759-65 |
| etext5840 | Twain, Mark, 1835-1910 | Sketches New and Old, Part 5. |
| etext5882 | Otis, James, 1848-1912 | A District Messenger Boy and a Necktie Party |
| etext26693 | Various | Punch, or the London Charivari, Vol. 147, August 26th, 1914 |
| etext1070 | ||
| etext28948 | Lawrence, D. H. (David Herbert), 1885-1930 | The Rainbow |
| etext30153 | Vaknin, Samuel, 1961- | Abuse, Torture, and Trauma and their Consequences and Effects |
| etext32376 | Nunn, Joshua A. | Notes on Stable Management in India and the Colonies |
| etext14355 | Hough, Emerson, 1857-1923 | 54-40 or Fight |
| etext30528 | Horne, Anderson | The Day of the Dog |
| etext12680 | Zangwill, Israel, 1864-1926 | Children of the Ghetto |
| etext12698 | Bang, Herman, 1857-1912 | Stuk |
| etext26889 | Stacpoole, H. De Vere (Henry De Vere), 1863-1951 | The Pools of Silence |
| etext9121 | ||
| etext6487 | Barbour, Ralph Henry, 1870-1944 | The New Boy at Hilltop |
| etext6495 | Myers, Gustavus, 1872-1942 | Great Fortunes from Railroads |
| etext6548 | Sabatini, Rafael, 1875-1950 | Captain Blood |
| etext10008 | ||
| etext29319 | Hopper, James, 1876-1956 | The Trimming of Goosie |
| etext29397 | Puiseux, P. (Pierre Henri), 1855-1928 | La terre et la lune |
| etext2200 | Human Genome Project | Reserved: About The Human Genome Files |
| etext5971 | McCutcheon, George Barr, 1866-1928 | Jane Cable |
| etext19026 | Seltzer, Charles Alden, 1875-1942 | The Boss of the Lazy Y |
| etext19065 | ||
| etext19116 | Lehmann, Lilli, 1848-1929 | How to Sing |
| etext19188 | Rossetti, Christina Georgina, 1830-1894 | Poems |
| etext21799 | Sá-Carneiro, Mário de, 1890-1916 | Dispersão |
| etext21822 | Stevens, Geo. Alex. | A Lecture On Heads |
| etext3048 | Yonge, Charlotte Mary, 1823-1901 | The Little Duke |
| etext5313 | Yonge, Charlotte Mary, 1823-1901 | The Herd Boy and His Hermit |
| etext5384 | Churchill, Winston, 1871-1947 | The Celebrity, Volume 02 |
| etext6474 | Deland, Margaret Wade Campbell, 1857-1945 | The Iron Woman |
| etext6154 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Athens: Its Rise and Fall, Book IV. |
| etext26398 | Tudor and Stuart Love Songs | |
| etext26419 | Boulger, Demetrius Charles, 1853-1928 | The Life of Gordon, Volume I |
| etext26452 | Bersezio, Vittorio, 1830-1900 | La testa della vipera |
| etext26538 | Chalmers, Amy D. V. | Madge Morton's Victory |
| etext2616 | Sherman, William T. (William Tecumseh), 1820-1891 | Memoirs of Gen. William T. Sherman — Volume 1 |
| etext2674 | Warner, Charles Dudley, 1829-1900 | The Complete Writings of Charles Dudley Warner — Volume 4 |
| etext12244 | Birrell, Augustine, 1850-1933 | In the Name of the Bodleian and Other Essays |
| etext12257 | Kyne, Peter B. (Peter Bernard), 1880-1957 | The Go-Getter |
| etext29662 | Leiber, Fritz, 1910-1992 | The Moon is Green |
| etext1195 | James, Henry, 1843-1916 | Glasses |
| etext14784 | Wade, Mary Hazelton Blanchard, 1860-1936 | Timid Hare |
| etext14794 | Almario, Rosauro, 1886-1933 | Ang Mananayaw |
| etext19166 | Bower, B. M., 1874-1940 | The Quirt |
| etext22589 | Vandenburg, G. L. | Jubilation, U.S.A. |
| etext31528 | Forbes, John Maxwell | Doubloons—and the Girl |
| etext4043 | Hardy, Thomas, 1840-1928 | The Dynasts |
| etext12406 | Bryant, Walter W. (Walter William) | Kepler |
| etext13288 | Ward, Humphry, Mrs., 1851-1920 | A Great Success |
| etext13922 | Lie, Jonas Lauritz Idemil, 1833-1908 | The Visionary |
| etext15721 | Conquest, Joan | The Hawk of Egypt |
| etext15737 | Phillpotts, Eden, 1862-1960 | The Torch and Other Tales |
| etext15851 | Benchley, Robert, 1889-1945 | Love Conquers All |
| etext31712 | Cawein, Madison Julius, 1865-1914 | The Garden of Dreams |
| etext31745 | Richardson, Major John | Wau-nan-gee or the Massacre at Chicago |
| etext31788 | Moore, Dan T. | The Double Spy |
| etext3025 | Fox, John, 1863-1919 | A Mountain Europa |
| etext15196 | Various | Punch, or the London Charivari, Volume 103, September 10, 1892 |
| etext15231 | Various | The American Missionary — Volume 44, No. 02, February, 1890 |
| etext15241 | Verhoeff, Carolyn | All About Johnnie Jones |
| etext16508 | Stevenson, Burton Egbert, 1872-1962 | American Men of Action |
| etext19371 | Cullum, Ridgwell, 1867-1943 | The Forfeit |
| etext380 | Stevenson, Robert Louis, 1850-1894 | Weir of Hermiston |
| etext24915 | Defoe, Daniel, 1661?-1731 | Voyages et Aventures Surprenantes de Robinson Crusoé |
| etext24939 | Various | The Nursery, August 1873, Vol. XIV. No. 2 |
| etext31414 | Robinson, H. P. | Bear Brownie |
| etext57 | Unknown | Aladdin and the Magic Lamp |
| etext9055 | Sheckley, Robert, 1928-2005 | Bad Medicine |
| etext11173 | Various | The Atlantic Monthly, Volume 05, No. 27, January, 1860 |
| etext15078 | Potts, Eugenia Dunlap | Idle Hour Stories |
| etext16995 | Riley, James Whitcomb, 1849-1916 | Riley Love-Lyrics |
| etext19924 | Kellogg, John Harvey, 1852-1943 | Plain Facts for Old and Young |
| etext23693 | Roy, Lillian Elizabeth, 1868-1932 | The Blue Birds' Winter Nest |
| etext25851 | Forster, John, 1812-1876 | The Life of Charles Dickens, Vol. I-III, Complete |
| etext29714 | Kelsey, Carl, 1870-1953 | The Negro Farmer |
| etext32602 | Ryan, Millie | What Every Singer Should Know |
| etext7969 | Manly, Harold P. (Harold Phillips), 1887- | Oxy-Acetylene Welding and Cutting |
| etext11210 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext14013 | Hawkesworth, John, 1715?-1773 | Almoran and Hamet |
| etext14044 | Machen, Arthur, 1863-1947 | The Angels of Mons |
| etext14055 | ||
| etext14140 | Plutarch, 46-120? | Plutarch's Lives Volume III. |
| etext14143 | Spitz, R. J. | Gloriant |
| etext14173 | Haverfield, F. (Francis), 1860-1919 | The Romanization of Roman Britain |
| etext14193 | Hall, Thornton, 1858- | Love Romances of the Aristocracy |
| etext14692 | Sainte-Beuve, Charles Augustin, 1804-1869 | Portraits littéraires, Tome III |
| etext17399 | Villiers de L'Isle-Adam, Auguste, comte de, 1838-1889 | Tribulat Bonhomet |
| etext20078 | Zangwill, Israel, 1864-1926 | Merely Mary Ann |
| etext21094 | Cummings, Ray, 1887-1957 | The Girl in the Golden Atom |
| etext22424 | Standish, Burt L., 1866-1945 | Frank Merriwell Down South |
| etext5086 | Beach, Rex Ellingwood, 1877-1949 | Rainbow's End |
| etext25109 | Becke, Louis, 1855-1913 | Susâni |
| etext9140 | ||
| etext27102 | Thompson, A. Hamilton (Alexander Hamilton), 1873-1952 | The Ground Plan of the English Parish Church |
| etext6780 | Schiller, Friedrich, 1759-1805 | History of the Revolt of the Netherlands — Complete |
| etext6855 | Grand, Sarah | Ideala |
| etext5459 | Ebers, Georg, 1837-1898 | An Egyptian Princess — Volume 10 |
| etext2490 | Keats, John, 1795-1821 | Lamia |
| etext2601 | Yonge, Charlotte Mary, 1823-1901 | Heartsease, Or, the Brother's Wife |
| etext25013 | Headley, John Parker | How to Make a Shoe |
| etext7083 | Howells, William Dean, 1837-1920 | Venetian Life |
| etext10724 | Alger, Horatio, 1832-1899 | The Store Boy |
| etext15271 | Roby, John, 1793-1850 | Traditions of Lancashire, Volume 1 |
| etext15284 | Potter, Beatrix, 1866-1943 | The Tale of Johnny Town-Mouse |
| etext23793 | Various | Romaneja ja kertomuksia |
| etext32630 | Keller, David H. | Tiger Cat |
| etext15256 | Lighthall, W. D. (William Douw), 1857-1954 | The Young Seigneur |
| etext15272 | Spenser, Edmund, 1552?-1599 | Spenser's The Faerie Queene, Book I |
| etext30136 | Huntington, William Reed, 1838-1909 | A Short History of the Book of Common Prayer |
| etext15438 | Gregory, Jackson, 1882-1943 | The Bells of San Juan |
| etext15487 | Addams, Jane, 1860-1935 | Democracy and Social Ethics |
| etext9128 | ||
| etext17429 | Johnston, Annie F. (Annie Fellows), 1863-1931 | The Story of Dago |
| etext29679 | Various | Punch or the London Charivari, Vol. 93, September 3, 1887 |
| etext6717 | Rockwood, Roy | Through Space to Mars |
| etext6731 | Sheridan, Richard Brinsley, 1751-1816 | The Duenna |
| etext7191 | Yonge, Charlotte Mary, 1823-1901 | Modern Broods |
| etext10738 | Draycott, Gladys M. | Mahomet |
| etext10744 | Phelps, Elizabeth Stuart, 1844-1911 | Men, Women, and Ghosts |
| etext14911 | Rodenbach, Georges, 1855-1898 | Bruges-la-morte |
| etext14919 | Various | Punch, or the London Charivari, Volume 103, July 30, 1892 |
| etext15138 | Nicholson, Meredith, 1866-1947 | A Hoosier Chronicle |
| etext32460 | Goldfrap, John Henry, 1879-1917 | The Boy Scouts for Uncle Sam |
| etext32562 | Sholto, Ralph | And That's How It Was, Officer |
| etext5052 | Bjørnson, Bjørnstjerne, 1832-1910 | Absalom's Hair |
| etext5073 | Reeve, Arthur B. (Arthur Benjamin), 1880-1936 | The War Terror |
| etext5095 | Verne, Jules, 1828-1905 | 20000 Lieues Sous Les Mers — Part 1 |
| etext5125 | Hope, Laurence, 1865-1904 | Last Poems |
| etext5130 | Molière, 1622-1673 | Don Juan, ou le Festin de pierre |
| etext5160 | Anonymous | The Mabinogion |
| etext11091 | Stoddard, John L. (John Lawson), 1850-1931 | Poems |
| etext2091 | Adams, Samuel, 1722-1803 | Reserved: The Writings of Samuel Adams - Volume 1 |
| etext11151 | Ellis, Edward Sylvester, 1840-1916 | The Lost Trail |
| etext11230 | Anonymous | MacMillan's Reading Books |
| etext11255 | Work Projects Administration | Slave Narratives: a Folk History of Slavery in the United States |
| etext11261 | Vaknin, Samuel, 1961- | Cyclopedia of Philosophy |
| etext18790 | Morley, Margaret Warner, 1858-1923 | The Insect Folk |
| etext23443 | Yaco, Murray F. | Unspecialist |
| etext23627 | Otis, James, 1848-1912 | Messenger No. 48 |
| etext1783 | Shakespeare, William, 1564-1616 | Much Ado about Nothing |
| etext14819 | Päivärinta, Pietari, 1827-1913 | Elämän hawainnoita IV: Kontti=Anna; Ruoti=ukko |
| etext14851 | Le Fanu, Joseph Sheridan, 1814-1873 | Uncle Silas |
| etext14895 | Habberton, John, 1842-1921 | All He Knew |
| etext14922 | Various | Punch, or the London Charivari, Volume 1, August 7, 1841 |
| etext2990 | Carpenter, Edward, 1844-1929 | Never Again! |
| etext3010 | Bursey, John | Project Gutenberg Dumas Commentary |
| etext3013 | Aristophanes, 446? BC-385? BC | The Birds |
| etext30776 | Hamilton, Clayton Meeker, 1881-1946 | Materials and Methods of Fiction |
| etext6061 | Scott, Walter, Sir, 1771-1832 | Some Poems |
| etext11448 | Collins, W. Lucas (William Lucas), 1817-1887 | Cicero |
| etext11572 | McCutcheon, George Barr, 1866-1928 | The Man from Brodney's |
| etext11624 | Glyn, Elinor, 1864-1943 | The Reflections of Ambrosine |
| etext18807 | Piper, H. Beam, 1904-1964 | He Walked Around the Horses |
| etext18819 | Huxley, Thomas Henry, 1825-1895 | Hume |
| etext18872 | Housman, Laurence, 1865-1959 | The Field of Clover |
| etext18941 | Paine, Ralph Delahaye, 1871-1925 | The Fight for a Free Sea: A Chronicle of the War of 1812 |
| etext28413 | ||
| etext32618 | Vance, Gerald | Monsoons of Death |
| etext1691 | King, Martin Luther, Jr., 1929-1968 | I Have a Dream, Martin Luther King |
| etext5409 | Hamilton, Anthony, Count, 1646-1720 | The Memoirs of Count Grammont — Volume 01 |
| etext5418 | Roe, Edward Payson, 1838-1888 | The Home Acre |
| etext15495 | Hewlett, Maurice Henry, 1861-1923 | In a Green Shade |
| etext15507 | Charles Duran | |
| etext15512 | Various | Punch, or the London Charivari, Volume 152, May 23, 1917 |
| etext20837 | White, Eliza Orne | Peggy in Her Blue Frock |
| etext20842 | Bergson, Henri, 1859-1941 | Dreams |
| etext20913 | Russel, Florence Kimball | A Woman's Journey through the Philippines |
| etext20956 | Morris, Harrison S. (Harrison Smith), 1856-1948 | In The Yule-Log Glow, Book IV |
| etext22520 | M'Combie, William | Cattle and Cattle-breeders |
| etext23664 | Waller, Mary E. (Mary Ella), 1855-1938 | Flamsted quarries |
| etext23684 | Keats, John, 1795-1821 | Keats: Poems Published in 1820 |
| etext30449 | Moody, Dwight Lyman, 1837-1899 | The Way to God and How to Find It |
| etext31009 | Brudy, John | If at First You Don't... |
| etext31331 | Grimké, Archibald Henry, 1849-1930 | The Ballotless Victim of One-Party Governments |
| etext31447 | Various | Encyclopaedia Britannica, 11th Edition, Volume 6, Slice 3 |
| etext31452 | Fitzhugh, Percy Keese, 1876-1950 | Roy Blakeley in the Haunted Camp |
| etext9463 | Smith, Francis Hopkinson, 1838-1915 | The Under Dog |
| etext23325 | Burnett, Frances Hodgson, 1849-1924 | Seth |
| etext24304 | Bente, F. (Friedrich), 1858-1930 | American Lutheranism |
| etext24308 | Bradley, A. C. (Andrew Cecil), 1851-1935 | Poetry for Poetry's Sake |
| etext24309 | Fea, Samuel, 1872-1943 | Irish Ned |
| etext24316 | Zhao, Chongzuo, fl. 934-965 | 花間集 |
| etext24346 | Coleridge, Samuel Taylor, 1772-1834 | Hints towards the formation of a more comprehensive theory of life. |
| etext25587 | Raga, Emilio | I drammi de' campi |
| etext25677 | Flandrau, Charles E. (Charles Eugene), 1828-1903 | The History of Minnesota and Tales of the Frontier |
| etext29258 | Bradley, Harriett, 1892- | The Enclosures in England |
| etext32631 | Morehart, Malcolm B. | Restricted Tool |
| etext9133 | ||
| etext11805 | Library of Congress. Copyright Office | U.S. Copyright Renewals, 1952 January - June |
| etext11830 | Library of Congress. Copyright Office | U.S. Copyright Renewals, 1964 July - December |
| etext15143 | Famous Modern Ghost Stories | |
| etext15408 | Stein, Gertrude, 1874-1946 | Three Lives |
| etext19658 | Sinclair, May, 1863-1946 | The Judgment of Eve |
| etext19686 | Huxley, Aldous, 1894-1963 | Crome Yellow |
| etext19701 | ||
| etext19736 | Hope, Laura Lee | Six Little Bunkers at Aunt Jo's |
| etext19771 | Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 | Henrietta Temple |
| etext19772 | Denslow, W. W. (William Wallace), 1856-1915 | Denslow's Three Bears |
| etext23038 | Gordon, S. D. (Samuel Dickey), 1859-1936 | Quiet Talks on the Crowned Christ of Revelation |
| etext23127 | Farrar, F. W. (Frederic William), 1831-1903 | Julian Home |
| etext23192 | Sabin, Edwin L. (Edwin Legrand), 1870-1952 | Gold Seekers of '49 |
| etext19813 | Ade, George, 1866-1944 | Ade's Fables |
| etext19869 | Bacon, Josephine Dodge Daskam, 1876-1961 | While Caroline Was Growing |
| etext19917 | Virgil, 70 BC-19 BC | Bucolica |
| etext19932 | Work Projects Administration | Slave Narratives: a Folk History of Slavery in the United States |
| etext19937 | Phillipps, Thomas, 1792-1872 | The Departing Soul's Address to the Body |
| etext22079 | Driscoll, James R. [pseud.] | The Brighton Boys in the Radio Service |
| etext23416 | Hichens, Robert Smythe, 1864-1950 | Fin Tireur |
| etext23459 | Archer, Jean C. | Fishy-Winkle |
| etext28686 | Oates, W. Coape | Wild Ducks |
| etext2359 | Stories By English Authors: France (Selected by Scribners) | |
| etext24006 | Miller, Joaquin, 1837-1913 | Shadows of Shasta |
| etext24090 | Perk, Jacques Fabrice Herman, 1859-1881 | Gedichten |
| etext24223 | Kong, Fu, ca. 264-208 B.C. | 小爾雅 |
| etext5353 | Scott, Walter, Sir, 1771-1832 | Guy Mannering, Or, the Astrologer — Volume 01 |
| etext6037 | Dixon, Thomas, 1864-1946 | The One Woman |
| etext6093 | Hudson, W. H. (William Henry), 1841-1922 | Far Away and Long Ago |
| etext6205 | Parker, Gilbert, 1862-1932 | When Valmond Came to Pontiac, Complete |
| etext6224 | Parker, Gilbert, 1862-1932 | The Seats of the Mighty, Volume 1 |
| etext6246 | Parker, Gilbert, 1862-1932 | The Right of Way — Volume 04 |
| etext6257 | Parker, Gilbert, 1862-1932 | Donovan Pasha, and Some People of Egypt — Volume 2 |
| etext15603 | Glasgow, Ellen Anderson Gholson, 1873-1945 | One Man in His Time |
| etext18254 | Morris, Mowbray, 1847-1911 | Claverhouse |
| etext18522 | Anonymous | The Wreck |
| etext18556 | Saderra Masó, Miguel, -1939 | Catalogue of Violent and Destructive Earthquakes in the Philippines |
| etext18570 | ||
| etext32322 | Rolt-Wheeler, Francis, 1876-1960 | The Boy With the U.S. Miners |
| etext32623 | ||
| etext28105 | Carey, Henry, 1687?-1743 | A Learned Dissertation on Dumpling (1726) |
| etext21951 | Novák, Jan Václav, 1853-1920 | Jan Amos Komenský |
| etext4196 | Pepys, Samuel, 1633-1703 | Diary of Samuel Pepys — Volume 71: January 1668-69 |
| etext4219 | Muskett, Philip E., -1909 | The Art of Living in Australia ; |
| etext29060 | Breuer, Miles John, 1889-1945 | The Einstein See-Saw |
| etext29070 | Hay, William Delisle | Brighter Britain! (Volume 1 of 2) |
| etext29119 | Garland, Hamlin, 1860-1940 | They of the High Trails |
| etext29132 | Dick, Philip K., 1928-1982 | The Gun |
| etext14717 | Dreiser, Theodore, 1871-1945 | Twelve Men |
| etext14788 | Chabot, Alphonse | La nuit de Noël dans tous les pays |
| etext14852 | Chambers, Robert W. (Robert William), 1865-1933 | The Younger Set |
| etext17260 | Holmes, Mary Jane, 1825-1907 | Tempest and Sunshine |
| etext17431 | Couperus, Louis, 1863-1923 | Korte Arabesken |
| etext17475 | Cobb, John N. (John Nathan), 1868-1930 | The Lobster Fishery of Maine |
| etext17999 | Green, Anna Katharine, 1846-1935 | The Chief Legatee |
| etext18006 | Dumas père, Alexandre, 1802-1870 | Le Chevalier de Maison-Rouge |
| etext18015 | Delpit, Albert, 1849-1893 | Jean-nu-pieds, Vol. I |
| etext18050 | ||
| etext20099 | Anonymous | Historia de la célebre Reina de España Doña Juana, llamada vulgarmente, La Loca |
| etext32652 | McGivern, William P. | The Chameleon Man |
| etext2185 | Harte, Bret, 1836-1902 | Maruja |
| etext3783 | Gorky, Maksim, 1868-1936 | Mother |
| etext4130 | Pepys, Samuel, 1633-1703 | Diary of Samuel Pepys — Volume 13: November/December 1661 |
| etext5602 | Victor, Ralph | The Boy Scouts Patrol |
| etext5643 | Davis, Richard Harding, 1864-1916 | Ranson's Folly |
| etext5649 | Seymour, Robert, 1800-1836 | Sketches by Seymour — Volume 05 |
| etext5672 | Ball, Eustace Hale, 1881-1931 | The Voice on the Wire |
| etext15215 | Jong, Karel H.E. de, 1872-1960 | Magie bij de Grieken en de Romeinen |
| etext15287 | Sand, George, 1804-1876 | Teverino |
| etext18900 | Van Dyke, John Charles, 1856-1932 | A Text-Book of the History of Painting |
| etext28975 | Various | Harper's Young People, June 1, 1880 |
| etext29075 | Eeden, Frederik van, 1860-1932 | Dante en Beatrice |
| etext29086 | Hard, Miron Elisha, 1845-1914 | The Mushroom, Edible and Otherwise |
| etext2754 | Dumas père, Alexandre, 1802-1870 | The Countess of Saint Geran |
| etext2805 | Henty, G. A. (George Alfred), 1832-1902 | With Lee in Virginia: a story of the American Civil War |
| etext2806 | Kipling, Rudyard, 1865-1936 | The Phantom Rickshaw and Other Ghost Stories |
| etext2809 | Garland, Hamlin, 1860-1940 | Main-Travelled Roads |
| etext25277 | Hoit, T. W. (True Worthy), 1815- | The Right of American Slavery |
| etext25279 | Su'anzhuren, 18th cent. | 錦香亭 |
| etext25345 | Wassermann, Jakob, 1873-1934 | Gänsemännchen. English |
| etext24608 | Bailey, Arthur Scott, 1877-1949 | The Tale of Kiddie Katydid |
| etext8739 | Hamel, Ernest | Thermidor |
| etext1255 | ||
| etext14865 | Alun, 1797-1841 | Gwaith Alun |
| etext14875 | Finley, Martha, 1828-1909 | Elsie's children |
| etext19537 | Anonymous | Punky Dunk and the Gold Fish |
| etext19559 | Moulton, Richard Green, 1849-1924 | Story of Orestes |
| etext21661 | Lynch, George, 1868-1928 | Impressions of a War Correspondent |
| etext21728 | Ballantyne, R. M. (Robert Michael), 1825-1894 | The Dog Crusoe and his Master |
| etext21765 | Ovid, 43 BC-18? | The Metamorphoses of Ovid |
| etext21811 | Byron, George Gordon Byron, Baron, 1788-1824 | The Works of Lord Byron. Vol. 3 |
| etext21831 | Pérez Galdós, Benito, 1843-1920 | Misericordia |
| etext21942 | Meade, L. T., 1854-1914 | Dickory Dock |
| etext23453 | Bakewell, Esther | The Book of One Syllable |
| etext23463 | Pharaon, Florian, 1827-1887 | La culotte du brigadier |
| etext24102 | Standish, Burt L., 1866-1945 | Owen Clancy's Happy Trail |
| etext24191 | Palamas, Kostes, 1859-1943 | Life Immovable |
| etext24195 | Duffy, Edward, 1830?- | History of the 159th Regiment, N.Y.S.V. |
| etext24201 | Freeman, R. Austin (Richard Austin), 1862-1943 | The Eye of Osiris |
| etext25708 | De Morgan, John, 1848-1926 | The Hero of Ticonderoga |
| etext25773 | Felton, Samuel | On the Portraits of English Authors on Gardening, |
| etext25882 | Anonymous | Famous Islands and Memorable Voyages |
| etext25956 | Pérez Galdós, Benito, 1843-1920 | La desheredada |
| etext25960 | Hamby, William H. (William Henry), 1876-1928 | The Desert Fiddler |
| etext1422 | Dickens, Charles, 1812-1870 | Going into Society |
| etext10737 | Merrill, Rufus | Book about Animals |
| etext10745 | Pyle, Howard, 1853-1911 | The Story of the Champions of the Round Table |
| etext10777 | Le Feuvre, Amy, -1929 | Probable Sons |
| etext10784 | Jacobs, W. W. (William Wymark), 1863-1943 | Sentence Deferred |
| etext19689 | Caouette, J. B. (Jean Baptiste), 1854-1922 | Les voix intimes |
| etext21072 | Collingwood, Harry, 1851-1922 | The Pirate Island |
| etext25042 | Clifford, C. R. (Chandler Robbins), 1858-1935 | Color Value |
| etext6478 | Hooker, J. D. (Joseph Dalton), 1817-1911 | Himalayan Journals — Complete |
| etext32708 | Jókai, Mór, 1825-1904 | The Golden Age in Transylvania |
| etext32709 | Mullen, Stanley | Shock Treatment |
| etext32720 | Anonymous | What We Saw in Egypt |
| etext2139 | O'Reilly, A. J. (Augustine J.) | Alvira, the Heroine of Vesuvius |
| etext417 | Luther, Martin, 1483-1546 | The Hymns of Martin Luther |
| etext20562 | Aynard, Théodore | Voyages |
| etext22588 | Cowling, Henry, 1874-1945 | From Lower Deck to Pulpit |
| etext1054 | Lang, Andrew, 1844-1912 | A Collection of Ballads |
| etext7345 | Muir, John, 1838-1914 | Travels in Alaska |
| etext9691 | Dickens, Charles, 1812-1870 | All the Year Round |
| etext11439 | Mower, Sarah S. | The Snow-Drop |
| etext12715 | Kipling, Rudyard, 1865-1936 | Danny Deever |
| etext16984 | Bahá'u'lláh, 1817-1892 | Prayers and Meditations |
| etext17029 | Doctorow, Cory, 1971- | Shadow of the Mothaship |
| etext18021 | Giles, Herbert Allen, 1845-1935 | China and the Chinese |
| etext19282 | Shoghi Effendi, 1897-1957 | The Promised Day Is Come |
| etext20359 | Austin, Mary Hunter, 1868-1934 | The Lovely Lady |
| etext23554 | Murfree, Mary Noailles, 1850-1922 | A Chilhowee Lily |
| etext26635 | Widdemer, Margaret, 1884-1978 | The Rose-Garden Husband |
| etext5342 | Montgomery, L. M. (Lucy Maud), 1874-1942 | The Story Girl |
| etext9082 | Aho, Juhani, 1861-1921 | Muistatko |
| etext14691 | Various | Lippincott's Magazine of Popular Literature and Science |
| etext26052 | How, Louis, 1873-1947 | James B. Eads |
| etext28807 | Keller, Helen, 1880-1968 | The Story of My Life |
| etext6513 | Wake, William, 1657-1737 | The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 7, Barnabas |
| etext5889 | Jones, Steven E., 1949- | The BYU Solar Cooker/Cooler |
| etext10902 | Jenness, Theodora R. | Big and Little Sisters |
| etext14307 | Aguinaldo, Emilio, 1869-1964 | Reseña Veridica de la Revolución Filipina |
| etext18198 | Riber, Llorenç, 1881-1958 | Els camins del paradís perdut |
| etext19328 | Baikie, James, 1866-1931 | The Sea-Kings of Crete |
| etext78 | Burroughs, Edgar Rice, 1875-1950 | Tarzan of the Apes |
| etext6563 | Molière, 1622-1673 | The Blunderer |
| etext5718 | Inman, Henry, 1837-1899 | The Great Salt Lake Trail |
| etext10807 | Yonge, Charles Duke, 1812-1891 | The Constitutional History of England from 1760 to 1860 |
| etext12277 | Quiller-Couch, Arthur Thomas, Sir, 1863-1944 | The Delectable Duchy |
| etext13215 | Crake, A. D. (Augustine David), 1836-1890 | Edwy the Fair or the First Chronicle of Aescendune |
| etext19459 | Lawson, Alfred, 1869-1954 | Born Again |
| etext27036 | Lebert, Marie | Le Livre 010101: Enquête |
| etext28245 | Campbell, Helen, 1839-1918 | Prisoners of Poverty Abroad |
| etext9461 | Ervine, St. John G. (St. John Greer), 1883-1971 | The Foolish Lovers |
| etext20257 | Sterne, Laurence, 1713-1768 | A Political Romance |
| etext22435 | Hope, Laura Lee | The Story of a Stuffed Elephant |
| etext24987 | Unknown | Girl Scouts |
| etext25047 | Various | Blackwood's Edinburgh Magazine - Volume 55, No. 343, May 1844 |
| etext28087 | Tuskegee & Its People: Their Ideals and Achievements | |
| etext30612 | Kemble, Fanny, 1809-1893 | Records of Later Life |
| etext2773 | Galsworthy, John, 1867-1933 | Fraternity |
| etext8522 | Bates, Arlo, 1850-1918 | The Puritans |
| etext17203 | Pitts, John Linwood, 1836-1917 | Witchcraft and Devil Lore in the Channel Islands |
| etext18111 | Corbière, Édouard, 1793-1875 | Scènes de mer, Tome I |
| etext19131 | ||
| etext19978 | Pessoa, Fernando António Nogueira, 1888-1935 | 35 Sonnets |
| etext21127 | Thurston, Katherine Cecil, 1875-1911 | The Mystics |
| etext21962 | Harvard Classics Volume 28 | |
| etext24416 | Kennedy, James, 1815-1899 | Life and Work in Benares and Kumaon, 1839-1877 |
| etext27181 | Birnbaum, Max, 1862- | Prof. Koch's Method to Cure Tuberculosis Popularly Treated |
| etext31307 | Hasse, Henry, 1913-1977 | One Purple Hope! |
| etext4588 | Arthur, T. S. (Timothy Shay), 1809-1885 | The Allen House |
| etext12674 | Lang, Andrew, 1844-1912 | Cock Lane and Common-Sense |
| etext14605 | Maxwell, W. B., 1866-1938 | The Devil's Garden |
| etext19148 | Luther, Mark Lee, 1872- | The Henchman |
| etext20770 | Burritt, M. C. | Apple Growing |
| etext22191 | Hope, Anthony, 1863-1933 | Half a Hero |
| etext24720 | Various | Punch, or the London Charivari, Vol. 146, May 20, 1914 |
| etext27386 | Upham, William P. (William Phineas), 1836-1905 | House of John Procter, Witchcraft Martyr, 1692 |
| etext2290 | Twenty-Two Goblins | |
| etext7213 | Ford, Henry, 1863-1947 | My Life and Work |
| etext12558 | Marryat, Frederick, 1792-1848 | Snarleyyow |
| etext20117 | Various | Chatterbox, 1905. |
| etext20490 | Lermina, Jules, 1839-1915 | L'A. B. C. du libertaire |
| etext29795 | Cawein, Madison Julius, 1865-1914 | An Ode |
| etext679 | Harper, Frances Ellen Watkins, 1825-1911 | Poems |
| etext12768 | Douglas, O., 1877-1948 | Penny Plain |
| etext24803 | Various | Notes and Queries, 1850.12.21 |
| etext31062 | Cox, Irving E. | The Cartels Jungle |
| etext6005 | Moore, George (George Augustus), 1852-1933 | Celibates |
| etext9305 | Barr, Robert, 1850-1912 | One Day's Courtship |
| etext14330 | Stendhal, 1783-1842 | Die Abtissin von Castro |
| etext16965 | Browne, E. Gordon | Queen Victoria |
| etext19671 | Richmond, Legh, 1772-1827 | The Annals of the Poor |
| etext21865 | Radford, Maude L. | King Arthur and His Knights |
| etext30074 | Raymond, Evelyn, 1843-1910 | Jessica, the Heiress |
| etext30673 | Berry, Don | Sound of Terror |
| etext7573 | Daudet, Alphonse, 1840-1897 | Images from Daudet's Fromont and Risler |
| etext23845 | Leinster, Murray, 1896-1975 | Talents, Incorporated |
| etext26366 | Schweig, George M. | The Electric Bath |
| etext28958 | Merwin, Samuel, 1874-1936 | The Road to Frontenac |
| etext28922 | Smith, Richard R. | Compatible |
| etext7125 | Duff, Colonel Mildred | Catherine Booth — a Sketch |
| etext12172 | Stretton, Hesba, 1832-1911 | Alone in London |
| etext27899 | Brummer, F. F., 1847-1893 | Runoelmia 2 |
| etext6732 | Hall, M. G. C. (Mary Georgina Caroline) | A Lady's Life on a Farm in Manitoba |
| etext11508 | Thompson, William, Colonel | Reminiscences of a Pioneer |
| etext16289 | Footner, Hulbert, 1879-1944 | The Fur Bringers |
| etext738 | Lang, Andrew, 1844-1912 | The Puzzle of Dickens's Last Plot |
| etext1976 | Oppenheim, E. Phillips (Edward Phillips), 1866-1946 | Peter Ruff and the Double Four |
| etext6361 | Lounsbery, Harriet Camp | Making Good on Private Duty |
| etext10222 | Webb-Peploe, Mrs. (Annie), 1805-1880 | The Pilgrims of New England |
| etext1064 | Poe, Edgar Allan, 1809-1849 | The Masque of the Red Death |
| etext15169 | Hope, Laura Lee | The Bobbsey Twins in a Great City |
| etext18086 | Dougall, Lily, 1858-1923 | A Dozen Ways Of Love |
| etext25037 | ||
| etext26489 | Bourget, Paul, 1852-1935 | La terre promise |
| etext27795 | Dalton, O. M. (Ormonde Maddock), 1866-1945 | Apologia Diffidentis |
| etext28907 | Book of Philemon | |
| etext17554 | Vosmaer, Carel, 1826-1888 | Vogels van diverse pluimage |
| etext8999 | Grillparzer, Franz, 1791-1872 | Das Kloster bei Sendomir |
| etext16152 | Various | Punch, or the London Charivari, Vol. 158, 1920-02-04 |
| etext1072 | ||
| etext22797 | Morley, John, 1838-1923 | Diderot and the Encyclopædists |
| etext27538 | Various | Notes and Queries, No. 209, October 29 1853 |
| etext31976 | Nourse, Alan Edward, 1928-1992 | Derelict |
| etext12744 | Bryan, William Jennings, 1860-1925 | In His Image |
| etext9116 | ||
| etext12305 | Various | Punch, or the London Charivari, Volume 99, August 16, 1890 |
| etext32395 | Del Rey, Lester, 1915-1993 | No Strings Attached |
| etext5996 | Phelps, William Lyon, 1865-1943 | Essays on Russian Novelists |
| etext14443 | O'Conner, T. P. | Sketches in the House (1893) |
| etext15417 | Various | Scientific American Supplement, No. 388, June 9, 1883 |
| etext30155 | Einstein, Albert, 1879-1955 | Relativity: The Special and General Theory |
| etext2225 | Kipling, Rudyard, 1865-1936 | Captains Courageous |
| etext279 | ||
| etext9136 | ||
| etext9134 | ||
| etext18969 | Tucker, T. G. (Thomas George), 1859-1946 | Platform Monologues |
| etext1073 | ||
| etext13167 | Gale, Norman, 1862-1942 | More Cricket Songs |
| etext9120 | ||
| etext26644 | Gale, Zona, 1874-1938 | Friendship Village |
| etext28419 | Corson, Juliet, 1842-1897 | Twenty-Five Cent Dinners for Families of Six |
| etext31082 | Bump, Charles Weathers, 1872-1908 | The Mermaid of Druid Lake and Other Stories |
| etext31107 | Ligthart, Jan, 1859-1916 | Jeugdherinneringen |
| etext31116 | ||
| etext9357 | Conrad, Joseph, 1857-1924 | Typhoon |
| etext7060 | Henty, G. A. (George Alfred), 1832-1902 | At Agincourt |
| etext31235 | Long, Charles A. | Natural History of the Brush Mouse (Peromyscus boylii) in Kansas With Description of a New Subspecies |
| etext19678 | London, Jack, 1876-1916 | Call of the Wild |
| etext4843 | Motley, John Lothrop, 1814-1877 | History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1585f |
| etext10422 | Mundy, Talbot, 1879-1940 | Caesar Dies |
| etext12539 | Corry, Joseph | Observations Upon the Windward Coast of Africa |
| etext16665 | Ibsen, Henrik, 1828-1906 | Catilina |
| etext3023 | Goethe, Johann Wolfgang von, 1749-1832 | Faust — Part 1 |
| etext19999 | Trowbridge, J. T. (John Townsend), 1827-1916 | The Drummer Boy |
| etext2066 | Grey, Zane, 1872-1939 | Wildfire |
| etext5646 | Seymour, Robert, 1800-1836 | Sketches by Seymour — Volume 02 |
| etext19933 | Cluthe Rupture Institute | Cluthe's Advice to the Ruptured |
| etext20919 | Sheckley, Robert, 1928-2005 | The Status Civilization |
| etext24314 | Field, Claud, 1863-1941 | Mystics and Saints of Islam |
| etext24333 | Buckrose, J. E., 1868-1931 | The Privet Hedge |
| etext27559 | United States. Central Intelligence Agency | The 2004 CIA World Factbook |
| etext14614 | Moore, George (George Augustus), 1852-1933 | Sister Teresa |
| etext15574 | Dumas père, Alexandre, 1802-1870 | Le capitaine Paul |
| etext15290 | McFadden, Elizabeth Apthorp | Why the Chimes Rang: A Play in One Act |
| etext80 | De Presno, Odd | The Online World |
| etext4794 | Adams, Harriet A., -1885 | Dawn |
| etext24368 | Warner, Agnes | 'My Beloved Poilus' |
| etext8894 | Mackail, J. W. (John William), 1859-1945 | Latin Literature |
| etext6992 | Milne, A. A. (Alan Alexander), 1882-1956 | Belinda |
| etext9867 | Brand, Max, 1892-1944 | Riders of the Silences |
| etext6520 | The Crescent Moon | |
| etext15624 | Fojas, Justo Claudio | Trisagio Quen Carcararag |
| etext278 | ||
| etext8668 | Barr, Robert, 1850-1912 | Revenge! |
| etext13207 | Zévaco, Michel, 1860-1918 | Les Pardaillan — Tome 01 |
| etext26 | Milton, John, 1608-1674 | Paradise Lost |
| etext7763 | Grant, Robert, 1852-1940 | The Law-Breakers and Other Stories |
| etext13593 | Aho, Juhani, 1861-1921 | Yksin |
| etext333 | Raleigh, Walter Alexander, Sir, 1861-1922 | Robert Louis Stevenson |
| etext7307 | Goncharov, Ivan Aleksandrovich, 1812-1891 | The Precipice |
| etext4557 | Bury, J. B. (John Bagnell), 1861-1927 | The Idea of Progress |
| etext9914 | Budge, E. A. Wallis (Ernest Alfred Wallis), Sir, 1857-1934 | The Babylonian Legends of the Creation |
| etext24874 | Montgomery, L. M. (Lucy Maud), 1874-1942 | Lucy Maud Montgomery Short Stories, 1902 to 1903 |
| etext9139 | ||
| etext9142 | ||
| etext12714 | Poe, Edgar Allan, 1809-1849 | Alone |
| etext14352 | Wells, Carolyn, 1862-1942 | Patty and Azalea |
| etext12042 | Byrum, Isabel C. (Isabel Coston), 1870-1938 | The value of a praying mother |
| etext23715 | Carr, Terry Gene, 1937-1987 | Warlord of Kor |
| etext14856 | Various | Punch, or the London Charivari, Volume 152, March 28, 1917 |
| etext6155 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Athens: Its Rise and Fall, Book V. |
| etext1088 | Seton, Ernest Thompson, 1860-1946 | Rolf in the Woods |
| etext28200 | Monod, Gabriel, 1844-1912 | Renan, Taine, Michelet |
| etext6151 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Athens: Its Rise and Fall, Book I. |
| etext18632 | Piper, H. Beam, 1904-1964 | Crossroads of Destiny |
| etext2562 | Aristophanes, 446? BC-385? BC | Clouds |
| etext9138 | ||
| etext30366 | Whitaker, Evelyn, 1857-1903 | Zoe |
| etext5 | United States | The United States Constitution |
| etext458 | Marquis, Don, 1878-1937 | Dreams and Dust |
| etext1677 | Plato (spurious and doubtful works), 427? BC-347? BC | Alcibiades II |
| etext3165 | Liber, Maurice | Rashi |
| etext6465 | Jacobs, W. W. (William Wymark), 1863-1943 | Short Cruises |
| etext8142 | Parliament, British | The Riot Act |
| etext9511 | Poe, Edgar Allan, 1809-1849 | Several Works by Edgar Allan Poe |
| etext13971 | Various | The Fifteen Comforts of Matrimony: Responses from Men |
| etext17436 | Henty, G. A. (George Alfred), 1832-1902 | The Queen's Cup |
| etext29 | ||
| etext23967 | Kipling, Rudyard, 1865-1936 | If |
| etext24986 | Hocking, Joseph, 1860-1937 | Tommy |
| etext2446 | Ibsen, Henrik, 1828-1906 | An Enemy of the People |
| etext12408 | Unknown | 周髀算經 |
| etext14441 | Runciman, John F., 1866-1916 | Wagner |
| etext4386 | Liszt, Franz, 1811-1886 | Life of Chopin |
| etext16589 | White, Stewart Edward, 1873-1946 | The Killer |
| etext4630 | Arthur, T. S. (Timothy Shay), 1809-1885 | The Home Mission |
| etext1918 | Haggard, Henry Rider, 1856-1925 | Long Odds |
| etext231 | Virgil, 70 BC-19 BC | The Georgics |
| etext293 | Alger, Horatio, 1832-1899 | Paul Prescott's Charge |
| etext326 | Muir, John, 1838-1914 | Steep Trails |
| etext2864 | Hardy, Thomas, 1840-1928 | The Trumpet-Major |
| etext7347 | The Lincoln Story Book | |
| etext7581 | Massa, Philippe, marquis de, 1831-1911 | Images from De Massa's Zibeline |
| etext12304 | Broughton, Rhoda, 1840-1920 | Nancy |
| etext14721 | Lincoln, Abraham, 1809-1865 | Speeches and Letters of Abraham Lincoln, 1832-1865 |
| etext9127 | ||
| etext6153 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Athens: Its Rise and Fall, Book III. |
| etext32627 | ||
| etext30891 | Harris, Corra, 1869-1935 | The Co-Citizens |
| etext30511 | Various | Birds, Illustrated by Color Photography, Vol. 2, No. 3 |
| etext30642 | Brownell, Gertrude Hall, 1863-1961 | Aurora the Magnificent |
| etext28712 | Various | The American Missionary — Volume 54, No. 3, October, 1900 |
| etext9117 | ||
| etext22976 | Various | Slave Narratives: a Folk History of Slavery in the United States |
| etext19321 | Graebner, Theodore, 1876-1950 | Evolution |
| etext19242 | Baha'i World Centre | Bahíyyih Khánum |
| etext32707 | Woolson, Constance Fenimore, 1840-1894 | Anne |
| etext32710 | Peirce, Earl | Doom of the House of Duryea |
| etext32711 | Granger, Darius John | Disaster Revisited |
| etext5795 | Yeats, W. B. (William Butler), 1865-1939 | The Secret Rose |
| etext32712 | Graham, Roger Phillips, 1909-1965 | Cube Root of Conquest |
| etext32713 | Effinger, John Robert, 1869-1933 | Women of the Romance Countries (Illustrated) |
| etext32714 | Anonymous | Souvenir Book of the Great Chelsea Fire April 12, 1908 |
| etext32715 | Wright, C. H. C. (Charles Henry Conrad), 1869-1957 | A History of the Third French Republic |
| etext32716 | Warner, Harry | Cancer World |
| etext32717 | McKenty, Jack | Wait for Weight |
| etext32718 | Curtis, Betsy | The Trap |
| etext32719 | Arr, Stephen, 1922- | Mr. President |
| etext32721 | Beverley, Robert, 1673-1722 | The History of Virginia, in Four Parts |
| etext32722 | Kohler, Kaufmann | Jewish Theology |
| etext15301 | Gilly, William O. S. | Narratives of Shipwrecks of the Royal Navy; between 1793 and 1849 |
| etext32723 | Otis, James, 1848-1912 | The Minute Boys of Boston |
| etext32724 | Hoskins, Phillip | Feet Of Clay |
| etext32725 | Manson, George J. | Work for Women |
| etext32726 | Livingston, Berkeley | Death of a B.E.M. |
| etext13746 | Elliot, Robert H. (Robert Henry), 1837-1914 | Gold, Sport, and Coffee Planting in Mysore |
| etext12850 | Tyson, Edward, 1650-1708 | A Philological Essay Concerning the Pygmies of the Ancients |
| etext12923 | Quiller-Couch, Arthur Thomas, Sir, 1863-1944 | The Laird's Luck and Other Fireside Tales |
| etext12073 | Walpole, Horace, 1717-1797 | Letters of Horace Walpole — Volume I |
| etext12155 | Jacobs, W. W. (William Wymark), 1863-1943 | Stepping Backwards |
| etext11472 | Jacobs, W. W. (William Wymark), 1863-1943 | Paying Off |
| etext1580 | Plato, 427? BC-347? BC | Charmides |
| etext1664 | Farrar, John Chipman, 1896-1974 | Songs for Parents |
| etext10907 | Livius, Titus | The History of Rome, Books 09 to 26 |
| etext10332 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext10330 | Zola, Émile, 1840-1902 | Fécondité. English |
| etext9813 | Schoenrich, Otto | Santo Domingo |
| etext9677 | Defoe, Daniel, 1661?-1731 | Captain Mission |
| etext9203 | Hawthorne, Nathaniel, 1804-1864 | A Rill from the Town Pump |
| etext9492 | McConnell, Francis John, 1871-1953 | Understanding the Scriptures |
| etext3788 | Hadden, J. Cuthbert (James Cuthbert), 1816-1914 | Haydn |
| etext6352 | Holmes, Mary Jane, 1825-1907 | Dora Deane |
| etext6030 | True, John Preston | The Iron Star — and what It saw on Its Journey through the Ages |
| etext3694 | Jonson, Ben, 1573-1637 | Every Man in His Humour |
| etext2777 | Henry, O., 1862-1910 | Cabbages and Kings |
| etext2171 | Eliot, George, 1819-1880 | Brother Jacob |
| etext2106 | Carlyle, Thomas, 1795-1881 | History of Friedrich II of Prussia — Volume 06 |
| etext1642 | Plato, 427? BC-347? BC | Euthyphro |
| etext1419 | Dickens, Charles, 1812-1870 | Mugby Junction |
| etext1451 | Tilden, William (Bill) Tatem, 1893-1953 | The Art of Lawn Tennis |
| etext3007 | Emerson, Willis George, 1856-1918 | The Smoky God, or, a voyage to the inner world |
| etext3094 | Haggard, Henry Rider, 1856-1925 | Red Eve |
| etext4401 | Meredith, George, 1828-1909 | The Shaving of Shagpat; an Arabian entertainment — Volume 1 |
| etext6057 | Ellis, J. Breckenridge (John Breckenridge), 1870-1956 | Fran |
| etext6922 | Schipper, Lieuwe, 1808-1870 | De Liereman |
| etext8257 | Anonymous | The World English Bible (WEB): Amos |
| etext1063 | Poe, Edgar Allan, 1809-1849 | The Cask of Amontillado |
| etext8188 | Alcott, Louisa May, 1832-1888 | The Mysterious Key and What It Opened |
| etext8210 | Coleridge, Samuel Taylor, 1772-1834 | Biographia Epistolaris, Volume 1. |
| etext8230 | Anonymous | The World English Bible (WEB): Leviticus |
| etext8245 | Anonymous | The World English Bible (WEB): Job |
| etext10578 | MacDonald, George, 1824-1905 | A Hidden Life and Other Poems |
| etext11567 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11591 | Bertens, H. | Hugo de Groot en zijn rechtsphilosophie |
| etext12898 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext14172 | Adrien, Paul | Willis the Pilot |
| etext15303 | Shakespeare, William, 1564-1616 | Coriolan |
| etext15467 | Hitchcock, Mary | The First Soprano |
| etext16726 | Blackwood, Algernon, 1869-1951 | Four Weird Tales |
| etext17877 | Koebel, W. H. (William Henry), 1872-1923 | South America |
| etext17929 | Osler, Edward, 1798-1863 | The Life of Admiral Viscount Exmouth |
| etext20681 | Matthew | |
| etext19488 | France, Anatole, 1844-1924 | The Life of Joan of Arc, Vol. 1 and 2 |
| etext26649 | Coward, Noel, 1899-1973 | Terribly Intimate Portraits |
| etext26707 | Reese, A. M. (Albert Moore), 1872- | Wanderings in the Orient |
| etext27990 | Burnett, Frances Hodgson, 1849-1924 | Theo |
| etext28113 | Chantepleure, G. (Guy), 1875- | La passagère |
| etext29227 | Low, Samuel, 1765- | The Politician Out-Witted |
| etext30168 | Bell, Edward Allen | A History of Giggleswick School |
| etext30230 | Barton, Clara, 1821-1912 | A Story of the Red Cross |
| etext31625 | Hofmannsthal, Hugo von, 1874-1929 | Gedichte |
| etext303 | Anonymous | HomeBrew HomePages Put YOU on the World Wide Web |
| etext319 | Gregory, Eliot, 1854-1915 | The Ways of Men |
| etext2872 | Darwin, Charles, 1809-1882 | The Variation of Animals and Plants under Domestication — Volume 2 |
| etext3931 | Massa, Philippe, marquis de, 1831-1911 | Zibeline — Volume 1 |
| etext3970 | Bentzon, Th. (Thérèse), 1840-1907 | Jacqueline — Volume 3 |
| etext6967 | Prescott, William Hickling, 1796-1859 | The History of the Reign of Ferdinand and Isabella the Catholic — Volume 2 |
| etext8449 | Howells, William Dean, 1837-1920 | A Traveler from Altruria: Romance |
| etext8523 | Ruskin, John, 1819-1900 | Val d'Arno |
| etext11404 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11420 | Various | The Mirror of Literature, Amusement, and Instruction. |
| etext11442 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext12866 | Various | Punch, or the London Charivari, Volume 100, January 17, 1891 |
| etext12980 | Patchin, Frank Gee, 1861-1925 | The Pony Rider Boys with the Texas Rangers |
| etext394 | Gaskell, Elizabeth Cleghorn, 1810-1865 | Cranford |
| etext453 | Ferber, Edna, 1885-1968 | Emma McChesney and Co. |
| etext500 | Collodi, Carlo, 1826-1890 | Adventures of Pinocchio |
| etext549 | Azuela, Mariano, 1873-1952 | The Underdogs, a Story of the Mexican Revolution |
| etext595 | Aldrich, Thomas Bailey, 1836-1907 | The Sisters' Tragedy |
| etext652 | Johnson, Samuel, 1709-1784 | Rasselas, Prince of Abyssinia |
| etext698 | Stevenson, Robert Louis, 1850-1894 | Memoir of Fleeming Jenkin |
| etext706 | Hornung, E. W. (Ernest William), 1866-1921 | The Amateur Cracksman |
| etext736 | Gibbon, Edward, 1737-1794 | History of the Decline and Fall of the Roman Empire — Volume 6 |
| etext741 | Benton, Thomas Hart, 1782-1858 | Thomas Hart Benton's Remarks to the Senate on the Expunging Resolution |
| etext795 | Ballads, Lyrics, and Poems of Old France | |
| etext830 | Rhodius, Apollonius, ca. 3rd cent. B.C. | The Argonautica |
| etext840 | Blackmore, R. D. (Richard Doddridge), 1825-1900 | Lorna Doone; a Romance of Exmoor |
| etext843 | Simms, William Gilmore, 1806-1870 | The Life of Francis Marion |
| etext877 | Irving, Washington, 1783-1859 | Little Britain |
| etext908 | Shaw, Bernard, 1856-1950 | Treatise on Parents and Children |
| etext939 | Smiles, Samuel, 1812-1904 | The Life of Thomas Telford; civil engineer with an introductory history of roads and travelling in Great Britain |
| etext944 | Darwin, Charles, 1809-1882 | The Voyage of the Beagle |
| etext1008 | Dante Alighieri, 1265-1321 | Divine Comedy, Cary's Translation, Complete |
| etext1052 | American Tract Society | Step by Step; or Tidy's Way to Freedom |
| etext1119 | Shakespeare, William, 1564-1616 | King Henry V |
| etext1122 | Shakespeare, William, 1564-1616 | Hamlet, Prince of Denmark |
| etext1148 | Cambrensis, Giraldus, 1146-1223 | The itinerary of Archbishop Baldwin through Wales |
| etext1149 | Defoe, Daniel, 1661?-1731 | From London to Land's End |
| etext1218 | Packard, Frank L. (Frank Lucius), 1877-1942 | The Adventures of Jimmie Dale |
| etext1223 | Balzac, Honoré de, 1799-1850 | Ursula |
| etext1276 | Meynell, Alice Christiana Thompson, 1847-1922 | The Rhythm of Life |
| etext1466 | Gorky, Maksim, 1868-1936 | Creatures That Once Were Men |
| etext1500 | Shakespeare, William, 1564-1616 | King Henry VI, Part 1 |
| etext1689 | Sanger, Margaret, 1883-1966 | The Pivot of Civilization |
| etext1700 | Gaskell, Elizabeth Cleghorn, 1810-1865 | Life of Charlotte Bronte — Volume 2 |
| etext1702 | Iles, George, 1852-1942 | Little Masterpieces of Autobiography: Actors |
| etext1822 | Davis, Richard Harding, 1864-1916 | The Amateur |
| etext1825 | Burgess, Thornton W. (Thornton Waldo), 1874-1965 | Adventures of Reddy Fox |
| etext1829 | Mason, Mary Murdoch | Mae Madden |
| etext1864 | ||
| etext1877 | Peattie, Elia Wilkinson, 1862-1935 | A Mountain Woman |
| etext1878 | Oppenheim, E. Phillips (Edward Phillips), 1866-1946 | A Millionaire of Yesterday |
| etext1903 | Cotton, William, 1786-1866 | Everybody's Guide to Money Matters: with a description of the various investments chiefly dealt in on the stock exchange, and the mode of dealing therein |
| etext1968 | Balzac, Honoré de, 1799-1850 | The Human Comedy: Introductions and Appendix |
| etext1993 | Jerome, Jerome K. (Jerome Klapka), 1859-1927 | Told After Supper |
| etext2006 | Collins, Wilkie, 1824-1889 | A Fair Penitent |
| etext2060 | Beckford, William, 1759-1844 | The History of Caliph Vathek |
| etext2069 | Pinches, Theophilus Goldridge, 1856-1934 | The Religion of Babylonia and Assyria |
| etext2075 | Peacock, Thomas Love, 1785-1866 | Crotchet Castle |
| etext2080 | Meynell, Alice Christiana Thompson, 1847-1922 | Flower of the Mind |
| etext2093 | Adams, Samuel, 1722-1803 | The Writings of Samuel Adams - Volume 3 |
| etext2144 | Det Gamle Testamente af 1931 | |
| etext2233 | Wodehouse, P. G. (Pelham Grenville), 1881-1975 | A Damsel in Distress |
| etext2285 | Raine, William MacLeod, 1871-1954 | Ridgway of Montana (Story of To-Day, in Which the Hero Is Also the Villain) |
| etext2322 | Busch, Wilhelm, 1832-1908 | Hans Huckebein |
| etext2342 | Goethe, Johann Wolfgang von, 1749-1832 | Wilhelm Meisters Lehrjahre — Band 8 |
| etext2373 | Holmes, Oliver Wendell, 1841-1935 | The Path of the Law |
| etext2437 | Jerome, Jerome K. (Jerome Klapka), 1859-1927 | They and I |
| etext2497 | Reade, Charles, 1814-1884 | Put Yourself in His Place |
| etext2602 | Haggard, Henry Rider, 1856-1925 | Queen Sheba's Ring |
| etext2668 | Trenck, Friedrich, Freiherr von der, 1726-1794 | The Life and Adventures of Baron Trenck, Volume 1 |
| etext2720 | James, Henry, 1843-1916 | The Pension Beaurepas |
| etext2802 | Jackson, Helen Hunt, 1830-1885 | Ramona |
| etext2803 | Cahan, Abraham, 1860-1951 | The Rise of David Levinsky |
| etext2811 | Pliny, the Younger, 62?-113 | The Letters of Pliny the Younger |
| etext2859 | Thackeray, William Makepeace, 1811-1863 | A Little Dinner at Timmin's |
| etext2860 | Trollope, Anthony, 1815-1882 | Framley Parsonage |
| etext2867 | Harte, Bret, 1836-1902 | A Sappho of Green Springs |
| etext2930 | Huxley, Thomas Henry, 1825-1895 | Criticism on "The origin of species" |
| etext2961 | Casanova, Giacomo, 1725-1798 | Memoirs of Casanova — Volume 11: Paris and Holland |
| etext3002 | Society's Child (audiofile) | |
| etext3089 | Maupassant, Guy de, 1850-1893 | Original Short Stories — Volume 13 |
| etext3185 | Twain, Mark, 1835-1910 | Those Extraordinary Twins |
| etext3187 | Twain, Mark, 1835-1910 | Christian Science |
| etext3205 | Ward, Grady | Moby Pronunciation List |
| etext3239 | MacGrath, Harold, 1871-1932 | The Puppet Crown |
| etext3246 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext3265 | Wright, Harold Bell, 1872-1944 | The Re-Creation of Brian Kent |
| etext3272 | Ward, Artemus, 1834-1867 | The Complete Works of Artemus Ward — Part 2: War |
| etext3425 | Holley, Marietta, 1836-1926 | Samantha at Saratoga |
| etext3434 | Koran. English | |
| etext3466 | Connor, Ralph, 1860-1937 | The Foreigner |
| etext3492 | Wiggin, Kate Douglas Smith, 1856-1923 | Homespun Tales |
| etext3554 | Bourrienne, Louis Antoine Fauvelet de, 1769-1834 | Memoirs of Napoleon — Volume 04 |
| etext3660 | Bamford, Mary E. (Mary Ellen) | Out of the Triangle: a story of the Far East |
| etext3684 | Churchill, Winston, 1871-1947 | Mr. Crewe's Career — Complete |
| etext3731 | Osborne, Oliver T. (Oliver Thomas), 1862-1940 | Disturbances of the Heart |
| etext3751 | Howes, Ethel Dench Puffer, 1872-1950 | The Psychology of Beauty |
| etext3759 | Tegnér, Esaias, 1782-1846 | Fridthjof's Saga; a Norse romance |
| etext3764 | Churchill, Winston, 1871-1947 | Coniston — Volume 03 |
| etext3790 | Shaw, Bernard, 1856-1950 | Major Barbara |
| etext3825 | Shaw, Bernard, 1856-1950 | Pygmalion |
| etext3848 | Montespan, Françoise-Athénaïs de Rochechouart de Mortemart, marquise de, 1641-1707 | Memoirs of Madame de Montespan — Volume 2 |
| etext3973 | Bazin, René, 1853-1932 | The Ink-Stain (Tache d'encre) — Volume 2 |
| etext3980 | Daudet, Alphonse, 1840-1897 | Fromont and Risler — Complete |
| etext3986 | Malot, Hector, 1830-1907 | Conscience — Volume 1 |
| etext4024 | Shaw, Bernard, 1856-1950 | The Man of Destiny |
| etext4053 | Yonge, Charlotte Mary, 1823-1901 | Nuttie's Father |
| etext4068 | Thomas, J. J. (John Jacob), 1841?-1889 | West Indian Fables by James Anthony Froude Explained by J. J. Thomas |
| etext4101 | Ames, Azel, 1845-1908 | The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Volume 1 |
| etext4107 | Ames, Azel, 1845-1908 | The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Complete |
| etext4112 | Young, Filson, 1876-1938 | Christopher Columbus and the New World of His Discovery — Volume 5 |
| etext4124 | Pepys, Samuel, 1633-1703 | Diary of Samuel Pepys — Volume 08: October/November/December 1660 |
| etext4161 | Pepys, Samuel, 1633-1703 | Diary of Samuel Pepys — Volume 40: November/December 1665 |
| etext4243 | Southey, Robert, 1774-1843 | Sir Thomas More, or, Colloquies on the Progress and Prospects of Society |
| etext4289 | Imbert de Saint-Amand, Arthur Léon, baron, 1834-1900 | The Duchess of Berry and the Court of Charles X |
| etext4335 | Malthus, T. R. (Thomas Robert), 1766-1834 | The Grounds of an Opinion on the Policy of Restricting the Importation of Foreign Corn: intended as an appendix to "Observations on the corn laws" |
| etext4387 | Bierce, Ambrose, 1842-1914? | Present at a Hanging and Other Ghost Stories |
| etext4418 | Meredith, George, 1828-1909 | Sandra Belloni — Volume 6 |
| etext4530 | Scott, Evelyn, 1893-1963 | Precipitations |
| etext4593 | Friends and Neighbors | |
| etext4597 | Marden, Orison Swett, 1850-1924 | Eclectic School Readings: Stories from Life |
| etext4637 | Gillmore, Inez Haynes, 1873-1970 | Angel Island |
| etext4660 | Alger, Horatio, 1832-1899 | Timothy Crump's Ward |
| etext4726 | Holmes, Oliver Wendell, 1809-1894 | John Lothrop Motley. a memoir — Volume 2 |
| etext4766 | Galsworthy, John, 1867-1933 | Windows |
| etext4838 | Motley, John Lothrop, 1814-1877 | History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1584-85a |
| etext4849 | Motley, John Lothrop, 1814-1877 | History of the United Netherlands, 1586d |
| etext4887 | Motley, John Lothrop, 1814-1877 | Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years' War, 1610a |
| etext4925 | Bulfinch, Thomas, 1796-1867 | The Age of Fable |
| etext4941 | Rathborne, George, St., 1854-1938 | The House Boat Boys |
| etext4953 | London, Jack, 1876-1916 | Revolution, and Other Essays |
| etext4978 | ||
| etext5055 | Galsworthy, John, 1867-1933 | Plays : First Series |
| etext5074 | Gatty, Alfred, Mrs., 1809-1873 | Aunt Judy's Tales |
| etext5075 | Henty, G. A. (George Alfred), 1832-1902 | The Lion of the North |
| etext5172 | Morris, Gouverneur, 1876-1953 | Aladdin O'Brien |
| etext5241 | Mundy, Talbot, 1879-1940 | The Eye of Zeitoon |
| etext5256 | Fielding, Henry, 1707-1754 | The History of the Life of the Late Mr Jonathan Wild the Great |
| etext5274 | Yonge, Charlotte Mary, 1823-1901 | The Chaplet of Pearls |
| etext5354 | Scott, Walter, Sir, 1771-1832 | Guy Mannering, Or, the Astrologer — Volume 02 |
| etext5407 | Boyd, Andrew Kennedy Hutchison, 1825-1899 | The Recreations of a Country Parson |
| etext5413 | Hamilton, Anthony, Count, 1646-1720 | The Memoirs of Count Grammont — Volume 05 |
| etext5448 | Ebers, Georg, 1837-1898 | Uarda : a Romance of Ancient Egypt — Volume 10 |
| etext5490 | Ebers, Georg, 1837-1898 | The Emperor — Volume 08 |
| etext5504 | Ebers, Georg, 1837-1898 | Serapis — Volume 04 |
| etext5516 | Ebers, Georg, 1837-1898 | Arachne — Complete |
| etext5644 | Molière, 1622-1673 | Sganarelle |
| etext5679 | Leahy, Arthur Herbert, 1857-1928 | Heroic Romances of Ireland — Volume 2 |
| etext5725 | Marshall, H. E. (Henrietta Elizabeth) | English Literature for Boys and Girls |
| etext5760 | Burton, Richard Francis, Sir, 1821-1890 | Two Trips to Gorilla Land and the Cataracts of the Congo Volume 1 |
| etext5786 | Twain, Mark, 1835-1910 | A Tramp Abroad — Volume 05 |
| etext5814 | Twain, Mark, 1835-1910 | Following the Equator, Part 7 |
| etext5855 | Sheridan, Philip Henry, 1831-1888 | The Memoirs of General Philip H. Sheridan, Volume I., Part 2 |
| etext5907 | Cervantes Saavedra, Miguel de, 1547-1616 | The History of Don Quixote, Volume 1, Part 05 |
| etext5942 | Cervantes Saavedra, Miguel de, 1547-1616 | The History of Don Quixote, Volume 2, Part 39 |
| etext5976 | MacDonald, George, 1824-1905 | Thomas Wingfold, Curate |
| etext5982 | Eliot, T. S. (Thomas Stearns), 1888-1965 | Eeldrop and Appleplex |
| etext5999 | Scott, Walter, Sir, 1771-1832 | Guy Mannering — Complete |
| etext6081 | Coleridge, Samuel Taylor, 1772-1834 | Biographia Literaria |
| etext6113 | Roe, Edward Payson, 1838-1888 | A Day of Fate |
| etext6146 | De Quincey, Thomas, 1785-1859 | Narrative and Miscellaneous Papers — Volume 1 |
| etext6174 | Parker, Gilbert, 1862-1932 | Pierre and His People, [Tales of the Far North], Volume 1. |
| etext6318 | Molière, 1622-1673 | L'Avare |
| etext6152 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Athens: Its Rise and Fall, Book II. |
| etext6373 | Harte, Bret, 1836-1902 | The Luck of Roaring Camp and Other Tales |
| etext6449 | Hubbard, Elbert, 1856-1915 | Little Journeys to the Homes of the Great - Volume 09 |
| etext6466 | Bourinot, John George, Sir, 1837-1902 | The Intellectual Development of the Canadian People |
| etext6494 | Harris, W. S. (William Shuler), 1865- | Mr. World and Miss Church-Member |
| etext6535 | United States. Army. Corps of Engineers. Manhattan District | The Atomic Bombings of Hiroshima and Nagasaki |
| etext6554 | Tarkington, Booth, 1869-1946 | Penrod |
| etext6557 | Poe, Edgar Allan, 1809-1849 | The Fall of the House of Usher |
| etext6558 | Zola, Émile, 1840-1902 | La Faute De L'Abbé Mouret |
| etext6559 | Olmstead, A. T. (Albert Ten Eyck) | Assyrian Historiography |
| etext6562 | Molière, 1622-1673 | The Pretentious Young Ladies |
| etext6565 | Hulbert, James Root, 1884-1969 | Chaucer's Official Life |
| etext6626 | Zola, Émile, 1840-1902 | Theresa Raquin |
| etext6651 | Storm, Theodor, 1817-1888 | Immensee |
| etext6689 | Dobson, Austin, 1840-1921 | Fielding |
| etext6692 | Aikin, Lucy, 1781-1864 | Swiss Family Robinson in Words of One Syllable Adapted from the Original |
| etext6713 | Lowe, Clara M. S. | God's Answers |
| etext6789 | Schiller, Friedrich, 1759-1805 | Don Carlos |
| etext6794 | Schiller, Friedrich, 1759-1805 | The Poems of Schiller — First period |
| etext6800 | Schiller, Friedrich, 1759-1805 | The Works of Frederich Schiller |
| etext6813 | Traill, Catharine Parr Strickland, 1802-1899 | Lost in the Backwoods |
| etext6887 | Cantù, Cesare, 1804-1895 | Il Sacro Macello Di Valtellina |
| etext6890 | Hauff, Wilhelm, 1802-1827 | Mitteilungen aus den Memoiren des Satan — Band 1 |
| etext6914 | Cranch, Christopher Pearse, 1813-1892 | The Last of the Huggermuggers |
| etext6917 | Dent, John Charles, 1841-1888 | The Gerrard Street Mystery and Other Weird Tales |
| etext6947 | Thompson, D. P., 1795-1868 | The Rangers; or, The Tory's Daughter |
| etext6951 | Darwin, Charles, 1809-1882 | The Voyage of the Beagle |
| etext6975 | Shakespeare, William, 1564-1616 | Macbeth |
| etext6989 | Pennell, Robert Franklin | Ancient Rome : from the earliest times down to 476 A. D. |
| etext6997 | Wright, Harold Bell, 1872-1944 | The Winning of Barbara Worth |
| etext7025 | Scott, Walter, Sir, 1771-1832 | Rob Roy — Complete |
| etext7046 | Whitcomb, Harriet Manning | Annals and Reminiscences of Jamaica Plain |
| etext7089 | Defoe, Daniel, 1661?-1731 | The Consolidator |
| etext7102 | Twain, Mark, 1835-1910 | Adventures of Huckleberry Finn, Chapters 11 to 15 |
| etext7132 | Hudson, W. H. (William Henry), 1841-1922 | The Purple Land |
| etext7139 | Logan, John Alexander, 1826-1886 | The Great Conspiracy, Volume 7 |
| etext7158 | Twain, Mark, 1835-1910 | The Prince and the Pauper, Part 5. |
| etext7164 | Tagore, Rabindranath, 1861-1941 | Gitanjali |
| etext7192 | Ledbury, Lady Biddulph of | Charles Philip Yorke, Fourth Earl of Hardwicke, Vice-Admiral R.N. — a Memoir |
| etext7223 | Various | The Belgian Cookbook |
| etext7361 | Juglar, Clément | A Brief History of Panics and Their Periodical Occurrence in the United States |
| etext7395 | Holmes, Oliver Wendell, 1809-1894 | The Poetical Works of Oliver Wendell Holmes — Volume 08: Bunker Hill and Other Poems |
| etext7405 | Lardner, Ring, 1885-1933 | The Real Dope |
| etext7531 | A Book of Old Ballads — Volume 1 | |
| etext7620 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Pelham — Volume 06 |
| etext7680 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Harold : the Last of the Saxon Kings — Volume 09 |
| etext7703 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | My Novel — Volume 02 |
| etext7726 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | The Last of the Barons — Volume 12 |
| etext7749 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | The Parisians — Complete |
| etext7760 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Falkland, Book 4. |
| etext7793 | Nexø, Martin Andersen, 1869-1954 | Pelle the Conqueror — Volume 03 |
| etext7811 | ||
| etext7814 | Cowan, James | Daybreak; a Romance of an Old World |
| etext7850 | Davis, Matthew L. (Matthew Livingston), 1773-1850 | Memoirs of Aaron Burr, Volume 1. |
| etext7855 | Pedler, Margaret, -1948 | The Vision of Desire |
| etext7891 | Collins, Wilkie, 1824-1889 | The Dead Alive |
| etext7903 | ||
| etext7968 | Phillpotts, Eden, 1862-1960 | Lying Prophets |
| etext8040 | Anonymous | The Bible, King James version, Book 40: Matthew |
| etext8061 | Anonymous | The Bible, King James version, Book 61: 2 Peter |
| etext8139 | Feis, Jacob | Shakspere and Montaigne |
| etext8164 | Wodehouse, P. G. (Pelham Grenville), 1881-1975 | My Man Jeeves |
| etext8169 | Rabelais, François, 1483-1553 | Gargantua and Pantagruel, Illustrated, Book 4 |
| etext8228 | Anonymous | The World English Bible (WEB): Genesis |
| etext8252 | Anonymous | The World English Bible (WEB): Lamentations |
| etext8266 | Anonymous | The World English Bible (WEB): Malachi |
| etext8280 | Anonymous | The World English Bible (WEB): 2 Thessalonians |
| etext8338 | The Bible, Douay-Rheims, Book 38: Micheas | |
| etext8366 | The Bible, Douay-Rheims, Book 66: James | |
| etext8387 | Hamsun, Knut, 1859-1952 | Hunger |
| etext8427 | Allen, Edith H. | Home Missions in Action |
| etext8437 | Streuvels, Stijn [pseud.], 1871-1969 | The Path of Life |
| etext8443 | Fuhrer, Charlotte | The Mysteries of Montreal |
| etext8478 | Twain, Mark, 1835-1910 | Life on the Mississippi, Part 8. |
| etext8575 | Imbert de Saint-Amand, Arthur Léon, baron, 1834-1900 | The Happy Days of the Empress Marie Louise |
| etext8603 | Various | Notes and Queries, Number 01, November 3, 1849 |
| etext8732 | Henty, G. A. (George Alfred), 1832-1902 | Through the Fray |
| etext8791 | Dante Alighieri, 1265-1321 | The Divine Comedy by Dante, Illustrated, Purgatory, Volume 2 |
| etext8796 | Dante Alighieri, 1265-1321 | The Divine Comedy by Dante, Illustrated, Paradise, Volume 1 |
| etext8817 | London, Jack, 1876-1916 | |
| etext8858 | Hewlett, Maurice Henry, 1861-1923 | Earthwork out of Tuscany |
| etext8997 | Ritchie, Francis | Ritchie's Fabulae Faciles |
| etext8998 | Blagdon, Francis W., 1778-1819 | Paris as It Was and as It Is |
| etext9069 | Bertrand, Louis, 1866-1941 | Saint Augustin |
| etext9084 | Heyse, Paul, 1830-1914 | Ein Ring |
| etext9145 | London, Jack, 1876-1916 | White Fang |
| etext9252 | Hawthorne, Nathaniel, 1804-1864 | Time's Portraiture |
| etext9255 | Hawthorne, Nathaniel, 1804-1864 | The Gorgon's Head |
| etext9269 | Melville, Herman, 1819-1891 | Typee |
| etext9272 | Swift, Jonathan, 1667-1745 | Gulliver's Travels |
| etext9297 | Fletcher, J. S. (Joseph Smith), 1863-1935 | The Orange-Yellow Diamond |
| etext9322 | Towle, George M. (George Makepeace), 1841-1893 | The Nation in a Nutshell |
| etext9371 | Erasmus, Desiderius, 1469-1536 | The Praise of Folly |
| etext9387 | Gore, Mrs. (Catherine Grace Frances), 1799-1861 | Theresa Marchmont |
| etext9496 | Meyer, Conrad Ferdinand, 1825-1898 | Das Leiden eines Knaben |
| etext9520 | Thackeray, William Makepeace, 1811-1863 | The Bedford-Row Conspiracy |
| etext9522 | Thackeray, William Makepeace, 1811-1863 | Barry Lyndon |
| etext9617 | Barrie, J. M. (James Matthew), 1860-1937 | Echoes of the War |
| etext9645 | Hugo, Victor, 1802-1885 | Quatrevingt-Treize |
| etext9659 | Tarkington, Booth, 1869-1946 | The Gentleman from Indiana |
| etext9703 | Dickens, Charles, 1812-1870 | Dombey and Son |
| etext9705 | Dickens, Charles, 1812-1870 | The Mystery of Edwin Drood |
| etext9724 | Dickens, Charles, 1812-1870 | Miscellaneous Papers |
| etext9764 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Alice, or the Mysteries — Book 02 |
| etext9773 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Alice, or the Mysteries — Book 11 |
| etext9869 | Musset, Alfred de, 1810-1857 | The Confession of a Child of the Century |
| etext9918 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext9944 | King, Basil, 1859-1928 | The Conquest of Fear |
| etext9989 | Oxenham, John, 1852-1941 | Bees in Amber |
| etext10026 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext10038 | Robins, Elizabeth, 1862-1952 | The Magnetic North |
| etext10088 | Oxonian, An | Thaumaturgia |
| etext10114 | The Great Events by Famous Historians, Volume 02 | |
| etext10140 | Clark, Donald Lemen, 1888-1966 | Rhetoric and Poetry in the Renaissance |
| etext10154 | Schultz, Siegfried Von | Voice Trial - Kinetophone Actor Audition |
| etext10205 | Hobart, Garrett A., 1844-1899 | Words of Welcome |
| etext10265 | Pyykkönen, Otto | Anssin Jukka ja Härmän Häät |
| etext10294 | Verse and Prose for Beginners in Reading | |
| etext10316 | Fitzhugh, Percy Keese, 1876-1950 | Roy Blakeley's Adventures in Camp |
| etext10379 | Garvice, Charles, -1920 | At Love's Cost |
| etext10399 | Collins, J. E. (Joseph Edmund), 1855-1892 | The Story of Louis Riel: the Rebel Chief |
| etext10432 | Baum, L. Frank (Lyman Frank), 1856-1919 | Aunt Jane's Nieces out West |
| etext10436 | Spyri, Johanna, 1827-1901 | Erick and Sally |
| etext10437 | Eddy, Mary Baker, 1821-1910 | Pulpit and Press (6th Edition) |
| etext10448 | Various | The Anti-Slavery Harp |
| etext10467 | A Select Collection of Old English Plays, Volume 8 | |
| etext10591 | Trumbull, H. Clay (Henry Clay), 1830-1903 | A Lie Never Justifiable |
| etext10601 | Brand, Max, 1892-1944 | The Rangeland Avenger |
| etext10618 | Unknown | Jesus Says So |
| etext10647 | Lord, John, 1810-1894 | Beacon Lights of History, Volume 12 |
| etext10654 | McGuinn, Roger | The St. James Infirmary Blues |
| etext10719 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext10747 | Rostand, Edmond, 1868-1918 | Chantecler |
| etext10754 | Unknown | Little Sarah |
| etext10762 | Eliot, George, 1819-1880 | Impressions of Theophrastus Such |
| etext10800 | Burton, Robert, 1577-1640 | The Anatomy of Melancholy |
| etext21558 | Marryat, Frederick, 1792-1848 | The Children of the New Forest |
| etext10908 | United States War Department | Manual for Noncommissioned Officers and Privates of Infantry of the Army of the United States, 1917 |
| etext10910 | Le Gallienne, Richard, 1866-1947 | Robert Louis Stevenson, an Elegy; and Other Poems |
| etext10951 | Richardson, James D. (James Daniel), 1843-1914 | A Compilation of the Messages and Papers of the Presidents |
| etext10963 | France, Hector, 1837-1908 | The Grip of Desire |
| etext11016 | ||
| etext11092 | Anonymous | The History of Tom Thumb and Other Stories. |
| etext11139 | Bang, Herman, 1857-1912 | Haabløse Slægter |
| etext11153 | Hornung, E. W. (Ernest William), 1866-1921 | No Hero |
| etext11166 | Sheldon, Lurana W. | For Gold or Soul? |
| etext11224 | Mill, John Stuart, 1806-1873 | Utilitarianism |
| etext11271 | American Anti-Slavery Society | The Anti-Slavery Examiner, Part 1 of 4 |
| etext11282 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11306 | Unknown | Catalanisches Streitgedicht zwischen En Buc und seinem Pferd |
| etext11326 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11340 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11393 | Verne, Jules, 1828-1905 | Vingt mille lieues sous les mers. Dutch |
| etext11435 | Small Means and Great Ends | |
| etext11445 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11449 | Carey, William, 1761-1834 | An Enquiry into the Obligations of Christians to Use Means for the Conversion of the Heathens |
| etext11497 | Rovani, Giuseppe, 1818-1874 | Valenzia Candiano |
| etext11539 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11585 | Sedgwick, Susan Anne Livingston Ridley, 1788-1867 | The Young Emigrants; Madelaine Tube; the Boy and the Book; and Crystal Palace |
| etext11636 | Various | Notes and Queries, Number 05, December 1, 1849 |
| etext11697 | Blasco Ibáñez, Vicente, 1867-1928 | Mare Nostrum (Our Sea) |
| etext11748 | Wann, Harry Vincent | French Conversation and Composition |
| etext11776 | Human Genome Project | Chromosome Number 02 |
| etext11800 | Library of Congress. Copyright Office | U.S. Copyright Renewals 1950 - 1977 |
| etext11804 | Library of Congress. Copyright Office | U.S. Copyright Renewals, 1951 July - December |
| etext11808 | Library of Congress. Copyright Office | U.S. Copyright Renewals, 1953 July - December |
| etext11815 | Library of Congress. Copyright Office | U.S. Copyright Renewals, 1957 January - June |
| etext11973 | Jacobs, W. W. (William Wymark), 1863-1943 | Dialstone Lane, Part 3. |
| etext12020 | Wilcox, Ella Wheeler, 1855-1919 | A Woman of the World |
| etext12043 | Various | Punch, or the London Charivari, Volume 153, August 1, 1917. |
| etext12065 | Flaubert, Gustave, 1821-1880 | Trois contes |
| etext12141 | ||
| etext12157 | Jacobs, W. W. (William Wymark), 1863-1943 | The Unknown |
| etext12174 | Malot, Hector, 1830-1907 | Baccara |
| etext12268 | Falke, Gustav, 1853-1916 | Hohe Sommertage |
| etext12335 | De Forest, John William, 1826-1906 | Overland |
| etext12337 | Harte, Bret, 1836-1902 | Dickens in Camp |
| etext12417 | Slosson, Annie Trumbull | Fishin' Jimmy |
| etext12429 | Hosmer, James Kendall, 1834-1927 | The Last Leaf |
| etext12462 | A Compilation of the Messages and Papers of the Presidents | |
| etext12512 | Morrison, John Arch, 1893-1965 | The Deacon of Dobbinsville |
| etext12540 | Thayer, William Roscoe, 1859-1923 | George Washington |
| etext12543 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext12544 | Osborne, Dorothy, 1627-1695 | The Love Letters of Dorothy Osborne to Sir William Temple, 1652-54 |
| etext12555 | Doyle, Arthur Conan, Sir, 1859-1930 | The Tragedy of the Korosko |
| etext12626 | Phillips, Claude, 1846-1924 | The Earlier Work of Titian |
| etext12652 | Lodge, Henry Cabot, 1850-1924 | George Washington, Volume I |
| etext12690 | Hancock, H. Irving (Harrie Irving), 1868-1922 | The High School Pitcher |
| etext12705 | ||
| etext12752 | Texier, Edmond Auguste, 1816-1887 | Les hommes de la guerre d'Orient 11: Le prince du Montenegro |
| etext12767 | Fiske, John, 1842-1901 | The Beginnings of New England |
| etext12783 | Ségur, Sophie, comtesse de, 1799-1874 | Les Mémoires d'un âne. |
| etext12943 | Burleigh, Cyril | The Hilltop Boys on the River |
| etext12950 | Daudet, Alphonse, 1840-1897 | L'Immortel |
| etext12994 | Russell, George William Erskine, 1853-1919 | Sydney Smith |
| etext13017 | Cross, Victoria, 1868-1952 | Five Nights |
| etext13202 | Watkins, Sam R. | Co. Aytch |
| etext13210 | Valera, Juan, 1824-1905 | El Comendador Mendoza |
| etext13279 | Holmes, Robert Derby | A Yankee in the Trenches |
| etext13308 | Pakkala, Teuvo, 1862-1925 | Tukkijoella |
| etext13326 | ||
| etext13329 | Maeterlinck, Maurice, 1862-1949 | Pélléas and Mélisande |
| etext13434 | Haggard, Henry Rider, 1856-1925 | Regeneration |
| etext13444 | ||
| etext13472 | O'Kelly, Seumas, 1881-1918 | Waysiders |
| etext13473 | Beethoven, Ludwig van, 1770-1827 | String Quartet No. 06 in B flat major Opus 18 |
| etext13476 | Tesla, Nikola, 1856-1943 | Experiments with Alternate Currents of High Potential and High Frequency |
| etext13484 | Blackmore, Richard, Sir, 1654?-1729 | Essay upon Wit |
| etext13504 | Runciman, John F., 1866-1916 | Haydn |
| etext13530 | Glyn, Elinor, 1864-1943 | Halcyone |
| etext13537 | Shaw, Ellen Eddy | The Library of Work and Play: Gardening and Farming. |
| etext13560 | Parker, Lester Shepard | Nancy MacIntyre |
| etext13598 | ||
| etext13644 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext13667 | Crockett, S. R. (Samuel Rutherford), 1860-1914 | Bog-Myrtle and Peat |
| etext13674 | Jean Froissart, Thomas Malory, Raphael Holinshed | Chronicle and Romance (The Harvard Classics Series) |
| etext13728 | Ward, Humphry, Mrs., 1851-1920 | Marcella |
| etext13754 | New, E. H. (Edmund Hort), 1871-1931 | Evesham |
| etext13760 | Craik, George Lillie, 1798-1866 | John Rutherford, the White Chief |
| etext13764 | Lynd, Robert, 1879-1949 | The Art of Letters |
| etext13771 | Dickens, Charles, 1812-1870 | Pickwick papers. French |
| etext13793 | Malot, Hector, 1830-1907 | En famille |
| etext13972 | Various | The Fifteen Comforts of Matrimony: Responses From Women |
| etext13978 | Flight, Edward G. | The True Legend of St. Dunstan and the Devil |
| etext14017 | Hoskins, Robert, Mrs., 1837- | Clara A. Swain, M.D. |
| etext14086 | Dawson, Coningsby, 1883-1959 | Carry On |
| etext14129 | Lamb, Charles, 1775-1834 | The Works of Charles Lamb in Four Volumes, Volume 4 |
| etext14134 | Garbe, Richard von, 1857-1927 | Akbar, Emperor of India |
| etext14200 | Zola, Émile, 1840-1902 | La faute de l'Abbe Mouret |
| etext14201 | Walpole, Hugh, Sir, 1884-1941 | The Golden Scarecrow |
| etext14225 | Achleitner, Arthur, 1858-1927 | Bergrichters Erdenwallen |
| etext14243 | Abbott, John S. C. (John Stevens Cabot), 1805-1877 | Christopher Carson |
| etext14361 | Bindloss, Harold, 1866-1945 | Carmen's Messenger |
| etext14395 | Locke, William John, 1863-1930 | Septimus |
| etext14403 | Hathaway, B. A. | 1001 Questions and Answers on Orthography and Reading |
| etext14450 | Various | Punch, or the London Charivari, Volume 152, February 7, 1917 |
| etext14498 | Orr, Sutherland, Mrs., 1828-1903 | A Handbook to the Works of Browning (6th ed.) |
| etext14571 | Glasgow, Ellen Anderson Gholson, 1873-1945 | Life and Gabriella |
| etext19338 | Piper, H. Beam, 1904-1964 | The Keeper |
| etext14582 | Wood, William Charles Henry, 1864-1947 | The War With the United States : A Chronicle of 1812 |
| etext14620 | As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1873-01/02) | |
| etext14658 | London, Jack, 1876-1916 | The Road |
| etext14660 | Mabini, Apolinario, 1864-1903 | Mabini's Decalogue for Filipinos |
| etext14701 | Sharp, Dallas Lore, 1870-1929 | Roof and Meadow |
| etext14727 | Kauppis-Heikki, 1862-1920 | Mäkijärveläiset |
| etext14779 | Westall, William, 1835-1903 | Mr. Fortescue |
| etext14782 | Roberts, Lloyd | England over Seas |
| etext14834 | Tyler, John Mason, 1851-1929 | The Whence and the Whither of Man |
| etext14864 | Päivärinta, Pietari, 1827-1913 | Elämän hawainnoita V: Kirjailija; Mutta elääpä hän wielä sittenkin; Wäärä mammona |
| etext14872 | Potter, Beatrix, 1866-1943 | The Tale of Squirrel Nutkin |
| etext14893 | Hooker, Forrestine C. (Forrestine Cooper), 1867-1932 | Prince Jan, St. Bernard |
| etext14907 | Benson, Stella, 1892-1933 | Living Alone |
| etext14938 | Various | Punch, or the London Charivari, Volume 1, November 27, 1841 |
| etext14958 | Burgess, Thornton W. (Thornton Waldo), 1874-1965 | Mother West Wind 'Why' Stories |
| etext15027 | Various | La Novela Picaresca |
| etext15038 | Cotteau, Edmond, 1833- | Krakatau en de Straat Soenda |
| etext15042 | Gronniosaw, James Albert Ukawsaw | A Narrative of the Most Remarkable Particulars in the Life of James Albert Ukawsaw Gronniosaw, an African Prince, as Related by Himself |
| etext15053 | Home, Gordon, 1878-1969 | The Evolution of an English Town |
| etext15061 | Kauppis-Heikki, 1862-1920 | Aliina |
| etext15072 | Wells, Carolyn, 1862-1942 | Marjorie's Maytime |
| etext15121 | Various | Punch, or the London Charivari, Volume 152, May 2, 1917 |
| etext15148 | Gregory, Jackson, 1882-1943 | Six Feet Four |
| etext15157 | The Philippine Islands, 1493-1898 — Volume 16 of 55 | |
| etext15204 | Campbell, Helen, 1839-1918 | Women Wage-Earners |
| etext15222 | Runciman, Walter, 1847-1937 | Looking Seaward Again |
| etext15341 | Jahnsson, Evald Ferdinand, 1844-1895 | Jouluaattona juomarin kodissa |
| etext15358 | Various | The Great Round World and What Is Going On In It, Vol. 1, No. 17, March 4, 1897 |
| etext15476 | The Mahabharata of Krishna-Dwaipayana Vyasa, Volume 3 | |
| etext15483 | Sleeman, William, 1788-1856 | Rambles and Recollections of an Indian Official |
| etext15554 | Leroux, Gaston, 1868-1927 | Le parfum de la Dame en noir |
| etext15663 | Rawlinson, George, 1812-1902 | Ancient Egypt |
| etext15682 | Conscience, Hendrik, 1812-1883 | De Leeuw van Vlaanderen |
| etext15747 | Hülshof, John L. | Reading Made Easy for Foreigners - Third Reader |
| etext9141 | ||
| etext15770 | Ackerman, Carl W. (Carl William), 1890-1970 | Germany, The Next Republic? |
| etext15822 | Clark, Sereno D. | The Faithful Steward |
| etext15915 | Offenbach, Jacques | The Tales of Hoffmann |
| etext16010 | Carleton, William, 1794-1869 | The Tithe-Proctor |
| etext16062 | Roserot de Melin, L. | In het gebied van het Tsadmeer met de expeditie Tilho |
| etext16082 | Delgado, Rafael, 1853-1914 | Angelina |
| etext16089 | Ward, Humphry, Mrs., 1851-1920 | The War on All Fronts: England's Effort |
| etext16159 | Various | The American Missionary — Volume 43, No. 10, October, 1889 |
| etext16197 | Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 | One Third Off |
| etext16199 | Godwin, William, 1756-1836 | Memoirs of the Author of a Vindication of the Rights of Woman |
| etext16229 | Van Dyke, Henry, 1852-1933 | The Poems of Henry Van Dyke |
| etext16263 | Various | Punch, or the London Charivari, Volume 103, December 3, 1892 |
| etext16267 | Moore, Edward, 1712-1757 | The Gamester (1753) |
| etext16332 | Nicolay, John George, 1832-1901 | A Short Life of Abraham Lincoln |
| etext16335 | D'Urfey, Thomas, 1653-1723 | Essays on the Stage |
| etext16399 | Young, Frederick | A Winter Tour in South Africa |
| etext16437 | Royce, Ruth | The Children of France |
| etext16479 | Anonymous | The Latin & Irish Lives of Ciaran |
| etext16482 | Ramsay, Anders, 1832-1910 | Muistoja lapsen ja hopeahapsen 2 |
| etext16496 | Holinshed, Raphael, -1580? | Chronicles (1 of 6): The Historie of England (1 of 8) |
| etext16521 | Washington, Pat Beauchamp, 1900- | Fanny Goes to War |
| etext16587 | Morris, Charles, 1833-1922 | Historical Tales, Vol 5 (of 15) |
| etext16594 | Curtler, W. H. R. (William Henry Ricketts), 1862-1925 | A Short History of English Agriculture |
| etext16640 | Various | Punch, or the London Charivari, Vol. 158, 192-06-30 |
| etext16658 | Wieck, Friedrich, 1785-1873 | Piano and Song |
| etext16805 | Ellis, Edward Sylvester, 1840-1916 | The Jungle Fugitives |
| etext16875 | Sue, Eugène, 1804-1857 | Paula Monti, Tome I |
| etext16912 | Harrison, James | The Life of the Right Honourable Horatio Lord Viscount Nelson, Volume 1 |
| etext17050 | Dyer, T. F. Thiselton (Thomas Firminger Thiselton), 1848- | Strange Pages from Family Papers |
| etext17141 | Buck, Charles Neville, 1879-1930 | Destiny |
| etext17167 | Various | Scientific American Supplement, No. 633, February 18, 1888 |
| etext17192 | Poe, Edgar Allan, 1809-1849 | The Raven |
| etext17200 | Alexander, Charles Wesley, 1837-1927 | Angel Agnes |
| etext17204 | Hearn, George Whitehead, 1812-1851 | Researches on curves of the second order |
| etext17232 | ||
| etext17284 | Dicey, Edward, 1832-1911 | Rome in 1860 |
| etext17302 | Cresson, Benjamin Franklin, 1873-1923 | Transactions of the American Society of Civil Engineers, vol. LXVIII, Sept. 1910 |
| etext17330 | Rappoport, A. S. (Angelo Solomon), 1871-1950 | History of Egypt From 330 B.C. To the Present Time, Volume 10 (of 12) |
| etext17342 | ||
| etext17409 | Various | St. Nicholas Magazine for Boys and Girls, Vol. 5, September 1878, No. 11 |
| etext17416 | Mallock, W. H. (William Hurrell), 1849-1923 | A Critical Examination of Socialism |
| etext17503 | Coelho, José Francisco Trindade, 1861-1908 | Os meus amores |
| etext17522 | Bain, Alexander, 1818-1903 | Practical Essays |
| etext17575 | Gould, John Mead, 1839-1930 | How to Camp Out |
| etext17579 | Lockhart, J. G. (John Gibson), 1794-1854 | The History of Napoleon Buonaparte |
| etext17604 | Anonymous | Amusing Trial in which a Yankee Lawyer Renders a Just Verdict |
| etext17642 | ||
| etext17656 | Theuriet, André, 1833-1907 | Gertrude et Veronique |
| etext17682 | Various | The Healthy Life, Vol. V, Nos. 24-28 |
| etext17712 | Elger, Thomas Gwyn, 1838-1897 | The Moon |
| etext17728 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext17760 | Hervé, F. | How to Enjoy Paris in 1842 |
| etext17762 | Pinkerton, Allan, 1819-1884 | The Burglar's Fate And The Detectives |
| etext17794 | Level, Maurice, 1875-1926 | L'épouvante |
| etext17848 | Benson, Edwin | Life in a Mediæval City |
| etext17859 | Bodin, Jean, 1530-1596 | Colloquium heptaplomeres de rerum sublimium arcanis abditis |
| etext17861 | Maeterlinck, Maurice, 1862-1949 | The Wrack of the Storm |
| etext17864 | Burton, Annie L., 1858- | Memories of Childhood's Slavery Days |
| etext17966 | ||
| etext17973 | Morris, William, 1834-1896 | The World of Romance |
| etext18089 | Nodier, Charles, 1780-1844 | Infernaliana |
| etext18093 | White, Grace Miller, 1868-1957 | From the Valley of the Missing |
| etext18224 | Doctorow, Cory, 1971- | Someone Comes to Town, Someone Leaves Town |
| etext18339 | Dixon, William Hepworth, 1821-1879 | Het Vrije Rusland |
| etext18351 | Hensley, Sophia Margaret, 1866-1913 | A Woman's Love Letters |
| etext18386 | Pascual, Andrés | Masakím |
| etext18436 | Schmid, Heinrich Alfred, 1863-1951 | Arnold Böcklin |
| etext18486 | Gordon, S. D. (Samuel Dickey), 1859-1936 | Quiet Talks on Following the Christ |
| etext18507 | Swedenborg, Emanuel, 1688-1772 | Angelic Wisdom about Divine Providence |
| etext18540 | Eddy, Thomas Mears, 1823-1874 | Abraham Lincoln |
| etext18551 | Wassermann, Jakob, 1873-1934 | Der Wendekreis - Erste Folge |
| etext18579 | Optic, Oliver, 1822-1897 | Taken by the Enemy |
| etext18586 | Dumas père, Alexandre, 1802-1870 | La San-Felice, Tome IV |
| etext18753 | Rockwell, Carey, [pseud.] | The Space Pioneers |
| etext18786 | Rockwell, Carey, [pseud.] | Treachery in Outer Space |
| etext18815 | Watson, Sidney | The Mark of the Beast |
| etext18841 | ||
| etext18855 | ||
| etext18915 | Bowles, William Lisle, 1762-1850 | The Poetical Works of William Lisle Bowles, Vol. 1 |
| etext18924 | Sue, Eugène, 1804-1857 | Les mystères de Paris, Tome IV |
| etext18937 | Kronheim, Joseph Martin, 1810-1896 | My First Picture Book |
| etext18948 | Mencken, H. L. (Henry Louis), 1880-1956 | Damn! |
| etext19014 | Riis, Jacob A. (Jacob August), 1849-1914 | Nibsy's Christmas |
| etext19045 | Chevalier, H. Émile (Henri Émile), 1828-1879 | Peaux-rouges et Peaux-blanches |
| etext19133 | Gregory, Charles Hutton | Practical Rules for the Management of a Locomotive Engine |
| etext19176 | Cooper, James Fenimore, 1789-1851 | Kuvauksia metsäelämästä sivistyksen äärimmäisellä rajalla |
| etext19212 | Hume, David, 1711-1776 | The History of England in Three Volumes, Vol.I., Part B. |
| etext19247 | May, Sophie, 1833-1906 | Dotty Dimple's Flyaway |
| etext19308 | Yonge, Charlotte Mary, 1823-1901 | Pioneers and Founders |
| etext19350 | Various | Punch, or the London Charivari, Volume 159, December 22, 1920 |
| etext19379 | Thompson, Edward John, 1886-1946 | The Leicestershires beyond Baghdad |
| etext19385 | The Modern Scottish Minstrel, Volume III | |
| etext19395 | Hale, George Ellery, 1868-1938 | The New Heavens |
| etext19527 | Raine, William MacLeod, 1871-1954 | The Yukon Trail |
| etext19626 | Aesop, 620 BC-563 BC | Aesop's Fables - Volume 11 |
| etext19637 | Sewell, Anna, 1820-1878 | Black Beauty - The Autobiography of a Horse |
| etext19640 | Twain, Mark, 1835-1910 | Adventures of Huckleberry Finn |
| etext19641 | Fonseca, Sebastião da | Relaçam dedicada A Serenissima Senhora Rainha da Gram Bretanha da Jornada que fes de Lixboa the Port-ts Mouth |
| etext19672 | Stevenson, Burton Egbert, 1872-1962 | The Holladay Case |
| etext19763 | Knibbs, Henry Herbert, 1874-1945 | Overland Red |
| etext19816 | Hope, Laura Lee | Six Little Bunkers at Cowboy Jack's |
| etext19853 | Orton, George W., 1873-1958 | Bob Hunt in Canada |
| etext19858 | Ibsen, Henrik, 1828-1906 | Konstruestro Solness |
| etext19954 | d'Albenas, François Bérenger de la Tour | L'amie rustique et autres vers divers |
| etext20016 | Spender, Harold, 1864-1926 | Home Rule |
| etext20046 | Henry, Patrick, 1736-1799 | Give Me Liberty or Give Me Death |
| etext20049 | Potter, Beatrix, 1866-1943 | Great Big Treasury of Beatrix Potter |
| etext20080 | Dyer, Gertrude P. | Little Pollie |
| etext20091 | Henty, G. A. (George Alfred), 1832-1902 | No Surrender! |
| etext20135 | Wallin, Johan Olof, 1779-1839 | The Angel of Death |
| etext20160 | Bacon, Leonard Woolsey, 1830-1907 | A History of American Christianity |
| etext20165 | Storey, G. A. (George Adolphus), 1834-1919 | The Theory and Practice of Perspective |
| etext20203 | Franklin, Benjamin, 1706-1790 | Autobiography of Benjamin Franklin |
| etext20233 | Buchanan, James, 1804-1870 | Modern Atheism under its forms of Pantheism, Materialism, Secularism, Development, and Natural Laws |
| etext20270 | Conrad, Joseph, 1857-1924 | Heart of Darkness |
| etext20347 | Hope, Laura Lee | The Moving Picture Girls Snowbound |
| etext20378 | Various | Christmas Sunshine |
| etext20413 | Wassermann, Jakob, 1873-1934 | Der Moloch |
| etext20506 | ||
| etext20557 | Ontario. Ministry of Education | Ontario Teachers' Manuals: Household Science in Rural Schools |
| etext20594 | Sunzi 6th cent. B.C. | The Art of War |
| etext20632 | Speed, Nell, 1878-1913 | Molly Brown's Orchard Home |
| etext20750 | Various | Journal of the Proceedings of the Linnean Society - Vol. 3 |
| etext20769 | Olcott, William Tyler, 1873-1936 | A Field Book of the Stars |
| etext20871 | Snyder, Harry | Human Foods and Their Nutritive Value |
| etext20909 | Roberts, Elizabeth Madox, 1881-1941 | Under the Tree |
| etext20957 | Long, William Joseph, 1866-1952 | Een Broertje van den Beer |
| etext21077 | Binet, Alfred, 1857-1911 | The Mind and the Brain |
| etext21136 | Hough, Lewis | For Fortune and Glory |
| etext21141 | Keller, Gottfried, 1819-1890 | Kleider machen Leute |
| etext21151 | Fea, Allan, 1860-1956 | Secret Chambers and Hiding Places |
| etext21157 | Benson, E. F. (Edward Frederic), 1867-1940 | Queen Lucia |
| etext21215 | Lemaître, Jules, 1853-1914 | Les Contemporains, 2ème Série |
| etext21301 | Fenn, George Manville, 1831-1909 | Bunyip Land |
| etext21330 | Shairp, John Campbell, 1819-1885 | Robert Burns |
| etext21373 | Fenn, George Manville, 1831-1909 | Syd Belton |
| etext21419 | Darroch, Alexander | The Children: Some Educational Problems |
| etext21455 | Kingston, William Henry Giles, 1814-1880 | Dick Cheveley |
| etext21483 | Kingston, William Henry Giles, 1814-1880 | The Wanderers |
| etext21491 | Kingston, William Henry Giles, 1814-1880 | The Trapper's Son |
| etext21516 | Northern Nut Growers Association Report of the Proceedings at the Forty-Second Annual Meeting | |
| etext21546 | Barnum, Richard | Nero, the Circus Lion |
| etext21580 | Marryat, Frederick, 1792-1848 | The Pirate |
| etext21583 | Riis, Jacob A. (Jacob August), 1849-1914 | Children of the Tenements |
| etext21612 | Hoare, Edward Newenham | A Child of the Glens |
| etext21655 | Maupassant, Guy de, 1850-1893 | The works of Guy de Maupassant, Vol. 5 |
| etext21682 | Burr, Fearing | The Field and Garden Vegetables of America |
| etext21713 | Ballantyne, R. M. (Robert Michael), 1825-1894 | The Young Trawler |
| etext21722 | Bridges, Robert Seymour, 1844-1930 | A Practical Discourse on Some Principles of Hymn-Singing |
| etext21869 | Shorter, Clement King, 1857-1926 | Immortal Memories |
| etext21891 | Strong, Harrington | The Brand of Silence |
| etext21950 | Coelho, José Maria Latino, 1825-1891 | Panegyrico de Luiz de Camões |
| etext21970 | London, Jack, 1876-1916 | The Scarlet Plague |
| etext22001 | ||
| etext22067 | Moore, Edward A. | The Story of a Cannoneer Under Stonewall Jackson |
| etext22088 | Newman, John Henry, 1801-1890 | Apologia Pro Vita Sua |
| etext22108 | Hall, Herbert J. (Herbert James), 1870-1923 | The Untroubled Mind |
| etext22235 | Strindberg, August, 1849-1912 | Fräulein Julie |
| etext22263 | Kainen, Jacob, 1909-2001 | John Baptist Jackson |
| etext22294 | Black, Margaret Moyes | Robert Louis Stevenson |
| etext22306 | Edman, Irwin | Human Traits and their Social Significance |
| etext22340 | Grahame, Kenneth, 1859-1932 | The Wind in the Willows |
| etext22360 | Bradley, Mary Hastings, -1976 | The Fortieth Door |
| etext22425 | ||
| etext22431 | Hancock, H. Irving (Harrie Irving), 1868-1922 | Dave Darrin on Mediterranean Service |
| etext22439 | Chambers, Robert W. (Robert William), 1865-1933 | The King in Yellow, Part 2 |
| etext22477 | Lawrence, D. H. (David Herbert), 1885-1930 | Wintry Peacock |
| etext22481 | Dufau, Th. | Een Reis naar het Land van de Cacao en de Suiker |
| etext22504 | Fogazzaro, Antonio, 1842-1911 | Il mistero del poeta |
| etext22594 | Various | Colonial Records of Virginia |
| etext22596 | Harmon, Jim, 1933-2010 | Measure for a Loner |
| etext22619 | Putnam, George Haven, 1844-1930 | International Copyright |
| etext22640 | Bergh van Eysinga-Elias, Jeanette van den, 1880-1957 | Multatuli |
| etext22654 | Le Queux, William, 1864-1927 | The Doctor of Pimlico |
| etext22661 | Gautier, Théophile, 1811-1872 | Clarimonde |
| etext22734 | Lawrence, D. H. (David Herbert), 1885-1930 | Bay |
| etext22817 | Bocage, Manuel Maria Barbosa du, 1765-1805 | Mágoas Amorosas de Elmano |
| etext22886 | Cripps, Arthur Shearly, 1869-1952 | Cinderella in the South |
| etext22951 | Appleton, Victor [pseud.] | Tom Swift and His Aerial Warship, or, |
| etext23026 | Ellis, Edward Sylvester, 1840-1916 | The Phantom of the River |
| etext23028 | Laumer, Keith, 1925-1993 | Greylorn |
| etext23047 | Various | Le Tour du Monde; Les Yakoutes |
| etext23081 | Bierce, Ambrose, 1842-1914? | Present at a Hanging and Other Ghost Stories |
| etext23115 | Martineau, Harriet, 1802-1876 | The Billow and the Rock |
| etext23129 | Reid, Mayne, 1818-1883 | The Young Voyageurs |
| etext23138 | Marryat, Frederick, 1792-1848 | Diary in America, Series Two |
| etext23179 | Clark, Charles Heber, 1841-1915 | Frictional Electricity |
| etext23181 | Curwood, James Oliver, 1878-1927 | Thomas Jefferson Brown |
| etext23190 | Kingston, William Henry Giles, 1814-1880 | Mary Liddiard |
| etext23277 | Martineau, Harriet, 1802-1876 | Feats on the Fiord |
| etext23346 | Castelo Branco, Camilo Ferreira Botelho, 1825-1890 | O Arrependimento |
| etext23423 | Loti, Pierre, 1850-1923 | Le roman d'un enfant |
| etext23439 | Leinster, Murray, 1896-1975 | Attention Saint Patrick |
| etext23486 | Castelo Branco, Camilo Ferreira Botelho, 1825-1890 | Folhas cahidas, apanhadas na lama por um antigo juiz das almas de Campanhan |
| etext23556 | Murfree, Mary Noailles, 1850-1922 | His Unquiet Ghost |
| etext23588 | Raphael, Rick, 1919-1994 | A Filbert Is a Nut |
| etext23663 | Fitzhugh, Percy Keese, 1876-1950 | Tom Slade on a Transport |
| etext23677 | Appleton, Victor [pseud.] | The Moving Picture Boys on the Coast |
| etext23689 | Various | The Continental Monthly, Vol 6, No 5, November 1864 |
| etext23754 | The Building of a Book | |
| etext23771 | Eggleston, Edward, 1837-1902 | The Hoosier School-boy |
| etext23775 | Der Totentanz | |
| etext23778 | Lippmann, Julie Mathilde, 1864- | The Governess |
| etext23823 | Li, Yu Xiu | 弟子規 |
| etext23839 | Confucius, 551 BC-479 BC | 論語 |
| etext23895 | The Buckle My Shoe Picture Book | |
| etext23913 | Song, Ye | 莊子的故事 |
| etext23917 | Wilde, Oscar, 1854-1900 | Salomé |
| etext23928 | Donovan, Francis | The Short Life |
| etext23935 | Shakespeare, William, 1564-1616 | Sonnet 23 |
| etext23992 | Burnett, Emma L. | A Missionary Twig |
| etext24065 | Green, Percy B. | A History of Nursery Rhymes |
| etext24080 | Worst, John H. (John Henry), 1850-1945 | The Stewardship of the Soil |
| etext24122 | Martino, Joseph Paul, 1931- | Pushbutton War |
| etext24184 | Zhou, Xingsi, -521 | 千字文 |
| etext24205 | Murrey, Thomas J. (Thomas Jefferson) | Breakfast Dainties |
| etext24215 | Congreve, William, 1670-1729 | The Comedies of William Congreve |
| etext24247 | Reynolds, Mack, 1917-1983 | Gun for Hire |
| etext24261 | Various | Chambers's Edinburgh Journal, No. 461 |
| etext24353 | Thayer, Ella Cheever | Wired Love |
| etext24362 | West, John, 1808-1873 | The History of Tasmania, Volume I |
| etext24444 | Garrett, Randall, 1927-1987 | Out Like a Light |
| etext24448 | Jandin, B. de | Om en door den Peloponnesus |
| etext24484 | Various | The Journal of Negro History, Volume 7, 1922 |
| etext24487 | Smith, E. Boyd (Elmer Boyd), 1860-1943 | The Story of Pocahontas and Captain John Smith |
| etext24527 | Tyndall, John, 1820-1893 | Fragments of science, V. 1-2 |
| etext24534 | Ignatius, of Loyola, Saint, 1491-1556 | The Autobiography of St. Ignatius |
| etext24537 | Rains, George Washington, 1817-1898 | History of the Confederate Powder Works |
| etext24550 | Roger, Charles, 1819- | The Rise of Canada, from Barbarism to Wealth and Civilisation |
| etext24562 | Douie, James McCrone, Sir, 1854-1935 | The Panjab, North-West Frontier Province, and Kashmir |
| etext24590 | Bailey, Arthur Scott, 1877-1949 | The Tale of Ferdinand Frog |
| etext24592 | Bailey, Arthur Scott, 1877-1949 | The Tale of Snowball Lamb |
| etext24629 | Northern Nut Growers Association Report of the Proceedings at the Eleventh Annual Meeting | |
| etext24683 | Carr, Annie Roe | Nan Sherwood at Palm Beach |
| etext24701 | Bastos, Teixeira, 1857?-1902 | A dissolução do regimen capitalista |
| etext24732 | Skinner, Charles M. (Charles Montgomery), 1852-1907 | Myths & Legends of our New Possessions & Protectorate |
| etext24770 | Sinclair, Upton, 1878-1968 | A Prisoner of Morro |
| etext24932 | Grant, W. L. (William Lawson), 1872-1935 | The Tribune of Nova Scotia |
| etext24958 | Wallace, F. L. (Floyd L.), 1915-2004 | Second Landing |
| etext24960 | Voyages amusants | |
| etext25028 | Garrett, Randall, 1927-1987 | Heist Job on Thizar |
| etext25123 | Li, Gao, 1180-1251 | 脾胃論 |
| etext25189 | Various | The Idler Magazine, Volume III, June 1893 |
| etext25202 | Langhuanshanqiao, 18th/19th cent. | 補紅樓夢 |
| etext25218 | Ouyang, Xiu, 1007-1072 | 六一詞 |
| etext25227 | Hermite, Charles, 1822-1901 | Sur quelques applications des fonctions elliptiques |
| etext25230 | Allan, Luke, -1962 | The Return of Blue Pete |
| etext25255 | Cieza de León, Pedro de, 1518-1554 | Segunda parte de la crónica del Perú, que trata del señorio de los Incas Yupanquis y de sus grandes hechos y gobernacion |
| etext25264 | Fretwell, John | Newfoundland and the Jingoes |
| etext25307 | Pearce, J. H. (Joseph Henry), 1856- | Drolls From Shadowland |
| etext25352 | Bai, Juyi, 772-846 | 長恨歌 |
| etext25387 | Schubert, Hermann Cäsar Hannibal, 1848-1911 | Mathematical Essays and Recreations |
| etext25428 | Unknown | Anecdotes of Animals |
| etext25432 | Crane, Walter, 1845-1915 | The Baby's Bouquet |
| etext25456 | Brooks, Amy | Princess Polly At Play |
| etext25530 | Musäus, Johann Karl August, 1735-1787 | Die Nymphe des Brunnens |
| etext25542 | Atherton, Gertrude Franklin Horn, 1857-1948 | Black Oxen |
| etext25594 | Braga, Alberto Leal Barradas Monteiro, 1851-1911 | O Engeitado |
| etext25662 | ||
| etext26019 | Jacobs, Joseph, 1854-1916 | Europa's Fairy Book |
| etext26047 | Various | The Atlantic Monthly, Volume 15, No. 87, January, 1865 |
| etext26119 | Various | Punch, or the London Charivari, Volume 147, August 12, 1914 |
| etext26125 | Molesworth, Mrs., 1839-1921 | Hoodie |
| etext26147 | Astronomical Society of the Pacific | Publications of the Astronomical Society of the Pacific |
| etext26150 | Hislop, Alexander, 1807-1865 | The Proverbs of Scotland |
| etext26156 | Yonge, Charlotte Mary, 1823-1901 | Hopes and Fears |
| etext26172 | Taylor, James Hudson, 1832-1905 | Union And Communion |
| etext5986 | Rutherford, Mark, 1831-1913 | Clara Hopgood |
| etext26183 | Hewett-Thayer, Harvey W. (Harvey Waterman), 1873- | Laurence Sterne in Germany |
| etext26186 | Graham, Winifred (Matilda Winifred Muriel) | When the Birds Begin to Sing |
| etext26197 | The Nursery Rhyme Book | |
| etext26234 | Braden, James A. (James Andrew), 1872-1955 | Far Past the Frontier |
| etext26257 | Victor, Ralph | The Boy Scouts on the Yukon |
| etext26269 | Eliot, George, 1819-1880 | Silas Marner |
| etext26305 | Church, Francis Pharcellus, 1839-1906 | Yes, Virginia, There Is A Santa Claus |
| etext26326 | Quental, Antero de, 1842-1891 | Sonetos de Anthero |
| etext26440 | Braidwood, James | Fire Prevention and Fire Extinction |
| etext26478 | Farrow, G. E. (George Edward), 1866?-1920? | The Wallypug in London |
| etext26487 | Yonge, Charlotte Mary, 1823-1901 | Little Lucy's Wonderful Globe |
| etext26507 | Washington, Booker T., 1856-1915 | The Future of the American Negro |
| etext26548 | Mackenzie, Clutha N. (Clutha Nantes), 1895-1966 | The Tale of a Trooper |
| etext26569 | De Vet, Charles V. (Charles Vincent), 1911-1997 | Monkey On His Back |
| etext26607 | Théroigne de Méricourt, 1762-1817 | Catéchisme libertin |
| etext26766 | Shakespeare, William, 1564-1616 | Henri VIII |
| etext26811 | Cottin, Madame (Sophie), 1770-1807 | Claire d'Albe |
| etext26835 | Harris, Credo Fitch, 1874-1956 | Where the Souls of Men are Calling |
| etext26864 | Ranck, Edwin Carty, 1879- | Poems for Pale People |
| etext26873 | Chen, Liang, 1143-1194 | 龍川詞 |
| etext27007 | Various | Notes and Queries, Number 210, November 5, 1853 |
| etext27015 | Lankester, E. Ray (Edwin Ray), Sir, 1847-1929 | More Science From an Easy Chair |
| etext27028 | Lebert, Marie | Multilingualism on the Web |
| etext27049 | Linnaeus, Carolus, 1707-1778 | Species Plantarum |
| etext27051 | Seltzer, Charles Alden, 1875-1942 | The Trail to Yesterday |
| etext27052 | White, Ramy Allison | Sunny Boy in the Big City |
| etext27055 | Various | Punch, or the London Charivari, Vol. 147, September 2nd, 1914 |
| etext27063 | Maugham, W. Somerset (William Somerset), 1874-1965 | The Hero |
| etext27092 | Zhang, Shizheng, 11th cent. | 括異志 |
| etext27112 | White, Gleeson, 1851-1898 | Children's Books and Their Illustrators |
| etext27119 | Aiyuezhuren | 比目魚 |
| etext27144 | Byron, George Gordon Byron, Baron, 1788-1824 | Oeuvres complètes de lord Byron. Tome 3. |
| etext27214 | Valera, Juan, 1824-1905 | Cuentos y diálogos |
| etext27310 | Serrano, Bento | O Oraculo do Passado, do presente e do Futuro (2/7) |
| etext27368 | Faguet, Émile, 1847-1916 | The Cult of Incompetence |
| etext27392 | Archer, Lee | Lease to Doomsday |
| etext27453 | Goodchild, George, 1888- | Colorado Jim |
| etext27470 | Jutelmia ja tarinoita | |
| etext27523 | Masterpieces of Mystery In Four Volumes | |
| etext27549 | Le Queux, William, 1864-1927 | The Seven Secrets |
| etext27581 | Fan, Chengda, 1126-1193 | 吳船錄 |
| etext27655 | Caius, John, 1510-1573 | De Rariorum Animalium atque Stirpium Historia |
| etext27681 | Cooper, James Fenimore, 1789-1851 | The Last of the Mohicans |
| etext27683 | Keller, Helen, 1880-1968 | The World I Live In |
| etext27714 | Various | The American Missionary — Volume 54, No. 01, January, 1900 |
| etext27849 | Bill o'th' Hoylus End, 1836-1897 | Th' History o' Haworth Railway |
| etext27858 | Unknown | 黄帝宅經 |
| etext27915 | Andersen, H. C. (Hans Christian), 1805-1875 | Fabeloj de Andersen |
| etext27917 | Curtis, Wardon Allan, 1867-1940 | The Strange Adventures of Mr. Middleton |
| etext27934 | Morris, Gouverneur, 1876-1953 | It, and Other Stories |
| etext27962 | Holt, Emily Sarah, 1836-1893 | One Snowy Night |
| etext28015 | Pictorial Photographers of America | Pictorial Photography in America 1920 |
| etext28026 | Cooke, James Francis, 1875-1960 | Great Pianists on Piano Playing |
| etext28162 | Woods, Margaret L. (Margaret Louisa), 1856- | The Invader |
| etext28174 | Humphreys, Arthur Lee, 1865-1946 | The Private Library |
| etext28186 | Various | Harper's Young People, November 11, 1879 |
| etext28249 | Desgenettes, R. (René), 1762-1837 | Histoire Médicale de l'Armée d'Orient |
| etext28315 | Carleton, William, 1876-1945 | One Way Out |
| etext28385 | Jackson, Helen Hunt, 1830-1885 | The Hunter Cats of Connorloa |
| etext28387 | Watson, H. B. Marriott (Henry Brereton Marriott), 1863-1921 | Hurricane Island |
| etext28444 | Kelley, Ethel M. (Ethel May), 1878- | Turn About Eleanor |
| etext28538 | Fuller, Anna, 1853-1916 | A Bookful of Girls |
| etext28541 | Various | The American Missionary — Volume 54, No. 3, July, 1900 |
| etext28559 | Boillot, Léon | Aux mines d'or du Klondike |
| etext28560 | Dickens, Charles, 1812-1870 | A Christmas carol. Dutch |
| etext28581 | Tappan, Eva March, 1854-1930 | De Geschiedenis van het Grieksche Volk |
| etext28613 | Lodge, Oliver, Sir, 1851-1940 | Pioneers of Science |
| etext28657 | Verne, Jules, 1828-1905 | A Winter Amid the Ice |
| etext28674 | Johns, C. H. W. (Claude Hermann Walter), 1857-1920 | Babylonian and Assyrian Laws, Contracts and Letters |
| etext28691 | Carvalho, João Marques de, 1866-1910 | Contos do Norte |
| etext28715 | Köster Henke, W. L. H. | De Boeventaal |
| etext28736 | Naylor, Charles Wesley, 1874-1950 | Heart Talks |
| etext28791 | Garland, Hamlin, 1860-1940 | A Son of the Middle Border |
| etext28792 | Piper, H. Beam, 1904-1964 | Omnilingual |
| etext28854 | Brazil, Angela, 1868-1947 | The Leader of the Lower School |
| etext28868 | Putnam, Ruth, 1856-1931 | Willem de Zwijger, Prins van Oranje |
| etext28906 | Grace, Alfred A. (Alfred Augustus), 1867-1942 | The Tale of Timber Town |
| etext28911 | Okakura, Kakuzo, 1862-1913 | The Book of Tea |
| etext29009 | Various | Harper's Young People, June 22, 1880 |
| etext29053 | Hall, Desmond Winter, 1909-1992 | Raiders Invisible |
| etext29061 | Fernández, Juan Patricio, 1661-1733 | Relacion historial de las misiones de indios chiquitos que en el Paraguay tienen los padres de la Compañía de Jesús |
| etext29120 | Dinis, Júlio, 1839-1871 | A Morgadinha dos Cannaviaes |
| etext29150 | Fortescue, Beatrice | Holbein |
| etext29153 | Walton, O. F., Mrs., 1849-1939 | Poppy's Presents |
| etext29160 | Salton, William P. | Operation Lorelie |
| etext29180 | Various | Harper's Young People, October 12, 1880 |
| etext29198 | Various | Astounding Stories of Super-Science July 1930 |
| etext29201 | ||
| etext29218 | Various | Graham's Magazine Vol. XXXII No. 2. February 1848 |
| etext29305 | Sienkiewicz, Henryk, 1846-1916 | Sielanka: An Idyll |
| etext29321 | Vincent, Harl, 1893-1968 | Vulcan's Workshop |
| etext29399 | Leadbeater, C. W. (Charles Webster), 1854-1934 | Clairvoyance |
| etext29401 | Meek, S. P. (Sterner St. Paul), 1894-1972 | The Solar Magnet |
| etext29407 | Curwood, James Oliver, 1878-1927 | The Valley of Silent Men |
| etext29413 | Verne, Jules, 1828-1905 | The Voyages and Adventures of Captain Hatteras |
| etext29417 | Castelo Branco, Camilo Ferreira Botelho, 1825-1890 | D. Antonio Alves Martins: bispo de Vizeu: esboço biographico |
| etext29426 | Carmichael, Amy, 1867-1951 | Things as They Are |
| etext29485 | Lewis, Alfred Henry, 1857-1914 | Faro Nell and Her Friends |
| etext29503 | Pohl, Frederik, 1919- | The Hated |
| etext29535 | Sternbach, Richard | The Hands |
| etext29586 | Wilkinson, Frederick | The Story of the Cotton Plant |
| etext29610 | Mancey, Claude | Las Solteronas |
| etext29620 | Rocklynne, Ross, 1913-1988 | Sorry: Wrong Dimension |
| etext29627 | Louwerse, Pieter, 1840-1909 | Vóór vier Eeuwen |
| etext29686 | Saxby, C. F. Argyll | The Fiery Totem |
| etext29697 | Bingham, Edfrid A. | The Heart of Thunder Mountain |
| etext29707 | Witt, Otto, 1875-1923 | Jordens Inre |
| etext29721 | Butler, Ellis Parker, 1869-1937 | Philo Gubb, Correspondence-School Detective |
| etext29766 | Sinclair, May, 1863-1946 | Audrey Craven |
| etext29831 | Palacio Valdés, Armando, 1853-1938 | Riverita |
| etext29832 | Wells, Basil, 1912-2003 | Second Sight |
| etext29856 | Heije, J. P. (Jan Pieter), 1809-1876 | Al de Kinderliederen |
| etext29888 | Carroll, Lewis, 1832-1898 | The Hunting of the Snark |
| etext29889 | McConnell, James V., 1925-1990 | Life Sentence |
| etext29896 | McIvor-Tyndall, Alexander J. (Alexander James), -1940 | Sex--The Unknown Quantity |
| etext29985 | Various | Le Tour du Monde; Croquis Hollandais |
| etext30027 | Hamsun, Knut, 1859-1952 | Sult |
| etext30109 | The Russian Garland | |
| etext30113 | Cullum, Ridgwell, 1867-1943 | The One-Way Trail |
| etext30146 | Warner, Susan, 1819-1885 | What She Could |
| etext30246 | Burroughs, John, 1837-1921 | Under the Maples |
| etext30317 | Goncourt, Edmond de, 1822-1896 | La fille Elisa |
| etext30346 | Various | Vasárnapi Könyv |
| etext30373 | Richardson, John Purver, 1833- | Life and Literature |
| etext30458 | Schmitz, James H., 1911-1981 | Novice |
| etext30518 | Various | Le Tour du Monde; Mont Céleste |
| etext30557 | Long Island Library Resources Council (N.Y.) | LILRC Interlibrary Loan Manual: January, 1976 |
| etext30630 | Rowland, Helen, 1876- | A Guide to Men |
| etext30686 | Foster, Ethel Twycross | Little Tales of The Desert |
| etext30690 | Godley, A. D. (Alfred Denis), 1856-1925 | The Casual Ward |
| etext30705 | Page, Gerald W., 1939- | The Happy Man |
| etext30713 | Cooper, Francis L. (Francis Le Roy) | Captain Pott's Minister |
| etext30716 | Lebert, Marie | El Internet y los idiomas |
| etext30727 | Arundel, Louis | Motor Boat Boys Down the Coast |
| etext30879 | Anonymous | The Life of Blessed John B. Marie Vianney, Curé of Ars |
| etext30897 | Benton, Caroline French | A Little Housekeeping Book for a Little Girl |
| etext30937 | Various | Punch, or the London Charivari, Volume 98, May 17, 1890. |
| etext30954 | Stevenson, Robert Louis, 1850-1894 | The Works of Robert Louis Stevenson - Swanston Edition Vol. 13 (of 25) |
| etext30957 | McDonald, James Daley | Adequate Preparation for the Teacher of Biological Sciences in Secondary Schools |
| etext31084 | Anderson, Sydney, 1927- | Neotropical Bats from Northern Mexico |
| etext31093 | Bettencourt, José de Sá | Memória sobre a plantação dos algodões |
| etext31113 | Smith, Gustavus Woodson, 1822-1896 | Company 'A', corps of engineers, U.S.A., 1846-'48, in the Mexican war |
| etext31153 | Simonds, Vance | Telempathy |
| etext31226 | Stephens, Henry Morse, 1857-1919 | Rulers of India: Albuquerque |
| etext31231 | Avery, Charles Harold | Under Padlock and Seal |
| etext31241 | McFee, William, 1881-1966 | Aliens |
| etext31263 | Jenkins, Thomas H. | Bark Kathleen Sunk By A Whale |
| etext31270 | Paine, Thomas, 1737-1809 | The Writings Of Thomas Paine, Complete |
| etext31329 | Various | Encyclopaedia Britannica, 11th Edition, Volume 6, Slice 2 |
| etext31357 | Sohl, Gerald Allan, 1913-2002 | The Ultroom Error |
| etext31394 | Hughes, William R. (William Richard), 1830-1899 | A Week's Tramp in Dickens-Land |
| etext31418 | Brinton, Daniel Garrison, 1837-1899 | The Battle and the Ruins of Cintla |
| etext31478 | Chappell, George S. (George Shepard), 1877-1946 | Rollo in Society |
| etext31527 | Multatuli, 1820-1887 | Max Havelaar |
| etext31618 | Various | Silver Links |
| etext31677 | Bryce, James Bryce, Viscount, 1838-1922 | Studies in Contemporary Biography |
| etext31683 | ||
| etext31702 | ||
| etext31751 | Chapman, Frank M. | What Bird is That? |
| etext31818 | Napolitano, Nocturno | Opera nova amorosa, vol. 3 |
| etext31824 | Dreiser, Theodore, 1871-1945 | The "Genius" |
| etext31830 | Lynch, John D. | Genera of Leptodactylid Frogs in México |
| etext31856 | Michael, Edmund, 1849-1920 | Führer für Pilzfreunde |
| etext31885 | Doane, T. W. | Bible Myths and their Parallels in other Religions |
| etext31890 | Rice, Cale Young, 1872-1943 | Song-Surf |
| etext31934 | Vigée-Lebrun, Marie Louise Elisabeth | The Memoirs of Madame Vigée Lebrun |
| etext32004 | Pohl, Frederik, 1919- | The Knights of Arthur |
| etext32035 | Various | Laŭroj |
| etext32065 | Lebert, Marie | Les langues sur le web |
| etext32087 | Riley, Frank | The Executioner |
| etext32176 | Linton, E. Lynn (Elizabeth Lynn), 1822-1898 | Witch Stories |
| etext32180 | Ribbius, Gerlacus | Een acht en twintigtal voorwerpen uit de natuurlijke geschiedenis, geschikt voor rederijkers- & nutsvoordrachten, |
| etext32206 | Mabey, Charles R. | The Utah Batteries: A History |
| etext32284 | McCain, Vernon L. | The Hitch Hikers |
| etext32295 | Corrêa, António | Scenas da Roça |
| etext32347 | Garrett, Randall, 1927-1987 | Time Fuze |
| etext32401 | Marlowe, Amy Bell | The Girls of Hillcrest Farm |
| etext32418 | Pollard, Edward Bagby, 1864-1927? | Oriental Women |
| etext32429 | Erskine, Payne, 1854-1924 | The Mountain Girl |
| etext32447 | Blish, James Benjamin | The Thing in the Attic |
| etext32448 | Wolf, Mari | The Statue |
| etext32455 | Hale, Edward E. | Christmas Eve and Christmas Day |
| etext32513 | Fanny, Aunt, 1822-1894 | The Third Little Pet Book, with the Tale of Mop and Frisk |
| etext32520 | Richards, Laura Elizabeth Howe, 1850-1943 | Hildegarde's Harvest |
| etext32521 | Farinholt-Jones, May | Keep-Well Stories for Little Folks |
| etext32551 | De Vet, Charles V. (Charles Vincent), 1911-1997 | Big Stupe |
| etext32676 | Marks, Winston K., 1915-1979 | The Test Colony |
| etext11 | Carroll, Lewis, 1832-1898 | Alice's Adventures in Wonderland |
| etext71 | Thoreau, Henry David, 1817-1862 | Civil Disobedience |
| etext90 | Burroughs, Edgar Rice, 1875-1950 | Son of Tarzan |
| etext149 | Burroughs, Edgar Rice, 1875-1950 | The Lost Continent |
| etext178 | James, Henry, 1843-1916 | Confidence |
| etext327 | Davis, Richard Harding, 1864-1916 | The Princess Aline |
| etext444 | Proudhon, P.-J. (Pierre-Joseph), 1809-1865 | System of Economical Contradictions; or, the Philosophy of Misery |
| etext456 | Wells, H. G. (Herbert George), 1866-1946 | The Door in the Wall and Other Stories |
| etext528 | Alger, Horatio, 1832-1899 | Joe the Hotel Boy |
| etext551 | Burroughs, Edgar Rice, 1875-1950 | The Land That Time Forgot |
| etext563 | ||
| etext574 | Blake, William, 1757-1827 | Poems of William Blake |
| etext590 | Japp, Alexander H. (Alexander Hay), 1837-1905 | Robert Louis Stevenson: a record, an estimate, and a memorial |
| etext602 | Lucan, 39-65 | Pharsalia; Dramatic Episodes of the Civil Wars |
| etext638 | Conrad, Joseph, 1857-1924 | An Outcast of the Islands |
| etext672 | Walter, Russ | The Secret Guide to Computers |
| etext681 | Gorky, Maksim, 1868-1936 | Creatures That Once Were Men |
| etext686 | European Union | The Treaty of the European Union, Maastricht Treaty, 7th February, 1992 |
| etext716 | Marquis, Don, 1878-1937 | The Cruise of the Jasper B. |
| etext766 | Dickens, Charles, 1812-1870 | David Copperfield |
| etext808 | ||
| etext841 | Lowell, Amy, 1874-1925 | Men, Women and Ghosts |
| etext945 | ||
| etext986 | Tolstoy, Leo, graf, 1828-1910 | Master and Man |
| etext1029 | London, Jack, 1876-1916 | The Night-Born |
| etext1053 | Conrad, Joseph, 1857-1924 | Within the Tides |
| etext1058 | Conrad, Joseph, 1857-1924 | The Mirror of the Sea |
| etext1116 | Shakespeare, William, 1564-1616 | The Merry Wives of Windsor |
| etext1201 | Spooner, Lysander, 1808-1887 | Essay on the Trial By Jury |
| etext1248 | Wetmore, Helen Cody | Last of the Great Scouts : the life story of Col. William F. Cody, "Buffalo Bill" as told by his sister |
| etext1279 | Burns, Robert, 1759-1796 | Poems and Songs of Robert Burns |
| etext1368 | Haggard, Henry Rider, 1856-1925 | When the World Shook; being an account of the great adventure of Bastin, Bickley and Arbuthnot |
| etext1438 | Collins, Wilkie, 1824-1889 | No Name |
| etext1439 | Schreiner, Olive, 1855-1920 | Dreams |
| etext1447 | Oppenheim, E. Phillips (Edward Phillips), 1866-1946 | The Illustrious Prince |
| etext1450 | Porter, Eleanor H. (Eleanor Hodgman), 1868-1920 | Pollyanna |
| etext1494 | Ginzberg, Louis, 1873-1953 | The Legends of the Jews — Volume 2 |
| etext1564 | Boswell, James, 1740-1795 | Boswell's Life of Johnson |
| etext1693 | Rinehart, Mary Roberts, 1876-1958 | Dangerous Days |
| etext1729 | Balzac, Honoré de, 1799-1850 | The Deserted Woman |
| etext1769 | Shakespeare, William, 1564-1616 | The Comedy of Errors |
| etext1770 | Shakespeare (spurious and doubtful works), 1564-1616 | King Edward III |
| etext1779 | Shakespeare, William, 1564-1616 | The Merchant of Venice |
| etext1806 | Davis, Richard Harding, 1864-1916 | The Frame Up |
| etext1826 | Balzac, Honoré de, 1799-1850 | Sarrasine |
| etext1828 | Scott, Walter, Sir, 1771-1832 | Chronicles of the Canongate |
| etext1886 | Whyte, Alexander, 1836-1921 | Bunyan Characters (2nd Series) |
| etext1913 | MacGrath, Harold, 1871-1932 | The Drums of Jeopardy |
| etext1933 | Thackeray, William Makepeace, 1811-1863 | The History of Samuel Titmarsh and the Great Hoggarty Diamond |
| etext1938 | Tolstoy, Leo, graf, 1828-1910 | Voskresenie. English |
| etext1956 | Beerbohm, Max, Sir, 1872-1956 | And Even Now |
| etext1975 | Collins, Wilkie, 1824-1889 | The Legacy of Cain |
| etext1995 | Dante Alighieri, 1265-1321 | Divine Comedy, Norton's Translation, Hell |
| etext2016 | United States. Central Intelligence Agency | The 1998 CIA World Factbook |
| etext29031 | Holden, Edward Singleton, 1846-1914 | Sir William Herschel: His Life and Works |
| etext2109 | Carlyle, Thomas, 1795-1881 | History of Friedrich II of Prussia — Volume 09 |
| etext2147 | Poe, Edgar Allan, 1809-1849 | The Works of Edgar Allan Poe — Volume 1 |
| etext2168 | Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 | Miscellaneous Writings and Speeches — Volume 2 |
| etext2217 | Human Genome Project | Chromosome Number 17 |
| etext2244 | Shakespeare, William, 1564-1616 | As You Like It |
| etext2252 | Shakespeare, William, 1564-1616 | Henry IV |
| etext2300 | Darwin, Charles, 1809-1882 | The Descent of Man |
| etext2332 | Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 | Critical and Historical Essays — Volume 1 |
| etext2337 | Goethe, Johann Wolfgang von, 1749-1832 | Wilhelm Meisters Lehrjahre — Band 3 |
| etext2355 | Darwin, Charles, 1809-1882 | The formation of vegetable mould through the action of worms, with observations on their habits |
| etext2379 | Swinburne, Algernon Charles, 1837-1909 | Chastelard, a tragedy |
| etext2395 | Colum, Padraic, 1881-1972 | The Golden Fleece and the Heroes Who Lived Before Achilles |
| etext2397 | ||
| etext2415 | London, Jack, 1876-1916 | The Mutiny of the Elsinore |
| etext2434 | Bacon, Francis, 1561-1626 | New Atlantis |
| etext2452 | Lincoln, Joseph Crosby, 1870-1944 | Shavings |
| etext2472 | Reade, Charles, 1814-1884 | White Lies |
| etext2502 | Tagore, Rabindranath, 1861-1941 | Chitra, a play in one act |
| etext2503 | Myths and Legends of California and the Old Southwest | |
| etext2507 | Harte, Bret, 1836-1902 | Complete Poetical Works |
| etext2540 | Gosse, Edmund, 1849-1928 | Father and Son: a study of two temperaments |
| etext2574 | Harte, Bret, 1836-1902 | On the Frontier |
| etext2597 | Harte, Bret, 1836-1902 | Mrs. Skagg's Husbands and Other Stories |
| etext2611 | Greenwood, William | Confiscation; an outline |
| etext2630 | Huxley, Thomas Henry, 1825-1895 | The Interpreters of Genesis and the Interpreters of Nature |
| etext2724 | Howland, Harold, 1877- | Theodore Roosevelt and His Times |
| etext2731 | Thackeray, William Makepeace, 1811-1863 | The Christmas Books of Mr. M.A. Titmarsh |
| etext2922 | Huxley, Thomas Henry, 1825-1895 | The Past Condition of Organic Nature |
| etext20305 | King, Charles, 1844-1933 | Marion's Faith. |
| etext2936 | Huxley, Thomas Henry, 1825-1895 | Geological Contemporaneity and Persistent Types of Life |
| etext3022 | Fox, John, 1863-1919 | A Cumberland Vendetta |
| etext3078 | Maupassant, Guy de, 1850-1893 | Original Short Stories — Volume 02 |
| etext3084 | Maupassant, Guy de, 1850-1893 | Original Short Stories — Volume 08 |
| etext3121 | Warner, Charles Dudley, 1829-1900 | Thoughts Suggested by Mr. Foude's "Progress" |
| etext3142 | Kingsley, Charles, 1819-1875 | Plays and Puritans |
| etext3159 | Pedler, Margaret, -1948 | The Hermit of Far End |
| etext3184 | Twain, Mark, 1835-1910 | Alonzo Fitz and Other Stories |
| etext3188 | Twain, Mark, 1835-1910 | Mark Twain's Speeches |
| etext3202 | Ward, Grady | Moby Thesaurus List |
| etext3260 | Edwards, Owen Morgan, Sir, 1858-1920 | Short History of Wales |
| etext3274 | Ward, Artemus, 1834-1867 | The Complete Works of Artemus Ward — Part 4: To California and Return |
| etext3311 | Gillmore, Inez Haynes, 1873-1970 | The Californiacs |
| etext3327 | Bulfinch, Thomas, 1796-1867 | Bulfinch's Mythology: the Age of Fable |
| etext3334 | Bigges, Walter, -1586 | Summarie and true discourse of Sir Frances Drakes West Indian voyage |
| etext3347 | Sue, Eugène, 1804-1857 | The Wandering Jew — Volume 09 |
| etext3360 | Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773 | Letters to His Son on the Art of Becoming a Man of the World and a Gentleman, 1766-71 |
| etext3375 | Howells, William Dean, 1837-1920 | The Landlord at Lion's Head — Volume 1 |
| etext3394 | Howells, William Dean, 1837-1920 | White Mr. Longfellow, the (from Literary Friends and Acquaintance) |
| etext3421 | Fabre, Jean-Henri, 1823-1915 | Bramble-Bees and Others |
| etext3422 | Fabre, Jean-Henri, 1823-1915 | The Life of the fly; with which are interspersed some chapters of autobiography |
| etext3462 | Fabre, Jean-Henri, 1823-1915 | More Hunting Wasps |
| etext3484 | Shaw, Bernard, 1856-1950 | O'Flaherty V.C. : a recruiting pamphlet |
| etext3494 | Wiggin, Kate Douglas Smith, 1856-1923 | Bluebeard; a musical fantasy |
| etext3500 | Hughes, John Ceiriog, 1832-1887 | Ceiriog |
| etext3593 | Montaigne, Michel de, 1533-1592 | The Essays of Montaigne — Volume 13 |
| etext3602 | Field, Edward Salisbury, 1878-1936 | Cupid's Understudy |
| etext3621 | Manners, J. Hartley, 1870-1928 | Peg O' My Heart |
| etext3661 | Montaigne, Michel de, 1533-1592 | Widger's Quotations from the Project Gutenberg Editions of the Works of Montaigne |
| etext3675 | Meyer, Conrad Ferdinand, 1825-1898 | Die Versuchung des Pescara |
| etext3676 | Angellotti, Marion Polk, 1894-1979 | The Firefly of France |
| etext3757 | Van Dyke, Henry, 1852-1933 | The White Bees |
| etext3827 | Hamilton, Frederick Spencer, Lord, 1856-1928 | The Days Before Yesterday |
| etext3830 | Shaw, Bernard, 1856-1950 | Overruled |
| etext3876 | ||
| etext17942 | La Fontaine, Jean de, 1621-1695 | Fables de La Fontaine |
| etext3930 | Claretie, Jules, 1840-1913 | Prince Zilah — Complete |
| etext4011 | Jonson, Ben, 1573-1637 | Epicoene: Or, the Silent Woman |
| etext4076 | Hakluyt, Richard, 1552-1616 | Discovery of Muscovy |
| etext4108 | Young, Filson, 1876-1938 | Christopher Columbus and the New World of His Discovery — Volume 1 |
| etext4135 | Pepys, Samuel, 1633-1703 | Diary of Samuel Pepys — Volume 17: July/August 1662 |
| etext4155 | Pepys, Samuel, 1633-1703 | Diary of Samuel Pepys — Volume 34: March/April 1664-65 |
| etext4162 | Pepys, Samuel, 1633-1703 | Diary of Samuel Pepys — Complete 1665 N.S. |
| etext4174 | Pepys, Samuel, 1633-1703 | Diary of Samuel Pepys — Volume 51: March 1666-67 |
| etext4343 | ||
| etext4405 | Meredith, George, 1828-1909 | The Shaving of Shagpat; an Arabian entertainment — Complete |
| etext4511 | Maeterlinck, Maurice, 1862-1949 | The Life of the Bee |
| etext4562 | Bertrand, Huguette | Anatomie Du Mouvement; Poesie |
| etext4582 | Payne, William Morton, 1858-1919 | Björnstjerne Björnson, 1832-1910 |
| etext4592 | Arthur, T. S. (Timothy Shay), 1809-1885 | Cast Adrift |
| etext4615 | Benson, Arthur Christopher, 1862-1925 | The Upton Letters |
| etext4647 | Voltaire, 1694-1778 | Romans — Volume 1: Zadig |
| etext4662 | Vaknin, Samuel, 1961- | Narcissism Book of Quotes |
| etext4667 | Abbott, L. A., 1813- | Seven Wives and Seven Prisons; Or, Experiences in the Life of a Matrimonial Monomaniac. a True Story |
| etext4687 | Norris, Kathleen Thompson, 1880-1966 | Saturday's Child |
| etext4692 | Orr, Lyndon | Famous Affinities of History — Volume 4 |
| etext4699 | Gunn, Jeannie, 1870-1961 | We of the Never-Never |
| etext4709 | McCutcheon, George Barr, 1866-1928 | Brewster's Millions |
| etext4721 | Holmes, Mary Jane, 1825-1907 | Darkness and Daylight |
| etext4722 | Berkeley, George, 1685-1753 | A Essay Towards a New Theory of Vision |
| etext4742 | Vaknin, Samuel, 1961- | E-books and E-publishing |
| etext4759 | United States Rubber Company | The Romance of Rubber |
| etext4819 | Motley, John Lothrop, 1814-1877 | The Rise of the Dutch Republic — Volume 18: 1572 |
| etext4868 | Motley, John Lothrop, 1814-1877 | History of the United Netherlands, 1595-96 |
| etext4882 | Motley, John Lothrop, 1814-1877 | History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1608b |
| etext4886 | Motley, John Lothrop, 1814-1877 | Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years' War, 1609-10 |
| etext4908 | Maxwell, James Clerk, 1831-1879 | Five of Maxwell's Papers |
| etext4912 | Richardson, John, 1796-1852 | Wacousta : a tale of the Pontiac conspiracy (Complete) |
| etext4942 | Emerson, Charles Wesley, 1837-1908 | Evolution of Expression — Volume 1 |
| etext5014 | Monroe, James, 1758-1831 | State of the Union Address |
| etext5081 | Verne, Jules, 1828-1905 | Les Indes-Noires : suivi de un hivernage dans les glaces |
| etext5104 | Dumas père, Alexandre, 1802-1870 | Histoire d'un casse-noisette |
| etext5126 | Verne, Jules, 1828-1905 | Robur-le-Conquerant |
| etext5158 | Boileau Despréaux, Nicolas, 1636-1711 | Le Lutrin |
| etext5302 | Burnett, Frances Hodgson, 1849-1924 | The Land of the Blue Flower |
| etext5311 | Morley, Christopher, 1890-1957 | Parnassus on Wheels |
| etext5509 | Ebers, Georg, 1837-1898 | Arachne — Volume 02 |
| etext5552 | Ebers, Georg, 1837-1898 | Margery — Volume 01 |
| etext5585 | Ebers, Georg, 1837-1898 | In the Blue Pike — Volume 02 |
| etext5587 | Ebers, Georg, 1837-1898 | In the Blue Pike — Complete |
| etext5665 | Anonymous | The Arabian Nights Entertainments — Volume 02 |
| etext5695 | Pinkerton, A. Frank [pseud.] | Jim Cummings |
| etext5727 | Bailey, Arthur Scott, 1877-1949 | The Tale of Freddie Firefly |
| etext5808 | Twain, Mark, 1835-1910 | Following the Equator — Part 1 |
| etext5887 | Vaknin, Samuel, 1961- | The Labor Divide |
| etext5894 | Blackwood, Algernon, 1869-1951 | The Extra Day |
| etext5931 | Cervantes Saavedra, Miguel de, 1547-1616 | The History of Don Quixote, Volume 2, Part 28 |
| etext5936 | Cervantes Saavedra, Miguel de, 1547-1616 | The History of Don Quixote, Volume 2, Part 33 |
| etext6118 | McCutcheon, George Barr, 1866-1928 | The Rose in the Ring |
| etext6147 | De Quincey, Thomas, 1785-1859 | Narrative and Miscellaneous Papers — Volume 2 |
| etext6187 | Parker, Gilbert, 1862-1932 | Northern Lights, Volume 2. |
| etext6193 | Parker, Gilbert, 1862-1932 | Mrs. Falchion, Volume 2. |
| etext6267 | Parker, Gilbert, 1862-1932 | The Weavers: a tale of England and Egypt of fifty years ago - Complete |
| etext6272 | Parker, Gilbert, 1862-1932 | A Lover's Diary, Volume 1. |
| etext6278 | Parker, Gilbert, 1862-1932 | The Money Master, Volume 4. |
| etext6315 | Deland, Margaret Wade Campbell, 1857-1945 | The Awakening of Helena Richie |
| etext6348 | Library of Congress. Copyright Office | Copyright Renewals 1953 |
| etext6379 | Beach, Rex Ellingwood, 1877-1949 | The Net |
| etext6385 | Isola, Antonia, [pseud.], 1876- | Simple Italian Cookery |
| etext6422 | Defoe, Daniel, 1661?-1731 | The Life, Adventures & Piracies of the Famous Captain Singleton |
| etext6439 | Carr, Annie Roe | Nan Sherwood at Rose Ranch |
| etext6447 | Shelley, Mary Wollstonecraft, 1797-1851 | Proserpine and Midas |
| etext6463 | Fullerton, George Stuart | A Handbook of Ethical Theory |
| etext6539 | Hugo, Victor, 1802-1885 | The Hunchback of Notre Dame |
| etext6544 | Lawrence, D. H. (David Herbert), 1885-1930 | Aaron's Rod |
| etext6714 | Rockwood, Roy | Dave Dashaway and His Hydroplane |
| etext6817 | Beames, John | Chaitanya and the Vaishnava Poets |
| etext6818 | Seton, Ernest Thompson, 1860-1946 | The Arctic Prairies : a Canoe-Journey of 2,000 Miles in Search of the Caribou; Being the Account of a Voyage to the Region North of Aylemer Lake |
| etext6952 | Henty, G. A. (George Alfred), 1832-1902 | By Pike and Dyke: a Tale of the Rise of the Dutch Republic |
| etext7021 | Adye, John, Sir, 1819-1900 | Indian Frontier Policy; an historical sketch |
| etext7041 | Shakespeare, William, 1564-1616 | Wie es Euch gefällt |
| etext7081 | Penrose, Margaret | The Motor Girls on Cedar Lake |
| etext7137 | Logan, John Alexander, 1826-1886 | The Great Conspiracy, Volume 5 |
| etext7145 | Budge, E. A. Wallis (Ernest Alfred Wallis), Sir, 1857-1934 | The Book of the Dead |
| etext7153 | Harris, Frank, 1856-1931 | Elder Conklin and Other Stories |
| etext7163 | Favenc, Ernest, 1845-1908 | The History of Australian Exploration from 1788 to 1888 |
| etext7200 | Twain, Mark, 1835-1910 | The Adventures of Tom Sawyer, Part 8. |
| etext7203 | Nietzsche, Friedrich Wilhelm, 1844-1900 | Götzen-Dämmerung |
| etext7212 | Campbell, John Douglas Sutherland, 1845-1914 | Memories of Canada and Scotland — Speeches and Verses |
| etext7285 | Song yu, 3rd cent. B.C. | Han shi wai chuan |
| etext7398 | Holmes, Oliver Wendell, 1809-1894 | The Poetical Works of Oliver Wendell Holmes — Volume 11: Poems from the Teacups Series |
| etext7412 | Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 | Coningsby |
| etext7438 | Helps, Arthur, Sir, 1813-1875 | Friends in Council — First Series |
| etext7487 | Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 | Count Alarcos; a Tragedy |
| etext7490 | Dryden, John, 1631-1700 | Palamon and Arcite |
| etext7510 | Parrish, Randall, 1858-1923 | Keith of the Border |
| etext7570 | Bourget, Paul, 1852-1935 | Images from Bourget's Cosmopolis |
| etext7614 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Eugene Aram — Complete |
| etext7631 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | The Disowned — Volume 01 |
| etext7634 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | The Disowned — Volume 04 |
| etext7647 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Ernest Maltravers — Volume 08 |
| etext7733 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Paul Clifford — Volume 06 |
| etext7748 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | The Parisians — Volume 12 |
| etext7759 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Falkland, Book 3. |
| etext7795 | Nexø, Martin Andersen, 1869-1954 | Pelle the Conqueror — Complete |
| etext7823 | Haliburton, Thomas Chandler, 1796-1865 | The Attaché; or, Sam Slick in England — Complete |
| etext7835 | Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 | Lothair |
| etext7906 | ||
| etext7964 | Doyle, Arthur Conan, Sir, 1859-1930 | The Mystery of Cloomber |
| etext8021 | Anonymous | The Bible, King James version, Book 21: Ecclesiastes |
| etext8043 | Anonymous | The Bible, King James version, Book 43: John |
| etext8202 | Kingsley, Charles, 1819-1875 | Sermons on National Subjects |
| etext8218 | Vaknin, Samuel, 1961- | Wars and Empire |
| etext8290 | Anonymous | The World English Bible (WEB): 2 John |
| etext8312 | The Bible, Douay-Rheims, Book 12: 4 Kings | |
| etext8341 | The Bible, Douay-Rheims, Book 41: Sophonias | |
| etext8401 | Menzel, Wolfgang, 1798-1873 | Germany from the Earliest Period Volume 4 |
| etext8407 | Caine, Hall, Sir, 1853-1931 | The Christian |
| etext8410 | Webster, Frank V. | Jack of the Pony Express |
| etext8550 | Elderdice, J. Raymond | T. Haviland Hicks Senior |
| etext8558 | Zola, Émile, 1840-1902 | L'Assommoir |
| etext8584 | Twain, Mark, 1835-1910 | Roughing It, Part 3. |
| etext8818 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | The Last Days of Pompeii |
| etext8862 | Various | Scientific American Supplement, No. 384, May 12, 1883 |
| etext8918 | Boswell, James, 1740-1795 | Life of Johnson, Volume 1 |
| etext8943 | MacDonald, George, 1824-1905 | Adela Cathcart, Volume 3 |
| etext8949 | MacDonald, George, 1824-1905 | Rampolli |
| etext8966 | Wells, H. G. (Herbert George), 1866-1946 | Secret Places of the Heart |
| etext9070 | Molière, 1622-1673 | Le Malade Imaginaire. English |
| etext9075 | Spyri, Johanna, 1827-1901 | Rico and Wiseli |
| etext9087 | Ward, Humphry, Mrs., 1851-1920 | Eleanor |
| etext9149 | White, Stewart Edward, 1873-1946 | The Gray Dawn |
| etext9150 | Verne, Jules, 1828-1905 | Dick Sands, the Boy Captain |
| etext9152 | Godwin, William, 1756-1836 | Imogen |
| etext9166 | Zola, Émile, 1840-1902 | The Three Cities Trilogy: Paris, Volume 3 |
| etext9241 | Hawthorne, Nathaniel, 1804-1864 | John Inglefield's Thanksgiving |
| etext9247 | Hawthorne, Nathaniel, 1804-1864 | Fragments from the Journal of a Solitary Man |
| etext9248 | Hawthorne, Nathaniel, 1804-1864 | Other Tales and Sketches |
| etext9383 | Spyri, Johanna, 1827-1901 | Moni the Goat-Boy |
| etext9396 | Various | The Atlantic Monthly, Volume 05, No. 30, April, 1860 |
| etext9424 | Hardy, Thomas, 1840-1928 | Late Lyrics and Earlier |
| etext9476 | Dubh, Scian, 1815-1896 | Ridgeway |
| etext9544 | Various | Punchinello, Volume 1, No. 10, June 4, 1870 |
| etext9553 | Doyle, Arthur Conan, Sir, 1859-1930 | The Return of Sherlock Holmes |
| etext9575 | Whittier, John Greenleaf, 1807-1892 | Anti-Slavery Poems I. |
| etext9600 | Whittier, John Greenleaf, 1807-1892 | The Complete Works of Whittier |
| etext9603 | Cao, Xueqin, 1717?-1763 | Hung Lou Meng, Book I |
| etext9607 | Thayer, William M. (William Makepeace), 1820-1898 | From Boyhood to Manhood |
| etext9608 | Cabell, James Branch, 1879-1958 | The Cords of Vanity |
| etext9692 | Dickens, Charles, 1812-1870 | A Message from the Sea |
| etext9710 | Dickens, Charles, 1812-1870 | Holiday Romance |
| etext9722 | Dickens, Charles, 1812-1870 | Mrs. Lirriper's Lodgings |
| etext9741 | Dickens, Charles, 1812-1870 | The Uncommercial Traveller |
| etext9755 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Night and Morning, Complete |
| etext9772 | Lytton, Edward Bulwer Lytton, Baron, 1803-1873 | Alice, or the Mysteries — Book 10 |
| etext9861 | Spyri, Johanna, 1827-1901 | Was die Großmutter gelehrt hat |
| etext9882 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext9885 | Various | Punchinello, Volume 1, No. 17, July 23, 1870 |
| etext9899 | Tomlinson, Paul Greene, 1888- | Bob Cook and the German Spy |
| etext9901 | Flower, Jessie Graham [pseud.], -1931 | Grace Harlowe's Return to Overton Campus |
| etext10033 | Various | Punchinello, Volume 1, No. 25, September 17, 1870 |
| etext10037 | Black, Edith Ferguson, 1857-1936 | A Beautiful Possibility |
| etext10107 | Dalton, Hugh Dalton, Baron, 1887-1962 | With British Guns in Italy |
| etext10142 | Spyri, Johanna, 1827-1901 | Maezli |
| etext10159 | Raleigh, Walter Alexander, Sir, 1861-1922 | England and the War |
| etext10185 | Minstrels, Edison | Minstrel Potpourri |
| etext10207 | Bryan, William Jennings, 1860-1925 | The Railroad Question |
| etext10209 | Edison, Thomas A., 1847-1931 | Electricity and Progress |
| etext10221 | McClung, Nellie L., 1873-1951 | Purple Springs |
| etext10256 | Nebe Quartett | O, Tannenbaum |
| etext10273 | Verdi, Giuseppe, 1813-1901 | Ah! Fors' é Lui (La Traviata) |
| etext10299 | Poet and Peasant Overture | |
| etext10318 | Godwin, William, 1756-1836 | Damon and Delia |
| etext10349 | Verne, Jules, 1828-1905 | Naar het middelpunt der Aarde |
| etext10358 | Wilson, Harry Leon, 1867-1939 | The Boss of Little Arcady |
| etext10444 | Lansing, Robert, 1864-1928 | The Peace Negotiations |
| etext10452 | De La Pasture, Henry, Mrs., 1866-1945 | Peter's Mother |
| etext10476 | Freeman, R. Austin (Richard Austin), 1862-1943 | The Vanishing Man |
| etext10533 | Lord, John, 1810-1894 | Beacon Lights of History, Volume 07 |
| etext10541 | Stevenson, Augusta | Children's Classics in Dramatic Form |
| etext10558 | Thackeray, William Makepeace, 1811-1863 | Audio: Vanity Fair |
| etext10570 | Jacobs, W. W. (William Wymark), 1863-1943 | For Better or Worse |
| etext10589 | International Committee of the Red Cross | Turkish Prisoners in Egypt |
| etext10590 | Melville, Lewis, 1874-1932 | Lady Mary Wortley Montague |
| etext10655 | Airy, George Biddell, 1801-1892 | Autobiography of Sir George Biddell Airy |
| etext10781 | Jacobs, W. W. (William Wymark), 1863-1943 | Deserted |
| etext10816 | Crowquill, Alfred, 1804-1872 | The Giant Hands |
| etext10829 | Bang, Herman, 1857-1912 | Ludvigsbakke |
| etext10838 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext10897 | Blackwood, Algernon, 1869-1951 | The Wendigo |
| etext10898 | Davies, Ebenezer | American Scenes, and Christian Slavery |
| etext10949 | Le Gallienne, Richard, 1866-1947 | The Romance of Zion Chapel [3d ed.] |
| etext10952 | Various | Punch, or the London Charivari, Volume 156, Jan. 15, 1919 |
| etext10961 | Lambert Chambers, Mrs., 1878-1960 | Lawn Tennis for Ladies |
| etext11017 | Morse, Samuel F. B. (Samuel Finley Breese), 1791-1872 | Samuel F. B. Morse, His Letters and Journals |
| etext11088 | Ainger, Alfred, 1837-1904 | English Men of Letters: Crabbe |
| etext11160 | Gibbs, J. Arthur | A Cotswold Village |
| etext11168 | Anonymous | Life of St. Declan of Ardmore and Life of St. Mochuda of Lismore |
| etext11181 | Jacobs, W. W. (William Wymark), 1863-1943 | Captains All |
| etext11184 | Jacobs, W. W. (William Wymark), 1863-1943 | The Constable's Move |
| etext11196 | Various | The Atlantic Monthly, Volume 04, No. 21, July, 1859 |
| etext11234 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11272 | American Anti-Slavery Society | The Anti-Slavery Examiner, Part 2 of 4 |
| etext11297 | Buffa, John, -1812 | Travels through the Empire of Morocco |
| etext11331 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11338 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11363 | Hare, Christopher | Bayard: the Good Knight Without Fear and Without Reproach |
| etext11370 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11388 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11456 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11618 | Beers, Henry A. (Henry Augustin), 1847-1926 | From Chaucer to Tennyson |
| etext11635 | Le Fanu, Joseph Sheridan, 1814-1873 | Green Tea; Mr. Justice Harbottle |
| etext11696 | Wells, H. G. (Herbert George), 1866-1946 | The Food of the Gods and How It Came to Earth |
| etext11710 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext11761 | Various | Scientific American Supplement, No. 514, November 7, 1885 |
| etext11817 | Library of Congress. Copyright Office | U.S. Copyright Renewals, 1958 January - June |
| etext11839 | Library of Congress. Copyright Office | U.S. Copyright Renewals, 1969 January - June |
| etext11846 | Library of Congress. Copyright Office | U.S. Copyright Renewals, 1972 July - December |
| etext11926 | Rush, Richard, 1780-1859 | Washington in Domestic Life |
| etext11928 | Houssaye, Arsène, 1815-1896 | Les douze nouvelles nouvelles |
| etext11994 | Lady, An English | A Residence in France During the Years 1792, 1793, 1794 and 1795, Part III., 1794 |
| etext12029 | Conway, Moncure Daniel, 1832-1907 | George Washington's Rules of Civility |
| etext12120 | Laboulaye, Edouard, 1811-1883 | Nouveaux contes bleus |
| etext12149 | Beethoven, Ludwig van, 1770-1827 | String Quartet No. 03 in D major Opus 18 |
| etext12165 | Ervast, Pekka, 1875-1934 | Salatiedettä omin päin |
| etext1234 | Organic Syntheses | |
| etext12205 | Jacobs, W. W. (William Wymark), 1863-1943 | Lawyer Quince |
| etext12213 | Jacobs, W. W. (William Wymark), 1863-1943 | Odd Charges |
| etext12215 | Jacobs, W. W. (William Wymark), 1863-1943 | Odd Craft, Complete |
| etext12255 | Reisner, George Andrew, 1867-1942 | The Egyptian Conception of Immortality |
| etext12284 | Malot, Hector, 1830-1907 | Anie |
| etext12312 | ||
| etext12332 | Bergerat, Émile | Contes de Caliban |
| etext12348 | Harris, Miriam Coles, 1834-1925 | Richard Vandermarck |
| etext12428 | Clarkson, Thomas, 1760-1846 | The History of the Rise, Progress and Accomplishment of the Abolition of the African Slave Trade by the British Parliament (1808), Volume I |
| etext12433 | MacGillivray, John, 1822-1867 | Narrative of the Voyage of H.M.S. Rattlesnake, Commanded By the Late Captain Owen Stanley, R.N., F.R.S. Etc. During the Years 1846-1850. |
| etext12508 | Dickinson, G. Lowes (Goldsworthy Lowes), 1862-1932 | The Meaning of Good—A Dialogue |
| etext12533 | Verne, Jules, 1828-1905 | Sans dessus dessous |
| etext12610 | Carr, Annie Roe | Nan Sherwood's Winter Holidays |
| etext12801 | Morse, John T. (John Torrey), 1840-1937 | Abraham Lincoln, Volume II |
| etext12816 | Sand, George, 1804-1876 | The Devil's Pool |
| etext13012 | Richardson, James D. (James Daniel), 1843-1914 | A Compilation of the Messages and Papers of the Presidents |
| etext13023 | Pakkala, Teuvo, 1862-1925 | Pieni elämäntarina |
| etext13047 | Lodge, Henry Cabot, 1850-1924 | Daniel Webster |
| etext13055 | Kerr, Robert, 1755-1813 | A General History and Collection of Voyages and Travels — Volume 09 |
| etext13072 | Yoritomo-Tashi, Mme. Blanchard | Common Sense, How to Exercise It |
| etext13073 | Hains, T. Jenkins (Thornton Jenkins), 1866- | Mr. Trunnell, Mate of the Ship "Pirate" |
| etext13078 | Beethoven, Ludwig van, 1770-1827 | String Quartet No. 12 in E flat major Opus 127 |
| etext13080 | Oliver, Stephen, 1950- | Night of Warehouses |
| etext13114 | Mather, Frank Jewett | The Collectors |
| etext13134 | Maeterlinck, Maurice, 1862-1949 | Mehiläisten elämä |
| etext13155 | Phillips, Mary E. (Mary Elizabeth), 1857-1945 | James Fenimore Cooper |
| etext13188 | Flemming, Louis A. | Putnam's Word Book |
| etext13224 | Ingelow, Jean, 1820-1897 | Poems by Jean Ingelow, In Two Volumes, Volume II. |
| etext13306 | Various | Blackwood's Edinburgh Magazine — Volume 55, No. 339, January, 1844 |
| etext13312 | Brebner, Percy James, 1864-1922 | The Light That Lures |
| etext13339 | Zévaco, Michel, 1860-1918 | Les Pardaillan — Tome 02, L'épopée d'amour |
| etext13351 | ||
| etext13387 | Hudson, Henry Norman, 1814-1886 | Shakespeare: His Life, Art, And Characters, Volume I. |
| etext13531 | Stockton, Frank Richard, 1834-1902 | Amos Kilbright; His Adscititious Experiences |
| etext13579 | Work Projects Administration | Slave Narratives: a Folk History of Slavery in the United States |
| etext13585 | Wilde, Oscar, 1854-1900 | De profundis |
| etext13590 | Anonymous | British Folk-Music Settings Nr. 4, "Shepherd's Hey" |
| etext13645 | Aitken, George A. | The Tatler, Volume 1, 1899 |
| etext13680 | Various | The Bay State Monthly — Volume 1, No. 4, April, 1884 |
| etext13766 | Arachne | Cobwebs of Thought |
| etext13799 | Quiller-Couch, Arthur Thomas, Sir, 1863-1944 | Old Fires and Profitable Ghosts |
| etext13807 | Rémusat, Charles de, 1797-1875 | Abélard, Tome II |
| etext13814 | Biese, Alfred, 1856-1930 | The Development of the Feeling for Nature in the Middle Ages and Modern Times |
| etext13821 | Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 | Tales of Wonder |
| etext13822 | Various | Notes and Queries, Number 26, April 27, 1850 |
| etext13870 | Anonymous | A Summary History of the Palazzo Dandolo |
| etext13905 | Brown, Abbie Farwell, 1871-1927 | John of the Woods |
| etext13958 | Railton, George S. (George Scott), 1849-1913 | The Authoritative Life of General William Booth |
| etext14008 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext14010 | Various | The Mirror of Literature, Amusement, and Instruction |
| etext14018 | Richards, Laura Elizabeth Howe, 1850-1943 | Marie |
| etext14098 | Walpole, Horace, 1717-1797 | Hieroglyphic Tales |
| etext14115 | Mérimée, Prosper, 1803-1870 | Quatre contes de Prosper Mérimée |
| etext14167 | Phillpotts, Eden, 1862-1960 | The Red Redmaynes |
| etext14216 | Keene, H. G. (Henry George), 1825-1915 | St George's Cross |
| etext14219 | Runkle, Bertha, 1879-1958 | Helmet of Navarre |
| etext14231 | Various | Punch, or the London Charivari, Volume 101, December 26, 1891 |
| etext14236 | Ohnet, Georges, 1848-1918 | En el Fondo del Abismo |
| etext14278 | Breckenridge, Gerald, 1889-1964 | The Radio Boys on the Mexican Border |
| etext14319 | Various | McClure's Magazine, Vol. 6, No. 4, March, 1896 |
| etext14333 | Various | Lippincott's Magazine of Popular Literature and Science |
| etext14363 | Cherry-Garrard, Apsley, 1886-1959 | The Worst Journey in the World |
| etext14383 | Various | The American Missionary — Volume 42, No. 12, December, 1888 |
| etext14400 | Maspero, G. (Gaston), 1846-1916 | Manual of Egyptian Archaeology and Guide to the Study of Antiquities in Egypt |
| etext14411 | Wright, Bruce S. | The Children's Six Minutes |
| etext14546 | Emerson, Alice B. | Betty Gordon at Mountain Camp |
| etext14638 | Wenner, George | The Lutherans of New York |
| etext14651 | Pakkala, Teuvo, 1862-1925 | Kauppaneuvoksen härkä |
| etext14713 | Chabot, Alphonse | Noël dans les pays étrangers |
| etext14746 | Erasmus, Desiderius, 1469-1536 | The Pilgrimage of Pure Devotion |
| etext14845 | Various | Punch, or the London Charivari, Volume 102, February 13, 1892 |
| etext14850 | Couperus, Louis, 1863-1923 | Het zwevende schaakbord |
| etext14866 | Wood, William Charles Henry, 1864-1947 | Animal Sanctuaries in Labrador |
| etext14887 | Various | Pipe and Pouch |
| etext14949 | Päivärinta, Pietari, 1827-1913 | Elämän hawainnoita VIII: Rauta=waimoja; Sokea; Kuihtunut wesa |
| etext14954 | Corneille, Pierre, 1606-1684 | The Cid |
| etext14996 | Begbie, Harold, 1871-1929 | Painted Windows |
| etext15001 | Sidgwick, Compiled by Frank | The Sources and Analogues of 'A Midsummer-night's Dream' |
| etext15054 | Samper, José María, 1828-1888 | Viajes de un Colombiano en Europa, segunda serie |
| etext15097 | Johnson, Samuel, 1709-1784 | A Grammar of the English Tongue |
| etext15129 | Reyes y Florentino, Isabelo de los, 1864-1938 | Ang Singsing nang Dalagang Marmol |
| etext15161 | McCabe, James Dabney, 1842-1883 | Great Fortunes, and How They Were Made |
| etext15167 | Tomlinson, H. M. (Henry Major), 1873-1958 | London River |
| etext15183 | Brame, Charlotte M., 1836-1884 | The Tragedy of the Chain Pier |
| etext15185 | Gordon, S. D. (Samuel Dickey), 1859-1936 | Quiet Talks on John's Gospel |
| etext15199 | Dury, John, 1596-1680 | The Reformed Librarie-Keeper (1650) |
| etext15213 | Döring, Heinrich, 1789-1862 | J. W. v. Goethe's Biographie |
| etext15225 | Andreas: The Legend of St. Andrew | |
| etext15280 | Garis, Howard Roger, 1873-1962 | Lulu, Alice and Jimmie Wibblewobble |
| etext15363 | Lincoln, Mary Johnson Bailey | Carving and Serving |
| etext15377 | Various | Punch, or the London Charivari, Volume 152, May 16, 1917 |
| etext15409 | Gray, Thomas, 1716-1771 | An Elegy Wrote in a Country Church Yard (1751) and The Eton College Manuscript |
| etext15504 | Mr. Edward Arnold's New and Popular Books, December, 1901 | |
| etext15619 | Various | The Great Round World and What Is Going On In It, Vol. 1, No. 30, June 3, 1897 |
| etext15671 | MacGrath, Harold, 1871-1932 | A Splendid Hazard |
| etext15679 | Burke, Edmund, 1729-1797 | The Works of the Right Honourable Edmund Burke, Vol. 03 (of 12) |
| etext15738 | Edginton, May, 1883-1957 | Married Life |
| etext15748 | Ibsen, Henrik, 1828-1906 | Kærlighedens Komedie |
| etext15765 | Lie, Jonas Lauritz Idemil, 1833-1908 | Kaukonäkijä |
| etext15777 | Cook, James, 1728-1779 | A Voyage Towards the South Pole and Round the World, Volume 1 |
| etext15782 | American Tract Society | Scenes in Switzerland |
| etext15786 | Franson, F. | Himlauret eller det profetiska ordet |
| etext15814 | Burns, Robert, 1759-1796 | Lauluja ja ballaadeja |
| etext15900 | Zola, Émile, 1840-1902 | His Masterpiece |
| etext15950 | Long, William Joseph, 1866-1952 | Wilderness Ways |
| etext15957 | Various | Punch, or the London Charivari, Volume 103, November 19, 1892 |
| etext16071 | Gripenberg, Alexandra, 1857-1913 | Fredrika Runeberg |
| etext16084 | Various | The American Missionary — Volume 43, No. 02, February, 1889 |
| etext16090 | Davis, Richard Harding, 1864-1916 | The Exiles and Other Stories |
| etext16103 | Various | The American Missionary — Volume 43, No. 03, March, 1889 |
| etext16119 | Anonymous | Doctrina Christiana |
| etext16131 | Hales, A. G. (Alfred Greenwood), 1870-1936 | Campaign Pictures of the War in South Africa (1899-1900) |
| etext16151 | Various | The Continental Monthly, Vol. 1, No. 6, June, 1862 |
| etext16155 | Handerson, Henry Ebenezer | Gilbertus Anglicus |
| etext16194 | Quiller-Couch, Arthur Thomas, Sir, 1863-1944 | Corporal Sam and Other Stories |
| etext16207 | Savage, Mrs. William T. | Adèle Dubois |
| etext16234 | Bernard, Claude, 1813-1878 | Introduction à l'étude de la médecine expérimentale |
| etext16264 | ||
| etext16278 | Hägele, Joseph M. | Zuchthausgeschichten von einem ehemaligen Züchtling |
| etext16306 | Whyte, Alexander, 1836-1921 | Jacob Behmen |
| etext16361 | Various | Lippincott's Magazine of Popular Literature and Science |
| etext16405 | Various | Stories of Mystery |
| etext16413 | Blasco Ibáñez, Vicente, 1867-1928 | Arroz y tartana |
| etext16468 | Freeman, Mary Eleanor Wilkins, 1852-1930 | The Pot of Gold |
| etext16489 | Debay, Auguste, 1802-1890 | Igiene dei piaceri secondo le età, i temperamenti e le stagioni |
| etext16572 | Clark, Galen, 1814-1910 | Indians of the Yosemite Valley and Vicinity |
| etext16591 | Eddy, Mary Baker, 1821-1910 | Unity of Good |
| etext16598 | Sweeney, William Allison, 1851- | History of the American Negro in the Great World War |
| etext16627 | Swedenborg, Emanuel, 1688-1772 | Angelic Wisdom Concerning the Divine Love and the Divine Wisdom |
| etext16628 | Various | Punch, or the London Charivari, Volume 159, August 4th, 1920 |
| etext16683 | Jesse, F. Tennyson (Fryniwyd Tennyson), 1888-1958 | Secret Bread |
| etext16704 | Forbes, George | Adventures in Southern Seas |
| etext16708 | Lehtonen, Joel, 1881-1934 | Kuolleet omenapuut |
| etext16740 | Centlivre, Susanna, 1667?-1723 | The Busie Body |
| etext16757 | Garnett, Richard, 1835-1906 | Life of John Milton |
| etext16766 | ||
| etext16808 | Younghusband, G. J. | The Story of the Guides |
| etext16827 | Verne, Jules, 1828-1905 | Le village aérien |
| etext16855 | Ellis, Edward Sylvester, 1840-1916 | The Land of Mystery |
| etext16895 | Harris, Frank, 1856-1931 | Oscar Wilde, His Life and Confessions |
| etext16915 | Mahan, A. T. (Alfred Thayer), 1840-1914 | The Life of Nelson, Volume 2 |
| etext16925 | Thurston, E. Temple (Ernest Temple), 1879-1933 | Sally Bishop |
| etext16937 | Morley, John, 1838-1923 | Critical Miscellanies (Vol 2 of 3) |
| etext16944 | Stowe, Harriet Beecher, 1811-1896 | Pikku haltijoita |
| etext16969 | Quiller-Couch, Mabel, 1866-1924 | Dick and Brownie |
| etext16976 | Hendryx, James B. (James Beardsley), 1880-1963 | The Texan |
| etext17085 | Eden, Horatia K. F. | Juliana Horatia Ewing And Her Books |
| etext17126 | Sangster, Margaret Elizabeth, 1838-1912 | Five Happy Weeks |
| etext17131 | Scott, John Reed, 1869- | The Colonel of the Red Huzzars |
| etext17134 | Cabell, James Branch, 1879-1958 | Taboo |
| etext17145 | Burnett, Alice Hale | Hallowe'en at Merryvale |
| etext17151 | Webster, Frank V. | Bob Chester's Grit |
| etext17163 | Anonymous | Mother Stories from the New Testament |
| etext17194 | Temple, Frederick, 1821-1902 | The Relations Between Religion and Science |
| etext17196 | Rae, John, 1845-1915 | Life of Adam Smith |
| etext17202 | Various | Lists of Stories and Programs for Story Hours |
| etext17241 | Hauptmann, Gerhart, 1862-1946 | Atlantis |
| etext17248 | Conscience, Hendrik, 1812-1883 | Histoire de deux enfants d'ouvrier |
| etext17255 | Alma-Tadema, Laurence, 1865?-1940 | The Wings of Icarus |
| etext17300 | Begbie, Harold, 1871-1929 | The Story of Baden-Powell |
| etext17307 | Bennion, Adam S., 1886-1958 | Principles of Teaching |
| etext17362 | Hoffmann, E. T. A. (Ernst Theodor Amadeus), 1776-1822 | Der Goldene Topf |
| etext17373 | Hurll, Estelle M. (Estelle May), 1863-1924 | The Madonna in Art |
| etext17377 | Maupassant, Guy de, 1850-1893 | The Works of Guy de Maupassant, Volume 4 |
| etext17389 | Stanard, Mary Newton, 1865-1929 | The Dreamer |
| etext17482 | Carroll, Lewis, 1832-1898 | La Aventuroj de Alicio en Mirlando |
| etext17541 | Gourmont, Remy de, 1858-1915 | La culture des idées |
| etext17561 | Perić, Živojin, 1868-1953 | Confédération Balkanique |
| etext17614 | Parrish, Randall, 1858-1923 | Bob Hampton of Placer |
| etext17630 | Field, Eugene, 1850-1895 | Christmas Tales and Christmas Verse |
| etext17724 | Various | The Bay State Monthly, Volume 3, No. 4 |
| etext17733 | Crockett, S. R. (Samuel Rutherford), 1860-1914 | The Black Douglas |
| etext17739 | Bouvier, Alexis, 1836-1892 | La femme du mort, Tome II (1897) |
| etext17779 | Nash, Thomas, 1567-1601 | The Choise of Valentines |
| etext17855 | ||
| etext17865 | Aldridge, Janet | The Meadow-Brook Girls in the Hills |
| etext17870 | Leinster, Murray, 1896-1975 | Operation Terror |
| etext17899 | Chénier, André, 1762-1794 | Poésies choisies de André Chénier |
| etext17923 | Palgrave, Francis Turner, 1824-1897 | The Visions of England |
| etext18038 | Lamprey, L., 1869-1951 | Days of the Discoverers |
| etext18121 | Desfontaines, Nicolas-Marc, -1652 | L'illustre Olympie, ou Le St Alexis |
| etext18130 | Buysse, Cyriël, 1859-1932 | Oorlogsvisoenen |
| etext18149 | White, Stewart Edward, 1873-1946 | Conjuror's House |
| etext18177 | Dupont, Marcel, 1879-1964 | In the Field (1914-1915) |
| etext18209 | Froude, James Anthony, 1818-1894 | English Seamen in the Sixteenth Century |
| etext18243 | Anonymous | Bezoek aan den berg Athos |
| etext18259 | Tarkington, Booth, 1869-1946 | Gentle Julia |
| etext18400 | Borrow, George Henry, 1803-1881 | Isopel Berners |
| etext18426 | Hueston, Ethel, 1887- | Sunny Slopes |
| etext18469 | Kyne, Peter B. (Peter Bernard), 1880-1957 | Captain Scraggs |
| etext18483 | Lauzanne, Stéphane, 1874- | Fighting France |
| etext18491 | Dugas, Ch. | Lettre relative à l'organisation des postes et relais |
| etext18502 | Anonymous | The Annual Monitor for 1851 |
| etext18530 | McLaren, Eva Shaw | Elsie Inglis |
| etext18575 | Cent nouvelles nouvelles | |
| etext18615 | Benson, Arthur Christopher, 1862-1925 | Hugh |
| etext18619 | The Modern Scottish Minstrel, Volume II. | |
| etext18622 | Eggleston, George Cary, 1839-1911 | Captain Sam |
| etext18661 | Various | The Empire Annual for Girls, 1911 |
| etext18672 | Chevalier, H. Émile (Henri Émile), 1828-1879 | Poignet-d'acier |
| etext19201 | Shakespeare, William, 1564-1616 | Cymbeline |
| etext19214 | Hume, David, 1711-1776 | The History of England in Three Volumes, Vol.I., Part D. |
| etext19243 | Shoghi Effendi, 1897-1957 | The Advent of Divine Justice |
| etext19392 | The Little Tea Book | |
| etext19422 | Schmucker, Beale M., 1827-1888 | The Organization of the Congregation in the Early Lutheran Churches in America |
| etext19437 | Farina, Salvatore, 1846-1918 | Amore bendato |
| etext19480 | King, Charles, 1844-1933 | Ray's Daughter |
| etext19489 | Rathborne, George, St., 1854-1938 | Canoe Mates in Canada |
| etext19509 | Grant, Robert, 1852-1940 | The Opinions of a Philosopher |
| etext19579 | Larned, W. T. (William Trowbridge) | American Indian Fairy Tales |
| etext19711 | Maeterlinck, Maurice, 1862-1949 | The Buried Temple |
| etext19730 | Herbert, Henry William, 1807-1858 | Warwick Woodlands |
| etext19751 | Quiller-Couch, Arthur Thomas, Sir, 1863-1944 | The Mayor of Troy |
| etext19802 | Stretton, Hesba, 1832-1911 | Cobwebs and Cables |
| etext19832 | Koorevaar, A. | In en om Java's Paradijs |
| etext19833 | Bruno, Giordano, 1548-1600 | The Heroic Enthusiasts (Gli Eroici Furori) Part the Second |
| etext19846 | Various | Encyclopaedia Britannica, 11th Edition, Volume 4, Part 4 |
| etext19900 | Grant, James, archaeologist | The Mysteries of All Nations |
| etext19912 | Davy (An Englishman) | The Insurrection in Paris |
| etext19916 | La Motte, Ellen Newbold, 1873-1961 | Civilization |
| etext19919 | Féval, Paul, 1817-1887 | Maman Léo |
| etext19947 | Barbosa, Vicente, 1663-1721 | Compendio da relaçam, que veyo da India o anno de 1691 |
| etext19957 | Wolff, William Almon, 1885-1933 | Facing the German foe, by Colonel James Fiske |
| etext19960 | Jón Sveinsson | Húsabætur á sveitabæjum |
| etext20018 | McIntosh, Maria J. (Maria Jane), 1803-1878 | Evenings at Donaldson Manor |
| etext20076 | Coolidge, Dane, 1873-1940 | Rimrock Jones |
| etext20083 | Lucas, E. V. (Edward Verrall), 1868-1938 | A Boswell of Baghdad |
| etext20118 | Koskenniemi, V. A., 1885-1962 | Valkeat kaupungit |
| etext20124 | Costello, Louisa Stuart, 1799-1870 | Béarn and the Pyrenees |
| etext20140 | Koskenniemi, V. A., 1885-1962 | Hiilivalkea |
| etext20189 | MacMicking, Robert | Recollections of Manilla and the Philippines |
| etext20198 | Borrow, George Henry, 1803-1881 | Lavengro |
| etext20209 | Anonymous | History of Steam on the Erie Canal |
| etext20212 | Del Rey, Lester, 1915-1993 | Police Your Planet |
| etext20232 | Van Cleve, Charlotte Ouisconsin Clark, 1819-1907 | 'Three Score Years and Ten' |
| etext20262 | La Fayette, Madame de (Marie-Madeleine Pioche de La Vergne), 1634-1693 | La Princesse De Clèves par Mme de La Fayette |
| etext20273 | Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 | The History of England, from the Accession |
| etext20311 | Hope, Laura Lee | The Bobbsey Twins on Blueberry Island |
| etext20336 | Shaw, Bernard, 1856-1950 | The Miraculous Revenge |
| etext20342 | Flower, Jessie Graham [pseud.], -1931 | Grace Harlowe's Problem |
| etext20401 | Schmidel, Ulderico | Viage al Rio de La Plata y Paraguay |
| etext20404 | ||
| etext20431 | Anonymous | The Tale of Beowulf |
| etext20455 | Marshall, Logan | The True Story of Our National Calamity of Flood, Fire and Tornado |
| etext20527 | Weetman, W. C. C. | The Sherwood Foresters in the Great War 1914 - 1919 |
| etext20535 | Thrumbo, Hurlo (pseudonym) | The Merry-Thought: or the Glass-Window and Bog-House Miscellany |
| etext20610 | Tupper, Martin Farquhar, 1810-1889 | The Complete Prose Works of Martin Farquhar Tupper |
| etext20618 | Bonehill, Ralph | The Boy Land Boomer |
| etext20644 | Kelley, Ruth Edna | The Book of Hallowe'en |
| etext20679 | Allen, James, 1864-1912 | The Heavenly Life |
| etext20680 | The Key of Gold: 23 Czech Folk Tales | |
| etext20731 | Gordon, S. D. (Samuel Dickey), 1859-1936 | Quiet Talks on Power |
| etext20746 | Bremer, Fredrika, 1801-1865 | The Home |
| etext20777 | R. Caldecott's First Collection of Pictures and Songs | |
| etext20806 | Various | Chambers's Edinburgh Journal, No. 446 |
| etext20822 | Stewart, Jane L. | The Camp Fire Girls on the March |
| etext20881 | Various | Säveliä |
| etext20890 | Chapman, George | Bussy D'Ambois and The Revenge of Bussy D'Ambois |
| etext20993 | Reed, Talbot Baines, 1852-1893 | Sir Ludar |
| etext21005 | Ford, Sewell, 1868-1946 | Shorty McCabe on the Job |
| etext21025 | Hewlett, Maurice Henry, 1861-1923 | The Village Wife's Lament |
| etext21032 | Mee, Cornelia | Exercises in Knitting |
| etext21131 | Wilson, Theodore P. | Amos Huntingdon |
| etext21173 | Parliament, British | The Riot Act |
| etext21194 | Hawthorne, Nathaniel, 1804-1864 | Tri Noveloj |
| etext21202 | Ballantyne, R. M. (Robert Michael), 1825-1894 | Fighting the Whales |
| etext21217 | Power, P. B. | The One Moss-Rose |
| etext21300 | Various | Cowboy Songs |
| etext30403 | Todd, Thomas Olman | Hydesville |
| etext21327 | Maupassant, Guy de, 1850-1893 | The Works of Guy de Maupassant, Vol. 1 |
| etext21341 | Miller, Edwin L. | Practical English Composition: Book II. |
| etext21342 | Baum, Paull Franklin | The Principles of English Versification |
| etext21366 | Fenn, George Manville, 1831-1909 | Sail Ho! |
| etext21410 | Neville, Henry | The Isle Of Pines (1668) |
| etext21490 | Kingston, William Henry Giles, 1814-1880 | The Two Supercargoes |
| etext21492 | Kingston, William Henry Giles, 1814-1880 | A True Hero |
| etext21533 | Pascal, Th. | Reincarnation |
| etext21551 | Marryat, Frederick, 1792-1848 | The Little Savage |
| etext21591 | Ruskin, John, 1819-1900 | The Harbours of England |
| etext21600 | Saintsbury, George, 1845-1933 | The Flourishing of Romance and the Rise of Allegory |
| etext21628 | Landor, Walter Savage, 1775-1864 | Imaginary Conversations and Poems |
| etext21643 | Mitton, G. E. (Geraldine Edith) | The Kensington District |
| etext21667 | Burden, E.R. | Hollowmell |
| etext21685 | Cupples, George, Mrs., 1839-1898 | The Cockatoo's Story |
| etext21744 | Ballantyne, R. M. (Robert Michael), 1825-1894 | The Lifeboat |
| etext21797 | Leslie, Emma | A Sailor's Lass |
| etext21810 | Finlay, Roger Thompson | The Wonder Island Boys: Treasures of the Island |
| etext21852 | Gomme, George Laurence, 1853-1916 | Folklore as an Historical Science |
| etext21857 | Newberry, Fannie E. | Joyce's Investments |
| etext21864 | Sylvester, Charles Herbert | Journeys Through Bookland, Vol. 6 |
| etext21882 | Ford, Sewell, 1868-1946 | The House of Torchy |
| etext21907 | Makellar, Archibald | An Investigation into the Nature of Black Phthisis |
| etext21910 | Masters, Edgar Lee, 1868-1950 | Mitch Miller |
| etext21947 | Uildriks, Frederike J. van, 1854-1919 | Kijkjes in het land van keizer Frans Jozef |
| etext21968 | James, Henry, 1843-1916 | The Finer Grain |
| etext21998 | ||
| etext22026 | Monteverde, Cesare | I demagoghi |
| etext22031 | Langworthy, John Luther | The Airplane Boys among the Clouds |
| etext22073 | Harrison, Harry, 1925- | The Repairman |
| etext22077 | Lacretelle, Pierre de, 1886- | Les Origines et la Jeunesse de Lamartine 1790-1812 |
| etext22124 | Keyworth, J. W. | The Golden Shoemaker |
| etext22179 | Various | Old Rail Fence Corners |
| etext22182 | Various | The Best of the World's Classics, Vol. V (of X) - Great Britain and Ireland III |
| etext22184 | Marzials, Ada M. | More Tales in the Land of Nursery Rhyme |
| etext22238 | Griffis, William Elliot, 1843-1928 | Charles Carleton Coffin |
| etext22245 | Bassett, Sara Ware, 1872-1968 | Steve and the Steam Engine |
| etext22250 | Various | Lippincott's Magazine, Vol. 22, September, 1878 |
| etext22255 | De Koven, Anna, 1860- | The Counts of Gruyère |
| etext22267 | Winslow, Helen M. | A Woman for Mayor |
| etext22279 | Boone, Silas K. | Phil Bradley's Mountain Boys |
| etext22296 | Various | Un tros de paper |
| etext22303 | Scott-James, Rolfe Arnold | Personality in Literature |
| etext22392 | Gehrkens, Karl Wilson, 1882-1975 | Essentials in Conducting |
| etext22417 | Ordway, Edith B. | The Etiquette of To-day |
| etext22419 | Various | The Arena |
| etext22437 | Bennett, Arnold, 1867-1931 | The Price of Love |
| etext22468 | Beirão, Mário Pires Gomes, 1890-1965 | Cintra |
| etext22493 | Chekhov, Anton Pavlovich, 1860-1904 | Ein Heiratsantrag |
| etext22503 | Cordelia | Piccoli eroi |
| etext22511 | Abbott, Jacob, 1803-1879 | Rollo on the Rhine |
| etext22570 | Spyri, Johanna, 1827-1901 | Wo Gritlis Kinder hingekommen sind |
| etext22672 | Various | Punch, or the London Charivari, Vol. 150, January 12, 1916 |
| etext22701 | Bellamy, Edward, 1850-1898 | The Blindman's World |
| etext22764 | Darwin, Charles, 1809-1882 | On the Origin of Species by Means of Natural Selection |
| etext22820 | Fleming, Brandon | The Crooked House |
| etext22832 | Withers, Hartley, 1867-1950 | The Cathedral Church of Canterbury [2nd ed.] |
| etext22848 | Mukerji, Dhan Gopal, 1890-1936 | Sandhya |
| etext22850 | The Epistle of Paul the Apostle to the Colossians | |
| etext22909 | Feuillet, Octave, 1821-1890 | La Novela de un Joven Pobre |
| etext22938 | Vandercook, Margaret, 1876- | The Camp Fire Girls in the Outside World |
| etext22939 | Leland, Charles Godfrey, 1824-1903 | The Gypsies |
| etext22954 | Austen, Jane, 1775-1817 | Love and Freindship [sic] |
| etext22981 | Balzac, Honoré de, 1799-1850 | Letters of Two Brides |
| etext23024 | Carryl, Guy Wetmore, 1873-1904 | Grimm Tales Made Gay |
| etext23060 | Balzac, Honoré de, 1799-1850 | Chef d'oeuvre inconnu. English |
| etext23120 | Holt, Emily Sarah, 1836-1893 | The King's Daughters |
| etext23121 | Holt, Emily Sarah, 1836-1893 | Our Little Lady |
| etext23226 | Various | Chambers's Edinburgh Journal, No. 455 |
| etext23247 | Catherwood, Mary Hartwell, 1847-1902 | The Cursed Patois |
| etext23265 | Martineau, Harriet, 1802-1876 | The Crofton Boys |
| etext23301 | Glad, Victoria | Each Man Kills |
| etext23329 | Burnett, Frances Hodgson, 1849-1924 | Le Monsieur de la Petite Dame |
| etext23364 | Bacon, Josephine Dodge Daskam, 1876-1961 | A Reversion To Type |
| etext23387 | Kingston, William Henry Giles, 1814-1880 | Washed Ashore |
| etext23400 | Chagas, Manuel Pinheiro, 1842-1895 | A Lenda da Meia-Noite |
| etext23402 | Various | Notes and Queries, Number 75, April 5, 1851 |
| etext23404 | Anonymous | A Little Girl to her Flowers in Verse |
| etext23407 | Anonymous | The Tiny Picture Book |
| etext23433 | Herford, Oliver, 1863-1935 | The Kitten's Garden of Verses |
| etext23492 | Ballantyne, R. M. (Robert Michael), 1825-1894 | Fast in the Ice |
| etext23507 | Church, Samuel Harden | A Short History of Pittsburgh |
| etext23519 |
ples), 1898-1963 Spirits in Bondage etext24003 Egan, Maurice Francis, 1852-1924 Confessions of a Book-Lover etext24028 Su, Shi, 1037-1101 東坡樂府 etext24040 Hong, Zicheng, fl. 1596 菜根譚前後集 etext24067 Jones, Paul, 1880-1941 Hidden from the Prudent etext24092 Morley, John, 1838-1923 Critical Miscellanies (Vol. 3 of 3) etext24110 Zhu, Ziqing, 1898-1948 歐遊雜記 etext24111 Unknown 竹書紀年 etext24135 Garrett, Randall, 1927-1987 The Measure of a Man etext24172 Uphues, Goswin, 1841-1916 Einführung in die moderne Logik. Erster Teil. etext24176 Walser, Robert, 1878-1956 Jakob von Gunten etext24186 etext24218 Johnson, Samuel, 1709-1784 The Works of Samuel Johnson, LL.D. in Nine Volumes etext24221 Kallis, Stephen A., 1937- The Untouchable etext24288 Rilke, Rainer Maria, 1875-1926 Das Stunden-Buch etext24317 Hagedorn, Hermann, 1882-1964 Roosevelt in the Bad Lands etext24373 Peabody, Francis Greenwood, 1847-1936 Mornings in the College Chapel etext24388 Burroughs, John, 1837-1921 Squirrels and Other Fur-Bearers etext24422 Tianhuazangzhuren 定情人 etext24441 Connor, W. J. The Stoker's Catechism etext24460 Mukerji, Dhan Gopal, 1890-1936 Kari the Elephant etext24512 Blink, Hendrik, 1852-1931 Ons Heerlijk Vaderland (deel 2 van 4) etext24547 Kingston, William Henry Giles, 1814-1880 In the Wilds of Florida etext24619 Costa, Floriano Alves da, 1825- O passeio dos bardos ao Baldeador etext24724 Connor, Ralph, 1860-1937 Beyond the Marshes etext24771 Lewis, W. S. (Wilmarth Sheldon), 1895-1979 Tutors' Lane etext24791 Stearns, Charles A. The Marooner etext24832 Grenfell, Wilfred Thomason, Sir, 1865-1940 Labrador Days etext24854 Hague, W. Grant (William Grant), 1868- The Eugenic Marriage, Vol. 2 etext24856 Homer, 750? BC-650? BC Odysseus, the Hero of Ithaca etext24859 Collingwood, Harry, 1851-1922 Turned Adrift etext24895 Becke, Louis, 1855-1913 The Call Of The South etext24920 Wallace, Edgar, 1875-1932 The Book of All-Power etext24924 etext24944 Falconer, William Mushrooms: how to grow them etext24953 Becke, Louis, 1855-1913 The Flemmings And "Flash Harry" Of Savait etext25054 Leumann, Carlos Alberto, 1887- Adriana Zumarán etext25198 Porta, Giambattista della, 1535?-1615 La Cintia etext25200 Various Chambers's Edinburgh Journal, Volume 17, Index etext25251 Xingshijushi 八段錦 etext25299 Jefferies, Richard, 1848-1887 Wood Magic etext25312 Fontana, Ferdinando, 1850-1919 Nabuco etext25379 Li, Boyuan, 1867-1906 文明小史 etext25388 Fletcher, J. S. (Joseph Smith), 1863-1935 The Herapath Property etext25395 Gordon, A. J. (Adoniram Judson), 1836-1895 The Ministry of the Spirit etext25414 Liu, Xiang, 77? BC-6? BC 列仙傳 etext25444 Optic, Oliver, 1822-1897 Dolly and I etext25448 Richards, Laura Elizabeth Howe, 1850-1943 Peggy etext25458 Unknown Surprising Stories about the Mouse and Her Sons, and the Funny Pigs. etext25521 Xu, Zhenya, 1889-1937 玉梨魂 etext25545 etext25636 Tianhuazangzhuren 玉雙魚 etext25676 Various Punch, or the London Charivari, Vol. 146, June 3, 1914 etext25797 etext25812 Pereda, José María de, 1833-1906 La Montálvez etext25814 Dixon, Thomas, 1864-1946 A Man of the People etext25843 Shakespeare, William, 1564-1616 The comedy of errors. Dutch etext25861 Gellius, Aulus Stories from Aulus Gellius etext25889 Lossing, Benson John, 1813-1891 Washington and the American Republic, Vol. 3. etext25902 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 The History of England, from the Accession of James II. etext25927 Westcott, Edward Noyes, 1847-1898 The Christmas Story from David Harum etext25971 Sinclair, May, 1863-1946 The Creators etext25999 Pauli, Reinhold, 1823-1882 Der Hansische Stahlhof in London etext26093 Jones, Raymond F., 1915-1994 The Memory of Mars etext26146 etext26200 Lincoln, Abraham, 1809-1865 The Gettysburg Address etext26211 Dumesnil, Antoine Jules, 1805-1891 Histoire des Plus Célèbres Amateurs Étrangers etext26303 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Right Ho, Jeeves etext26382 Baldwin, John D. (John Denison), 1809-1883 Ancient America, in Notes on American Archaeology etext26389 Raymond, Evelyn, 1843-1910 Dorothy on a Ranch etext27932 Hamarneh, Sami Khalaf, 1925- History of the Division of Medical Sciences etext28012 Various The American Quarterly Review, No. 17, March 1831 etext26405 Eaton, Walter Prichard, 1878-1957 Penguin Persons & Peppermints etext26447 Tracy, Louis, 1863-1928 The Strange Case of Mortimer Fenley etext26502 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Three Men on the Bummel. Catalan etext26618 Leslie, Madeline, 1815-1893 Minnie's Pet Monkey etext26730 etext26749 Souriau, Paul, 1852-1926 La rêverie esthétique; essai sur la psychologie du poète etext26767 Various Notes and Queries, Number 208, October 22, 1853 etext26807 Mirabeau, Honoré-Gabriel de Riquetti, comte de, 1749-1791 Hic et Hec etext26852 Nicoll, Maurice, 1884-1953 The Blue Germ etext26854 Maugham, W. Somerset (William Somerset), 1874-1965 The Trembling of a Leaf etext26859 Michelet, Jules, 1798-1874 Histoire de France 1724-1759 etext26880 Coffey, George, 1857-1916 The Bronze Age in Ireland etext26931 Hanshangmengren, 19th cent. 風月夢 etext27024 Giltner, Leigh Gordon, 1875- The Path of Dreams etext27035 Lebert, Marie Entretiens / Interviews / Entrevistas etext27074 Molière, 1622-1673 The Jealousy of le Barbouillé etext27151 Ross, John, Sir, 1777-1856 Memoirs and Correspondence of Admiral Lord de Saumarez. Vol II etext27157 Brooks, Elbridge Streeter, 1846-1902 Historic Boys etext27221 Beattie, James, 1735-1803 The Minstrel; or the Progress of Genius etext27226 Brooke, Henry, 1703?-1783 An Essay on the Antient and Modern State of Ireland etext27331 Bixian, Zou 飛跎全傳 etext27343 Eggleston, Margaret W. (Margaret White), 1878- Fireside Stories for Girls in Their Teens etext27348 United States. Central Intelligence Agency The 2007 CIA World Factbook etext27417 Various Barnavännen, 1905-02 etext27450 Saintsbury, George, 1845-1933 A History of Elizabethan Literature etext27493 Various Punch or the London Charivari, Vol. 104, May 27, 1893 etext27532 Descartes, René, 1596-1650 Betrachtungen über die Grundlagen der Philosophie etext27534 Bangs, John Kendrick, 1862-1922 Cobwebs from a Library Corner etext27623 etext27648 Buchanan's Journal of Man, August 1887 etext27685 Csiky, Gergely, 1842-1891 Az Atlasz-család etext27739 Arnold, Matthew, 1822-1888 Poetical Works of Matthew Arnold etext27746 Boston (Mass.). School Committee Schedule of Salaries for Teachers, members of the Supervising staff and others. etext27806 Féval, Paul, 1817-1887 Le dernier chevalier etext27836 Hendrix, Petrus, 1723-1795 Het Geldersch Byenboek etext27868 Fabre, Jean-Henri, 1823-1915 The Glow-Worm and Other Beetles etext27877 Vitruvius Pollio An Abridgment of the Architecture of Vitruvius etext27926 Smith, J. J. In Eastern Seas etext28027 Paine, Albert Bigelow, 1861-1937 Dwellers in Arcady etext28034 Anderson, Mary E. (Mary Evarts), 1838-1905 Scenes in the Hawaiian Islands and California etext28036 Müller, Michael, 1825-1899 Public School Education etext28054 Dostoyevsky, Fyodor, 1821-1881 The Brothers Karamazov etext28059 etext28079 Harding, Blythe The Honest American Voter's Little Catechism for 1880 etext28115 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Great Sioux Trail etext28116 Currie, John Allister, 1866- "The Red Watch" etext28132 Various The Nursery, April 1877, Vol. XXI. No. 4 etext28152 Owens, John Algernon Sword and Pen etext28167 etext28217 Stern, Daniel, 1805-1876 Dante et Goethe : dialogues etext28221 Raymond, Evelyn, 1843-1910 Dorothy's Triumph etext28247 Clerke, Agnes M. (Agnes Mary), 1842-1907 A Popular History of Astronomy During the Nineteenth Century etext28345 De Morgan, William Frend, 1839-1917 Somehow Good etext28392 Various Punch, or the London Charivari, Vol. 147, October 28, 1914 etext28412 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 La race future etext28426 Perkins, Lucy Fitch, 1865-1937 The Italian Twins etext28435 De Mille, James, 1833-1880 The Cryptogram etext26746 Wang, Shizhen, 1634-1711 分甘余話 etext28454 Baily, Waldron, 1871- Heart of the Blue Ridge etext28480 Leblanc, Maurice, 1864-1941 The Frontier etext28503 Sanborn, Kate, 1839-1917 The Wit of Women etext28650 Bradley, Marion Zimmer, 1930-1999 Year of the Big Thaw etext28665 H. D. (Hilda Doolittle), 1886-1961 Sea Garden etext28734 Nietzsche, Friedrich Wilhelm, 1844-1900 The Antichrist etext28741 Hough, Emerson, 1857-1923 The Young Alaskans on the Trail etext28789 Bussy, Roger de Rabutin, comte de, 1618-1693 Histoire amoureuse des Gaules etext28913 Norton, Andre, 1912-2005 Voodoo Planet etext28955 etext28965 Shakespeare, William, 1564-1616 Kuningas Juhana etext28986 Borrow, George Henry, 1803-1881 Young Swaigder, or The Force of Runes etext28992 Gay, Sydney Howard, 1814-1888 James Madison etext29083 etext29095 Verne, Jules, 1828-1905 De strijd tusschen Noord en Zuid etext29104 Bartlett, Frederick Orin, 1876-1945 The Web of the Golden Spider etext29109 Menant, Delphine, 1850- Les Parsis etext29157 Lowsley, B. The Coinages of the Channel Islands etext29163 Hardy, Charles The Aural System etext29192 Verne, Jules, 1828-1905 De strijd tusschen Noord en Zuid etext29197 Parmele, Mary Platt, 1843-1911 A Short History of Spain etext29273 Luce, Nancy, 1814-1890 A Complete Edition of the Works of Nancy Luce etext29282 Souvestre, Émile, 1806-1854 Un philosophe sous les toits etext29334 etext29391 Daviess, Maria Thompson, 1872-1924 Blue-grass and Broadway etext29476 etext29486 Major, Charles, 1856-1913 A Forest Hearth: A Romance of Indiana in the Thirties etext29584 Stiel, Paul, 1882- Die Piraterie etext29644 Birmingham, George A., 1865-1950 The Island Mystery etext29744 Miller, Olive Thorne, 1831-1918 Kristy's Rainy Day Picnic etext29756 Henty, G. A. (George Alfred), 1832-1902 The Cat of Bubastes etext29789 etext29829 Arthur, T. S. (Timothy Shay), 1809-1885 Hair Breadth Escapes etext29840 Brooke, L. Leslie (Leonard Leslie), 1862-1940 A Nursery Rhyme Picture Book etext29868 Hewlett, Maurice Henry, 1861-1923 Love and Lucy etext29878 The History of Woman Suffrage, Volume V etext29887 Robespierre, Maximilien, 1758-1794 Discours par Maximilien Robespierre — 17 Avril 1792-27 Juillet 1794 etext29920 Larreta, Enrique, 1875-1961 La gloria de don Ramiro etext29951 Various The Mayflower, January, 1905 etext29967 etext30016 etext30042 Strasburger, Eduard, 1844-1912 Streifzüge an der Riviera etext30047 Abbot, Willis J. (Willis John), 1863-1934 Aircraft and Submarines etext30052 Moreno, Francisco Pascasio, 1852-1919 Esploración arqueológica de la Provincia de Catamarca etext30065 Hoch, August, 1868-1919 Benign Stupors etext30071 Pereira, Félix Alves, 1865-1936 Paginas Archeologicas etext30145 Burpee, Lawrence J. (Lawrence Johnstone), 1873-1946 Pathfinders of the Great Plains etext30160 Haldeman, Isaac Massey, 1845-1933 Christ, Christianity and the Bible etext30198 Rice, Cale Young, 1872-1943 Nirvana Days etext30209 Foote, G. W. (George William), 1850-1915 Bible Romances etext30235 Baldwin, James, 1841-1925 Six Centuries of English Poetry etext30247 Stephens, Ann S. (Ann Sophia), 1810-1886 Mabel's Mistake etext30264 Bigelow, Glenna Lindsley Liége on the Line of March etext30278 Rizal, José, 1861-1896 Friars and Filipinos etext30310 etext30435 Ritchie, Anne Thackeray, 1837-1919 A Book of Sibyls etext30438 McKimmey, James, 1923- The Eyes Have It etext30457 Henty, G. A. (George Alfred), 1832-1902 Through Russian Snows etext30495 etext30506 Plekhanov, Georgii Valentinovich, 1856-1918 Anarchism and Socialism etext30586 etext30588 Patchin, Frank Gee, 1861-1925 The Pony Rider Boys in Alaska etext30631 Gerstäcker, Friedrich, 1816-1872 Die Colonie. Erster Band. etext30637 Lovecraft, H. P. (Howard Phillips), 1890-1937 Writings in the United Amateur, 1915-1922 etext30691 Various Astounding Stories of Super-Science, December 1930 etext30707 Abbott, Jacob, 1803-1879 Cyrus the Great etext30733 Kelly, Florence Finch, 1858-1939 The Fate of Felix Brand etext30760 Gautier, Théophile, 1811-1872 My Private Menagerie etext30819 Donne, William Bodham, 1807-1882 Old Roads and New Roads etext30820 etext30865 Bernstorff, Johann Heinrich Andreas Hermann Albrecht Graf von My Three Years in America etext30925 Williams, Frank, 1887- The Wilderness Trail etext30998 Baker, Rollin H. (Rollin Harold), 1916-2007 A New Bat (Genus Pipistrellus) from Northeastern Mexico etext31013 Palacio Valdés, Armando, 1853-1938 La hermana San Sulpicio etext31034 Adams, William Davenport, 1828-1891 By-ways in Book-land etext31047 Strindberg, August, 1849-1912 Tjensteqvinnans son etext31167 Ewald, Carl, 1856-1908 The Old Willow Tree and Other Stories etext31168 Various Astounding Stories, July, 1931 etext31242 Anonymous Critical Remarks on Sir Charles Grandison, Clarissa, and Pamela (1754) etext31248 Bilse, Fritz Oswald, 1878-1951 A Little Garrison etext31255 Scarborough, W. S. (William Sanders), 1852-1926 The Educated Negro and His Mission etext31285 Notturno, Napolitano Opera nova amorosa, vol. 2 etext31343 Leinster, Murray, 1896-1975 The Invaders etext31355 Walton, Bryce, 1918-1988 To Each His Star etext31358 Various Harper's New Monthly Magazine, Volume 1, No. 4, September, 1850 etext31439 Hoffmann, E. T. A. (Ernst Theodor Amadeus), 1776-1822 Weird Tales, Vol. II. etext31442 Brugman, Karl, 1849-1919 Γραφτή και Δημοτική και το Γλωσσικό Ζήτημα στην Ελλάδα etext31538 Chamisso, Adelbert von, 1781-1838 Peter Schlemihl's wundersame Geschichte etext31595 Sinclair, May, 1863-1946 The Return of the Prodigal etext31647 Havergal, Frances Ridley, 1836-1879 Kept for the Master's Use etext31649 Nievelt, Carel van, 1843-1913 Chiaroscuro etext31653 Papadiamantis, Alexandros, 1851-1911 Πασχαλινές ιστορίες etext31681 Green, Anna Katharine, 1846-1935 Hand and Ring etext31686 Smith, Evelyn E., 1927-2000 Collector's Item etext31704 Stewart, A. A. Type Cases and Composing-room furniture etext31715 Barr, Robert, 1850-1912 A Prince of Good Fellows etext31721 Martin, Frances Elizabeth Gilbert and Her Work for the Blind etext31738 etext31743 Costa, José Daniel Rodrigues da, 1757-1832 Portugal enfermo por vicios, e abusos de ambos os sexos etext25365 Yan, Zhitui, 531-591 顔氏家訓 etext31746 Bouniol, M. Bathild Les rues de Paris, (1/2) etext31808 Shakespeare, William, 1564-1616 Romeo and Juliet. Greek etext31833 Fyfe, Horace Brown, 1918-1997 The Wedge etext31840 Arthur, Robert Andrew Ring Once for Death etext31850 Hofmannsthal, Hugo von, 1874-1929 Der Tor und der Tod etext31883 Comte, Auguste Cours de philosophie positive. (3/6) etext31919 Cawein, Madison J. Blooms of the Berry etext31977 etext31984 Sergeant, Adeline, 1851-1904 A Life Sentence etext32005 Borland, Robert, -1912 Border Raids and Reivers etext32015 Kelly, Walden A Historic Sketch Lest We Forget Company E 26th Ohio Infantry etext32063 Various Encyclopaedia Britannica, 11th Edition, Volume 6, Slice 8 etext32104 Coppel, Alfred Turning Point etext32159 etext32203 Hall, Eliza Calvert, 1856-1935 The Land of Long Ago etext32210 Cox, Palmer, 1840-1924 The Brownies: Their Book etext32215 Eftaliotis, Argyris, 1849-1923 Ιστορία της Ρωμιοσύνης etext32235 Palacio Valdés, Armando, 1853-1938 Aguas fuertes etext32244 Jacob, P. L., 1806-1884 Un p'tit homme etext32279 Rhoades, Nina, 1863- The Children of the Top Floor etext32308 Various Library of the World's Best literature, Ancient and Modern, Vol. 12 etext32491 Yeats, W. B. (William Butler), 1865-1939 The Wild Swans at Coole etext32528 Camões, Luís de The Lusiad etext32570 Vissering, Harry Zeppelin etext32624 Boak, Arthur Edward Romilly, 1888-1962 A History of Rome to 565 A. D. etext32656 Cros, Monsieur de Letter from Monsieur de Cros,... being an answer to Sir Wm Temple's memoirs... [1693] etext13 Carroll, Lewis, 1832-1898 The Hunting of the Snark etext43 Stevenson, Robert Louis, 1850-1894 The Strange Case of Dr. Jekyll and Mr. Hyde etext87 United States. Central Intelligence Agency The 1993 CIA World Factbook etext106 Burroughs, Edgar Rice, 1875-1950 Jungle Tales of Tarzan etext120 Stevenson, Robert Louis, 1850-1894 Treasure Island etext131 Bunyan, John, 1628-1688 The Pilgrim's Progress from this world to that which is to come, delivered under the similitude of a dream, by John Bunyan etext167 Humphrey, S. D. (Samuel Dwight), 1823-1883 American Hand Book of the Daguerreotype etext179 James, Henry, 1843-1916 The Europeans etext225 MacDonald, George, 1824-1905 At the Back of the North Wind etext227 Virgil, 70 BC-19 BC The Aeneid etext240 Harris, Robert A. Stories from the Old Attic etext306 Wharton, Edith, 1862-1937 The Early Short Fiction of Edith Wharton — Part 2 etext373 Stevenson, Robert Louis, 1850-1894 Lay Morals etext393 Stacpoole, H. De Vere (Henry De Vere), 1863-1951 The Blue Lagoon: a romance etext420 Baum, L. Frank (Lyman Frank), 1856-1919 Dorothy and the Wizard in Oz etext583 Collins, Wilkie, 1824-1889 The Woman in White etext660 etext687 Conrad, Joseph, 1857-1924 A Personal Record etext699 Dickens, Charles, 1812-1870 A Child's History of England etext703 Lovelace, Richard, 1618-1657 The Lucasta Poems etext726 Howells, William Dean, 1837-1920 A Psychological Counter-Current in Recent Fiction etext765 Merritt, Abraham, 1884-1943 The Moon Pool etext884 Mackay, Charles, 1814-1889 Memoirs of Extraordinary Popular Delusions — Volume 3 etext921 Wilde, Oscar, 1854-1900 De Profundis etext943 Shaw, Bernard, 1856-1950 Misalliance etext958 Baum, L. Frank (Lyman Frank), 1856-1919 Rinkitink in Oz etext961 Baum, L. Frank (Lyman Frank), 1856-1919 Glinda of Oz etext968 Dickens, Charles, 1812-1870 Martin Chuzzlewit etext1039 Livingstone, David, 1813-1873 Missionary Travels and Researches in South Africa etext1044 Twain, Mark, 1835-1910 Extract from Captain Stormfield's Visit to Heaven etext1066 Freeman, Edward Augustus, 1823-1892 William the Conqueror etext1067 Grant, Ulysses S. (Ulysses Simpson), 1822-1885 Personal Memoirs of U. S. Grant — Volume 1 etext1108 Shakespeare, William, 1564-1616 Two Gentlemen of Verona etext1118 Shakespeare, William, 1564-1616 Much Ado about Nothing etext1178 Xenophon, 431 BC-350? BC Polity Athenians and Lacedaemonians etext1280 Masters, Edgar Lee, 1868-1950 Spoon River Anthology etext1294 Balzac, Honoré de, 1799-1850 The Firm of Nucingen etext1327 Elizabeth, 1866-1941 Elizabeth and Her German Garden etext1337 Waterlow, Sydney, 1878-1944 Shelley etext1340 White, Andrew Dickson, 1832-1918 Autobiography of Andrew Dickson White — Volume 1 etext1343 Balzac, Honoré de, 1799-1850 Bureaucracy etext1349 Wallace, Donald Mackenzie, Sir, 1841-1919 Russia etext1369 Balzac, Honoré de, 1799-1850 Paz etext1374 Balzac, Honoré de, 1799-1850 Vendetta etext1440 Schreiner, Olive, 1855-1920 Woman and Labour etext1515 Shakespeare, William, 1564-1616 The Merchant of Venice etext1541 Shakespeare, William, 1564-1616 King Henry VIII etext1559 Balzac, Honoré de, 1799-1850 A Distinguished Provincial at Paris etext1574 Brooks, Elbridge Streeter, 1846-1902 Historic Girls etext1644 Doyle, Arthur Conan, Sir, 1859-1930 The Adventures of Gerard etext1680 Balzac, Honoré de, 1799-1850 At the Sign of the Cat & Racket etext1692 Johnston, Mary, 1870-1936 1492 etext1725 Henry, O., 1862-1910 Heart of the West etext1741 Packard, Frank L. (Frank Lucius), 1877-1942 The White Moll etext1804 Wells, H. G. (Herbert George), 1866-1946 War and the future: Italy, France and Britain at war etext1893 etext1958 Goethe, Johann Wolfgang von, 1749-1832 Hermann and Dorothea etext2053 Brownson, Orestes Augustus, 1803-1876 The American Republic : constitution, tendencies and destiny etext2071 Stories by English Authors: Germany (Selected by Scribners) etext2099 Hutton, Joseph Edmund, 1868- A History of the Moravian Church etext2104 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 04 etext2132 Mühlbach, L. (Luise), 1814-1873 The Daughter of an Empress etext2241 Shakespeare, William, 1564-1616 Love's Labour's Lost etext2328 Cooper, James Fenimore, 1789-1851 The Lake Gun etext2448 Flipper, Henry Ossian, 1856-1940 The Colored Cadet at West Point etext2478 Darlington, Edgar B. P. The Circus Boys on the Plains : or, the Young Advance Agents Ahead of the Show etext2575 Coleridge, Samuel Taylor, 1772-1834 Confessions of an Inquiring Spirit and Some Miscellaneous Pieces etext2621 Stevenson, Burton Egbert, 1872-1962 The Home Book of Verse — Volume 3 etext2711 Harte, Bret, 1836-1902 A Phyllis of the Sierras etext2730 Haggard, Henry Rider, 1856-1925 Long Odds etext2781 Kipling, Rudyard, 1865-1936 Just So Stories etext2793 Harte, Bret, 1836-1902 Flip, a California romance etext2831 A Bundle of Ballads etext2836 Stephenson, Nathaniel W. (Nathaniel Wright), 1867-1935 Abraham Lincoln and the Union; a chronicle of the embattled North etext2924 Huxley, Thomas Henry, 1825-1895 The Perpetuation of Living Beings; hereditary transmission and variation etext2943 Bojer, Johan, 1872-1959 The Great Hunger etext2964 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 14: Switzerland etext2988 Paine, Albert Bigelow, 1861-1937 Mark Twain, a Biography. Complete etext2998 Proust, Marcel, 1871-1922 A l'ombre des jeunes filles en fleurs - Première partie etext3075 De la Mare, Walter, 1873-1956 The Return etext3093 Becker, Carl Lotus, 1873-1945 The Eve of the Revolution; a chronicle of the breach with England etext3128 Warner, Charles Dudley, 1829-1900 Saunterings etext3197 Twain, Mark, 1835-1910 Mark Twain's Letters — Volume 5 (1901-1906) etext3253 Lincoln, Abraham, 1809-1865 Complete Project Gutenberg Abraham Lincoln Writings etext3279 Butler, Samuel, 1835-1902 Canterbury Pieces etext3310 etext3381 Howells, William Dean, 1837-1920 Standard Household-Effect Company, the (from Literature and Life) etext3441 Anonymous Arabian nights. English etext3510 Human Genome Project Human Genome Project, Chromosome Number 10 etext3529 Wollstonecraft, Mary, 1759-1797 Letters on Sweden, Norway, and Denmark etext3537 Mühlbach, L. (Luise), 1814-1873 Frederick the Great and His Family etext3543 Shaw, Bernard, 1856-1950 Heartbreak House etext3559 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 09 etext3571 Wairy, Louis Constant, 1778-1845 Recollections of the Private Life of Napoleon — Volume 04 etext3665 Wilcox, Ella Wheeler, 1855-1919 Maurine and Other Poems etext3710 Trollope, Anthony, 1815-1882 An Unprotected Female at the Pyramids etext3720 Trollope, Anthony, 1815-1882 Returning Home etext3730 Various Widger's Quotations from the Project Gutenberg Editions of the Court Memoirs of France etext3778 Curtis, Georgina Pell, 1859-1922 The Interdependence of Literature etext3801 Mühlbach, L. (Luise), 1814-1873 Napoleon and Blucher etext3838 Marguerite, Queen, consort of Henry IV, King of France, 1553-1615 Memoirs of Marguerite de Valois — Volume 1 [Court memoir series] etext3850 Montespan, Françoise-Athénaïs de Rochechouart de Mortemart, marquise de, 1641-1707 Memoirs of Madame de Montespan — Volume 4 etext3899 Goldsmith, Lewis, 1763-1846 Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Complete etext3944 Feuillet, Octave, 1821-1890 Monsieur De Camors — Volume 2 etext3959 Coppée, François, 1842-1908 A Romance of Youth — Volume 2 etext4025 O'Neill, Eugene, 1888-1953 Anna Christie etext4069 Leacock, Stephen, 1869-1944 The Dawn of Canadian History : A Chronicle of Aboriginal Canada etext4121 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 05: May 1660 etext4221 Boldrewood, Rolf, 1826-1915 Shearing in the Riverina etext4264 James, Henry, 1843-1916 The Golden Bowl — Complete etext4294 Hartmann, George (Henry George August), 1852-1934 Tales of Aztlan; the Romance of a Hero of our Late Spanish-American War, Incidents of Interest from the Life of a western Pioneer and Other Tales etext4312 Gissing, George, 1857-1903 A Life's Morning etext4324 McMurry, Lida B. (Lida Brown), 1853-1942 Fifty Famous Fables etext4394 Corelli, Marie, 1855-1924 A Romance of Two Worlds etext4399 Millay, Edna St. Vincent, 1892-1950 A Few Figs from Thistles etext4435 Meredith, George, 1828-1909 Vittoria — Volume 1 etext4439 Meredith, George, 1828-1909 Vittoria — Volume 5 etext4453 Meredith, George, 1828-1909 Beauchamp's Career — Volume 1 etext4464 Meredith, George, 1828-1909 The Tragic Comedians — Complete etext4468 Meredith, George, 1828-1909 Diana of the Crossways — Volume 4 etext4476 Meredith, George, 1828-1909 One of Our Conquerors — Complete etext4524 Liebig, Justus, Freiherr von, 1803-1873 Familiar Letters on Chemistry etext4545 Sills, Steven (Steven David Justin) American Papyrus: 25 Poems etext4546 Memoirs of the Union's Three Great Civil War Generals etext4581 Liljencrantz, Ottilie A. (Ottilia Adelina), 1876-1910 The Thrall of Leif the Lucky etext4607 Reade, Charles, 1814-1884 Love Me Little, Love Me Long etext4625 Arthur, T. S. (Timothy Shay), 1809-1885 Lizzy Glenn etext4768 Shell Union Oil Corporation Let's Collect Rocks and Shells etext4803 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 03: 1555 etext4829 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 27: 1577-78 etext4850 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1586e etext4894 Motley, John Lothrop, 1814-1877 Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years' War, 1617 etext5091 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Tempting of Tavernake etext5096 Verne, Jules, 1828-1905 20000 Lieues Sous Les Mers — Part 2 etext5099 Beach, Rex Ellingwood, 1877-1949 Heart of the Sunset etext5100 Alaeddin and the Enchanted Lamp etext5144 Wagner, Richard, 1813-1883 My Life — Volume 2 etext5189 Brahms, Johannes, 1833-1897 String Quartet C minor, Op. 51 no. 1 etext5223 Petronius Arbiter, 20-66 The Satyricon — Volume 06: Editor's Notes etext5240 Lever, Charles James, 1806-1872 The Confessions of Harry Lorrequer — Complete etext5244 Payne, John, 1842-1916 Tales from the Arabic — Volume 03 etext5254 Hawley, Mabel C. Four Little Blossoms on Apple Tree Island etext5305 Park, Mungo, 1771-1806 Travels in the Interior of Africa — Volume 02 etext5327 Cherubini, E. Pinocchio in Africa etext5328 Page, Brett Writing for Vaudeville etext5355 Scott, Walter, Sir, 1771-1832 Guy Mannering, Or, the Astrologer — Complete etext5411 Hamilton, Anthony, Count, 1646-1720 The Memoirs of Count Grammont — Volume 03 etext5442 Ebers, Georg, 1837-1898 Uarda : a Romance of Ancient Egypt — Volume 04 etext5460 Ebers, Georg, 1837-1898 An Egyptian Princess — Complete etext5472 Ebers, Georg, 1837-1898 Joshua — Complete etext5588 Ebers, Georg, 1837-1898 A Question etext5728 Various Stories by Foreign Authors: Italian etext5733 Goethe, Johann Wolfgang von, 1749-1832 Autobiography: Truth and Fiction Relating to My Life etext5751 MacDonald, George, 1824-1905 St. George and St. Michael Volume II etext5798 Tarkington, Booth, 1869-1946 The Beautiful Lady etext5801 Meyer, Conrad Ferdinand, 1825-1898 Huttens letzte Tage etext5806 Sinclair, Upton, 1878-1968 The Pot Boiler etext5827 Russell, Bertrand, 1872-1970 The Problems of Philosophy etext5833 Alger, Horatio, 1832-1899 Helping Himself etext5960 Little, Frances, [pseud.], 1863-1941 Little Sister Snow etext5964 Sinclair, Upton, 1878-1968 Love's Pilgrimage etext5985 Voltaire, 1694-1778 Zadig etext6018 Boswell, James, 1740-1795 The Journal of a Tour to the Hebrides with Samuel Johnson, LL.D. etext6035 Destouches, Philippe Néricault, 1680-1754 The Triple Marriage etext6055 Hope, Laura Lee The Bobbsey Twins at Snow Lodge etext6067 Patchin, Frank Gee, 1861-1925 The Pony Rider Boys in the Rockies etext6107 Mangasarian, M. M. (Mangasar Mugurditch), 1859-1943 The Truth about Jesus : Is He a Myth? etext6134 Parmele, Mary Platt, 1843-1911 The Evolution of an Empire: A Brief Historical Sketch of England etext6186 Parker, Gilbert, 1862-1932 Northern Lights, Volume 1. etext6227 Parker, Gilbert, 1862-1932 The Seats of the Mighty, Volume 4 etext6266 Parker, Gilbert, 1862-1932 The Weavers: a tale of England and Egypt of fifty years ago - Volume 6 etext6281 Parker, Gilbert, 1862-1932 The World for Sale, Volume 1. etext6290 Parker, Gilbert, 1862-1932 Wild Youth, Volume 2. etext6297 Parker, Gilbert, 1862-1932 Carnac's Folly, Volume 2. etext6363 Calderón de la Barca, Pedro, 1600-1681 Life Is a Dream etext6418 Sidney, Margaret, 1844-1924 Five Little Peppers and their Friends etext6460 Williamson, Thames Ross, 1894- Problems in American Democracy etext6515 Wake, William, 1657-1737 The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 9, Hermas etext6523 Tagore, Rabindranath, 1861-1941 The Post Office etext6550 London, Jack, 1876-1916 The House of Mapuhi etext6571 France, Anatole, 1844-1924 The Queen Pedauque etext6635 Rice, Alice Caldwell Hegan, 1870-1942 A Romance of Billy-Goat Hill etext6697 Newton, Caroline Clifford, -1936 Once Upon a Time in Connecticut etext6699 Shelley, Henry C. (Henry Charles) Inns and Taverns of Old London etext6709 De Mille, James, 1833-1880 A Strange Manuscript Found in a Copper Cylinder etext6761 Smollett, T. (Tobias), 1721-1771 The Adventures of Ferdinand Count Fathom — Complete etext6776 Schiller, Friedrich, 1759-1805 History of the Revolt of the Netherlands — Volume 01 etext6809 Vera, [pseud.], 1865- The Doctor's Daughter etext6854 Campbell, Helen, 1839-1918 Anne Bradstreet and Her Time etext6982 Hawthorne, Julian, 1846-1934 Hawthorne and His Circle etext6988 Blackbird, Andrew J., 1810- History of the Ottawa and Chippewa Indians of Michigan etext7008 Hill, Grace Livingston, 1865-1947 The City of Fire etext7011 Zola, Émile, 1840-1902 The Flood etext7043 Shakespeare, William, 1564-1616 Der Kaufmann von Venedig etext7048 Anderson, Sherwood, 1876-1941 Triumph of the Egg, and Other Stories etext7091 Muir, John, 1838-1914 The Yosemite etext7214 Hamsun, Knut, 1859-1952 Pan etext7248 Twain, Mark, 1835-1910 A Connecticut Yankee in King Arthur's Court, Part 7. etext7354 Belloc, Hilaire, 1870-1953 On Something etext7371 Radcliffe, Ann Ward, 1764-1823 A Sicilian Romance etext7387 Yonge, Charlotte Mary, 1823-1901 Grisly Grisell etext7421 Wilcox, Ella Wheeler, 1855-1919 Poems of Optimism etext7436 Greene, Maria Louise The Development of Religious Liberty in Connecticut etext7475 Curtis, George William, 1824-1892 From the Easy Chair — Volume 01 etext7530 Slouschz, Nahum, 1872-1966 The Renascence of Hebrew Literature (1743-1885) etext7535 A Book of Old Ballads — Complete etext7544 Galsworthy, John, 1867-1933 Images from Works of John Galsworthy etext7642 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Ernest Maltravers — Volume 03 etext7649 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Ernest Maltravers — Complete etext7791 Nexø, Martin Andersen, 1869-1954 Pelle the Conqueror — Volume 01 etext7829 Dandridge, Danske, 1858-1914 American Prisoners of the Revolution etext7836 Dubnow, S. M. (Simon Markovich), 1860-1941 Jewish History : an essay in the philosophy of history etext7849 Kafka, Franz, 1883-1924 The Trial etext7897 Prentice, Amy The Gray Goose's Story etext7905 etext7923 etext7949 Sabatini, Rafael, 1875-1950 The Historical Nights' Entertainment etext7958 Balzac, Honoré de, 1799-1850 The Napoleon of the People etext7985 Graf, Oskar Maria, 1894-1967 Zur freundlichen Erinnerung etext8008 Anonymous The Bible, King James version, Book 8: Ruth etext8029 Anonymous The Bible, King James version, Book 29: Joel etext8080 James, Henry, 1843-1916 A Passionate Pilgrim etext8089 Hawthorne, Nathaniel, 1804-1864 Passages from the American Notebooks, Volume 2. etext8172 Forbes, George, 1849-1936 History of Astronomy etext8213 Barrow, Katherine Mary Three Years in Tristan da Cunha etext8260 Anonymous The World English Bible (WEB): Micah etext8346 The Bible, Douay-Rheims, Book 46: 2 Machabees etext8372 The Bible, Douay-Rheims, Book 72: Jude etext8373 The Bible, Douay-Rheims, Book 73: Apocalypse etext8379 Ingleby, C. M. (Clement Mansfield), 1823-1886 Shakespeare's Bones etext8409 Behn, Aphra, 1640-1689 Love-Letters Between a Nobleman and His Sister etext8486 James, M. R. (Montague Rhodes), 1862-1936 Ghost Stories of an Antiquary etext8498 Various The Atlantic Monthly, Volume 01, No. 01, November, 1857 etext8507 Johonnot, James, 1823-1888 Ten Great Events in History etext8513 Zola, Émile, 1840-1902 The Three Cities Trilogy: Lourdes, Volume 3 etext8568 Grillparzer, Franz, 1791-1872 Des Meeres und der Liebe Wellen etext8655 Anonymous The Book of the Thousand Nights and One Night, Volume I etext8665 Dake, Charles Romyn A Strange Discovery etext8690 Tocqueville, Alexis de, 1805-1859 American Institutions and Their Influence etext8691 Baldwin, Simeon E., LLD, 1840-1927 The American Judiciary etext8695 The Poetical Works of Beattie, Blair, and Falconer etext8713 Wodehouse, P. G. (Pelham Grenville), 1881-1975 A Man of Means etext8717 Various Scientific American Supplement, No. 344, August 5, 1882 etext8737 Ward, Humphry, Mrs., 1851-1920 Robert Elsmere etext8757 Burroughs, Edgar Rice, 1875-1950 At the Earth's Core etext8823 Hough, P. M. Dutch Life in Town and Country etext8826 Edgeworth, Maria, 1767-1849 Tales and Novels — Volume 01 etext8853 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Jude etext8881 Given, Charles Stewart A Fleece of Gold; Five Lessons from the Fable of Jason and the Golden Fleece etext8895 Storm, Theodor, 1817-1888 Auf der Universität Lore etext8910 Holbach, Paul Henri Thiry, baron d', 1723-1789 The System of Nature, Volume 2 etext8935 Turgenev, Ivan Sergeevich, 1818-1883 Dream Tales and Prose Poems etext8945 Trollope, Anthony, 1815-1882 The Life of Cicero etext8950 Various Scientific American Supplement, No. 385, May 19, 1883 etext8975 Wells, H. G. (Herbert George), 1866-1946 The Magnificient Research etext9038 Twain, Mark, 1835-1910 The Adventures of Tom Sawyer etext9044 Grillparzer, Franz, 1791-1872 Weh dem, der lügt etext9098 Ross, John Wilson, 1818-1887 Tacitus and Bracciolini etext9114 London, Jack, 1876-1916 Burning Daylight etext9226 Hawthorne, Nathaniel, 1804-1864 The Hall of Fantasy (From "Mosses from an Old Manse") etext9231 Hawthorne, Nathaniel, 1804-1864 Earth's Holocaust (From "Mosses from an Old Manse") etext9251 Hawthorne, Nathaniel, 1804-1864 An Old Woman's Tale etext9306 Croce, Benedetto, 1866-1952 Aesthetic as Science of Expression and General Linguistic etext9309 Barr, Robert, 1850-1912 In a Steamer Chair and Other Stories etext9361 Conrad, Joseph, 1857-1924 Youth etext9393 MacDonald, George, 1824-1905 A Dish of Orts : Chiefly Papers on the Imagination, and on Shakespeare etext9443 Holley, Marietta, 1836-1926 Samantha among the Brethren — Volume 1 etext9451 Hardy, Thomas, 1840-1928 The Woodlanders etext9462 Bailey, Arthur Scott, 1877-1949 The Tale of Sandy Chipmunk etext9470 Glyn, Elinor, 1864-1943 His Hour etext9472 Various The Atlantic Monthly, Volume 05, No. 31, May, 1860 etext9479 Foa, Eugenie The Boy Life of Napoleon etext9512 Poe, Edgar Allan, 1809-1849 The Works of Edgar Allan Poe, Volume 1 etext9564 Whittier, John Greenleaf, 1807-1892 Narrative and Legendary Poems: Among the Hills and Others etext9601 Pope, Alexander, 1688-1744 The Poetical Works of Alexander Pope, Volume 2 etext9655 Vigny, Alfred de, 1797-1863 Stello etext9683 Defoe, Daniel, 1661?-1731 A Journal of the Plague Year etext9707 Dickens, Charles, 1812-1870 Going into Society etext9729 Dickens, Charles, 1812-1870 Perils of Certain English Prisoners etext9743 Dickens, Charles, 1812-1870 Sketches of Young Couples etext9787 Frederic, Harold, 1856-1898 In the Valley etext9794 Rice, Alice Caldwell Hegan, 1870-1942 Calvary Alley etext9817 Du Maurier, George, 1834-1896 Peter Ibbetson etext9836 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Pawns Count etext9840 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 Vivian Grey etext9845 Cooper, James Fenimore, 1789-1851 The Spy etext9860 Spyri, Johanna, 1827-1901 Moni der Geißbub etext9887 Ellis, Havelock, 1859-1939 Essays in War-Time etext9888 Morris, Gouverneur, 1876-1953 The Spread Eagle and Other Stories etext9900 Cook, Richard B. (Richard Briscoe), 1838-1916 The Grand Old Man etext9911 Turgenev, Ivan Sergeevich, 1818-1883 The Torrents of Spring etext9927 Vance, Louis Joseph, 1879-1933 The Bronze Bell etext9951 Carnegie, Andrew, 1835-1919 Arbetets Herravälde etext9960 Various Punchinello, Volume 1, No. 06, May 7, 1870 etext9998 Betham, Matilda, 1776-1852 Poems etext20261 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 The Adventures of Harry Revel etext19797 Stoker, Bram, 1847-1912 Dracula etext10000 Anonymous The Magna Carta etext10039 Behn, Aphra, 1640-1689 The Works of Aphra Behn, Volume III etext10082 etext10087 Forsslund, Louise, 1873-1910 Old Lady Number 31 etext10126 Waugh, Edwin, 1817-1890 Home-Life of the Lancashire Factory Folk during the Cotton Famine etext10171 His Majesty's Irish Guards Band Santa Lucia etext10202 Mitchell, Maria, 1818-1889 Maria Mitchell: Life, Letters, and Journals etext10237 Siegel-Myers School of Music - Vocal Record F etext10243 Scott, John A. (organ, vocal) Radio Program for WAAM, Newark, New Jersey etext10261 La Bella Cubano etext10295 Fisk University Jubilee Quartette The Band of Gideon etext10296 Fisk University Jubilee Quartette Swing Low, Sweet Chariot etext10333 Dickinson, G. Lowes (Goldsworthy Lowes), 1862-1932 The European Anarchy etext10347 Alvares, Rahul Free from School etext10353 Goethe, Johann Wolfgang von, 1749-1832 Satyros oder Der vergötterte Waldteufel etext10362 Dolbey, Robert Valentine, 1878-1937 Sketches of the East Africa Campaign etext10392 Brampton, Henry Hawkins, Baron, 1817-1907 The Reminiscences of Sir Henry Hawkins (Baron Brampton) etext10421 Galt, John, 1779-1839 The Life of Lord Byron etext10483 Short Stories Old and New etext10521 Crawford, F. Marion (Francis Marion), 1854-1909 The Primadonna etext10562 Jacobs, W. W. (William Wymark), 1863-1943 Friends in Need etext10611 Clarkson, Thomas, 1760-1846 An Essay on the Slavery and Commerce of the Human Species, Particularly the African etext10621 Stribling, T. S., 1881-1965 Birthright etext10633 Clarkson, Thomas, 1760-1846 The History of the Rise, Progress and Accomplishment of the Abolition of the African Slave-Trade, by the British Parliament (1839) etext10641 Lord, John, 1810-1894 Beacon Lights of History, Volume 10 etext10671 Darwin, Erasmus, 1731-1802 The Botanic Garden. Part II. etext10685 Jacob, P. L., 1806-1884 Curiosités Infernales etext10795 Home, Gordon, 1878-1969 Yorkshire—Coast and Moorland Scenes etext10870 Burgess, Gelett, 1866-1951 Are You a Bromide? etext10921 The World's Greatest Books — Volume 04 — Fiction etext10969 Furse, Katharine Symonds, 1875-1952 Ski-running etext10991 Leighton, Robert, 1859-1934 Dogs and All about Them etext11031 Stephen, Leslie, Sir, 1832-1904 Samuel Johnson etext11050 Crawford, F. Marion (Francis Marion), 1854-1909 Taquisara etext11127 Rinehart, Mary Roberts, 1876-1958 The Case of Jennie Brice etext11137 Steward, Austin Twenty-Two Years a Slave, and Forty Years a Freeman etext11203 King, Phillip Parker, 1793?-1856 Narrative of a Survey of the Intertropical and Western Coasts of Australia etext11223 Sinclair, Bertrand W., 1881-1972 Big Timber etext11258 Various The Mirror of Literature, Amusement, and Instruction etext11270 Zakrzewska, Marie E. (Marie Elizabeth), 1829-1902 A Practical Illustration of "Woman's Right to Labor" etext11289 Wells, H. G. (Herbert George), 1866-1946 What is Coming? etext11352 Bernhardi, Friedrich von, 1849-1930 Germany and the Next War etext11354 Shaw, Bernard, 1856-1950 The Irrational Knot etext11387 Various The Mirror of Literature, Amusement, and Instruction etext11394 Powell, E. Alexander (Edward Alexander), 1879-1957 Fighting in Flanders etext11413 Doyle, Arthur Conan, Sir, 1859-1930 The Refugees etext11525 Various The Atlantic Monthly, Volume 03, No. 18, April, 1859 etext11533 Theocritus, 300 BC-260 BC Theocritus, translated into English Verse etext11586 D'Awans, Robert L'Ameublement de l'Hôtel de Pitsembourg au milieu du XVIIe siècle etext11589 Verne, Jules, 1828-1905 Les Voyages extraordinaires etext11606 Various The Atlantic Monthly, Volume 03, No. 16, February, 1859 etext11651 Various Notes and Queries, Number 07, December 15, 1849 etext11659 The World's Greatest Books — Volume 08 — Fiction etext11669 de Terreros, Manuel Romero, Marquís de San Francisco La Puerta de Bronce y Otros Cuentos etext11671 Stockton, Frank Richard, 1834-1902 The Rudder Grangers Abroad and Other Stories etext11716 etext11859 Child, Lydia Maria Francis, 1802-1880 Isaac T. Hopper etext18628 Vasconcelos, António Augusto Teixeira de, 1816-1878 Oração funebre recitada nas exequias do Illm.^o e Exm.^o Sr. Pedro Alexandrino da Cunha etext18708 Jókai, Mór, 1825-1904 Dr. Dumany's Wife etext11893 Delorme, Amédée Journal d'un sous-officier, 1870 etext11902 Burslem, Rollo Gillespie A Peep into Toorkisthhan etext11963 Various Punch, or the London Charivari, Volume 156, June 4, 1919. etext11976 Jacobs, W. W. (William Wymark), 1863-1943 Dialstone Lane, Complete etext11983 Gent, Thomas, 1780- Poetic Sketches etext11995 Lady, An English A Residence in France During the Years 1792, 1793, 1794 and 1795, Part IV., 1795 etext12026 Freeman, John, 1880-1929 Poems New and Old etext12070 Leopold, Marie, 1867- Een Jolig Troepje etext12128 Jacobs, W. W. (William Wymark), 1863-1943 A Tiger's Skin etext12153 Jacobs, W. W. (William Wymark), 1863-1943 The Understudy etext12173 Calderón de la Barca, Pedro, 1600-1681 The Two Lovers of Heaven: Chrysanthus and Daria etext12179 Quick, Herbert, 1861-1925 Vandemark's Folly etext12203 Jacobs, W. W. (William Wymark), 1863-1943 Blundell's Improvement etext12226 Dorr, Rheta Childe, 1866-1948 What eight million women want etext12262 Various Punch, or the London Charivari, Volume 99, September 27, 1890 etext12309 Hall, Thornton, 1858- Love affairs of the Courts of Europe etext12334 Stockton, Frank Richard, 1834-1902 A Bicycle of Cathay etext12381 Presbytery, The Reformed The Auchensaugh Renovation of the National Covenant and etext12391 Stoddard, Elizabeth, 1823-1902 Poems etext12392 Various Punch, or the London Charivari, Volume 99, August 23, 1890 etext12404 Various Seeing Europe with Famous Authors, Volume 5 etext12527 Paris, John Kimono etext12530 Various The Mirror of Literature, Amusement, and Instruction etext12563 Doren, Carl Van Contemporary American Novelists (1900-1920) etext12617 Massey, Montague Recollections of Calcutta for over Half a Century etext12678 Irwin, Will, 1873-1948 The House of Mystery etext12779 Bennett, Arnold, 1867-1931 Helen with the High Hand (2nd ed.) etext12805 Hayes, Clair W. (Clair Wallace), 1887- The Boy Allies in the Balkan Campaign etext12826 England, George Allan, 1877-1936 The Air Trust etext12834 Du Maurier, George, 1834-1896 Social Pictorial Satire etext12839 Theiss, Lewis E. The Young Wireless Operator—As a Fire Patrol etext12858 Barbour, Ralph Henry, 1870-1944 The Lilac Girl etext12948 Shaler, Robert The Boy Scouts with the Motion Picture Players etext12999 Proust, Marcel, 1871-1922 Le Côté de Guermantes - Deuxième partie etext13026 Various The Atlantic Monthly, Volume 11, No. 67, May, 1863 etext13057 Mason, A. E. W. (Alfred Edward Woodley), 1865-1948 The Philanderers etext13071 Ward, Humphry, Mrs., 1851-1920 Helena etext13100 Runeberg, Johan Ludvig, 1804-1877 Samlade arbeten I etext13149 DeGuise, Charles, 1827-1884 Hélika etext13190 Guibert, Louis, 1840-1904 De l'importance des livres de raison etext13194 White, Stewart Edward, 1873-1946 The Rules of the Game etext13200 Presbytery, The Reformed Act, Declaration, & Testimony for the Whole of our Covenanted Reformation, as Attained to, and Established in Britain and Ireland; Particularly Betwixt the Years 1638 and 1649, Inclusive etext13203 Slater, J. Atwood Original Letters and Biographic Epitomes etext13205 Geddes, Patrick, 1854-1932 Civics: as Applied Sociology etext13209 Richmond, Grace S. (Grace Smith), 1866-1959 The Second Violin etext13218 Crawford, F. Marion (Francis Marion), 1854-1909 Don Orsino etext13296 Huneker, James, 1857-1921 Promenades of an Impressionist etext13322 Barnard, William Francis Selected Poems etext13340 Crawford, F. Marion (Francis Marion), 1854-1909 Mr. Isaacs etext13353 Smith, George Adam, Sir, 1856-1942 Four Psalms XXIII. XXXVI. LII. CXXI. etext13409 Chekhov, Anton Pavlovich, 1860-1904 The Horse-Stealers and Other Stories etext13431 Sand, George, 1804-1876 Andre etext13448 Lynd, Robert, 1879-1949 The Pleasures of Ignorance etext13525 Hémon, Louis, 1880-1913 Maria Chapdelaine etext13534 Carlyle, Thomas, 1795-1881 Past and Present etext13563 Various Punch, or the London Charivari, Volume 101, July 4, 1891 etext13581 Aho, Juhani, 1861-1921 Hellmannin herra; Esimerkin vuoksi; Maailman murjoma etext18584 Piper, H. Beam, 1904-1964 The Edge of the Knife etext17493 Hugo, Victor, 1802-1885 Les misérables Tome II etext13602 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext13637 Various McClure's Magazine, Vol. 6, No. 2, January, 1896 etext13655 Various Lippincott's Magazine of Popular Literature and Science etext13682 Järnefelt, Arvid, 1861-1932 Isänmaa etext13781 Houston, Thomas The Life of James Renwick etext13810 Mann, Thomas, 1875-1955 Tristan etext13817 etext13826 Doubleday, Russell, 1872-1949 A Gunner Aboard the "Yankee" etext13828 Various Lippincott's Magazine of Popular Literature and Science etext13912 Ouida, 1839-1908 Bebee etext13923 etext13993 Streeter, Edward, 1891-1976 Dere Mable etext14021 Benson, Robert Hugh, 1871-1914 Lord of the World etext14064 Hayes, H. E. E. (Herbert Edward Elton) Mohammed, The Prophet of Islam etext14090 Lyon, Leverett S. (Leverett Samuel), 1885-1959 Elements of Debating etext14092 Anonymous The World's Fair etext14101 Various Dew Drops, Vol. 37, No. 10, March 8, 1914 etext14110 Mitchel, George Kernel Cob And Little Miss Sweetclover etext14111 Various Dew Drops, Vol. 37, No. 15, April 12, 1914 etext14190 Vielliard, Edme In Oostenrijk—Stiermarken etext14203 Chesterton, G. K. (Gilbert Keith), 1874-1936 Varied Types etext14281 Whitman, Walt, 1819-1892 Leaves of grass etext14298 etext14393 King, Basil, 1859-1928 The Inner Shrine etext14432 Runciman, James, 1852-1891 A Dream of the North Sea etext14449 London, Jack, 1876-1916 Dutch Courage and Other Stories etext14460 Goethe, Johann Wolfgang von, 1749-1832 Faust; a Tragedy, Translated from the German of Goethe etext14467 Baker, Thomas, fl. 1700-1709 The Fine Lady's Airs (1709) etext14475 Abbott, Jacob, 1803-1879 Mary Erskine etext1074 London, Jack, 1876-1916 The Sea Wolf etext14592 Various Punch, or the London Charivari, Volume 102, April 9, 1892 etext14636 Unamuno, Miguel de, 1864-1936 Tragic Sense Of Life etext14657 Bentwich, Norman, 1883-1971 Philo-Judaeus of Alexandria etext14677 Mirmont, Madame Henri de la Ville de Contes de Noël etext14696 Glasgow, Ellen Anderson Gholson, 1873-1945 The Wheel of Life etext14714 Ferber, Edna, 1885-1968 Half Portions etext14734 Milne, A. A. (Alan Alexander), 1882-1956 Second Plays etext14765 Hernández, José, 1834-1886 El Gaucho Martín Fierro etext14774 Leino, Eino, 1878-1926 Painuva päivä; Elämän koreus; Leirivalkeat; Ajatar; Syreenien kukkiessa etext14776 etext14833 Prest, Thomas Preskett Varney the Vampire etext14837 Potter, Beatrix, 1866-1943 The Tale of Tom Kitten etext14846 Various Punch, or the London Charivari, Volume 103, July 16, 1892 etext14896 Futrelle, Jacques, 1875-1912 The Diamond Master etext14948 Hough, Emerson, 1857-1923 The Girl at the Halfway House etext15017 Tacitus, Cornelius, 56-120 A Dialogue Concerning Oratory, Or The Causes Of Corrupt Eloquence etext15021 Various Punch, or the London Charivari, Volume 152, April 18, 1917 etext15057 Ségur, Sophie, comtesse de, 1799-1874 Les vacances etext15086 Childers, Erskine, 1870-1922 The Framework of Home Rule etext15099 Eggleston, Edward, 1837-1902 The Hoosier Schoolmaster etext15133 Francis, Stella M. Campfire Girls in the Allegheny Mountains etext15158 United States. Office of Civil Defense In Time of Emergency etext15171 Griffith, William Journals of Travels in Assam, Burma, Bhootan, Afghanistan and the etext15178 Jón Ólafsson, 1850-1916 Alaska etext15305 Aubert de Gaspé, Philippe, 1814-1841 L'influence d'un livre etext15370 Gilbert, W. S. (William Schwenck), Sir, 1836-1911 Bab Ballads and Savoy Songs etext15378 Swinburne, Algernon Charles, 1837-1909 Atalanta in Calydon etext15387 Surtees, Robert Smith, 1803-1864 Jorrocks' Jaunts and Jollities etext15394 American Eloquence, Volume 4 etext15397 Sand, George, 1804-1876 Francia; Un bienfait n'est jamais perdu etext15423 Järnefelt, Arvid, 1861-1932 Samuel Cröell etext16822 Various Memorial Addresses on the Life and Character of William H. F. Lee (A Representative from Virginia) etext15452 Various The Great Round World And What Is Going On In It, Vol. 1, No. 22, April 8, 1897 etext15468 John Sutherland Sinclair, Earl of Caithness Lectures on Popular and Scientific Subjects etext15520 Bennett, Ernest N. With Methuen's Column on an Ambulance Train etext15558 Eekhoud, Georges, 1854-1927 La nouvelle Carthage etext15559 Verne, Jules, 1828-1905 Robur der Sieger etext15582 Chevalier, Ulysse, 1841-1923 Chartvlarivm Ecclesiae Sancti Petri de Bvrgo Valentiae Ordinis Sancti Avgvstini etext15592 Ewing, Juliana Horatia Gatty, 1841-1885 Old-Fashioned Fairy Tales etext15617 etext15629 Daingerfield, Foxhall, 1887-1933 The Southern Cross etext15705 Lott, Noah [pseud.] The Silly Syclopedia etext15755 Skeat, Walter W. (Walter William), 1835-1912 English Dialects From the Eighth Century to the Present Day etext15789 Various The Great Round World and What Is Going On In It, Vol. 1, No. 36, July 15, 1897 etext15847 Shakespeare, William, 1564-1616 Jules César etext15862 Riley, James Whitcomb, 1849-1916 Afterwhiles etext15879 Anonymous Elene; Judith; Athelstan, or the Fight at Brunanburh; Byrhtnoth, or the Fight at Maldon; and the Dream of the Rood etext15889 Various Scientific American Supplement, No. 613, October 1, 1887 etext15901 Elphinston, James, 1721-1809 A Minniature ov Inglish Orthoggraphy etext16021 Dickens, Charles, 1812-1870 Cantique de Noël etext16058 etext16067 Cervantes Saavedra, Miguel de, 1547-1616 L'ingénieux hidalgo Don Quichotte de la Manche - Tome II etext16086 The Philippine Islands, 1493-1898 — Volume 19 of 55 etext16106 Bastiat, Frédéric, 1801-1850 What Is Free Trade? etext16174 Hendryx, James B. (James Beardsley), 1880-1963 The Gun-Brand etext16283 Hawthorne, Julian, 1846-1934 Idolatry etext15884 Young Folks' Library, Volume XI (of 20) etext16312 Tuason, Joaquin, 1843-1908 Patnubay nang Cabataan ó Talinhagang Buhay ni Eliseo at ni Hortensio etext16351 MacDowell, Edward, 1860-1908 Critical and Historical Essays etext16407 Allan, James Under the Dragon Flag etext16414 Pidgin, Charles Felton, 1844-1923 Quincy Adams Sawyer and Mason's Corner Folks etext16449 Conant, Levi Leonard The Number Concept etext16473 Richards, Laura Elizabeth Howe, 1850-1943 Queen Hildegarde etext16491 Bacheller, Irving, 1859-1950 Vergilius etext16518 Fitzgerald, Percy Hethrington, 1834-1925 A Day's Tour etext16527 Rachinskii, Sergei Aleksandrovich, 1836-1902 1001 задача для умственного счета etext16620 Epictetus, 55-135 Ojennusnuora etext16630 Lynde, Francis, 1856-1930 Empire Builders etext16677 Lowndes, Marie Belloc, 1868-1947 The Chink in the Armour etext16723 Meriläinen, Heikki, 1847-1939 Mooses ja hänen hevosensa etext16743 Assollant, Alfred, 1827-1886 Aventures merveilleuses mais authentiques du capitaine Corcoran, Première Partie etext16744 Pratt Food Co. Pratt's Practical Pointers on the Care of Livestock and Poultry etext16761 Holinshed, Raphael, -1580? Chronicles of England, Scotland and Ireland (2 of 6): England (5 of 12) etext16845 Arthur etext16873 Snow, Alpheus Henry, 1859-1920 "Colony,"--or "Free State"? "Dependence,"--or "Just Connection"? "Empire,"--or "Union"? etext16880 Aristotle, 384 BC-322 BC Über die Dichtkunst beim Aristoteles etext16918 Warner, Susan, 1819-1885 Hills of the Shatemuc etext16942 Romanes, George John, 1848-1894 Thoughts on Religion etext16943 Bartlett, David W., 1828-1912 Paris: With Pen and Pencil etext16958 Quigley, Hugh, 1819-1883 The Cross and the Shamrock etext17044 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Mémoires du duc de Saint-Simon etext17082 Anonymous Wandelingen door België etext17091 Drinkwater, John, 1882-1937 Oliver Cromwell etext17240 Buet, Charles, 1846-1897 Le chasseur d'ours etext17259 Poole, Ernest, 1880-1950 His Second Wife etext17262 Pilling, James Constantine, 1846-1895 Catalogue Of Linguistic Manuscripts In The Library Of The Bureau Of Ethnology. (1881 N 01 / 1879-1880 (Pages 553-578)) etext17269 Dack, Charles, 1848?-1923 Weather and Folk Lore of Peterborough and District etext17287 Yonge, Charlotte Mary, 1823-1901 History of France etext17328 Maspero, G. (Gaston), 1846-1916 History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 8 (of 12) etext17332 Rappoport, A. S. (Angelo Solomon), 1871-1950 History of Egypt From 330 B.C. To the Present Time, Volume 12 (of 12) etext17366 Nightingale, Florence, 1820-1920 Notes on Nursing etext17390 MacGrath, Harold, 1871-1932 Hearts and Masks etext17419 Claretie, Jules, 1840-1913 Bouddha etext17424 Dykes, John Bacchus, 1823-1876 Eternal Father, Strong to Save etext17471 Various Punch, or the London Charivari, Volume 152, February 14, 1917 etext17498 Major, Charles, 1856-1913 When Knighthood Was in Flower etext17534 Junqueiro, Abílio Manuel Guerra, 1850-1923 Os Simples etext17616 Butterworth, Hezekiah, 1839-1905 Little Sky-High etext17626 Sadler, Michael Ferrebee, 1819-1895 The Lost Gospel and Its Contents etext17628 Schmid, Christoph von, 1768-1854 Genoveeva Brabantin kreivitär etext17645 Egleston, Nathaniel Hillyer, 1822-1912 Arbor Day Leaves etext17650 Petrarca, Francesco, 1304-1374 The Sonnets, Triumphs, and Other Poems of Petrarch etext17658 Roberts, Theodore Goodridge, 1877-1953 The Harbor Master etext17731 Conrad, Joseph, 1857-1924 The Nigger Of The "Narcissus" etext17755 Various Scientific American Supplement, No. 717, September 28, 1889 etext17765 Parrish, Randall, 1858-1923 Gordon Craig etext17843 Farrow, G. E. (George Edward), 1866?-1920? The Mysterious Shin Shira etext17874 Bettoni, Paolo Tre racconti sentimentali etext17926 MacRitchie, David, 1861-1925 Fians, Fairies and Picts etext17967 Davidson, Halsey Navy Boys Behind the Big Guns etext18004 Aldrich, Mildred, 1853-1928 Told in a French Garden etext15045 Piozzi, Hester Lynch, 1741-1821 Autobiography, Letters and Literary Remains of Mrs. Piozzi (Thrale) (2nd ed.) (2 vols.) etext15324 Coppée, François, 1842-1908 Promenades et intérieurs etext18056 Bailey, Temple, -1953 The Tin Soldier etext18161 Burke, Edmund, 1729-1797 The Works of the Right Honourable Edmund Burke, Vol. 08 (of 12) etext18194 Olcott, Henry Steel, 1832-1907 The Life of Buddha and Its Lessons etext18230 Various How to Write a Play etext18252 Tompkins, Herbert Winckworth Hertfordshire etext18270 Capel, Thomas John, 1836-1911 Confession and Absolution etext18278 Various Blackwood's Edinburgh Magazine - Volume 61, No. 376, February, 1847 etext18286 Glasgow, Ellen Anderson Gholson, 1873-1945 The Miller Of Old Church etext18344 Crane, Walter, 1845-1915 The Song of Sixpence etext18417 Foote, Samuel, 1720-1777 The Great Panjandrum Himself etext18482 Various The Most Ancient Lives of Saint Patrick etext18488 Comstock, Harriet T. (Harriet Theresa), 1860- The Place Beyond the Winds etext18496 Johnston, Annie F. (Annie Fellows), 1863-1931 Big Brother etext18539 Mercer, John Edward, 1857-1922 Nature Mysticism etext18572 Lewis, Alfred Henry, 1857-1914 The President etext18613 Rohmer, Sax, 1883-1959 The Golden Scorpion etext18626 Bailey, Arthur Scott, 1877-1949 The Tale of Major Monkey etext18656 Bailey, Arthur Scott, 1877-1949 The Tale of Pony Twinkleheels etext18817 Norton, Andre, 1912-2005 Ralestone Luck etext18904 Yrjö-Koskinen, Yrjö Sakari, 1830-1903 Pohjan-Piltti etext18977 Various The Continental Monthly, Vol. 1, No. 1, January 1862 etext19004 Snell, F. J. (Frederick John), 1862- The Customs of Old England etext19037 etext19092 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Paddy Beaver etext14552 Anonymous Baltimore Catechism, No. 2 etext14578 Haslam, William From Death into Life etext19099 Various The Continental Monthly, Vol. III, No. V, May, 1863 etext19102 Piper, H. Beam, 1904-1964 Dearest etext19135 Dixon, Thomas, 1864-1946 The Southerner etext19153 Bryant, Jacob, 1715-1804 A New System; or, an Analysis of Antient Mythology. Volume I. etext19240 etext19377 Penn, William, 1644-1718 A Brief Account of the Rise and Progress of the People Called Quakers etext19389 Stein, Evaleen, 1863-1923 Child Songs of Cheer etext19415 Clark, John Willis, 1833-1910 Libraries in the Medieval and Renaissance Periods etext19427 Barrili, Anton Giulio, 1836-1908 Galatea etext19460 Dehio, Georg, 1850-1932 Handbuch der deutschen Kunstdenkmäler, Bd.1, Mitteldeutschland, 1914 etext19484 Twain, Mark, 1835-1910 Editorial Wild Oats etext19496 Azara, Félix de, 1742-1821 Diario de un reconocimiento de la guardia y fortines etext19553 Dee, John, 1527-1608 The Private Diary of Dr. John Dee etext19554 Jarvis, Mary Rowles Dick Lionheart etext19563 Couperus, Louis, 1863-1923 Eline Vere etext19570 Hurll, Estelle M. (Estelle May), 1863-1924 Van Dyck etext19583 Carman, Bliss, 1861-1929 A Vagabond Song etext19589 Bigges, Walter, -1586 Summarie and true discourse of Sir Frances Drakes West Indian voyage etext19607 Hope, Laura Lee The Outdoor Girls in a Winter Camp etext19623 Aesop, 620 BC-563 BC Aesop's Fables - Volume 08 etext19647 Quayle, William A. (William Alfred), 1860-1925 A Hero and Some Other Folks etext19662 Tacitus, Cornelius, 56-120 Germania etext19673 Assmuss, Eduard Philibert, 1838- Parasiten der Honigbiene etext19704 Richards, William, 1749-1818 A Pocket Dictionary etext19710 MacGill, Patrick, 1890-1963 The Red Horizon etext19760 Bjørnson, Bjørnstjerne, 1832-1910 Auf Gottes Wegen etext14540 Saki, 1870-1916 When William Came etext19807 Summerfield, John Sketch of Grammar of the Chippeway Languages etext19844 Unknown Book of Jude etext19951 Taylor, Edward C. Ted Strong in Montana etext20093 Various The American Missionary — Volume 50, No. 4, April, 1896 etext20100 Koskenniemi, V. A., 1885-1962 Runoja etext20104 Cooper, Courtney Ryley, 1886-1940 The Cross-Cut etext20175 Chatzopoulos, Konstantinos, 1868-1920 Φθινόπωρο etext20234 Wilde, Oscar, 1854-1900 Derniers essais de littérature et d'esthétique: août 1887-1890 etext20244 Comminges, Aimery de, comte de, 1862-1925 Le Voluptueux Voyage etext20335 Beck, James M. (James Montgomery), 1861-1936 The Case of Edith Cavell etext20353 The Best Nonsense Verses etext20372 Waldburg-Truchsess, Friedrich-Ludwig von, 1776-1844 Nouvelle relation de l'Itinéraire de Napoléon de Fontainebleau à l'île d'Elbe etext20488 Tyler, James Endell, 1789-1851 Henry of Monmouth, Volume 1 etext20621 Suomalainen, Samuli, 1850-1907 Novelleja I etext20625 Various Young Americans Abroad etext20664 Aristophanes, 446? BC-385? BC Aristophane; Traduction nouvelle, tome second etext20675 Galatians etext20683 Matsuo, Bashō, 1644-1694 奥の細道 etext20696 Lucas, E. V. (Edward Verrall), 1868-1938 Highways and Byways in Sussex etext20700 Vinet, Alexandre, 1797-1847 Etudes sur la Littérature Française au XIXe siècle etext20736 Galt, Katherine Keene The Girl Scouts at Home, etext20803 Fiske, John, 1842-1901 The War of Independence etext20809 Wyatt, G. E. Archie's Mistake etext20853 Holbrook, Florence, 1860-1932 Northland Heroes etext20862 Barnett, Evelyn Snead Jerry's Reward etext20925 Andrews, Elisha Benjamin, 1844-1917 History of the United States, Volume 1 etext20945 Wells, Carolyn, 1862-1942 Patty Blossom etext20947 Thomson, Mrs. Memoirs of the Jacobites of 1715 and 1745 etext20961 Bridle, Augustus, 1869- The Masques of Ottawa etext20970 Hellaakoski, Aaro, 1893-1952 Liian Paha Sappi etext20975 Bly, Nellie, 1864-1922 Nellie Bly's Book etext21019 Dennert, Eberhard At the Deathbed of Darwinism etext21073 Collingwood, Harry, 1851-1922 A Pirate of the Caribbees etext13422 Various Punch, or the London Charivari, Volume 100, June 20, 1891 etext21092 Rockwell, Carey, [pseud.] On the Trail of the Space Pirates etext21107 Hutcheson, John C. (John Conroy) On Board the Esmeralda etext21117 Vaizey, George de Horne, Mrs., 1857-1917 Betty Trevor etext21183 Dostoyevsky, Fyodor, 1821-1881 Белые ночи etext21238 Reid, Mayne, 1818-1883 The Castaways etext21253 Nordlund, Karl The Swedish-Norwegian Union Crisis etext21264 Webster, Jean, 1876-1916 The Four Pools Mystery etext21268 Otis, James, 1848-1912 The Search for the Silver City etext21280 Makins, George Henry, 1853- Surgical Experiences in South Africa, 1899-1900 etext21285 A.L.O. C. The Story of a Dark Plot etext21286 Burgess, Thornton W. (Thornton Waldo), 1874-1965 Mother West Wind "How" Stories etext21310 Fenn, George Manville, 1831-1909 Featherland etext21326 Fenn, George Manville, 1831-1909 The Black Bar etext21347 Päivärinta, Pietari, 1827-1913 Naimisen juoruja etext21380 Fenn, George Manville, 1831-1909 A Young Hero etext21415 Ashford, Daisy, 1881-1972 The Young Visiters or, Mr. Salteena's Plan etext21463 Kingston, William Henry Giles, 1814-1880 Voyages and Travels of Count Funnibos and Baron Stilkin etext21474 Kingston, William Henry Giles, 1814-1880 Peter the Whaler etext21484 Kingston, William Henry Giles, 1814-1880 Roger Willoughby etext21505 Kingston, William Henry Giles, 1814-1880 Will Weatherhelm etext21514 Peacock, Thomas Love, 1785-1866 Gryll Grange etext21553 Marryat, Frederick, 1792-1848 Mr. Midshipman Easy etext21557 Marryat, Frederick, 1792-1848 Newton Forster etext21598 Various Punch, or the London Charivari, Volume 104, January 14, 1893 etext21633 Hill, Grace Livingston, 1865-1947 The Man of the Desert etext21641 Hungerford, Margaret Wolfe April's Lady etext21715 Ballantyne, R. M. (Robert Michael), 1825-1894 Away in the Wilderness etext21723 Songs of the Cattle Trail and Cow Camp etext21741 Ballantyne, R. M. (Robert Michael), 1825-1894 The Island Queen etext21889 Abbott, Jacob, 1803-1879 Peter the Great etext21930 Jacobs, W. W. (William Wymark), 1863-1943 Salthaven etext21933 Lang, Andrew, 1844-1912 Much Darker Days etext21961 Campos, Alfredo A Filha do Cabinda etext13171 Wilkuna, Kyösti, 1879-1922 Tapani Löfvingin seikkailut etext13181 Rolt-Wheeler, Francis, 1876-1960 The Boy With the U.S. Census etext22030 Leland, Charles Godfrey, 1824-1903 Memoirs etext22050 Lees, J. Cameron Life and Conduct etext22068 etext22086 Lermina, Jules, 1839-1915 The Son of Monte-Cristo, Volume II etext22114 Francatelli, Charles Elmé A Plain Cookery Book for the Working Classes etext22134 etext22135 Perry, Ralph Barton, 1876-1957 The Moral Economy etext22148 Müller, George, 1805-1898 A Narrative of some of the Lord's Dealings with George Müller etext22166 Work Projects Administration Slave Narratives: A Folk History of Slavery in the United States etext22200 Murray, David Christie, 1847-1907 Recollections etext22221 Lee, Carson Jay Oswald Langdon etext22265 Standish, Burt L., 1866-1945 Frank Merriwell's Cruise etext22292 Bailey, Temple, -1953 Glory of Youth etext22315 Blackmore, R. D. (Richard Doddridge), 1825-1900 Slain By The Doones etext22342 etext22359 Sharswood, George An Essay on Professional Ethics etext22364 Abercrombie, John, 1780-1844 The Philosophy of the Moral Feelings etext22394 Musset, Alfred de, 1810-1857 Oeuvres complètes de Alfred de Musset - Tome 4 etext22426 Cole, Everett B., 1918-1977 The Players etext22433 Optic, Oliver, 1822-1897 Breaking Away etext22459 Pullan, Leighton, 1865-1940 The Books of the New Testament etext22479 Beresford, J. D. (John Davys), 1873-1947 The Psychical Researcher's Tale - The Sceptical Poltergeist etext22526 Jones, Raymond F., 1915-1994 Cubs of the Wolf etext22553 Buckingham and Chandos, Richard Plantagenet Temple Nugent Brydges Chandos Grenville, Duke of, 1797-1861 Memoirs of the Court of George IV. 1820-1830 (Vol 1) etext22559 Pohl, Frederik, 1919- The Day of the Boomer Dukes etext22560 Knight, Damon Francis, 1922-2002 The Worshippers etext22576 Various Punch, or the London Charivari, Vol. 146, February 18, 1914 etext22613 Grimarest, Jean-Léonor de, 1659-1713 La Vie de M. de Molière etext22639 Various Notes and Queries, Number 68, February 15, 1851 etext22645 Various Punch, or the London Charivari, Vol. 104, March 18, 1893 etext22720 Le Queux, William, 1864-1927 The Minister of Evil etext22755 Anonymous The Adventures of the Little Woman, Her Dog and the Pedlar etext22761 Humboldt, Alexander von, 1769-1859 Ideen zu einer Physiognomik der Gewächse etext22786 Aho, Juhani, 1861-1921 Rautatie etext22806 Green, Anna Katharine, 1846-1935 The Bronze Hand etext22808 Green, Anna Katharine, 1846-1935 The Gray Madam etext22859 The Song of Songs etext22890 Weinbaum, Stanley Grauman, 1902-1935 The Worlds of If etext22971 Apollinaire, Guillaume, 1880-1918 Les trois Don Juan etext23018 Bierens de Haan, J. D. (Johannes Diderik), 1866-1943 Goethe's Faust etext23049 Kingston, William Henry Giles, 1814-1880 Old Jack etext23070 Kingston, William Henry Giles, 1814-1880 Clara Maynard etext23134 Sapper, Agnes, 1852-1929 Frau Pauline Brater etext23207 Americans All etext23209 Carlyle, Thomas, 1795-1881 The Life of Friedrich Schiller etext23285 Various Le Tour du Monde; Californie etext23291 Unknown Sinks of London Laid Open etext23302 Coybee, Eden The Dumpy Books for Children; etext23331 Various Punch, or the London Charivari, Vol. 150, February 16, 1916 etext23373 Ballantyne, R. M. (Robert Michael), 1825-1894 The Eagle Cliff etext23383 Kingston, William Henry Giles, 1814-1880 Archibald Hughson etext23399 March, Eleanor S. Little White Barbara etext23412 Hichens, Robert Smythe, 1864-1950 The Figure In The Mirage etext23419 Hichens, Robert Smythe, 1864-1950 The Return Of The Soul etext23444 Allais, Alphonse, 1854-1905 Deux et deux font cinq etext23480 Boare, G. What became of Them? and, The Conceited Little Pig etext23522 Greene, Julia Whiffet Squirrel etext23577 Kingston, William Henry Giles, 1814-1880 Taking Tales etext23593 Ruskin, John, 1819-1900 Lectures on Architecture and Painting etext23632 Murfree, Mary Noailles, 1850-1922 'way Down In Lonesome Cove etext23676 Shakespeare, William, 1564-1616 Titus Andronicus etext12176 Johnston, Annie F. (Annie Fellows), 1863-1931 The Gate of the Giant Scissors etext11989 Carter, Nicholas The Crime of the French Café and Other Stories etext11992 Lady, An English A Residence in France During the Years 1792, 1793, 1794 and 1795, Part I. 1792 etext23687 Grave, João José, 1872-1934 A Morte Vence etext23724 Chopin, Kate, 1850-1904 The Awakening etext23749 Herford, Oliver, 1863-1935 The Mythological Zoo etext23762 Edmondson, G. C., 1922-1995 Blessed Are the Meek etext23785 Brown, Ruth Alberta At the Little Brown House etext23808 Janvier, Thomas A. (Thomas Allibone), 1849-1913 A Romance Of Tompkins Square etext23810 Chopin, Kate, 1850-1904 At Fault etext23813 Clark, Daniel A Newly Discovered System of Electrical Medication etext23828 Sagard, Gabriel Le grand voyage au pays des Hurons etext23867 Liu, Zhang 斬鬼傳 etext23974 Laozi The Tao Teh King, or the Tao and its Characteristics etext24031 Zamacois, Eduardo, 1873-1972? El teatro por dentro etext24032 Wu, Jingzi, 1701-1754 儒林外史 etext24049 Han, Fei, -233 BC 韩非子 etext24062 Chesterton, Cecil, 1879-1918 A History of the United States etext24079 Tianzhuisheng 商界現形記 etext24126 Hough, Emerson, 1857-1923 Maw's Vacation etext24128 Various Chambers's Edinburgh Journal, No. 459 etext24282 Wannamaker, Jim Attrition etext24297 Graydon, William Murray, 1864-1946 The River of Darkness, etext24339 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Suicida etext24372 Hyde, William De Witt, 1858-1917 Practical Ethics etext24386 Kloos-Reyneke van Stuwe, Jeanne, 1874-1951 Het vroolijke leven etext11952 Guizot, M. (François), 1787-1874 A Popular History of France from the Earliest Times, Volume 2 etext24395 Schmitz, James H., 1911-1981 The Winds of Time etext24453 Various Punch, or the London Charivari, Vol. 146, June 17, 1914 etext24480 Dieulafoy, Jane, 1851-1916 Castilië en Andalusië etext24509 Turner, Ethel Sybil, 1872-1958 In the Mist of the Mountains etext24517 Baily, Peter Accidental Death etext24552 Northern Nut Growers Association, Report of the Proceedings at the Fourth Annual Meeting etext24565 Collingwood, Harry, 1851-1922 Two Gallant Sons of Devon etext24568 Kissell, Mary Lois Aboriginal American Weaving etext24573 Maréchal, Sylvain, 1750-1803 Projet d'une loi portant défense d'apprendre à lire aux femmes etext24583 Langstroth, L. L. (Lorenzo Lorraine), 1810-1895 Langstroth on the Hive and the Honey-Bee etext24626 Heywood, Robert, 1786-1868 A Journey to America in 1834 etext24631 Optic, Oliver, 1822-1897 Freaks of Fortune etext24650 Whistler, James McNeill, 1834-1903 The Gentle Art of Making Enemies etext24670 Curtis, William, 1746-1799 The Botanical Magazine Vol. 8 etext24693 Maclean, John, 1851-1928 William Black etext24721 Herbert, Frank, 1920-1986 Operation Haystack etext24756 Lang, Jeanie The Story of General Gordon etext24757 Denney, James, 1856-1917 The Atonement and the Modern Mind etext24787 Black, C. B., -1906 The South of France—East Half etext24849 Unknown A Little Present for a Good Child etext24853 Bastos, Teixeira, 1857?-1902 Habitações Operarias etext24865 Sabia, Richard The Premiere etext24957 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Noites de insomnia, offerecidas a quem não póde dormir. Nº3 (de 12) etext24972 Doubleday, Abner, 1819-1893 Reminiscences of Forts Sumter and Moultrie in 1860-'61 etext24992 Various Punch, or the London Charivari, Vol. 147, July 22, 1914 etext25032 Kingston, William Henry Giles, 1814-1880 A Yacht Voyage Round England etext25034 etext25061 Garrett, Randall, 1927-1987 The Penal Cluster etext25092 Herbert, Henry William, 1807-1858 The Roman Traitor, Vol. 1 etext25126 Finot, Jean, 1858-1922 Modern Saints and Seers etext25127 Reid, Mayne, 1818-1883 The Tiger Hunter etext25186 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Border Watch etext25326 Vasari, Giorgio, 1511-1574 Lives of the Most Eminent Painters Sculptors and Architects etext25362 Gan, Bao, fl. 317-322 搜神記 etext25363 Headley, P. C. (Phineas Camp), 1819-1903 Half Hours in Bible Lands, Volume 2 etext25404 Kingsley, Henry, 1830-1876 The Lost Child etext25451 Evans, C. S. (Charles Seddon), 1883-1944 The Sleeping Beauty etext25496 Nesbit, E. (Edith), 1858-1924 New Treasure Seekers etext25511 Sidgwick, Frank Ballads of Mystery and Miracle and Fyttes of Mirth etext25572 Caine, Hall, Sir, 1853-1931 Capt'n Davy's Honeymoon etext25635 Testa, Carlos, 1823-1891 A Influencia Europea na Africa perante a Civilisação e as Relações Internacionaes etext25665 Reid, Mayne, 1818-1883 Popular Adventure Tales etext25685 Various Punch, or the London Charivari Volume 98, January 4, 1890 etext25715 Shakespeare, William, 1564-1616 Henri IV (2e partie) etext25716 Song, Shangjie, 1901-1944 灵历集光 etext25730 Sills, Steven (Steven David Justin) An Apostate: Nawin of Thais etext25778 Roy, Lillian Elizabeth, 1868-1932 Polly's Business Venture etext25784 Verne, Jules, 1828-1905 Celebrated Travels and Travellers etext25836 Gleason, Arthur, 1878-1923 Young Hilda at the Wars etext25855 Greene, John Richard, 1837-1883 Stray Studies from England and Italy etext25881 Järnefelt, Akseli, 1871-1932 Kohtaloonsa kompastunut etext25900 Bartol, C. A. (Cyrus Augustus), 1813-1900 Senatorial Character etext25906 Various The American Missionary — Volume 50, No. 9, September, 1896 etext25961 Lardner, Ring, 1885-1933 Bib Ballads etext25964 Linnankoski, Johannes, 1869-1913 Batalo pri la Domo Heikkilä etext26025 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Carlota Angela etext26030 Mansfield, M. F. (Milburg Francisco), 1871- The Automobilist Abroad etext26055 Webb-Peploe, Mrs. (Annie), 1805-1880 Naomi eli Jerusalemin viimeiset päivät etext26078 Sudermann, Hermann, 1857-1928 El deseo etext26088 Caine, Hall, Sir, 1853-1931 A Son of Hagar etext26092 Byron, George Gordon Byron, Baron, 1788-1824 Oeuvres complètes de lord Byron. Tome 1. etext26094 A. L. O. E., 1821-1893 Hebrew Heroes etext26199 etext26220 Stratton-Porter, Gene, 1863-1924 A Girl of the Limberlost etext26295 Thayer, William M. (William Makepeace), 1820-1898 The Printer Boy. etext26301 Austen, Jane, 1775-1817 Pride and Prejudice etext26304 Twain, Mark, 1835-1910 The Stolen White Elephant etext26318 Hayes, Alice M. The Horsewoman etext26373 Coolidge, Julian Lowell, 1873-1954 The Elements of non-Euclidean Geometry etext26375 Fleury de Chaboulon, Pierre Alexandre Édouard, baron, 1779-1835 Les Cent Jours (2/2) etext26413 Selections from early Middle English, 1130-1250 etext26418 Janin, Jules Gabriel, 1804-1874 L'âne mort etext26477 Tosi, Pier Francesco, ca. 1653-1732 Opinioni de' cantori antichi e moderni. English etext26481 Hampson, P. The Romance of Mathematics etext26519 Peterson, Margaret, 1883-1933 To Love etext26524 Smiles, Samuel, 1812-1904 The Huguenots in France etext26532 Sherman, Harold Morrow, 1898-1987 Over the Line etext26545 Martínez Ruiz, José, 1873-1967 Antonio Azorín etext26547 Canth, Minna, 1844-1897 Blindskär etext26587 Fletcher, J. S. (Joseph Smith), 1863-1935 The Paradise Mystery etext26596 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 Anna the Adventuress etext26606 Various Uncanny Tales etext26609 Haüy, Valentin, 1745-1822 Essai sur l'éducation des aveugles etext26622 Sepharial, 1864-1929 How to Read the Crystal etext26628 Arnold, Samuel James, 1774-1852 The Mirror of Taste, and Dramatic Censor etext26633 Sepharial, 1864-1929 Second Sight etext26691 Byers, J. W. Sanctification etext26694 Greinz, Rudolf, 1866-1942 Der heilige Bürokrazius etext26697 Hoover, Herbert, 1874-1964 Principles of Mining etext26719 Hapgood, Hutchins, 1868-1944 An Anarchist Woman etext26776 Quental, Antero de, 1842-1891 A philosophia da natureza dos naturalistas etext26779 O'Connor, William Douglas, 1832-1889 The Ghost etext26857 Bassett, Sara Ware, 1872-1968 Christopher and the Clockmakers etext26874 Toplady, Augustus, 1740-1778 Rock of Ages etext26963 Various The Atlantic Monthly, Volume 18, No. 109, November, 1866 etext26981 Bury, G. Wyman (George Wyman), 1874- Pan-Islam etext26987 Quick, Herbert, 1861-1925 The Brown Mouse etext27001 Sholem Aleichem, 1859-1916 Jewish Children etext27010 Various Notes and Queries, Number 213, November 26, 1853 etext27104 Su'anzhuren, 18th cent. 歸蓮夢 etext27169 Munro, Colin Fern Vale (Volume 1) etext27243 Cable, Mildred, 1878-1952 The Fulfilment of a Dream of Pastor Hsi's etext1711 Haggard, Henry Rider, 1856-1925 Child of Storm etext27250 Chesterton, G. K. (Gilbert Keith), 1874-1936 What I Saw in America etext27255 Vidal, Angelina, 1853-1917 O Marquez de Pombal á luz da Philosophia etext27266 Bates, Joseph, 1792-1872 The Seventh Day Sabbath, a Perpetual Sign etext27315 Aristophanes, 446? BC-385? BC Όρνιθες etext27391 Anonymous The Mouse and the Christmas Cake etext27402 Zuohuasanren 風流悟 etext27416 Various Barnavännen, 1905-01 etext27471 Bassett, Sara Ware, 1872-1968 The Wall Between etext27477 William Gaertner and Company Astronomical Instruments and Accessories etext27507 Anstey, F., 1856-1934 The Giant's Robe etext27526 Boyle, James, 1959- The Public Domain etext27546 Tömörkény, István, 1866-1917 Különféle magyarok meg egyéb népek etext27547 Treacher, W. H. (William Hood), Sir, 1849-1919 British Borneo etext27572 Nicklin, J. A. (John Arnold) Dickens-Land etext27587 Davis, William Stearns, 1877-1930 A Victor of Salamis etext27591 Hocking, Joseph, 1860-1937 The Birthright etext27630 Black, Edith Ferguson, 1857-1936 A Princess in Calico etext27664 Lamarck, Jean Baptiste Pierre Antoine de Monet de, 1744-1829 Zoölogische Philosophie etext27698 Roscher, Wilhelm, 1817-1894 System der volkswirthschaft. English etext27706 Forbes, F. A. (Frances Alice), 1869-1936 Life of St. Vincent de Paul etext27709 Howells, William Dean, 1837-1920 Five O'Clock Tea etext27740 Haslam, John, 1764-1844 A Letter to the Right Honorable the Lord Chancellor, on the Nature and Interpretation of Unsoundness of Mind, and Imbecility of Intellect etext27752 Davenport, John, 1789-1877 Aphrodisiacs and Anti-aphrodisiacs: Three Essays on the Powers of Reproduction etext27800 etext27810 Müller, F. Max (Friedrich Max), 1823-1900 Chips From A German Workshop, Vol. V. etext27812 Buchanan's Journal of Man, January 1888 etext27838 Duchess, 1855?-1897 A Bachelor's Dream etext27841 etext27842 Leith, C. K. (Charles Kenneth), 1875-1956 The Economic Aspect of Geology etext27859 Velde, Henry van de, 1863-1957 Amo etext27861 Macaulay, W. Hastings Kathay: A Cruise in the China Seas etext28002 Pérez Galdós, Benito, 1843-1920 Electra etext28021 etext28045 Hasse, Henry, 1913-1977 Walls of Acid etext28050 etext28112 etext28134 Various The Nursery, June 1877, Vol. XXI. No. 6 etext28205 Carlton, Henry Fisk Washington Crossing the Delaware etext28253 MacMillan, Cyrus, 1880-1953 McGill and its Story, 1821-1921 etext28280 Humboldt, Alexander von, 1769-1859 Reise in die Aequinoctial-Gegenden des neuen Continents. Band 3. etext28317 Treitschke, Heinrich von, 1834-1896 La Francia dal primo impero al 1871 etext28319 Haigh, Richard, 1895- Life in a Tank etext28347 Various Harper's Young People, February 10, 1880 etext28422 Vasari, Giorgio, 1511-1574 Lives of the most Eminent Painters Sculptors and Architects etext28479 Brownlie, John Hymns from the East etext28510 Forester, Thomas Rambles in the Islands of Corsica and Sardinia etext28518 Janifer, Laurence M., 1933-2002 Mex etext28534 Byron, George Gordon Byron, Baron, 1788-1824 Oeuvres complètes de lord Byron. Volume 6 etext28544 etext28579 Stead, Robert J. C., 1880-1959 The Homesteaders etext28583 Long, Frank Belknap, 1903-1994 The Calm Man etext28621 Ovid, 43 BC-18? The Metamorphoses of Publius Ovidus Naso in English blank verse Vols. I & II etext28632 Kayll, James Leslie Allan, 1873-1944 A Plea for the Criminal etext28679 Lucas, E. V. (Edward Verrall), 1868-1938 Forgotten Tales of Long Ago etext28680 Trowbridge, J. T. (John Townsend), 1827-1916 The Young Surveyor; etext28742 Memorials of Old London etext28752 Serviss, Garrett Putman, 1851-1929 Pleasures of the telescope etext28759 Mühlbach, L. (Luise), 1814-1873 Neiti Klairon etext28786 Jarro, 1849-1915 Il processo Bartelloni etext28845 Estes, Rufus, 1857- Good Things to Eat as Suggested by Rufus etext28846 Cory, David, 1872-1966 Little Jack Rabbit's Adventures etext9916 Spalding's Baseball Guide and Official League Book for 1895 etext28874 etext29020 Hutton, Laurence, 1843-1904 A Boy I Knew and Four Dogs etext29023 MacGregor, Mary Esther Miller, 1876-1961 Treasure Valley etext29032 Wang, Ji, -1796? 海國春秋 etext29094 Sue, Eugène, 1804-1857 Les mystères du peuple, Tome III etext29112 Saint-George, Henry, 1866-1917 The Bow, Its History, Manufacture and Use etext29169 etext29178 Holmes, Daniel Turner Literary Tours in The Highlands and Islands of Scotland etext29206 etext29228 Tyler, Royall, 1757-1826 The Contrast etext29374 Wallace, Dillon, 1863-1939 The Gaunt Gray Wolf etext29384 Endersby, Victor A., 1891-1988 Disowned etext29412 Calmet, Augustin, 1672-1757 Dissertations sur les apparitions des anges, des démons et des esprits. English etext29492 Herbert, Frank, 1920-1986 Old Rambling House etext29496 Christopher Columbus and His Monument Columbia etext29504 Leiber, Fritz, 1910-1992 What's He Doing in There? etext29506 Alarcón, Pedro Antonio de, 1833-1891 El sombrero de tres picos etext29548 Sheckley, Robert, 1928-2005 Warrior Race etext29587 Noe, Cotton, 1864-1953 The Loom of Life etext29665 Various Prairie Farmer, Vol. 56: No. 4, January 26, 1884 etext29673 Lipman, Frederick L. (Frederic Lockwood), 1866- Creating Capital etext29683 Raper, Eleanor The Little Girl Lost etext29718 Witte, Otto A. The Automobile Storage Battery etext29729 Southworth, Emma Dorothy Eliza Nevitte, 1819-1899 Victor's Triumph etext29780 Weierstrass, Karl, 1815-1897 Theorie der Abel'schen Functionen etext29807 etext29842 etext29866 Southworth, Emma Dorothy Eliza Nevitte, 1819-1899 Hidden Hand etext8923 Storm, Theodor, 1817-1888 Die Regentrude etext9036 Twain, Mark, 1835-1910 Tom Sawyer Abroad etext29879 Collins, William, 1721-1759 The Poetical Works of William Collins etext29948 Brown, Fredric, 1906-1972 Two Timer etext29960 etext29983 Various St. Nicholas Magazine for Boys and Girls, Vol. V, August, 1878, No 10. etext30078 Strindberg, August, 1849-1912 Hemsöborna etext30105 Various The Strand Magazine, Volume V, Issue 26, February 1893 etext30127 etext30159 Defoe, Daniel, 1661?-1731 The True-Born Englishman etext30187 Levinrew, Will, 1881- Death Points a Finger etext30191 Wilde, Oscar, 1854-1900 A Critic in Pall Mall etext30221 Various Birds, Illustrated by Color Photography, Vol. 1, No. 1 etext30238 Helps, Arthur, Sir, 1813-1875 The Claims of Labour etext30250 Murray, Gilbert, 1866-1957 Five Stages of Greek Religion etext30254 Anonymous The Romance of Lust etext30327 More, Henry, 1614-1687 Democritus Platonissans etext30337 Garrett, Randall, 1927-1987 Fifty Per Cent Prophet etext30432 Dickinson, G. Lowes (Goldsworthy Lowes), 1862-1932 A Modern Symposium etext30455 Saintsbury, George, 1845-1933 Essays in English Literature, 1780-1860 etext30463 Clark, Thomas M. (Thomas March), 1812-1903 John Whopper etext30507 Kahn, Otto Hermann, 1867-1934 Right Above Race etext30549 Robinson, Harry Perry, 1859-1930 The Twentieth Century American etext30575 Various Punch, or the London Charivari, Vol. CL, April 26, 1916 etext30583 Garrett, Randall, 1927-1987 The Asses of Balaam etext30590 Greville, Charles, 1794-1865 The Greville Memoirs etext30606 Trollope, Anthony, 1815-1882 The Landleaguers etext30607 Pridden, W. (William), 1810- Australia, its history and present condition etext30643 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson, Volume XV etext30658 Hesdörffer, Max, 1863- Kamerplanten etext30689 Anstey, F., 1856-1934 The Brass Bottle etext30702 Bourget, Paul, 1852-1935 Mensonges etext30711 Wilson's Tales of the Borders and of Scotland, Volume 2 etext30723 Turgenev, Ivan Sergeevich, 1818-1883 Fathers and Children etext30724 Viebig, Clara, 1860-1952 Absolution etext30767 Neville, Kris, 1925-1980 New Apples in the Garden etext30822 Parker, Ezra Knight Campaign of Battery D, First Rhode Island light artillery. etext30843 Freud, Sigmund, 1856-1939 Massenpsychologie und Ich-Analyse etext30903 Rizal, José, 1861-1896 El Filibusterismo etext30908 etext30949 Coste, E. de la Anselme Adorne etext30969 Marlow, Ralph The Big Five Motorcycle Boys on the Battle Line etext31010 Linnaeus, Carolus, 1707-1778 Species Plantarum etext31040 etext31042 Géruzez, Victor Eugène, 1840-1906 A travers Paris etext31061 Cajori, Florian A History of Mathematics etext31083 Hyne, Charles John Cutcliffe Wright, 1866-1944 The Recipe for Diamonds etext31110 Asquith, Margot, 1864-1945 My Impressions of America etext31162 Various The International Monthly, Volume 5, No. 3, March, 1852 etext31189 Crane, Stephen, 1871-1900 The Monster and Other Stories etext31220 Vaughan, Terry A. A New Subspecies of Bat (Myotis velifer) from Southeastern California and Arizona etext31269 Miller, Olive Thorne, 1831-1918 Upon The Tree-Tops etext31320 Richards, Laura Elizabeth Howe, 1850-1943 The Wooing of Calvin Parks etext31363 Morison, J. L. (John Lyle), 1875-1952 British Supremacy & Canadian Self-Government, 1839-1854 etext31370 Hazelton, George C., 1868-1921 Mistress Nell etext31402 Plato, 427? BC-347? BC Ευθύδημος etext31407 Delco-Remy Delco Manuals: Radio Model 633, Delcotron Generator etext31422 etext31465 Pérez Galdós, Benito, 1843-1920 Tormento etext31479 Adams, W. H. Davenport Celebrated Women Travellers of the Nineteenth Century etext31485 Nason, Frank Lewis, 1856-1928 The Blue Goose etext31489 Brame, Charlotte M., 1836-1884 A Mad Love etext31503 Persky, Serge Contemporary Russian Novelists etext31530 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 Geschichte von England seit der Thronbesteigung Jakob's des Zweiten. etext31533 Wranér, Henrik, 1853-1908 Sockerpullor och Pepparkorn etext31553 Haughton, Samuel University Education in Ireland etext31562 Psycharis, Ioannis, 1854-1929 Το Ταξείδι μου etext7435 Blackmore, R. D. (Richard Doddridge), 1825-1900 Springhaven : a Tale of the Great War etext7454 Yan, Zhitui, 531-591 顔氏家訓 — Volume 01 and 02 etext31567 Iffland, August Wilhelm, 1759-1814 The Lawyers, A Drama in Five Acts etext31610 Brinton, Daniel Garrison, 1837-1899 The Books of Chilan Balam, the Prophetic and Historic Records of the Mayas of Yucatan etext31636 Ginguené, Pierre-Louis Histoire littéraire d'Italie (2/9) etext31655 Raymond, Evelyn, 1843-1910 A Daughter of the Forest etext31713 Hammer-Purgstall, Joseph von Geschichte der Ilchane etext31730 Anderson, Sydney, 1927- Subspeciation in the Meadow Mouse, Microtus montanus, in Wyoming and Colorado etext31760 Various Why do we need a public library? etext31770 McElroy, John, 1846-1929 The Struggle for Missouri etext31854 Souris, Georgios, 1853-1919 Λόγοι Φιλιππικοί Θεοδώρου : Δεληγιάννη Απαγγελθέντες εντός και εκτός του Συνδερίου Εμμέτρως δε Διασκευασθέντες etext31939 Féval, Paul, 1817-1887 Le Bossu etext31955 Porter, Peter A., 1853-1925 Niagara etext32021 Wallace, Alfred Russel, 1823-1913 Island Life etext32022 Symonds, John Addington, 1840-1893 A Problem in Greek Ethics etext32025 Wallace, F. L. (Floyd L.), 1915-2004 Forget Me Nearly etext32052 Waldo, Fullerton Grenfell: Knight-Errant of the North etext32058 Torrey, Jesse American Slave Trade etext32098 Wister, Owen, 1860-1938 The Pentecost of Calamity etext32138 Loti, Pierre, 1850-1923 Vers Ispahan etext32143 Skupeldyckle, W.W. The Romantic Analogue etext32200 Yonge, Charlotte Mary, 1823-1901 Sowing and Sewing etext32229 Clarke, Jay High Man etext32238 Gilbert, Robert E., 1924-1993 A Thought For Tomorrow etext32268 Schneck, B. S. (Benjamin Shroder), 1806-1874 The Burning of Chambersburg, Pennsylvania etext32290 Anonymous A Letter to a Gentleman in the Country, from His Friend in London etext32291 etext32310 Raymond, Evelyn, 1843-1910 Dorothy at Oak Knowe etext32324 Leinster, Murray, 1896-1975 Sam, This is You etext32338 Hugo, Victor, 1802-1885 Toilers of the Sea etext7174 MacDonald, George, 1824-1905 The Marquis of Lossie etext32362 Vasari, Giorgio, 1511-1574 Lives of the Most Eminent Painters, Sculptors and Architects etext32374 Garis, Howard R. Dick Hamilton's Fortune etext32378 Garcia, Manuel Emídio O Marquez de Pombal etext32499 Raplee, Elizabeth Virgins To a Skull on My Bookshelf etext32511 Howe, Julia Ward, 1819-1910 Margaret Fuller (Marchesa Ossoli) etext32582 Shaver, Richard S. Of Stegner's Folly etext32647 Campos, Alfredo O Infante Navegador etext32659 Anonymous An Answer to a Scurrilous Pamplet [1693] etext32686 Enferd, Knut Day of the Druid etext12 Carroll, Lewis, 1832-1898 Through the Looking-Glass etext118 Electronic Frontier Foundation Big Dummy's Guide to the Internet etext123 Burroughs, Edgar Rice, 1875-1950 At the Earth's Core etext145 Eliot, George, 1819-1880 Middlemarch etext157 Webster, Jean, 1876-1916 Daddy-Long-Legs etext159 Wells, H. G. (Herbert George), 1866-1946 The Island of Doctor Moreau etext211 James, Henry, 1843-1916 The Aspern Papers etext241 Brown, William Wells, 1816?-1884 Clotelle; or, the Colored Heroine, a tale of the Southern States; or, the President's Daughter etext265 Kormáks saga. English etext341 McLaughlin, Marie L., 1842- Myths and Legends of the Sioux etext345 Stoker, Bram, 1847-1912 Dracula etext397 Milton, John, 1608-1674 L'Allegro, Il Penseroso, Comus, and Lycidas etext461 Le Gallienne, Richard, 1866-1947 Quest of the Golden Girl, a Romance etext484 Optic, Oliver, 1822-1897 Poor and Proud, or the Fortunes of Katy Redburn: a Story for Young Folks etext494 Conrad, Joseph, 1857-1924 To-morrow etext503 Lang, Andrew, 1844-1912 The Blue Fairy Book etext540 Lang, Andrew, 1844-1912 The Red Fairy Book etext571 United States. Central Intelligence Agency The 1995 CIA World Factbook etext581 Jenkins, Edward, 1838-1910 Ginx's Baby: his birth and other misfortunes; a satire etext607 Melanchthon, Philipp, 1497-1560 Die Augsburger Confession etext700 Dickens, Charles, 1812-1870 The Old Curiosity Shop etext719 etext733 Gibbon, Edward, 1737-1794 History of the Decline and Fall of the Roman Empire — Volume 3 etext747 etext748 Yates, Dornford, 1885-1960 The Brother of Daphne etext779 Marlowe, Christopher, 1564-1593 The Tragical History of Doctor Faustus etext817 Various The Jargon File, Version 4.0.0, 24 Jul 1996 etext922 Dickens, Charles, 1812-1870 Sunday under Three Heads etext955 Baum, L. Frank (Lyman Frank), 1856-1919 The Patchwork Girl of Oz etext967 Dickens, Charles, 1812-1870 Nicholas Nickleby etext990 Spinoza, Benedictus de, 1632-1677 Theologico-Political Treatise — Part 2 etext1006 Dante Alighieri, 1265-1321 Divine Comedy, Cary's Translation, Purgatory etext1017 Wilde, Oscar, 1854-1900 The Soul of Man under Socialism etext1018 Kingsley, Charles, 1819-1875 The Water-Babies etext1092 Cambrensis, Giraldus, 1146-1223 The Description of Wales etext1133 Shakespeare, William, 1564-1616 Cymbeline etext1166 The Second Book of Modern Verse; a selection from the work of contemporaneous American poets etext1179 Xenophon, 431 BC-350? BC On Revenues etext1183 Rohmer, Sax, 1883-1959 The Return of Dr. Fu-Manchu etext1227 Darwin, Charles, 1809-1882 The Expression of the Emotions in Man and Animals etext1243 Meynell, Alice Christiana Thompson, 1847-1922 Hearts of Controversy etext1301 Carlyle, Thomas, 1795-1881 The French Revolution etext1319 Scott, Walter Dill, 1869-1955 Increasing Human Efficiency in Business, a contribution to the psychology of business etext1350 Balzac, Honoré de, 1799-1850 The Country Doctor etext1429 Mansfield, Katherine, 1888-1923 The Garden Party and Other Stories etext1457 Sabatini, Rafael, 1875-1950 Mistress Wilding etext1525 Shakespeare, William, 1564-1616 The Phoenix and the Turtle etext1526 Shakespeare, William, 1564-1616 Twelfth Night etext1528 Shakespeare, William, 1564-1616 Troilus and Cressida etext1567 Eliot, T. S. (Thomas Stearns), 1888-1965 Poems etext1576 Benton, Joel, 1832-1911 The Life of Phineas T. Barnum etext1600 Plato, 427? BC-347? BC Symposium etext1661 Doyle, Arthur Conan, Sir, 1859-1930 The Adventures of Sherlock Holmes etext1684 Meredith, George, 1828-1909 The Egoist etext1710 Balzac, Honoré de, 1799-1850 La Grande Breteche etext1714 etext1735 Plato, 427? BC-347? BC Sophist etext1740 Bower, B. M., 1874-1940 The Flying U's Last Stand etext1749 Balzac, Honoré de, 1799-1850 Cousin Betty etext1807 Davis, Richard Harding, 1864-1916 The Lost House etext1863 Thackeray, William Makepeace, 1811-1863 From Cornhill to Grand Cairo etext1891 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 A Plea for Old Cap Collier etext1896 Weyman, Stanley John, 1855-1928 Under the Red Robe etext1930 France, Anatole, 1844-1924 Penguin Island etext1973 Lang, Andrew, 1844-1912 Tales of Troy: Ulysses, the sacker of cities etext2013 Crofts, Freeman Wills, 1879-1957 The Pit Prop Syndicate etext2036 Baker, Samuel White, Sir, 1821-1893 Eight Years' Wanderings in Ceylon etext2097 Doyle, Arthur Conan, Sir, 1859-1930 The Sign of the Four etext2163 Kipling, Rudyard, 1865-1936 The Bridge Builders etext2191 Ralphson, G. Harvey (George Harvey), 1879-1940 Boy Scouts in Mexico; or on Guard with Uncle Sam etext2234 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Sketches in Lavender, Blue and Green etext2248 Shakespeare, William, 1564-1616 The Winter's Tale etext2309 Galsworthy, John, 1867-1933 The Freelands etext2324 etext2361 Palmer, Alice Freeman, 1855-1902 Why Go to College? an address etext2387 Deland, Margaret Wade Campbell, 1857-1945 The Voice etext2473 Lincoln, Joseph Crosby, 1870-1944 Mary-'Gusta etext2568 Bentley, E. C. (Edmund Clerihew), 1875-1956 Trent's Last Case etext2572 Twain, Mark, 1835-1910 On the Decay of the Art of Lying etext2596 Galsworthy, John, 1867-1933 The Forsyte Saga, Volume III. etext2672 Warner, Charles Dudley, 1829-1900 The Complete Writings of Charles Dudley Warner — Volume 2 etext2709 Gorky, Maksim, 1868-1936 The Man Who Was Afraid etext2810 Plunkitt, George Washington, 1842-1924 Plunkitt of Tammany Hall: a series of very plain talks on very practical politics, delivered by ex-Senator George Washington Plunkitt, the Tammany philosopher, from his rostrum—the New York County court house bootblack stand; Recorded by William L. Riordon etext2902 Galsworthy, John, 1867-1933 Studies and Essays: Concerning Letters etext2916 Galsworthy, John, 1867-1933 The Foundations etext2978 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 28: Rome etext3000 Proust, Marcel, 1871-1922 A l'ombre des jeunes filles en fleurs — Troisième partie etext3180 Twain, Mark, 1835-1910 A Double Barrelled Detective Story etext3200 Twain, Mark, 1835-1910 The Entire Project Gutenberg Works of Mark Twain etext3210 Honig, Winfried Mr. Honey's Small Banking Dictionary etext3213 Honig, Winfried Mr. Honey's Beginner's Dictionary etext3242 Connor, Ralph, 1860-1937 The Doctor : a Tale of the Rockies etext3341 Sue, Eugène, 1804-1857 The Wandering Jew — Volume 03 etext3402 Howells, William Dean, 1837-1920 The Parlor Car etext3472 Wilson, Harry Leon, 1867-1939 Merton of the Movies etext3519 Human Genome Project Human Genome Project, Chromosome Number 19 etext3549 Cowley, Abraham, 1618-1667 Cowley's Essays etext3604 Stevens, Doris, 1892-1963 Jailed for Freedom etext3641 Hamilton, Cosmo, 1879-1942 Who Cares? a story of adolescence etext3652 Mackenzie, Alexander, 1833-1898 History of the Mackenzies, with genealogies of the principal families of the name etext3666 Mühlbach, L. (Luise), 1814-1873 Andreas Hofer etext3668 Baker, Samuel White, Sir, 1821-1893 The Albert N'Yanza, Great Basin of the Nile etext3717 Trollope, Anthony, 1815-1882 The Parson's Daughter of Oxney Colne etext3737 Churchill, Winston, 1871-1947 A Far Country — Volume 2 etext3777 Appleton, Victor [pseud.] Tom Swift and His Electric Rifle; or, Daring Adventures in Elephant Land etext3795 Alcott, Louisa May, 1832-1888 Under the Lilacs etext3804 Maupassant, Guy de, 1850-1893 Pierre and Jean etext5263 Garis, Lilian, 1873-1954 The Girl Scout Pioneers etext3814 Simpson, Evelyn Blantyre, 1856-1920 Robert Louis Stevenson etext3840 Marguerite, Queen, consort of Henry IV, King of France, 1553-1615 Memoirs of Marguerite de Valois — Volume 3 [Court memoir series] etext3868 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 09 etext3889 Campan, Jeanne Louise Henriette (Genet), 1752-1822 Memoirs of the Court of Marie Antoinette, Queen of France, Volume 6 etext3903 Rousseau, Jean-Jacques, 1712-1778 The Confessions of J. J. Rousseau — Volume 03 etext3937 Theuriet, André, 1833-1907 A Woodland Queen — Volume 3 etext4005 Carey, Rosa Nouchette, 1840-1909 Herb of Grace etext4058 Pater, Walter, 1839-1894 Marius the Epicurean — Volume 2 etext4059 Pater, Walter, 1839-1894 Miscellaneous Studies; a series of essays etext4164 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 42: March/April 1665-66 etext4321 Asquith, Margot, 1864-1945 Margot Asquith, an Autobiography - Two Volumes in One etext4329 Sturt, Charles, 1795-1869 Two Expeditions into the Interior of Southern Australia — Volume 2 etext4350 Bagehot, Walter, 1826-1877 Physics and Politics, or, Thoughts on the application of the principles of "natural selection" and "inheritance" to political society etext4393 Munroe, Kirk, 1850-1930 Wakulla: a story of adventure in Florida etext4516 Smith, Francis Hopkinson, 1838-1915 Peter: a novel of which he is not the hero etext4603 Hichens, Robert Smythe, 1864-1950 In the Wilderness etext4639 Davis, John Francis, 1859-1930 California Romantic and Resourceful etext4656 Fishburne, William Brett Checkmates for Four Pieces etext4678 Johnson, Samuel, 1709-1784 Johnson's Lives of the Poets — Volume 2 etext4685 Vaknin, Samuel, 1961- After the Rain : how the West lost the East etext4750 Mozart, Wolfgang Amadeus, 1756-1791 String Quartet No. 1 in G major, K. 80 etext4769 Yonge, Charlotte Mary, 1823-1901 Young Folks' History of England etext4835 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Complete (1574-84) etext4848 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1586c etext4857 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1588c etext4922 Mulford, Clarence Edward, 1883-1956 Bar-20 Days etext4940 Flower, Jessie Graham [pseud.], -1931 Grace Harlowe's Senior Year at High School etext4947 Norris, Kathleen Thompson, 1880-1966 Sisters etext4962 Conn, H. W. (Herbert William) The Story of Germ Life etext4985 Emerson, Alice B. Ruth Fielding of the Red Mill etext5004 Young, Clarence The Motor Boys on the Pacific etext5037 Hoover, Herbert, 1874-1964 State of the Union Address etext5058 Galsworthy, John, 1867-1933 Plays : Fourth Series etext5088 Dunn, Arthur William, 1868-1927 Community Civics and Rural Life etext5103 Patterson, J. G A Zola Dictionary; the Characters of the Rougon-Macquart Novels of Emile Zola; etext5128 Henty, G. A. (George Alfred), 1832-1902 The Young Carthaginian etext5184 Kalevala : the Epic Poem of Finland — Volume 01 etext5198 Crabbe, George, 1754-1832 The Library etext5228 Haggard, Henry Rider, 1856-1925 Ayesha, the Return of She etext5388 Churchill, Winston, 1871-1947 The Crisis — Volume 01 etext5406 Hudson, W. H. (William Henry), 1841-1922 Afoot in England etext5436 Longfellow, Henry Wadsworth, 1807-1882 Hyperion etext5453 Ebers, Georg, 1837-1898 An Egyptian Princess — Volume 04 etext5473 Ebers, Georg, 1837-1898 Cleopatra — Volume 01 etext5610 Harland, Henry, 1861-1905 The Cardinal's Snuff-Box etext5688 Twain, Mark, 1835-1910 The Innocents Abroad — Volume 01 etext5711 Zola, Émile, 1840-1902 Germinal etext5713 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 Tales of War etext5863 Grant, Ulysses S. (Ulysses Simpson), 1822-1885 The Memoirs of General Ulysses S. Grant, Part 4. etext5875 Stratemeyer, Edward, 1862-1930 The Rover Boys on the Ocean etext5958 Balzac, Honoré de, 1799-1850 The Physiology of Marriage, Part 3 etext5973 MacDonald, George, 1824-1905 Thomas Wingfold, Curate V1 etext5997 Stevenson, Sara Yorke, 1847-1921 Maximilian in Mexico etext6020 Kyne, Peter B. (Peter Bernard), 1880-1957 Cappy Ricks Retires etext6040 Stories by English Authors: Ireland etext6054 Jerrold, Douglas William, 1803-1857 Mrs. Caudle's Curtain Lectures etext6056 Harben, Will N. (William Nathaniel), 1858-1919 The Desired Woman etext6126 Quotations from Georg Ebers etext6171 De Quincey, Thomas, 1785-1859 Memorials and Other Papers — Complete etext6180 Parker, Gilbert, 1862-1932 Romany of the Snows, Continuation of "Pierre and His People", v1 etext6183 Parker, Gilbert, 1862-1932 Romany of the Snows, Continuation of "Pierre and His People", v4 etext6232 Parker, Gilbert, 1862-1932 The Battle of the Strong — Volume 3 etext6249 Parker, Gilbert, 1862-1932 The Right of Way — Complete etext6310 Walter, William W. The Pastor's Son etext6333 Winter, Irvah Lester Public Speaking etext6349 Library of Congress. Copyright Office Copyright Renewals 1954 etext6417 Hayes, Carlton J. H., 1882-1964 A Political and Social History of Modern Europe V.1. etext6467 Roosevelt, Theodore, 1858-1919 Letters to His Children etext6484 Colette, 1873-1954 Chéri etext6501 Diderot, Denis, 1713-1784 Supplement au Voyage de Bougainville etext6526 Callahan, Daniel Any Coincidence Is etext6531 etext6540 Amundsen, Roald, 1872-1928 The South Pole; an account of the Norwegian Antarctic expedition in the "Fram," 1910-12 — Volume 1 and Volume 2 etext6577 The Junior Classics — Volume 6 etext6597 Benét, William Rose, 1886-1950 Perpetual Light : a memorial etext6621 Yule, J. C. Poems of the Heart and Home etext6636 Ryder, Annie H Hold Up Your Heads, Girls! : Helps for Girls, in School and Out etext6641 Arndt, Ernst Moritz, 1769-1860 Märchen und Sagen etext6644 Raimund, Ferdinand, 1790-1836 Der Barometermacher auf der Zauberinsel etext6669 Booth, Catherine Mumford, 1829-1890 Godliness : being reports of a series of addresses delivered at James's Hall, London, W. during 1881 etext6681 Molière, 1622-1673 Sganarelle, or, the Self-Deceived Husband etext6745 Parloa, Maria, 1843-1909 Miss Parloa's New Cook Book etext6839 Lord, John, 1810-1894 The Old Roman World, : the Grandeur and Failure of Its Civilization. etext6927 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The White Feather etext7080 Bright, John, 1811-1889 Speeches on Questions of Public Policy, Volume 1 etext7092 Beethoven, Ludwig van, 1770-1827 String Quartet No. 07 in F major Opus 59 etext7099 FitzGibbon, Mary, 1851-1915 A Trip to Manitoba etext7109 Voltaire, 1694-1778 Candido, o El Optimismo etext7127 MacDonald, George, 1824-1905 Malcolm etext7155 Twain, Mark, 1835-1910 The Prince and the Pauper, Part 2. etext7186 Shakespeare, William, 1564-1616 Was ihr wollt etext7247 Twain, Mark, 1835-1910 A Connecticut Yankee in King Arthur's Court, Part 6. etext7295 Haviland, Laura S. A Woman's Life-Work — Labors and Experiences etext7304 Scott, Ernest, 1867-1939 The Life of Captain Matthew Flinders etext7401 Hudson, W. H. (William Henry), 1841-1922 A Crystal Age etext7411 Cheney, Sheldon An Art-Lovers Guide to the Exposition etext7427 Pittenger, William, 1840-1904 Toasts and Forms of Public Address for Those Who Wish to Say the Right Thing in the Right Way etext7437 Walton, O. F., Mrs., 1849-1939 A Peep Behind the Scenes etext7465 Otis, James, 1848-1912 Richard of Jamestown : a Story of the Virginia Colony etext7478 Otis, James, 1848-1912 Toby Tyler etext7571 Claretie, Jules, 1840-1913 Images from Claretie's Zilah etext7593 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 08 etext7618 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Pelham — Volume 04 etext9119 etext3775 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Napoleon Bonaparte etext7636 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Disowned — Volume 06 etext7740 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Parisians — Volume 04 etext7773 Shearin, K. Kay Diamond Dust etext7775 Moore, Thomas, 1779-1852 Memoirs of the Life of the Rt. Hon. Richard Brinsley Sheridan — Volume 02 etext7780 Johnson, Samuel, 1709-1784 Notes to Shakespeare — Volume 01: Comedies etext7781 Schiaparelli, G. V. (Giovanni Virginio), 1835-1910 La Vita Sul Pianeta Marte etext7802 Anderson, Robert Gordon Seven O'Clock Stories etext7864 The Mahabharata of Krishna-Dwaipayana Vyasa Translated into English Prose etext7890 Collins, Wilkie, 1824-1889 Blind Love etext7935 Ballad Book etext7952 Lubbock, John, Sir, 1834-1913 The Pleasures of Life etext7981 Grasser, Georg Synthetic Tannins etext7982 Hudson, W. H. (William Henry), 1841-1922 A Traveller in Little Things etext8055 Anonymous The Bible, King James version, Book 55: 2 Timothy etext8074 Coulanges, Fustel de, 1830-1889 La Cité Antique etext8081 James, Henry, 1843-1916 Louisa Pallant etext8131 Young, E. H. (Emily Hilda), 1880-1949 The Misses Mallett etext8138 Hudson, Stephen, 1868-1944 War-time Silhouettes etext8143 Hull, E. M. (Edith Maude), -1947 The Shadow of the East etext8167 Rabelais, François, 1483-1553 Gargantua and Pantagruel, Illustrated, Book 2 etext8185 Douglas, Norman, 1868-1952 Fountains in the Sand etext8194 Edwards, Owen Morgan, Sir, 1858-1920 Yr Hwiangerddi etext8197 Hope, Laurence, 1865-1904 India's Love Lyrics etext8232 Anonymous The World English Bible (WEB): Deuteronomy etext8251 Anonymous The World English Bible (WEB): Jeremiah etext8292 Anonymous The World English Bible (WEB): Jude etext8342 The Bible, Douay-Rheims, Book 42: Aggeus etext8485 Ditchfield, P. H. (Peter Hampson), 1854-1930 Books Fatal to Their Authors etext8519 Irving, Washington, 1783-1859 The Life and Voyages of Christopher Columbus (Volume II) etext8569 Malet, Lucas, 1852-1931 The Far Horizon etext8573 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Pausanias, the Spartan etext8750 Burroughs, Edgar Rice, 1875-1950 Warlord of Mars etext8766 Burroughs, Edgar Rice, 1875-1950 The Chessmen of Mars etext8844 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Titus etext8847 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, James etext8907 Zola, Émile, 1840-1902 Pot-bouille etext8915 Storm, Theodor, 1817-1888 Hinzelmeier etext8941 Lever, Charles James, 1806-1872 Lord Kilgobbin etext8980 Verne, Jules, 1828-1905 Robur the Conqueror etext9177 Anonymous The Royal Game of the Ombre etext9209 Hawthorne, Nathaniel, 1804-1864 The Haunted Mind (From "Twice Told Tales") etext9237 Hawthorne, Nathaniel, 1804-1864 A Bell's Biography etext9250 Hawthorne, Nathaniel, 1804-1864 A Book of Autographs etext9310 Schnitzler, Arthur, 1862-1931 Casanova's Homecoming etext9312 Barr, Robert, 1850-1912 From Whose Bourne etext9335 Gellert, Christian Fürchtegott, 1715-1769 Fabeln und Erzählungen etext9379 Barr, Robert, 1850-1912 A Woman Intervenes etext9406 Keitel, Adolph Government By the Brewers? etext9410 Wright, Harold Bell, 1872-1944 Helen of the Old House etext9483 Shorter, Dora Sigerson, 1866-1918 The Story and Song of Black Roderick etext9489 Stratton-Porter, Gene, 1863-1924 Michael O'Halloran etext9516 Poe, Edgar Allan, 1809-1849 The Works of Edgar Allan Poe, Volume 5 etext9528 Thackeray, William Makepeace, 1811-1863 The Fitz-Boodle Papers etext9534 Thackeray, William Makepeace, 1811-1863 Adventures of Major Gahagan etext9580 Whittier, John Greenleaf, 1807-1892 The Works of Whittier, Volume III (of VII) etext9615 Turgenev, Ivan Sergeevich, 1818-1883 The Diary of a Superfluous Man and Other Stories etext9623 Morgenstern, Christian, 1871-1914 Wir fanden einen Pfad etext9625 Hall, Jennie, 1875-1921 Buried Cities, Volume 1 etext9626 Hall, Jennie, 1875-1921 Buried Cities, Volume 2 etext9632 Meyer, Conrad Ferdinand, 1825-1898 Die Richterin etext9721 Dickens, Charles, 1812-1870 Master Humphrey's Clock etext9728 Dickens, Charles, 1812-1870 Pictures from Italy etext9752 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Night and Morning, Volume 3 etext9753 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Night and Morning, Volume 4 etext9857 Wallace, Dillon, 1863-1939 The Long Labrador Trail etext9915 Grimke, Angelina Emily, 1805-1879 An Appeal to the Christian Women of the South etext9974 Williams, Valentine, 1883-1946 The Yellow Streak etext9979 Dobson, Austin, 1840-1921 De Libris: Prose and Verse etext9981 Wilson, Harry Leon, 1867-1939 The Spenders etext10003 Waddington, Mary Alsop King, -1923 My First Years as a Frenchwoman, 1876-1879 etext10015 Various Punchinello, Volume 1, No. 19, August 6, 1870 etext1071 etext2844 Thackeray, William Makepeace, 1811-1863 The Fatal Boots etext10043 Ladue, Joseph Francis, 1855-1900 Klondyke Nuggets etext10081 Hayes, Clair W. (Clair Wallace), 1887- The Boy Allies at Jutland etext10086 Otis, James, 1848-1912 The Minute Boys of the Mohawk Valley etext10104 Various Punchinello, Volume 2, No. 32, November 5, 1870 etext10135 The Great English Short-Story Writers, Volume 1 etext10150 Stoker, Bram, 1847-1912 Dracula's Guest etext10160 France, Anatole, 1844-1924 Pierre Nozière etext10178 Beethoven, Ludwig van, 1770-1827 Piano Sonata No. 14 in C sharp minor "Moonlight" etext10186 Kennedy, Frank Schultz at the Paris Exposition etext10193 Jones, Ada Backyard Conversation Between Mrs. Reilly and Mrs. Finnegan etext10225 Various Their Crimes etext10341 The Great Events by Famous Historians, Volume 21 etext10366 Gandhi, Mahatma, 1869-1948 Freedom's Battle etext10368 Stockton, Frank Richard, 1834-1902 The Vizier of the Two-Horned Alexander etext10387 Musick, John R. (John Roy), 1849-1901 The Real America in Romance, Volume 6; a Century Too Soon (A Story etext10405 Five, Louisiana Clarinet Squawk etext10449 Greene, Homer, 1853-1940 Burnham Breaker etext10464 Various A Child's Anti-Slavery Book etext10543 Clough, Ethlyn T. Norwegian Life etext10554 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Right Ho, Jeeves etext10559 Stevenson, Robert Louis, 1850-1894 Ballads etext10581 Doyle, Arthur Conan, Sir, 1859-1930 Uncle Bernac etext10582 Bradley, Alice For Luncheon and Supper Guests etext10624 Blackwood, Algernon, 1869-1951 Three John Silence Stories etext10634 Caldecott, Randolph, 1846-1886 The Queen of Hearts, and Sing a Song for Sixpence etext10708 De Quincey, Thomas, 1785-1859 Miscellaneous Essays etext10753 Rushkoff, Douglas Open Source Democracy etext2489 Melville, Herman, 1819-1891 Moby Dick: or, the White Whale etext10763 It Can Be Done etext10765 Brayman, James O. Thrilling Adventures by Land and Sea etext10798 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 Paths of Glory etext10828 Livius, Titus Roman History, Books I-III etext10852 Webster, Angus Duncan Hardy Ornamental Flowering Trees and Shrubs etext10875 Jacobs, W. W. (William Wymark), 1863-1943 At Sunwich Port, Part 5. etext10919 Richardson, James D. (James Daniel), 1843-1914 A Compilation of the Messages and Papers of the Presidents etext10950 Various The Mirror of Literature, Amusement, and Instruction etext10993 The World's Greatest Books — Volume 05 — Fiction etext11042 Gide, André, 1869-1951 Isabelle etext11079 Nevinson, Henry W., 1859-1941 Essays in Rebellion etext11089 Woodson, Carter Godwin, 1875-1950 The Education of the Negro Prior to 1861 etext11206 Cominelli, Alfredo Compendio di Chimica Fisiologica etext11226 Poston, Charles D. (Charles Debrille), 1825-1902 Building a State in Apache Land etext11308 Anonymous The Book of Enterprise and Adventure etext11309 Bangs, John Kendrick, 1862-1922 The Booming of Acre Hill etext11322 Various The Mirror of Literature, Amusement, and Instruction etext11347 Various The Mirror of Literature, Amusement, and Instruction etext11401 Various The Mirror of Literature, Amusement, and Instruction etext11438 Blackwood, Algernon, 1869-1951 The Willows etext11491 Various Punch, or the London Charivari, Volume 153, October 31, 1917 etext11500 Muls, Jozef, 1882-1961 De val van Antwerpen (october 1914) etext11505 Chesterton, G. K. (Gilbert Keith), 1874-1936 All Things Considered etext11613 Various The Mirror of Literature, Amusement, and Instruction etext11746 Roosevelt, Theodore, 1858-1919 Through the Brazilian Wilderness etext2465 Mérimée, Prosper, 1803-1870 Carmen etext1875 Peattie, Elia Wilkinson, 1862-1935 Painted Windows etext11760 The World's Great Sermons, Volume 10 etext11785 Human Genome Project Chromosome Number 11 etext11795 Human Genome Project Chromosome Number 21 etext11820 Library of Congress. Copyright Office U.S. Copyright Renewals, 1959 July - December etext11835 Library of Congress. Copyright Office U.S. Copyright Renewals, 1967 January - June etext11854 Library of Congress. Copyright Office U.S. Copyright Renewals, 1976 July - December etext11860 Sewell, Anna, 1820-1878 Black Beauty, Young Folks' Edition etext11865 Various The Mirror of Literature, Amusement, and Instruction etext11886 Various The Mirror of Literature, Amusement, and Instruction etext11891 Kivi, Aleksis, 1834-1872 Karkurit etext11918 Weyman, Stanley John, 1855-1928 The Castle Inn etext11929 Various Notes and Queries, Number 15, February 9, 1850 etext11949 Master Tales of Mystery, Volume 3 etext12028 Freeman, R. Austin (Richard Austin), 1862-1943 The Uttermost Farthing etext12036 Richardson, Benjamin Ward, 1828-1896 Hygeia, a City of Health etext12083 Farrar, F. W. (Frederic William), 1831-1903 Eric etext12127 Jacobs, W. W. (William Wymark), 1863-1943 Captain Rogers etext12162 Williams, William Klapp The Communes of Lombardy from the VI. to the X. Century etext12183 Kinzie, Juliette Augusta Magill, 1806-1870 Wau-bun etext12233 Henderson, G. F. R., 1854-1903 Stonewall Jackson and the American Civil War etext12321 Eddy, Mary Baker, 1821-1910 Rudimental Divine Science etext12355 Iyenaga, Toyokichi The Constitutional Development of Japan 1863-1881 etext12361 Aguilar, Grace, 1816-1847 The Mother's Recompense, Volume 1 etext12386 Holley, Marietta, 1836-1926 Samantha at the St. Louis Exposition etext12411 Reeves, William Pember, 1857-1932 The Long White Cloud etext12414 Barbusse, Henri, 1873-1935 The Inferno etext12471 Trollope, Thomas Adolphus, 1810-1892 What I Remember, Volume 2 etext12492 Sorley, William Ritchie, 1855-1935 Recent Tendencies in Ethics etext12547 Dante Alighieri, 1265-1321 Jumalainen näytelmä: Paratiisi etext12612 Canth, Minna, 1844-1897 Lyhyitä kertomuksia etext12619 Various The Mirror of Literature, Amusement, and Instruction etext12621 Lang, Andrew, 1844-1912 The Book of Dreams and Ghosts etext12624 Barry, J. G. H. Our Lady Saint Mary etext12646 Bordeaux, Henry, 1870-1963 La Maison etext12704 etext12770 Magoffin, Ralph Van Deman, 1874-1942 A Study of the Topography and Municipal History of Praeneste etext12860 Various Punch, or the London Charivari, Volume 100, January 3, 1891 etext12875 Tucker, T. G. (Thomas George), 1859-1946 Life in the Roman World of Nero and St. Paul etext12883 Carey, Joseph By the Golden Gate etext12905 Various Punch, or the London Charivari, Volume 99, December 13, 1890 etext12960 Various Lippincott's Magazine of Popular Literature and Science etext12982 Various International Weekly Miscellany — Volume 1, No. 3, July 15, 1850 etext13077 Jones, J. B. (John Beauchamp), 1810-1866 Wild Western Scenes etext13093 As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1878-02/05) etext13108 Various The Mirror of Literature, Amusement, and Instruction etext13129 Leino, Eino, 1878-1926 Helkavirsiä I-II etext13201 Moore, George (George Augustus), 1852-1933 Evelyn Innes etext13247 Béland, Docteur Henri Mille et un jours en prison à Berlin etext13260 Balzac, Honoré de, 1799-1850 Droll Stories — Complete etext13287 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels — Volume 07 etext13289 Gratacap, L. P. The Certainty of a Future Life in Mars etext13309 Boyden, Wallace C. (Wallace Clarke), 1858- A First Book in Algebra etext13348 Various Punch, or the London Charivari, Volume 100, May 16, 1891 etext13359 Various The Mirror Of Literature, Amusement, And Instruction etext13381 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels — Volume 14 etext13390 Various Punch, or the London Charivari, Volume 100, May 30, 1891 etext13407 Atkinson, William Walker, 1862-1932 A Series of Lessons in Gnani Yoga etext13446 Various Punch, or the London Charivari, Volume 101, July 18, 1891 etext13451 Hauff, Wilhelm, 1802-1827 Der Mann im Mond etext13580 Aho, Juhani, 1861-1921 Helsinkiin etext13596 Conscience, Hendrik, 1812-1883 Bavo en Lieveken etext13626 Dumas père, Alexandre, 1802-1870 The Forty-Five Guardsmen etext13653 Sand, George, 1804-1876 Elle et lui etext13687 Tolentino, Aurelio, 1867-1915 Dakilang Asal etext13716 Munro, John, 1849-1930 A Trip to Venus etext13784 Dunne, Finley Peter, 1867-1936 Mr. Dooley: In the Hearts of His Countrymen etext13829 Various The Mirror of Literature, Amusement, and Instruction etext67 Coombs, Norman, 1932- The Black Experience in America etext141 Austen, Jane, 1775-1817 Mansfield Park etext285 Hyne, Charles John Cutcliffe Wright, 1866-1944 The Lost Continent etext295 Wharton, Edith, 1862-1937 The Early Short Fiction of Edith Wharton — Part 1 etext317 Drake, Joseph Rodman, 1795-1820 The Culprit Fay and Other Poems etext340 Eastman, Charles Alexander, 1858-1939 The Soul of the Indian etext344 Stevenson, Robert Louis, 1850-1894 Merry Men etext353 McCrae, John, 1872-1918 In Flanders Fields and Other Poems etext415 Borrow, George Henry, 1803-1881 The Bible in Spain; or, the journeys, adventures, and imprisonments of an Englishman, in an attempt to circulate the Scriptures in the Peninsula etext488 MacClure, Victor, 1887-1963 She Stands Accused etext490 Calamity Jane, 1852-1903 Life and Adventures of Calamity Jane etext510 Le Fanu, Joseph Sheridan, 1814-1873 The Purcell Papers — Volume 2 etext539 Tuckwell, William, 1829-1919 Biographical Study of A.W. Kinglake etext13834 Allais, Alphonse, 1854-1905 À se tordre etext13896 Manning, Anne, 1807-1879 Jacques Bonneval etext13902 Anonymous Pisa etext13904 Ohnet, Georges, 1848-1918 Un antiguo rencor etext13917 Sand, George, 1804-1876 La Daniella, Vol. I. etext13919 Aho, Juhani, 1861-1921 Muistelmia ja matkakuvia etext13942 Fuller, O. E. (Osgood Eaton), 1835-1900 Brave Men and Women etext13947 Dumas père, Alexandre, 1802-1870 Le vicomte de Bragelonne, Tome I. etext14040 Crowley, Aleister, 1875-1947 Household Gods etext14106 Sinclair, May, 1863-1946 The Belfry etext14122 Various Punch, or the London Charivari, Volume 101, December 5, 1891 etext14128 Spyri, Johanna, 1827-1901 Toni, the Little Woodcarver etext14135 Various Punch, or the London Charivari, Volume 152, January 10, 1917 etext14155 Flaubert, Gustave, 1821-1880 Madame Bovary etext14178 Uildriks, Frederike J. van, 1854-1919 Omhoog in het luchtruim! Praatje over het luchtvaartvraagstuk etext14184 Lovechild, Miss The Ladder to Learning etext14220 Potter, Beatrix, 1866-1943 The Tale of the Flopsy Bunnies etext14306 Molière, 1622-1673 Väkinäinen naiminen etext14377 Wolley, Hannah The Queen-like Closet or Rich Cabinet etext14465 Gregory, Lady, 1852-1932 Gods and Fighting Men etext14499 Hopkins, Edward Washburn, 1857-1932 The Religions of India etext14523 Corvus, M. Sister Carmen etext14530 Various Lippincott's Magazine, August, 1885 etext14547 Mynyddog, 1833-1877 Gwaith Mynyddog. Cyfrol II etext14575 Cable, George Washington, 1844-1925 Bylow Hill etext14598 MacGrath, Harold, 1871-1932 The Goose Girl etext14609 Vatsyayana Kamasutra $l French etext14633 Adams, Francis Alexandre, 1874- The Transgressors etext14675 Smolnikar, Andrew B., 1795-1869 Secret Enemies of True Republicanism etext14750 Cilley, Jonathan Prince, 1835-1920 Bowdoin Boys in Labrador etext14829 Various Our Holidays etext14868 Potter, Beatrix, 1866-1943 The Tailor of Gloucester etext14984 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels - Volume 05 etext14985 Dechmann, Louis Valere Aude etext15003 Wood, William Charles Henry, 1864-1947 Draft of a Plan for Beginning Animal Sanctuaries in Labrador etext15008 Nušić, Branislav, 1864-1938 Свет etext15040 McGuffey, William Holmes, 1800-1873 McGuffey's Fifth Eclectic Reader etext15067 Huysmans, J.-K. (Joris-Karl), 1848-1907 The Cathedral etext15110 Wilkinson, Spenser, 1853-1937 Lessons of the War etext15112 Verlaine, Paul, 1844-1896 Oeuvres complètes de Paul Verlaine, Vol. 1 etext15164 Folk Tales Every Child Should Know etext15246 Runciman, Walter, 1847-1937 The Tragedy of St. Helena etext15282 Garis, Howard Roger, 1873-1962 Uncle Wiggily's Travels etext15315 Beale, Anne Gladys, the Reaper etext15333 Turner, Nat The Confessions of Nat Turner etext15334 Aguilar, José Nieto Mindanao: Su Historia y Geografía etext15359 Du Bois, W. E. B. (William Edward Burghardt), 1868-1963 The Negro etext15388 Sand, George, 1804-1876 Leone Leoni etext15440 Kilpi, Volter, 1874-1939 Kansallista itsetutkistelua etext15445 The Philippine Islands, 1493-1898 — Volume 14 of 55 etext15448 etext15474 The Mahabharata of Krishna-Dwaipayana Vyasa, Volume 1 etext15481 Various Chambers's Edinburgh Journal, No. 423 etext15510 Cobbett, William, 1763-1835 Advice to Young Men etext15562 Jacobs, Caroline E. (Caroline Elliott Hoogs), 1835-1916 The S. W. F. Club etext15564 The Philippine Islands, 1493-1898 — Volume 18 of 55 etext15636 Pickering, Edward Charles, 1846-1919 The Future of Astronomy etext15646 Verne, Jules, 1828-1905 Nord contre sud etext15715 Baden-Powell of Gilwell, Robert Stephenson Smyth Baden-Powell, Baron, 1857-1941 My Adventures as a Spy etext15717 Bennett, Arnold, 1867-1931 Books and Persons etext15718 Bleyer, Willard Grosvenor How To Write Special Feature Articles etext15731 Bülow, Waldemar, 1864-1934 Allvarsord om allting och ingenting etext15756 Glaubrecht, O., 1807-1859 Der Kalendermann vom Veitsberg etext15772 Machiavelli, Niccolò, 1469-1527 Machiavelli, Volume I etext15888 Lockett, Hattie Greene, 1880-1962 The Unwritten Literature of the Hopi etext15921 Raisin, Jacob S. The Haskalah Movement in Russia etext15937 etext16015 Carleton, William, 1794-1869 Phil Purcel, The Pig-Driver; The Geography Of An Irish Oath; The Lianhan Shee etext16120 Reijonen, Juho, 1855-1924 Kertoelmia ja kuvauksia etext16128 Shakespeare, William, 1564-1616 Le Jour des Rois etext16148 Fitzmaurice-Kelly, James Fray Luis de León etext16180 Macmillan, Hugh Roman Mosaics etext16217 Black, William, 1841-1898 Prince Fortunatus etext16222 Barr, Amelia Edith Huddleston, 1831-1919 Winter Evening Tales etext16296 Hobart-Hampden, Augustus Charles, 1822-1886 Sketches From My Life etext16298 Morris, Charles, 1833-1922 Historic Tales, Vol. 1 (of 15) etext16299 Gally, Henry, 1696-1769 A Critical Essay on Characteristic-Writings etext16367 Myers, Sarah A. (Sarah Ann), 1800-1876 Watch—Work—Wait etext16395 Kramsu, Kaarlo, 1855-1895 Runoelmia etext16404 Various Notes and Queries, Number 61, December 28, 1850 etext16452 Homer, 750? BC-650? BC The Iliad of Homer etext16467 Rolland, Romain, 1866-1944 Musicians of To-Day etext16497 Pedler, Margaret, -1948 The Moon out of Reach etext16547 Lozo, Fredric Sequential Problem Solving etext16564 Plautus, Titus Maccius, 254 BC-184 BC Amphitryo, Asinaria, Aulularia, Bacchides, Captivi etext16721 Doctorow, Cory, 1971- A Place so Foreign etext16729 Huxley, Thomas Henry, 1825-1895 Lay Sermons, Addresses and Reviews etext16736 Mabie, Hamilton Wright, 1845-1916 Books and Culture etext16773 Various Scientific American Supplement, No. 443, June 28, 1884 etext16785 Hickey, Emily Our Catholic Heritage in English Literature of Pre-Conquest Days etext16794 Leino, Kasimir, 1866-1919 Elämästä etext16874 Assollant, Alfred, 1827-1886 Claude et Juliette etext16947 Powell, John Wesley, 1834-1902 Wyandot Government: A Short Study of Tribal Society etext17012 Crake, A. D. (Augustine David), 1836-1890 The House of Walderne etext17055 Durham, Victor G. The Submarine Boys' Trial Trip etext17071 Anonymous Folk-Lore and Legends etext17090 Rockefeller, John D. (John Davison), 1839-1937 Random Reminiscences of Men and Events etext17105 Gaboriau, Émile, 1832-1873 Les cotillons célèbres I etext17147 Leibniz, Gottfried Wilhelm, Freiherr von, 1646-1716 Theodicy etext17169 Huch, Ricarda Octavia, 1864-1947 Der Fall Deruga etext17182 Wagner, Belle M. Within the Temple of Isis etext17185 Bingley, Thomas Stories about the Instinct of Animals, Their Characters, and Habits etext17208 Perrault, Charles, 1628-1703 The Tales of Mother Goose etext17211 etext17215 Menpes, Mortimer Luddington, 1855-1938 Rembrandt etext17254 Newell, Peter, 1862-1924 The Slant Book etext17301 Ford, Sewell, 1868-1946 On With Torchy etext17304 Brehm, Alfred Edmund, 1829-1884 Het Leven der Dieren etext17306 Engels, Friedrich, 1820-1895 The Condition of the Working-Class in England in 1844 etext17356 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 Nobody's Man etext17398 Doyle, Arthur Conan, Sir, 1859-1930 The Cabman's Story etext17555 Fortis, Alberto, 1741-1803 Sur les moeurs et usages des Morlaques, appellés Montenegrins etext17678 Jewel, John, 1522-1571 The Apology of the Church of England etext17768 Various The Hundred Best English Poems etext17774 Ruskin, John, 1819-1900 The Poetry of Architecture etext17797 Austen-Leigh, James Edward, 1798-1874 Memoir of Jane Austen etext17846 Suttner, Bertha von, 1843-1914 Waffen nieder etext17882 Davy, Humphry, Sir, 1778-1829 Consolations in Travel etext17918 One Young Man etext17937 Butler, Ellis Parker, 1869-1937 The Thin Santa Claus etext17951 Tolstoy, Leo, graf, 1828-1910 La guerre et la paix, Tome III etext17962 Gil, Augusto César Ferreira, 1873-1929 Luar de Janeiro etext17974 Balmes, Jaime Luciano, 1810-1848 Filosofía Fundamental, Tomo III etext18020 etext18052 Colter, Hattie E. Medoline Selwyn's Work etext18060 Silberrad, Una Lucy, 1872-1955 The Good Comrade etext18061 Christine, de Pisan, 1364?-1431? Oeuvres poétiques Tome 1 etext18100 Allinson, Anne C. E. (Anne Crosby Emery), 1871-1932 Roads from Rome etext18103 "Contemptible", by "Casualty" etext18137 Piper, H. Beam, 1904-1964 Little Fuzzy etext18155 Brooke, L. Leslie (Leonard Leslie), 1862-1940 The Story of the Three Little Pigs etext18185 Chambers, Robert W. (Robert William), 1865-1933 The Danger Mark etext18212 Addison, Julia de Wolf Gibbs, 1866- Arts and Crafts in the Middle Ages etext18248 Machar, Agnes Maule, 1837-1927 Lucy Raymond etext18283 Elliott, Walter, 1842-1928 Life of Father Hecker etext18445 Murger, Henry, 1822-1861 Bohemians of the Latin Quarter etext18534 Birt, William Radcliff, 1804-1881 The Hurricane Guide etext18558 Anonymous The Good Shepherd etext7237 Lucas, E. V. (Edward Verrall), 1868-1938 Roving East and Roving West etext7309 Anonymous Business Correspondence etext7326 Gough, George W. The Yeoman Adventurer etext18594 Marshall, John, 1755-1835 The Life of George Washington, Vol. 4 etext18633 Parrish, Randall, 1858-1923 My Lady of Doubt etext18644 Dell, Ethel M. (Ethel May), 1881-1939 The Swindler and Other Stories etext18691 Warner, Susan, 1819-1885 Queechy, Volume II etext18724 Goncourt, Edmond de, 1822-1896 Hokousaï etext18820 Various The Continental Monthly, Vol. 5, No. 4, April, 1864 etext18839 Belloc, Hilaire, 1870-1953 Avril etext18847 Crawford, F. Marion (Francis Marion), 1854-1909 The White Sister etext18858 Rivera, Jose Maria, 1882- Esperanza etext18965 Marcin, Max, 1879-1948 The Substitute Prisoner etext18970 Mundy, Talbot, 1879-1940 Caves of Terror etext19018 Ibsen, Henrik, 1828-1906 Henrik Ibsen's Prose Dramas Vol III etext19043 Jepson, Edgar, 1863-1938 The Terrible Twins etext19059 De Marchi, Emilio, 1851-1901 Col fuoco non si scherza etext19077 Hill, Janet McKenzie, 1852-1933 Salads, Sandwiches and Chafing-Dish Dainties etext19160 Becker, Bernard H., 1833- Disturbed Ireland etext19187 Marmette, Joseph, 1844-1895 Chevalier de Mornac etext19196 Fitch, George, 1877-1915 Homeburg Memories etext19198 Grose, Howard B. (Howard Benjamin), 1851-1939 Aliens or Americans? etext19209 Orton, James, 1830-1877 The Andes and the Amazon etext19232 Staël, Madame de (Anne-Louise-Germaine), 1766-1817 De l'influence des passions sur le bonheur des individus et des nations etext19256 Abbott, Jacob, 1803-1879 Georgie etext19302 Matthew, William Diller, 1871-1930 Dinosaurs etext19307 Mundy, Talbot, 1879-1940 The Lion of Petra etext19336 Porter, Eleanor H. (Eleanor Hodgman), 1868-1920 The Tangled Threads etext19339 Kennedy, Edmund John, -1915 With The Immortal Seventh Division etext19357 Victor, Frances Fuller, 1826-1902 The New Penelope and Other Stories and Poems etext19418 Albee, John, 1833-1915 Confessions of Boyhood etext19447 Pike, Albert, 1809-1891 Morals and Dogma of the Ancient and Accepted Scottish Rite of Freemasonry etext19456 Bourdon, Henri De ramp van Valparaiso etext19596 Bebel, August, 1840-1913 Charles Fourier etext19616 Aesop, 620 BC-563 BC Aesop's Fables - Volume 01 etext19767 Shorter, Clement King, 1857-1926 George Borrow and His Circle etext19777 Thomas, Cyrus, 1825-1910 Aids to the Study of the Maya Codices etext19804 Stephen, Geo. A. (George Arthur), 1880-1934 Three Centuries of a City Library etext19808 Balbo, Cesare, 1789-1853 Della storia d'Italia, v. 1-2 etext19826 Hare, Walter Ben, 1880-1950 The White Christmas and other Merry Christmas Plays etext19864 Veen, H. G. van der Clipsrymkes etext19909 Good Cheer Stories Every Child Should Know etext19914 Arbuthnot, F. F., 1833-1901 Arabic Authors etext19938 Wilson, John, 1785-1854 Recreations of Christopher North, Volume 2 etext20025 Stimson, Frederic Jesup, 1855-1943 Pirate Gold etext20032 Northern Nut Growers Report of the Proceedings at the Twenty-First Annual Meeting etext20061 Oriani, Alfredo, 1852-1909 La disfatta etext20085 James, Henry, 1843-1916 The Tragic Muse etext20108 Savary, Anne-Jean-Marie-René, duc de Rovigo, 1774-1833 Mémoires du duc de Rovigo, pour servir à l'histoire de l'empereur Napoléon etext20119 Fleming, Oliver Ambrotox and Limping Dick etext20122 Dumas père, Alexandre, 1802-1870 The Queen's Necklace etext20146 Strohm, Rufus T. (Rufus Tracy), 1877- Engineering Bulletin No 1: Boiler and Furnace Testing etext20174 Doyle, Edward, 1854- Freedom, Truth and Beauty etext20195 Fletcher, F. Morley (Frank Morley), 1866-1949 Wood-Block Printing etext20225 Howells, William Dean, 1837-1920 The Story of a Play etext20237 Cook, Dutton, 1829-1883 Art in England etext20239 Vitruvius Pollio The Ten Books on Architecture etext20318 Hubbard, Elbert, 1856-1915 Little Journeys to the Homes of the Great - Volume 14 etext20331 Verne, Jules, 1828-1905 Het Geheimzinnige Eiland etext20350 Various The Atlantic Monthly, Volume 14, No. 83, September, 1864 etext20356 etext20368 Various Notes and Queries, Number 191, June 25, 1853 etext20383 Ward, Humphry, Mrs., 1851-1920 Marriage à la mode etext20415 Michelet, Jules, 1798-1874 Histoire de France etext20416 etext20435 Mavrogordato, John The World in Chains etext20447 Ingersoll, Robert Green, 1833-1899 The Works of Robert G. Ingersoll, Volume VIII. etext20483 Manucy, Albert Artillery Through the Ages etext20497 Pinkerton, Allan, 1819-1884 Bucholz and the Detectives etext20503 United States. Dept. of the Interior. The Nation's River etext20542 Brehm, Alfred Edmund, 1829-1884 Het Leven der Dieren etext20547 Mulets, Lenore Elizabeth Stories of Birds etext20596 Wilde, Oscar, 1854-1900 The Ballad of Reading Gaol etext20635 Myrand, Ernest, 1854-1921 Une fête de Noël sous Jacques Cartier etext20669 etext20753 Finlay, Roger Thompson The Wonder Island Boys: The Tribesmen etext20760 Jääskeläinen, Kaapro, 1862-1932 Iloisia juttuja II etext20761 Poe, Edgar Allan, 1809-1849 Histoires extraordinaires etext20767 Moir, D. M. (David Macbeth), 1798-1851 The Life of Mansie Wauch etext20797 Various Chambers's Edinburgh Journal, No. 445 etext20831 Various Short Stories of Various Types etext20835 Moodie, Susanna, 1803-1885 The Monctons: A Novel, Volume I etext20906 Various The Journal of Negro History, Volume 3, 1918 etext20911 Dillon, Mary The Rose of Old St. Louis etext20929 Hewlett, Maurice Henry, 1861-1923 Little Novels of Italy etext20951 Craandijk, J. Met een der stoomers van de Maatschappij Nederland naar Genua etext20985 Warren, George A. The Banner Boy Scouts on a Tour, etext21103 Vaizey, George de Horne, Mrs., 1857-1917 Sisters Three etext21118 Vaizey, George de Horne, Mrs., 1857-1917 Etheldreda the Ready etext21201 Graham, Maria Journal of a Voyage to Brazil etext21254 McCutcheon, John T., 1870-1949 In Africa etext21284 Anonymous, A Merchant - Six Years in the Prisons of England etext21316 Fenn, George Manville, 1831-1909 The Adventures of Don Lavington etext21325 Elliott, James Sands Outlines of Greek and Roman Medicine etext21331 Morier, James The Adventures of Hajji Baba of Ispahan etext21363 Fenn, George Manville, 1831-1909 Quicksilver etext21390 Kingston, William Henry Giles, 1814-1880 The Golden Grasshopper etext21502 Babson, Roger W. Fundamentals of Prosperity etext21513 Paltock, Robert, 1697-1767 Life And Adventures Of Peter Wilkins, Vol. I. (of II.) etext21544 Bibaud, Maximilien Biographie des Sagamos illustres de l'Amérique Septentrionale (1848) etext21592 Boucherie, Anthony The Art of Making Whiskey etext21618 Janvier, Thomas A. (Thomas Allibone), 1849-1913 The Aztec Treasure-House etext21634 Love, Nat The Life and Adventures of Nat Love etext21678 Eells, Elsie Spicer, 1880- Tales of Giants from Brazil etext21702 Ballantyne, R. M. (Robert Michael), 1825-1894 Shifting Winds etext21731 Ballantyne, R. M. (Robert Michael), 1825-1894 Fighting the Whales etext21753 Ballantyne, R. M. (Robert Michael), 1825-1894 The Norsemen in the West etext21806 Cox, John Coming of Age: 1939-1946 etext21874 Maurice, Furnley, 1881-1942 The Bay and Padie Book etext21876 Baum, L. Frank (Lyman Frank), 1856-1919 Mary Louise and the Liberty Girls etext21880 Loubat, J. F. (Joseph Florimond), 1831-1927 The Medallic History of the United States of America 1776-1876 etext21896 Marsy, Arthur de Nicolas Foucquet, surintendant des finances etext21902 Various The Atlantic Monthly, Volume 17, No. 103, May, 1866 etext21941 Holmes, Oliver Wendell, 1809-1894 Grandmother's Story of Bunker Hill Battle etext21974 Martin, Stuart Eens Engelschman's eerste indrukken van New-York etext21994 Lang, Andrew, 1844-1912 Prince Ricardo of Pantouflia etext22081 etext22122 Ahlqvist, August, 1826-1889 Elias Lönnrot etext22167 Gellert, Christian Fürchtegott, 1715-1769 C. F. Gellerts Sämmtliche Schriften etext22218 etext22234 Alcott, Louisa May, 1832-1888 Aunt Jo's Scrap-Bag, Vol. 5 etext22411 Leblanc, Georgette, 1869-1941 The Choice of Life etext22415 Hawes, Stephen, -1523 The Example of Vertu etext22423 Thomas, Edward, 1878-1917 Poems etext22460 Various New York Times Current History; The European War, Vol 2, No. 5, August, 1915 etext22472 Fort, Charles The Book of the Damned etext22522 Daudet, Alphonse, 1840-1897 Femmes d'artistes. English etext22621 Various The New England Magazine, Volume 1, No. 1, January 1886 etext22632 Pascoais, Teixeira de, 1877-1952 Á ventura etext22646 Ellis, Edward Sylvester, 1840-1916 The Hunters of the Ozark etext22676 Andrews, Elisha Benjamin, 1844-1917 History of the United States, Volume 4 etext22732 Thomas, Edward, 1878-1917 Last Poems etext22763 Garrett, Randall, 1927-1987 Suite Mentale etext22793 Upton, George P. (George Putnam), 1834-1919 The Standard Oratorios etext22824 Löns, Hermann, 1866-1914 Der Wehrwolf etext22866 Nourse, Alan Edward, 1928-1992 An Ounce of Cure etext22922 Various The Posy Ring etext22947 Abbott, Eleanor Hallowell, 1872-1958 Peace On Earth, Good-Will To Dogs etext22960 Gilmore, James R. Among the Pines etext23054 Erckmann-Chatrian The Dean's Watch etext23083 Bosboom-Toussaint, A. L. G. (Anna Louisa Geertruida), 1812-1886 Majoor Frans etext23105 Pascoais, Teixeira de, 1877-1952 Elegias etext23140 Reid, Mayne, 1818-1883 The Death Shot etext23155 McConnel, John Ludlum, 1826-1862 Western Characters etext23158 Vigée-Lebrun, Louise-Elisabeth, 1755-1842 Souvenirs de Madame Louise-Élisabeth Vigée-Lebrun, Tome troisième etext23212 Various Notes and Queries, Number 72, March 15, 1851 etext23303 Anonymous Cinderella etext23320 Best, Harry, 1880- The Deaf etext23357 Aldrich, Thomas Bailey, 1836-1907 Miss Mehetabel's Son etext23449 Leacock, Stephen, 1869-1944 Behind the Beyond etext23516 Page, Thomas Nelson, 1853-1922 Bred In The Bone etext23526 Junqueiro, Abílio Manuel Guerra, 1850-1923 A Velhice do Padre Eterno etext23549 Murfree, Mary Noailles, 1850-1922 Wolf's Head etext23618 Figuier, Louis, 1819-1894 Gutenberg etext23635 Woodward, Ashbel, 1804-1885 Wampum etext23652 Anonymous The Entertaining History of Jobson & Nell etext23659 Crane, Frank, 1861-1928 21 etext23670 Stamatov, G. P. (Georgi Porfirievich), 1869-1942 Nuntempaj Rakontoj etext23678 Matthews, Brander, 1852-1929 Tales of Fantasy and Fact etext23722 Chaucer, Geoffrey, 1343?-1400 The Canterbury Tales etext23731 Weinbaum, Stanley Grauman, 1902-1935 A Martian Odyssey etext23768 Fisher, Dorothy Canfield, 1879-1958 The Squirrel-Cage etext23784 Malet, Lucas, 1852-1931 The History of Sir Richard Calmady etext23797 Sergeant, Adeline, 1851-1904 A True Friend etext23800 Hughes, Rupert, 1872-1956 Contemporary American Composers etext23911 Zuoqiu, Ming 國語 etext23916 etext23955 Ritchie, Lily Munsell Chicken Little Jane etext23978 Schopenhauer, Arthur, 1788-1860 Über die Weiber etext24008 Brehm, Alfred Edmund, 1829-1884 Het Leven der Dieren etext24009 Brehm, Alfred Edmund, 1829-1884 Het Leven der Dieren etext24042 Lu, Xun, 1881-1936 徬徨 etext24098 金剛般若波羅蜜經 etext24185 Unknown China Ancient Times etext24200 Stevenson, Burton Egbert, 1872-1962 American Men of Mind etext24226 Sima, Qian, 135? BC-86 BC 史記 etext24286 Wiggin, Kate Douglas Smith, 1856-1923 The Birds' Christmas Carol etext24324 Various Chatterbox, 1906 etext24396 King, Knowles The Wesleyan Methodist Pulpit in Malvern etext24405 Newbolt, Henry John, Sir, 1862-1938 Poems: New and Old etext24418 Wicks, Robert The Quantum Jump etext24440 Maclise, Joseph Surgical Anatomy etext24472 Goodwin, T. A. (Thomas Aiken), 1818-1906 The Heroic Women of Early Indiana Methodism: An Address Delivered Before the Indiana Methodist Historical Society etext24482 Montgomery, Frances Trego, 1858-1925 Zip, the Adventures of a Frisky Fox Terrier etext24518 Mackay, Charles, 1814-1889 Memoirs of Extraordinary Popular Delusions and the Madness of Crowds etext24532 Sylvester, Charles Herbert Journeys Through Bookland, Vol. 8 etext24572 Richthofen, Manfred, Freiherr von, 1892-1918 Der rote Kampfflieger etext24574 Newman, John Henry, 1801-1890 Loss and Gain etext24586 Ryerson, Egerton, 1803-1882 The Story of My Life etext24620 Sousa, Eduardo de José Estevão etext24637 Tennant, John A. Bromide Printing and Enlarging etext24645 Brazil, Angela, 1868-1947 A harum-scarum schoolgirl etext24651 Yonge, Charlotte Mary, 1823-1901 Old Times at Otterbourne etext24659 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Hortense etext24686 Müller, F. Max (Friedrich Max), 1823-1900 Chips From A German Workshop - Volume I etext24705 Coursey, O. W. (Oscar William), 1873- The Woman with a Stone Heart etext24759 Burbidge, Edward The Kingdom of Heaven; What is it? etext24778 Unknown The National Nursery Book etext24817 Weyr, Emil, 1848-1894 Ueber die Geometrie der alten Aegypter. etext24827 Richards, Laura Elizabeth Howe, 1850-1943 Rita etext24841 Richmond, Mary Ellen, 1861-1928 Friendly Visiting among the Poor etext24842 Swinton, Ernest Dunlop, 1868-1951 The Defence of Duffer's Drift etext24847 Deus, João de, 1830-1896 Ramo de Flores etext24863 Pushkin, Aleksandr Sergeevich, 1799-1837 Kapteenin tytär etext24938 Various The Nursery, July 1873, Vol. XIV. No. 1 etext24954 Becke, Louis, 1855-1913 "Pig-Headed" Sailor Men etext25026 Marshall, Emma, 1830-1899 Bristol Bells etext25043 Anthony, Wilder Hidden Gold etext25046 Willison, Marjory MacMurchy, Lady, -1938 The Canadian Girl at Work etext25085 United States. Army. American Expeditionary Forces The Stars and Stripes etext25096 Herbert, Henry William, 1807-1858 The Roman Traitor, Vol. 2 etext25117 Burne, C. R. N. (Charles Richard Newdigate) With the Naval Brigade in Natal (1899-1900) etext25162 Wang, Shizhen, 1634-1711 池北偶談 etext25274 Abbott, Jacob, 1803-1879 Rollo at Work etext25295 Douglass, Ellsworth Pharaoh's Broker etext25300 Anonymous The Causes of the Rebellion in Ireland Disclosed etext25306 Neill, Alexander Sutherland, 1883-1973 A Dominie in Doubt etext25313 Mascarenhas, Miguel J. T. Um conto portuguez: episodio da guerra civil: a Maria da Fonte etext25334 Ellis, Edward Sylvester, 1840-1916 Deerfoot in The Mountains etext25377 Li, Ruzhen, ca. 1763-ca. 1830 鏡花緣 etext25515 Buysse, Cyriël, 1859-1932 De roman van den schaatsenrijder etext25626 Garis, Lilian, 1873-1954 The Girl Scouts at Bellaire etext25655 Unknown The Skating Party and Other Stories etext25683 Pearson, George The Escape of a Princess Pat etext25686 Iraq Study Group (U.S.) The Iraq Study Group Report etext25878 Gates, William, 1863-1940 Commentary Upon the Maya-Tzental Perez Codex etext25929 James I, King of England, 1566-1625 Daemonologie. etext25962 World's War Events, Vol. I etext26018 Browne, Frances Granny's Wonderful Chair etext26023 Oppenheim, L. (Lassa), 1858-1919 The League of Nations and its Problems etext26033 Goforth, Rosalind, 1864- How I Know God Answers Prayer etext26039 Macleod, Norman, 1812-1872 The Gold Thread etext26061 Hendryx, James B. (James Beardsley), 1880-1963 The Gold Girl etext26069 Stovall, Pleasant A., 1857-1935 Robert Toombs etext26073 Ovid, 43 BC-18? The Metamorphoses of Ovid etext26075 Alger, Horatio, 1832-1899 The Erie Train Boy etext26096 Anonymous Arabian nights. Selections. Finnish etext26098 Milne, A. A. (Alan Alexander), 1882-1956 Happy Days etext26144 etext26153 Doyle, Arthur Conan, Sir, 1859-1930 The Last of the Legions and Other Tales of Long Ago etext26166 Murri, Romolo, 1870-1944 Il partito radicale e il radicalismo italiano etext26187 Worthington, Elizabeth Strong The Gentle Art of Cooking Wives etext26202 Tagore, Rabindranath, 1861-1941 Sadhana, the Realisation of Life etext26224 Shakespeare, William, 1564-1616 King Lear etext26244 Garland, Hamlin, 1860-1940 Cavanaugh: Forest Ranger etext26261 Balzac, Honoré de, 1799-1850 La femme de trente ans. German etext26266 Newell, Peter, 1862-1924 The Rocket Book etext26290 Wells, H. G. (Herbert George), 1866-1946 War of the Worlds etext26339 Clara Cupology etext26340 Basilius Valentinus Of Natural and Supernatural Things etext26363 Bertrand, Joseph, 1822-1900 Arago et sa vie scientifique etext26377 Various New York Times Current History; The European War, Vol 2, No. 4, July, 1915 etext26391 Cody, H. A. (Hiram Alfred), 1872-1948 The Unknown Wrestler etext26397 Whiton, James Morris, 1833-1920 Miracles and Supernatural Religion etext26404 About, Edmond, 1828-1885 La nariz de un notario etext26414 Thomson, John Stuart, 1869-1950 Fil and Filippa etext26460 Jacobs, Joseph, 1854-1916 English Fairy Tales etext26462 Wurdz, Gideon, 1875- The Foolish Dictionary etext26483 Cremer, Jacobus Jan, 1827-1880 Betuwsche novellen, en Een reisgezelschap etext26490 Worsfold, W. Basil (William Basil), 1858-1939 Lord Milner's Work in South Africa etext26557 Cushing, Charles Phelps, 1884- If You Don't Write Fiction etext26571 Merrill, Stuart, 1863-1915 Petits Poèmes d'Automne etext26573 Thoreau, Henry David, 1817-1862 On the Duty of Civil Disobedience etext26638 Poore, Henry Rankin, 1859-1940 Pictorial Composition and the Critical Judgment of Pictures etext26646 The Book of Romance etext26659 James, William, 1842-1910 The Will to Believe : and Other Essays in Popular Philosophy etext26663 Tolstoy, Leo, graf, 1828-1910 Fruits of Culture etext26712 Anonymous Bulletin de Lille, 1916.08 etext26720 Fusil, Louise, 1774-1848 Souvenirs d'une actrice (2/3) etext26742 Pansy, 1841-1930 The Chautauqua Girls At Home etext26763 Shakespeare, William, 1564-1616 Henri VI (1/3) etext26783 Browne, A. K. The Story of the Kearsarge and Alabama etext26786 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Pompeijin viimeiset päivät etext26791 Ermeline etext26836 Warren, John Collins, 1778-1856 Cases of Organic Diseases of the Heart etext26848 Macedo, José Agostinho de, 1761-1831 Newton: Poema etext26944 Cory, David, 1872-1966 The Magic Soap Bubble etext26995 Cory, Charles B. (Charles Barney), 1857-1921 Montezuma's Castle and Other Weird Tales etext26997 Zhang, Zhuo, ca. 660-ca. 740 朝野僉載 etext27064 Picón, Jacinto Octavio, 1852-1923 Dulce y sabrosa etext27152 Worsfold, W. Basil (William Basil), 1858-1939 A Visit to Java etext27160 Walter, James Conway Records of Woodhall Spa and Neighbourhood etext27166 Lu, Xun, 1881-1936 吶喊 etext27171 Yang, Jingchang, 18th/19th cent. 鬼谷四友志 etext27223 Coolidge, Susan, 1835-1905 Eyebright etext27245 Roper, Dora C. C. L. (Dora Cathrine Cristine Liebel), 1873- Food for the Traveler etext27296 Boylesve, René, 1867-1926 La Becquée etext27307 Mitchell, John Ames, 1845-1918 The Last American etext27329 Dongshanyunzhongdaoren 唐鍾馗平鬼傳 etext27341 Various Mother Earth, Vol. 1 No. 4, June 1906 etext27346 Unknown Grandmother Puss, or, The grateful mouse etext27370 Eddy, Mary Baker, 1821-1910 Poems etext27373 Moodie, Susanna, 1803-1885 Flora Lyndsay etext27380 Thiers, Adolphe, 1797-1877 Histoire du Consulat et de l'Empire, (Vol. 1 / 20) etext27398 Zhuang, Chuo, 12th cent. 雞肋編 etext27444 Silverberg, Robert, 1935- Starman's Quest etext27543 Armando, A. Effeitos do Hypnotismo etext27639 Bowdich, Mrs. New Vegetarian Dishes etext27687 Collins, Hubert E. (Hubert Edwin), 1872-1932 Steam Turbines etext27690 Malot, Hector, 1830-1907 Nobody's Girl etext27766 Champney, Elizabeth W. (Elizabeth Williams), 1850-1922 Romance of Roman Villas etext27770 Drayton, Michael, 1563-1631 The Battaile of Agincourt etext27807 Marmontel, Jean François, 1723-1799 Mémoires de Marmontel (3 of 3) etext27843 Sue, Eugène, 1804-1857 Les mystères du peuple, tome I etext27860 Dawson, A. J. (Alec John), 1872-1952 The Message etext27949 Warner, Susan, 1819-1885 Daisy etext28004 James, Henry, 1843-1916 A Little Tour of France etext28052 Roe, Alfred S. (Alfred Seelye), 1844-1917 John Brown: A Retrospect etext28055 Ficalho, Francisco Manuel de Melo, Conde de, 1837-1903 Memorias sobre a influencia dos descobrimentos portuguezes no conhecimento das plantas etext28107 Vardon, Harry, 1870-1937 The Complete Golfer etext28177 Doane, Rennie Wilbur, 1871- Insects and Diseases etext28230 Roederer, P.-L. (Pierre-Louis), 1754-1835 Conséquences du système de cour établi sous François 1er etext28278 Hobhouse, L. T. (Leonard Trelawny), 1864-1929 Liberalism etext28388 Darvall, Joseph The Wreck on the Andamans etext28470 Various Punch, or the London Charivari, Vol. 147, November 4, 1914 etext28493 Fanny, Aunt, 1822-1894 Baby Nightcaps etext28498 Various The Speaker, No. 5: Volume II, Issue 1 etext28507 Macduff, John R. (John Ross), 1818-1895 The Mind of Jesus etext28580 Conger, Emily Bronson An Ohio Woman in the Philippines etext28584 Callet, Auguste, 1812-1883 Enfer. Portuguese etext28603 Diderot, Denis, 1713-1784 Les deux amis de Bourbonne etext28626 Aristotle, 384 BC-322 BC Ηθικά Νικομάχεια, Τόμος Πρώτος etext28637 Oliphant, Mrs. (Margaret), 1828-1897 The Marriage of Elinor etext28705 Wright, Sewell Peaslee, 1897-1970 The God in the Box etext28708 etext28739 Liebig, Justus, Freiherr von, 1803-1873 Familiar Letters on Chemistry etext28824 Borrow, George Henry, 1803-1881 The Mermaid's Prophecy etext28830 Borrow, George Henry, 1803-1881 The Songs of Ranild etext28864 etext28941 MacDonald, George, 1824-1905 The Princess and the Goblin etext28951 Pettis, George H., 1834- Frontier service during the rebellion etext28966 Blanchard, Amy Ella, 1856-1926 A Dear Little Girl at School etext29011 Aristotle, 384 BC-322 BC Ηθικά Νικομάχεια, Τόμος Δεύτερος etext29014 Cané, Miguel, 1851-1905 En viaje (1881-1882) etext29073 Dos Passos, John, 1896-1970 Rosinante to the Road Again etext29090 Coleridge, Samuel Taylor, 1772-1834 The Complete Poetical Works of Samuel Taylor Coleridge etext29115 Various Harper's Young People, August 31, 1880 etext29128 Maniates, Belle Kanaris David Dunne etext29177 Williamson, Jack, 1908-2006 The Pygmy Planet etext29211 Bonczar, Thomas P. Prevalence of Imprisonment in the U.S. Population, 1974-2001 etext29246 Various The International Monthly, Volume 3, No. 2, May, 1851 etext29257 Rihani, Ameen Fares, 1876-1940 The Book of Khalid etext29271 Bone, Jesse F. (Jesse Franklin), 1916-1986 The Issahar Artifacts etext29315 Boomerang, pseud. Australia Revenged etext29408 Vincent, Harl, 1893-1968 Wanderer of Infinity etext29444 Dolbear, A. E. (Amos Emerson), 1837-1910 The Machinery of the Universe etext29452 James, Henry, 1843-1916 The Wings of the Dove, Volume 1 of 2 etext29468 etext29478 Mandeville, Bernard, 1670-1733? A Letter to Dion etext29511 Sudermann, Hermann, 1857-1928 El molino silencioso; Las bodas de Yolanda etext29516 Various The Atlantic Monthly, Volume 14, No. 86, December, 1864 etext29569 Unknown The Mysterious Murder of Pearl Bryan etext29613 Boigne, Louise-Eléonore-Charlotte-Adélaide d'Osmond, comtesse de, 1781-1866 Récits d'une tante (Vol. 1 de 4) etext29616 Stoddard, William Osborn, 1835-1925 Two Arrows etext29621 Osbourne, Lloyd, 1868-1947 Wild Justice: Stories of the South Seas etext29664 Various Notes and Queries, Number 218, December 31, 1853 etext29671 Vance, Louis Joseph, 1879-1933 Nobody etext29689 Blakman, John Henry the Sixth etext29713 Geddie, John, 1848-1937 The Balladists etext29752 Barr, Amelia Edith Huddleston, 1831-1919 An Orkney Maid etext29785 Dickson, Leonard E. (Leonard Eugene), 1874-1954 First Course in the Theory of Equations etext29836 Thucydides, 455? BC-395 BC Πελοποννησιακός Πόλεμος, Τόμος τέταρτος etext29857 Cherbuliez, Victor, 1829-1899 Jacquine Vanesse etext29858 Various Blackwoods Edinburgh Magazine, Volume 59, No. 365, March, 1846 etext29859 Stratemeyer, Edward, 1862-1930 Dave Porter At Bear Camp etext29863 A. L. O. E., 1821-1893 The Rambles of a Rat etext29865 Abbott, Jane, 1881- Highacres etext29918 Lemaître, Jules, 1853-1914 Les Contemporains, Quatrième Série etext29934 Battison, Edwin A. The Auburndale Watch Company etext29937 Dumas fils, Alexandre, 1824-1895 Les Femmes qui tuent et les Femmes qui votent etext29973 DeCelles, Alfred D. (Alfred Duclos), 1843-1925 The 'Patriotes' of '37 etext29976 Burton, Russell Weak on Square Roots etext30013 Marmont, Auguste Frédéric Louis Viesse de, duc de Raguse, 1774-1852 Mémoires du maréchal Marmont, duc de Raguse (3/9) etext30069 Chagas, Manuel Pinheiro, 1842-1895 Bom-senso e bom-gosto etext30111 Stephens, Ann S. (Ann Sophia), 1810-1886 A Noble Woman etext30121 Lambert, Edward The Art of Confectionary etext30207 Gardener, Helen H. (Helen Hamilton), 1853-1925 Men, Women, and Gods etext30219 Luce, A. A. (Arthur Aston), 1882-1977 Monophysitism Past and Present etext30220 Patrick, James Evangelists of Art etext30226 Renard, Jules, 1864-1910 Coquecigrues etext30284 Wertenbaker, Thomas Jefferson, 1879-1966 Virginia under the Stuarts 1607-1688 etext30290 Heath, Sidney, 1872- Our Homeland Churches and How to Study Them etext30359 Silva, Luiz Augusto Rebello da, 1822-1871 Contos e Lendas etext30361 Heiner, Alvin The Stowaway etext30365 Sienkiewicz, Henryk, 1846-1916 In Desert and Wilderness etext30389 Thomas, W. H. Griffith (William Henry Griffith), 1861-1924 The Prayers of St. Paul etext30445 Lucas, E. V. (Edward Verrall), 1868-1938 The Flamp, The Ameliorator, and The Schoolboy's Apprentice etext30490 etext30491 De Vet, Charles V. (Charles Vincent), 1911-1997 Vital Ingredient etext30508 etext30603 Thiers, Adolphe, 1797-1877 Histoire du Consulat et de l'Empire, (Vol. 3 / 20) etext30634 Vaughan, Herbert M. (Herbert Millingchamp), 1870-1948 The Naples Riviera etext30639 Reynolds, Mack, 1917-1983 Border, Breed Nor Birth etext30756 Ruskin, John, 1819-1900 The Stones of Venice, Volume III (of 3) etext30758 Brown, William Montgomery, 1855-1937 Communism and Christianism etext30775 Lavoisier, Antoine, 1743-1794 Elements of Chemistry, etext30787 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 Dictionnaire raisonné de l'architecture française du XIe au XVIe siècle (7/9) etext30790 Shakespeare, William, 1564-1616 Kuningas Richard Toinen etext30810 Finnemore, John, 1863-1915 The Wolf Patrol etext30852 Baum, L. Frank (Lyman Frank), 1856-1919 The Tin Woodman of Oz etext30858 Freitas, A. Ferreira de Os Litteratos em Lisboa etext30950 Kay, Ross The Go Ahead Boys and the Treasure Cave etext30989 Chapman, Arthur Mystery Ranch etext31036 Fielding, Henry, 1707-1754 The Lovers Assistant, or, New Art of Love etext31087 Jones, John Beauchamp A Rebel War Clerk's Diary at the Confederate States Capital etext31129 Conscience, Hendrik, 1812-1883 Der Löwe von Flandern etext31178 Garrison, William Lloyd, 1805-1879 Thoughts on African Colonization etext31183 Hind, Arthur Mayger, 1880-1957 Rembrandt, With a Complete List of His Etchings etext31201 Lang, Andrew, 1844-1912 The Brown Fairy Book etext31275 Holbach, Paul Henri Thiry, baron d', 1723-1789 Letters to Eugenia etext31291 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. XXII (of 25) etext31457 Beck, James M. (James Montgomery), 1861-1936 The Evidence in the Case etext31518 Brinton, Davis Trusia etext31523 Holden, Fox B. The Women-Stealers of Thrayx etext31627 Hull, Edward Volcanoes: Past and Present etext31659 Ford, Sewell, 1868-1946 Side-stepping with Shorty etext31693 Pereira, A. Marques O Padroado Portuguez na China etext31698 Saintsbury, George, 1845-1933 A History of Nineteenth Century Literature (1780-1895) etext31728 Watson, Robert, 1882-1948 My Brave and Gallant Gentleman etext31750 Various Lippincott's Magazine of Popular Literature and Science, Volume 20. July, 1877. etext31753 Huet, Conrad Busken Lidewyde etext31789 Latane, John Holladay, 1869-1932 The United States and Latin America etext31797 Shakespeare, William, 1564-1616 Hamlet. Greek etext31815 Wallace, F. L. (Floyd L.), 1915-2004 Student Body etext31837 Cornelius, M. A. Little Wolf etext31841 Marks, Winston K., 1915-1979 The Water Eater etext31871 Various The Voice of Science in Nineteenth-Century Literature etext31874 Field, Eugene, 1850-1895 Second Book of Verse etext31899 Lane, Franklin K. Conservation Through Engineering etext31910 Shipp, John Memoirs of the Extraordinary Military Career of John Shipp etext31920 Sellars, Roy Wood, 1880-1973 The Next Step in Religion etext31921 McKee, Lanier The Land of Nome etext31949 Tracy, Louis, 1863-1928 The Bartlett Mystery etext31983 Sue, Eugène, 1804-1857 Les mystères du peuple, Tome IV etext32029 Bates, Harry, 1900-1981 Seed of the Arctic Ice etext32090 Garis, Howard R. The Curlytops Snowed In etext32097 Various Encyclopaedia Britannica, 11th Edition, Volume 7, Slice 3 etext32135 Barr, Amelia Edith Huddleston, 1831-1919 Maids Wives and Bachelors etext32177 Shortall, Katherine A "Y Girl in France etext32218 Witte, Henrick Beknopte handleiding voor eigenaars van kleine tuinen etext32282 Vogel, Robert M. Elevator Systems of the Eiffel Tower, 1889 etext32283 Anonymous Notes on a Tour Through the Western part of The State of New York etext32294 Various Encyclopaedia Britannica, 11th Edition, Volume 7, Slice 5 etext32332 Belloc, Hilaire, 1870-1953 Waterloo etext32357 Alcott, Louisa May, 1832-1888 Lulu's Library, Volume II etext32410 Dickson, Gordon Rupert No Shield from the Dead etext32417 Rhoades, Nina, 1863- The Girl from Arizona etext32463 Unknown The Justice and Necessity of Taxing the American Colonies, Demonstrated etext32464 Fish, Simon A Supplication for the Beggars etext32532 Masefield, John, 1878-1967 King Cole etext32571 Andersen, H. C. (Hans Christian), 1805-1875 Hans Andersen's Fairy Tales etext32576 George, Walter Lionel, 1882-1926 A Novelist on Novels etext32642 Smeaton, William Henry Oliphant, 1856-1914 Allan Ramsay etext32670 South, Clark The Time Mirror etext32691 etext32706 Smith, E. E. (Edward Elmer), 1890-1965 Triplanetary etext1 United States United States Declaration of Independence etext6 Henry, Patrick, 1736-1799 Give Me Liberty or Give Me Death etext105 Austen, Jane, 1775-1817 Persuasion etext126 Doyle, Arthur Conan, Sir, 1859-1930 The Poison Belt etext129 etext130 Chesterton, G. K. (Gilbert Keith), 1874-1936 Orthodoxy etext144 Woolf, Virginia, 1882-1941 The Voyage Out etext201 Abbott, Edwin Abbott, 1838-1926 Flatland: a romance of many dimensions (Illustrated) etext213 Paterson, A. B. (Andrew Barton), 1864-1941 The Man from Snowy River etext215 London, Jack, 1876-1916 The Call of the Wild etext238 Webster, Jean, 1876-1916 Dear Enemy etext284 Wharton, Edith, 1862-1937 House of Mirth etext335 Davis, Rebecca Harding, 1831-1910 Frances Waldeaux etext376 Defoe, Daniel, 1661?-1731 A Journal of the Plague Year, written by a citizen who continued all the while in London etext418 Luther, Martin, 1483-1546 A Treatise on Good Works etext425 Stevenson, Robert Louis, 1850-1894 Familiar Studies of Men and Books etext435 Houdini, Harry, 1874-1926 The Miracle Mongers, an Exposé etext465 White, Stewart Edward, 1873-1946 The Mountains etext547 Gaboriau, Émile, 1832-1873 Baron Trigault's Vengeance etext565 Borrow, George Henry, 1803-1881 The Zincali: an account of the gypsies of Spain etext587 Marquis, Don, 1878-1937 Danny's Own Story etext629 etext730 Dickens, Charles, 1812-1870 Oliver Twist etext756 Munk, J. A. (Joseph Amasa), 1847-1927 Arizona Sketches etext768 Brontë, Emily, 1818-1848 Wuthering Heights etext777 Claxton, William J. The Mastery of the Air etext812 Catalan's Constant to 1,500,000 Places etext883 Dickens, Charles, 1812-1870 Our Mutual Friend etext931 Gilbert, W. S. (William Schwenck), Sir, 1836-1911 The Bab Ballads etext954 Appleton, Victor [pseud.] Tom Swift and His War Tank, or, Doing His Bit for Uncle Sam etext1068 Grant, Ulysses S. (Ulysses Simpson), 1822-1885 Personal Memoirs of U. S. Grant — Volume 2 etext1078 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Scouts of the Valley etext1101 Shakespeare, William, 1564-1616 King Henry VI, Part 2 etext1113 Shakespeare, William, 1564-1616 A Midsummer Night's Dream etext1125 Shakespeare, William, 1564-1616 All's Well That Ends Well etext1142 Conrad, Joseph, 1857-1924 Typhoon etext1158 Tarkington, Booth, 1869-1946 Penrod and Sam etext1194 Rougemont, Louis de, 1847-1921 The Adventures of Louis De Rougemont etext1208 London, Jack, 1876-1916 South Sea Tales etext1211 Herrick, Robert, 1591-1674 A selection from the lyrical poems of Robert Herrick etext1241 Synge, J. M. (John Millington), 1871-1909 The Well of the Saints etext1251 Malory, Thomas, Sir, 1400-1470 Le Mort d'Arthur: Volume 1 etext1273 Lyall, Edna, 1857-1903 The Autobiography of a Slander etext1322 Whitman, Walt, 1819-1892 Leaves of Grass etext1354 Montgomery, L. M. (Lucy Maud), 1874-1942 Chronicles of Avonlea etext1367 Ouida, 1839-1908 Findelkind etext1393 Clough, Arthur Hugh, 1819-1861 Amours De Voyage etext1402 Morley, Christopher, 1890-1957 Where the Blue Begins etext1416 Dickens, Charles, 1812-1870 Mrs. Lirriper's Lodgings etext1484 Blasco Ibáñez, Vicente, 1867-1928 The Four Horsemen of the Apocalypse etext1493 Ginzberg, Louis, 1873-1953 The Legends of the Jews — Volume 1 etext1556 Balzac, Honoré de, 1799-1850 The Marriage Contract etext1570 Dumont, Theron Q. The Power of Concentration etext1592 McAfee, Cleland Boyd Study of the King James Bible etext1598 Plato, 427? BC-347? BC Euthydemus etext1671 Rinehart, Mary Roberts, 1876-1958 When a Man Marries etext1676 Plato (spurious and doubtful works), 427? BC-347? BC Alcibiades I etext1705 etext1738 Plato, 427? BC-347? BC Statesman etext1827 Gaskell, Elizabeth Cleghorn, 1810-1865 Life of Charlotte Brontë — Volume 1 etext1851 Green, Anna Katharine, 1846-1935 The Woman in the Alcove etext1910 Dumas père, Alexandre, 1802-1870 La Tulipe Noire etext1955 Severy, Melvin Linwood, 1863- The Darrow Enigma etext1960 Rinehart, Mary Roberts, 1876-1958 Sight Unseen etext1991 Lang, Andrew, 1844-1912 Old Friends, Epistolary Parody etext2033 Maeterlinck, Maurice, 1862-1949 The Unknown Guest etext2048 Irving, Washington, 1783-1859 The Sketch-Book of Geoffrey Crayon etext2089 Huxley, Thomas Henry, 1825-1895 On the Reception of the 'Origin of Species' etext2120 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 20 etext2124 Faxian, ca. 337-422 A Record of Buddhistic kingdoms: being an account by the Chinese monk Fa-hsien of travels in India and Ceylon (A.D. 399-414) in search of the Buddhist books of discipline etext2134 Chesterton, G. K. (Gilbert Keith), 1874-1936 Utopia of Usurers and Other Essays etext2136 Swinburne, Algernon Charles, 1837-1909 The Tale of Balen etext2194 Sand, George, 1804-1876 Mauprat etext2219 Human Genome Project Chromosome Number 19 etext2281 Harte, Bret, 1836-1902 The Heritage of Dedlow Marsh and Other Tales etext2283 Davis, Richard Harding, 1864-1916 The Lost Road etext2292 Beerbohm, Max, Sir, 1872-1956 Yet Again etext2353 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Tea-Table Talk etext2370 MacDonald, George, 1824-1905 Sir Gibbie etext2421 Gay, John, 1685-1732 The Beggar's Opera etext2491 Sherrick, Fannie Isabel Love or Fame; and Other Poems etext2535 Harte, Bret, 1836-1902 Openings in the Old Trail etext2584 The First 1000 Euler Numbers etext2586 The First 498 Bernoulli Numbers etext2589 Sousa, John Philip, 1854-1932 Experiences of a Bandmaster etext2613 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 The History of England, from the Accession of James II — Volume 4 etext2669 Trenck, Friedrich, Freiherr von der, 1726-1794 The Life and Adventures of Baron Trenck, Volume 2 etext2677 Durham, Andrew Everett, 1882-1954 Epistles from Pap: Letters from the man known as 'The Will Rogers of Indiana' etext2681 Dumas père, Alexandre, 1802-1870 Ten Years Later etext2688 Wallace, Edgar, 1875-1932 The Clue of the Twisted Candle etext2749 Dumas père, Alexandre, 1802-1870 La Constantin etext2780 May, Karl Friedrich, 1842-1912 My Life and My Efforts etext2816 Campanella, Tommaso, 1568-1639 The City of the Sun etext2825 La Motte-Fouqué, Friedrich Heinrich Karl Freiherr de, 1777-1843 Undine etext2918 Galsworthy, John, 1867-1933 The First and the Last etext3024 Fox, John, 1863-1919 The Last Stetson etext3120 Warner, Charles Dudley, 1829-1900 Modern Fiction etext3211 Honig, Winfried Mr. Honey's Small Banking Dictionary etext3221 Honig, Winfried Mr. Honey's Large Business Dictionary etext3226 Dürer, Albrecht, 1471-1528 Memoirs of Journeys to Venice and the Low Countries etext3227 Militia of Mercy (U.S.). Gift Book Committee Defenders of Democracy; contributions from representative men and women of letters and other arts from our allies and our own country, edited by the Gift book committee of the Militia of Mercy etext3237 Howells, William Dean, 1837-1920 The Garotters etext3300 Smith, Adam, 1723-1790 An Inquiry into the Nature and Causes of the Wealth of Nations etext3305 Earls, Michael, 1873-1937 Ballads of Peace in War etext3306 Hargrave, John, 1894-1982 At Suvla Bay etext3319 Lang, Andrew, 1844-1912 Letters to Dead Authors etext3323 Liljencrantz, Ottilie A. (Ottilia Adelina), 1876-1910 The Ward of King Canute; a romance of the Danish conquest etext3346 Sue, Eugène, 1804-1857 The Wandering Jew — Volume 08 etext3349 Sue, Eugène, 1804-1857 The Wandering Jew — Volume 11 etext3361 Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773 Complete Project Gutenberg Earl of Chesterfield Works etext3393 Howells, William Dean, 1837-1920 Studies of Lowell (from Literary Friends and Acquaintance) etext3517 Human Genome Project Human Genome Project, Chromosome Number 17 etext3530 Sabatini, Rafael, 1875-1950 Love-at-Arms etext3534 Tench, Watkin, 1759-1833 A Complete Account of the Settlement at Port Jackson etext3610 Yonge, Charlotte Mary, 1823-1901 The Daisy chain, or Aspirations etext3642 Perkins, Lucy Fitch, 1865-1937 The Belgian Twins etext3691 Wells, H. G. (Herbert George), 1866-1946 Little Wars; a game for boys from twelve years of age to one hundred and fifty and for that more intelligent sort of girl who likes boys' games and books. etext3700 Trollope, Anthony, 1815-1882 The Courtship of Susan Bell etext3789 Shaw, Bernard, 1856-1950 Bernard Shaw's Preface to Major Barbara etext3853 Montespan, Françoise-Athénaïs de Rochechouart de Mortemart, marquise de, 1641-1707 Memoirs of Madame de Montespan — Volume 7 etext3894 Goldsmith, Lewis, 1763-1846 Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 3 etext3916 Ohnet, Georges, 1848-1918 Serge Panine — Volume 03 etext3981 Bernard, Charles de, 1804-1850 Gerfaut — Volume 1 etext3991 Loti, Pierre, 1850-1923 Madame Chrysantheme — Volume 1 etext3992 Loti, Pierre, 1850-1923 Madame Chrysantheme — Volume 2 etext4000 Various The French Immortals Series — Complete etext4100 Sangharakshita, Bikshu, 1925- Όραμα και Μεταμόρφωση : Μια εισαγωγή στο Ευγενές Οκταπλό Μονοπάτι του Βούδδα etext4260 McElroy, John, 1846-1929 Andersonville — Volume 4 etext4354 Gissing, George, 1857-1903 By the Ionian Sea etext4358 Baum, L. Frank (Lyman Frank), 1856-1919 The Sea Fairies etext4372 Nadin, Mihai, 1938- Jenseits der Schriftkultur — Band 2 etext4442 Meredith, George, 1828-1909 Vittoria — Volume 8 etext4475 Meredith, George, 1828-1909 One of Our Conquerors — Volume 5 etext4550 Wharton, Edith, 1862-1937 Fighting France, from Dunkerque to Belfort etext4551 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 Europe Revised etext4580 Luo, Guanzhong, 1330?-1400? 粉妝樓 etext4585 Curwood, James Oliver, 1878-1927 God's Country—And the Woman etext4664 Inge, William Ralph, 1860-1954 Light, Life, and Love : selections from the German mystics of the middle ages etext4669 Adams, John S. (John Stowell), -1893 Town and Country; or, life at home and abroad, without and within us etext4897 Motley, John Lothrop, 1814-1877 Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years' War, 1619-23 etext4899 Motley, John Lothrop, 1814-1877 Life and Death of John of Barneveld — Complete (1609-1623) etext5002 Stratemeyer, Edward, 1862-1930 The Rover Boys in Business etext5027 Hayes, Rutherford Birchard, 1822-1893 State of the Union Address etext5038 Roosevelt, Franklin Delano, 1882-1945 State of the Union Address etext5041 Kennedy, John F. (John Fitzgerald), 1917-1963 State of the Union Address etext5163 Reeve, Arthur B. (Arthur Benjamin), 1880-1936 Guy Garrick etext5175 Haggard, Henry Rider, 1856-1925 Pearl-Maiden etext5202 Trollope, Anthony, 1815-1882 The Golden Lion of Granpere etext5211 Hudson, William Henry, 1862-1918 The Famous Missions of California etext5226 etext5238 Lever, Charles James, 1806-1872 The Confessions of Harry Lorrequer — Volume 5 etext5356 Churchill, Winston, 1871-1947 The Inside of the Cup — Volume 01 etext5486 Ebers, Georg, 1837-1898 The Emperor — Volume 04 etext5494 Ebers, Georg, 1837-1898 Homo Sum — Volume 01 etext5507 Ebers, Georg, 1837-1898 Serapis — Complete etext5527 Ebers, Georg, 1837-1898 The Bride of the Nile — Volume 11 etext5545 Ebers, Georg, 1837-1898 In the Fire of the Forge — Volume 03 etext5584 Ebers, Georg, 1837-1898 In the Blue Pike — Volume 01 etext5598 Ebers, Georg, 1837-1898 The Story of My Life — Volume 06 etext5609 Allen, William Ferneley The Corporation of London, Its Rights and Privileges etext5680 Leahy, Arthur Herbert, 1857-1928 Heroic Romances of Ireland — Complete etext5683 Kant, Immanuel, 1724-1804 The Critique of Practical Reason etext5687 Kingsley, Charles, 1819-1875 The Water of Life and Other Sermons etext5702 Lamprey, L., 1869-1951 Masters of the Guild etext5706 Burroughs, John, 1837-1921 Time and Change etext5717 Gunn, John Alexander, 1896-1975 Bergson and His Philosophy etext5729 Jackson, Gabrielle E. (Gabrielle Emilie), 1861- Peggy Stewart: Navy Girl at Home etext5755 Hewlett, Maurice Henry, 1861-1923 The Fool Errant etext5791 Burgess, Thornton W. (Thornton Waldo), 1874-1965 Mrs. Peter Rabbit etext5797 Kelland, Clarence Budington, 1881-1964 Youth Challenges etext5842 Twain, Mark, 1835-1910 Sketches New and Old, Part 7. etext5880 Anonymous Reina Valera New Testament of the Bible 1865 etext5885 Saint-Saëns, Camille, 1835-1921 Prelude and Fugue in E-Flat Major, Op. 99 no.3 etext5891 Kingsley, Mary H., 1862-1900 Travels in West Africa etext5922 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 19 etext5966 MacDonald, George, 1824-1905 What's Mine's Mine — Volume 1 etext6004 Shaw, Bernard, 1856-1950 Helden etext6065 Goddard, Charles, 1879-1951 The Perils of Pauline etext6075 Bosher, Kate Langley, 1865-1932 Miss Gibbie Gault etext6184 Parker, Gilbert, 1862-1932 Romany of the Snows, Continuation of "Pierre and His People", v5 etext6191 Parker, Gilbert, 1862-1932 Northern Lights, Complete etext6199 Parker, Gilbert, 1862-1932 Cumner's Son and Other South Sea Folk — Volume 05 etext6202 Parker, Gilbert, 1862-1932 When Valmond Came to Pontiac, Volume 1. etext6214 Parker, Gilbert, 1862-1932 The Translation of a Savage, Complete etext6220 Parker, Gilbert, 1862-1932 The Trespasser, Volume 2 etext6244 Parker, Gilbert, 1862-1932 The Right of Way — Volume 02 etext6408 Chekhov, Anton Pavlovich, 1860-1904 Letters of Anton Chekhov etext6420 Library of Congress. Copyright Office Copyright Renewals 1960 etext6489 Yonge, Charlotte Mary, 1823-1901 A Book of Golden Deeds etext6500 Unknown The Log-Cabin Lady — An Anonymous Autobiography etext6587 Dell, Floyd, 1887-1969 King Arthur's Socks and Other Village Plays etext6604 etext6611 Skinner, Charles M. (Charles Montgomery), 1852-1907 Myths and Legends of Our Own Land — Volume 06 : Central States and Great Lakes etext6612 Skinner, Charles M. (Charles Montgomery), 1852-1907 Myths and Legends of Our Own Land — Volume 07 : Along the Rocky Range etext6617 Wilcox, Ella Wheeler, 1855-1919 Poems of Sentiment etext6650 Storm, Theodor, 1817-1888 Immensee etext6678 Nonsenseorship etext6695 Fitzgerald, F. Scott (Francis Scott), 1896-1940 Tales of the Jazz Age etext6710 Haeckel, Ernst Heinrich Philipp August, 1834-1919 The Evolution of Man — Volume 2 etext6741 Moore, Thomas, 1779-1852 Memoirs of the Life of the Rt. Hon. Richard Brinsley Sheridan — Volume 01 etext6773 Schiller, Friedrich, 1759-1805 The Thirty Years War — Volume 04 etext6782 Schiller, Friedrich, 1759-1805 The Robbers etext6830 Lenz, Jakob Michael Reinhold, 1751-1792 Der Landprediger etext6838 Hugo, Victor, 1802-1885 Le Dernier Jour d'un Condamné etext6844 Leprohon, Mrs. (Rosanna Eleanor), 1832?-1879 The Poetical Works of Mrs. Leprohon etext6872 Glasgow, Ellen Anderson Gholson, 1873-1945 The Battle Ground etext6879 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Gold Bat etext6880 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Coming of Bill etext6939 Scott, Walter, Sir, 1771-1832 Old Mortality, Volume 1. etext6949 White, Andrew Dickson, 1832-1918 Fiat Money Inflation in France etext6954 Holmes, Mary Jane, 1825-1907 Aikenside etext6978 Rorer, Sarah Tyson Heston, 1849-1937 Made-Over Dishes etext6983 Wilson, Edward Francis, 1844-1915 Missionary Work Among the Ojebway Indians etext7003 Scott, Walter, Sir, 1771-1832 The Antiquary — Volume 01 etext7014 Humboldt, Alexander von, 1769-1859 Personal Narrative of Travels to the Equinoctial Regions of America, During the Year 1799-1804 — Volume 2 etext7100 Twain, Mark, 1835-1910 Adventures of Huckleberry Finn, Chapters 01 to 05 etext7135 Logan, John Alexander, 1826-1886 The Great Conspiracy, Volume 3 etext7187 Howells, William Dean, 1837-1920 Seven English Cities etext7210 Penrose, Margaret The Motor Girls on Waters Blue etext7336 Battersby, H. S. (Hannah S.), -1887? Home Lyrics etext7365 Milne, A. A. (Alan Alexander), 1882-1956 If I May etext7433 James, Henry, 1843-1916 The Awkward Age etext7460 Atwater, Emily Paret How Sammy Went to Coral-Land etext7567 Bazin, René, 1853-1932 Images from Bazin's Ink Stain etext7591 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 06 etext7610 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Eugene Aram — Volume 02 etext7653 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Kenelm Chillingly — Volume 04 etext7676 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Harold : the Last of the Saxon Kings — Volume 05 etext7689 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Lucretia — Volume 05 etext7699 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 A Strange Story — Volume 08 etext7702 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 My Novel — Volume 01 etext7707 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 My Novel — Volume 06 etext7725 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Last of the Barons — Volume 11 etext7735 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Paul Clifford — Complete etext7755 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Godolphin, Volume 6. etext7852 Davis, Matthew L. (Matthew Livingston), 1773-1850 Memoirs of Aaron Burr, Complete etext7876 Hawthorne, Nathaniel, 1804-1864 Passages from the English Notebooks, Volume 1. etext7894 Collins, Wilkie, 1824-1889 The Fallen Leaves etext7912 Smith, John Jay, 1798-1881 American Historical and Literary Antiquities, Part 12. etext7915 Smith, John Jay, 1798-1881 American Historical and Literary Antiquities, Part 15. etext7916 Smith, John Jay, 1798-1881 American Historical and Literary Antiquities, Part 16. etext7926 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 Endymion etext7932 Codman, John Thomas Brook Farm etext7974 Cooper, James Fenimore, 1789-1851 The Pilot etext8003 Anonymous The Bible, King James version, Book 3: Leviticus etext8006 Anonymous The Bible, King James version, Book 6: Joshua etext8037 Anonymous The Bible, King James version, Book 37: Haggai etext8175 Verne, Jules, 1828-1905 Keraban Le Tetu, Volume II etext8183 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 Time and the Gods etext8201 MacDonald, George, 1824-1905 Mary Marston etext8217 Vaknin, Samuel, 1961- The Belgian Curtain etext8226 Bunce, John Thackray, 1828-1899 Fairy Tales; Their Origin and Meaning etext8263 Anonymous The World English Bible (WEB): Zephaniah etext8352 The Bible, Douay-Rheims, Book 52: Romans etext8362 The Bible, Douay-Rheims, Book 62: 2 Timothy etext8365 The Bible, Douay-Rheims, Book 65: Hebrews etext8389 Ingersoll, Robert Green, 1833-1899 Lectures of Col. R. G. Ingersoll - Latest etext8400 Erasmus, Desiderius, 1469-1536 Selections from Erasmus etext8402 Harte, Bret, 1836-1902 East and West etext8446 Cummings, E. E. (Edward Estlin), 1894-1962 The Enormous Room etext8490 Hugo, Victor, 1802-1885 Actes et Paroles, Volume 4 etext8524 France, Anatole, 1844-1924 L'Île Des Pingouins etext8571 Irving, Washington, 1783-1859 Wolfert's Roost and Miscellanies etext8577 Lever, Charles James, 1806-1872 Charles O'Malley, The Irish Dragoon, Volume 1 etext8582 Twain, Mark, 1835-1910 Roughing It, Part 1. etext8599 Dixon, E. Fairy Tales from the Arabian Nights etext8622 Doyle, Arthur Conan, Sir, 1859-1930 The New Revelation etext8730 Bruce, Mary Grant, 1878-1958 A Little Bush Maid etext8765 Burroughs, Edgar Rice, 1875-1950 Pellucidar etext8793 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Purgatory, Volume 4 etext8827 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Preface and Introductions etext8834 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, 1 Corinthians etext9002 Twain, Mark, 1835-1910 Personal Recollections of Joan of Arc — Volume 02 etext9026 Twain, Mark, 1835-1910 The Innocents Abroad etext9072 Boswell, James, 1740-1795 Life of Johnson, Volume 2 etext9094 Bloomfield, Robert, 1766-1823 Wild Flowers etext9100 Bernhardt, Sarah, 1845-1923 My Double Life etext9110 Lessing, Gotthold Ephraim, 1729-1781 Die Juden etext9162 Tennyson, Alfred Tennyson, Baron, 1809-1892 Becket and other plays etext9170 Zola, Émile, 1840-1902 The Three Cities Trilogy, Complete etext9184 Camus, Jean Pierre, 1584-1652 The Spirit of St. Francis de Sales etext9227 Hawthorne, Nathaniel, 1804-1864 The New Adam and Eve (From "Mosses from an Old Manse") etext9233 Hawthorne, Nathaniel, 1804-1864 Sketches from Memory (From "Mosses from an Old Manse") etext9257 Hawthorne, Nathaniel, 1804-1864 The Three Golden Apples etext9293 Wharton, Edith, 1862-1937 Early Short Fiction of Edith Wharton etext9331 Anonymous The Hunted Outlaw etext9360 Conrad, Joseph, 1857-1924 Within the Tides etext9376 White, Stewart Edward, 1873-1946 The Forest etext9382 Brine, Mary D. Grandma's Memories etext9399 Story, William Wetmore, 1819-1895 A Roman Lawyer in Jerusalem : First Century etext9506 Georgian Poetry 1913-15 etext9518 Thackeray, William Makepeace, 1811-1863 The Paris Sketch Book etext9539 Thackeray, William Makepeace, 1811-1863 The Rose and the Ring etext9546 Various Georgian Poetry 1916-17 etext9675 Eliot, George, 1819-1880 The Mill on the Floss etext9680 Defoe, Daniel, 1661?-1731 Dickory Cronke etext9727 Dickens, Charles, 1812-1870 Oliver Twist etext9731 Dickens, Charles, 1812-1870 To Be Read at Dusk etext9742 Dickens, Charles, 1812-1870 The Wreck of the Golden Mary etext9799 etext9808 Jepson, Edgar, 1863-1938 The Loudwater Mystery etext9835 Farnol, Jeffery, 1878-1952 Martin Conisby's Vengeance etext9872 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Great Secret etext9892 etext9913 Austin, Mary Hunter, 1868-1934 The Trail Book etext9924 Locke, William John, 1863-1930 Viviette etext9956 Lee, Vernon, 1856-1935 Hauntings etext9992 Various Blackwood's Edinburgh Magazine — Volume 53, No. 327, January, 1843 etext10077 Various The Atlantic Monthly, Volume 10, No. 60, October, 1862 etext10133 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 The Vigil of Venus and Other Poems by "Q" etext10168 British Military Band Kaiser Frederick March etext10220 Garis, Howard Roger, 1873-1962 Daddy Takes Us Skating etext10251 Kingsley, Charles, 1819-1875 Town Geology etext10263 Marchand, Charles (basse) Envoyons d'l'avant nos gens! etext10275 etext10453 Blaisdell, Albert F. A Practical Physiology etext10497 McGuinn, Roger Battle Hymn of the Republic etext10526 McGuinn, Roger Nancy Whiskey etext10542 Hodgson, William Hope, 1877-1918 The Boats of the "Glen Carrig" etext10545 Cooper, James Fenimore, 1789-1851 The Sea Lions etext10564 Jacobs, W. W. (William Wymark), 1863-1943 Fairy Gold etext10612 Henderson, Hubert D., 1890-1952 Supply and Demand etext10664 Multatuli, 1820-1887 Specialiteiten etext10667 Wren, Percival Christopher, 1885-1941 Snake and Sword etext10794 Eastman, Mary H. (Mary Henderson), 1818-1887 Dahcotah etext10809 University of Oxford. Faculty of Modern History Why We Are at War (2nd Edition, revised) etext10972 Ward, John, 1866-1934 With the "Die-Hards" in Siberia etext10985 Wilderspin, Samuel, 1792-1866 The Infant System etext11041 Barbour, Ralph Henry, 1870-1944 The Half-Back etext11056 Harper, Frances Ellen Watkins, 1825-1911 Trial and Triumph etext11078 Quigley, Dorothy What Dress Makes of Us etext11150 Anonymous Gems Gathered in Haste etext11253 Doddridge, Philip, 1702-1751 The Life of Col. James Gardiner etext11285 Kuiper, A.C., 1860-1934 Een Heldin etext11299 Braga, Joaquim Teófilo Fernandes, 1843-1924 O cancioneiro portuguez da Vaticana etext11362 Various The Mirror of Literature, Amusement, and Instruction etext11390 Various The Mirror of Literature, Amusement, and Instruction etext11395 Ferber, Edna, 1885-1968 Cheerful—By Request etext11398 Yarrow, H. C. (Harry Crécy), 1840-1929 A Further Contribution to the Study of the Mortuary Customs of the North American Indians etext11431 Brewer, Ebenezer Cobham, 1810-1897 Character Sketches of Romance, Fiction and the Drama, Vol. 1 etext11509 Newton, Richard The Life of Jesus Christ for the Young etext11517 Graves, J. A. Out of Doors—California and Oregon etext11538 Various The Mirror of Literature, Amusement, and Instruction etext11551 Various The Mirror of Literature, Amusement, and Instruction etext11581 Lowndes, Marie Belloc, 1868-1947 From out the Vasty Deep etext11590 Balch, Thomas, 1821-1877 Les Français en Amérique pendant la guerre de l'indépendance des États-Unis 1777-1783 etext11694 Murray, James Augustus Henry, 1837-1915 The evolution of English lexicography etext11777 Human Genome Project Chromosome Number 03 etext11786 Human Genome Project Chromosome Number 12 etext11825 Library of Congress. Copyright Office U.S. Copyright Renewals, 1962 January - June etext11845 Library of Congress. Copyright Office U.S. Copyright Renewals, 1972 January - June etext11985 Russian Lyrics etext12044 Birney, Catherine H. The Grimké Sisters etext12046 King, Phillip Parker, 1793?-1856 Narrative of a Survey of the Intertropical and Western Coasts of Australia etext12089 Kipling, Rudyard, 1865-1936 Letters of Travel (1892-1913) etext12095 Yonge, Charlotte Mary, 1823-1901 More Bywords etext12158 Jacobs, W. W. (William Wymark), 1863-1943 The Vigil etext12199 Catherwood, Mary Hartwell, 1847-1902 The Chase of Saint-Castin and Other Stories of the French in the New World etext12209 Jacobs, W. W. (William Wymark), 1863-1943 The Persecution of Bob Pretty etext12224 Whitney, A. D. T. (Adeline Dutton Train), 1824-1906 We Girls: a Home Story etext12344 Bredon, Juliet Sir Robert Hart etext12368 Gorostiza, Manuel Eduardo de Contigo Pan y Cebolla etext12453 Warfield, Catherine A., 1816-1877 Miriam Monfort etext12460 Stockton, Frank Richard, 1834-1902 Pomona's Travels etext12461 Orczy, Emmuska Orczy, Baroness, 1865-1947 Castles in the Air etext12489 Fouquières, L. Becq de L'art de la mise en scène etext12493 Byrum, Isabel C. (Isabel Coston), 1870-1938 How John Became a Man etext12545 Cole, Fay-Cooper, 1881-1961 Traditions of the Tinguian: a Study in Philippine Folk-Lore etext12559 Crane, Laura Dent The Automobile Girls at Washington etext12571 Hayes, Clair W. (Clair Wallace), 1887- The Boy Allies in the Trenches etext12637 Maurik, Justus van, 1846-1904 Joris Komijn op de Tentoonstelling etext12696 Field, Eugene, 1850-1895 John Smith, U.S.A. etext12738 Various Punch, or the London Charivari, Volume 99, November 29, 1890 etext12781 Various The Mirror of Literature, Amusement, and Instruction etext12795 Kivi, Aleksis, 1834-1872 Kihlaus; Yö ja päivä etext12873 Various The Mirror of Literature, Amusement, and Instruction etext12882 Scott, Walter, Sir, 1771-1832 Minstrelsy of the Scottish Border, Volume 2 etext12916 Procopius The Secret History of the Court of Justinian etext12968 James, J.A. Our Government: Local, State, and National: Idaho Edition etext12972 Bosher, Kate Langley, 1865-1932 People Like That etext12986 Bennett, Arnold, 1867-1931 The Card, a Story of Adventure in the Five Towns etext12993 Ségur, Sophie, comtesse de, 1799-1874 Un bon petit diable etext13013 Ségur, Sophie, comtesse de, 1799-1874 François le Bossu etext13021 Richardson, James D. (James Daniel), 1843-1914 A Compilation of the Messages and Papers of the Presidents etext13035 Burgess, Gelett, 1866-1951 The Goop Directory of Juvenile Offenders Famous for their Misdeeds and Serving as a Salutary Example for all Virtuous Children etext13043 Shaw, Stanley William of Germany etext13088 Chapman, John Jay, 1862-1933 Emerson and Other Essays etext13101 Runeberg, Johan Ludvig, 1804-1877 Samlade arbeten II etext13166 Watts, Isaac, 1674-1748 The Psalms of David etext13206 Wishart, Alfred Wesley, 1865-1933 A Short History of Monks and Monasteries etext13225 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels — Volume 06 etext13238 Cross, Victoria, 1868-1952 Six Women etext13249 Hornaday, William Temple, 1854-1937 Our Vanishing Wild Life etext13299 Heuzey, Léon, 1831-1922 Mythes chaldéens etext13334 Bierce, Ambrose, 1842-1914? The Collected Works of Ambrose Bierce — Volume 2: In the Midst of Life: Tales of Soldiers and Civilians etext13352 Various Punch, or the London Charivari, Volume 100, May 23, 1891 etext13393 Various Notes and Queries, Number 41, August 10, 1850 etext13400 Malot, Hector, 1830-1907 Conscience etext13430 Bostwick, Arthur Elmore, 1860-1942 A Librarian's Open Shelf etext13447 Boole, Mary Everest, 1832-1916 Philosophy and Fun of Algebra etext13467 Washburne, Marion Foster, 1863- Study of Child Life etext13528 Petrovic, Walter D. Scorched Earth etext13532 Kyne, Peter B. (Peter Bernard), 1880-1957 Kindred of the Dust etext13656 Atkinson, William Walker, 1862-1932 A Series of Lessons in Raja Yoga etext13681 Järnefelt, Arvid, 1861-1932 Ihmiskohtaloja etext13689 Currey, E. Hamilton Sea-Wolves of the Mediterranean etext13843 etext13895 Elliott, Emilia [pseud.], 1872-1909 Patricia etext13899 Various The Mirror of Literature, Amusement, and Instruction etext13960 Dell, Ethel M. (Ethel May), 1881-1939 Charles Rex etext13984 Lang, Andrew, 1844-1912 In the Wrong Paradise etext14005 Anonymous The Ladies Delight etext14048 Jókai, Mór, 1825-1904 The Nameless Castle etext14062 Wilde, Oscar, 1854-1900 Miscellanies etext14114 Plutarch, 46-120? Plutarch's Lives, Volume II etext14176 Hichens, Robert Smythe, 1864-1950 The Dweller on the Threshold etext14192 Wilde, Oscar, 1854-1900 Picture of Dorian Gray. French etext14195 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Haunted and the Haunters etext14252 Swinburne, Algernon Charles, 1837-1909 The Age of Shakespeare etext14282 Erasmus, Desiderius, 1469-1536 A Merry Dialogue Declaringe the Properties of Shrowde Shrews and Honest Wives etext14360 Niles, Henry Thayer, 1825-1901 The Dawn and the Day etext14401 Anonymous Suez etext14444 Defoe, Daniel, 1661?-1731 The Complete English Tradesman (1839 ed.) etext14448 Richards, Alfred B. Cromwell etext14507 Anonymous Het Vatikaan etext14513 Johnston, Mary, 1870-1936 Audrey etext14517 Parkman, Francis, 1823-1893 Montcalm and Wolfe etext14603 Various Chambers's Edinburgh Journal, No. 420 etext14618 Herford, C. H. (Charles Harold), 1853-1931 Robert Browning etext14630 Emerson, Alice B. Ruth Fielding on Cliff Island etext14737 Willman-Eloranta, Elviira, 1875-1927 Lyyli etext14757 Sassoon, Siegfried, 1886-1967 The War Poems of Siegfried Sassoon etext14777 Lighthall, W. D. (William Douw), 1857-1954 Hochelagans and Mohawks etext14955 Bigelow, Mary Ann H. T., -1870 The Kings and Queens of England with Other Poems etext14963 Day, Mary L., 1836- The World As I Have Found It etext15033 Raymond, Ernest, 1888-1974 Tell England etext15068 Mackay, John Henry, 1864-1933 Der Schwimmer etext15162 Black, George Fraser, 1866-1948 Scotland's Mark on America etext15217 Kilpi, Hilja, 1844-1927 Sillankorvan emäntä etext15224 Pienaar, Philip With Steyn and De Wet etext15227 Hays, Helen Ashe Prince Lazybones and Other Stories etext15300 Butler, Ellis Parker, 1869-1937 Mike Flannery On Duty and Off etext15321 Holmes, Mary Jane, 1825-1907 Tracy Park etext15391 American Eloquence, Volume 1 etext15399 Equiano, Olaudah, 1745-1797 The Interesting Narrative of the Life of Olaudah Equiano, Or Gustavus Vassa, The African etext15437 Nelson, Horatio, 1758-1805 The Letters of Lord Nelson to Lady Hamilton, Vol II. etext15477 The Mahabharata of Krishna-Dwaipayana Vyasa, Volume 4 etext15486 Baden, Frances Henshaw, -1911 Edna's Sacrifice and Other Stories etext15488 Holliday, Carl Woman's Life in Colonial Days etext15500 Kiljander, Robert, 1848-1924 Sanny Kortmanin koulu etext15556 Young, Arthur, 1741-1820 Voyages en France pendant les années 1787-1788-1789 etext15628 Tolstoy, Leo, graf, 1828-1910 Sa Ano Nabubuhay Ang Tao etext15654 Chambers, Robert W. (Robert William), 1865-1933 The Firing Line etext15685 Dampier, William, 1652-1715 A Continuation of a Voyage to New Holland etext15716 Various The Great Round World and What Is Going On In It, Vol. 1, No. 25, April 29, 1897 etext15733 Harland, Henry, 1861-1905 Grey Roses etext15758 Streeter, Edward, 1891-1976 "Same old Bill, eh Mable!" etext15790 Racine, Jean Baptiste, 1639-1699 Esther etext15849 Shakespeare, William, 1564-1616 Timon d'Athènes etext15856 Gray, James Sutherland and Caithness in Saga-Time etext15948 Morris, William, 1834-1896 The Hollow Land etext15980 Castro, Modesto de, 1819-1864 Pag Susulatan nang Dalauang Binibini na si Urbana at ni Feliza etext16006 Carleton, William, 1794-1869 Lha Dhu; Or, The Dark Day etext16036 Various The American Missionary — Volume 44, No. 06, June, 1890 etext16093 Harré, T. Everett The Eternal Maiden etext16108 Wagner, Madge Morris, 1862-1924 Debris etext16141 Various The American Missionary — Volume 43, No. 06, June, 1889 etext16162 Rawlinson, George, 1812-1902 The Seven Great Monarchies Of The Ancient Eastern World, Vol 2. (of 7): Assyria etext16200 Various The Atlantic Monthly, Volume 13, No. 75, January, 1864 etext16238 Klopstock, Friedrich Gottlieb, 1724-1803 Poésies Allemandes etext16246 Erasmus, Desiderius, 1469-1536 A Very Pleasaunt & Fruitful Diologe Called the Epicure etext16271 Various Punch, or the London Charivari, Vol. 158, 1920-01-21 etext16303 Simms, William Gilmore, 1806-1870 Guy Rivers: A Tale of Georgia etext16337 Steevens, G. W. (George Warrington), 1869-1900 From Capetown to Ladysmith etext16366 Miller, John Maurice The Workingman's Paradise etext16373 Richmond, Grace S. (Grace Smith), 1866-1959 Mrs. Red Pepper etext16411 Meriläinen, Heikki, 1847-1939 Kahleeton vanki etext16417 Deane, Edmund Spadacrene Anglica etext16432 etext16439 Apicius De re coquinaria etext16523 Bahá'u'lláh, 1817-1892 The Kitáb-i-Aqdas etext16539 Spence, Lewis, 1874-1955 Hero Tales and Legends of the Rhine etext16610 Holinshed, Raphael, -1580? Chronicles (1 of 6): The Historie of England (6 of 8) etext16679 Tout, T. F. (Thomas Frederick), 1855-1929 The History of England etext16681 Anonymous Baby Chatterbox etext16711 Kline, John, 1797-1864 Life and Labors of Elder John Kline, the Martyr Missionary etext16718 Keferstein, Christian, 1784-1866 Mineralogia Polyglotta etext16741 Eastman, Mary H. (Mary Henderson), 1818-1887 Aunt Phillis's Cabin etext16793 Neihardt, John G., 1881-1973 The River and I etext16825 Fabre, Jean-Henri, 1823-1915 Souvenirs entomologiques - Livre I etext16835 Jones, W. Tudor (William Tudor), 1865-1946 An Interpretation of Rudolf Eucken's Philosophy etext16872 Sotheran, Charles, 1847-1902 Percy Bysshe Shelley as a Philosopher and Reformer etext16923 Paxson, Susan A Handbook for Latin Clubs etext16963 Daviess, Maria Thompson, 1872-1924 The Golden Bird etext16973 Swinburne, Algernon Charles, 1837-1909 Studies in Song etext16974 Roberts, Enos Herbert Glynne The Story of the "9th King's" in France etext16979 Potter, John Hasloch, 1847-1935 The Discipline of War etext17010 Eekhoud, Georges, 1854-1927 La faneuse d'amour etext17045 Dyson, Edward, 1865-1931 In the Roaring Fifties etext17102 Goldsmith, Oliver, 1730-1774 An Elegy on the Death of a Mad Dog etext17104 Newell, Peter, 1862-1924 The Rocket Book etext17171 Various New England Salmon Hatcheries and Salmon Fisheries in the Late 19th Century etext17322 Maspero, G. (Gaston), 1846-1916 History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 2 (of 12) etext17469 Yates, Dornford, 1885-1960 Berry And Co. etext17535 Pier, Arthur Stanwood, 1874-1966 The Jester of St. Timothy's etext17553 Zola, Émile, 1840-1902 La curée etext17562 Armstrong, H. S. Trifles for the Christmas Holidays etext17730 Holmes, William Henry, 1846-1933 A Study Of The Textile Art In Its Relation To The Development Of Form And Ornament etext17757 Gay, Sophie, 1776-1852 Ellénore, Volume I etext17772 Ewing, Juliana Horatia Gatty, 1841-1885 Mrs. Overtheway's Remembrances etext17775 Various Mrs Whittelsey's Magazine for Mothers and Daughters etext17777 Klapp, Eugene Transactions of the American Society of Civil Engineers, vol. LXX, Dec. 1910 etext17798 Verne, Jules, 1828-1905 L'île à hélice etext17816 Duff Gordon, Lucie, Lady, 1821-1869 Letters from Egypt etext17854 Dunbar, Paul Laurence, 1872-1906 The Sport of the Gods etext17860 Andersen, H. C. (Hans Christian), 1805-1875 Stories from Hans Andersen etext17896 Farina, Salvatore, 1846-1918 Carta bollata etext17897 Thomas, Aquinas, Saint, 1225?-1274 Summa Theologica, Part I-II (Pars Prima Secundae) etext18057 Reed, Myrtle, 1874-1911 Flower of the Dusk etext18083 Nodier, Charles, 1780-1844 Smarra ou les démons de la nuit etext18099 Crawford, David Lindsay, Earl of, 1871-1940 Donatello, by Lord Balcarres etext18106 Bashkirtseff, Marie, 1858-1884 Lettres de Marie Bashkirtseff etext18196 Seward, William Henry, 1801-1872 Life and Public Services of John Quincy Adams etext18210 Swinburne, Algernon Charles, 1837-1909 The Heptalogia etext18215 Capendu, Ernest, 1826-1868 Le marquis de Loc-Ronan etext18220 Queirós, José Maria Eça de, 1845-1900 A Cidade e as Serras etext18309 Kelly, Florence Finch, 1858-1939 Emerson's Wife and Other Western Stories etext18337 Various Chambers's Edinburgh Journal, No. 430 etext18374 Various The Argosy etext18432 Fowler, Arthur L., 1881- Fowler's Household Helps etext18447 Sten, Daniel [pseud.], 1846-1930 Bland ödebygder och skär etext18493 Paullin, Theodore Introduction to Non-Violence etext18500 etext18508 Brown, Charles Brockden, 1771-1810 Arthur Mervyn etext18520 Rockwell, Carey, [pseud.] Sabotage in Space etext18533 Abbott, John S. C. (John Stevens Cabot), 1805-1877 The Child at Home etext18538 Smith, Dama Margaret, 1892-1973 I Married a Ranger etext18543 Voltaire, 1694-1778 Abrégé de l'Histoire Universelle depuis Charlemagne jusques à Charlequint (Tome Premier) etext18552 Wassermann, Jakob, 1873-1934 Der Wendekreis - Zweite Folge etext18588 Thomas, Edward, 1878-1917 George Borrow etext18602 Smith, George O. (George Oliver), 1911-1981 The Fourth "R" etext18603 Sumner, William Graham, 1840-1910 What Social Classes Owe to Each Other etext18736 Stevenson, James, 1840-1888 Illustrated Catalogue Of The Collections Obtained From The Indians Of New Mexico And Arizona In 1879 etext18825 Scott, Walter, Sir, 1771-1832 Quentin Durward etext18842 etext19001 Newberry, Fannie E. All Aboard etext19083 Goldfrap, John Henry, 1879-1917 The Border Boys Across the Frontier etext19087 Langford, Norman F., 1914- The King Nobody Wanted etext19108 etext19117 Cowan, Sam K. (Sam Kinkade), 1869- Sergeant York And His People etext19173 Stead, Robert J. C., 1880-1959 The Cow Puncher etext19220 Anonymous Irish Wit and Humor etext19270 Shoghi Effendi, 1897-1957 Directives from the Guardian etext19277 Shoghi Effendi, 1897-1957 Messages to America etext19286 Universal House of Justice The Promise of World Peace etext19289 `Abdu'l-Bahá, 1844-1921 Some Answered Questions etext19291 Universal House of Justice A Compilaton on Scholarship etext19343 McIlwraith, Jean N. (Jean Newton), 1859-1938 The Making of Mary etext19356 Various Golden Stories etext19359 Strunsky, Simeon, 1879-1948 The Patient Observer etext19399 Various St. Nicholas Magazine for Boys and Girls, Vol. 5, January 1878, No. 3 etext19419 Kingston, William Henry Giles, 1814-1880 In the Rocky Mountains etext19481 Anonymous "Everyman," with other interludes, including eight miracle plays etext19486 McAnally, D. R. (David Russell), 1847-1909 Irish Wonders etext19491 Hichens, Robert Smythe, 1864-1950 The Way of Ambition etext19568 Smith, Goldwin, 1823-1910 The Religious Situation etext19592 Alger, Horatio, 1832-1899 Frank and Fearless etext19724 Head, James H. Home Pastimes; or Tableaux Vivants etext19725 Livius, Titus The History of Rome, Books 01 to 08 etext19728 Northern Nut Growers Association Report of the Proceedings at the Twelfth Annual Meeting etext19814 Rose, C. A. Three years in France with the Guns: etext19839 Austen, Jane, 1775-1817 Emma etext19845 Unknown Book of James etext19862 Meillac, Camille Les sports à la mode etext19961 Mindeleff, Cosmos, 1863- Aboriginal Remains in Verde Valley, Arizona etext19986 El-Ghusein, Fà'iz Martyred Armenia etext19994 Aesop, 620 BC-563 BC The Aesop for Children etext20015 D'Annunzio, Gabriele, 1863-1938 The Child of Pleasure etext20039 James, M. R. (Montague Rhodes), 1862-1936 Ghost Stories of an Antiquary etext20055 Morris, Charles, 1833-1922 Historical Tales, Vol. 6 (of 15) etext20058 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Napoleon of Notting Hill etext20063 Hodgkin, Thomas, 1831-1913 Theodoric the Goth etext20096 Owen, Elias Welsh Folk-Lore etext20111 Huard, Frances Wilson, 1885- With Those Who Wait etext20170 Barham, George Basil Legend Land, Vol. 1 etext20178 Ibsen, Henrik, 1828-1906 John Gabriel Borkman etext20181 Riley, James Whitcomb, 1849-1916 A Defective Santa Claus etext20184 Stevens, C. M. (Charles McClellan), 1861- The Adventures of Uncle Jeremiah and Family at the Great Fair etext20196 Blore, George Henry, 1870- Victorian Worthies etext20308 etext20348 Hope, Laura Lee The Moving Picture Girls in War Plays etext20375 Field, Al. G. (Alfred Griffith), 1852- Watch Yourself Go By etext20412 Gerstäcker, Friedrich, 1816-1872 Tahiti. Erster Band. etext20424 Comstock, Harriet T. (Harriet Theresa), 1860- A Son of the Hills etext20466 Rydberg, Viktor, 1828-1895 Itämeren risteilijä etext20572 Audoux, Marguerite, 1863-1937 Marie Claire etext20576 Groome, Francis Hindes, 1851-1902 Two Suffolk Friends etext20584 McHugh, Hugh You Should Worry Says John Henry etext20590 Brown, Frank Chouteau Letters and Lettering etext20627 Ford, Sewell, 1868-1946 Torchy, Private Sec. etext20642 Anonymous The Assemble of Goddes etext20671 Morang, George N. (George Nathaniel), 1866-1937 The Copyright Question etext20709 Hedin, Sven Anders, 1865-1952 From Pole to Pole etext20711 Kingsley, Charles, 1819-1875 Daily Thoughts etext20745 Adams, F. Colburn (Francis Colburn) An Outcast etext20758 Jastrow, Morris, 1861-1921 The Religion of Babylonia and Assyria etext20787 Hamilton, Frederick W. (Frederick William), 1860-1940 Punctuation etext20829 M. et Mme Mercier-Thoinnet Souvenirs de voyage etext20840 Norton, Andre, 1912-2005 Rebel Spurs etext20866 Department, United States War Infantry Drill Regulations, United States Army, 1911 etext21034 Hill, Grace Brooks The Corner House Girls at School etext21038 Reed, Talbot Baines, 1852-1893 A Dog with a Bad Name etext21055 Binns, Ottwell A Mating in the Wilds etext21068 Collingwood, Harry, 1851-1922 Under the Meteor Flag etext21071 Collingwood, Harry, 1851-1922 The Rover's Secret etext21096 Hutcheson, John C. (John Conroy) She and I, Volume 2 etext21105 Hutcheson, John C. (John Conroy) Teddy etext21124 Aimard, Gustave, 1818-1883 Le fils du Soleil (1879) etext21145 Büchner, Georg, 1813-1837 Leonce und Lena etext21222 Yonge, Charlotte Mary, 1823-1901 The Armourer's Prentices etext21309 Fenn, George Manville, 1831-1909 Fitz the Filibuster etext21345 King, Charles, 1844-1933 A Wounded Name etext21378 Fenn, George Manville, 1831-1909 Yussuf the Guide etext21427 Nye, Bill, 1850-1896 Comic History of the United States etext21457 Kingston, William Henry Giles, 1814-1880 The Cruise of the Mary Rose etext21518 Dennis, C. J. (Clarence James), 1876-1938 The Glugs of Gosh etext21526 Baum, L. Frank (Lyman Frank), 1856-1919 The Master Key, an Electrical Fairy Tale Founded Upon the Mysteries of Electricity etext21566 Oldroyd, Osborn H. (Osborn Hamiline), 1842-1930 The Good Old Songs We Used to Sing, '61 to '65 etext21596 Various The American Architect and Building News, Vol. 27, Jan-Mar, 1890 etext21635 Hueston, Ethel, 1887- Prudence Says So etext21646 Windsor, William, 1857- How to Become Rich etext21653 Jaques-Dalcroze, Emile The Eurhythmics of Jaques-Dalcroze etext21657 Moorhouse, Hopkins Deep Furrows etext21673 Jääskeläinen, Kaapro, 1862-1932 Iloisia juttuja III etext21763 Ray, Anna Chapin, 1865-1945 The Brentons etext21785 Barnes, William Poems of Rural Life in the Dorset Dialect etext21935 Lang, Andrew, 1844-1912 Prince Prigio etext21936 London, Jack, 1876-1916 Theft etext22019 Ouida, 1839-1908 Wisdom, Wit, and Pathos of Ouida etext22049 Jusserand, Jean Jules A Literary History of the English People etext22054 Noailles, Anna Elisabeth de Brancovan, comtesse de, 1876-1933 Les vivants et les morts etext22087 Famous, Howard B. Hazel Squirrel and Other Stories etext22100 Keifer, Joseph Warren, 1836-1932 Slavery and Four Years of War, Vol. 1-2 etext22123 Raabe, Wilhelm, 1831-1910 Zum wilden Mann etext22147 Goodsell, Daniel A. Peter the Hermit etext22192 Roch, Éline Ce que vaut une femme etext22219 Howells, William Dean, 1837-1920 The Flight of Pony Baker etext22316 Blackmore, R. D. (Richard Doddridge), 1825-1900 Frida, or, The Lover's Leap, A Legend Of The West Country etext22322 Tennyson, A. B. S. (Alfred Browning Stanley), 1878- A Legend of Old Persia and Other Poems etext22337 Florian, M. History of the Moors of Spain etext22346 Fyfe, Horace Brown, 1918-1997 Exile etext22347 Hughes, Vincent Through Canal-Land in a Canadian Canoe etext22371 Merriam, George Spring, 1843-1914 The Chief End of Man etext22389 Lessing, Gotthold Ephraim, 1729-1781 Minna von Barnhelm etext22414 Baerlein, Henry, 1875-1960 The Birth of Yugoslavia, Volume 1 etext22428 Wallace, Alfred Russel, 1823-1913 Contributions to the Theory of Natural Selection etext22436 Hope, Anthony, 1863-1933 The Prisoner of Zenda etext22448 Cather, Willa Sibert, 1873-1947 O Pioneers! etext22487 Orr, Lucinda Lee Journal of a Young Lady of Virginia, 1782 etext22490 Combe, William, 1742-1823 An Heroic Epistle to the Right Honourable the Lord Craven (3rd Ed.) etext22491 Marlys, Jean Hoe ik een week te Fez doorbracht etext22495 etext22505 Guidi, Tommasina Riconciliazione etext22519 Howells, William Dean, 1837-1920 Christmas Every Day and Other Stories etext22523 etext22586 Oakey, Daniel History of the Second Massachusetts Regiment of Infantry: Beverly Ford. etext22749 Burn Murdoch, W. G. (William Gordon), 1862-1939 From Edinburgh to India & Burmah etext22771 Jennings, Robert Cattle and Their Diseases etext22794 Runciman, Walter, 1847-1937 The Shellback's Progress etext22812 etext22833 Lampman, Archibald, 1861-1899 Alcyone etext22913 Coffin, Charles Carleton, 1823-1896 Winning His Way etext22915 Levinger, Elma Ehrlich The New Land etext22927 Various The Atlantic Monthly, Volume 18, No. 105, July 1866 etext23001 Chaplin, Heman White, 1847-1924 By The Sea etext23012 Harris, Frank, 1856-1931 Elder Conklin etext23050 Kingston, William Henry Giles, 1814-1880 Peter Biddulph etext23073 Kingston, William Henry Giles, 1814-1880 Villegagnon etext23088 Beesley, Lawrence, 1877-1967 The Loss of the S. S. Titanic etext23114 Walton, Amy, 1848-1899 Our Frank etext23151 Turgenev, Ivan Sergeevich, 1818-1883 Luutnantti Jergunovin juttu etext23227 Aucassin and Nicolette etext23255 Catherwood, Mary Hartwell, 1847-1902 A British Islander etext23281 Dorset, Catherine Ann Turner, 1750?-1817? The Peacock 'At Home:' etext23296 Lockhart, Caroline, 1870-1962 The Fighting Shepherdess etext23328 Burnett, Frances Hodgson, 1849-1924 Esmeralda etext23341 Menant, Delphine, 1850- De monumenten van den Girnar etext23359 Aldrich, Thomas Bailey, 1836-1907 Quite So etext23369 Bacon, Josephine Dodge Daskam, 1876-1961 Mrs. Dud's Sister etext23398 Anonymous Infant's Cabinet of Birds & Beasts etext23461 Auerbach, Berthold, 1812-1882 Vilun-ihana etext23472 etext23515 Page, Thomas Nelson, 1853-1922 The Spectre In The Cart etext23587 Devol, George H., 1829-1903 Forty Years a Gambler on the Mississippi etext23597 Tennyson, Alfred Tennyson, Baron, 1809-1892 Beauties of Tennyson etext23718 Carroll, Lewis, 1832-1898 Through the Looking-Glass etext23719 The Gospel According to St. Matthew etext23730 Hendryx, James B. (James Beardsley), 1880-1963 The Promise etext23776 R. H. (Robert Howlett) The School of Recreation (1684 edition) etext23790 Campbell, John Wood, 1910-1971 The Ultimate Weapon etext23802 Various The Arena etext23809 Janvier, Thomas A. (Thomas Allibone), 1849-1913 An Idyl Of The East Side etext23812 Kalff, Gerrit, 1856-1923 Geschiedenis der Nederlandsche letterkunde, Deel I etext23866 Anonymous The House That Jack Built, a Game of Forfeits etext24010 France, Anatole, 1844-1924 Dieux ont soif. English etext24011 Turner, Nancy Byrd, 1880- Zodiac Town etext24017 Freud, Sigmund, 1856-1939 Das Motiv der Kästchenwahl etext24085 Holt, Emily Sarah, 1836-1893 Earl Hubert's Daughter etext24103 Trollope, Anthony, 1815-1882 Cousin Henry etext24170 Unknown Chang Yan Dao etext24193 Ruan, Dacheng, 1587-1646 燕子箋 etext24256 Newman, John Henry, 1801-1890 Parochial and Plain Sermons, Vol. VII (of 8) etext24358 Various Punch, or the London Charivari, Vol. 146, March 25, 1914 etext24363 Henley, William Ernest, 1849-1903 The Song of the Sword etext24404 Wainwright, Jonathan Mayhew, 1792-1854 A Sermon Preached on the Anniversary of the Boston Female Asylum for Destitute Orphans, September 25, 1835 etext24491 Various The Continental Monthly, Vol. 6, No. 6, December 1864 etext24557 Optic, Oliver, 1822-1897 The Boat Club etext24558 Schmitz, James H., 1911-1981 Watch the Sky etext24563 The Best of the World's Classics, Restricted to Prose, Vol. VII (of X)—Continental Europe I etext24584 Crawford, F. Marion (Francis Marion), 1854-1909 Man Overboard! etext24599 Meade, L. T., 1854-1914 A Young Mutineer etext24602 Collingwood, Harry, 1851-1922 Through Veld and Forest etext24606 Irwin, Richard B. (Richard Biddle), 1839-1892 History of the Nineteenth Army Corps etext24678 Kingston, William Henry Giles, 1814-1880 The Three Commanders etext24712 Haynes, George Edmund, 1880-1960 The Negro at Work in New York City etext24760 Various Aunt Kitty's Stories etext24761 Sheridan, Richard Brinsley, 1751-1816 The Rivals etext24776 Various The Brochure Series of Architectural Illustration, Vol. 01, No. 12, December 1895 etext24798 America First etext24808 Wood, William Charles Henry, 1864-1947 All Afloat etext24824 Carvalho, Manuel Emílio Gomes de, 1859-1919 Os deputados brasileiros nas Côrtes Geraes de 1821 etext24829 Hamilton, Frederick W. (Frederick William), 1860-1940 The Uses of Italic etext24833 Machado, Cirilo Volkmar, 1748-1823 Nova academia de pintura etext24836 Becke, Louis, 1855-1913 Rodman The Boatsteerer And Other Stories etext24873 Montgomery, L. M. (Lucy Maud), 1874-1942 Lucy Maud Montgomery Short Stories, 1896 to 1901 etext24885 Various The Atlantic Monthly, Volume 14, No. 85, November, 1864 etext24903 Speed, Nell, 1878-1913 Molly Brown's Senior Days etext24943 Various The Nursery, December 1873, Vol. XIV. No. 6 etext24950 Bradford, William, 1590-1657 Bradford's History of 'Plimoth Plantation' etext24951 Doyle, Arthur Conan, Sir, 1859-1930 The War in South Africa etext25014 Flaubert, Gustave, 1821-1880 Bouvard and Pécuchet etext25020 etext25036 Sagard, Gabriel L'histoire du Canada etext25057 Becke, Louis, 1855-1913 The Adventure Of Elizabeth Morey, of New York etext25073 Atkinson, J. Beavington, 1822-1886 Overbeck etext25102 Malot, Hector, 1830-1907 Nobody's Boy etext25141 Tozer, A. W. (Aiden Wilson), 1897-1963 The Pursuit of God etext25178 Carcano, Giulio, 1812-1884 Damiano etext25211 etext25301 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Danny Meadow Mouse etext25338 Jevons, F. B. (Frank Byron), 1858-1936 The Idea of God in Early Religions etext25383 Howells, William Dean, 1837-1920 Boy Life etext25417 Li, He, 790-816 李賀詩選 etext25429 Fenn, George Manville, 1831-1909 The Peril Finders etext25433 etext25436 Couceiro, Luís Uma scena conjugal etext25484 May, Sophie, 1833-1906 Captain Horace etext25525 Poe, Edgar Allan, 1809-1849 The Works of Edgar Allan Poe, The Raven Edition etext25547 Morris, William, 1834-1896 The Sundering Flood etext25603 McCarthy, Carlton, 1847- Detailed Minutiae of Soldier life in the Army of Northern Virginia, 1861-1865 etext25647 Wilford, Florence, 1836- Holiday Tales etext25697 Testa, Carlos, 1823-1891 Lord Palmerston: a opinião e os factos etext25763 Gambier-Parry, Ernest, 1853-1936 'Murphy' etext25787 Sayler, H. L. (Harry Lincoln), 1863- On the Edge of the Arctic etext25789 Robinson, A. Mary F. (Agnes Mary Frances), 1857-1944 Emily Brontë etext25808 Carlyle, Thomas, 1795-1881 History Of Friedrich II. of Prussia etext25811 Crane, Laura Dent The Automobile Girls in the Berkshires etext25818 Collingwood, Harry, 1851-1922 The First Mate etext25832 Various Punch, or the London Charivari, Vol. 98 January 11, 1890 etext25875 Footner, Hulbert, 1879-1944 The Woman from Outside etext25901 The New Testament etext25951 Bairnsfather, Bruce, 1888?-1959 Fragments From France etext25970 Darlington, Richard A Full Description of the Great Tornado in Chester County, Pa. etext26005 Various Armour's Monthly Cook Book, Volume 2, No. 12, October 1913 etext26102 Sevens, Theodoor, 1848-1927 Reisjes in Zuid-Vlaanderen etext26114 Vogt, Paul L. (Paul Leroy), 1878- Church Cooperation in Community Life etext26117 Anonymous Sketches of the Fair Sex, in All Parts of the World etext26139 Ontario. Ministry of Education Ontario Teachers' Manuals: Nature Study etext26151 Candee, Helen Churchill Hungerford, Mrs., 1861-1949 The Tapestry Book etext26164 Child-Land etext26175 Halsey, Harlan Page, 1839?-1898 A Successful Shadow etext26217 Barrett, James Francis, 1888-1934 The Loyalist etext26245 Thucydides, 455? BC-395 BC The History of the Peloponnesian War etext26248 Dickinson, Emily, 1830-1886 Life: Poem XXI etext26251 Unknown Magna Carta etext26256 Curtis, Alice Turner A Little Maid of Province Town etext26275 Snider, Denton Jaques, 1841-1925 Homer's Odyssey etext26323 The Suffrage Cook Book etext26380 etext26433 Various Blackwood's Edinburgh Magazine, Volume 62, Number 385. November, 1847. etext26470 Milne, A. A. (Alan Alexander), 1882-1956 The Red House Mystery etext26497 Leslie, Madeline, 1815-1893 Bertie and the Gardeners etext26510 Michel, Ernest, 1837- À travers l'hémisphère sud, ou Mon second voyage autour du monde etext26604 Ballou, Maturin Murray, 1820-1895 Pearls of Thought etext26605 Silva, Luiz Augusto Rebello da, 1822-1871 A Casa dos Fantasmas - Volume II etext26621 Barlow, Glyn The Story of Madras etext26648 Dujardin, Edouard, 1861-1949 Les lauriers sont coupés etext26716 Ruskin, John, 1819-1900 The Crown of Wild Olive etext26795 Jarvis, E. K. Get Out of Our Skies! etext26822 Fagan, 1702-1755 La Pupille etext26894 Reid, Mayne, 1818-1883 Boy tar. French etext26899 Various Notes and Queries, Number 79, May 3, 1851 etext26924 Stidger, William L. (William Le Roy), 1885-1949 Flash-lights from the Seven Seas etext26991 Bate, Henry A Short System of English Grammar etext27026 Wang, Shizhen, 1526-1590 豔異編 etext27038 Lebert, Marie Le Livre 010101, Tome 2 (1998-2003) etext27040 Lebert, Marie Le Projet Gutenberg (1971-2005) etext27079 Yates, Dornford, 1885-1960 Jonah and Co. etext27093 Baker, Willard F. The Boy Ranchers etext27097 Baker, Willard F. The Boy Ranchers in Death Valley etext27146 American Tract Society Select Temperance Tracts etext27148 Shan, Ben 蕉葉帕 etext27186 Margueritte, Paul, 1860-1918 Jours d'épreuve etext27203 Coué, Emile, 1857-1926 Maîtrise de soi-même par l'autosuggestion consciente. English etext27225 Warner, Anne, 1869-1913 A Woman's Will etext27316 Moody, Dwight Lyman, 1837-1899 That Gospel Sermon on the Blessed Hope etext27317 Butler, Ellis Parker, 1869-1937 The Cheerful Smugglers etext27330 Anonymous 綠牡丹 etext27360 Various Punch or the London Charivari, September 9, 1914 etext27374 Chambers, Robert W. (Robert William), 1865-1933 A Young Man in a Hurry etext27390 Carvalho, Xavier de, 1862-1919 Apotheose Camoneana etext27397 Verne, Jules, 1828-1905 De wonderstraal etext27410 etext27424 Belloc, Hilaire, 1870-1953 Cautionary Tales for Children etext27466 Quibell, James Edward, 1867-1935 El Kab etext27487 Couperus, Louis, 1863-1923 Jan en Florence etext27568 McDougall, Henriette, 1817-1886 Sketches of Our Life at Sarawak etext27573 Montesquieu, Charles de Secondat, baron de, 1689-1755 Esprit des lois etext27615 Phillips, Ethel Calvert Christmas Light etext27692 Abbott, Jacob, 1803-1879 Romulus etext27718 Dyer, Gertrude P. Parables from Flowers etext27799 De Amicis, Edmondo, 1846-1908 Holland, v. 1 (of 2) etext27840 Dombre, Roger, 1859-1914 Un tuteur embarrassé etext27848 Brownlie, John Hymns of the Greek Church etext27919 Vigoni, Giuseppe, 1846-1914 Abissinia etext27970 Mercier, Ernest, 1840-1907 Histoire de l'Afrique Septentrionale (Berbérie) depuis les temps les plus reculés jusqu'à la conquête française (1830) ( Volume I) etext27998 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The New Tenant etext28007 Various Little Folks (December 1884) etext28060 West, William Benjamin The Fight for the Argonne etext28067 Smith, J. Allen (James Allen), 1860-1926 The Spirit of American Government etext28169 Guizot, M. (François), 1787-1874 Memoirs To Illustrate The History Of My Time etext28211 Clouard, Maurice, 1857- Alfred de Musset et George Sand etext28224 Hume-Griffith, M. E. Achter den Sluier in Perzië en Turksch Arabië etext28293 Bailey, Arthur Scott, 1877-1949 The Tale of Jolly Robin etext28295 Chambers, Robert W. (Robert William), 1865-1933 The Maids of Paradise etext28341 Verne, Jules, 1828-1905 Da terra à lua etext28389 Butler, Ellis Parker, 1869-1937 Goat-Feathers etext28417 Various Harper's Young People, March 23, 1880 etext28420 Vasari, Giorgio, 1511-1574 Lives of the Most Eminent Painters Sculptors and Architects etext28440 Chambers, Robert W. (Robert William), 1865-1933 The Dark Star etext28464 Luther, Martin, 1483-1546 Epistle Sermons, Vol. II etext28497 Guerber, H. A. (Hélène Adeline), 1859-1929 Myths of the Norsemen etext28517 Westcott, Frank N. (Frank Noyes) Hepsey Burke etext28519 Delly, pseud. L'Exilee etext28539 Linck, Josef Om Lars Johansson (Lucidor den olycklige) etext28564 Meade, L. T., 1854-1914 A Bunch of Cherries etext28570 Dolmage, Cecil Goodrich Julius, -1908 Astronomy of To-day etext28647 Hernhuter, Albert Texas Week etext28681 Kitchiner, William, 1775?-1827 The Cook's Oracle; and Housekeeper's Manual etext28731 Jacobs, W. W. (William Wymark), 1863-1943 The Monkey's Paw etext28756 Equiano, Olaudah, 1745-1797 The Interesting Narrative of the Life of Olaudah Equiano, etext28795 Pyle, Howard, 1853-1911 Otto of the Silver Hand etext28861 Stratemeyer, Edward, 1862-1930 Dave Porter in the Far North etext28978 Fernández y González, Manuel, 1821-1888 El infierno del amor etext29008 Smith, F. Irene Burge (Frances Irene Burge), 1826-1900 The Elm Tree Tales etext29030 Wilson's Tales of the Borders and of Scotland, Volume VI etext29059 Cummings, Ray, 1887-1957 The World Beyond etext29093 Van Loan, Charles E. (Charles Emmett), 1876-1919 Old Man Curry etext29102 Gerstäcker, Friedrich, 1816-1872 Nach Amerika! Fünfter Band etext29135 Kipling, Rudyard, 1865-1936 With The Night Mail etext29141 etext29231 Noah, M. M. (Mordecai Manuel), 1785-1851 She Would Be a Soldier etext29261 Thynne, Francis, 1545?-1608 Animaduersions uppon the annotacions and corrections of some imperfections of impressiones of Chaucer's workes etext29264 De Gurowski, Adam G., count, 1805-1866 Diary from November 12, 1862, to October 18, 1863 etext29285 Chapelle, Howard I. (Howard Irving), 1901-1975 The Migrations of an American Boat Type etext29307 Various North American Medical and Surgical Journal, Vol. 2, No. 3, July, 1826 etext29312 Burroughs, John, 1837-1921 Camping with President Roosevelt etext29443 Noble, Henry George Stebbins, 1859- The New York Stock Exchange in the Crisis of 1914 etext29475 Bates, Harry, 1900-1981 Under Arctic Ice etext29498 Kummer, Frederic Arnold, 1873-1943 The Film of Fear etext29537 Various Le Tour du Monde; Île d'Elbe etext29549 Hugo, Victor, 1802-1885 Le Roi s'amuse etext29576 Espanet, Alexis, 1811-1886 Tratado metódico y practico de Materia Médica y de Terapéutica etext29591 Day, Dee Getting to know Spain etext29605 Various Blackwood's Edinburgh Magazine — Volume 57, No. 351, January 1845 etext29607 Various Astounding Stories of Super-Science, March 1930 etext29659 Hedrick, U. P., 1870-1951 Manual of American Grape-Growing etext29674 Hotchkiss, Willard E. (Willard Eugene), 1874- Higher Education and Business Standards etext29705 Sherman, Harold Morrow, 1898-1987 Interference and Other Football Stories etext29815 Jellinek, Georg, 1851-1911 Erklärung der Menschen- und Bürgerrechte. English etext29862 Stephens, Ann S. (Ann Sophia), 1810-1886 The Old Countess; or, The Two Proposals etext29867 Various Notes and Queries, Index of Volume 5, January-June, 1852 etext29876 Sheckley, Robert, 1928-2005 Death Wish etext29921 Taylor, Benjamin Storyology etext29922 Various Le Tour du Monde; La Russie, race colonisatrice etext30054 Stewart, Charles Alexander A Virginia Village etext30055 Berkebile, Donald H. The 1893 Duryea Automobile In the Museum of History and Technology etext30161 Bourget, Paul, 1852-1935 A agua profunda etext30180 Brinton, Selwyn, 1859-1940 Perugino etext30188 Ford, Ford Madox, 1873-1939 The Fifth Queen etext30199 Derleth, August William, 1909-1971 McIlvaine's Star etext30211 Rizal, José, 1861-1896 Au Pays des Moines etext30242 Richmond, Leigh, 1911-1996 Prologue to an Analogue etext30252 Orton, Arthur W. The Four-Faced Visitors of Ezekiel etext30260 etext30271 Murphy, Arthur, 1727-1805 The Grecian Daughter etext30292 Gregg, Ellery Clark, 1899- How to Tie Flies etext30311 Berryman, John, 1919-1988 Modus Vivendi etext30427 Ashwell, Pauline, 1928- The Lost Kafoozalum etext30436 Douglas, Amanda Minnie, 1831-1916 Hope Mills etext30498 Debenham, Mary H. Two Maiden Aunts etext30546 Lewis, John, 1858-1935 George Brown etext30592 Schürmann, Joseph J., 1857- Achter de schermen etext30595 Various Notes and Queries, Number 216, December 17, 1853 etext30599 Noyes, Alfred, 1880-1958 Collected Poems etext30629 Ritchie, Lily Munsell Chicken Little Jane on the Big John etext30632 United States. Congress. House. Committee on Homeland Security Homeland Security Act of 2002 etext30719 Aristophanes, 446? BC-385? BC Νεφέλαι etext30762 Freud, Sigmund, 1856-1939 Der Moses des Michelangelo etext30763 Hall, James R. Am I Still There? etext30924 Everts, Truman Thirty-Seven Days of Peril etext30939 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition, Vol. XII (of 25) etext31055 Edwards, William James, 1869- Twenty-Five Years in the Black Belt etext31065 Optic, Oliver, 1822-1897 Try Again etext31066 Pardo de Tavera, T. H. (Trinidad Hermenegildo), 1857-1925 El legado del ignorantismo etext31079 Alfieri, Vittorio, 1749-1803 Agide etext31117 Pitou, Louis-Ange, 1767-1846 Le chanteur parisien etext31126 Shakespeare, William, 1564-1616 Een Midzomernachtdroom etext31252 Heady, Morrison, 1829-1915 The Red Moccasins etext31262 Farmer, Philip José, 1918-2009 Rastignac the Devil etext31268 Crummell, Alexander, 1819-1898 Civilization the Primal Need of the Race etext31277 Smith, C. Alphonso (Charles Alphonso), 1864-1924 Anglo-Saxon Grammar and Exercise Book etext31408 Wells, Joseph, 1855-1929 The Oxford Degree Ceremony etext31491 White, John A. The Baculum in the Chipmunks of Western North America etext31568 De Quincey, Thomas, 1785-1859 Walladmor: etext31578 Green, Anna Katharine, 1846-1935 Room Number 3 etext31587 Del Rey, Lester, 1915-1993 Pursuit etext31601 Wolf, Mari An Empty Bottle etext31633 Lebert, Marie El Proyecto Gutenberg (1971-2009) etext31637 Palacio Valdés, Armando, 1853-1938 La Fe etext31699 Mulford, Clarence E. Bring Me His Ears etext31701 Bone, Jesse F. (Jesse Franklin), 1916-1986 Noble Redman etext31823 Newell, Robert H. The Orpheus C. Kerr Papers. Series 3 etext31831 Castlemon, Harry, 1842-1915 Marcy The Refugee etext31865 Karkavitsas, Andreas, 1865-1922 Λόγια της Πλώρης etext31872 Browne, G. F. (George Forrest), 1833-1930 The Christian Church in These Islands before the Coming of Augustine etext31891 Ford, Paul Leicester, 1865-1902 Essays on the Constitution of the United States etext31900 Morris, Charles, 1833-1922 Historic Tales, Vol. XIII (of 15), Part I etext31908 Various With the World's Great Travellers, Volume 1 etext31925 Ritchie, J. Ewing (James Ewing), 1820-1898 The London Pulpit etext31926 etext31957 Unknown Lectures on Horsemanship etext32018 Merz, Robert L. Jaw Musculature of the Mourning and White-winged Doves etext32032 Dick, Philip K., 1928-1982 Second Variety etext32064 Hauff, Wilhelm, 1802-1827 The Wine-ghosts of Bremen etext32084 Roosevelt, Wyn, 1870- Frontier Boys in the South Seas etext32115 Brown, Alice, 1857-1948 Rose MacLeod etext32140 Legler, John M. A New Snake of the Genus Geophis From Chihuahua, Mexico etext32207 Castle, Arnold A Mixture of Genius etext32216 Spiegel, E. The Adventures of the U-202 etext32289 Trafton, Adeline, 1845- An American Girl Abroad etext32297 Perrier, Edmond La philisophie zoologique avant Darwin etext32329 Graydon, William Murray, 1864-1946 Guy in the Jungle etext32340 Lever, Charles James, 1806-1872 The O'Donoghue etext32387 Pimentel, Alberto, 1849-1925 Poetas do Minho I - João Penha etext32416 Miller, Walter M., 1923-1996 Way of a Rebel etext32465 Marsh, George P., 1801-1882 The Whelps of the Wolf etext32477 Gosse, Edmund, 1849-1928 The Future of English Poetry etext32489 Carpenter, Flora L., 1880- Stories Pictures Tell etext32500 etext32529 Rhoides, Emmanouel D., 1835-1904 Διηγήματα etext32550 Cathal, Michael Rich Living etext32554 O'Connor, John Lawrence History of the Kentucky Derby, 1875-1921 etext32556 Raymond, Evelyn, 1843-1910 Dorothy's Tour etext32585 Romagnoli, Ettore Minerva e lo scimmione etext32644 Labriola, Antonio, 1843-1904 Essays on the Materialistic Conception of History etext32683 Williams, Robert Moore, 1907-1977 The Next Time We Die etext32692 Lever, Charles James, 1806-1872 A Day's Ride etext53 Library of Congress Library of Congress Workshop on Etexts etext100 Shakespeare, William, 1564-1616 The Complete Works of William Shakespeare etext139 Doyle, Arthur Conan, Sir, 1859-1930 The Lost World etext237 Propertius, Sextus, ca. 50 BCE-16 BCE Sexti Properti Carmina etext377 Barker, Nettie Garmer Kansas Women in Literature etext386 Stevenson, Robert Louis, 1850-1894 Virginibus Puerisque and Other Papers etext410 Fox, John, 1863-1919 Hell Fer Sartain and Other Stories etext424 Lindsay, Vachel, 1879-1931 General William Booth Enters into Heaven : and other poems etext445 Le Bon, Gustave, 1841-1931 The Crowd; study of the popular mind etext509 Le Fanu, Joseph Sheridan, 1814-1873 The Purcell Papers — Volume 1 etext572 Potter, Beatrix, 1866-1943 The Great Big Treasury of Beatrix Potter etext612 Japan The Constitution of Japan, 1946 etext649 Unknown Ancient Poems, Ballads, and Songs of the Peasantry of England etext690 Russell, Bertrand, 1872-1970 Proposed Roads to Freedom etext709 MacDonald, George, 1824-1905 The Princess and Curdie etext746 London, Jack, 1876-1916 Burning Daylight etext855 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Clocks etext893 Gibbon, Edward, 1737-1794 History of the Decline and Fall of the Roman Empire — Volume 4 etext935 Smiles, Samuel, 1812-1904 Self help; with illustrations of conduct and perseverance etext965 Dumas père, Alexandre, 1802-1870 The Black Tulip etext1040 Robinson, Edwin Arlington, 1869-1935 The Three Taverns etext1164 London, Jack, 1876-1916 The Iron Heel etext1199 An Anthology of Australian Verse etext1210 Hearn, Lafcadio, 1850-1904 Kwaidan: Stories and Studies of Strange Things etext1212 Austen, Jane, 1775-1817 Love and Freindship [sic] etext1247 Millay, Edna St. Vincent, 1892-1950 Second April etext1289 Dickens, Charles, 1812-1870 Three Ghost Stories etext1312 Harte, Bret, 1836-1902 Selected Stories of Bret Harte etext1356 Bullen, Frank T., 1857-1915 The Cruise of the Cachalot Round the World After Sperm Whales etext1366 Reade, Charles, 1814-1884 The Cloister and the Hearth etext1434 Meynell, Alice Christiana Thompson, 1847-1922 Essays etext1488 Brooks, Elbridge Streeter, 1846-1902 The true story of Christopher Columbus, called the Great Admiral etext1601 Rinehart, Mary Roberts, 1876-1958 The Breaking Point etext1618 Synge, J. M. (John Millington), 1871-1909 In Shadow of the Glen etext1660 Balzac, Honoré de, 1799-1850 Scenes from a Courtesan's Life etext1663 Foster, Herbert Darling, 1863-1927 Webster's Seventh of March Speech and the Secession Movement, 1850 etext1706 etext1746 Lang, Andrew, 1844-1912 New Collected Rhymes etext1763 Davis, Richard Harding, 1864-1916 The Nature Faker etext1808 Davis, Richard Harding, 1864-1916 The Log of the Jolly Polly etext1870 Saki, 1870-1916 Reginald in Russia and other sketches etext1962 Sidney, Philip, Sir, 1554-1586 A Defence of Poesie and Poems etext2003 Lewis, C. S. (Clive Staples), 1898-1963 Spirits in bondage; a cycle of lyrics etext2020 Burroughs, Edgar Rice, 1875-1950 Tarzan the Terrible etext2035 Stories by English Authors: The Orient (Selected by Scribners) etext2084 Butler, Samuel, 1835-1902 The Way of All Flesh etext2090 Tao, Qian, 372?-427 Peach Blossom Shangri-la: Tao Hua Yuan Ji etext2092 Adams, Samuel, 1722-1803 The Writings of Samuel Adams - Volume 2 etext2101 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 01 etext2121 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 21 etext2188 Rilke, Rainer Maria, 1875-1926 Die Aufzeichnungen des Malte Laurids Brigge etext2261 Shakespeare, William, 1564-1616 Romeo and Juliet etext2270 Shakespeare, William, 1564-1616 Shakespeare's First Folio etext2289 Ibsen, Henrik, 1828-1906 Rosmersholm etext2293 Larcom, Lucy, 1824-1893 A New England girlhood, outlined from memory (Beverly, MA) etext2316 Allen, James Lane, 1849-1925 The Choir Invisible etext2347 Doyle, Arthur Conan, Sir, 1859-1930 The Adventure of the Dying Detective etext2389 Sabatini, Rafael, 1875-1950 Bardelys the Magnificent; being an account of the strange wooing pursued by the Sieur Marcel de Saint-Pol, marquis of Bardelys... etext2418 Higginson, Thomas Wentworth, 1823-1911 Oldport Days etext2419 Dumas fils, Alexandre, 1824-1895 La Dame aux Camélias etext2429 London, Jack, 1876-1916 Lost Face etext2462 Pérez Galdós, Benito, 1843-1920 Dona Perfecta etext2474 Darlington, Edgar B. P. The Circus Boys on the Flying Rings : or, Making the Start in the Sawdust Life etext2484 Plutarch, 46-120? The Boys' and Girls' Plutarch etext2523 Hugo, Victor, 1802-1885 The Memoirs of Victor Hugo etext2556 Harte, Bret, 1836-1902 Mr. Jack Hamlin's Mediation etext2648 Thackeray, William Makepeace, 1811-1863 George Cruikshank etext2655 Lincoln, Abraham, 1809-1865 The Writings of Abraham Lincoln — Volume 3 etext2697 Holmes, Oliver Wendell, 1809-1894 The Guardian Angel etext2719 James, Henry, 1843-1916 Greville Fane etext2727 Haggard, Henry Rider, 1856-1925 Allan's Wife etext2843 Thackeray, William Makepeace, 1811-1863 Little Travels and Roadside Sketches etext2853 Sienkiewicz, Henryk, 1846-1916 Quo Vadis: a narrative of the time of Nero etext2866 Ainsworth, William Harrison, 1805-1882 Windsor Castle etext2894 Botev, Khristo, 1848-1876 Satirical Prose etext2960 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 10: under the Leads etext3004 Johnson, Allen, 1870-1931 Jefferson and His Colleagues; a chronicle of the Virginia dynasty etext3016 Gilman, Charlotte Perkins, 1860-1935 What Diantha Did etext3132 Warner, Charles Dudley, 1829-1900 In the Wilderness etext3139 Yonge, Charlotte Mary, 1823-1901 The Dove in the Eagle's Nest etext3150 Butler, Joseph, 1692-1752 Human Nature and Other Sermons etext3155 Haggard, Henry Rider, 1856-1925 She etext3171 Twain, Mark, 1835-1910 In Defence of Harriet Shelley etext3182 Twain, Mark, 1835-1910 Some Rambling Notes of an Idle Excursion etext3232 Moorman, Frederic William, 1872-1919 Songs of the Ridings etext3256 Maclaren, Ian, 1850-1907 Books and Bookmen etext3257 Wilcox, Ella Wheeler, 1855-1919 New Thought Pastels etext3291 Corwin, Edward Samuel, 1878-1963 John Marshall and the Constitution; a chronicle of the Supreme court etext3342 Sue, Eugène, 1804-1857 The Wandering Jew — Volume 04 etext3351 Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773 Letters to His Son on the Art of Becoming a Man of the World and a Gentleman, 1746-47 etext3376 Howells, William Dean, 1837-1920 The Landlord at Lion's Head — Volume 2 etext3387 Howells, William Dean, 1837-1920 Confessions of a Summer Colonist (from Literature and Life) etext3397 Howells, William Dean, 1837-1920 Roundabout to Boston (from Literary Friends and Acquaintance) etext3487 Shaw, Bernard, 1856-1950 Augustus Does His Bit etext3505 Human Genome Project Human Genome Project, Chromosome Number 05 etext3513 Human Genome Project Human Genome Project, Chromosome Number 13 etext3520 Human Genome Project Human Genome Project, Chromosome Number 20 etext3522 Human Genome Project Human Genome Project, Chromosome Number 22 etext3569 Wairy, Louis Constant, 1778-1845 Recollections of the Private Life of Napoleon — Volume 02 etext3586 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 06 etext3625 etext3685 Loti, Pierre, 1850-1923 Egypt (La Mort de Philae) etext3797 Wells, H. G. (Herbert George), 1866-1946 In the Days of the Comet etext3807 Darwin, Charles, 1809-1882 The Different Forms of Flowers on Plants of the Same Species etext3817 Galsworthy, John, 1867-1933 To Let etext3910 Rousseau, Jean-Jacques, 1712-1778 The Confessions of J. J. Rousseau — Volume 10 etext3924 Droz, Gustave, 1832-1895 Monsieur, Madame, and Bebe — Volume 02 etext3943 Feuillet, Octave, 1821-1890 Monsieur De Camors — Volume 1 etext3948 Vigny, Alfred de, 1797-1863 Cinq Mars — Volume 2 etext3957 Halévy, Ludovic, 1834-1908 L'Abbe Constantin — Complete etext3990 Malot, Hector, 1830-1907 Conscience — Complete etext3999 Souvestre, Émile, 1806-1854 An Attic Philosopher in Paris — Complete etext4002 Gaboriau, Émile, 1832-1873 The Honor of the Name etext4009 Patmore, Coventry Kersey Dighton, 1823-1896 Victories of Love etext4017 Leblanc, Maurice, 1864-1941 The Hollow Needle; Further adventures of Arsene Lupin etext4063 Smith, Sydney, 1771-1845 Peter Plymley's Letters, and selected essays etext4148 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 28: April/May 1664 etext4149 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 29: June/July 1664 etext4213 Colby, Charles W. (Charles William), 1867-1955 The Founder of New France : A chronicle of Champlain etext4226 Mühlbach, L. (Luise), 1814-1873 Empress Josephine etext4241 Unknown Se-quo-yah; from Harper's New Monthly, V.41 etext4278 Besant, Annie Wood, 1847-1933 An Introduction to Yoga etext4306 Gissing, George, 1857-1903 Veranilda etext4344 Pushkin, Aleksandr Sergeevich, 1799-1837 Marie; a story of Russian love etext4363 Nietzsche, Friedrich Wilhelm, 1844-1900 Beyond Good and Evil etext4395 Synge, J. M. (John Millington), 1871-1909 In Wicklow and West Kerry etext4446 Meredith, George, 1828-1909 The Adventures of Harry Richmond — Volume 3 etext4455 Meredith, George, 1828-1909 Beauchamp's Career — Volume 3 etext4507 Allen, James, 1864-1912 As a Man Thinketh etext4532 Appleton, Victor [pseud.] Tom Swift and His Photo Telephone or the Picture That Saved a Fortune etext4568 Bertrand, Huguette Les Visages Du Temps; Poesie etext4642 O'Meara, James, 1825-1903 The Vigilance Committee of 1856 etext4700 Regnard, Jean François, 1655-1709 Unforseen Return etext4707 Curwood, James Oliver, 1878-1927 The Valley of Silent Men etext4727 Holmes, Oliver Wendell, 1809-1894 John Lothrop Motley. a memoir — Volume 3 etext4747 Curwood, James Oliver, 1878-1927 The River's End etext4781 Leacock, Stephen, 1869-1944 The Hohenzollerns in America etext4815 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 14: 1568, part I etext4866 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1594 etext4880 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1607b etext4896 Motley, John Lothrop, 1814-1877 Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years' War, 1618-19 etext4900 Motley, John Lothrop, 1814-1877 PG Edition of Netherlands series — Complete etext4913 Lasker, Edward, 1885-1981 Chess and Checkers : the Way to Mastership etext4933 Jaloux, Edmond, 1878-1949 L'Escalier d'Or etext4992 Pyrnelle, Louise Clarke, 1850-1907 Diddie, Dumps, and Tot : Or, Plantation Child-Life etext5017 Van Buren, Martin, 1782-1862 State of the Union Address etext5032 Roosevelt, Theodore, 1858-1919 State of the Union Address etext5113 Banfield, E. J. (Edmund James), 1852-1923 Confessions of a Beachcomber etext5171 Stevens, Henry, 1819-1886 Thomas Hariot, the Mathematician, the Philosopher and the Scholar etext5200 Kafka, Franz, 1883-1924 Metamorphosis etext5205 Davis, Jefferson, 1808-1889 Speeches of the Hon. Jefferson Davis, of Mississippi; delivered during the summer of 1858. etext5213 Film: the Bikini Island ABLE Atomic Test etext5265 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Ball and the Cross etext5290 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 16 etext5301 Duncan, Sara Jeannette, 1862?-1922 The Imperialist etext5330 Dom Rhyme and Reason; a Compilation of Verses, Rhymes and Senses etext5361 Churchill, Winston, 1871-1947 The Inside of the Cup — Volume 06 etext5375 Churchill, Winston, 1871-1947 A Modern Chronicle — Volume 02 etext5387 Churchill, Winston, 1871-1947 The Celebrity, Complete etext5405 Beach, Rex Ellingwood, 1877-1949 The Ne'er-Do-Well etext5415 Hamilton, Anthony, Count, 1646-1720 The Memoirs of Count Grammont — Volume 07 etext5434 Brillat-Savarin, 1755-1826 The Physiology of Taste etext5449 Ebers, Georg, 1837-1898 Uarda : a Romance of Ancient Egypt — Complete etext5550 Ebers, Georg, 1837-1898 In the Fire of the Forge — Volume 08 etext5558 Ebers, Georg, 1837-1898 Margery — Volume 07 etext5564 Ebers, Georg, 1837-1898 Barbara Blomberg — Volume 04 etext5581 Ebers, Georg, 1837-1898 The Burgomaster's Wife — Volume 04 etext5596 Ebers, Georg, 1837-1898 The Story of My Life — Volume 04 etext5676 MacDonald, George, 1824-1905 A Double Story etext5690 Twain, Mark, 1835-1910 The Innocents Abroad — Volume 03 etext5704 Balzac, Honoré de, 1799-1850 The Physiology of Marriage, Part 1 etext5812 Twain, Mark, 1835-1910 Following the Equator, Part 5 etext5815 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Great Impersonation etext5859 Sheridan, Philip Henry, 1831-1888 The Memoirs of General Philip H. Sheridan, Volume II., Part 6 etext5860 Grant, Ulysses S. (Ulysses Simpson), 1822-1885 The Memoirs of General Ulysses S. Grant, Part 1. etext5898 Haggard, Henry Rider, 1856-1925 Jess etext5917 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 15 etext6066 Mundy, Talbot, 1879-1940 King of the Khyber Rifles etext6069 Patchin, Frank Gee, 1861-1925 The Pony Rider Boys in the Ozarks etext6097 Fielding, Henry, 1707-1754 Amelia — Volume 3 etext6100 Porter, Eleanor H. (Eleanor Hodgman), 1868-1920 Pollyanna Grows Up etext6218 Parker, Gilbert, 1862-1932 At the Sign of the Eagle etext6260 Parker, Gilbert, 1862-1932 Donovan Pasha, and Some People of Egypt — Complete etext6268 Parker, Gilbert, 1862-1932 Embers, Volume 1. etext6283 Parker, Gilbert, 1862-1932 The World for Sale, Volume 3. etext6288 Parker, Gilbert, 1862-1932 You Never Know Your Luck; being the story of a matrimonial deserter. Complete etext6347 Brighouse, Harold, 1882-1958 Hobson's Choice etext6367 Chalippe, Father Candide The Life and Legends of Saint Francis of Assisi etext6372 Calderón de la Barca, Pedro, 1600-1681 The Wonder-Working Magician etext6376 Southworth, Emma Dorothy Eliza Nevitte, 1819-1899 Self-Raised etext6443 Frost, William Henry, 1863-1902 The Wagner Story Book etext6445 Brooke, Rupert, 1887-1915 Letters from America etext6452 Masefield, John, 1878-1967 Right Royal etext6464 Taylor, Frederick Winslow, 1856-1915 Shop Management etext6529 etext6569 Mathews, Joanna H. (Joanna Hooe), 1849-1901 Bessie Bradford's Prize etext6584 Brooks, Amy Princess Polly's Gay Winter etext6586 Chappell, George S. (George Shepard), 1877-1946 The Cruise of the Kawa etext6598 etext6618 Wilcox, Ella Wheeler, 1855-1919 Poems of Purpose etext6703 Shuman, Carrie V. Favorite Dishes : a Columbian Autograph Souvenir Cookery Book etext6734 Cooper, Elizabeth, 1877-1945 Drusilla with a Million etext6754 Bailey, Arthur Scott, 1877-1949 The Tale of Brownie Beaver etext6802 Banks, Louis Albert, 1855-1933 White Slaves; or, the Oppression of the Worthy Poor etext6814 Garis, Howard Roger, 1873-1962 Curlytops at Uncle Frank's Ranch etext6841 etext6863 Wood, William Charles Henry, 1864-1947 The Passing of New France : a Chronicle of Montcalm etext6870 Wilson, Woodrow, 1856-1924 Why We Are at War : Messages to the Congress January to April 1917 etext6935 Collins, A. Frederick (Archie Frederick), 1869- The Radio Amateur's Hand Book etext6976 Stock, Eugene, 1836-1928 Metlakahtla and the North Pacific Mission etext6991 Porter, Eleanor H. (Eleanor Hodgman), 1868-1920 Across the Years etext7096 Budge, E. A. Wallis (Ernest Alfred Wallis), Sir, 1857-1934 The Babylonian Story of the Deluge as Told by Assyrian Tablets from Nineveh etext7136 Logan, John Alexander, 1826-1886 The Great Conspiracy, Volume 4 etext7202 Nietzsche, Friedrich Wilhelm, 1844-1900 Ecce homo, Wie man wird, was man ist etext7241 La Fontaine, Jean de, 1621-1695 Fables of La Fontaine — a New Edition, with Notes etext7250 Twain, Mark, 1835-1910 A Connecticut Yankee in King Arthur's Court, Part 9. etext7271 Gan, Bao, fl. 317-322 搜神記 volume 11-14 etext7310 Milne, A. A. (Alan Alexander), 1882-1956 Mr. Pim Passes By etext7329 Liu, Xiang, 77? BC-6? BC 說苑, Volume 9-12 etext7351 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture : St. Matthew Chaps. IX to XXVIII etext7408 Xun, Yue, 148-209 申鑒 etext7419 Zhang, Chao, 1650- 幽夢影 — Part 2 etext7423 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Mike etext7428 Maddocks, Mildred The Consumer Viewpoint etext7457 Yan, Zhitui, 531-591 顔氏家訓 — Volume 07 etext7507 Beethoven, Ludwig van, 1770-1827 String Quartet No. 13 in B flat major Opus 130 etext7561 etext7585 Theuriet, André, 1833-1907 Images from Theuriet's Woodland Queen etext7599 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 14 etext7624 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Devereux — Volume 01 etext7670 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 What Will He Do with It? — Volume 12 etext7723 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Last of the Barons — Volume 09 etext7737 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Parisians — Volume 01 etext7754 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Godolphin, Volume 5. etext7771 Dumas père, Alexandre, 1802-1870 Les Quarante-Cinq — Tome 2 etext7834 Hight, George Ainslie, 1851- Wagner's "Tristan und Isolde"; an essay on the Wagnerian drama etext7848 Housman, A. E. (Alfred Edward), 1859-1936 Last Poems by A. E. Housman etext7851 Davis, Matthew L. (Matthew Livingston), 1773-1850 Memoirs of Aaron Burr, Volume 2. etext7875 Goethe, Johann Wolfgang von, 1749-1832 Römische Elegien etext7887 Walpole, Hugh, Sir, 1884-1941 Fortitude etext7943 Grillparzer, Franz, 1791-1872 Die Argonauten etext7965 The Mahabharata of Krishna-Dwaipayana Vyasa Translated into English Prose etext7977 Sadlier, Mrs. James, 1820-1903 Purgatory etext7978 Johnson, Elias Legends, Traditions, and Laws of the Iroquois, or Six Nations, and History of the Tuscarora Indians etext8001 Anonymous The Bible, King James version, Book 1: Genesis etext8028 Anonymous The Bible, King James version, Book 28: Hosea etext8046 Anonymous The Bible, King James version, Book 46: 1 Corinthians etext8094 Pound, Ezra, 1885-1972 Certain Noble Plays of Japan etext8113 Herrick, Robert, 1868-1938 Literary Love-Letters and Other Stories etext8151 Clarke, Henry, Mrs., 1853-1908 Miss Merivale's Mistake etext8216 Vaknin, Samuel, 1961- Issues in Ethics etext8221 Perry, Bliss, 1860-1954 A Study of Poetry etext8248 Anonymous The World English Bible (WEB): Ecclesiastes etext8275 Anonymous The World English Bible (WEB): Galatians etext8288 Anonymous The World English Bible (WEB): 2 Peter etext8356 The Bible, Douay-Rheims, Book 56: Ephesians etext8360 The Bible, Douay-Rheims, Book 60: 2 Thessalonians etext8385 Merwin-Webster The Short Line War etext8395 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 The Gods of Pegana etext8476 Twain, Mark, 1835-1910 Life on the Mississippi, Part 6. etext8537 Bower, B. M., 1874-1940 Lonesome Land etext8583 Twain, Mark, 1835-1910 Roughing It, Part 2. etext8606 Maeterlinck, Maurice, 1862-1949 The Blue Bird: a Fairy Play in Six Acts etext8608 Dickens, Charles, 1812-1870 Great Expectations etext8672 Clare, John, 1793-1864 Poems Chiefly from Manuscript etext8675 Welsh Fairy-Tales and Other Stories etext8685 Hunt, Henry, 1773-1835 Memoirs of Henry Hunt, Esq. — Volume 1 etext8696 Turgenev, Ivan Sergeevich, 1818-1883 The Jew and Other Stories etext8727 Doyle, Arthur Conan, Sir, 1859-1930 The Last Galley etext8749 Burroughs, Edgar Rice, 1875-1950 The Gods of Mars etext8806 Burroughs, Edgar Rice, 1875-1950 The Mucker etext8811 Cook, James, 1728-1779 Captain Cook's Journal During the First Voyage Round the World etext8843 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, 2 Timothy etext8879 MacDonald, George, 1824-1905 There & Back etext8901 Byron, George Gordon Byron, Baron, 1788-1824 The Works of Lord Byron: Letters and Journals. Vol. 1 etext8968 Wells, H. G. (Herbert George), 1866-1946 The World Set Free etext8972 Wells, H. G. (Herbert George), 1866-1946 The First Men in the Moon etext8978 Wells, H. G. (Herbert George), 1866-1946 When the Sleeper Wakes etext9012 Twain, Mark, 1835-1910 A Burlesque Autobiography etext9016 Twain, Mark, 1835-1910 Christian Science etext9037 Twain, Mark, 1835-1910 Tom Sawyer, Detective etext9106 etext9167 Zola, Émile, 1840-1902 The Three Cities Trilogy: Paris, Volume 4 etext9169 Zola, Émile, 1840-1902 The Three Cities Trilogy: Paris, Complete etext9207 Hawthorne, Nathaniel, 1804-1864 The Vision of the Fountain (From "Twice Told Tales") etext9290 Wharton, Edith, 1862-1937 The Touchstone etext9318 Maclaren, Ian, 1850-1907 A Doctor of the Old School — Volume 4 etext9347 Conrad, Joseph, 1857-1924 An Outcast of the Islands etext9408 Wisthaler, Johanna S. By Water to the Columbian Exposition etext9431 Hardy, Thomas, 1840-1928 Romantic Adventures of a Milkmaid etext9445 Holley, Marietta, 1836-1926 Samantha among the Brethren — Volume 3 etext9466 Hay, Kathleen The Quest of Happy Hearts etext9477 Spalding's Baseball Guide and Official League Book for 1889 etext9529 Thackeray, William Makepeace, 1811-1863 The Great Hoggarty Diamond etext9532 The Lock and Key Library etext9554 Doyle, Arthur Conan, Sir, 1859-1930 His Last Bow etext9557 Doyle, Arthur Conan, Sir, 1859-1930 The Valley of Fear etext9561 Whittier, John Greenleaf, 1807-1892 Narrative and Legendary Poems: the Bridal of Pennacook etext9642 Fontana, Ferdinando, 1850-1919 Poesie e novelle in versi etext9661 McClintock, James H. Mormon Settlement in Arizona etext9740 Dickens, Charles, 1812-1870 Tom Tiddler's Ground etext9758 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Leila or, the Siege of Granada, Book III. etext9763 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Alice, or the Mysteries — Book 01 etext9765 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Alice, or the Mysteries — Book 03 etext9775 Bonner, Geraldine, 1870-1930 Treasure and Trouble Therewith etext9778 Bindloss, Harold, 1866-1945 Vane of the Timberlands etext9792 Tolstoy, Leo, graf, 1828-1910 Redemption and two other plays etext9800 Pope, Alexander, 1688-1744 The Rape of the Lock and Other Poems etext9805 Ryus, William H., 1839- The Second William Penn etext9853 White, Fred M. (Fred Merrick), 1859- The Mystery of the Four Fingers etext9858 Hurst, Fannie, 1889-1968 Star-Dust etext9906 Janvier, Thomas A. (Thomas Allibone), 1849-1913 In the Sargasso Sea etext9954 Bore, Henry The Story of the Invention of Steel Pens etext10045 Hancock, H. Irving (Harrie Irving), 1868-1922 Dave Darrin's Second Year at Annapolis etext10090 Nitti, Francesco Saverio, 1868-1953 Peaceless Europe etext10101 Hudson, W. H. (William Henry), 1841-1922 A Little Boy Lost etext10112 Fiske, John, 1842-1901 American Political Ideas Viewed from the Standpoint of Universal History etext10119 Shelley, Percy Bysshe, 1792-1822 Adonais etext10141 Bryant, William Cullen, 1794-1878 A Discourse on the Life, Character and Writings of Gulian Crommelin Verplanck etext10170 Sousa Band Stars and Stripes Forever etext10267 Allen, Quincy The Outdoor Chums etext10334 Metz-Koning, Maria Catherina, 1864-1926 Van 't viooltje dat weten wilde etext10345 Trollope, Fanny, 1779-1863 Domestic Manners of the Americans etext10456 Various The Atlantic Monthly, Volume 02, No. 11, September, 1858 etext10652 McGuinn, Roger Spanish is the Loving Tongue etext10674 Kitson, Harry D. How to Use Your Mind etext10705 Mommsen, Theodor, 1817-1903 The History of Rome, Book V etext10858 A Compilation of the Messages and Papers of the Presidents etext10876 Jacobs, W. W. (William Wymark), 1863-1943 At Sunwich Port, Complete etext10879 A Compilation of the Messages and Papers of the Presidents etext10923 Various Punch, or the London Charivari, Volume 153, August 29, 1917 etext11142 Tarrant, W.G., 1853-1928 Unitarianism etext11189 Jacobs, W. W. (William Wymark), 1863-1943 The Madness of Mr. Lister etext11204 Reeks, Harry Caulton Diseases of the Horse's Foot etext11221 Fisher, Dorothy Canfield, 1879-1958 The Bent Twig etext11243 Cooper, James Fenimore, 1789-1851 Miles Wallingford etext11288 Lievevrouw-Coopman, M., 1857-1916 Ons Vaderland van de vroegste tijden tot de 15de eeuw etext11324 Benson, Stella, 1892-1933 This Is the End etext11353 McPherson, John Hanson Thomas, 1865- History of Liberia etext11460 Various The Mirror of Literature, Amusement, and Instruction etext11465 Various The Atlantic Monthly, Volume 06, No. 38, December, 1860 etext11473 Jacobs, W. W. (William Wymark), 1863-1943 Made to Measure etext11492 Rovetta, Gerolamo, 1854-1910 Il Tenente dei Lancieri etext11556 Verne, Jules, 1828-1905 Facing the Flag etext11584 Gibbs, George, 1870-1942 Madcap etext11593 Hough, Emerson, 1857-1923 The Purchase Price etext11594 Stillman, William James, 1828-1901 The Autobiography of a Journalist, Volume II etext11735 Various Scientific American Supplement, No. 481, March 21, 1885 etext11752 Cabell, James Branch, 1879-1958 Chivalry etext11758 Darling, Esther Birdsall Baldy of Nome etext11765 Lauder, Harry, Sir, 1870-1950 Between You and Me etext11773 Kivi, Aleksis, 1834-1872 Kullervo etext11781 Human Genome Project Chromosome Number 07 etext11871 Various The Mirror of Literature, Amusement, and Instruction etext11879 Pakkala, Teuvo, 1862-1925 Vaaralla etext11899 Sluijters, H. Meetkundig Schoolboek etext12009 Roland Holst-Van der Schalk, Henriette, 1869-1952 Jean Jacques Rousseau etext12032 De la Mare, Walter, 1873-1956 Collected Poems 1901-1918 in Two Volumes etext12076 The Story of the Prophet Jonas etext12086 Souli, Charles Georges, 1878-1955 Eastern Shame Girl etext12107 Various The Atlantic Monthly, Volume 09, No. 55, May, 1862 etext12193 Foss, James Henry The Gentleman from Everywhere etext12259 Defoe, Daniel, 1661?-1731 Memoirs of a Cavalier etext12322 etext12323 Various Punch, or the London Charivari, Volume 99, August 2, 1890 etext12327 Montefiore, Judith Cohen, Lady, 1784-1862 The Jewish Manual etext12352 Harper, Frances Ellen Watkins, 1825-1911 Iola Leroy etext12371 Warren, Samuel, 1807-1877 The Experiences of a Barrister, and Confessions of an Attorney etext12403 Ward, Humphry, Mrs., 1851-1920 Fenwick's Career etext12412 Various The Atlantic Monthly, Volume 11, No. 63, January, 1863 etext12432 Ervast, Pekka, 1875-1934 Kalevalan avain etext12483 Ramsay, Edward Bannerman, 1793-1872 Reminiscences of Scottish Life and Character etext12564 Fitzgerald, O. P. California Sketches, Second Series etext12588 Martinengo-Cesaresco, Countess Evelyn, 1852-1931 Cavour etext12594 Marot, Helen, 1865-1940 Creative Impulse in Industry etext12599 Various The Mirror of Literature, Amusement, and Instruction etext12613 Bergman, Hjalmar, 1883-1931 Eros' begravning etext12623 Defoe, Daniel, 1661?-1731 The Life and Adventures of Robinson Crusoe (1808) etext12669 Ferrier, Susan Edmonstone, 1782-1854 Marriage etext12753 Knowles, James, Sir, 1831-1908 The Legends of King Arthur and His Knights etext12774 Hancock, H. Irving (Harrie Irving), 1868-1922 Dave Darrin's First Year at Annapolis etext12793 Bierce, Ambrose, 1842-1914? Cobwebs from an Empty Skull etext12806 Hancock, H. Irving (Harrie Irving), 1868-1922 Dick Prescott's Third Year at West Point etext12833 Atherton, Gertrude Franklin Horn, 1857-1948 What Dreams May Come etext12841 Melville, Herman, 1819-1891 John Marr and Other Poems etext12843 Emerson, Ralph Waldo, 1803-1882 Poems etext12917 Various Punch, or the London Charivari, Volume 99, December 20, 1890 etext12927 Heiberg, Hermann, 1840-1910 Charaktere und Schicksale etext13029 Lindsay, Vachel, 1879-1931 The Art of the Moving Picture etext13030 The German Classics of the Nineteenth and Twentieth Centuries, Volume 09 etext13103 Keeling, Annie E. Great Britain and Her Queen etext13121 Flinders, Matthew, 1774-1814 A Voyage to Terra Australis — Volume 2 etext13122 Dupuy, P. (Paul), 1831-1891 Trois Héros de la colonie de Montréal etext13124 Dickert, D. Augustus History of Kershaw's Brigade etext13150 Kolb, E. L. (Ellsworth Leonardson), 1876- Through the Grand Canyon from Wyoming to Mexico etext13160 Marden, Orison Swett, 1850-1924 An Iron Will etext13235 Childers, Erskine, 1870-1922 In the Ranks of the C.I.V. etext13239 Savory, Arthur H. Grain and Chaff from an English Manor etext13252 Various Punch, or the London Charivari, Volume 100, February 14, 1891 etext13256 Daudet, Alphonse, 1840-1897 Le petit chose etext13268 etext13283 Various Punch, or the London Charivari, Volume 100, April 11, 1891 etext13311 Society for Pure English Society for Pure English, Tract 11 etext13313 Various Punch, or the London Charivari, Volume 100, May 9, 1891 etext13368 Mckenzie, F. A. (Frederick Arthur), 1869-1931 Korea's Fight for Freedom etext13406 Various Notes and Queries, Number 43, August 24, 1850 etext13414 Chekhov, Anton Pavlovich, 1860-1904 Love etext13455 Stratemeyer, Edward, 1862-1930 The Rover Boys In The Mountains etext13480 Various Notes and Queries, Number 49, October 5, 1850 etext13555 Cather, Willa Sibert, 1873-1947 Youth and the Bright Medusa etext13617 Harrison, Benjamin, 1833-1901 A Compilation of the Messages and Papers of the Presidents etext13761 Various The Bay State Monthly — Volume 1, No. 6, June, 1884 etext13767 Page, Elizabeth Fry Edward MacDowell etext13841 Leadem, Christopher Oberheim (Voices) etext13875 Sand, George, 1804-1876 Correspondance, 1812-1876 — Tome 4 etext13879 Ewald, Johannes, 1743-1781 The Death of Balder etext13886 Christian, W. E. Rhymes of the Rookies etext13911 Hubbard, Elbert, 1856-1915 Little Journeys to the Homes of the Great - Volume 03 etext13924 Various The Atlantic Monthly, Volume 09, No. 51, January, 1862 etext13949 Dumas père, Alexandre, 1802-1870 Le vicomte de Bragelonne, Tome III. etext13974 Warren, G. B. The Last West and Paolo's Virginia etext13985 Harrison, Henry Sydnor, 1880-1930 V. V.'s Eyes etext13992 Quiller-Couch, Mabel, 1866-1924 Kitty Trenire etext14182 Various The World's Best Orations, Vol. 1 (of 10) etext14185 Porte, John F. Edward MacDowell etext14224 Turner, George Samoa, A Hundred Years Ago And Long Before etext14250 Various Punch, Or The London Charivari, Volume 102, January 23, 1892 etext14332 Hanshew, Thomas W., 1857-1914 Cleek: the Man of the Forty Faces etext14470 The German Classics of the Nineteenth and Twentieth Centuries, Volume 12 etext14511 Hurlbert, William Henry, 1827-1895 Ireland Under Coercion (2nd ed.) (2 of 2) (1888) etext14559 Anonymous Omzwervingen door de eilandenwereld van den Grooten-oceaan etext14576 Lang, Andrew, 1844-1912 Modern Mythology etext14591 Goethe, Johann Wolfgang von, 1749-1832 Faust etext14637 Murry, J. Middleton Aspects of Literature etext14666 Barfus, Eginhard von, 1825-1909 Op Samoa etext14695 Various Punch, or the London Charivari, Volume 102, May 21, 1892 etext14700 Mackay, John Henry, 1864-1933 Die Menschen der Ehe etext14716 Mahood, J.W. The Art of Soul-Winning etext14718 Sienkiewicz, Henryk, 1846-1916 Bartek Sankari etext14740 etext14789 Dickens, Charles, 1812-1870 Pickwick papers. French etext14809 Jordanes The Origin and Deeds of the Goths etext14956 Lassila, Maiju, 1868-1918 Nuori mylläri etext15014 etext15035 Rich, Walter H. Fishing Grounds of the Gulf of Maine etext15037 Hyades, Paul, 1847-1919 Een Jaar aan Kaap Hoorn etext15069 Peters, Lulu Hunt Diet and Health etext15076 Corbett, Julian S. (Julian Stafford), 1854-1922 Some Principles of Maritime Strategy etext15079 Riley, James Whitcomb, 1849-1916 Green Fields and Running Brooks, and Other Poems etext15080 Various Godey's Lady's Book, Vol. 42, January, 1851 etext15116 Beresford, J. D. (John Davys), 1873-1947 The Jervaise Comedy etext15155 Runciman, Walter, 1847-1937 Windjammers and Sea Tramps etext15182 Brame, Charlotte M., 1836-1884 Marion Arleigh's Penance etext15202 Various Young Folks Treasury, Volume 2 (of 12) etext15211 Beede, Clara M. Some Broken Twigs etext15285 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Hosts of the Air etext15302 Williams, Valentine, 1883-1946 The Man with the Clubfoot etext15313 Purney, Thomas A Full Enquiry into the Nature of the Pastoral (1717) etext15338 More Toasts etext15442 Various Punch, or the London Charivari, Volume 101, October 31, 1891 etext15460 etext15518 Various The Great Round World and What Is Going On In It, Vol. 1, No. 26, May 6, 1897 etext15528 Bailey, Arthur Scott, 1877-1949 The Tale of Cuffy Bear etext15536 Various The Mirror of Literature, Amusement, and Instruction etext15550 Smith, Mabell S. C. (Mabell Shippie Clarke), 1864-1942 Ethel Morton at Rose House etext15551 Clay, Beatrice Stories from Le Morte D'Arthur and the Mabinogion etext15560 Various Young Folks Treasury, Volume 3 (of 12) etext15566 Johnson, Samuel, 1709-1784 Notes to Shakespeare, Volume III: The Tragedies etext15607 Holmes, Mary Jane, 1825-1907 Family Pride etext15633 Pardo de Tavera, T. H. (Trinidad Hermenegildo), 1857-1925 Etimología de los Nombres de Razas de Filipinas etext15713 Luff, John N., 1860-1938 What Philately Teaches etext15720 Emerson, Alice B. Ruth Fielding in the Great Northwest etext15754 Kurikka, Matti, 1863-1915 Ihmekös tuo etext15774 Southworth, Emma Dorothy Eliza Nevitte, 1819-1899 Ishmael etext15793 Parker, Gilbert, 1862-1932 An Unpardonable Liar etext15866 Crothers, Samuel McChord Humanly Speaking etext15867 Johnston, Annie F. (Annie Fellows), 1863-1931 The Little Colonel's Chum: Mary Ware etext15882 Toulet, Paul Jean, 1867-1920 Mon amie Nane etext15899 Warner, Anne, 1869-1913 Susan Clegg and Her Friend Mrs. Lathrop etext15943 Adam, Paul, 1862-1920 Le conte futur etext15944 Various The Mirror of Literature, Amusement, and Instruction etext15963 Emerson, Ralph Waldo, 1803-1882 May-Day etext16020 Dickens, Charles, 1812-1870 Le grillon du foyer etext16030 Various The Great Round World and What Is Going On In It, Vol. 1, No. 49, October 14, 1897 etext16046 etext16073 etext16080 Carey, Rosa Nouchette, 1840-1909 Uncle Max etext16087 Various The Atlantic Monthly, Volume 14, No. 84, October, 1864 etext16135 Rout, Ettie A. Safe Marriage etext16136 Huxley, Thomas Henry, 1825-1895 American Addresses, with a Lecture on the Study of Biology etext16137 Duchess, 1855?-1897 The Hoyden etext16139 Various The Great Round World and What Is Going On In It, Vol. 1, No. 38, July 29, 1897 etext16140 Brown, Abbie Farwell, 1871-1927 The Curious Book of Birds etext16177 Various The Great Round World and What Is Going On In It, Vol. 1, No. 54, November 18, 1897 etext16179 Various The Great Round World and What Is Going On In It, Vol. 1, No. 55, November 25, 1897 etext16186 Duchess, 1855?-1897 A Little Rebel etext16220 Bullitt, Alexander Clark Rambles in the Mammoth Cave, during the Year 1844 etext16334 Knibbs, Henry Herbert, 1874-1945 Sundown Slim etext16391 Edelfelt, Berta, 1869-1934 Vanhan päiväkirjan lehtiä etext16503 Lumley, Benjamin, 1812-1875 Another World etext16519 Russell, George William Erskine, 1853-1919 Prime Ministers and Some Others etext16544 Blaine, Captain John The Boy Scouts In Russia etext16602 Mahan, A. T. (Alfred Thayer), 1840-1914 The Major Operations of the Navies in the War of American Independence etext16606 Pitman, Mrs. E. R. Elizabeth Fry etext16654 Everett-Green, Evelyn, 1856-1932 The Lost Treasure of Trevlyn etext16666 Oxenham, John, 1852-1941 Carette of Sark etext16725 Macé, Jean, 1815-1894 Sprookjes van Jean Macé etext16728 Anonymous A Catechism of Familiar Things; etext16826 Verne, Jules, 1828-1905 Face au drapeau etext16866 Rogers, Henry, 1806-1877 The Eclipse of Faith etext16877 Various Punch, or the London Charivari, Vol. 159, 1920-09-08 etext16934 Darien, Georges, 1862-1921 L'épaulette etext16975 Hubbell, Walter, 1851-1932 The Haunted House etext16983 Bahá'u'lláh, 1817-1892 The Kitáb-i-Íqán etext17054 Durham, Victor G. The Submarine Boys on Duty etext17087 Harrison, Jane Ellen, 1850-1928 Ancient Art and Ritual etext17097 Hope, Laura Lee Bunny Brown and His Sister Sue in the Big Woods etext17125 Crompton, Richmal, 1890-1969 More William etext17210 Templeton, Timothy The Adventures of My Cousin Smooth etext17238 Goncourt, Edmond de, 1822-1896 Journal des Goncourt (Deuxième série, premier volume) etext17257 Arsciwals, Juan L. Isa Pang Bayani etext17264 Toudouze, Gustave, 1847-1904 La sirène etext17276 Hope, Laura Lee The Story of a Candy Rabbit etext17310 Bahá'u'lláh, 1817-1892 Tablets of Bahá’u’lláh Revealed after the Kitab-i-Aqdas etext17311 Demolder, Eugène, 1862-1919 Le jardinier de la Pompadour etext17344 Assollant, Alfred, 1827-1886 Rose d'Amour etext17387 Little, Frances, [pseud.], 1863-1941 Mr. Bamboo and the Honorable Little God etext17405 Sunzi 6th cent. B.C. The Art of War etext17459 Marcel Niké Florence historique, monumentale, artistique etext17523 Erasmus, Desiderius, 1469-1536 Een twaalftal samenspraken etext17540 Dozon, Auguste, 1822-1891 Poésies populaires Serbes etext17639 Azevedo, Guilherme Avelino Chave de, 1839-1882 A Alma Nova etext17668 Tinseau, Léon de, 1844-1921 Plus fort que la haine etext17696 Tissot, Victor, 1845-1917 Simone etext17698 Hichens, Robert Smythe, 1864-1950 Bella Donna etext17705 Marguerite, Queen, consort of Henry II, King of Navarre, 1492-1549 The Tales Of The Heptameron, Vol. V. (of V.) etext17715 Corbière, Édouard, 1793-1875 Le Négrier, Vol. II etext17740 Smith, Watson The Chemistry of Hat Manufacturing etext17741 Le Gallienne, Richard, 1866-1947 Pieces of Eight etext17758 Cherbuliez, Victor, 1829-1899 Amours fragiles etext17790 Freeman, Mary Eleanor Wilkins, 1852-1930 Jane Field etext17795 Sand, George, 1804-1876 La dernière Aldini etext17796 Verne, Jules, 1828-1905 Le pays des fourrures etext17815 Sully, James, 1842-1923 Illusions etext17824 Bannerman, Helen, 1862-1946 Little Black Sambo etext17832 Verne, Jules, 1828-1905 Une ville flottante etext17842 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Dead Man's Rock etext17889 Ghislanzoni, Antonio, 1824-1893 Libro allegro etext17898 Godley, A. D. (Alfred Denis), 1856-1925 Lyra Frivola etext17994 Various Punch, or the London Charivari, Vol. 159, 1920-11-03 etext18045 Palmer, John, 1885-1944 Rudyard Kipling etext18079 Nathan, Robert, 1894-1985 Autumn etext18090 Ségur, Sophie, comtesse de, 1799-1874 Jean qui grogne et Jean qui rit etext18114 Various Punch, or the London Charivari, Volume 159, November 10, 1920 etext18138 Kobbé, Gustav, 1857-1918 The Loves of Great Composers etext18164 Glass, Montague, 1877-1934 Potash & Perlmutter etext18178 Arbes, Jakub, 1840-1914 Rakontoj etext18181 Caswell, Harriet S., 1834- The Path of Duty, and Other Stories etext18236 Feith, Jan, 1874-1944 In de Amsterdamsche Jodenbuurt etext18240 Samuelson, James, 1829- Roumania Past and Present etext9420 Hardy, Thomas, 1840-1928 The Hand of Ethelberta etext9434 Hardy, Thomas, 1840-1928 Time's Laughingstocks etc. etext18241 Tea-Cup Reading and Fortune-Telling by Tea Leaves, by a Highland Seer etext18251 D'Ooge, Benjamin L. (Benjamin Leonard), 1860-1940 Latin for Beginners etext18326 Poe, Edgar Allan, 1809-1849 La Murdoj de Kadavrejo-Strato etext18335 Burroughs, John, 1837-1921 The Breath of Life etext18385 Cameron, H. Lovett, Mrs. Vera Nevill etext18427 Loti, Pierre, 1850-1923 Mon frère Yves etext18449 Corelli, Marie, 1855-1924 The Treasure of Heaven etext18499 Blake, Emily Calvin, 1882- Suzanna Stirs the Fire etext18514 Spedon, Andrew Learmont, 1831-1884 The Black-Sealed Letter etext18541 Slocum, Joshua, 1844-1910? Voyage of the Liberdade etext18546 Anonymous Denslow's Mother Goose etext18567 etext18574 Chard, Thomas S. Across the Sea and Other Poems. etext18585 Chevalier, H. Émile (Henri Émile), 1828-1879 Les Nez-Percés etext18620 Mendelssohn, Erich von, -1913 Phantasten etext18636 Birkenhead, Frederick Edwin Smith, Earl of, 1872-1930 The Story of Newfoundland etext18681 Means, Florence Crannell, 1891-1980 Across the Fruited Plain etext18686 Warner, Susan, 1819-1885 Melbourne House etext18703 Stevenson, James, 1840-1888 Illustrated Catalogue of the Collections Obtained from the Indians of New Mexico in 1880 etext18706 Juva, Valter, 1865-1922 Runoja etext18726 Swinburne, Algernon Charles, 1837-1909 Poems and Ballads (Third Series) etext18739 Brooks, Maria Gowen, 1795?-1845 Zophiel etext18750 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Wandering Heath etext18832 Sue, Eugène, 1804-1857 A Cardinal Sin etext18866 Various Scientific American, Volume 40, No. 13, March 29, 1879 etext18868 Henty, G. A. (George Alfred), 1832-1902 With Kitchener in the Soudan etext18891 Pedley, Ethel C., 1860?-1898 Dot and the Kangaroo etext18908 Christmas etext18917 Black, William, 1841-1898 Goldsmith etext18929 Leeuwenhoek, Antoni van, 1632-1723 Den Waaragtigen Omloop des Bloeds etext18945 Burnett, Frances Hodgson, 1849-1924 Robin etext18949 Piper, H. Beam, 1904-1964 Day of the Moron etext18971 etext18978 Mathews, R. H. (Robert Hamilton), 1841-1918 The Wiradyuri and Other Languages of New South Wales etext18987 Warner, Anne, 1869-1913 Susan Clegg and Her Neighbors' Affairs etext18988 Combe, William, 1742-1823 The First of April etext18996 Lemaître, Jules, 1853-1914 Jean-Jacques Rousseau etext19010 Jepson, Edgar, 1863-1938 The Admirable Tinker etext19034 Ghislanzoni, Antonio, 1824-1893 Abrakadabra etext19035 Leroux, Gaston, 1868-1927 Le fauteuil hanté etext19070 Henty, G. A. (George Alfred), 1832-1902 Both Sides the Border etext19098 Miles, Clement A. Christmas in Ritual and Tradition, Christian and Pagan etext19101 Fitch, Clyde, 1865-1909 The Girl with the Green Eyes etext19122 Sherley, George Douglass, 1857-1917 Love Instigated: The Story of a Carved Ivory Umbrella Handle etext19172 Morrison, George Ernest, 1862-1920 An Australian in China etext19244 Shoghi Effendi, 1897-1957 The Light of Divine Guidance (Volume 1) etext19313 Le Gallienne, Richard, 1866-1947 The Silk-Hat Soldier etext19362 etext19368 Hoffman, Walter James, 1846-1899 The Mide'wiwin or "Grand Medicine Society" of the Ojibwa etext19396 Masefield, John, 1878-1967 On the Spanish Main etext19405 I. E. M. Confessions of an Etonian etext19494 Perkins, Thomas, Rev., 1842-1907 Bell's Cathedrals: The Cathedral Church of Saint Albans etext19585 Flammarion, Camille, 1842-1925 De Wereld vóór de schepping van den mensch etext19633 Anonymous Beowulf etext19657 Hugo, Victor, 1802-1885 Notre-Dame de Paris etext19660 Evans, E. Everett (Edward Everett), 1893-1958 Man of Many Minds etext19677 Caedmon Caedmon's Hymn etext19682 Twain, Mark, 1835-1910 Chapters from My Autobiography etext19707 Tracy, Louis, 1863-1928 One Wonderful Night etext19738 etext19822 Lock, H. O. (Henry Osmond), 1879- With the British Army in The Holy Land etext19827 Various The Atlantic Monthly, Volume 13, No. 80, June, 1864 etext19836 Inchfawn, Fay, 1880- Early Spring etext19850 Dixon, Royal, 1885-1962 The Human Side of Animals etext19854 Des Ecores, Ch., 1852-1905 Expéditions autour de ma tente etext19871 Velimirović, Nikolai, 1880-1956 Serbia in Light and Darkness etext19880 Mills, Wesley, 1847-1915 Voice Production in Singing and Speaking etext19883 De Amicis, Edmondo, 1846-1908 Speranze e glorie; Le tre capitali etext19950 Thomas, Aquinas, Saint, 1225?-1274 Summa Theologica, Part III (Tertia Pars) etext19974 Nunes, Cláudio José Verdades amargas etext19988 Blanchard, Amy Ella, 1856-1926 Little Maid Marian etext20028 Cleland, John, 1709-1789 Fanny Hill: Memoirs of a Woman of Pleasure etext20033 Rice, Alice Caldwell Hegan, 1870-1942 Quin etext20035 Perry, Bliss, 1860-1954 Fishing with a Worm etext20043 Higgins, Charlotte M. The Angel Children etext20044 Frederick, John Riders of the Silences etext20056 Hoffmann, E. T. A. (Ernst Theodor Amadeus), 1776-1822 De Gouden Vaas etext20073 Carmichael, R. D. (Robert Daniel), 1879-1967 Diophantine Analysis etext20110 Laut, Agnes C. (Agnes Christina), 1871-1936 Canada: the Empire of the North etext20130 G. W. Magazine, or Animadversions on the English Spelling (1703) etext20144 etext20249 Barham, George Basil Legend Land, Volume 2 etext20275 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 The History of England, from the Accession of etext20304 Twiss, Richard A Trip to Paris in July and August 1792 etext20377 Ward, Fred W. The 23rd (Service) Battalion Royal Fusiliers (First Sportsman's) etext20382 Carson, Thomas Ranching, Sport and Travel etext20462 Hentz, Caroline Lee, 1800-1856 Ernest Linwood etext20463 Tuttle, Edmund B. Three Years on the Plains etext20494 Rees, Arthur J. (Arthur John), 1872-1942 The Shrieking Pit etext20574 etext20575 Unknown My Dog Tray etext20599 Wilde, Oscar, 1854-1900 The Canterville Ghost etext20629 Ford, Sewell, 1868-1946 Torchy As A Pa etext20660 Sell, Edward The Faith of Islam etext20692 Mellin, G. H. (Gustaf Henrik), 1803-1876 Paavo Nissinen etext20714 Garland, Hamlin, 1860-1940 Other Main-Travelled Roads etext20775 Brinton, Daniel Garrison, 1837-1899 The Annals of the Cakchiquels etext20848 etext20914 Barrie, J. M. (James Matthew), 1860-1937 A Window in Thrums etext21026 Runeberg, Johan Ludvig, 1804-1877 Vähemmät eepilliset runoelmat etext21097 Hutcheson, John C. (John Conroy) Tom Finch's Monkey etext21130 Clouston, William Alexander, 1843-1896 Book of Wise Sayings etext21191 Dumas père, Alexandre, 1802-1870 La San-Felice, v. 9 etext21227 Robertson, Margaret M. (Margaret Murray), 1821-1897 Shenac's Work at Home etext21256 Pinkney, Lt-Col. Travels through the South of France and the Interior of Provinces of Provence and Languedoc in the Years 1807 and 1808 etext21322 Bailey, Arthur Scott, 1877-1949 The Tale of Betsy Butterfly etext21387 Kingston, William Henry Giles, 1814-1880 In the Eastern Seas etext21461 Kingston, William Henry Giles, 1814-1880 Fred Markham in Russia etext21508 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext21528 Various The International Monthly Magazine, Volume 1, No. 1, August 1850 etext21529 etext21542 Hunt, H. Ernest Spirit and Music etext21582 Fahy, Patrick The Mightiest Man etext21619 Bailey, Arthur Scott, 1877-1949 The Tale of Nimble Deer etext21676 Herford, Oliver, 1863-1935 Confessions of a Caricaturist etext21695 Ballantyne, R. M. (Robert Michael), 1825-1894 Life in the Red Brigade etext21735 Ballantyne, R. M. (Robert Michael), 1825-1894 The Floating Light of the Goodwin Sands etext21748 Ballantyne, R. M. (Robert Michael), 1825-1894 Black Ivory etext21752 Ballantyne, R. M. (Robert Michael), 1825-1894 My Doggie and I etext21818 Various Punch, or the London Charivari, Vol. 104, February 11, 1893 etext21829 Beecher, Catharine Esther, 1800-1878 A Treatise on Domestic Economy etext21873 Harrison, Harry, 1925- Planet of the Damned etext21887 Nicholson, Meredith, 1866-1947 Blacksheep! Blacksheep! etext21963 Shackleford, H. K. Halsey & Co. etext21969 James, Henry, 1843-1916 The Outcry etext22023 Mitchell, Alexander F. The Scottish Reformation etext22045 Shakespeare, William, 1564-1616 La festa dels reis etext22052 Austin, Jane G. (Jane Goodwin), 1831-1894 Standish of Standish etext22064 White, Grace Miller, 1868-1957 Tess of the Storm Country etext22173 Froest, Frank The Grell Mystery etext22197 Rippey, Sarah Cory The Goody-Naughty Book etext22368 Bèze, Théodore de De francicae linguae recta pronuntiatione etext22399 Various Fire-Side Picture Alphabet etext22463 Cabell, James Branch, 1879-1958 Chivalry etext22564 Keysor, Jennie Ellis, 1860- Great Artists, Vol 1. etext22635 Raabe, Heinrich August, 1759-1841 Die Postgeheimnisse etext22663 Kompert, Leopold A Ghetto Violet etext22678 Forte, Arnaldo 13 Sonetos etext22692 Mason, Walt Rippling Rhymes etext22766 Zerbe, James Slough, 1850- Electricity for Boys etext22773 Crevaux, Jules, 1847-1882 Reis door Nieuw-Grenada en Venezuela etext22914 Boyle, Robert, 1627-1691 The Sceptical Chymist etext22952 Appleton, Victor [pseud.] Tom Swift in the Land of Wonders etext22965 Stuck, Hudson, 1863-1920 Ten Thousand Miles with a Dog Sled etext22999 Harker, L. Allen (Lizzie Allen), 1863-1933 The Ffolliots of Redmarley etext23003 Chaplin, Heman White, 1847-1924 The New Minister's Great Opportunity etext23040 Various The Atlantic Monthly, Volume 18, No. 106, August, 1866 etext23067 Kingston, William Henry Giles, 1814-1880 Stories of Animal Sagacity etext23098 Maréchal, Sylvain, 1750-1803 La Femme Abbé etext23109 Bocage, Manuel Maria Barbosa du, 1765-1805 Improvisos de Bocage etext23131 Martineau, Harriet, 1802-1876 Principle and Practice etext23152 Sillars, John The McBrides etext23154 Vachell, Horace Annesley, 1861-1955 The Hill etext23166 Taylor, Bayard, 1825-1878 Who Was She? etext23218 Wells, H. G. (Herbert George), 1866-1946 The Red Room etext23335 Garrett, Randall, 1927-1987 Unwise Child etext23382 Fenn, George Manville, 1831-1909 Crown and Sceptre etext23462 Karrik, Valerian Viliamovich, 1869-1942 More Russian Picture Tales etext23584 etext23622 Vaizey, George de Horne, Mrs., 1857-1917 About Peggy Saville etext23639 Plutarch, 46-120? Plutarch's Morals etext23646 Prus, Bolesław, 1847-1912 The Pharaoh and the Priest etext23695 Smith, Francis Hopkinson, 1838-1915 The Little Gray Lady etext23705 Abbott, L. A., 1813- Seven Wives and Seven Prisons; etext23798 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Daniel Boone etext23841 Ban, Gu, 32-92 漢書 etext23848 Beaugrand, Honoré, 1848-1906 Anita etext23863 Shi, Nai'an, 1290?-1365? 水滸傳 etext23888 W. B. The Elephant's Ball, and Grand Fete Champetre etext23923 Wister, Owen, 1860-1938 How Doth the Simple Spelling Bee etext23945 Liu, Xiang, 77? BC-6? BC 新序 etext24045 Gingras, Jules Fabien Recueil des expressions vicieuses et des anglicismes les plus fréquents etext24057 Bible. O.T. Ruth. Esperanto. etext24166 Garrett, Randall, 1927-1987 The Destroyers etext24169 Li, Bai, 701-762 李太白集 etext24225 Aiyuezhuren 戲中戲 etext24227 Wu, Jianren, 1866-1910 情變 etext24240 Mo, Di, 480 BC-390 BC 墨子 etext24252 Optic, Oliver, 1822-1897 Four Young Explorers etext24257 Leprohon, Mrs. (Rosanna Eleanor), 1832?-1879 Antoinette de Mirecourt etext24258 Herford, Oliver, 1863-1935 The Rubáiyát of a Persian Kitten etext24283 Optic, Oliver, 1822-1897 Down The River etext24301 Graydon, William Murray, 1864-1946 The Camp in the Snow, etext24342 Hough, Emerson, 1857-1923 The Story of the Outlaw etext24343 Various Chambers's Edinburgh Journal, No. 462 etext24485 Crane, Walter, 1845-1915 A Floral Fantasy in an Old English Garden etext24510 Bancks, Gerard W. The Production of Vinegar from Honey etext24609 Crosland, T. W. H. (Thomas William Hodgson), 1865-1924 The Motor Car Dumpy Book etext24671 Egan, W. C. (William Constantine), 1841-1930 Making a Garden of Perennials etext24689 Symonds, John Addington, 1840-1893 New Italian sketches etext24726 Waters, Clara Erskine Clement, 1834-1916 A History of Art for Beginners and Students etext24745 McGregor, Duncan, 1787-1881 The Loss of the Kent, East Indiaman, in the Bay of Biscay etext24790 Early English Meals and Manners etext24801 Hope, Anthony, 1863-1933 El prisionero de Zenda etext24805 Becke, Louis, 1855-1913 "Chinkie's Flat" etext24852 Ghosh, Sarath Kumar, 1883- The Wonders of the Jungle etext24882 Privateering and Piracy in the Colonial Period etext24923 Darwin, Charles, 1809-1882 The Variation of Animals and Plants Under Domestication, Vol. I. etext24934 Jones, Rufus Matthew, 1863-1948 Spiritual Reformers in the 16th & 17th Centuries etext25005 Crownfield, Gertrude, 1867-1945 The Shadow Witch etext25012 Nietzsche, Friedrich Wilhelm, 1844-1900 The Case Of Wagner, Nietzsche Contra Wagner, and Selected Aphorisms. etext25039 Mars, Mademoiselle, 1779-1847 Mémoires de Mademoiselle Mars (volume I) etext25051 Leinster, Murray, 1896-1975 Space Platform etext25071 Borrow, George Henry, 1803-1881 The Romany Rye etext25110 Perry, Ralph Barton, 1876-1957 The Approach to Philosophy etext25132 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Candidate etext25136 Hocking, Joseph, 1860-1937 "The Pomp of Yesterday" etext25201 Leslie, Madeline, 1815-1893 The Lost Kitty etext25205 Bixler, William Allen, 1876-1961 Light On the Child's Path etext25208 Various Blackwood's Edinburgh Magazine, Volume 56, Number 347, September, 1844 etext25215 Glyn, Elinor, 1864-1943 Three Things etext25234 Garrett, Randall, 1927-1987 Cum Grano Salis etext25276 Lamartine, Alphonse de, 1790-1869 Cours Familier de Littérature (Volume 3) etext25298 Liu, Ji, 1311-1375 郁離子 etext25368 Ge, Hong, 284-364 西京雜記 etext25446 Richards, Laura Elizabeth Howe, 1850-1943 Fernley House etext25462 etext25465 Johnson, Owen, 1878-1952 Skippy Bedelle etext25557 Lian, Heng, 1878-1936 臺灣通史 etext25580 Andersen, H. C. (Hans Christian), 1805-1875 Andersens Sproken en vertellingen etext25586 Cather, Willa Sibert, 1873-1947 A Collection of Stories, Reviews and Essays etext25607 Fenn, George Manville, 1831-1909 Witness to the Deed etext25621 Hoatson, A. Merry Words for Merry Children etext25696 Ge, Hong, 284-364 抱朴子 etext25698 etext25726 Burnett, Frances Hodgson, 1849-1924 The Pretty Sister Of José etext25755 Custine, Astolphe, marquis de, 1790-1857 La Russie en 1839, Volume I etext25841 Blok, A. Het Esperanto in Twintig Lessen etext25846 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 O General Carlos Ribeiro etext25969 Brooks, Charles S. (Charles Stephen), 1878-1934 Chimney-Pot Papers etext25983 Various Birds, Illustrated by Color Photography, Vol. 1, No. 5 etext25985 Dickens, Charles, 1812-1870 Bardell v. Pickwick etext26042 Robinson, James Harvey, 1863-1936 An Introduction to the History of Western Europe etext26074 Coleridge, Stephen, 1854-1936 Great Testimony etext26104 Leslie, Emma That Scholarship Boy etext26142 Johnson, Samuel W. (Samuel William), 1830-1909 Peat and its Uses as Fertilizer and Fuel etext26157 Shirley, Arthur, 1853-1925 Three Hats etext26271 Newell, Peter, 1862-1924 The Slant Book etext26284 Michelet, Jules, 1798-1874 El Mar etext26315 Stopes, C. C. (Charlotte Carmichael), 1841-1929 Shakespeare's Family etext26331 Herford, Oliver, 1863-1935 A Child's Primer Of Natural History etext26352 Récamier, Jeanne Françoise Julie Adélaïde Bernard, 1777-1849 Souvenirs et correspondance tirés des papiers de Mme Récamier (2/2) etext26401 Buchanan's Journal of Man, June 1887 etext26416 Abbot, Willis J. (Willis John), 1863-1934 The Naval History of the United States etext26428 Etlar, Carit, 1816-1900 Kirjava joukko etext26498 Raymond, Rossiter W. (Rossiter Worthington), 1840-1918 Peter Cooper etext26522 Pierson, Arthur T. (Arthur Tappan), 1837-1911 George Müller of Bristol etext26540 Ralphson, G. Harvey (George Harvey), 1879-1940 Boy Scouts in the Canal Zone etext26574 Leblanc, Maurice, 1864-1941 The Extraordinary Adventures of Arsène Lupin, Gentleman-Burglar etext26578 Wells, H. G. (Herbert George), 1866-1946 Little Wars (A Game for Boys from twelve years of age to one hundred etext26599 Porter, Linn Boyd, 1851-1916 A Black Adonis etext26603 Dopp, Katharine Elizabeth, 1863- The Later Cave-Men etext26650 Fire-Fly, Fanny The Ducks and Frogs, etext26705 Ludwig Salvator, Archduke of Austria, 1847-1915 The Caravan Route between Egypt and Syria etext26722 Vogeler, Heinrich, 1872-1942 DIR etext26754 Bogardus, C. A. One Thousand Secrets of Wise and Rich Men Revealed etext26777 Abreu, Francisco Jorge de, 1878-1932 A Revolução Portugueza: O 5 de Outubro (Lisboa 1910) etext26800 Lee, Vernon, 1856-1935 Hortus Vitae etext26838 Saintsbury, George, 1845-1933 A History of the French Novel, Vol. 1 etext26893 Buck, J. D. (Jirah Dewey), 1838-1916 The New Avatar and The Destiny of the Soul etext26941 Tremaine, Frederick Orlin, 1899-1956 Wanted—7 Fearless Engineers! etext26942 Lee, Vernon, 1856-1935 The Beautiful etext27034 Lebert, Marie Entrevistas (1998-2001) etext27060 Zor, Tao Qing Lou Meng etext27071 Mayor, F. M. (Flora Macdonald), 1872-1932 The Third Miss Symons etext27109 The Mirror of Taste, and Dramatic Censor, Vol. I, No. 5, May 1810 etext27113 Cramp, W. B. Narrative of a Voyage to India; of a Shipwreck on board the Lady Castlereagh; and a Description of New South Wales etext27164 Eastman, Edwin Seven and Nine years Among the Camanches and Apaches etext27197 Smith, Uriah, 1832-1903 Modern Spiritualism etext27240 Abbott, Jacob, 1803-1879 Pyrrhus etext27247 Siljo, Juhani, 1888-1918 Maan puoleen etext27333 Musgrove, Charles Hamilton Pan and Æolus: Poems etext27340 Smith, Francis Hopkinson, 1838-1915 Outdoor Sketching etext27385 Dumas père, Alexandre, 1802-1870 The Conspirators etext27409 Borrow, George Henry, 1803-1881 The King's Wake etext27441 The Children's Garland from the Best Poets etext27445 Tynan, Katharine, 1861-1931 Love of Brothers etext27508 Engelbach, Alfred H. The King's Warrant etext27601 Bindloss, Harold, 1866-1945 Hawtrey's Deputy etext27607 Richards, Laura Elizabeth Howe, 1850-1943 Rosin the Beau etext27627 etext27631 Douglas, Jack Dead World etext27661 Reed, Myrtle, 1874-1911 Master of the Vineyard etext27688 Hyde, James Wilson, 1841-1918 A Hundred Years by Post etext27689 Agostinho, José, 1866-1938 Jaime de Magalhães Lima etext27695 Ponson du Terrail, 1829-1871 La cuerda del ahorcado etext27702 Otis, James, 1848-1912 Mr. Stubbs's Brother etext27713 Eyre, J. W. H. (John William Henry), 1869- The Elements of Bacteriological Technique etext27719 Rovetta, Gerolamo, 1854-1910 Tiranni minimi etext27727 Pinney, Laura Ann Young, 1849- Within the Golden Gate etext27797 Vance, Gerald Vital Ingredient etext27818 Various Blackwood's Edinburgh Magazine, Volume 58, Number 358, August 1845 etext27895 Aristotle, 384 BC-322 BC Μικρά Φυσικά etext27897 Fenn, George Manville, 1831-1909 The Kopje Garrison etext27912 Moody, William Vaughn, 1869-1910 Gloucester Moors and Other Poems etext27922 Ormondroyd, Edward, 1925- David and the Phoenix etext27973 Gogol, Nikolai Vasilievich, 1809-1852 Der Mantel etext28038 Optic, Oliver, 1822-1897 Watch and Wait etext28046 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 Critical and Historical Essays, Volume III (of 3) etext28057 Parker, Eric, 1870-1955 Highways and Byways in Surrey etext28102 Kingsley, Florence Morse, 1859-1937 The Transfiguration of Miss Philura etext28110 Dalrymple, Leona, 1884- Jimsy etext28111 Wells, Basil, 1912-2003 Moment of Truth etext28121 Słowacki, Juliusz, 1809-1849 Anhelli etext28189 Cerruti, Giovanni Battista, 1850-1914 My Friends the Savages etext28219 Schumann, Robert, 1810-1856 Advice to Young Musicians. Musikalische Haus- und Lebens-Regeln etext28261 Various Harper's Young People, December 16, 1879 etext28409 Vaknin, Samuel, 1961- Facts and Fictions in The Securities Industry etext28414 Corvo, João de Andrade, 1824-1890 Theatro de João d'Andrade Corvo - I etext28449 Hancock, H. Irving (Harrie Irving), 1868-1922 The Motor Boat Club and The Wireless etext28451 Fritch, Charles E., 1927- I Like Martian Music etext28520 Anonymous Forbidden Fruit etext28522 Anonymous Laura Middleton; Her Brother and her Lover etext28524 Warner, Susan, 1819-1885 Nobody etext28532 Various Blackwood's Edinburgh Magazine, Volume 59, No. 363, January, 1846 etext28604 Diderot, Denis, 1713-1784 Entretien d'un père avec ses enfants etext28623 Sand, George, 1804-1876 Le poëme de Myrza - Hamlet etext28666 H. D. (Hilda Doolittle), 1886-1961 Hymen etext28669 Various The Christian Foundation, Or, Scientific and Religious Journal, Volume I, No. 8, August, 1880 etext28678 Various The Christian Foundation, Or, Scientific and Religious Journal, Volume I, No. 12, December, 1880 etext28713 Benson, Arthur Christopher, 1862-1925 Beside Still Waters etext28727 Howells, William Dean, 1837-1920 A Boy's Town etext28749 Brazil, Angela, 1868-1947 The Madcap of the School etext28763 Howells, William Dean, 1837-1920 Imaginary Interviews etext28785 Rovetta, Gerolamo, 1854-1910 La baraonda etext28801 Einstein, Albert, 1879-1955 Relativity: The Special and General Theory etext28804 Nesbit, E. (Edith), 1858-1924 Oswald Bastable and Others etext28809 Norton, Andre, 1912-2005 Plague Ship etext28857 Henty, G. A. (George Alfred), 1832-1902 Captain Bayley's Heir: etext28935 Hope, Anthony, 1863-1933 Captain Dieppe etext28936 Roberts, Charles George Douglas, Sir, 1860-1943 In the Morning of Time etext28956 Roe, Vingie E. (Vingie Eve), 1879-1958 Tharon of Lost Valley etext28977 Sand, George, 1804-1876 Cadio etext29019 Norton, Andre, 1912-2005 All Cats Are Gray etext29072 Various Punch, or the London Charivari, Vol. 147, November 18, 1914 etext29118 Wright, Sewell Peaslee, 1897-1970 The Terror from the Depths etext29140 Feldman, Arthur The Mathematicians etext29191 Reid, Mayne, 1818-1883 Le cheval sauvage etext29235 Bock, Eugène de, 1889- Hendrik Conscience etext29268 Allies, T. W. (Thomas William), 1813-1903 The Formation of Christendom, Volume VI etext29289 Gezelle, Guido, 1830-1899 Bloemlezing uit Guido Gezelle's Gedichten etext29299 Schachner, Nathan, 1895-1955 Pirates of the Gorm etext29300 Castlemon, Harry, 1842-1915 Rodney The Partisan etext29303 Archibald, Joe Operation Earthworm etext29370 Watson, Walter Crum Portuguese Architecture etext29398 Dreyspring, Adolphe, 1835- French Reader on the Cumulative Method etext29491 Various Punch or the London Charivari, Vol. 147, December 9, 1914 etext29505 Faudel, Henry Suggestions to the Jews etext29559 Farmer, Philip José, 1918-2009 They Twinkled Like Jewels etext29582 Thomson, John, fl. 1732 The Tricks of the Town: or, Ways and Means of getting Money etext29599 Venable, Lyn Homesick etext29631 Groves, Anthony Norris, 1795-1853 Journal of a Residence at Bagdad etext29648 Omelka, František, 1904-1960 Štafeta etext29655 Various Harper's New Monthly Magazine, Volume 1, No. 3, August, 1850. etext29660 Glazier, Willard W., 1841-1905 Three Years in the Federal Cavalry etext29680 Robinson, Frank M., 1926- Decision etext29750 Bixby, Jerome, 1923-1998 Zen etext29762 Errico, Daniel FreeChildrenStories.com Collection etext29793 Pratt, Theodore, 1901-1969 The Hohokam Dig etext29802 Lebert, Marie Une courte histoire de l'eBook etext29835 Thucydides, 455? BC-395 BC Πελοποννησιακός Πόλεμος, Τόμος τρίτος etext29940 Reynolds, Mack, 1917-1983 Dogfight—1973 etext30043 Barrili, Anton Giulio, 1836-1908 Lutezia etext30045 McKimmey, James, 1923- Planet of Dreams etext30125 Ryan, Marah Ellis, 1866-1934 The Flute of the Gods etext30233 Furness, William Henry, 1866-1920 Folk-lore in Borneo etext30240 Vonnegut, Kurt, 1922-2007 The Big Trip Up Yonder etext30274 Day, Thomas, 1748-1789 The History of Sandford and Merton etext30330 Thompson, Don, 1935-1994 High Dragon Bump etext30411 etext30417 Stephens, Robert Neilson, 1867-1906 The Bright Face of Danger etext30418 Traditional Nursery Songs of England etext30428 Castlemon, Harry, 1842-1915 Elam Storm, The Wolfer etext30469 Mockler, Geraldine A Tale of the Summer Holidays etext30556 Sadger, J., 1867-1942 Sleep Walking and Moon Walking etext30621 Holmes, William Henry, 1846-1933 Ancient art of the province of Chiriqui, Colombia etext30665 Ashton, John, 1834-1911 Gossip in the First Decade of Victoria's Reign etext30697 Young, Samual Hall, 1847-1927 Alaska Days with John Muir etext30725 De Amicis, Edmondo, 1846-1908 Marocco etext30744 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 5 (of 25) etext30747 Moore, Gay Montague Seaport in Virginia etext30778 Winslow, Horatio, 1882-1972 Rhymes and Meters etext30857 Serrano, Bento O Oraculo do Passado, do presente e do Futuro (5/7) etext30866 Stebbing, W. (William), 1832-1926 Analysis of Mr. Mill's System of Logic etext30890 Twain, Mark, 1835-1910 Les Aventures De Tom Sawyer etext30930 Rosny, Léon Louis Lucien Prunol de L'idée de Dieu dans la philosophie religieuse de la Chine etext30991 The Esperantist, Vol. 1, No. 4 etext31006 Saunders, Frederick The Author's Printing and Publishing Assistant etext31020 Hall, E. Raymond (Eugene Raymond), 1902-1986 A New Subspecies of Pocket Mouse from Kansas etext31130 Sabin, Edwin L. (Edwin Legrand), 1870-1952 Boys' Book of Frontier Fighters etext31205 Spinoza, Benedictus de, 1632-1677 The Philosophy of Spinoza etext31209 Anonymous Indian Fairy Tales etext31259 Rolt-Wheeler, Francis, 1876-1960 The Boy With the U. S. Life-Savers etext31274 Trollope, Anthony, 1815-1882 Lady Anna etext31347 Queirós, José Maria Eça de, 1845-1900 Contos etext31351 Brinton, Daniel Garrison, 1837-1899 A Record of Study in Aboriginal American Languages etext31352 Bigelow, Maurice Alpheus, 1872-1955 Sex-education etext31359 Various Notes and Queries, Number 235, April 29, 1854 etext31391 Tynan, Katharine, 1861-1931 An Isle in the Water etext31399 Savi, E. W. (Ethel Winifred), 1865-1954 Banked Fires etext31419 Marlowe, Amy Bell Wyn's Camping Days etext31444 Karkavitsas, Andreas, 1865-1922 Παλιές Αγάπες etext31460 Pärn, Jaakko Oma tupa, oma lupa etext31467 Rowland, Helen, 1876- The Rubáiyát of a Bachelor etext31516 Dick, Philip K., 1928-1982 The Eyes Have It etext31532 O'Shea, John Augustus Romantic Spain etext31551 Herrmann, Oscar Pirates and Piracy etext31608 Saltus, Edgar, 1855-1921 The Lords of the Ghostland etext31609 Jacob, Robert Urie A Trip to the Orient etext31651 Cox, Irving E. The Instant of Now etext31652 Shaara, Michael Conquest Over Time etext31658 Huch, Ricarda Octavia, 1864-1947 Liebesgedichte etext31672 Meyer, Kuno The Triads of Ireland etext31779 Ashley, George T. From Bondage to Liberty in Religion etext31863 Loti, Pierre, 1850-1923 La troisième jeunesse de Madame Prune etext31867 Blakeslee, B. F. History of the Sixteenth Connecticut Volunteers etext31892 Gold, H. L. (Horace Leonard), 1914-1996 The Old Die Rich etext32026 Simak, Clifford D., 1904-1988 The World That Couldn't Be etext32153 Adams, Francis William Lauderdale, 1862-1893 Songs of the Army of the Night etext32190 Pope, Alexander, 1688-1744 The Works of Alexander Pope, Volume 1 etext32267 A Century of English Essays etext32269 Goodwin, Harold L. (Harold Leland), 1914-1990 The Caves of Fear etext32273 Stories of Our Naval Heroes etext32301 etext32314 Various The Esperantist, Vol. 1, No. 7 etext32371 Blunden, Edmund, 1896-1974 The Bonadventure etext32483 Robertson, James Craigie, 1813-1882 Sketches of Church History etext32522 Dick, Philip K., 1928-1982 Mr. Spaceship etext32547 James, William, 1842-1910 Essays in Radical Empiricism etext32549 Athanasius, Saint, Patriarch of Alexandria, -373 Declaration of Faith etext32609 Riis, Jacob A. (Jacob August), 1849-1914 The Children of the Poor etext32614 Bailey, James Blake The Diary of a Resurrectionist, 1811-1812 etext32654 Klass, Philip Project Hush etext32704 Rhodes, Eugene Manlove, 1869-1934 Stepsons of Light etext22 Roget, Peter Mark, 1779-1869 Roget's Thesaurus etext39 Krol, Ed Hitchhiker's Guide to the Internet etext66 Joly, Norman F. The Dawn of Amateur Radio in the U.K. and Greece: a personal view etext73 Crane, Stephen, 1871-1900 The Red Badge of Courage etext112 McGowan, Richard, 1958- Violists etext134 Wollstonecraft, Mary, 1759-1797 Maria, or the Wrongs of Woman etext150 Plato, 427? BC-347? BC The Republic etext170 Collins, Wilkie, 1824-1889 The Haunted Hotel etext174 Wilde, Oscar, 1854-1900 The Picture of Dorian Gray etext212 Unknown A List of Factorial Math Constants etext235 Salza, Giuseppe William Gibson Interviewed etext280 Stevenson, Robert Louis, 1850-1894 Records of a Family of Engineers etext323 Kipling, Rudyard, 1865-1936 Verses 1889-1896 etext347 Unknown Grettir the Strong, Icelandic Saga etext352 Ferber, Edna, 1885-1968 Buttered Side Down: Stories etext355 Doyle, Arthur Conan, Sir, 1859-1930 The Parasite etext411 Davis, Richard Harding, 1864-1916 The King's Jackal etext421 Stevenson, Robert Louis, 1850-1894 Kidnapped etext438 Stevenson, Robert Louis, 1850-1894 Underwoods etext442 Teasdale, Sara, 1884-1933 Love Songs etext464 Stevenson, Robert Louis, 1850-1894 In the South Seas etext470 Chesterton, G. K. (Gilbert Keith), 1874-1936 Heretics etext472 Chesnutt, Charles W. (Charles Waddell), 1858-1932 The House Behind the Cedars etext485 Baum, L. Frank (Lyman Frank), 1856-1919 The Road to Oz etext491 Atherton, Gertrude Franklin Horn, 1857-1948 Rezanov etext594 Twilight Stories etext639 Gamble, Eliza Burt The God-Idea of the Ancients etext669 etext671 Alger, Horatio, 1832-1899 Phil, the Fiddler etext707 Hornung, E. W. (Ernest William), 1866-1921 Raffles, Further Adventures of the Amateur Cracksman etext711 Haggard, Henry Rider, 1856-1925 Allan Quatermain etext869 Jerome, Jerome K. (Jerome Klapka), 1859-1927 The Soul of Nicholas Snyders, or, The Miser of Zandam etext900 Gibbon, Edward, 1737-1794 History of the Decline and Fall of the Roman Empire — Volume 3 — Folio format etext949 Appleton, Victor [pseud.] Tom Swift and His Submarine Boat, or, under the Ocean for Sunken Treasure etext981 Anonymous Beowulf etext1060 Lang, Andrew, 1844-1912 Grass of Parnassus etext1081 Gogol, Nikolai Vasilievich, 1809-1852 Mertvye dushi. English etext1167 Green, Anna Katharine, 1846-1935 A Strange Disappearance etext1186 Meynell, Alice Christiana Thompson, 1847-1922 Poems etext1198 Boldrewood, Rolf, 1826-1915 Robbery under Arms; a story of life and adventure in the bush and in the Australian goldfields etext1246 Aiken, Conrad, 1889-1973 The House of Dust; a symphony etext1302 Blades, William, 1824-1890 The Enemies of Books etext1382 Meredith, George, 1828-1909 Poems — Volume 2 etext1396 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Rienzi, Last of the Roman Tribunes etext1518 Shakespeare, William, 1564-1616 King Henry IV, Part 2 etext1533 Shakespeare, William, 1564-1616 Macbeth etext1535 Shakespeare, William, 1564-1616 Coriolanus etext1557 Pyle, Howard, 1853-1911 Men of Iron etext1683 Balzac, Honoré de, 1799-1850 Honorine etext1728 Homer, 750? BC-650? BC The Odyssey etext1796 Shakespeare, William, 1564-1616 Antony and Cleopatra etext1814 Biggers, Earl Derr, 1884-1933 The Agony Column etext1835 Groner, Auguste, 1850-1929 The Case of the Pool of Blood in the Pastor's Study etext1836 Groner, Auguste, 1850-1929 The Case of the Golden Bullet etext1848 Haggard, Henry Rider, 1856-1925 Montezuma's Daughter etext1849 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Yellow Crayon etext1916 Hawthorne, Nathaniel, 1804-1864 The Great Stone Face etext1963 Rinehart, Mary Roberts, 1876-1958 The Confession etext1983 Tarkington, Booth, 1869-1946 Monsieur Beaucaire etext2034 Scott, Walter, Sir, 1771-1832 Waverley: or, 'Tis sixty years since etext2040 De Quincey, Thomas, 1785-1859 Confessions of an English Opium-Eater etext2046 Brown, William Wells, 1816?-1884 Clotel; or, the President's Daughter etext2141 Henry, O., 1862-1910 Strictly business: more stories of the four million etext2183 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Three Men on the Bummel etext2206 Human Genome Project Chromosome Number 06 etext2258 Shakespeare, William, 1564-1616 Henry VIII etext2272 Raleigh, Walter, Sir, 1554-1618 The Discovery of Guiana etext2336 Goethe, Johann Wolfgang von, 1749-1832 Wilhelm Meisters Lehrjahre — Band 2 etext2385 Hamilton, Gail, 1833-1896 Gala-days etext2476 Darlington, Edgar B. P. The Circus Boys in Dixie Land : or, Winning the Plaudits of the Sunny South etext2504 Bancroft, Hubert Howe, 1832-1918 Some Cities and San Francisco, and Resurgam etext2531 Gaskell, Elizabeth Cleghorn, 1810-1865 An Accursed Race etext2632 Huxley, Thomas Henry, 1825-1895 The Lights of the Church and the Light of Science etext2661 Harte, Bret, 1836-1902 The Story of a Mine etext2694 Melville, Herman, 1819-1891 I and My Chimney etext2722 Haggard, Henry Rider, 1856-1925 Morning Star etext2744 Dumas père, Alexandre, 1802-1870 Mary Stuart etext2745 Dumas père, Alexandre, 1802-1870 Karl Ludwig Sand etext2774 Galsworthy, John, 1867-1933 The Patrician etext2869 James, Henry, 1843-1916 The Point of View etext2892 Stephens, James, 1882-1950 Irish Fairy Tales etext2896 Hichborn, Franklin, 1869?-1964 Story of the Session of the California Legislature of 1909 etext2909 Galsworthy, John, 1867-1933 The Eldest Son etext2929 Huxley, Thomas Henry, 1825-1895 Origin of Species etext2982 Paine, Albert Bigelow, 1861-1937 Mark Twain, a Biography — Volume I, Part 1: 1835-1866 etext3017 The Forerunner, Volume 1 (1909-1910) etext3092 Wrong, George McKinnon, 1860-1948 The Conquest of New France etext3099 Paine, Ralph Delahaye, 1871-1925 The Old Merchant Marine; A chronicle of American ships and sailors etext3112 Warner, Charles Dudley, 1829-1900 Pilgrim and American etext3153 Haggard, Henry Rider, 1856-1925 The Virgin of the Sun etext3164 Floyd, Juanita Helm, 1880- Women in the Life of Balzac etext3241 Connor, Ralph, 1860-1937 Corporal Cameron of the North West Mounted Police; a tale of the Macleod trail etext3283 The Upanishads etext3304 Sinclair, Upton, 1878-1968 The Machine etext3314 Irwin, Will, 1873-1948 The City That Was; a requiem of old San Francisco etext3324 Bangs, John Kendrick, 1862-1922 A Rebellious Heroine etext3332 Darwin, Charles, 1809-1882 Variation of Animals and Plants under Domestication etext3363 Howells, William Dean, 1837-1920 Fennel and Rue etext3371 Howells, William Dean, 1837-1920 Their Silver Wedding Journey — Volume 1 etext3417 Smith, Francis Hopkinson, 1838-1915 The Fortunes of Oliver Horn etext3424 Clarke, Marcus Andrew Hislop, 1846-1881 For the Term of His Natural Life etext3445 Anonymous Arabian nights. English etext3448 Anonymous Arabian nights. English etext3459 Galsworthy, John, 1867-1933 Quotations from the Project Gutenberg Editions of the Works of John Galsworthy etext3460 Mühlbach, L. (Luise), 1814-1873 Old Fritz and the New Era etext3489 Legros, Georges Victor, 1862- Fabre, Poet of Science etext3490 Barrie, J. M. (James Matthew), 1860-1937 The Admirable Crichton etext3511 Human Genome Project Human Genome Project, Chromosome Number 11 etext3514 Human Genome Project Human Genome Project, Chromosome Number 14 etext3516 Human Genome Project Human Genome Project, Chromosome Number 16 etext3563 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 13 etext3572 Wairy, Louis Constant, 1778-1845 Recollections of the Private Life of Napoleon — Volume 05 etext3605 etext3695 Jonson, Ben, 1573-1637 Every Man out of His Humour etext3715 Bierce, Ambrose, 1842-1914? The Parenticide Club etext3719 Trollope, Anthony, 1815-1882 The Mistletoe Bough etext3727 Richardson, Henry Handel, 1870-1946 Maurice Guest etext3752 Hakluyt, Richard, 1552-1616 Voyager's Tales etext3780 James, G. P. R. (George Payne Rainsford), 1801-1860 The King's Highway etext3784 etext3892 Goldsmith, Lewis, 1763-1846 Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 1 etext3909 Rousseau, Jean-Jacques, 1712-1778 The Confessions of J. J. Rousseau — Volume 09 etext3927 Claretie, Jules, 1840-1913 Prince Zilah — Volume 1 etext3940 Musset, Alfred de, 1810-1857 The Confession of a Child of the Century — Volume 2 etext3967 Bourget, Paul, 1852-1935 Cosmopolis — Complete etext3971 Bentzon, Th. (Thérèse), 1840-1907 Jacqueline — Complete etext3972 Bazin, René, 1853-1932 The Ink-Stain (Tache d'encre) — Volume 1 etext4110 Young, Filson, 1876-1938 Christopher Columbus and the New World of His Discovery — Volume 3 etext4167 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 45: August/September 1666 etext4184 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Complete 1667 N.S. etext4186 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 62: February 1667-68 etext4242 Morris, Joseph Ernest Beautiful Europe: Belgium etext4279 Burroughs, John, 1837-1921 Winter Sunshine etext4291 etext4304 Gissing, George, 1857-1903 Our Friend the Charlatan etext4308 Gissing, George, 1857-1903 The Town Traveller etext4348 Norris, Kathleen Thompson, 1880-1966 Poor, Dear Margaret Kirby etext4396 Allen, Grant, 1848-1899 The Woman Who Did etext4491 Meredith, George, 1828-1909 Celt and Saxon — Complete etext4560 Coolidge, Susan, 1835-1905 Verses etext4570 Bertrand, Huguette Ascension Du Desir; Poesie etext4675 Ballou, Maturin Murray, 1820-1895 The Sea-Witch etext4737 Swift, Jonathan, 1667-1745 A Tale of a Tub etext4764 Galsworthy, John, 1867-1933 A Family Man : in three acts etext4771 Voltaire, 1694-1778 Le Blanc Et Le Noir etext4818 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 17: 1570-72 etext4830 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 28: 1578, part II etext4971 Chapais, Thomas, 1858-1946 The Great Intendant : A chronicle of Jean Talon in Canada, 1665-1672 etext4982 Barr, Robert, 1850-1912 A Rock in the Baltic etext4993 Raine, William MacLeod, 1871-1954 A Texas Ranger etext5012 Jefferson, Thomas, 1743-1826 State of the Union Address etext5030 Harrison, Benjamin, 1833-1901 State of the Union Address etext5045 Carter, Jimmy, 1924- State of the Union Address etext5048 Clinton, William Jefferson, 1946- State of the Union Address etext5064 Pearson, Edmund Lester, 1880-1937 The Voyage of the Hoppergrass etext5101 Johnson, Samuel, 1709-1784 Lives of the English Poets : Prior, Congreve, Blackmore, Pope etext5192 Maxwell, James Clerk, 1831-1879 On a Dynamical Top, for exhibiting the phenomena of the motion of a system of invariable form about a fixed point, with some suggestions as to the Earth's motion etext5215 Film: Several Different Atomic Detonations etext5222 Petronius Arbiter, 20-66 The Satyricon — Volume 05: Crotona Affairs etext5253 Roe, Vingie E. (Vingie Eve), 1879-1958 The Maid of the Whispering Hills etext5259 Richards, Laura Elizabeth Howe, 1850-1943 Hildegarde's Neighbors etext5272 Stevenson, Robert Louis, 1850-1894 The Sea Fogs etext5276 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 02 etext5286 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 12 etext5288 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 14 etext5296 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 22 etext5307 Mozart, Wolfgang Amadeus, 1756-1791 The Letters of Wolfgang Amadeus Mozart — Volume 01 etext5333 Jonson, Ben, 1573-1637 Every Man in His Humor etext5335 Wells, Carolyn, 1862-1942 Raspberry Jam etext5339 Chamisso, Adelbert von, 1781-1838 Peter Schlemihl etext5435 Aldrich, Thomas Bailey, 1836-1907 The Stillwater Tragedy etext5480 Ebers, Georg, 1837-1898 Cleopatra — Volume 08 etext5501 Ebers, Georg, 1837-1898 Serapis — Volume 01 etext5511 Ebers, Georg, 1837-1898 Arachne — Volume 04 etext5518 Ebers, Georg, 1837-1898 The Bride of the Nile — Volume 02 etext5536 Ebers, Georg, 1837-1898 A Thorny Path — Volume 07 etext5541 Ebers, Georg, 1837-1898 A Thorny Path — Volume 12 etext5543 Ebers, Georg, 1837-1898 In the Fire of the Forge — Volume 01 etext5554 Ebers, Georg, 1837-1898 Margery — Volume 03 etext5589 Ebers, Georg, 1837-1898 The Elixir etext5645 Seymour, Robert, 1800-1836 Sketches by Seymour — Volume 01 etext5830 Alcott, Louisa May, 1832-1888 A Garland for Girls etext5876 Joy, James Richard Ten Englishmen of the Nineteenth Century etext5877 Anonymous Reina Valera New Testament of the Bible 1602, Book of Matthew etext5878 Anonymous Reina Valera New Testament of the Bible 1858 etext5902 Sylvester, Charles Herbert Journeys Through Bookland, Vol. 3 etext5905 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 03 etext5908 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 06 etext5916 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 14 etext5923 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 20 etext6024 Swinburne, Algernon Charles, 1837-1909 The Duke of Gandia etext6083 Hayes, Clair W. (Clair Wallace), 1887- The Boy Allies with Haig in Flanders etext6124 Richardson, Samuel, 1689-1761 Pamela, or Virtue Rewarded etext6172 Blatchford, Robert, 1851-1943 God and my Neighbour etext6203 Parker, Gilbert, 1862-1932 When Valmond Came to Pontiac, Volume 2. etext6210 Parker, Gilbert, 1862-1932 The Trail of the Sword, Complete etext6240 Parker, Gilbert, 1862-1932 The Lane That Had No Turning, Volume 4 etext6320 Various English literary criticism etext6321 Belt, Thomas, 1832-1878 The Naturalist in Nicaragua etext6323 The Junior Classics — Volume 4 etext6454 Moodie, Susanna, 1803-1885 George Leatrim etext6471 Marryat, Frederick, 1792-1848 The Children of the New Forest etext6509 Wake, William, 1657-1737 The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 3, Infancy of Jesus Christ etext6568 Ellwood, Charles A. (Charles Abram), 1873-1946 Sociology and Modern Social Problems etext6570 Smith, Goldwin, 1823-1910 Lectures and Essays etext6574 Noyes, Alfred, 1880-1958 Watchers of the Sky etext6655 Fitzhugh, Percy Keese, 1876-1950 Tom Slade : Boy Scout of the Moving Pictures etext6672 De Quincey, Thomas, 1785-1859 The Caesars etext6784 Schiller, Friedrich, 1759-1805 Love and Intrigue etext6786 Schiller, Friedrich, 1759-1805 The Piccolomini etext6795 Schiller, Friedrich, 1759-1805 The Poems of Schiller — Second period etext6827 Stuart, Gordon Boy Scouts of the Air on Lost Island etext6894 Field, Maria Antonia, 1885- Chimes of Mission Bells; an historical sketch of California and her missions etext6938 Aragona, Tullia d', 1510-1556 Rime di Tullia d'Aragona, cortigiana del secolo XVI etext6981 Jefferies, Richard, 1848-1887 The Open Air etext7030 Jefferies, Richard, 1848-1887 Field and Hedgerow etext7064 Parkman, Francis, 1823-1893 A Half-Century of Conflict - Volume II etext7152 Burney, Fanny, 1752-1840 Cecilia; Or, Memoirs of an Heiress — Volume 3 etext7168 McFadyen, John Edgar Introduction to the Old Testament etext7176 Tolstoy, Leo, graf, 1828-1910 A Letter to a Hindu etext7193 Twain, Mark, 1835-1910 The Adventures of Tom Sawyer, Part 1. etext7274 Painter, F. V. N. (Franklin Verzelius Newton), 1852-1931 Poets of the South etext7287 Song yu, 3rd cent. B.C. Han shi wai chuan etext7297 The Vedanta-Sutras with the Commentary by Ramanuja — Sacred Books of the East, Volume 48 etext7630 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Devereux — Complete etext7695 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 A Strange Story — Volume 04 etext7717 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Last of the Barons — Volume 03 etext7762 Hamsun, Knut, 1859-1952 Wanderers etext7769 Hakluyt, Richard, 1552-1616 The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 04 etext7803 Bassett, Sara Ware, 1872-1968 The Story of Sugar etext7809 Loti, Pierre, 1850-1923 Les Désenchantées — Roman des harems Turcs contemporains etext7878 Hawthorne, Nathaniel, 1804-1864 Passages from the English Notebooks, Complete etext7896 Leblanc, Maurice, 1864-1941 Huit coups de l'horloge. English etext7899 Chapman, Allen The Radio Boys' First Wireless etext7957 Ober, C. K. Out of the Fog etext8019 Anonymous The Bible, King James version, Book 19: Psalms etext8026 Anonymous The Bible, King James version, Book 26: Ezekiel etext8048 Anonymous The Bible, King James version, Book 48: Galatians etext8068 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture etext8077 Robinson, James Harvey, 1863-1936 The Mind in the Making etext8085 Dante Alighieri, 1265-1321 Die Göttliche Komödie etext8090 Hawthorne, Nathaniel, 1804-1864 Our Old Home etext8137 Morrison, Gertrude W. The Girls of Central High Aiding the Red Cross etext8158 Merriman, Henry Seton, 1862-1903 Barlasch of the Guard etext8249 Anonymous The World English Bible (WEB): Song of Solomon etext8258 Anonymous The World English Bible (WEB): Obadiah etext8264 Anonymous The World English Bible (WEB): Haggai etext8297 Various Scientific American Supplement, No. 286, June 25, 1881 etext8319 The Bible, Douay-Rheims, Book 19: Esther etext8321 The Bible, Douay-Rheims, Book 21: Psalms etext8322 The Bible, Douay-Rheims, Book 22: Proverbs etext8344 The Bible, Douay-Rheims, Book 44: Malachias etext8363 The Bible, Douay-Rheims, Book 63: Titus etext8450 Chandler, Mary G. The Elements of Character etext8461 Hunt, Henry, 1773-1835 Memoirs of Henry Hunt, Esq. — Volume 2 etext8474 Twain, Mark, 1835-1910 Life on the Mississippi, Part 4. etext8515 Zola, Émile, 1840-1902 The Three Cities Trilogy: Lourdes, Volume 5 etext8517 Cunningham, J. T., 1859-1935 Hormones and Heredity etext8562 MacDonald, George, 1824-1905 The Seaboard Parish, Complete etext8570 Bates, Arlo, 1850-1918 The Philistines etext8601 Tennyson, Alfred Tennyson, Baron, 1809-1892 The Early Poems of Alfred Lord Tennyson etext8621 Doyle, Arthur Conan, Sir, 1859-1930 Tales of Terror and Mystery etext8638 Sleeper, John Sherburne, 1794-1878 Jack in the Forecastle etext8658 Anonymous The Book of the Thousand Nights and One Night, Volume IV etext8710 The Doré Gallery of Bible Illustrations, Complete etext8733 Kingsley, Charles, 1819-1875 The Hermits etext8751 Burroughs, Edgar Rice, 1875-1950 Thuvia, Maid of Mars etext8797 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Paradise, Volume 2 etext8807 Davis, Richard Harding, 1864-1916 Cuba in War Time etext8808 Kippis, Andrew, 1725-1795 Narrative of Cook's Voyage etext8860 Russell, Michael, 1781-1848 Palestine or the Holy Land etext8864 Fournier, Claude, 1745-1825 Mémoires secrets de Fournier l'Américain etext8865 Donnell, Annie Hamilton, 1862- Miss Theodosia's Heartstrings etext8906 Livingstone, W. P. Mary Slessor of Calabar: Pioneer Missionary etext8908 Killen, W. D. (William Dool), 1806-1902 The Ignatian Epistles Entirely Spurious etext8934 Hewlett, Maurice Henry, 1861-1923 The Forest Lovers etext8985 Verne, Jules, 1828-1905 In Search of the Castaways etext9003 Twain, Mark, 1835-1910 The 30,000 Dollar Bequest and Other Stories etext9022 Twain, Mark, 1835-1910 Goldsmith's Friend Abroad Again etext9076 Various Scientific American Supplement, No. 433, April 19, 1884 etext9102 Braddon, M. E. (Mary Elizabeth), 1835-1915 Run to Earth etext9111 Eeden, Frederik van, 1860-1932 The Bride of Dreams etext9146 Melville, Herman, 1819-1891 I and my Chimney etext9161 Maupassant, Guy de, 1850-1893 Comedy of Marriage and Other Tales etext9230 Hawthorne, Nathaniel, 1804-1864 P.'s Correspondence (From "Mosses from an Old Manse") etext9267 Bower, B. M., 1874-1940 Chip, of the Flying U etext9268 Melville, Herman, 1819-1891 Omoo etext9308 Ellis, DeLancey M. New York at the Louisiana Purchase Exposition, St. Louis 1904 etext9320 Maclaren, Ian, 1850-1907 A Doctor of the Old School — Complete etext9326 Lessing, Gotthold Ephraim, 1729-1781 Gespräche für Freimaurer etext9333 Seton, Ernest Thompson, 1860-1946 Johnny Bear etext9346 Conrad, Joseph, 1857-1924 Notes on Life and Letters etext9359 Conrad, Joseph, 1857-1924 Under Western Eyes etext9414 Edgeworth, Maria, 1767-1849 Tales and Novels — Volume 05 etext9447 Holley, Marietta, 1836-1926 Samantha among the Brethren — Volume 5 etext9448 Holley, Marietta, 1836-1926 Samantha among the Brethren — Volume 6 etext9491 Shaw, Bernard, 1856-1950 Candida etext9500 Carleton, Will, 1845-1912 Farm Ballads etext9521 Thackeray, William Makepeace, 1811-1863 Burlesques etext9524 Thackeray, William Makepeace, 1811-1863 From Cornhill to Grand Cairo etext9542 Various Graded Poetry: Seventh Year etext9582 Whittier, John Greenleaf, 1807-1892 Personal Poems II etext9657 Hawes, Charles Boardman The Mutineers etext9672 Eliot, George, 1819-1880 Adam Bede etext9708 Dickens, Charles, 1812-1870 George Silverman's Explanation etext9718 Dickens, Charles, 1812-1870 Mudfog and Other Sketches etext9734 Dickens, Charles, 1812-1870 Sketches of Young Gentlemen etext9777 Riley, James Whitcomb, 1849-1916 Riley Child-Rhymes etext9785 Scott, Walter, Sir, 1771-1832 Woodstock; or, the Cavalier etext9854 Chapman, Allen Frank Roscoe's Secret etext9925 Brand, Max, 1892-1944 Black Jack etext9926 Yonge, Charlotte Mary, 1823-1901 The Two Guardians etext9932 Grey, Zane, 1872-1939 The Last Trail etext9935 Woman's Institute of Domestic Arts and Sciences Woman's Institute Library of Cookery etext9972 Hauptmann, Gerhart, 1862-1946 The Dramatic Works of Gerhart Hauptmann etext10012 Muir, John, 1838-1914 The Mountains of California etext10014 Various Punchinello, Volume 1, No. 18, July 30, 1870 etext10016 Various Punchinello, Volume 1, No. 21, August 20, 1870 etext10046 Buchan, John, 1875-1940 Salute to Adventurers etext10089 Mackenzie, Donald Alexander, 1873-1936 Elves and Heroes etext10153 Lenord, Frank Voice Trial - Kinetophone Actor Audition etext10215 Rovani, Giuseppe, 1818-1874 Manfredo Palavicino etext10218 Brandt, G. N. (Gudmund Nyeland), 1878-1945 Stauder etext10233 Hutchinson, Miller Reese Transcontinental Telephone Address to Thomas A. Edison etext10236 International Correspondence School - Spanish Lesson #9 etext10277 Handel, George Frideric, 1685-1759 Hallelujah Chorus etext10323 Stratemeyer, Edward, 1862-1930 The Rover Boys at College etext10325 Kingsley, Charles, 1819-1875 The Gospel of the Pentateuch etext10327 Vance, Louis Joseph, 1879-1933 Alias the Lone Wolf etext10337 Garnett, David, 1892-1981 Lady into Fox etext10342 Merriman, Henry Seton, 1862-1903 The Velvet Glove etext10363 Cooper, James Fenimore, 1789-1851 The Bravo etext10364 Kingsley, Charles, 1819-1875 Yeast: a Problem etext10373 Fletcher, J. S. (Joseph Smith), 1863-1935 The Middle Temple Murder etext10412 National Promenade Band El Choclo Tango etext10482 Alcott, William A. (William Andrus), 1798-1859 The Young Mother etext10544 Various Punchinello, Volume 2, No. 37, December 10, 1870 etext10546 Sienkiewicz, Henryk, 1846-1916 So Runs the World etext10552 Fitzhugh, Percy Keese, 1876-1950 Roy Blakeley etext10613 Adams, Brooks, 1848-1927 The Theory of Social Revolutions etext10662 Hodgson, William Hope, 1877-1918 The Night Land etext10678 Thiers, Adolphe, 1797-1877 Histoire de la Révolution française, Tome 4 etext10750 Sheard, Virna, 1865?-1943 The Miracle and Other Poems etext10835 Johnson, Samuel, 1709-1784 Dr. Johnson's Works: Life, Poems, and Tales, Volume 1 etext10893 A Compilation of the Messages and Papers of the Presidents etext11049 Balzac, Honoré de, 1799-1850 Eugénie Grandet etext11083 Anonymous The Parables of the Saviour etext11126 Sweetser, Kate Dickinson, -1939 Ten Girls from Dickens etext11144 Davis, Richard Harding, 1864-1916 Somewhere in France etext11152 Kivi, Aleksis, 1834-1872 Nummisuutarit etext11205 Verne, Jules, 1828-1905 Vingt mille lieues sous les mers. Dutch etext11267 Various The Mirror of Literature, Amusement, and Instruction etext11269 Sheldon, Georgie, Mrs., 1843-1926 Virgie's Inheritance etext11311 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Masters of the Peaks etext11312 Various The Mirror of Literature, Amusement, and Instruction etext11330 Various The Mirror of Literature, Amusement, and Instruction etext11342 Various The Mirror of Literature, Amusement, and Instruction etext11371 Gaskell, Elizabeth Cleghorn, 1810-1865 The Moorland Cottage etext11386 Various The Mirror of Literature, Amusement, and Instruction etext11417 France, Marie de French Mediaeval Romances from the Lays of Marie de France etext11452 Various Stories by American Authors, Volume 6 etext11457 Various The Mirror of Literature, Amusement, and Instruction etext11459 Various The Mirror of Literature, Amusement, and Instruction etext11470 Le Feuvre, Amy, -1929 His Big Opportunity etext11560 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Barbarism of Berlin etext11563 Havergal, Frances Ridley, 1836-1879 Morning Bells; Or, Waking Thoughts for Little Ones etext11630 Various Punch, or the London Charivari, Volume 156, June 18, 1919 etext11644 Barrili, Anton Giulio, 1836-1908 La notte del Commendatore etext11664 Frey, Hildegard G. (Hildegard Gertrude), 1891-1957 The Camp Fire Girls Do Their Bit etext11712 Various Punch, or the London Charivari, Volume 156, June 25, 1919 etext11724 Zùccoli, Luciano, 1868-1929 Roberta etext11744 Anonymous L'oppidum de Bibracte etext11778 Human Genome Project Chromosome Number 04 etext11889 Richardson, Samuel, 1689-1761 Clarissa Harlowe; or the history of a young lady — Volume 7 etext11965 Royden, A. Maude (Agnes Maude), 1876-1956 Sex and Common-Sense etext12041 Blasco Ibáñez, Vicente, 1867-1928 The Shadow of the Cathedral etext12085 Besant, Annie Wood, 1847-1933 Annie Besant etext12119 Strömberg, Sigge, 1885-1920 Krigskorrespondenter och andra lögnare etext12126 Jacobs, W. W. (William Wymark), 1863-1943 In the Library etext12136 etext12139 Bower, B. M., 1874-1940 The Gringos etext12194 Turgenev, Ivan Sergeevich, 1818-1883 Liza etext12237 Beethoven, Ludwig van, 1770-1827 String Quartet No. 16 in F major Opus 135 etext12261 Frazer, James George, Sir, 1854-1941 Balder the Beautiful, Volume I. etext12382 Sudermann, Hermann, 1857-1928 Kissanporras etext12443 etext12450 Glyn, Elinor, 1864-1943 The Reason Why etext12451 Carolus-Duran [pseud.], 1838?-1917 De profundis! etext12549 Cuyler, Theodore Ledyard, 1822-1909 Recollections of a Long Life etext12560 Stellman, Louis J. (Louis John), 1877-1961 Port O' Gold etext12561 Pfeiffer, Ida, 1797-1858 A Visit to the Holy Land, Egypt, and Italy etext12627 Pereda, José María de, 1833-1906 Escenas Montañesas etext12642 Unknown The Lady's Album of Fancy Work for 1850 etext12651 Butler, Samuel, 1835-1902 The Humour of Homer and Other Essays etext12660 Wienbarg, Ludolf, 1802-1872 Soll die plattdeutsche Sprache gepflegt oder ausgerottet werden? etext12675 Beavan, F. (Frederick), Mrs., 1818-1897 Sketches and Tales Illustrative of Life in the Backwoods of New Brunswick etext12725 Aguilar, Grace, 1816-1847 The Vale of Cedars etext12869 Sand, George, 1804-1876 Metella etext12878 Duffield, J. W. The Radio Boys in the Thousand Islands etext12896 Calvert, George H. (George Henry), 1803-1889 Essays Æsthetical etext12951 Various Punch, or the London Charivari, Volume 100, January 10, 1891 etext12957 Bates, Gordon The Khaki Boys over the Top etext12962 Bursill, Henry Hand Shadows to Be Thrown upon the Wall etext13042 Irving, Washington, 1783-1859 Knickerbocker's History of New York, Complete etext13075 Kruckvich, Francis A Hero and a Great Man etext13164 Canth, Minna, 1844-1897 Murtovarkaus; Roinilan talossa etext13214 Tolstoy, Leo, graf, 1828-1910 Anna Karenina etext13246 Atherton, Gertrude Franklin Horn, 1857-1948 The Conqueror etext13320 Mariano, Patricio Juan Masili o Ang pinuno ng tulisan etext13371 Heidenstam, Verner von, 1859-1940 Folkungaträdet etext13391 Various Punch, or the London Charivari, Volume 100, June 6, 1891 etext13411 Various Notes and Queries, Number 42, August 17, 1850 etext13508 Lie, Jonas Lauritz Idemil, 1833-1908 Weird Tales from Northern Seas etext13648 Lear, Edward, 1812-1888 More Nonsense etext13654 Malot, Hector, 1830-1907 Ida et Carmelita etext13664 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 Selections from the Writings of Lord Dunsay etext13696 Brondgeest, M. G. Reis door Tunis en Algiers etext13722 etext13745 Aho, Juhani, 1861-1921 Lastuja IV-VII etext13749 Stevens, Thomas, 1854-1935 Around the World on a Bicycle - Volume II etext13759 etext13776 Anonymous One Day etext13823 Ward, Humphry, Mrs., 1851-1920 Lady Merton, Colonist etext13846 Descartes, René, 1596-1650 Discours de la méthode etext13925 Various Notes and Queries, Number 24, April 13, 1850 etext13987 Hossack, John, 1806-1891 Speech of John Hossack, Convicted of a Violation of the Fugitive Slave Law etext14096 Carter, Nicholas With Links of Steel etext14150 Bacheller, Irving, 1859-1950 The Light in the Clearing etext14191 Besant, Walter, Sir, 1836-1901 As We Are and As We May Be etext14263 Lane, Elinor Macartney, 1864-1909 Katrine etext14283 Various Dew Drops, Vol. 37, No. 16, April 19, 1914 etext14321 Various Punch, or the London Charivari, Volume 102, February 20, 1892 etext14322 Euripides, 480? BC-406 BC The Electra of Euripides etext14346 Knox, Robert, 1641-1720 An Historical Relation of the Island Ceylon in the East Indies etext14376 Wilson, Harry Leon, 1867-1939 Somewhere in Red Gap etext14399 Bernier, Hector, 1886-1947 Ce que disait la flamme etext14434 Zola, Émile, 1840-1902 Kertomuksia etext14495 Rapin, René, 1621-1687 De Carmine Pastorali (1684) etext14497 Brooks, Phillips, 1835-1893 Addresses by the right reverend Phillips Brooks etext14500 Erasmus, Desiderius, 1469-1536 Two Dyaloges (c. 1549) etext14526 Crawford, F. Marion (Francis Marion), 1854-1909 The Little City of Hope etext14570 Pakkala, Teuvo, 1862-1925 Oulua soutamassa etext14594 Payne, A. G., 1840-1894 Cassell's Vegetarian Cookery etext14624 Page, Thomas Nelson, 1853-1922 Santa Claus's Partner etext14792 Louandre, Charles La sorcellerie etext14815 Peck, George W. (George Wilbur), 1840-1916 Peck's Compendium of Fun etext14818 McCutcheon, George Barr, 1866-1928 The Daughter of Anderson Crow etext14923 Various Punch, or the London Charivari, Volume 1, August 14, 1841 etext14930 Various Punch, or the London Charivari, Volume 1, October 2, 1841 etext14935 Various Punch, or the London Charivari, Volume 1, November 6, 1841, etext14947 Dryden, John, 1631-1700 The works of John Dryden, $c now first collected in eighteen volumes. $p Volume 16 etext14973 Essays on Wit No. 2 etext14974 Various Punch, or the London Charivari, Volume 152, April 4, 1917 etext15006 Potts, Eugenia Dunlap Historic Papers on the Causes of the Civil War etext15012 Various Punch, or the London Charivari, Volume 152, March 14, 1917 etext15044 Nicholson, Meredith, 1866-1947 A Reversible Santa Claus etext15117 Warfield, Catherine A., 1816-1877 Sea and Shore etext15203 Verne, Jules, 1828-1905 Un billet de loterie etext15208 Dumas père, Alexandre, 1802-1870 Les mille et un fantomes etext15252 Victorian Short Stories: Stories of Successful Marriages etext15258 Falconer, Lanoe Cecilia de Noël etext15274 Hill, Grace Livingston, 1865-1947 The Girl from Montana etext15288 Proust, Marcel, 1871-1922 Sodome et Gomorrhe - Première partie etext15311 Morris, William, 1834-1896 Poems By The Way & Love Is Enough etext15329 Elstob, Elizabeth, 1683-1756 An apology for the study of northern antiquities etext15362 Various The American Missionary — Volume 44, No. 03, March, 1890 etext15366 Various Punch, or the London Charivari, Volume 103, September 24, 1892 etext15405 Various Notes and Queries, Number 57, November 30, 1850 etext15413 Various The Book of Three Hundred Anecdotes etext15418 Roke, G.D. Ang Sintang Dalisay ni Julieta at Romeo etext15469 Nelson, Horatio, 1758-1805 The Letters of Lord Nelson to Lady Hamilton, Vol. I. etext15608 Bacheller, Irving, 1859-1950 In the Days of Poor Richard etext15616 Baldwin, James, 1841-1925 Hero Tales etext15678 Gardner, E. C. (Eugene Clarence), 1836-1915 The House that Jill Built etext15680 Boerhaave, Herman, 1668-1738 De Usu Ratiocinii Mechanici in Medicina etext15688 Various Punch, or the London Charivari, Volume 152, June 13, 1917 etext15691 Barnes, Earl, 1861-1935 Woman in Modern Society etext15709 Brown, Abbie Farwell, 1871-1927 The Christmas Angel etext15787 Holub, Emil, 1847-1902 Sieben Jahre in Süd-Afrika. Erster Band. etext15869 Cook, James, 1728-1779 A Voyage Towards the South Pole and Round the World Volume 2 etext15940 Kendall, Ralph S. The Luck of the Mounted etext15972 Jacson, Mainwaring George The Record of a Regiment of the Line etext15988 Ongelin, Hanna, 1848-1893 Ennen ja nykyään 1 etext15994 Turgenev, Ivan Sergeevich, 1818-1883 A Reckless Character etext16033 Various The Atlantic Monthly, Volume 12, No. 70, August, 1863 etext16072 Fries, Ellen, 1855-1900 Kuuluisia naisia 1 etext16176 Various The Great Round World and What Is Going On In It, Vol. 1, No. 53, November 11, 1897 etext16285 Gerberding, G. H. (George Henry), 1847-1927 The Way of Salvation in the Lutheran Church etext16301 Braun, Lily, 1865-1916 Memoiren einer Sozialistin etext16308 Murray, W. H. H. (William Henry Harrison), 1840-1904 How Deacon Tubman and Parson Whitney Kept New Year's etext16316 Miller, Claude H. Outdoor Sports and Games etext16325 Allen, Grant, 1848-1899 Science in Arcady etext16327 Fuller, Margaret, 1810-1850 At Home And Abroad etext16339 Griffiths, Arthur, 1838-1908 The Passenger from Calais etext16345 Addison, Alvin Ellen Walton etext16363 Various The New York Times Current History of the European War, Vol 1, Issue 4, January 23, 1915 etext16374 Meriläinen, Heikki, 1847-1939 Kuppari-Maija etext16436 Poems Every Child Should Know etext16465 Loti, Pierre, 1850-1923 Le château de La Belle-au-bois-dormant etext16466 Pearse, H. H. S. (Henry Hiram Steere), 1844-1905 Four Months Besieged etext16487 Conn, H. W. (Herbert William) The Story of the Living Machine etext16494 Fitzpatrick, Percy, Sir, 1862-1931 The Transvaal from Within etext16499 Coppée, François, 1842-1908 Henriette etext16546 Eliot, Charles, Sir, 1862-1931 Hinduism and Buddhism, An Historical Sketch, Vol. 2 etext16549 Moore, Thomas, 1779-1852 Life of Lord Byron, Vol. 4 etext16565 etext16635 Fitch, Clyde, 1865-1909 The Climbers etext16648 Various Holiday Stories for Young People etext16673 Various Punch, or the London Charivari, Vol. 159, 1920-09-29 etext16678 Friberg, Maikki, 1861-1927 Tieni varrella tapaamia 1 etext16750 Steward, T. G. (Theophilus Gould), 1843-1924 The Colored Regulars in the United States Army etext16823 Evans, Caradoc My Neighbors etext16879 Foley, James W. (James William), 1874-1939 Some One Like You etext16892 Whyte, Alexander, 1836-1921 Samuel Rutherford etext16998 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Betrayal etext17008 James I, King of England, 1566-1625 A Counter-Blaste to Tobacco etext17019 Holden, Martha Everts, 1844?-1896 A String of Amber Beads etext17034 Steel, Flora Annie, 1847-1929 English Fairy Tales etext17042 etext17122 Dods, John Bovee, 1795-1872 Twenty-Four Short Sermons On The Doctrine Of Universal Salvation etext17162 Anonymous Mother Stories from the Old Testament etext17184 Gastyne, Jules de, 1847-1920 Le lys noir etext17233 etext17249 Anderson, Nephi, 1865-1923 Added Upon etext17358 Bryce, George, 1844-1931 The Romantic Settlement of Lord Selkirk's Colonists etext17371 Gruelle, Johnny, 1880-1938 Raggedy Andy Stories etext17376 Maupassant, Guy de, 1850-1893 The Works of Guy de Maupassant, Volume 3 etext17378 Various Successful Recitations etext17383 Nieuwenhuis, Anton Willem, 1864-1953 Quer Durch Borneo etext17427 Wilson, Woodrow, 1856-1924 President Wilson's Addresses etext17510 Dalrymple, Leona, 1884- When the Yule Log Burns etext17511 Laughlin, Clara E. (Clara Elizabeth), 1873-1941 Foch the Man etext17532 Campbell, John, 1840-1904 Two Knapsacks etext17536 Various The Nursery, No. 169, January, 1881, Vol. XXIX etext17549 Maurik, Justus van, 1846-1904 Krates etext7442 Verne, Jules, 1828-1905 Michel Strogoff etext17602 Peignot, Gabriel, 1767-1849 Quelques recherches sur le tombeau de Virgile au mont Pausilipe (1840) etext17610 Espanca, Florbela de Alma da Conceição, 1894-1930 Livro de Máguas etext17751 Sullivan, James William, 1848- Direct Legislation by the Citizenship through the Initiative and Referendum etext17828 Larmandie, Léonce de, 1851-1921 Excelsior etext17844 Lillibridge, Will, 1878-1909 Ben Blair etext17909 Serao, Matilde, 1865-1927 Le Amanti etext17938 Bailey, Temple, -1953 Contrary Mary etext18003 Dumas père, Alexandre, 1802-1870 La femme au collier de velours etext18023 Speiser, Felix, 1880-1949 In het Oerwoud en bij de Kannibalen op de Nieuwe Hebriden etext18078 Stidger, William L. (William Le Roy), 1885-1949 Soldier Silhouettes on our Front etext18112 Defoe, Daniel, 1661?-1731 Moll Flanders etext18119 Williams, Lida M. How to Teach Phonics etext18174 Lazell, Frederick John, 1870-1940 Some Winter Days in Iowa etext18183 Various Trees, Fruits and Flowers of Minnesota, 1916 etext18222 Carter, Jesse Benedict, 1872-1917 The Religion of Numa etext18229 Raymond, Charles W. Transactions of the American Society of Civil Engineers, Vol. LXVIII, Sept. 1910 etext18288 Northern Nut Growers Association, report of the proceedings at the sixth annual meeting etext18317 Andersson, Dan, 1888-1920 David Ramms arv etext18444 etext18455 Franklin, Benjamin, 1706-1790 Vie de Franklin, écrite par lui-même - Tome I etext18468 Ogilvie, David Douglas The Fife and Forfar Yeomanry etext18474 Kujala, Juho, 1878-1919 Piru etext18497 Palmer, Frederick, 1873-1958 My Second Year of the War etext18506 etext18509 Goff, George Paul, 1929?- Nick Baba's Last Drink and Other Sketches etext18515 Chambers, Robert W. (Robert William), 1865-1933 Police!!! etext18549 Adams, F. Colburn (Francis Colburn) The Von Toodleburgs etext18559 Hutchinson, Woods, 1862-1930 The Child's Day etext18560 Finck, Henry Theophilus, 1854-1926 Chopin and Other Musical Essays etext18565 Howells, William Dean, 1837-1920 A Little Swiss Sojourn etext18566 James, Henry, 1843-1916 Hawthorne etext18611 etext18612 McCutcheon, George Barr, 1866-1928 From the Housetops etext18623 Chavette, Eugène, 1827-1902 Le saucisson à pattes I etext18675 Barker, Joseph, 1806-1875 Modern Skepticism: A Journey Through the Land of Doubt and Back Again etext18984 Read, Opie Percival, 1852-1939 The Starbucks etext18986 Bose, Jagadis Chandra, Sir, 1858-1937 Response in the Living and Non-Living etext18989 Nordau, Max Simon, 1849-1923 How Women Love etext19003 Romanes, George John, 1848-1894 A Candid Examination of Theism etext19009 Hurll, Estelle M. (Estelle May), 1863-1924 Sir Joshua Reynolds etext19016 Stratemeyer, Edward, 1862-1930 Dave Porter at Star Ranch etext19074 Powell, E. Alexander (Edward Alexander), 1879-1957 Italy at War and the Allies in the West etext19129 Hankins, Arthur Preston, 1880-1932 The She Boss etext19134 Dawson, William J., 1854-1928 The Empire of Love etext19137 Kiljander, Robert, 1848-1924 Kumarrusmatka etext19184 Boylesve, René, 1867-1926 La carrosse aux deux lézards verts etext19194 Piper, H. Beam, 1904-1964 Rebel Raider etext19241 Esslemont, J. E. (John Ebenezer), 1874-1925 Bahá’u’lláh and the New Era etext19337 Dickens, Charles, 1812-1870 A Christmas Carol etext19347 Brinton, Daniel Garrison, 1837-1899 The Myths of the New World etext19430 Jarro, 1849-1915 La Principessa etext19438 Kirby, W. F. (William Forsell), 1844-1912 The Hero of Esthonia and Other Studies in the Romantic Literature of That Country etext19500 Trollope, Anthony, 1815-1882 Can You Forgive Her? etext19545 Seé, Anna Op de Faröer etext19557 Rosenfeld, Paul, 1890-1946 Musical Portraits etext19582 United States Amendments to the United States Constitution etext19600 Waters, W. G. (William George), 1844-1928 Jerome Cardan etext19619 Aesop, 620 BC-563 BC Aesop's Fables - Volume 04 etext19624 Aesop, 620 BC-563 BC Aesop's Fables - Volume 09 etext19684 Miller, Joaquin, 1837-1913 Columbus etext19696 Schauffler, Robert Haven, 1879-1964 The Joyful Heart etext19723 Mindeleff, Cosmos, 1863- The Cliff Ruins of Canyon de Chelly, Arizona etext19768 Abbot, Francis Ellingwood, 1836-1903 A Public Appeal for Redress to the Corporation and Overseers of Harvard University etext19782 Webster, Jean, 1876-1916 Daddy-Long-Legs etext19837 Unknown Ecclesiastes etext19855 May, E. J. (Edith J.) Louis' School Days etext19872 Gosse, Edmund, 1849-1928 Three French Moralists and The Gallantry of France etext19926 Various Standard Selections etext19930 Baker, Willard F. The Boy Ranchers Among the Indians etext19944 De Benneville, James S. (James Seguin) The Yotsuya Kwaidan or O'Iwa Inari etext19971 Frohnmeyer, Ida Hansi etext20077 Anonymous Danse macabre etext20153 Various The American Journal of Archaeology, 1893-1 etext20182 Novaro, Angiolo Silvio, 1866-1938 La rovina etext20210 McMahan, Anna Benneson Shakespeare's Christmas Gift to Queen Bess etext20211 Lagerlöf, Selma, 1858-1940 Die schönsten Geschichten der Lagerlöf etext20252 Jahnsson, Evald Ferdinand, 1844-1895 Raatimiehen tytär etext20366 Howes, Edith Wonderwings and other Fairy Stories etext20432 etext20474 Flower, Jessie Graham [pseud.], -1931 Grace Harlowe's Fourth Year at Overton College etext20502 Ginkel, H.J. van De Groote Pyramide etext20529 Smart, Hawley Belles and Ringers etext20537 Orzeszkowa, Eliza, 1842-1910 The Argonauts etext20604 Various Christmas Poetry and Hymn Collection etext20606 Nesbit, E. (Edith), 1858-1924 The Magic City etext20608 Calhoon, Major A.R. How to Get on in the World etext20623 Sand, Maurice Mademoiselle de Cérignan etext20648 etext20649 Piper, H. Beam, 1904-1964 Oomphel in the Sky etext20704 Various Punch, or the London Charivari, Volume 104, January 21, 1893 etext20708 Seely, Herman Gastrell A Son of the City etext20732 Catullus, Gaius Valerius, 84 BC-54 BC The Carmina of Caius Valerius Catullus etext20740 Various Myths and Legends of All Nations etext20751 Smith, Edgar Fahs, 1854-1928 Priestley in America etext20810 Hicklin, John The "Ladies of Llangollen" etext20811 etext20876 Bosch, G. Door Noorwegen etext20883 Runeberg, Johan Ludvig, 1804-1877 Lyyrillisiä runoelmia 1 etext20933 White, Gilbert, 1720-1793 The Natural History of Selborne, Vol. 1 etext20935 Bain, F. W. (Francis William), 1863-1940 The Substance of a Dream etext20964 Bourget, Paul, 1852-1935 Pauvre petite! etext20980 Hapgood, Isabel Florence, 1850-1928 A Survey of Russian Literature, with Selections etext21017 Dumas père, Alexandre, 1802-1870 La San-Felice, Tome 8 etext21041 Bates, E. Katherine (Emily Katherine) Seen and Unseen etext21052 Whitney, Elliott The Pirate Shark etext21115 Mann, Franziska Die Stufe etext21122 Vaizey, George de Horne, Mrs., 1857-1917 More about Pixie etext21123 Stephen, Leslie, Sir, 1832-1904 English Literature and Society in the Eighteenth Century etext21169 Baum, L. Frank (Lyman Frank), 1856-1919 The Lost Princess of Oz etext21174 Baum, L. Frank (Lyman Frank), 1856-1919 The Road to Oz etext21180 Bédier, Joseph, 1864-1938 The Romance of Tristan and Iseult etext21188 Appleton, Victor [pseud.] Tom Swift and His Giant Telescope etext21236 Reid, Mayne, 1818-1883 The Boy Hunters etext21242 Henty, G. A. (George Alfred), 1832-1902 On the Irrawaddy etext21250 Ker, William Paton Sir Walter Scott etext21251 MacNaul, Willard C. The Jefferson-Lemen Compact etext21335 Gaunt, Mary The Moving Finger etext21407 Symons, Arthur, 1865-1945 Figures of Several Centuries etext21437 Frost, Robert, 1874-1963 North of Boston etext21498 Hurlbert, William Henry, 1827-1895 France and the Republic etext21573 Marryat, Frederick, 1792-1848 The Phantom Ship etext21632 Alger, Horatio, 1832-1899 Fame and Fortune etext21649 Various A Cluster of Grapes etext21699 Ballantyne, R. M. (Robert Michael), 1825-1894 The Rover of the Andes etext21705 Ballantyne, R. M. (Robert Michael), 1825-1894 In the Track of the Troops etext21707 Ballantyne, R. M. (Robert Michael), 1825-1894 Ungava etext21863 Monroe, Kirk Derrick Sterling etext21881 Sanderson, Robert Edward, 1828-1913 The Life of the Waiting Soul etext21901 Optic, Oliver, 1822-1897 The Birthday Party etext21919 Blakely, Gilbert Sykes Teachers' Outlines for Studies in English etext21920 Ovid, 43 BC-18? The Last Poems of Ovid etext21953 Ware, William, 1797-1852 Aurelian etext21992 Fosdick, Harry Emerson Christianity and Progress etext22032 Meynell, Alice Christiana Thompson, 1847-1922 Later Poems etext22034 Müller, George, 1805-1898 A Narrative of some of the Lord's Dealings with George Müller etext22066 Johnston, Mary, 1870-1936 The Long Roll etext22074 Gleichen, Edward, Lord, 1863-1937 The Doings of the Fifteenth Infantry Brigade etext22115 Bayne, S. G. A Fantasy of Mediterranean Travel etext22126 Various Notes and Queries, Number 35, June 29, 1850 etext22150 Schmid, Rudolf The Theories of Darwin and Their Relation to Philosophy, Religion, and Morality etext22169 etext22175 MacGregor, Mary Esther Miller, 1876-1961 Stories from the Ballads etext22257 Fox, Frank, Sir, 1874-1960 Bulgaria etext22280 Henley, William Ernest, 1849-1903 Views and Reviews etext22325 The Butterick Publishing Co. The Art of Modern Lace Making etext22369 Various Notes and Queries, Number 182, April 23, 1853 etext22391 Busch, Wilhelm, 1832-1908 Kritik des Herzens etext22401 etext22450 Howells, William Dean, 1837-1920 My Mark Twain etext22496 Marryat, Frederick, 1792-1848 The Settlers in Canada etext22513 Clifton, Mark, 1906-1963 Sense from Thought Divide etext22537 Dunne, Finley Peter, 1867-1936 Mr. Dooley in Peace and in War etext22580 Verne, Jules, 1828-1905 Het Geheimzinnige Eiland etext22599 etext22636 Wright, Joseph, 1855-1930 A Middle High German Primer etext22665 Auerbach, Berthold, 1812-1882 Christian Gellert's Last Christmas etext22694 Various The International Magazine, Volume 2, No. 2, January, 1851 etext22696 Hughes, Rupert, 1872-1956 Colonel Crockett's Co-operative Christmas etext22736 Custance, Olive The Inn of Dreams etext22777 Andrews, Elisha Benjamin, 1844-1917 History of the United States, Volume 5 etext22828 Koidula, Lydia, 1843-1886 Ojamylläri ja hänen miniänsä etext22870 Pope, Alexander, 1688-1744 Epistola de Heloysa a Abaylard etext22903 etext22948 Scott, Morgan Rival Pitchers of Oakdale etext22967 Budrys, Algis, 1931-2008 The Stoker and the Stars etext22978 Bacon, Francis, 1561-1626 The Essays of Francis Bacon etext22987 Beatty, William, 1773-1842 Authentic Narrative of the Death of Lord Nelson etext23002 Chaplin, Heman White, 1847-1924 Saint Patrick etext23033 Wilkinson, William Cleaver, 1833-1920 Classic French Course in English etext23048 Kingston, William Henry Giles, 1814-1880 Adrift in a Boat etext23051 Kingston, William Henry Giles, 1814-1880 The Two Shipmates etext23175 Stockton, Frank Richard, 1834-1902 My Terminal Moraine etext23204 Various Notes and Queries, Number 70, March 1, 1851 etext23240 Various Blackwood's Edinburgh Magazine, No. CCCXXXVI. October, 1843. Vol. LIV. etext23271 Ballantyne, R. M. (Robert Michael), 1825-1894 Sunk at Sea etext23283 Cooke, John Esten, 1830-1886 The Youth of Jefferson etext23379 La Spina, Greye, 1880-1969 Old Mr. Wiley etext23388 Ballantyne, R. M. (Robert Michael), 1825-1894 Wrecked but not Ruined etext23409 Cozzens, Frederic S. (Frederic Swartwout), 1818-1869 Acadia etext23410 Hichens, Robert Smythe, 1864-1950 The Spinster etext23426 Harmon, Jim, 1933-2010 The Last Place on Earth etext23428 Kropotkin, Petr Alekseevich, kniaz, 1842-1921 The Conquest of Bread etext23446 Anonymous Picturesque Germany etext23451 Bell, M. C. Little Yellow Wang-lo etext23482 Dandy, Jacky Jacky Dandy's Delight etext23512 Page, Thomas Nelson, 1853-1922 Mam' Lyddy's Recognition etext23532 Kafka, Franz, 1883-1924 Betrachtung etext23560 Bassett, Sara Ware, 1872-1968 Carl and the Cotton Gin etext23591 Sabia, Richard I Was a Teen-Age Secret Weapon etext23594 Anonymous A Picture Book, for Little Children etext23654 Chateaubriand, François-René, vicomte de, 1768-1848 Mémoires d'Outre-Tombe etext23698 Smith, Francis Hopkinson, 1838-1915 Fiddles etext23728 Bassett, Sara Ware, 1872-1968 Walter and the Wireless etext23753 Cowper, William, 1731-1800 The Diverting History of John Gilpin etext23834 Wu, Chuhou, jin shi 1053 青箱雜記 etext23879 Negreiros, José Sobral de Almada, 1893-1970 A Engomadeira etext23887 Eggleston, George Cary, 1839-1911 Strange Stories from History for Young People etext23939 Gréville, Henry, 1842-1902 La fille de Dosia etext23984 Mann, William W. Esperanto Self-Taught with Phonetic Pronunciation etext24163 Claridge, John The Shepherd of Banbury's Rules to Judge of the Changes of the Weather, Grounded on Forty Years' Experience etext24231 Yang, Erzeng, 17th cent. 韓湘子全傳 etext24267 Hutcheson, John C. (John Conroy) Picked up at Sea etext24292 Garborg, Arne, 1851-1924 La Montarino etext24323 Various Scientific American Supplement, No. 1082, September 26, 1896 etext24407 Gentile, Maria The Italian Cook Book etext24426 Chambers, Robert W. (Robert William), 1865-1933 Iole etext24456 McRae, Charles Fathers of Biology etext24457 Parkman, Francis, 1823-1893 A Half Century of Conflict - Volume I etext24543 FitzPatrick, R. C. The Circuit Riders etext24624 The Red Romance Book etext24627 etext24672 McCarthy, Justin H. (Justin Huntly), 1860-1936 The God of Love etext24807 Becke, Louis, 1855-1913 A Memory Of The Southern Seas etext24840 Wells, Carolyn, 1862-1942 The Re-echo Club etext24886 Withering, William, 1741-1799 An Account of the Foxglove and some of its Medical Uses etext24888 Njáls saga. French etext24897 Gilbert, Paul T. (Paul Thomas), 1876-1953 The Great White Tribe in Filipinia etext24909 Fenn, George Manville, 1831-1909 The Golden Magnet etext24922 Farnol, Jeffery, 1878-1952 The Honourable Mr. Tawnish etext24931 Anderson, Thomas Elements of Agricultural Chemistry etext25033 New Zealand. General Assembly Library Report of the Chief Librarian for the Year 1924-25 etext25049 Viljoen, Ben J. (Ben Johannis), 1868-1917 My Reminiscences of the Anglo-Boer War etext25074 Estébanez Calderón, Serafín, 1799-1867 Novelas y cuentos etext25089 Graaf, Jacobus Joannes, 1839-1924 Nederlandsche Doopnamen etext25097 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 Cités et ruines américaines etext25122 Mahan, A. T. (Alfred Thayer), 1840-1914 From Sail to Steam, Recollections of Naval Life etext25221 Moule, H. C. G. (Handley Carr Glyn), 1841-1920 Philippian Studies etext25242 Lu, Xun, 1881-1936 野草 etext25422 Baiyundaoren 玉樓春 etext25443 Morató, Joseph, 1875-1918 Arran del Cingle etext25486 Steedman, Amy David the Shepherd Boy etext25488 Peck, George W. (George Wilbur), 1840-1916 The Grocery Man And Peck's Bad Boy etext25493 Wiggin, Kate Douglas Smith, 1856-1923 A Cathedral Courtship etext25609 Stevenson, Robert Louis, 1850-1894 A Child's Garden of Verses etext25611 Stevenson, Robert Louis, 1850-1894 A Child's Garden of Verses etext25618 etext25645 Hakluyt, Richard, 1552-1616 The Principal Navigations, Voyages, Traffiques and Discoveries of etext25664 Anonymous The Earliest Arithmetics in English etext25680 Pope, Alexander, 1688-1744 Rape of the lock. French etext25695 Lynch, Lawrence L. The Diamond Coterie etext25701 Oliphant, Mrs. (Margaret), 1828-1897 Royal Edinburgh etext25743 Wilson, Ann Fearful Symmetry etext25747 Wilson, Ann Youngling etext25753 etext25824 Bailey, Arthur Scott, 1877-1949 The Tale of Rusty Wren etext25853 Dickens, Charles, 1812-1870 The Letters of Charles Dickens etext25891 Müller, George, 1805-1898 Answers to Prayer etext25928 Kingston, William Henry Giles, 1814-1880 Norman Vallery etext25966 Ellis, Edward Sylvester, 1840-1916 Camp-fire and Wigwam etext25979 Thornton, Gregory Sonnets of Shakespeare's Ghost etext26001 Trollope, Anthony, 1815-1882 The Bertrams etext26011 Stringer, Arthur, 1874-1950 The Prairie Mother etext26054 Munsell, A. H. (Albert Henry), 1858-1918 A Color Notation etext26085 Molesworth, Mrs., 1839-1921 Robin Redbreast etext26099 Omelka, František, 1904-1960 Aventuroj de Antonio etext26148 Jacobs, Aletta H. (Aletta Henriette), 1854-1929 De vrouw en de vredesbeweging in verband met het vrouwenkiesrecht etext26167 Littlechild, Walter Poole A Short Account of King's College Chapel etext26205 Locke, Robert Donald Next Door, Next World etext26237 Braddon, M. E. (Mary Elizabeth), 1835-1915 Vixen, Volume II. etext26255 Swett, Sophie Miriam, 1858-1912 Sonny Boy etext26291 Wells, H. G. (Herbert George), 1866-1946 The War of the Worlds etext26338 Carvalho, Maria Amália Vaz de, 1847-1921 Alguns homens do meu tempo etext26346 Keyser, Leander S. (Leander Sylvester), 1856-1937 Our Bird Comrades etext26360 Tieck, Ludwig, 1773-1853 The Old Man of the Mountain, The Lovecharm and Pietro of Abano etext26436 Castel, Jean de Le specule des pecheurs etext26437 Little, Mary Wallace Bundy, 1857- The Rubaiyat of a Huffy Husband etext26495 Mill, John Stuart, 1806-1873 A System Of Logic, Ratiocinative And Inductive (Vol. 1 of 2) etext26561 Stillwell, Leander, 1843-1934 The Story of a Common Soldier of Army Life in the Civil War, 1861-1865 etext26577 Devlin, Joseph How to Speak and Write Correctly etext26658 Verne, Jules, 1828-1905 Celebrated Travels and Travellers etext26680 La Peyrère, Isaac de, 1594-1676 Relation du groenland etext26690 Exquemelin, A. O. (Alexandre Olivier) The Pirates of Panama etext26721 Fusil, Louise, 1774-1848 Souvenirs d'une actrice (3/3) etext26727 etext26747 Addeman, Joshua M. (Joshua Melancthon), 1840-1930 Reminiscences of two years with the colored troops etext26760 Macduff, John R. (John Ross), 1818-1895 Memories of Bethany etext26794 Various The American Missionary — Volume 49, No. 02, February, 1895 etext26817 Feuillet, Octave, 1821-1890 Julia de Trécoeur etext26828 Warner, Susan, 1819-1885 A Red Wallflower etext26875 Maitland, Robert The Boy Scout Fire Fighters etext26914 Lima, Jaime de Magalhães, 1859-1936 Do que o fogo não queima etext26926 Benedix, Roderich, 1811-1873 Riita-asia etext26935 Fairbanks, Harold W. (Harold Wellman), 1860- Conservation Reader etext26936 Graham, Roger Phillips, 1909-1965 The Gallery etext26962 Wilson's Tales of the Borders and of Scotland Volume 17 etext26966 Marlowe, Stephen, 1928-2008 A Place in the Sun etext27081 Mickiewicz, Adam, 1798-1855 Sonety Adama Mickiewicza etext27125 Worthington, A. M. (Arthur Mason), 1852-1916 The Splash of a Drop etext27143 Wells, Hal K., 1900- The Cavern of the Shining Ones etext27147 Le Queux, William, 1864-1927 The Stretton Street Affair etext27173 Knowles, Charles, Sir, 1704?-1777 An Account of the expedition to Carthagena, with explanatory notes and observations etext27183 Noyes, Carleton Eldredge, 1872-1950 The Gate of Appreciation etext27199 Fletcher, John Gould, 1886-1950 Japanese Prints etext27207 Feng, Yan, jin shi 756 封氏聞見記 etext27229 Knight, Gerald Featherstone, 1894- 'Brother Bosch', an Airman's Escape from Germany etext27253 Fiske, John, 1842-1901 The Discovery of America Vol. 1 (of 2) etext27274 Aikman, Charles Morton Manures and the principles of manuring etext27277 Miller, Olive Thorne, 1831-1918 Little Brothers of the Air etext27318 Harr, Lew Lysle, 1882- Pung Chow etext27451 Angellier, Auguste, 1847-1911 Robert Burns etext27463 Ghosh, Sarath Kumar, 1883- The Wonders of the Jungle, Book Two etext27472 La Bédollière, Émile de, 1812-1883 The Story of a Cat etext27478 Various Encyclopaedia Britannica, 11th Edition, Volume 3, Part 1, Slice 1 etext27499 Anonymous Folk-lore and Legends: German etext27563 Brooks, Phillips, 1835-1893 Heart's-ease etext27594 Rizal, José, 1861-1896 An Eagle Flight etext27600 Darwin, Erasmus, 1731-1802 Zoonomia, Vol. II etext27610 Franklin, Benjamin, 1706-1790 Experiments and observations on electricity. French etext27657 Savoia, Luigi Amedeo di, duca degli Abruzzi, 1873-1933 Het bergland van den Roewenzori etext27668 Aristophanes, 446? BC-385? BC Βάτραχοι etext27712 Trollope, Anthony, 1815-1882 Sir Harry Hotspur of Humblethwaite etext27742 Mayhew, Ira, 1814-1894 Popular Education etext27801 Gomes, Edwin Herbert, 1862- Children of Borneo etext27857 Lillibridge, Will, 1878-1909 The Dominant Dollar etext27870 Kipling, Rudyard, 1865-1936 The Seven Seas etext27876 Ducray-Duminil, M. (François Guillaume), 1761-1819 Victor, ou L'enfant de la forêt etext27879 The Diplomatic Correspondence of the American Revolution, Vol. XI etext27920 Canavan, M. J. (Michael Joseph) Ben Comee etext27931 Volney, C.-F. (Constantin-François), 1757-1820 Oeuvres, Tome I etext27954 New York Public Library Handbook of The New York Public Library etext27988 etext28005 Weber, Ernst Van de Ganges naar den Amazonenstroom etext28072 etext28131 Various The Nursery, March 1877, Vol. XXI. No. 3 etext28178 Naval War College (U.S.) Sound Military Decision etext28188 Holinshed, Raphael, -1580? Chronicles (3 of 6): Historie of England (1 of 9) etext28322 Yandell, David Wendel, 1826-1898 Pioneer Surgery in Kentucky etext28381 Alger, Horatio, 1832-1899 Ben, the Luggage Boy; etext28423 Various Harper's Young People, March 30, 1880 etext28438 Shea, Robert, 1933-1994 The Helpful Robots etext28447 Sherry, Richard, 1506?-1555? A Treatise of Schemes and Tropes etext28482 Bower, B. M., 1874-1940 Sawtooth Ranch etext28599 Byrne, Desmond Australian Writers etext28639 Pinto da Rocha, -1930 Talitha etext28645 Peterson, John Victor Lost in the Future etext28660 Anonymous Phebe, the Blackberry Girl etext28668 Various The Christian Foundation, Or, Scientific and Religious Journal, Volume I, No. 7, July, 1880 etext28684 Library of the World's Best Literature, Ancient and Modern, Vol. 7 etext28721 Various The Esperantist, Vol. 1, No. 2 etext28748 Hopkins, William John, 1863-1926 The Sandman: His Sea Stories etext28777 Various Harper's Young People, April 6, 1880 etext28850 Motley, John Lothrop, 1814-1877 The Project Gutenberg Works Of John Lothrop Motley etext28878 Hawley, Mabel C. Four Little Blossoms at Oak Hill School etext28889 Perkins, Lucy Fitch, 1865-1937 The Mexican Twins etext28933 Ferlaine, J. Anthony One Out of Ten etext28967 Arias, Francisco Gavino de Diario de la expedicion reduccional del ano 1780, mandada practicar por orden del Virey de Buenos Aires etext28990 Brown, Abbie Farwell, 1871-1927 The Book of Saints and Friendly Beasts etext29010 Petrie, W. M. Flinders (William Matthew Flinders), Sir, 1853-1942 The Religion of Ancient Egypt etext29017 Halme, Kaarle, 1864-1946 Purimossa etext29026 Various Harper's Young People, July 6, 1880 etext29087 Various Harper's Young People, August 10, 1880 etext29105 Nodier, Charles, 1780-1844 El pintor de Salzburgo etext29149 West, John Foster, 1919-2008 Cogito, Ergo Sum etext29202 Diffin, Charles Willard, 1884-1966 The Hammer of Thor etext29234 Klapthor, Margaret Brown, 1922-1994 Presentation Pieces in the Museum of History and Technology etext29236 Various Graham's Magazine Vol XXXII. No. 3. March 1848 etext29248 Anonymous The Young Lady's Equestrian Manual etext29340 The Story of the Great War, Volume IV (of 8) etext29361 Sampson, George, 1873-1950 A Day with Felix Mendelssohn Bartholdy etext29418 Long, Frank Belknap, 1903-1994 The Man from Time etext29442 Karikko, Kaarle, 1842-1916 Urhot etext29572 Spearman, Frank H. (Frank Hamilton), 1859-1937 Whispering Smith etext29575 Various Lippincott's Magazine, Vol. 20, August 1877 etext29588 Watson, Robert, 1882-1948 The Spoilers of the Valley etext29592 Omelka, František, 1904-1960 Pasáček Ali etext29597 Barrow, Sarah L. Neighbor Nelly Socks etext29609 Seaton, R. C. (Robert Cooper), 1853-1915 Six Letters From the Colonies etext29626 Various Our Young Folks, Vol 1, No. 1 etext29735 Daniel, Lucius Martians Never Die etext29754 Pickard, Samuel T. (Samuel Thomas), 1828-1915 Whittier-land etext29778 Brassey, Annie, 1839-1887 The Last Voyage etext29855 Heindel, Max, 1865-1919 The Rosicrucian Mysteries etext29869 Spencer, Herbert, 1820-1903 Essays: Scientific, Political, & Speculative, Vol. I etext29880 Chambers, Robert W. (Robert William), 1865-1933 The Crimson Tide etext29905 Neupauer, Josef Viribus unitis etext29974 Scott, Walter, Sir, 1771-1832 Talismani etext30040 Wood, Louis Aubrey, 1883-1955 The Red River Colony etext30070 Quental, Antero de, 1842-1891 Bom-senso e bom-gosto etext30082 Newton, W. Douglas (Wilfrid Douglas), 1884-1951 Westward with the Prince of Wales etext30195 Various L'Illustration No. 3732, 5 Sept 1914 etext30197 Nansen, Fridtjof, 1861-1930 Farthest North etext30202 Foote, G. W. (George William), 1850-1915 Flowers of Freethought etext30231 Field, David Dudley, 1805-1894 The Vote That Made the President etext30255 Dick, Philip K., 1928-1982 The Skull etext30303 Gilmore, Anthony The Passing of Ku Sui etext30338 Reynolds, Mack, 1917-1983 Freedom etext30354 Baring-Gould, S. (Sabine), 1834-1924 The Broom-Squire etext30388 Various Blackwood's Edinburgh Magazine, Volume 59, No. 367, May 1846 etext30393 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson etext30399 Pohl, Frederik, 1919- Pythias etext30401 Goodwin, Harold L. (Harold Leland), 1914-1990 The Flying Stingaree etext30440 O'Donnell, Elliott, 1872-1965 Byways of Ghost-Land etext30443 Various The Strand Magazine, Volume V, Issue 29, May 1893 etext30452 Various Astounding Stories, April, 1931 etext30468 Reynolds, L. Major Holes, Incorporated etext30477 Le Queux, William, 1864-1927 The Sign of Silence etext30541 Cutter, Calvin, 1807-1872 A Treatise on Anatomy, Physiology, and Hygiene (Revised Edition) etext30559 etext30608 Hengstenberg, Ernst Wilhelm, 1802-1869 Christology of the Old Testament: And a Commentary on the Messianic Predictions. Vol. 2 etext30675 Johnston, Robert Presbyterian Worship etext30685 Various Encyclopaedia Britannica, 11th Edition, Volume 8, Slice 2 etext30717 Ritchie, J. Ewing (James Ewing), 1820-1898 East Anglia etext30748 Plato, 427? BC-347? BC Ευθύφρων etext30765 Spencer, M. Lyle (Matthew Lyle), 1881-1969 News Writing etext30854 Miller, Frank E. The Voice etext30896 De Morgan, William Frend, 1839-1917 When Ghost Meets Ghost etext30932 Jarvis, E. K. Before Egypt etext30938 Whitehill, Dorothy Polly's Senior Year at Boarding School etext30945 Soveral, Visconde de Memoria ácerca dos Portuguezes na Abyssinia etext30976 Various Encyclopaedia Britannica, 11th Edition, Volume 7, Slice 1 etext31001 Ettlinger, Karl, 1882-1939 Benno Stehkragen etext31063 Baker, Rollin H. (Rollin Harold), 1916-2007 Two New Moles (Genus Scalopus) from Mexico and Texas etext31068 Brown, William Garrott, 1868-1913 Andrew Jackson etext31134 Various Stories by American Authors, Volume 7 etext31181 Brown, Paul Cameron Mascara-Viscera etext31210 Cooper, James Fenimore, 1789-1851 The Redskins; or, Indian and Injin, Volume 1. etext31228 The House by the Lock etext31229 Bell, Clive, 1881-1964 Pot-Boilers etext31244 Blanchard, Amy Ella, 1856-1926 A Dear Little Girl etext31306 Brown, Florence Verbell Bride of the Dark One etext31309 Rhoden, Emmy von, 1829-1885 Der Trotzkopf etext31437 Chatzopoulos, Konstantinos, 1868-1920 Υπεράνθρωπος etext31449 Frizell, Lodisa Across the Plains to California in 1852 etext31453 Elliott, James Carson, 1845- The Southern Soldier Boy etext31508 Richards, Ellen H. Euthenics, the science of controllable environment etext31541 Larra, Mariano José de Fígaro etext31603 Gaebelein, Arno C. Studies in Prophecy etext31612 Wolf, Mari The Very Secret Agent etext31664 Smith, Evelyn E., 1927-2000 Once a Greech etext31761 etext31835 Barr, Amelia Edith Huddleston, 1831-1919 Prisoners of Conscience etext31882 Comte, Auguste Cours de philosophie positive.(2/6) etext31942 Jókai, Mór, 1825-1904 A Christian But a Roman etext31945 Mikszáth, Kálmán, 1847-1910 St. Peter's Umbrella etext31952 Talleyrand-Périgord, Charles Maurice de, prince de Bénévent, 1754-1838 Mémoires du prince de Talleyrand, Volume IV (of V) etext31979 Pohl, Frederik, 1919- The Tunnel Under The World etext31987 Howard, H. Eliot Territory in Bird Life etext31991 Foote, Allen Ripley Some of My War Stories etext32040 Sheckley, Robert, 1928-2005 Diplomatic Immunity etext32056 Berlioz, Hector, 1803-1869 Les soirées de l'orchestre etext32070 Velde, C. F. van der (Carl Franz), 1779-1824 Specimens of German Romance etext32156 Pimentel, Alberto, 1849-1925 Julio Diniz etext32158 Fairchild, George Thompson Rural Health and Welfare etext32160 Arr, Stephen, 1922- Chain of Command etext32219 etext32247 Ludlow, William The Battle of Allatoona, October 5th, 1864 etext32260 Belloc, Hilaire, 1870-1953 Tourcoing etext32414 Fulton, A. W. Home Pork Making etext32452 Belch, William British Sports, for the Amusement of Children etext32469 Guernsey, H.W. Here Lies etext32509 Byron, George Gordon Byron, Baron, 1788-1824 Oeuvres complètes de lord Byron, Volume 11 etext32545 Roberts, Charles George Douglas, Sir, 1860-1943 The Haunters of the Silences etext32564 Browne, Howard, 1908-1999 Twelve Times Zero etext32626 Macpherson, Hector Carsewell Thomas Carlyle etext32628 Stimpson, Mary Stoyell The Child's Book of American Biography etext32649 James, Henry, 1843-1916 The Middle Years etext32697 Quattrocchi, Frank The Sword etext32701 Prichard, Harold Arthur Kant's Theory of Knowledge etext34 Kehoe, Brendan P., 1970- Zen and the Art of the Internet etext50 Hemphill, Scott Pi etext58 Milton, John, 1608-1674 Paradise Regained etext89 Canada North American Free Trade Agreement, 1992 Oct. 7 etext153 Hardy, Thomas, 1840-1928 Jude the Obscure etext160 Chopin, Kate, 1850-1904 The Awakening and Selected Short Stories etext171 Rowson, Mrs. Susanna (Haswell), 1762-1824 Charlotte Temple etext257 Chaucer, Geoffrey, 1343?-1400 Troilus and Criseyde etext274 Luther, Martin, 1483-1546 Martin Luther's 95 Theses etext288 Cabell, James Branch, 1879-1958 The Certain Hour etext297 Tarkington, Booth, 1869-1946 The Flirt etext402 Tarkington, Booth, 1869-1946 Penrod etext412 Hubbard, Elbert, 1856-1915 John Jacob Astor etext502 Grey, Zane, 1872-1939 Desert Gold etext512 Hawthorne, Nathaniel, 1804-1864 Mosses from an Old Manse and other stories etext552 Burroughs, Edgar Rice, 1875-1950 The People That Time Forgot etext585 etext608 Milton, John, 1608-1674 Areopagitica etext682 Fee, Greg Catalan's Constant [Ramanujan's Formula] etext697 MacDonald, George, 1824-1905 The Light Princess etext762 Whale, George British Airships, Past, Present, and Future etext769 Okakura, Kakuzo, 1862-1913 The Book of Tea etext778 Nesbit, E. (Edith), 1858-1924 Five Children and It etext848 Stevenson, Robert Louis, 1850-1894 The Black Arrow etext863 Christie, Agatha, 1890-1976 The Mysterious Affair at Styles etext880 Lowell, James Russell, 1819-1891 My Garden Acquaintance etext948 Spinoza, Benedictus de, 1632-1677 Ethics — Part 3 etext952 Appleton, Victor [pseud.] Tom Swift and His Air Glider, or Seeking the Platinum Treasure etext994 Synge, J. M. (John Millington), 1871-1909 Riders to the Sea etext1076 Bramah, Ernest, 1869?-1942 The Wallet of Kai Lung etext1163 London, Jack, 1876-1916 Adventure etext1175 Xenophon, 431 BC-350? BC Hiero etext1215 Balzac, Honoré de, 1799-1850 The Elixir of Life etext1266 Reed, Myrtle, 1874-1911 Lavender and Old Lace etext1288 Grahame, Kenneth, 1859-1932 Dream Days etext1290 Flaubert, Gustave, 1821-1880 Salammbo etext1318 Reynolds, John N. The Twin Hells; a thrilling narrative of life in the Kansas and Missouri penitentiaries etext1328 Synge, J. M. (John Millington), 1871-1909 The Tinker's Wedding etext1347 Le Roy, Edouard Louis Emmanuel Julien, 1870-1954 A New Philosophy: Henri Bergson etext1399 Tolstoy, Leo, graf, 1828-1910 Anna Karenina etext1411 Balzac, Honoré de, 1799-1850 Domestic Peace etext1441 Schreiner, Olive, 1855-1920 The Story of an African Farm, a novel etext1444 Henry, O., 1862-1910 The Voice of the City: Further Stories of the Four Million etext1448 Spyri, Johanna, 1827-1901 Heidi etext1496 Marlowe, Christopher, 1564-1593 Massacre at Paris etext1501 Shakespeare, William, 1564-1616 King Henry VI, Part 2 etext1509 Shakespeare, William, 1564-1616 Two Gentlemen of Verona etext1531 Shakespeare, William, 1564-1616 Othello etext1553 Balzac, Honoré de, 1799-1850 The Hidden Masterpiece etext1578 Aucassin and Nicolete etext1588 Collins, Wilkie, 1824-1889 A Rogue's Life etext1613 Clouston, J. Storer (Joseph Storer), 1870-1944 Count Bunker: being a bald yet veracious chronicle containing some further particulars of two gentlemen whose previous careers were touched upon in a tome entitled the Lunatic at Large etext1624 Collins, Wilkie, 1824-1889 The Two Destinies etext1628 Collins, Wilkie, 1824-1889 My Lady's Money etext1637 Kingsley, Charles, 1819-1875 Sanitary and Social Lectures, etc etext1719 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Ballad of the White Horse etext1727 Homer, 750? BC-650? BC The Odyssey etext1761 Davis, Richard Harding, 1864-1916 My Buried Treasure etext1772 Shakespeare, William, 1564-1616 The Taming of the Shrew etext1787 Shakespeare, William, 1564-1616 Hamlet etext1809 Raine, William MacLeod, 1871-1954 Bucky O'Connor etext1842 Verne, Jules, 1828-1905 Michael Strogoff etext1866 Trollope, Anthony, 1815-1882 North America — Volume 2 etext1874 Nesbit, E. (Edith), 1858-1924 The Railway Children etext1894 Pfeiffer, Ida, 1797-1858 Visit to Iceland etext1986 Bunyan, John, 1628-1688 Life and Death of Mr. Badman etext2014 Lowndes, Marie Belloc, 1868-1947 The Lodger etext2028 Rohmer, Sax, 1883-1959 The Yellow Claw etext2057 Grey, Zane, 1872-1939 The Last of the Plainsmen etext2095 Brown, William Wells, 1816?-1884 Clotelle: a Tale of the Southern States etext2119 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 19 etext2135 Stories by English Authors: London (Selected by Scribners) etext2150 Poe, Edgar Allan, 1809-1849 The Works of Edgar Allan Poe — Volume 4 etext2173 Burke, Edmund, 1729-1797 Thoughts on the Present Discontents, and Speeches, etc. etext2193 Harte, Bret, 1836-1902 A Ward of the Golden Gate etext2227 Kipling, Rudyard, 1865-1936 Soldiers Three - Part 2 etext2230 Goethe, Johann Wolfgang von, 1749-1832 Faust: Der Tragödie zweiter Teil etext2239 Shakespeare, William, 1564-1616 The Comedy of Errors etext2274 Bennett, Arnold, 1867-1931 How to Live on 24 Hours a Day etext2377 London, Jack, 1876-1916 The Son of the Wolf etext2392 Terhune, Albert Payson, 1872-1942 Further Adventures of Lad etext2394 James, George Wharton, 1858-1923 The Grand Canyon of Arizona; how to see it etext2468 etext2469 etext2482 Cooper, James Fenimore, 1789-1851 New York etext2505 Yonge, Charlotte Mary, 1823-1901 The Heir of Redclyffe etext2603 Judy, J. M. Questionable Amusements and Worthy Substitutes etext2606 Yonge, Charlotte Mary, 1823-1901 The Pigeon Pie etext2654 Lincoln, Abraham, 1809-1865 The Writings of Abraham Lincoln — Volume 2: 1843-1858 etext2704 Wrong, George McKinnon, 1860-1948 Washington and His Comrades in Arms; a chronicle of the War of Independence etext2807 Johnston, Mary, 1870-1936 To Have and to Hold etext2819 Kipling, Rudyard, 1865-1936 Barrack Room Ballads etext2822 Gonzales, Don Manoel London in 1731 etext2839 Heine, Heinrich, 1797-1856 Franse Toestanden etext2841 Haggard, Henry Rider, 1856-1925 The Ivory Child etext2861 Post, Melville Davisson, 1871?-1930 The Sleuth of St. James's Square etext2884 Fabre, Jean-Henri, 1823-1915 The Mason-Bees etext2905 Galsworthy, John, 1867-1933 The Burning Spear etext2925 Huxley, Thomas Henry, 1825-1895 Conditions of Existence as Affecting the Perpetuation of Living Beings etext2986 Paine, Albert Bigelow, 1861-1937 Mark Twain, a Biography — Volume III, Part 1: 1900-1907 etext3001 Society's Child (lyrics) etext3041 Ford, Henry Jones, 1851-1925 The Cleveland Era; a chronicle of the new order in politics etext3098 Hulbert, Archer Butler, 1873-1933 The Paths of Inland Commerce; a chronicle of trail, road, and waterway etext3145 James, Henry, 1843-1916 The Author of Beltraffio etext3220 Honig, Winfried Mr. Honey's Large Business Dictionary etext3233 Baker, Samuel White, Sir, 1821-1893 In the Heart of Africa etext3238 Wilcox, Ella Wheeler, 1855-1919 Poems of Cheer etext3354 Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773 Letters to His Son on the Art of Becoming a Man of the World and a Gentleman, 1750 etext3366 Howells, William Dean, 1837-1920 A Hazard of New Fortunes — Volume 1 etext3368 Howells, William Dean, 1837-1920 A Hazard of New Fortunes — Volume 3 etext3403 Howells, William Dean, 1837-1920 The Register etext3468 Morris, William, 1834-1896 Poems By the Way etext3481 Jenkins, Herbert George, 1876-1923 The Life of George Borrow etext3485 Shaw, Bernard, 1856-1950 Annajanska, the Bolshevik Empress etext3491 Gatlin, Dana Missy etext3611 Guthrie, William, 1835-1908 Second Shetland Truck System Report etext3644 Voltaire, 1694-1778 Vie De Molière etext3659 Barclay, Florence L. (Florence Louisa), 1862-1921 The Rosary etext3708 Williams, Rufus Phillips, 1851-1911 An Introduction to Chemical Science etext3721 Parkman, Francis, 1823-1893 Pioneers of France in the New World etext3729 Various Widger's Quotations from Project Gutenberg Edition of Memoirs of Napoleon etext3763 Churchill, Winston, 1871-1947 Coniston — Volume 02 etext3781 Stoker, Bram, 1847-1912 The Jewel of Seven Stars etext3782 Buchan, John, 1875-1940 Huntingtower etext3816 Crawford, F. Marion (Francis Marion), 1854-1909 The Witch of Prague etext3832 Richardson, Henry Handel, 1870-1946 Australia Felix etext3860 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 01 etext3883 etext3888 Campan, Jeanne Louise Henriette (Genet), 1752-1822 Memoirs of the Court of Marie Antoinette, Queen of France, Volume 5 etext3917 Ohnet, Georges, 1848-1918 Serge Panine — Volume 04 etext3962 Coppée, François, 1842-1908 A Romance of Youth — Complete etext4018 Ozaki, Yei Theodora Japanese Fairy Tales etext4021 Barrie, J. M. (James Matthew), 1860-1937 Dear Brutus etext4035 Pater, Walter, 1839-1894 Greek Studies: a Series of Essays etext4073 Butler, Samuel, 1835-1902 Ex Voto etext4085 Smollett, T. (Tobias), 1721-1771 The Adventures of Roderick Random etext4177 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 54: June 1667 etext4265 Mabie, Hamilton Wright, 1845-1916 Heroes Every Child Should Know etext4270 Howells, William Dean, 1837-1920 Ragged Lady — Complete etext4380 Barbusse, Henri, 1873-1935 Under Fire: the story of a squad etext4384 Van Dyke, Henry, 1852-1933 The Lost Word etext4497 Meredith, George, 1828-1909 The Sentimentalists etext4528 Freeman, Mary Eleanor Wilkins, 1852-1930 The Heart's Highway etext4602 Tolstoy, Leo, graf, 1828-1910 The Kingdom of God Is Within You etext4611 Benson, Arthur Christopher, 1862-1925 Where No Fear Was etext4616 Arthur, T. S. (Timothy Shay), 1809-1885 Lessons in Life, for All Who Will Read Them etext4641 Simonds, William Day, 1855-1920 Starr King in California etext4734 Bennett, Arnold, 1867-1931 The Grim Smile of the Five Towns etext4745 Mason, A. E. W. (Alfred Edward Woodley), 1865-1948 At the Villa Rose etext4763 Carroll, Lewis, 1832-1898 The Game of Logic etext4806 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 06: 1560-61 etext4826 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 24: 1576-77 etext4834 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 32: 1582-84 etext4909 Slaveikov, Pencho P., 1866-1912 Олаф ван Гелдерн etext4944 Yonge, Charlotte Mary, 1823-1901 Scenes and Characters etext4960 Alcott, Louisa May, 1832-1888 On Picket Duty, and Other Tales etext4987 Hope, Laura Lee The Outdoor Girls at Rainbow Lake etext5040 Eisenhower, Dwight D. (Dwight David), 1890-1969 State of the Union Address etext5132 Bolingbroke, Henry St. John, Viscount, 1678-1751 Letters to Sir William Windham and Mr. Pope etext5133 Motley, John Lothrop, 1814-1877 Quotations from John L. Motley Works etext5142 McCutcheon, George Barr, 1866-1928 Graustark etext5151 Reeve, Arthur B. (Arthur Benjamin), 1880-1936 The Exploits of Elaine etext5217 Crabbe, George, 1754-1832 Tales etext5257 Farnol, Jeffery, 1878-1952 The Broad Highway etext5271 Wells, Carolyn, 1862-1942 Marjorie's Vacation etext5282 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 08 etext5350 King, F. H. (Franklin Hiram), 1848-1911 Farmers of Forty Centuries; Or, Permanent Agriculture in China, Korea, and Japan etext5376 Churchill, Winston, 1871-1947 A Modern Chronicle — Volume 03 etext5385 Churchill, Winston, 1871-1947 The Celebrity, Volume 03 etext5403 Short Stories for English Courses etext5424 Sweet, Henry, 1845-1912 Icelandic Primer with Grammar, Notes and Glossary etext5506 Ebers, Georg, 1837-1898 Serapis — Volume 06 etext5515 Ebers, Georg, 1837-1898 Arachne — Volume 08 etext5529 Ebers, Georg, 1837-1898 The Bride of the Nile — Complete etext5555 Ebers, Georg, 1837-1898 Margery — Volume 04 etext5590 Ebers, Georg, 1837-1898 The Greylock etext5599 Ebers, Georg, 1837-1898 The Story of My Life — Complete etext5635 Mozart, Wolfgang Amadeus, 1756-1791 String Quartet No. 3 in G Major, K. 156 etext5696 Curtis, Alice Turner Yankee Girl at Fort Sumter etext5745 Haggard, Henry Rider, 1856-1925 She and Allan etext5836 Twain, Mark, 1835-1910 Sketches New and Old, Part 1. etext5896 McCutcheon, George Barr, 1866-1928 Her Weight in Gold etext5925 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 22 etext6010 Allen, Grant, 1848-1899 What's Bred in the Bone etext6012 Simms, William Gilmore, 1806-1870 Charlemont; Or, the Pride of the Village. a Tale of Kentucky etext6014 McCutcheon, George Barr, 1866-1928 West Wind Drift etext6122 Adams, Franklin P. (Franklin Pierce), 1881-1960 Tobogganing on Parnassus etext6182 Parker, Gilbert, 1862-1932 Romany of the Snows, Continuation of "Pierre and His People", v3 etext6201 Parker, Gilbert, 1862-1932 Cumner's Son and Other South Sea Folk — Complete etext6285 Parker, Gilbert, 1862-1932 You Never Know Your Luck; being the story of a matrimonial deserter. Volume 1. etext6334 Newberry, Fannie E. Sara, a Princess etext6351 Comfort, Will Levington, 1878-1932 Red Fleece etext6391 Suetonius Tranquillus, Gaius, 75-160 The Lives of the Twelve Caesars, Volume 06: Nero etext6396 Suetonius Tranquillus, Gaius, 75-160 The Lives of the Twelve Caesars, Volume 11: Titus etext6468 Rockwood, Roy On a Torn-Away World etext6488 Beach, Rex Ellingwood, 1877-1949 Going Some etext6615 Skinner, Charles M. (Charles Montgomery), 1852-1907 Myths and Legends of Our Own Land — Complete etext7115 Stidger, William L. (William Le Roy), 1885-1949 Giant Hours with Poet Preachers etext6632 McGee, Thomas D'Arcy, 1825-1868 A Popular History of Ireland : from the Earliest Period to the Emancipation of the Catholics — Volume 1 etext6645 Kleist, Heinrich von, 1777-1811 Ausgewählte Schriften etext6846 Parrish, Randall, 1858-1923 My Lady of the North etext6852 Sacher-Masoch, Leopold, Ritter von, 1836-1895 Venus in Furs etext6868 Chisholm, Addie Why and How : a hand-book for the use of the W.C.T. unions in Canada etext6897 Marryat, Frederick, 1792-1848 The Little Savage etext6943 Scott, Walter, Sir, 1771-1832 The Heart of Mid-Lothian, Volume 2 etext6961 Cox, Jacob Dolson, 1828-1900 Military Reminiscences of the Civil War, Volume 1 etext7095 Various Malayan Literature etext7098 Higginson, Thomas Wentworth, 1823-1911 Tales of the Enchanted Islands of the Atlantic etext7122 Cowherd, Thomas, 1817-1907 The Emigrant Mechanic and Other Tales in Verse Together with Numerous Songs Upon Canadian Subjects etext7156 Twain, Mark, 1835-1910 The Prince and the Pauper, Part 3. etext7161 Twain, Mark, 1835-1910 The Prince and the Pauper, Part 8. etext7194 Twain, Mark, 1835-1910 The Adventures of Tom Sawyer, Part 2. etext7264 Shakespeare, William, 1564-1616 Ein St.-Johannis-Nachts-Traum etext7269 Shakespeare, William, 1564-1616 Macbeth etext7277 The Green Fairy Book etext7324 Banfield, E. J. (Edmund James), 1852-1923 Tropic Days etext7327 Liu, Xiang, 77? BC-6? BC 說苑, Volume 1-4 etext7373 Belloc, Hilaire, 1870-1953 The Path to Rome etext7391 Holmes, Oliver Wendell, 1809-1894 The Poetical Works of Oliver Wendell Holmes — Volume 04: Songs in Many Keys etext7453 Jennings, James The Dialect of the West of England; Particularly Somersetshire etext7458 Yan, Zhitui, 531-591 顔氏家訓 etext7516 Wharton, Edith, 1862-1937 Crucial Instances etext7521 Cubberley, Ellwood Patterson, 1868-1941 The History of Education; educational practice and progress considered as a phase of the development and spread of western civilization etext7566 Marguerite, Queen, consort of Henry IV, King of France, 1553-1615 Quotes and Images From Memoirs of Marguerite de Valois etext7597 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 12 etext7617 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Pelham — Volume 03 etext7619 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Pelham — Volume 05 etext7625 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Devereux — Volume 02 etext7673 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Harold : the Last of the Saxon Kings — Volume 02 etext7738 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Parisians — Volume 02 etext7739 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Parisians — Volume 03 etext7742 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Parisians — Volume 06 etext7783 Owahyah Birch Bark Legends of Niagara etext7821 Haliburton, Thomas Chandler, 1796-1865 The Attaché; or, Sam Slick in England — Volume 01 etext7828 Herrick, Robert, 1868-1938 The Web of Life etext7840 Howard, Gorges Edmond, 1715-1786 The Female Gamester etext7872 Joyce, James, 1882-1941 Dubliners etext7947 King-Hall, Stephen, Sir, 1893-1966 The Diary of a U-boat Commander etext7948 Irving, Washington, 1783-1859 Abbotsford and Newstead Abbey etext7992 Meloney, Mrs W.B., 1895-1988 Better Homes in America etext8014 Anonymous The Bible, King James version, Book 14: 2 Chronicles etext8045 Anonymous The Bible, King James version, Book 45: Romans etext8092 Chesterton, G. K. (Gilbert Keith), 1874-1936 Tremendous Trifles etext8117 Dostoyevsky, Fyodor, 1821-1881 The Possessed (The Devils) etext8119 Schulz, Bruno, 1892-1942 Sklepy cynamonowe etext8132 Moodie, Susanna, 1803-1885 Life in the Clearings versus the Bush etext8147 Kipling, Rudyard, 1865-1936 The Man Who Would Be King etext8193 Dillon, Emile Joseph, 1855-1933 The Sceptics of the Old Testament: Job - Koheleth - Agur etext8285 Anonymous The World English Bible (WEB): Hebrews etext8327 The Bible, Douay-Rheims, Book 27: Isaias etext8328 The Bible, Douay-Rheims, Book 28: Jeremias etext8332 The Bible, Douay-Rheims, Book 32: Daniel etext8377 Bangs, John Kendrick, 1862-1922 The Water Ghost and Others etext8406 Hawthorne, Julian, 1846-1934 The Subterranean Brotherhood etext8416 Zola, Émile, 1840-1902 Nouveaux Contes à Ninon etext8435 The Sturdy Oak etext8454 Hugo, Victor, 1802-1885 Actes et Paroles, Volume 3 etext8460 Watterson, Henry, 1840-1921 Marse Henry, Complete etext8534 Tileston, Mary W. Daily Strength for Daily Needs etext8551 MacDonald, George, 1824-1905 The Seaboard Parish Volume 1 etext8628 Doyle, Arthur Conan, Sir, 1859-1930 The Adventure of the Red Circle etext8705 The Doré Gallery of Bible Illustrations, Volume 5 etext8773 Sutherland, Halliday G., 1882-1960 Birth Control etext8790 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Purgatory, Volume 1 etext8809 Aesop, 620 BC-563 BC Aesop's Fables etext8825 Edgeworth, Maria, 1767-1849 The Life and Letters of Maria Edgeworth, Volume 1 etext8836 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Galatians etext8898 Baring-Gould, S. (Sabine), 1834-1924 Castles and Cave Dwellings of Europe etext8928 Sherwell, Guillermo A. Simon Bolivar, the Liberator etext8958 Wharton, Edith, 1862-1937 The Age of Innocence etext8974 Wells, H. G. (Herbert George), 1866-1946 The Invisible Man etext9001 Twain, Mark, 1835-1910 Personal Recollections of Joan of Arc — Volume 01 etext9010 Twain, Mark, 1835-1910 On the Decay of the Art of Lying etext9011 Twain, Mark, 1835-1910 The American Claimant etext9027 Twain, Mark, 1835-1910 Alonzo Fitz and Other Stories etext9030 Twain, Mark, 1835-1910 Essays on Paul Bourget etext9042 Twain, Mark, 1835-1910 Extracts from Adam's Diary etext9080 Longfellow, Henry Wadsworth, 1807-1882 The Children's Own Longfellow etext9089 Dent, Edward J., 1876-1957 Handel etext9103 MacDonald, George, 1824-1905 Miracles of Our Lord etext9154 MacDonald, George, 1824-1905 Salted with Fire etext9178 Bethge, Hans, 1876-1946 Japanischer Frühling etext9186 Lessing, Gotthold Ephraim, 1729-1781 Nathan der Weise etext9198 Walton, Izaak, 1593-1683 The Complete Angler 1653 etext9265 Various The Atlantic Monthly, Volume 04, No. 22, August, 1859 etext9340 Conrad, Joseph, 1857-1924 The Arrow of Gold etext9436 Hardy, Thomas, 1840-1928 Two on a Tower etext9459 Carmichael, Alfred, 1874-1963 Indian Legends of Vancouver Island etext9485 Field, Eugene, 1850-1895 A Little Book of Profitable Tales etext9507 Ward, Humphry, Mrs., 1851-1920 The Coryston Family etext9536 Thackeray, William Makepeace, 1811-1863 The Newcomes etext9540 Thackeray, William Makepeace, 1811-1863 The Book of Snobs etext9594 Whittier, John Greenleaf, 1807-1892 Old Portraits, Modern Sketches, Personal Sketches and Tributes etext9612 Darwin, Erasmus, 1731-1802 The Botanic Garden etext9624 Leslie, Eliza, 1787-1858 Directions for Cookery, in its Various Branches etext9644 Hugo, Victor, 1802-1885 Littérature et Philosophie mêlées etext9648 Pansy, 1841-1930 Tip Lewis and His Lamp etext9674 Eliot, George, 1819-1880 The Lifted Veil etext9678 Defoe, Daniel, 1661?-1731 The Consolidator etext9730 Dickens, Charles, 1812-1870 The Pickwick Papers etext9744 Dickens, Charles, 1812-1870 David Copperfield etext9754 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Night and Morning, Volume 5 etext9801 Drummond, William Henry, 1854-1907 The Habitant and Other French-Canadian Poems etext9824 Darwin, Charles, 1809-1882 Observations Géologiques sur les Îles Volcaniques etext9881 Richardson, Samuel, 1689-1761 Clarissa Harlowe; or the history of a young lady — Volume 3 etext9891 Renneville, Mme de Conversations d'une petite fille avec sa poupée etext9980 Jimenez, Juan Ramon, 1881-1958 Platero Y Yo etext9993 Harrison, Henry Sydnor, 1880-1930 Captivating Mary Carstairs etext9994 Sudermann, Hermann, 1857-1928 The Indian Lily and Other Stories etext10019 Various Punchinello, Volume 1, No. 22, August 27, 1870 etext10030 Buffalo Bill, 1846-1917 The Life of Hon. William F. Cody etext10049 Oliphant, Mrs. (Margaret), 1828-1897 Old Lady Mary etext10091 Various Punchinello, Volume 2, No. 31, October 29, 1870 etext10102 Le Queux, William, 1864-1927 The Czar's Spy etext10143 Various Punch, or the London Charivari, Volume 153, July 11, 1917 etext10148 Pyle, Howard, 1853-1911 The Merry Adventures of Robin Hood etext10157 Murray, Billy Which Switch is the Switch, Miss, for Ipswich? etext10230 Daniels, Josephus Remarks from a Visit to Edison Laboratory etext10257 Orchester, I. J. Hochman's Yiddisher Mazel Tov etext10302 Dobbs, John Just Because She Made Dem Goo-Goo Eyes etext10308 Handel Festival etext10322 Maria, Jennie (Drinkwater) Conklin Miss Prudence etext10372 Vachell, Horace Annesley, 1861-1955 Bunch Grass etext10376 Zitkala-Sa, 1876-1938 American Indian stories etext10377 Le Fanu, Joseph Sheridan, 1814-1873 The Evil Guest etext10383 Bull, Thomas The Maternal Management of Children, in Health and Disease etext10472 Wace, ca. 1100-1175 Arthurian Chronicles: Roman de Brut etext10511 Bridges, Victor A Rogue by Compulsion etext10534 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Double Traitor etext10583 Grattan, Thomas Colley, 1792-1864 Holland etext10639 Phrases for Public Speakers and Paragraphs for Study etext10653 McGuinn, Roger The Squid-Jigging Ground etext10768 Maspero, G. (Gaston), 1846-1916 L'égyptologie etext10811 Christian Brothers De La Salle Fifth Reader etext10841 Maspero, G. (Gaston), 1846-1916 L'archéologie égyptienne etext10842 Kitson, Arthur The Life of Captain James Cook etext10905 Braddon, M. E. (Mary Elizabeth), 1835-1915 Phantom Fortune, a Novel etext10911 Bennett, Arnold, 1867-1931 Buried Alive: a Tale of These Days etext10964 Various Punch, or the London Charivari, Volume 156, Jan. 1, 1919 etext11019 Davis, Richard Harding, 1864-1916 Van Bibber and Others etext11025 Kingsley, Charles, 1819-1875 Phaethon etext11055 Cheever, Harriet A. Lord Dolphin etext11066 Porterfield, Allen Wilson, 1877- Graf von Loeben and the Legend of Lorelei etext11111 Alger, Horatio, 1832-1899 Only an Irish Boy etext11115 Standish, Burt L., 1866-1945 Frank Merriwell at Yale etext11116 Knevels, Gertrude, 1881-1962 The Wonderful Bed etext11131 Maupassant, Guy de, 1850-1893 Pierre et Jean etext11177 Various Punchinello, Volume 1, No. 01, April 2, 1870 etext11209 Conscience, Hendrik, 1812-1883 Wat eene moeder lijden kan etext11228 Chesnutt, Charles W. (Charles Waddell), 1858-1932 The Marrow of Tradition etext11239 Defoe, Daniel, 1661?-1731 The Life and Adventures of Robinson Crusoe of York, Mariner, Volume 1 etext11245 Various The Mirror of Literature, Amusement, and Instruction etext11276 Fiske, John, 1842-1901 Civil Government in the United States Considered with etext11403 Woodhouse, Frederick W. The Churches of Coventry etext11419 Hughes, Rupert, 1872-1956 The Love Affairs of Great Musicians, Volume 2 etext11461 Anonymous Armenian Literature etext11474 Jacobs, W. W. (William Wymark), 1863-1943 Sam's Ghost etext11477 Jacobs, W. W. (William Wymark), 1863-1943 Family Cares etext11582 Baldwin, James, 1841-1925 Old Greek Stories etext11598 Reclus, Elisée, 1830-1905 La Montaña etext11609 Henty, G. A. (George Alfred), 1832-1902 The Golden Canyon etext11640 Wells, H. G. (Herbert George), 1866-1946 Love and Mr. Lewisham etext11678 Maquet, Auguste, 1813-1886 La belle Gabrielle — Tome 2 etext11687 Various The Atlantic Monthly, Volume 03, No. 17, March, 1859 etext11690 Goodloe, Carter Calvert of Strathore etext11721 Various O. Henry Memorial Award Prize Stories of 1920 etext11740 Various The Mirror of Literature, Amusement, and Instruction etext11782 Human Genome Project Chromosome Number 08 etext11850 Library of Congress. Copyright Office U.S. Copyright Renewals, 1974 July - December etext11882 Haggard, Henry Rider, 1856-1925 Colonel Quaritch, V.C. etext11885 Various The Mirror of Literature, Amusement, and Instruction etext11892 Pink, Alfred Gardening for the Million etext11909 Webster, Frank V. Bob the Castaway etext11933 Earle, Augustus A Narrative of a Nine Months' Residence in New Zealand in 1827 etext12011 Maupassant, Guy de, 1850-1893 Monsieur Parent etext12014 Cibber, Theophilus, 1703-1758 The Lives of the Poets of Great Britain and Ireland (1753) etext12104 Holmes, Mary Jane, 1825-1907 Ethelyn's Mistake etext12191 Crockett, S. R. (Samuel Rutherford), 1860-1914 Red Axe etext12243 Bouton, John Bell Round the Block etext12260 Abbott, Jacob, 1803-1879 Jonas on a Farm in Winter etext12263 Various Blackwood's Edinburgh Magazine — Volume 53, No. 331, May, 1843 etext12274 Guerra, Juan Álvarez Viajes por Filipinas: De Manila á Marianas etext12285 Various The Atlantic Monthly, Volume 07, No. 44, June, 1861 Creator etext12370 Mīr Amman Dihlavī Bagh O Bahar, or Tales of the Four Darweshes etext12457 Vélez de Guevara, Luis, 1579-1644 El Diablo Cojuelo etext12514 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels — Volume 04 etext12535 Mason, A. E. W. (Alfred Edward Woodley), 1865-1948 Witness for the Defense etext12578 Shakespeare, William, 1564-1616 Shakespeare's play of the Merchant of Venice etext12587 Hugo, Victor, 1802-1885 The Man Who Laughs etext12608 McHugh, Hugh Get Next! etext12615 Knight, William Allen, 1863-1957 The Song of our Syrian Guest etext12763 Hurst, Fannie, 1889-1968 Every Soul Hath Its Song etext12821 Moore, George (George Augustus), 1852-1933 The Brook Kerith etext12827 Mackie, John, 1862-1939 The Rising of the Red Man etext12845 The World's Greatest Books — Volume 12 — Modern History etext12854 Murray, Andrew, 1828-1917 The Master's Indwelling etext12913 Bain, Alexander, 1818-1903 Moral Science; a Compendium of Ethics etext12955 Arner, George B. Louis Consanguineous Marriages in the American Population etext12983 Smythe, James P. Rescuing the Czar etext13032 Clouston, William Alexander, 1843-1896 The Book of Noodles etext13034 Weston, George Mary Minds Her Business etext13067 Various Punch, or the London Charivari, Volume 100, January 31, 1891 etext13131 Housman, Clemence The Were-Wolf etext13241 Various International Weekly Miscellany - Volume 1, No. 5, July 29, 1850 etext13264 Baroja, Pío, 1872-1956 Zalacaín El Aventurero etext13290 Ballantyne, R. M. (Robert Michael), 1825-1894 Martin Rattler etext13416 Chekhov, Anton Pavlovich, 1860-1904 The Darling and Other Stories etext13460 Dods, Marcus, 1834-1909 How to become like Christ etext13538 Various Punch, or the London Charivari, Volume 101, September 5, 1891 etext13541 Bierce, Ambrose, 1842-1914? The Collected Works of Ambrose Bierce, Volume 1 etext13561 Jones, Henry, Sir, 1852-1922 Browning as a Philosophical and Religious Teacher etext13583 etext13588 Moore, John Hamilton, 1738-1807 The Young Gentleman and Lady's Monitor, and English Teacher's Assistant etext13619 Hubbard, Elbert, 1856-1915 Little Journeys to the Homes of the Great - Volume 05 etext13684 Various Notes and Queries, Number 28, May 11, 1850 etext13691 Aho, Juhani, 1861-1921 Lastuja I-III etext13885 etext13968 Burke, Edmund, 1729-1797 The Works of the Right Honourable Edmund Burke, Vol. 09 (of 12) etext13981 Desmazures, Adam Charles Gustave, 1818-1891 Histoire du Chevalier d'Iberville etext13982 Cooper, James A. Cap'n Abe, Storekeeper etext14009 Various Scientific American Supplement, No. 787, January 31, 1891 etext14022 Various The Mirror of Literature, Amusement, and Instruction etext14049 Douie, Marjorie The Pointing Man etext14076 Casserly, Gordon The Elephant God etext14083 Chapman, Allen Tom Fairfield's Pluck and Luck etext14123 Various Punch, or the London Charivari, Volume 101, November 28, 1891 etext14164 Hahnsson, Theodolinda (Sofia Theodolinda), 1838-1919 Kaksi etext14189 Haverfield, F. (Francis), 1860-1919 Ancient Town-Planning etext14255 Haultain, T. Arnold (Theodore Arnold), 1857-1941 Hints for Lovers etext14258 Desbordes-Valmore, Marceline, 1786-1859 Le Livre des Mères et des Enfants, Tome I etext14289 Rose, John Holland, 1855-1942 The Life of Napoleon I (Volume 1 of 2) etext14292 Alkio, Santeri, 1862-1930 Murtavia voimia etext14315 Ditchfield, P. H. (Peter Hampson), 1854-1930 Old English Sports, Pastimes and Customs etext14366 Various Argentina from a British Point of View etext14374 Gwynn, Stephen Lucius, 1864-1950 John Redmond's Last Years etext14405 Sayce, A. H. (Archibald Henry), 1845-1933 Patriarchal Palestine etext14413 Various Blackwood's Edinburgh Magazine — Volume 54, No. 333, July 1843 etext14416 etext14483 Various Punch, Or The London Charivari, Volume 102, March 5, 1892 etext14533 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Hocken and Hunken etext14567 Pearson, Francis B. (Francis Bail), 1853- The Reconstructed School etext14574 Raine, William MacLeod, 1871-1954 Gunsight Pass etext14606 Brady, Cyrus Townsend, 1861-1920 And Thus He Came etext14644 Rose, John Holland, 1855-1942 The Development of the European Nations, 1870-1914 (5th ed.) etext14674 Clarke, James Freeman, 1810-1888 Ten Great Religions etext14741 Derzhavin, Gavrila Romanovich, 1743-1816 Духовные оды etext14742 Ditchfield, P. H. (Peter Hampson), 1854-1930 Vanishing England etext14747 Various Punch, or the London Charivari, Volume 102, June 25, 1892 etext14767 Various Punch, or the London Charivari, Volume 152, February 21, 1917 etext14799 etext14839 Rizal, José, 1861-1896 Filipinas Dentro De Cien Años (Estudio Politico-Social) etext14957 Fisher, Dorothy Canfield, 1879-1958 The Brimming Cup etext15051 Various Scientific American Supplement, No. 829, November 21, 1891 etext15060 Collins, Wilkie, 1824-1889 L'hôtel hanté etext15074 Dryden, John, 1631-1700 His Majesties Declaration Defended etext15096 Stroyer, Jacob, 1849-1908 My Life In The South etext15098 Morley, John, 1838-1923 Diderot and the Encyclopædists (Vol 1 of 2) etext15105 Hannikainen, Pietari, 1813-1899 Jutelmia läheltä ja kaukaa I: Etelän ja Pohjoisen Tytär; Punainen Lähde etext15111 Brooks, Amy Randy and Her Friends etext15163 Ruland, Wilhelm, 1869-1927 Sagen van den Rijn etext15184 The Philippine Islands, 1493-1898 — Volume 13 of 55 etext15193 Various Scientific American Supplement, No. 841, February 13, 1892 etext15201 Lasker, Edward, 1885-1981 Chess and Checkers: The Way to Mastership -- Polish etext15209 Beede, Clara M. Clear Crystals etext15235 Sand, George, 1804-1876 Oeuvres illustrées de George Sand etext15244 Bradford, Sarah H. (Sarah Hopkins), 1818- Lewie etext15318 Kurikka, Matti, 1863-1915 Pilven hattaroita I etext15336 Helps, Arthur, Sir, 1813-1875 The Life of Columbus etext15350 Tuckerman, Bayard A History of English Prose Fiction etext15433 Guizot, M. (François), 1787-1874 Mémoires pour servir à l'Histoire de mon temps (Tome 3) etext15444 Kelley, Francis Clement, 1870-1948 The City and the World and Other Stories etext15490 Lady, An English The Young Lady's Mentor etext15524 Dennis, C. J. (Clarence James), 1876-1938 Digger Smith etext15548 Anonymous Novena nga Pagdaydayao Quen Aputayo á Jesus Nazareno etext15571 Bosher, Kate Langley, 1865-1932 Mary Cary etext15589 Rodenbach, Georges, 1855-1898 Les vies encloses etext15591 Oemler, Marie Conway, 1879-1932 A Woman Named Smith etext15639 Various Notes and Queries, Number 63, January 11, 1851 etext15693 etext15768 Swedenborg, Emanuel, 1688-1772 The Gist of Swedenborg etext15796 Andrews, Mary Raymond Shipman, 1860-1936 Joy in the Morning etext15841 Conquest, Joan Leonie of the Jungle etext15896 Beeston, Joseph Lievesley, 1859-1921 Five Months at Anzac etext15947 Ruskin, John, 1819-1900 The Pleasures of England etext15973 Various Punch, or the London Charivari, Volume 103, November 26, 1892 etext15977 Moore, Bloomfield H., Mrs. (Clara Jessup), 1824-1899 Frank and Fanny etext15998 Marchant, James Alfred Russel Wallace: Letters and Reminiscences, Vol. 2 etext16024 Various The Great Round World and What Is Going On In It, Vol. 1, No. 46, September 23, 1897 etext16045 Vasse, Guillaume Op de jacht in Mozambique etext16065 etext16068 Furuhjelm, Maria, 1846-1916 Tehtaan tytöt etext16085 Verne, Jules, 1828-1905 A Voyage in a Balloon (1852) etext16149 Anonymous Máximas Morales en Ilocano y Castellano etext16167 Rawlinson, George, 1812-1902 The Seven Great Monarchies Of The Ancient Eastern World, Vol 7. (of 7): The Sassanian or New Persian Empire etext16172 Various The American Missionary — Volume 43, No. 12, December, 1889 etext16204 Steele, Chester K. The Mansion of Mystery etext16215 Ainsworth, William Harrison, 1805-1882 Jack Sheppard etext16223 Topelius, Zacharias, 1818-1898 Lukemisia lapsille 1 etext16286 Sand, George, 1804-1876 Lucrezia Floriani etext16288 Benson, Robert Hugh, 1871-1914 Oddsfish! etext16292 Burke, Edmund, 1729-1797 The Works of the Right Honourable Edmund Burke, Vol. 07 (of 12) etext16322 Dau, W. H. T. (William Herman Theodore), 1864-1944 Luther Examined and Reexamined etext16358 Leland, Charles Godfrey, 1824-1903 The English Gipsies and Their Language etext16360 Various Scientific American Supplement, No. 561, October 2, 1886 etext16383 May, Sophie, 1833-1906 Dotty Dimple Out West etext16394 Various Punch, or the London Charivari, Vol. 158, 1920-02-11 etext16406 Fullerton, George Stuart An Introduction to Philosophy etext16456 Dryden, John, 1631-1700 The works of John Dryden, $c now first collected in eighteen volumes. $p Volume 06 etext16483 Ramsay, Anders, 1832-1910 Muistoja lapsen ja hopeahapsen 3 etext16534 Anderson, Nephi, 1865-1923 A Young Folks' History of the Church of Jesus Christ of Latter-day Saints etext16556 Various Short Story Classics (American) Vol. 2 etext16629 Mighels, Philip Verrill The Furnace of Gold etext16697 Bahá'u'lláh, 1817-1892 Epistle to the Son of the Wolf etext16774 Siljo, Juhani, 1888-1918 Teuvo Pakkala etext16830 Gorter, Herman, 1864-1927 Een klein heldendicht etext16842 Potgieter, E.J., 1808-1875 Liedekens van Bontekoe en vijf novellen etext16930 Parmele, Mary Platt, 1843-1911 A Short History of Russia etext16933 Gower, Ronald Sutherland, 1845-1916 Joan of Arc etext16962 Goudemetz, Henry, 1749-1826? Historical Epochs of the French Revolution etext16977 Lydia E. Pinkham Medicine Company Food and Health etext17157 Swift, Jonathan, 1667-1745 Gulliver's Travels etext17161 Busch, Wilhelm, 1832-1908 Max und Moritz etext17175 Molesworth, Mrs., 1839-1921 The Tapestry Room etext17186 Silva, Joaquim Possidónio Narciso da, 1806-1896 Noções elementares de archeologia etext17206 Knyvett, R. Hugh (Reginald Hugh), -1918 "Over There" with the Australians etext17236 etext17263 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 The Astonishing History of Troy Town etext17281 Lermina, Jules, 1839-1915 Les loups de Paris etext17283 Crane, Walter, 1845-1915 The Absurd ABC etext17290 Monnier, Marc, 1827-1885 The Wonders of Pompeii etext17295 Verne, Jules, 1828-1905 Kauppahuone Playfair ja Kumpp etext17316 Anonymous Letters of a Soldier etext17325 Maspero, G. (Gaston), 1846-1916 History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 5 (of 12) etext17327 Maspero, G. (Gaston), 1846-1916 History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 7 (of 12) etext17372 Capendu, Ernest, 1826-1868 Marcof le Malouin etext17393 Browning, Robert, 1812-1889 Men and Women etext17434 Griffiths, Arthur, 1838-1908 The Thin Red Line; and Blue Blood etext17447 Päivärinta, Pietari, 1827-1913 Pikakuvia 1867 katovuodesta ja sen seurauksista etext17449 Mining Laws of Ohio, 1921 etext17476 Kleiser, Grenville, 1868-1953 Talks on Talking etext17483 Brooks, Henry M. (Henry Mason), 1822-1898 The Olden Time Series, Vol. 3: New-England Sunday etext17550 Daudet, Alphonse, 1840-1897 Les femmes d'artistes etext17634 Various Punch, or the London Charivari, Volume 152, May 30, 1917 etext17720 Seignobos, Charles, 1854-1942 History Of Ancient Civilization etext17748 Hornaday, William Temple, 1854-1937 The Extermination of the American Bison etext17781 McGovern, John The Golden Censer etext17799 Hartley, John, 1839-1915 Yorkshire Ditties, Second Series etext17801 Braddon, M. E. (Mary Elizabeth), 1835-1915 Milly Darrell and Other Tales etext17831 Zola, Émile, 1840-1902 La débâcle etext17876 Giacosa, Giuseppe, 1847-1906 Come le foglie etext17888 Freeman, Mary Eleanor Wilkins, 1852-1930 Comfort Pease and her Gold Ring etext17900 Hahnsson, Theodolinda (Sofia Theodolinda), 1838-1919 Kotikuusen kuiskehia etext17902 White, Ramy Allison Sunny Boy and His Playmates etext17905 De Marchi, Emilio, 1851-1901 Vecchie cadenze e nuove etext17919 Anonymous The story of Burnt Njal etext17964 Bangs, John Kendrick, 1862-1922 Olympian Nights etext17979 Curtis, William, 1746-1799 The Botanical Magazine, Vol. 4 etext18047 Dio, Cassius Dio's Rome, Volume 1 (of 6) etext18077 Ewing, Juliana Horatia Gatty, 1841-1885 We and the World, Part I etext18117 Bordeaux, Henry, 1870-1963 Georges Guynemer etext18143 Shakespeare, William, 1564-1616 Roméo et Juliette etext18166 Martí, José, 1853-1895 Amistad funesta etext18180 Fitzhugh, Percy Keese, 1876-1950 Tom Slade on Mystery Trail etext18197 Alq, Louise d', 1840?-1901? Notes d'une mère etext18199 Dumas père, Alexandre, 1802-1870 Le Collier de la Reine, Tome I etext18246 Ibsen, Henrik, 1828-1906 Kuninkaan-alut etext18264 Optic, Oliver, 1822-1897 Within The Enemy's Lines etext18280 Cobb, Thomas, 1854-1932 Enter Bridget etext18347 Carnegie Library of Pittsburgh Carnegie Library of Pittsburgh Debate Index etext18352 Curtis, Charles A. (Charles Albert), 1835-1907 Captured by the Navajos etext18360 Caldecott, Randolph, 1846-1886 The Farmer's Boy etext18373 Various The Argosy etext18394 Marden, Orison Swett, 1850-1924 Cheerfulness as a Life Power etext18420 Hope, Laura Lee The Bobbsey Twins at Home etext18526 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 Eating in Two or Three Languages etext18527 Various An Assessment of the Consequences and Preparations for a Catastrophic California Earthquake: Findings and Actions Taken etext18555 Howells, William Dean, 1837-1920 A Chance Acquaintance etext18608 Redner, Lewis, 1830-1908 Oh Little Town of Bethlehem etext18641 etext18689 Warner, Susan, 1819-1885 The Wide, Wide World etext18715 Carraud, Zulma, 1796-1889 La petite Jeanne etext18718 Doyle, Arthur Conan, Sir, 1859-1930 Micah Clarke - Tome III etext18740 Licquet, Théodore, 1787-1832 Rouen, It's History and Monuments etext18748 Kempkey, A. Transactions of the American Society of Civil Engineers, Vol. LXX, Dec. 1910 etext18779 Walters, Francis M., 1862- Physiology and Hygiene for Secondary Schools etext18787 Sabatier, Paul, 1858-1928 Life of St. Francis of Assisi etext18824 Frost, William Henry, 1863-1902 Fairies and Folk of Ireland etext18897 Langdon, Stephen, 1876-1937 The Epic of Gilgamish etext18923 Sue, Eugène, 1804-1857 Les mystères de Paris, Tome III etext18936 Hubbard, Elbert, 1856-1915 Little Journeys to the Homes of the Great - Volume 10 etext18956 Dewey, Orville, 1794-1882 Autobiography and Letters of Orville Dewey, D.D. etext18974 Villeneuve, João Primeira origem da arte etext19000 Doctorow, Cory, 1971- Printcrime etext19020 Cholmondeley, Mary, 1859-1925 The Danvers Jewels, and Sir Charles Danvers etext19030 Ibsen, Henrik, 1828-1906 Puphejmo etext19060 Serao, Matilde, 1865-1927 Gli amanti etext19073 Knapp, Arthur William Cocoa and Chocolate etext19091 Verne, Jules, 1828-1905 Robur de Veroveraar etext19143 Hurll, Estelle M. (Estelle May), 1863-1924 Correggio etext19156 Various The Continental Monthly, Vol III, Issue VI, June, 1863 etext19178 Garborg, Arne, 1851-1924 Kyläkertomuksia etext19180 Various Scientific American, Volume XXIV., No. 12, March 18, 1871 etext19185 Whyte, Alexander, 1836-1921 Santa Teresa etext19191 Wharton, Edith, 1862-1937 The Fruit of the Tree etext19200 Bernstein, Herman, 1876-1935 The History of a Lie etext19215 Hume, David, 1711-1776 The History of England in Three Volumes, Vol.I., Part E. etext19257 Connor, Ralph, 1860-1937 Michael McGrath, Postmaster etext19275 Shoghi Effendi, 1897-1957 God Passes By etext19367 Raleigh, Walter Alexander, Sir, 1861-1922 Romance etext19382 Various Punch, or the London Charivari, Volume 159, October 13, 1920 etext19406 Various Scientific American, Volume XXXVI., No. 8, February 24, 1877 etext19409 etext19445 Piper, H. Beam, 1904-1964 Omnilingual etext19485 Weyman, Stanley John, 1855-1928 The Long Night etext19631 Maynard, François, 1582-1646 Épigramme etext19667 Mussey, R. D. (Reuben Dimond), 1780-1866 An Essay on the Influence of Tobacco upon Life and Health etext19687 The Square of Sevens etext19756 Barrillon, François-Guillaume La réforme postale en France etext19789 Storm, Theodor, 1817-1888 Der kleine Häwelmann etext19791 Hoffmann, Heinrich, 1809-1894 Der Struwwelpeter etext19792 Hoffmann, Heinrich, 1809-1894 Der Struwwelpeter etext19809 Macduff, John R. (John Ross), 1818-1895 The Story of a Dewdrop etext19823 Wolff, A. A. (Abraham Alexander), 1801-1891 Gebete für Israeliten etext19838 Lawrence, D. H. (David Herbert), 1885-1930 Embankment at Night etext19842 Anonymous Évangile selon Jean etext19878 Leighton, Marshall Ora, 1874-1958 The Passaic Flood of 1903 etext19882 Black, C. B., -1906 Itinerary through Corsica etext19907 Fraser, Chelsea Curtis, 1876- Around the World in Ten Days etext19913 Dorsey, James Owen, 1848-1895 Omaha Dwellings, Furniture and Implements etext19929 Halsey, Harlan Page, 1839?-1898 Cad Metti, The Female Detective Strategist etext19969 Hope, Laura Lee The Moving Picture Girls at Oak Farm etext19982 Anonymous Projet pour la compagnie des transports, postes et messageries etext20017 Unknown Pages for Laughing Eyes etext20038 Shelley, Mary Wollstonecraft, 1797-1851 Frankenstein, or Modern Prometheus etext20071 Meade, L. T., 1854-1914 Sue, A Little Heroine etext20129 Brehm, Alfred Edmund, 1829-1884 Het Leven der Dieren etext20152 Hay, James, 1881-1936 The Winning Clue etext20171 Taylor, Robert L. Gov. Bob. Taylor's Tales etext20192 Levett-Yeats, S. Orrain etext20214 Stanley, W. Instruction for Using a Slide Rule etext20235 Tupper, Martin Farquhar, 1810-1889 Heart etext20253 Casellas, Raimond, 1855-1910 Llibre D'històries etext20303 Various The Best Short Stories of 1915 etext20315 Leavitt, Elizabeth Davis The Grasshopper Stories etext20341 Flower, Jessie Graham [pseud.], -1931 Grace Harlowe's Overland Riders in the Great North Woods etext20364 Various Notes and Queries, Number 189, June 11, 1853 etext20367 Babcock, Bernie The Coming of the King etext20417 Thomson, J. Arthur, 1861-1933 The Outline of Science, Vol. 1 (of 4) etext20426 Russell, E. S. (Edward Stuart), 1887-1954 Form and Function etext20469 Sidgwick, Frank Ballads of Romance and Chivalry etext20470 Morton, Agnes H. Etiquette etext20481 Various Continental Monthly , Vol. 6, No. 1, July, 1864 etext20500 Marshall, John, 1845-1915 A Short History of Greek Philosophy etext20524 Gaylord, Glance Culm Rock etext20568 Verlaine, Paul, 1844-1896 Hombres etext20579 Bennett, Charles H. (Charles Henry), 1829-1867 The Frog Who Would A Wooing Go etext20630 Fletcher, J. S. (Joseph Smith), 1863-1935 The Borough Treasurer etext20640 Valmiki Le Râmâyana - tome second etext20654 Lawrence, D. H. (David Herbert), 1885-1930 Fantasia of the Unconscious etext20688 Unknown Psalms - Selections from the World English Bible Translation etext20768 James, William, 1842-1910 Memories and Studies etext20898 Smith, E. E. (Edward Elmer), 1890-1965 The Galaxy Primes etext20974 Zola, Émile, 1840-1902 J'accuse...! etext20979 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Brother Copas etext21086 Hutcheson, John C. (John Conroy) The Penang Pirate etext21087 Hutcheson, John C. (John Conroy) The Ghost Ship etext21104 Hutcheson, John C. (John Conroy) Afloat at Last etext21119 Vaizey, George de Horne, Mrs., 1857-1917 Flaming June etext21176 Brooke, L. Leslie (Leonard Leslie), 1862-1940 The Story of the Three Little Pigs etext21198 Spooner, Shearjashub, 1809-1859 Anecdotes of Painters, Engravers, Sculptors and Architects, and Curiosities of Art, (Vol. 2 of 3) etext21226 Robertson, Margaret M. (Margaret Murray), 1821-1897 Christie Redfern's Troubles etext21255 Garland, Hamlin, 1860-1940 The Eagle's Heart etext21267 Various Our American Holidays: Lincoln's Birthday etext21274 McLaughlin, James Fairfax The American Cyclops, the Hero of New Orleans, and Spoiler of Silver Spoons etext21308 Fenn, George Manville, 1831-1909 First in the Field etext21318 Fenn, George Manville, 1831-1909 The Lost Middy etext21357 Fenn, George Manville, 1831-1909 Nic Revel etext21362 Fenn, George Manville, 1831-1909 The Powder Monkey etext21411 etext21413 Rathenau, Walther, 1867-1922 Où va la monde? etext21424 Boccaccio, Giovanni, 1313-1375 Il Comento alla Divina Commedia, e gli altri scritti intorno a Dante, vol. 1 etext21430 Wilson, Robert A. Mexico and its Religion etext21459 Kingston, William Henry Giles, 1814-1880 Dick Onslow etext21481 Kingston, William Henry Giles, 1814-1880 True Blue etext21488 Kingston, William Henry Giles, 1814-1880 Saved from the Sea etext21494 Fenn, George Manville, 1831-1909 Trapped by Malays etext21496 Warschauer, Joseph, 1869- Problems of Immanence: studies critical and constructive etext21497 Cory, David, 1872-1966 Little Jack Rabbit and the Squirrel Brothers etext21501 Becker, Carl Lotus, 1873-1945 Beginnings of the American People etext21507 Rathborne, St. George Chums in Dixie etext21515 Otway, Thomas, 1652-1685 Venice Preserved etext21556 Marryat, Frederick, 1792-1848 Travels and Adventures of Monsieur Violet etext21606 Crane, Stephen, 1871-1900 War is Kind etext21704 Ballantyne, R. M. (Robert Michael), 1825-1894 Six Months at the Cape etext21711 Ballantyne, R. M. (Robert Michael), 1825-1894 The World of Ice etext21733 Ballantyne, R. M. (Robert Michael), 1825-1894 The Giant of the North etext21734 Ballantyne, R. M. (Robert Michael), 1825-1894 The Golden Dream etext21778 Various Donahoe's Magazine, Volume 15, No. 1, January 1886 etext21782 Laumer, Keith, 1925-1993 The Yillian Way etext21787 Fiske, James Shelled by an Unseen Foe etext22041 Sterrett, Frances R. Mary Rose of Mifflin etext22070 Hauff, Wilhelm, 1802-1827 La Karavano etext22090 Ellis, Havelock, 1859-1939 The Task of Social Hygiene etext22143 Oppenheim, L. (Lassa), 1858-1919 The Panama Canal Conflict between Great Britain and the United States of America etext22155 Pinkerton, Allan, 1819-1884 The Expressman and the Detective etext22161 Various Chambers's Edinburgh Journal, No. 450 etext22180 Hendryx, James B. (James Beardsley), 1880-1963 Prairie Flowers etext22181 Moreton, Charles The Maid and the Magpie etext22230 Ruskin, John, 1819-1900 Hortus Inclusus etext22232 Le Feuvre, Amy, -1929 The Carved Cupboard etext22253 Morgan, Jacques Jean-Marie de L'Humanité préhistorique etext22291 Le Feuvre, Amy, -1929 Odd etext22446 Abbott, Jacob, 1803-1879 Alexander the Great etext22467 Leinster, Murray, 1896-1975 Sand Doom etext22508 Júnior, João Baptista Gomes, -1803 Nova Castro: tragedia etext22538 Wellman, Manly Wade, 1903-1986 The Devil's Asteroid etext22546 Froude, James Anthony, 1818-1894 The Reign of Mary Tudor etext22548 Choix de Poesies etext22634 Sadão, Elisino Versos em honra do grande poeta Manoel Maria Barbosa du Bocage etext22642 D'Annunzio, Gabriele, 1863-1938 L'Innocente etext22708 Bellamy, Edward, 1850-1898 A Positive Romance etext22743 Emerson, Alice B. Ruth Fielding and the Gypsies etext22826 Pina, Rui de, 1440-1521 Chronica de El-Rey D. Affonso II etext22897 Weinbaum, Stanley Grauman, 1902-1935 The Ideal etext22907 Pascoais, Teixeira de, 1877-1952 Elegia da solidão etext22929 The Epistle of Philemon etext22985 etext23037 Abbey, Henry, 1842-1911 Stories in Verse etext23052 Kingston, William Henry Giles, 1814-1880 Our Soldiers etext23058 Pushkin, Aleksandr Sergeevich, 1799-1837 The Queen Of Spades etext23068 Kingston, William Henry Giles, 1814-1880 My First Cruise etext23093 etext23170 Ludlow, Fitz Hugh, 1836-1870 A Brace Of Boys etext23191 Kingston, William Henry Giles, 1814-1880 Count Ulrich of Lindburg etext23203 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Scenas Contemporaneas etext23225 Various Notes and Queries, Number 73, March 22, 1851 etext23235 Various Notes and Queries, Number 197, August 6, 1853 etext23249 Catherwood, Mary Hartwell, 1847-1902 The Blue Man etext23274 Ballantyne, R. M. (Robert Michael), 1825-1894 Lost in the Forest etext23279 Michelet, Jules, 1798-1874 La mer etext23297 D'Annunzio, Gabriele, 1863-1938 La Gioconda etext23310 Anonymous Bird Stories and Dog Stories etext23327 Burnett, Frances Hodgson, 1849-1924 Lodusky etext23338 Duff, J. L. The Rubaiyat of Ohow Dryyam etext23397 Warner-Sleigh, Mrs. At the Seaside etext23406 Anonymous Dog of St. Bernard and Other Stories etext23408 Taylor, J. A. Far from Home etext23452 Dickens, Charles, 1812-1870 The Trial of William Tinkling etext23493 Ballantyne, R. M. (Robert Michael), 1825-1894 Under the Waves etext23527 Glen, M. A. The Twelve Magic Changelings etext23559 Trine, Ralph Waldo, 1866-1958 In Tune with the Infinite etext23565 etext23701 Smith, Francis Hopkinson, 1838-1915 The Man In The High-Water Boots etext23725 Saxby, Jessie Margaret Edmondston, 1842-1940 Viking Boys etext23766 Holt, Emily Sarah, 1836-1893 Out in the Forty-Five etext23782 Brown, Ruth Alberta The Lilac Lady etext23792 Wells, Carolyn, 1862-1942 The Rubáiyát of Bridge etext23881 Spielmann, M. H. (Marion Harry), 1858-1948 The History of "Punch" etext23900 McCrae, John, 1872-1918 In Flanders Fields etext23960 Garrett, Randall, 1927-1987 ...After a Few Words... etext23961 Negreiros, José Sobral de Almada, 1893-1970 Manifesto anti-Dantas e por extenso etext23970 Shakespeare, William, 1564-1616 Sonnets etext23998 The World's Greatest Books — Volume 19 — Travel and Adventure etext24012 Herford, Oliver, 1863-1935 The Peter Pan Alphabet etext24033 Stratemeyer, Edward, 1862-1930 Dave Porter in the Gold Fields etext24058 Guo, Pu, 276-324 穆天子传 etext24078 Cable, George Washington, 1844-1925 Bonaventure etext24100 Nervander, Johan Jacob, 1805-1848 Jephthas bok etext24114 Su, Shi, 1037-1101 東坡志林 etext24194 Garrison, William Lloyd, 1805-1879 No Compromise with Slavery etext24204 Lincoln, Natalie Sumner, 1881-1935 The Lost Despatch etext24259 etext24337 Southworth, Emma Dorothy Eliza Nevitte, 1819-1899 Capitola's Peril etext24390 Steinhausen, Heinrich, 1836-1917 Irmela etext24430 Harris, Joel Chandler, 1848-1908 Nights With Uncle Remus etext24437 Arthur, T. S. (Timothy Shay), 1809-1885 The Last Penny and Other Stories etext24474 Various The Nursery, January 1873, Vol. XIII. etext24502 Kingston, William Henry Giles, 1814-1880 Owen Hartley; or, Ups and Downs etext24504 Greville, Charles, 1794-1865 The Greville Memoirs (Second Part) etext24526 Newman, John Henry, 1801-1890 The Idea of a University Defined and Illustrated: In Nine etext24530 Bates, Clara Doty, 1838-1895 On the Tree Top etext24545 Bailey, Arthur Scott, 1877-1949 The Tale of the The Muley Cow etext24548 Olney, Warren, 1841-1921 "Shiloh" as Seen by a Private Soldier etext24603 Miller, Henry Russell, 1880-1955 The House of Toys etext24648 Bowen, Francis, 1811-1890 A Theory of Creation: A Review of 'Vestiges of the Natural History of Creation' etext24652 Jones, Henry Festing, 1851-1928 Diversions in Sicily etext24655 Tinker, Joseph Tinker's Dam etext24698 Optic, Oliver, 1822-1897 In School and Out etext24749 Reynolds, Mack, 1917-1983 Adaptation etext24751 Walton, Amy, 1848-1899 The Kitchen Cat and Other Stories etext24795 Unknown An Entertaining History of Tom Thumb etext24796 Daudet, Alphonse, 1840-1897 Les rois en exil. Finnish etext24928 Windser, Therese Longevity etext24961 Köppen, Alfred, 1869-1940 Der Teufel und die Hölle etext25169 Yin, Xi, 6th cent. B.C. 關尹子 etext25206 Abbott, Jacob, 1803-1879 Rollo's Philosophy. [Air] etext25269 Dibble, Samuel Edward, 1882- Elements of Plumbing etext25331 Jókai, Mór, 1825-1904 Carinus etext25351 Abbott, Jacob, 1803-1879 Xerxes etext25375 Shen, Qifeng, 1741- 諧鐸 etext25437 Gomes, João Augusto Marques, 1853-1931 D. Joanna de Portugal (A Princesa Santa) etext25474 Lewis, Sinclair, 1885-1951 The Job etext25481 May, Sophie, 1833-1906 Little Grandfather etext25497 Adams, Sherred Willcox Five Little Friends etext25528 Buckley, Francis, 1881-1949 Q.6.a and Other places etext25544 Chapelle, Howard I. (Howard Irving), 1901-1975 The Pioneer Steamship Savannah: A Study for a Scale Model etext25637 Fenn, George Manville, 1831-1909 The Dark House etext25678 Ruskin, John, 1819-1900 On the Old Road Vol. 1 (of 2) etext25776 Bloch, Robert, 1917-1994 This Crowded Earth etext25817 Collingwood, Harry, 1851-1922 The Cruise of the "Esmeralda" etext25820 Woodrow, Wilson, Mrs., 1870-1935 The Silver Butterfly etext25830 Descartes, René, 1596-1650 A Discourse of a Method for the Well Guiding of Reason etext25872 Meade, L. T., 1854-1914 Girls of the Forest etext25950 Germain, Walter The Complete Bachelor etext25959 Harrison, F. Bayford Littlebourne Lock etext25978 Johnston, Annie F. (Annie Fellows), 1863-1931 Flip's "Islands of Providence" etext26007 De Windt, Harry, 1856-1933 From Paris to New York by Land etext26044 Macnaughtan, S. (Sarah), 1864-1916 Peter and Jane etext26049 Dorling, H. Taprell (Henry Taprell), 1883-1968 Stand By! etext26100 Gewin, Bernardus, 1812-1873 Reisontmoetingen van Joachim Polsbroekerwoud en zijne Vrienden etext26254 McKee, Mabel Anne, 1886- The Heart of the Rose etext26259 Southworth, Emma Dorothy Eliza Nevitte, 1819-1899 Her Mother's Secret etext26276 etext26296 Arabian nights. French etext26297 Alcott, Louisa May, 1832-1888 Little Women etext26311 Owen, Catherine, -1889 Choice Cookery etext26328 Michelson, B. N. Intercession: A Sermon Preached by the Rev. B. N. Michelson, B.A. etext26337 The Great Events by Famous Historians, Volume 09 etext26387 Anonymous Een abel spel van Lanseloet van Denemerken etext26476 Dumas père, Alexandre, 1802-1870 Création et rédemption etext26544 Hawkes, Ernest William, 1883- The Dance Festivals of the Alaskan Eskimo etext26564 Scott, Walter, Sir, 1771-1832 Ivanhoe etext26572 Müller, F. Max (Friedrich Max), 1823-1900 Chips From A German Workshop. Vol. III. etext26629 O'Donnell, Elliott, 1872-1965 Werwolves etext26750 Bancroft, George, 1800-1891 Memorial Address on the Life and Character of Abraham Lincoln etext26778 Goldfrap, John Henry, 1879-1917 The Ocean Wireless Boys And The Naval Code etext26816 Feuillet, Octave, 1821-1890 Le roman d'un jeune homme pauvre (Play) etext26821 Feuillet, Octave, 1821-1890 La petite comtesse etext26865 Jókai, Mór, 1825-1904 The Corsair King etext26910 Chubb, Edwin Watts, 1865-1959 Stories of Authors, British and American etext26934 Ellis, James Tandy, 1868-1942 Shawn of Skarrow etext27020 Various Blackwood's Edinburgh Magazine, Volume 62, No. 382, October 1847 etext27077 Young, Charles E. (Charles Edward), 1846- Dangers of the Trail in 1865 etext27175 Belloc, Hilaire, 1870-1953 The Bad Child's Book of Beasts etext27185 Xihuazhuren 宛如約 etext27252 Maugham, W. Somerset (William Somerset), 1874-1965 The Land of The Blessed Virgin; Sketches and Impressions in Andalusia etext27282 Mairet, Jean de, 1604-1686 L'illustre corsaire etext27292 Shen, Kuo, 1031-1095 夢溪筆談 etext27294 Yang, Xiong, 53 BC-18 方言 etext27314 Lamartine, Alphonse de, 1790-1869 Cours Familier de Littérature (Volume 6) etext27320 Scott, Robert Forsyth, 1849-1933 St. John's College, Cambridge etext27420 Various Barnavännen, 1905-05 etext27430 Fiske, John, 1842-1901 The Critical Period of American History etext27550 Duncan, Norman, 1871-1916 The Mother etext27574 Du Moncel, Th., comte, 1821-1884 Le Téléphone, le Microphone et le Phonographe etext27582 Feng, Menglong, 1574-1646 喻世明言 etext27584 Chadwick, Lester Baseball Joe in the Big League etext27588 Fontenay, Charles Louis, 1917-2007 The Jupiter Weapon etext27619 Du Veuzit, Max, 1886-1952 Le Noël des Petits Gueux etext27625 Racine, Jean Baptiste, 1639-1699 Mithridate etext27645 Hasse, Henry, 1913-1977 The Beginning etext27708 Shakespeare, William, 1564-1616 Twelfth night. Finnish etext27717 Buchanan's Journal of Man, October 1887 etext27773 Marmontel, Jean François, 1723-1799 Mémoires de Marmontel (Volume 2 of 3) etext27805 Grahame, Kenneth, 1859-1932 The Wind in the Willows etext27814 Engels, Friedrich, 1820-1895 Feuerbach: The roots of the socialist philosophy etext27853 Scott, Emma Look, Mrs., 1858- How the Flag Became Old Glory etext28061 Lucian, of Samosata, 120-180 Λουκιανός - Άπαντα etext28233 Newton, Isaac, Sir, 1642-1727 Philosophiae Naturalis Principia Mathematica etext28292 Chapman, Allen Ralph on the Engine etext28297 Various The Christian Foundation, Or, Scientific and Religious Journal, May, 1880 etext28363 Vaknin, Samuel, 1961- MindGames etext28368 Porta, Giambattista della, 1535?-1615 La sorella etext28376 Warner, Susan, 1819-1885 The Wide, Wide World etext28401 Finch, Richard, 1710-1763 Free and Impartial Thoughts, on the Sovereignty of God, The Doctrines of Election, Reprobation, and Original Sin: Humbly Addressed To all who Believe and Profess those Doctrines. etext28460 Wallace, F. L. (Floyd L.), 1915-2004 Bolden's Pets etext28471 Morris, Charles, 1833-1922 Man And His Ancestor etext28488 Molière, 1622-1673 Tartuffe etext28489 Locke, William John, 1863-1930 The Belovéd Vagabond etext28513 etext28523 Cherbuliez, Victor, 1829-1899 Miss Rovel etext28537 Kipling, Rudyard, 1865-1936 Soldier Stories etext28543 Max, Frederic Rex Ex Machina etext28607 Potter, Burton Willis, 1843-1927 The Road and the Roadside etext28659 Lacey, T. A. (Thomas Alexander), 1853-1931 The Acts of Uniformity etext28762 Moodie, Susanna, 1803-1885 Life in the Clearings etext28768 Bewick, Thomas, 1753-1828 The History of Little King Pippin etext28843 Conrad, Joseph, 1857-1924 Youth, a Narrative etext28876 Maspero, G. (Gaston), 1846-1916 History Of Egypt, Chaldæa, Syria, Babylonia, And Assyria etext28921 Nicole, Pierre, 1625-1695 An Essay on True and Apparent Beauty in which from Settled Principles is Rendered the Grounds for Choosing and Rejecting Epigrams etext28981 Kincaid, J. (John), 1787-1862 Adventures in the Rifle Brigade, in the Peninsula, France, and the Netherlands etext29232 Bury, Charlotte Campbell, Lady, 1775-1861 The Lady's Own Cookery Book, and New Dinner-Table Directory; etext29249 Various Harper's Young People, 1880 Index etext29260 Bailey, Roy Rutherford Sure Pop and the Safety Scouts etext29314 Van Dyke, Henry, 1852-1933 Out-of-Doors in the Holy Land etext29335 Hambleton, Chalkley J., 1829- A Gold Hunter's Experience etext29424 Various Quotes And Images etext29425 Furniss, Harry, 1854-1925 The Confessions of a Caricaturist, Vol. 1 etext29440 Miller, Hugh, 1802-1856 Leading Articles on Various Subjects etext29497 Iriarte, Tomás de, 1750-1791 Fábulas literarias etext29526 Jacobs, Aletta H. (Aletta Henriette), 1854-1929 Vrouwenkiesrecht in de Skandinavische landen etext29691 Pray, Leon Luther, 1882- Taxidermy etext29749 Francis, V. R. The Flying Cuspidors etext29769 Sallust, 86 BC-34? BC Jugurtha etext29770 Sue, Eugène, 1804-1857 Plick y Plock etext29803 Lebert, Marie Una corta historia del eBook etext29837 Couperus, Louis, 1863-1923 De verliefde ezel etext29875 Zangwill, Israel, 1864-1926 Dreamers of the Ghetto etext29946 Freud, Sigmund, 1856-1939 Eine Kindheitserinnerung aus »Dichtung und Wahrheit« etext29988 Various Blackwood's Edinburgh Magazine - Volume 57, No. 352, February 1845 etext30063 Wilson, Richard, 1920-1987 Double Take etext30150 Intercollegiate Peace Association Prize Orations of the Intercollegiate Peace Association etext30156 Handel, George Frideric, 1685-1759 Second Overture In Solomon etext30190 Holley, Marietta, 1836-1926 Around the World with Josiah Allen's Wife etext30244 Barce, Elmore, 1872-1945 The Land of the Miamis etext30344 Defoe, Daniel, 1661?-1731 The Fortunate Mistress (Parts 1 and 2) etext30352 Janvier, Thomas A. (Thomas Allibone), 1849-1913 Santa Fé's Partner etext30368 Dickens, Charles, 1812-1870 A Christmas Carol etext30369 Barzini, Luigi, 1874-1947 L'Argentina vista come è etext30372 Alger, Horatio, 1832-1899 Robert Coverdale's Struggle etext30387 Alger, Horatio, 1832-1899 Mark Mason's Victory etext30408 Leinster, Murray, 1896-1975 The Fifth-Dimension Tube etext30422 Lebert, Marie The Internet and Languages etext30425 Palacio Valdés, Armando, 1853-1938 El maestrante etext30476 Blade, Alexander Zero Hour etext30487 Marrs, William Taylor Confessions of a Neurasthenic etext30493 Schmitz, James H., 1911-1981 Lion Loose etext30529 Speek, Peter A. (Peter Alexander), 1873- A Stake in the Land etext30531 Bates, Joseph, 1792-1872 A Vindication of the Seventh-Day Sabbath and the Commandments of God etext30535 Palacio Valdés, Armando, 1853-1938 El origen del pensamiento etext30539 Hill, Arthur G. The Terrible Answer etext30573 Haldeman, Isaac Massey, 1845-1933 Why I Preach the Second Coming etext30679 Berryman, John, 1919-1988 The Trouble with Telstar etext30701 Morgan, Thomas Hunt, 1866-1945 A Critique of the Theory of Evolution etext30739 Various Punch, or the London Charivari, Vol. 98, March 29, 1890 etext30745 Disraeli, Isaac, 1766-1848 Calamities and Quarrels of Authors etext30751 Multatuli, 1820-1887 De Geschiedenis van Woutertje Pieterse, Deel 2 etext30800 Cooke, Flora J. (Flora Juliette), 1864-1953 Nature Myths and Stories for Little Children etext30862 Various The Atlantic Monthly, Volume 15, No. 91, May, 1865 etext30872 A Collection of State-Papers, Relative to the First Acknowledgment of the Sovereignty of the United States of America etext30876 Drummond, Henry, 1851-1897 Eternal Life etext30889 Behnke, Emil, 1836-1892 The Mechanism of the Human Voice etext30902 Reynolds, Mack, 1917-1983 Expediter etext30907 etext30927 Cottrell, Charles Jack of No Trades etext30941 Various The German Classics of the Nineteenth and Twentieth Centuries etext30952 Foster, W. Bert (Walter Bertram), 1869- With Ethan Allen at Ticonderoga etext30988 Teichner, Albert The Junkmakers etext31015 Browning, Elizabeth Barrett, 1806-1861 The Poetical Works of Elizabeth Barrett Browning, Volume IV etext31090 Burgon, John William, 1813-1888 Inspiration and Interpretation etext31131 Sabin, Edwin L. (Edwin Legrand), 1870-1952 Boys' Book of Indian Warriors etext31139 Gates, Eleanor, 1875-1951 The Plow-Woman etext31140 Stratemeyer, Edward, 1862-1930 Young Auctioneers etext31221 Duellman, William E., 1930- The Genera of Phyllomedusine Frogs (Anura Hylidae) etext31225 Hottinger, Johann Jakob, 1783-1860 The Life and Times of Ulric Zwingli etext31232 Duke, Basil Wilson, 1838-1916 History of Morgan's Cavalry etext31245 Voorhies, Felix, 1839-1919 Acadian Reminiscences : The True Story of Evangeline etext31246 Ball, W. W. Rouse (Walter William Rouse), 1850-1925 A Short Account of the History of Mathematics etext31295 Various etext31312 Beach, Charles Amory Air Service Boys Over The Enemy's Lines etext31314 Scheffel, Joseph Victor von, 1826-1886 The Trumpeter of Säkkingen etext31366 Comstock, Harriet T. (Harriet Theresa), 1860- A Little Dusky Hero etext31435 Goethe, Johann Wolfgang von, 1749-1832 Ιφιγένεια εν Ταύροις etext31448 Baker, Rollin H. (Rollin Harold), 1916-2007 Mammals from Tamaulipas, Mexico etext31470 Cable, George W. John March, Southerner etext31529 Braby, Maud Churton Modern marriage and how to bear it etext31569 Various Graham's Magazine Vol XXXIII No. 5 November 1848 etext31574 Legler, John M. A New Supspecies of Slider Turtle (Pseudemys scripta) from Coahuila, Mexico etext31580 Looy, Jacobus van, 1855-1930 Proza etext31582 Wyatt, E. G. P. St. Gregory and the Gregorian Music etext31597 Edrich, George Out of the Earth etext31709 Kephart, Horace Our Southern Highlanders etext31741 Serrano, Bento O Oraculo do Passado, do presente e do Futuro (6/7) etext31744 Costa, José Daniel Rodrigues da, 1757-1832 Continuação do Portugal enfermo por vicios, e abusos de ambos os sexos etext31774 McElroy, John, 1846-1929 Si Klegg, Book 4 (of 6) etext31778 Bixby, Jerome, 1923-1998 The Draw etext31784 Cody, H. A. (Hiram Alfred), 1872-1948 The Frontiersman etext31903 Zenker, Ernst Viktor, 1865- Anarchism etext31988 Fricasse, Jacques Journal de marche du sergent Fricasse de la 127e demi-brigade : 1792-1802 etext32002 Castilho, António Feliciano de, 1800-1875 A Chave do Enigma etext32027 Scott, William A. Banking etext32028 Kendall, Henry Myron The Battle of Stone River etext32088 Garrett, Randall, 1927-1987 Instant of Decision etext32093 Brazil, Angela, 1868-1947 Loyal to the School etext32131 Clifton, Mark, 1906-1963 The Kenzie Report etext32171 Mead, Richard, 1673-1754 A Discourse on the Plague etext32224 Hughes, Thomas, 1822-1896 Tom Brown's School Days etext32240 Carter, Herbert The Boy Scouts in the Blue Ridge etext32272 Bone, Jesse F. (Jesse Franklin), 1916-1986 Insidekick etext32278 Various Seven Graded Sunday Schools etext32280 Dearmer, Percy, 1867-1936 Bell's Cathedrals: The Cathedral Church of Wells etext32315 Quevedo, Francisco de, 1580-1645 Historia de la vida del Buscón, llamado Don Pablos, ejemplo de vagabundos y espejo de tacaños etext32391 Zobeltitz, Fedor von Aus tiefem Schacht etext32394 Marquis, Reina Melcher The Torch Bearer etext32420 Montgomery, Rutherford George, 1896- A Yankee Flier with the R.A.F. etext32441 De Roberto, Federico, 1861-1927 Il colore del tempo etext32496 Douglas, Amanda M. Helen Grant's Schooldays etext32653 Duellman, William E., 1930- A Review of the Frogs of the Hyla bistincta Group etext7 Pilgrim Fathers The Mayflower Compact etext28 Aesop, 620 BC-563 BC Aesop's Fables etext93 Twain, Mark, 1835-1910 Tom Sawyer, Detective etext168 Snelling, Henry Hunt, 1816-1897 History and Practice of the Art of Photography etext200 Project Gutenberg The Project Gutenberg Encyclopedia etext254 Unknown The Second Story of Meno; a continuation of Socrates' dialogue with Meno in which the boy proves root 2 is irrational etext334 Davis, Richard Harding, 1864-1916 Episodes in Van Bibber's Life etext336 Eastman, Charles Alexander, 1858-1939 Indian Heroes and Great Chieftains etext342 Barrie, J. M. (James Matthew), 1860-1937 Margaret Ogilvy etext395 Bunyan, John, 1628-1688 The Holy war, made by King Shaddai upon Diabolus, for the regaining of the metropolis of the world; or, the losing and taking again of the town of Mansoul etext400 Teasdale, Sara, 1884-1933 Helen of Troy and Other Poems etext426 Stevenson, Robert Louis, 1850-1894 Tales and Fantasies etext457 Phillips, David Graham, 1867-1911 The Price She Paid etext462 Alger, Horatio, 1832-1899 The Errand Boy etext475 Booth, William, 1829-1912 In Darkest England and the Way Out etext567 Brann, William Cowper, 1855-1898 Brann the Iconoclast — Volume 01 etext573 etext576 Project Gutenberg The Project Gutenberg Web Pages etext577 Johnson, Samuel, 1709-1784 The Works of Samuel Johnson etext584 Wilson, Harriet E., 1828?-1870? Our nig, or, sketches from the life of a free black, in a two-story white house, North etext667 etext680 Naidu, Sarojini, 1879-1949 The Golden Threshold etext705 Fairless, Michael, 1869-1901 The Roadmender etext708 MacDonald, George, 1824-1905 The Princess and the Goblin etext724 Howells, William Dean, 1837-1920 The Man of Letters as a Man of Business etext760 Beerbohm, Max, Sir, 1872-1956 Enoch Soames: a memory of the eighteen-nineties etext767 Brontë, Anne, 1820-1849 Agnes Grey etext770 Nesbit, E. (Edith), 1858-1924 The Story of the Treasure Seekers etext794 Nesbit, E. (Edith), 1858-1924 The Wouldbegoods etext818 Barber, H. (Horatio), 1875-1964 The Aeroplane Speaks etext825 Anonymous Latin Vulgate, Bible Book Titles and Names etext845 Timrod, Henry, 1828-1867 The Poems of Henry Timrod etext897 Thackeray, William Makepeace, 1811-1863 The Rose and the Ring etext907 etext919 Spinoza, Benedictus de, 1632-1677 Ethics — Part 1 etext991 Spinoza, Benedictus de, 1632-1677 Theologico-Political Treatise — Part 3 etext1015 Parkman, Francis, 1823-1893 The Oregon Trail: sketches of prairie and Rocky-Mountain life etext1034 Owen, Wilfred, 1893-1918 Poems etext1093 James, Henry, 1843-1916 The Beast in the Jungle etext1117 Shakespeare, William, 1564-1616 King Henry IV, Part 2 etext1160 London, Jack, 1876-1916 The Game etext1171 Xenophon, 431 BC-350? BC The Apology etext1187 London, Jack, 1876-1916 War of the Classes etext1188 Stoker, Bram, 1847-1912 Lair of the White Worm etext1200 Rabelais, François, 1483-1553 Gargantua and Pantagruel etext1203 Hope, Anthony, 1863-1933 Dolly Dialogues etext1291 Flaubert, Gustave, 1821-1880 Herodias etext1293 Ruskin, John, 1819-1900 Sesame and Lilies etext1338 Wilde, Oscar, 1854-1900 Selected Prose of Oscar Wilde etext1377 Scott, Walter, Sir, 1771-1832 The Talisman etext1409 Lowell, Percival, 1855-1916 The Soul of the Far East etext1423 etext1452 Plaatje, Sol (Solomon Tshekisho), 1876-1932 Native Life in South Africa etext1453 Balzac, Honoré de, 1799-1850 The Alkahest etext1454 Balzac, Honoré de, 1799-1850 Maitre Cornelius etext1481 Balzac, Honoré de, 1799-1850 A Daughter of Eve etext1490 The New McGuffey Fourth Reader etext1606 Scott, Walter, Sir, 1771-1832 Kenilworth etext1608 Dumas fils, Alexandre, 1824-1895 Camille etext1617 Freeman, Mary Eleanor Wilkins, 1852-1930 The Wind in the rose-bush and other stories of the supernatural etext1656 Plato, 427? BC-347? BC Apology etext1686 Leroux, Gaston, 1868-1927 The Secret of the Night etext1695 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Man Who Was Thursday, a nightmare etext1707 etext1774 Shakespeare, William, 1564-1616 Love's Labour's Lost etext1775 Shakespeare, William, 1564-1616 King John etext1821 Davis, Richard Harding, 1864-1916 A Charmed Life etext1911 Luther, Martin, 1483-1546 Concerning Christian Liberty etext1922 Synge, J. M. (John Millington), 1871-1909 Deirdre of the Sorrows etext1965 Sabatini, Rafael, 1875-1950 Captain Blood etext2017 Dhammapada, a collection of verses; being one of the canonical books of the Buddhists etext2116 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 16 etext2140 Bray, William, 1736-1832 The Diary of William Bray: extracts etext2165 Eliot, George, 1819-1880 The Lifted Veil etext2253 Shakespeare, William, 1564-1616 Henry V etext2310 Harte, Bret, 1836-1902 In the Carquinez Woods etext25738 Wilson, Ann Timeline etext2338 Goethe, Johann Wolfgang von, 1749-1832 Wilhelm Meisters Lehrjahre — Band 4 etext2346 Doyle, Arthur Conan, Sir, 1859-1930 The Adventure of the Bruce-Partington Plans etext2362 Converse, Florence, 1871-1967 The Story of Wellesley etext2375 Daudet, Alphonse, 1840-1897 Tartarin de Tarascon. English etext2413 Flaubert, Gustave, 1821-1880 Madame Bovary etext2420 Goethe, Johann Wolfgang von, 1749-1832 Unterhaltungen deutscher Ausgewanderten etext2453 Galsworthy, John, 1867-1933 Beyond etext2463 Hichens, Robert Smythe, 1864-1950 The Prophet of Berkeley Square etext2479 Grayson, David, 1870-1946 The Friendly Road: New Adventures in Contentment etext2483 Long, Helen Beecher Janice Day the Young Homemaker etext2492 Baring, Maurice, 1874-1945 Orpheus in Mayfair and Other Stories and Sketches etext2528 Mason, Amelia Ruth Gere The Women of the French Salons etext2537 Stevenson, Robert Louis, 1850-1894 The Pocket R.L.S., being favourite passages from the works of Stevenson etext2539 Wallace, Alfred Russel, 1823-1913 The Malay Archipelago, the land of the orang-utan and the bird of paradise; a narrative of travel, with studies of man and nature — Volume 2 etext2554 Dostoyevsky, Fyodor, 1821-1881 Prestuplenie i nakazanie. English etext2595 Tarkington, Booth, 1869-1946 Ramsey Milholland etext2609 Dumas père, Alexandre, 1802-1870 The Vicomte De Bragelonne etext2642 Wood, Eugene, 1860-1923 Back Home etext2652 Sheridan, Philip Henry, 1831-1888 Personal Memoirs of P. H. Sheridan, General, United States Army — Volume 2 etext2656 Lincoln, Abraham, 1809-1865 The Writings of Abraham Lincoln — Volume 4 etext2695 Harte, Bret, 1836-1902 Jeff Briggs's Love Story etext2701 Melville, Herman, 1819-1891 Moby Dick, or, the whale etext2716 James, Henry, 1843-1916 Sir Dominick Ferrand etext2735 Kirby, William, 1817-1906 The Golden Dog etext2736 Gaboriau, Émile, 1832-1873 Secret des Champdoce. English etext2746 Dumas père, Alexandre, 1802-1870 Urbain Grandier etext2762 Haggard, Henry Rider, 1856-1925 The Brethren etext2799 Bacheller, Irving, 1859-1950 Eben Holden, a tale of the north country etext2938 Huxley, Thomas Henry, 1825-1895 Yeast etext2939 Huxley, Thomas Henry, 1825-1895 William Harvey and the Circulation of the Blood etext3020 Hazlitt, William, 1778-1830 Table Talk etext3029 Davis, Richard Harding, 1864-1916 Real Soldiers of Fortune etext3040 Orth, Samuel Peter, 1873-1922 The Boss and the Machine; a chronicle of the politicians and party organization etext3054 Darwin, Charles, 1809-1882 Volcanic Islands etext3081 Maupassant, Guy de, 1850-1893 Original Short Stories — Volume 05 etext3104 Warner, Charles Dudley, 1829-1900 The Golden House etext3148 Wiggin, Kate Douglas Smith, 1856-1923 A Village Stradivarius etext3156 Heyse, Paul, 1830-1914 Andrea Delfin etext3192 Twain, Mark, 1835-1910 The Curious Republic of Gondour, and Other Whimsical Sketches etext3229 Lang, Andrew, 1844-1912 Helen of Troy etext3318 etext3337 Roosevelt, Theodore, 1858-1919 Hunting the Grisly and Other Sketches etext3410 Perry, Bliss, 1860-1954 The American Spirit in Literature : a chronicle of great interpreters etext3447 Anonymous Arabian nights. English etext3503 Human Genome Project Human Genome Project, Chromosome Number 03 etext3508 Human Genome Project Human Genome Project, Chromosome Number 08 etext3544 Shaw, Bernard, 1856-1950 How He Lied to Her Husband etext3564 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 14 etext3567 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Complete etext3627 Hamilton, James, 1814-1867 Life of Bunyan [Works of the English Puritan divines] etext3643 Paine, Albert Bigelow, 1861-1937 Widger's Quotations from the Project Gutenberg Editions of Paine's Writings on Mark Twain etext3646 Churchill, Winston, 1871-1947 The Dwelling Place of Light — Volume 1 etext3718 Trollope, Anthony, 1815-1882 George Walker at Suez etext3728 Richardson, Henry Handel, 1870-1946 The Getting of Wisdom etext3806 Alcott, Louisa May, 1832-1888 A Modern Cinderella etext3839 Marguerite, Queen, consort of Henry IV, King of France, 1553-1615 Memoirs of Marguerite de Valois — Volume 2 [Court memoir series] etext3844 Retz, Jean François Paul de Gondi de, 1613-1679 The Memoirs of Cardinal de Retz — Volume 3 [Historic court memoirs] etext3897 Goldsmith, Lewis, 1763-1846 Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 6 etext3966 Bourget, Paul, 1852-1935 Cosmopolis — Volume 4 etext4027 Follen, Eliza Lee Cabot, 1787-1860 Little Songs etext4057 Pater, Walter, 1839-1894 Marius the Epicurean — Volume 1 etext4061 Creasy, Edward Shepherd, Sir, 1812-1878 The Fifteen Decisive Battles of the World: from Marathon to Waterloo etext4071 Gaboriau, Émile, 1832-1873 Monsieur Lecoq etext4088 Lang, Andrew, 1844-1912 Sir Walter Scott and the Border Minstrelsy etext4097 Thompson, Maurice, 1844-1901 Alice of Old Vincennes etext4106 Ames, Azel, 1845-1908 The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Volume 6 etext4132 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 14: January/February 1661-62 etext4134 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 16: May/June 1662 etext4137 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 19: November/December 1662 etext4159 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 38: September 1665 etext4170 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 48: December 1666 etext4220 Spence, Catherine Helen, 1825-1910 An Autobiography etext12756 Besant, Annie Wood, 1847-1933 Vier Voordrachten over Theosofie etext4257 McElroy, John, 1846-1929 Andersonville — Volume 1 etext4296 Yonge, Charlotte Mary, 1823-1901 Friarswood Post Office etext4338 Call, Annie Payson, 1853-1940 The Freedom of Life etext4366 Bierce, Ambrose, 1842-1914? Can Such Things Be? etext4369 Lichtenstein, Alfred, 1889-1914 The Verse of Alfred Lichtenstein etext4409 Meredith, George, 1828-1909 Ordeal of Richard Feverel — Volume 4 etext4414 Meredith, George, 1828-1909 Sandra Belloni — Volume 2 etext4433 Meredith, George, 1828-1909 Evan Harrington — Volume 7 etext4467 Meredith, George, 1828-1909 Diana of the Crossways — Volume 3 etext4484 Meredith, George, 1828-1909 The Amazing Marriage — Volume 2 etext4490 Meredith, George, 1828-1909 Celt and Saxon — Volume 2 etext4542 Fishburne, William Brett Checkmates for Three Pieces etext4547 Duncan, Sara Jeannette, 1862?-1922 The Story of Sonny Sahib etext4574 Luo, Guanzhong, 1330?-1400? 粉妝樓21-30回 etext4583 Hume, David, 1711-1776 Dialogues Concerning Natural Religion etext4596 Yonge, Charlotte Mary, 1823-1901 Unknown to History: a story of the captivity of Mary of Scotland etext4623 Arthur, T. S. (Timothy Shay), 1809-1885 The Son of My Friend etext4638 Woolley, L. H. (Lell Hawley), 1825- California, 1849-1913; or, the rambling sketches and experiences of sixty-four years' residence in that state etext4644 Bede, Cuthbert, 1827-1889 Adventures of Mr. Verdant Green etext4668 Adams, F. Colburn (Francis Colburn) Siege of Washington, D.C., written expressly for little people etext4728 Holmes, Oliver Wendell, 1809-1894 John Lothrop Motley, A Memoir — Complete etext4738 Swift, Jonathan, 1667-1745 Three Sermons: I. on mutual subjection. II. on conscience. III. on the trinity etext4808 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 08: 1563-64 etext4935 Littré, Emile, 1801-1881 Pathologie Verbale, ou Lésions de certains mots dans le cours de l'usage etext4950 Beethoven, Ludwig van, 1770-1827 String Quartet No. 02 in G major Opus 18 etext4961 Lewis, Sinclair, 1885-1951 Our Mr. Wrenn, the Romantic Adventures of a Gentle Man etext4980 Burgess, Thornton W. (Thornton Waldo), 1874-1965 Old Granny Fox etext4997 White, Matthew, 1857-1940 Two Boys and a Fortune, or, the Tyler Will etext5005 Leichhardt, Ludwig, 1813-1848 Journal of an Overland Expedition in Australia : from Moreton Bay to Port Essington, a distance of upwards of 3000 miles, during the years 1844-1845 etext5006 Norris, Kathleen Thompson, 1880-1966 Harriet and the Piper etext5008 Sheldon, Georgie, Mrs., 1843-1926 Katherine's Sheaves etext5020 Taylor, Zachary, 1784-1850 State of the Union Address etext5070 Shaw, Bernard, 1856-1950 The Doctor's Dilemma etext5119 Klein, Charles, 1867-1915 The Lion and the Mouse; a Story of an American Life etext5138 Voltaire, 1694-1778 Le Monde Comme Il Va, Vision De Babouc etext5168 Yeats, W. B. (William Butler), 1865-1939 The Land of Heart's Desire etext5233 Beach, Rex Ellingwood, 1877-1949 The Iron Trail etext5252 Murphy, Henry Cruse, 1810-1882 The Voyage of Verrazzano etext5289 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 15 etext5337 Drannan, William F., 1832-1913 Thirty-One Years on the Plains and in the Mountains, Or, the Last Voice from the Plains etext5358 Churchill, Winston, 1871-1947 The Inside of the Cup — Volume 03 etext5400 Churchill, Winston, 1871-1947 Project Gutenberg Complete Works of Winston Churchill etext5412 Hamilton, Anthony, Count, 1646-1720 The Memoirs of Count Grammont — Volume 04 etext5431 Stories by Foreign Authors: German — Volume 1 etext5464 Ebers, Georg, 1837-1898 The Sisters — Volume 4 etext5495 Ebers, Georg, 1837-1898 Homo Sum — Volume 02 etext5497 Ebers, Georg, 1837-1898 Homo Sum — Volume 04 etext5565 Ebers, Georg, 1837-1898 Barbara Blomberg — Volume 05 etext5573 Ebers, Georg, 1837-1898 A Word, Only a Word — Volume 02 etext5582 Ebers, Georg, 1837-1898 The Burgomaster's Wife — Volume 05 etext5603 Various Seven Icelandic Short Stories etext5626 Osbourne, Lloyd, 1868-1947 The Motormaniacs etext5648 Seymour, Robert, 1800-1836 Sketches by Seymour — Volume 04 etext5714 Haydn, Joseph, 1732-1809 String Quartet No. 58 in F Major, Op. 74, No. 2, FHE No. 29, Hoboken No. 73 etext5893 Wells, Carolyn, 1862-1942 Two Little Women on a Holiday etext5965 Flint, Homer Eon, 1892-1924 The Devolutionist and the Emancipatrix etext6072 Hayes, Clair W. (Clair Wallace), 1887- The Boy Allies with Uncle Sam's Cruisers etext6102 Roe, Edward Payson, 1838-1888 From Jest to Earnest etext6169 De Quincey, Thomas, 1785-1859 Memorials and Other Papers — Volume 1 etext6245 Parker, Gilbert, 1862-1932 The Right of Way — Volume 03 etext6322 Humboldt, Alexander von, 1769-1859 Personal Narrative of Travels to the Equinoctial Regions of America, During the Year 1799-1804 — Volume 1 etext6403 Balzac, Honoré de, 1799-1850 Petty Troubles of Married Life, Second Part etext6411 Carnegie, Andrew, 1835-1919 Round the World etext6414 Huxley, Thomas Henry, 1825-1895 Lectures and Essays etext6453 Curtis, George William, 1824-1892 The Potiphar Papers etext6472 Henty, G. A. (George Alfred), 1832-1902 On the Pampas etext6512 Wake, William, 1657-1737 The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 6, Clement etext6517 Merriman, Henry Seton, 1862-1903 The Grey Lady etext6560 Stock, St. George William Joseph, 1850- Deductive Logic etext6575 McCutcheon, George Barr, 1866-1928 The Purple Parasol etext6592 Cheney, Roland Jon Si'Wren of the Patriarchs etext6603 Reilly, S. A. Our Legal Heritage : 600-1776 King Aethelbert - King George III etext6647 Kleist, Heinrich von, 1777-1811 Der Zerbrochene Krug etext6728 Hegel, Georg Wilhelm Friedrich, 1770-1831 Rede zum Schuljahresabschluß am 29. September 1809 etext6739 Gide, André, 1869-1951 Les Caves du Vatican etext6771 Schiller, Friedrich, 1759-1805 The Thirty Years War — Volume 02 etext6815 Crawford, Isabella Valancy, 1850-1887 Old Spookses' Pass, Malcolm's Katie, and other poems etext6833 Lenz, Jakob Michael Reinhold, 1751-1792 Der Waldbruder, ein Pendant zu Werthers Leiden etext6842 Tagore, Rabindranath, 1861-1941 Sadhana : the realisation of life etext6861 Balzac, Honoré de, 1799-1850 Vautrin etext6965 Barrie, J. M. (James Matthew), 1860-1937 Alice Sit-By-The-Fire etext6968 Prescott, William Hickling, 1796-1859 The History of the Reign of Ferdinand and Isabella the Catholic — Volume 3 etext6987 Sidney, Margaret, 1844-1924 Five Little Peppers Abroad etext6996 Shakespeare, William, 1564-1616 Romeo und Julia etext7040 Lecomte, Eva Paula the Waldensian etext7088 etext7144 Lawson, Henry, 1867-1922 While the Billy Boils etext7216 Gongsun, Long, 3rd cent. B.C. 公孫龍子 etext7259 etext7339 Hubbard, John Niles, 1815-1897 An Account of Sa-Go-Ye-Wat-Ha, or Red Jacket, and His People, 1750-1830 etext7377 Abhedananda, Swami, 1866-1939 Five Lectures on Reincarnation etext7431 Hawthorne, Julian, 1846-1934 Confessions and Criticisms etext7479 Brooks, Amy Dorothy Dainty at Glenmore etext7495 Lutz, Henry F. (Henry Frey) To Infidelity and Back etext7496 Young, Clarence Jack Ranger's Western Trip etext7518 Babbitt, E. C. More Jataka Tales etext7552 Motley, John Lothrop, 1814-1877 Quotes and Images From Motley's History of the Netherlands etext7596 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 11 etext7606 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Zicci — Volume 01 etext7607 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Zicci — Volume 02 etext7659 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 What Will He Do with It? — Volume 01 etext7679 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Harold : the Last of the Saxon Kings — Volume 08 etext7716 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Last of the Barons — Volume 02 etext7718 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Last of the Barons — Volume 04 etext7772 Dumas père, Alexandre, 1802-1870 Les Quarante-Cinq — Tome 3 etext7816 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 The Voyage of Captain Popanilla etext7843 Hergesheimer, Joseph, 1880-1954 The Happy End etext7910 etext7959 Tacitus, Cornelius, 56-120 The Reign of Tiberius, Out of the First Six Annals of Tacitus; etext17308 Black, William, 1841-1898 Sunrise etext7986 Chekhov, Anton Pavlovich, 1860-1904 Plays by Anton Chekhov, Second Series etext8024 Anonymous The Bible, King James version, Book 24: Jeremiah etext8056 Anonymous The Bible, King James version, Book 56: Titus etext8066 Anonymous The Bible, King James version, Book 66: Revelation etext8146 Wilkins, Harriet Annie, 1829-1888 Victor Roy, a Masonic Poem etext8171 Howells, William Dean, 1837-1920 Modern Italian Poets etext8219 Foote, Mary Hallock, 1847-1938 The Desert and the Sown etext8247 Anonymous The World English Bible (WEB): Proverbs etext8273 Anonymous The World English Bible (WEB): 1 Corinthians etext8433 Lehmann, R. C., 1856-1929 The Vagabond and Other Poems from Punch etext8459 Watterson, Henry, 1840-1921 Marse Henry (Volume 2) etext8463 Hunt, Henry, 1773-1835 Memoirs of Henry Hunt, Esq. — Volume 3 etext8481 Twain, Mark, 1835-1910 Life on the Mississippi, Part 11. etext8497 Dowson, Ernest Christopher, 1867-1900 The Poems and Prose of Ernest Dowson etext8508 Williams, William A. (William Asbury), 1854- The Evolution of Man Scientifically Disproved etext8546 Barker, Edward Harrison, 1851-1919 Two Summers in Guyenne etext8588 Twain, Mark, 1835-1910 Roughing It, Part 7. etext8614 Doyle, Arthur Conan, Sir, 1859-1930 The Lost World etext8626 Doyle, Arthur Conan, Sir, 1859-1930 The Adventure of Wisteria Lodge etext8670 Henty, G. A. (George Alfred), 1832-1902 In the Heart of the Rockies etext8692 Dumas père, Alexandre, 1802-1870 Le Capitaine Aréna — Tome 2 etext8699 Laurie, Thomas, 1821-1897 Woman and Her Saviour in Persia etext8731 Whipple, H. B., 1823-1901 Five Sermons etext8746 Smith, David Eugene, 1860-1944 History of Modern Mathematics etext8892 MacDonald, George, 1824-1905 Adela Cathcart, Volume 1 etext8969 Wells, H. G. (Herbert George), 1866-1946 The War in the Air etext8970 Wells, H. G. (Herbert George), 1866-1946 Twelve Stories and a Dream etext8982 Verne, Jules, 1828-1905 Around the World in Eighty Days etext9023 etext9090 Tacitus, Cornelius, 56-120 Germania and Agricola etext9101 Lea, Elizabeth E. (Elizabeth Ellicott), 1793-1858 Domestic Cookery, Useful Receipts, and Hints to Young Housekeepers etext9151 Wilson, Harry Leon, 1867-1939 Ruggles of Red Gap etext9205 Hawthorne, Nathaniel, 1804-1864 Sights from a Steeple (From "Twice Told Tales") etext9206 Hawthorne, Nathaniel, 1804-1864 The Toll Gatherer's Day (From "Twice Told Tales") etext9242 Hawthorne, Nathaniel, 1804-1864 Old Ticonderoga, a Picture of the Past etext9263 Barr, Robert, 1850-1912 In the Midst of Alarms etext9275 Swift, Jonathan, 1667-1745 A Tale of a Tub etext9314 Wright, Harold Bell, 1872-1944 The Calling of Dan Matthews etext9316 Maclaren, Ian, 1850-1907 A Doctor of the Old School — Volume 2 etext9388 Van Dyke, Henry, 1852-1933 The Red Flower etext9421 Hardy, Thomas, 1840-1928 Jude the Obscure etext9501 Winslow, Helen M. Concerning Cats etext9519 Thackeray, William Makepeace, 1811-1863 A Little Dinner at Timmins's etext9558 Doyle, Arthur Conan, Sir, 1859-1930 The Sign of the Four etext9650 Nosek, Vladimír, 1895-1964 Independent Bohemia etext9709 Dickens, Charles, 1812-1870 Hard Times etext9738 Dickens, Charles, 1812-1870 The Chimes etext9828 Fitinghoff, Laura, 1848-1908 Barnen ifran Frostmofjaellet etext9856 Griswold, Latta The Inn at the Red Oak etext9933 Glenn, Oliver E. (Oliver Edmunds), 1878- A Treatise on the Theory of Invariants etext9941 Thompson, Charles, 1833- Biography of a Slave etext9987 Stories by Foreign Authors: Spanish etext10125 Lamb, Charles, 1775-1834 The Best Letters of Charles Lamb etext10131 Anonymous Required Poems for Reading and Memorizing etext10194 Bisbee, Jasper (Fiddle) Opera Reel with Calls etext10199 Rorer, Posey Down in a Georgia Jail etext10210 Parrish, Randall, 1858-1923 Wolves of the Sea etext10212 Peck, George W. (George Wilbur), 1840-1916 Peck's Bad Boy at the Circus etext10232 Miles, General Nelson A., 1839-1925 Remarks from a Visit to Edison Laboratory etext10344 Erickson, Joel A. Autumn Anthem etext10386 Clarkson, Thomas, 1760-1846 Thoughts on the Necessity of Improving the Condition of the Slaves in the British Colonies etext10411 Snyder, Ted, 1881-1965 By the Sapphire Sea etext10427 Kingsley, Charles, 1819-1875 Scientific Essays and Lectures etext10440 Train, Arthur Cheney, 1875-1945 Tutt and Mr. Tutt etext10494 Green, Mrs. J. R., 1847-1929 Henry the Second etext10496 Vance, Louis Joseph, 1879-1933 Red Masquerade etext10520 M., W. The Compleat Cook etext10523 Euripides, 480? BC-406 BC Alcestis etext10569 Jacobs, W. W. (William Wymark), 1863-1943 Skilled Assistance etext10650 McGuinn, Roger When the Saints Go Marching In etext10682 Reid, Mayne, 1818-1883 Les chasseurs de chevelures etext10743 Falkner, John Meade, 1858-1932 Moonfleet etext10752 Stojan, Harry Мислите в главите etext10787 Jacobs, W. W. (William Wymark), 1863-1943 The Toll-House etext10804 Haywood, Eliza Fowler, 1693-1756 The Fortunate Foundlings etext10814 Becquer, Gustavo Adolfo, 1836-1870 Legends, Tales and Poems etext10847 etext10873 Jacobs, W. W. (William Wymark), 1863-1943 At Sunwich Port, Part 3. etext10896 Various The Mirror of Literature, Amusement, and Instruction etext11090 Hartness, James Industrial Progress and Human Economics etext11096 Ramakrishna, T. Tales of Ind etext11129 Various No and Other Stories Compiled by Uncle Humphrey etext11140 Abbott, Jacob, 1803-1879 Rollo at Play etext11194 Betham, Matilda, 1776-1852 Vignettes in Verse etext11217 Glaspell, Susan, 1882-1948 The Visioning etext11219 Various The Mirror of Literature, Amusement, and Instruction etext11238 Pinchot, Gifford, 1865-1946 The Fight for Conservation etext11277 Budge, E. A. Wallis (Ernest Alfred Wallis), Sir, 1857-1934 Egyptian Ideas of the Future Life etext11314 Richardson, James D. (James Daniel), 1843-1914 A Compilation of the Messages and Papers of the Presidents etext11333 Colman, Mrs. (Pamela Chandler), 1799-1865 The Pearl Story Book etext11345 Krishnamurti, J. (Jiddu), 1895-1986 Education as Service etext11355 Timmermans, Felix, 1886-1947 Pallieter etext11376 Besant, Annie Wood, 1847-1933 Autobiographical Sketches etext11378 Various The Mirror of Literature, Amusement, and Instruction etext11418 Lynde, Francis, 1856-1930 The Grafters etext11464 Robinson, Albert G. (Albert Gardner), 1855-1932 Cuba, Old and New etext11496 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Poetry etext11502 Wells, H. G. (Herbert George), 1866-1946 An Englishman Looks at the World etext11528 Various The Mirror of Literature, Amusement, and Instruction etext11570 Various Punch, or the London Charivari, Volume 153, November 7, 1917 etext11597 Maupassant, Guy de, 1850-1893 Mlle Fifi etext11619 Various Punch, or the London Charivari, Volume 153, November 21, 1917 etext11620 Franklin, Miles, 1879-1954 My Brilliant Career etext11621 Ségur, Sophie, comtesse de, 1799-1874 Le Mauvais Génie etext11704 Various Punch, or the London Charivari, Volume 153, July 25, 1917 etext11751 Various The Atlantic Monthly, Volume 03, No. 20, June, 1859 etext11771 Church, R. W. (Richard William), 1815-1890 Occasional Papers etext11772 etext11793 Human Genome Project Chromosome Number 19 etext11796 Human Genome Project Chromosome Number 22 etext11802 Library of Congress. Copyright Office U.S. Copyright Renewals, 1950 July - December etext11833 Library of Congress. Copyright Office U.S. Copyright Renewals, 1966 January - June etext11916 Lassila, Maiju, 1868-1918 Rakkautta etext11927 Verne, Jules, 1828-1905 Aventures du Capitaine Hatteras etext11938 Bompas, Cecil Henry Folklore of the Santal Parganas etext11959 Southall, Eliza A Brief Memoir with Portions of the Diary, Letters, and Other Remains, etext11999 Kennedy, Charles Rann, 1871-1950 The Servant in the House etext12066 Various The Atlantic Monthly, Volume 09, No. 52, February, 1862 etext12071 Ryan, Agnes E., 1878-1954 The Torch Bearer etext12087 Various The American Missionary — Volume 42, No. 04, April, 1888 etext12091 Stewart, Jane L. The Camp Fire Girls at Long Lake etext12097 Various The Atlantic Monthly, Volume 09, No. 54, April, 1862 etext12208 Jacobs, W. W. (William Wymark), 1863-1943 The Changing Numbers etext12231 Various Punch, or the London Charivari, Volume 156, May 21, 1919 etext12357 Parrish, Randall, 1858-1923 The Case and the Girl etext12360 Dell, Ethel M. (Ethel May), 1881-1939 The Top of the World etext12379 Tolstoy, Leo, graf, 1828-1910 Ylösnousemus I etext12420 Daubney, William Heaford The Three Additions to Daniel, a Study etext12427 Campbell, Robert Granville Neutral Rights and Obligations in the Anglo-Boer War etext12439 Nightingale, Florence, 1820-1920 Notes on Nursing etext12458 Borrow, George Henry, 1803-1881 The Talisman etext12501 Buena Nueva de acuerdo a Marcos: Traducción de dominio público abierta a mejoras etext12525 MacGillivray, John, 1822-1867 Narrative of the Voyage of H.M.S. Rattlesnake, Commanded By the Late Captain Owen Stanley, R.N., F.R.S. Etc. During the Years 1846-1850. etext12542 Hutton, Edward, 1875-1969 Ravenna, a Study etext12572 The World's Greatest Books — Volume 10 — Lives and Letters etext12573 The German Classics of the Nineteenth and Twentieth Centuries, Volume 08 etext12576 Various The Mirror of Literature, Amusement, and Instruction etext12598 Various The Mirror of Literature, Amusement, and Instruction etext12665 Galipaux, Félix, 1860-1931 Galipettes etext12686 Johnson, Owen, 1878-1952 Murder in Any Degree etext12699 Aristotle, 384 BC-322 BC The Works of Aristotle the Famous Philosopher etext12737 Various Punch, or the London Charivari, Volume 99, November 22, 1890 etext12849 Cole, Fay-Cooper, 1881-1961 The Tinguian etext12889 Sand, George, 1804-1876 Promenades autour d'un village etext12956 Dasgupta, Surendranath, 1887-1952 A History of Indian Philosophy, Volume 1 etext12965 Various The Mirror of Literature, Amusement, and Instruction etext12976 Sayce, A. H. (Archibald Henry), 1845-1933 Early Israel and the Surrounding Nations etext13007 Faraday, L. Winifred, 1872- The Edda, Volume 1 etext13170 James, George Wharton, 1858-1923 The Lake of the Sky etext13223 Ingelow, Jean, 1820-1897 Poems by Jean Ingelow, In Two Volumes, Volume I. etext13237 Horn, Henry J. Strange Visitors etext13280 The Philippine Islands, 1493-1803 — Volume 02 of 55 etext13315 Whistler, Charles W. (Charles Watts), 1856-1913 A Prince of Cornwall etext13318 Cajander, Paavo Emil, 1846-1913 Runoelmia etext13319 Belasco, David, 1853-1931 The Return of Peter Grimm etext13323 Various Punch, or the London Charivari, Volume 100, April 18, 1891 etext13338 Pakkala, Teuvo, 1862-1925 Lapsia etext13378 Conscience, Hendrik, 1812-1883 De baanwachter etext13389 Various Notes and Queries, Number 40, August 3, 1850 etext13403 Howard, Clare English Travellers of the Renaissance etext13449 Bennett, Arnold, 1867-1931 The Plain Man and His Wife etext13475 Bonaparte, Napoléon, 1769-1821 Oeuvres de Napoléon Bonaparte, Tome V. etext13478 Méténier, Oscar, 1859-1913 Zézette : moeurs foraines etext13491 Various Punch, or the London Charivari, Volume 101, August 15, 1891 etext13496 Atherton, Gertrude Franklin Horn, 1857-1948 The White Morning etext13628 Hugo, Victor, 1802-1885 La Esmeralda etext13640 Various Scientific American Supplement, No. 821, September 26, 1891 etext13657 Meding, Johann Ferdinand Martin Oskar, 1829-1903 Der Todesgruß der Legionen, 1. Band etext13662 Aho, Juhani, 1861-1921 Papin tytär etext13676 Louis-Jaray, Gabriel Au jeune royaume d'Albanie etext13688 Murray, John, 1808-1892 Mr. Murray's List of New and Recent Publications July, 1890 etext13719 Various Blackwood's Edinburgh Magazine — Volume 56, No. 345, July, 1844 etext13852 Bennett, Arnold, 1867-1931 Literary Taste: How to Form It etext13866 Zola, Émile, 1840-1902 Le naturalisme au théâtre: les théories et les exemples3 etext13975 Scott, Walter, Sir, 1771-1832 Qventin Durward etext13996 Sinclair, May, 1863-1946 The Divine Fire etext14001 Hough, Emerson, 1857-1923 The Mississippi Bubble etext14016 Lang, Andrew, 1844-1912 John Knox and the Reformation etext14059 Dick, Vinceslas-Eugène, 1848-1919 Le Roi des Étudiants etext14070 Kirkham, Samuel English Grammar in Familiar Lectures etext14151 Caouette, J. B. (Jean Baptiste), 1854-1922 Le vieux muet, ou, Un héros de Châteauguay etext14152 Stevenson, Robert Louis, 1850-1894 The Strange Case of Dr. Jekyll and Mr. Hyde etext14170 Various The Nursery, Volume 17, No. 100, April, 1875 etext14187 Michaëlis, Karin, 1872-1950 The Dangerous Age etext14196 Myerson, Abraham, 1881-1948 The Nervous Housewife etext14198 Dieulafoy, Jane, 1851-1916 Van Toledo naar Granada etext14279 Nicholson, Henry Alleyne, 1844-1899 The Ancient Life History of the Earth etext14313 Henty, G. A. (George Alfred), 1832-1902 One of the 28th etext14316 Brooke, Stopford A. (Stopford Augustus), 1832-1916 The Poetry Of Robert Browning etext14320 Various Landscape and Song etext14328 Boethius, Anicius Manlius Severinus, 480-525? The Consolation of Philosophy etext14329 Samper, José María, 1828-1888 Viajes de un Colombiano en Europa, primera serie etext14386 Leino, Eino, 1878-1926 Rahan orja etext14394 King, Basil, 1859-1928 The Street Called Straight etext14421 Wilson's Tales of the Borders and of Scotland, Volume XXIV. etext14427 Sheldon, Georgie, Mrs., 1843-1926 True Love's Reward etext14453 MacDonald, George, 1824-1905 Hope of the Gospel etext14501 Anonymous The Forest of Vazon etext14587 Morris, Kenneth, 1879-1937 The Crest-Wave of Evolution etext14709 Various Lippincott's Magazine of Popular Literature and Science etext14795 Rizal, José, 1861-1896 Junto Al Pasig etext14803 etext14857 Payne, Francis Loring The Story of Versailles etext14905 Grotius, Hugo, 1583-1645 De imperio summarum potestatum circa sacra. French etext14917 Tracy, Louis, 1863-1928 The Wings of the Morning etext14976 Wells-Barnett, Ida B., 1862-1931 Mob Rule in New Orleans etext15149 Meade, L. T., 1854-1914 The Palace Beautiful etext15226 Sand, George, 1804-1876 Nanon etext15238 Shelley, Mary Wollstonecraft, 1797-1851 Mathilda etext15292 Roos, Mathilda, 1852-1908 Katri Holm etext15376 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels, Volume 11 etext15382 Cody, H. A. (Hiram Alfred), 1872-1948 Jess of the Rebel Trail etext15411 Bligh, William, 1754-1817 A Voyage to the South Sea etext15430 Orcutt, William Dana, 1870-1953 The Lever etext15533 Mann, David Dickinson The Present Picture of New South Wales (1811) etext15537 Froude, James Anthony, 1818-1894 The Reign of Henry the Eighth, Volume 1 (of 3) etext15542 Raine, William MacLeod, 1871-1954 A Daughter of the Dons etext15595 Dickson, Marguerite Stockman Vocational Guidance for Girls etext15597 Eggleston, Edward, 1837-1902 Stories of American Life and Adventure etext15605 Various Punch, or the London Charivari, Volume 103, October 29, 1892 etext15649 Besnier, Pierre A Philosophicall Essay for the Reunion of the Languages etext15690 Boerhaave, Herman, 1668-1738 Het Nut der Mechanistische Methode in de Geneeskunde etext15692 Kurikka, Matti, 1863-1915 Äärimmäisessä talossa etext15703 etext15725 Pérez Galdós, Benito, 1843-1920 Doña Perfecta etext15732 Corbière, Édouard, 1793-1875 Contes de bord etext15740 Various The Great Round World and What Is Going On In It, Vol. 1, No. 33, June 24, 1897 etext15760 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Forest of Swords etext15773 Strang, Herbert Round the World in Seven Days etext15785 Various The Great Round World and What Is Going On In It, Vol. 1, No. 35, July 8, 1897 etext15801 Tomlinson, Everett Titsworth, 1859-1931 Winning His "W" etext15817 Daviess, Maria Thompson, 1872-1924 The Melting of Molly etext15836 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture etext15868 Hale, Edward Everett, 1822-1909 The Man Without a Country and Other Tales etext15891 Velimirović, Nikolai, 1880-1956 Französisch-slavische Kämpfe in der Bocca di Cattaro 1806-1814. etext16029 Various The Great Round World and What Is Going On In It, Vol. 1, No. 48, October 7, 1897 etext16043 Davis, F. Hadland (Frederick Hadland) Mythen & Legenden van Japan etext16074 Farnol, Jeffery, 1878-1952 The Definite Object etext16138 Holmes, Mary Jane, 1825-1907 The Cromptons etext16157 Anonymous Ibong Adarna etext16164 Rawlinson, George, 1812-1902 The Seven Great Monarchies Of The Ancient Eastern World, Vol 4. (of 7): Babylon etext16247 Various Famous Stories Every Child Should Know etext16248 Streatfeild, R. A. (Richard Alexander), 1866-1919 The Opera etext16297 The Philippine Islands, 1493-1898 — Volume 22 of 55 etext16344 etext16371 Huddleston, Mrs. George Croft Bluebell etext16425 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Amor de Perdição etext16433 Bailey, Temple, -1953 The Gay Cockade etext16486 Anonymous Celebrated Claimants from Perkin Warbeck to Arthur Orton etext16529 Lang, Andrew, 1844-1912 Lost Leaders etext16542 Adams, Charles Francis, 1835-1915 "Imperialism" and "The Tracks of Our Forefathers" etext16555 Holinshed, Raphael, -1580? Chronicles 1 (of 6): The Historie of England 5 (of 8) etext16613 Spargo, John, 1876-1966 Bolshevism etext16705 Lucas, E. V. (Edward Verrall), 1868-1938 A Wanderer in Venice etext16758 Desnoyers, Fernand, 1828-1869 Le Salon des Refusés etext16839 Allingham, William, 1824-1889 Sixteen Poems etext16841 Teirlinck, Herman, 1879-1967 Johan Doxa etext16881 Buysse, Cyriël, 1859-1932 Het leven van Rozeke van Dalen, deel 1 etext16905 Ransom, Sidney The Great Red Frog etext16935 Mitchell, P. Chalmers (Peter Chalmers), 1864-1945 Thomas Henry Huxley; A Sketch Of His Life And Work etext16955 Three Translations of The Koran (Al-Qur'an) side by side etext17004 Dumesnil, Antoine Jules, 1805-1891 Histoire des plus célèbres amateurs italiens et de leurs relations avec les artistes etext17020 Lorimer, George Horace, 1868-1937 The False Gods etext17070 De los Reyes, Angel Nasawing Pagasa etext17168 Harte, Bret, 1836-1902 The Queen of the Pirate Isle etext17291 etext17303 Various Chambers's Edinburgh Journal, No. 429 etext17313 Stowe, Harriet Beecher, 1811-1896 Pikku kettuja etext17321 etext17329 Maspero, G. (Gaston), 1846-1916 History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 9 (of 12) etext17365 Anonymous Child's Book of Water Birds etext17395 etext17425 Poe, Edgar Allan, 1809-1849 The Fall of the House of Usher $e Esperanto etext17456 Wiggin, Kate Douglas Smith, 1856-1923 The Romance of a Christmas Card etext17484 Kate, Jan Jakob Lodewijk ten, 1819-1889 Nieuwe Bloemlezing uit de dichtwerken van J.J.L ten Kate etext17509 Goethe, Johann Wolfgang von, 1749-1832 Reineke Fuchs etext17533 Zola, Émile, 1840-1902 Le rêve etext17570 Cope, Henry Frederick, 1870-1923 Religious Education in the Family etext17587 Thurstan, Violetta, 1879-1978 Field Hospital and Flying Column etext17704 Marguerite, Queen, consort of Henry II, King of Navarre, 1492-1549 The Tales Of The Heptameron, Vol. IV. (of V.) etext17719 Firkins, Ina Ten Eyck, 1866-1937 Henrik Ibsen etext17732 Conrad, Joseph, 1857-1924 Tales Of Hearsay etext17754 Walker, William Sidney, 1795-1846 Gustavus Vasa etext17895 Herculano, Alexandre, 1810-1877 Opúsculos por Alexandre Herculano - Tomo 05 etext17939 Holmes, John Haynes, 1879-1964 A Statement: On the Future of This Church etext17970 Brooks, Henry M. (Henry Mason), 1822-1898 The Olden Time Series, Vol. 1: Curiosities of the Old Lottery etext17997 Fewkes, Jesse Walter, 1850-1930 Contribution to Passamaquoddy Folk-Lore etext18008 Neera, 1846-1918 L'Amuleto etext18066 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Columbus etext18122 Coghill, Harry, Mrs., 1836-1907 A Canadian Heroine, Volume 2 etext18139 Goodwin, Harold L. (Harold Leland), 1914-1990 Rip Foster in Ride the Gray Planet etext18148 Schnitzler, Arthur, 1862-1931 Casanovas Heimfahrt etext18190 Gruelle, Johnny, 1880-1938 Raggedy Ann Stories etext18195 Various The Girl's Own Paper, Vol. VIII: No. 353, October 2, 1886. etext18290 Drake, Benjamin, 1794-1841 Great Indian Chief of the West etext18353 Maupassant, Guy de, 1850-1893 La petite roque etext18362 Kleiser, Grenville, 1868-1953 Fifteen Thousand Useful Phrases etext18388 Neilson, William Allan, 1869-1946 Robert Burns etext18404 Chevalier, H. Émile (Henri Émile), 1828-1879 Le gibet etext18413 Hueston, Ethel, 1887- Prudence of the Parsonage etext18419 Churchill, Winston, 1874-1965 Liberalism and the Social Problem etext18450 Hawaiian Folk Tales etext18479 Gleig, G. R. (George Robert), 1796-1888 The Campaigns of the British Army at Washington and New Orleans 1814-1815 etext18629 Jefferies, Richard, 1848-1887 Nature Near London etext18670 Omond, George W. T. (George William Thomson), 1846-1929 Bruges and West Flanders etext18697 Dumas père, Alexandre, 1802-1870 Le capitaine Pamphile etext18705 Jókai, Mór, 1825-1904 The Poor Plutocrats etext18801 Reynolds, Katharine Green Valley etext18870 Polko, Elise, 1822-1899 Soitannollisia satuja ja jutelmia etext18880 Various The New York Times Current History: the European War, February, 1915 etext18907 Higgins, Emily Mayer Holidays at the Grange or A Week's Delight etext18928 Swammerdam, Jan, 1637-1680 Proefnemingen van de particuliere beweeging der spieren in de kikvorsch etext18955 Nanong, Balbino B. Hiwaga ng Pagibig etext18995 Ulbach, Louis, 1822-1889 L'île des rêves etext19171 Hope, Laura Lee The Moving Picture Girls etext19192 Hodge, Charles, 1797-1878 What is Darwinism? etext19278 Shoghi Effendi, 1897-1957 Messages to Canada etext19295 Hope, Laura Lee The Outdoor Girls at Ocean View etext19300 `Abdu'l-Bahá, 1844-1921 A Traveler’s Narrative etext19322 Nietzsche, Friedrich Wilhelm, 1844-1900 The Antichrist etext19333 Hope, Laura Lee The Story of a China Cat etext19384 Richmond, Grace S. (Grace Smith), 1866-1959 On Christmas Day In The Evening etext19388 Hough, Emerson, 1857-1923 The Sagebrusher etext19443 Barhite, Jared Our Profession and Other Poems etext19469 Various Poems Teachers Ask For, Book Two etext19474 Piper, H. Beam, 1904-1964 Uller Uprising etext19492 Various The Atlantic Monthly, Volume 13, No. 77, March, 1864 etext19495 Fitzhugh, Percy Keese, 1876-1950 Tom Slade Motorcycle Dispatch Bearer etext19541 Greenaway, Kate, 1846-1901 Marigold Garden etext19542 Various The Knickerbocker, or New-York Monthly Magazine, February 1844 etext19547 Various Obed Hussey etext19571 Whitman, Walt, 1819-1892 A Noiseless Patient Spider etext19597 Burt, Nathaniel Clark, 1825-1874 National Character etext19614 Walpole, Hugh, Sir, 1884-1941 The Dark Forest etext19620 Aesop, 620 BC-563 BC Aesop's Fables - Volume 05 etext19622 Aesop, 620 BC-563 BC Aesop's Fables - Volume 07 etext19635 Anonymous Biblia Sacra Vulgata - Psalmi XXII etext19694 etext19709 Rockwell, Carey, [pseud.] Danger in Deep Space etext19739 Modern American Prose Selections etext19743 Allen, Quincy The Outdoor Chums at Cabin Point etext19755 Abbe, Ernst, 1840-1905 Gesammelte Abhandlungen III etext19902 Barnfield, Richard, 1574-1627 The Affectionate Shepherd etext19953 Holmes, William Henry, 1846-1933 Origin and Development of Form and Ornament in Ceramic Art. etext19959 The Mabinogion Vol. 1 etext19965 Rucker, W. C. Measles etext19967 Anonymous Beauty and the Beast etext19991 Anonymous The Fox Jumps Over the Parson's Gate etext20001 Westmacott, C. M. (Charles Molloy), 1788-1868 The English Spy etext20003 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 The Infernal Marriage etext20052 Yechton, Barbara, [pseud.], 1864-1939 We Ten etext20102 Various The International Monthly Magazine - Volume V - No II etext20156 Bremer, Fredrika, 1801-1865 Strife and Peace etext20208 Ralphson, G. Harvey (George Harvey), 1879-1940 Boy Scouts in the Philippines etext20266 Owen, Wilfred, 1893-1918 Anthem for Doomed Youth etext20277 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 The History of England, from the Accession of etext20288 Marlowe, Christopher, 1564-1593 Edward the Second etext20430 Ingram, A. F. Winnington The After-glow of a Great Reign etext20461 Bax, Ernest Belfort, 1854-1926 German Culture Past and Present etext20477 etext20485 Clouston, J. Storer (Joseph Storer), 1870-1944 The Lunatic at Large etext20533 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Jill the Reckless etext20544 Fenn, George Manville, 1831-1909 The Little Skipper etext20545 Kiljander, Robert, 1848-1924 Pukkisen pidot etext20554 Desdunes, Rodolphe Lucien Nos Hommes et Notre Histoire etext20561 Fern, Fanny Little Ferns For Fanny's Little Friends etext20580 Hugo, Victor, 1802-1885 Napoleon the Little etext20593 Montgomery, L. M. (Lucy Maud), 1874-1942 Anne of Green Gables etext20595 Twain, Mark, 1835-1910 The Awful German Language etext20656 Irving, Washington, 1783-1859 Old Christmas From the Sketch Book of Washington Irving etext20670 Colby, Charles W. (Charles William), 1867-1955 The Founder of New France - A Chronicle of Champlain etext20673 Dickens, Charles, 1812-1870 A Christmas Carol etext20684 Bassewitz, Gerdt von, 1878-1923 Peterchens Mondfahrt etext20771 Linnaeus, Carolus, 1707-1778 Species Plantarum etext20812 Green, John Richard, 1837-1883 History of the English People, Volume III etext20824 Anonymous Bulletin de Lille, 1916.05 etext20845 Various The Knickerbocker, or New-York Monthly Magazine, April 1844 etext20865 Anonymous Bulletin de Lille, 1916.07 etext20930 Guillemin, Amédée Victor (AKA Amadeo Guillemin) Cosmografía etext20942 Vasárnapi Könyv etext20988 Campbell, John Wood, 1910-1971 Islands of Space etext21018 Sissala, Eero, 1851-1909 Munkkiniemen Elsa etext21037 Reed, Talbot Baines, 1852-1893 The Cock-House at Fellsgarth etext21075 Collingwood, Harry, 1851-1922 The Cruise of the Thetis etext21111 Brightwen, Elizabeth Wild Nature Won By Kindness etext21348 Morse, John T. (John Torrey), 1840-1937 Benjamin Franklin etext21391 Kingston, William Henry Giles, 1814-1880 Great African Travellers etext21420 Invernizio, Carolina, 1851-1916 La trovatella di Milano etext21448 Kingston, William Henry Giles, 1814-1880 The African Trader etext21452 Kingston, William Henry Giles, 1814-1880 Ernest Bracebridge etext21495 Fenn, George Manville, 1831-1909 To The West etext21540 Anonymous High Noon etext21559 Marryat, Frederick, 1792-1848 The Three Cutters etext21562 Mahan, A. T. (Alfred Thayer), 1840-1914 The Gulf and Inland Waters etext21597 Bunner, H. C. (Henry Cuyler), 1855-1896 Jersey Street and Jersey Lane etext21621 Rutherford, William G. The Story of Garfield etext21626 Ellis, Edward Sylvester, 1840-1916 Adrift in the Wilds etext21658 Various Ehstnische Märchen etext21708 Ballantyne, R. M. (Robert Michael), 1825-1894 Up in the Clouds etext21710 Ballantyne, R. M. (Robert Michael), 1825-1894 The Crew of the Water Wagtail etext21738 Ballantyne, R. M. (Robert Michael), 1825-1894 Hunted and Harried etext21739 Ballantyne, R. M. (Robert Michael), 1825-1894 Hunting the Lions etext21769 Doyle, Arthur Conan, Sir, 1859-1930 Songs Of The Road etext21812 Kingston, William Henry Giles, 1814-1880 Paul Gerrard etext21819 Murray, Thomas Boyles Kalli, the Esquimaux Christian etext21840 Robinson, William J. Woman etext21912 Lemonnier, Camille, 1844-1913 Le possédé etext22109 Beard, Daniel Carter, 1850-1941 The Black Wolf Pack etext22202 Murray, David Christie, 1847-1907 Aunt Rachel etext22252 Abbott, Jacob, 1803-1879 Rollo on the Atlantic etext22321 Munro, Neil, 1864-1930 John Splendid etext22330 Pessanha, Camilo Almeida, 1867-1926 Clepsydra etext22335 Unknown Harrison's New Nursery Picture Book etext22341 Grahame, Kenneth, 1859-1932 The Wind in the Willows etext22353 Amos, Flora Ross, 1881- Early Theories of Translation etext22406 Bryant, William Cullen, 1794-1878 The Little People of the Snow etext22453 Bennett, Arnold, 1867-1931 How to Live on 24 Hours a Day etext22464 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Last of the Chiefs etext22475 Lawrence, D. H. (David Herbert), 1885-1930 Tortoises etext22492 Humboldt, Alexander von, 1769-1859 Reise in die Aequinoctial-Gegenden des neuen Continents. Band 1. etext22556 Shakespeare, William, 1564-1616 Cymbeline etext22561 Anonymous Tame Animals etext22709 Bellamy, Edward, 1850-1898 At Pinney's Ranch etext22733 Spargo, John, 1876-1966 Socialism etext22737 Stockton, Frank Richard, 1834-1902 John Gayther's Garden and the Stories Told Therein etext22790 May, Robert The accomplisht cook etext22846 Mitford, Mary Russell, 1787-1855 The Ground-Ash etext22861 The Second Epistle of Paul to the Thessalonians etext22906 King, Charles, 1844-1933 A War-Time Wooing etext22975 Conscience, Hendrik, 1812-1883 La niña robada etext23004 Chaplin, Heman White, 1847-1924 In Madeira Place etext23014 Page, Thomas Nelson, 1853-1922 "A Soldier Of The Empire" etext23030 Howells, William Dean, 1837-1920 Buying a Horse etext23061 Schnitzler, Arthur, 1862-1931 The Dead Are Silent etext23101 Cutten, George Barton, 1874-1962 Three Thousand Years of Mental Healing etext23161 Lafferty, R. A., 1914-2002 Sodom and Gomorrah, Texas etext23169 O'Brien, Fitz James, 1828-1862 The Diamond Lens etext23178 Stoddard, Lorimer, 1864-1901 The Indian's Hand etext23189 Kingston, William Henry Giles, 1814-1880 The Lily of Leyden etext23250 Catherwood, Mary Hartwell, 1847-1902 The Skeleton On Round Island etext23253 Catherwood, Mary Hartwell, 1847-1902 The Mothers Of Honoré etext23264 Martineau, Harriet, 1802-1876 The Settlers at Home etext23286 Stratemeyer, Edward, 1862-1930 The Rover Boys Under Canvas etext23305 Anonymous The Crooked Man and Other Rhymes etext23370 Ballantyne, R. M. (Robert Michael), 1825-1894 The Battle and the Breeze etext23489 Verne, Jules, 1828-1905 Godfrey Morgan etext23509 Hardart, F. E. The Beast of Space etext23558 etext23599 Smith, George O. (George Oliver), 1911-1981 The Big Fix etext23605 Burke, Thomas, 1886-1945 Nights in London etext23710 Burnett, Frances Hodgson, 1849-1924 Little Lord Fauntleroy etext23720 Catullus, Gaius Valerius, 84 BC-54 BC To Lesbia etext23727 Lawrence, D. H. (David Herbert), 1885-1930 The Lost Girl etext23757 Pertwee, Roland, 1885-1963 Men of Affairs etext23805 Janvier, Thomas A. (Thomas Allibone), 1849-1913 For The Honor Of France etext23830 Wilhelm, Ch. Le duel au balai etext23985 Jókai, Mór, 1825-1904 Pater Peter. English. etext24073 Birmingham, George A., 1865-1950 General John Regan etext24161 Kuykendall, Roger All Day September etext24216 Kemble, Fanny, 1809-1893 Poems etext24224 Tianhuazangzhuren 平山冷燕 etext24255 Anonymous Peines, tortures et supplices etext24265 Various Punch, or the London Charivari, Vol. 146, February 4, 1914 etext24269 Homer, 750? BC-650? BC The Odyssey of Homer etext24274 Nourse, Alan Edward, 1928-1992 The Native Soil etext24354 Holland, Rupert Sargent, 1878-1952 Historic Boyhoods etext24447 Stepniak, S., 1851-1895 En Nihilist etext24501 Dickens, Charles, 1812-1870 La Batalo de l' Vivo etext24511 Charles, Elizabeth Rundle, 1828-1896 Helenan perhe etext24524 Muzzey, A. B. (Artemas Bowers), 1802-1892 The Young Maiden etext24618 Lipschütz, Alejandro, 1883-1980 Warum wir sterben etext24622 Kobbé, Gustav, 1857-1918 The Pianolist etext24639 Becke, Louis, 1855-1913 The Colonial Mortuary Bard; "'Reo," The Fisherman; and The Black Bream Of Australia etext24680 Anonymous The Martyr of the Catacombs etext24718 Fleury de Chaboulon, Pierre Alexandre Édouard, baron, 1779-1835 Memoirs of the Private Life, Return, and Reign of Napoleon in 1815, Vol. II etext24731 Bailey, Arthur Scott, 1877-1949 The Tale of Grunty Pig etext24746 Humboldt, Alexander von, 1769-1859 Reise in die Aequinoctial-Gegenden des neuen Continents. Band 2. etext24884 Redway, Jacques W. (Jacques Wardlaw), 1849-1942 Commercial Geography etext24906 Kinnear, John R. History of the Eighty-sixth Regiment, Illinois Volunteer Infantry, during its term of service etext24967 Cicero, Marcus Tullius, 106 BC-43 BC First Oration of Cicero Against Catiline etext24976 Hocking, Joseph, 1860-1937 Roger Trewinion etext24977 Castle, Arnold The Perfectionists etext24980 Rose, John Holland, 1855-1942 William Pitt and the Great War etext24984 Acland, John Edward, 1848-1932 Little Gidding and its inmates in the Time of King Charles I. etext24985 Hope, Anthony, 1863-1933 Comedies of Courtship etext24997 Becke, Louis, 1855-1913 The Beginning Of The Sea Story Of Australia etext25006 Münsterberg, Hugo, 1863-1916 Psychology and Social Sanity etext25030 Various Lippincott's Magazine, Vol. 22, November, 1878 etext25077 Jones, Henry Festing, 1851-1928 Castellinaria etext25090 Bailey, Arthur Scott, 1877-1949 The Tale of Billy Woodchuck etext25137 Tongyuanzi 玉蟾記 etext25153 Longfellow, Henry Wadsworth, 1807-1882 Tales of a Wayside Inn etext25197 Pozzi, Ernesto, 1843-1904 Mentana e il dito di Dio etext25212 Williams, Wadham Pigott, 1822?- A Glossary of Provincial Words & Phrases in use in Somersetshire etext25246 Gao, Ming, fl. 1345 琵琶記 etext25256 Roby, John, 1793-1850 Traditions of Lancashire, Volume 2 etext25259 Mu, Shiying 公墓 etext25304 Bierce, Ambrose, 1842-1914? The Shadow On The Dial, and Other Essays etext25321 Su, Xun, 1009-1066 蘇洵集 etext25324 玉台新詠 etext25342 Davidson, George The Incomparable 29th and the "River Clyde" etext25355 Abbott, Jacob, 1803-1879 Rollo in Geneva etext25393 Anonymous 施公案 etext25396 May, Sophie, 1833-1906 Dotty Dimple At Home etext25439 Bellamy, Edward, 1850-1898 Looking Backward etext25459 Macduff, John R. (John Ross), 1818-1895 The Cities of Refuge: or, The Name of Jesus etext25527 Australia. Dept. of External Affairs Australia, The Dairy Country etext25540 Newcomb, Harvey, 1803-1863 Anecdotes for Boys etext25653 Beecher, Henry Ward, 1813-1887 Conflict of Northern and Southern Theories of Man and Society etext25704 Faguet, Émile, 1847-1916 Zola etext25709 Wilberforce, William, 1759-1833 A Practical View of the Prevailing Religious System of Professed Christians, in the Middle and Higher Classes in this Country, Contrasted with Real Christianity. etext25717 Gibbon, Edward, 1737-1794 The History Of The Decline And Fall Of The Roman Empire etext25952 Various The Celtic Magazine, Vol. 1, No. 1, November 1875 etext25976 Fox, Frank, Sir, 1874-1960 Peeps At Many Lands: Australia etext25981 Sand, George, 1804-1876 Les beaux messieurs de Bois-Doré etext25986 Hichens, Robert Smythe, 1864-1950 Tongues of Conscience etext26015 Molesworth, Mrs., 1839-1921 A Christmas Posy etext26017 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 O Regicida etext26027 Kipling, Rudyard, 1865-1936 Puck of Pook’s Hill etext26057 McCarthy, Justin H. (Justin Huntly), 1860-1936 Marjorie etext26095 Aristotle, 384 BC-322 BC The Athenian Constitution etext26106 Stull, Bertram O. U.S. Patent 4,293,314: Gelled Fuel-Air Explosive etext26123 Beecher, Catharine Esther, 1800-1878 An Essay on Slavery and Abolitionism etext26126 Reynolds, Stephen Sydney, 1881-1919 A Poor Man's House etext26170 etext26228 Voltaire, 1694-1778 Candide etext26294 Apuleius, Lucius, 125?-180 The Apologia and Florida of Apuleius of Madaura etext26324 Fletcher, J. S. (Joseph Smith), 1863-1935 Ravensdene Court etext26425 Earle, John, 1601?-1665 Microcosmography etext26438 Ball, W. P. (William Platt) Are the Effects of Use and Disuse Inherited? etext26442 Butterworth, Hezekiah, 1839-1905 True to His Home etext26516 Beebe, William, 1877-1962 The Log of the Sun etext26567 Taillevent, ca. 1315-1395 Le viandier de Taillevent etext26580 Nesbit, E. (Edith), 1858-1924 Many Voices etext26651 Chambers, Robert W. (Robert William), 1865-1933 The Flaming Jewel etext26715 Victorian Songs etext26761 Teichner, Albert Cerebrum etext26883 Greenfield, Taylor H. The Sword and the Atopen etext26888 Wang, Ang, 1615- 本草備要 etext26895 Stockton, Frank Richard, 1834-1902 The Associate Hermits etext26897 Various Notes and Queries, Number 77, April 19, 1851 etext26911 Raine, William MacLeod, 1871-1954 Crooked Trails and Straight etext26922 Nanbeiheguanshizhe 春柳鶯 etext26943 Wagner, Richard, 1813-1883 Fliegende Holländer. French etext26953 Wise, Daniel, 1813-1898 Jessie Carlton etext26955 Huekels, Jack G. Advanced Chemistry etext26958 Ingle, Edward, 1861-1924 Captain Richard Ingle etext26973 Baird, Jean K. (Jean Katherine), 1872-1918 Hester's Counterpart etext26989 Meek, S. P. (Sterner St. Paul), 1894-1972 B. C. 30,000 etext27070 etext27078 United States. Congress. Senate Senate Resolution 6; 41st Congress, 1st Session etext27088 Qian, Yi, jin shi 999 南部新書 etext27127 The Philippine Islands, 1493-1898 etext27140 Hoffmann, Franz, 1814-1882 Kreivi ja karhuntanssittaja etext27149 Shortridge, John D. Italian Harpsichord-Building in the 16th and 17th Centuries etext27163 Powys, John Cowper, 1872-1963 Suspended Judgments etext27182 Belloc, Hilaire, 1870-1953 More Peers : Verses etext27239 Traill, Catharine Parr Strickland, 1802-1899 Little Downy etext27332 Biao, Xuahua 後西游記 etext27367 Wayburn, Ned The Art of Stage Dancing etext27379 Lemaître, Jules, 1853-1914 Les Contemporains, 5ème Série etext27562 The Great Events by Famous Historians, Volume 07 etext27599 Deus, João de, 1830-1896 Flores do Campo etext27734 Yuanhuyanshuisanren, 17th/18th cent. 合浦珠 etext27768 Wu, Jianren, 1866-1910 瞎騙奇聞 etext27792 Austin, Mary Hunter, 1868-1934 The Arrow-Maker etext27830 Conklin, Mary Greer Conversation etext27852 Sylvain, Adrien, 1826-1914 Gold Dust etext27891 Braby, Maud Churton Die moderne Ehe etext27902 Miller, Olive Thorne, 1831-1918 A Bird-Lover in the West etext27904 Anthony, Eve Destantins Une journée a Pise etext27925 Smith, John Talbot, 1855-1923 The Art of Disappearing etext27948 Progress and History etext27979 Zùccoli, Luciano, 1868-1929 La freccia nel fianco etext27982 Reid, Mayne, 1818-1883 The Ocean Waifs etext28009 Oppman, Artur, 1867-1932 Szopka etext28043 Morton, David, 1886-1957 Ships in Harbour etext28109 Wheeler, Candace, 1827-1923 How to make rugs etext28127 Castilho, António Feliciano de, 1800-1875 O presbyterio da montanha etext28183 Gibbs, Mifflin Wistar Shadow and Light etext28194 Various Notes and Queries, Number 231, April 1, 1854 etext28214 Various Notes and Queries, Number 236, May 6, 1854 etext28240 Mickiewicz, Adam, 1798-1855 Pan Tadeusz etext28283 Abbott, Jacob, 1803-1879 Mary Queen of Scots etext28351 Dick and His Cat and Other Tales etext28427 Talleyrand-Périgord, Charles Maurice de, prince de Bénévent, 1754-1838 Mémoires du prince de Talleyrand, Volume II (of V) etext28455 Great Men and Famous Women. Vol. 5 etext28468 Various The American Missionary — Volume 54, No. 2, April, 1900 etext28509 Raymond, Evelyn, 1843-1910 The Brass Bound Box etext28512 McCutcheon, George Barr, 1866-1928 What's-His-Name etext28526 Dubarry, Gustave Othello etext28605 Diderot, Denis, 1713-1784 L'oiseau blanc etext28612 Rarey, J. S. (John Solomon), 1827-1866 A New Illustrated Edition of J. S. Rarey's Art of Taming Horses etext28627 Schoolcraft, Henry Rowe, 1793-1864 Incentives to the Study of the Ancient Period of American History etext28695 France, Anatole, 1844-1924 Our Children etext28751 Lagerlöf, Selma, 1858-1940 Gösta Berling etext28778 Various Harper's Young People, April 13, 1880 etext28806 Harding, Samuel Bannister, 1866-1927 The Story of the Middle Ages etext28833 Various Harper's Young People, April 27, 1880 etext28865 Herzl, Theodor, 1860-1904 Der Judenstaat etext28867 Tarchetti, Iginio Ugo, 1841-1869 Racconti fantastici etext28877 Wiggin, Kate Douglas Smith, 1856-1923 Penelope's Progress etext28894 Sheldon, Walter J., 1917- Two Plus Two Makes Crazy etext28899 The Philippine Islands, 1493-1898—Volume 39 of 55 etext28901 Stephen, Leslie, Sir, 1832-1904 Social Rights and Duties, Volume I (of 2) etext28929 Balmes, Jaime Luciano, 1810-1848 El Criterio etext28970 Peck, George W. (George Wilbur), 1840-1916 Works Of George W. Peck etext28980 Stephen, Leslie, Sir, 1832-1904 The Life of Sir James Fitzjames Stephen, Bart., K.C.S.I. etext29033 Morley, John, 1838-1923 Critical Miscellanies (Vol. 3 of 3) etext29063 Hoyland, John, 1750-1831 A Historical Survey of the Customs, Habits, & Present State of the Gypsies etext29136 Various Harper's Young People, September 14, 1880 etext29146 Vance, Gerald Equation of Doom etext29171 Quiller-Couch, Mabel, 1866-1924 The Carroll Girls etext29204 Harrison, Harry, 1925- Arm of the Law etext29208 Wilde, Oscar, 1854-1900 Salome en Een Florentijnsch Treurspel etext29220 Woolf, Virginia, 1882-1941 Monday or Tuesday etext29229 Dunlap, William, 1766-1839 André etext29288 Notovitch, Nicolas, 1858- The Unknown Life of Jesus Christ etext29369 etext29372 Mackintosh, James, Sir, 1765-1832 A Discourse on the Study of the Law of Nature and Nations etext29392 Doyle, Arthur Conan, Sir, 1859-1930 Etienne Gerards Bedrifter etext29430 Caine, Hall, Sir, 1853-1931 The Project Gutenberg Works Of Hall Caine etext29445 Sheckley, Robert, 1928-2005 The Hour of Battle etext29454 Various Punch or the London Charivari, Vol. 147, November 25, 1914 etext29495 etext29578 McKimmey, James, 1923- George Loves Gistla etext29614 Linebarger, Paul Myron Anthony, 1913-1966 The Game of Rat and Dragon etext29657 Norton, Roy, 1869-1942 Mixed Faces etext29668 Ogden, George W. (George Washington), 1871-1966 The Flockmaster of Poison Creek etext29698 Bond, Nelson Slade, 1908-2006 Lighter Than You Think etext29704 Masterpieces of Mystery etext29715 etext29736 Various Continental Monthly, Vol. III, No IV, April 1863 etext29740 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 A Neta do Arcediago etext29761 Brown, Paul Cameron Sympathetic Magic etext29845 Barrili, Anton Giulio, 1836-1908 I rossi e i neri, vol. 1 etext29909 Barr, Amelia Edith Huddleston, 1831-1919 A Singer from the Sea etext29916 Trueba y Cosío, Joaquín Telesforo de, 1799?-1835 Gómez Arias etext29919 Various Astounding Stories of Super-Science, November, 1930 etext29958 Cullum, Ridgwell, 1867-1943 The Law-Breakers etext29965 Diffin, Charles Willard, 1884-1966 Two Thousand Miles Below etext29986 Various Le Tour du Monde; En Roumanie etext30026 Stryker, Elisabeth G. A Story of One Short Life, 1783 to 1818 etext30048 Various The Contemporary Review, Volume 36, September 1879 etext30083 Guyon, Jeanne Marie Bouvier de la Motte, 1648-1717 Letters of Madam Guyon etext30103 Various Birds, Illustrated by Color Photography, Vol. 1, No. 3 etext30106 Fenn, George Manville, 1831-1909 The Vast Abyss etext30152 Vaknin, Samuel, 1961- Narcissistic and Psychopathic Leaders etext30166 Various Astounding Stories, March, 1931 etext30259 Janifer, Laurence M., 1933-2002 The Man Who Played to Lose etext30281 Frank, Leonhard, 1882-1961 Die Räuberbande etext30302 Elizabeth, 1866-1941 The Benefactress etext30340 Wells, H. G. (Herbert George), 1866-1946 The Passionate Friends etext30348 Hamm, T. D. The Last Supper etext30390 Mansfield, M. F. (Milburg Francisco), 1871- Dickens' London etext30484 Anonymous Nouveau voyage en France etext30527 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition etext30645 Janeway, James, 1636?-1674 Stories of Boys and Girls Who Loved the Saviour etext30655 Kafka, Franz, 1883-1924 Ein Hungerkünstler etext30656 Burgess, Gelett, 1866-1951 The Purple Cow! etext30703 Loti, Pierre, 1850-1923 Fantôme d'Orient etext30704 Dawson, A. J. (Alec John), 1872-1952 The Record of Nicholas Freydon etext30706 Tomlinson, Charles, 1808-1897 The Rain Cloud etext30811 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Moving Finger etext30823 Mallock, W. H. (William Hurrell), 1849-1923 Memoirs of Life and Literature etext30868 Wells, Carolyn, 1862-1942 The Come Back etext30899 Willard, J. H. The Man Who Did Not Die etext30918 Lamartine, Alphonse de, 1790-1869 Cours Familier de Littérature (Volume 5) etext30956 Gustavus, Myers History of the Great American Fortunes, Vol. I etext30968 Raymond, Evelyn, 1843-1910 A Sunny Little Lass etext30978 Marie-Henri Beyle La vie de Rossini, tome II etext30982 etext31029 Coward, Noel, 1899-1973 I'll Leave It To You etext31035 Anderson, Sydney, 1927- Mammals of Mesa Verde National Park, Colorado etext31048 Neil, Henry M. A Battery at Close Quarters etext31078 Disraeli, Isaac, 1766-1848 Curiosities of Literature, Vol. 3 etext31105 Waring, George E. (George Edwin), 1833-1898 The Elements of Agriculture etext31186 Fisher, Dorothy Canfield, 1879-1958 What Shall We Do Now?: Five Hundred Games and Pastimes etext31203 Mead, Richard, 1673-1754 Medica Sacra etext31211 Bott, Alan Cavalry of the Clouds etext31237 Crawford, Matthew The Gladiolus etext31333 Love, John L. The Disfranchisement of the Negro etext31362 Fitzpatrick, Kathleen The Weans at Rowallan etext31406 Trowbridge, J. T. (John Townsend), 1827-1916 Cudjo's Cave etext31412 Thornbury, Walter Old and New London etext31484 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 8 (of 25) etext31507 Smith, Harriet L. (Harriet Lummis) Peggy Raymond's Vacation etext31522 Stowe, Harriet Beecher, 1811-1896 The Pearl of Orr's Island etext31556 Otis, James, 1848-1912 Dick in the Desert etext31590 Tomlinson, Everett Titsworth, 1859-1931 Scouting with Daniel Boone etext31654 Quental, Anthero de Oliveira Martins etext31665 Fritch, Charles E., 1927- Skin Game etext31678 Crockett, W. S., 1866-1945 In the Border Country etext31759 Sue, Eugène, 1804-1857 The Infant's Skull etext31799 Busoni, Ferruccio, 1866-1924 Sketch of a New Esthetic of Music etext31816 Peter, Robert The History of the Medical Department of Transylvania University etext31821 Blasco Ibáñez, Vicente, 1867-1928 Sónnica etext31842 Schnitzler, Arthur, 1862-1931 Der Schleier der Pierrette etext31864 Tree, Herbert Henry VIII and His Court etext31876 Eiselen, Frederick Carl The Christian View of the Old Testament etext31886 Jókai, Mór, 1825-1904 Pretty Michal etext31895 Cooper, A. (Alonzo), 1830-1919 In and Out of Rebel Prisons etext31998 Canfield, William A. A History of the Army Experience of William A. Canfield etext32023 Curwen, J. Spencer The Boy's Voice etext32024 Penrose, Margaret The Motor Girls on the Coast etext32078 Cox, Irving E. Love Story etext32107 Nason, Frank Lewis, 1856-1928 The Vision of Elijah Berl etext32119 Various The Scrap Book. Volume 1, No. 2 etext32145 Bowles, William Lisle, 1762-1850 The Poetical Works of William Lisle Bowles Vol. 2 etext32184 Dorset, Catherine Ann Turner, 1750?-1817? The Lion's Masquerade etext32204 Jókai, Mór, 1825-1904 Hungarian Sketches in Peace and War etext32221 Hill, Frederick Trevor, 1866-1930 The Case and Exceptions etext32249 Otis, James, 1848-1912 The Princess and Joe Potter etext32261 O'Rell, Max, 1848-1903 A Frenchman in America etext32361 McGreevey, John The Prophetic Camera etext32367 etext32406 Bosschère, Jean de, 1878-1953 The City Curious etext32415 Various The Nursery Rhymes of England etext32428 etext32449 Bacon, Alice Mabel Japanese Girls and Women etext32457 Hardy, William Pioneer etext32538 Jókai, Mór, 1825-1904 The Tower of Dago etext32568 Mitford, Bertram, 1855-1914 A Frontier Mystery etext32648 Otis, James, 1848-1912 The Minute Boys of York Town etext17 etext21 Aesop, 620 BC-563 BC Aesop's Fables etext162 Laxer, Mark Eliot Take Me for a Ride: coming of age in a destructive cult etext218 Caesar, Julius, 100 BC-44 BC De Bello Gallico etext220 Conrad, Joseph, 1857-1924 The Secret Sharer etext282 Kinglake, Alexander William, 1809-1891 Eothen, or, Traces of Travel Brought Home from the East etext294 Doyle, Arthur Conan, Sir, 1859-1930 The Captain of the Polestar etext318 London, Jack, 1876-1916 John Barleycorn etext329 Stevenson, Robert Louis, 1850-1894 Island Nights' Entertainments etext350 Ferber, Edna, 1885-1968 Fanny Herself etext382 Stevenson, Robert Louis, 1850-1894 Edinburgh Picturesque Notes etext542 Johnson, Clarence Edgar, 1906-1994 The Life of Me; an autobiography etext550 Eliot, George, 1819-1880 Silas Marner etext633 The Golden Mean or Ratio[(1+sqrt(5))/2] etext648 Borrow, George Henry, 1803-1881 Wild Wales: Its People, Language and Scenery etext675 Dickens, Charles, 1812-1870 American Notes etext727 Carpenter, John A. The Star-Spangled Banner etext745 Kanada, Yasumasa One Divided By pi (to 1 million digits) etext755 Bird, Isabella L. (Isabella Lucy), 1831-1904 A Lady's Life in the Rocky Mountains etext772 Stevenson, Robert Louis, 1850-1894 Moral Emblems etext796 Stendhal, 1783-1842 La Chartreuse De Parme etext821 Dickens, Charles, 1812-1870 Dombey and Son etext861 Bacon, John Mackenzie, 1846-1904 The Dominion of the Air; the story of aerial navigation etext901 Marlowe, Christopher, 1564-1593 The Jew of Malta etext1035 Robinson, Edwin Arlington, 1869-1935 The Man Against the Sky etext1036 Lawson, Henry, 1867-1922 Joe Wilson and His Mates etext1086 Twain, Mark, 1835-1910 A Horse's Tale etext1145 Hope, Anthony, 1863-1933 Rupert of Hentzau etext1176 Xenophon, 431 BC-350? BC On Horsemanship etext1282 Appleton, Victor [pseud.] Tom Swift Among the Diamond Makers, or, the Secret of Phantom Mountain etext1284 Appleton, Victor [pseud.] Tom Swift and His Air Scout, or, Uncle Sam's Mastery of the Sky etext1295 Meynell, Alice Christiana Thompson, 1847-1922 Ceres' Runaway and Other Essays etext1330 Bannerman, Helen, 1862-1946 The Story of Little Black Sambo etext1336 Thompson, Francis, 1859-1907 Shelley; an essay etext1373 Balzac, Honoré de, 1799-1850 Study of a Woman etext1390 Wister, Owen, 1860-1938 The Jimmyjohn Boss and Other Stories etext1404 etext1465 Dickens, Charles, 1812-1870 Wreck of the Golden Mary etext1517 Shakespeare, William, 1564-1616 The Merry Wives of Windsor etext1543 Shakespeare, William, 1564-1616 A Lover's Complaint etext1593 Wood, Robert Williams, 1868-1955 How to Tell the Birds from the Flowers etext1596 London, Jack, 1876-1916 Smoke Bellew etext1603 Van Dyke, Henry, 1852-1933 The Blue Flower etext1633 Hale, Edward Everett, 1822-1909 The Brick Moon and Other Stories etext1635 Plato, 427? BC-347? BC Ion etext1666 Apuleius, Lucius, 125?-180 The Golden Asse etext1688 London, Jack, 1876-1916 The People of the Abyss etext1696 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Club of Queer Trades etext1793 Shakespeare, William, 1564-1616 Othello etext1819 Davis, Richard Harding, 1864-1916 The Messengers etext1830 Aldrich, Thomas Bailey, 1836-1907 Wyndham Towers etext1844 Ascham, Roger, 1515-1568 The Schoolmaster etext1892 Twain, Mark, 1835-1910 Extracts from Adam's Diary, translated from the original ms. etext1926 Hawthorne, Nathaniel, 1804-1864 Grandfather's Chair etext2055 Dana, Richard Henry, 1815-1882 Two Years Before the Mast etext2105 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 05 etext2170 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 Miscellaneous Writings and Speeches — Volume 4 etext2180 Harte, Bret, 1836-1902 In a Hollow of the Hills etext2197 Dostoyevsky, Fyodor, 1821-1881 The Gambler etext2201 Human Genome Project Chromosome Number 01 etext2231 Jerome, Jerome K. (Jerome Klapka), 1859-1927 All Roads Lead to Calvary etext2260 Shakespeare, William, 1564-1616 Titus Andronicus etext2269 Shakespeare, William, 1564-1616 Cymbeline etext2432 Trollope, Anthony, 1815-1882 Barchester Towers etext2524 Gaskell, Elizabeth Cleghorn, 1810-1865 My Lady Ludlow etext2536 Molière, 1622-1673 Amphitryon etext2587 Calderón de la Barca, Pedro, 1600-1681 Life Is a Dream etext2590 Scott, Walter, Sir, 1771-1832 Guy Mannering etext2689 Holmes, Oliver Wendell, 1809-1894 Over the Teacups etext2703 Harte, Bret, 1836-1902 The Argonauts of North Liberty etext2734 Edwards, Thomas, 1739-1810 Gwaith Twm o'r Nant etext2776 Henry, O., 1862-1910 The Four Million etext2795 Ollivant, Alfred, 1874-1927 Bob, Son of Battle etext2800 Koran. English etext2808 Cicero, Marcus Tullius, 106 BC-43 BC Treatises on Friendship and Old Age etext2874 Twain, Mark, 1835-1910 Personal Recollections of Joan of Arc — Volume 1 etext2895 Twain, Mark, 1835-1910 Following the Equator etext2907 Galsworthy, John, 1867-1933 Joy etext2937 Huxley, Thomas Henry, 1825-1895 Coral and Coral Reefs etext2951 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 01: Childhood etext2953 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 03: Military Career etext2972 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 22: to London etext2993 Jones, Henry Festing, 1851-1928 Samuel Butler: a sketch etext3009 Narayanan, A. R. Truth and the Myth : Couplets quips etext3076 Reed, John, 1887-1920 Ten Days That Shook the World etext3095 Stoker, Bram, 1847-1912 The Lady of the Shroud etext3118 Warner, Charles Dudley, 1829-1900 Equality etext3124 Warner, Charles Dudley, 1829-1900 For Whom Shakespeare Wrote etext3136 Warner, Charles Dudley, 1829-1900 The Complete Project Gutenberg Writings of Charles Dudley Warner etext3162 Bangs, John Kendrick, 1862-1922 The Enchanted Typewriter etext3208 Honig, Winfried Mr. Honey's Medium Business Dictionary etext3215 Honig, Winfried Mr. Honey's Insurance Dictionary etext3270 Bunyan, John, 1628-1688 The Jerusalem Sinner Saved; or, Good News for the Vilest of Men etext3289 Doyle, Arthur Conan, Sir, 1859-1930 The Valley of Fear etext3412 Bird, Isabella L. (Isabella Lucy), 1831-1904 The Golden Chersonese and the Way Thither etext3435 Anonymous Arabian nights. English etext3463 Paine, Albert Bigelow, 1861-1937 The Boys' Life of Mark Twain etext3550 Trollope, Anthony, 1815-1882 La Mere Bauche etext3553 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 03 etext3585 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 05 etext3616 Trollope, Anthony, 1815-1882 O'Conors of Castle Conor etext3629 Dreiser, Theodore, 1871-1945 The Titan etext3640 Bennett, Arnold, 1867-1931 Literary Taste: How to Form It etext3648 Churchill, Winston, 1871-1947 The Dwelling Place of Light — Volume 3 etext3697 Swinburne, Algernon Charles, 1837-1909 A Century of Roundels etext3732 Lewis, Alfred Henry, 1857-1914 Wolfville etext3793 Mühlbach, L. (Luise), 1814-1873 Joseph II. and His Court etext3836 Wyss, Johann David, 1743-1818 Swiss Family Robinson etext3854 Montespan, Françoise-Athénaïs de Rochechouart de Mortemart, marquise de, 1641-1707 Memoirs of Madame de Montespan — Complete etext3856 Orleans, Charlotte-Elisabeth, duchesse d', 1652-1722 Memoirs of Louis XIV and His Court and of the Regency — Volume 02 etext3923 Droz, Gustave, 1832-1895 Monsieur, Madame, and Bebe — Volume 01 etext3954 Halévy, Ludovic, 1834-1908 L'Abbe Constantin — Volume 1 etext3955 Halévy, Ludovic, 1834-1908 L'Abbe Constantin — Volume 2 etext3978 Daudet, Alphonse, 1840-1897 Fromont and Risler — Volume 3 etext3979 Daudet, Alphonse, 1840-1897 Fromont and Risler — Volume 4 etext4010 Scott, Walter, Sir, 1771-1832 Marmion etext4028 Cellini, Benvenuto, 1500-1571 Autobiography of Benvenuto Cellini etext4064 Leacock, Stephen, 1869-1944 Moonbeams from the Larger Lunacy etext4066 Thoreau, Henry David, 1817-1862 Wild Apples etext4074 Haggard, Henry Rider, 1856-1925 Swallow: a tale of the great trek etext4139 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 20: January/February 1662-63 etext4147 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 27: March 1663-64 etext4154 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 33: January/February 1664-65 etext4210 White, Trumbull, 1868-1941 Our War with Spain for Cuba's Freedom etext4218 Cambridge, Ada, 1844-1926 Sisters etext4244 Bird, Isabella L. (Isabella Lucy), 1831-1904 Among the Tibetans etext4259 McElroy, John, 1846-1929 Andersonville — Volume 3 etext4269 Galsworthy, John, 1867-1933 Complete Plays of John Galsworthy etext4334 Malthus, T. R. (Thomas Robert), 1766-1834 Observations on the Effects of the Corn Laws, and of a Rise or Fall in the Price of Corn on the Agriculture and General Wealth of the Country etext4342 Solomon, Steve Organic Gardener's Composting etext4351 Bagehot, Walter, 1826-1877 The English Constitution etext4431 Meredith, George, 1828-1909 Evan Harrington — Volume 5 etext4434 Meredith, George, 1828-1909 Evan Harrington — Complete etext4458 Meredith, George, 1828-1909 Beauchamp's Career — Volume 6 etext4474 Meredith, George, 1828-1909 One of Our Conquerors — Volume 4 etext4486 Meredith, George, 1828-1909 The Amazing Marriage — Volume 4 etext4496 Meredith, George, 1828-1909 The Gentleman of Fifty etext4498 Meredith, George, 1828-1909 Miscellaneous Prose etext4548 Verne, Jules, 1828-1905 Cinq Semaines En Ballon etext4604 Gaboriau, Émile, 1832-1873 The Clique of Gold etext4646 Howells, William Dean, 1837-1920 Their Silver Wedding Journey — Complete etext4651 Voltaire, 1694-1778 Romans — Volume 5: L'Ingenue etext4677 Adams, F. Colburn (Francis Colburn) Our World, Or, the Slaveholder's Daughter etext4679 Johnson, Samuel, 1709-1784 Johnson's Lives of the Poets — Volume 1 etext4680 Adams, F. Colburn (Francis Colburn) Manuel Pereira etext4717 Verne, Jules, 1828-1905 Autour de la Lune etext4749 Beethoven, Ludwig van, 1770-1827 String Quartet No. 01 in F major Opus 18 etext4765 Galsworthy, John, 1867-1933 Loyalties etext4817 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 16: 1569-70 etext4820 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 19: 1572-73 etext4845 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1586b etext4864 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1592 etext4885 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce — Complete (1584-1609) etext5036 Coolidge, Calvin, 1872-1933 State of the Union Address etext5057 Galsworthy, John, 1867-1933 Plays : Third Series etext5077 Scott, Walter, Sir, 1771-1832 Marmion etext5102 Duncan, Sara Jeannette, 1862?-1922 The Path of a Star etext5148 Doyle, Arthur Conan, Sir, 1859-1930 Rodney Stone etext5247 Bennett, Arnold, 1867-1931 The Old Wives' Tale etext5249 Moritz, Karl Philipp, 1757-1793 Travels in England in 1782 etext5380 Churchill, Winston, 1871-1947 A Modern Chronicle — Volume 07 etext9567 Whittier, John Greenleaf, 1807-1892 Narrative and Legendary Poems, Complete etext5383 Churchill, Winston, 1871-1947 The Celebrity, Volume 01 etext5421 Sinclair, Upton, 1878-1968 The Metropolis etext5440 Ebers, Georg, 1837-1898 Uarda : a Romance of Ancient Egypt — Volume 02 etext5525 Ebers, Georg, 1837-1898 The Bride of the Nile — Volume 09 etext5568 Ebers, Georg, 1837-1898 Barbara Blomberg — Volume 08 etext5578 Ebers, Georg, 1837-1898 The Burgomaster's Wife — Volume 01 etext5606 Mundy, Talbot, 1879-1940 Guns of the Gods etext5657 Lawrence, of the Resurrection, Brother, 1610?-1691 The Practice of the Presence of God etext5684 Kant, Immanuel, 1724-1804 The Metaphysical Elements of Ethics etext5735 Kyne, Peter B. (Peter Bernard), 1880-1957 The Valley of the Giants etext5758 Jacobs, W. W. (William Wymark), 1863-1943 Many Cargoes etext5781 Alain-Fournier, 1886-1914 Le Grand Meaulnes etext5839 Twain, Mark, 1835-1910 Sketches New and Old, Part 4. etext5847 Crawford, F. Marion (Francis Marion), 1854-1909 The Heart of Rome etext5852 Sherman, William T. (William Tecumseh), 1820-1891 The Memoirs of General W. T. Sherman, Volume II., Part 3 etext5897 Trollope, Anthony, 1815-1882 Castle Richmond etext5899 Balzac, Honoré de, 1799-1850 The Physiology of Marriage, Part 2 etext5967 MacDonald, George, 1824-1905 What's Mine's Mine — Volume 2 etext5987 Merriman, Henry Seton, 1862-1903 In Kedar's Tents etext5992 Barker, Lady (Mary Anne), 1831-1911 Station Amusements in New Zealand etext6058 Tourgée, Albion Winegar, 1838-1905 Bricks Without Straw etext6098 Fielding, Henry, 1707-1754 Amelia — Complete etext6104 Barker, Lady (Mary Anne), 1831-1911 Station Life in New Zealand etext6109 McMurry, Frank M. (Frank Morton), 1862-1936 How to Study and Teaching How to Study etext6136 Chaplin, Ralph, 1887-1961 Bars and Shadows etext6137 Mawson, Douglas, Sir, 1882-1958 The Home of the Blizzard etext6212 Parker, Gilbert, 1862-1932 The Translation of a Savage, Volume 2 etext6299 Parker, Gilbert, 1862-1932 Carnac's Folly, Complete etext6392 Suetonius Tranquillus, Gaius, 75-160 The Lives of the Twelve Caesars, Volume 07: Galba etext6425 Beach, Rex Ellingwood, 1877-1949 Flowing Gold etext6524 Tagore, Rabindranath, 1861-1941 Stray Birds etext6661 Scott, Walter, Sir, 1771-1832 Waverley Novels — Volume 12 etext6706 Adams, Brooks, 1848-1927 The Emancipation of Massachusetts etext6712 Brouwer, P. A. S. van Limburg (Petrus Abraham Samuel van Limburg), 1829-1873 Akbar: een oosterse roman etext6729 Hegel, Georg Wilhelm Friedrich, 1770-1831 Wissenschaft der Logik — Band 1 etext6767 Hart, Albert Bushnell, 1854-1943 Formation of the Union, 1750-1829 etext6829 Lucian, of Samosata, 120-180 Works of Lucian of Samosata — Volume 03 etext7000 Kalevala etext7024 Scott, Walter, Sir, 1771-1832 Rob Roy — Volume 02 etext7073 Smith, Goldwin, 1823-1910 Specimens of Greek Tragedy — Aeschylus and Sophocles etext7087 Thompson, D. P., 1795-1868 Gaut Gurley etext7104 Twain, Mark, 1835-1910 Adventures of Huckleberry Finn, Chapters 21 to 25 etext7106 Twain, Mark, 1835-1910 Adventures of Huckleberry Finn, Chapters 31 to 35 etext7126 Morris, Alexander, 1826-1889 The Treaties of Canada with the Indians of Manitoba and the North-West Territories etext7138 Logan, John Alexander, 1826-1886 The Great Conspiracy, Volume 6 etext7151 Garibaldi, Giuseppe, 1807-1882 Clelia etext7157 Twain, Mark, 1835-1910 The Prince and the Pauper, Part 4. etext7173 France, Anatole, 1844-1924 Sur la pierre blanche etext7178 Proust, Marcel, 1871-1922 Swann's Way etext7180 Lover, Samuel, 1797-1868 Handy Andy, Volume 2 — a Tale of Irish Life etext7225 Shakespeare, William, 1564-1616 Die Irrungen, oder die Doppelten Zwillinge etext7252 Marble, Annie Russell The Women Who Came in the Mayflower etext7320 Rodenbough, Theo. F. Afghanistan and the Anglo-Russian Dispute etext7330 Liu, Xiang, 77? BC-6? BC 說苑, Volume 13-16 etext7455 Yan, Zhitui, 531-591 顔氏家訓 — Volume 03 and 04 etext7513 Andersen, H. C. (Hans Christian), 1805-1875 O. T. a Danish Romance etext7520 Burt, Katharine Newlin, 1882-1977 Snow-Blind etext7542 Ebers, Georg, 1837-1898 Images from the Works of Georg Ebers etext7574 Vigny, Alfred de, 1797-1863 Images from De Vigny's Cinq Mars etext7626 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Devereux — Volume 03 etext7646 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Ernest Maltravers — Volume 07 etext7648 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Ernest Maltravers — Volume 09 etext7701 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 A Strange Story — Complete etext7774 Sinclair, Upton, 1878-1968 The Journal of Arthur Stirling : the Valley of the Shadow etext7776 Buck, Charles Neville, 1879-1930 The Call of the Cumberlands etext7812 Staël, Madame de (Anne-Louise-Germaine), 1766-1817 Delphine etext7815 Kingsley, Charles, 1819-1875 Hereward, the Last of the English etext7856 Marks, Jeannette Augustus, 1875-1964 The Cheerful Cricket and Others etext7928 Atkins, Elizabeth, 1891- The Poet's Poet : essays on the character and mission of the poet as interpreted in English verse of the last one hundred and fifty years etext7933 Shakespeare, William, 1564-1616 König Heinrich der vierte etext7936 Finnemore, John, 1863-1915 Peeps at Many Lands: Japan etext7972 Lang, Andrew, 1844-1912 Homer and His Age etext7996 Grillparzer, Franz, 1791-1872 Der Traum ein Leben etext8020 Anonymous The Bible, King James version, Book 20: Proverbs etext8023 Anonymous The Bible, King James version, Book 23: Isaiah etext8031 Anonymous The Bible, King James version, Book 31: Obadiah etext8063 Anonymous The Bible, King James version, Book 63: 2 John etext8072 Rabb, Kate Milner, 1866-1937 National Epics etext8109 O'Grady, Standish, 1846-1928 Early Bardic Literature, Ireland. etext8124 Tumulty, Joseph P. Woodrow Wilson as I Know Him etext8140 Ingersoll, Robert Green, 1833-1899 Lectures of Col. R. G. Ingersoll, Volume I etext8200 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture etext8211 Hope, Laura Lee The Outdoor Girls at Wild Rose Lodge etext8236 Anonymous The World English Bible (WEB): 1 Samuel etext8237 Anonymous The World English Bible (WEB): 2 Samuel etext8239 Anonymous The World English Bible (WEB): 2 Kings etext8242 Anonymous The World English Bible (WEB): Ezra etext8250 Anonymous The World English Bible (WEB): Isaiah etext8295 Howells, William Dean, 1837-1920 Through the Eye of the Needle etext8311 The Bible, Douay-Rheims, Book 11: 3 Kings etext8351 The Bible, Douay-Rheims, Book 51: Acts etext8364 The Bible, Douay-Rheims, Book 64: Philemon etext8371 The Bible, Douay-Rheims, Book 71: 3 John etext8376 Lafayette, Marie Joseph Paul Yves Roch Gilbert Du Motier, marquis de, 1757-1834 Memoirs, Correspondence and Manuscripts of General Lafayette etext8378 etext8484 Various Scientific American Supplement, No. 430, March 29, 1884 etext8531 Edgeworth, Maria, 1767-1849 Tales and Novels — Volume 10 etext8549 Hichens, Robert Smythe, 1864-1950 The Woman with the Fan etext8557 Yeats, W. B. (William Butler), 1865-1939 Synge and the Ireland of His Time etext8576 Henty, G. A. (George Alfred), 1832-1902 By Sheer Pluck, a Tale of the Ashanti War etext8591 Canfield, Arthur Graves French Lyrics etext8612 Rockwood, Roy Through Space to Mars etext8625 Doyle, Arthur Conan, Sir, 1859-1930 The Sign of the Four etext8629 Doyle, Arthur Conan, Sir, 1859-1930 Sir Nigel etext8648 Various War Poetry of the South etext8676 Grand, Madame Sarah The Heavenly Twins etext8684 Moffett, Cleveland, 1863-1926 The Conquest of America etext8724 Zola, Émile, 1840-1902 The Three Cities Trilogy: Rome, Volume 4 etext8769 Burroughs, Edgar Rice, 1875-1950 The Efficiency Expert etext8774 Wordsworth, William, 1770-1850 Poems in Two Volumes, Volume 1 etext8786 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Hell, Volume 08 etext8795 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Purgatory, Complete etext8799 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Paradise, Complete etext8819 Baring-Gould, S. (Sabine), 1834-1924 In Troubadour-Land etext8821 Burton, Richard Francis, Sir, 1821-1890 To the Gold Coast for Gold etext8852 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, 3 John etext8855 Hill, J. H. Astral Worship etext8874 Warner, Susan, 1819-1885 Queechy etext8917 Storm, Theodor, 1817-1888 Von Kindern und Katzen, und wie sie die Nine begruben etext8919 Storm, Theodor, 1817-1888 Pole Poppenspäler etext8951 Various Scientific American, Volume 17, No. 26 December 28, 1867 etext9019 Twain, Mark, 1835-1910 A Dog's Tale etext9020 Twain, Mark, 1835-1910 Those Extraordinary Twins etext9024 Twain, Mark, 1835-1910 The Man That Corrupted Hadleyburg and Other Stories etext9029 Twain, Mark, 1835-1910 Mark Twain's Speeches etext9079 Harris, Frank, 1856-1931 The Man Shakespeare etext9454 Feuillet, Raoul-Auger, 1660?-1710 Orchesography etext9505 Donnell, Annie Hamilton, 1862- Four Girls and a Compact etext9525 Thackeray, William Makepeace, 1811-1863 George Cruikshank etext9555 Doyle, Arthur Conan, Sir, 1859-1930 The Memoirs of Sherlock Holmes etext9581 Whittier, John Greenleaf, 1807-1892 Personal Poems I etext9583 Whittier, John Greenleaf, 1807-1892 Occasional Poems etext9592 Whittier, John Greenleaf, 1807-1892 Personal Sketches and Tributes, Part 2, from Volume VI., etext9620 Edgeworth, Maria, 1767-1849 Tales and Novels — Volume 06 etext9633 Ward, Humphry, Mrs., 1851-1920 Sir George Tressady — Volume I etext9660 Knox, John, 1514?-1572 The First Blast of the Trumpet against the monstrous regiment of Women etext9682 Defoe, Daniel, 1661?-1731 Essay Upon Projects etext9776 Cicero, Marcus Tullius, 106 BC-43 BC Cicero's Brutus or History of Famous Orators; also His Orator, or Accomplished Speaker. etext9779 Vance, Louis Joseph, 1879-1933 The Black Bag etext9786 Leverson, Ada, 1862-1933 Love's Shadow etext9862 Hastings, Milo M. (Milo Milton), 1884-1957 City of Endless Night etext9878 Carew, Richard, 1555-1620 The Survey of Cornwall etext9977 Gutzkow, Karl, 1811-1878 Berlin — Panorama einer Weltstadt etext10053 Féval, Paul, 1817-1887 La vampire etext10085 Anonymous Moorish Literature etext10113 D'Oliveira, E. (Elias), 1886-1944 De mannen van '80 aan het woord etext10167 Edison Concert Band Mr. Thomas Cat etext10174 Rossini, Gioacchino, 1792-1868 William Tell Overture, Pt. 2 etext10365 Cooper, James Fenimore, 1789-1851 Precaution etext10378 Mill, John Stuart, 1806-1873 Autobiography etext10390 Troward, T. (Thomas), 1847-1916 The Edinburgh Lectures on Mental Science etext10429 Gale, Zona, 1874-1938 Miss Lulu Bett etext10430 Lucian, of Samosata, 120-180 Trips to the Moon etext10489 An English Garner etext10495 Trask, Katrina, 1853-1922 Under King Constantine etext10579 Barnum, Vance Joe Strong the Boy Fire-Eater etext10713 Bullitt, William C. (William Christian), 1891-1967 The Bullitt Mission to Russia etext10790 Jacobs, W. W. (William Wymark), 1863-1943 Prize Money etext10833 Schopenhauer, Arthur, 1788-1860 The Essays of Arthur Schopenhauer; Religion, a Dialogue, Etc. etext10878 Riley, Harvey The Mule etext10881 Benson, E. F. (Edward Frederic), 1867-1940 Crescent and Iron Cross etext10922 Le Gallienne, Richard, 1866-1947 Young Lives etext10926 Jackson, Helen Hunt, 1830-1885 Saxe Holm's Stories etext10941 Dante Alighieri, 1265-1321 Jumalainen näytelmä: Helvetti etext10956 Morley, John, 1838-1923 Indian speeches (1907-1909) etext11027 etext11034 Richardson, James D. (James Daniel), 1843-1914 A Compilation of the Messages and Papers of the Presidents etext11044 Fénelon, François de Salignac de la Mothe-, 1651-1715 The Existence of God etext11046 Massis, Henri, 1886-1970 La vie d'Ernest Psichari etext11063 Hope, Anthony, 1863-1933 A Man of Mark etext11069 Barnum, Richard Squinty the Comical Pig etext11110 Marchant, Bessie, 1862-1941 A Countess from Canada etext11149 Anonymous Little Folded Hands etext11214 Webb, Frank J. The Garies and Their Friends etext11222 Various The Mirror of Literature, Amusement, and Instruction etext11232 Bairnsfather, Bruce, 1888?-1959 Bullets & Billets etext11369 Various The Mirror of Literature, Amusement, and Instruction etext11407 Various The Mirror of Literature, Amusement, and Instruction etext11471 Jacobs, W. W. (William Wymark), 1863-1943 Shareholders etext11478 Jacobs, W. W. (William Wymark), 1863-1943 Bedridden and the Winter Offensive etext11532 Allen, James Lane, 1849-1925 A Kentucky Cardinal etext11548 McClure's Magazine December, 1895 etext11638 Various Punch, or the London Charivari, Volume 153, July 18, 1917 etext11646 Gauguin, Eugène Henri Paul, 1848-1903 Noa Noa etext11719 Cable, George Washington, 1844-1925 Kincaid's Battery etext11784 Human Genome Project Chromosome Number 10 etext11837 Library of Congress. Copyright Office U.S. Copyright Renewals, 1968 January - June etext11910 Various Punch, or the London Charivari, Volume 153, August 8, 1917 etext11912 Richmond, Grace S. (Grace Smith), 1866-1959 The Brown Study etext11968 Lönnrot, Elias, 1802-1884 Kansanlauluja etext11977 Wallace, W. Stewart (William Stewart), 1884-1970 The United Empire Loyalists : A Chronicle of the Great Migration etext12002 Grote, George, 1794-1871 Review of the Work of Mr John Stuart Mill Entitled, 'Examination of Sir William Hamilton's Philosophy.' etext12082 Webster, Bob Color Images from Mars Rovers etext12206 Jacobs, W. W. (William Wymark), 1863-1943 Breaking a Spell etext12236 Manly, William Lewis Death Valley in '49 etext12279 Chambers, Robert W. (Robert William), 1865-1933 The Maid-At-Arms etext12308 Henty, G. A. (George Alfred), 1832-1902 Winning His Spurs etext12363 Salisbury, William, -1823 The Botanist's Companion, Volume II etext12366 Richards, Ellen H. The Cost of Shelter etext12373 Various The Atlantic Monthly, Volume 01, No. 05, March, 1858 etext12405 Castlemon, Harry, 1842-1915 Frank, the Young Naturalist etext12421 Buehler, Huber Gray, 1864-1924 Practical Exercises in English etext12488 Révoil, Bénédict H. Nouveaux contes extraordinaires etext12521 Various The Mirror of Literature, Amusement, and Instruction etext12569 Mair, Charles, 1838-1927 Through the Mackenzie Basin etext12643 Benson, Stella, 1892-1933 Twenty etext12653 Lodge, Henry Cabot, 1850-1924 George Washington, Volume II etext12656 Hayes, Clair W. (Clair Wallace), 1887- The Boy Allies at Liege etext12659 Hurst, Fannie, 1889-1968 The Vertical City etext12666 Sand, George, 1804-1876 Consuelo, Tome 1 (1861) etext12673 Bennett, Arnold, 1867-1931 The Pretty Lady etext12683 Cholmondeley, Alice Christine etext12749 Faguet, Émile, 1847-1916 Études Littéraires - XVIIIe siècle. etext12785 Various The Atlantic Monthly, Volume 11, No. 64, February, 1863 etext12787 Talbot, Henry P. An Introductory Course of Quantitative Chemical Analysis etext12817 Dowden, Edward, 1843-1913 Robert Browning etext12872 Various Punch, or the London Charivari, Volume 100, January 24, 1891 etext12892 Mead, George Robert Stowe, 1863-1933 Simon Magus etext12902 Leadbeater, C. W. (Charles Webster), 1854-1934 A Textbook of Theosophy etext12918 Inostrantzev, Konstantin Aleksandrovich, 1876-1941 Iranian Influence on Moslem Literature, Part I etext12921 Bjørnson, Bjørnstjerne, 1832-1910 Gesammelte Werke in fünf Bänden — 1. Band etext12938 Driscoll, James R. [pseud.] The Brighton Boys with the Flying Corps etext12959 Marryat, Frederick, 1792-1848 Newton Forster etext12971 Bosher, Kate Langley, 1865-1932 The Man in Lonely Land etext9126 etext12990 Cooper, James Fenimore, 1789-1851 A Residence in France etext13051 Silver, Jacob Mortimer Wier Sketches of Japanese Manners and Customs etext13148 Marryat, Frederick, 1792-1848 Peter Simple; and, The Three Cutters, Vol. 1-2 etext13199 Various The Mirror of Literature, Amusement, and Instruction etext13226 Abbott, Frank Frost, 1860-1924 The Common People of Ancient Rome etext13314 Gunning, Susannah Minific Barford Abbey etext13332 Benson, Luther Fifteen Years in Hell etext13354 Henty, G. A. (George Alfred), 1832-1902 The Boy Knight etext13405 Marryat, Frederick, 1792-1848 Monsieur Violet etext13420 Dingle, Edwin John, 1881-1972 Across China on Foot etext13503 Various Punch, or the London Charivari, Volume 101, August 29, 1891 etext13521 Various Notes and Queries, Number 09, December 29, 1849 etext13572 Dumas fils, Alexandre, 1824-1895 The Son of Clemenceau etext13578 Various The Mirror of Literature, Amusement, and Instruction etext13630 As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1882-06/07) etext13635 Various New York Times, Current History, Vol 1, Issue 1 etext13708 Holliday, Robert Cortes Walking-Stick Papers etext13747 Various Notes and Queries, Number 25, April 20, 1850 etext13778 Hubbard, Elbert, 1856-1915 Little Journeys to the Homes of the Great - Volume 02 etext13783 Bonner, Richard The Boy Inventors' Radio Telephone etext13800 Anonymous The Pleasures of a Single Life, Or, The Miseries of Matrimony etext13876 Allen, Grant, 1848-1899 The Great Taboo etext13893 McKinley, William, 1843-1901 Compilation of the Messages and Papers of the Presidents etext13976 Canth, Minna, 1844-1897 Köyhää kansaa; Salakari etext13979 Marx, W.J. For The Admiral etext13983 Guerber, H. A. (Hélène Adeline), 1859-1929 The Book of the Epic etext14006 etext14042 Boer, T. Tj. de Een vliegreisje in het Land der Rijzende Zon etext14072 Tyler, James Endell, 1789-1851 Primitive Christian Worship etext14087 Casserly, Gordon The Jungle Girl etext14154 Birkhead, Edith The Tale of Terror etext14175 Cheley, F. H. Buffalo Roost etext14227 etext14287 Verne, Jules, 1828-1905 L'île mystérieuse etext14338 Hearn, Lafcadio, 1850-1904 Books and Habits from the Lectures of Lafcadio Hearn etext14380 Masson, David, 1822-1907 The Life of John Milton, Volume 5 (of 7), 1654-1660 etext14387 Leino, Eino, 1878-1926 Onnen orja etext14431 Various International Miscellany of Literature, Art and Science, Vol. 1, etext14524 Various Lippincott's Magazine Of Popular Literature And Science etext14550 Doré, Gustave, 1832-1883 Two Hundred Sketches Humorous and Grotesque etext14607 Reuter, Fritz, 1810-1874 Kahden talonpojan ulkomaan-matka etext14625 etext14669 Locke, William John, 1863-1930 Jaffery etext14670 Almqvist, Carl Jonas Love, 1793-1866 Det går an etext14731 Ashton, Warren T. Hatchie, the Guardian Slave; or, The Heiress of Bellevue etext14744 Various Different Girls etext14760 New Zealand. Special Committee on Moral Delinquency in Children and Adolescents Report of the Special Committee on Moral Delinquency in Children and Adolescents etext14826 Spence, Lewis, 1874-1955 Mythen en Legenden van Egypte etext14927 Various Punch, or the London Charivari, Volume 1, September 12, 1841 etext14939 Various Punch, or the London Charivari, Volume 1, December 4, 1841 etext14940 Various Punch, or the London Charivari, Volume 1, December 11, 1841 etext15015 Thomas, William I., 1863-1947 Sex and Society etext15025 Le Gallienne, Richard, 1866-1947 Prose Fancies etext15075 Proust, Marcel, 1871-1922 Sodome et Gomorrhe - Deuxième partie etext15093 Daviess, Maria Thompson, 1872-1924 Phyllis etext15140 Washington's Birthday etext15192 Harte, Bret, 1836-1902 Salomy Jane etext15260 Clarkson, Thomas, 1760-1846 A Portraiture of Quakerism, Volume 1 etext15309 Rabinal-Achi etext15326 Various The Great Round World and What Is Going On In It, Vol. 1, No. 16, February 25, 1897 etext15345 The Great Events by Famous Historians, Volume 04 etext15428 Various The Great Round World and What Is Going On In It, Vol. 1, No. 20, March 25, 1897 etext15435 etext15436 etext15514 Järnefelt, Arvid, 1861-1932 Maaemon lapsia etext15525 Rutherford, Mark, 1831-1913 Miriam's Schooling and Other Papers etext15631 Various The Great Round World and What Is Going On In It, Vol. 1, No. 31, June 10, 1897 etext15647 Various The American Missionary — Volume 44, No. 05, May, 1890 etext15696 Southwell, Charles Superstition Unveiled etext15722 Sinclair, May, 1863-1946 The Tysons etext15761 Wicksell, Knut, 1851-1926 Om utvandringen, dess betydelse och orsaker etext15839 Meade, L. T., 1854-1914 The Rebel of the School etext15855 etext15938 Watson, Henry C. The Yankee Tea-party etext16000 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 The Ship of Stars etext16037 Various Great Epochs in American History, Volume I. etext16107 Various Punch, or the London Charivari, Vol. 158, 1920-01-14 etext16130 New Zealand. Court of Appeal Judgments of the Court of Appeal of New Zealand on Proceedings to Review Aspects of the Report of the Royal Commission of Inquiry into the Mount Erebus Aircraft Disaster etext16147 Various The American Missionary — Volume 43, No. 07, July, 1889 etext16153 Various The American Missionary — Volume 43, No. 08, August, 1889 etext16213 Various Punch, or the London Charivari, Vol. 158, 1920-04-21 etext16270 Various Scientific American Supplement, No. 623, December 10, 1887 etext16314 Topelius, Zacharias, 1818-1898 Lukemisia lapsille 2 etext16434 Fröbel, Friedrich, 1782-1852 Autobiography of Friedrich Froebel $c translated and annotated by Emilie Michaelis ... and H. Keatley Moore. etext16451 The Philippine Islands, 1493-1898 — Volume 23 of 55 etext16513 World's War Events $v Volume 3 etext16548 Moore, Thomas, 1779-1852 Life of Lord Byron, Vol. 3 etext16615 Russell, George William, 1867-1935 By Still Waters etext16623 Stewart, Elinore Pruitt, 1878- Letters of a Woman Homesteader etext16675 Kilpatrick, James Alexander Tommy Atkins at War etext16680 Various The Onlooker, Volume 1, Part 2 etext16745 Russell, George William Erskine, 1853-1919 Matthew Arnold etext16747 Wrong, George McKinnon, 1860-1948 A Canadian Manor and Its Seigneurs etext16771 Egbert, H. M., [pseud.], 1879-1960 Jacqueline of Golden River etext16791 etext16869 Ellis, Edward Sylvester, 1840-1916 Oonomoo the Huron etext16884 Jarry, Alfred, 1873-1907 Ubu Roi etext16899 Rivera, Jose Maria, 1882- Sa Tabi ng Bangin etext16922 Herculano, Alexandre, 1810-1877 Opúsculos por Alexandre Herculano - Tomo 02 etext16957 Surtees, Robert Smith, 1803-1864 Mr. Sponge's Sporting Tour etext17041 Wells, Frederic DeWitt, 1874-1929 The Man in Court etext17139 Snoek, Johan Martinus, 1920- De Nederlandse kerken en de joden etext17193 Nobre, António Pereira, 1867-1900 Só etext17207 etext17219 Carner, Josep, 1884-1970 La creació d'Eva i altres contes etext17229 Various The Haunted Hour etext17251 Sand, George, 1804-1876 Valentine etext17278 Jessup, Henry Harris, 1832-1910 The Women of the Arabs etext17324 Maspero, G. (Gaston), 1846-1916 History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 4 (of 12) etext17402 MacGrath, Harold, 1871-1932 The Adventures of Kathlyn etext17410 Roig i Raventós, Josep, 1883-1966 Ànimes atuïdes etext17451 Mallery, Garrick, 1831-1894 Sign Language Among North American Indians Compared With That Among Other Peoples And Deaf-Mutes etext17464 Ferris, George T. (George Titus), 1840- Great Singers, First Series etext17465 Ferris, George T. (George Titus), 1840- Great Singers, Second Series etext17487 Mindeleff, Cosmos, 1863- Casa Grande Ruin etext17492 Hope, Laura Lee Six Little Bunkers at Cousin Tom's etext17519 Hugo, Victor, 1802-1885 Les misérables Tome V etext17621 Conrad, Joseph, 1857-1924 One Day More etext17631 Cim, Albert, 1845-1924 Histoire d'un baiser etext17669 Durivage, Francis A. (Francis Alexander), 1814-1881 The Three Brides, Love in a Cottage, and Other Tales etext17675 Dickens, Charles, 1812-1870 Le magasin d'antiquités, Tome I etext17683 Various The Prairie Farmer, Vol. 56, No. 2, January 12, 1884 etext17701 Marguerite, Queen, consort of Henry II, King of Navarre, 1492-1549 The Tales Of The Heptameron, Vol. I. (of V.) etext17717 Corbière, Édouard, 1793-1875 Le Négrier, Vol. IV etext17729 Drielst, J. van Dagboek van mijne reis door het binnenland van Honduras naar Guatemala etext17813 Floyd, Thomas Hope, 1896-1973 At Ypres with Best-Dunkley etext17819 Erckmann-Chatrian L'amic Fritz etext17838 Marinetti, Filippo Tommaso, 1876-1944 L'aeroplano del papa etext17850 Mulazzi, Virginia La pergamena distrutta etext17858 Barrili, Anton Giulio, 1836-1908 Il ritratto del diavolo etext17866 Piper, H. Beam, 1904-1964 Murder in the Gunroom etext17907 Colombi, marchesa, 1840-1920 Tempesta e bonaccia etext17924 Aina, 1856-1928 Iltalampun ääressä I etext17928 Remy, Arthur F. J., 1871-1954 The Influence of India and Persia on the Poetry of Germany etext17998 Haldane, R. B. Haldane (Richard Burdon Haldane), Viscount, 1856-1928 Before the War etext18000 Trollope, Anthony, 1815-1882 Phineas Finn etext18065 Noble, Alfred, 1844-1914 Transactions of the American Society of Civil Engineers, Vol. LXVIII, Sept. 1910 etext18113 Ségur, Philippe-Paul, comte de, 1780-1873 History of the Expedition to Russia etext18147 Gaubius, Hieronymus David, 1705-1780 Inaugureele Rede etext18225 Comstock, Harriet T. (Harriet Theresa), 1860- The Shield of Silence etext18227 Lazell, Frederick John, 1870-1940 Some Spring Days in Iowa etext18274 A Book of Natural History etext18383 Spooner, Shearjashub, 1809-1859 Anecdotes of Painters, Engravers, Sculptors and Architects and Curiosities of Art (Vol. 3 of 3) etext18389 Anonymous Thuringen etext18391 Anonymous The Moravians in Labrador etext18399 Spillman, Joseph, 1842-1905 The Shipwreck etext18402 Dumas père, Alexandre, 1802-1870 La San-Felice, Tome III etext18421 Hope, Laura Lee Bunny Brown and His Sister Sue Keeping Store etext18473 Leino, Kasimir, 1866-1919 Prosper Mérimée etext18519 Daniel, João Manifesto da Serenissima Sr Rainha de Hungria, e Bohemia, Arquiduqueza de Austria, etc. etext18521 Anonymous An Expository Outline of the "Vestiges of the Natural History of Creation" etext18547 Pearce, Charles Edward, -1924 Madame Flirt etext18568 Elster, Kristian, 1841-1881 Vaarallista väkeä etext18583 Assollant, Alfred, 1827-1886 Brancas; Les amours de Quaterquem etext18638 Ideal Commonwealths etext18664 Sharp, Dallas Lore, 1870-1929 The Hills of Hingham etext18678 Optic, Oliver, 1822-1897 A Victorious Union etext18688 Warner, Susan, 1819-1885 Daisy in the Field etext18710 Aina, 1856-1928 Kotona Kerttulassa etext18723 Undiano y Gastelu, Sebastian Proyecto de traslacion de las fronteras de Buenos Aires al Rio Negro y Colorado etext18735 The Little Red Hen etext18780 Lee, Sidney, Sir, 1859-1926 Shakespeare and the Modern Stage etext18795 Bensel, John A. Transactions of the American Society of Civil Engineers, Vol. LXX, Dec. 1910 etext18835 Whitehead, Alfred North, 1861-1947 The Concept of Nature etext18859 MacDonald, George, 1824-1905 Cross Purposes and The Shadows etext18931 Fowke, Gerard, 1855-1933 Archeological Investigations etext18998 Various Väinölä etext18999 Various Chambers's Edinburgh Journal, No. 440 etext19033 Carroll, Lewis, 1832-1898 Alice's Adventures in Wonderland etext19051 Atkins, Gaius Glenn, 1868-1956 Modern Religious Cults and Movements etext19069 Hume, Fergus, 1859-1932 The Silent House etext19082 Alger, William Rounseville, 1822-1905 The Destiny of the Soul etext19088 Krohn, Julius, 1835-1888 Maksimilian Aukusti Myhrberg etext19093 Various Lippincott's Magazine of Popular Literature and Science, Volume 22. October, 1878. etext19105 Various Punch, or the London Charivari, Volume 159, December 1, 1920 etext19155 MacCauley, Clay, 1843-1925 The Seminole Indians of Florida etext19183 Ibsen, Henrik, 1828-1906 Hedda Gabler etext19234 Méneval, Claude-François, 1778-1850 Récit d'une excursion de l'impératrice Marie-Louise aux glaciers de Savoie en juillet 1814 etext19248 France, Anatole, 1844-1924 Opinions sociales etext19276 Shoghi Effendi, 1897-1957 High Endeavours: Messages to Alaska etext19304 etext19351 Snell, Roy J. (Roy Judson), 1878-1959 Curlie Carson Listens In etext19366 Anonymous Punky Dunk and the Spotted Pup etext19420 Clutton-Brock, A. (Arthur), 1868-1924 The Cathedral Church of York etext19475 Rinehart, Mary Roberts, 1876-1958 Tenting To-night etext19546 Philipson-Radersma, J. De beklimming van den Fuji-yama etext19609 Clayton, Joseph, 1868- The Rise of the Democracy etext19639 Anonymous Book of Esther etext19799 United States. Council of National Defense. Highway Transport Committee The Rural Motor Express etext19898 Martí, José, 1853-1895 La Edad de Oro: publicación mensual de recreo e instrucción dedicada a los niños de América. etext19942 Voltaire, 1694-1778 Candide etext19973 The Mabinogion Vol. 2 etext19998 Allen, Lewis Falley, 1800-1890 Rural Architecture etext20005 Davis, Noah, 1804- A Narrative of the Life of Rev. Noah Davis, A Colored Man etext20009 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 Ixion In Heaven etext20036 Nesbit, E. (Edith), 1858-1924 Five Children and It etext20054 Dougall, Lily, 1858-1923 The Mermaid etext20059 Wallace, Dillon, 1863-1939 Left on the Labrador etext20123 Van Dyke, Henry, 1852-1933 Golden Stars etext20149 Anonymous Paródia ao primeiro canto dos Lusíadas de Camões por quatro estudantes de Évora em 1589 etext20162 Ibsen, Henrik, 1828-1906 La kolonoj de la socio etext20206 Velimirović, Nikolai, 1880-1956 The Agony of the Church (1917) etext20246 Musset, Alfred de, 1810-1857 Oeuvres complètes de Alfred de Musset - Tome 3 etext20251 Leighton, John, 1822-1912 Christmas Comes but Once A Year etext20320 Hemyng, Bracebridge, 1841-1901 Jack Harkaway's Boy Tinker Among The Turks etext20357 Webster, Jean, 1876-1916 Jerry etext20408 Various Notes and Queries, Number 185, May 14, 1853 etext20428 Adams, Nehemiah, 1806-1878 Bertha and Her Baptism etext20501 Zschokke, Heinrich, 1771-1848 Kun rauhan mies sotaa kävi etext20515 Brady, Cyrus Townsend, 1861-1920 The Eagle of the Empire etext20517 Jääskeläinen, Kaapro, 1862-1932 Iloisia juttuja I etext20519 Smith, George O. (George Oliver), 1911-1981 Highways in Hiding etext20682 Austen, Jane, 1775-1817 Northanger Abbey etext20694 Veblen, Thorstein, 1857-1929 An Inquiry Into The Nature Of Peace And The Terms Of Its Perpetuation etext20718 Glyn, Elinor, 1864-1943 The Damsel and the Sage etext20719 Richmond, Grace S. (Grace Smith), 1866-1959 Under the Country Sky etext20774 The Shanty Book, Part I, Sailor Shanties etext20867 Barbier, Emile Bolivia.—Een in wording zijnde Staat aan den Stillen Oceaan etext20886 Joseph Fiévée Frédéric etext20912 Wallace, Edgar, 1875-1932 The Daffodil Mystery etext20917 Husmann, George The Cultivation of The Native Grape, and Manufacture of American Wines etext20960 Harraden, Beatrice, 1864-1936 Yksillä juurilla etext20966 Itard, Jean De l'éducation d'un homme sauvage etext20996 Eley, P. H. An Epoch in History etext21003 Sweeting, W. D. (Walter Debenham), 1839-1913 Bell's Cathedrals: The Cathedral Church of Ely etext21049 Garis, Howard Roger, 1873-1962 The Curlytops and Their Pets etext21059 Collingwood, Harry, 1851-1922 The Adventures of Dick Maitland etext21074 Leslie, Lawrence J. Afloat on the Flood etext21079 Connolly, James B. (James Brendan), 1868-1957 The Trawler etext21133 Wilson, Theodore P. True to his Colours etext21167 Brooke, L. Leslie (Leonard Leslie), 1862-1940 The Golden Goose Book etext21208 Creswell, R. J. Among the Sioux etext21246 Young, Egerton Ryerson, 1840-1909 Winter Adventures of Three Boys etext21279 Vonnegut, Kurt, 1922-2007 2 B R 0 2 B etext21321 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 Before the Dawn etext21354 Fenn, George Manville, 1831-1909 Menhardoc etext21432 Beaumont, Grace Aunt Judith etext21548 Ouida, 1839-1908 Ystävykset etext21552 Marryat, Frederick, 1792-1848 Masterman Ready etext21564 Lamas Carvajal, Valentín, 1849-1906 Catecismo d'a Doutrina Labrega etext21581 Braga, Alberto Leal Barradas Monteiro, 1851-1911 Contos d'Aldeia etext21607 Hall, Charles W. Adrift in the Ice-Fields etext21609 Rowe, Henry Kalloch Society etext21610 Pollyen, Howard D. The Secret of the Creation etext21651 Blasco Ibáñez, Vicente, 1867-1928 Los muertos mandan etext21664 Castlemon, Harry, 1842-1915 George at the Fort etext21681 Brady, Cyrus Townsend, 1861-1920 A Little Traitor to the South etext21684 Herculano, Alexandre, 1810-1877 Opúsculos por Alexandre Herculano - Tomo 08 etext21688 Butler, Dugald, 1862-1926 Scottish Cathedrals and Abbeys etext21701 Ballantyne, R. M. (Robert Michael), 1825-1894 The Settler and the Savage etext21729 Ballantyne, R. M. (Robert Michael), 1825-1894 Dusty Diamonds Cut and Polished etext21791 Barber, H. (Horatio), 1875-1964 The Aeroplane Speaks etext21808 Field, Eugene, 1850-1895 The House etext21813 Ballantyne, R. M. (Robert Michael), 1825-1894 The Madman and the Pirate etext21823 etext21824 Green, Anna Katharine, 1846-1935 The Old Stone House and Other Stories etext21875 May, Karl Friedrich, 1842-1912 De schat in het Zilvermeer etext21879 Rohmer, Sax, 1883-1959 The Sins of Séverac Bablon etext21913 Stoddard, William Osborn, 1835-1925 The Talking Leaves etext21980 Arundel, Louis Motor Boat Boys Mississippi Cruise etext22004 Potter, Margaret Horton The Genius etext22015 Haggard, Henry Rider, 1856-1925 As Minas de Salomão etext22059 France, Anatole, 1844-1924 Balthasar and Other Works - 1909 etext22117 Landor, Arnold Henry Savage, 1865-1924 Across Coveted Lands etext22160 Stern, Sigmon Studien und Plaudereien etext22174 Morison, William Andrew Melville etext22176 Sparks, David R. The Winged Men of Orcon etext22188 Terence The Comedies of Terence etext22272 Murray, David Christie, 1847-1907 Young Mr. Barter's Repentance etext22349 Blackwood, Algernon, 1869-1951 The Camp of the Dog etext22380 Various Punch, or the London Charivari, Volume 104, March 4, 1893 etext22465 Dickens, Charles, 1812-1870 Der Weihnachtsabend etext22480 Lawrence, D. H. (David Herbert), 1885-1930 The Prussian Officer etext22555 etext22685 United States Patent Office The Classification of Patents etext22713 Bellamy, Edward, 1850-1898 With The Eyes Shut etext22730 Negreiros, José Sobral de Almada, 1893-1970 O Jardim da Pierrette etext22776 Baker, Lieut.-Col. B. Granville From a Terrace in Prague etext22825 Herford, Oliver, 1863-1935 The Smoker's Year Book etext22836 Mitford, Mary Russell, 1787-1855 Town Versus Country etext22858 The Epistle of Paul the Apostle to the Philippians etext22862 The First Epistle of Paul the Apostle to Timothy etext22863 The Second Epistle of Paul the Apostle to Timothy etext22889 Quinton, Marie Le Journal de la Belle Meunière etext22892 Cole, Everett B., 1918-1977 The Best Made Plans etext22917 Guilmin, Adrien Leçons de cosmographie etext23072 Kingston, William Henry Giles, 1814-1880 The Voyage of the "Steadfast" etext23075 Baum, L. Frank (Lyman Frank), 1856-1919 Ozma of Oz etext23130 Walton, Amy, 1848-1899 Black, White and Gray etext23141 Hutcheson, John C. (John Conroy) The Island Treasure etext23144 Reid, Mayne, 1818-1883 The War Trail etext23147 Clinton, Ed M., 1926-2006 Untechnological Employment etext23193 Reid, Mayne, 1818-1883 The White Chief etext23308 Peterson, Don The White Feather Hex etext23323 Robertson, Margaret M. (Margaret Murray), 1821-1897 Stephen Grattan's Faith etext23324 Burnett, Frances Hodgson, 1849-1924 "Surly Tim" etext23377 Ballantyne, R. M. (Robert Michael), 1825-1894 The Lively Poll etext23384 Ballantyne, R. M. (Robert Michael), 1825-1894 Gascoyne, the Sandal-Wood Trader etext23450 Delamotte, F. (Freeman), 1814-1862 The Book of Ornamental Alphabets, Ancient and Medieval, from the Eighth Century etext23498 Collingwood, Harry, 1851-1922 The Pirate Slaver etext23523 Hall, Edith King Adventures in Toyland etext23569 Burnett, Alice Hale Christmas Holidays at Merryvale etext23573 etext23575 Kingston, William Henry Giles, 1814-1880 Adventures in Africa etext23586 Camacho, Jorge La liturgio de l' foiro etext23612 Leinster, Murray, 1896-1975 The Leader etext23624 Norton, Andre, 1912-2005 Ride Proud, Rebel! etext23650 Sweetser, Kate Dickinson, -1939 Ten Boys from History etext23683 Leslie, Madeline, 1815-1893 Bertie's Home etext23706 Buchan, John, 1875-1940 Greenmantle etext23713 Burroughs, Edgar Rice, 1875-1950 Warlord of Mars etext23738 Ingram, Eleanor M. (Eleanor Marie), 1886-1921 The Thing from the Lake etext23744 Stoddard, William Osborn, 1835-1925 Ahead of the Army etext23767 Fyfe, Horace Brown, 1918-1997 The Talkative Tree etext23786 Douglas, Amanda Minnie, 1831-1916 A Little Girl in Old Boston etext23789 Southworth, Emma Dorothy Eliza Nevitte, 1819-1899 Cruel As The Grave etext23850 Liu, E, 1857-1909 老殘遊記 etext23851 Viterbo, Francisco Marques Sousa, 1843-1910 A gravura em Portugal etext23899 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Psmith in the City etext23909 Han, Ying, fl. 150 B.C. 韓詩外傳 etext23940 Huysmans, J.-K. (Joris-Karl), 1848-1907 Un dilemme etext23949 Lu, Yu, 733-804 茶經 etext23995 Knox, Thomas Wallace, 1835-1896 The Land of the Kangaroo etext24001 Napheys, George H. (George Henry), 1842-1876 The Physical Life of Woman: etext24020 Eliot, George, 1819-1880 Romola etext24095 Various Punch, or the London Charivari, Vol. 158, 1920-05-12 etext24096 Huysmans, J.-K. (Joris-Karl), 1848-1907 En Route etext24112 Wang, Guowei, 1877-1927 人間詞話 etext24237 Rae, John, 1882-1963 Grasshopper Green and the Meadow Mice etext24295 Zhang, Zhuo, ca. 660-ca. 740 遊仙窟 etext24300 Anonymous La danse macabre des femmes etext24315 Müller, F. Max (Friedrich Max), 1823-1900 The Silesian Horseherd - Questions of the Hour etext24320 La Marche, Olivier de, ca. 1426-1502 Le chevalier délibéré etext24365 Nordenskiöld, A. E. (Adolf Erik), 1832-1901 The Voyage of the Vega round Asia and Europe, Volume I and Volume II etext24370 Reynolds, Mack, 1917-1983 Mercenary etext24461 Gandhi, Mahatma, 1869-1948 Third class in Indian railways etext24466 Blasco Ibáñez, Vicente, 1867-1928 El intruso etext24477 Various The Nursery, April 1873, Vol. XIII. etext24489 Snell, Roy J. (Roy Judson), 1878-1959 Little White Fox and his Arctic Friends etext24580 Street, Julian, 1879-1947 Ship-Bored etext24630 Le Sage, Alain René, 1668-1747 De Zonderlinge Lotgevallen van Gil Blas van Santillano, deel 2 van 2 etext24644 Anonymous Harry's Ladder to Learning etext24714 Eells, Elsie Spicer, 1880- Fairy Tales from Brazil etext24822 Jewett, Sarah Orne, 1849-1909 The Queen's Twin and Other Stories etext24835 Becke, Louis, 1855-1913 Rídan The Devil And Other Stories etext24839 Leblanc, Maurice, 1864-1941 The Blonde Lady etext24880 Robertson, Morgan, 1861-1915 The Wreck of the Titan etext24911 Mott, Walter Fenton Young Glory and the Spanish Cruiser etext24964 Higgin, L. Handbook of Embroidery etext25004 Dawson, Sarah Morgan, 1842-1909 A Confederate Girl's Diary etext25011 Marlitt, E. (Eugenie), 1825-1887 Amtmannin Maria etext25138 Cremer, Jacobus Jan, 1827-1880 Dokter Helmond en zijn vrouw etext25149 Lenormant, François, 1837-1883 Histoire ancienne de l'Orient jusqu'aux guerres médiques (1-6) etext25151 Alger, Horatio, 1832-1899 Slow and Sure etext25236 Huangbo, -850 筠州黃檗山斷際禪師傳法心要 etext25267 Flammarion, Camille, 1842-1925 Astronomy for Amateurs etext25287 Gong, Pingzhong, 11th cent. 續世說 etext25323 Zuiyueshanren, fl. 1804-1876 狐狸緣全傳 etext25339 Lamartine, Alphonse de, 1790-1869 Atheism Among the People etext25373 etext25411 France, Anatole, 1844-1924 The Seven Wives Of Bluebeard etext25424 Fletcher, J. S. (Joseph Smith), 1863-1935 In the Mayor's Parlour etext25472 Paine, Ralph Delahaye, 1871-1925 Blackbeard: Buccaneer etext25559 Lu, Xun, 1881-1936 中國小說史略 etext25560 Various Punch, or the London Charivari, Vol. 146, June 24, 1914 etext25565 Mitchell, Langdon Elwyn, 1862-1935 Representative Plays by American Dramatists: 1856-1911: The New York Idea etext25588 Van Metre, Thurman William, 1884-1961 Outline of the development of the internal commerce of the United States etext25598 Cromwell, Emma Guy, 1865-1952 Citizenship etext25629 Silverberg, Robert, 1935- Postmark Ganymede etext25644 Garrett, Randall, 1927-1987 The Man Who Hated Mars etext25720 Acton, John Emerich Edward Dalberg Acton, Baron, 1834-1902 A Lecture on the Study of History etext25729 May, Karl Friedrich, 1842-1912 Travel Tales in the Promised Land (Palestine) etext25735 Various The Brochure Series of Architectural Illustration etext25740 Wilson, Ann Ambush etext25779 Seltzer, Charles Alden, 1875-1942 'Drag' Harlan etext25795 Chesterton, G. K. (Gilbert Keith), 1874-1936 Lord Kitchener etext25842 Mansfield, M. F. (Milburg Francisco), 1871- Royal Palaces and Parks of France etext25897 Ruskin, John, 1819-1900 Aratra Pentelici, Seven Lectures on the Elements of Sculpture etext25908 Boynton, Henry Walcott, 1869-1947 Washington Irving etext25954 Burnham, Clara Louise, 1854-1927 The Opened Shutters etext26013 Northern Nut Growers Association Report of the Proceedings at the 41st Annual Meeting etext26083 Alger, Horatio, 1832-1899 Luke Walton etext26131 Carnegie, Andrew, 1835-1919 James Watt etext26161 Pu, Songling, 1640-1715 醒世姻緣 etext26163 Bergson, Henri, 1859-1941 Evolution créatrice. English etext26219 Ballantyne, R. M. (Robert Michael), 1825-1894 The Dog Crusoe and His Master etext26241 Moore, Leslie Antony Gray,—Gardener etext26246 Wells, H. G. (Herbert George), 1866-1946 The Invisible Man etext26252 Twain, Mark, 1835-1910 The Prince and the Pauper etext26283 Footner, Hulbert, 1879-1944 The Huntress etext26422 Great Men and Famous Women. Vol. 2 etext26435 Martial, d'Auvergne, -1508 L'amant rendu cordelier a l'observance d'amour etext26453 Sacchi, Defendente, 1796-1840 La pianta dei sospiri etext26469 Montgomery, L. M. (Lucy Maud), 1874-1942 Rainbow Valley etext26513 Optic, Oliver, 1822-1897 A Spelling-Book for Advanced Classes etext26535 Sloane, T. O'Conor (Thomas O'Conor), 1851-1940 The Standard Electrical Dictionary etext26586 Schopenhauer, Arthur, 1788-1860 Studies in Pessimism etext26600 Various Mother Earth, Vol. 1 No. 1, March 1906 etext26661 Tolstoy, Leo, graf, 1828-1910 The Power of Darkness etext26734 Abbott, Jacob, 1803-1879 Charles I etext26745 Tschudi, Johann Jakob von, 1818-1889 Travels in Peru, on the Coast, in the Sierra, Across the Cordilleras and the Andes, into the Primeval Forests etext26813 Ages, Lucie des La destinée etext26862 Pyle, Howard, 1853-1911 Howard Pyle's Book of Pirates etext26890 Keller, David Henry, 1880-1966 The Rat Racket etext27012 Heady, Morrison, 1829-1915 The Farmer Boy, and How He Became Commander-In-Chief etext27045 Lebert, Marie Project Gutenberg (1971-2008) etext27056 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Louis XIV. etext27065 Weeks, John M. (John Moseley), 1788-1858 A Manual or an Easy Method of Managing Bees etext27072 Molière, 1622-1673 The Flying Doctor etext27141 United States. Public Health Service Adenoids: What They Are, How To Recognize Them, What To Do For Them etext27297 Dargan, Olive Tilford, 1869-1968 Path Flower and Other Verses etext27381 Thiers, Adolphe, 1797-1877 Histoire du Consulat et de l'Empire, (Vol. 2 / 20) etext27436 Raine, William MacLeod, 1871-1954 Brand Blotters etext27464 Hall, Desmond Winter, 1909-1992 A Scientist Rises etext27509 United States. Central Intelligence Agency The 2006 CIA World Factbook etext27537 Flaubert, Gustave, 1821-1880 Education sentimentale. English etext27561 Ely, Wilmer M. (Wilmer Mateo) The Boy Chums in the Forest etext27640 etext27711 etext27743 Alec-Tweedie, Mrs. (Ethel), -1940 Through Finland in Carts etext27775 Jean Paul, 1763-1825 Des Feldpredigers Schmelzle Reise nach Flätz mit fortgehenden Noten etext27969 Vaill, Dudley Landon The County Regiment etext27992 Sori, A. F. Marx de Descobrimentos dos Portuguezes nos Seculos XV e XVI etext28024 Pictorial Photographers of America Pictorial Photography in America 1922 etext28069 Bangs, John Kendrick, 1862-1922 Alice in Blunderland etext28086 Key, Ellen, 1849-1926 De moedige vrouw etext28185 Various Harper's Young People, November 4, 1879 etext28232 Housman, Laurence, 1865-1959 Possession etext28237 Doudney, Sarah, 1843-1926 A Vanished Hand etext28251 Bell, Sanford A Preliminary Study of the Emotion of Love between the Sexes etext28265 Various Harper's Young People, December 23, 1879 etext28334 Shakespeare, William, 1564-1616 The New Hudson Shakespeare: Julius Cæsar etext28361 Barker, J. Ellis, 1870-1948 British Socialism etext28366 Lane, Elinor Macartney, 1864-1909 Nancy Stair etext28425 Perkins, Lucy Fitch, 1865-1937 The Cave Twins etext28485 Bougainville, Louis-Antoine de, comte, 1729-1811 Voyage autour du monde par la frégate du roi La Boudeuse et la flûte L'Étoile, en 1766, 1767, 1768 & 1769. etext28490 Girl Scouts of the United States of America Scouting For Girls, Official Handbook of the Girl Scouts etext28511 Carlton, Henry Fisk The Tree That Saved Connecticut etext28550 Moore, C. L. (Catherine Lucile), 1911-1987 Song in a Minor Key etext28552 Baum, L. Frank (Lyman Frank), 1856-1919 Twinkle and Chubbins etext28561 Abbott, Jacob, 1803-1879 Richard III etext28587 Ammianus Marcellinus The Roman History of Ammianus Marcellinus etext28630 Various The Atlantic Monthly, Volume 20, No. 122, December, 1867 etext28651 Carey, Rosa Nouchette, 1840-1909 Our Bessie etext28716 Fanny, Aunt, 1822-1894 Little Mittens for The Little Darlings etext28754 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 History of England from the Accession of James II, vol2 chapter08 etext28757 Raymond, Evelyn, 1843-1910 Divided Skates etext28788 Du Parquet, Marguerite Jeux et exercices des jeunes filles etext28796 Cotten, Sallie Southall The White Doe etext28799 Reed, Myrtle, 1874-1911 The Spinster Book etext28805 Raymond, Evelyn, 1843-1910 Dorothy's House Party etext28810 Sand, George, 1804-1876 The Devil's Pool etext28815 Balch, Frederic Homer, 1861-1891 The Bridge of the Gods etext28818 Borrow, George Henry, 1803-1881 The Giant of Bern and Orm Ungerswayne etext28820 Scott, Leroy, 1875-1929 Counsel for the Defense etext28855 Garis, Lilian, 1873-1954 The Girl Scouts at Sea Crest etext28896 Carleton, William, 1794-1869 Stories And Tales Of The Irish etext29051 Hall, Basil, 1788-1844 Account of a Voyage of Discovery etext29069 Meek, S. P. (Sterner St. Paul), 1894-1972 Poisoned Air etext29158 Various Lippincott's Magazine, September, 1885 etext29189 Anonymous A Letter From a Clergyman to his Friend, etext29216 D'Oliveira, E. (Elias), 1886-1944 Goethe: Een Levensbeschrijving etext29217 Various Punch or the London Charivari, Vol. 147, July 8, 1914 etext29250 Various Historic Court Memoirs of France etext29276 Anderson, Frank B., 1863-1935 Morals in Trade and Commerce etext29283 Williamson, Jack, 1908-2006 Salvage in Space etext29322 Zagat, Arthur Leo, 1896-1949 When the Sleepers Woke etext29336 May, Karl Friedrich, 1842-1912 Durch Wüste und Harem etext29355 Fritch, Charles E., 1927- The Odyssey of Sam Meecham etext29383 Hawaii. Dept. of Foreign Affairs The Hawaiian Islands etext29395 Various Lippincott's Magazine of Popular Literature and Science, Vol. 26, October, 1880 etext29431 Sabatini, Rafael, 1875-1950 The Project Gutenberg Works Of Rafael Sabatini etext29447 Coloma, Luis, 1851-1915 Perez the Mouse etext29456 Leigh, Percival, 1813-1889 The Comic Latin Grammar etext29528 Stewart, Jane L. The Camp Fire Girls in the Mountains etext29534 Morgan, A. P. (Andrew Price), 1836-1906 The Myxomycetes of the Miami Valley, Ohio etext29538 Various Le Tour du Monde; Côte d'Ivoire etext29547 Dacier, André, 1651-1722 The Preface to Aristotle's Art of Poetry etext29555 Ogden, Henry N. (Henry Neely), 1868- Rural Hygiene etext29562 Kaufman, Herbert, 1878-1947 The Clock that Had no Hands etext29583 Morford, Henry, 1823-1881 Shoulder-Straps etext29637 etext29652 Various Punch or the London Charivari, Vol. 147, December 16, 1914 etext29681 Mills, Joe, 1880-1935 A Mountain Boyhood etext29696 Duncan, Norman, 1871-1916 The Cruise of the Shining Light etext29724 Apgar, A. C. (Austin Craig), 1838-1908 Trees of the Northern United States etext29783 Volterra, Vito, 1860-1940 Leçons sur l'intégration des Équations Différentielles aux Dérivées Partielles etext29810 Girl Scouts of the United States of America The Girl Scouts etext29846 Barrili, Anton Giulio, 1836-1908 I rossi e i neri, vol. 2 etext29847 Saltus, Edgar, 1855-1921 The Paliser case etext29849 Coffin, Charles Carleton, 1823-1896 Daughters of the Revolution and Their Times etext29895 Lombroso, Gina, 1872-1944 Criminal Man etext29901 Dourliac, Arthur Liette etext29954 De Vet, Charles V. (Charles Vincent), 1911-1997 There is a Reaper ... etext30003 etext30017 Gannett, Ruth Stiles My Father's Dragon etext30025 Holt, Rosa Belle Rugs: Oriental and Occidental, Antique & Modern etext30030 Castelnuovo, Enrico, 1839-1915 I coniugi Varedo etext30050 Grimalkin, Tabitha Tales From Catland, for Little Kittens etext30203 Foote, G. W. (George William), 1850-1915 Flowers of Freethought etext30251 Fontenay, Charles Louis, 1917-2007 Disqualified etext30266 Tales from Blackwood, Volume 7 etext30287 etext30289 Gerstäcker, Friedrich, 1816-1872 Nach Amerika! Sechster Band etext30301 King, Basil, 1859-1928 The Side Of The Angels etext30367 etext30394 Stratemeyer, Edward, 1862-1930 Dave Porter and His Double etext30397 The Philippine Islands, 1493-1898 - Volume 41 of 55, 1691-1700 etext20672 Eirik the Red's Saga etext30410 Hengstenberg, Ernst Wilhelm, 1802-1869 Christology of the Old Testament: And a Commentary on the Messianic Predictions, Vol. 1 etext30523 Various Birds, Illustrated by Color Photography, Vol. 2, No. 1 etext30550 Dawson, A. J. (Alec John), 1872-1952 Finn The Wolfhound etext30566 Herculano, Alexandre, 1810-1877 Opúsculos por Alexandre Herculano - Tomo 03 etext30622 Van Dyke, Henry, 1852-1933 The Unknown Quantity etext30663 Castelnuovo, Enrico, 1839-1915 Dal primo piano alla soffitta etext30715 Bixby, Jerome, 1923-1998 Where There's Hope etext30731 Darrow, Clarence, 1857-1938 Industrial Conspiracies etext30798 Raphael, Rick, 1919-1994 Sonny etext30827 Le Queux, William, 1864-1927 The Count's Chauffeur etext30845 Molesworth, Mrs., 1839-1921 The Boys and I etext30847 Hamilton, Frederick W. (Frederick William), 1860-1940 Compound Words etext30851 Various Fifteenth Century Prose and Verse etext30920 Gil, Augusto César Ferreira, 1873-1929 Musa Cerula etext30944 Kingsley, Charles, 1819-1875 Lectures Delivered in America in 1874 etext30960 Norton, Andre, 1912-2005 The People of the Crater etext30965 Various Birds, Illustrated by Color Photography, Vol. 2, No. 6 etext30973 etext30985 Ernst, Clayton H. The Mark of the Knife etext31000 Guelfi, Guelfo Dal molino di Cerbaia a Cala Martina etext31012 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 17 (of 25) etext31024 Multhauf, Robert P., 1919-2004 Mine Pumping in Agricola's Time and Later etext31039 Various Punch, or the London Charivari, Volume 98, May 24, 1890 etext31057 Dutton, Louise Elizabeth The Wishing Moon etext31064 Various Stories by American Authors, Volume 2 etext31080 Alfieri, Vittorio, 1749-1803 Sofonisba etext31095 Various Stories by American Authors, Volume 3 etext31100 Austen, Jane, 1775-1817 The Complete Project Gutenberg Works of Jane Austen etext31109 Hall, E. Raymond (Eugene Raymond), 1902-1986 Taxonomic Notes on Mexican Bats of the Genus Rhogeessa etext31146 Various Stories by American Authors, Volume 8 etext31156 Various Encyclopaedia Britannica, 11th Edition, Volume 6, Slice 1 etext31157 Brownlie, John Hymns from the Greek Office Books etext31196 Ruskin, John, 1819-1900 Time and Tide by Weare and Tyne etext31212 Heavysege, Charles, 1816-1876 The Advocate etext31216 etext31256 Steward, T. G. (Theophilus Gould), 1843-1924 How the Black St. Domingo Legion Saved the Patriot Army in the Siege of Savannah, 1779 etext31273 Brinton, Daniel Garrison, 1837-1899 The Arawack Language of Guiana in its Linguistic and Ethnological Relations etext31282 Browne, Howard, 1908-1999 Mars Confidential etext31293 etext31308 Maugham, W. Somerset (William Somerset), 1874-1965 Orientations etext31322 Ferris, William H. Alexander Crummell: An Apostle of Negro Culture etext31340 Hackley, E. Azalia The Colored Girl Beautiful etext31389 Carter, Herbert The Boy Scouts in the Maine Woods etext31390 Stowe, Harriet Beecher, 1811-1896 The May Flower, and Miscellaneous Writings etext31434 Vizantios, Dimitrios K., 1790-1853 Η Βαβυλωνία ή η κατά τόπους διαφθορά της ελληνικής γλώσσης etext31441 Delécluze, Etienne-Jean, 1781-1863 Louis David etext31495 Goodwin, Harold L. (Harold Leland), 1914-1990 The Wailing Octopus etext31499 Stewart, Jane L. A Campfire Girl's Happiness etext31517 Lancey, Magdalene de A Week at Waterloo in 1815 etext31544 Erckmann-Chatrian La invasión o El loco Yégof etext31615 Turner-Zimmermann, Jean Chicago's Black Traffic in White Girls etext31621 Webb, Robert G. Description of a New Softshell Turtle From the Southeastern United States etext31671 Guernsey, Henry Newell, 1817-1885 Plain Talks on Avoided Subjects etext31684 Various Belford's Magazine, Volume II, No. 8, January, 1889 etext31777 Rocchietti, Joseph Why a National Literature Cannot Flourish in the United States of North America etext31809 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 24 (of 25) etext31829 Haweis, T. A Translation of the New Testament from the original Greek etext31855 Various Encyclopaedia Britannica, 11th Edition, Volume 6, Slice 6 etext31858 Atherton, Gertrude Franklin Horn, 1857-1948 Ancestors etext31859 Various Blackwood's Edinburgh Magazine, Volume 61, No. 377, March 1847 etext31887 Cutter, Orlando P. Our Battery etext31909 Unknown Doctor Bolus and His Patients etext31917 Vieira, José Augusto A Divorciada etext31924 Saltus, Edgar, 1855-1921 Eden etext31963 Wagner, Richard, 1813-1883 Der Fliegende Holländer etext31964 Sohl, Gerald Allan, 1913-2002 Brknk's Bounty etext32067 Fontenay, Charles Louis, 1917-2007 Atom Drive etext32113 Kock, Charles Paul de Madeleine etext32136 Calvin, John, 1509-1564 A Treatise on Relics etext32242 Hawthorne, Nathaniel, 1804-1864 A Wonder Book for Girls & Boys etext32243 McKimmey, James, 1923- Confidence Game etext32246 Ulmer, George T. Adventures and Reminiscences of a Volunteer etext32253 Roosevelt, Wyn, 1870- The Frontier Boys in the Sierras etext32262 Alden, Raymond MacDonald, 1873-1924 English Verse etext32264 Giacosa, Giuseppe, 1847-1906 Acquazzoni in montagna etext32307 Venable, Francis Preston, 1856-1934 A Brief Account of Radio-activity etext32343 Vandam, Albert Dresden, 1843-1903 An Englishman in Paris etext32355 Stall, Sylvanus With the Children on Sunday etext32481 Rückert, Friedrich, 1788-1866 Rostem und Suhrab etext32498 Blade, Alexander The Brain etext32501 Grahame, Kenneth, 1859-1932 The Golden Age etext32507 Wertenbaker, Thomas Jefferson, 1879-1966 The Planters of Colonial Virginia etext32619 Wilson, Richard, 1920-1987 Back to Julie etext32678 Otis, James, 1848-1912 Commodore Barney's Young Spies etext32688 Smith, George H. (George Henry), 1922-1996 The Ordeal of Colonel Johns etext20 Milton, John, 1608-1674 Paradise Lost etext30 New Etext of Bible etext74 Twain, Mark, 1835-1910 The Adventures of Tom Sawyer etext84 Shelley, Mary Wollstonecraft, 1797-1851 Frankenstein etext104 Roosevelt, Franklin Delano, 1882-1945 Franklin Delano Roosevelt's First Inaugural Address etext113 Burnett, Frances Hodgson, 1849-1924 The Secret Garden etext156 Beethoven, Ludwig van, 1770-1827 Symphony No. 5 in C minor Opus 67 etext158 Austen, Jane, 1775-1817 Emma etext223 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Wisdom of Father Brown etext247 Webster, Noah, 1758-1843 Webster's Unabridged Dictionary etext270 Grahame, Kenneth, 1859-1932 Dream Days etext356 Doyle, Arthur Conan, Sir, 1859-1930 Beyond the City etext384 Burnett, Frances Hodgson, 1849-1924 The Lost Prince etext389 Machen, Arthur, 1863-1947 The Great God Pan etext437 Anonymous The Life of Lazarillo of Tormes; his fortunes and misfortunes as told by himself etext476 Nasmyth, James, 1808-1890 James Nasmyth: Engineer; an autobiography etext524 Wells, H. G. (Herbert George), 1866-1946 Ann Veronica, a modern love story etext545 Burroughs, Edgar Rice, 1875-1950 At the Earth's Core etext560 Buchan, John, 1875-1940 Mr. Standfast etext643 James, Henry, 1843-1916 The Death of the Lion etext665 etext763 etext838 Smiles, Samuel, 1812-1904 Jasmin: Barber, Poet, Philanthropist etext844 Wilde, Oscar, 1854-1900 The Importance of Being Earnest etext889 Der Ling, Princess, 1886-1944 Two Years in the Forbidden City etext930 Waters, W. G., Mrs. The Cook's Decameron: a study in taste, containing over two hundred recipes for Italian dishes etext1090 Swift, Jonathan, 1667-1745 Bickerstaff-Partridge Papers etext1110 Shakespeare, William, 1564-1616 King John etext1132 Shakespeare, William, 1564-1616 The Life of Timon of Athens etext1184 Dumas père, Alexandre, 1802-1870 The Count of Monte Cristo etext1249 Rand, Ayn, 1905-1982 Anthem etext1370 White, Andrew Dickson, 1832-1918 Autobiography of Andrew Dickson White — Volume 2 etext1408 White, Gilbert, 1720-1793 The Natural History of Selborne etext1446 Stewart, Donald Ogden, 1894-1980 Perfect Behavior; a guide for ladies and gentlemen in all social crises etext1477 Saki, 1870-1916 The Toys of Peace, and other papers etext1514 Shakespeare, William, 1564-1616 A Midsummer Night's Dream etext1538 Shakespeare, William, 1564-1616 Cymbeline etext1545 Shakespeare, William, 1564-1616 The Passionate Pilgrim etext1550 Burnett, Frances Hodgson, 1849-1924 A Lady of Quality etext1565 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Last Days of Pompeii etext1668 Scott, Walter, Sir, 1771-1832 The Tapestried Chamber, and Death of the Laird's Jock etext1670 Luther, Martin, 1483-1546 Martin Luther's Small Catechism, translated by R. Smith etext1762 Davis, Richard Harding, 1864-1916 The Consul etext1784 Shakespeare, William, 1564-1616 King Henry V etext1786 Shakespeare, William, 1564-1616 As You Like It etext1817 Davis, Richard Harding, 1864-1916 A Question of Latitude etext1837 Twain, Mark, 1835-1910 The Prince and the Pauper etext1859 Beerbohm, Max, Sir, 1872-1956 The Works of Max Beerbohm etext1921 Balzac, Honoré de, 1799-1850 The Chouans etext2012 Meynell, Alice Christiana Thompson, 1847-1922 The Children etext2072 Benson, E. F. (Edward Frederic), 1867-1940 Michael etext2125 Baker, Samuel White, Sir, 1821-1893 The Nile tributaries of Abyssinia, and the sword hunters of the Hamran arabs etext2162 Goldman, Emma, 1869-1940 Anarchism and Other Essays etext2177 Harte, Bret, 1836-1902 Thankful Blossom etext2178 Harte, Bret, 1836-1902 By Shore and Sedge etext2209 Human Genome Project Chromosome Number 09 etext2216 Human Genome Project Chromosome Number 16 etext2222 Human Genome Project Chromosome Number 22 etext2232 Webster, John, 1580-1625 The Duchess of Malfi etext2236 Shakespeare, William, 1564-1616 The Two Gentlemen of Verona etext2271 Roe, Edward Payson, 1838-1888 He Fell in Love with His Wife etext2305 Conrad, Joseph, 1857-1924 A Set of Six etext2307 Lincoln, Joseph Crosby, 1870-1944 The Depot Master etext2345 Doyle, Arthur Conan, Sir, 1859-1930 The Adventure of the Red Circle etext2350 Doyle, Arthur Conan, Sir, 1859-1930 His Last Bow etext2371 Green, Anna Katharine, 1846-1935 The Filigree Ball etext2381 Kipling, Rudyard, 1865-1936 Actions and Reactions etext2403 Goethe, Johann Wolfgang von, 1749-1832 Die Wahlverwandtschaften etext2410 Goethe, Johann Wolfgang von, 1749-1832 Wilhelm Meisters Wanderjahre — Band 2 etext2457 Stories By English Authors: Italy (Selected by Scribners) etext2481 Nadin, Mihai, 1938- The Civilization of Illiteracy etext2533 Gaskell, Elizabeth Cleghorn, 1810-1865 Round the Sofa etext2565 Morris, William, 1834-1896 The Story of the Glittering Plain; or, the land of Living Men etext2569 Kipling, Rudyard, 1865-1936 The Day's Work - Volume 1 etext2570 Harte, Bret, 1836-1902 Two Men of Sandy Bar; a drama etext2647 Trevelyan, George Otto, Sir, 1838-1928 Life and Letters of Lord Macaulay etext2676 Harte, Bret, 1836-1902 The Bell-Ringer of Angel's etext2678 Dickinson, Emily, 1830-1886 Poems by Emily Dickinson, Series One etext2760 Dumas père, Alexandre, 1802-1870 Celebrated Crimes (Complete) etext2783 Sabatini, Rafael, 1875-1950 The Trampling of the Lilies etext2858 Harte, Bret, 1836-1902 Cressy etext2862 Harte, Bret, 1836-1902 The Twins of Table Mountain etext2999 Proust, Marcel, 1871-1922 A l'ombre des jeunes filles en fleurs — Deuxième partie etext3014 Ogg, Frederic Austin, 1878-1951 The Old Northwest : A chronicle of the Ohio Valley and beyond etext3027 Lang, Andrew, 1844-1912 The Orange Fairy Book etext3053 Morris, William, 1834-1896 Signs of Change etext3141 Thebaud, Augustus J., 1807-1885 Irish Race in the Past and the Present etext3157 Fish, Carl Russell, 1876-1932 The Path of Empire; a chronicle of the United States as a world power etext3169 Bangs, John Kendrick, 1862-1922 The Pursuit of the House-Boat etext3218 Honig, Winfried Mr. Honey's Tourist Dictionary etext3266 Porter, Eleanor H. (Eleanor Hodgman), 1868-1920 Miss Billy etext3313 Stoddard, Charles Warren, 1843-1909 A Bit of Old China etext3333 Camões, Luís Vaz de, 1524-1580 Os Lusíadas etext3353 Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773 Letters to His Son on the Art of Becoming a Man of the World and a Gentleman, 1749 etext3355 Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773 Letters to His Son on the Art of Becoming a Man of the World and a Gentleman, 1751 etext3357 Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773 Letters to His Son on the Art of Becoming a Man of the World and a Gentleman, 1753-54 etext3362 Howells, William Dean, 1837-1920 The Kentons etext3373 Howells, William Dean, 1837-1920 Their Silver Wedding Journey — Volume 3 etext3429 Henty, G. A. (George Alfred), 1832-1902 St. George for England etext3437 Anonymous Arabian nights. English etext3450 Anonymous Arabian nights. English etext3493 Holmes, Oliver Wendell, 1809-1894 Widger's Quotations from the Project Gutenberg Editions of the Works of Oliver W. Holmes, Sr. etext3509 Human Genome Project Human Genome Project, Chromosome Number 09 etext3551 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 01 etext3566 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 16 etext3607 Baker, Samuel White, Sir, 1821-1893 Ismailia etext3617 Dumas père, Alexandre, 1802-1870 Widger's Quotations from the Project Gutenberg Editions of Dumas' Celebrated Crimes etext3639 Knight, William Henry Diary of a Pedestrian in Cashmere and Thibet etext3711 Trollope, Anthony, 1815-1882 Relics of General Chasse etext3741 Paine, Thomas, 1737-1809 Writings of Thomas Paine — Volume 1 (1774-1779): the American Crisis etext3767 Trollope, Anthony, 1815-1882 The Man Who Kept His Money in a Box etext3768 Millay, Edna St. Vincent, 1892-1950 The Lamp and the Bell etext3799 Fisher, Joseph, the younger, of Youghal Landholding in England etext3823 Corelli, Marie, 1855-1924 Thelma etext3884 Campan, Jeanne Louise Henriette (Genet), 1752-1822 Memoirs of the Court of Marie Antoinette, Queen of France, Volume 1 etext3988 Malot, Hector, 1830-1907 Conscience — Volume 3 etext4087 Defoe, Daniel, 1661?-1731 An Essay Upon Projects etext4105 Ames, Azel, 1845-1908 The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Volume 5 etext4122 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 06: June/July 1660 etext4133 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 15: March/April 1661-62 etext4166 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 44: July 1666 etext4192 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 68: September/October 1668 etext4193 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 69: November 1668 etext4282 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 Don Rodriguez; chronicles of Shadow Valley etext4303 Gissing, George, 1857-1903 Denzil Quarrier etext4362 Sheridan, Philip Henry, 1831-1888 Personal Memoirs of P. H. Sheridan, General, United States Army — Complete etext4397 Galsworthy, John, 1867-1933 The Forsyte Saga - Complete etext4417 Meredith, George, 1828-1909 Sandra Belloni — Volume 5 etext4440 Meredith, George, 1828-1909 Vittoria — Volume 6 etext4450 Meredith, George, 1828-1909 The Adventures of Harry Richmond — Volume 7 etext4463 Meredith, George, 1828-1909 The Tragic Comedians — Volume 3 etext4540 Sheldon, Charles Monroe, 1857-1946 In His Steps etext4554 Kotzebue, August von, 1761-1819 Lover's Vows etext4590 Arthur, T. S. (Timothy Shay), 1809-1885 After the Storm etext4599 Trollope, Anthony, 1815-1882 The Small House at Allington etext27942 Mill, John Stuart, 1806-1873 A System Of Logic, Ratiocinative And Inductive etext4601 etext4648 Voltaire, 1694-1778 Romans — Volume 2: Memnon etext4729 Dunne, Finley Peter, 1867-1936 Observations By Mr. Dooley etext4775 etext4797 Shelley, Percy Bysshe, 1792-1822 The Complete Poetical Works of Percy Bysshe Shelley — Volume 1 etext4800 Shelley, Percy Bysshe, 1792-1822 The Complete Poetical Works of Percy Bysshe Shelley — Complete etext4893 Motley, John Lothrop, 1814-1877 Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years' War, 1614-17 etext4937 Butler, Samuel, 1612-1680 Hudibras etext4972 Niecks, Frederick, 1845-1924 Frederick Chopin, as a Man and Musician — Volume 2 etext5010 Washington, George, 1732-1799 State of the Union Address etext5018 Tyler, John, 1790-1862 State of the Union Address etext5047 Bush, George, 1924- State of the Union Address etext5050 United States. Presidents. State of the Union Address (1790-2001) etext5076 Beach, Rex Ellingwood, 1877-1949 The Spoilers etext5124 Yonge, Charlotte Mary, 1823-1901 Henrietta's Wish etext5131 Byron, George Gordon Byron, Baron, 1788-1824 Childe Harold's Pilgrimage etext5140 Trollope, Anthony, 1815-1882 He Knew He Was Right etext5183 Wright, Almroth, 1861-1947 The Unexpurgated Case Against Woman Suffrage etext5262 Garis, Howard Roger, 1873-1962 Curly and Floppy Twistytail; the Funny Piggie Boys etext5275 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 01 etext5281 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 07 etext5295 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 21 etext5319 Grahame, Kenneth, 1859-1932 Pagan Papers etext5344 Eyre, Edward John, 1815-1901 Journals of Expeditions of Discovery into Central Australia and Overland from Adelaide to King George's Sound in the Years 1840-1: Sent By the Colonists of South Australia, with the Sanction and Support of the Government: Including an Account of the Manners and Customs of the Aborigines and the State of Their Relations with Europeans — Volume 01 etext5379 Churchill, Winston, 1871-1947 A Modern Chronicle — Volume 06 etext5402 Grose, Francis, 1731-1791 1811 Dictionary of the Vulgar Tongue etext5447 Ebers, Georg, 1837-1898 Uarda : a Romance of Ancient Egypt — Volume 09 etext5454 Ebers, Georg, 1837-1898 An Egyptian Princess — Volume 05 etext5503 Ebers, Georg, 1837-1898 Serapis — Volume 03 etext5579 Ebers, Georg, 1837-1898 The Burgomaster's Wife — Volume 02 etext5619 Petty, William, Sir, 1623-1687 Essays on Mankind and Political Arithmetic etext5669 Mill, John Stuart, 1806-1873 Considerations on Representative Government etext5705 Aldrich, Thomas Bailey, 1836-1907 The Queen of Sheba & My Cousin the Colonel etext5739 Kuperman, Leon Korean—English Dictionary etext5803 Milne, A. A. (Alan Alexander), 1882-1956 Not that it Matters etext5853 Sherman, William T. (William Tecumseh), 1820-1891 The Memoirs of General W. T. Sherman, Volume II., Part 4 etext5879 Anonymous Reina Valera New Testament of the Bible 1862 etext5881 Anonymous Reina Valera New Testament of the Bible 1909 etext5886 Haydn, Joseph, 1732-1809 String Quartet in F Major, Op. 74 no. 2 etext5903 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 01 etext5978 Trollope, Anthony, 1815-1882 Autobiography of Anthony Trollope etext6006 Yonge, Charlotte Mary, 1823-1901 Under the Storm etext6026 Wood, William Charles Henry, 1864-1947 The Great Fortress : A chronicle of Louisbourg 1720-1760 etext6034 Dom Rhyme and Reason Volume Two etext6053 Burney, Fanny, 1752-1840 Evelina, Or, the History of a Young Lady's Entrance into the World etext6060 Allen, Grant, 1848-1899 Philistia etext6130 Homer, 750? BC-650? BC The Iliad etext6149 Goldfrap, John Henry, 1879-1917 The Boy Aviators' Treasure Quest etext6195 Parker, Gilbert, 1862-1932 Cumner's Son and Other South Sea Folk — Volume 01 etext6196 Parker, Gilbert, 1862-1932 Cumner's Son and Other South Sea Folk — Volume 02 etext6213 Parker, Gilbert, 1862-1932 The Translation of a Savage, Volume 3 etext6262 Parker, Gilbert, 1862-1932 The Weavers: a tale of England and Egypt of fifty years ago - Volume 2 etext6317 Slocum, Joshua, 1844-1910? Sailing Alone Around the World etext6390 Suetonius Tranquillus, Gaius, 75-160 The Lives of the Twelve Caesars, Volume 05: Claudius etext6413 Trotzky, Leon Davidovich, 1879-1940 From October to Brest-Litovsk etext6415 Hutchinson, A. S. M. (Arthur Stuart-Menteth), 1879-1971 This Freedom etext6423 Halleck, Reuben Post, 1859-1936 History of American Literature etext6437 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 The Splendid Spur etext6455 London, Jack, 1876-1916 The Little Lady of the Big House etext6457 Burney, Fanny, 1752-1840 The Diary and Letters of Madame D'Arblay — Volume 3 etext6469 Greenwood, Grace, 1823-1904 Queen Victoria, her girlhood and womanhood etext6533 Twain, Mark, 1835-1910 A Connecticut Yankee etext6610 Skinner, Charles M. (Charles Montgomery), 1852-1907 Myths and Legends of Our Own Land — Volume 05 : Lights and shadows of the South etext6613 Skinner, Charles M. (Charles Montgomery), 1852-1907 Myths and Legends of Our Own Land — Volume 08 : on the Pacific Slope etext6704 Diaz, Abby Morton, Mrs., 1821-1904 A Domestic Problem : Work and Culture in the Household etext6788 Schiller, Friedrich, 1759-1805 Wilhelm Tell etext6797 Schiller, Friedrich, 1759-1805 The Poems of Schiller — Suppressed poems etext6819 Lenz, Jakob Michael Reinhold, 1751-1792 Der Engländer etext6820 Lessing, Gotthold Ephraim, 1729-1781 Ausgewählte Gedichte etext6834 Hegel, Georg Wilhelm Friedrich, 1770-1831 Wissenschaft der Logik — Band 2 etext6873 Henderson, Archibald, 1877-1963 Mark Twain etext6902 Turgenev, Ivan Sergeevich, 1818-1883 On the Eve etext6919 Huxley, Thomas Henry, 1825-1895 Darwiniana : Essays — Volume 02 etext7002 Irving, Washington, 1783-1859 Life of George Washington — Volume 01 etext7093 Beethoven, Ludwig van, 1770-1827 String Quartet No. 08 in E minor Opus 59 etext7110 Lathrop, George Parsons, 1851-1898 Rose and Roof-Tree — Poems etext7134 Logan, John Alexander, 1826-1886 The Great Conspiracy, Volume 2 etext7179 Maclaren, Ian, 1850-1907 Beside the Bonnie Brier Bush etext7207 Nietzsche, Friedrich Wilhelm, 1844-1900 Menschliches, Allzumenschliches etext7209 Guiguzi, 4th cent. B.C. 鬼谷子 etext7222 Scott, Leader, 1837-1902 Fra Bartolommeo etext7240 Shakespeare, William, 1564-1616 King Lear. German etext7265 Thackeray, William Makepeace, 1811-1863 The History of Pendennis etext7346 Henty, G. A. (George Alfred), 1832-1902 Among Malay Pirates : a Tale of Adventure and Peril etext7348 Macomber, Ben The Jewel City etext7369 Masefield, John, 1878-1967 Jim Davis etext7384 Anchieta, José de, 1534-1597 Carta da Companhia etext7393 Holmes, Oliver Wendell, 1809-1894 The Poetical Works of Oliver Wendell Holmes — Volume 06: Poems from the Breakfast Table Series etext7396 Holmes, Oliver Wendell, 1809-1894 The Poetical Works of Oliver Wendell Holmes — Volume 09: the Iron Gate and Other Poems etext7404 Burroughs, John, 1837-1921 John James Audubon etext7413 Petrie, W. M. Flinders (William Matthew Flinders), Sir, 1853-1942 Egyptian Tales, Translated from the Papyri etext7414 Anderson, Sherwood, 1876-1941 Poor White etext7416 Balzac, Honoré de, 1799-1850 The Thirteen etext7462 Zola, Émile, 1840-1902 Contes à Ninon etext7492 Chambers, Robert W. (Robert William), 1865-1933 The Fighting Chance etext7502 Howells, William Dean, 1837-1920 Annie Kilburn : a Novel etext7506 Ellis, Edward Sylvester, 1840-1916 The Huge Hunter etext7529 James, Henry, 1843-1916 The Reverberator etext7557 Warner, Charles Dudley, 1829-1900 Quotes and Images From The Works of Charles Dudley Warner etext7562 Montespan, Françoise-Athénaïs de Rochechouart de Mortemart, marquise de, 1641-1707 Quotes and Images From Memoirs of Madame De Montespan etext7575 Droz, Gustave, 1832-1895 Images from Droz's M.M. and Bebe etext7582 Musset, Alfred de, 1810-1857 Images from De Musset's Child of a Century etext7638 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Disowned — Volume 08 etext7639 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Disowned — Complete etext7712 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 My Novel — Volume 11 etext7782 Tennyson, Alfred Tennyson, Baron, 1809-1892 The Last Tournament etext7874 Conrad, Joseph, 1857-1924 Lord Jim etext7886 Steele, James W. Steam, Steel and Electricity etext7920 Smith, John Jay, 1798-1881 American Historical and Literary Antiquities, Part 20 etext7922 Smith, John Jay, 1798-1881 American Historical and Literary Antiquities, Part 22. etext7938 Clark, Felicia Buttz, 1862- Virgilia etext7942 Ibsen, Henrik, 1828-1906 Little Eyolf etext7951 Tagore, Rabindranath, 1861-1941 Glimpses of Bengal etext8044 Anonymous The Bible, King James version, Book 44: Acts etext8058 Anonymous The Bible, King James version, Book 58: Hebrews etext8091 Hawthorne, Nathaniel, 1804-1864 Sketches and Studies etext8112 Morgan, Lewis H., 1818-1881 Houses and House-Life of the American Aborigines etext8150 Balzac, Honoré de, 1799-1850 A Street of Paris and Its Inhabitant etext8152 Gosse, Edmund, 1849-1928 Henrik Ibsen etext8159 Waterton, Charles, 1782-1865 Wanderings in South America etext8178 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Politeness of Princes etext8181 Hewatt, Alexander An Historical Account of the Rise and Progress of the Colonies of South Carolina and Georgia, Volume 2 etext8284 Anonymous The World English Bible (WEB): Philemon etext8314 The Bible, Douay-Rheims, Book 14: 2 Paralipomenon etext8354 The Bible, Douay-Rheims, Book 54: 2 Corinthians etext8367 The Bible, Douay-Rheims, Book 67: 1 Peter etext8421 Vaknin, Samuel, 1961- The First Book of Factoids etext8458 Watterson, Henry, 1840-1921 Marse Henry (Volume 1) etext8552 MacDonald, George, 1824-1905 The Seaboard Parish Volume 2 etext8574 Burnett, Frances Hodgson, 1849-1924 Racketty-Packetty House etext8619 Doyle, Arthur Conan, Sir, 1859-1930 Round the Red Lamp etext8703 The Doré Gallery of Bible Illustrations, Volume 3 etext8719 Gaboriau, Émile, 1832-1873 Monsieur Lecoq — Volume2 etext8768 Burroughs, Edgar Rice, 1875-1950 Tarzan the Terrible etext8772 Molière, 1622-1673 The Learned Women etext8792 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Purgatory, Volume 3 etext8837 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Ephesians etext8850 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, 1 John etext8873 Merriman, Henry Seton, 1862-1903 The Isle of Unrest etext9035 Twain, Mark, 1835-1910 The Tragedy of Pudd'nhead Wilson etext9058 Grillparzer, Franz, 1791-1872 Ein treuer Diener seines Herrn etext9097 Robert, Henry M., 1837-1923 Robert's Rules of Order etext9107 Edgeworth, Maria, 1767-1849 Tales and Novels — Volume 09 etext9173 Hall, G. Stanley, 1846-1924 Youth: Its Education, Regimen, and Hygiene etext9208 Hawthorne, Nathaniel, 1804-1864 Fancy's Show-Box (From "Twice Told Tales") etext9236 Hawthorne, Nathaniel, 1804-1864 Main Street etext9240 Hawthorne, Nathaniel, 1804-1864 The Man of Adamant etext9246 Hawthorne, Nathaniel, 1804-1864 Sketches from Memory etext9276 Swift, Jonathan, 1667-1745 Three Sermons, Three Prayers etext9277 Wharton, Edith, 1862-1937 Crucial Instances etext9323 Davies, William H., 1871-1940 Foliage etext9329 Zollinger, Gulielma The Widow O'Callaghan's Boys etext9456 Akin, Florence, 1878- Opera Stories from Wagner etext9467 Various The Atlantic Monthly, Volume 04, No. 26, December, 1859 etext9493 Various The Atlantic Monthly, Volume 10, No. 57, July, 1862 etext9502 Le Fanu, Joseph Sheridan, 1814-1873 The Room in the Dragon Volant etext9535 Thackeray, William Makepeace, 1811-1863 Men's Wives etext9574 Whittier, John Greenleaf, 1807-1892 Poems of Nature, Poems Subjective and Reminiscent etext9606 Field, Eugene, 1850-1895 A Little Book of Western Verse etext9629 James, M. R. (Montague Rhodes), 1862-1936 Ghost Stories of an Antiquary etext9685 Defoe, Daniel, 1661?-1731 Moll Flanders etext9702 Dickens, Charles, 1812-1870 The Old Curiosity Shop etext9719 Dickens, Charles, 1812-1870 Our Mutual Friend etext9739 Dickens, Charles, 1812-1870 Cricket on the Hearth etext9759 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Leila or, the Siege of Granada, Book IV. etext9768 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Alice, or the Mysteries — Book 06 etext9784 Nichol, John, 1833-1894 Thomas Carlyle etext9814 Akenside, Mark, 1721-1770 Poetical Works of Akenside etext9826 Cooper, James Fenimore, 1789-1851 Homeward Bound etext9851 Leverson, Ada, 1862-1933 Love at Second Sight etext9852 Clouston, J. Storer (Joseph Storer), 1870-1944 The Man from the Clouds etext9876 Various The Atlantic Monthly, Volume 10, No. 58, August, 1862 etext9947 Anonymous Queen Victoria etext10092 Various Punchinello, Volume 2, No. 30, October 22, 1870 etext10110 Tracy, Louis, 1863-1928 The Postmaster's Daughter etext10124 Baum, L. Frank (Lyman Frank), 1856-1919 Aunt Jane's Nieces and Uncle John etext10258 Jugoslavensko Tamburasko Drustvo Nataligino Kolo etext10279 Spencer, Len, 1867-1914 Uncle Tom's Cabin etext10292 Various Punchinello, Volume 2, No. 36, December 3, 1870 etext10335 Wiggin, Kate Douglas Smith, 1856-1923 Children's Rights etext10336 Various A Select Collection of Old English Plays, Volume 7 etext10439 Herrman, Karl Stephen From Yauco to Las Marias etext10459 Yeats, W. B. (William Butler), 1865-1939 The Celtic Twilight etext10462 Richardson, Samuel, 1689-1761 Clarissa Harlowe; or the history of a young lady — Volume 4 etext10481 Aho, Juhani, 1861-1921 Rautatie etext10486 McGuinn, Roger Twelve Gates to the City etext10527 McGuinn, Roger On the Banks of the Ohio etext10595 Various Punch, or the London Charivari, Volume 153, September 19, 1917 etext10701 Mommsen, Theodor, 1817-1903 The History of Rome, Book I etext10706 Mommsen, Theodor, 1817-1903 The History of Rome (Volumes 1-5) etext10730 Various The Mirror of Literature, Amusement, and Instruction etext10755 Mason, A. E. W. (Alfred Edward Woodley), 1865-1948 The Broken Road etext10778 Jenkins, Sara D. The Prose Marmion etext10802 Project Gutenberg "10K" DVD etext10806 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 The Sword of Welleran and Other Stories etext10832 Hodgson, William Hope, 1877-1918 Carnacki, the Ghost Finder etext10848 Vale, Ferna Natalie etext10863 Aho, Juhani, 1861-1921 Juha etext10867 Various The Atlantic Monthly, Volume 02, No. 13, November, 1858 etext10918 Green, Horace The Log of a Noncombatant etext10928 Devee, Sunity, 1864-1932 Bengal Dacoits and Tigers etext10938 Cooper, James Fenimore, 1789-1851 The Headsman etext10998 Bourne, John, C.E. A Catechism of the Steam Engine etext11045 Middleton, Richard The Ghost Ship etext11065 Anonymous Aunt Mary's Primer etext11094 Various Punch, or the London Charivari, Volume 156, March 12, 1919 etext11133 Various Punch, or the London Charivari, Volume 156, Jan. 8, 1919 etext11162 Bannerman, Helen, 1862-1946 The Story of Little Black Mingo etext11197 Cooke, Marjorie Benton, 1876-1920 Bambi etext11248 Swedenborg, Emanuel, 1688-1772 The Delights of Wisdom Pertaining to Conjugial Love etext11250 Sylvester, Charles Herbert Journeys Through Bookland, Vol. 5 etext11374 Various Fun and Frolic etext11501 Beach, Rex Ellingwood, 1877-1949 Laughing Bill Hyde and Other Stories etext11506 Watson, Henry C. The Old Bell of Independence; Or, Philadelphia in 1776 etext11524 Various The Atlantic Monthly, Volume 08, No. 50, December, 1861 etext11550 Squires, Richard C. Squash Tennis etext11562 Galton, Francis, Sir, 1822-1911 Inquiries into Human Faculty and Its Development etext11569 Various The Mirror of Literature, Amusement, and Instruction etext11639 Cabell, James Branch, 1879-1958 Figures of Earth etext11662 Various Scientific American Supplement, No. 598, June 18, 1887 etext11677 Sapper, Agnes, 1852-1929 Ohne den Vater etext12016 Mühlbach, L. (Luise), 1814-1873 The Merchant of Berlin etext12017 Various The Mirror of Literature, Amusement, and Instruction etext12063 Various The Mirror of Literature, Amusement, and Instruction etext12079 Various Punch, or the London Charivari, Volume 156, May 7, 1919. etext12096 Nitobe, Inazo, 1862-1933 Bushido, the Soul of Japan etext12111 The Glories of Ireland etext12124 Jacobs, W. W. (William Wymark), 1863-1943 The Well etext12146 Stokes, John Lort, 1812-1885 Discoveries in Australia, Volume 2 etext12150 Francis, M.E. (Mrs. Francis Blundell), -1930 North, South and over the Sea etext12151 Jacobs, W. W. (William Wymark), 1863-1943 Back to Back etext12177 Peattie, Elia Wilkinson, 1862-1935 The Precipice etext12346 Crawford, F. Marion (Francis Marion), 1854-1909 A Roman Singer etext12351 Various The German Classics of the Nineteenth and Twentieth Centuries, Volume 07 etext12358 Society for Pure English Society for Pure English, Tract 01 (1919) etext12359 Fiske, John, 1842-1901 The Meaning of Infancy etext12364 Smith, Uriah, 1832-1903 The United States in the Light of Prophecy etext12485 Yonge, Charlotte Mary, 1823-1901 The Three Brides etext12524 Society for Pure English Society for Pure English, Tract 05 etext12671 Sanford, Arthur Benton An Easter Disciple etext12764 White, Stewart Edward, 1873-1946 The Forty-Niners etext12797 Adams, Andy, 1859-1935 The Log of a Cowboy etext12862 Sand, George, 1804-1876 Aldo le rimeur etext12886 Brame, Charlotte M., 1836-1884 The Coquette's Victim etext12908 Ward, Humphry, Mrs., 1851-1920 Missing etext12928 Mitchell, Thomas, 1792-1855 Three Expeditions into the Interior of Eastern Australia, Volume 1 etext12969 Ségur, Sophie, comtesse de, 1799-1874 L'auberge de l'ange gardien etext12970 Willcox, Cornélis de Witt, 1861-1938 The Head Hunters of Northern Luzon etext13016 Sand, George, 1804-1876 Lavinia etext13065 Beethoven, Ludwig van, 1770-1827 Beethoven's Letters 1790-1826, Volume 1 etext13098 Various Punch, or the London Charivari, Volume 100, February 28, 1891 etext13102 Boccaccio, Giovanni, 1313-1375 The Decameron, Volume II etext13137 Raizizun, Yacki The Secret of Dreams etext13154 Various Lippincott's Magazine of Popular Literature and Science etext13196 Gordon, S. D. (Samuel Dickey), 1859-1936 Quiet Talks on Prayer etext13233 López, Honorio, 1875-1958 Ang Tunay na Buhay ni P. Dr. Jose Burgos etext13292 Sinclair, May, 1863-1946 The Romantic etext13297 Various Punch, or the London Charivari, Volume 100, April 4, 1891 etext13302 Vimar, Auguste The Curly-Haired Hen etext13330 Smith, F. G. (Frederick George), 1880-1947 The Last Reformation etext13397 Shaw, Robert B. History of the Comstock Patent Medicine Business and Dr. Morse's Indian Root Pills etext13401 Various Scientific American Supplement, No. 520, December 19, 1885 etext13402 Atkinson, William Walker, 1862-1932 The Hindu-Yogi Science Of Breath etext13471 Grant, Ulysses S. (Ulysses Simpson), 1822-1885 Letters of Ulysses S. Grant to His Father and His Youngest Sister, etext13510 Verrill, A. Hyatt (Alpheus Hyatt), 1871-1954 Knots, Splices and Rope Work etext13517 Moscheles, Felix, 1833-1917 In Bohemia with Du Maurier etext13518 Franklin, John, 1786-1847 The Journey to the Polar Sea etext13546 Wylie, I. A. R. (Ida Alexa Ross), 1885-1959 The Dark House etext13559 Traill, Catharine Parr Strickland, 1802-1899 The Backwoods of Canada etext13576 Conscience, Hendrik, 1812-1883 The Poor Gentleman etext13599 Molbech, Chris K.F. Ambrosius etext13629 Sand, George, 1804-1876 Correspondance, 1812-1876 — Tome 1 etext13679 Daviess, Maria Thompson, 1872-1924 Andrew the Glad etext13739 Morley, Christopher, 1890-1957 Shandygaff etext13762 Cormack, W. E. (William Epps), 1796-1868 Report of Mr. W. E. Cormack's journey in search of the Red Indians in Newfoundland etext13789 Adams, Ephraim Douglass Great Britain and the American Civil War etext13884 Richardson, Samuel, 1689-1761 The History of Sir Charles Grandison, Volume 4 (of 7) etext13900 Newbolt, Henry John, Sir, 1862-1938 Collected Poems 1897 - 1907, by Henry Newbolt etext13915 Serrano, Fr. Juan Novena sa Maloualhating Ama,t, Doctor at Ilao nang Santa Iglesia na si San Agustin etext13928 Symons, Arthur, 1865-1945 Plays, Acting and Music etext13944 Jefferies, Richard, 1848-1887 After London etext14043 Ketner, Ph. J. Een kijkje op de Tentoonstelling te Milaan etext14116 Various Dew Drops, Vol. 37, No. 07, February 15, 1914 etext14131 Various The Bay State Monthly — Volume 2, No. 4, January, 1885 etext14145 Hutchinson, A. S. M. (Arthur Stuart-Menteth), 1879-1971 If Winter Comes etext14160 Launay, L. de (Louis), 1860-1938 In het Balkanbergland van Bulgarije etext14162 Verne, Jules, 1828-1905 Les tribulations d'un chinois en Chine etext14163 Verne, Jules, 1828-1905 Les enfants du capitaine Grant etext14288 Gautier, Théophile, 1811-1872 Mademoiselle de Maupin etext14323 Huysmans, J.-K. (Joris-Karl), 1848-1907 Là-bas etext14325 etext14326 McNeill, Ronald John, 1861-1934 Ulster's Stand For Union etext14356 Lagerlöf, Selma, 1858-1940 The Emperor of Portugalia etext14436 Defoe, Daniel, 1661?-1731 Military Memoirs of Capt. George Carleton etext14481 Lowell, James Russell, 1819-1891 The Function of the Poet and Other Essays etext14527 Phillpotts, Eden, 1862-1960 Children of the Mist etext14537 Conan, Laure, 1845-1924 Un amour vrai etext14583 Various The Continental Monthly, Vol. 1, No. 3, March, 1862 etext14599 Collins, Mabel, 1851-1927 Light On The Path and Through the Gates of Gold etext14610 Corning, Mary Spring Miss Elliot's Girls etext14811 Wilson, Woodrow, 1856-1924 The New Freedom etext14863 Daviess, Maria Thompson, 1872-1924 The Tinder-Box etext14869 Laidlaw, A. H. (Alexander Hamilton), 1869-1908 Soldier Songs and Love Songs etext14910 Finley, Martha, 1828-1909 Elsie at the World's Fair etext14951 Lucas, E. V. (Edward Verrall), 1868-1938 A Wanderer in Holland etext15016 Various The Atlantic Monthly, Volume 12, No. 69, July, 1863 etext15240 Dorman, Marcus Roberts Phipps A Journal of a Tour in the Congo Free State etext15268 John Stuart Mill; His Life and Works etext15367 Hix, Melvin The Magic Speech Flower etext15458 Équilbecq, François-Victor Essai sur la littérature merveilleuse des noirs, suivi de Contes indigènes de l'Ouest africain français - Tome premier etext15503 Welsh, James C. The Underworld etext15563 Rogers, Henry, 1806-1877 Reason and Faith; Their Claims and Conflicts etext15604 Brower, Harriette, 1869-1928 Piano Mastery etext15660 Abbott, Eleanor Hallowell, 1872-1958 Little Eve Edgarton etext15684 Amerel The Summer Holidays etext15687 Ellis, Havelock, 1859-1939 Little Essays of Love and Virtue etext15794 Morley, Christopher, 1890-1957 Plum Pudding etext15842 Järnefelt, Arvid, 1861-1932 Valtaset etext15873 Vance, Louis Joseph, 1879-1933 The Day of Days etext15955 Lang, Andrew, 1844-1912 A Short History of Scotland etext15965 Graydon, William Murray, 1864-1946 In Friendship's Guise etext15979 Rathborne, George, St., 1854-1938 Miss Caprice etext15995 Flaubert, Gustave, 1821-1880 Salambo etext16012 Carleton, William, 1794-1869 The Ned M'Keown Stories etext16064 etext16098 Various The Mirror of Literature, Amusement, and Instruction etext16146 Balzac, Honoré de, 1799-1850 Petty Troubles of Married Life, Complete etext16168 etext16182 Browning, Robert, 1812-1889 The Letters of Robert Browning and Elizabeth Barrett Barrett, Vol. 1 (of 2) 1845-1846 etext16225 Home, Ethel Music As A Language etext16235 Brontë, Charlotte, 1816-1855 Jane Eyre etext16239 Mérimée, Prosper, 1803-1870 Colomba etext16272 Various The Continental Monthly, Vol. 2, No. 1, July, 1862 etext16307 Bradford, Amory H. The Ascent of the Soul etext16448 Burnham, Clara Louise, 1854-1927 Jewel's Story Book etext16501 Various The Philippine Islands, 1493-1803 — Volume 05 of 55 etext16622 Pickett, La Salle Corbell, 1848-1931 Literary Hearthstones of Dixie etext16637 Various Sleep-Book etext16649 Sacher-Masoch, Leopold, Ritter von, 1836-1895 La Pantoufle de Sapho etext16653 Mackenzie, Donald Alexander, 1873-1936 Myths of Babylonia and Assyria etext16701 Brehm, Alfred Edmund, 1829-1884 Het Leven der Dieren etext16707 Various Punch, or the London Charivari, Volume 159, August 18th, 1920 etext16790 Allen, Grant, 1848-1899 Early Britain etext16799 Macaulay, Rose, Dame, 1881-1958 Dangerous Ages etext16837 Stevenson, Robert Louis, 1850-1894 Ryöstölapsi etext16904 Dyson, Edward, 1865-1931 'Hello, Soldier!' etext16932 Stevenson, Matilda Coxe Evans, 1849-1915 The Religious Life of the Zuñi Child etext16964 Lutz, Rufus Rolla, 1873- Wage Earning and Education etext17064 Hope, Laura Lee The Story of a Plush Bear etext17100 Scott, John Reed, 1869- Beatrix of Clare etext17123 etext17138 Doctorow, Cory, 1971- Home Again, Home Again etext17148 Royce, Charles C., 1845-1923 Cessions of Land by Indian Tribes to the United States: Illustrated by Those in the State of Indiana etext17318 Stratton, Clarence, 1880-1951 Public Speaking etext17337 Alcott, Louisa May, 1832-1888 Little women. Dutch etext17349 Castlemon, Harry, 1842-1915 Frank Among The Rancheros etext17381 Lowndes, Marie Belloc, 1868-1947 What Timmy Did etext17478 Great Pictures, As Seen and Described by Famous Writers etext17496 Finley, Martha, 1828-1909 Elsie at Home etext17501 Banville, Théodore Faullain de, 1823-1891 Socrate et sa femme etext17506 Meade, L. T., 1854-1914 A Little Mother to the Others etext17525 Buysse, Cyriël, 1859-1932 De Zwarte Kost etext17566 Freeman, Mary Eleanor Wilkins, 1852-1930 The Shoulders of Atlas etext17586 Nissinen, Alli, 1866-1926 Kertomus maaseudulta etext17709 Lourié, Ossip, 1868- La philosophie sociale dans le theatre d'Ibsen etext17766 Henty, G. A. (George Alfred), 1832-1902 With Wolfe in Canada etext17786 Sevilla, Jose N., 1880-1946 Mga Dakilang Pilipino etext17803 Anonymous Laxdæla Saga etext17822 Shelley, Percy Bysshe, 1792-1822 Prometheus ontboeid etext17869 Dickens, Charles, 1812-1870 David Copperfield - Tome II etext17948 Lowell, James Russell, 1819-1891 The Vision of Sir Launfal etext17977 Jerrold, Walter, 1865-1929 Charles Lamb etext17987 Bryce, George, 1844-1931 The Mound Builders etext18037 Anonymous The Story of Ida Pfeiffer etext18068 Booth, Robert B., 1843?- Five Years in New Zealand etext18073 Ohnet, Georges, 1848-1918 Marchand de Poison etext18084 Vandal, Edouard, 1813-1889 Rapport au Ministre des Finances sur l'Administration des Postes etext18247 Shelley, Mary Wollstonecraft, 1797-1851 The Last Man etext18258 Wassermann, Jakob, 1873-1934 Deutsche Charaktere und Begebenheiten etext18260 Moorman, Frederic William, 1872-1919 More Tales of the Ridings etext18291 Hamsun, Knut, 1859-1952 Hunger etext18325 Eddy, Sherwood, 1871-1963 With Our Soldiers in France etext18422 Various Modern Eloquence: Vol III, After-Dinner Speeches P-Z etext18460 Piper, H. Beam, 1904-1964 Flight From Tomorrow etext18462 Jordan, David Starr, 1851-1931 The Story of the Innumerable Company, and Other Sketches etext18481 Godenhjelm, Bernhard Frederick, 1840-1912 Oppikirja suomalaisen kirjallisuuden historiassa etext18516 Brehm, Alfred Edmund, 1829-1884 Het Leven der Dieren etext18528 Anonymous Carta de hum cidadam de Genova a hum seu correspondente em Londres etext18577 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 News from the Duchy etext18599 Garis, Howard Roger, 1873-1962 Bully and Bawly No-Tail etext18600 Rizal, José, 1861-1896 Mi Ultimo Adiós etext18606 Frey, Hildegard G. (Hildegard Gertrude), 1891-1957 The Camp Fire Girls in the Maine Woods etext18624 Runeberg, Fredrika Charlotta Tengström, 1807-1879 Rouva Katariina Boije ja hänen tyttärensä etext18643 Rosse, Irving C. (Irving Collins), 1842-1901 The First Landing on Wrangel Island etext18653 The Mind of the Artist etext18695 Guizot, M. (François), 1787-1874 Mémoires pour servir à l'Histoire de mon temps (Tome 8) etext18702 Ontario. Ministry of Education The Ontario Readers: Fourth Book etext18722 etext18733 Bode, Wilhelm, 1845-1929 Die Italienische Plastik etext18737 Roig i Raventós, Josep, 1883-1966 Argelaga florida etext18745 Various The Great Round World and What Is Going On In It, Vol. 2, No. 23, June 9, 1898 etext18747 Randolph, Beverly S. Transactions of the American Society of Civil Engineers, Vol. LXX, Dec. 1910 etext18749 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 L'art russe etext18799 Wynne, Arnold, 1880- The Growth of English Drama etext18805 Francia, José R. Hindi Biro!... ó Ang Anting-Anting etext18810 MacDonald, George, 1824-1905 Alec Forbes of Howglen etext18818 Powell, John Wesley, 1834-1902 On the Evolution of Language etext18826 Dumas père, Alexandre, 1802-1870 La San-Felice, Tome VI etext18961 Lubbock, Percy, 1879-1965 The Craft of Fiction etext18962 Boylesve, René, 1867-1926 Le dangereux jeune homme etext18980 Various The Girl's Own Paper, Vol. VIII. No. 358, November 6, 1886. etext19042 etext19050 Northern Nut Growers Association, report of the proceedings at the eighth annual meeting etext19057 Abbott, Jane, 1881- Red-Robin etext19103 Wilkins, John, 1614-1672 The Discovery of a World in the Moone etext19107 Read, Opie Percival, 1852-1939 An Arkansas Planter etext19182 Ibsen, Henrik, 1828-1906 La Sinjorino el la Maro etext19218 etext19353 Crosby, Ernest Howard, 1856-1907 Captain Jinks, Hero etext19365 Johannsen, Anna Magdalena Everlasting Pearl etext19397 Hurst, J. F. (John Fletcher), 1834-1903 History of Rationalism Embracing a Survey of the Present State of Protestant Theology etext19428 Gualdo, Luigi, 1847-1898 Le nostalgie etext19470 Hartley, John, 1839-1915 Yorkshire Lyrics etext19522 Fitzhugh, Percy Keese, 1876-1950 Tom Slade at Temple Camp etext19577 Wilcox, Ella Wheeler, 1855-1919 Art and Heart etext19630 Maha-bharata etext19659 McMurry, Charles Alexander, 1857-1929 The Elements of General Method etext20027 etext20048 Trotzky, Leon Davidovich, 1879-1940 From October to Brest-Litovsk etext20081 Tytler, Sarah, 1827-1914 A Houseful of Girls etext20086 Richards, Fred Rome etext20115 A Short History of the 6th Division etext20141 Morris, Elisabeth Woodbridge, 1870-1964 More Jonathan Papers etext20157 Hichens, Robert Smythe, 1864-1950 The Call of the Blood etext20164 Morley, John, 1838-1923 Critical Miscellanies, Volume I (of 3) etext20169 Kárpáti, Aurél, 1884-1963 A bihari remete etext20187 Richmond, Grace S. (Grace Smith), 1866-1959 On Christmas Day in the Morning etext20193 Feehan, Mary Edward, 1878- Mary's Rainbow etext20334 Various Punch, or the London Charivari, Volume 159, December 29, 1920 etext20362 Paine, Harriet E. (Harriet Eliza), 1845-1910 Girls and Women etext20370 Kendall, John (AKA Dum-Dum) Rhymes of the East and Re-collected Verses etext20373 Garrison, Theodosia, 1874-1944 The Dreamers etext20442 Shoemaker, Henry W. A Catalogue of Early Pennsylvania and Other Firearms and Edged Weapons at "Restless Oaks" etext20457 Lescarbot, Marc La Defaite des Sauvages Armouchiquois par le Sagamo Membertou et ses alliez Sauvages, en la Nouvelle France, au mois de Juillet etext20560 Robinson, Forbes Letters to His Friends etext20564 Talleyrand-Périgord, Charles Maurice de, prince de Bénévent, 1754-1838 La Confession de Talleyrand, V. 1-5 etext20581 Bandarra, Gonçalo Anes, 1500-1556 Trovas do Bandarra etext20653 Gregory, Mary Huston Checking the Waste etext20702 MacQueen, James A General Plan for a Mail Communication by Steam, Between Great Britain and the Eastern and Western Parts of the World etext20763 Zerbe, James Slough, 1850- Carpentry for Boys etext20804 Gregorovius, Ferdinand, 1821-1891 Lucretia Borgia etext20820 Rama, Vincente Larawan etext20944 Gerstäcker, Friedrich, 1816-1872 Nach Amerika! Zweiter Band. etext20946 Thomson, Mrs. Memoirs of the Jacobites of 1715 and 1745. etext20982 Buckingham and Chandos, Richard Plantagenet Temple Nugent Brydges Chandos Grenville, Duke of, 1797-1861 Memoirs of the Courts and Cabinets of George the Third etext21001 La Chaume, Henri de Terre-Neuve et les Terre-Neuviennes etext21011 Sousa, Francisco de Tratado das Ilhas Novas etext21031 Rathenau, Walther, 1867-1922 Die Organisation der Rohstoffversorgung etext21035 Reed, Talbot Baines, 1852-1893 The Adventures of a Three-Guinea Watch etext21045 Spalding, J. L. Education and the Higher Life etext21069 Collingwood, Harry, 1851-1922 For Treasure Bound etext21089 Hutcheson, John C. (John Conroy) Young Tom Bowling etext21152 Bernard, of Clairvaux, Saint, 1091?-1153 On Loving God etext21163 Baum, L. Frank (Lyman Frank), 1856-1919 The Emerald City of Oz etext21172 Burgess, Gelett, 1866-1951 The Purple Cow etext21199 Lescarbot, Marc Histoire de la Nouvelle France etext21263 Ruskin, John, 1819-1900 On the Old Road, Vol. 2 (of 2) etext21298 Fenn, George Manville, 1831-1909 The Black Tor etext21359 Fenn, George Manville, 1831-1909 Off to the Wilds etext21368 Fenn, George Manville, 1831-1909 The Silver Canyon etext21379 Fenn, George Manville, 1831-1909 Marcus: the Young Centurion etext21381 Howells, William Dean, 1837-1920 Stories Of Ohio etext21401 Kingston, William Henry Giles, 1814-1880 In New Granada etext21417 Schofield, John M. Forty-Six Years in the Army etext21441 Byron, George Gordon Byron, Baron, 1788-1824 Don Juan: Canto I etext21666 Mathews, Joanna H. (Joanna Hooe), 1849-1901 Uncle Rutherford's Nieces etext21686 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition etext21742 Ballantyne, R. M. (Robert Michael), 1825-1894 Jarwin and Cuffy etext21751 Ballantyne, R. M. (Robert Michael), 1825-1894 The Middy and the Moors etext21775 The Best of the World's Classics, Restricted to Prose, Vol. IV (of X)—Great Britain and Ireland II etext21795 Standish, Hal Fred Fearnot's New Ranch etext21817 Lover, Samuel, 1797-1868 Handy Andy, Volume One etext21842 Webster, Frank V. The Boy Scouts of Lenox etext21918 Yájnavalkya Hindu Law and Judicature etext21944 Leonard, Mary Finley, 1862- The Pleasant Street Partnership etext21948 etext21954 Guerville, A. B. de (Amédée Baillot de), 1869- Het moderne Egypte: Wat er te zien en te hooren valt tusschen Kaïro en Faschoda etext22003 Xenophon, 431 BC-350? BC The First Four Books of Xenophon's Anabasis etext22035 Richards, John N. Dramatized Rhythm Plays etext22107 Jack, George Wood-Carving etext22177 Sullivan, W. R. Washington Morality as a Religion etext22275 Murray, David Christie, 1847-1907 VC — A Chronicle of Castle Barfield and of the Crimea etext22311 Meyer, Zoe Followers of the Trail etext22318 Blackmore, R. D. (Richard Doddridge), 1825-1900 Crocker's Hole etext22430 Evolution in Modern Thought etext22515 The Modern Scottish Minstrel, Volumes I-VI. etext22533 Mackie, John Milton Life of Schamyl etext22591 Alexander, DeAlva Stanwood A Political History of the State of New York, Volumes 1-3 etext22667 Day, Holman, 1865-1935 Joan of Arc of the North Woods etext22707 Bellamy, Edward, 1850-1898 Potts's Painless Cure etext22710 Bellamy, Edward, 1850-1898 The Old Folks' Party etext22740 Unknown The Apple Dumpling and Other Stories for Young Boys and Girls etext22745 Lincoln, Joseph Crosby, 1870-1944 Fair Harbor etext22747 Vaknin, Samuel, 1961- Financial Crime and Corruption etext22758 Various The New England Magazine, Volume 1, No. 2, February, 1886. etext22810 Green, Anna Katharine, 1846-1935 Midnight In Beauchamp Row etext22876 Nourse, Alan Edward, 1928-1992 The Link etext22887 Anonymous The Courtship, Marriage, and Pic-Nic Dinner of Cock Robin & Jenny Wren etext22891 Anonymous Simple Simon etext22894 Unknown Tratado do processo criminal preparatorio ou d'instrucção e pronuncia etext22993 Various Punch, or the London Charivari, Vol. 150, March 8, 1916 etext23035 Ocantos, Carlos María, 1860-1949 Quilito etext23056 Turgenev, Ivan Sergeevich, 1818-1883 The Rendezvous etext23063 Coppée, François, 1842-1908 The Lost Child etext23089 The Good Housekeeping Marriage Book etext23106 Hentz, Caroline Lee, 1800-1856 Helen and Arthur etext23110 etext23117 Archer, Richard The Island Home etext23150 Tracy, Louis, 1863-1928 The Albert Gate Mystery etext23229 Wilde, Oscar, 1854-1900 For Love of the King etext23298 Kalff, S. Een spoorwegreis in Korea etext23313 Mann, Thomas, 1875-1955 Tonio Kröger etext23336 Anonymous The Tiny Story Book. etext23348 Unknown Old Mother Hubbard and Her Dog etext23511 Page, Thomas Nelson, 1853-1922 The Christmas Peace etext23567 Musset, Alfred de, 1810-1857 Oeuvres complètes de Alfred de Musset - Tome 5 etext23585 Buddha 佛說四十二章經 etext23613 Knight, Alice J. Las Casas etext23625 Lindsay, Norman, 1879-1969 The Magic Pudding etext23648 Reid, Mayne, 1818-1883 Gaspar the Gaucho etext23680 Stanton, Henry Sex etext23685 Quéré, Jean Sarmoniou an Aotrou Quere etext23708 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Burgess Animal Book for Children etext23721 Chapais, Thomas, 1858-1946 Chronicles of Canada Volume 6 - THE GREAT INTENDANT etext23801 Cartier, Jacques, 1491-1557 Relation originale du voyage de Jacques Cartier au Canada en 1534 etext23835 Chu, Renhu, fl. 1675-1695 隋唐演義 etext23883 Myrica, Pierre de, 1875-1951 Zanzibar, de stapelplaats van Oost-Afrika etext23896 Conrad, Joseph, 1857-1924 The Secret Agent etext23907 Li, Yu, 1611-1680? 無聲戲 etext23908 Li, Xiuxing, jin shi 1715 夢中緣 etext23980 Bianco, Margery Williams, 1880-1944 The Velveteen Rabbit etext24109 Vaknin, Samuel, 1961- The Capgras Shift etext24113 Wu, Beng-Ren Jiu Ming Qi Yuan etext24115 Rutten, Felix, 1882-1971 Onder den rook der mijn etext24143 Fei, Xin, 1388-1436? 星槎勝覽 etext24154 Lü, Sheng 癡人說夢記 etext24156 Wu, Jingsuo, 16th cent. 中國十大禁書之國色天香 etext24179 Golden, M. (Meletios) Conversion of a High Priest into a Christian Worker etext24229 Liu, Xu, 887-946 Chiu Tʻang shu etext24290 Nourse, Alan Edward, 1928-1992 PRoblem etext24367 Kerschensteiner, Georg, 1854-1932 Begriff der Arbeitsschule etext24382 Berryman, John, 1919-1988 Vigorish etext24394 Birmingham, George A., 1865-1950 Gossamer etext24399 McComas, J. Francis, 1911-1978 Criminal Negligence etext24436 Garrett, Randall, 1927-1987 Anything You Can Do ... etext24535 Grier, Sydney C., 1868-1933 The Path to Honour etext24642 Becke, Louis, 1855-1913 "Five-Head" Creek; and Fish Drugging In The Pacific etext24654 Ragozin, Zénaïde A. (Zénaïde Alexeïevna), 1835-1924 Chaldea etext24676 Mockler-Ferryman, A. F. (Augustus Ferryman), 1856-1930 Peeps at Many Lands: Norway etext24697 Scudder, Horace Elisha, 1838-1902 Seven Little People and their Friends etext24844 Vasconcellos, Joaquim de, 1849-1936 O Ensino da Historia da Arte nos Lyceus e as excursões escolares etext24881 Bailey, Arthur Scott, 1877-1949 The Tale of Grumpy Weasel etext24892 Various Chambers's Edinburgh Journal, No. 441 etext24947 Little, A. G. (Andrew George), 1863-1945 Mediæval Wales etext24978 Bemister, Margaret, 1877- Thirty Indian Legends etext25058 Becke, Louis, 1855-1913 Foster's Letter Of Marque etext19312 `Abdu'l-Bahá, 1844-1921 Tablets of Abdul-Baha Abbas etext25115 Burritt, Elihu, 1810-1879 A Journal of a Visit of Three Days to Skibbereen, and its Neighbourhood etext25128 Zeng, Pu, 1872-1935 孽海花 etext25154 Work Projects Administration Slave Narratives: A Folk History of Slavery in the United States from Interviews with Former Slaves, Arkansas Narratives, Part 4 etext25156 Schafer, Richard D. (Richard Donald), 1918- An Introduction to Nonassociative Algebras etext25214 Wang, Shizhen, 1634-1711 劍俠傳 etext25217 Chen, Chen, ca. 1608- 水滸後傳 etext25229 Wu, Xuan, 18th cent. 飛龍全傳 etext25233 Berndtson, Fredrik, 1820-1881 Elämän taistelusta etext25244 Sykes, Frederick Hugh, Sir, 1877-1954 Aviation in Peace and War etext25254 Hussain, Ahmed, Sir, 1863- Notes on Islam etext25296 Kol, H. van Dominica etext25308 Chesterton, G. K. (Gilbert Keith), 1874-1936 Eugenics and Other Evils etext25317 Barco Centenera, Martín del, 1535- La Argentina etext25319 London, Jack, 1876-1916 De Ongelikte Beer etext25341 Collett, Herbert Brayley, 1877-1947 The 28th: A Record of War Service in the Australian Imperial Force, 1915-19, Vol. I etext25495 Heimburg, W., 1850-1912 Liesje van den Lompenmolen etext25505 Richards, Laura Elizabeth Howe, 1850-1943 The Merryweathers etext25534 Various Little Folks etext25728 Chisholm, A. M. (Arthur Murray), 1872-1960 Desert Conquest etext25835 Burt, Katharine Newlin, 1882-1977 The Branding Iron etext25859 Ellis, Edward Sylvester, 1840-1916 The Telegraph Messenger Boy etext25918 Heads and Tales : or, Anecdotes and Stories of Quadrupeds and Other Beasts, Chiefly Connected with Incidents in the Histories of More or Less Distinguished Men. etext25977 Guiccioli, Teresa, contessa di, 1800-1873 Lord Byron jugé par les témoins de sa vie. English etext25989 Magruder, Julia, 1854-1907 A Beautiful Alien etext26035 Tulloch, John, 1823-1886 Religion and Theology: A Sermon for the Times etext26070 Macgowan, J. (John), -1922 Chinese Folk-Lore Tales etext26079 Various The American Missionary — Volume 52, No. 3, September, 1898 etext26107 Shaw, Bernard, 1856-1950 Maxims for Revolutionists etext26120 Lowes, Emily Leigh Chats on Old Lace and Needlework etext26127 Kieviet, Cornelis Johannes, 1858-1931 Gouden Daden etext26222 Thomas, à Kempis, 1380?-1471 The Imitation of Christ etext26265 Montgomery, L. M. (Lucy Maud), 1874-1942 Rilla of Ingleside etext26268 Shakespeare, William, 1564-1616 Romeo and Juliet etext26270 The Sermon on the Mount etext26279 Society of Friends On Singing and Music etext26287 Trollope, Anthony, 1815-1882 The Warden etext26299 Alcott, Louisa May, 1832-1888 Little women. Dutch etext26348 Aanrud, Hans, 1863-1953 Lisbeth Longfrock etext26395 Verne, Jules, 1828-1905 Cesar Cascabel, Deel 2 etext26408 De Morgan, Augustus, 1806-1871 A Budget of Paradoxes, Volume II etext26444 Wassermann, Jakob, 1873-1934 Schläfst du Mutter?, Ruth etext26457 Huber, François, 1750-1831 New observations on the natural history of bees etext26496 Morse, Peter Rembrandt's Etching Technique: An Example etext26563 Cromie, Robert, 1856-1907 The Crack of Doom etext26579 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Love Among the Chickens etext26611 Moodie, Susanna, 1803-1885 Enthusiasm and Other Poems etext26634 Fusil, Louise, 1774-1848 Souvenirs d'une actrice (1/3) etext26639 Bliss, Sylvester, 1814-1863 A Brief Commentary on the Apocalypse etext26645 Shervill, W. P. Two Daring Young Patriots etext26647 Nuts for Future Historians to Crack etext26653 Optic, Oliver, 1822-1897 Up The Baltic etext26677 Upward, Allen, 1863-1926 Athelstane Ford etext26728 Hall, Eliza Calvert, 1856-1935 Aunt Jane of Kentucky etext26752 Ramus, Petrus, 1515-1572 The Way To Geometry etext26758 Shakespeare, William, 1564-1616 La plainte d'une amante etext26826 Buxy, B. de (Berthe de), 1863-1921 La Demoiselle au Bois Dormant etext26843 Sharkey, Jack, 1931- The Dope on Mars etext26884 La Motte, Ellen Newbold, 1873-1961 The Backwash of War etext26887 Yue, Ke Cheng shih etext26903 Pope, George W. (George Whitfield), 1867- Determining the Age of Cattle by the Teeth etext26921 Banyunyou 引鳳蕭 etext26976 Noponen, Alpo, 1862-1927 Ahab Israelin kuningas etext27033 Lebert, Marie Entretiens (1998-2001) etext27037 Lebert, Marie Le Livre 010101, Tome 1 (1993-1998) etext27059 Nanyuedaoren Hu Die Mei etext27067 Trollope, Anthony, 1815-1882 The Fixed Period etext27115 Bindloss, Harold, 1866-1945 The Cattle-Baron's Daughter etext27117 Herndon, G. Melvin Tobacco in Colonial Virginia etext27124 Stowe, Harriet Beecher, 1811-1896 Uncle Tom's cabin. Dutch etext27165 Zhang, Dai, 1597-1679 西湖夢尋 etext27170 Holberg, Ludvig, baron, 1684-1754 Jeppe sur la Monto etext27172 Lu, Can, 1494-1551 庚巳編 etext27177 Wild, Joseph, 1834- The Lost Ten Tribes, and 1882 etext27208 Kochanowski, Jan, 1530-1584 Threny etext27219 Silius Italicus, Tiberius Catius Punicorum Libri Septemdecim etext27256 Lafferty, Maude Ward, 1869-1962 A Pioneer Railway of the West etext27268 Ruskin, John, 1819-1900 Ariadne Florentina etext27304 Rosny, J.-H., 1856-1940 Scènes préhistoriques etext27423 Glass, Montague, 1877-1934 Elkan Lubliner, American etext27486 Wormser, J. A., 1845-1916 De Vurige Oven etext27498 Silva, Acúrcio Correia da, 1889-1925 Dôr e Luz etext27503 De Windt, Harry, 1856-1933 On the Equator etext27556 Reid, Thomas H. Across the Equator etext27586 Hart, Albert Bushnell, 1854-1943 The Mentor: The War of 1812 etext27642 Draper, Ernest Gallaudet, 1885-1954 Lectures in Navigation etext27652 May, Karl Friedrich, 1842-1912 Door het land der Skipetaren etext27666 Optic, Oliver, 1822-1897 Seek and Find etext27691 Porto, António Francisco Ferreira da Silva, 1817-1890 Silva Porto e Livingstone etext27748 Garnett, Thomas, 1766-1802 Popular Lectures on Zoonomia etext27782 Fouillée, Alfred, Mme., 1833-1923 Le tour de la France par deux enfants etext27786 Locke, William John, 1863-1930 The Rough Road etext27886 Elwin, Edward Fenton India and the Indians etext27901 Karpeles, Gustav, 1848-1909 Jewish Literature and Other Essays etext27914 Brehm, Alfred Edmund, 1829-1884 Het Leven der Dieren etext27918 Kingston, William Henry Giles, 1814-1880 The Mines and its Wonders etext27921 Knight, David Carpenter The Love of Frank Nineteen etext27963 Seeley, Levi, 1847-1928 History of Education etext27964 Pércheiro, D. A. Gomes Portugal e Brazil: emigração e colonisação etext27974 Omelka, František, 1904-1960 Vlci proti Mustangům etext27984 Otis, James, 1848-1912 Ralph Gurney's Oil Speculation etext28104 etext28117 Jones, John P. (John Peter), 1847-1916 India, Its Life and Thought etext28125 Various Dear Santa Claus etext28129 Various The Nursery, January 1877, Volume XXI, No. 1 etext28147 etext28150 Shakespeare, William, 1564-1616 Le Pèlerin amoureux etext28158 Great Britain. War Office History of the War in South Africa 1899-1902 v. 1 (of 4) etext28168 Mickiewicz, Adam, 1798-1855 Żywila etext28209 Thomas, Bertha Famous Women: George Sand etext28228 Riis, Jacob A. (Jacob August), 1849-1914 The Battle with the Slum etext28250 Various Harper's Young People, December 9, 1879 etext28254 Vandal, Albert, 1853-1910 Napoléon et Alexandre Ier (1/3) etext28290 Karikko, Kaarle, 1842-1916 Väsyneen haudalla etext28325 Capuana, Luigi, 1839-1915 Gli 'ismi' contemporanei etext28340 Nichols, James T. (James Thomas), 1865- Birdseye Views of Far Lands etext28352 etext28357 Henty, G. A. (George Alfred), 1832-1902 By Conduct and Courage etext28371 Carroll, Lewis, 1832-1898 Le avventure d'Alice nel paese delle meraviglie etext28384 Gouverneur, Marian As I Remember etext28386 Allen, Walter, 1840-1907 Ulysses S. Grant etext28442 Young, Clarence Ned, Bob and Jerry on the Firing Line etext28458 Wood-Allen, Mary, 1841-1908 What a Young Woman Ought to Know etext28478 Various Notes and Queries, Number 196, July 30, 1853 etext28481 Clarke, Charles H. History of Company F, 1st Regiment, R.I. Volunteers, during the Spring and Summer of 1861 etext28499 Robinson, Walter Stitt Mother Earth etext28516 Shea, Robert, 1933-1994 The Saracen: The Holy War etext28562 Mills, Enos Abijah, 1870-1922 Wild Life on the Rockies etext28608 Stuart, William W. Inside John Barth etext28641 Smith, Baxter Perry, 1829-1884 The History of Dartmouth College etext28648 Douglas, Amanda Minnie, 1831-1916 A Little Girl in Old Philadelphia etext28675 Wister, Owen, 1860-1938 Red Men and White etext28773 Churchill, Seton General Gordon etext28829 Saint-Elme, Ida, 1778-1845 Mémoires d'une contemporaine etext28848 Spears, Raymond S. (Raymond Smiley), 1876-1950 The River Prophet etext28866 etext28881 Various Harper's Young People, May 4, 1880 etext28916 Santayana, George, 1863-1952 Some Turns of Thought in Modern Philosophy etext28925 Carey, Rosa Nouchette, 1840-1909 Lover or Friend etext28930 Chateaubriand, François-René, vicomte de, 1768-1848 Mémoires d'Outre-Tombe etext28939 Fitzgerald, F. Scott (Francis Scott), 1896-1940 This Side of Paradise etext29034 Various Harper's Young People, July 13, 1880 etext29041 McKenna, Stephen, 1888-1967 The Education of Eric Lane etext29091 Coleridge, Samuel Taylor, 1772-1834 The Complete Poetical Works of Samuel Taylor Coleridge etext29100 Weyman, Stanley John, 1855-1928 The Wild Geese etext29110 Various Blackwood's Edinburgh Magazine, Volume 58, Number 360, October 1845 etext29134 Various Harper's Young People, September 7, 1880 etext29196 Shea, Robert, 1933-1994 Mutineer etext29200 Various Harper's Young People, October 19, 1880 etext29223 Rogers, Robert, 1731-1795 Ponteach etext29286 Moore, Henry Charles Noble Deeds of the World's Heroines etext29295 Molesworth, Mrs., 1839-1921 Great Uncle Hoot-Toot etext29298 Gilmore, Anthony The Bluff of the Hawk etext29306 Thwaites, Reuben Gold, 1853-1913 Afloat on the Ohio etext29367 Cross, Helen Reid Humpty Dumpty's Little Son etext29411 Various Scientific American magazine Vol 2. No. 3 Oct 10 1846 etext29450 Staveley, Lilian, 1878?-1928 The Prodigal Returns etext29460 Field, David Dudley, 1805-1894 The Electoral Votes of 1876 etext29519 Hooper, Mary, 1829-1904 Nelson's Home Comforts etext29533 Birmingham, George A., 1865-1950 The Red Hand of Ulster etext29551 Wilmot-Buxton, E. M. (Ethel Mary) Told by the Northmen: etext29573 etext29581 Ryan, Marah Ellis, 1866-1934 The Bondwoman etext29590 Roland Holst-Van der Schalk, Henriette, 1869-1952 Uit Sowjet-Rusland etext29634 Lahee, Henry Charles, 1856-1953 Annals of Music in America etext29649 Borrow, George Henry, 1803-1881 The Serpent Knight etext29746 Gerstäcker, Friedrich, 1816-1872 Nach Amerika! Dritter Band etext29771 Ernst, Paul, 1899-1985 The Planetoid of Peril etext29772 etext29777 etext29812 Fanny, Aunt, 1822-1894 The Little Nightcap Letters etext29886 Laut, Agnes C. (Agnes Christina), 1871-1936 Pioneers of the Pacific Coast etext29899 etext29955 Gregorovius, Ferdinand, 1821-1891 Passeggiate per l'Italia, vol. 1 etext30076 Various Graham's Magazine Vol XXXIII No. 3 September 1848 etext30099 Hill, John, 1714?-1775 Hypochondriasis etext30123 Voltaire, 1694-1778 Romans — Volume 3: Micromegas etext30149 Warner, Susan, 1819-1885 Trading etext30158 Various The American Missionary—Volume 39, No. 07, July, 1885 etext30175 Bolívar, Víctor José Fernández Los Principios Matemático-Históricos y la Evolución de la Libertad etext30179 Wood, Eric Fisher, 1889-1962 The Note-Book of an Attaché etext30218 Steedman, Amy Joseph the Dreamer etext30224 Brodhead, Eva Wilder, 1870-1915 A Prairie Infanta etext30357 Gray, Thomas, 1716-1771 Select Poems of Thomas Gray etext30379 Hunter, Gene Field Trip etext30398 Schmitz, James H., 1911-1981 The Other Likeness etext30414 Various Punch, or the London Charivari, Volume 98, March 22, 1890 etext30431 etext30446 Cobb, Thomas, 1854-1932 The Bountiful Lady etext30517 Various Le Tour du Monde; L'Archipel des Feroé etext30636 Pinkerton, Allan, 1819-1884 The Somnambulist and the Detective etext30648 McFee, William, 1881-1966 An Ocean Tramp etext30683 Phillips, Rog, 1909-1965 The Unthinking Destroyer etext30734 Mushrooms of America, Edible and Poisonous etext30761 Winterbotham, R. R. (Russell Robert), 1904-1971 The Minus Woman etext30766 Alighieri, Jacopo, 14th cent. Chiose alla cantica dell'Inferno di Dante Alighieri etext30797 Raphael, Rick, 1919-1994 The Thirst Quenchers etext30826 White, Stewart Edward, 1873-1946 Gold etext30830 Cawein, Madison Julius, 1865-1914 Weeds by the Wall etext30841 Stratemeyer, Edward, 1862-1930 The Rover Boys in the Land of Luck etext30873 Wells, David Dwight His Lordship's Leopard etext30931 Latham, R. G. (Robert Gordon), 1812-1888 The Ethnology of the British Islands etext30934 Otway, Thomas, 1652-1685 Venice Preserved etext30951 Hayes, Clair W. (Clair Wallace), 1887- The Boy Allies with the Cossacks etext31004 Warren, Samuel, 1807-1877 Ten Thousand a-Year. Volume 1. etext31144 Lönnrot, Elias, 1802-1884 Suomen kansan Arwoituksia etext31199 Rilke, Rainer Maria, 1875-1926 Die Letzten etext31223 Nourse, Alan Edward, 1928-1992 Infinite Intruder etext31336 Tayler, Charles B. Rautakanki ja kuinka viimein kävi etext31409 Jókai, Mór, 1825-1904 Timar's Two Worlds etext31424 Various Report of the Proceedings at the Examination of Charles G. Davis, Esq., on the Charge of Aiding and Abetting in the Rescue of a Fugitive Slave etext31428 Dolbear, A. E. (Amos Emerson), 1837-1910 Matter, Ether, and Motion, Rev. ed., enl. etext31469 Lovecraft, H. P. (Howard Phillips), 1890-1937 The Shunned House etext31554 Panin, Ivan, 1855-1942 Lectures on Russian Literature etext31573 Cabral, Guilherme Read Um novo mundo etext31575 Anonymous A Pata no Choco etext31606 Wright, N. Louise Twelve Preludes for the Pianoforte Op. 25 etext31638 Dickens, Charles, 1812-1870 Sanoma merellä etext31646 Laut, Agnes C. (Agnes Christina), 1871-1936 Through Our Unknown Southwest etext31718 Fillmore, Parker, 1878-1944 The Rosie World etext31723 Crawford, F. Marion (Francis Marion), 1854-1909 Cecilia etext31757 Mushanokoji, Saneatsu Omedetaki Hito etext31772 McElroy, John, 1846-1929 Si Klegg, Book 2 (of 6) etext31828 Everts, Katherine Jewell Vocal Expression etext31873 Hardenberg, Friedrich von, 1772-1801 Henry of Ofterdingen: A Romance. etext31933 Engels, Friedrich, 1820-1895 Landmarks of Scientific Socialism etext32049 Unknown The Lay of Havelok the Dane etext32116 Baily, Waldron, 1871- When the Cock Crows etext32120 Various The Scrap Book, Volume 1, No. 3 etext32126 Abel, Franklin Freudian Slip etext32161 Wallace, F. L. (Floyd L.), 1915-2004 Tangle Hold etext32168 Pound, Roscoe An Introduction to the Philosophy of Law etext32183 Thiselton-Dyer, Thomas Firminger Folk-lore of Shakespeare etext32189 Smith, A. C. The Raising and Care of Guinea Pigs etext32217 Fillmore, Parker, 1878-1944 Czechoslovak Fairy Tales etext32248 Upton, George P. (George Putnam), 1834-1919 The Standard Cantatas etext32352 Various Punch - Volume 25 (Jul-Dec 1853) etext32354 Carter, Herbert The Boy Scouts in the Rockies etext32370 Marx, Karl, 1818-1883 Secret Diplomatic History of The Eighteenth Century etext32379 Lima, Sebastião de Magalhães, 1850-1928 O Primeiro de Maio etext32400 Ford, J. Sawtelle Paper and Printing Recipes etext32466 Nesbit, E. (Edith), 1858-1924 The Wouldbegoods etext32474 Díaz del Castillo, Bernal, 1492-1585 The Memoirs of the Conquistador Bernal Diaz del Castillo, Vol 1 (of 2) etext32478 Velde, C. F. van der (Carl Franz), 1779-1824 Tales from the German. Volume I. etext32493 Counselman, Mary Elizabeth Witch-Burning etext32535 Cory, David, 1872-1966 Puss Junior and Robinson Crusoe etext32536 Doyle, Arthur Conan, Sir, 1859-1930 Baskervillen koira etext32559 Drayson, A. W. (Alfred Wilks), 1827-1901 Adventures of Hans Sterk etext32637 Fyfe, Horace Brown, 1918-1997 The Envoy, Her etext32640 Sand, George, 1804-1876 Histoire du véritable Gribouille etext32650 Thomas, Hampton Sidney Some Personal Reminiscences of Service in the Cavalry of the Army of the Potomac etext32685 Geier, Chester S. Cold Ghost etext99 Douglass, Frederick, 1818-1895 Collected Articles of Frederick Douglass etext116 United States Motion Pictures of the Apollo 11 Lunar Landing etext148 Franklin, Benjamin, 1706-1790 Autobiography etext172 Morley, Christopher, 1890-1957 The Haunted Bookshop etext228 Virgil, 70 BC-19 BC The Aeneid etext277 National Atomic Museum (U.S.) Trinity site etext304 Paterson, A. B. (Andrew Barton), 1864-1941 Rio Grande's Last Race & Other Verses etext372 Stevenson, Robert Louis, 1850-1894 Prince Otto, a Romance etext474 Bryant, Sara Cone, 1873- How to Tell Stories to Children, And Some Stories to Tell etext525 Conrad, Joseph, 1857-1924 Youth, a Narrative etext568 Brann, William Cowper, 1855-1898 Brann the Iconoclast — Volume 10 etext599 Thackeray, William Makepeace, 1811-1863 Vanity Fair etext624 Bellamy, Edward, 1850-1898 Looking Backward, 2000 to 1887 etext654 Bunyan, John, 1628-1688 Grace Abounding to the Chief of Sinners etext657 Unknown The Anglo-Saxon Chronicle etext668 etext704 Van Dyke, Henry, 1852-1933 The Mansion etext715 Buchan, John, 1875-1940 The Moon Endureth: Tales and Fancies etext754 Van Loon, Hendrik Willem, 1882-1944 The Story of Mankind etext775 Wells, H. G. (Herbert George), 1866-1946 When the Sleeper Wakes etext813 Tolstoi, Ilia Lvovich, Graf, 1866-1933 Reminiscences of Tolstoy etext819 Casson, Herbert Newton, 1869-1951 The History of the Telephone etext857 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Evergreens etext859 Mayo, Margaret, 1882-1951 Polly of the Circus etext895 Gibbon, Edward, 1737-1794 History of the Decline and Fall of the Roman Empire — Volume 6 etext913 Lermontov, Mikhail Yurevich, 1814-1841 A Hero of Our Time etext982 Lear, Edward, 1812-1888 The Book of Nonsense etext1003 Dante Alighieri, 1265-1321 Divine Comedy, Longfellow's Translation, Paradise etext1019 etext1025 Rumford, Benjamin, Graf von, 1753-1814 Essays; Political, Economical, and Philosophical — Volume 1 etext1026 etext1091 Carlyle, Thomas, 1795-1881 On Heroes and Hero Worship and the Heroic in History etext1136 Shakespeare, William, 1564-1616 King Henry VIII etext1162 London, Jack, 1876-1916 The Jacket (Star-Rover) etext1165 The Little Book of Modern Verse; a selection from the work of contemporaneous American poets etext1172 Xenophon, 431 BC-350? BC The Cavalry General etext1189 Balzac, Honoré de, 1799-1850 The Message etext1202 Conrad, Joseph, 1857-1924 Tales of Unrest etext1355 Verne, Jules, 1828-1905 The Underground City, or, the Child of the Cavern etext1358 Tennyson, Alfred Tennyson, Baron, 1809-1892 Enoch Arden, &c. etext1360 Kingsley, Charles, 1819-1875 Historical Lectures and Essays etext1391 Wiggin, Kate Douglas Smith, 1856-1923 Penelope's Irish Experiences etext1395 Lang, Andrew, 1844-1912 Letters on Literature etext1476 Conrad, Joseph, 1857-1924 Chance etext1568 Henley, William Ernest, 1849-1903 Poems etext1572 Plato, 427? BC-347? BC Timaeus etext1621 Collins, Wilkie, 1824-1889 Miss or Mrs? etext1622 Collins, Wilkie, 1824-1889 The Law and the Lady etext1629 Collins, Wilkie, 1824-1889 I Say No etext1631 Lang, Andrew, 1844-1912 A Monk of Fife etext1690 Haggard, Henry Rider, 1856-1925 Marie etext1831 The Lock and Key Library etext1839 Wolf, Emma, 1865-1932 Other Things Being Equal etext1850 Irving, Washington, 1783-1859 Old Christmas etext1876 Peattie, Elia Wilkinson, 1862-1935 The Shape of Fear etext1917 Collins, Wilkie, 1824-1889 The Queen of Hearts etext1927 Cooper, Susan Fenimore, 1813-1894 Elinor Wyllys, Volume 1 etext1934 Blake, William, 1757-1827 Songs of Innocence and Experience etext1942 Balzac, Honoré de, 1799-1850 Rise and Fall of Cesar Birotteau etext1951 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Coming Race etext2026 Niemann, August, 1839-1919 The Coming Conquest of England etext2062 Dryden, John, 1631-1700 All for Love etext2103 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 03 etext2123 France, Anatole, 1844-1924 The Crime of Sylvestre Bonnard etext2306 Harris, Joel Chandler, 1848-1908 Uncle Remus, his songs and his sayings etext2323 Lee, Robert Edward, General, 1807-1870 Recollections and Letters of General Robert E. Lee etext2330 Giles, Herbert Allen, 1845-1935 Religions of Ancient China etext2356 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Tommy and Co. etext2458 Latimer, Hugh, 1485?-1555 Sermons on the Card etext2493 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Paddy the Beaver etext2527 Goethe, Johann Wolfgang von, 1749-1832 The Sorrows of Young Werther etext2546 Mulford, Clarence Edward, 1883-1956 Hopalong Cassidy's Rustler Round-Up etext2741 Dumas père, Alexandre, 1802-1870 The Borgias etext2765 Ibsen, Henrik, 1828-1906 The Lady from the Sea etext2787 Alcott, Louisa May, 1832-1888 An Old-Fashioned Girl etext2792 Pellico, Silvio, 1789-1854 My Ten Years' Imprisonment etext2832 Lang, Andrew, 1844-1912 Myth, Ritual and Religion — Volume 1 etext2899 Buck, Solon J. (Solon Justus), 1884-1962 The Agrarian Crusade; a chronicle of the farmer in politics etext2900 Thompson, Holland, 1873-1940 The Age of Invention : a chronicle of mechanical conquest etext2956 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 06: Paris etext2969 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 19: Back Again to Paris etext2996 Hardy, Thomas, 1840-1928 The Romantic Adventures of a Milkmaid etext3043 Fisher, Sydney George, 1856-1927 The Quaker Colonies, a chronicle of the proprietors of the Delaware etext3055 Morris, William, 1834-1896 Wood Beyond the World etext3088 Maupassant, Guy de, 1850-1893 Original Short Stories — Volume 12 etext3107 Warner, Charles Dudley, 1829-1900 As We Go etext3126 Warner, Charles Dudley, 1829-1900 On Horseback etext3129 Warner, Charles Dudley, 1829-1900 The Story of Pocahontas etext3172 Twain, Mark, 1835-1910 Fenimore Cooper's Literary Offences etext3177 Twain, Mark, 1835-1910 Roughing It etext3189 Twain, Mark, 1835-1910 Sketches New and Old etext3190 Twain, Mark, 1835-1910 1601 etext3209 Honig, Winfried Mr. Honey's Medium Business Dictionary etext3244 Connor, Ralph, 1860-1937 To Him That Hath: a Tale of the West of Today etext3278 Butler, Samuel, 1835-1902 Cambridge Pieces etext3320 Mühlbach, L. (Luise), 1814-1873 Mohammed Ali and His House etext3345 Sue, Eugène, 1804-1857 The Wandering Jew — Volume 07 etext3367 Howells, William Dean, 1837-1920 A Hazard of New Fortunes — Volume 2 etext3378 Howells, William Dean, 1837-1920 My Literary Passions etext3430 Sabatini, Rafael, 1875-1950 The Suitors of Yvonne: being a portion of the memoirs of the Sieur Gaston de Luynes etext3454 Lang, Andrew, 1844-1912 The Lilac Fairy Book etext3471 Warner, Charles Dudley, 1829-1900 Quotations from the Project Gutenberg Editions of the Works of Charles Dudley Warner etext3498 Heine, Heinrich, 1797-1856 Buch der Lieder etext3599 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 19 etext3635 Norris, Kathleen Thompson, 1880-1966 Mother etext3649 Churchill, Winston, 1871-1947 The Dwelling Place of Light — Complete etext3678 Stone, Louis, 1871-1935 Jonah etext3704 Darwin, Charles, 1809-1882 The Voyage of the Beagle etext3736 Churchill, Winston, 1871-1947 A Far Country — Volume 1 etext3750 Liszt, Franz, 1811-1886 Letters of Franz Liszt -- Volume 2 etext3770 Krehbiel, Henry Edward, 1854-1923 A Second Book of Operas etext3779 Marshall, Logan A History of the Nations and Empires Involved and a Study of the Events Culminating in the Great Conflict etext3787 Inchbald, Mrs., 1753-1821 Nature and Art etext3805 Merriman, Henry Seton, 1862-1903 The Vultures etext3845 Retz, Jean François Paul de Gondi de, 1613-1679 The Memoirs of Cardinal de Retz — Volume 4 [Historic court memoirs] etext3867 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 08 etext3880 etext3915 Ohnet, Georges, 1848-1918 Serge Panine — Volume 02 etext3998 Souvestre, Émile, 1806-1854 An Attic Philosopher in Paris — Volume 3 etext4049 Follen, Eliza Lee Cabot, 1787-1860 Piccolissima etext4072 Swinburne, Algernon Charles, 1837-1909 Songs Before Sunrise etext4150 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 30: August/September 1664 etext4168 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 46: October 1666 etext4178 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 55: July 1667 etext4234 etext4239 Malthus, T. R. (Thomas Robert), 1766-1834 An Essay on the Principle of Population etext4262 James, Henry, 1843-1916 The Golden Bowl — Volume 1 etext4276 Gaskell, Elizabeth Cleghorn, 1810-1865 North and South etext4325 Duhamel, Georges, 1884-1966 The New Book of Martyrs etext4367 Grant, Ulysses S. (Ulysses Simpson), 1822-1885 Personal Memoirs of U. S. Grant, Complete etext4402 Meredith, George, 1828-1909 The Shaving of Shagpat; an Arabian entertainment — Volume 2 etext4425 Meredith, George, 1828-1909 Rhoda Fleming — Volume 5 etext4444 Meredith, George, 1828-1909 The Adventures of Harry Richmond — Volume 1 etext4447 Meredith, George, 1828-1909 The Adventures of Harry Richmond — Volume 4 etext4448 Meredith, George, 1828-1909 The Adventures of Harry Richmond — Volume 5 etext4454 Meredith, George, 1828-1909 Beauchamp's Career — Volume 2 etext4471 Meredith, George, 1828-1909 One of Our Conquerors — Volume 1 etext4508 Douglas, Norman, 1868-1952 South Wind etext4525 Hopkins, Cyril G. (Cyril George), 1866-1919 The Farm That Won't Wear Out etext4526 Gissing, George, 1857-1903 Born in Exile etext4536 Gaskell, Elizabeth Cleghorn, 1810-1865 Sylvia's Lovers — Volume 3 etext4559 Renard, Jules, 1864-1910 Poil de Carotte etext4572 Luo, Guanzhong, 1330?-1400? 粉妝樓1-10回 etext4586 Arthur, T. S. (Timothy Shay), 1809-1885 Danger etext4636 Beasley, Thomas Dykes A Tramp Through the Bret Harte Country etext4657 Burton, Richard Francis, Sir, 1821-1890 Personal Narrative of a Pilgrimage to Al-Madinah & Meccah — Volume 1 etext4673 Knights, Arthur E. Notes By the Way in a Sailor's Life etext4686 Dreyfus, Suelette Underground etext4708 Louÿs, Pierre, 1870-1925 Les Chansons De Bilitis etext4735 Wright, Harold Bell, 1872-1944 The Shepherd of the Hills etext4739 Calverley, Charles Stuart, 1831-1884 Fly Leaves etext4758 Hardy, Thomas, 1840-1928 Late Lyrics and Earlier : with Many Other Verses etext4788 Maupassant, Guy de, 1850-1893 Mademoiselle Fifi etext4798 Shelley, Percy Bysshe, 1792-1822 The Complete Poetical Works of Percy Bysshe Shelley — Volume 2 etext4802 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 02: Introduction II etext4814 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 13: 1567, part II etext4841 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1585d etext4855 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1588a etext4858 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1588d etext4859 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1588-89 etext4874 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1600-02 etext4914 Penrose, Margaret The Motor Girls etext4918 Crockett, S. R. (Samuel Rutherford), 1860-1914 The Lilac Sunbonnet etext4977 Regnard, Jean François, 1655-1709 The McNaughtens etext5120 Clouston, J. Storer (Joseph Storer), 1870-1944 Vandrad the Viking, the Feud and the Spell etext5194 Mundy, Talbot, 1879-1940 The Ivory Trail etext5246 Gunn, John Alexander, 1896-1975 Modern French Philosophy: a Study of the Development Since Comte etext5291 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 17 etext5444 Ebers, Georg, 1837-1898 Uarda : a Romance of Ancient Egypt — Volume 06 etext5458 Ebers, Georg, 1837-1898 An Egyptian Princess — Volume 09 etext5467 Ebers, Georg, 1837-1898 Joshua — Volume 1 etext5556 Ebers, Georg, 1837-1898 Margery — Volume 05 etext5576 Ebers, Georg, 1837-1898 A Word, Only a Word — Volume 05 etext5594 Ebers, Georg, 1837-1898 The Story of My Life — Volume 02 etext5595 Ebers, Georg, 1837-1898 The Story of My Life — Volume 03 etext5611 Petronius Arbiter, 20-66 The Satyricon of Petronius Arbiter etext5637 etext5654 Barrie, J. M. (James Matthew), 1860-1937 What Every Woman Knows etext5667 Anonymous The Arabian Nights Entertainments — Volume 04 etext5697 Rohmer, Sax, 1883-1959 Tales of Chinatown etext5779 Andreyev, Leonid Nikolayevich, 1871-1919 The Crushed Flower and Other Stories etext5835 etext5873 Balzac, Honoré de, 1799-1850 Farewell etext5959 Scott, Walter, Sir, 1771-1832 Peveril of the Peak etext5972 Savage, Richard, 1846-1903 A Fascinating Traitor etext5981 Durston, George The Boy Scouts in Front of Warsaw etext6027 Burnett, Frances Hodgson, 1849-1924 In the Closed Room etext6064 Fanshawe, Anne Harrison, Lady, 1625-1680? Memoirs of Lady Fanshawe, Wife of Sir Richard Fanshawe, bart., ambassador from Charles the Second to the courts of Portugal and Madrid. etext6080 Moore, John W. (John Wheeler), 1833-1906 School History of North Carolina : from 1584 to the present time etext6217 Parker, Gilbert, 1862-1932 The Pomp of the Lavilettes, Complete etext6282 Parker, Gilbert, 1862-1932 The World for Sale, Volume 2. etext6302 The Junior Classics — Volume 7 etext6344 United States. Central Intelligence Agency The 2002 CIA World Factbook etext6375 Goldsmid, Edmund Quaint Gleanings from Ancient Poetry etext6412 Roe, Edward Payson, 1838-1888 Nature's Serial Story etext6444 Webster, Frank V. The Boys of Bellwood School etext6451 Stratemeyer, Edward, 1862-1930 The Rover Boys on the Great Lakes etext6506 Carter, Charles Franklin Old Mission Stories of California etext6527 etext6547 Tarkington, Booth, 1869-1946 The Conquest of Canaan etext6594 Gilder, William H. (William Henry), 1838-1900 Schwatka's Search etext6683 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Little Nugget etext6719 Roe, Edward Payson, 1838-1888 The Earth Trembled etext6738 Collins, J. E. (Joseph Edmund), 1855-1892 The Four Canadian Highwaymen etext6746 The Grey Fairy Book etext6760 Smollett, T. (Tobias), 1721-1771 The Adventures of Ferdinand Count Fathom — Volume 02 etext6772 Schiller, Friedrich, 1759-1805 The Thirty Years War — Volume 03 etext6774 Schiller, Friedrich, 1759-1805 The Thirty Years War — Volume 05 etext6798 Schiller, Friedrich, 1759-1805 Aesthetical Essays of Frederich Schiller etext6803 Leland, Charles Godfrey, 1824-1903 Algonquin Legends of New England etext6853 Emerson, Alice B. Betty Gordon in Washington etext6895 Frey, Hildegard G. (Hildegard Gertrude), 1891-1957 The Camp Fire Girls Go Motoring etext6912 Greer, Carlotta Cherryholmes School and Home Cooking etext6936 etext6940 Scott, Walter, Sir, 1771-1832 Old Mortality, Volume 2. etext6963 Elson, William H. Elson Grammar School Literature v4 etext7016 Berry, Robert Lee Adventures in the Land of Canaan etext7020 Cooper, Lane Louis Agassiz as a Teacher; illustrative extracts on his method of instruction etext7056 Lathrop, Rose Hawthorne, 1851-1926 Along the Shore etext7062 Barr, Amelia Edith Huddleston, 1831-1919 A Daughter of Fife etext7116 Chambers, Robert, 1802-1871 Vestiges of the Natural History of Creation etext7142 Thucydides, 455? BC-395 BC The History of the Peloponnesian War etext7219 Wei, Liao, 4th cent. B.C. 尉繚子 etext7231 Meade, L. T., 1854-1914 Light O' the Morning etext7362 Life at High Tide etext7379 Rutherford, Mark, 1831-1913 The Early Life of Mark Rutherford (W. Hale White) etext7385 Douglas, Norman, 1868-1952 Old Calabria etext7467 Thackeray, William Makepeace, 1811-1863 The Newcomes etext7484 Guan, Zhong, -645 BC 管子 — Volume 02 : Chapters 6-10 etext7545 Holmes, Oliver Wendell, 1809-1894 Images from Works of Oliver W. Holmes etext7558 Campan, Jeanne Louise Henriette (Genet), 1752-1822 Quotes and Images From Memoirs of Marie Antoinette etext7565 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Quotes and Images From Memoirs of Louis XIV. etext7578 Halévy, Ludovic, 1834-1908 Quotes and Images from Halevey's Abbe Constantin etext7604 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 18 etext7654 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Kenelm Chillingly — Volume 05 etext7671 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 What Will He Do with It? — Complete etext7724 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Last of the Barons — Volume 10 etext7806 Zollinger, Gulielma A Boy's Ride etext7838 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 Fifty-One Tales etext7858 Heyse, Paul, 1830-1914 L'Arrabbiata etext7879 Hawthorne, Nathaniel, 1804-1864 Passages from the French and Italian Notebooks, Volume 1. etext7880 Hawthorne, Nathaniel, 1804-1864 Passages from the French and Italian Notebooks, Volume 2. etext7881 Hawthorne, Nathaniel, 1804-1864 Passages from the French and Italian Notebooks, Complete etext7937 Bridge, Horatio, 1806-1893 Journal of an African Cruiser etext7962 Empey, Arthur Guy, 1883-1963 Over the Top etext8027 Anonymous The Bible, King James version, Book 27: Daniel etext8038 Anonymous The Bible, King James version, Book 38: Zechariah etext8062 Anonymous The Bible, King James version, Book 62: 1 John etext8069 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture etext8087 Sedgwick, Anne Douglas, 1873-1935 A Fountain Sealed etext8088 Hawthorne, Nathaniel, 1804-1864 Passages from the American Notebooks, Volume 1 etext8100 Stedman, John Gabriël, 1744-1797 Reize naar Surinamen en door de binnenste gedeelten van Guiana — Compleet etext8103 Rickaby, Joseph , S. J., 1845-1932 Moral Philosophy etext8105 Russell, George William, 1867-1935 Imaginations and Reveries etext8163 Botta, Anne C. Lynch, 1815-1891 Handbook of Universal Literature etext8212 Southey, Robert, 1774-1843 Poems etext8233 Anonymous The World English Bible (WEB): Joshua etext8279 Anonymous The World English Bible (WEB): 1 Thessalonians etext8299 Filipino Popular Tales etext8308 The Bible, Douay-Rheims, Book 08: Ruth etext8334 The Bible, Douay-Rheims, Book 34: Joel etext8339 The Bible, Douay-Rheims, Book 39: Nahum etext8381 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture: St. John Chaps. XV to XXI etext8398 White, Stewart Edward, 1873-1946 The Sign at Six etext8411 Forest and Frontiers etext8451 Roberts, Charles George Douglas, Sir, 1860-1943 Aarniometsän sydän etext8455 Fogazzaro, Antonio, 1842-1911 The Saint etext8535 Atherton, Gertrude Franklin Horn, 1857-1948 The Sisters-In-Law etext8543 Ayer, I. Windslow The Great North-Western Conspiracy in All Its Startling Details etext8609 Shakespeare, William, 1564-1616 A Midsummer Night's Dream etext8620 Doyle, Arthur Conan, Sir, 1859-1930 The Vital Message etext8633 Doyle, Arthur Conan, Sir, 1859-1930 The Adventure of the Devil's Foot etext8637 Doyle, Arthur Conan, Sir, 1859-1930 Through the Magic Door etext8640 Various The Mirror of Literature, Amusement, and Instruction etext8650 Gaboriau, Émile, 1832-1873 Monsieur Lecoq — Volume 1 etext8687 Various Scientific American Supplement, No. 362, December 9, 1882 etext8706 The Doré Gallery of Bible Illustrations, Volume 6 etext8736 Conrad, Joseph, 1857-1924 Gaspar Ruiz etext8764 Burroughs, Edgar Rice, 1875-1950 The People That Time Forgot etext8782 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Hell, Volume 04 etext8931 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Gem Collector etext8940 Foster, John, 1770-1843 An Essay on the Evils of Popular Ignorance etext8944 MacDonald, George, 1824-1905 The Elect Lady etext8963 Crane, Stephen, 1871-1900 A Girl of the Streets etext8976 Wells, H. G. (Herbert George), 1866-1946 The War of the Worlds etext9046 Grillparzer, Franz, 1791-1872 König Ottokars Glück und Ende etext9063 Chase, J. Smeaton The Penance of Magdalena & Other Tales of the California Missions etext9074 Havell, H. L. (Herbert Lord), -1913 Stories from Thucydides etext9147 Melville, Herman, 1819-1891 Moby Dick etext9156 Cherry, J. L. Life and Remains of John Clare etext9181 Grillparzer, Franz, 1791-1872 Die Ahnfrau etext9204 Hawthorne, Nathaniel, 1804-1864 The Prophetic Pictures (From "Twice Told Tales") etext9212 Hawthorne, Nathaniel, 1804-1864 Snow Flakes (From "Twice Told Tales") etext9288 Wharton, Edith, 1862-1937 Ethan Frome etext9289 Wharton, Edith, 1862-1937 Tales of Men and Ghosts etext9364 Calderón de la Barca, Madame (Frances Erskine Inglis), 1804-1882 Life in Mexico etext9415 Leighton, Robert, 1859-1934 Olaf the Glorious etext9423 Hardy, Thomas, 1840-1928 Life's Little Ironies etc. etext9503 Various Seeing Europe with Famous Authors, Volume 2 etext9543 MacDonald, George, 1824-1905 The poetical works of George MacDonald in two volumes — Volume 1 etext9549 Various Punchinello, Volume 1, No. 03, April 16, 1870 etext9551 Doyle, Arthur Conan, Sir, 1859-1930 The Adventures of Sherlock Holmes etext9570 Whittier, John Greenleaf, 1807-1892 Reminiscent Poems , from Poems of Nature, etext9579 Whittier, John Greenleaf, 1807-1892 Songs of Labor and Reform etext9584 Whittier, John Greenleaf, 1807-1892 The Tent on the Beach and Others etext9614 Ward, Humphry, Mrs., 1851-1920 The Case of Richard Meynell etext9635 Lowndes, Marie Belloc, 1868-1947 The End of Her Honeymoon etext9714 Dickens, Charles, 1812-1870 A House to Let etext9780 Haggard, Henry Rider, 1856-1925 Fair Margaret etext9798 Richardson, Samuel, 1689-1761 Clarissa Harlowe; or the history of a young lady — Volume 2 etext9821 Ward, Humphry, Mrs., 1851-1920 A Writer's Recollections — Volume 2 etext9871 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Avenger etext9968 Oxley, J. Macdonald (James Macdonald), 1855-1907 The Young Woodsman etext10020 Various The Strand Magazine: Volume VII, Issue 37. January, 1894. etext10021 Leverson, Ada, 1862-1933 Tenterhooks etext10047 Various Punchinello, Volume 2, No. 29, October 15, 1870 etext10048 Wheeler, Janet D. Billie Bradley and Her Inheritance etext10057 Hope, Anthony, 1863-1933 The Secret of the Tower etext10063 Towne, Elizabeth Happiness and Marriage etext10070 Eggleston, Edward, 1837-1902 Stories of Great Americans for Little Americans etext10121 Anonymous Oriental Literature etext10152 Lett, Bob Voice Trial - Kinetophone actor audition etext10156 etext10165 Greg, Percy, 1836-1889 Across the Zodiac etext10195 Blue Ridge Duo, The Lonesome Road Blues etext10247 Lopez and Hamilton's Kings of Harmony Dixieland etext10271 Wagner, Richard, 1813-1883 Höchstes Vertrauen etext10306 Premier Quartet, The Moonlight Bay etext10331 Various The Mirror of Literature, Amusement, and Instruction etext10403 Bilbrough, E. Ernest Twixt France and Spain etext10446 Doyle, Arthur Conan, Sir, 1859-1930 The Green Flag etext10573 Jacobs, W. W. (William Wymark), 1863-1943 Ship's Company, the Entire Collection etext10665 Lenclos, Ninon de, 1620-1705 Life, Letters, and Epicurean Philosophy of Ninon de L'Enclos etext10670 Vizetelly, Ernest Alfred, 1853-1922 With Zola in England etext10749 Unknown The Circus Procession etext10767 Barrie, J. M. (James Matthew), 1860-1937 Courage etext10789 Jacobs, W. W. (William Wymark), 1863-1943 The Head of the Family etext10796 Bolles, John R. The Story of the Two Bulls etext10822 Blasco Ibáñez, Vicente, 1867-1928 El paraiso de las mujeres etext10864 Fellowes, W.D. A Visit to the Monastery of La Trappe in 1817 etext10869 Camp, Wadsworth, 1879-1936 The Abandoned Room etext10885 Hunt, Leigh, 1784-1859 Stories from the Italian Poets: with Lives of the Writers, Volume 1 etext10887 Anonymous Babylonian and Assyrian Literature etext10900 Various The King James Bible etext10937 The Life of St. Mochuda of Lismore etext10995 Kingsley, Charles, 1819-1875 Two Years Ago, Volume II. etext11023 Unknown Gems of Poetry, for Girls and Boys etext11072 Dante Alighieri, 1265-1321 Jumalainen näytelmä: Kiirastuli etext11125 Richardson, James D. (James Daniel), 1843-1914 A Compilation of the Messages and Papers of the Presidents etext11141 Whitney, A. D. T. (Adeline Dutton Train), 1824-1906 A Summer in Leslie Goldthwaite's Life. etext11154 Various The Atlantic Monthly, Volume 08, No. 45, July, 1861 etext11174 Baldwin, James, 1841-1925 Four Great Americans: Washington, Franklin, Webster, Lincoln etext11192 Van Dyke, Henry, 1852-1933 The Americanism of Washington etext11236 Various Old Ballads etext11348 Various The Mirror of Literature, Amusement, and Instruction etext11366 The German Classics of the Nineteenth and Twentieth Centuries, Volume 02 etext11383 Various Scientific American Supplement, No. 531, March 6, 1886 etext11385 Various Scientific American Supplement, No. 446, July 19, 1884 etext11410 Holmes, Edric, 1873- Wanderings in Wessex etext11421 Burr, Agnes Rush Russell H. Conwell etext11451 Griffiths, Arthur, 1838-1908 The Rome Express etext11468 Booth-Tucker, Commissioner, 1853-1929 Darkest India etext11515 Various The Mirror of Literature, Amusement, and Instruction etext11537 Various The Mirror of Literature, Amusement, and Instruction etext11627 The World's Great Sermons, Volume 02 etext11656 Doyle, Arthur Conan, Sir, 1859-1930 The Great Shadow and Other Napoleonic Tales etext11673 Muir, John, 1838-1914 Stickeen etext11723 Church, Ella Rodman, 1831- Among the Trees at Elmridge etext11745 Various Blackwood's Edinburgh Magazine — Volume 53, No. 330, April 1843 etext11763 Various The American Missionary — Volume 42, No. 02, February, 1888 etext11774 Withers, Hartley, 1867-1950 International Finance etext11794 Human Genome Project Chromosome Number 20 etext11801 Library of Congress. Copyright Office U.S. Copyright Renewals, 1950 January - June etext11806 Library of Congress. Copyright Office U.S. Copyright Renewals, 1952 July - December etext11822 Library of Congress. Copyright Office U.S. Copyright Renewals, 1960 July - December etext11842 Library of Congress. Copyright Office U.S. Copyright Renewals, 1970 July - December etext11905 Muller, Eugène Sous les marronniers etext11946 Le Sage, Alain René, 1668-1747 La Tontine etext12003 Couperus, Louis, 1863-1923 Extaze etext12080 Silvestre, Armand, 1837-1901 Contes irrévérencieux etext12189 Knibbs, Henry Herbert, 1874-1945 Jim Waring of Sonora-Town etext12311 Brown, John (of Wamphray), 1610-1679 Christ: The Way, the Truth, and the Life etext12377 White, William Allen, 1868-1944 The Court of Boyville etext12397 Ainsworth, William Harrison, 1805-1882 The Star-Chamber, Volume 2 etext12438 Various The Mirror of Literature, Amusement, and Instruction etext12470 Reade, Charles, 1814-1884 A Perilous Secret etext12526 Fletcher, Archibald Lee Boy Scouts in Northern Wilds etext12529 Gordon, S. D. (Samuel Dickey), 1859-1936 Quiet Talks on Service etext12584 Ray, Anna Chapin, 1865-1945 Phebe, Her Profession etext12603 etext12639 Kenyon, Camilla Spanish Doubloons etext12648 Bragdon, Claude Fayette, 1866-1946 The Beautiful Necessity etext12719 Shakespeare, William, 1564-1616 Sonnet # 29 etext12728 Hancock, H. Irving (Harrie Irving), 1868-1922 The High School Boys' Canoe Club etext12729 Hancock, H. Irving (Harrie Irving), 1868-1922 The High School Boys in Summer Camp etext12733 Sills, Steven (Steven David Justin) Tokyo to Tijuana: Gabriele Departing America etext12734 Hancock, H. Irving (Harrie Irving), 1868-1922 The Young Engineers in Colorado etext12748 Renan, Ernest, 1823-1892 Recollections of My Youth etext12750 Wells, H. G. (Herbert George), 1866-1946 The Stolen Bacillus and Other Incidents etext12754 Richardson, James D. (James Daniel), 1843-1914 A Compilation of the Messages and Papers of the Presidents etext12808 Castlemon, Harry, 1842-1915 Frank on a Gun-Boat etext12876 Roe, Edward Payson, 1838-1888 A Young Girl's Wooing etext12947 Shaler, Robert The Boy Scouts of the Flying Squadron etext12949 Contes Français etext13127 Meer Hasan Ali, Mrs. Observations on the Mussulmauns of India etext13141 Elizabeth, 1866-1941 The Princess Priscilla's Fortnight etext13242 Various Lippincott's Magazine of Popular Literature and Science etext13284 Didon, Henri, 1840-1900 Influence morale des sports athlétiques etext13317 Hamön, Lud. Georges Door Holland met pen en camera etext13360 Allen, Roland, 1869-1947 Missionary Survey As An Aid To Intelligent Co-Operation In Foreign Missions etext13523 Zévaco, Michel, 1860-1918 Les Pardaillan — Tome 04, Fausta Vaincue etext13543 Ade, George, 1866-1944 People You Know etext13562 Malot, Hector, 1830-1907 Ghislaine etext13627 Praga, Emilio Memorie del Presbiterio etext13636 Various Lippincott's Magazine of Popular Literature and Science etext13663 Aho, Juhani, 1861-1921 Papin rouva etext13690 Bebel, August, 1840-1913 Aus meinem Leben — Zweiter Teil etext13701 The Philippine Islands, 1493-1898 — Volume 07 of 55 etext13712 Various Notes and Queries, Number 27, May 4, 1850 etext13720 Melville, Herman, 1819-1891 Mardi: and A Voyage Thither, Vol. I etext13769 Aho, Juhani, 1861-1921 Lohilastuja ja kalakaskuja etext13808 Barbara, Charles, 1822-1886 L'assassinat du pont-rouge etext13812 Johnston, Mary, 1870-1936 Sir Mortimer etext13820 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 Unhappy Far-Off Things etext13824 etext13832 Habberton, John, 1842-1921 Romance of California Life etext13871 Lawrence, of the Resurrection, Brother, 1610?-1691 The Practice of the Presence of God the Best Rule of a Holy Life etext13891 Roosevelt, Theodore, 1858-1919 Compilation of the Messages and Papers of the Presidents etext13986 Cushing, Caleb, 1800-1879 Speech of Mr. Cushing, of Massachusetts, on the Right of Petition, etext14066 Rose, Mary Swartz, 1874-1941 Everyday Foods in War Time etext14112 Anonymous Venetië etext14138 Various Dew Drops, Vol. 37, No. 18, May 3, 1914 etext14179 Hutton, James, 1726-1797 Theory of the Earth, Volume 2 (of 4) etext14186 Various Punch, or the London Charivari, Volume 101, December 19, 1891 etext14197 Atherton, Gertrude Franklin Horn, 1857-1948 The Living Present etext14209 Three Initiates The Kybalion etext14340 Busch, Wilhelm, 1832-1908 Pater Filucius etext14345 Putnam Weale, B. L. (Bertram Lenox), 1877-1930 The Fight For The Republic in China etext14367 Wright, Harold Bell, 1872-1944 When A Man's A Man etext14406 Bindloss, Harold, 1866-1945 The Intriguers etext14408 Anonymous Manners and Conduct in School and Out etext14461 Scott, Walter, Sir, 1771-1832 Letters on Demonology and Witchcraft etext14515 Cameron, Hector Charles The Nervous Child etext14542 Bower, B. M., 1874-1940 The Lonesome Trail and Other Stories etext14549 etext14556 Howdershelt, Ed An Encounter in Atlanta etext14710 Spyri, Johanna, 1827-1901 Uncle Titus and His Visit to the Country etext14723 Bosher, Kate Langley, 1865-1932 How It Happened etext14724 Leino, Eino, 1878-1926 Kangastuksia; Talvi-yö; Halla; Tähtitarha etext14773 Kauppis-Heikki, 1862-1920 Viija etext14808 Various Punch, or the London Charivari, Volume 101, August 8, 1891 etext14823 Hankey, Donald A Student in Arms etext14825 Orth, Samuel Peter, 1873-1922 Our Foreigners etext14847 Verne, Jules, 1828-1905 Veden päällä liikkuva kaupunki etext14862 Kauppis-Heikki, 1862-1920 Laara etext14898 Lange, Algot, 1884- In the Amazon Jungle etext14953 Miller, Freeman E. (Freeman Edwin), 1864-1951 Oklahoma and Other Poems etext14995 Pereda, José María de, 1833-1906 Los Hombres de Pro etext15104 Hannikainen, Pietari, 1813-1899 Silmänkääntäjä etext16946 Bosher, Kate Langley, 1865-1932 Kitty Canary etext15141 Fischer, George Alexander Beethoven etext15144 Various Punch, or the London Charivari, Volume 103, August 27, 1892 etext15150 Wilde, Oscar, 1854-1900 La maison de la courtisane etext15151 Cook, Dutton, 1829-1883 A Book of the Play etext15220 Harper, Ida Husted, 1851-1931 The Life and Work of Susan B. Anthony (Volume 1 of 2) etext15221 Addams, Jane, 1860-1935 A New Conscience and an Ancient Evil etext15232 Various Notes and Queries, Number 51, October 19, 1850 etext15267 Poincaré, Henri, 1854-1912 Sechs Vorträge über ausgewählte Gegenstände aus der reinen etext15270 Various The Brochure Series of Architectural Illustration, Volume 01, No. 07, July, 1895 etext15346 Ruyra, Joaquim, 1858-1939 Pinya de Rosa etext15400 Symonds, John Addington, 1840-1893 Renaissance in Italy, Volume 1 (of 7) etext15403 Anonymous Wandelingen door België etext15406 Leonard, Mary Finley, 1862- The Little Red Chimney etext15443 Doubleday, William E. Heiress of Haddon etext15447 Beers, Henry A. (Henry Augustin), 1847-1926 A History of English Romanticism in the Eighteenth Century etext15535 Martens, Frederick Herman, 1874-1932 Violin Mastery etext15547 Overton, Jacqueline, 1887- The Life of Robert Louis Stevenson for Boys and Girls etext15565 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Sir John Constantine etext15575 Potter, Beatrix, 1866-1943 The Tale of Samuel Whiskers etext15651 Burnett, Frances Hodgson, 1849-1924 His Grace of Osmonde etext15701 Burke, Edmund, 1729-1797 The Works of the Right Honourable Edmund Burke, Vol. 05 (of 12) etext15723 Stratemeyer, Edward, 1862-1930 The Rover Boys on Treasure Isle etext15730 Crisp, Stephen, 1628-1692 A Short History of a Long Travel from Babylon to Bethel etext15750 Fitzhugh, Percy Keese, 1876-1950 Pee-Wee Harris on the Trail etext15771 Tidwell, Josiah Blake, 1870-1946 The Bible Period by Period etext15788 Granville-Barker, Harley, 1877-1946 Waste etext15829 Beers, Fannie A. Memories etext15878 Balzac, Honoré de, 1799-1850 The Stepmother, A Drama in Five Acts etext15886 Dunbar, Paul Laurence, 1872-1906 The Strength of Gideon and Other Stories etext15903 Chapman, Allen Bart Stirling's Road to Success etext15906 Andrews, Mary Raymond Shipman, 1860-1936 A Good Samaritan etext15927 Deland, Margaret Wade Campbell, 1857-1945 The Vehement Flame etext15949 Doyle, Arthur Conan, Sir, 1859-1930 Le Horror Altissime = The Horror of the Heights etext16002 Carleton, William, 1794-1869 Fardorougha, The Miser etext16009 Carleton, William, 1794-1869 Valentine M'Clutchy, The Irish Agent etext16041 MacGrath, Harold, 1871-1932 The Grey Cloak etext16066 Cervantes Saavedra, Miguel de, 1547-1616 L'ingénieux hidalgo Don Quichotte de la Manche - Tome I etext16078 MacGill, Patrick, 1890-1963 The Amateur Army etext16178 Clutton-Brock, A. (Arthur), 1868-1924 Essays on Art etext16242 Vaughan, John S. (John Stephen), 1853-1925 The Purpose of the Papacy etext16250 Wagner, Richard, 1813-1883 Tristan und Isolde etext16261 Hearn, Lafcadio, 1850-1904 Some Chinese Ghosts etext16281 Various Punch, or the London Charivari, Vol. 158, 1920-01-28 etext16347 Ewing, Juliana Horatia Gatty, 1841-1885 Miscellanea etext16368 Barclay, Florence L. (Florence Louisa), 1862-1921 The White Ladies of Worcester etext16478 Kemble, Fanny, 1809-1893 Records of a Girlhood etext16574 Tupper, Martin Farquhar, 1810-1889 The Twins etext16590 Anonymous De Zaan en Waterland: Een kijkje in Noord Holland etext16609 Byron, George Gordon Byron, Baron, 1788-1824 Life of Lord Byron, Vol. 5 etext16625 Ruiz, Juan, 1283?-1350? Clásicos Castellanos: Libro de Buen Amor etext16636 Hagedorn, Hermann, 1882-1964 Makers of Madness etext16655 Cox, Kenyon, 1856-1919 Artist and Public etext16659 Kalidasa Translations of Shakuntala and Other Works etext16664 Twopeny, Richard Ernest Nowell, 1857-1915 Town Life in Australia etext16787 Marzials, Frank T. (Frank Thomas), 1840-1912 Life of Charles Dickens etext16792 Various Scientific American Supplement, No. 508, September 26, 1885 etext16800 Harland, Marion, 1830-1922 The Secret of a Happy Home (1896) etext16812 Barrès, Maurice, 1862-1923 Le culte du moi 1 etext16821 Murray, Robert F. (Robert Fuller), 1863-1894 The Scarlet Gown etext16828 Scott, Walter, Sir, 1771-1832 Rob-Roy etext16829 Huizinga, Johan, 1872-1945 Herfsttij der Middeleeuwen etext16865 Collodi, Carlo, 1826-1890 Pinocchio etext16891 Goodrich, Samuel G. (Samuel Griswold), 1793-1860 Peter Parley's Tales About America and Australia etext16921 Norton, Andre, 1912-2005 Plague Ship etext16968 Towne, Charles Hanson, 1877-1949 The Bad Man etext16987 Bagley, William Chandler, 1874-1946 Craftsmanship in Teaching etext17047 Buchan, John, 1875-1940 The Half-Hearted etext17053 Stockton, Frank Richard, 1834-1902 Kate Bonnet etext17178 Harben, Will N. (William Nathaniel), 1858-1919 Westerfelt etext17252 Sales, Pierre, 1856?-1921? Le sergent Renaud etext17267 Conan, Laure, 1845-1924 Angéline de Montbrun etext17271 Lemoyne, André, 1822-1907 Oeuvres de André Lemoyne etext17379 Nieuwenhuis, Anton Willem, 1864-1953 Quer Durch Borneo etext17403 Henty, G. A. (George Alfred), 1832-1902 The Cornet of Horse etext17420 Goncourt, Edmond de, 1822-1896 Journal des Goncourt (Deuxième série, deuxième volume) etext17430 Valera, Juan, 1824-1905 Morsamor etext17444 Wright, Marcus Joseph, 1831-1922 General Scott etext17474 Krehbiel, Henry Edward, 1854-1923 How to Listen to Music, 7th ed. etext17490 Xenophon, 431 BC-350? BC The Memorable Thoughts of Socrates etext17513 Various St. Nicholas Magazine for Boys and Girls, Vol. 5, Nov 1877-Nov 1878 etext17591 Garrett, João Batista da Silva Leitão de Almeida, 1799-1854 Frei Luiz de Sousa etext17595 Shoberl, Frederic, 1775-1853 Narrative of the Most Remarkable Events Which Occurred In and Near Leipzig etext17596 Various Punch, or the London Charivari, Volume 159, July 21, 1920 etext17611 Thomas, Aquinas, Saint, 1225?-1274 Summa Theologica, Part I (Prima Pars) etext17632 Merlet, Lucien, 1827-1898 Compte de L'Oeuvre de la Cathédrale de Chartres en 1415-1416 etext17644 Various Een abel spel van Esmoreit etext17653 Various Punch, or the London Charivari, Volume 159, September 22, 1920 etext17702 Marguerite, Queen, consort of Henry II, King of Navarre, 1492-1549 The Tales Of The Heptameron, Vol. II. (of V.) etext17714 Corbière, Édouard, 1793-1875 Le Négrier, Vol. I etext17764 Anonymous King Winter etext17849 Ghislanzoni, Antonio, 1824-1893 La contessa di Karolystria etext17856 Parrish, Randall, 1858-1923 Prisoners of Chance etext17871 Drumgoold, Kate A Slave Girl's Story etext17884 Johnson, James Weldon, 1871-1938 Fifty years & Other Poems etext17914 Verne, Jules, 1828-1905 Mistress Branican etext17920 Fine, Henry B. (Henry Burchard), 1858-1928 The Number-System of Algebra (2nd edition) etext17934 Newcomb, Harvey, 1803-1863 A Practical Directory for Young Christian Females etext17944 Van Dyke, Henry, 1852-1933 The House of Rimmon etext18009 Bowling, Edward Woodley, 1837-1907 Sagittulae, Random Verses etext18035 Wells, Carolyn, 1862-1942 Marjorie at Seacote etext18059 etext18152 Wyss, Johann David, 1743-1818 Le Robinson suisse etext18200 Dumas père, Alexandre, 1802-1870 Le Collier de la Reine, Tome II etext18257 Moldeven, Meyer, 1917- The Universe — or Nothing etext18268 Carman, Bliss, 1861-1929 Ballads of Lost Haven etext18269 Pascal, Blaise, 1623-1662 Pascal's Pensées etext18276 Froude, James Anthony, 1818-1894 Froude's Essays in Literature and History etext18285 Dutta, R. N. Tales from the Hindu Dramatists etext18338 Dunbar, Paul Laurence, 1872-1906 The Complete Poems of Paul Laurence Dunbar etext18366 Hendryx, James B. (James Beardsley), 1880-1963 The Challenge of the North etext18377 Gwatkin, Henry Melvill, 1844-1916 The Arian Controversy etext18412 Racine, Jean Baptiste, 1639-1699 De Pleiters etext18494 Féval, Paul, 1817-1887 Le dernier vivant etext18571 Various The Northmen, Columbus and Cabot, 985-1503 etext18617 Optic, Oliver, 1822-1897 On The Blockade etext18634 Trotter, Isabella Strange, 1816-1878 First Impressions of the New World etext18649 Gosse, Edmund, 1849-1928 Some Diversions of a Man of Letters etext18680 Allen, Edward Tyson Practical Forestry in the Pacific Northwest etext18704 Pakkala, Teuvo, 1862-1925 Pikku ihmisiä etext18707 Ward, Maisie, 1889-1975 Gilbert Keith Chesterton etext18711 Calamnius, J. W., 1838-1891 Kreikkalaisia satuja etext18773 Dumas père, Alexandre, 1802-1870 La San-Felice, Tome V etext18774 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Sun Of Quebec etext18797 La Fayette, Madame de (Marie-Madeleine Pioche de La Vergne), 1634-1693 La princesse de Clèves etext18844 Mockler, Geraldine The Rebellion of Margaret etext19081 Various The Great Round World and What Is Going On In It, Vol. 2, No. 11, March 17, 1898 etext19114 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Foe-Farrell etext19132 Pearson, Edwin Banbury Chap Books etext19246 Grey, Zane, 1872-1939 The Young Pitcher etext19253 Universal House of Justice A Compilation on Bahá’í Education etext19264 Various Japanese Literature etext19271 Shoghi Effendi, 1897-1957 Dawn of a New Day etext19274 Shoghi Effendi, 1897-1957 Letters from the Guardian to Australia and New Zealand etext19285 `Abdu'l-Bahá, 1844-1921 The Promulgation of Universal Peace etext19310 Jepson, Edgar, 1863-1938 Happy Pollyooly etext19358 Cosens, Abner War Rhymes by Wayfarer etext19401 Oyen, Henry, 1883-1921 The Plunderer etext19404 Bowers, John Hugh, 1875- Life of Abraham Lincoln etext19454 Guérin de Bouscal, Guyon, -1657 La mort de Brute et de Porcie etext19476 Griffith, George Chetwynd, 1857-1906 A Honeymoon in Space etext19478 Piper, H. Beam, 1904-1964 Four-Day Planet etext19507 King, Charles, 1844-1933 Lanier of the Cavalry etext19528 Alverson, Margaret Blake, 1836-1923 Sixty Years of California Song etext19539 Tracy, Louis, 1863-1928 The Stowaway Girl etext19652 Anson, Adrian Constantine, 1852-1922 A Ball Player's Career etext19695 Hall, Angelo, 1868- Forty-one Thieves etext19697 Benson, Robert Hugh, 1871-1914 By What Authority? etext19726 Bradley, Marion Zimmer, 1930-1999 The Door Through Space etext19778 Carroll, Lewis, 1832-1898 Alice's Abenteuer im Wunderland etext19811 Lubbock, Percy, 1879-1965 A Book of English Prose etext19840 Plato, 427? BC-347? BC Euthyphro etext19847 Sanz, Eulogio Florentino, 1822-1881 Don Francisco de Quevedo etext19860 Anonymous The Arabian Nights Entertainments etext19874 Bain, F. W. (Francis William), 1863-1940 Bubbles of the Foam etext19887 Serao, Matilde, 1865-1927 Dal vero etext19889 Mulholland, Clara Naughty Miss Bunny etext19893 The Great Events by Famous Historians, Volume 10 etext19897 Riley, James Whitcomb, 1849-1916 Riley Love-Lyrics etext19918 Hytönen, Sulo M., 1870-1920 Uni etext19923 Ontario. Ministry of Education The Ontario Readers: The High School Reader, 1886 etext19943 Hayward, Rachel, 1886- The Hippodrome etext19955 François de Neufchâteau, Nicolas, 1750-1828 L'institution des enfans, ou conseils d'un père à son fils etext19956 Condamine, Charles-Marie de la Histoire d'une jeune fille sauvage trouvée dans les bois à l'âge de dix ans etext19983 Cooper, James Fenimore, 1789-1851 Recollections of Europe etext19993 Various Childhood's Favorites and Fairy Stories etext20000 Verne, Jules, 1828-1905 Vingt mille lieues sous les mers. English etext20041 Commission, United States Tariff Men's Sewed Straw Hats etext20097 Bailey, Arthur Scott, 1877-1949 The Tale of Mrs. Ladybug etext20107 Thomson, M. Pearson Denmark etext20132 Rockwood, Roy The Wizard of the Sea etext20151 Lewis, Harry A. Hidden Treasures etext20194 Brandt, Johanna, 1877-1964 The Petticoat Commando etext20285 Bögh, Erik, 1822-1899 Velhovuorella etext20310 etext20317 Hall, Eugene Edward A Treatise on Staff Making and Pivoting etext20394 Various Correspondence Relating to Executions in Turkey for Apostacy from Islamism etext20434 Carter, Herbert The Boy Scouts' First Camp Fire etext20436 Pansy, 1841-1930 Sunshine Factory etext20440 Caouette, J. B. (Jean Baptiste), 1854-1922 Une Intrigante sous le règne de Frontenac etext20443 King, Basil, 1859-1928 The Letter of the Contract etext20445 etext20468 Bachman, William Elmer The Delta of the Triple Elevens etext20471 Flower, Jessie Graham [pseud.], -1931 Grace Harlowe's Golden Summer etext20495 Anonymous Um meeting na parvonia etext20791 Brady, Cyrus Townsend, 1861-1920 For Love of Country etext20818 Mivart, St. George On the Genesis of Species etext20855 Rizal, José, 1861-1896 Estatuto de la L.F (Liga Filipina) etext20908 Deschamps, Émile, 1857- Aan de kust van Malabar etext20939 Skeats, Wilfred S. The Song of the Exile—A Canadian Epic etext20969 Olterdissen, Alphonse, 1865-1923 Drei korte verhoalen in ut Mestreechs etext21009 Various The Atlantic Monthly, Volume 17, No. 100, February, 1866 etext21013 Éliphas Lévi Histoire de la magie etext21022 Russell, E. J. Lessons on Soil etext21023 Rovigo, Duc de Mémoires du duc de Rovigo, pour servir à l'histoire de l'empereur Napoléon, Tome 3 etext21044 Reed, Talbot Baines, 1852-1893 The Willoughby Captains etext21084 Anonymous Jokes For All Occasions etext21093 Various The Journal of Negro History, Volume 4, 1919 etext21110 Vaizey, George de Horne, Mrs., 1857-1917 A College Girl etext21175 Barclay, Florence L. (Florence Louisa), 1862-1921 The Rosary etext21178 Blake, William, 1757-1827 The Voice of the Ancient Bard etext21182 Byron, George Gordon Byron, Baron, 1788-1824 When We Two Parted etext21184 Frost, Robert, 1874-1963 Selected Poems by Robert Frost etext21230 Walton, Amy, 1848-1899 Susan etext21260 Bonnycastle, Richard Henry, 1791-1847 Canada and the Canadians, Vol. 2 etext21346 Cook, Ebenezer The Sot-weed Factor: or, A Voyage to Maryland etext21360 Fenn, George Manville, 1831-1909 Old Gold etext21395 Kingston, William Henry Giles, 1814-1880 The Last Look etext21418 Hague, W. Grant (William Grant), 1868- The Eugenic Marriage, Volume IV. (of IV.) etext21500 Aikin, Lucy, 1781-1864 Memoirs of the Court of Queen Elizabeth etext21517 etext21531 Fairham, William Woodwork Joints etext21550 Marryat, Frederick, 1792-1848 The King's Own etext21565 Marx, Karl, 1818-1883 Selected Essays etext21568 Teichner, Albert Sweet Their Blood and Sticky etext21574 Marryat, Frederick, 1792-1848 The Poacher etext21616 Morrow, W. C. (William Chambers), 1853-1923 The Ape, the Idiot & Other People etext21625 Mitchell, Ruth Comfort, 1882-1954 Play the Game! etext21629 The Best of the World's Classics, Restricted to prose. Volume II (of X) - Rome etext21631 Hillern, Wilhelmine von, 1836-1916 Kotka-Wappu etext21679 The Best of the World's Classics, Restricted to prose. Volume III (of X) - Great Britain and Ireland I etext21687 Brazil, Angela, 1868-1947 The Youngest Girl in the Fifth etext21698 Ballantyne, R. M. (Robert Michael), 1825-1894 Rivers of Ice etext21754 Ballantyne, R. M. (Robert Michael), 1825-1894 The Ocean and its Wonders etext21794 Webster, Frank V. The Boy from the Ranch etext21848 Rizal, José, 1861-1896 Noli me tangere etext21870 Blasco Ibáñez, Vicente, 1867-1928 Luna Benamor etext21908 Leslie, Lawrence J. Chums of the Camp Fire etext21932 James, Henry, 1843-1916 Embarrassments etext21972 Courtenay, Calista McCabe George Washington etext21978 Playtner, H. R. An Analysis of the Lever Escapement etext21982 Hart, George The Violin etext21983 Various The Continental Monthly, Vol. 4, No. 1, July, 1863 etext22005 Curry, S. S. (Samuel Silas), 1847-1921 How to Add Ten Years to your Life and to Double Its Satisfactions etext22013 De Mille, James, 1833-1880 The Lady of the Ice etext22022 Alcott, Louisa May, 1832-1888 Shawl-Straps etext22164 Meade, L. T., 1854-1914 A Modern Tomboy etext22208 Murray, David Christie, 1847-1907 Cruel Barbara Allen etext22247 Morris, Gouverneur, 1876-1953 If You Touch Them They Vanish etext22276 Murray, David Christie, 1847-1907 Despair's Last Journey etext22277 Webster, Frank V. Darry the Life Saver etext22323 Bryce, James Bryce, Viscount, 1838-1922 Impressions of South Africa etext22379 Cundall, H. M. Masters of Water-Colour Painting etext22385 Rovigo, Duc de Mémoires du duc de Rovigo, pour servir à l'histoire de l'empereur Napoléon etext22412 Junqueiro, Abílio Manuel Guerra, 1850-1923 Duas Paginas Dos Quatorze Annos etext22420 Holbrook, Florence, 1860-1932 The Book of Nature Myths etext22457 Osmun, Thomas Embly, 1826?-1902 The Verbalist etext22497 Munroe, Kirk, 1850-1930 Cab and Caboose etext22543 Brossard, David L'art et maniere de semer etext22583 Raine, William MacLeod, 1871-1954 The Highgrader etext22602 Various Punch, or the London Charivari, Vol. 150, January 5, 1916 etext22612 Various Punch, or the London Charivari, Vol. 150, January 26, 1916 etext22656 etext22664 Hauff, Wilhelm, 1802-1827 The Severed Hand etext22702 Bellamy, Edward, 1850-1898 An Echo Of Antietam etext22704 Bellamy, Edward, 1850-1898 To Whom This May Come etext22724 Various Punch, or the London Charivari, Vol. 104, March 25, 1893 etext22819 Gray, Joslyn Elsie Marley, Honey etext22837 Mitford, Mary Russell, 1787-1855 The Lost Dahlia etext22844 Mitford, Mary Russell, 1787-1855 Miss Philly Firkin, The China-Woman etext22895 Weinbaum, Stanley Grauman, 1902-1935 The Point of View etext22896 Anonymous Little Stories for Little Children etext22957 Various Punch, or the London Charivari, Vol. 158, 1920-04-14 etext22988 Various Punch, or the London Charivari, Vol. 150, March 15, 1916 etext22997 Nourse, Alan Edward, 1928-1992 Second Sight etext23095 Various Lippincott's Magazine, Volume 11, No. 26, May, 1873 etext23112 Walton, Amy, 1848-1899 The Kitchen Cat, and other Tales etext23183 Flagg, Edmund, 1815-1890 Edmond Dantès etext23254 Catherwood, Mary Hartwell, 1847-1902 The Cobbler In The Devil's Kitchen etext23295 Farningham, Marianne, 1834-1909 Grace Darling etext23332 Longfellow, Henry Wadsworth, 1807-1882 Greetings from Longfellow etext23334 Drummond, Henry, 1851-1897 Natural Law in the Spiritual World etext23350 Potter, Beatrix, 1866-1943 Cecily Parsley's Nursery Rhymes etext23378 Kingston, William Henry Giles, 1814-1880 Tales of the Sea etext23455 George, G. M. Plain Jane etext23466 MacNutt, Francis Augustus, 1863-1927 Bartholomew de Las Casas; his life, apostolate, and writings etext23497 Fenn, George Manville, 1831-1909 Through Forest and Stream etext23517 Martin, George Madden, 1866-1936 The Angel of the Tenement etext23521 The Sleeping Beauty Picture Book etext23571 Neville, Kris, 1925-1980 General Max Shorter etext23579 Curtis, William, 1746-1799 The Botanical Magazine Vol. 7 etext23630 Murfree, Mary Noailles, 1850-1922 The Phantoms Of The Foot-Bridge etext23688 Arthur, Robert, 1909-1969 The Indulgence of Negu Mah etext23704 Charles, Elizabeth Rundle, 1828-1896 Chronicles of the Schönberg-Cotta family. Finnish etext23791 Leinster, Murray, 1896-1975 Scrimshaw etext23806 Janvier, Thomas A. (Thomas Allibone), 1849-1913 A Temporary Dead-Lock etext23831 Weiss, George Henry, 1898-1946 The Seed of the Toc-Toc Birds etext23847 Unknown The Peacock and Parrot, on their Tour to Discover the Author of "The Peacock At Home" etext23854 Xing, Jian 文子 etext23873 Anonymous 詩經 etext23920 Walker, Anne A Matter of Proportion etext23924 Leighton, Robert, 1859-1934 Kiddie the Scout etext23951 Liu, Xin, -23 西京雜記 etext23954 Ferrand, Claudius Fables et légendes du Japon etext23963 Various Chambers's Edinburgh Journal, No. 457 etext24022 Dickens, Charles, 1812-1870 A Christmas Carol etext24026 Dickens, Charles, 1812-1870 Christmas carol. Finnish. etext24029 Wang, Junqing 冷眼观 etext24060 Li, Bai, 701-762 李太白集 etext24082 Worst, John H. (John Henry), 1850-1945 A Broader Mission for Liberal Education etext24124 Optic, Oliver, 1822-1897 Down the Rhine etext24196 Del Rey, Lester, 1915-1993 Victory etext24211 Marryat, Frederick, 1792-1848 The Settlers in Canada etext24228 Liu, Xiang, 77? BC-6? BC 列女傳 etext24236 Ball, Robert S. (Robert Stawell), Sir, 1840-1913 Time and Tide etext24284 Newman, John Henry, 1801-1890 Parochial and Plain Sermons, Vol. VIII (of 8) etext24312 Amott, Lennox The Minstrel etext24332 Sanchez, Nellie Van de Grift, 1856-1935 The Life of Mrs. Robert Louis Stevenson etext24361 Ray, Anna Chapin, 1865-1945 Teddy: Her Book etext24376 Douglas, Amanda Minnie, 1831-1916 Floyd Grandon's Honor etext24414 Various Punch, or the London Charivari, June 10, 1914 etext24424 Slouschz, Nahum, 1872-1966 La Renaissance de la littérature hébraïque (1743-1885) etext24425 Bosboom-Toussaint, A. L. G. (Anna Louisa Geertruida), 1812-1886 Frits Millioen en zijne vrienden etext24449 Crane, Walter, 1845-1915 Queen Summer etext24498 Lockhart, J. G. (John Gibson), 1794-1854 Memoirs of the Life of Sir Walter Scott, Volume V (of 10) etext24529 Garrett, Randall, 1927-1987 The Unnecessary Man etext24546 Bouilly, Jean Nicolas, 1763-1842 Léonore, ou l'amour conjugal etext24570 Hall, James Norman, 1887-1951 High Adventure etext24610 Appleton, Honor C., 1879-1951 Dumpy Proverbs etext24728 Harris, Joel Chandler, 1848-1908 Stories Of Georgia etext24734 Unknown Tommy Tatters etext24744 Pickthall, Marmaduke William, 1875-1936 The Valley of the Kings etext24750 Lane, Mary E. Bradley Mizora: A Prophecy etext24772 Burnett, Frances Hodgson, 1849-1924 Sara Crewe etext24777 Verne, Jules, 1828-1905 Celebrated Travels and Travellers etext24828 Richards, Laura Elizabeth Howe, 1850-1943 Margaret Montfort etext24879 Gaskell, Elizabeth Cleghorn, 1810-1865 Curious, if True etext24890 Tyndale, William, 1494?-1536 The prophete Ionas with an introduccion etext24894 Unknown The Emperor's Rout etext24899 Plato, 427? BC-347? BC Platons Gastmahl etext24912 Poulsson, Emilie, 1853-1939 Finger plays for nursery and kindergarten etext24927 Sevcik, Al A Matter of Magnitude etext24945 McNeile, H. C. (Herman Cyril), 1888-1937 Mufti etext25002 Fitzhugh, Percy Keese, 1876-1950 Roy Blakeley's Bee-line Hike etext25007 Murrey, Thomas J. (Thomas Jefferson) Fifty Soups etext25069 Anonymous Vääpeli Lemminkäisen päiväkirja etext25120 Marlitt, E. (Eugenie), 1825-1887 Aron prinsessa etext25134 Pinghuazhuren 九尾狐 etext25144 Rich, Charles Edward A Voyage with Captain Dynamite etext25158 Looms, George, 1886-1926 Stubble etext25223 Shao, Binru 俗話傾談 etext25333 Ford, Paul Leicester, 1865-1902 The Great K. & A. Robbery etext25350 Yu, Wanchun, -1849 蕩寇志 etext25356 May, Sophie, 1833-1906 Aunt Madge's Story etext25376 Shi, Yukun, 19th cent. 三俠五義 etext25435 Various Le Tour du Monde; Dauphiné etext25479 Guimarães, Delfim de Brito Monteiro, 1872-1933 Theóphilo Braga e a lenda do Crisfal etext25509 The World's Greatest Books — Volume 15 — Science etext25524 Kingston, William Henry Giles, 1814-1880 The Young Berringtons etext25578 Porter, Eleanor H. (Eleanor Hodgman), 1868-1920 The Sunbridge Girls at Six Star Ranch etext25589 etext25599 Gurney, Eliza Paul, 1801-1881 Heart Utterances at Various Periods of a Chequered Life etext25604 Maxwell, William Edward, Sir, 1846-1897 A Manual of the Malay language etext25608 Stevenson, Robert Louis, 1850-1894 A Child's Garden of Verses etext25710 Ewing, Juliana Horatia Gatty, 1841-1885 Last Words etext25767 James, Henry, 1843-1916 Picture and Text etext25803 Wallace, Edgar, 1875-1932 The Keepers of the King's Peace etext25804 Mitton, G. E. (Geraldine Edith) The Children's Book of London etext25813 Moore, Frederick Ferdinand, 1877- Isle o' Dreams etext25873 Penrose, Margaret The Motor Girls on Crystal Bay etext25895 Watts, Susannah, 1768-1842 A Walk through Leicester etext25935 Northern Nut Growers Association Report of the Proceedings at the 43rd Annual Meeting etext25987 Pina, Rui de, 1440-1521 Chronica de El-Rei D. Affonso V (Vol. I) etext25997 Beach, Charles Amory Air Service Boys Flying for Victory etext26003 Murray, Andrew, 1828-1917 'Jesus Himself' etext26067 etext26072 Senior, William, 1839?-1920 Scotch Loch-Fishing etext26077 Various The Continental Monthly, Vol. 3 No 2, February 1863 etext26082 Mémoires sur la vie publique et privée de Fouquet, surintendant des finance et sur son frère l'abbé Fouquet etext26177 Coe, Fanny E. The Book of Stories for the Story-teller etext26178 The Mirror of Taste, and Dramatic Censor etext26207 White, William Allen, 1868-1944 In Our Town etext26221 Montgomery, L. M. (Lucy Maud), 1874-1942 The Golden Road etext26226 Wilde, Oscar, 1854-1900 The Importance of Being Earnest etext26240 Dixon, Thomas, 1864-1946 The Clansman etext26329 Vacandard, E. (Elphège), 1849-1927 The Inquisition etext26355 Alger, Horatio, 1832-1899 Tom, The Bootblack etext26402 Wassermann, Jakob, 1873-1934 Engelhart Ratgeber etext26468 Fletcher, J. S. (Joseph Smith), 1863-1935 The Middle Temple Murder etext26500 Jesse, Edward, 1780-1868 Anecdotes of Dogs etext26518 Reynolds, James, fl. 1812 Journal of an American Prisoner at Fort Malden and Quebec in the War of 1812 etext26555 Wuorinen, Olli, 1842-1917 Sepitelmiä etext26688 Old Humphrey, 1787-1854 History, Manners, and Customs of the North American Indians etext26737 Shi, Hui 幽閨記 etext26772 Bone, Jesse F. (Jesse Franklin), 1916-1986 A Question of Courage etext26806 Musset, Alfred de, 1810-1857 Gamiani etext26823 etext26967 Peyton, Green, 1907-1968 The Coming of the Ice etext27066 Doogue, Luke Joseph, 1865- Making a Lawn etext27123 Su, Shi, 1037-1101 水調歌頭 etext27192 Menzies, Sutherland, fl. 1840-1883 Political Women, Vol. 1 etext27210 Unknown The Surprising Adventures of Bampfylde Moore Carew etext27216 Liu, Zhang 斬鬼傳 etext27249 Topelius, Zacharias, 1818-1898 Ungdomsdrömmar etext27322 Hillary, William, Sir, 1771-1847 An Appeal to the British Nation on the Humanity and Policy of Forming a National Institution for the Preservation of Lives and Property from Shipwreck (1825) etext27328 Wuhangyeke 駐春園小史 etext27345 Custine, Astolphe, marquis de, 1790-1857 La Russie en 1839, Volume IV etext27400 Du Maurier, George, 1834-1896 The Martian etext27408 Mollie Charane etext27443 Costa, José Soares da Cunha e, 1868-1928 A Lucta Civil Brazileira e o Sebastianismo Portuguez etext27468 Anonymous IBM 1401 Programming Systems etext27480 Various Encyclopaedia Britannica, 11th Edition, Volume 3, Part 1, Slice 3 etext27483 Die Abenteuer Gawains Ywains und Le Morholts mit den drei Jungfrauen etext27501 Various McClure's Magazine, Vol. XXXI, No. 3, July 1908. etext27545 Costa, Alexandre da Maldita Felicidade etext27583 Wilson, John, 1826- The Importance of the Proof-reader etext27603 The Red True Story Book etext27643 Duffield, Elizabeth M. Lucile Triumphant etext27663 Seward, Anna, 1742-1809 Original sonnets on various subjects; and odes paraphrased from Horace etext27676 United States. Central Intelligence Agency The 1999 CIA World Factbook etext27684 Yates, Dornford, 1885-1960 Anthony Lyveden etext27703 Buchanan's Journal of Man, September 1887 etext27732 Thompson, George, 1823- City Crimes etext27738 Palacio Valdés, Armando, 1853-1938 Heath's Modern Language Series: José etext27754 Unknown The Flower Basket etext27757 García, Pedro Andrés, 1758-1833 Nuevo plan de fronteras de la provincia de Buenos Aires, proyectado en 1816 etext27822 Rilke, Rainer Maria, 1875-1926 Zwei Prager Geschichten etext27826 The Olive Fairy Book etext28106 Benavente, Jacinto, 1866-1954 Heath's Modern Language Series: Tres Comedias etext28190 Henty, G. A. (George Alfred), 1832-1902 A Chapter of Adventures etext28199 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Louis Philippe etext28213 Various Harper's Young People, November 25, 1879 etext28218 Alcott, Louisa May, 1832-1888 Three Unpublished Poems etext28266 McCarthy, Justin H. (Justin Huntly), 1860-1936 The Duke's Motto etext28349 Baker, Sarah S. (Sarah Schoonmaker), 1824-1906 The Golden House etext28383 Litsey, Edwin Carlile, 1874-1970 The Love Story of Abner Stone etext28399 Vicente, Gil, 1465-1537 Four Plays of Gil Vicente etext28411 Deutsche Lyrik seit Liliencron etext28443 Irwin, Will, 1873-1948 The Readjustment etext28487 Chaucer, Geoffrey, 1343?-1400 Chantaclar e Partelote etext28527 Carlton, Henry Fisk The Story of Nathan Hale etext28563 Greenwood, George, 1799-1875 Hints on Horsemanship, to a Nephew and Niece etext28567 Turley, Charles, 1868-1940 Godfrey Marten, Undergraduate etext28571 Coffin, Charles Carleton, 1823-1896 My Days and Nights on the Battle-Field etext28590 King, Basil, 1859-1928 The Dust Flower etext28594 Jones, B. W. The Peanut Plant etext28600 Crawford, F. Marion (Francis Marion), 1854-1909 Ave Roma Immortalis, Vol. 2 etext28622 Byron, George Gordon Byron, Baron, 1788-1824 Oeuvres complètes de lord Byron, Volume 7 etext28656 Melville, Herman, 1819-1891 Typee etext28683 Buck, Charles Neville, 1879-1930 The Roof Tree etext28702 Carra de Vaux, Bernard, baron, 1867- Avicenne etext28794 Melville, Herman, 1819-1891 Moby Dick etext28811 Trollope, Anthony, 1815-1882 Barchester Towers etext28839 Wallace, Edgar, 1875-1932 The Clue of the Twisted Candle etext28883 Vincent, Harl, 1893-1968 The Copper-Clad World etext28886 Fillmore, Parker, 1878-1944 The Hickory Limb etext28891 Le Cabinet des Fées etext28893 Nolan, William F., 1928- Of Time and Texas etext28908 Poe, Edgar Allan, 1809-1849 A Dream within a Dream etext28923 Various Harper's Young People, May 25, 1880 etext28931 Sayce, Conrad H. (Conrad Harvey), 1888-1935 In the Musgrave Ranges etext28947 Verne, Jules, 1828-1905 Around the World in Eighty Days etext28984 Various Harper's Young People, June 8, 1880 etext29048 Guaranty Trust Company of New York The Fabric of Civilization etext29057 Crapo, Henry Howland, 1804-1869 Address delivered by Hon. Henry H. Crapo, Governor of Michigan, before the Central Michigan Agricultural Society, at their Sheep-shearing Exhibition held at the Agricultural College Farm, on Thursday, May 24th, 1866 etext29139 Cummings, M. A. (Monette A.), 1914- No Pets Allowed etext29195 Merwin, Sam, 1910-1996 It's All Yours etext29438 The Diplomatic Correspondence of the American Revolution, Vol. IX etext29455 Leinster, Murray, 1896-1975 Invasion etext29458 Sheckley, Robert, 1928-2005 Cost of Living etext29477 Various The Universal Reciter etext29522 Various Punch or the London Charivari, Vol. 147, December 23, 1914 etext29532 Davies, Randall, 1866-1946 Six Centuries of Painting etext29593 Barrow, Sarah L. Red, White, Blue Socks, Part First etext29594 Barrow, Sarah L. Red, White, Blue Socks. Part Second etext29676 Blade, Zoë Identity etext29717 Diffin, Charles Willard, 1884-1966 The Finding of Haldgren etext29758 Montblanc, Charles, comte de, 1833-1894 Considérations générales sur l'état actuel du Japon etext29843 Hugo, Victor, 1802-1885 Les contemplations etext30061 Brinton, Daniel Garrison, 1837-1899 The Religious Sentiment etext30094 Chapman, Allen Fred Fenton Marathon Runner etext30193 Barclay, Hubert, Mrs., 1872- East of the Shadows etext30196 Various L'Illustration, No. 3733, 12 Sept 1914 etext30249 Burroughs, John, 1837-1921 Ways of Nature etext30267 Fehrenbach, T. R., 1925- Remember the Alamo! etext30272 Clifford, W. K., Mrs., -1929 Very Short Stories and Verses For Children etext30277 etext30282 Early English Alliterative Poems etext30306 Cohen, Chapman, 1868- Religion & Sex etext30323 Hayward, John, 1781-1869 The Book of Religions etext30358 Walter, James Conway A History of Horncastle etext30370 Favourite Welsh Hymns etext30371 Fontenay, Charles Louis, 1917-2007 Service with a Smile etext30383 Marmor, Arnold Spies Die Hard! etext30409 Watts, Isaac, 1674-1748 A Short Essay Toward the Improvement of Psalmody etext30424 Barbosa, José, 1869-1923 As relações luso-brasileiras etext30433 Rousseau, Jean-Jacques, 1712-1778 Émile etext30513 Tocqueville, Alexis de, 1805-1859 De la Démocratie en Amérique, tome premier etext30520 Various Le Tour du Monde; Une peuplade Malgache etext30576 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States From Interviews with Former Slaves etext30581 Windham, W. G. Notes in North Africa etext30619 Luther, Martin, 1483-1546 Epistle Sermons, Vol. III etext30676 Dobbs, Ella Victoria Primary Handwork etext30700 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 4 (of 25) etext30729 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 3 (of 25) etext30732 Viebig, Clara, 1860-1952 The Son of His Mother etext30755 Ruskin, John, 1819-1900 The Stones of Venice, Volume II (of 3), etext30835 Oliphant, Mrs. (Margaret), 1828-1897 A Country Gentleman and his Family etext30850 etext30860 Paull, Minnie E. Ruby at School etext30911 Disch, Thomas Michael The Demi-Urge etext30936 Hollman, Pierre Jean Handboek voor den kaasmaker in Nederland etext30947 Miranda, A. Augusto de Scenas da Aldeia etext31032 Ardel, Henri, 1863-1938 Le chemin qui descend etext31074 Tieck, Ludwig, 1773-1853 Schriften etext31102 Various Stevenson Memorial Cook Book etext31114 Lagerlöf, Selma, 1858-1940 Wunderbare Reise des kleinen Nils Holgersson mit den Wildgänsen etext31147 Hall, E. Raymond (Eugene Raymond), 1902-1986 A New Bat (Myotis) From Mexico etext31172 Various Old English Poems etext31236 Nourse, Alan Edward, 1928-1992 Martyr etext31264 Wuorinen, Olli, 1842-1917 Salmelan heinätalkoot etext31265 Otis, James, 1848-1912 Aunt Hannah and Seth etext31326 Loomis, Noel Miller, 1905-1969 The Wealth of Echindul etext31338 Monro, Donald An Account of the Diseases which were most frequent in the British military hospitals in Germany etext31350 Sell, Henry T. (Henry Thorne) Bible Studies in the Life of Paul etext31373 Edson, Milan C. Solaris Farm etext31425 Howard, Benjamin C. Report of the Decision of the Supreme Court of the United States, and the Opinions of the Judges Thereof, in the Case of Dred Scott versus John F.A. Sandford etext31450 Vikelas, Demetrios, 1835-1908 Παραμύθια Δανικά etext31456 Various The Upward Path etext31473 Jewett, Sarah Orne, 1849-1909 The Life of Nancy etext31486 Anonymous The Monkey's Frolic etext31500 Hartley, C. Gasquoine (Catherine Gasquoine), 1867-1928 The Position of Woman in Primitive Society etext31515 Brown, Paul Cameron The Rake's Progress etext31520 Farrer, James Anson Books Condemned to be Burnt etext31561 Lent, Edward B. Cupid's Middleman etext31581 Goodwin, Harold L. (Harold Leland), 1914-1990 The Scarlet Lake Mystery etext31591 Greenaway, Kate, 1846-1901 Language of Flowers etext31599 Aycock, Roger D., 1914-2004 To Remember Charlie By etext31737 Fearing, Vern The Sloths of Kruvny etext31742 Serrano, Bento O Oraculo do Passado, do presente e do Futuro (7/7) etext31754 Various Devil Stories etext31866 Tucker, St. George, 1828-1862 Hansford: A Tale of Bacon's Rebellion etext31880 Swaby, John H., -1891 Physiology of The Opera etext31997 Crothers, Samuel McChord Miss Muffet's Christmas Party etext32061 Lever, Charles James, 1806-1872 The Daltons, Volume I (of II) etext32146 Willis, Nathaniel Parker, 1806-1867 Fugitive Poetry etext32226 Brown, Abbie Farwell, 1871-1927 The Flower Princess etext32252 Pirenne, Henri, 1862-1935 The Stages in the Social History of Capitalism etext32490 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Hernando Cortez etext32503 Butz, C. A. Swamp Demons etext32504 Anonymous All About the Three Little Pigs etext32555 Otis, James, 1848-1912 The Club at Crow's Corner etext32558 Drayson, A. W. (Alfred Wilks), 1827-1901 Sporting Scenes amongst the Kaffirs of South Africa etext32575 Brazil, Angela, 1868-1947 The Head Girl at the Gables etext32587 Merwin, Sam, 1910-1996 The Ambassador etext32687 Jones, Raymond F., 1915-1994 The Colonists etext32702 Casson, Herbert Newton, 1869-1951 The Romance of the Reaper etext8 Lincoln, Abraham, 1809-1865 Abraham Lincoln's Second Inaugural Address etext124 Anonymous Deuterocanonical Books of the Bible etext209 James, Henry, 1843-1916 The Turn of the Screw etext250 Hart, Michael, 1947- A Brief History of the Internet etext286 Stratton-Porter, Gene, 1863-1924 Laddie; a true blue story etext298 Frederic, Harold, 1856-1898 The Market-Place etext310 London, Jack, 1876-1916 Before Adam etext343 Stevenson, Robert Louis, 1850-1894 Fables etext363 Burroughs, Edgar Rice, 1875-1950 The Oakdale Affair etext369 Burroughs, Edgar Rice, 1875-1950 The Outlaw of Torn etext407 Davis, Richard Harding, 1864-1916 The Reporter Who Made Himself King etext434 Rinehart, Mary Roberts, 1876-1958 The Circular Staircase etext493 Conrad, Joseph, 1857-1924 Falk etext495 Conrad, Joseph, 1857-1924 Amy Foster etext553 Burroughs, Edgar Rice, 1875-1950 Out of Time's Abyss etext691 Riley, James Whitcomb, 1849-1916 Complete Works of James Whitcomb Riley — Volume 1 etext713 Mackay, Charles, 1814-1889 Memoirs of Extraordinary Popular Delusions — Volume 2 etext714 Hope, Laura Lee The Bobbsey Twins in the Country etext722 etext729 Levy, Steven, 1951- Hackers, Heroes of the Computer Revolution etext740 Calhoun, John C. (John Caldwell), 1782-1850 Remarks of Mr. Calhoun of South Carolina on the bill to prevent the interference of certain federal officers in elections: delivered in the Senate of the United States February 22, 1839 etext758 etext789 Fairless, Michael, 1869-1901 Gathering of Brother Hilarius etext800 Verne, Jules, 1828-1905 Le tour du monde en quatre-vingts jours etext827 Anonymous Latin Vulgate, Esther etext854 Wilde, Oscar, 1854-1900 A Woman of No Importance etext887 Wilde, Oscar, 1854-1900 Intentions etext898 James, Henry, 1843-1916 The Lesson of the Master etext947 Southey, Robert, 1774-1843 The Life of Horatio Lord Nelson etext951 Appleton, Victor [pseud.] Tom Swift and His Sky Racer, or, the Quickest Flight on Record etext975 Spinoza, Benedictus de, 1632-1677 Ethics — Part 5 etext999 Dante Alighieri, 1265-1321 La Divina Commedia di Dante: Paradiso etext1049 Summerhayes, Martha, 1844-1926 Vanished Arizona etext1061 Fiske, John, 1842-1901 Myths and myth-makers: Old Tales and Superstitions Interpreted by Comparative Mythology etext1075 London, Jack, 1876-1916 The Strength of the Strong etext1085 Carlyle, Thomas, 1795-1881 Life of John Sterling etext1095 Grey, Zane, 1872-1939 Light of the Western Stars etext1205 Meynell, Alice Christiana Thompson, 1847-1922 The Colour of Life; and other essays on things seen and heard etext1232 Machiavelli, Niccolò, 1469-1527 The Prince etext1238 Thomson, James, 1834-1882 The City of Dreadful Night etext1267 Bramah, Ernest, 1869?-1942 Kai Lung's Golden Hours etext1274 Masefield, John, 1878-1967 Martin Hyde, the Duke's Messenger etext1352 Balzac, Honoré de, 1799-1850 An Old Maid etext1372 etext1443 Balzac, Honoré de, 1799-1850 Two Poets etext1555 Balzac, Honoré de, 1799-1850 A Passion in the Desert etext1560 Morris, Charles, 1833-1922 The San Francisco calamity by earthquake and fire etext1582 Anonymous The Bible, Douay-Rheims, New Testament etext1687 Plato, 427? BC-347? BC Parmenides etext1720 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Man Who Knew Too Much etext1722 Luther, Martin, 1483-1546 Martin Luther's Large Catechism, translated by Bente and Dau etext1748 Gaboriau, Émile, 1832-1873 Other People's Money etext1755 Chekhov, Anton Pavlovich, 1860-1904 Ivanoff etext1760 Davis, Richard Harding, 1864-1916 The Man Who Could Not Lose etext1781 Shakespeare, William, 1564-1616 The Merry Wives of Windsor etext1785 Shakespeare, William, 1564-1616 Julius Caesar etext1799 Shakespeare, William, 1564-1616 Cymbeline etext1810 Balzac, Honoré de, 1799-1850 A Second Home etext1815 Nicolay, Helen, 1866-1954 The Boys' Life of Abraham Lincoln etext1939 Weyman, Stanley John, 1855-1928 A Gentleman of France etext1954 Balzac, Honoré de, 1799-1850 Colonel Chabert etext2009 Darwin, Charles, 1809-1882 On the origin of species etext2025 Farnol, Jeffery, 1878-1952 My Lady Caprice etext2032 Farjeon, Eleanor, 1881-1965 Martin Pippin in the Apple Orchard etext2052 Defoe, Daniel, 1661?-1731 Everybody's Business Is Nobody's Business etext2056 Smith, George, 1833-1919 Life of William Carey etext2078 France, Anatole, 1844-1924 Thais etext2081 Hawthorne, Nathaniel, 1804-1864 The Blithedale Romance etext2137 Swinburne, Algernon Charles, 1837-1909 Rosamund, queen of the Lombards, a tragedy etext2218 Human Genome Project Chromosome Number 18 etext2229 Goethe, Johann Wolfgang von, 1749-1832 Faust: Der Tragödie erster Teil etext2237 Shakespeare, William, 1564-1616 The Merry Wives of Windsor etext2278 Harte, Bret, 1836-1902 Condensed Novels: New Burlesques etext2341 Goethe, Johann Wolfgang von, 1749-1832 Wilhelm Meisters Lehrjahre — Band 7 etext2351 Craik, Dinah Maria Mulock, 1826-1887 John Halifax, Gentleman etext2390 Henderson, Archibald, 1877-1963 The Conquest of the Old Southwest; the romantic story of the early pioneers into Virginia, the Carolinas, Tennessee, and Kentucky, 1740-1790 etext2398 Pater, Walter, 1839-1894 The Renaissance etext2400 Burton, Richard Francis, Sir, 1821-1890 Vikram and the Vampire; Classic Hindu Tales of Adventure, Magic, and Romance etext2401 Marbot, Jean-Baptiste-Antoine-Marcelin, Baron de, 1782-1854 The Memoirs of General Baron De Marbot etext2404 Goethe, Johann Wolfgang von, 1749-1832 Italienische Reise — Band 1 etext2425 James, Henry, 1843-1916 A Bundle of Letters etext2443 Linn, William Alexander, 1846-1917 The Story of the Mormons, from the date of their origin to the year 1901 etext2455 MacCaffrey, James, 1875-1935 History of the Catholic Church from the Renaissance to the French Revolution — Volume 2 etext2466 Turgenev, Ivan Sergeevich, 1818-1883 Virgin Soil etext2571 Aristophanes, 446? BC-385? BC Peace etext2604 Forster, E. M. (Edward Morgan), 1879-1970 The Longest Journey etext2646 Thackeray, William Makepeace, 1811-1863 John Leech's Pictures of Life and Character etext2649 Wood, William Charles Henry, 1864-1947 Captains of the Civil War; a chronicle of the blue and the gray etext2752 Dumas père, Alexandre, 1802-1870 Martin Guerre etext2755 Dumas père, Alexandre, 1802-1870 Murat etext2772 Galsworthy, John, 1867-1933 The Country House etext2812 Cicero, Marcus Tullius, 106 BC-43 BC Letters of Marcus Tullius Cicero etext2875 Twain, Mark, 1835-1910 Personal Recollections of Joan of Arc — Volume 2 etext2904 Galsworthy, John, 1867-1933 Studies and Essays: Quality and Others etext2980 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 30: Old Age and Death etext3031 Seton, Ernest Thompson, 1860-1946 Wild Animals I Have Known etext3046 Harben, Will N. (William Nathaniel), 1858-1919 The Land of the Changing Sun etext3052 Plutarch, 46-120? Complete Works of Plutarch — Volume 3: Essays and Miscellanies etext3077 Maupassant, Guy de, 1850-1893 Original Short Stories — Volume 01 etext3083 Maupassant, Guy de, 1850-1893 Original Short Stories — Volume 07 etext3110 Warner, Charles Dudley, 1829-1900 American Newspaper etext3113 Warner, Charles Dudley, 1829-1900 Causes of Discontent etext3160 Homer, 750? BC-650? BC The Odyssey etext3228 Wilcox, Ella Wheeler, 1855-1919 Poems of Progress etext3240 Lincoln, Joseph Crosby, 1870-1944 Cap'n Eri etext3286 Burke, Edmund, 1729-1797 Selections from the Speeches and Writings of Edmund Burke etext3348 Sue, Eugène, 1804-1857 The Wandering Jew — Volume 10 etext3356 Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773 Letters to His Son on the Art of Becoming a Man of the World and a Gentleman, 1752 etext3370 Howells, William Dean, 1837-1920 A Hazard of New Fortunes — Volume 5 etext3411 Yonge, Charlotte Mary, 1823-1901 The Stokesley Secret etext3418 Shaw, Bernard, 1856-1950 Captain Brassbound's Conversion etext3449 Anonymous Arabian nights. English etext3581 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 01 etext3594 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 14 etext3612 Shaw, Bernard, 1856-1950 John Bull's Other Island etext3650 Selections from American poetry, with special reference to Poe, Longfellow, Lowell and Whittier etext3651 De Forest, Norman L. The Square Root of 4 to a Million Places etext3655 Edgeworth, Maria, 1767-1849 The Parent's Assistant etext3672 United States. Central Intelligence Agency The 2000 CIA World Factbook etext3714 La Motte-Fouqué, Friedrich Heinrich Karl Freiherr de, 1777-1843 Undine etext3739 Churchill, Winston, 1871-1947 A Far Country — Complete etext3772 Lyell, Charles, Sir, 1797-1875 The Student's Elements of Geology etext3773 Morris, William, 1834-1896 Hopes and Fears for Art etext3808 Verne, Jules, 1828-1905 Robur the Conqueror etext3809 Verne, Jules, 1828-1905 The Master of the World etext3810 Patterson, J. H. (John Henry), 1867-1947 The Man-Eaters of Tsavo and Other East African Adventures etext3829 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Love Among the Chickens etext3834 Flecker, James Elroy, 1884-1915 Hassan : the story of Hassan of Bagdad, and how he came to make the golden journey to Samarkand : a play in five acts etext3918 Ohnet, Georges, 1848-1918 Serge Panine — Complete etext3993 Loti, Pierre, 1850-1923 Madame Chrysantheme — Volume 3 etext4023 Shaw, Bernard, 1856-1950 Candida etext4030 Follen, Eliza Lee Cabot, 1787-1860 Travellers' Stories etext4040 Follen, Eliza Lee Cabot, 1787-1860 The Pedler of Dust Sticks etext4048 Follen, Eliza Lee Cabot, 1787-1860 The Talkative Wig etext4070 Ibsen, Henrik, 1828-1906 The Master Builder etext4079 Hebbel, Christian Friedrich, 1813-1863 Agnes Bernauer etext4089 Cheyney, Edward Potts, 1861-1947 American Nation: a history — Volume 1: European Background of American History, 1300-1600 etext4117 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 01: Preface and Life etext4188 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 64: April 1668 etext4266 Hubbard, Mina Benson, 1870-1956 Woman's Way Through Unknown Labrador etext4272 Keble, John, 1792-1866 The Christian Year etext4280 Kant, Immanuel, 1724-1804 The Critique of Pure Reason etext4292 Library of Congress. Copyright Office Copyright Basics etext4300 Joyce, James, 1882-1941 Ulysses etext4327 Wharton, Edith, 1862-1937 The Valley of Decision etext4349 Maeterlinck, Maurice, 1862-1949 Wisdom and Destiny etext4370 Guibert, Abbot of Nogent-sous-Coucy, 1053-1124 The Deeds of God Through the Franks etext4430 Meredith, George, 1828-1909 Evan Harrington — Volume 4 etext4432 Meredith, George, 1828-1909 Evan Harrington — Volume 6 etext4443 Meredith, George, 1828-1909 Vittoria — Complete etext4456 Meredith, George, 1828-1909 Beauchamp's Career — Volume 4 etext4492 Meredith, George, 1828-1909 Farina etext4510 Benson, Arthur Christopher, 1862-1925 Watersprings etext4538 Yonge, Charlotte Mary, 1823-1901 Little Lucy's Wonderful Globe etext4565 Bertrand, Huguette Jusqu'a L'extreme Regard; Poesie etext4566 Bertrand, Huguette Entre La Chair Et L'ame; Poesie etext4575 Luo, Guanzhong, 1330?-1400? 粉妝樓31-40回 etext4578 Luo, Guanzhong, 1330?-1400? 粉妝樓61-70回 etext4587 Arthur, T. S. (Timothy Shay), 1809-1885 Finger Posts on the Way of Life etext4600 Howells, William Dean, 1837-1920 A Hazard of New Fortunes — Complete etext4609 Walpole, Horace, 1717-1797 The Letters of Horace Walpole, Earl of Orford — Volume 1 etext4704 Curwood, James Oliver, 1878-1927 Nomads of the North etext4715 Allen, Grant, 1848-1899 An African Millionaire etext4813 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 12: 1567, part I etext4823 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Complete (1566-74) etext4871 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1598-99 etext4934 Aubrey, John, 1626-1697 The Natural History of Wiltshire etext4938 Various US Presidential Inaugural Addresses etext4939 Huneker, James, 1857-1921 Chopin : the Man and His Music etext4967 Butler, Samuel, 1835-1902 Luck or Cunning? etext4990 Morrison, Harry Steele, 1880- The Adventures of a Boy Reporter etext4994 Rockwood, Roy Five Thousand Miles Underground etext5023 Buchanan, James, 1791-1868 State of the Union Address etext5042 Johnson, Lyndon B. (Lyndon Baines), 1908-1973 State of the Union Address etext5141 Coolidge, Susan, 1835-1905 What Katy Did at School etext5199 Shackleton, Ernest Henry, Sir, 1874-1922 South: the story of Shackleton's 1914-1917 expedition etext5214 Film: the Bikini Island BAKER Atomic Test etext5218 Petronius Arbiter, 20-66 The Satyricon — Volume 01: Introduction etext5231 Trollope, Anthony, 1815-1882 The Way We Live Now etext5340 Montgomery, L. M. (Lucy Maud), 1874-1942 Further Chronicles of Avonlea etext5348 Alger, Horatio, 1832-1899 Ragged Dick, Or, Street Life in New York with the Boot-Blacks etext5373 Churchill, Winston, 1871-1947 Richard Carvel — Complete etext5455 Ebers, Georg, 1837-1898 An Egyptian Princess — Volume 06 etext5551 Ebers, Georg, 1837-1898 In the Fire of the Forge — Complete etext5559 Ebers, Georg, 1837-1898 Margery — Volume 08 etext5580 Ebers, Georg, 1837-1898 The Burgomaster's Wife — Volume 03 etext5612 Anonymous The Arabian Nights Entertainments - Volume 01 etext5642 Trollope, Anthony, 1815-1882 Harry Heathcote of Gangoil etext5650 Seymour, Robert, 1800-1836 Sketches by Seymour — Complete etext5652 Nietzsche, Friedrich Wilhelm, 1844-1900 Thoughts out of Season Part I etext5653 Goethe, Johann Wolfgang von, 1749-1832 Die Mitschuldigen etext5674 Alger, Horatio, 1832-1899 Hector's Inheritance, Or, the Boys of Smith Institute etext5693 Twain, Mark, 1835-1910 The Innocents Abroad — Volume 06 etext5698 Shaw, Bernard, 1856-1950 Fanny's First Play etext5789 Westgarth, William, 1815-1889 Personal Recollections of Early Melbourne and Victoria etext5800 Laughead, W.B. The Marvelous Exploits of Paul Bunyan etext5867 Velvin, Ellen Rataplan, a rogue elephant; and other stories etext5883 Keyhoe, Donald E. (Donald Edward), 1897-1988 The Flying Saucers are Real etext5892 Tavernier, E. Edouard Histoires grises etext5919 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 17 etext5955 Bailey, Arthur Scott, 1877-1949 The Tale of Tommy Fox etext5991 Elizabeth, 1866-1941 The Solitary Summer etext6003 Clarke, Michael, 1844-1916 Story of Aeneas etext6025 Wilcox, Ella Wheeler, 1855-1919 The Englishman and Other Poems etext6039 Stories by English Authors: England etext6087 Polidori, John William, 1795-1821 The Vampyre; a Tale etext6142 Meade, L. T., 1854-1914 A Girl of the People etext6165 Webster, Frank V. Cowboy Dave etext6168 Baldwin, James, 1841-1925 Fifty Famous People etext6223 Parker, Gilbert, 1862-1932 The March of the White Guard etext6242 Parker, Gilbert, 1862-1932 Parables of a Province etext6256 Parker, Gilbert, 1862-1932 Donovan Pasha, and Some People of Egypt — Volume 1 etext6303 Sumner, Charles, 1811-1874 The Duel Between France and Germany etext6313 Masterpieces of American Wit and Humor etext6341 Hoffmann, E. T. A. (Ernst Theodor Amadeus), 1776-1822 Nachtstücke etext6370 etext6389 Suetonius Tranquillus, Gaius, 75-160 The Lives of the Twelve Caesars, Volume 04: Caligula etext6405 Yonge, Charlotte Mary, 1823-1901 John Keble's Parishes etext6502 Doughty, Arthur G. (Arthur George), Sir, 1860-1936 The Acadian Exiles : a Chronicle of the Land of Evangeline etext6519 Kabir, 1440-1518 Songs of Kabir etext6542 Shelley, Mary Wollstonecraft, 1797-1851 Frankenstein etext6607 Skinner, Charles M. (Charles Montgomery), 1852-1907 Myths and Legends of Our Own Land — Volume 02 : the Isle of Manhattoes and nearby etext6623 MacLean, Kate Seymour The Coming of the Princess and Other Poems etext6628 Townsend, George Alfred, 1841-1914 The Life, Crime, and Capture of John Wilkes Booth etext6631 Perry, Stella George Stern, 1877-1956 The Sculpture and Mural Decorations of the Exposition etext6637 Raimund, Ferdinand, 1790-1836 Der Alpenkönig und der Menschenfeind etext6640 Hauff, Wilhelm, 1802-1827 Märchen-Almanach auf das Jahr 1828 etext6674 Sangster, William, 1808-1888 Umbrellas and Their History etext6779 Schiller, Friedrich, 1759-1805 History of the Revolt of the Netherlands — Volume 04 etext6960 Seaver, James E. (James Everett), 1787-1827 A Narrative of the Life of Mrs. Mary Jemison etext7035 Hale, Mabel The Hero of Hill House etext7039 Carpenter, Minnie Lindsay Rowell The Angel Adjutant of "Twice Born Men" etext7045 Anderson, Sherwood, 1876-1941 Marching Men etext7120 Turgenev, Ivan Sergeevich, 1818-1883 Knock, Knock, Knock and Other Stories etext7198 Twain, Mark, 1835-1910 The Adventures of Tom Sawyer, Part 6. etext7201 Fletcher, Robert Huntington A History of English Literature etext7221 Various 文淵閣四庫全書 etext7260 Gan, Bao, fl. 317-322 搜神記 volume 1-3 etext7360 The Tryal of William Penn and William Mead for Causing a Tumult etext7389 Holmes, Oliver Wendell, 1809-1894 The Poetical Works of Oliver Wendell Holmes — Volume 02: Additional Poems (1837-1848) etext7415 Hudson, W. H. (William Henry), 1841-1922 A Shepherd's Life etext7430 Howells, William Dean, 1837-1920 Familiar Spanish Travels etext32605 Unknown History of Beasts etext7444 Molière, 1622-1673 Psyche etext7461 Zola, Émile, 1840-1902 Therese Raquin etext7498 Sidney, Margaret, 1844-1924 Five Little Peppers Grown Up etext7553 Parker, Gilbert, 1862-1932 Quotes and Images From The Works of Gilbert Parker etext7569 Bernard, Charles de, 1804-1850 Images from Bernard's Gerfaut etext7609 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Eugene Aram — Volume 01 etext7641 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Ernest Maltravers — Volume 02 etext7645 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Ernest Maltravers — Volume 06 etext7674 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Harold : the Last of the Saxon Kings — Volume 03 etext7677 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Harold : the Last of the Saxon Kings — Volume 06 etext7678 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Harold : the Last of the Saxon Kings — Volume 07 etext7727 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Last of the Barons — Complete etext7808 Leonard, Nellie Mabel Grand-Daddy Whiskers, M.D. etext7824 Richards, Laura Elizabeth Howe, 1850-1943 Melody : the Story of a Child etext7863 Atherton, Gertrude Franklin Horn, 1857-1948 The Avalanche etext8035 Anonymous The Bible, King James version, Book 35: Habakkuk etext8050 Anonymous The Bible, King James version, Book 50: Philippians etext8053 Anonymous The Bible, King James version, Book 53: 2 Thessalonians etext8075 The Junior Classics — Volume 8 etext8076 Ward, Humphry, Mrs., 1851-1920 The History of David Grieve etext8111 After Long Years and Other Stories etext8125 Ellis, Havelock, 1859-1939 Impressions and Comments etext8127 Swinburne, Algernon Charles, 1837-1909 Two Nations etext8136 Godden, G. M. Henry Fielding: a Memoir etext8214 Vaknin, Samuel, 1961- Capitalistic Musings etext8220 Nye, Bill, 1850-1896 Remarks etext8222 Curtis, George William, 1824-1892 Early Letters of George Wm. Curtis etext8336 The Bible, Douay-Rheims, Book 36: Abdias etext8345 The Bible, Douay-Rheims, Book 45: 1 Machabees etext8358 The Bible, Douay-Rheims, Book 58: Colossians etext8414 Seton, Julia, M.D. Freedom Talks No. II etext8419 etext8420 Vaknin, Samuel, 1961- Issues in Population and Bioethics etext8472 Twain, Mark, 1835-1910 Life on the Mississippi, Part 2. etext8473 Twain, Mark, 1835-1910 Life on the Mississippi, Part 3. etext8479 Twain, Mark, 1835-1910 Life on the Mississippi, Part 9. etext8492 Chambers, Robert W. (Robert William), 1865-1933 The King in Yellow etext8496 Baroja, Pío, 1872-1956 The Quest etext8509 Lowell, James Russell, 1819-1891 Among My Books etext8555 Faguet, Émile, 1847-1916 Initiation into Literature etext8567 Hale, Horatio, 1817-1896 The Iroquois Book of Rites etext8636 Doyle, Arthur Conan, Sir, 1859-1930 Songs of Action etext8682 Cornish, C. J. (Charles John), 1858-1906 The Naturalist on the Thames etext8708 The Doré Gallery of Bible Illustrations, Volume 8 etext8712 Zola, Émile, 1840-1902 La Conquete De Plassans etext8720 Edgeworth, Maria, 1767-1849 Tales and Novels — Volume 02 etext8728 Wood, William Charles Henry, 1864-1947 The Winning of Canada: a Chronicle of Wolf etext8841 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, 2 Thessalonians etext8857 Galt, John, 1779-1839 The Life, Studies, and Works of Benjamin West, Esq. etext8866 Blanchan, Neltje, 1865-1918 Wild Flowers Worth Knowing etext8983 Verne, Jules, 1828-1905 The Journey to the Interior of the Earth etext8993 Verne, Jules, 1828-1905 Île mystérieuse. English etext9028 Twain, Mark, 1835-1910 The Mysterious Stranger etext9031 Twain, Mark, 1835-1910 Some Rambling Notes of an Idle Excursion etext9041 Twain, Mark, 1835-1910 What Is Man? and Other Essays etext9054 Alcott, William A. (William Andrus), 1798-1859 The Young Woman's Guide etext9061 Demosthenes, 384 BC-322 BC The Public Orations of Demosthenes, volume 2 etext9112 Cox, Stephen Angus The Dare Boys of 1776 etext9216 Hawthorne, Nathaniel, 1804-1864 Beneath an Umbrella (From "Twice Told Tales") etext9384 Leathem, W. H. (William Harvey) The Comrade in White etext9385 Nesbit, E. (Edith), 1858-1924 The Incomplete Amorist etext9400 A Select Collection of Old English Plays, Volume 2 etext9430 Hardy, Thomas, 1840-1928 Poems of the Past and the Present etext9452 Hardy, Thomas, 1840-1928 Wessex Poems and Other Verses etext9455 Edgeworth, Maria, 1767-1849 Tales and Novels — Volume 03 etext9504 Doyle, Arthur Conan, Sir, 1859-1930 Micah Clarke etext9616 Loti, Pierre, 1850-1923 Ramuntcho etext9619 Nekrasov, Nikolai Alekseevich, 1821-1877 Who Can Be Happy and Free in Russia? etext9630 Humphreys, John H. Proportional Representation etext9631 Walton, Izaak, 1593-1683 Waltoniana etext9694 Dickens, Charles, 1812-1870 The Battle of Life etext9696 Dickens, Charles, 1812-1870 A Christmas Carol etext9830 Fitzgerald, F. Scott (Francis Scott), 1896-1940 The Beautiful and Damned etext9894 Thiers, Adolphe, 1797-1877 Histoire de la Révolution française, Tome 2 etext9908 Vance, Louis Joseph, 1879-1933 The False Faces etext9919 Various The Mirror of Literature, Amusement, and Instruction etext9953 Various Punchinello, Volume 1, No. 20, August 13, 1870 etext9961 Various Punchinello, Volume 1, No. 07, May 14, 1870 etext9965 Stephens, Robert Neilson, 1867-1906 An Enemy to the King etext9971 Hauptmann, Gerhart, 1862-1946 The Dramatic Works of Gerhart Hauptmann etext9982 Child, Lydia Maria Francis, 1802-1880 Philothea etext10002 Hodgson, William Hope, 1877-1918 The House on the Borderland etext10009 Hammond, S. H. (Samuel H.), 1809-1878 Wild Northern Scenes etext10071 Edwardes, S. M. (Stephen Meredyth), 1873-1927 By-Ways of Bombay etext10117 Rydberg, Viktor, 1828-1895 Den siste atenaren etext10134 Brummitt, Dan B. John Wesley, Jr. etext10201 Grey, Zane, 1872-1939 The Desert of Wheat etext10234 Cable, George Washington, 1844-1925 Old Creole Days etext10239 Orchestra, Losey's 2nd Record etext10289 D'Hervilly, Ernest Le Chat du Neptune etext10305 Murray, Billy Alexander's Ragtime Band etext10339 Verne, Jules, 1828-1905 An Antarctic Mystery etext10371 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Cinema Murder etext10375 MacDonald, George, 1824-1905 England's Antiphon etext10389 Long, William Joseph, 1866-1952 Northern Trails, Book I. etext10398 McCracken, Elizabeth The American Child etext10413 Baines, William, 1899-1922 Fancy Little Nancy etext10498 McGuinn, Roger Ain' No Mo' Cane on De Brazis etext10499 McGuinn, Roger Delia's Gone etext10514 D'Oliveira, E. (Elias), 1886-1944 De jongere generatie etext10538 Birmingham, George A., 1865-1950 Hyacinth etext10557 Brooke, L. Leslie (Leonard Leslie), 1862-1940 Johnny Crow's Party etext10585 Boothby, Guy, 1867-1905 My Strangest Case etext10605 Grayson, David, 1870-1946 Adventures in Contentment etext10615 Locke, John, 1632-1704 An Essay Concerning Humane Understanding, Volume 1 etext10635 Hunt, Leigh, 1784-1859 Stories from the Italian Poets: with Lives of the Writers, Volume 2 etext10644 Lord, John, 1810-1894 Beacon Lights of History, Volume 11 etext10649 Lord, John, 1810-1894 Beacon Lights of History, Volume 14 etext10695 Various The Atlantic Monthly, Volume 03, No. 15, January, 1859 etext10726 Newell, Jane H. Outlines of Lessons in Botany, Part I; from Seed to Leaf etext10759 McGuinn, Roger Tarrytown etext10788 Jacobs, W. W. (William Wymark), 1863-1943 Peter's Pence etext10791 Jacobs, W. W. (William Wymark), 1863-1943 Double Dealing etext10812 Le Gallienne, Richard, 1866-1947 The Worshipper of the Image etext10813 Boyd, Mary Stuart, -1937 A Versailles Christmas-Tide etext10825 Altamirano, Ignacio Manuel, 1834-1893 La Navidad en las Montañas etext10827 Machiavelli, Niccolò, 1469-1527 Discourses on the First Decade of Titus Livius etext10868 Rolland, Romain, 1866-1944 Clerambault etext10886 Brand, Max, 1892-1944 The Untamed etext10917 Sapper, Agnes, 1852-1929 Die Familie Pfäffling etext10984 Hamsun, Knut, 1859-1952 Growth of the Soil etext10992 Abbott, Jacob, 1803-1879 Cleopatra etext11009 Marcantonio, Vito, 1902-1954 Labor's Martyrs etext11013 Bryant, William Cullen, 1794-1878 Letters of a Traveller etext11170 Various The Atlantic Monthly, Volume 07, No. 43, May, 1861 Creator etext11176 Bourgogne, Adrien-Jean-Baptiste-François Mémoires du sergent Bourgogne etext11227 Sweetser, Kate Dickinson, -1939 Ten Boys from Dickens etext11246 Various The Mirror of Literature, Amusement, and Instruction etext11260 Gregory, Lady, 1852-1932 The Kiltartan History Book etext11279 Ade, George, 1866-1944 The Slim Princess etext11319 Gatty, Alfred, Mrs., 1809-1873 The Fairy Godmothers and Other Tales etext11441 Saintine, Joseph Xavier, 1798-1865 The Solitary of Juan Fernandez, or the Real Robinson Crusoe etext11453 Binet, Alfred, 1857-1911 La Suggestibilité etext11455 Various The Mirror of Literature, Amusement, and Instruction etext11487 Various The Mirror of Literature, Amusement, and Instruction etext11489 Benezet, Anthony, 1713-1784 Some Historical Account of Guinea, Its Situation, Produce, and the General Disposition of Its Inhabitants etext11522 Oliver, Stephen, 1950- Deadly Pollen etext11553 The Wonders of Prayer etext11611 Various The Mirror of Literature, Amusement, and Instruction etext11661 Peabody, Josephine Preston, 1874-1922 The Piper etext11682 Gibbs, Philip, 1877-1962 The Soul of the War etext11819 Library of Congress. Copyright Office U.S. Copyright Renewals, 1959 January - June etext12001 Morley, John, 1838-1923 Studies in Literature etext12012 Rochholz, E. L. (Ernst Ludwig), 1809-1892 Drei Gaugöttinnen etext12057 Major, Charles, 1856-1913 Yolanda: Maid of Burgundy etext12088 Brooks, Stratton D. Composition-Rhetoric etext12108 Mann, Thomas, 1875-1955 Der Tod in Venedig etext12121 Jacobs, W. W. (William Wymark), 1863-1943 The Lady of the Barge etext12201 Jacobs, W. W. (William Wymark), 1863-1943 The Money Box etext12289 Hennequin, Émile Quelques écrivains français etext12303 Ingelow, Jean, 1820-1897 Fated to Be Free etext12319 Various The Atlantic Monthly, Volume 01, No. 04, February, 1858 etext12325 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels — Volume 03 etext12329 Woodberry, George Edward, 1855-1930 Heart of Man etext12394 Various Punch, or the London Charivari, Volume 99, September 13, 1890 etext12407 Sunzi 6th cent. B.C. The Art of War etext12416 Bell, Lilian, -1929 As Seen By Me etext12425 De Orbe Novo, Volume 1 (of 2) etext12442 Edwards, Amelia Ann Blanford, 1831-1892 In the Days of My Youth etext12479 Anonymous 三字經 etext12575 Various The Mirror of Literature, Amusement, and Instruction etext12581 Clark, Charles Heber, 1841-1915 Elbow-Room etext12628 Arnold, Matthew, 1822-1888 Selections from the Prose Works of Matthew Arnold etext12647 Le Fanu, Joseph Sheridan, 1814-1873 J. S. Le Fanu's Ghostly Tales, Volume 4 etext12695 Beethoven, Ludwig van, 1770-1827 String Quartet No. 04 in C minor Opus 18 etext12760 Various The Atlantic Monthly, Volume 09, No. 53, March, 1862 etext12790 Fulton, Justin D. True Woman, The etext12812 Christine, de Pisan, 1364?-1431? Oeuvres poétiques Tome 2 etext12815 Simmons, Amelia American Cookery etext12879 Voices for the Speechless etext12880 McClung, Nellie L., 1873-1951 Three Times and Out etext12914 Powys, John Cowper, 1872-1963 One Hundred Best Books etext12977 Bierce, Ambrose, 1842-1914? Black Beetles in Amber etext13039 Howard, Bronson, 1842-1908 Shenandoah etext13050 Walter, Eugene, 1874-1941 The Easiest Way etext13059 DeGuise, Charles, 1827-1884 Le Cap au Diable, Légende Canadienne etext13147 Andreyev, Leonid Nikolayevich, 1871-1919 Savva and the Life of Man etext13204 Shedd, William G. T. (William Greenough Thayer), 1820-1894 Sermons to the Natural Man etext13250 Ferguson, Donald The Chums of Scranton High at Ice Hockey etext13293 Bennett, Arnold, 1867-1931 Tales of the Five Towns etext13295 Mühlbach, L. (Luise), 1814-1873 The Youth of the Great Elector etext13343 Anderson, Ada Woodruff, 1860- The Rim of the Desert etext9135 etext13344 Anonymous The Moral Picture Book etext13423 Grisewood, R. Norman (Robert Norman), 1876- Zarlah the Martian etext13440 Various Lippincott's Magazine of Popular Literature and Science etext13527 Verne, Jules, 1828-1905 Ticket No. "9672" etext13553 Dell, Ethel M. (Ethel May), 1881-1939 The Tidal Wave and Other Stories etext13554 Allen, James Lane, 1849-1925 Aftermath etext13577 Aldridge, Janet The Meadow-Brook Girls Afloat etext13622 Mariéton, Paul, 1862-1911 Une histoire d'Amour : George Sand et A. de Musset etext13651 Chatto & Windus (Firm) Chatto & Windus Alphabetical Catalogue of Books in Fiction and General Literature, Sept. 1905 etext13678 Abrahams, Israel, 1858-1925 Chapters on Jewish Literature etext13693 Carmichael, R. D. (Robert Daniel), 1879-1967 The Theory of Numbers etext13697 Verschuur, Gerrit Pondichéry, hoofdstad van Fransch-Indië etext13699 Geffroy, Gustave, 1855-1926 In Zuid-Bretagne etext13741 Various The Bay State Monthly — Volume 2, No. 2, November, 1884 etext13744 Sand, George, 1804-1876 Isidora etext13777 Phelan, T. The Siege of Kimberley etext13798 Pushkin, Aleksandr Sergeevich, 1799-1837 The Daughter of the Commandant etext13861 Constant, Benjamin, 1767-1830 Adolphe etext13868 Shakespeare, William, 1564-1616 Macbeth etext13887 Allinson, T. R. (Thomas Richard) Dr. Allinson's cookery book etext13927 Various Punch, or the London Charivari, Volume 156, January 29, 1919 etext13936 Various Notes and Queries, Number 47, September 21, 1850 etext14015 Hopkins, Matthew, -1647 The Discovery of Witches etext14027 Amélineau, E. (Emile), 1850-1915 Abydos etext14030 Dick, Vinceslas-Eugène, 1848-1919 Un drame au Labrador etext14032 Williams, John, 1727-1798 An Enquiry into the Truth of the Tradition, Concerning the etext14039 Chamberlain, George Agnew Through stained glass etext14078 Martinengo-Cesaresco, Countess Evelyn, 1852-1931 The Liberation of Italy etext14088 Genthe, Siegfried, 1870-1904 Uit Marokko etext14095 Veiller, Bayard, 1869-1943 The Thirteenth Chair etext14105 Achleitner, Arthur, 1858-1927 Im grünen Tann etext14208 Järnefelt, Arvid, 1861-1932 Orjan oppi etext14211 Ford, Paul Leicester, 1865-1902 Wanted—A Match Maker etext14268 Abelard, Peter, 1079-1142 Historia Calamitatum etext14275 Benson, Robert Hugh, 1871-1914 The Necromancers etext14286 Homer, 750? BC-650? BC L'Odyssée etext14296 As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1882-11/12) etext14331 Morrow, Honoré, 1880-1940 Judith of the Godless Valley etext14364 Various Punch, Or The London Charivari, Volume 102, March 12, 1892 etext14369 Hancock, H. Irving (Harrie Irving), 1868-1922 The Young Engineers on the Gulf etext14423 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels — Volume 12 etext14424 Barrow, John, Sir, 1764-1848 The Eventful History of the Mutiny and Piratical Seizure of H.M.S. Bounty: Its Cause and Consequences etext14478 Wheat, George Seay The Story of The American Legion etext14479 Dundonald, Thomas Cochrane, Earl of, 1775-1860 Narrative of Services in the Liberation of Chili, Peru and Brazil, etext14485 Steele, David Notes on the Apocalypse etext14504 Boyle, Robert, 1627-1691 Experiments and Considerations Touching Colours (1664) etext14544 Various Punch, or the London Charivari, Volume 102, April 30, 1892 etext14553 Anonymous Baltimore Catechism, No. 3 etext14557 Vaknin, Samuel, 1961- The Conundrums of Psychology etext14564 Sand, George, 1804-1876 Cesarine Dietrich etext14595 Optic, Oliver, 1822-1897 The Soldier Boy; or, Tom Somers in the Army etext14687 Craik, Dinah Maria Mulock, 1826-1887 Christian's Mistake etext14688 Sand, George, 1804-1876 Un hiver à Majorque etext14798 etext15000 Santayana, George, 1863-1952 The Life of Reason etext15004 Mitchell, S. Weir (Silas Weir), 1829-1914 Doctor and Patient etext15062 Päivärinta, Pietari, 1827-1913 Elämän hawainnoita X: Pöyhkeä isäntä; Kauppias=mummo; Matkustaja etext15065 Various The Continental Monthly, Vol. 1, No. 4, April, 1862 etext15103 Cooper, Henry St. John The Imaginary Marriage etext15154 Münsterberg, Hugo, 1863-1916 Psychology and Industrial Efficiency etext15194 Dawson, Coningsby, 1883-1959 Out To Win etext15352 New Zealand. Committee of the Board of Health Venereal Diseases in New Zealand (1922) etext15356 Hume, Fergus, 1859-1932 Red Money etext15384 Webster, Henry Kitchell, 1875-1932 The Real Adventure etext15396 Stein, Gertrude, 1874-1946 Tender Buttons etext15414 Peple, Edward Henry, 1869-1924 The Littlest Rebel etext15419 Starrett, Helen Ekin Letters to a Daughter and A Little Sermon to School Girls etext15425 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels, Volume 17 etext15439 Various Punch, or the London Charivari, Volume 103, October 1, 1892 etext15456 McGuffey, William Holmes, 1800-1873 McGuffey's Eclectic Spelling Book etext15471 Various The Great Round World And What Is Going On In It, Vol. 1, No. 24, April 22, 1897 etext15472 Abercrombie, Lascelles, 1881-1938 Emblems Of Love etext15586 Chirol, Valentine, Sir, 1852-1929 India, Old and New etext15606 Burigny, Jean Lévesque de, 1692-1785 The Life of the Truly Eminent and Learned Hugo Grotius etext15650 Various The Great Round World and What Is Going On In It, Vol. 1, No. 32, June 17, 1897 etext15743 Wilson, Harry Leon, 1867-1939 Bunker Bean etext15795 Stratemeyer, Edward, 1862-1930 The Rover Boys in Camp etext15850 Goethe, Johann Wolfgang von, 1749-1832 Iphigenia in Tauris etext15894 Andrews, Mary Raymond Shipman, 1860-1936 The Lifted Bandage etext16016 Carleton, William, 1794-1869 Going to Maynooth etext16022 Dickens, Charles, 1812-1870 Les conteurs à la ronde etext16023 Dickens, Charles, 1812-1870 Oliver Twist etext16050 Thomes, William Henry, 1824-1895 The Gold Hunters' Adventures etext16116 Levison, Jacob Joshua, 1881- Studies of Trees etext16142 etext16183 Starr, Frederick, 1858-1933 In Indian Mexico (1908) etext16205 Balzac, Honoré de, 1799-1850 The Physiology of Marriage, Complete etext16236 Cooper, James Fenimore, 1789-1851 Le dernier des mohicans etext16268 Quiller-Couch, Mabel, 1866-1924 The Story of Jessie etext16291 Van Dyke, Henry, 1852-1933 The Story of the Other Wise Man etext16442 Crampton, Henry Edward The Doctrine of Evolution etext16447 Adams, Samuel Hopkins, 1871-1958 The Clarion etext16504 Symonds, John Addington, 1840-1893 Renaissance in Italy, Volumes 1 and 2 etext16526 Bensusan, S. L. (Samuel Levy), 1872-1958 Morocco etext16531 Benham, William, 1831-1910 Old St. Paul's Cathedral etext16577 Tarbell, Ida M., 1857-1944 The Business of Being a Woman etext16614 Joly, John, 1857-1933 The Birth-Time of the World and Other Scientific Essays etext16643 Emerson, Ralph Waldo, 1803-1882 Essays by Ralph Waldo Emerson etext16668 Juva, Valter, 1865-1922 Maahengen salaisuus etext16671 Various Scientific American Supplement, No. 643, April 28, 1888 etext16674 Kyne, Peter B. (Peter Bernard), 1880-1957 The Pride of Palomar etext16713 Dudeney, Henry Ernest, 1857-1930 Amusements in Mathematics etext26068 Anonymous The Bath Tatting Book etext16783 Jefferson, Thomas, 1743-1826 Memoir, Correspondence, And Miscellanies, From The Papers Of Thomas Jefferson, Volume 3 etext16806 Ibsen, Henrik, 1828-1906 Rosmersholma etext16858 Bain, George W. Wit, Humor, Reason, Rhetoric, Prose, Poetry and Story Woven into Eight Popular Lectures etext16860 Smith, F. Clifford (Frank Clifford), 1865-1937 A Lover in Homespun etext16885 Sade, Marquis de, 1740-1814 Aline et Valcour, tome 1 etext16887 Farges, Albert, 1848-1926 La philosophie de M. Bergson etext16911 Runciman, James, 1852-1891 The Romance of the Coast etext16919 Doughty, Francis Worcester, 1850-1917 The Bradys and the Girl Smuggler etext17011 Rosegger, Peter, 1843-1918 I.N.R.I. etext17026 Doctorow, Cory, 1971- Craphound etext17039 Smith, Hugh McCormick, 1865-1941 The Salmon Fishery of Penobscot Bay and River in 1895-96 etext17058 Durham, Victor G. The Submarine Boys' Lightning Cruise etext17076 Vondel, Joost van den, 1587-1679 Lucifer etext17132 Dionne, N.-E. (Narcisse-Eutrope), 1848-1917 The Makers of Canada: Champlain etext17497 Johnston, Annie F. (Annie Fellows), 1863-1931 Ole Mammy's Torment etext17515 Queirós, José Maria Eça de, 1845-1900 A Relíquia etext17524 Ibsen, Henrik, 1828-1906 Dramatische werken etext17526 Scharten-Antink, Margo, 1869-1957 Sprotje heeft een dienst etext17560 Freeman, Mary Eleanor Wilkins, 1852-1930 The Adventures of Ann etext17572 Warman, Cy, 1855-1914 The Last Spike etext17583 Bertrana, Prudenci, 1867-1941 Els Herois etext17643 Ulbach, Louis, 1822-1889 La confession d'un abbé etext17660 Verne, Jules, 1828-1905 L'archipel en feu etext17672 Curtis, William, 1746-1799 The Botanical Magazine, Vol. 3 etext17673 Zaccone, Pierre, 1817-1895 Éric le Mendiant etext17782 Kirkwood, Edith Brown, 1875-1954 Animal Children etext17893 Various The Best Ghost Stories etext17911 Sand, George, 1804-1876 Légendes rustiques etext17915 Banville, Théodore Faullain de, 1823-1891 Les parisiennes de Paris etext17980 La Bruyère, Jean de, 1645-1696 Les caractères etext17983 Prévost, Abbé, 1697-1763 Manon Lescaut etext17986 Agrippa, Camillo, 16th cent. Dialogo sopra la generatione de venti, baleni, tuoni, fulgori, fiumi, laghi, valli et montagne etext18051 Duncan, Sara Jeannette, 1862?-1922 Hilda etext18071 Reed, Myrtle, 1874-1911 The Spinster Book etext18072 Long, William Joseph, 1866-1952 Dierenleven in de wildernis etext18105 Piper, H. Beam, 1904-1964 Genesis etext18142 Gay, Sophie, 1776-1852 Ellénore, Volume II etext18171 Sheldon, Charles Monroe, 1857-1946 The Crucifixion of Philip Strong etext18184 Henshaw, Henry W. (Henry Wetherbee), 1850-1930 Animal Carvings from Mounds of the Mississippi Valley etext18186 Dickens, Charles, 1812-1870 David Copperfield I etext18192 Burke, Edmund, 1729-1797 The Works of the Right Honourable Edmund Burke, Vol. 10 (of 12) etext18211 Vigny, Alfred de, 1797-1863 Servitude et grandeur militaires etext18226 Anonymous My Young Days etext18387 Aguilar, Grace, 1816-1847 The Days of Bruce Vol 1 etext18403 Chevalier, H. Émile (Henri Émile), 1828-1879 La fille du pirate etext18428 Ibsen, Henrik, 1828-1906 The Feast at Solhoug etext18434 Abbott, Keene, 1876-1941 A Melody in Silver etext18443 MacGrath, Harold, 1871-1932 Parrot & Co. etext18472 Crébillon, Claude Prosper Jolyot de, 1707-1777 The Amours of Zeokinizul, King of the Kofirans etext18573 Stoddard, Richard Henry, 1825-1903 Abraham Lincoln etext18618 Gordy, Wilbur Fisk, 1854-1929 Stories of Later American History etext18709 The Best Short Stories of 1921 and the Yearbook of the American Short Story etext18768 Del Rey, Lester, 1915-1993 The Sky Is Falling etext18789 Rittenberg, Max, 1880- Swirling Waters etext18822 Stockton, Frank Richard, 1834-1902 The House of Martha etext18823 Various Modern Eloquence: Vol II, After-Dinner Speeches E-O etext18853 Various Chambers's Edinburgh Journal, No. 438 etext18881 Bangs, John Kendrick, 1862-1922 The Idiot etext18885 Various Lippincott's Magazine, Vol. 22, August, 1878 etext18886 Sedgwick, Anne Douglas, 1873-1935 Franklin Kane etext18887 Sevilla, Jose N., 1880-1946 Si Rizal at ang mga Diwata etext18895 Bell, Lilian, -1929 At Home with the Jardines etext18952 Fletcher, Archibald Lee Boy Scouts on a Long Hike etext18990 Montgomery, Frances Trego, 1858-1925 Billy Whiskers' Adventures etext19007 etext19012 Seltzer, Charles Alden, 1875-1942 The Two-Gun Man etext19038 English Walnuts etext19044 Grenfell, Wilfred Thomason, Sir, 1865-1940 Adrift on an Ice-Pan etext19046 Quental, Antero de, 1842-1891 Sonetos etext19056 Boutwell, George S., 1818-1905 Thoughts on Educational Topics and Institutions etext19159 Project Gutenberg DVD: The July 2006 Special etext12904 Barbusse, Henri, 1873-1935 Light etext19203 Various The Great Round World and What Is Going On In It, Vol. 2, No. 5, February 3, 1898 etext19217 Smollett, T. (Tobias), 1721-1771 The History of England in Three Volumes, Vol.II. etext19259 Sheldon, Georgie, Mrs., 1843-1926 His Heart's Queen etext19267 Baha'i International Community Century of Light etext19294 Hope, Laura Lee The Outdoor Girls on Pine Island etext19301 Feild, Edward, 1801-1876 Extracts from a Journal of a Voyage of Visitation in the "Hawk," 1859 etext19314 Hurll, Estelle M. (Estelle May), 1863-1924 Raphael etext19327 Lejean, Guillaume, 1824-1871 Reize in Taka (Opper-Nubië) etext19334 Various Punch, or the London Charivari, Volume 159, December 15, 1920 etext19349 Various Punch, or the London Charivari, Vol. 159, 1920-11-17 etext19378 Pickthall, Marmaduke William, 1875-1936 Oriental Encounters etext19412 etext19432 Mapes, Victor, 1870-1943 Heart and Soul by Maveric Post etext19440 Anonymous La Saga de Njal etext19442 Castelnuovo, Enrico, 1839-1915 Il fallo d'una donna onesta etext19540 Sardou, Victorien, 1831-1908 La Tosca etext19650 Oehlenschläger, Adam Gottlob, 1779-1850 Aksel ja Valpuri etext19654 Stephen, Leslie, Sir, 1832-1904 Alexander Pope etext19693 Van Dyke, Henry, 1852-1933 Fighting For Peace etext19699 Various Encyclopaedia Britannica, 11th Edition, Volume 4, Part 3 etext19706 Rohmer, Sax, 1883-1959 Brood of the Witch-Queen etext19740 Martin, Gene Allen Make Your Own Hats etext19748 Rowbotham, Francis Jameson Story-Lives of Great Musicians etext19769 Various The Brochure Series of Architectural Illustration, Volume 01, No. 08, August 1895 etext19870 Bradley, John William, 1830-1916 Illuminated Manuscripts etext19890 Various The American Missionary — Volume 50, No. 6, June, 1896 etext19892 Richards, Laura Elizabeth Howe, 1850-1943 The Silver Crown etext19896 Eggleston, Edward, 1837-1902 Queer Stories for Boys and Girls etext19921 Holmes, William Henry, 1846-1933 Prehistoric Textile Art of Eastern United States etext19948 Glass, Montague, 1877-1934 Potash and Perlmutter Settle Things etext19995 Various The Atlantic Monthly, Volume 05, No. 28, February, 1860 etext20013 Smarandache, Florentin, 1954- Formules pour l'esprit etext20137 Scholten, Johannes Henricus A Comparative View of Religions etext20217 Kotzebue, August von, 1761-1819 The Stranger etext20229 Stories of Comedy etext20337 Bligh, William, 1754-1817 A Narrative Of The Mutiny, On Board His Majesty's Ship Bounty; And The Subsequent Voyage Of Part Of The Crew, In The Ship's Boat etext20385 Brewster, Edith Gilman Some Three Hundred Years Ago etext20414 Lemaître, Jules, 1853-1914 Jean Racine etext20419 Ferber, Edna, 1885-1968 Gigolo etext20454 Kiljander, Robert, 1848-1924 Sulhasen luona etext20549 Morris, Charles, 1833-1922 Historical Tales, Vol. 9 (of 15) etext20587 MacGregor, Morris J., 1931- Integration of the Armed Forces, 1940-1965 etext20598 Stockton, Frank Richard, 1834-1902 Buccaneers and Pirates of Our Coasts etext20616 Masefield, John, 1878-1967 The Old Front Line etext20633 Leacock, Stephen, 1869-1944 Winsome Winnie and other New Nonsense Novels etext20710 Sabin, Edwin L. (Edwin Legrand), 1870-1952 Pluck on the Long Trail etext20749 Scott, Walter, Sir, 1771-1832 St. Ronan's Well etext20823 Anonymous Bulletin de Lille, 1916.04 etext20874 Quental, Antero de, 1842-1891 Raios de extincta luz etext20889 Vizetelly, Henry, 1820-1894 Facts About Champagne and Other Sparkling Wines etext20900 Trench, Richard Chenevix, 1807-1886 English Past and Present etext20931 Harte, Bret, 1836-1902 Tri Noveloj de Usona Verkisto Bret Harte etext21051 Smith, E. E. (Edward Elmer), 1890-1965 Skylark Three etext21081 Various Scientific American, Volume XLIII., No. 25, December 18, 1880 etext21082 Lima, Jaime de Magalhães, 1859-1936 Salmos do prisioneiro etext21083 Lavis, F. Transactions of the American Society of Civil Engineers, vol. LXVIII, Sept. 1910 etext21095 Hutcheson, John C. (John Conroy) She and I, Volume 1 etext21126 Various Chambers's Edinburgh Journal, No. 447 etext21158 Various Sammlung deutscher Gedichte 001 etext21161 Browning, Elizabeth Barrett, 1806-1861 Sonnet 43 etext21164 Baum, L. Frank (Lyman Frank), 1856-1919 The Enchanted Island of Yew etext21224 Beech, Franklin The Dyeing of Cotton Fabrics etext21231 Walton, Amy, 1848-1899 Penelope and the Others etext21252 McHarry, Samuel The Practical Distiller etext21258 Waite, Arthur Edward, 1857-1942 Devil-Worship in France etext21266 Babcock, Charles Almanzo Bird Day; How to prepare for it etext21270 Alger, Horatio, 1832-1899 Five Hundred Dollars etext21304 Fenn, George Manville, 1831-1909 Begumbagh etext21313 Fenn, George Manville, 1831-1909 In Honour's Cause etext21433 Lima, Sebastião de Magalhães, 1850-1928 O congresso de Roma etext21486 Kingston, William Henry Giles, 1814-1880 The Woodcutter of Gutech etext21506 Kingston, William Henry Giles, 1814-1880 The Young Llanero etext21512 Daniel, Mooshie G. Modern Persia etext21532 Shaw, Wilfred The University of Michigan etext21541 Scott, Kevin Quiet, Please etext21563 Alfieri, Vittorio, 1749-1803 Octavia etext21638 Cummings, Ray, 1887-1957 Tarrano the Conqueror etext21700 Byron, George Gordon Byron, Baron, 1788-1824 Don Juan etext21721 Ballantyne, R. M. (Robert Michael), 1825-1894 The Coral Island etext21749 Ballantyne, R. M. (Robert Michael), 1825-1894 Man on the Ocean etext21779 Eça, Vicente de Almeida de, 1852-1929 Luiz de Camões marinheiro etext21816 Melville, Herman, 1819-1891 The Confidence-Man etext21825 Prévost, Marcel, 1862-1941 L'automne d'une femme etext21847 Trollope, Anthony, 1815-1882 Dr. Wortle's School etext21928 Jacobs, W. W. (William Wymark), 1863-1943 Light Freights etext21945 Zola, Émile, 1840-1902 Nantas etext21964 The Short-story etext21989 Kafka, Franz, 1883-1924 Ein Landarzt etext22006 Drachmann, Holger, 1846-1908 Kaksi laukausta etext22029 McCormack, Mary A. Spool Knitting etext22062 Dee, John, 1527-1608 The Mathematicall Praeface to Elements of Geometrie of Euclid of Megara etext22065 Harrison, Earl Stanley, 1871- An Elementary Spanish Reader etext22127 Various Notes and Queries, Number 34, June 22, 1850 etext22137 Jón Hjaltason Rímur af Grámanni í Garðshorni etext22145 Mencken, H. L. (Henry Louis), 1880-1956 A Book of Burlesques etext22165 Gibson, William Hamilton, 1850-1896 My Studio Neighbors etext22183 Weatherly, Fred E. Wilton School etext22239 Anderson, Poul William, 1926-2001 Security etext22246 Crawford, F. Marion (Francis Marion), 1854-1909 The Upper Berth etext22266 Fournel, Victor, 1829-1894 Paris nouveau et Paris futur etext22404 Anonymous The Story of the White-Rock Cove etext22410 Martineau, Harriet, 1802-1876 The Crofton Boys etext22483 Landor, Arnold Henry Savage, 1865-1924 Across Unknown South America etext22486 Various Punch, or the London Charivari, Vol. 104, February 25, 1893 etext22531 Lawrence, D. H. (David Herbert), 1885-1930 Amores etext22534 Charless, Charlotte Taylor Blow A Biographical Sketch of the Life and Character of Joseph Charless etext22549 Godwin, Tom, 1915-1980 Space Prison etext22585 Godwin, Tom, 1915-1980 —And Devious the Line of Duty etext22601 Hale, Horatio, 1817-1896 Hiawatha and the Iroquois Confederation etext22605 Harper, Henry H. Book-Lovers, Bibliomaniacs and Book Clubs etext22633 Arnault, A.-V. (Antoine-Vincent), 1766-1834 Souvenirs d'un sexagénaire, Tome I etext22679 Boto, António Tomás, 1897-1959 Canções etext22681 Lincoln, Abraham, 1809-1865 The Life and Public Service of General Zachary Taylor: An Address etext22716 Allan, P. B. M. The Book-Hunter at Home etext22731 Quigg, Lemuel Ely Tin-Types Taken in the Streets of New York etext22765 etext22835 Mitford, Mary Russell, 1787-1855 The London Visitor etext22845 Mitford, Mary Russell, 1787-1855 The Beauty Of The Village etext22875 Nourse, Alan Edward, 1928-1992 Circus etext22902 Moore, Harry The Liberty Boys Running the Blockade etext22955 Floyd, William The Mistakes of Jesus etext22986 etext22991 Ralphson, G. Harvey (George Harvey), 1879-1940 Boy Scouts Mysterious Signal etext22996 Stratemeyer, Edward, 1862-1930 The Rover Boys on Snowshoe Island etext23097 Cullom, Shelby M. (Shelby Moore), 1829-1914 Fifty Years of Public Service etext23099 Josephs, Henry The Fourth Invasion etext23153 Tevis, Walter S., 1928-1984 The Big Bounce etext23238 Vloten Elderinck, D. Ph. van Sexueele Zeden in Woord en Beeld etext23270 Young, Egerton Ryerson, 1840-1909 On the Indian Trail etext23276 Holt, Emily Sarah, 1836-1893 The White Rose of Langley etext23316 Anonymous Rose of Affection etext23322 Anonymous The Three Bears etext23333 Nettelbeck, Joachim, 1738-1824 Ein Mann etext23371 Ballantyne, R. M. (Robert Michael), 1825-1894 Blown to Bits etext23395 Cavins, Elmer W. (Elmer Warren), 1864- Orthography etext23396 Rathenau, Walther, 1867-1922 An Deutschlands Jugend etext23411 Hichens, Robert Smythe, 1864-1950 Smaïn; and Safti's Summer Day etext23415 Hichens, Robert Smythe, 1864-1950 The Mission Of Mr. Eustace Greyne etext23456 Hunter, Richard More Dollies etext23464 Lee, Sidney, Sir, 1859-1926 A Life of William Shakespeare etext23468 Kent, John Observations on the Causes, Symptoms, and Nature of Scrofula or King's Evil, Scurvy, and Cancer etext23476 Sumner, George Henry, 1824-1909 Churchwardens' Manual etext23513 Page, Thomas Nelson, 1853-1922 Old Jabe's Marital Experiments etext23535 Ferris, Benjamin The Invaders etext23658 Various Punch, or the London Charivari, Vol. 147, July 15, 1914 etext23681 etext23707 Bullock, Tom, 1873-1964 The Ideal Bartender etext23723 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Man Who was Thursday, A Nightmare etext23736 Crockett, S. R. (Samuel Rutherford), 1860-1914 The Dew of Their Youth etext23742 Unknown Charley's Museum etext23794 Mother Goose or the Old Nursery Rhymes etext23807 Janvier, Thomas A. (Thomas Allibone), 1849-1913 The Uncle Of An Angel etext23814 Jia, Yi, 200 BC-168 BC 賈誼新書 etext23864 Sunzi 6th cent. B.C. 孫子兵法 etext23897 Lear, Edward, 1812-1888 The Owl and the Pussycat etext23988 Stacpoole, H. De Vere (Henry De Vere), 1863-1951 The Man Who Lost Himself etext24004 Guan, Hanqing, 1210-1298 竇娥寃 etext24021 Zhang, Yingyu, 16th/17th cent. 杜騙新書 etext24106 Daochuo, 562-645 安樂集 etext24136 Zuoqiu, Ming 左傳 etext24150 Richardson, Robert S. (Robert Shirley), 1902-1981 Disturbing Sun etext24262 Pessoa, Fernando António Nogueira, 1888-1935 Antinous: A Poem etext24268 Reid, Mayne, 1818-1883 The Desert Home etext24319 Garrett, João Batista da Silva Leitão de Almeida, 1799-1854 Viagens na Minha Terra (Volume II) etext24329 Farrar, F. W. (Frederic William), 1831-1903 St. Winifred's, etext24465 Unknown Jack and Jill and Old Dame Gill etext24525 Privat, Edmond, 1889-1962 Karlo etext24541 Smith, Henry Bascom, -1916 Between the Lines etext24589 Bailey, Arthur Scott, 1877-1949 The Tale of Benny Badger etext24612 etext24617 Ballantyne, R. M. (Robert Michael), 1825-1894 The Wild Man of the West etext24649 Speiser, Felix, 1880-1949 In het Oerwoud en bij de Kannibalen op de Nieuwe Hebriden (deel 1 van 2) etext24741 Drake, Samuel Adams, 1833-1905 The Campaign of Trenton 1776-77 etext24825 Anonymous The Ghost of Chatham; A Vision etext24831 Abbott, Jacob, 1803-1879 Forests of Maine etext24991 Wise, Daniel, 1813-1898 Aunt Amy etext24996 Becke, Louis, 1855-1913 The Tapu Of Banderah etext25104 Rainey, Thomas Ocean Steam Navigation and the Ocean Post etext25139 Valk-Heijnsdijk, E. M. De Vegetarische Keuken etext25140 Fletcher, Alice C. (Alice Cunningham), 1838-1923 Indian Story and Song etext25147 黃繡球 etext25173 Sun, Guangxian, -968 北夢瑣言 etext25196 Anonymous 百家姓 etext25250 Li, Yu, 1611-1680? 合錦回文傳 etext25303 Victor, Metta Victoria Fuller, 1831-1885 The Bad Boy At Home etext25335 Angellier, Auguste, 1847-1911 Robert Burns etext25389 Agee, Alva, 1858-1943 Right Use of Lime in Soil Improvement etext25391 Zhao, Yi, 1727-1814 甌北詩話 etext25489 Peck, George W. (George Wilbur), 1840-1916 Peck's Bad Boy Abroad etext25529 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Danny Meadow Mouse etext25627 Silverberg, Robert, 1935- The Hunted Heroes etext25634 etext25657 Unknown Deborah Dent and Her Donkey and Madam Fig's Gala etext25734 etext25761 Bernard, of Clairvaux, Saint, 1091?-1153 St. Bernard of Clairvaux's Life of St. Malachy of Armagh etext25762 Wheeler, Janet D. Billie Bradley on Lighthouse Island etext25765 Jackson, Gabrielle E. (Gabrielle Emilie), 1861- A Dixie School Girl etext25766 Daudet, Alphonse, 1840-1897 The Immortal etext25857 Wells, Carolyn, 1862-1942 Patty's Social Season etext25876 Brown, George Douglas, 1869-1902 The House with the Green Shutters etext25896 Page, Thomas Nelson, 1853-1922 Tommy Trot's Visit to Santa Claus etext25910 Bindloss, Harold, 1866-1945 The Long Portage etext25980 Ellis, Edward Sylvester, 1840-1916 Footprints in the Forest etext25991 Derieux, Samuel A. (Samuel Arthur), 1881-1922 Frank of Freedom Hill etext26008 Munde, Charles Hydriatic treatment of Scarlet Fever in its Different Forms etext26016 Alger, Horatio, 1832-1899 The Young Outlaw etext26053 Herford, Oliver, 1863-1935 This Giddy Globe etext26060 Ivimey, John W. (John William), 1868- Complete Version of ye Three Blind Mice etext26118 Despeyrous, Théodore, 1815-1883 Mémoire sur les équations résolubles algébriquement etext26130 Barclay, Vera C. (Vera Charlesworth), 1893- Stories of the Saints by Candle-Light etext26158 Beal, W. J. (William James), 1833-1924 Seed Dispersal etext26190 Cox, James A. A Choice of Miracles etext26209 Dwight, Henrietta Latham The Golden Age Cook Book etext26451 etext26458 Wharton, Edith, 1862-1937 Age of Innocence etext26640 Barnum, P. T. (Phineas Taylor), 1810-1891 The Humbugs of the World etext26671 Edgar, John G. (John George), 1834-1864 The Boy Crusaders etext26704 Carter, Nicholas A Woman at Bay etext26764 Shakespeare, William, 1564-1616 Henri VI (2/3) etext26768 Harrison, S. Frances (Susie Frances), 1859-1935 Ringfield etext26788 Brown William etext26820 Duras, Claire de Durfort, duchesse de, 1777-1828 Ourika etext26867 Keeler, Harry Stephen, 1890-1967 John Jones's Dollar etext26876 Unknown 文子 etext27159 Farina, Salvatore, 1846-1918 Due amori etext27178 Gnatowski, Jan, 1855-1925 Na śmierć, 1863 etext27184 Mountain, Plum Rocky 癡人福 etext27241 Couperus, Louis, 1863-1923 Reis-impressies etext27254 Nagel, Oskar, 1874- Die Romantik der Chemie etext27267 Custine, Astolphe, marquis de, 1790-1857 La Russie en 1839, Volume III etext27308 Sappho Les poésies de Sapho de Lesbos etext27349 Miller, J. R. (James Russell), 1840-1912 Personal Friendships of Jesus etext27362 Gordon, J. M. (Joseph Maria), 1856-1929 The Chronicles of a Gay Gordon etext27393 Reynolds, Mack, 1917-1983 Medal of Honor etext27401 Swinburne, Algernon Charles, 1837-1909 Poems & Ballads (Second Series) etext27481 Kendall, Elizabeth Kimball A Wayfarer in China etext27552 Burke, Charles, 1822-1854 Representative Plays by American Dramatists: 1856-1911: Rip van etext27553 Reid, Stuart J. (Stuart Johnson), 1848-1927 Lord John Russell etext27644 Souvestre, Émile, 1806-1854 Au bord du lac etext27679 Hancock, H. Irving (Harrie Irving), 1868-1922 Uncle Sam's Boys as Sergeants etext27747 Somerville, Mary, 1780-1872 Personal Recollections, from Early Life to Old Age, of Mary Somerville etext27789 etext27804 Unknown The Boarding School etext27839 Duchess, 1855?-1897 Only an Irish Girl etext27844 Assollant, Alfred, 1827-1886 La chasse aux lions etext27875 Runeberg, Fredrika Charlotta Tengström, 1807-1879 Teckningar och drömmar etext27885 Various Ainslee's, Vol. 15, No. 6, July 1905 etext27961 Verschuur, Gerrit Op Martinique en Sint-Vincent, de veelgeteisterde eilanden etext27965 Fletcher, J. S. (Joseph Smith), 1863-1935 The Chestermarke Instinct etext27967 Various Punch, or the London Charivari, Vol. 147, September 30, 1914 etext28083 Schmidt, Otto Ernst, 1862-1926 Semper der Jüngling etext28088 Grand, Sarah The Beth Book etext28098 Murray, W. H. H. (William Henry Harrison), 1840-1904 Holiday Tales etext28170 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States From Interviews with Former Slaves etext28255 Beard, Daniel Carter, 1850-1941 Shelters, Shacks and Shanties etext28310 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Scenas da Foz etext28393 Dewey, John, 1859-1952 China, Japan and the U.S.A. etext32638 Kayser, Ronal In the Dark etext28408 Vega, Lope de, 1562-1635 Comedias: El remedio en la desdicha; El mejor alcalde, el rey etext28469 Cervantes Saavedra, Miguel de, 1547-1616 Don Quichot van La Mancha etext28500 Ukers, William H. (William Harrison), 1873-1945 All About Coffee etext28551 Garland, Hamlin, 1860-1940 The Trail of the Goldseekers etext28596 Various Punch or the London Charivari, Vol. 147, November 11, 1914 etext28602 Diderot, Denis, 1713-1784 Ceci n'est pas un conte etext28642 Barnum, Vance Joe Strong on the Trapeze etext28687 Unknown The Only True Mother Goose Melodies etext28729 Barrow, John, Sir, 1764-1848 Travels in China, Containing Descriptions, Observations, and Comparisons, Made and Collected in the Course of a Short Residence at the Imperial Palace of Yuen-Min-Yuen, and on a Subsequent Journey through the Country from Pekin to Canton etext28733 Doyle, Arthur Conan, Sir, 1859-1930 The Adventures of Sherlock Holmes etext28753 Lea, Elizabeth E. (Elizabeth Ellicott), 1793-1858 Domestic Cookery, Useful Receipts, and Hints to Young Housekeepers etext28780 Worts, George F. (George Frank), 1892- Peter the Brazen etext28827 Diderot, Denis, 1713-1784 La religieuse etext28871 Rawlinson, George, 1812-1902 The Seven Great Monarchies Of The Ancient Asian World etext28903 Guest, Edgar A. (Edgar Albert), 1881-1959 All That Matters etext28905 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Works Of Edward Bulwer-Lytton etext28938 Keller, Paul, 1873-1932 Ferien vom Ich etext28952 Dawson, Carley Mr. Wicker's Window etext28989 Gates, Eleanor, 1875-1951 The Biography of a Prairie Girl etext28997 Great Men and Famous Women, Vol. 7 etext29015 Parren, Callirhoe, 1859-1940 Η νέα γυναίκα etext29029 etext29064 Yates, Raymond F. (Raymond Francis), 1895- Boys' Book of Model Boats etext29098 Bradford, Charles Barker, 1862-1917 Black Bass etext29101 Freud, Sigmund, 1856-1939 Einige Charaktertypen aus der psychoanalytischen Arbeit etext29129 Brooks, Noah, 1830-1903 The Boy Settlers etext29185 United States. Executive Office of the President National Strategy for Combating Terrorism etext29212 Townsend, Martin I. (Martin Ingham), 1810-1903 Prehistoric Structures of Central America etext29241 Little Masterpieces of Science: etext29247 Cicero, Marcus Tullius, 106 BC-43 BC The Academic Questions, Treatise De Finibus, and Tusculan Disputations, of M.T. Cicero, With a Sketch of the Greek Philosophers Mentioned by Cicero etext29347 Pimentel, Alberto, 1849-1925 As Noites do Asceta etext29356 Reynolds, L. Major Such Blooming Talk etext29379 Kahn, Otto Hermann, 1867-1934 The New York Stock Exchange and Public Opinion etext29410 West, Wallace, 1900-1980 The End of Time etext29429 Maurik, Justus van, 1846-1904 Papieren Kinderen etext29487 Sheckley, Robert, 1928-2005 Forever etext29523 Jammes, Francis, 1868-1938 Le poète et l'inspiration etext29541 Croker, Thomas Crofton, 1798-1854 A Walk from London to Fulham etext29600 Kennedy, Joseph, 1858-1937 Rural Life and the Rural School etext29611 Bensusan, S. L. (Samuel Levy), 1872-1958 William Shakespeare etext29690 Mitton, G. E. (Geraldine Edith) Hampstead and Marylebone etext29693 Ellis, Edward Sylvester, 1840-1916 A Waif of the Mountains etext29716 Various The Harmsworth Magazine, v. 1, 1898-1899, No. 2 etext29741 Various Graham's Magazine Vol XXXIII No. 1 July 1848 etext29767 Various The Continental Monthly, Vol. 4, No. 2, August, 1863 etext29805 Ribaucour, Albert, 1845-1893 Étude des Élassoïdes ou Surfaces A Courbure Moyenne Nulle etext29828 Trollope, Anthony, 1815-1882 Is He Popenjoy? etext29851 Post, Melville Davisson, 1871?-1930 Dwellers in the Hills etext29906 Ruskin, John, 1819-1900 Modern Painters Volume II (of V) etext29933 Various Le Tour du Monde; Shangaï, la métropole chinoise etext29943 Various Le Tour du Monde; Éducation des nègres aux États-Unis etext29996 Quental, Antero de, 1842-1891 Manifesto dos Estudantes da Universidade de Coimbra á opinião illustrada do paiz etext30035 Reynolds, Mack, 1917-1983 Off Course etext30041 Murray, Charles Theodore, 1843-1924 Mlle. Fouchette etext30095 Comstock, Harriet T. (Harriet Theresa), 1860- At the Crossroads etext30120 Wilde, Oscar, 1854-1900 The Happy Prince and Other Tales etext30177 Various Astounding Stories of Super-Science January 1931 etext30204 Foote, G. W. (George William), 1850-1915 Arrows of Freethought etext30215 Jackson, F. Hamilton (Frederick Hamilton), 1848-1923 Intarsia and Marquetry etext30216 Olcott, Henry Steel, 1832-1907 The Buddhist Catechism etext30257 Colby, Charles W. (Charles William), 1867-1955 The Founder of New France etext30270 Anonymous That Mother-in-Law of Mine etext30279 Holmes, Oliver Wendell, 1809-1894 The One Hoss Shay etext30293 Fletcher Manufacturing Company The Candy Maker's Guide etext30294 etext30402 Quiller-Couch, Mabel, 1866-1924 The Making of Mona etext30444 Allsop, Robert Owen The Turkish Bath etext30451 Byron, May Clarissa Gillington, -1936 A Day with Keats etext30467 Thet Oera Linda Bok etext30486 Brontë, Charlotte, 1816-1855 Shirley etext30522 Devereux, G. R. M. The Etiquette of Engagement and Marriage etext30544 Tao, Qian, 372?-427 五孝傳 etext30562 Lee, Jennette, 1860-1951 Unfinished Portraits etext30574 Coolidge, Dane, 1873-1940 Shadow Mountain etext30605 De Amicis, Edmondo, 1846-1908 Spagna etext30625 Various Punch, or the London Charivari, Vol. 98, May 3, 1890. etext30627 White, William Allen, 1868-1944 In the Heart of a Fool etext30788 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 Dictionnaire raisonné de l'architecture française du XIe au XVIe siècle (8/9) etext30856 Roussado, Manuel Bom senso e bom gosto : resposta à carta que o sr. Antero de Quental dirigiu ao sr. Antonio Feliciano de Castilho etext30869 Garrett, Randall, 1927-1987 Thin Edge etext30871 Spence, Lewis, 1874-1955 Legends & Romances of Brittany etext30884 Brown, Rosel George Step IV etext30912 Boigne, Louise-Eléonore-Charlotte-Adélaide d'Osmond, comtesse de, 1781-1866 Récits d'une tante (Vol. 4 de 4) etext30919 Matos, J. J. Rodrigues de A mulher; Os Portuguezes em Tanger etext30928 Wildt, Johannes, 1782-1836 Olli Akselinpoika ja hänen perheensä etext31007 Molesworth, Mrs., 1839-1921 The Girls and I etext31011 Smith, Hobart M. The Tadpoles of Bufo cognatus Say etext31027 Legler, Henry Eduard Walt Whitman Yesterday and Today etext31044 Mayne, Rutherford, 1878-1967 The Turn of the Road etext31152 Russell, Robert J. Pleistocene Pocket Gophers From San Josecito Cave, Nuevo Leon, Mexico etext31155 Anonymous The Academy Keeper etext31161 Saroléa, Charles, 1870-1953 German Problems and Personalities etext31253 Phillips, Richard, 1767-1840 A Morning's Walk from London to Kew etext31283 English Critical Essays etext31348 Baum, L. Frank (Lyman Frank), 1856-1919 La Mirinda Sorĉisto de Oz etext31354 Maeterlinck, Maurice, 1862-1949 Death etext11440 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 Tales of Three Hemispheres etext31365 Various Lippincott's Magazine of Popular Literature and Science, Volume 26, July 1880. etext31371 Cobb, Thomas, 1854-1932 The Little Clown etext31386 Jacks, L. P. (Lawrence Pearsall), 1860-1955 Mad Shepherds etext31464 Pérez Galdós, Benito, 1843-1920 La de Bringas etext31488 Crane, Stephen, 1871-1900 The Little Regiment etext31576 Bettencourt, Emiliano Augusto de Memoria sobre a descoberta das ilhas de Porto Santo e Madeira 1418-1419 etext31596 Morris, William, 1834-1896 The Art and Craft of Printing etext31629 Dilnot, George Scotland Yard etext31644 Smith, Evelyn E., 1927-2000 Helpfully Yours etext31687 Graham, Margaret Collier, 1850-1910 Stories of the Foot-hills etext31697 More, Hannah, 1745-1833 The Shepherd of Salisbury Plain and Other Tales etext31733 Ettlinger, Karl, 1882-1939 Der Widerspenstigen Zähmung etext31749 The Irish ecclesiastical record etext31768 McElroy, John, 1846-1929 The Economic Functions of Vice etext31827 Rodwell, G. F. Etna etext32000 Moulton, Forest Ray, 1872-1952 An Introduction to Astronomy etext32019 Vance, Wilson J. Stone's River etext32047 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Josephine etext32092 Dowst, Robert Saunders, 1890-1959 The Technique of Fiction Writing etext32100 Wassermann, Jakob, 1873-1934 Melusine etext32182 Various Encyclopaedia Britannica, 11th Edition, Volume 7, Slice 4 etext32214 Faltaits, Kostas, 1891-1944 Αργία : διήγημα etext32250 etext32276 Parkerson, James Poetical Works etext32316 Bentley, William E. The Honored Prophet etext32339 Sheldon, Walter J., 1917- Brink of Madness etext32359 Williams, Robert Moore, 1907-1977 Sinister Paradise etext32383 Marshall, Carrie L. Two Wyoming Girls and Their Homestead Claim etext32408 Imbert de Saint-Amand, Arthur Léon, baron, 1834-1900 Marie Antoinette and the Downfall of Royalty etext32425 Lever, Charles James, 1806-1872 Maurice Tiernay Soldier of Fortune etext32476 Unknown The Twelve Months of the Year etext32544 Reynolds, John Murray The Golden Amazons of Venus etext32567 Mitford, Bertram, 1855-1914 Forging the Blades etext32589 Various Blackwood's Edinburgh Magazine, Volume 57, No. 353, March 1845 etext32608 Keppel, Frederick P. (Frederick Paul), 1875-1943 Some War-time Lessons etext32610 Habl, Franz The Long Arm etext32620 De la Mare, Walter, 1873-1956 The Three Mulla-mulgars etext32633 Venable, Lyn Time Enough at Last etext32669 Kirlew, Marianne The Story of John Wesley etext72 Burroughs, Edgar Rice, 1875-1950 Thuvia, Maid of Mars etext75 Goodwin, John Email 101 etext85 Burroughs, Edgar Rice, 1875-1950 Beasts of Tarzan etext96 Burroughs, Edgar Rice, 1875-1950 The Monster Men etext177 James, Henry, 1843-1916 The American etext233 Dreiser, Theodore, 1871-1945 Sister Carrie: a Novel etext243 Tolstoy, Leo, graf, 1828-1910 The Forged Coupon etext337 Eastman, Charles Alexander, 1858-1939 Indian Boyhood etext375 Bierce, Ambrose, 1842-1914? An Occurrence at Owl Creek Bridge etext391 Anonymous The Song of Roland etext471 Scott, Walter, Sir, 1771-1832 The Bride of Lammermoor etext592 Lindsay, Vachel, 1879-1931 The Chinese Nightingale and Other Poems etext597 Unknown The Story of Burnt Njal: the great Icelandic tribune, jurist, and counsellor etext606 Linderman, Frank Bird, 1869-1938 Indian Why Stories etext655 etext734 Gibbon, Edward, 1737-1794 History of the Decline and Fall of the Roman Empire — Volume 4 etext776 Marquis, Don, 1878-1937 Hermione's Group of Thinkers etext780 Wells, H. G. (Herbert George), 1866-1946 The War in the Air etext781 Sinking of the Titanic and Great Sea Disasters etext792 Brown, Charles Brockden, 1771-1810 Wieland: or, the Transformation, an American Tale etext803 Stendhal, 1783-1842 La Duchesse De Palliano etext903 Doyle, Arthur Conan, Sir, 1859-1930 The White Company etext914 Dickens, Charles, 1812-1870 The Uncommercial Traveller etext1031 Wilde, Oscar, 1854-1900 Charmides and Other Poems etext1083 Conrad, Joseph, 1857-1924 The Arrow of Gold etext1127 Shakespeare, William, 1564-1616 Othello etext1139 Van Dyke, Henry, 1852-1933 Fisherman's Luck and Some Other Uncertain Things etext1151 The Nibelungenlied etext1153 Burroughs, Edgar Rice, 1875-1950 The Chessmen of Mars etext1154 Lofting, Hugh, 1886-1947 The Voyages of Dr. Dolittle etext1240 Synge, J. M. (John Millington), 1871-1909 The Playboy of the Western World etext1253 Flaubert, Gustave, 1821-1880 A Simple Soul etext1277 Balzac, Honoré de, 1799-1850 Melmoth Reconciled etext1292 Congreve, William, 1670-1729 The Way of the World etext1306 Beerbohm, Max, Sir, 1872-1956 Seven Men etext1317 Paterson, A. B. (Andrew Barton), 1864-1941 Saltbush Bill, J. P. etext1342 Austen, Jane, 1775-1817 Pride and Prejudice etext1344 Balzac, Honoré de, 1799-1850 Secrets of the Princesse de Cadignan etext1371 Irving, Washington, 1783-1859 Astoria, or, anecdotes of an enterprise beyond the Rocky Mountains etext1418 Graves, Robert, 1895-1985 Country Sentiment etext1420 Holmes, Thomas, 1846-1918 London's Underworld etext1424 Edgeworth, Maria, 1767-1849 Castle Rackrent etext1442 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 Kingdom of the Blind etext1486 Fiske, John, 1842-1901 The Unseen World and Other Essays etext1645 Lang, Andrew, 1844-1912 Rhymes a la Mode etext1669 London, Jack, 1876-1916 A Collection of Stories etext1730 London, Jack, 1876-1916 Michael, Brother of Jerry etext1751 Pyle, Howard, 1853-1911 Twilight Land etext1773 Shakespeare, William, 1564-1616 Two Gentlemen of Verona etext1798 Shakespeare, William, 1564-1616 Timon of Athens etext1834 Groner, Auguste, 1850-1929 The Case of the Pocket Diary Found in the Snow etext1854 Balzac, Honoré de, 1799-1850 Catherine De Medici etext1950 Balzac, Honoré de, 1799-1850 A Woman of Thirty etext1982 Akutagawa, Ryunosuke, 1892-1927 羅生門 etext2019 etext2128 Narratives of New Netherland, 1609-1664 etext2207 Human Genome Project Chromosome Number 07 etext2212 Human Genome Project Chromosome Number 12 etext2224 Human Genome Project Chromosome Y Number 24 etext2242 Shakespeare, William, 1564-1616 A Midsummer Night's Dream etext2303 Procter, Adelaide Anne, 1825-1864 Legends and Lyrics etext2312 Goethe, Johann Wolfgang von, 1749-1832 Hermann und Dorothea etext2366 James, Henry, 1843-1916 The Beldonald Holbein etext2372 Lincoln, Joseph Crosby, 1870-1944 The Woman-Haters: a yarn of Eastboro twin-lights etext2402 Goethe, Johann Wolfgang von, 1749-1832 Briefe aus der Schweiz etext2444 Lang, Andrew, 1844-1912 Oxford etext2520 Stoker, Bram, 1847-1912 The Man etext2550 Harte, Bret, 1836-1902 Tales of Trail and Town etext2663 Lessing, Gotthold Ephraim, 1729-1781 Minna Von Barnhelm etext2770 Sidney, Margaret, 1844-1924 Five Little Peppers and How They Grew etext2788 Alcott, Louisa May, 1832-1888 Little Men etext2840 Heine, Heinrich, 1797-1856 De Franse Pers etext2865 Pyle, Howard, 1853-1911 Otto of the Silver Hand etext2889 Ball, Hugo, 1886-1927 Flametti etext2927 Huxley, Thomas Henry, 1825-1895 The Darwinian Hypothesis etext3015 Gilman, Charlotte Perkins, 1860-1935 The Man-Made World; or, Our Androcentric Culture etext3021 Frost, Robert, 1874-1963 A Boy's Will etext3039 Flecker, James Elroy, 1884-1915 Forty-Two Poems etext3071 Green, Anna Katharine, 1846-1935 The Golden Slipper : and other problems for Violet Strange etext3100 Legge, James, 1815-1897 The Chinese Classics: with a translation, critical and exegetical notes, prolegomena and copious indexes etext3101 Warner, Charles Dudley, 1829-1900 Washington Irving etext3106 Warner, Charles Dudley, 1829-1900 As We Were Saying etext3140 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Idle Ideas in 1905 etext3195 Twain, Mark, 1835-1910 Mark Twain's Letters — Volume 3 (1876-1885) etext3284 Speke, John Hanning, 1827-1864 The Discovery of the Source of the Nile etext3295 Lazarus, Emma, 1849-1887 The Poems of Emma Lazarus, Volume 1 etext3315 Hemphill, Vivia, 1889-1934 Down the Mother Lode etext3322 Wood, Henry, Mrs., 1814-1887 East Lynne etext3365 Howells, William Dean, 1837-1920 Their Wedding Journey etext3408 Sabatini, Rafael, 1875-1950 The Shame of Motley: being the memoir of certain transactions in the life of Lazzaro Biancomonte, of Biancomonte, sometime fool of the court of Pesaro etext3453 Tyrrell, Charles Alfred The Royal Road to Health etext3558 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 08 etext3560 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 10 etext3587 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 07 etext3591 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 11 etext3618 Shaw, Bernard, 1856-1950 Arms and the Man etext3637 Hichens, Robert Smythe, 1864-1950 The Garden of Allah etext3653 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Guns of Bull Run etext3654 Lang, Andrew, 1844-1912 Alfred Tennyson etext3663 Bindloss, Harold, 1866-1945 The Girl from Keller's etext3723 Trollope, Anthony, 1815-1882 A Ride Across Palestine etext3733 Maupassant, Guy de, 1850-1893 Bel Ami etext3735 Gogol, Nikolai Vasilievich, 1809-1852 The Inspector-General etext3755 Paine, Thomas, 1737-1809 Common Sense etext3843 Retz, Jean François Paul de Gondi de, 1613-1679 The Memoirs of Cardinal de Retz — Volume 2 [Historic court memoirs] etext3861 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 02 etext3934 Massa, Philippe, marquis de, 1831-1911 Zibeline — Complete etext3960 Coppée, François, 1842-1908 A Romance of Youth — Volume 3 etext3996 Souvestre, Émile, 1806-1854 An Attic Philosopher in Paris — Volume 1 etext4036 Pater, Walter, 1839-1894 Essays from 'The Guardian' etext4056 Follen, Eliza Lee Cabot, 1787-1860 Two Festivals etext4094 Legge, James, 1815-1897 The Chinese Classics — Volume 1: Confucian Analects etext4114 Young, Filson, 1876-1938 Christopher Columbus and the New World of His Discovery — Volume 7 etext4197 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 72: February/March 1668-69 etext4200 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Complete etext4204 Norton, William Harmon, 1856-1944 The Elements of Geology etext4237 Eden, Charles Henry, 1839-1900 Australian Search Party etext4249 etext4283 Ray, T. B. (T. Bronson), 1868-1934 Brazilian Sketches etext4316 Dellenbaugh, Frederick Samuel, 1853-1935 The Romance of the Colorado River etext4322 Hoenshel, Elmer Ulysses, 1864- My Three Days in Gilead etext4337 Call, Annie Payson, 1853-1940 Power Through Repose etext4355 Abbott, John S. C. (John Stevens Cabot), 1805-1877 David Crockett etext4376 McClung, Nellie L., 1873-1951 Sowing Seeds in Danny etext4377 Rice, Alice Caldwell Hegan, 1870-1942 Mrs. Wiggs of the Cabbage Patch etext4389 Moodie, Susanna, 1803-1885 Roughing It in the Bush etext4390 Tarbell, Frank Bigelow, 1853-1920 A History of Greek Art etext4408 Meredith, George, 1828-1909 Ordeal of Richard Feverel — Volume 3 etext4462 Meredith, George, 1828-1909 The Tragic Comedians — Volume 2 etext4466 Meredith, George, 1828-1909 Diana of the Crossways — Volume 2 etext4504 Brentano, Clemens, 1778-1842 Aus der Chronika eines fahrenden Schülers etext4512 Solomon, Steve Gardening Without Irrigation: or without much, anyway etext4522 Simpson, Bertram Lenox, 1877-1930 The Fight for the Republic in China etext4535 Gaskell, Elizabeth Cleghorn, 1810-1865 Sylvia's Lovers — Volume 2 etext4543 Berkeley, George, 1685-1753 Querist etext4556 Seiffert, Marjorie Allen, 1885-1970 A Woman of Thirty etext4571 Fraser, C. F., Mrs. Master Sunshine etext4617 Arthur, T. S. (Timothy Shay), 1809-1885 Woman's Trials etext4622 Arthur, T. S. (Timothy Shay), 1809-1885 Trials and Confessions of a Housekeeper etext4632 Arthur, T. S. (Timothy Shay), 1809-1885 The Good Time Coming etext4779 Vaknin, Samuel, 1961- Russian Roulette: Russia's Economy in Putin's Era etext4799 Shelley, Percy Bysshe, 1792-1822 The Complete Poetical Works of Percy Bysshe Shelley — Volume 3 etext4822 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 21: 1573-74 etext4861 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1590a etext4892 Motley, John Lothrop, 1814-1877 Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years' War — Complete (1609-15) etext4902 Bird, H. E. (Henry Edward), 1830-1908 Chess History and Reminiscences etext4929 Phillips, David Graham, 1867-1911 The Fashionable Adventures of Joshua Craig; a Novel etext4959 Adams, F. Colburn (Francis Colburn) The Life and Adventures of Maj. Roger Sherman Potter etext4974 Giles, Ernest, 1835-1897 Australia Twice Traversed, Illustrated, etext4979 Burgess, Thornton W. (Thornton Waldo), 1874-1965 Blacky the Crow etext5000 Leonardo da Vinci, 1452-1519 The Notebooks of Leonardo Da Vinci — Complete etext5007 Reeve, Arthur B. (Arthur Benjamin), 1880-1936 The Poisoned Pen etext5054 Reeve, Arthur B. (Arthur Benjamin), 1880-1936 The Dream Doctor etext5063 Euripides, 480? BC-406 BC The Iphigenia in Tauris of Euripides etext5072 Büchner, Georg, 1813-1837 Dantons Tod etext5094 Reeve, Arthur B. (Arthur Benjamin), 1880-1936 The Romance of Elaine etext5122 Fox, John, 1863-1919 The Trail of the Lonesome Pine etext5212 Film: Trinity Shot (first US Atomic Test) etext5221 Petronius Arbiter, 20-66 The Satyricon — Volume 04 : Escape by Sea etext5255 Green, Walter Cox The Book of Good Manners; a Guide to Polite Usage for All Social Functions etext5315 Mundy, Talbot, 1879-1940 Told in the East etext5347 Fisher, Dorothy Canfield, 1879-1958 Understood Betsy etext5423 Hugo, Victor, 1802-1885 L'homme Qui Rit etext5430 Johnson, Samuel, 1709-1784 Preface to a Dictionary of the English Language etext5450 Ebers, Georg, 1837-1898 An Egyptian Princess — Volume 01 etext5483 Ebers, Georg, 1837-1898 The Emperor — Volume 01 etext5505 Ebers, Georg, 1837-1898 Serapis — Volume 05 etext5521 Ebers, Georg, 1837-1898 The Bride of the Nile — Volume 05 etext5542 Ebers, Georg, 1837-1898 A Thorny Path — Complete etext5547 Ebers, Georg, 1837-1898 In the Fire of the Forge — Volume 05 etext5553 Ebers, Georg, 1837-1898 Margery — Volume 02 etext5571 Ebers, Georg, 1837-1898 Barbara Blomberg — Complete etext5620 James, Juliet Helena Lumbard, 1864- Palaces and Courts of the Exposition etext5623 Alger, Horatio, 1832-1899 The Young Explorer etext5633 White, William Allen, 1868-1944 The Martial Adventures of Henry and Me etext5640 Ilona, Martinovitsné Kutas Baron Pál Podmaniczky and the Norwegian Bible etext5668 Anonymous The Arabian Nights Entertainments - Complete etext5719 Ford, Paul Leicester, 1865-1902 Janice Meredith etext5724 Krehbiel, Henry Edward, 1854-1923 A Book of Operas etext5769 Johnson, E. Pauline, 1861-1913 The Shagganappi etext5788 Twain, Mark, 1835-1910 A Tramp Abroad — Volume 07 etext5869 Allen, Grant, 1848-1899 Michael's Crag etext30374 Reed, Margery Verner Futurist Stories etext5901 Pinkerton, A. Frank [pseud.] Dyke Darrel the Railroad Detective etext6001 Roy, Lillian Elizabeth, 1868-1932 Polly of Pebbly Pit etext6008 Savage, Richard, 1846-1903 The Midnight Passenger : a novel etext6011 Savage, Richard, 1846-1903 The Little Lady of Lagunitas etext6076 Caldwell, George W. (George Walter), 1866-1946 The Legends of San Francisco etext6123 De Quincey, Thomas, 1785-1859 Theological Essays and Other Papers — Volume 1 etext6150 Homer, 750? BC-650? BC The Iliad etext6175 Parker, Gilbert, 1862-1932 Pierre and His People, [Tales of the Far North], Volume 2. etext6181 Parker, Gilbert, 1862-1932 Romany of the Snows, Continuation of "Pierre and His People", v2 etext6219 Parker, Gilbert, 1862-1932 The Trespasser, Volume 1 etext6228 Parker, Gilbert, 1862-1932 The Seats of the Mighty, Volume 5 etext6253 Parker, Gilbert, 1862-1932 Michel and Angele — Complete etext6301 Lowell, Edward J. (Edward Jackson), 1845-1894 The Eve of the French Revolution etext6307 Hope, Laura Lee The Story of a Bold Tin Soldier etext6343 Kant, Immanuel, 1724-1804 Kritik der reinen Vernunft etext6384 Wright, Harold Bell, 1872-1944 That Printer of Udell's etext6433 Stratemeyer, Edward, 1862-1930 On the Trail of Pontiac etext6491 Burnett, Frances Hodgson, 1849-1924 The Head of the House of Coombe etext6492 Allen, Grant, 1848-1899 Biographies of Working Men etext6510 Wake, William, 1657-1737 The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 4, Nicodemus etext6511 Wake, William, 1657-1737 The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 5, St. Paul etext6516 Wake, William, 1657-1737 Forbidden books of the original New Testament etext6630 Serviss, Garrett Putman, 1851-1929 Curiosities of the Sky etext6660 De Quincey, Thomas, 1785-1859 Theological Essays and Other Papers — Volume 2 etext6679 Woolson, Constance Fenimore, 1840-1894 The Old Stone House etext6680 Molière, 1622-1673 The Bores etext6682 Wylie, Elinor, 1885-1928 Nets to Catch the Wind etext6716 Brooks, George Washington The Spirit of 1906 etext6744 Melanchthon, Philipp, 1497-1560 Apology of the Augsburg Confession etext6792 Schiller, Friedrich, 1759-1805 Maid of Orleans etext6810 Byne, Mildred Stapley, 1875-1941 Christopher Columbus etext6812 etext6836 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Three Men and a Maid etext6859 Rosenfeld, Morris, 1862-1923 Songs of Labor and Other Poems etext6882 Day, Clarence, 1874-1935 This Simian World etext6926 Lathrop, Rose Hawthorne, 1851-1926 Memories of Hawthorne etext2287 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 Havoc etext6934 Collins, A. Frederick (Archie Frederick), 1869- The Radio Amateur's Hand Book etext6973 Goldfrap, John Henry, 1879-1917 The Boy Aviators' Polar Dash etext7033 Le Moine, J. M. (James MacPherson), Sir, 1825-1912 Picturesque Quebec : a sequel to Quebec past and present etext7053 Rutherford, Mark, 1831-1913 Pages from a Journal with Other Papers etext7058 Wells, H. G. (Herbert George), 1866-1946 Mankind in the Making etext7105 Twain, Mark, 1835-1910 Adventures of Huckleberry Finn, Chapters 26 to 30 etext7124 Ballantyne, R. M. (Robert Michael), 1825-1894 The Coral Island etext7183 Hawthorne, Nathaniel, 1804-1864 Doctor Grimshawe's Secret — a Romance etext7189 Pollard, A. F. (Albert Frederick), 1869-1948 A Short History of the Great War etext7195 Twain, Mark, 1835-1910 The Adventures of Tom Sawyer, Part 3. etext7217 Liu, Shao, 3rd cent. 人物志 etext7220 Wang, Mian, 1287-1359 竹齋集 etext7302 Sears, John Van Der Zee My Friends at Brook Farm etext7323 Shakespeare, William, 1564-1616 Leben und Tod Königs Richard des zweyten etext7352 Belloc, Hilaire, 1870-1953 First and Last etext7392 Holmes, Oliver Wendell, 1809-1894 The Poetical Works of Oliver Wendell Holmes — Volume 05: Poems of the Class of '29(1851-1889) etext7441 Burroughs, John, 1837-1921 The Writings of John Burroughs — Volume 05: Pepacton etext7477 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 The Book of Wonder etext7483 Guan, Zhong, -645 BC 管子 — Volume 01 : Chapters 1-5 etext7486 Bacheller, Irving, 1859-1950 The Master of Silence etext7494 Hope, Laura Lee The Outdoor Girls in Army Service etext7512 Spyri, Johanna, 1827-1901 Heidi kann brauchen, was es gelernt hat etext7515 Dawson, Coningsby, 1883-1959 The Glory of the Trenches etext7523 Little, Frances, [pseud.], 1863-1941 The Lady of the Decoration etext7525 Cruttwell, Charles Thomas, 1847-1911 The History of Roman Literature etext7526 Bird, Isabella L. (Isabella Lucy), 1831-1904 The Englishwoman in America etext7539 Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773 Quotes and Images from Chesterfield's Letters to His Son etext7546 Howells, William Dean, 1837-1920 Quotes and Images From The Works of William Dean Howells etext7551 Montaigne, Michel de, 1533-1592 Quotes and Images From The Works of Michel De Montaigne etext7572 Coppée, François, 1842-1908 Images from Coppee's Romance of Youth etext7629 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Devereux — Volume 06 etext7637 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Disowned — Volume 07 etext7666 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 What Will He Do with It? — Volume 08 etext7700 Aristophanes, 446? BC-385? BC Lysistrata etext7705 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 My Novel — Volume 04 etext7721 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Last of the Barons — Volume 07 etext7751 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Godolphin, Volume 2. etext7768 Lamb, Charles, 1775-1834 The Adventures of Ulysses etext7810 Unknown Schatzkästlein des rheinischen Hausfreundes etext7833 Holley, Marietta, 1836-1926 Samantha on the Woman Question etext7857 Remington, Frederic, 1861-1909 The Way of an Indian etext7907 etext7918 Smith, John Jay, 1798-1881 American Historical and Literary Antiquities, Part 18. etext7924 Smith, John Jay, 1798-1881 American Historical and Literary Antiquities etext7970 Koestlin, Julius Life of Luther etext8000 Carey, H. C. (Henry Charles), 1793-1879 The slave trade, domestic and foreign etext8005 Anonymous The Bible, King James version, Book 5: Deuteronomy etext8032 Anonymous The Bible, King James version, Book 32: Jonah etext8071 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture etext8093 Howard, Anna Kelsey The Canadian Elocutionist etext8098 Stedman, John Gabriël, 1744-1797 Reize naar Surinamen en door de binnenste gedeelten van Guiana — Deel 3 etext8141 Franklin, Edgar, [pseud.], 1879-1958 Mr. Hawkins' Humorous Adventures etext8155 Henty, G. A. (George Alfred), 1832-1902 Colonel Thorndyke's Secret etext8176 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Death at the Excelsior etext8180 Lee, Vernon, 1856-1935 A Phantom Lover etext8203 Howells, William Dean, 1837-1920 A Modern Instance etext8268 Anonymous The World English Bible (WEB): Mark etext8324 The Bible, Douay-Rheims, Book 24: Canticle of Canticles etext8340 The Bible, Douay-Rheims, Book 40: Habacuc etext8392 Fick, H. H. (Henry H.), 1849- Hin und Her etext8399 Sherwood, Mrs. John M. E. W. Manners and Social Usages etext8440 Latzko, Andreas, 1876-1943 Menschen im Krieg. English etext8464 Hewlett, Maurice Henry, 1861-1923 Rest Harrow etext8471 Twain, Mark, 1835-1910 Life on the Mississippi, Part 1. etext8501 Rorer, Sarah Tyson Heston, 1849-1937 Ice Creams, Water Ices, Frozen Puddings Together with Refreshments for all Social Affairs etext8506 Foote, Mary Hallock, 1847-1938 In Exile and Other Stories etext8532 White, Edward Lucas, 1866-1934 Andivius Hedulio etext8563 Zola, Émile, 1840-1902 La Terre etext8587 Twain, Mark, 1835-1910 Roughing It, Part 6. etext8616 Doyle, Arthur Conan, Sir, 1859-1930 The Stark Munro Letters etext8617 Doyle, Arthur Conan, Sir, 1859-1930 The Captain of the Polestar etext8738 Ovid, 43 BC-18? Fasti etext8740 Tarkington, Booth, 1869-1946 In the Arena etext8742 Various Scientific American Supplement, No. 392, July 7, 1883 etext8848 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, 1 Peter etext8885 Behn, Aphra, 1640-1689 The Works of Aphra Behn, Volume II etext9004 Twain, Mark, 1835-1910 Extract from Captain Stormfield's Visit to Heaven etext9005 Twain, Mark, 1835-1910 Following the Equator etext9034 Twain, Mark, 1835-1910 The Stolen White Elephant etext9245 Hawthorne, Nathaniel, 1804-1864 Biographical Sketches etext9345 Conrad, Joseph, 1857-1924 Nostromo etext9433 Hardy, Thomas, 1840-1928 Tess of the d'Urbervilles, a Pure Woman etext9450 Holley, Marietta, 1836-1926 Samantha Among the Brethren, Complete etext9473 Sienkiewicz, Henryk, 1846-1916 The Knights of the Cross etext9562 Whittier, John Greenleaf, 1807-1892 Narrative and Legendary Poems: Barclay of Ury, and Others etext9571 Whittier, John Greenleaf, 1807-1892 Snow Bound and Others, from Poems of Nature, etext9577 Whittier, John Greenleaf, 1807-1892 Anti-Slavery Poems III. etext9662 Hume, David, 1711-1776 An Enquiry Concerning Human Understanding etext9669 Gilfillan, George, 1813-1878 Specimens with Memoirs of the Less-known British Poets, Volume 3 etext9816 Hill, Grace Livingston, 1865-1947 Lo, Michael! etext9866 Hertzka, Theodor, 1845-1924 Freeland etext9873 Bell, J. J. (John Joy), 1871-1934 Till the Clock Stops etext9877 Various Punchinello, Volume 1, No. 16, July 16, 1870 etext9896 Vizetelly, Ernest Alfred, 1853-1922 My Days of Adventure etext9940 Hodder, Edwin Life in London etext9963 Finley, Martha, 1828-1909 Elsie's Girlhood etext9986 Meade, L. T., 1854-1914 Wild Kitty etext10013 Various Punchinello, Volume 1, No. 09, May 28, 1870 etext10036 Various Punchinello, Volume 2, No. 28, October 8, 1870 etext10123 Baum, L. Frank (Lyman Frank), 1856-1919 Aunt Jane's Nieces etext10144 Various Punchinello, Volume 2, No. 35, November 26, 1870 etext10177 Wagner, Richard, 1813-1883 Ride of the Valkyries etext10183 Etude Nouvelle in a Flat and Etude in C Major, Op. 10, No. 1 etext10189 Edison Vaudeville Company Three Rubes Seeing New York etext10217 Austin, Mary Hunter, 1868-1934 The Land of Little Rain etext10224 Nixon-Roulet, Mary F., -1930 Kalitan, Our Little Alaskan Cousin etext10249 Ferera, Frank The St. Louis Blues etext10250 Ramsay (Director) The Five Bachelors etext10259 Lusk, Milan (houslove solo) Smês esko - slováckych písní - cis 1 etext10301 Favor, Edward M. Who Threw the Overalls in Mrs. Murphy's Chowder? etext10400 etext10419 Evans, Bob The Forest Monster of Oz etext10455 Turnbull, Lawrence, Mrs., -1927 A Golden Book of Venice etext10477 Lord, John, 1810-1894 Beacon Lights of History, Volume 01 etext10540 Wiggin, Kate Douglas Smith, 1856-1923 Mother Carey's Chickens etext10553 The first New Testament printed in English etext10607 The Real Mother Goose etext10608 Smith, Arthur Cosslett, 1852-1926 The Turquoise Cup, and, the Desert etext10609 Long, William Joseph, 1866-1952 English Literature etext10629 Wilkinson, Spenser, 1853-1937 Britain at Bay etext10676 Rizal, José, 1861-1896 The Reign of Greed etext10720 Zola, Émile, 1840-1902 Doctor Pascal etext10739 Schopenhauer, Arthur, 1788-1860 The Essays of Arthur Schopenhauer; On Human Nature etext10895 A Compilation of the Messages and Papers of the Presidents etext10912 Anonymous The Infant's Delight: Poetry etext10978 Burt, Katharine Newlin, 1882-1977 Hidden Creek etext11081 Arroyo de la Cuesta, Felipe, -1842 Extracto de la gramatica mutsun etext11085 Whyte-Melville, G. J., 1821-1878 M. or N. "Similia similibus curantur." etext11100 Falckenberg, Richard History of Modern Philosophy etext11159 Various The Atlantic Monthly, Volume 10, No. 62, December, 1862 etext11161 Webster, Henry Kitchell, 1875-1932 Mary Wollaston etext11244 Hardley, Robert A Project for Flying etext11278 etext11302 Villarino, Basilio, 1741-1785 Diario de la navegacion empredida en 1781 etext11305 Barbarich, Eugenio, 1868-1931 La Campagna del 1796 nel Veneto etext11356 Anderton, Thomas, 1836-1903 A Tale of One City: the New Birmingham etext11367 Eberhard, Wolfram, 1909-1989 A History of China etext11412 Various The Mirror of Literature, Amusement, and Instruction etext11422 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext11475 Jacobs, W. W. (William Wymark), 1863-1943 The Convert etext11521 Oliphant, Mrs. (Margaret), 1828-1897 A Beleaguered City etext11523 Various Behind the News: Voices from Goa's Press etext11566 Various The Mirror of Literature, Amusement, and Instruction etext11641 Bennett, Arnold, 1867-1931 Over There etext11715 Wright, Harold Bell, 1872-1944 The Eyes of the World etext11727 Various The Atlantic Monthly, Volume 03, No. 19, May, 1859 etext11733 Moore, George (George Augustus), 1852-1933 A Mere Accident etext11770 Daudet, Alphonse, 1840-1897 Lettres de mon moulin etext11807 Library of Congress. Copyright Office U.S. Copyright Renewals, 1953 January - June etext11813 Library of Congress. Copyright Office U.S. Copyright Renewals, 1956 January - June etext11861 etext11878 Colum, Padraic, 1881-1972 Three Plays etext11906 Bragdon, Claude Fayette, 1866-1946 Four-Dimensional Vistas etext11925 Schubert, Hermann Cäsar Hannibal, 1848-1911 Elementare Arithmetik und Algebra etext11944 Roosevelt, Theodore, 1858-1919 The Winning of the West, Volume 4 etext12013 Palmer, Frederick, 1873-1958 My Year of the War etext12061 Dio, Cassius Dio's Rome, Volume 6 etext12062 Doren, Alice B. Van Lighted to Lighten: the Hope of India etext12105 Burlureaux, Dr. La lutte pour la santé etext12125 Jacobs, W. W. (William Wymark), 1863-1943 Cupboard Love etext12207 Jacobs, W. W. (William Wymark), 1863-1943 Establishing Relations etext12294 Various Punch, or the London Charivari, Volume 146, January 7, 1914 etext12296 etext12306 Various Punch, or the London Charivari, Volume 99, October 4, 1890 etext12315 Sherwood, Mrs. (Mary Martha), 1775-1851 Shanty the Blacksmith; a Tale of Other Times etext12324 Ware, Sedley Lynch The Elizabethan Parish in its Ecclesiastical and Financial Aspects etext12330 Beston, Henry, 1888-1968 A Volunteer Poilu etext12343 Rid, Samuel The Art of Iugling or Legerdemaine etext12356 Cartier, Jacques, 1491-1557 Voyage de J. Cartier au Canada etext12401 La dernière lettre écrite par des soldats français tombés au champ d'honneur 1914-1918 etext12424 Livingston, Leon Ray, 1872-1944 The Trail of the Tramp etext12437 Bury, Richard Girard de, 1730?-1794? Histoire de St. Louis, Roi de France etext12466 Various Punch, or the London Charivari, Volume 99, September 20, 1890 etext12472 etext12484 Dell, Ethel M. (Ethel May), 1881-1939 The Knave of Diamonds etext12541 Abel, Annie Heloise The American Indian as Participant in the Civil War etext12568 Various The Mirror of Literature, Amusement, and Instruction etext12579 As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1883-06) etext12614 Various Punch, or the London Charivari, Volume 156, April 9, 1919 etext12684 Anderson, Nephi, 1865-1923 Dorian etext12711 Twain, Mark, 1835-1910 On the Decay of the Art of Lying etext12720 Shakespeare, William, 1564-1616 Sonnet #40 etext12762 Martin, Edward A. The Story of a Piece of Coal etext12777 Hancock, H. Irving (Harrie Irving), 1868-1922 The Young Engineers in Nevada etext12800 Morse, John T. (John Torrey), 1840-1937 Abraham Lincoln, Volume I etext12871 Stephens, James, 1882-1950 The Insurrection in Dublin etext12887 Fairbanks, Douglas, 1883-1939 Laugh and Live etext12906 Kivi, Aleksis, 1834-1872 Canzio; Selman juonet etext12992 Becke, Louis, 1855-1913 The Naval Pioneers of Australia etext13010 Marryat, Frederick, 1792-1848 Frank Mildmay etext13020 Hayes, Clair W. (Clair Wallace), 1887- The Boy Allies at Verdun etext13053 Various International Weekly Miscellany of Literature, Art, and Science — Volume 1, No. 4, July 22, 1850 etext13081 Oliver, Stephen, 1950- Unmanned etext13113 Various The Mirror of Literature, Amusement, and Instruction etext13175 Bang, Herman, 1857-1912 Ved vejen etext13182 Prefaces and Prologues to Famous Books etext13183 Everett-Green, Evelyn, 1856-1932 In the Days of Chivalry etext13327 Various Punch, or the London Charivari, Volume 101, Jubilee Issue, July 18, 1891 etext13361 Various Notes and Queries, Number 36, July 6, 1850 etext13373 Various Punch, or the London Charivari, Volume 100, June 13, 1891 etext13395 Bell, Clive, 1881-1964 Since Cézanne etext13417 Chekhov, Anton Pavlovich, 1860-1904 The Cook's Wedding and Other Stories etext13468 Chesterton, G. K. (Gilbert Keith), 1874-1936 The New Jerusalem etext13492 Mazariegos, Gorgonio Petano y Viajes por Europa y América etext13494 Phillips, Henry Wallace, 1869-1930 Fables For The Times etext13536 Various Notes and Queries, Index of Volume 1, November, 1849-May, 1850 etext13574 Camp, Walter, 1859-1925 Keeping Fit All the Way etext13620 The World's Greatest Books — Volume 13 — Religion and Philosophy etext13643 Various International Weekly Miscellany - Volume 1, No. 6, August 5, 1850 etext13650 Lear, Edward, 1812-1888 Nonsense Books etext13677 Drummond, Henry, 1851-1897 Beautiful Thoughts etext13715 Pease, Edward R., 1857-1955 The History of the Fabian Society etext13758 McDonald, Etta Austin Blaisdell, 1872- Gerda in Sweden etext13768 Aho, Juhani, 1861-1921 Katajainen kansani etext13775 Gray, Grace Viall Every Step in Canning etext13854 James, George Wharton, 1858-1923 The Old Franciscan Missions Of California etext13921 Heyl, Hedwig, 1850-1934 Volks-Kochbuch etext13939 Various Scientific American Supplement, No. 484, April 11, 1885 etext13977 Rhodius, Apollonius, ca. 3rd cent. B.C. The Argonautica etext14014 Anonymous Dangers on the Ice Off the Coast of Labrador etext14020 Horace, 65 BC-8 BC The Works of Horace etext14046 Various Punch, or the London Charivari, Volume 101, September 26, 1891 etext14075 Braun, Lily, 1865-1916 Die Frauenfrage etext14082 Poe, Edgar Allan, 1809-1849 The Raven $l English $l French etext14118 Freeth, Lizzie A. Legend of Moulin Huet etext14166 Various Punch, or the London Charivari, Volume 102, January 9, 1892 etext14171 Raine, William MacLeod, 1871-1954 A Man Four-Square etext14237 Philips, Samuel The Christian Home etext14248 Gardner, E. C. (Eugene Clarence), 1836-1915 Homes and How to Make Them etext14291 Jacobs, Joseph, 1854-1916 The Story of Geographical Discovery etext14304 Potter, Beatrix, 1866-1943 The Tale of Peter Rabbit etext14347 Strindberg, August, 1849-1912 Plays by August Strindberg, Second series etext14354 Roberts, Samuel, 1800-1885 Gwaith Samuel Roberts etext14381 About, Edmond, 1828-1885 The Roman Question etext14398 Féval, Paul, 1817-1887 La fées des grèves etext14428 Tupper, Ferdinand Brock, 1795-1874 The Life and Correspondence of Sir Isaac Brock etext14429 Wilson, James Harrison, 1837-1925 Heroes of the Great Conflict; Life and Services of William Farrar etext14464 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels — Volume 13 etext14466 Wilson, Sarah Isabella Augusta, Lady, 1865-1929 South African Memories etext14474 Faraday, Michael, 1791-1867 The Chemical History of a Candle etext14490 Duncan, Sara Jeannette, 1862?-1922 A Daughter of To-Day etext14613 Scott, J.W. Robertson The Foundations of Japan etext14735 Laski, Harold Joseph, 1893-1950 Political Thought in England from Locke to Bentham etext14745 Various Punch, or the London Charivari, Volume 102, June 18, 1892 etext14748 Everett-Green, Evelyn, 1856-1932 For the Faith etext14752 Various The Children's Hour, Volume 3 (of 10) etext14793 Maupassant, Guy de, 1850-1893 La vie errante etext14881 Butterworth, Hezekiah, 1839-1905 The Log School-House on the Columbia etext14884 Lahee, Henry Charles, 1856-1953 Famous Violinists of To-day and Yesterday etext14897 Sea, Sophie Fox That Old-Time Child, Roberta etext14899 Anonymous Some Remarks on the Tragedy of Hamlet, Prince of Denmark, Written by Mr. William Shakespeare (1736) etext14913 La Rochefoucauld, François duc de, 1613-1680 Réflexions ou sentences et maximes morales etext14964 Alger, Horatio, 1832-1899 From Canal Boy to President etext14977 Wells-Barnett, Ida B., 1862-1931 The Red Record etext15048 Baekelmans, Lode, 1879-1965 Mijnheer Snepvangers etext15052 Various Scientific American Supplement, No. 832, December 12, 1891 etext15153 Yeats, W. B. (William Butler), 1865-1939 The Land of Heart's Desire etext15205 Gordon, Hanford Lennox, 1836-1920 The Feast of the Virgins and Other Poems etext15307 Sellar, Robert, 1841-1919 The Narrative of Gordon Sellar Who Emigrated to Canada in 1825 etext15337 A Source Book of Australian History etext15347 Ruyra, Joaquim, 1858-1939 Pinya de Rosa etext15372 Wilde, Oscar, 1854-1900 Le portrait de monsieur W.H. etext15449 Kelly, Myra, 1876-1910 New Faces etext15505 Möser, Justus, 1720-1794 Die Tugend auf der Schaubühne etext15553 The Golden Treasury of American Songs and Lyrics etext15677 Various Punch, or the London Charivari, Volume 103, November 5, 1892 etext15704 Diver, Maud, 1867-1945 Far to Seek etext15792 Napier, James, 1810-1884 Folk Lore etext15825 etext15904 Stratemeyer, Edward, 1862-1930 The Rover Boys on the River etext15929 Lindsay, Maud, 1874-1941 Mother Stories etext15958 Everett-Green, Evelyn, 1856-1932 French and English etext15982 Herbert, Mary E. Woman As She Should Be etext16095 Werner, E., 1838-1918 The Northern Light etext16166 Rawlinson, George, 1812-1902 The Seven Great Monarchies Of The Ancient Eastern World, Vol 6. (of 7): Parthia etext16171 Various Our Boys etext16192 Various The Great Round World and What Is Going On In It, Vol. 1, No. 57, December 9, 1897 etext16252 Dawson, A. J. (Alec John), 1872-1952 Jan etext16265 Riley, James Whitcomb, 1849-1916 Riley Songs of Home etext16269 etext16277 etext16279 Hägele, Joseph M. Zuchthausgeschichten von einem ehemaligen Züchtling etext16318 Carlyle, Thomas, 1795-1881 Tee työtä eläkä joudu epätoivoon! etext16388 Anonymous Bulletin de Lille, 1915-12 etext16424 Coffin, Henry Sloane, 1877-1954 Some Christian Convictions etext16443 Dinis, Júlio, 1839-1871 Uma família ingleza etext16481 Ramsay, Anders, 1832-1910 Muistoja lapsen ja hopeahapsen 1 etext16488 Gilman, Lawrence, 1878-1939 Debussy's Pelléas et Mélisande etext16507 Wren, Jenny Lazy Thoughts of a Lazy Girl etext16535 Cawein, Madison Julius, 1865-1914 Myth and Romance etext16568 Baker, George Augustus, 1849-1906 Point Lace and Diamonds etext16570 Moore, Thomas, 1779-1852 Life of Lord Byron, Vol. 2 etext16585 Kelley, Francis Clement, 1870-1948 Charred Wood etext16720 Crawford, F. Marion (Francis Marion), 1854-1909 Marzio's Crucifix and Zoroaster etext16752 Fraser, William Alexander, 1859-1933 Caste etext16859 Luckhoff, A. D (August D.) Woman's Endurance etext16861 Goodwin, C. C. The Wedge of Gold etext16876 Sue, Eugène, 1804-1857 Paula Monti, Tome II etext16960 etext16966 Bradley, A. C. (Andrew Cecil), 1851-1935 Shakespearean Tragedy etext16970 Anonymous De kasteelen van Koning Lodewijk II van Beieren etext16978 Slattery, John T. (John Theodore), 1866-1938 Dante: "The Central Man of All the World" etext17073 Alas, Leopoldo, 1852-1901 La Regenta etext17096 Hope, Laura Lee Bunny Brown and His Sister Sue at Camp Rest-A-While etext17099 Aldridge, Janet The Meadow-Brook Girls by the Sea etext17110 Beveridge, Albert Jeremiah, 1862-1927 The Young Man and the World etext17136 Selected Official Documents of the South African Republic and Great Britain etext17137 Godfrey, Edward Some Mooted Questions in Reinforced Concrete Design etext17150 Hammurabi, -1686? BC The Oldest Code of Laws in the World etext17224 Proctor, Richard A. (Richard Anthony), 1837-1888 Chance and Luck etext17228 Locke, David Ross, 1833-1888 "Swingin Round the Cirkle." etext17317 Valera, Juan, 1824-1905 Genio y figura etext17354 Owen, Luella Agnes, 1852-1932 Cave Regions of the Ozarks and Black Hills etext17355 Leinster, Murray, 1896-1975 The Runaway Skyscraper etext17439 Ritter, Thomas Jefferson, 1855- Mother's Remedies etext17489 Hugo, Victor, 1802-1885 Les misérables Tome I etext17527 Anonymous De Verdelgingsoorlog der Yankees tegen de Apachen-indianen etext17576 Grimthorpe, Edmund Beckett, Baron, 1816-1905 A Rudimentary Treatise on Clocks, Watches and Bells etext17577 etext17581 Rostand, Edmond, 1868-1918 The Romancers etext17585 Davenport, Cyril James Humphries, 1848-1941 English Embroidered Bookbindings etext17598 Parrish, Randall, 1858-1923 Beth Norvell etext17599 Rohlfs, Gerhard, 1831-1896 Von Tripolis nach Alexandrien - 1. Band etext17635 etext17649 Various The Germ etext17685 Anonymous Wandelingen door Elzas-Lotharingen etext17692 Lermina, Jules, 1839-1915 L'élixir de vie etext17693 Dumas père, Alexandre, 1802-1870 La San-Felice, Tome I etext17722 Various The Bay State Monthly, Volume 3, No. 2 etext17783 Anonymous The Traveling Engineers' Association etext17800 etext17947 Goncourt, Edmond de, 1822-1896 Journal des Goncourt (Troisième série, deuxième volume) etext17963 Chevalier, H. Émile (Henri Émile), 1828-1879 Le chasseur noir etext17969 Smyth, William J. Mound-Builders etext17978 Morgan, John Hartman, 1876-1955 Leaves from a Field Note-Book etext17991 Dumas père, Alexandre, 1802-1870 Le comte de Monte-Cristo, Tome III etext18069 Buysse, Cyriël, 1859-1932 Lente etext18087 Whately, Richard, 1787-1863 Historic Doubts Relative To Napoleon Buonaparte etext18095 Kleiser, Grenville, 1868-1953 Successful Methods of Public Speaking etext18123 Stevenson, Robert Louis, 1850-1894 Nouvelles mille et une nuits etext18140 etext18159 Guizot, M. (François), 1787-1874 Mémoires pour servir à l'Histoire de mon temps (Tome 6) etext18221 Vries, Hugo de, 1848-1935 De aardbeving van San Francisco etext18267 Nietzsche, Friedrich Wilhelm, 1844-1900 We Philologists etext18312 Shakespeare, William, 1564-1616 King Lear. French etext18331 Pohl, Rudolf, 1879- De Graecorum Medicis Publicis etext18357 Henty, G. A. (George Alfred), 1832-1902 A Jacobite Exile etext18361 Leinster, Murray, 1896-1975 Operation: Outer Space etext18418 Alexander, Mrs., 1825-1902 A Crooked Path etext18433 Zschokke, Heinrich, 1771-1848 Kultala etext18448 Wilson, Herbert M. Transactions of the American Society of Civil Engineers, vol. LXX, Dec. 1910 etext18477 Pyle, William Henry, 1875- The Science of Human Nature etext18529 etext18535 Chevalier, H. Émile (Henri Émile), 1828-1879 La capitaine etext18564 Bailey, Cyril, 1871-1957 The Religion of Ancient Rome etext18587 Ferguson, Donald The Chums of Scranton High etext18593 Marshall, John, 1755-1835 The Life of George Washington, Vol. 3 etext18654 Stockton, Frank Richard, 1834-1902 What Might Have Been Expected etext18665 Abbott, Eleanor Hallowell, 1872-1958 Molly Make-Believe etext18674 Pitman, Norman Hinsdale, 1876-1925 A Chinese Wonder Book etext18696 Brooks, Henry M. (Henry Mason), 1822-1898 The Olden Time Series, Vol. 6: Literary Curiosities etext18729 Benson, Robert Hugh, 1871-1914 Lourdes etext18761 Green, Anna Katharine, 1846-1935 The Circular Study etext18796 Various Chambers's Edinburgh Journal, No. 436 etext18883 Mason, A. E. W. (Alfred Edward Woodley), 1865-1948 The Four Feathers etext18888 Mariano, Patricio Ang mga Anak Dalita etext19047 Auerbach, Berthold, 1812-1882 Sysmäläinen etext19061 Seeing Europe with Famous Authors, Volume 8 etext19064 Cullum, Ridgwell, 1867-1943 The Triumph of John Kars etext19078 Lang, Mrs. The Red Book of Heroes etext19273 Hitchcock, Champion Ingraham The Dead Men's Song etext19320 Hassell, Antti Fredrik, 1855- Jaakko Cook'in matkat Tyynellä merellä etext19363 Stuart, Ruth McEnery, 1856-1917 Daddy Do-Funny's Wisdom Jingles etext19373 Northern Nut Growers Association, Report Of The Proceedings At The Tenth Annual Meeting. etext19413 Talbot, N. S. (Neville Stuart), 1879-1943 Thoughts on religion at the front etext19424 Addleshaw, Percy, 1866-1916 Bell's Cathedrals: The Cathedral Church of Exeter etext19450 Baum, L. Frank (Lyman Frank), 1856-1919 Dorothy and the Wizard in Oz etext19453 The Shield etext19458 West, Jane, 1758-1852 The Loyalists, Vol. 1-3 etext19508 Swift, Jonathan, 1667-1745 A Modest Proposal etext19536 Doin, Ernest, 1809-1891 Le pacha trompé ou Les deux ours etext19558 Pellico, Silvio, 1789-1854 Poesie inedite vol. II etext19569 etext19599 MacDonald, John A. (John Alexander), 1846-1922 Troublous Times in Canada etext19606 Stevenson, James, 1840-1888 Illustrated Catalogue of the Collections Obtained from the Pueblos of Zuñi, New Mexico, and Wolpi, Arizona, in 1881 etext19627 Aesop, 620 BC-563 BC Aesop's Fables - Volume 12 etext19638 Kafka, Franz, 1883-1924 Auf der Galerie etext19664 Xenophon, 431 BC-350? BC Anabasis etext19848 Saleeby, C. W. (Caleb Williams), 1878-1940 Woman and Womanhood etext19852 Crabb, James, 1774-1851 The Gipsies' Advocate etext19905 Shaw, Thomas, 1843-1918 Clovers and How to Grow Them etext19996 Various The Atlantic Monthly, Volume 16, No. 96, October 1865 etext20067 Cushing, Frank Hamilton, 1857-1900 Zuñi Fetiches etext20106 Benson, Irene Elliott How Ethel Hollister Became a Campfire Girl etext20112 etext20231 Roberts, Charles George Douglas, Sir, 1860-1943 Earth's Enigmas etext20254 Sand, George, 1804-1876 Les Maîtres sonneurs etext20313 Klein, Felix, 1849-1925 Ueber Riemann’s Theorie der Algebraischen Functionen etext20411 Murray, Margaret Alice, 1863-1963 The Witch-cult in Western Europe etext20423 Benson, Arthur Christopher, 1862-1925 Joyous Gard etext20433 Kingsley, Charles, 1819-1875 Women and Politics etext20492 Mulholland, Rosa, 1841-1921 Terry etext20534 Penn, William, 1644-1718 A Sermon Preached at the Quaker's Meeting House, in Gracechurch-Street, London, Eighth Month 12th, 1694. etext20571 Elson, Arthur Woman's Work in Music etext20678 Stimpson, Herbert Baird The Tory Maid etext20712 Ogden, George W. (George Washington), 1871-1966 Trail's End etext20733 Morley, John, 1838-1923 Critical Miscellanies (Vol. 1 of 3) etext20784 Various Eighth Annual Report etext20792 Various Chambers's Edinburgh Journal, No. 442 etext20907 The Best of the World's Classics, Restricted to prose. Volume I (of X) - Greece etext20936 Rathenau, Walther, 1867-1922 The New Society etext20954 Various Notes and Queries, Number 179, April 2, 1853. etext20965 Linde, Otto zur Die Kugel etext20971 La Fontaine, Jean de, 1621-1695 Fables de La Fontaine, livre premier etext21078 Bailey, Arthur Scott, 1877-1949 The Tale of Miss Kitty Cat etext21080 Leadbeater, C. W. (Charles Webster), 1854-1934 The Astral Plane etext21098 Vaizey, George de Horne, Mrs., 1857-1917 The Independence of Claire etext21155 Bodenheim, Maxwell, 1892-1954 Poet To His Love etext21223 Yonge, Charlotte Mary, 1823-1901 The Carbonels etext21337 etext21370 Burgess, Gelett, 1866-1951 More Goops and How Not to Be Them etext21384 Kingston, William Henry Giles, 1814-1880 Afar in the Forest etext21397 Kingston, William Henry Giles, 1814-1880 Manco, the Peruvian Chief etext21439 Del Rey, Lester, 1915-1993 Badge of Infamy etext21447 Kingston, William Henry Giles, 1814-1880 The Three Admirals etext21470 Kingston, William Henry Giles, 1814-1880 The Missing Ship etext21480 Kingston, William Henry Giles, 1814-1880 Sunshine Bill etext21493 Kingston, William Henry Giles, 1814-1880 Twice Lost etext21554 Marryat, Frederick, 1792-1848 Frank Mildmay etext21588 Grahame, Kenneth, 1859-1932 The Reluctant Dragon etext21602 Eliot, T. S. (Thomas Stearns), 1888-1965 The Waste Land etext21617 Green, Anna Katharine, 1846-1935 That Affair Next Door etext21630 Merryweather, Frederick Somner Bibliomania in the Middle Ages etext21668 Powys, John Cowper, 1872-1963 The Complex Vision etext21672 Smith, A. Murray, Mrs. Westminster Abbey etext21675 Brooks, Henry M. (Henry Mason), 1822-1898 The Olden Time Series, Vol. 4: Quaint and Curious Advertisements etext21706 Ballantyne, R. M. (Robert Michael), 1825-1894 Twice Bought etext21756 Ballantyne, R. M. (Robert Michael), 1825-1894 Philosopher Jack etext21757 Ballantyne, R. M. (Robert Michael), 1825-1894 The Hot Swamp etext21878 Amundsen, Roald, 1872-1928 De Noordwestelijke Doorvaart etext21916 Larsson, Ernst Villkor och möjligheter för kemisk storindustri i Sverige etext21927 Jacobs, W. W. (William Wymark), 1863-1943 Short Cruises etext21929 Jacobs, W. W. (William Wymark), 1863-1943 A Master Of Craft etext21934 Lang, Andrew, 1844-1912 The Gold Of Fairnilee etext21977 Wilkinson, John The Narrative of a Blockade-Runner etext21991 Gerard, James W. (James Watson), 1867-1951 Face to Face with Kaiserism etext21995 Rashdall, Hastings Philosophy and Religion etext22017 Blunt, John Henry A Key to the Knowledge of Church History (Ancient) etext22089 Clark, George W. The Liberty Minstrel etext22101 Long, William Joseph, 1866-1952 Wood Folk at School etext22144 Lowndes, Marie Belloc, 1868-1947 Good Old Anna etext22190 Poole, Bertram William Henry, 1880-1957 The Stamps of Canada etext22212 Walk, Charles Edmonds, 1875- The Paternoster Ruby etext22241 Lee, Gerald Stanley, 1862-1944 The Ghost in the White House etext22289 Hawes, Stephen, -1523 The Conuercyon of swerers etext22348 Cather, Willa Sibert, 1873-1947 Alexander's Bridge etext22354 Bonsels, Waldemar, 1881?-1952 The Adventures of Maya the Bee etext22367 Kafka, Franz, 1883-1924 Die Verwandlung etext22400 Foxe, John Fox's Book of Martyrs etext22429 Various L'Illustration, Samedi 8 Août 1914, 72e Année, No 3728 etext22462 Lande, Irving W. Slingshot etext22469 Leal, António Duarte Gomes, 1848-1921 A morte do athleta etext22485 Northcote, Rosalind Devon, Its Moorlands, Streams and Coasts etext22514 Scott, Walter, Sir, 1771-1832 Perth'in kaupungin kaunotar etext22529 Anonymous The Twelve Labours of Hercules, Son of Jupiter & Alcmena etext22574 Sumner, Charles, 1811-1874 The Best Portraits in Engraving etext22609 Lowell, James Russell, 1819-1891 The Writings of James Russell Lowell in Prose and Poetry, Volume V etext22648 Santos, C. Afonso dos O trophéo etext22659 Humboldt, Alexander von, 1769-1859 Rede, gehalten bei der Eröffnung der Versammlung deutscher Naturforscher und Ärzte in Berlin, am 18. September 1828 etext22688 Various Punch, or the London Charivari, Vol. 150, March 29, 1916 etext22690 Burnet, John Rembrandt and His Works etext22722 etext22727 Du Chaillu, Paul B. (Paul Belloni), 1835-1903 The Land of the Long Night etext22785 Adye, John, Sir, 1819-1900 Indian Frontier Policy etext22789 Ambrose, Saint, Bishop of Milan, -397 On the Duties of the Clergy etext22805 Various Punch, or the London Charivari, Vol. 150, March 22, 1916 etext22851 The Epistle of Paul the Apostle to the Ephesians etext22852 The Epistle of Paul the Apostle to the Romans etext22865 Morley, John, 1838-1923 Critical Miscellanies (Vol. 2 of 3) etext22879 Crawford, F. Marion (Francis Marion), 1854-1909 Paul Patoff etext22910 Maine, Henry Sumner, Sir, 1822-1888 Ancient Law etext22928 Whitman, Stephen French Sacrifice etext22940 Various Punch, or the London Charivari, Vol. 146, April 15, 1914 etext22964 Austen, Jane, 1775-1817 Sense and Sensibility etext22973 Markham, Gervase The English Husbandman etext23031 Seacole, Mary, 1805-1881 Wonderful Adventures of Mrs. Seacole in Many Lands etext23032 Various Punch, or the London Charivari, Vol. 146, April 8, 1914 etext23057 Mérimée, Prosper, 1803-1870 How The Redoubt Was Taken etext23059 Doyle, Arthur Conan, Sir, 1859-1930 My Friend The Murderer etext23078 Austin, Anne, 1895- Murder at Bridge etext23091 Lowndes, Robert W., 1916-1998 The Troubadour etext23111 Riley, James Whitcomb, 1849-1916 Riley Songs of Friendship etext23124 Vaizey, George de Horne, Mrs., 1857-1917 The Lady of the Basement Flat etext23195 Vaders, Henrietta Wikkey etext23268 Reid, Mayne, 1818-1883 The Scalp Hunters etext23269 Kingston, William Henry Giles, 1814-1880 The Heir of Kilfinnan etext23280 Shirley, Dame, 1819-1906 The Shirley Letters from California Mines in 1851-52 etext23330 Burnett, Frances Hodgson, 1849-1924 One Day At Arle etext23358 Aldrich, Thomas Bailey, 1836-1907 A Rivermouth Romance etext23414 Hichens, Robert Smythe, 1864-1950 Halima And The Scorpions etext23421 Hichens, Robert Smythe, 1864-1950 The Collaborators etext23458 Hubbard, Elbert, 1856-1915 Little Journeys to the Homes of the Great - Volume 13 etext23477 Chatelain, Clara de, 1807-1876 Up! Horsie! etext23499 Reid, Mayne, 1818-1883 The Hunters' Feast etext23500 etext23547 Unknown Sam Lambert and the New Way Store etext23623 Holt, Emily Sarah, 1836-1893 The White Lady of Hazelwood etext23643 Hewlett, Maurice Henry, 1861-1923 Gudrid the Fair etext23668 White, Gleeson, 1851-1898 Bell's Cathedrals: The Cathedral Church of Salisbury etext23747 Taylor, Richard, 1826-1879 Destruction and Reconstruction: etext23750 Jameson, Helen Follett, 1873- The Woman Beautiful etext23764 Garrett, Randall, 1927-1987 The Bramble Bush etext23819 La Chanson de Roland : Translated from the Seventh Edition of Léon Gautier etext23876 Xu, Hongzu, 1586-1641 徐霞客遊記 etext23915 Du, Guangting, 850-933 虬髯客傳 etext23968 Lister, Joseph, Baron, 1827-1912 On the Antiseptic Principle of the Practice of Surgery etext23987 Thurston, I. T. (Ida Treadwell), 1848-1918 The Torch Bearer etext24005 Garrett, Randall, 1927-1987 But, I Don't Think etext24121 O'Keefe, John As Long As You Wish etext24131 Wharton, Edith, 1862-1937 Xingu etext24132 Wharton, Edith, 1862-1937 Autres Temps... etext24138 Li, Boyuan, 1867-1906 官場現形記 etext24142 Tenggu, Guxiang, 1880-1919 轟天雷 etext24232 Unknown 孝經 etext24305 Gréville, Henry, 1842-1902 Suzanne Normis etext24310 Purdon, Katherine Frances, 1852- Candle and Crib etext24348 Wharton, Edith, 1862-1937 The Choice etext24360 Sloane, William Milligan, 1850-1928 The Life of Napoleon Bonaparte etext24391 Driggs, John B. (John Beach), 1854- Short Sketches from Oldest America etext24392 Williams, Ralph, -1959 Cat and Mouse etext24393 Birmingham, George A., 1865-1950 Our Casualty, and Other Stories etext24435 Beers, Henry A. (Henry Augustin), 1847-1926 Four Americans etext24450 Wallace, Edgar, 1875-1932 Bones etext24499 Hichens, Robert Smythe, 1864-1950 The Green Carnation etext24519 Cook, Theodore Andrea, Sir, 1867-1928 The Story of Rouen etext24521 Garrett, Randall, 1927-1987 In Case of Fire etext24531 Various The Continental Monthly, Vol. 2 No 4, October, 1862 etext24596 Barnes, William Horatio History of the Thirty-Ninth Congress of the United States etext24635 Heath, Sidney, 1872- Exeter etext24685 Treanor, Thomas Stanley Heroes of the Goodwin Sands etext24691 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 O vinho do Porto: processo de uma bestialidade ingleza etext24703 Unknown Little Present etext24707 Garrett, Randall, 1927-1987 By Proxy etext24747 Aakjær, Jeppe, 1866-1930 Samlede værker etext24780 Victoria, Queen of Great Britain, 1819-1901 The Letters of Queen Victoria : A Selection from her Majesty's correspondence between the years 1837 and 1861 etext24889 McCarthy, George T. The Greater Love etext24952 Becke, Louis, 1855-1913 Âmona; The Child; And The Beast; And Others etext24962 etext25045 Mathews, Cornelius, 1817-1889 Chanticleer etext25068 Martin, William The Book of Sports: etext25131 Zhao, Ye, fl. 40 吳越春秋 etext25220 Taggart, Ralph C. Transactions of the American Society of Civil Engineers, vol. LXX, Dec. 1910 etext25241 Mascarenhas, Miguel J. T. Surpreza etext25260 Ye, Zi, 1912?-1939 豐收 etext25265 Murri, Romolo, 1870-1944 Il cristianesimo e la religione di domani etext25291 Cohen, Chapman, 1868- Theism or Atheism etext25310 Desgenettes, R. (René), 1762-1837 Histoire Médicale de l'Armée d'Orient etext25359 Various Boys and Girls Bookshelf; a Practical Plan of Character Building, Volume I (of 17) etext25394 Various Le Tour du Monde; Perse etext25453 Ker, Marianne L. B. How the Fairy Violet Lost and Won Her Wings etext25483 Thorne, James Frederic, 1871- In the Time That Was etext25485 Optic, Oliver, 1822-1897 Dikes and Ditches etext25494 Hough, Emerson, 1857-1923 The Young Alaskans etext25536 Green, John Richard, 1837-1883 History of the English People, Volume VIII etext25596 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Keepers of the Trail etext25616 Fleury de Chaboulon, Pierre Alexandre Édouard, baron, 1779-1835 Les Cent Jours (1/2) etext25619 Davies, Charles Maurice, 1828-1910 Mystic London: etext25624 Lucy, Henry W. (Henry William), Sir, 1845-1924 Faces and Places etext25667 Shakespeare, William, 1564-1616 Hamlet: Drama em cinco Actos etext25690 Lima, Sebastião de Magalhães, 1850-1928 O Federalismo etext25764 Batten, John M. (John Mullin), 1837-1916 Reminiscences of Two Years in the United States Navy etext25774 Sullivan, Alan, 1868-1947 The Rapids etext25816 Collingwood, Harry, 1851-1922 With Airship and Submarine etext25850 Custine, Astolphe, marquis de, 1790-1857 La Russie en 1839, Volume II etext25867 Young, Francis Brett, 1884-1954 The Tragic Bride etext25916 Bindloss, Harold, 1866-1945 Prescott of Saskatchewan etext25940 De Quincey, Thomas, 1785-1859 The Posthumous Works of Thomas De Quincey, Vol. 2 etext25968 Hyde, Grant Milnor, 1889- Newspaper Reporting and Correspondence etext26004 The Philippine Islands, 1493-1898 — Volume 27 of 55 etext26026 Norris, Frank, 1870-1902 The Surrender of Santiago etext26038 Hamarneh, Sami Khalaf, 1925- Drawings and Pharmacy in Al-Zahrawi's 10th-Century Surgical Treatise etext26071 Weir, James, 1856-1906 Religion and Lust etext26232 White, Ramy Allison Sunny Boy in the Country etext26308 Ware, Henry, 1794-1843 Hints on Extemporaneous Preaching etext26351 Marguerite, Queen, consort of Henry IV, King of France, 1553-1615 La ruelle mal assortie etext26410 Piper, Anna W. Ford Peak's Island etext26566 Roys, Lyon Des La géométrie en vers techniques etext26654 Barrie, J. M. (James Matthew), 1860-1937 Peter and Wendy etext26660 Tolstoy, Leo, graf, 1828-1910 Plays etext26713 Blicq, A. Stanley Norman Ten Hundred etext26718 Harris, H. F. (Henry Fauntleroy), 1867-1926 Health on the Farm etext26773 Paavo-Kallio, Esa, 1858-1936 Honkakannel 1 etext26780 Sébillot, Paul, 1846-1918 Petite légende dorée de la Haute-Bretagne etext26810 Pigault-Lebrun, 1753-1835 L'amour et la raison etext26818 Charrière, Isabelle de, 1740-1805 Lettres écrites de Lausanne etext26827 Pressensé, E. de, Mme., 1826-1901 Petite Mère etext26853 Anstey, F., 1856-1934 Vice Versa etext26855 Carleton, H. B. Hard Guy etext26898 Various Notes and Queries, Number 78, April 26, 1851 etext26933 Powys, John Cowper, 1872-1963 Visions and Revisions etext26956 Sevcik, Al Alien Offer etext27027 Anonymous A Chronicle of London from 1089 to 1483 etext27084 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Noites de insomnia, offerecidas a quem não póde dormir. Nº5 (de 12) etext27228 Harley, Timothy Moon Lore etext27281 Marguerite, Queen, consort of Henry II, King of Navarre, 1492-1549 Deux farces inédites attribuées à la reine Marguerite de Navarre etext27427 Marmont, Auguste Frédéric Louis Viesse de, duc de Raguse, 1774-1852 Mémoires du maréchal Marmont, duc de Raguse (1/9) etext27429 Aristophanes, 446? BC-385? BC Εκκλησιάζουσαι etext27469 Anonymous Radio Shack TRS-80 Expansion Interface: Operator's Manual etext27521 Cullum, Ridgwell, 1867-1943 The Watchers of the Plains etext27531 Peabody, Andrew P. (Andrew Preston), 1811-1893 A Manual of Moral Philosophy etext27540 Vasco da Gama etext27542 Lima, Sebastião de Magalhães, 1850-1928 O Centenario de José Estevão etext27699 Various McClure's Magazine, Vol 31, No 2, June 1908 etext27736 Blasco Ibáñez, Vicente, 1867-1928 La condenada etext27755 Silberer, Herbert, 1882-1922 Probleme der Mystik und ihrer Symbolik. English etext27765 Ross, P. T. A Yeoman's Letters etext27977 Morris, Edward Ellis, 1843-1901 Austral English etext27989 Lagus, F. H. B., 1855-1936 Taavetti Livingstone, hänen elämänsä ja toimensa etext27991 etext28000 Obama, Barack, 1961- Inaugural Presidential Address etext28022 Norton, Brayton El Diablo etext28048 Mattox, Alan Shepherd of the Planets etext28108 Taylor, John, 1580-1653 The Pennyles Pilgrimage etext28227 Simonetta, Francesco, 1410-1480 Les règles de Cicco Simonetta etext28256 Jerram, S. J. (Samuel John) Thoughts on a Revelation etext28263 Barry, Fanny Soap-Bubble Stories etext28282 Egyptian Literature etext28291 Stables, Gordon, 1840-1910 Our Home in the Silver West etext28313 Various Harper's Young People, January 20, 1880 etext28343 Gummerus, K. J., 1840-1898 Rahvaan tytär, miljoonain hallitsija etext28459 Anstey, F., 1856-1934 In Brief Authority etext28467 Holley, Marietta, 1836-1926 Samantha at Coney Island etext28495 Hay, Ian, 1876-1952 Scally etext28502 Murray, W. H. H. (William Henry Harrison), 1840-1904 The Busted Ex-Texan and Other Stories etext28606 Lucian, of Samosata, 120-180 Λουκιανός - Άπαντα etext28633 Hapgood, Hutchins, 1868-1944 Paul Jones etext28634 Brydon, G. MacLaren (George MacLaren), 1875-1963 Religious Life of Virginia in the Seventeenth Century etext28685 Mühlbach, L. (Luise), 1814-1873 Kuuriruhtinas ja Raharuhtinas etext28703 Fanny, Aunt, 1822-1894 Aunt Fanny's Story-Book for Little Boys and Girls etext28718 Sade, Marquis de, 1740-1814 Les crimes de l'amour etext28719 Lambert, Thomas Wilson Fishing in British Columbia etext28737 MacDonald, George, 1824-1905 At the Back of the North Wind etext28744 Sidgwick, Frank Ballads of Robin Hood and other Outlaws etext28783 Mitton, G. E. (Geraldine Edith) Round the Wonderful World etext28873 Carruth, Hayden, 1862-1932 Track's End etext28900 Fernald, James Champlin, 1838-1918 English Synonyms and Antonyms etext28943 Penrose, Margaret Dorothy Dale - A Girl of Today etext28973 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States, From Interviews with Former Slaves etext29016 Various Harper's Young People, June 29, 1880 etext29054 Clarke, James Freeman, 1810-1888 Orthodoxy: Its Truths And Errors etext29092 Coleridge, Samuel Taylor, 1772-1834 The Complete Poetical Works of Samuel Taylor Coleridge etext29114 Aulnoy, Madame d' (Marie-Catherine), 1651?-1705 La cour et la ville de Madrid vers la fin du XVIIe siècle etext29238 Various Harper's Young People, October 26, 1880 etext29293 Wright, Sewell Peaslee, 1897-1970 Priestess of the Flame etext29316 Brady, Cyrus Townsend, 1861-1920 Sir Henry Morgan, Buccaneer etext29320 etext29324 Courtenay, John, 1738-1816 A Poetical Review of the Literary and Moral Character of the late Samuel Johnson (1786) etext29371 Collard, Wolter Louis Albert De 'handel in blanke slavinnen'. etext29427 Carmichael, Amy, 1867-1951 Lotus Buds etext29603 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Henry IV, Makers of History etext29604 Klapper, Paul, 1885-1952 College Teaching etext29630 Gorst, Harold Edward, 1868-1950 The Curse of Education etext29646 Evans, Larry, -1925 Once to Every Man etext29658 Whiting, Lilian, 1847-1942 Italy, the Magic Land etext29699 Jackson, Helen Hunt, 1830-1885 Hetty's Strange History etext29706 Daudet, Alphonse, 1840-1897 Cartas de mi molino etext29759 etext29760 Ray, Anna Chapin, 1865-1945 The Dominant Strain etext29786 Dunn, Byron A. (Byron Archibald), 1842-1926 Raiding with Morgan etext29808 Herrick, Robert, 1868-1938 The Man Who Wins etext29938 Various Blackwood's Edinburgh Magazine, Volume 59, No. 364, February 1846 etext29994 Fyfe, Horace Brown, 1918-1997 Irresistible Weapon etext30007 Blanchard, Amy Ella, 1856-1926 A Dear Little Girl's Thanksgiving Holidays etext30023 Howells, William Dean, 1837-1920 The Daughter of the Storage etext30057 Dingle, Aylward Edward, 1874- The Pirate Woman etext30108 Howells, William Dean, 1837-1920 The Quality of Mercy etext30116 Various Graham's Magazine Vol XXXIII No. 4 October 1848 etext30171 Lennep, J. van (Jacob), 1802-1868 Vertellingen van vroeger en later tijd etext30201 Erasmus, Desiderius, 1469-1536 In Praise of Folly etext30237 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 Geschichte von England seit der Thronbesteigung Jakob's des Zweiten. etext30347 La Gironière, Paul P. de, 1797-1862 Adventures in the Philippine Islands etext30413 Diniz, Almachio, 1880-1937 Mundanismos etext30453 Crump, Irving, 1887-1979 The Boy Scout Fire Fighters etext30470 MacMechan, Archibald, 1862-1933 The Winning of Popular Government etext30479 Gilchrist, Beth Bradford, 1879-1957 The Camerons of Highboro etext30501 Noyes, Alfred, 1880-1958 Collected Poems etext30569 Various Punch, or the London Charivari, Vol. 98, 19 April 1890 etext30628 Edschmid, Kasimir, 1890-1966 Das rasende Leben etext30650 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson, Volume XXI etext30728 Schmitz, James H., 1911-1981 Oneness etext30757 Bremer, Fredrika, 1801-1865 Perhe etext30783 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 Dictionnaire raisonné de l'architecture française du XIe au XVIe siècle (3/9) etext30786 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 Dictionnaire raisonné de l'architecture française du XIe au XVIe siècle (6/9) etext30870 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 11 (of 25) etext30875 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Maria Antoinette etext30880 Raby, Richard Pope Adrian IV etext30977 Marie-Henri Beyle La vie de Rossini, tome I etext31002 Garibaldi, Giuseppe, 1807-1882 I Mille etext31008 Reynolds, Mack, 1917-1983 Frigid Fracas etext31043 etext31099 Beyerlein, Franz, 1871-1949 Jena or Sedan? etext31123 Vandenburg, G. L. The Observers etext31124 Bagnold, Enid, 1889-1981 A Diary Without Dates etext31175 Webb, Robert G. A New Species of Frog (Genus Tomodactylus) from Western Mexico etext31281 Frick, Joseph 500 Rätsel und Rätselscherze für jung und alt etext31304 Lee, Vernon, 1856-1935 Euphorion etext31318 Geronimo Geronimo's Story of His Life etext31327 Mullen, Stanley Master of the Moondog etext31346 Pinto, Antonio da Silva Camillo Castello Branco etext31376 Edschmid, Kasimir, 1890-1966 Die sechs Mündungen etext31404 Vilaras, Ioannis, 1771-1823 Μύθοι etext31445 Karkavitsas, Andreas, 1865-1922 Διηγήματα του Γυλιού etext31475 Robiou, Félix Observations critiques sur l'archélogie dite préhistorique, spécialement en ce qui concerne la race celtique (1879) etext31548 etext31565 Balzac, Honoré de, 1799-1850 The Works Of Balzac etext31594 Potts, Eugenia Dunlap The Song of Lancaster, Kentucky etext31630 Todd, Mattie Phipps Hand-Loom Weaving etext31662 Zamacois, Eduardo, 1873-1972? Their Son; The Necklace etext31679 etext31724 López, Lucio V., 1848-1894 La gran aldea etext31732 Dennett, Mary The Sex Side of Life etext31769 McElroy, John, 1846-1929 Uncle Daniel's Story Of "Tom" Anderson etext31781 Shay, Frank The Bibliography of Walt Whitman etext31911 Vogt, Wolfgang Synthetische Theorie der Cliffordschen Parallelen und der Linearen Linienörter des Elliptischen Raumes etext31948 Williams, Robert Moore, 1907-1977 Thompson's Cat etext31950 Various Encyclopaedia Britannica, 11th Edition, Volume 6, Slice 7 etext31954 Guerber, Hélène Adeline Noorsche mythen uit de Edda's en de sagen etext31982 Salis, Harriet A. de Dressed Game and Poultry à la Mode etext31994 Allen, Grenville F. The Forests of Mount Rainier National Park etext32089 Mayer, Brantz, 1809-1879 Memoir of Jared Sparks, LL.D. etext32103 Finley, Martha, 1828-1909 Elsie in the South etext32121 Various The Scrap Book, Volume 1, No. 4 etext32139 Defoe, Daniel, 1661?-1731 An Appeal to Honour and Justice, Though It Be of His Worst Enemies. etext32163 Finley, Martha, 1828-1909 Elsie on the Hudson etext32170 Read, George H. The Last Cruise of the Saginaw etext32309 Various Practical High School Speller etext32330 Dahn, Felix, 1834-1912 A Struggle for Rome, v. 2 etext32346 Sheckley, Robert, 1928-2005 Keep Your Shape etext32386 Nirvanas, Pavlos, 1866-1937 Το συναξάρι του Παπά-Παρθένη etext32392 Bevan, William Notes on Agriculture in Cyprus and Its Products etext32515 Worde, Wynkyn de The Maner of the Tryumphe of Caleys and Bulleyn and The Noble Tryumphant Coronacyon of Quene Anne, Wyfe unto the Most Noble Kynge Henry VIII etext32557 Tucker, Josiah An Humble Address and Earnest Appeal to Those Respectable Personages in Great-Britain and Ireland, Who, by Their Great and Permanent Interest in Landed Property, Their Liberal Education, Elevated Rank, and Enlarged Views, Are the Ablest to Judge, and the Fittest to Decide, Whether a Connection with, Or a Separation from the Continental Colonies of America, Be Most for the National Advantage, and the Lasting Benefit of These Kingdoms etext32560 Lever, Charles James, 1806-1872 Gerald Fitzgerald etext32595 Lunt, Dolly Sumner A Woman's Wartime Journal etext31 Sophocles, 495? BC-406 BC Oedipus Trilogy etext40 NorthWestNet NorthWestNet NUSIRG Internet Guide etext52 Kerr, Stan The Square Root of 2 etext117 Beethoven, Ludwig van, 1770-1827 Symphony No. 5 in C minor Opus 67 etext210 James, Henry, 1843-1916 An International Episode etext252 etext320 Anonymous Vida De Lazarillo De Tormes Y De Sus Fortunas Y Adversidades etext366 Rinehart, Mary Roberts, 1876-1958 Bab: a Sub-Deb etext385 Grey, Zane, 1872-1939 The Redheaded Outfield etext419 Baum, L. Frank (Lyman Frank), 1856-1919 The Magic of Oz etext443 Field, Eugene, 1850-1895 The Love Affairs of a Bibliomaniac etext460 Burnett, Frances Hodgson, 1849-1924 The Dawn of a To-morrow etext466 Steinmetz, Andrew, 1816-1877 The Gaming Table: Its Votaries and Victims etext486 Baum, L. Frank (Lyman Frank), 1856-1919 Ozma of Oz etext517 Baum, L. Frank (Lyman Frank), 1856-1919 The Emerald City of Oz etext526 Conrad, Joseph, 1857-1924 Heart of Darkness etext610 Tennyson, Alfred Tennyson, Baron, 1809-1892 Idylls of the King etext661 etext684 U.S. Arms Control and Disarmament Agency Worldwide Effects of Nuclear War: Some Perspectives etext751 Holmes, Oliver Wendell, 1809-1894 Autocrat of the Breakfast Table etext786 Dickens, Charles, 1812-1870 Hard Times etext793 Talbot, Frederick Arthur Ambrose, 1880- Aeroplanes and Dirigibles of War etext829 Swift, Jonathan, 1667-1745 Gulliver's Travels etext832 McSpadden, J. Walker (Joseph Walker), 1874-1960 Robin Hood etext839 Stevenson, Robert Louis, 1850-1894 New Arabian Nights etext851 Rowlandson, Mary White, 1635-1710 Narrative of the Captivity and Restoration of Mrs. Mary Rowlandson etext886 Duff Gordon, Lucie, Lady, 1821-1869 Letters from the Cape etext888 etext910 London, Jack, 1876-1916 White Fang etext912 Dickens, Charles, 1812-1870 Mudfog and Other Sketches etext916 Dickens, Charles, 1812-1870 Sketches of Young Couples etext956 Baum, L. Frank (Lyman Frank), 1856-1919 Tik-Tok of Oz etext1016 Spinoza, Benedictus de, 1632-1677 Improvement of the Understanding etext1144 James, Henry, 1843-1916 In the Cage etext1177 Xenophon, 431 BC-350? BC The Memorabilia etext1231 Lawson, Henry, 1867-1922 On the Track etext1265 Strachey, Lytton, 1880-1932 Queen Victoria etext1283 Appleton, Victor [pseud.] Tom Swift and His Wizard Camera, or, Thrilling Adventures While Taking Moving Pictures etext1286 etext1436 Lobo, Jeronimo, 1596-1678 A Voyage to Abyssinia etext1480 Hughes, Thomas, 1822-1896 Tom Brown's School Days etext1487 Shaw, Bernard, 1856-1950 The Perfect Wagnerite, Commentary on the Ring etext1498 Lord, John, 1810-1894 Beacon Lights of History etext1544 Shakespeare, William, 1564-1616 The Passionate Pilgrim etext1573 Alger, Horatio, 1832-1899 Frank's Campaign, or, Farm and Camp etext1610 Anonymous The Bible, Douay-Rheims, Old Testament — Part 2 etext1733 Davis, Richard Harding, 1864-1916 The Red Cross Girl etext1736 Shakespeare (spurious and doubtful works), 1564-1616 Cromwell etext1759 MacGregor, Mary Esther Miller, 1876-1961 The Black-Bearded Barbarian : The life of George Leslie Mackay of Formosa etext1788 Shakespeare (spurious and doubtful works), 1564-1616 Sir John Oldcastle etext1800 Shakespeare, William, 1564-1616 The Winter's Tale etext1838 Lawson, John, -1712 A New Voyage to Carolina, containing the exact description and natural history of that country; together with the present state thereof; and a journal of a thousand miles, travel'd thro' several nations of Indians; giving a particular account of their customs, manners, etc. etext1882 Grey, Zane, 1872-1939 The Young Forester etext1899 Balzac, Honoré de, 1799-1850 The Village Rector etext1901 Long, William Joseph, 1866-1952 Secret of the Woods etext1912 Balzac, Honoré de, 1799-1850 The Muse of the Department etext1920 Kountz, William J., 1867-1899 Billy Baxter's Letters, By William J. Kountz etext1931 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Zeppelin's Passenger etext1977 Racine, Jean Baptiste, 1639-1699 Phèdre. English etext1985 Thackeray, William Makepeace, 1811-1863 Men's Wives etext2024 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Diary of a Pilgrimage etext2029 Ellis, J. Breckenridge (John Breckenridge), 1870-1956 Lahoma etext2030 King, L. W. (Leonard William), 1869-1919 Legends of Babylon and Egypt in relation to Hebrew tradition etext2044 Adams, Henry, 1838-1918 The Education of Henry Adams etext2061 Wilde, Oscar, 1854-1900 Shorter Prose Pieces etext2074 Burckhardt, Jacob, 1818-1897 The Civilisation of the Renaissance in Italy etext2088 Darwin, Charles, 1809-1882 Life and Letters of Charles Darwin — Volume 2 etext2133 Giles, Herbert Allen, 1845-1935 Historic China, and other sketches etext2159 James, Henry, 1843-1916 A Little Tour in France etext2164 Cooper, Susan Fenimore, 1813-1894 The Lumley Autograph etext25865 Wells, Carolyn, 1862-1942 Patty's Summer Days etext25943 Bailey, Arthur Scott, 1877-1949 The Tale of Chirpy Cricket etext2176 Reynolds, Joshua, Sir, 1723-1792 Seven Discourses on Art etext2186 Kipling, Rudyard, 1865-1936 Captains Courageous etext2250 Shakespeare, William, 1564-1616 Richard II etext2256 Shakespeare, William, 1564-1616 Henry VI etext2282 Cooper, James Fenimore, 1789-1851 Tales for Fifteen, or, Imagination and Heart etext2331 Rawlinson, George, 1812-1902 History of Phoenicia etext2352 Evans, Christopher, 1847-1917 Eurasia etext2368 Jerome, Jerome K. (Jerome Klapka), 1859-1927 The Angel and the Author, and others etext2374 Brame, Charlotte M., 1836-1884 Dora Thorne etext2459 Harte, Bret, 1836-1902 Trent's Trust, and Other Stories etext2485 Darwin, Charles, 1809-1882 The Movements and Habits of Climbing Plants etext2634 Huxley, Thomas Henry, 1825-1895 Evolution of Theology: an Anthropological Study etext2643 Arbuthnot, John, 1667-1735 History of John Bull etext2658 Lincoln, Abraham, 1809-1865 The Writings of Abraham Lincoln — Volume 6: 1862-1863 etext2671 Warner, Charles Dudley, 1829-1900 The Complete Writings of Charles Dudley Warner — Volume 1 etext2706 Zschokke, Heinrich, 1771-1848 The Bravo of Venice; a romance etext2737 Moldeven, Meyer, 1917- A Grandpa's Notebook etext2753 Dumas père, Alexandre, 1802-1870 Ali Pacha etext2758 Dumas père, Alexandre, 1802-1870 Marquise De Ganges etext2856 Haggard, Henry Rider, 1856-1925 Moon of Israel etext2926 Huxley, Thomas Henry, 1825-1895 On the Origin of Species: or, the Causes of the Phenomena of Organic Nature etext2946 Forster, E. M. (Edward Morgan), 1879-1970 Howards End etext2950 Fleming, May Agnes, 1840-1880 The Midnight Queen etext2992 Molière, 1622-1673 Le Bourgeois Gentilhomme etext3003 Blanchan, Neltje, 1865-1918 Wild Flowers etext3146 Hardy, Thomas, 1840-1928 Two on a Tower etext3252 Holmes, Oliver Wendell, 1809-1894 Complete Project Gutenberg Oliver Wendell Holmes, Sr. Works etext3308 Jenks, Albert Ernest, 1869-1953 The Bontoc Igorot etext3316 Moore, J. Hampton (Joseph Hampton), 1864-1950 How Members of Congress Are Bribed etext3321 Scott, Leroy, 1875-1929 Children of the Whirlwind etext3396 Howells, William Dean, 1837-1920 Literary Boston as I Knew It (from Literary Friends and Acquaintance) etext3399 Howells, William Dean, 1837-1920 Complete Project Gutenberg William Dean Howells Literature Essays etext3458 Eddy, Mary Baker, 1821-1910 Science and Health, with Key to the Scriptures etext3595 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 15 etext3608 Tressell, Robert, 1870-1911 The Ragged Trousered Philanthropists etext3674 Henty, G. A. (George Alfred), 1832-1902 The Dragon and the Raven etext3680 Edwards, Owen Morgan, Sir, 1858-1920 Cartrefi Cymru etext3702 etext3707 Henry, O., 1862-1910 The Trimmed Lamp, and other Stories of the Four Million etext3712 Trollope, Anthony, 1815-1882 Chateau of Prince Polignac etext3742 Paine, Thomas, 1737-1809 Writings of Thomas Paine — Volume 2 (1779-1792): the Rights of Man etext3858 Orleans, Charlotte-Elisabeth, duchesse d', 1652-1722 Memoirs of Louis XIV and His Court and of the Regency — Volume 04 etext3872 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 13 etext3946 Feuillet, Octave, 1821-1890 Monsieur De Camors — Complete etext3963 Bourget, Paul, 1852-1935 Cosmopolis — Volume 1 etext3969 Bentzon, Th. (Thérèse), 1840-1907 Jacqueline — Volume 2 etext4029 Follen, Eliza Lee Cabot, 1787-1860 True Stories about Dogs and Cats etext4034 Moore, George (George Augustus), 1852-1933 The Untilled Field etext4075 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Intrusion of Jimmy etext4082 Beach, Rex Ellingwood, 1877-1949 The Barrier etext4144 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 25: November/December 1663 etext4173 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 50: February 1666-67 etext4224 Spence, Catherine Helen, 1825-1910 Mr. Hogarth's Will etext4235 Yonge, Charlotte Mary, 1823-1901 Dynevor Terrace: or, the clue of life — Volume 1 etext4261 Galsworthy, John, 1867-1933 The Complete Essays of John Galsworthy etext4360 Corelli, Marie, 1855-1924 Vendetta: a story of one forgotten etext4361 Sherman, William T. (William Tecumseh), 1820-1891 Memoirs of Gen. William T. Sherman — Complete etext4398 Smith, Francis Hopkinson, 1838-1915 Tides of Barnegat etext4460 Meredith, George, 1828-1909 Beauchamp's Career — Complete etext4488 Meredith, George, 1828-1909 The Amazing Marriage — Complete etext4489 Meredith, George, 1828-1909 Celt and Saxon — Volume 1 etext4500 Meredith, George, 1828-1909 Complete Project Gutenberg Works of George Meredith etext4506 De Mille, James, 1833-1880 Lost in the Fog etext4541 Gissing, George, 1857-1903 The Crown of Life etext4576 Luo, Guanzhong, 1330?-1400? 粉妝樓41-50回 etext4577 Luo, Guanzhong, 1330?-1400? 粉妝樓51-60回 etext4591 Arthur, T. S. (Timothy Shay), 1809-1885 After a Shadow and Other Stories etext4683 Voltaire, 1694-1778 Socrates etext4706 Kuprin, A. I. (Aleksandr Ivanovich), 1870-1938 Yama: the pit etext4732 Wellhausen, Julius, 1844-1918 Prolegomena etext4782 Ibsen, Henrik, 1828-1906 When We Dead Awaken etext4840 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1585c etext4853 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1587c etext4856 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1588b etext4873 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1600 etext4895 Motley, John Lothrop, 1814-1877 Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years' War, 1618 etext4906 Baron, Michel, 1653-1729 The Lucky Man etext4917 Trollope, Anthony, 1815-1882 The Kellys and the O'Kellys etext4958 Adams, F. Colburn (Francis Colburn) Justice in the By-Ways, a Tale of Life etext5136 Stevens, Thomas, 1854-1935 Around the World on a Bicycle - Volume 1 etext5210 Crabbe, George, 1754-1832 The Borough etext5277 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 03 etext5352 Alcott, Louisa May, 1832-1888 Marjorie's Three Gifts etext5359 Churchill, Winston, 1871-1947 The Inside of the Cup — Volume 04 etext5372 Churchill, Winston, 1871-1947 Richard Carvel — Volume 08 etext5382 Churchill, Winston, 1871-1947 A Modern Chronicle — Complete etext5422 Thurston, Katherine Cecil, 1875-1911 The Masquerader etext5451 Ebers, Georg, 1837-1898 An Egyptian Princess — Volume 02 etext5463 Ebers, Georg, 1837-1898 The Sisters — Volume 3 etext5539 Ebers, Georg, 1837-1898 A Thorny Path — Volume 10 etext5560 Ebers, Georg, 1837-1898 Margery — Complete etext5583 Ebers, Georg, 1837-1898 The Burgomaster's Wife — Complete etext5737 London, Jack, 1876-1916 Smoke Bellew etext5794 Yeats, W. B. (William Butler), 1865-1939 Rosa Alchemica etext5802 Webb, Stephen Palfrey, 1804-1879 A Sketch of the Causes, Operations and Results of the San Francisco Vigilance Committee of 1856 etext5807 Sinclair, Upton, 1878-1968 Sylvia's Marriage etext5851 Sherman, William T. (William Tecumseh), 1820-1891 The Memoirs of General W. T. Sherman, Volume I., Part 2 etext5909 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 07 etext5926 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 23 etext5927 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 24 etext5950 Scott, Walter, Sir, 1771-1832 The Fortunes of Nigel etext6017 Beach, Rex Ellingwood, 1877-1949 The Silver Horde etext6049 Bunyan, John, 1628-1688 Works of John Bunyan — Complete etext6063 Hope, Laura Lee The Bobbsey Twins at School etext6068 Patchin, Frank Gee, 1861-1925 The Pony Rider Boys in Montana etext6092 Butler, Samuel, 1835-1902 The Fair Haven etext6131 Anonymous Wonders of Creation etext6133 Leblanc, Maurice, 1864-1941 The Extraordinary Adventures of Arsene Lupin, Gentleman-Burglar etext6161 Library of Congress. Copyright Office Copyright Renewals 1957 etext6194 Parker, Gilbert, 1862-1932 Mrs. Falchion, Complete etext6197 Parker, Gilbert, 1862-1932 Cumner's Son and Other South Sea Folk — Volume 03 etext6255 Parker, Gilbert, 1862-1932 There Is Sorrow on the Sea etext6306 Hubbard, Elbert, 1856-1915 Little Journeys to the Homes of the Great - Volume 06 etext6330 Myers, Anna Balmer Amanda — a Daughter of the Mennonites etext6336 Stephen, Karin The Misuse of Mind etext6394 Suetonius Tranquillus, Gaius, 75-160 The Lives of the Twelve Caesars, Volume 09: Vitellius etext6461 Alger, Horatio, 1832-1899 Facing the World etext6490 Scott, Walter, Sir, 1771-1832 The Betrothed etext6493 Steele, Robert, 1860-1944 Mediaeval Lore from Bartholomew Anglicus etext6505 Schiller, Friedrich, 1759-1805 Turandot, Prinzessin von China etext6507 Wake, William, 1657-1737 The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 1, Mary etext6525 Schiller, Friedrich, 1759-1805 Die Piccolomini etext6549 Schiller, Friedrich, 1759-1805 Wallensteins Tod etext6561 Barrus, Clara, 1864-1931 Our Friend John Burroughs etext6602 Sue, Eugène, 1804-1857 Mysteries of Paris — Volume 02 etext6616 Hichens, Robert Smythe, 1864-1950 December Love etext6620 Wells, H. G. (Herbert George), 1866-1946 The Time Machine etext6629 Marryat, Frederick, 1792-1848 Mr. Midshipman Easy etext6656 Gregory, Lady, 1852-1932 The Kiltartan Poetry Book; prose translations from the Irish etext6662 Kelly, Myra, 1876-1910 Little Citizens etext6723 Kleist, Heinrich von, 1777-1811 Prinz Friedrich von Homburg etext6735 Chase, Eliza B. (Eliza Brown) Over the Border: Acadia, the Home of "Evangeline" etext6753 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Psmith in the City etext6768 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Man Upstairs and Other Stories etext6787 Schiller, Friedrich, 1759-1805 The Death of Wallenstein etext6805 Green, Anna Katharine, 1846-1935 The Mill Mystery etext6822 Lessing, Gotthold Ephraim, 1729-1781 Lieder von Lessing etext6825 Champlain, Samuel de, 1567-1635 Voyages of Samuel De Champlain — Volume 03 etext6843 Mair, Charles, 1838-1927 Tecumseh : a Drama etext6849 Wallace, Lewis, 1827-1905 The Prince of India — Volume 02 etext6860 Abbott, Jane, 1881- Keineth etext6862 Colton, Arthur Willis The Belted Seas etext6878 Demosthenes, 384 BC-322 BC The Olynthiacs and the Phillippics of Demosthenes etext6896 McMaster, John Bach, 1852-1932 A Brief History of the United States etext6956 Roberts, Charles George Douglas, Sir, 1860-1943 In Divers Tones etext6959 Stroobant, Eugeen Edward, 1819-1889 Myne eerste vlerken etext7050 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Swoop! etext7079 Dumas père, Alexandre, 1802-1870 The Companions of Jehu etext7086 Tytler, Sarah, 1827-1914 Life of Her Most Gracious Majesty the Queen — Volume 2 etext7103 Twain, Mark, 1835-1910 Adventures of Huckleberry Finn, Chapters 16 to 20 etext7129 Slemons, J. Morris (Josiah Morris), 1876-1948 The Prospective Mother, a Handbook for Women During Pregnancy etext7188 etext7256 Henry, O., 1862-1910 The Gift of the Magi etext7273 Gan, Bao, fl. 317-322 搜神記 volume 18-20 etext7284 Yonge, Charlotte Mary, 1823-1901 The Chosen People etext7286 Song yu, 3rd cent. B.C. Han shi wai chuan etext7305 Sieveking, Giberne Memoir and Letters of Francis W. Newman etext7319 Holbach, Paul Henri Thiry, baron d', 1723-1789 Good Sense etext7328 Liu, Xiang, 77? BC-6? BC 說苑, Volume 5-8 etext7342 Zhong, Rong, fl. 502-519 詩品 etext7357 Gellibrand, Emma J. Cole etext7450 Scott, Ernest, 1867-1939 Terre Napoleón; a History of French Explorations and Projects in Australia etext7469 Eliot, George, 1819-1880 Daniel Deronda etext7550 Meredith, George, 1828-1909 Quotes and Images From The Works of George Meredith etext7621 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Pelham — Volume 07 etext7690 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Lucretia — Volume 06 etext7741 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Parisians — Volume 05 etext7746 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Parisians — Volume 10 etext7822 Haliburton, Thomas Chandler, 1796-1865 The Attaché; or, Sam Slick in England — Volume 02 etext7865 Ewing, Juliana Horatia Gatty, 1841-1885 Jackanapes, Daddy Darwin's Dovecot and Other Stories etext7867 Remington, Frederic, 1861-1909 Crooked Trails etext7889 Goethe, Johann Wolfgang von, 1749-1832 Erotica Romana etext7934 Shakespeare, William, 1564-1616 König Heinrich der vierte etext7963 Blackford, Mrs. (Martha), -1846 The Eskdale Herd-boy etext8107 Hakluyt, Richard, 1552-1616 The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 06 etext8121 Ibsen, Henrik, 1828-1906 Ghosts etext8134 Herrick, Robert, 1868-1938 Together etext8156 Pridham, Caroline Twilight and Dawn etext8170 Rabelais, François, 1483-1553 Gargantua and Pantagruel, Illustrated, Book 5 etext8190 Wodehouse, P. G. (Pelham Grenville), 1881-1975 A Wodehouse Miscellany etext8293 Anonymous The World English Bible (WEB): Revelation etext8303 The Bible, Douay-Rheims, Book 03: Leviticus etext8320 The Bible, Douay-Rheims, Book 20: Job etext8393 Moodie, Susanna, 1803-1885 Life in the Backwoods etext8422 Vaknin, Samuel, 1961- Moral Deliberations in Modern Cinema etext8432 Higginson, Thomas Wentworth, 1823-1911 Black Rebellion etext8441 Chambers, Robert W. (Robert William), 1865-1933 Between Friends etext8511 Zola, Émile, 1840-1902 The Three Cities Trilogy: Lourdes, Volume 1 etext8541 Houssaye, Arsène, 1815-1896 Les mains pleines de rose, pleines d'or et pleines de sang etext8545 Amiel, Henri Frédéric Amiel's Journal etext8604 Aeschylus, 525 BC-456 BC The House of Atreus etext8651 Henty, G. A. (George Alfred), 1832-1902 With Moore at Corunna etext8674 Lever, Charles James, 1806-1872 Charles O'Malley, The Irish Dragoon, Volume 2 etext8680 Taylor, Bayard, 1825-1878 The Story of Kennett etext8767 Burroughs, Edgar Rice, 1875-1950 Tarzan the Untamed etext8770 Pattison, Mark, 1813-1884 Milton etext8804 Flaubert, Gustave, 1821-1880 Drie Vertellingen etext8867 Tarkington, Booth, 1869-1946 The Magnificent Ambersons etext8897 Trollope, Anthony, 1815-1882 Nina Balatka etext8916 Storm, Theodor, 1817-1888 Bulemanns Haus etext8960 Headley, Joel Tyler, 1813-1897 The Great Riots of New York etext8967 Wells, H. G. (Herbert George), 1866-1946 The Door in the Wall and Other Stories etext8990 Verne, Jules, 1828-1905 The Underground City etext9018 Twain, Mark, 1835-1910 In Defense of Harriet Shelley etext9053 Anglade, Joseph Poésies du troubadour Peire Raimon de Toulouse etext9109 Tinsley, Jim The Project Gutenberg FAQ 2002 etext9213 Hawthorne, Nathaniel, 1804-1864 The Seven Vagabonds (From "Twice Told Tales") etext9222 Hawthorne, Nathaniel, 1804-1864 A Select Party etext9224 Hawthorne, Nathaniel, 1804-1864 Buds and Bird Voices (From "Mosses from an Old Manse") etext9235 Hawthorne, Nathaniel, 1804-1864 A Virtuoso's Collection (From "Mosses from an Old Manse") etext9271 Swift, Jonathan, 1667-1745 The Bickerstaff-Partridge Papers etext9273 Swift, Jonathan, 1667-1745 A Modest Proposal etext9281 Wharton, Edith, 1862-1937 The Hermit and the Wild Woman etext9283 Wharton, Edith, 1862-1937 Artemis to Actaeon and Other Verses etext9377 Braddon, M. E. (Mary Elizabeth), 1835-1915 London Pride etext9449 Holley, Marietta, 1836-1926 Samantha among the Brethren — Volume 7 etext9478 Youatt, William, 1776-1847 The Dog etext9560 Whittier, John Greenleaf, 1807-1892 Narrative and Legendary Poems: the Vaudois Teacher and Others etext9602 Mignet, M. (François-Auguste-Marie-Alexis), 1796-1884 History of the French Revolution from 1789 to 1814 etext9609 Fielding, Henry, 1707-1754 Joseph Andrews, Volume 2 etext9611 Fielding, Henry, 1707-1754 Joseph Andrews Vol 1 etext9618 Verne, Jules, 1828-1905 The Field of Ice etext9646 Horace, 65 BC-8 BC Odes and Epodes etext9697 Dickens, Charles, 1812-1870 Reprinted Pieces etext9725 Dickens, Charles, 1812-1870 Nicholas Nickleby etext9735 Dickens, Charles, 1812-1870 Somebody's Luggage etext9789 Randall, Homer Army Boys in the French Trenches etext9855 Judd, Mary Catherine Classic Myths etext9905 Norris, Frank, 1870-1902 A Deal in Wheat and Other Stories of the New and Old West etext9923 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Box with Broken Seals etext9928 Merrick, Leonard, 1864-1939 A Chair on the Boulevard etext9962 Various Punchinello, Volume 1, No. 08, May 21, 1870 etext9970 Blancké, Wilton Wallace, 1884-1949 The Dramatic Values in Plautus etext9975 Barnard, Charles Inman, 1850- Paris War Days etext9984 MacDonald, George, 1824-1905 The poetical works of George MacDonald in two volumes — Volume 2 etext10041 Cabell, James Branch, 1879-1958 The Rivet in Grandfather's Neck etext10050 Oliphant, Mrs. (Margaret), 1828-1897 A Little Pilgrim etext10059 Baum, L. Frank (Lyman Frank), 1856-1919 Aunt Jane's Nieces on Vacation etext10115 Earle, Alice Morse, 1851-1911 Two Centuries of Costume in America, Volume 1 (1620-1820) etext10132 Merriman, Henry Seton, 1862-1903 The Sowers etext10180 Flesch, Carl (Violin) Slavonic Dance, No. 1 etext10191 Stewart, Cal, 1856-1919 Fourth of July at Punkin Center etext10219 Wordsworth, William, 1770-1850 The Poetical Works of William Wordsworth — Volume 1 etext10227 Tolstoy's Plower Story etext10382 Howard, J. E. Memoir of William Watts McNair etext10415 National Promenade Band Nights of Gladness etext10434 Cooper, James Fenimore, 1789-1851 Wyandotte etext10500 McGuinn, Roger Heave Away etext10510 Clinton, William Jefferson, 1946- Inaugural Presidential Address etext10586 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Mike and Psmith etext10631 Halleck, Reuben Post, 1859-1936 Halleck's New English Literature etext10643 The World's Greatest Books — Volume 02 — Fiction etext10660 Cary, Henry Francis, 1772-1844 Lives of the English Poets etext10663 Various Punch, or the London Charivari, Volume 153, September 26, 1917 etext10715 Schopenhauer, Arthur, 1788-1860 The Essays of Arthur Schopenhauer; Counsels and Maxims etext10741 Schopenhauer, Arthur, 1788-1860 The Essays of Arthur Schopenhauer: the Wisdom of Life etext10761 Stevenson, Robert Louis, 1850-1894 Essays of Robert Louis Stevenson etext10803 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels — Volume 02 etext10884 Smiles, Samuel, 1812-1904 A Publisher and His Friends etext10942 White, Stewart Edward, 1873-1946 The Claim Jumpers etext10943 Futrelle, Jacques, 1875-1912 Elusive Isabel etext10954 Burnham, Margaret The Girl Aviators' Sky Cruise etext10968 Woodson, Carter Godwin, 1875-1950 A Century of Negro Migration etext10970 Murray, D. L., 1888-1962 Pragmatism etext10973 Stockton, Frank Richard, 1834-1902 The Late Mrs. Null etext11015 Picton, J. Allanson, 1832-1910 Pantheism, Its Story and Significance etext11037 etext11080 Cicero, Marcus Tullius, 106 BC-43 BC The Orations of Marcus Tullius Cicero, Volume 4 etext11087 Various The Atlantic Monthly, Volume 06, No. 35, September, 1860 etext11097 Fenn, George Manville, 1831-1909 Young Robin Hood etext11191 Jacobs, W. W. (William Wymark), 1863-1943 Captains All and Others etext11247 Doyle, Arthur Conan, Sir, 1859-1930 The Exploits of Brigadier Gerard etext11290 Geldart, Mrs. Thomas Emilie the Peacemaker etext11343 Various The Mirror of Literature, Amusement, and Instruction etext11380 Domela Nieuwenhuis, Ferdinand, 1846-1919 Le socialisme en danger etext11400 O'Brien, Frederick, 1869-1932 Mystic Isles of the South Seas. etext11430 Louwerse, Pieter, 1840-1909 Goede Vaêr Tromp etext11446 Various The Mirror of Literature, Amusement, and Instruction etext11466 Various Punch, or the London Charivari, Volume 153, December 19, 1917 etext11488 Dryden, John, 1631-1700 The Poetical Works of John Dryden, Volume 1 etext11541 Various The Mirror of Literature, Amusement, and Instruction etext11544 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext11561 Wright, Mabel Osgood, 1859-1934 People of the Whirlpool etext11604 Various The Atlantic Monthly, Volume 06, No. 33, July, 1860 etext11612 Various The Mirror of Literature, Amusement, and Instruction etext11666 Chesnutt, Charles W. (Charles Waddell), 1858-1932 The Conjure Woman etext11668 Curwood, James Oliver, 1878-1927 The Gold Hunters etext11755 Beethoven, Ludwig van, 1770-1827 String Quartet No. 10 in E flat major Opus 74 "Harp" etext11868 Various Punch, or the London Charivari, Volume 156, February 5, 1919 etext11961 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Lords of the Wild etext11967 Aho, Juhani, 1861-1921 Sanomalehtimiesajoiltani etext12005 Lautréamont, comte de, 1846-1870 Les Chants de Maldoror etext12090 Cibber, Theophilus, 1703-1758 The Lives of the Poets of Great Britain and Ireland (1753) Volume V. etext12152 Jacobs, W. W. (William Wymark), 1863-1943 Keeping Watch etext12161 Jacobs, W. W. (William Wymark), 1863-1943 Night Watches etext12169 Kalidasa Sakoontala or the Lost Ring etext12216 Ellms, Charles The Pirates Own Book etext12218 Greg, Walter W., 1875-1959 Pastoral Poetry and Pastoral Drama etext12227 Anonymous Child's First Picture Book etext12245 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Defendant etext12269 Bell, J. J. (John Joy), 1871-1934 Wee Macgreegor Enlists etext12291 Abbott, Jacob, 1803-1879 The Teacher etext12298 Muir, John, 1838-1914 The Grand Cañon of the Colorado etext12301 Towianski, Andrzej, 1799-1878 Banquet du 17 janvier 1841 etext12310 Various The Atlantic Monthly, Volume 09, No. 56, June, 1862 etext12463 A Compilation of the Messages and Papers of the Presidents etext12487 Blémont, Emile, 1839-1927 A quoi tient l'amour? etext12498 Various The Mirror of Literature, Amusement, and Instruction etext12552 Various The Mirror of Literature, Amusement, and Instruction etext12597 Various The Mirror of Literature, Amusement, and Instruction etext12635 The Philippine Islands, 1493-1803 — Volume 04 of 55 etext12670 Strachey, Lytton, 1880-1932 Landmarks in French Literature etext12685 Various The Mirror of Literature, Amusement, and Instruction etext12746 Swift, Jonathan, 1667-1745 The Prose Works of Jonathan Swift, D.D. — Volume 04 etext12791 Adams, Andy, 1859-1935 Wells Brothers etext12809 Gordon, S. D. (Samuel Dickey), 1859-1936 Quiet Talks about Jesus etext12837 Sand, George, 1804-1876 Cora etext12881 Hughes, Rupert, 1872-1956 Mrs. Budlong's Chrismas Presents etext12894 Sacred Books of the East etext12903 Goepp, Philip H., 1864-1936 Symphonies and Their Meaning; Third Series, Modern Symphonies etext12909 Jammes, Francis, 1868-1938 Romance of the Rabbit etext12985 Thompson, Slason, 1849-1935 Eugene Field, a Study in Heredity and Contradictions — Volume 2 etext13054 Whistler, Charles W. (Charles Watts), 1856-1913 A Thane of Wessex etext13063 Erkko, J. H. (Juhana Heikki), 1849-1906 Kootut teokset I: Runoelmia 1868-1885 etext13105 Fuller, Margaret, 1810-1850 Memoirs of Margaret Fuller Ossoli, Volume I etext13151 Arnold, Thomas, 1795-1842 The Christian Life etext13189 Méténier, Oscar, 1859-1913 Le gorille etext13234 Pansy, 1841-1930 Ester Ried etext13244 Various Punch Among the Planets etext13263 Sand, George, 1804-1876 Valvèdre etext13291 Brower, Harriette, 1869-1928 The World's Great Men of Music etext13305 Crake, A. D. (Augustine David), 1836-1890 Alfgar the Dane or the Second Chronicle of Aescendune etext13364 Arnold, Matthew, 1822-1888 Matthew Arnold's Sohrab and Rustum and Other Poems etext13374 Sand, George, 1804-1876 Consuelo, Tome 3 (1861) etext13396 Van Schaick, George, 1861-1924 Sweetapple Cove etext13398 Smith, William Hawley The Evolution of Dodd etext13427 Various Notes and Queries, Number 45, September 7, 1850 etext13429 Hellaakoski, Aaro, 1893-1952 Nimettömiä lauluja etext13481 Church, Alfred John, 1829-1912 Roman life in the days of Cicero etext13485 Reynolds, Frances, 1729-1807 An Enquiry Concerning the Principles of Taste, and of the Origin of our Ideas of Beauty, etc. etext13506 Wiggin, Kate Douglas Smith, 1856-1923 The Story of Patsy etext13586 Rogers, Samuel, 1763-1855 Poems etext13608 Balmes, Jaime Luciano, 1810-1848 Filosofía Fundamental, Tomo I etext13665 Roosevelt, Kermit, 1889-1943 War in the Garden of Eden etext13675 Anonymous Goody Two-Shoes etext13735 Doyle, Arthur Conan, Sir, 1859-1930 La grande ombre etext13797 Various International Weekly Miscellany - Volume 1, No. 9, August 26, 1850 etext13850 Aho, Juhani, 1861-1921 Panu etext13851 Zola, Émile, 1840-1902 The Downfall etext13857 Dumas père, Alexandre, 1802-1870 La reine Margot - Tome II etext13901 Dieulafoy, Jane, 1851-1916 Perzië, Chaldea en Susiane etext13930 Roosevelt, Theodore, 1858-1919 African and European Addresses etext13966 Various Punch, or the London Charivari, Volume 152, January 17, 1917 etext13967 McCutcheon, George Barr, 1866-1928 Nedra etext14057 Various Punch, or the London Charivari, Volume 101, October 24, 1891 etext14124 Various The Mirror of Literature, Amusement, and Instruction etext14137 Cleveland, Grover, 1837-1908 A Compilation of the Messages and Papers of the Presidents etext14226 Seton, Ernest Thompson, 1860-1946 Lobo, Rag and Vixen etext14242 Major, Charles, 1856-1913 The Touchstone of Fortune etext14276 Howells, William Dean, 1837-1920 Italian Journeys etext14442 Defoe, Daniel, 1661?-1731 Memoirs of Major Alexander Ramkins (1718) etext14502 Various Chambers's Edinburgh Journal, No. 419 etext14505 Päivärinta, Pietari, 1827-1913 Elämäni etext14516 Various Punch, or the London Charivari, Volume 152, January 31, 1917 etext14566 Finley, Martha, 1828-1909 Elsie's Motherhood etext14585 ERPANET ERPANET Case Study: Project Gutenberg etext14600 Wolfensberger, Arnold Theory of Silk Weaving etext14604 Flom, George Tobias Scandinavian influence on Southern Lowland Scotch etext14611 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels — Volume 15 etext14622 As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1873-10/11) etext14684 Dunne, Finley Peter, 1867-1936 Mr. Dooley Says etext14708 Craik, Dinah Maria Mulock, 1826-1887 The Laurel Bush etext14738 Willman-Eloranta, Elviira, 1875-1927 Kellarikerroksessa etext14858 Comstock, Harriet T. (Harriet Theresa), 1860- The Man Thou Gavest etext14861 Leino, Eino, 1878-1926 Kivesjärveläiset; Simo Hurtta; Bellerophon etext14942 Various Punch, or the London Charivari, Volume 1, December 25, 1841 etext14990 Various Scientific American Supplement No. 819, September 12, 1891 etext15013 Dell, Ethel M. (Ethel May), 1881-1939 The Keeper of the Door etext15041 The Negro Problem etext15063 Bennett, Arnold, 1867-1931 Your United States etext15160 Van Warmelo, Dietlof, 1872-1966 On Commando etext15198 Burke, Edmund, 1729-1797 The Works of the Right Honourable Edmund Burke, Vol. 02 (of 12) etext15332 Various Punch, or the London Charivari, Volume 103, September 17, 1892 etext15357 Pinero, Arthur Wing, Sir, 1855-1934 The Notorious Mrs. Ebbsmith etext15404 Various The Great Round World and What Is Going On In It, Vol. 1, No. 19, March 18, 1897 etext15455 Haywood, Eliza Fowler, 1693-1756 Life's Progress Through The Passions etext15516 Griffis, William Elliot, 1843-1928 The Religions of Japan etext15622 Brown, William N. Handbook on Japanning: 2nd Edition etext15665 Bennett, Charles E. (Charles Edwin), 1858-1921 New Latin Grammar etext15674 Pina, Rui de, 1440-1521 Chronica d'El-Rei D. Affonso III etext15706 Heath, Sidney, 1872- Winchester etext15711 Flaubert, Gustave, 1821-1880 Frau Bovary etext15714 Gates, Eleanor, 1875-1951 The Poor Little Rich Girl etext15752 etext15784 Newton, Isaac, Sir, 1642-1727 The Chronology of Ancient Kingdoms Amended etext15800 Betts, George Herbert, 1868-1934 How to Teach Religion etext15815 Toulet, Paul Jean, 1867-1920 Les tendres ménages etext15864 Kielland, Alexander Lange, 1849-1906 Garman and Worse etext15875 Fleming, May Agnes, 1840-1880 The Unseen Bridgegroom etext15914 Various The American Missionary — Volume 43, No. 11, November, 1889 etext15939 Colignatus, Thomas Definition & Reality in the General Theory of Political Economy etext15954 Judson, Clara Ingram, 1879-1950 Mary Jane—Her Visit etext15959 Hellström, Gustaf Dagdrömmar etext15969 Kiljander, Robert, 1848-1924 Mestarin nuuskarasia etext16011 Carleton, William, 1794-1869 The Emigrants Of Ahadarra etext16038 Various Great Epochs in American History, Vol. II etext16099 Balfour, Frederic H. Austin and His Friends etext16110 Cervantes Saavedra, Miguel de, 1547-1616 Viage al Parnaso etext16115 Richmond, Grace S. (Grace Smith), 1866-1959 Red Pepper's Patients etext16158 Lynch, John R. The Facts of Reconstruction etext16163 Rawlinson, George, 1812-1902 The Seven Great Monarchies Of The Ancient Eastern World, Vol 3. (of 7): Media etext16169 Marlowe, Christopher, 1564-1593 The Tragedy of Dido Queene of Carthage etext16232 Sutton and Sons The Culture of Vegetables and Flowers From Seeds and Roots etext16276 Graham, Isabella The Power of Faith etext16310 Davis, Richard Harding, 1864-1916 Cinderella etext16326 Leino, Kasimir, 1866-1919 Väljemmillä vesillä etext16333 Bremer, Fredrika, 1801-1865 Koti etext16340 Bierce, Ambrose, 1842-1914? A Cynic Looks at Life etext16355 Voigt, Frederick Augustus, 1892-1957 Combed Out etext16376 Browning, Robert, 1812-1889 Browning's Shorter Poems etext16387 Goldsmith, Oliver, 1730-1774 Pinnock's improved edition of Dr. Goldsmith's History of Rome etext16440 Campbell, J. L. The Water Supply of the El Paso and Southwestern Railway from Carrizozo to Santa Rosa, N. Mex. etext16469 Cibber, Theophilus, 1703-1758 The Lives of the Poets of Great Britain and Ireland (1753) etext16516 etext16528 Roberts, Frederick Sleigh Forty-one years in India etext16581 Renan, Ernest, 1823-1892 The Life of Jesus etext16595 Lightwood, James T. Charles Dickens and Music etext16645 Robertson, Frederick William, 1816-1853 Sermons Preached at Brighton etext16727 Various Punch, or the London Charivari, Volume 159, August 25th, 1920 etext16737 Clark, Walter John International Language etext16811 Ridley, William, 1819-1878 Gurre Kamilaroi, etext16852 Zola, Émile, 1840-1902 Au bonheur des dames etext16883 Corbière, Tristan, 1845-1875 Les amours jaunes etext16894 Harris, Frank, 1856-1931 Oscar Wilde, His Life and Confessions etext16940 Bahá'u'lláh, 1817-1892 Gleanings from the Writings of Bahá'u'lláh etext16941 Bahá'u'lláh, 1817-1892 The Hidden Words of Bahá'u'lláh etext16996 etext17036 Herculano, Alexandre, 1810-1877 Opúsculos por Alexandre Herculano - Tomo 07 etext17062 Tupper, Martin Farquhar, 1810-1889 The Crock of Gold etext17083 Anonymous Adventures of a Sixpence in Guernsey by A Native etext17149 Slosson, Edwin E., 1865-1929 Creative Chemistry etext17154 Delany, Martin Robison, 1812-1885 The Condition, Elevation, Emigration, and Destiny of the Colored People of the United States etext17187 Hurston, Zora Neale, 1901?-1960 Three Plays etext17222 Moon, James H., 1830- Water Baptism etext17282 Crane, Walter, 1845-1915 An Alphabet of Old Friends etext17299 Tatlow, Joseph, 1851-1929 Fifty Years of Railway Life in England, Scotland and Ireland etext17334 Hilton, Warren, 1874- Initiative Psychic Energy etext17375 Maupassant, Guy de, 1850-1893 The Works of Guy de Maupassant, Volume 2 etext17414 Springer, Norman, 1888-1974 The Blood Ship etext17426 Baum, L. Frank (Lyman Frank), 1856-1919 The Marvelous Land Of Oz etext17453 Barrett, Michael, 1848- Up in Ardmuirland etext17463 Ferris, George T. (George Titus), 1840- Great Violinists And Pianists etext17468 Anonymous Relikwieën uit onzen Heldentijd etext17552 Tolstoy, Leo, graf, 1828-1910 Anna Karénine, Tome I etext17594 Balch, William Stevens, 1806-1887 Lectures on Language etext17613 etext17619 Le Gallienne, Richard, 1866-1947 A Jongleur Strayed etext17629 Various Punch, or the London Charivari, Volume 152, June 20, 1917 etext17633 Dearborn, R. F. Saratoga and How to See It etext17684 Moore, Thomas, 1779-1852 Life of Lord Byron, Vol. 1 etext17695 Eberhard, Wolfram, 1909-1989 A history of China., [3d ed. rev. and enl.] etext17785 etext17807 Garis, Howard Roger, 1873-1962 Uncle Wiggily in the Woods etext17829 Hilton, Warren, 1874- The Trained Memory etext17840 Hureau, Émile, 1877-1922 De la télépathie etext17847 Guerrini, Olindo, 1845-1916 Rime di Argia Sbolenfi etext17894 Hotman, François, 1524-1590 Franco-Gallia etext17936 Hensley, Sophia Margaret, 1866-1913 Poems etext17958 Carr, Terry Gene, 1937-1987 Warlord of Kor etext18054 Dougall, Lily, 1858-1923 The Zeit-Geist etext18067 Lermina, Jules, 1839-1915 L'effrayante aventure etext18129 Mountevans, Edward Ratcliffe Garth Russell Evans, baron, 1880-1957 South with Scott etext18213 The Story of the Great War, Volume III (of 12) etext18277 Kleiser, Grenville, 1868-1953 The Training of a Public Speaker etext18301 Erkko, J. H. (Juhana Heikki), 1849-1906 Kootut teokset II: Runoelmia 1886-1906 etext18307 Steel, Flora Annie, 1847-1929 The Adventures of Akbar etext18368 Aulnoy, Madame d' (Marie-Catherine), 1651?-1705 Contes, Tome II etext18407 Gautier, Judith, 1845-1917 En chine etext18439 Wright, John Dutton, 1866-1952 What the Mother of a Deaf Child Ought to Know etext18463 Brentano, Clemens, 1778-1842 Romanzen vom Rosenkranz etext18517 etext18589 Massachusetts Homoeopathic Medical Society The Act Of Incorporation And The By-Laws Of The Massachusetts Homeopathic Medical Society etext18591 Marshall, John, 1755-1835 The Life of George Washington, Vol. 1 etext18595 Marshall, John, 1755-1835 The Life of George Washington, Vol. 5 etext18596 Anonymous Ride A Cock-Horse To Banbury Cross & A Farmer Went Trotting Upon His Grey Mare etext18610 Mercier de Compiègne, Claude-François-Xavier, 1763-1800 Éloge du sein des femmes etext18687 Warner, Susan, 1819-1885 Daisy etext18714 Glass, Montague, 1877-1934 Abe and Mawruss etext18725 Gunnison, Charles A., 1861-1897 A Napa Christchild; and Benicia's Letters etext18731 Behnsch, Ottomar, 1813-1869 Geschichte der Englischen Sprache und Literatur etext18767 Woodworth, Francis C. (Francis Channing), 1812-1859 Stories about Animals: with Pictures to Match etext18833 Henty, G. A. (George Alfred), 1832-1902 With Clive in India etext18834 Cholmondeley, Mary, 1859-1925 Prisoners etext18869 Powell, John Wesley, 1834-1902 On Limitations To The Use Of Some Anthropologic Data etext18889 Saint-Victour, Fenis de Mémoire sur la réunion des trois services, des postes aux chevaux, de la poste aux lettres, et des messageries, sous une seule administration etext18920 etext18932 New Zealand. Committee of Inquiry into Mental Defectives and Sexual Offenders Mental Defectives and Sexual Offenders etext18943 Fitzhugh, Percy Keese, 1876-1950 Tom Slade at Black Lake etext18960 etext18994 Kiljander, Robert, 1848-1924 Amalia ystävämme etext19054 Malot, Hector, 1830-1907 Alleen op de Wereld etext19089 Buck, Charles Neville, 1879-1930 A Pagan of the Hills etext19141 Serviss, Garrett Putman, 1851-1929 Edison's Conquest of Mars etext19147 Green, Anna Katharine, 1846-1935 The House in the Mist etext19165 Evarts, William Maxwell, 1818-1901 Eulogy on Chief-Justice Chase etext19228 Shakespeare, William, 1564-1616 Périclès etext19237 `Abdu'l-Bahá, 1844-1921 The Secret of Divine Civilization etext19251 Shoghi Effendi, 1897-1957 Arohanui: Letters from Shoghi Effendi to New Zealand etext19329 O'Mahony, John, 1816-1877 The Sunny Side of Ireland etext19354 Goetschius, Percy, 1853-1943 Lessons in Music Form etext19390 May, Carrie L. Baby Pitcher's Trials etext19435 etext19502 Standish, Burt L., 1866-1945 Frank Merriwell's Chums etext19552 etext19556 Krohn, Julius, 1835-1888 Kalevala katsottuna kaunotieteen kannalta etext19578 Masefield, John, 1878-1967 A Ballad of John Silver etext19628 McGee, W. J. (William John), 1853-1912 The Siouan Indians etext19644 Ewing, Juliana Horatia Gatty, 1841-1885 Mary's Meadow etext19666 Eddy, Mary Baker, 1821-1910 Rudimental Divine Science etext19670 Nervander, Emil, 1840-1914 "Pikku poikani" etext19765 Laut, Agnes C. (Agnes Christina), 1871-1936 Vikings of the Pacific etext19786 De Koran etext19800 Sharpe, Reginald R. (Reginald Robinson), 1848- London and the Kingdom - Volume I etext19879 English, George Bethune, 1787-1828 Five Pebbles from the Brook etext19949 Various Autographs for Freedom, Volume 2 (of 2) (1854) etext19958 Henderson, W. J. (William James), 1855-1937 Some Forerunners of Italian Opera etext19970 etext19972 Ségur, Philippe-Paul, comte de, 1780-1873 Histoire de Napoléon et de la Grande-Armée pendant l'année 1812 etext20042 Anonymous Relação do formidavel, e lastimoso terremoto succedido no Reino de Valença etext20126 McNeil, Everett, 1862-1929 The Cave of Gold etext20147 Goodwin, Harold L. (Harold Leland), 1914-1990 Rip Foster Rides the Gray Planet etext20148 Koskenniemi, V. A., 1885-1962 Hannu; Nuori Anssi; Sydän ja Kuolema etext20155 Cooper, Courtney Ryley, 1886-1940 The White Desert etext20227 Heine, Heinrich, 1797-1856 Runoelmia etext20236 Freeley, Mary Belle Fair to Look Upon etext20247 Garland, Hamlin, 1860-1940 Wayside Courtships etext20267 Mansfield, Katherine, 1888-1923 At The Bay etext20272 Aho, Juhani, 1861-1921 Helsinkiin etext20326 Hope, Laura Lee Six Little Bunkers at Uncle Fred's etext20363 Various Continental Monthly , Vol. 5, No. 6, June, 1864 etext20379 Müller, George, 1805-1898 A Narrative of Some of the Lord's Dealings with George Müller etext20390 Campbell, Douglas Houghton, 1859-1953 Elements of Structural and Systematic Botany etext20511 The Little Mother Goose etext20523 Gardner, Ernest Arthur Religion and Art in Ancient Greece etext20528 Jefferies, Richard, 1848-1887 Round About a Great Estate etext20552 Various Roumanian Fairy Tales etext20566 Rogers, Will, 1879-1935 Rogers-isms, the Cowboy Philosopher on the Peace Conference etext20567 Bennett, Virginia The Pigeon Tale etext20586 Various In The Yule-Log Glow—Book 3 etext20647 Various The Continental Monthly, Vol. 2, No 3, September, 1862 etext20725 Leal, José da Silva Mendes, 1818-1886 Os Primeiros Amores de Bocage etext20727 Piper, H. Beam, 1904-1964 The Cosmic Computer etext20739 Fontenay, Charles Louis, 1917-2007 Rebels of the Red Planet etext20780 Spyri, Johanna, 1827-1901 Heimatlos etext20782 Smith, E. E. (Edward Elmer), 1890-1965 Triplanetary etext20844 Morley, John, 1838-1923 Critical Miscellanies (Vol. 3 of 3) etext20879 Morley, John, 1838-1923 Critical Miscellanies, Vol. I etext20958 Rait, Robert S. Life in the Medieval University etext20995 Kay, Ross Fighting in France etext20997 Ouida, 1839-1908 The Nürnberg Stove etext21112 Burgon, John William, 1813-1888 The Causes of the Corruption of the Traditional Text of the Holy Gospels etext21166 Bennett, Henry Holcomb, 1863-1924 The Flag Goes By etext21185 Büchner, Georg, 1813-1837 Woyzeck etext21189 Park, Marmaduke Aesop, in Rhyme etext21212 Vasari, Giorgio, 1511-1574 The Lives of the Painters, Sculptors & Architects, Volume 1 (of 8) etext21218 Mitton, G. E. (Geraldine Edith) Mayfair, Belgravia, and Bayswater etext21290 Fonseca, Faustino da, 1871-1918 Os Bravos do Mindello etext21297 Fenn, George Manville, 1831-1909 Cutlass and Cudgel etext21307 Fenn, George Manville, 1831-1909 Fire Island etext21311 Fenn, George Manville, 1831-1909 Gil the Gunner etext21329 Daudet, Alphonse, 1840-1897 The Nabob, Vol. 2 (of 2) etext21338 Nash, Thomas, 1567-1601 The Vnfortunate Traveller, or The Life Of Jack Wilton etext21358 Fenn, George Manville, 1831-1909 The Ocean Cat's Paw etext21369 Anonymous Ring o' Roses: A Nursery Rhyme Picture Book etext21443 Greene, Sarah P. McLean, 1856-1935 Vesty of the Basins etext21460 Kingston, William Henry Giles, 1814-1880 The Ferryman of Brill etext21578 Howard, Edward Rattlin the Reefer etext21601 Goldsmith, Oliver, 1730-1774 The Vicar of Wakefield etext21652 Ellis, Edward Sylvester, 1840-1916 Klondike Nuggets etext21691 Ballantyne, R. M. (Robert Michael), 1825-1894 The Pioneers etext21719 Ballantyne, R. M. (Robert Michael), 1825-1894 Blue Lights etext21768 Doyle, Arthur Conan, Sir, 1859-1930 A Desert Drama etext21784 Anderson, Elizabeth The Goblins' Christmas etext21905 Reggio, Isaac Samuele A Guide for the Religious Instruction of Jewish Youth etext21949 Lee, Minnie Mary Hubert's Wife etext22027 Jääskeläinen, Kaapro, 1862-1932 Iloisia juttuja IV etext22053 Cutler, U. Waldo Stories of King Arthur and His Knights etext22120 Chaucer, Geoffrey, 1343?-1400 Chaucer's Works, Volume 4 (of 7) — The Canterbury Tales etext22225 Baum, L. Frank (Lyman Frank), 1856-1919 Mary Louise in the Country etext22259 Various The Legacy of Greece etext22285 Stevens, Isaac Newton, 1858-1920 An American Suffragette etext22362 Chesterton, G. K. (Gilbert Keith), 1874-1936 Appreciations and Criticisms of the Works of Charles Dickens etext22377 Abbott, Jacob, 1803-1879 Rollo in Switzerland etext22473 Pennell, T. L. (Theodore Leighton), 1867-1912 Onder de wilde stammen op de grenzen van Afghanistan etext22542 Talmage, James Edward, 1862-1933 Jesus the Christ etext22544 Brackett, Leigh Douglass, 1915-1978 A World is Born etext22550 Strickland, W. P. (William Peter), 1809-1884 Old Mackinaw etext22552 Michelet, Jules, 1798-1874 Histoire de France 1305-1364 (Volume 4 of 19) etext22563 Various Punch, or the London Charivari, Vol. 146, January 28, 1914 etext22615 Negreiros, José Sobral de Almada, 1893-1970 A Scena do Odio etext22623 Samachson, Joseph, 1906-1980 Divinity etext22651 Leacock, Stephen, 1869-1944 The Unsolved Riddle of Social Justice etext22666 Day, Holman, 1865-1935 The Rainy Day Railroad War etext22739 Panchadasi, Swami The Human Aura etext22762 Baird, Henry Martyn, 1832-1906 History of the Rise of the Huguenots etext22782 Carus, Paul, 1852-1919 The Buddha etext22787 Alcott, Louisa May, 1832-1888 Little Men etext22792 etext22827 Myers, Anna Balmer Patchwork etext22838 Mitford, Mary Russell, 1787-1855 Country Lodgings etext22869 Nourse, Alan Edward, 1928-1992 The Dark Door etext22877 Borrow, George Henry, 1803-1881 Lavengro etext22888 Greenaway, Kate, 1846-1901 Under the Window etext22899 Rodó, José Enrique, 1872-1917 Ariel etext22916 Code, Mary L. Left at Home etext22930 Anonymous The Epistle to the Hebrews etext22966 Harrison, Harry, 1925- Toy Shop etext22990 Anonymous Historical Sketch of the Cathedral of Strasburg etext23027 Various Notes and Queries, Number 69, February 22, 1851 etext23042 Shakespeare, William, 1564-1616 The Tempest etext23043 Shakespeare, William, 1564-1616 Two Gentlemen of Verona etext23137 Marryat, Frederick, 1792-1848 Diary in America, Series One etext23163 Kipling, Rudyard, 1865-1936 The Eyes of Asia etext23174 Boyesen, Hjalmar Hjorth, 1848-1895 A Good-For-Nothing etext23185 Urban, Helen M. The Glory of Ippling etext23221 Niese, Charlotte, 1854-1935 The Story Of The Little Mamsell etext23231 Lee, Hannah Farnham Sawyer, 1780-1865 Rich Enough etext23243 Ettlinger, Karl, 1882-1939 Mister Galgenstrick etext23244 Lockhart, Caroline, 1870-1962 The Dude Wrangler etext23266 Robertson, Margaret M. (Margaret Murray), 1821-1897 Janet's Love and Service etext23272 Ballantyne, R. M. (Robert Michael), 1825-1894 The Story of the Rock etext23307 Anonymous Paulina and her Pets etext23315 Anonymous Young Soldier etext23374 Fenn, George Manville, 1831-1909 The Dingo Boys etext23471 etext23488 Thomson, James Pringle The Jacobite Rebellions (1689-1746) etext23546 Gilson, Jewett C. (Jewett Castello), 1844-1926 Wealth of the World's Waste Places and Oceania etext23562 Holden, Edward Singleton, 1846-1914 Studies in Central American Picture-Writing etext23602 Kingston, William Henry Giles, 1814-1880 Won from the Waves etext23610 Prévost, Abbé, 1697-1763 Voyages du capitaine Robert Lade en differentes parties de l'Afrique, de l'Asie et de l'Amérique etext23696 Smith, Francis Hopkinson, 1838-1915 A Gentleman's Gentleman etext23751 Various Southern Stories etext23756 Droysen, Johann Gustav, 1808-1884 Geschichte Alexanders des Grossen etext23816 Zhu, Yongchun, 1617-1689 朱子治家格言 etext23837 Ibsen, Henrik, 1828-1906 Eta Eyolf etext23898 Irving, Washington, 1783-1859 Old Christmas etext24014 Ray, Anna Chapin, 1865-1945 In Blue Creek Cañon etext24043 Rilke, Rainer Maria, 1875-1926 Die Weise von Liebe und Tod des Cornets Christoph Rilke etext24071 Chambers, Robert W. (Robert William), 1865-1933 Special Messenger etext24123 La Blanchère, Henri de, 1821-1880 Les derniers Peaux-Rouges etext24171 The Wedding Day etext24187 Fyfe, Horace Brown, 1918-1997 A Transmutation of Muddles etext24206 Skowronnek, Richard, 1862-1932 Sturmzeichen etext24210 Martineau, Harriet, 1802-1876 Deerbrook etext24233 Qingxidaoren, 17th cent. 東度記 etext24235 Johnston, Annie F. (Annie Fellows), 1863-1931 Mary Ware's Promised Land etext24249 Heine, Heinrich, 1797-1856 Die Harzreise etext24287 Lockhart, Caroline, 1870-1962 The Man from the Bitter Roots etext24296 Redmond-Howard, L. G., (Louis George), 1884- Six days of the Irish Republic etext24331 Riley, James Whitcomb, 1849-1916 An Old Sweetheart of Mine etext24355 Ibsen, Henrik, 1828-1906 Rosmersholm etext24403 etext24410 Paine, Albert Bigelow, 1861-1937 Hollow Tree Nights and Days etext24429 Freud, Sigmund, 1856-1939 Zur Psychopathologie des Alltagslebens etext24458 Morrow, Honoré, 1880-1940 Still Jim etext24462 Fonseca, Augusto de Oliveira Cardoso, 1842-1917 O desastre de Lisboa em 1755: poesia etext24467 Lennep, J. van (Jacob), 1802-1868 De Pleegzoon etext24496 Adams, H. S. (Henry Sherman), 1864- Making A Rock Garden etext24597 Blain, Mary E., 1872- Games For All Occasions etext24634 Hersey, Charles Reminiscences of the Military Life and Sufferings of Col. Timothy Bigelow, Commander of the Fifteenth Regiment of the Massachusetts Line in the Continental Army, during the War of the Revolution etext24763 Hauff, Wilhelm, 1802-1827 Die Sängerin. Esperanto etext24781 Baerlein, Henry, 1875-1960 The Birth of Yugoslavia, Volume 2 etext24810 Picton, Harold W. (Harold Williams), 1867- The Better Germany in War Time etext24872 Bailey, Arthur Scott, 1877-1949 The Tale of Master Meadow Mouse etext24902 Various The International Monthly, Volume 2, No. 4, March, 1851 etext24936 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 The Thunders of Silence etext24956 Anonymous Live to be Useful etext24999 Becke, Louis, 1855-1913 The Strange Adventure Of James Shervinton etext25022 Collins, Daniel Narrative of the shipwreck of the brig Betsey, of Wiscasset, Maine, and murder of five of her crew, by pirates, etext25059 Becke, Louis, 1855-1913 In The Far North etext17031 Lang, Andrew, 1844-1912 The Disentanglers etext25063 Gay, John, 1685-1732 The Beggar's Opera etext25081 Cooke, Marjorie Benton, 1876-1920 The Cricket etext25094 Livingston, Herbert B. Daughters of Doom etext25155 Kempe, A. B. (Alfred Bray), 1849-1922 How to Draw a Straight Line etext25184 McAllister, A. (Alvan) A Dissertation on the Medical Properties and Injurious Effects of the Habitual Use of Tobacco etext25199 Garibaldi, Giuseppe, 1807-1882 Cantoni il volontario etext25226 Quyuan 負曝閒談 etext25243 Wugenzi, fl. 1573 海遊記 etext25247 Li, Shangyin, 813-858 李義山詩集 etext25309 Lathbury, Mary A. (Mary Artemisia), 1841-1913 Child's Story of the Bible etext25349 Feng, Menglong, 1574-1646 東周列國志 etext25369 金石緣 etext25378 Lemaître, Jules, 1853-1914 Les Contemporains, 3ème Série etext25412 Ellicott, C. J. (Charles John), 1819-1905 Addresses on the Revised Version of Holy Scripture etext25418 Crane, Walter, 1845-1915 The Baby's Opera etext25464 Reinick, Robert, 1805-1852 The King of Root Valley etext25512 Phaedrus The Fables of Phædrus etext25538 etext25595 Curties, Henry, 1860- A Queen's Error etext25613 Hoffmann, Franz, 1814-1882 Jäämerellä etext25622 Ady, Julia Mary Cartwright, 1851-1924 Beatrice d'Este, Duchess of Milan, 1475-1497 etext25625 Morris, Charles, 1833-1922 Historic Tales, Vol. 8 (of 15) etext25652 Edwards, Clayton A Treasury of Heroes and Heroines etext25682 Massé, H. J. L. J. (Henri Jean Louis Joseph), 1860- Bell's Cathedrals: The Cathedral Church of Gloucester [2nd ed.] etext25712 The Great Events by Famous Historians, Volume 03 etext25719 Marryat, Frederick, 1792-1848 The Privateer's-Man etext25722 Winter, Amalie, 1803- Leben und Schicksale des Katers Rosaurus etext25733 Burns, Robert, 1759-1796 Tam O'Shanter etext25752 Dino, Dorothée, duchesse de, 1793-1862 Souvenirs de la duchesse de Dino etext25756 Talleyrand-Périgord, Charles Maurice de, prince de Bénévent, 1754-1838 Mémoires du prince de Talleyrand, Volume I (of V) etext25769 Jacobs, W. W. (William Wymark), 1863-1943 More Cargoes etext25772 Brooks, Virginia, 1886- Little Lost Sister etext25809 Phillips, Henry Wallace, 1869-1930 The Mascot of Sweet Briar Gulch etext25815 Kotzebue, Otto von, 1787-1846 A New Voyage Round the World, in the years 1823, 24, 25, and 26, Vol. 2 etext25828 etext25831 Northern Nut Growers Association Report of the Proceedings at the Thirty-Seventh Annual Report etext25866 Hill, Grace Livingston, 1865-1947 The Search etext25884 King, Charles, 1844-1933 Found in the Philippines etext25920 Long, Helen Beecher The Mission of Janice Day etext25923 Bindloss, Harold, 1866-1945 Brandon of the Engineers etext25926 The 1926 Tatler etext25946 Austen, Jane, 1775-1817 Sense and sensibility. Dutch etext26000 Smyth, W. H. (William Henry), 1788-1865 The Sailor's Word-Book etext26034 Baldwin, Gerald Grey Town etext26058 etext26136 Regester, J. A. (Jacob Asbury), 1892-1914 The Worship of the Church etext26152 Jameson, Mrs. (Anna), 1794-1860 Characteristics of Women etext26168 Slesar, Henry, 1927-2002 The Success Machine etext26210 Worthington, Elizabeth Strong How to Cook Husbands etext26238 Braddon, M. E. (Mary Elizabeth), 1835-1915 Vixen, Volume III. etext26341 Seebohm, Hugh E. (Hugh Exton), 1867-1946 On The Structure of Greek Tribal Society: An Essay etext26358 Eastern Tales by Many Story Tellers etext26368 Anonymous The Ladies Book of Useful Information etext26412 Ready, Oliver George Life and sport in China etext26533 Lawrence, Josephine, 1897?-1978 Rainbow Hill etext26588 De la Mare, Walter, 1873-1956 Ophelia etext26592 Muir, John, 1838-1914 The Yosemite etext26608 Christine, de Pisan, 1364?-1431? Le trésor de la cité des dames de degré en degré et de tous estatz etext26637 Le Queux, William, 1864-1927 The Mystery of the Green Ray etext26687 Cram, Ralph Adams, 1863-1942 Black Spirits and White etext26736 Greenwood, Grace, 1823-1904 Stories of Many Lands etext26741 Reynolds, Mack, 1917-1983 I'm a Stranger Here Myself etext26789 Emelian the Fool etext26832 Marsk Stig's Daughters etext26834 The Nightingale, the Valkyrie and Raven etext26847 Bird, Frederic Mayer, 1838-1908 A Pessimist etext26891 Bourget, Paul, 1852-1935 L'eau profonde etext26960 Johnston, Charles Haven Ladd, 1877-1943 Famous Privateersmen and Adventurers of the Sea etext26999 Barrie, J. M. (James Matthew), 1860-1937 Peter Pan in Kensington Gardens etext27022 etext27042 Lebert, Marie La Jérusalem médiévale etext27100 Feuillet, Octave, 1821-1890 Historia de una parisiense etext27101 Rochelle, James Henry, 1826-1889 Life of Rear Admiral John Randolph Tucker etext27122 Lu, You, 1125-1210 老學庵筆記 etext27129 Lyrics from the Song-Books of the Elizabethan Age etext27198 Maugham, W. Somerset (William Somerset), 1874-1965 The Explorer etext27202 Reynolds, George W. M. (George William MacArthur), 1814-1879 Wagner, the Wehr-Wolf etext27220 Bonsels, Waldemar, 1881?-1952 Himmelsvolk etext27224 Smith, Lewis Worthington, 1866-1947 The Writing of the Short Story etext27235 MacGregor, John, 1825-1892 The Voyage Alone in the Yawl "Rob Roy" etext27269 Fougeret de Monbron, Louis Charles, 1706-1760 Margot la Ravaudeuse etext27283 Galopin, Arnould, 1865-1934 Mémoires d'un cambrioleur retiré des affaires etext27291 Wang, Tong, 584?-618? 文中子中說 etext27325 Hayens, Herbert My Sword's My Fortune etext27361 Sociedade de Geografia de Lisboa As concessões de direitos magestaticos a emprezas mercantis para o ultramar etext27371 The Diplomatic Correspondence of the American Revolution, Vol. I etext27376 Donner, Arno Matkustus Argentinassa ja Uruguayssa etext27395 White, Fred M. (Fred Merrick), 1859- The Slave of Silence etext27447 Hergesheimer, Joseph, 1880-1954 Mountain Blood etext27458 Aeschylus, 525 BC-456 BC Aeschylus' Prometheus Bound and the Seven Against Thebes etext27473 Hafbur and Signe etext27497 Leal, José da Silva Mendes, 1818-1886 Napoleão no Kremlin etext27606 Congreve, William, 1670-1729 The Library of William Congreve etext27654 The Story Of The Prophet Jonas etext27680 Hancock, H. Irving (Harrie Irving), 1868-1922 Uncle Sam's Boys in the Ranks etext27722 Masterpieces of Mystery, Vol. 1 (of 4) etext27764 Holbrook, Florence, 1860-1932 Dramatic Reader for Lower Grades etext27803 Gezelle, Guido, 1830-1899 Kerkhofblommen etext27820 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Noites de insomnia, offerecidas a quem não póde dormir. Nº7 (de 12) etext27833 Asscher, Eva Wilhelmina, 1867-1940 Paedagogische Overwegingen etext20389 Lecky, William Edward Hartpole, 1838-1903 Historical and Political Essays etext27913 Reid, Mayne, 1818-1883 The Quadroon etext27955 Anonymous Mandalay, de jongste hoofdstad van Birma etext27995 Besant, Walter, Sir, 1836-1901 The History of London etext28094 Mediaeval Tales etext28099 etext28143 Various The Nursery, April 1878, Vol. XXIII. No. 4 etext28153 Mickiewicz, Adam, 1798-1855 Grażyna etext28179 Robertson, Margaret M. (Margaret Murray), 1821-1897 The Inglises etext28201 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Noites de insomnia, offerecidas a quem não póde dormir. Nº 10 (de 12) etext28248 Miller, Hugh, 1802-1856 The Testimony of the Rocks etext28318 Various Harper's Young People, January 27, 1880 etext28327 Cressy, Will M. (Will Martin), 1863-1930 Continuous Vaudeville etext28398 Movement of the International Literary Exchanges, between France and North America from January 1845 to May, 1846 etext28402 Moll, Albert, 1862-1939 The Sexual Life of the Child etext28407 Ellacombe, Henry Nicholson, 1821-1916 The plant-lore & garden-craft of Shakespeare etext28410 Various Harper's Young People, March 16, 1880 etext28528 Eldridge, Edward A California Girl etext28547 Macduff, John R. (John Ross), 1818-1895 The Words of Jesus etext28573 Crignelle, Henri de Le Morvan, [A District of France,] Its Wild Sports, Vineyards and Forests; with Legends, Antiquities, Rural and Local Sketches etext28601 Various The Christian Foundation, Or, Scientific and Religious Journal, June, 1880 etext28625 Cobb, Frank Battling the Clouds etext28628 Wells, Hal K., 1900- Devil Crystals of Arret etext28635 Thompson, George, 1823- My Life: or the Adventures of Geo. Thompson etext28663 Ellis, Edward Sylvester, 1840-1916 The Ranger etext28746 Brehm, Alfred Edmund, 1829-1884 Het Leven der Dieren etext28885 Carroll, Lewis, 1832-1898 Alice's Adventures in Wonderland etext28961 De Amicis, Edmondo, 1846-1908 Cuore (Heart) etext29047 Wise, H. A. (Henry Augustus), 1819-1869 Captain Brand of the "Centipede" etext29125 Burney, Fanny, 1752-1840 Brief Reflections relative to the Emigrant French Clergy etext29165 Various The American Missionary — Volume 38, No. 01, January, 1884 etext29214 Caxton, William, 1422?-1492? Dialogues in French and English etext29270 The Story of the Great War, Volume II (of VIII) etext29280 Glover, Ellye Howell, 1868- How the Piano Came to Be etext29304 Fletcher, J. S. (Joseph Smith), 1863-1935 In the Days of Drake etext29326 Meek, S. P. (Sterner St. Paul), 1894-1972 The Great Drought etext29352 Great Men and Famous Women, Vol. 8 etext29365 Clarke, Helen Archibald, -1926 Browning's England etext29377 Lima, Oliveira, 1867-1928 Historia diplomatica do Brazil etext29404 Donnell, Annie Hamilton, 1862- The Very Small Person etext29462 Pemberton, Max, Sir, 1863-1950 The House Under the Sea etext29481 Sousa, John Philip, 1854-1932 The Fifth String etext29515 Seaman, Owen, Sir, 1861-1936 The Battle of the Bays etext29518 Various Punch, Or The London Charivari, Vol 150, February 9, 1916 etext29596 Barrow, Sarah L. Funny Big Socks etext29639 Coit, Stanton, 1857-1944 Is civilization a disease? etext29643 Miller, Walter M., 1923-1996 Death of a Spaceman etext29656 Spearman, Frank H. (Frank Hamilton), 1859-1937 The Mountain Divide etext29678 Luther, Martin, 1483-1546 The Epistles of St. Peter and St. Jude Preached and Explained etext29687 Froude, James Anthony, 1818-1894 History of England from the Fall of Wolsey to the Death of Elizabeth. Vol. II. etext29700 Bryant, William Cullen, 1794-1878 Poetical Works of William Cullen Bryant etext29709 Heine, Heinrich, 1797-1856 Valikoima runoelmia etext29710 Buckley, Robert John Ireland as It Is etext29725 Sherwood, Mrs. (Mary Martha), 1775-1851 The Fairchild Family etext29734 Priestley, Joseph, 1733-1804 Experiments and Observations on Different Kinds of Air etext29811 Fanny, Aunt, 1822-1894 The Two Story Mittens and the Little Play Mittens etext29848 Various Astounding Stories of Super-Science, June, 1930 etext29881 Hobson, J. A. (John Atkinson), 1858-1940 Morals of Economic Internationalism etext29900 Flat, Paul, 1865-1918 Nos femmes de lettres etext29915 Dyer, B. W. (Benjamin Wheeler), 1887- About sugar buying for jobbers etext29944 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Three Men in a Boat (To Say Nothing of the Dog). Catalan etext30002 Vance, Jack, 1916- Sjambak etext30066 Frary, Francis C. (Francis Cowles), 1884- Laboratory Manual of Glass-Blowing etext30067 Byron, George Gordon Byron, Baron, 1788-1824 Oeuvres complètes de lord Byron, Volume 9 etext30088 Brooks, Amy Dorothy Dainty at the Mountains etext30093 Maher, Richard Aumerle, 1880-1959 The Shepherd of the North etext30140 Schmitz, James H., 1911-1981 Gone Fishing etext30141 Various The Continental Monthly, Vol. 4, No. 5, November, 1863 etext30151 Vaknin, Samuel, 1961- Macedonia: A Nation at a Crossroads etext30223 Vose, George L. (George Leonard), 1831-1910 Bridge Disasters in America etext30229 Dante Alighieri, 1265-1321 Dante's Hel etext30334 Reynolds, Mack, 1917-1983 Ultima Thule etext30381 Haseltine, Robert W. Prelude to Space etext30406 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Benjamin Franklin etext30416 Dryfoos, Dave Waste Not, Want etext30505 Rowe, Nicholas, 1674-1718 Jane Shore etext30525 Strindberg, August, 1849-1912 Det Nya Riket etext30560 Spalding, Walter Raymond, 1865-1962 Music: An Art and a Language etext30563 Wilson, Warren H. (Warren Hugh), 1867-1937 The Evolution of the Country Community etext30577 etext30712 Reynolds, Mack, 1917-1983 Combat etext30764 Schmitz, James H., 1911-1981 Ham Sandwich etext30773 Samachson, Joseph, 1906-1980 Dead Man's Planet etext30777 Stolz, Mme. de A Casa do Saltimbanco etext30809 Yonge, Charlotte Mary, 1823-1901 Aunt Charlotte's Stories of Greek History etext30815 Leinster, Murray, 1896-1975 The Hate Disease etext30942 Anderson, Sydney, 1927- Extensions of Known Ranges of Mexican Bats etext30963 Young, Robert F., 1915-1986 A Knyght Ther Was etext30994 Byron, George Gordon Byron, Baron, 1788-1824 Oeuvres complètes de lord Byron, volume 10 etext31046 Cockrum, E. Lendell, 1920-2009 A New Pocket Mouse (Genus Perognathus) from Kansas etext31056 Palacio Valdés, Armando, 1853-1938 The Grandee etext31072 Saintsbury, George, 1845-1933 A Letter Book etext31075 McBride, R. E. In The Ranks etext31091 Walshe, Elizabeth Hely Cedar Creek etext31149 Finley, Robert B. A New Piñon Mouse (Peromyscus truei) from Durango, Mexico etext31194 Various Stories by American Authors, Volume 9 etext31202 Bacon, Josephine Dodge Daskam, 1876-1961 The Strange Cases of Dr. Stanchon etext31224 Jones, J. Knox, 1929-1992 Geographic Distribution of the Pocket Mouse, Perognathus fasciatus etext31230 Hiller, Frederick, 1820- Allopathy and Homoeopathy Before the Judgement of Common Sense! etext31287 Coppel, Alfred Turnover Point etext31334 Duellman, William E., 1930- Descriptions of Two Species of Frogs, Genus Ptychohyla etext31382 Woodworth, Robert S. Psychology etext31557 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 18 (of 25) etext31559 Arnault, Robert Dictionnaire historique universel etext31572 Malleson, George Bruce, 1825-1898 Rulers of India: Akbar etext31585 Knight, David C. The Amazing Mrs. Mimms etext31588 Stangland, Arthur G., 1908-1990 The House from Nowhere etext31680 Pease, M. C. Generals Help Themselves etext31689 Yaco, Murray F. Membership Drive etext31720 Ginguené, Pierre-Louis Histoire littéraire d'Italie (3/9) etext31722 etext31847 Various Dog Stories from the "Spectator" etext31862 Andrews, Clarence Leroy, 1862-1948 The Story of Sitka etext31884 Nye, Bill, 1850-1896 A Guest at the Ludlow and Other Stories etext31898 Hergesheimer, Joseph, 1880-1954 The Bright Shawl etext31916 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 10 (of 25) etext31936 Mansfield, M. F. (Milburg Francisco), 1871- The Cathedrals and Churches of the Rhine etext31951 White, John A. Geographic Distribution and Taxonomy of the Chipmunks of Wyoming etext31985 Stockham, Richard Perfect Control etext32012 Holden, Horace A Narrative of the Shipwreck, Captivity and Sufferings of Horace Holden and Benj. H. Nute etext32051 Nobbs, Gilbert On the right of the British line etext32071 Hauff, Wilhelm, 1802-1827 The Banished etext32081 Various Punch, or the London Charivari, Vol. 158, June 23, 1920 etext32201 Darwin, Charles, 1809-1882 Geologische Beobachtungen über die Vulcanischen Inseln etext32212 Aycock, Roger D., 1914-2004 Clean Break etext32222 Dahn, Felix, 1834-1912 Felicitas etext32245 Undset, Sigrid Jenny etext32258 Gould, John Mead, 1839-1930 Joseph K. F. Mansfield, Brigadier General of the U.S. Army etext32299 James, Bartlett Burleigh, 1867-1953 Women of England etext32313 Various The Esperantist, Vol. 1, No. 6 etext32353 Marks, Winston K., 1915-1979 The Mind Digger etext32443 Dahn, Felix, 1834-1912 Saga of Halfred the Sigskald etext32523 Turner, Elizabeth Mrs. Turner's Cautionary Stories etext32527 Various The New-York Weekly Magazine etext32534 Riis, Jacob A. (Jacob August), 1849-1914 Neighbors etext32597 Wallace, F. L. (Floyd L.), 1915-2004 Accidental Flight etext32600 Prescott, William Hickling, 1796-1859 History of the Reign of Philip the Second, King of Spain, Vols. 1 and 2 etext32663 Graham, Roger Phillips, 1909-1965 Ye of Little Faith etext32695 Butler, Pierce Women of Mediæval France etext56 Polly, Jean Armour NREN etext88 United States Price/Cost Indexes from 1875 to 1989 etext111 Stratton-Porter, Gene, 1863-1924 Freckles etext151 Coleridge, Samuel Taylor, 1772-1834 The Rime of the Ancient Mariner etext305 Gaboriau, Émile, 1832-1873 The Count's Millions etext324 Fox, John, 1863-1919 A Knight of the Cumberland etext367 Jewett, Sarah Orne, 1849-1909 The Country of the Pointed Firs etext439 Doyle, Arthur Conan, Sir, 1859-1930 The Vital Message etext483 Tarkington, Booth, 1869-1946 The Conquest of Canaan etext499 Appleton, Victor [pseud.] Tom Swift in the Land of Wonders, or, the Underground Search for the Idol of Gold etext558 Buchan, John, 1875-1940 The Thirty-Nine Steps etext580 Dickens, Charles, 1812-1870 The Pickwick Papers etext588 Dickens, Charles, 1812-1870 Master Humphrey's Clock etext619 Trollope, Anthony, 1815-1882 The Warden etext656 Sharp, William, 1856-1905 Life of Robert Browning etext712 Ellis, Edward Sylvester, 1840-1916 Thomas Jefferson, a Character Sketch etext743 Godwin, William, 1756-1836 Thoughts on Man, His Nature, Productions and Discoveries Interspersed with Some Particulars Respecting the Author etext849 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Idle Thoughts of an Idle Fellow etext853 The Confutatio Pontificia etext875 Wilde, Oscar, 1854-1900 The Duchess of Padua etext899 Marion, F. (Fulgence) Wonderful Balloon Ascents etext953 Appleton, Victor [pseud.] Tom Swift and His Big Tunnel, or, the Hidden City of the Andes etext969 Brontë, Anne, 1820-1849 The Tenant of Wildfell Hall etext1000 Dante Alighieri, 1265-1321 La Divina Commedia di Dante etext1135 Shakespeare, William, 1564-1616 The Tempest etext1138 Wells, H. G. (Herbert George), 1866-1946 The Research Magnificent etext1159 Rohmer, Sax, 1883-1959 Fire-Tongue etext1237 Balzac, Honoré de, 1799-1850 Father Goriot etext1285 Butler, Ellis Parker, 1869-1937 The Water goats and other troubles etext1303 Caine, Hall, Sir, 1853-1931 The Scapegoat; a romance and a parable etext1305 Balzac, Honoré de, 1799-1850 The Ball at Sceaux etext1323 Prescott, William Hickling, 1796-1859 History of the Conquest of Peru; with a preliminary view of the civilization of the Incas etext1386 Wister, Owen, 1860-1938 Lady Baltimore etext1421 Dickens, Charles, 1812-1870 Mrs. Lirriper's Legacy etext1430 Nesbit, E. (Edith), 1858-1924 Beautiful Stories from Shakespeare etext1455 Balzac, Honoré de, 1799-1850 The Hated Son etext1552 The Lock and Key Library etext1579 Plato, 427? BC-347? BC Lysis etext1581 Anonymous The Bible, Douay-Rheims, Complete etext1583 Henry, O., 1862-1910 Options etext1672 Plato, 427? BC-347? BC Gorgias etext1713 Stephenson, Nathaniel W. (Nathaniel Wright), 1867-1935 Lincoln; An Account of his Personal Life, Especially of its Springs of Action as Revealed and Deepened by the Ordeal of War etext1716 Freeman, Mary Eleanor Wilkins, 1852-1930 The Copy-Cat and Other Stories etext1771 Shakespeare, William, 1564-1616 Titus Andronicus etext1855 Lang, Andrew, 1844-1912 Ban and Arriere Ban etext1856 Balzac, Honoré de, 1799-1850 Cousin Pons etext1860 Kingsley, Charles, 1819-1875 Westward Ho!, or, the voyages and adventures of Sir Amyas Leigh, Knight, of Burrough, in the county of Devon, in the reign of her most glorious majesty Queen Elizabeth etext1908 Bower, B. M., 1874-1940 Her Prairie Knight etext1966 Buchan, John, 1875-1940 The Path of the King etext1971 Butler, Samuel, 1835-1902 Erewhon Revisited etext1972 Nennius, fl. 796 History of the Britons (Historia Brittonum) etext2008 Sands, George W., ca. 1824-1874 Mazelli, and Other Poems etext2051 Defoe, Daniel, 1661?-1731 Dickory Cronke etext2054 Goethe, Johann Wolfgang von, 1749-1832 Iphigenie auf Tauris etext2070 Grey, Zane, 1872-1939 To the Last Man etext2157 Cooper, Susan Fenimore, 1813-1894 Female Suffrage: a Letter to the Christian Women of America etext2302 Dostoyevsky, Fyodor, 1821-1881 Poor Folk etext2334 Kipling, Rudyard, 1865-1936 The Works of Rudyard Kipling etext2365 La Fayette, Madame de (Marie-Madeleine Pioche de La Vergne), 1634-1693 The Princess De Montpensier etext2499 Hesse, Hermann, 1877-1962 Siddhartha: eine indische Dichtung etext2591 etext2592 Luther, Martin, 1483-1546 The Small Catechism of Martin Luther etext2608 Thackeray, William Makepeace, 1811-1863 Roundabout Papers etext2657 Lincoln, Abraham, 1809-1865 The Writings of Abraham Lincoln — Volume 5: 1858-1862 etext2662 Hardy, Thomas, 1840-1928 Under the Greenwood Tree, or, the Mellstock quire; a rural painting of the Dutch school etext2732 Thackeray, William Makepeace, 1811-1863 Ballads etext2756 Dumas père, Alexandre, 1802-1870 Marquise Brinvillier etext2833 James, Henry, 1843-1916 The Portrait of a Lady — Volume 1 etext2857 Haggard, Henry Rider, 1856-1925 A Yellow God: an Idol of Africa etext3068 Various Washington Square Plays etext3103 Warner, Charles Dudley, 1829-1900 Little Journey in the World etext3130 Warner, Charles Dudley, 1829-1900 Captain John Smith etext3134 Warner, Charles Dudley, 1829-1900 Backlog Studies etext3207 Hobbes, Thomas, 1588-1679 Leviathan etext3212 Honig, Winfried Mr. Honey's Beginner's Dictionary etext3277 Ward, Artemus, 1834-1867 The Complete Works of Artemus Ward — Part 7: Miscellaneous etext3377 Howells, William Dean, 1837-1920 Criticism and Fiction etext3451 Mühlbach, L. (Luise), 1814-1873 Marie Antoinette and Her Son etext3455 Cohen, Josef, 1886-1965 Nederlandsche Sagen en Legenden etext3476 Mühlbach, L. (Luise), 1814-1873 Henry VIII and His Court etext3506 Human Genome Project Human Genome Project, Chromosome Number 06 etext3545 Goldsmith, Oliver, 1730-1774 The Complete Poetical Works of Oliver Goldsmith etext3562 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 12 etext3565 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 15 etext3573 Wairy, Louis Constant, 1778-1845 Recollections of the Private Life of Napoleon — Volume 06 etext3588 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 08 etext3630 Tolstoy, Leo, graf, 1828-1910 What to Do? etext3633 Collins, Wilkie, 1824-1889 Jezebel's Daughter etext3636 The Fall of the Niebelungs etext3658 Connor, Ralph, 1860-1937 The Prospector etext3664 Maupassant, Guy de, 1850-1893 Yvette etext3683 Churchill, Winston, 1871-1947 Mr. Crewe's Career — Volume 3 etext3687 Pyle, Howard, 1853-1911 The Ruby of Kishmoor etext3753 De la Mare, Walter, 1873-1956 Peacock Pie, a Book of Rhymes etext3761 Marshall, H. E. (Henrietta Elizabeth) This Country of Ours etext3791 Allen, James Lane, 1849-1925 The Reign of Law; a tale of the Kentucky hemp fields etext3813 Haggard, Henry Rider, 1856-1925 The Lady of Blossholme etext3885 Campan, Jeanne Louise Henriette (Genet), 1752-1822 Memoirs of the Court of Marie Antoinette, Queen of France, Volume 2 etext3890 Campan, Jeanne Louise Henriette (Genet), 1752-1822 Memoirs of the Court of Marie Antoinette, Queen of France, Volume 7 etext3904 Rousseau, Jean-Jacques, 1712-1778 The Confessions of J. J. Rousseau — Volume 04 etext3912 Rousseau, Jean-Jacques, 1712-1778 The Confessions of J. J. Rousseau — Volume 12 etext3945 Feuillet, Octave, 1821-1890 Monsieur De Camors — Volume 3 etext3947 Vigny, Alfred de, 1797-1863 Cinq Mars — Volume 1 etext3950 Vigny, Alfred de, 1797-1863 Cinq Mars — Volume 4 etext3976 Daudet, Alphonse, 1840-1897 Fromont and Risler — Volume 1 etext4031 Unknown The London Prodigal; "by William Shakespeare." as it was played by the King's Majesties servants. etext4051 Praed, Campbell, Mrs., 1851-1935 Lady Bridget in the Never-Never Land: a story of Australian life etext4077 Leacock, Stephen, 1869-1944 The Mariner of St. Malo : A chronicle of the voyages of Jacques Cartier etext4084 Smollett, T. (Tobias), 1721-1771 The Adventures of Peregrine Pickle etext4119 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 03: February 1659-1660 etext4175 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 52: April 1667 etext4216 Lawrence, D. H. (David Herbert), 1885-1930 Touch and Go etext4275 Gaskell, Elizabeth Cleghorn, 1810-1865 Ruth etext4364 Yonge, Charlotte Mary, 1823-1901 The Lances of Lynwood etext4457 Meredith, George, 1828-1909 Beauchamp's Career — Volume 5 etext4494 Meredith, George, 1828-1909 The Tale of Chloe etext4544 The Cell of Self-Knowledge : seven early English mystical treatises printed by Henry Pepwell in 1521 etext4567 Bertrand, Huguette Strates Amoureuses; Poesie etext4606 Reade, Charles, 1814-1884 It Is Never Too Late to Mend etext4652 Benson, Arthur Christopher, 1862-1925 Escape, and Other Essays etext4670 Burgess, Thornton W. (Thornton Waldo), 1874-1965 Lightfoot the Deer etext4671 Bradley, Glenn D. (Glenn Danford), 1884-1930 The Story of the Pony Express etext4682 Leacock, Stephen, 1869-1944 Nonsense Novels etext4703 Curwood, James Oliver, 1878-1927 Flower of the North etext4723 Berkeley, George, 1685-1753 A Treatise Concerning the Principles of Human Knowledge etext4785 Loti, Pierre, 1850-1923 Pêcheur d'Islande etext4790 MacGrath, Harold, 1871-1932 Half a Rogue etext4827 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 25: 1577, part II etext4842 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1585e etext4904 Meredith, George, 1828-1909 Quotations from the Project Gutenberg Editions of the Collected Works of George Meredith etext4969 Trollope, Anthony, 1815-1882 The Belton Estate etext4973 Niecks, Frederick, 1845-1924 Frederick Chopin, as a Man and Musician — Complete etext4989 Meade, L. T., 1854-1914 A Sweet Girl Graduate etext5127 Lang, Andrew, 1844-1912 Shakespeare, Bacon, and the Great Unknown etext5161 Lagerlöf, Selma, 1858-1940 The Treasure etext5174 Haggard, Henry Rider, 1856-1925 Allan and the Holy Flower etext5196 Herr, Charlotte B. (Charlotte Bronte), 1875-1963 Their Mariposa Legend; a romance of Santa Catalina etext5234 Lever, Charles James, 1806-1872 The Confessions of Harry Lorrequer — Volume 1 etext5250 Zola, Émile, 1840-1902 Nana etext5300 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Complete etext5325 Goethe, Johann Wolfgang von, 1749-1832 Römische Elegien etext5336 Stories by Foreign Authors: Scandinavian etext5343 Montgomery, L. M. (Lucy Maud), 1874-1942 Rainbow Valley etext5398 Churchill, Winston, 1871-1947 A Traveller in War-Time etext5441 Ebers, Georg, 1837-1898 Uarda : a Romance of Ancient Egypt — Volume 03 etext5457 Ebers, Georg, 1837-1898 An Egyptian Princess — Volume 08 etext5461 Ebers, Georg, 1837-1898 The Sisters — Volume 1 etext5491 Ebers, Georg, 1837-1898 The Emperor — Volume 09 etext5512 Ebers, Georg, 1837-1898 Arachne — Volume 05 etext5513 Ebers, Georg, 1837-1898 Arachne — Volume 06 etext5540 Ebers, Georg, 1837-1898 A Thorny Path — Volume 11 etext5586 Ebers, Georg, 1837-1898 In the Blue Pike — Volume 03 etext5628 Drinkwater, John, 1882-1937 Preludes 1921-1922 etext5685 Du Bois, W. E. B. (William Edward Burghardt), 1868-1963 The Conservation of Races etext5773 MacDonald, George, 1824-1905 Annals of a Quiet Neighbourhood etext5816 Wills, William John, 1834-1861 Successful Exploration Through the Interior of Australia etext5834 Ouida, 1839-1908 Bimbi etext5884 Keyhoe, Donald E. (Donald Edward), 1897-1988 The Flying Saucers are Real etext5912 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 10 etext5934 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 31 etext5940 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 37 etext5941 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 38 etext5944 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 41 etext5945 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 42 etext5947 Cory, David, 1872-1966 Billy Bunny and Uncle Bull Frog etext5952 Hope, Laura Lee The Bobbsey Twins in the Great West etext5962 Porter, Eleanor H. (Eleanor Hodgman), 1868-1920 Oh, Money! Money! etext6009 Van Dyke, Henry, 1852-1933 The Valley of Vision : a Book of Romance an Some Half Told Tales etext6082 Brown, William Perry, 1847-1923 Our Pilots in the Air etext6089 Regnard, Jean François, 1655-1709 The Follies of Love etext6116 Bennet, Robert Ames, 1870-1954 Out of the Primitive etext6121 Overton, Mark Jack Winters' Gridiron Chums etext6139 Severing, Paul Marvels of Modern Science etext6145 Steel, Flora Annie, 1847-1929 Tales of the Punjab etext6231 Parker, Gilbert, 1862-1932 The Battle of the Strong — Volume 2 etext6259 Parker, Gilbert, 1862-1932 Donovan Pasha, and Some People of Egypt — Volume 4 etext6286 Parker, Gilbert, 1862-1932 You Never Know Your Luck; being the story of a matrimonial deserter. Volume 2. etext6329 Kermode, Francis, 1874- Catalogue of British Columbia Birds etext6358 Pollard, A. F. (Albert Frederick), 1869-1948 The History of England - a Study in Political Evolution etext6368 Hamilton, Frederick Spencer, Lord, 1856-1928 Here, There and Everywhere etext6430 Haeckel, Ernst Heinrich Philipp August, 1834-1919 The Evolution of Man — Volume 1 etext6470 Zola, Émile, 1840-1902 Le Ventre de Paris etext6545 Douglass, Frederick, 1818-1895 Frederick Douglass on Reconstruction etext6590 Parker, Gilbert, 1862-1932 Quotations from the PG Collected Works of Gilbert Parker etext6658 Bompas, Charlotte Selina, 1830-1917 Owindia : a true tale of the MacKenzie River Indians, North-West America etext6752 Reade, Alfred Arthur Study and Stimulants; Or, the Use of Intoxicants and Narcotics in Relation to Intellectual Life etext6807 Lang, Andrew, 1844-1912 Pickle the Spy; Or, the Incognito of Prince Charles etext6808 Fowler, William Worthington, 1833-1881 Woman on the American Frontier etext6847 Hergesheimer, Joseph, 1880-1954 Cytherea etext6858 Flower, Jessie Graham [pseud.], -1931 Grace Harlowe's Second Year at Overton College etext6874 Watkin, E. W. (Edward William), 1819-1901 Canada and the States etext6904 Ralphson, G. Harvey (George Harvey), 1879-1940 Boy Scouts in an Airship; or, the Warning from the Sky etext6916 Traill, H. D. (Henry Duff), 1842-1900 English Men of Letters: Coleridge etext7054 etext7076 Foote, G. W. (George William), 1850-1915 Prisoner for Blasphemy etext7097 Black Hawk, 1767-1838 Autobiography of Ma-ka-tai-me-she-kia-kiak, or Black Hawk etext7108 Sheridan, Richard Brinsley, 1751-1816 Scarborough and the Critic etext7185 Shakespeare, William, 1564-1616 Othello etext7206 Nietzsche, Friedrich Wilhelm, 1844-1900 Die Geburt der Tragödie etext7281 Scott, Michael, 1789-1835 Tom Cringle's Log etext7344 Hawthorne, Julian, 1846-1934 Archibald Malmaison etext7375 Zhu, Xi, 1130-1200 大學 章句 etext7407 Zhang, Ni 棋經 etext7420 Zhang, Chao, 1650- 幽夢影 etext7449 Knapp, Samuel L. (Samuel Lorenzo), 1783-1838 Memoirs of General Lafayette : with an Account of His Visit to America and His Reception By the People of the United States; From His Arrival, August 15th, to the Celebration at Yorktown, October 19th, 1824. etext7456 Yan, Zhitui, 531-591 顔氏家訓 — Volume 05 and 06 etext7491 Cicero, Marcus Tullius, 106 BC-43 BC De Amicitia, Scipio's Dream etext7499 Ray, G. Whitfield Through Five Republics on Horseback, Being an Account of Many Wanderings in South America etext7509 Lee, Ida, 1865-1943 The Logbooks of the Lady Nelson etext7540 Young, Filson, 1876-1938 Quotes and Images from Christopher Columbus etext7605 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Complete etext7635 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Disowned — Volume 05 etext7650 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Kenelm Chillingly — Volume 01 etext7652 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Kenelm Chillingly — Volume 03 etext7683 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Harold : the Last of the Saxon Kings — Volume 12 etext7708 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 My Novel — Volume 07 etext7736 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Tomlinsoniana etext7804 Southwick, Jessie Eldridge Expressive Voice Culture, Including the Emerson System etext7813 James, Henry, 1843-1916 Madame De Mauves etext7820 Brazil, Angela, 1868-1947 Monitress Merle etext7883 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture etext7892 Collins, Wilkie, 1824-1889 Heart and Science etext7893 Collins, Wilkie, 1824-1889 Hide and Seek etext7987 Scott, Walter, Sir, 1771-1832 The Fair Maid of Perth etext7994 Irving, Washington, 1783-1859 The Crayon Papers etext8015 Anonymous The Bible, King James version, Book 15: Ezra etext8039 Anonymous The Bible, King James version, Book 39: Malachi etext8133 Hearn, Lafcadio, 1850-1904 Glimpses of Unfamiliar Japan etext8166 Rabelais, François, 1483-1553 Gargantua and Pantagruel, Illustrated, Book 1 etext8177 Fryer, Helen The Esperanto Teacher etext8207 Bacon, Delia, 1811-1859 The Philosophy of the Plays of Shakspere Unfolded etext8223 Brown, Charles Brockden, 1771-1810 Edgar Huntly etext8261 Anonymous The World English Bible (WEB): Nahum etext8265 Anonymous The World English Bible (WEB): Zechariah etext8300 Anonymous The Bible, Douay-Rheims, Complete etext8318 The Bible, Douay-Rheims, Book 18: Judith etext8343 The Bible, Douay-Rheims, Book 43: Zacharias etext8361 The Bible, Douay-Rheims, Book 61: 1 Timothy etext8375 Lipps, Theodor, 1851-1914 Der Streit über die Tragödie etext8452 Various Scientific American Supplement, No. 363, December 16, 1882 etext8487 Sudermann, Hermann, 1857-1928 Dame Care etext8494 Aho, Juhani, 1861-1921 Omatunto etext8499 Strindberg, August, 1849-1912 Plays: the Father; Countess Julie; the Outlaw; the Stronger etext8502 Craig, R. A., D. V. M. Common Diseases of Farm Animals etext8516 Zola, Émile, 1840-1902 The Three Cities Trilogy: Lourdes, Complete etext8605 Cooke, George Willis, 1848-1923 Unitarianism in America etext8611 Twain, Mark, 1835-1910 The Prince and the Pauper etext8643 Various Punch, or the London Charivari, Volume 153, July 4, 1917 etext8662 Vandercook, Margaret, 1876- The Camp Fire Girls at Sunrise Hill etext8663 Kielland, Alexander Lange, 1849-1906 Tales of Two Countries etext8666 Social Security Board Security in Your Old Age (Informational Service Circular No. 9) etext8721 Zola, Émile, 1840-1902 The Three Cities Trilogy: Rome, Volume 1 etext8759 Burroughs, Edgar Rice, 1875-1950 The Lost Continent etext8780 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Hell, Volume 02 etext8803 Balzac, Honoré de, 1799-1850 Große und kleine Welt etext8814 Park, Mungo, 1771-1806 The Journal of a Mission to the Interior of Africa, in the Year 1805 etext8875 Strindberg, August, 1849-1912 The Road to Damascus etext8905 Wordsworth, William, 1770-1850 Lyrical Ballads, with Other Poems, 1800, Volume 1 etext8913 MacDonald, George, 1824-1905 The Portent & Other Stories etext8924 MacDonald, George, 1824-1905 Home Again etext8925 Storm, Theodor, 1817-1888 Der Spiegel des Cyprianus etext8937 Edgeworth, Maria, 1767-1849 Tales and Novels — Volume 07 etext8981 Verne, Jules, 1828-1905 Eight Hundred Leagues on the Amazon etext8986 Verne, Jules, 1828-1905 From the Earth to the Moon etext8989 Verne, Jules, 1828-1905 Survivors of the Chancellor etext9032 Twain, Mark, 1835-1910 Roughing It etext9039 Twain, Mark, 1835-1910 Is Shakespeare Dead? etext9143 London, Jack, 1876-1916 The Valley of the Moon etext9158 Lessing, Gotthold Ephraim, 1729-1781 Fabeln und Erzählungen etext9159 Lessing, Gotthold Ephraim, 1729-1781 Philotas etext9164 Zola, Émile, 1840-1902 The Three Cities Trilogy: Paris, Volume 1 etext9182 Brontë, Charlotte, 1816-1855 Villette etext9270 Swift, Jonathan, 1667-1745 The Battle of the Books etext9307 Wright, R. W. Life: Its True Genesis etext9313 Peabody, Josephine Preston, 1874-1922 Old Greek Folk Stories Told Anew etext9402 Maxwell, Mrs. M. H. Be Courteous etext9404 Churchill, Winston, 1874-1965 The Story of the Malakand Field Force etext9426 Hardy, Thomas, 1840-1928 Moments of Vision etext9458 Howells, William Dean, 1837-1920 Questionable Shapes etext9475 Braddon, M. E. (Mary Elizabeth), 1835-1915 The Lovels of Arden etext9587 Whittier, John Greenleaf, 1807-1892 Margaret Smith's Journal etext9605 Blanchard, Lucy M. Chico: the Story of a Homing Pigeon etext9628 Hall, Jennie, 1875-1921 Buried Cities, Complete etext9720 Dickens, Charles, 1812-1870 Mugby Junction etext9723 Dickens, Charles, 1812-1870 Mrs. Lirriper's Legacy etext9760 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Leila or, the Siege of Granada, Book V. etext9769 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Alice, or the Mysteries — Book 07 etext9796 Brebner, Percy James, 1864-1922 The Master Detective etext9810 Shaw, Bernard, 1856-1950 Man kann nie wissen etext9846 Thoreau, Henry David, 1817-1862 Excursions etext9849 Brebner, Percy James, 1864-1922 The Brown Mask etext9859 Spyri, Johanna, 1827-1901 Vom This, der doch etwas wird etext9864 Hurst, Fannie, 1889-1968 Humoresque etext9865 Hergesheimer, Joseph, 1880-1954 Java Head etext9934 Hathaway, Arthur S. A Primer of Quaternions etext10164 McClung, Nellie L., 1873-1951 The Black Creek Stopping-House etext10187 Spencer, Len, 1867-1914 Reuben Haskin's ride on the Cyclone Auto etext10206 Edison, Thomas A., 1847-1931 The Liver Complaint Story etext10244 Frisco Jass Band Johnson "jass" Blues etext10278 Tchaikovsky, Peter Ilich, 1840-1893 Sei Forse L'Angelo Fedele etext10288 Siegel, Samuel (mandolin) Ragtime Echoes etext10340 Stoddard, William Osborn, 1835-1925 Dab Kinzer etext10381 Hugo, Victor, 1802-1885 The History of a Crime etext10395 Van Dyke, Henry, 1852-1933 Joy & Power etext10442 Gautier, Théophile, 1811-1872 La Comédie de la mort etext10445 Various American Big Game in Its Haunts etext10447 Le Gallienne, Richard, 1866-1947 October Vagabonds etext10457 Le Gallienne, Richard, 1866-1947 The Lonely Dancer and Other Poems etext10484 Lord, John, 1810-1894 Beacon Lights of History, Volume 03 etext10502 De Marchi, Emilio, 1851-1901 Vecchie Storie etext10525 McGuinn, Roger Michael Row the Boat Ashore etext10528 McGuinn, Roger I Heard the Bells on Christmas Day etext10563 Jacobs, W. W. (William Wymark), 1863-1943 Good Intentions etext10593 Grayson, David, 1870-1946 Great Possessions etext10669 Kingsley, Charles, 1819-1875 At Last etext10729 Alger, Horatio, 1832-1899 Jack's Ward etext10740 Allen, James, 1864-1912 The Way of Peace etext10742 Spafford, Oliver The Picture Alphabet etext10757 McGuinn, Roger Pretty Saro etext10760 Torrey, Bradford, 1843-1912 A Florida Sketch-Book etext10799 Richardson, Samuel, 1689-1761 Clarissa Harlowe; or the history of a young lady — Volume 5 etext10818 Inglis, James, 1845-1908 Sport and Work on the Nepaul Frontier etext10958 Lincoln, Jeanie Gould, 1846-1921 An Unwilling Maid etext10959 Glyn, Elinor, 1864-1943 The Visits of Elizabeth etext10979 Anonymous Footsteps on the Road to Learning; etext10982 Flaubert, Gustave, 1821-1880 La tentation de Saint Antoine etext10988 Moore, Frederick Ferdinand, 1877- The Devil's Admiral etext10999 Banerjea, S. B. Tales of Bengal etext11006 Wetterau, John Moncure The Book with the Yellow Cover etext11038 Tissandier, Gaston, 1843-1899 En ballon! Pendant le siege de Paris etext11060 France, Anatole, 1844-1924 The Aspirations of Jean Servien etext11108 Falke, Gustav, 1853-1916 Aus dem Durchschnitt etext11249 Cody, Sherwin, 1868-1959 Four Famous American Writers: Washington Irving, Edgar Allan Poe, etext11262 Vaknin, Samuel, 1961- Cyclopedia of Economics etext11265 Various Notes and Queries, Number 02, November 10, 1849 etext11301 Gaboriau, Émile, 1832-1873 Les gens de bureau etext11329 Murray, Henry A. Lands of the Slave and the Free etext11359 Various Punch, or the London Charivari, Volume 156, February 26, 1919 etext11408 Various The Mirror of Literature, Amusement, and Instruction etext11426 White, Stewart Edward, 1873-1946 The Call of the North etext11428 Various Punch, or the London Charivari, Volume 153, November 14, 1917 etext11467 Hamel, Hendrik, 1630-1692 Verhaal van het vergaan van het jacht de Sperwer etext11513 Bridges, T. C. (Thomas Charles), 1868- On Land and Sea at the Dardanelles etext11518 Various The Mirror of Literature, Amusement, and Instruction etext11529 Palacio Valdés, Armando, 1853-1938 La Espuma etext11545 Priest, William Travels in the United States of America etext11546 Stillman, William James, 1828-1901 The Autobiography of a Journalist, Volume I etext11552 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext11555 Coulton, Miss Our Farm of Four Acres and the Money we Made by it etext11602 Ballantyne, R. M. (Robert Michael), 1825-1894 The World of Ice etext11622 Twain, Mark, 1835-1910 Plus fort que Sherlock Holmès etext11625 Wilson, Harry Leon, 1867-1939 The Wrong Twin etext11647 Various Scientific American Supplement, No. 458, October 11, 1884 etext11655 Comfort, Will Levington, 1878-1932 Fate Knocks at the Door etext11699 Le Fanu, Joseph Sheridan, 1814-1873 J. S. Le Fanu's Ghostly Tales, Volume 1 etext11722 Monteith, James First Lessons in Geography etext11726 Various Punch, or the London Charivari, Volume 99, July 5, 1890 etext11880 Brand, Max, 1892-1944 Ronicky Doone etext11897 Bühler, Johann Georg, 1837-1898 On the Indian Sect of the Jainas etext11924 Archer, W. G., 1907-1979 The Loves of Krishna in Indian Painting and Poetry etext11940 Kivi, Aleksis, 1834-1872 Seitsemän veljestä etext11970 Brame, Charlotte M., 1836-1884 Wife in Name Only etext12035 Fowler, Thomas, 1832-1904 Progressive Morality etext12094 Various O. Henry Memorial Award Prize Stories of 1919 etext12138 Steiner, Bernard Christian, 1867-1926 The History of University Education in Maryland etext12182 Järnefelt, Arvid, 1861-1932 Veneh'ojalaiset etext12212 Jacobs, W. W. (William Wymark), 1863-1943 The Third String etext12217 Fetter, Frank Albert, 1863-1949 Modern Economic Problems etext12253 Agency, D. D. Cottrell's Subscription Wholesale Price List of Newspapers and Periodicals etext12264 Benson, Arthur Christopher, 1862-1925 Father Payne etext12333 The Mahabharata of Krishna-Dwaipayana Vyasa Translated into English Prose etext12436 Brand, Max, 1892-1944 The Night Horseman etext12448 Sand, George, 1804-1876 L'Orco etext12468 Various Punch, or the London Charivari, Volume 99, October 25, 1890 etext12476 Harraden, Beatrice, 1864-1936 Ships That Pass in the Night etext12482 Allen, James Lane, 1849-1925 The Mettle of the Pasture etext12490 Various Scientific American Supplement, No. 492, June 6, 1885 etext12497 Various The Mirror of Literature, Amusement, and Instruction etext12504 Marivaux, Pierre Carlet de Chamblain de, 1688-1763 A Selection from the Comedies of Marivaux etext12509 Rees, Arthur J. (Arthur John), 1872-1942 The Moon Rock etext12522 Turner, Matthew, -1788 An Account of the Extraordinary Medicinal Fluid, called Aether. etext12551 Various The Mirror of Literature, Amusement, and Instruction etext12553 Various The Mirror of Literature, Amusement, and Instruction etext12580 Kennedy, James B. Beneficiary Features of American Trade Unions etext12687 Bennett, Arnold, 1867-1931 The Title etext12691 Hancock, H. Irving (Harrie Irving), 1868-1922 The High School Left End etext12694 Jerome, Chauncey, 1793-1868 History of the American Clock Business for the Past Sixty Years, and Life of Chauncey Jerome etext12697 Atherton, Gertrude Franklin Horn, 1857-1948 The Splendid Idle Forties etext12706 etext12713 Coleridge, Samuel Taylor, 1772-1834 Rime of the ancient mariner etext12718 Whitman, Walt, 1819-1892 Song of Myself Selections etext12788 Library of the World's Best Literature, Ancient and Modern — Volume 2 etext12798 Becke, Louis, 1855-1913 By Rock and Pool on an Austral Shore, and Other Stories etext12825 Various Punch, or the London Charivari, Volume 99, August 9, 1890 etext12829 Rémusat, Charles de, 1797-1875 Abélard, Tome I etext12859 Mason, A. E. W. (Alfred Edward Woodley), 1865-1948 Ensign Knightley and Other Stories etext12867 Dante Alighieri, 1265-1321 The Banquet (Il Convito) etext12891 Mason, A. E. W. (Alfred Edward Woodley), 1865-1948 Running Water etext12897 Various The Mirror of Literature, Amusement, and Instruction etext12915 Webster, John, 1580-1625 The White Devil etext12941 Ferguson, Donald The Scranton High Chums on the Cinder Path etext12953 Hunter, C. L. Sketches of Western North Carolina, Historical and Biographical etext12974 Kellogg, Alice Maude, 1862-1911 Christmas Entertainments etext12988 Thomas, Augustus, 1857-1934 Representative Plays by American Dramatists: 1856-1911: in Mizzoura etext13004 Burgess, Gelett, 1866-1951 More Goops and How Not to Be Them etext13028 Library of the World's Best Literature, Ancient and Modern — Volume 3 etext13038 Caro, Elme George Sand etext13087 Garis, Howard Roger, 1873-1962 Sammie and Susie Littletail etext13097 Hayward, Arthur L. Lives of the Most Remarkable Criminals Who have been Condemned and Executed for Murder, the Highway, Housebreaking, Street Robberies, Coining or other offences etext13107 Thompson, Holland, 1873-1940 The New South etext13115 Tylor, Edward Burnett Anahuac : or, Mexico and the Mexicans, Ancient and Modern etext13119 Hurll, Estelle M. (Estelle May), 1863-1924 Jean Francois Millet etext13146 Miller, Alice Duer, 1874-1942 The Beauty and the Bolshevist etext13177 etext13185 Various Punch, or the London Charivari, Volume 100, March 7, 1891 etext13258 Sand, George, 1804-1876 Consuelo, Tome 2 (1861) etext13272 Beethoven, Ludwig van, 1770-1827 Beethoven's Letters 1790-1826, Volume 2 etext13331 Corlette, Hubert C. (Hubert Christian) Bell's Cathedrals: The Cathedral Church of Chichester (1901) etext13385 Malot, Hector, 1830-1907 Comte du Pape etext13413 Chekhov, Anton Pavlovich, 1860-1904 The Party etext13418 Chekhov, Anton Pavlovich, 1860-1904 The Chorus Girl and Other Stories etext13421 Various Punch, or the London Charivari, Volume 100, June 27, 1891 etext13425 Beaumont, Francis, 1584-1616 Wit Without Money etext13435 Carlyle, Thomas, 1795-1881 On the Choice of Books etext13437 Best Russian Short Stories etext13441 Milne, A. A. (Alan Alexander), 1882-1956 The Sunny Side etext13454 Watts-Dunton, Theodore, 1832-1914 Aylwin etext13509 Arthur, T. S. (Timothy Shay), 1809-1885 Grappling with the Monster etext13522 Sinclair, May, 1863-1946 Superseded etext13533 Lamoreaux, Antoinette Abernethy The Unfolding Life etext13556 Barbour, Ralph Henry, 1870-1944 Behind the line etext13641 Various The American Missionary — Volume 42, No. 10, October, 1888 etext13647 Lear, Edward, 1812-1888 Nonsense Songs etext13660 etext13685 Tappan, Eva March, 1854-1930 The Children's Hour, v 5. Stories From Seven Old Favorites etext13686 Medrano, Pura Nang Bata Pa Kami etext13718 Bacon, Edwin M. Manual of Ship Subsidies etext13752 Whistler, Charles W. (Charles Watts), 1856-1913 Wulfric the Weapon Thane etext13802 Engelen, Clara Indrukken van Finland etext13813 Chambers, Robert W. (Robert William), 1865-1933 The Common Law etext13831 Gulick, Sidney Lewis, 1860-1945 Evolution Of The Japanese, Social And Psychic etext13860 etext14063 Hagen, Alfred Reis naar de Nieuwe Hebriden en de Salomons-eilanden etext14146 Various Punch, or the London Charivari, Volume 156, February 19, 1919 etext14234 Bindloss, Harold, 1866-1945 The Lure of the North etext14272 Various Punch, Or The London Charivari, Volume 102, January 30, 1892 etext14339 Tapper, Thomas Music Talks with Children etext14357 Jones, Abel J. (Abel John), 1878-1949 Rudolph Eucken : a philosophy of life etext14407 Potter, Beatrix, 1866-1943 The Tale of Benjamin Bunny etext14455 Various Punch, or the London Charivari, Volume 152, March 21, 1917 etext14457 Rinehart, Mary Roberts, 1876-1958 Kings, Queens and Pawns etext14487 Bennett, Arnold, 1867-1931 The Lion's Share etext14496 Putnam, Ruth, 1856-1931 Charles the Bold etext14510 Hurlbert, William Henry, 1827-1895 Ireland Under Coercion (2nd ed.) (1 of 2) (1888) etext14512 Berthoud, Samuel-Henry Les Filleules de Rubens, Tome I etext14561 Verschuur, Gerrit Reis naar de Fidsji-eilanden etext14572 Van Dyke, Henry, 1852-1933 The Spirit of Christmas etext14661 Kearns, Thomas, 1862-1918 Conditions in Utah etext14682 Harland, Henry, 1861-1905 My Friend Prospero etext14698 Bindloss, Harold, 1866-1945 Ranching for Sylvia etext14804 Léo, André La Guerre Sociale etext14821 Sherley, George Douglass, 1857-1917 A Spray of Kentucky Pine etext14835 Miller, Alice Duer, 1874-1942 The Burglar and the Blizzard etext14906 Runciman, Thomas, 1841-1909 Songs, Sonnets & Miscellaneous Poems etext14916 Fairy Tales Every Child Should Know etext14926 Various Punch, or the London Charivari, Volume 1, September 5, 1841 etext14982 Mabini, Apolinario, 1864-1903 Panukala sa Pagkakana nang Repúblika nang Pilipinas etext14994 Church, Alfred John, 1829-1912 Stories from the Greek Tragedians etext14997 Döring, Heinrich, 1789-1862 Friedrich v. Schiller's Biographie etext15009 Päivärinta, Pietari, 1827-1913 Elämän hawainnoita IX: Sowittaja; Paljon uutta; Keron Heikki etext15043 Burke, Edmund, 1729-1797 The Works of the Right Honourable Edmund Burke, Vol. 01 (of 12) etext15049 Various Punch, or the London Charivari, Volume 103, August 20, 1892 etext15050 Various Scientific American Supplement, No. 810, July 11, 1891 etext15058 Ségur, Sophie, comtesse de, 1799-1874 Les malheurs de Sophie etext15059 Ségur, Sophie, comtesse de, 1799-1874 Les petites filles modèles etext15089 Davis, Richard Harding, 1864-1916 The Deserter etext15092 Various The Aldine, Vol. 5, No. 1., January, 1872 etext15101 Glass, Nannie R., 1842- The Mountain Spring and Other Poems etext15259 Oxenham, John, 1852-1941 Pearl of Pearl Island etext15286 Lescallier, Daniel Réflexions sur le sort des Noirs dans nos colonies etext15340 Hahnsson, Theodolinda (Sofia Theodolinda), 1838-1919 Joululahjat etext15369 Runciman, John F., 1866-1916 Old Scores and New Readings etext15424 Bennett, Emerson Ella Barnwell etext15446 Brower, Harriette, 1869-1928 Vocal Mastery etext15459 Chancel, Ausone de Cham et Japhet, ou De l'émigration des nègres chez les blancs considérée comme moyen providentiel de régénérer la race nègre et de civiliser l'Afrique intérieure. etext15462 Apollinaire, Guillaume, 1880-1918 Alcools etext15511 Leonard, Mary Finley, 1862- Mr. Pat's Little Girl etext15517 Evelyn, John, 1620-1706 Acetaria: A Discourse of Sallets etext15534 Masters, Edgar Lee, 1868-1950 Children of the Market Place etext15544 Stone, Barney Love Letters of a Rookie to Julie etext15653 Penrose, Margaret Dorothy Dale's Queer Holidays etext15775 Warner, Anne, 1869-1913 The Rejuvenation of Aunt Mary etext15798 Coolidge, Susan, 1835-1905 Clover etext15809 Greenaway, Kate, 1846-1901 A Apple Pie etext15858 The Social Emergency etext15863 Cleveland, Grover, 1837-1908 A Compilation of the Messages and Papers of the Presidents etext15877 Marcus Aurelius, Emperor of Rome, 121-180 Thoughts of Marcus Aurelius Antoninus etext15890 Rohlfs, Gerhard, 1831-1896 Mein erster Aufenthalt in Marokko und Reise südlich vom Atlas durch die Oasen Draa und Tafilet. etext15911 Franchere, Gabriel, 1786-1863 Narrative of a Voyage to the Northwest Coast of America in the years 1811, 1812, 1813, and 1814 or the First American Settlement on the Pacific etext15984 Warner, Charles Dudley, 1829-1900 Washington Irving etext16007 Carleton, William, 1794-1869 The Dead Boxer etext16019 Carleton, William, 1794-1869 Phelim Otoole's Courtship and Other Stories etext16055 Kunz, George Frederick Shakespeare and Precious Stones etext16059 Modern Spanish Lyrics etext16161 Rawlinson, George, 1812-1902 The Seven Great Monarchies Of The Ancient Eastern World, Vol 1. (of 7): Chaldaea etext16175 Various The Great Round World And What Is Going On In It, Vol. 1, November 4, 1897, No. 52 etext16189 Dante Alighieri, 1265-1321 La Divina Comèdia: Paradìs etext16275 Rowe, Nicholas, 1674-1718 Some Account of the Life of Mr. William Shakespear (1709) etext16321 Hay, John, 1835-1905 The Bread-winners etext16328 Beowulf etext16331 Various New York Times Current History: The European War from the Beginning to March 1915, Vol 1, No. 2 etext16359 Whyte, Alexander, 1836-1921 Sir Thomas Browne and his 'Religio Medici' etext16416 Ruud, Martin Brown, 1885-1941 An Essay Toward a History of Shakespeare in Norway etext16485 Thicknesse, Philip, 1719-1792 A Year's Journey through France and Part of Spain, 1777 etext16578 Kipling, Rudyard, 1865-1936 The Kipling Reader etext16650 The Complete Home etext16663 Bailey, Arthur Scott, 1877-1949 The Tale of Solomon Owl etext16676 Addison, Alvin Eveline Mandeville etext16684 Various Punch, or the London Charivari, Volume 159, July 7th, 1920 etext16691 Maurice, Arthur Bartlett, 1873-1946 Fifth Avenue etext16703 etext16856 Percival, John, 1834-1918 Sermons at Rugby etext16862 Moinaux, Jules, 1825-1895 Le monsieur au parapluie etext16864 M'lean, John Notes of a Twenty-Five Years' Service in the Hudson's Bay Territory etext16870 Hart, William S. Injun and Whitey to the Rescue etext16900 Goodrich, Charles Landon, 1859- The First Book of Farming etext16916 Payne, Henry Nevil, -1710? The Fatal Jealousie (1673) etext16961 Pérez Galdós, Benito, 1843-1920 Trafalgar etext16991 Mitchell, Lebbeus, 1879-1963 The Circus Comes to Town etext17048 Glyn, Elinor, 1864-1943 The Man and the Moment etext17094 Johnston, Annie F. (Annie Fellows), 1863-1931 The Story of the Red Cross as told to The Little Colonel etext17109 Unknown Through Palestine with the Twentieth Machine Gun Squadron etext17127 Holberg, Ludvig, baron, 1684-1754 Nicolai Klimii iter subterraneum etext17142 Schnitzler, Arthur, 1862-1931 Die griechische Tänzerin etext17156 Lloyd, Nelson, 1873-1933 The Soldier of the Valley etext17189 Autumn Leaves etext17198 Curtis, William, 1746-1799 The Botanical Magazine, Vol. 1 etext17230 Coubé, Stephen, 1857-1938 Alsace, Lorraine et France rhénane etext17335 Assollant, Alfred, 1827-1886 Aventures merveilleuses mais authentiques du capitaine Corcoran etext17418 Woodrow, Wilson, Mrs., 1870-1935 The Black Pearl etext17479 Tissot, S. A. D. (Samuel Auguste David), 1728-1797 Ang Mahusay na Paraan nang Pag-Gamot sa manga Maysaquit etext17481 Baxter, Arthur Beverley, 1891-1964 The Parts Men Play etext17500 Hardy, Thomas, 1840-1928 The Return of the Native etext17517 Zola, Émile, 1840-1902 L'oeuvre etext17612 Randall, John, 1810-1910 Handbook to the Severn Valley Railway etext17691 Graffigny, H. de (Henry), 1863-1934 Le tour de France en aéroplane etext17716 Corbière, Édouard, 1793-1875 Le Négrier, Vol. III etext17820 Delaney, Lucy A. (Lucy Ann), 1828?- From the Darkness Cometh the Light, or Struggles for Freedom etext17841 etext17901 Sloane, Julia M. The Smiling Hill-Top etext17910 Williamson, Robert Wood, 1856-1932 The Mafulu etext17912 Michaelis, Richard, 1839-1909 Kommunistinen yhteiskunta vuonna 2000 etext17931 Aina, 1856-1928 Iltalampun ääressä II etext17984 Desfontaines, Nicolas-Marc, -1652 L'illustre comédien, ou Le martyre de Sainct Genest etext18005 Pardo Bazán, Emilia, condesa de, 1852-1921 Los pazos de Ulloa etext18018 Belloc, Hilaire, 1870-1953 The Free Press etext18055 Goncourt, Edmond de, 1822-1896 Journal des Goncourt (Troisième série, troisième volume) etext18058 Finley, Martha, 1828-1909 Elsie's Vacation and After Events etext18081 Fabre, Jean-Henri, 1823-1915 Nouveaux souvenirs entomologiques - Livre II etext18085 Bricaud, Joanny, 1881-1934 J.-K. Huysmans et le satanisme etext18131 Johnston, Annie F. (Annie Fellows), 1863-1931 The Rescue of the Princess Winsome etext18216 Laut, Agnes C. (Agnes Christina), 1871-1936 Pathfinders of the West etext18287 Swinburne, Algernon Charles, 1837-1909 Songs of the Springtides and Birthday Ode etext18293 Various The Girl's Own Paper, Vol. VIII, No. 354, October 9, 1886 etext18302 Gaboriau, Émile, 1832-1873 L'argent des autres etext18343 Browning, Robert, 1812-1889 The Pied Piper of Hamelin etext18372 Various The Argosy etext18456 Pirandello, Luigi, 1867-1936 Enrico IV etext18518 Anonymous Fête aérostatique, qui sera célébrée aujourd'hui au champ de Mars; Aréostation: établissement d'une compagnie aéronautique etext18532 London, Jack, 1876-1916 Verhalen van de Zuidzee etext18557 Hillis, Newell Dwight, 1858-1929 The Battle of Principles etext18580 Alarcón, Juan Ruiz de, 1581?-1639 Los favores del mundo etext18777 Byerley, Lucy Ruth Arnold etext18794 De Wet, Christiaan Rudolf, 1854-1922 Strijd tusschen Boer en Brit. English etext18827 Young, Edward, 1683-1765 The Poetical Works of Edward Young, Volume 2 etext18837 Caesar, Julius, 100 BC-44 BC Commentarii de Bello Gallico etext18852 Various The Brochure Series of Architectural Illustration, Volume 01, No. 03, March 1895 etext18892 Symonds, John Addington, 1840-1893 Sketches and Studies in Italy and Greece, Third series etext18902 Bassett, Sara Ware, 1872-1968 Flood Tide etext18959 Gibson, Hugh, 1883-1954 A Journal From Our Legation in Belgium etext18966 Laboulaye, Edouard, 1811-1883 Abdallah eli nelilehtinen apila etext18975 Peary, Robert E. (Robert Edwin), 1856-1920 The North Pole etext19023 King, Charles, 1844-1933 A Daughter of the Sioux etext19068 etext19139 Haring, Clarence Henry, 1885-1960 The Buccaneers in the West Indies in the XVII Century etext19189 Bocage, Manuel Maria Barbosa du, 1765-1805 A virtude laureada etext19268 Universal House of Justice Compilation on Peace etext19288 Townsend, George Alfred, 1841-1914 Bohemian Days etext19309 Newcomb, Simon, 1835-1909 The Reminiscences of an Astronomer etext19335 Halsey, Harlan Page, 1839?-1898 Oscar the Detective etext19370 Piper, H. Beam, 1904-1964 Ullr Uprising etext19393 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 Plays of Near & Far etext19457 Morris, Charles, 1833-1922 Historical Tales - The Romance of Reality - Volume VII etext19487 Fisher, A. Hugh (Alfred Hugh), 1867-1945 Bell’s Cathedrals: The Cathedral Church of Hereford, A Description etext19533 Macomber, Hattie E. Stories of Great Inventors etext19574 Andersen, H. C. (Hans Christian), 1805-1875 Andersen's Fairy Tales etext19621 Aesop, 620 BC-563 BC Aesop's Fables - Volume 06 etext18684 White, William Allen, 1868-1944 A Certain Rich Man etext19642 McCabe, James Dabney, 1842-1883 Lights and Shadows of New York Life etext19729 Leipoldt, C. Louis, 1880-1947 Oom Gert Vertel en Ander Gedigte etext19759 United States. Council of National Defense. Highway Transport Committee Address by Honorable Franklin K. Lane, Secretary of the Interior at Conference of Regional Chairmen of the Highway Transport Committee Council of National Defense etext19785 United States Declaration of Independence of the United States of America etext19787 Stamp Act Congress of 1765 Declaration of Rights etext19805 Potter, Beatrix, 1866-1943 The Tale of Mr. Tod etext19821 Various The Nursery, No. 103, July, 1875. Vol. XVIII. etext19831 Davis, Jefferson, 1808-1889 The Rise and Fall of the Confederate Government etext19873 Högman, Aukusti Merimiehen matkamuistelmia II etext19885 Mantegazza, Paolo, 1831-1910 L'arte di prender marito etext20007 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 Lord George Bentinck etext20029 etext20090 De Quincey, Thomas, 1785-1859 The Uncollected Writings of Thomas de Quincey, Vol. 2 etext20139 Huneker, James, 1857-1921 Old Fogy etext20180 Mitchell, S. Weir (Silas Weir), 1829-1914 Mr. Kris Kringle etext20213 Abbott, Eleanor Hallowell, 1872-1958 Peace on Earth, Good-will to Dogs etext20259 Roosevelt, Wyn, 1870- Frontier Boys in Frisco etext20264 Haweis, H. R. (Hugh Reginald), 1839-1901 Parsifal etext20302 Hauptmann, Gerhart, 1862-1946 Der Ketzer von Soana etext20314 Graetz, Anna Pearl and Periwinkle etext20392 Various Punch, or the London Charivari, Volume 159, November 24, 1920 etext20402 Beard, Charles, 1827-1888 Beside the Still Waters etext20420 Stead, William T. Real Ghost Stories etext20464 Butler, Joseph G. (Joseph Green), 1840-1927 A Journey Through France in War Time etext20585 Carlyle, Thomas, 1795-1881 Sartor Resartus, and On Heroes, Hero-Worship, and the Heroic in History etext20661 Field, Roswell Martin, 1851-1919 The Romance of an Old Fool etext20717 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Girl on the Boat etext20729 Henty, G. A. (George Alfred), 1832-1902 At the Point of the Bayonet etext20976 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 The History of England, from the Accession etext20989 Spokeshave (AKA Old Fogy) 'A Comedy of Errors' in Seven Acts etext21043 Reed, Talbot Baines, 1852-1893 Reginald Cruden etext21063 Collingwood, Harry, 1851-1922 The Missing Merchantman etext21100 Shakespeare, William, 1564-1616 Titus Andronicus etext21150 Baum, L. Frank (Lyman Frank), 1856-1919 Mother Goose in Prose etext21204 Miller, George Laing The Recent Revolution in Organ Building etext21220 Various Notes and Queries, Number 180, April 9, 1853 etext21244 Young, Egerton Ryerson, 1840-1909 By Canoe and Dog-Train etext21282 Palma, Ricardo, 1833-1919 Tradiciones peruanas etext21336 Jacobs, W. W. (William Wymark), 1863-1943 The Skipper's Wooing, and The Brown Man's Servant etext21376 Fenn, George Manville, 1831-1909 Will of the Mill etext21409 Le Sage, Alain René, 1668-1747 De Zonderlinge Lotgevallen van Gil Blas van Santillano etext21462 Kingston, William Henry Giles, 1814-1880 The Frontier Fort etext22156 Rolt-Wheeler, Francis, 1876-1960 The Boy with the U. S. Weather Men etext22195 Baker, Sarah S. (Sarah Schoonmaker), 1824-1906 Little Tora, The Swedish Schoolmistress and Other Stories etext22207 Murray, David Christie, 1847-1907 The Romance Of Giovanni Calvotti etext22223 English Songs and Ballads etext22304 Taylor, C. Bryson, 1880- Nicanor - Teller of Tales etext22408 Anonymous Chatterbox Stories of Natural History etext22482 Shepherd, Ambrose Men in the Making etext22502 etext22530 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 From Place to Place etext22600 Abbott, Edwin Abbott, 1838-1926 How to Write Clearly etext22630 M., Antonino Der Roman eines geborenen Verbrechers etext22699 Morley, Christopher, 1890-1957 Pipefuls etext22705 Bellamy, Edward, 1850-1898 A Summer Evening's Dream etext22742 Herculano, Alexandre, 1810-1877 A Harpa do Crente etext22769 Dante Alighieri, 1265-1321 L'enfer (2 of 2) etext22801 Negreiros, José Sobral de Almada, 1893-1970 A Invenção do Dia Claro etext22829 Wheldon, Rupert H. No Animal Food etext22860 The First Epistle of Paul to the Thessalonians etext22943 Falkner, John Meade, 1858-1932 The Nebuly Coat etext23010 Harris, Frank, 1856-1931 Gulmore, The Boss etext23013 Page, Thomas Nelson, 1853-1922 "George Washington's" Last Duel etext23217 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 The Roll-Call Of The Reef etext23242 Spearman, Frank H. (Frank Hamilton), 1859-1937 Laramie Holds the Range etext23352 Comical People etext23425 Bethge, Hans, 1876-1946 Die Kurtisane Jamaica etext23430 Abbott, Jacob, 1803-1879 Rollo in Rome etext23469 McCarthy, Justin, 1830-1912 A History of the Four Georges, Volume I etext23505 Ballantyne, R. M. (Robert Michael), 1825-1894 Freaks on the Fells etext23529 Various Blackwood's Edinburgh Magazine - Volume 55, No. 344, June, 1844 etext23542 Metcalfe, Francis Side Show Studies etext23581 etext23598 Brooke, L. Leslie (Leonard Leslie), 1862-1940 Little Bo-Peep etext23638 Scully, W. C. (William Charles), 1855-1943 Reminiscences of a South African Pioneer etext23647 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Shining Ferry etext23666 Windsor, H. H. (Henry Haven), 1859-1924 Mission Furniture etext23716 Carroll, Lewis, 1832-1898 Alice's Adventures in Wonderland etext23772 Donne, John, 1572-1631 Devotions Upon Emergent Occasions etext23815 Various Punch, or the London Charivari, Vol. 146, April 22, 1914 etext23821 Becke, Louis, 1855-1913 Yorke The Adventurer etext23844 Huineng, 638-713 六祖壇經 etext23871 Harris, Joel Chandler, 1848-1908 A Little Union Scout etext23884 Smith, George O. (George Oliver), 1911-1981 History Repeats etext23944 Le Feuvre, Amy, -1929 Bulbs and Blossoms etext23962 Wu, Cheng'en, 1500-1582 西遊記 etext23979 Whitman, Walt, 1819-1892 Leaves of Grass etext23981 Ma, Huan, fl. 1414-1451 瀛涯勝覽 etext23994 Lorimer, Norma, 1864-1948 There was a King in Egypt etext24000 Trollope, Anthony, 1815-1882 Miss Mackenzie etext24064 Garrett, Randall, 1927-1987 Damned If You Don't etext24094 Black, William, 1841-1898 The Beautiful Wretch; The Pupil of Aurelius; and The Four Macnicols etext24217 Balzac, Honoré de, 1799-1850 La Maison du Chat-qui-pelote etext24230 Baowenglaoren 今古奇觀 etext24242 Champness, Thomas, 1832-1905 Broken Bread etext24264 Cao, Xueqin, 1717?-1763 紅樓夢 etext24270 Becke, Louis, 1855-1913 Tom Gerrard etext24318 Various Punch, or the London Charivari, May 13, 1914 etext24338 Lima, Jaime de Magalhães, 1859-1936 O Vegetarismo e a Moralidade das raças etext24340 Spargo, John, 1876-1966 The Common Sense of Socialism etext24345 Smiles, Samuel, 1852?- A Boy's Voyage Round the World etext24400 Abbott, John S. C. (John Stevens Cabot), 1805-1877 The Adventures of the Chevalier De La Salle and His Companions, in Their Explorations of the Prairies, Forests, Lakes, and Rivers, of the New World, and Their Interviews with the Savage Tribes, Two Hundred Years Ago etext24431 Byrne, Mary Agnes Peggy-Alone etext24520 Duncan, Norman, 1871-1916 Harbor Tales Down North etext24740 Shellenberger, John K., 1843?- The Battle of Spring Hill, Tennessee etext24743 Daudet, Alphonse, 1840-1897 Les rois en exil. Finnish etext24755 Kingston, William Henry Giles, 1814-1880 Captain Cook etext24850 Zola, Émile, 1840-1902 Les trois villes: Lourdes etext24877 Montgomery, L. M. (Lucy Maud), 1874-1942 Lucy Maud Montgomery Short Stories, 1907 to 1908 etext24891 Osborn, Sherard, 1822-1875 Stray Leaves from an Arctic Journal; etext24913 Tenneshaw, S. M. The Monster etext24930 Greeley, Horace, 1811-1872 Glances at Europe etext24971 Peck, Ellen Mary Hayes Travels in the Far East etext24974 Ontario. Ministry of Education Ontario Teachers' Manuals: Literature etext24983 Crastre, François Twee groote steden in Brazilië etext25010 Various Punch, or the London Charivari, Vol. 146, April 29, 1914 etext25035 Silverberg, Robert, 1935- The Happy Unfortunate etext25050 etext25095 Barnum, Vance Joe Strong, the Boy Fish etext25107 Becke, Louis, 1855-1913 Sarréo etext25114 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Noites de insomnia, offerecidas a quem não póde dormir. Nº4 (de 12) etext25119 Warburton, George, 1816-1857 The Conquest of Canada (Vol. 1 of 2) etext25124 Liu, E, 1857-1909 老殘遊記 etext25191 Various The Continental Monthly, Vol 3 No 3, March 1863 etext25228 Liu, Yong, jin shi 1034 樂章集 etext25248 Luo, Guanzhong, 1330?-1400? 平妖傳 etext25268 Hurll, Estelle M. (Estelle May), 1863-1924 Child-life in Art etext25328 Ainajushi 豆棚閒話 etext25358 Oxley, J. Macdonald (James Macdonald), 1855-1907 Bert Lloyd's Boyhood etext25372 Various The Idler Magazine, Volume III., July 1893 etext25482 United States. Dept. of Defense The Armed Forces Officer etext25514 Labelle, Claude A. The Ranger Boys and the Border Smugglers etext25526 Mars, Mademoiselle, 1779-1847 Mémoires de Mademoiselle Mars (volume II) etext25532 etext25556 Catherwood, Mary Hartwell, 1847-1902 Heroes of the Middle West etext25570 Caine, Hall, Sir, 1853-1931 The Manxman etext25600 Patch, Edith M. (Edith Marion), 1876- Bird Stories etext25601 Hammond, William Alexander, 1828-1900 Fasting Girls etext25694 Shakespeare, William, 1564-1616 Venus et Adonis etext25718 Roberts, Charles George Douglas, Sir, 1860-1943 The Watchers of the Trails etext25749 Bartimeus, 1886-1967 A Tall Ship etext25783 Weiss, Carl, 1887- Experimentelle Untersuchungen über die Frage »Ist die Furcht vor Krankheitsübertragung durch das Telephon berechtigt«? etext25790 Genetz, Arvid, 1848-1915 Muistoja ja toiveita ystäville jouluksi etext25791 Kafka, Franz, 1883-1924 In der Strafkolonie etext25934 Testa, Carlos, 1823-1891 Portugal e Marrocos perante a historia e a politica europea etext25941 Allen, F. G. (Frank Gibbs), 1836-1887 Autobiography of Frank G. Allen, Minister of the Gospel etext25942 Tinker, Chauncey Brewster, 1876-1963 The Translations of Beowulf etext25996 Anonymous Arabian nights. Selections. Finnish etext26037 etext26040 Boardman, Timothy, 1754-1838 Log-book of Timothy Boardman etext26090 Henty, G. A. (George Alfred), 1832-1902 Condemned as a Nihilist etext26149 Barbour, Ralph Henry, 1870-1944 Left Guard Gilbert etext26203 Twain, Mark, 1835-1910 The Adventures of Tom Sawyer etext26208 Blanchard, Amy Ella, 1856-1926 Three Little Cousins etext26278 Various The Christian Foundation, Or, Scientific and Religious Journal, Volume 1, January, 1880 etext26320 Van Vechten, Carl, 1880-1964 The Merry-Go-Round etext26345 Roy, Lillian Elizabeth, 1868-1932 Girl Scouts in the Adirondacks etext26372 Snell, Roy J. (Roy Judson), 1878-1959 Panther Eye etext26383 Martin, Stapleton, 1846-1922 Anna Seward etext26400 Descartes, René, 1596-1650 La géométrie etext26473 Kevorkian, Hagop K. The Arts of Persia etext26485 Chester, George Randolph, 1869-1924 The Making of Bobby Burnit etext26515 Chevalier, Michel, 1806-1879 L'isthme de Panama etext26517 Judson, Clara Ingram, 1879-1950 Mary Jane's City Home etext26565 Allen, William Alonzo, 1848- The Sheep Eaters etext26610 Lewis, Sinclair, 1885-1951 The Trail of the Hawk etext26668 Sala, George Augustus, 1828-1895 The Strange Adventures of Captain Dangerous, Vol. 2 etext26689 Nieritz, Gustav, 1795-1876 Tyttö Helgolannista etext26744 Taylor, James Hudson, 1832-1905 A Retrospect etext26748 Yanxiazhuren, 18th cent. 幻中游 etext26759 Shakespeare, William, 1564-1616 La vie et la mort du roi Richard III etext26787 Alf the Freebooter etext26792 Grimmer and Kamper etext26802 King Diderik etext26842 Santayana, George, 1863-1952 The Sense of Beauty etext26869 Paton, Raymond The Tale of Lal etext26871 Luo, Guanzhong, 1330?-1400? 粉妝樓全傳 etext24350 Wharton, Edith, 1862-1937 Kerfol etext26896 Various Notes and Queries, Number 76, April 12, 1851 etext26908 Marcet, Mrs. (Jane Haldimand), 1769-1858 Conversations on Chemistry, V. 1-2 etext26927 Yrjö-Koskinen, Yrjö Sakari, 1830-1903 Opiksi ja huviksi etext26946 Trumbull, J. Hammond (James Hammond), 1821-1897 The Defence of Stonington (Connecticut) Against a British Squadron, August 9th to 12th, 1814 etext26964 Luxemburg, Rosa, 1871-1919 Briefe aus dem Gefängnis etext26982 Parry, D. H. With Haig on the Somme etext27003 Various Notes and Queries, Number 203, September 17, 1853 etext27046 Lebert, Marie Le Projet Gutenberg (1971-2008) etext27076 Griffenhagen, George B. Drug Supplies in the American Revolution etext27090 Great Pirate Stories etext27098 Lebert, Marie Technology and Books for All etext27114 Lord, John, 1810-1894 Ancient States and Empires etext27136 Cole, Almira Stillwell Six Days on the Hurricane Deck of a Mule etext27142 Andersen, H. C. (Hans Christian), 1805-1875 Contes D'Andersen etext27155 Osório, Ana de Castro, 1872-1935 Infelizes etext27167 Blasco, Cosme, 1838-1900 Historia de Teruel etext27179 Kochanowski, Jan, 1530-1584 Laments etext27187 Martin, George Madden, 1866-1936 A Warwickshire Lad etext27238 Welsh, Peter C. Woodworking Tools 1600-1900 etext27342 Chambers, Robert W. (Robert William), 1865-1933 Athalie etext27347 Dickinson, G. Lowes (Goldsworthy Lowes), 1862-1932 Appearances etext27414 Mingjiaozhongren, pseud. 好逑傳 etext27426 Hutchens, Paul, 1902- Shenanigans at Sugar Creek etext27467 Stories to Read or Tell from Fairy Tales and Folklore etext27491 Graham, Roger Phillips, 1909-1965 Unthinkable etext27492 Wesley, Joseph Upstarts etext27496 Various Continental Monthly, Vol. 4, No 3, September 1863 etext27565 Bársony, István, 1855-1928 Magyar élet etext27605 Various Notes and Queries, Number 227, March 4, 1854 etext27662 Various Scientific American Supplement, No. 488, May 9, 1885 etext27707 Forbes, F. A. (Frances Alice), 1869-1936 Saint Athanasius etext27716 Peter, Grace Dunlop A Portrait of Old George Town etext27721 Goeverneur, J. J. A. (Johan Jacob Antonie), 1809-1889 De heele wereld rond etext27733 Ready, Oliver George Through Siberia and Manchuria By Rail etext27735 Roberts, Elizabeth Madox, 1881-1941 In the Great Steep's Garden etext27777 Crow, Martha Foote, 1854-1924 Lafayette etext17052 Various The Argosy etext27825 D'Annunzio, Gabriele, 1863-1938 Isaotta Guttadàuro ed altre poesie etext27889 Familiar Quotations etext27935 Munsey, Frank Andrew, 1854-1925 Under Fire etext28029 Dante Alighieri, 1265-1321 Het Nieuwe Leven etext28035 Höcker, Oskar, 1840-1894 Elävänä haudattu etext28058 Wade, Frank Bertram, 1875- A Text-Book of Precious Stones for Jewelers and the Gem-Loving Public etext28062 Hamilton, Edmond, 1904-1977 The Man Who Saw the Future etext28064 Edgerton, Joseph K. (Joseph Ketchum), 1818-1893 The Relations of the Federal Government to Slavery etext28120 Ebers, Georg, 1837-1898 Eene Egyptische Koningsdochter etext28137 Various The Nursery, September 1877, Vol. XXII, No. 3 etext28139 Various The Nursery, November 1877, Vol. XXII. No. 5 etext28262 Besant, Annie Wood, 1847-1933 Avatâras etext28294 Wylie, James Aitken, 1808-1890 Pilgrimage from the Alps to the Tiber etext28311 Various Notes and Queries, Number 82, May 24, 1851 etext28320 Duthie, William A Tramp's Wallet etext28331 Ellis, Edward Sylvester, 1840-1916 The Young Ranchers etext28336 Various Blackwood's Edinburgh Magazine, Vol 58, No. 357, July 1845 etext28356 Bower, B. M., 1874-1940 The Ranch at the Wolverine etext28364 Anonymous Bases para a unificação da ortografia que deve ser adoptada nas escolas e publicações oficiais etext28370 Reclus, Elisée, 1830-1905 Nouvelle géographie universelle(1/19) etext28436 Latham, R. G. (Robert Gordon), 1812-1888 A Handbook of the English Language etext28441 Douglas, Amanda Minnie, 1831-1916 A Modern Cinderella etext28450 Gerken, William Stopover etext28491 McCulloch-Williams, Martha, 1857?- Dishes & Beverages of the Old South etext28505 etext28508 Unknown The Comical Creatures from Wurtemberg etext28557 Caldecott, Randolph, 1846-1886 The Panjandrum Picture Book etext28566 Meade, L. T., 1854-1914 Hollyhock etext28671 Elwes, Alfred, 1819?-1888 The Adventures of a Bear etext28673 Various The Christian Foundation, Or, Scientific and Religious Journal, etext28689 MacGregor, Mary Esther Miller, 1876-1961 Duncan Polite etext28723 Anonymous Susan and Edward etext28750 etext28781 Twain, Mark, 1835-1910 Extracts from Adam's Diary etext28782 Barham, George Basil Legend Land, Volume 1 & 2 etext28787 Saint-Elme, Ida, 1778-1845 Mémoires d'une contemporaine etext28895 Various Harper's Young People, May 18, 1880 etext28918 Verne, Jules, 1828-1905 From the Earth to the Moon etext28944 Sabatini, Rafael, 1875-1950 Captain Blood etext28945 Sabatini, Rafael, 1875-1950 Scaramouche etext28983 etext28995 Blair, D. B. Coinneach Odhar etext29004 Zola, Émile, 1840-1902 English Translations Of Works Of Emile Zola etext29045 Curry, Frederic C. From the St. Lawrence to the Yser with the 1st Canadian brigade etext29079 Wuseshizhuren, ju ren 1738 五色石 etext29080 Grey, Zane, 1872-1939 Valley of Wild Horses etext29084 Eaton, Mary, fl. 1823-1849 The Cook and Housekeeper's Complete and Universal Dictionary; Including a System of Modern Cookery, in all Its Various Branches, Adapted to the Use of Private Families etext29107 Abbott, Jacob, 1803-1879 Queen Elizabeth etext29203 Emerson, Alice B. Ruth Fielding at Briarwood Hall etext29210 Sutherland, Howard V. (Howard Vigne), 1868- Out of the North etext29213 Rosny, J.-H., 1856-1940 Vamiré etext29287 Chamberlain, Basil Hall, 1850-1935 Aino Folk-Tales etext29311 Leamy, Edmund, 1848-1904 Irish Fairy Tales etext29380 Molesworth, Mrs., 1839-1921 The Adventures of Herr Baby etext29386 Various Boys and Girls Bookshelf (Vol 2 of 17) etext29448 Leinster, Murray, 1896-1975 Pariah Planet etext29467 Lincoln, Joseph Crosby, 1870-1944 The Project Gutenberg Works Of Joseph Lincoln etext29602 Roberts, James, 1881-1934 The Coyote etext29675 Blade, Zoë Less than Human etext29712 Kieviet, Cornelis Johannes, 1858-1931 Uit het leven van Dik Trom etext29743 Griffith, George Chetwynd, 1857-1906 The Missionary etext29782 Eddington, Arthur Stanley, Sir, 1882-1944 Space, Time and Gravitation etext29825 Delly, pseud. L'étincelle etext29877 etext29913 Besant, W. H. (William Henry), 1828-1917 Conic Sections: Treated Geometrically etext30059 James, Henry, 1843-1916 The Wings of the Dove, Volume II etext30092 Lords of the Housetops etext30165 Twain, Mark, 1835-1910 Die Abenteuer Tom Sawyers etext30170 Winterbotham, R. R. (Russell Robert), 1904-1971 Lonesome Hearts etext30189 etext30296 Sands, Nathaniel The Philosophy of Teaching etext30304 Garrett, Randall, 1927-1987 Psichopath etext30312 Stocking, Charles Francis, 1873- Carmen Ariza etext30385 etext30461 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 A Morgadinha de Val-D'Amores/Entre a Flauta e a Viola etext30471 Emerson, Alice B. Betty Gordon in the Land of Oil etext30473 Vondel, Joost van den, 1587-1679 De complete werken van Joost van Vondel etext30475 Woodley, J. B. With a Vengeance etext30502 Atherton, Gertrude Franklin Horn, 1857-1948 The Gorgeous Isle etext30514 Tocqueville, Alexis de, 1805-1859 De la Démocratie en Amérique, tome deuxième etext30561 etext30567 Ogden, George W. (George Washington), 1871-1966 The Bondboy etext30589 Stephens, Robert Neilson, 1867-1906 The Continental Dragoon etext30593 Various Punch, or the London Charivari, Vol. CLVIII, January 7, 1920 etext30641 Various Notes and Queries, Number 232, April 8, 1854 etext30644 Various Notes and Queries, Number 233, April 15, 1854 etext30661 Rosenkranz, Karl, 1805-1879 Pedagogics as a System etext30687 Noyes, Alfred, 1880-1958 The Lord of Misrule etext30710 Cramb, J. A. (John Adam), 1862-1913 The Origins and Destiny of Imperial Britain etext30718 Steiner, Rudolf, 1861-1925 An Outline of Occult Science etext30737 Miller, Hugh, 1802-1856 My Schools and Schoolmasters etext30752 Le Plongeon, Augustus, 1826-1908 Vestiges of the Mayas etext30754 Ruskin, John, 1819-1900 The Stones of Venice, Volume I (of 3) etext30864 Stratemeyer, Edward, 1862-1930 The Missing Tin Box etext31094 Nourse, Alan Edward, 1928-1992 Bear Trap etext31122 Murfree, Mary Noailles, 1850-1922 The Mystery of Witch-Face Mountain and Other Stories etext31136 Jones, J. Knox, 1929-1992 Distribution of Some Nebraskan Mammals etext31173 Quiller-Couch, Mabel, 1866-1924 Anxious Audrey etext31369 Keith, Arthur, 1866-1955 Nationality and Race from an Anthropologist's Point of View etext31383 Dabney, Thomas Ewing The Industrial Canal and Inner Harbor of New Orleans etext31396 Overton, Mark Jack Winters' Baseball Team etext31432 Ginguené, Pierre-Louis Histoire littéraire d'Italie (1/9) etext31461 Schulz, Bruno, 1865-1932 Das Grabmal des Theoderich zu Ravenna und seine Stellung in der etext31466 Roscoe, William, 1753-1831 The Council of Dogs etext31480 Day, Clarence, 1874-1935 The Crow's Nest etext31483 Fanny, Aunt, 1822-1894 The First Little Pet Book with Ten Short Stories in Words of Three and Four Letters etext31512 Seltzer, Charles Alden, 1875-1942 The Coming of the Law etext31531 Langie, Karol O Sprawie Glodowej W Galicyi 1866 etext31660 Döblin, Alfred, 1878-1957 Die Ermordung einer Butterblume und andere Erzählungen etext31729 Various The Apple etext31739 etext31766 Anonymous Five Hundred Mistakes of Daily Occurrence in Speaking, Pronouncing, and Writing the English Language, Corrected etext31776 McElroy, John, 1846-1929 Si Klegg, Book 6 (of 6) etext31791 etext31796 Minto, William, 1845-1893 Logic, Inductive and Deductive etext31798 MacLean, Katherine, 1925- Games etext31802 New Testament. Greek etext31806 Martin, George Madden, 1866-1936 The House of Fulfilment etext31812 Åberg, Jon Olof Adlercreutzin sanansaattaja etext31813 Blossom, Henry M. Checkers etext31822 Commerce, Atlanta Chamber of Atlanta etext31839 Douglass, Frederick, 1818-1895 John Brown etext31845 Vasari, Giorgio, 1511-1574 Lives of the most Eminent Painters Sculptors and Architects etext31877 Rice, Cale Young, 1872-1943 Sea Poems etext31940 Cary, Elisabeth Luther Artists Past and Present etext31996 Riis, Jacob A. (Jacob August), 1849-1914 Is There a Santa Claus? etext31999 King, W. James The Natural Philosophy of William Gilbert and His Predecessors etext32036 Sturgis, Melvin The Unprotected Species etext32041 Sheckley, Robert, 1928-2005 One Man's Poison etext32057 Bonehill, Ralph Boys of The Fort etext32091 De la Mare, Walter, 1873-1956 Down-Adown-Derry etext32094 Baum, L. Frank (Lyman Frank), 1856-1919 The Patchwork Girl of Oz etext32109 Hauff, Wilhelm, 1802-1827 Tales of the Caravan, Inn, and Palace etext32202 Various The Irish Fairy Book etext32230 Shaara, Michael Wainer etext32303 Stearns, Charles A. Pastoral Affair etext32360 Bixby, Jerome, 1923-1998 The Holes Around Mars etext32407 Wald, E. G. von Fair and Warmer etext32531 Locke, Robert Donald Deepfreeze etext32553 Davies, Mary Carolyn A Little Freckled Person etext32569 Mitford, Bertram, 1855-1914 The Luck of Gerard Ridgeley etext32689 Various Encyclopaedia Britannica, 11th Edition, Volume 8, Slice 5 etext3 Kennedy, John F. (John Fitzgerald), 1917-1963 John F. Kennedy's Inaugural Address etext33 Hawthorne, Nathaniel, 1804-1864 The Scarlet Letter etext46 Dickens, Charles, 1812-1870 A Christmas Carol etext48 United States. Central Intelligence Agency The 1992 CIA World Factbook etext98 Dickens, Charles, 1812-1870 A Tale of Two Cities etext110 Hardy, Thomas, 1840-1928 Tess of the d'Urbervilles etext114 Tenniel, John, Sir, 1820-1914 Tenniel Illustrations for Alice in Wonderland etext203 Stowe, Harriet Beecher, 1811-1896 Uncle Tom's Cabin etext269 Saki, 1870-1916 Beasts and Super-Beasts etext300 United States United States Declaration of Independence (HTML) etext348 Hesiod Hesiod, the Homeric Hymns, and Homerica etext357 Morris, William, 1834-1896 A Dream of John Ball; and, a king's lesson etext396 Stockton, Frank Richard, 1834-1902 The Lady, or the Tiger? etext422 Borrow, George Henry, 1803-1881 The Romany Rye etext431 Phillips, David Graham, 1867-1911 The Fortune Hunter etext481 Michelson, Miriam, 1870-1942 In the Bishop's Carriage etext554 Tyler, Royall, 1757-1826 The Contrast etext557 Kipling, Rudyard, 1865-1936 Puck of Pook's Hill etext586 Browne, Thomas, Sir, 1605-1682 Religio Medici, Hydriotaphia, and the Letter to a Friend etext604 Arnold, Edwin Lester Linden, 1857-1935 Gulliver of Mars etext614 Stevenson, Robert Louis, 1850-1894 Across the Plains etext622 Stevenson, Robert Louis, 1850-1894 Correspondence etext627 Stevenson, Robert Louis, 1850-1894 Essays of Travel etext676 Dickens, Charles, 1812-1870 The Battle of Life etext757 Gilbert, W. S. (William Schwenck), Sir, 1836-1911 Fifty "Bab" Ballads: Much Sound and Little Sense etext782 Mandeville, John, Sir, 1300-1399? The Travels of Sir John Mandeville etext785 Lucretius Carus, Titus, 94? BC-49? BC On the Nature of Things etext881 Stoddard, Elizabeth, 1823-1902 Lemorne Versus Huell etext963 Dickens, Charles, 1812-1870 Little Dorrit etext972 Bierce, Ambrose, 1842-1914? The Devil's Dictionary etext976 Hawthorne, Nathaniel, 1804-1864 Tanglewood Tales etext984 Who Was Who: 5000 BC - 1914 Biographical Dictionary of the Famous and Those Who Wanted to Be etext1009 Dante Alighieri, 1265-1321 La Divina Commedia di Dante: Inferno etext1013 Wells, H. G. (Herbert George), 1866-1946 The First Men in the Moon etext1051 Carlyle, Thomas, 1795-1881 Sartor Resartus: the life and opinions of Herr Teufelsdröckh etext1141 Wilde, Oscar, 1854-1900 Selected Poems of Oscar Wilde etext1168 Duncan, Sara Jeannette, 1862?-1922 The Pool in the Desert etext1174 Xenophon, 431 BC-350? BC Hellenica etext1213 Twain, Mark, 1835-1910 The Man That Corrupted Hadleyburg etext1258 Dumas père, Alexandre, 1802-1870 Ten Years Later etext1314 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Malefactor etext1325 Addams, Jane, 1860-1935 Twenty Years at Hull House; with autobiographical notes etext1357 Balzac, Honoré de, 1799-1850 Madame Firmiani etext1400 Dickens, Charles, 1812-1870 Great Expectations etext1492 Hale, Edward Everett, 1822-1909 The Life of Columbus etext1513 Shakespeare, William, 1564-1616 Romeo and Juliet etext1527 Shakespeare, William, 1564-1616 Twelfth Night etext1548 Shakespeare (spurious and doubtful works), 1564-1616 Locrine/Mucedorus etext1599 Anonymous Cinderella; or, The Little Glass Slipper and Other Stories etext1636 Plato, 427? BC-347? BC Phaedrus etext1665 Lyall, Edna, 1857-1903 Derrick Vaughan, Novelist etext1697 Kingsley, Charles, 1819-1875 Madam How and Lady Why etext1747 Lincoln, Natalie Sumner, 1881-1935 The Red Seal etext1790 Shakespeare, William, 1564-1616 Troilus and Cressida etext1794 Shakespeare, William, 1564-1616 King Lear etext1797 Shakespeare, William, 1564-1616 Coriolanus etext1805 Henry, O., 1862-1910 The Gentle Grafter etext1880 Cooper, James Fenimore, 1789-1851 Pathfinder; or, the inland sea etext1888 Punshon, E. R. (Ernest Robertson), 1872-1956 The Bittermeads Mystery etext1902 Wiggin, Kate Douglas Smith, 1856-1923 The Old Peabody Pew etext1906 Butler, Samuel, 1835-1902 Erewhon etext1925 Balzac, Honoré de, 1799-1850 Droll Stories — Volume 1 etext1936 Bancroft, Elizabeth Davis, 1803-1886 Letters from England etext1944 Chekhov, Anton Pavlovich, 1860-1904 The Witch and other stories etext2108 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 08 etext2117 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 17 etext2215 Human Genome Project Chromosome Number 15 etext2220 Human Genome Project Chromosome Number 20 etext2221 Human Genome Project Chromosome Number 21 etext2273 Appleton, Victor [pseud.] Tom Swift and His Motor-Boat, or, the Rivals of Lake Carlopa etext2301 Reade, Charles, 1814-1884 A Simpleton etext2319 Goethe, Johann Wolfgang von, 1749-1832 West-östlicher Divan etext2388 Anonymous The Song celestial; or, Bhagabad-gîtâ (from the Mahâbhârata) being a discourse between Arjuna, prince of India, and the Supreme Being under the form of Krishna etext2470 Cherbuliez, Victor, 1829-1899 Samuel Brohl and Company etext2594 Galsworthy, John, 1867-1933 The Forsyte Saga, Volume II. etext2605 Lowell, Percival, 1855-1916 Noto: an Unexplained Corner of Japan etext2617 Sherman, William T. (William Tecumseh), 1820-1891 Memoirs of Gen. William T. Sherman — Volume 2 etext2830 Saki, 1870-1916 Reginald etext2915 Galsworthy, John, 1867-1933 A Bit O' Love etext2958 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 08: Convent Affairs etext2973 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 23: English etext3019 Richardson, Dorothy Miller, 1873-1957 Pointed Roofs etext3063 Mommsen, Theodor, 1817-1903 Römische Geschichte — Band 4 etext3102 Warner, Charles Dudley, 1829-1900 Their Pilgrimage etext3109 Warner, Charles Dudley, 1829-1900 Fashions in Literature etext3116 Warner, Charles Dudley, 1829-1900 Literary Copyright etext3138 Lang, Andrew, 1844-1912 Ballads in Blue China etext3161 Narratives of New Netherland, 1609-1664 etext3181 Twain, Mark, 1835-1910 The Stolen White Elephant etext3199 Twain, Mark, 1835-1910 Complete Letters of Mark Twain etext3206 Ward, Grady Moby Multiple Language Lists of Common Words etext3262 Morris, William, 1834-1896 The Pilgrims of Hope etext3330 Confucius, 551 BC-479 BC The Analects of Confucius (from the Chinese Classics) etext3335 Roosevelt, Theodore, 1858-1919 Theodore Roosevelt; an Autobiography etext3386 Howells, William Dean, 1837-1920 Editor's Relations with the Young Contributor (from Literature and Life) etext3409 Trollope, Anthony, 1815-1882 Barchester Towers etext3477 Inchfawn, Fay, 1880- The Verse-Book of a Homely Woman etext3496 Perkins, Lucy Fitch, 1865-1937 The Japanese Twins etext3499 Alcott, Louisa May, 1832-1888 Jo's Boys etext3512 Human Genome Project Human Genome Project, Chromosome Number 12 etext3524 Human Genome Project Human Genome Project, Y Chromosome etext3557 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 07 etext3576 Wairy, Louis Constant, 1778-1845 Recollections of the Private Life of Napoleon — Volume 09 etext3603 Maupassant, Guy de, 1850-1893 Widger's Quotations from the Project Gutenberg Editions of the Works of Guy de Maupassant etext3693 Mühlbach, L. (Luise), 1814-1873 Louisa of Prussia and Her Times etext3713 Trollope, Anthony, 1815-1882 Aaron Trow etext3724 Trollope, Anthony, 1815-1882 The House of Heine Brothers etext3762 Churchill, Winston, 1871-1947 Coniston — Volume 01 etext3812 Gilbert, Clinton W. (Clinton Wallace), 1871-1933 The Mirrors of Washington etext3875 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Complete etext3911 Rousseau, Jean-Jacques, 1712-1778 The Confessions of J. J. Rousseau — Volume 11 etext3964 Bourget, Paul, 1852-1935 Cosmopolis — Volume 2 etext4007 Landor, Walter Savage, 1775-1864 Gebir etext4014 Leblanc, Maurice, 1864-1941 Arsene Lupin etext4092 Cooper, James Fenimore, 1789-1851 The Monikins etext4113 Young, Filson, 1876-1938 Christopher Columbus and the New World of His Discovery — Volume 6 etext4128 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 11: June/July/August 1661 etext4171 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Complete 1666 N.S. etext4172 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 49: January 1666-67 etext4181 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 58: October 1667 etext4183 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 60: December 1667 etext4190 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 66: June/July 1668 etext4229 Amundsen, Roald, 1872-1928 The South Pole; an account of the Norwegian Antarctic expedition in the "Fram," 1910-12 — Volume 1 and Volume 2 etext4250 Saltus, Edgar, 1855-1921 Imperial Purple etext4251 Corelli, Marie, 1855-1924 The Life Everlasting; a reality of romance etext4263 James, Henry, 1843-1916 The Golden Bowl — Volume 2 etext4293 Otis, James, 1848-1912 Neal, the Miller etext4301 Gissing, George, 1857-1903 The Nether World etext4381 Synge, J. M. (John Millington), 1871-1909 The Aran Islands etext4400 Mundy, Talbot, 1879-1940 Hira Singh : when India came to fight in Flanders etext4452 Meredith, George, 1828-1909 The Adventures of Harry Richmond — Complete etext4459 Meredith, George, 1828-1909 Beauchamp's Career — Volume 7 etext4502 Brentano, Clemens, 1778-1842 Die mehreren Wehmüller und ungarischen Nationalgesichter etext4549 Wharton, Edith, 1862-1937 Artemis to Actaeon, and Other Verses etext4595 Arthur, T. S. (Timothy Shay), 1809-1885 Heart-Histories and Life-Pictures etext4624 Arthur, T. S. (Timothy Shay), 1809-1885 Off-Hand Sketches etext4661 Verlaine, Paul, 1844-1896 Madame Aubin etext4698 Burgess, Thornton W. (Thornton Waldo), 1874-1965 Whitefoot the Wood Mouse etext4780 Vaknin, Samuel, 1961- Terrorists and Freedom Fighters etext4783 Riley, James Whitcomb, 1849-1916 Riley Farm-Rhymes etext4901 Anonymous The Only True Mother Goose Melodies etext4931 Henty, G. A. (George Alfred), 1832-1902 Won By the Sword : a tale of the Thirty Years' War etext4932 Henty, G. A. (George Alfred), 1832-1902 A Knight of the White Cross : a tale of the siege of Rhodes etext4952 Yonge, Charlotte Mary, 1823-1901 Life of John Coleridge Patteson : Missionary Bishop of the Melanesian Islands etext4964 Scott, Walter, Sir, 1771-1832 Waverley — Volume 1 etext5022 Pierce, Franklin, 1804-1869 State of the Union Address etext5085 Hazlitt, William, 1778-1830 Characters of Shakespeare's Plays etext5135 Zola, Émile, 1840-1902 The Fortune of the Rougons etext5152 Wickson, Edward J. (Edward James), 1848-1923 One Thousand Questions in California Agriculture Answered etext5159 Arnold, Matthew, 1822-1888 Celtic Literature etext5182 Reeve, Clara, 1729-1807 The Old English Baron: a Gothic Story etext5190 Bach, Johann Sebastian, 1685-1750 Brandenburg Concerto No. 5 in D Major, BWV 1050 etext5195 Lincoln, Joseph Crosby, 1870-1944 Cape Cod Stories etext5209 Crabbe, George, 1754-1832 Miscellaneous Poems etext5220 Petronius Arbiter, 20-66 The Satyricon — Volume 03: Encolpius and His Companions etext5236 Lever, Charles James, 1806-1872 The Confessions of Harry Lorrequer — Volume 3 etext5310 Glyn, Elinor, 1864-1943 The Point of View etext5322 Büchner, Georg, 1813-1837 Woyzeck etext5323 Fontane, Theodor, 1819-1898 Effi Briest etext5371 Churchill, Winston, 1871-1947 Richard Carvel — Volume 07 etext5389 Churchill, Winston, 1871-1947 The Crisis — Volume 02 etext5392 Churchill, Winston, 1871-1947 The Crisis — Volume 05 etext5427 Rousseau, Jean-Jacques, 1712-1778 Emile etext5452 Ebers, Georg, 1837-1898 An Egyptian Princess — Volume 03 etext5474 Ebers, Georg, 1837-1898 Cleopatra — Volume 02 etext5502 Ebers, Georg, 1837-1898 Serapis — Volume 02 etext5569 Ebers, Georg, 1837-1898 Barbara Blomberg — Volume 09 etext5604 Shaw, Bernard, 1856-1950 Getting Married etext5607 Heine, Heinrich, 1797-1856 Romanzero etext5624 Adams, Edward Francis, 1839- The Inhumanity of Socialism etext5651 Kingsford, Anna Bonus, 1846-1888 Dreams and Dream Stories etext5666 Anonymous The Arabian Nights Entertainments — Volume 03 etext5699 Flint, Homer Eon, 1892-1924 The Emancipatrix etext5723 Shaw, Bernard, 1856-1950 Press Cuttings etext5770 Stratemeyer, Edward, 1862-1930 The Rover Boys in the Jungle etext5780 Stratemeyer, Edward, 1862-1930 The Rover Boys at School etext5848 McCutcheon, George Barr, 1866-1928 The Flyers etext5911 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 09 etext5913 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 11 etext5935 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 32 etext5977 Alger, Horatio, 1832-1899 Bound to Rise etext6031 Gibbon, Edward, 1737-1794 Memoirs of My Life and Writings etext6129 Rochefort, Alfred Healthful Sports for Boys etext6248 Parker, Gilbert, 1862-1932 The Right of Way — Volume 06 etext6275 Parker, Gilbert, 1862-1932 The Money Master, Volume 1. etext6289 Parker, Gilbert, 1862-1932 Wild Youth, Volume 1. etext6304 Zangwill, Israel, 1864-1926 Without Prejudice etext6324 Hope, Laura Lee The Story of a White Rocking Horse etext6364 MacDonald, George, 1824-1905 Warlock o' Glenwarlock etext6395 Suetonius Tranquillus, Gaius, 75-160 The Lives of the Twelve Caesars, Volume 10: Vespasian etext6424 Wells, H. G. (Herbert George), 1866-1946 A Modern Utopia etext6441 etext6479 Traill, Catharine Parr Strickland, 1802-1899 Lady Mary and her Nurse etext6485 Mitchell, S. Weir (Silas Weir), 1829-1914 Hugh Wynne, Free Quaker etext6514 Wake, William, 1657-1737 The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 8, Ignatius etext6567 Strachey, John St. Loe, 1860-1927 The Adventure of Living : a Subjective Autobiography etext6599 McDougall, Margaret Moran Dixon, 1826-1898 The Letters of "Norah" on Her Tour Through Ireland etext6652 Parton, James, 1822-1891 The Humorous Poetry of the English Language; from Chaucer to Saxe etext6657 Clark, Dougan The Theology of Holiness etext6686 Tagore, Rabindranath, 1861-1941 The Gardener etext6748 Kieviet, Cornelis Johannes, 1858-1931 Fulco de Minstreel: Een historisch verhaal uit den tijd van Graaf Jan I voor jongelieden etext6764 Higginson, Thomas Wentworth, 1823-1911 Army Life in a Black Regiment etext6765 Jacobsen, J. P. (Jens Peter), 1847-1885 Mogens and Other Stories etext6796 Schiller, Friedrich, 1759-1805 The Poems of Schiller — Third period etext6806 Barr, Amelia Edith Huddleston, 1831-1919 The Hallam Succession etext6921 Corelli, Marie, 1855-1924 Temporal Power etext6970 Macé, Jean, 1815-1894 The History of a Mouthful of Bread etext7028 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Clicking of Cuthbert etext7049 Grünfeld, Walter Rückblicke etext7070 Henty, G. A. (George Alfred), 1832-1902 The Treasure of the Incas etext7071 Henty, G. A. (George Alfred), 1832-1902 In Times of Peril etext7101 Twain, Mark, 1835-1910 Adventures of Huckleberry Finn, Chapters 06 to 10 etext7147 Finley, John, 1863-1940 The French in the Heart of America etext7160 Twain, Mark, 1835-1910 The Prince and the Pauper, Part 7. etext7162 Twain, Mark, 1835-1910 The Prince and the Pauper, Part 9. etext7171 Hergesheimer, Joseph, 1880-1954 Linda Condon etext7290 Song yu, 3rd cent. B.C. Han shi wai chuan, complete etext7313 Shen, Kuo, 1031-1095 夢溪筆談, Volume 07-10 etext7350 Lansdown, Lillian B. How to Prepare and Serve a Meal; and Interior Decoration etext7359 Howells, William Dean, 1837-1920 Indian Summer etext7370 Locke, John, 1632-1704 Second Treatise of Government etext7397 Holmes, Oliver Wendell, 1809-1894 The Poetical Works of Oliver Wendell Holmes — Volume 10: Before the Curfew etext7418 Zhang, Chao, 1650- 幽夢影 — Part 1 etext7463 England, George Allan, 1877-1936 Darkness and Dawn etext7493 Ellis, Edward Sylvester, 1840-1916 The Daughter of the Chieftain : the Story of an Indian Girl etext7501 Pilniak, Boris, 1894-1937 Tales of the Wilderness etext7503 Mörike, Eduard Friedrich, 1804-1875 Mozart auf der Reise nach Prag etext7661 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 What Will He Do with It? — Volume 03 etext7664 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 What Will He Do with It? — Volume 06 etext7684 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Harold : the Last of the Saxon Kings — Complete etext7710 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 My Novel — Volume 09 etext7731 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Paul Clifford — Volume 04 etext7753 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Godolphin, Volume 4. etext7826 Barney, J. Stewart (John Stewart) L.P.M. : the end of the Great War etext7921 Smith, John Jay, 1798-1881 American Historical and Literary Antiquities, Part 21. etext7946 Grillparzer, Franz, 1791-1872 Das goldene Vließ etext7960 Webster, Hutton Early European History etext8010 Anonymous The Bible, King James version, Book 10: 2 Samuel etext8041 Anonymous The Bible, King James version, Book 41: Mark etext8042 Anonymous The Bible, King James version, Book 42: Luke etext8059 Anonymous The Bible, King James version, Book 59: James etext8095 Monk, Maria, 1816-1849 Awful Disclosures etext8144 etext8160 Brandes, Georg Morris Cohen, 1842-1927 Recollections of My Childhood and Youth etext8187 Moore, Thomas, 1779-1852 The Complete Poems of Sir Thomas Moore etext8272 Anonymous The World English Bible (WEB): Romans etext8305 The Bible, Douay-Rheims, Book 05: Deuteronomy etext8349 The Bible, Douay-Rheims, Book 49: Luke etext8386 Wells, Carolyn, 1862-1942 Ptomaine Street etext8408 Various Scientific American Supplement, No. 299, September 24, 1881 etext8425 Froude, James Anthony, 1818-1894 Caesar: a Sketch etext8477 Twain, Mark, 1835-1910 Life on the Mississippi, Part 7. etext8581 Barnum, P. T. (Phineas Taylor), 1810-1891 Art of Money Getting etext8630 Doyle, Arthur Conan, Sir, 1859-1930 The Adventure of the Bruce-Partington Plans etext8644 Waterloo, Stanley, 1846-1913 The Story of Ab etext8656 Anonymous The Book of the Thousand Nights and One Night, Volume II etext8669 Runeberg, Johan Ludvig, 1804-1877 Hanna etext8707 The Doré Gallery of Bible Illustrations, Volume 7 etext8714 Aeschylus, 525 BC-456 BC Suppliant Maidens and Other Plays etext8722 Zola, Émile, 1840-1902 The Three Cities Trilogy: Rome, Volume 2 etext8726 Zola, Émile, 1840-1902 The Three Cities Trilogy: Rome, Complete etext8748 Burroughs, Edgar Rice, 1875-1950 A Princess of Mars etext8878 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Mischief Maker etext8933 Dasent, George Webbe, 1817-1896 Popular Tales from the Norse etext9050 A Select Collection of Old English Plays, Volume 1 etext9088 Fraser, William Alexander, 1859-1933 Thoroughbreds etext9185 Stephens, Robert Neilson, 1867-1906 The Mystery of Murray Davenport etext9191 MacDonald, George, 1824-1905 Stephen Archer and Other Tales etext9200 Hoffmann, E. T. A. (Ernst Theodor Amadeus), 1776-1822 Klein Zaches, genannt Zinnober etext9282 Wharton, Edith, 1862-1937 Madame de Treymes etext9286 Wharton, Edith, 1862-1937 The Descent of Man and Other Stories etext9295 Peple, Edward Henry, 1869-1924 A Night Out etext9328 Cleveland Past and Present etext9356 Conrad, Joseph, 1857-1924 'Twixt Land and Sea etext9480 Betham-Edwards, Matilda, 1836-1919 In the Heart of the Vosges etext9568 Whittier, John Greenleaf, 1807-1892 The Frost Spirit and Others from Poems of Nature, etext9589 Whittier, John Greenleaf, 1807-1892 Tales and Sketches etext9599 Whittier, John Greenleaf, 1807-1892 The Conflict with Slavery and Others, Complete, Volume VII, etext9604 Cao, Xueqin, 1717?-1763 Hung Lou Meng, Book II etext9627 Hall, Jennie, 1875-1921 Buried Cities, Volume 3 etext9704 Dickens, Charles, 1812-1870 Doctor Marigold etext9706 Dickens, Charles, 1812-1870 Speeches: Literary and Social etext9726 Dickens, Charles, 1812-1870 No Thoroughfare etext9733 Dickens, Charles, 1812-1870 Sketches by Boz etext9807 Fletcher, J. S. (Joseph Smith), 1863-1935 Scarhaven Keep etext9823 Johnson, Samuel, 1709-1784 Lives of the Poets, Volume 1 etext9874 Doyle, Arthur Conan, Sir, 1859-1930 A Visit to Three Fronts etext9879 Farnol, Jeffery, 1878-1952 The Amateur Gentleman etext9884 Various The Mirror of Literature, Amusement, and Instruction etext9996 Adams, Charles Francis, 1835-1915 "'Tis Sixty Years Since" etext9997 Parkman, Francis, 1823-1893 France and England in North America; a Series of Historical Narratives — Part 3 etext10032 Various Punchinello, Volume 1, No. 24, September 10, 1870 etext10076 Bindloss, Harold, 1866-1945 Lister's Great Adventure etext10084 Curwood, James Oliver, 1878-1927 Kazan etext10095 Garnett, Richard, 1835-1906 The Twilight of the Gods, and Other Tales etext10129 Various Excellent Women etext10155 Roosevelt, Theodore, 1858-1919 The Right of the People to Rule etext10173 Edison Concert Band Hungarian Rhapsody No. 2, Part 1 etext10285 Orchestra, Peerless Ma Rag Time Baby etext10304 Tucker, Sophie, 1884-1966 Some of These Days etext10319 Hancock, H. Irving (Harrie Irving), 1868-1922 Dave Darrin's Third Year at Annapolis etext10374 Bowman, Earl Wayland, 1875-1952 The Ramblin' Kid etext10394 Pyle, Howard, 1853-1911 Stolen Treasure etext10417 Hubbard, Elbert, 1856-1915 Love, Life & Work etext10438 Mackay, Isabel Ecclestone, 1875-1928 Up the Hill and Over etext10454 Various Tales for Young and Old etext10466 Burnett, Frances Hodgson, 1849-1924 Little Saint Elizabeth and Other Stories etext10491 Powers, Leland Practice Book etext10518 Hay, John, 1835-1905 Poems etext10532 Lord, John, 1810-1894 Beacon Lights of History, Volume 06 etext10536 Erickson, Joel A. Project Gutenberg Fanfare etext10548 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 The Westcotes etext10636 etext10645 McGuinn, Roger Go Tell Aunt Rhodie etext10681 Roget, Peter Mark, 1779-1869 Roget's Thesaurus of English Words and Phrases etext10722 Ostrovsky, Aleksandr Nicolaevich, 1823-1886 Plays etext10775 Maupassant, Guy de, 1850-1893 Le Horla and Others etext10783 Jacobs, W. W. (William Wymark), 1863-1943 Self-Help etext10817 Sinclair, May, 1863-1946 Anne Severn and the Fieldings etext10830 Hewet, Henry W. Cinderella etext10883 Dio, Cassius Dio's Rome, Volume 4 etext10889 Whicher, George Frisbie The Life and Romances of Mrs. Eliza Haywood etext10971 Kieviet, Cornelis Johannes, 1858-1931 De Zoon van Dik Trom etext11033 Trusta, H., 1815-1852 The Angel over the Right Shoulder etext11039 Pfeiffer, Ida, 1797-1858 A Woman's Journey Round the World etext11058 Henty, G. A. (George Alfred), 1832-1902 Jack Archer etext11059 Allston, Washington, 1779-1843 The Sylphs of the Season with Other Poems etext11074 Blackwood, Algernon, 1869-1951 The Damned etext11098 Unknown Happy and Gay Marching Away etext11134 Various The Atlantic Monthly, Volume 07, No. 41, March, 1861 etext11182 Jacobs, W. W. (William Wymark), 1863-1943 The Boatswain's Mate etext11211 Lauder, Harry, Sir, 1870-1950 A Minstrel in France etext11334 Wilson's Tales of the Borders and of Scotland, Volume XXII etext11335 Lorentz, H.A. The Einstein Theory of Relativity etext11365 Tilton, George Henry, 1845- The Fern Lover's Companion etext11493 Benson, E. F. (Edward Frederic), 1867-1940 The Blotting Book etext11559 Symonds, John Addington, 1840-1893 Renaissance in Italy Volume 3 etext11573 Cooper, James Fenimore, 1789-1851 The Crater etext11577 Various Notes and Queries, Number 03, November 17, 1849 etext11663 Reclus, Elisée, 1830-1905 Histoire d'un ruisseau. Spanish etext11701 Kent, Charles Foster, 1867-1925 The Makers and Teachers of Judaism etext11718 Frey, Hildegard G. (Hildegard Gertrude), 1891-1957 The Camp Fire Girls at School etext11725 Ferrall, S. A. (Simon Ansley), -1844 A Ramble of Six Thousand Miles through the United States of America etext11791 Human Genome Project Chromosome Number 17 etext11881 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Shadow of the North etext11896 etext11903 Various The Mirror of Literature, Amusement, and Instruction etext11920 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext11921 Various The Illustrated London Reading Book etext11990 Head, Franklin H. (Franklin Harvey), 1832-1914 Shakespeare's Insomnia, and the Causes Thereof etext12004 Mill, John Stuart, 1806-1873 Essays on some unsettled Questions of Political Economy etext12033 Russell, Ruth What's the Matter with Ireland? etext12034 Cohen, R., 1895-1981 Knights of Malta, 1523-1798 etext12060 The German Classics of the Nineteenth and Twentieth Centuries, Volume 04 etext12133 Jacobs, W. W. (William Wymark), 1863-1943 The Lady of the Barge and Others, Entire Collection etext12137 Hugo, Victor, 1802-1885 La Légende des Siècles etext12154 Jacobs, W. W. (William Wymark), 1863-1943 The Weaker Vessel etext12180 Richardson, Samuel, 1689-1761 Clarissa Harlowe; or the history of a young lady — Volume 8 etext12235 Stimson, Frederic Jesup, 1855-1943 Popular Law-making etext12273 Heiberg, Hermann, 1840-1910 Grevinde etext12275 Guerra, Juan Álvarez Viajes por Filipinas: De Manila á Albay etext12280 Cable, George Washington, 1844-1925 The Grandissimes etext12292 Various Punch, or the London Charivari, Volume 99, July 26, 1890 etext12313 Andersen, H. C. (Hans Christian), 1805-1875 Pictures of Sweden etext14489 Pryde, Anthony Nightfall etext12340 Anonymous The Story of the Herschels etext12383 Wordsworth, William, 1770-1850 The Poetical Works of William Wordsworth — Volume 3 etext12537 Turner, Dawson, 1775-1858 Account of a Tour in Normandy, Volume 1 etext12538 Turner, Dawson, 1775-1858 Account of a Tour in Normandy, Volume 2 etext12585 Holmes, Edric, 1873- Seaward Sussex etext12589 Various Notes and Queries, Number 31, June 1, 1850 etext12605 Macleod, Norman, 1812-1872 Parish Papers etext12640 Trial of Mary Blandy etext12645 Various The Mirror of Literature, Amusement, and Instruction etext12662 Pansy, 1841-1930 Four Girls at Chautauqua etext12716 Kipling, Rudyard, 1865-1936 Dedication etext12761 Various Blackwood's Edinburgh Magazine — Volume 53, No. 329, March, 1843 etext12810 Hancock, H. Irving (Harrie Irving), 1868-1922 Uncle Sam's Boys with Pershing's Troops etext12842 Shakespeare (spurious and doubtful works), 1564-1616 A Fairy Tale in Two Acts Taken from Shakespeare (1763) etext12848 Baroja, Pío, 1872-1956 Las inquietudes de Shanti Andia etext12942 Grant, Horatio N. The Highland Fling and How to Teach it etext12961 Unknown The Dock and the Scaffold etext13089 Gardiner, J. H. The Making of Arguments etext13112 Various Speeches from the Dock, Part I etext13116 Various Lippincott's Magazine of Popular Literature and Science etext13152 Doyle, Arthur Conan, Sir, 1859-1930 The Firm of Girdlestone etext13158 Hocking, Joseph, 1860-1937 Weapons of Mystery etext13213 Various The Night Before Christmas and Other Popular Stories For Children etext13269 Various Punch, or the London Charivari, Volume 100, March 21, 1891 etext13282 Sangster, Margaret E. (Margaret Elizabeth), 1894-1981 The Island of Faith etext13439 Watts, Isaac, 1674-1748 Divine Songs etext13490 Malot, Hector, 1830-1907 Corysandre etext13514 Irving, Washington, 1783-1859 Tales of a Traveller etext13526 Hastings, Milo M. (Milo Milton), 1884-1957 In the Clutch of the War-God etext13535 Selections from Five English Poets etext13551 Various Notes and Queries, Number 50, October 12, 1850 etext13584 Various The American Missionary — Volume 42, No. 11, November, 1888 etext13612 Ellis, Havelock, 1859-1939 Studies in the Psychology of Sex, Volume 3 etext13625 Conscience, Hendrik, 1812-1883 De Kerels van Vlaanderen etext13659 Meding, Johann Ferdinand Martin Oskar, 1829-1903 Der Todesgruß der Legionen, 3. Band etext13702 Manning, Henry Non-Euclidean Geometry etext13717 Taylor, Edward C. Ted Strong's Motor Car etext13751 Various Characters from 17th Century Histories and Chronicles etext13794 Gogol, Nikolai Vasilievich, 1809-1852 Tarass Boulba etext13795 Doyle, Arthur Conan, Sir, 1859-1930 Nouveaux mystères et aventures etext13838 Sand, George, 1804-1876 Correspondance, 1812-1876 — Tome 3 etext13839 Sand, George, 1804-1876 Correspondance, 1812-1876 — Tome 5 etext13847 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext13892 Sand, George, 1804-1876 Le meunier d'Angibault etext13906 Barrett, Florence E. Conception Control and Its Effects on the Individual and the Nation etext13940 Russell, Bertrand, 1872-1970 The Problem of China etext13965 Sainte-Beuve, Charles Augustin, 1804-1869 Portraits littéraires, Tome II etext14053 Various Punch, or the London Charivari, Volume 101, October 17, 1891 etext14058 Various Readings on Fascism and National Socialism etext14068 Page, Thomas Nelson, 1853-1922 Gordon Keith etext14103 Le Gallienne, Richard, 1866-1947 Prose Fancies (Second Series) etext14130 Allen, Quincy The Outdoor Chums on the Gulf etext14144 Cleve, Per Teodor, 1840-1905 Carl Wilhelm Scheele ett minnesblad på hundrade årsdagen af hans död etext14158 Darwin, Charles, 1809-1882 On the origin of species etext14194 Latimer, Elizabeth, 1822-1904 France in the Nineteenth Century etext14265 The Philippine Islands, 1493-1898 — Volume 09 of 55 etext14349 Alkio, Santeri, 1862-1930 Jaakko Jaakonpoika etext14378 Various Five Years of Theosophy etext14420 Cervantes Saavedra, Miguel de, 1547-1616 The Exemplary Novels of Cervantes etext14494 Barr, Amelia Edith Huddleston, 1831-1919 Scottish sketches etext14508 Knapp, Shepherd The Christmas Dinner etext14519 Sutro, Alfred, 1863-1933 Five Little Plays etext14525 Various Prefaces to Fiction etext14601 Various Punch, or the London Charivari, Volume 102, May 7, 1892 etext14646 Elizabeth, 1866-1941 Christopher and Columbus etext14672 MacCulloch, J. A., 1868-1950 The Religion of the Ancient Celts etext14689 Various The Bay State Monthly — Volume 2, No. 6, March, 1885 etext14729 Elector, An A Review and Exposition, of the Falsehoods and Misrepresentations, of a Pamphlet Addressed to the Republicans of the County of Saratoga, Signed, "A Citizen" etext14769 Various Punch, or the London Charivari, Volume 152, April 11, 1917 etext14778 Various Blackwood's Edinburgh Magazine — Volume 55, No. 341, March, 1844 etext14814 Potter, Beatrix, 1866-1943 The Tale of Jemima Puddle-Duck etext14830 Anonymous Aljaska en de Canada-spoorweg etext14886 Dicey, Albert Venn, 1835-1922 England's Case Against Home Rule etext14980 etext14983 Päivärinta, Pietari, 1827-1913 Elämän hawainnoita VII: Rauta=mies; Hairahdus; Pentti ja Inka etext14989 Various Scientific American Supplement No. 822, October 3, 1891 etext15056 Deschamps, Émile, 1857- De Wallis-eilanden etext15102 Haines, Richard Proposals for Building, In Every County, A Working-Alms-House or Hospital etext15136 Chiabrera, Gabriello, 1552-1638 Amedeide etext15187 Crawford, F. Marion (Francis Marion), 1854-1909 The Children of the King etext15207 Poincaré, Lucien, 1862-1920 The New Physics and Its Evolution etext15299 Runciman, Walter, 1847-1937 Drake, Nelson and Napoleon etext15328 Adams, John Turvill The Lost Hunter etext15331 Various St. Nicholas, Vol. 5, No. 4, February 1878 etext15401 Butler, William Francis, 1838-1910 The Great Lone Land etext15421 Pardo de Tavera, T. H. (Trinidad Hermenegildo), 1857-1925 Contribucion Para El Estudio de los Antiguos Alfabetos Filipinos etext15434 Vilbort, J. En Kabylie etext15475 The Mahabharata of Krishna-Dwaipayana Vyasa, Volume 2 etext15492 Ibsen, Henrik, 1828-1906 A Doll's House etext15538 Mulholland, Rosa, 1841-1921 Hetty Gray etext15584 Sand, George, 1804-1876 Jean Ziska etext15600 Stein, Gertrude, 1874-1946 Matisse Picasso and Gertrude Stein etext15673 Grey, Zane, 1872-1939 The Day of the Beast etext15681 Milner, Viscount Constructive Imperialism etext15797 Wilson, Harry Leon, 1867-1939 The Seeker etext15812 Wishard, S. E. The Testimony of the Bible Concerning the Assumptions of Destructive Criticism etext15834 Riley, James Whitcomb, 1849-1916 The Book of Joyous Children etext15880 Various The Atlantic Monthly, Volume 13, No. 78, April, 1864 etext15920 Optic, Oliver, 1822-1897 Outward Bound etext15925 Various The Bay State Monthly — Volume 1, No. 3, March, 1884 etext15933 Various Stories of Childhood etext15953 Miller, Elizabeth The City of Delight etext15962 Bastiat, Frédéric, 1801-1850 Essays on Political Economy etext15964 Benson, Arthur Christopher, 1862-1925 The Child of the Dawn etext15989 Augusta, Clara, 1839-1905 The Fatal Glove etext15991 Marryat, Frederick, 1792-1848 Japhet, in Search of a Father etext16001 Carleton, William, 1794-1869 Willy Reilly etext16017 Carleton, William, 1794-1869 The Poor Scholar etext16025 Various The Great Round World and What Is Going On In It, Vol. 1, No. 47, September 30, 1897 etext16060 Various The American Missionary — Volume 45, No. 2, February, 1891 etext16075 Schreiner, Olive, 1855-1920 Ratsumies Peter Halket Mashonamaasta etext16114 Adams, John Turvill The Knight of the Golden Melice etext16117 Coffinières de Nordeck, Grégoire-Gaspard-Félix, 1811-1887 Het land der Bagas en de Rio-Nuñez etext16193 Various Notes and Queries, Number 16, February 16, 1850 etext16206 Balzac, Honoré de, 1799-1850 Analytical Studies etext16212 Bang, Herman, 1857-1912 Väkevin etext16226 Oliphant, Laurence, 1829-1888 A Journey to Katmandu etext16243 Landsborough, William, -1886 Journal of Landsborough's Expedition from Carpentaria etext16293 Various Blackwood's Edinburgh Magazine — Volume 55, No. 340, February, 1844 etext16309 Benson, Robert Hugh, 1871-1914 Paradoxes of Catholicism etext16353 Various Scientific American Supplement, No. 421, January 26, 1884 etext16379 Stevenson, Augusta Children's Classics in Dramatic Form etext16393 Stowe, Harriet Beecher, 1811-1896 Tuomo sedän tupa etext16412 Swinburne, Algernon Charles, 1837-1909 A Study of Shakespeare etext16415 Various Tales from Many Sources etext16435 The Atlantic Book of Modern Plays etext16454 Barclay, Florence L. (Florence Louisa), 1862-1921 The Upas Tree etext16472 Ellis, Edward Sylvester, 1840-1916 Through Forest and Fire etext16484 Valera, Juan, 1824-1905 Juanita La Larga etext16515 Williams, Peter E. Dreaming of Dreaming etext16560 Woodworth, Francis C. (Francis Channing), 1812-1859 The Diving Bell etext16562 Gaubius, Hieronymus David, 1705-1780 Chemiam artibus academicis jure esse inserendam etext16644 Perkins, Lucy Fitch, 1865-1937 The Puritan Twins etext16682 Garvice, Charles, -1920 Adrien Leroy etext16700 Killen, W. D. (William Dool), 1806-1902 The Ancient Church etext16714 Cody, H. A. (Hiram Alfred), 1872-1948 Under Sealed Orders etext16730 Moore, George (George Augustus), 1852-1933 Mike Fletcher etext16778 Eddy, Mary Baker, 1821-1910 Pulpit and Press etext16882 Buysse, Cyriël, 1859-1932 Het leven van Rozeke van Dalen, deel 2 etext16898 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Green Bays. Verses and Parodies etext16938 Meem, J. C. Pressure, Resistance, and Stability of Earth etext17013 Pérez Galdós, Benito, 1843-1920 Fortunata y Jacinta etext17014 Wood, Louis Aubrey, 1883-1955 The War Chief of the Six Nations etext17037 Green, John Richard, 1837-1883 History of the English People, Volume I etext17063 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 A Lost Leader etext17066 Raine, William MacLeod, 1871-1954 Tangled Trails etext17120 Oliphant, Laurence, 1829-1888 Fashionable Philosophy etext17133 Johnston, Annie F. (Annie Fellows), 1863-1931 Mildred's Inheritance etext17191 Bowen, Sue Petigru, 1824-1875 The Actress in High Life etext17216 Various Punch, or the London Charivari, Volume 1, Complete etext17227 Cody, H. A. (Hiram Alfred), 1872-1948 Rod of the Lone Patrol etext17245 Various Chambers's Edinburgh Journal, No. 428 etext17270 Anonymous The Interlude of Wealth and Health etext17293 Downer, Charles Alfred, 1866-1930 Frédéric Mistral etext17340 Pérez Galdós, Benito, 1843-1920 Marianela etext17345 France, Anatole, 1844-1924 Histoire comique etext17394 Leadem, Christopher The Mantooth etext17413 Wassermann, Jakob, 1873-1934 Mein Weg als Deutscher und Jude etext17472 Hartley, John, 1839-1915 Yorkshire Ditties, First Series etext17521 Dodge, Louis, 1870-1952 Everychild etext17531 Curtis, William, 1746-1799 The Botanical Magazine, Vol. 2 etext17622 Hesse, Hermann, 1877-1962 Knulp etext17666 Trent, Martha Lucia Rudini etext17700 Du Bois, W. E. B. (William Edward Burghardt), 1868-1963 The Suppression of the African Slave Trade to the United States of America etext17738 Bouvier, Alexis, 1836-1892 La femme du mort, Tome I (1897) etext17744 Appleton, Victor [pseud.] The Moving Picture Boys on the War Front etext17769 Le Fanu, Joseph Sheridan, 1814-1873 The House by the Church-Yard etext17778 Chisholm, Cecil Sir John French etext17787 Calderón, Sofronio G., 1878-1954? Dating Pilipinas etext17817 Various Scientific American Supplement, No. 312, December 24, 1881 etext17835 Guarini, Giovanni Battista, 1538-1612 Il pastor fido in lingua napolitana etext17852 Colombi, marchesa, 1840-1920 Senz'Amore etext17862 Mitchell, Donald Grant, 1822-1908 Dream Life etext17892 Turpin, Edna Henry Lee, 1867-1952 Honey-Sweet etext17922 Huneker, James, 1857-1921 Visionaries etext18039 Eddy, Mary Baker, 1821-1910 Manual of the Mother Church etext18053 etext18074 Eekhoud, Georges, 1854-1927 Le cycle patibulaire etext18108 Delpit, Albert, 1849-1893 Jean-nu-pieds, Vol. 2 etext18156 Ewing, Juliana Horatia Gatty, 1841-1885 We and the World, Part II etext18168 Naville, Ernest The Heavenly Father etext18187 Hunting, Harold B. (Harold Bruce), 1879-1958 Hebrew Life and Times etext18189 Weschcke, Carl, 1894-1973 Growing Nuts in the North etext18308 Sims, George Robert, 1847-1922 Het hedendaagsche Londen etext18370 Civiale Remedial Agency Manhood Perfectly Restored etext18408 Clarke, George C. Transactions of the American Society of Civil Engineers, vol. LXVIII, Sept. 1910 etext18485 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext18490 Chevalier, H. Émile (Henri Émile), 1828-1879 Jacques Cartier etext18511 Morris, Charles, 1833-1922 Historical Tales, Vol. 4 (of 15) etext18512 Shakespeare, William, 1564-1616 Julius Caesar etext18523 Jenkins, John The Poetry of Wales etext18524 Swinburne, Algernon Charles, 1837-1909 A Dark Month etext18582 Phelps, Elizabeth Stuart, 1844-1911 Gypsy Breynton etext18601 Coffin, Joshua, 1792-1864 An Account of Some of the Principal Slave Insurrections, etext18639 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Victorian Age in Literature etext18646 Phelps, Elizabeth Stuart, 1844-1911 Gypsy's Cousin Joy etext18669 Vincens, Émile, 1764-1850 Histore de la République de Gênes etext18685 Acton, John Emerich Edward Dalberg Acton, Baron, 1834-1902 Lectures on Modern history etext18738 Michelet, Jules, 1798-1874 Les Femmes de la Révolution etext18765 Famous Adventures And Prison Escapes of the Civil War etext18772 Twentieth Century Negro Literature etext18800 Piper, H. Beam, 1904-1964 Last Enemy etext18803 Optic, Oliver, 1822-1897 Fighting for the Right etext18836 Wharton, Edith, 1862-1937 Aliaj Tempoj etext18860 Winter, William, 1836-1917 Shadows of the Stage etext18865 Lavallée, Théophile, 1804-1865 Histoire de Paris depuis le temps des Gaulois jusqu'à nos jours - I etext18875 Stringer, Arthur, 1874-1950 The Prairie Wife etext18896 Whitney, A. D. T. (Adeline Dutton Train), 1824-1906 Faith Gartney's Girlhood etext18964 Gregory, Jackson, 1882-1943 Wolf Breed etext18973 Thomas, Cyrus, 1825-1910 Day Symbols of the Maya Year etext19031 Accum, Friedrich Christian, 1769-1838 A Treatise on Adulterations of Food, and Culinary Poisons etext19048 Bazzero, Ambrogio, 1851-1882 Storia di un'anima etext19058 United States. Navy Dept. Bureau of Ordnance Ordnance Instructions for the United States Navy. etext19197 Herr, Charlotte B. (Charlotte Bronte), 1875-1963 How Freckle Frog Made Herself Pretty etext19199 Alger, William Rounseville, 1822-1905 The Friendships of Women etext19210 Plato, 427? BC-347? BC Faidoni etext19219 Shakespeare, William, 1564-1616 Taming of the shrew. French etext19254 Shoghi Effendi, 1897-1957 Citadel of Faith etext19323 Various The Wit and Humor of America, Volume V. (of X.) etext19325 Various The Wit and Humor of America, Volume VII. (of X.) etext19348 Cable, George Washington, 1844-1925 Gideon's Band etext19387 Fraser, William Alexander, 1859-1933 The Outcasts etext19463 Lounsbury, Thomas Raynesford, 1838-1915 James Fenimore Cooper etext19482 Anonymous The Ancient Banner etext19505 Dickens, Charles, 1812-1870 A Christmas Carol etext19515 Burroughs, Edgar Rice, 1875-1950 A Princess of Mars etext19534 Various Russia etext19613 Harnack, Adolph, 1851-1930 History of Dogma, Volume 2 (of 7) etext19688 Ferdinando I, Grand-Duke of Tuscany, 1549-1609 Documento che invita i mercanti ebrei a stabilirsi in Livorno e Pisa (Costituzione Livornina) etext19715 Quennell, C. H. B. (Charles Henry Bourne), 1872-1935 Bell's Cathedrals: The Cathedral Church of Norwich etext19717 James, Henry, 1843-1916 The Bostonians, Vol. I (of II) etext19761 Meade, L. T., 1854-1914 A Girl in Ten Thousand etext19780 New Zealand. National Library Service Report of the National Library Service for the Year Ended 31 March 1958 etext19794 Goethe, Johann Wolfgang von, 1749-1832 Die Leiden des jungen Werther etext19815 Fitzhugh, Percy Keese, 1876-1950 Roy Blakely, Pathfinder etext19818 Harben, Will N. (William Nathaniel), 1858-1919 Dixie Hart etext19829 Ade, George, 1866-1944 Knocking the Neighbors etext19877 Finnemore, John, 1863-1915 Jack Haydon's Quest etext19922 Romanes, George John, 1848-1894 The Scientific Evidences of Organic Evolution etext19952 King, Charles, 1844-1933 To The Front etext20120 Chiniquy, Father The Priest, The Woman And The Confessional etext20186 Arnold, Robert The Dismal Swamp and Lake Drummond, Early recollections etext20226 Whittier, John Greenleaf, 1807-1892 Snow-Bound etext20263 Boswell, James, 1740-1795 Boswell's Correspondence with the Honourable Andrew Erskine, and His Journal of a Tour to Corsica etext20298 Procopius Procopius etext20541 Wilberforce, Samuel, 1805-1873 The Rocky Island etext20620 Lawrence, Josephine, 1897?-1978 Rosemary etext20639 Gualdo, Luigi, 1847-1898 La gran rivale etext20674 Barr, Robert, 1850-1912 The Triumphs of Eugene Valmont etext20715 Goldman, Emma, 1869-1940 Marriage and Love etext20734 Dillaway, Charles K. Roman Antiquities, and Ancient Mythology etext20798 Various The Strand Magazine, Volume V, Issue 28, April 1893 etext20813 Eliot, George, 1819-1880 How Lisa Loved the King etext20821 Warde, Margaret Betty Wales Senior etext20880 Bergen, R. Van The Story of Russia etext20903 Northern Nut Growers Association Report of the Proceedings at the Twenty-Fifth Annual Meeting etext21012 Ryerson, Egerton, 1803-1882 The Loyalists of America and Their Times, Vol. 1 of 2. etext21085 Hutcheson, John C. (John Conroy) The Wreck of the Nancy Bell etext21090 Beers, Henry A. (Henry Augustin), 1847-1926 Brief History of English and American Literature etext21128 Blaine, James Gillespie, 1830-1893 Twenty Years of Congress, Vol. 1 etext21203 Bailey, Arthur Scott, 1877-1949 The Tale of Grandfather Mole etext21207 Päivärinta, Pietari, 1827-1913 Syyslehtiä etext21213 Betts, George Herbert, 1868-1934 New Ideals in Rural Schools etext21228 Walton, Amy, 1848-1899 White Lilac; or the Queen of the May etext21247 Mayne, Ethel Colburn, -1941 Browning's Heroines etext21257 Lescarbot, Marc Les Muses de la Nouvelle France etext21295 Fenn, George Manville, 1831-1909 Cormorant Crag etext21333 Munro, Neil, 1864-1930 Doom Castle etext21434 FitzGerald, Edward, 1809-1883 Letters of Edward FitzGerald to Fanny Kemble (1871-1883) etext21482 Kingston, William Henry Giles, 1814-1880 The Settlers etext21538 Hooper, James Souvenir of the George Borrow Celebration etext21569 etext21570 Pinero, Arthur Wing, Sir, 1855-1934 The Squire etext21579 Marryat, Frederick, 1792-1848 Snarley-yow etext21620 Schoolcraft, Henry Rowe, 1793-1864 The Myth of Hiawatha, and Other Oral Legends, Mythologic and Allegoric, of the North American Indians etext21648 etext21665 Meiklejohn, John Miller Dow, 1830-1902 A Brief History of the English Language and Literature, Vol. 2 etext21750 Ballantyne, R. M. (Robert Michael), 1825-1894 Martin Rattler etext21776 Beeching, H. C. (Henry Charles), 1859-1919 George Borrow etext21780 Carvalho, António Joaquim de, -1817 Galatéa etext21868 Uchard, Mario French and Oriental Love in a Harem etext21885 Hewlett, Maurice Henry, 1861-1923 The Ruinous Face etext26636 Niemi, Herman, 1857-1922 Paavolan kauhu etext21923 Jókai, Mór, 1825-1904 Pakolaisen päiväkirja etext21939 Various Chambers's Edinburgh Journal, No. 449 etext21958 Standish, Burt L., 1866-1945 Frank Merriwell's Races etext21986 Henty, G. A. (George Alfred), 1832-1902 The Dash for Khartoum etext21996 Gibbons, Herbert Adams Riviera Towns etext22002 Inchbald, Mrs., 1753-1821 A Simple Story etext22010 Russell, R. V. (Robert Vane), 1873-1915 The Tribes and Castes of the Central Provinces of India etext22055 Unknown Dame Duck's Lecture etext22075 Wilmot-Buxton, H. J. The Life of Duty, v. 2 etext22096 Powers, Mabel Stories the Iroquois Tell Their Children etext22099 Beadle, Charles Witch-Doctors etext22130 Various The Idler Magazine, Volume III, April 1893 etext22138 Various Notes and Queries, Number 54, November 9, 1850 etext22170 Foley, Kate M. Five Lectures on Blindness etext22199 Various Chambers's Edinburgh Journal, No. 453 etext22205 Murray, David Christie, 1847-1907 In Direst Peril etext22224 Henty, G. A. (George Alfred), 1832-1902 At Aboukir and Acre etext22227 Waldeyer, Graph The 4-D Doodler etext22231 Fuller, Anna, 1853-1916 Peak and Prairie etext22248 Mathews, Cornelius, 1817-1889 The Indian Fairy Book etext22261 Hawes, Stephen, -1523 A Ioyfull medytacyon to all Englonde of the coronacyon of our moost naturall souerayne lorde kynge Henry the eyght etext22313 Various Punch, or the London Charivari, Volume 150, February 2, 1916 etext22397 Adams, Joseph Quincy, 1881-1946 Shakespearean Playhouses etext22418 Hunter, William Crosbie, 1866- Dollars and Sense etext22524 Samachson, Joseph, 1906-1980 The Hunters etext22595 Hayens, Herbert At the Point of the Sword etext22610 Various Punch, or the London Charivari, Vol. 150, January 19, 1916 etext22611 Anonymous The Fox and the Geese; and The Wonderful History of Henny-Penny etext22644 Lerrigo, Charles Henry The Boy Scout Treasure Hunters etext22658 Unknown Visitas ao Santissimo Sacramento e a Maria Santissima para todos os dias do mez etext22669 Alger, Horatio, 1832-1899 The Young Miner etext22671 Various Punch, or the London Charivari, Vol. 104, April 8, 1893 etext22751 Aubert, E. Littérature Française (Première Année) etext22815 Foreman, John The Philippine Islands etext22823 Dammer, Udo, 1860-1920 Zimmerblattpflanzen etext22849 West, John, 1808-1873 The History of Tasmania , Volume II etext22933 The Second Epistle General of Peter etext22944 Kingston, William Henry Giles, 1814-1880 The History of Little Peter, the Ship Boy etext22958 Blish, James Benjamin One-Shot etext22974 Harris, Joseph The City Bride (1696) etext22982 Abbott, Eleanor Hallowell, 1872-1958 Little Eve Edgarton etext23019 Vigée-Lebrun, Louise-Elisabeth, 1755-1842 Souvenirs de Madame Louise-Élisabeth Vigée-Lebrun, Tome premier etext23023 Various Notes and Queries, Number 201, September 3, 1853 etext23085 Bradley, Marion Zimmer, 1930-1999 The Colors of Space etext23156 Ferreira, António Florêncio, 1848-1914 Trovas etext23206 Vega, Lope de, 1562-1635 La moza de cántaro etext23210 Herbert, Frank, 1920-1986 Missing Link etext23361 Aldrich, Thomas Bailey, 1836-1907 Père Antoine's Date-Palm etext23390 Anonymous The True Life of Betty Ireland etext23417 Hichens, Robert Smythe, 1864-1950 The Desert Drum etext23429 Mayfield, M. I. On Handling the Data etext23445 The Best Short Stories of 1919 etext23483 Anonymous Dame Wonder's Picture Alphabet etext23510 Page, Thomas Nelson, 1853-1922 The Sheriffs Bluff etext23555 Murfree, Mary Noailles, 1850-1922 The Lost Guidon etext23563 Garrett, Randall, 1927-1987 Viewpoint etext23570 Anonymous Stories About Indians etext23582 Sand, George, 1804-1876 La Mare au Diable etext23616 Bourget, Paul, 1852-1935 André Cornélis etext23675 Isham, Frederic Stewart, 1866-1922 Under the Rose etext23692 Creswicke, Louis South Africa and the Transvaal War, Vol. 1 (of 6) etext23711 Burnett, Frances Hodgson, 1849-1924 A Little Princess etext23759 Montijn-de Fouw, Nelly Sagen van Koning Arthur en de Ridders van de Tafelronde etext23804 Janvier, Thomas A. (Thomas Allibone), 1849-1913 Our Pirate Hoard etext23827 Wu, Jianren, 1866-1910 胡涂世界 etext23857 Hine, C. G. (Charles Gilbert), 1859-1931 The New York and Albany Post Road etext23865 Wu, Jianren, 1866-1910 恨海 etext23891 Malling, Mathilda, 1864-1942 En roman om förste konsuln etext23901 Poe, Edgar Allan, 1809-1849 The Raven etext23903 United States The Constitution of the United States of America, 1787 etext23912 Zhou, Xingsi, -521 千字文 etext23918 Moodie, Susanna, 1803-1885 The Little Quaker etext23942 Reynolds, Mack, 1917-1983 Unborn Tomorrow etext23993 Gibbon, Perceval, 1879-1926 Those Who Smiled etext24024 Stone, William L. (William Leete), 1792-1844 Ups and Downs in the Life of a Distressed Gentleman etext24035 Leinster, Murray, 1896-1975 The Pirates of Ersatz etext24047 Liu, Yiqing, 403-444 世說新語 etext24053 etext24070 Douglas, Amanda Minnie, 1831-1916 The Girls at Mount Morris etext24076 Mairet, Ethel M. Vegetable Dyes etext24088 Leale, Charles Augustus, 1842-1932 Lincoln's Last Hours etext24119 Raphael, Rick, 1919-1994 Make Mine Homogenized etext24127 Pereda, José María de, 1833-1906 Peñas arriba etext24192 Kastle, Herbert D. The First One etext24203 Various Lippincott's Magazine of Popular Literature and Science, Vol. 12, No. 32, November, 1873 etext24260 Montesquieu, Charles de Secondat, baron de, 1689-1755 Le temple de Gnide etext24266 Dauthendey, Max, 1867-1918 Das Schönste von Max Dauthendey etext24293 Groves, Anthony Norris, 1795-1853 Christian Devotedness etext24341 Dunaway, Wayland Fuller, 1841-1916 Reminiscences of a Rebel etext24366 Fowler, Orin, 1791-1852 A Disquisition on the Evils of Using Tobacco etext24371 Strindberg, August, 1849-1912 Die Inselbauern etext24497 Lockhart, J. G. (John Gibson), 1794-1854 Memoirs of the Life of Sir Walter Scott, Volume I (of 10) etext24506 McClymont, James Roxburgh Essays on early ornithology and kindred subjects etext24595 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 Cobb's Bill-of-Fare etext24598 Lord, John, 1810-1894 A Modern History, From the Time of Luther to the Fall of Napoleon etext24696 Spearman, Frank H. (Frank Hamilton), 1859-1937 The Daughter of a Magnate etext24725 Skae, Hilda T. Stories from English History etext24752 Achenwall, Gottfried, 1719-1772 Anmerkungen über Nordamerika. English etext24783 Calthrop, Dion Clayton, 1878-1937 The Pirate's Pocket Book etext24789 Orczy, Emmuska Orczy, Baroness, 1865-1947 "Unto Caesar" etext24809 Crassier, L.-M.-G de Traité des Arènes etext24811 Hall, Jennie, 1875-1921 Viking Tales etext24857 Sylvester, Charles Herbert Journeys Through Bookland, Vol. 10 etext24860 Richardson, Samuel, 1689-1761 Samuel Richardson's Introduction to Pamela etext24871 Fenn, George Manville, 1831-1909 The Bag of Diamonds etext24883 Rogers, Henry Raymond, 1822-1901 New and Original Theories of the Great Physical Forces etext24919 Botelho, Abel Acácio de Almeida, 1856-1917 Amor Crioulo etext24937 Woodworth, Francis C. (Francis Channing), 1812-1859 Mike Marble etext24993 Abbott, Jacob, 1803-1879 Rollo's Experiments etext25021 Anonymous Sarukani kassen. English etext25025 Bassett, Sara Ware, 1872-1968 The Story of Silk etext25055 Sarbiewski, Maciej Kazimierz, 1595-1640 The Odes of Casimire, Translated by G. Hils etext25080 Sayce, A. H. (Archibald Henry), 1845-1933 Babylonians and Assyrians, Life and Customs etext25150 Alger, Horatio, 1832-1899 The Young Bank Messenger etext25272 Johnson, Owen, 1878-1952 The Varmint etext25390 Brown, Ruth Alberta Tabitha at Ivy Hall etext25454 White, John H., 1933- Introduction of the Locomotive Safety Truck etext25487 Peck, George W. (George Wilbur), 1840-1916 Peck's Bad Boy and His Pa etext25499 Le Queux, William, 1864-1927 The Great White Queen etext25519 Baum, L. Frank (Lyman Frank), 1856-1919 Little Wizard Stories of Oz etext25606 Chen, Shou, 233-297 三國志 etext25623 Chambers, Robert W. (Robert William), 1865-1933 Barbarians etext25668 Elfving, Betty, 1837-1923 Vuosisatojen perintö 2 etext25671 Harte, Bret, 1836-1902 Bocetos californianos etext25692 Hill, B. L. (Benjamin L.) An Epitome of the Homeopathic Healing Art etext25700 Greville, Charles, 1794-1865 The Greville Memoirs etext25702 Dawson, Coningsby, 1883-1959 The Kingdom Round the Corner etext25706 United States. Federal Bureau of Investigation Federal Bureau of Investigation FOIA Documents - Unidentified Flying Objects etext25725 Burnett, Frances Hodgson, 1849-1924 That Lass O' Lowrie's etext25758 Hay, Marie, Hon. (Agnes Blanche Marie), 1873-1938 A German Pompadour etext25886 Optic, Oliver, 1822-1897 The Young Lieutenant etext25888 Beebe, William, 1877-1962 Edge of the Jungle etext25912 Mahan, A. T. (Alfred Thayer), 1840-1914 Sea Power in its Relations to the War of 1812 etext25915 Unknown James Lane Allen: A Sketch of his Life and Work etext25982 Anonymous Thrilling Narratives of Mutiny, Murder and Piracy etext26024 Pain, Barry, 1864-1928 Marge Askinforit etext26029 Slater, John Rothwell, 1872-1965 Printing and the Renaissance etext26045 Castle, Egerton, 1858-1920 The Light of Scarthey etext26115 James, Henry, 1843-1916 A Small Boy and Others etext26218 Bonehill, Ralph The Young Oarsmen of Lakeview etext26230 Wilde, Oscar, 1854-1900 The Picture of Dorian Gray etext26260 Day, Clarence, 1874-1935 This Simian World etext26272 Cooper, James Fenimore, 1789-1851 The Spy etext26309 Sheldon, Charles Monroe, 1857-1946 The High Calling etext26335 Shute, Henry A. (Henry Augustus), 1856-1943 Brite and Fair etext26406 Blanche, August, 1811-1868 Rikas eno etext26409 Meade, L. T., 1854-1914 The Children of Wilton Chase etext26464 Lewis, Charlton Miner, 1866-1923 Gawayne and the Green Knight etext26499 Read, Opie Percival, 1852-1939 The Jucklins etext26534 Marlowe, Amy Bell The Girl from Sunset Ranch etext26568 Seventh Annual Report etext26598 Wagner, J. B. (Joseph Bernard), 1870- Seasoning of Wood etext26602 Sancho, Pedro Relación de la conquista del Perú. English etext26613 Emerson, Alice B. Ruth Fielding At College etext26624 Baum, L. Frank (Lyman Frank), 1856-1919 The Road to Oz etext26755 Quiller-Couch, Mabel, 1866-1924 Cornwall's Wonderland etext26825 Krüdener, Barbara Juliane, Freifrau von, 1764-1824 Valérie etext26840 Ambler, Henry Lovejoy, 1843-1924 Tin Foil and Its Combinations for Filling Teeth etext26858 Maxwell, Wm. Audley (William Audley), -1921 Crossing the Plains, Days of '57 etext26870 Hunter, William, 1718-1783 On the uncertainty of the signs of murder in the case of bastard children etext26947 Alvarez, Agustín, 1857-1914 La transformación de las razas en América etext26948 Linton, E. Lynn (Elizabeth Lynn), 1822-1898 Modern Women and What is Said of Them etext27041 Lebert, Marie L'art roman dans le Sud-Manche etext27044 Lebert, Marie Les mutations du livre etext27213 Younghusband, Francis Edward, Sir, 1863-1942 The Heart of Nature etext27276 Lacerda, Augusto de, 1864-1926 Judas etext27312 Abbott, Jacob, 1803-1879 Nero etext27351 Smith, George Adam, Sir, 1856-1942 Jeremiah : Being The Baird Lecture for 1922 etext27358 Oriani, Alfredo, 1852-1909 Olocausto etext27407 The Return of the Dead etext27418 Various Barnavännen, 1905-03 etext27425 Bosboom-Toussaint, A. L. G. (Anna Louisa Geertruida), 1812-1886 Majoor Frans. English etext27428 Treitschke, Heinrich von, 1834-1896 La Francia dal primo impero al 1871 etext27433 Frezzi, Federico, 1346?-1416 Il Quadriregio etext27465 Aflalo, Frederick G. (Frederick George), 1870-1918 Birds in the Calendar etext27476 Mitford, Bertram, 1855-1914 The Sign of the Spider etext27484 Auldjo, John, -1857 Journal of a Visit to Constantinople and Some of the Greek Islands in the Spring and Summer of 1833 etext27570 Buchanan's Journal of Man, June 1887 etext27593 Camacho, Jorge La Majstro kaj Martinelli etext27616 Dixon, Joseph Kossuth, 1856-1926 The Vanishing Race etext27633 Wicks, Mark To Mars via The Moon etext27646 Berlioz, Hector, 1803-1869 The Orchestral Conductor etext27700 Jones, Thomas S. (Thomas Samuel), 1882-1932 The Rose-Jar etext27751 Burleigh, Cyril The Hilltop Boys etext27756 Porges, Arthur, 1915-2006 Revenge etext27761 Shakespeare, William, 1564-1616 Hamlet etext27781 Bill o'th' Hoylus End, 1836-1897 Revised Edition of Poems etext27815 Various The Celtic Magazine, Vol. 1, No. 2, December 1875 etext27846 Erasmus, Desiderius, 1469-1536 Moriae encomium. Dutch etext27887 Seton, Ernest Thompson, 1860-1946 Wild Animals at Home etext27888 Buchanan, Thompson, 1877-1937 Making People Happy etext27894 Verne, Jules, 1828-1905 The Pearl of Lima etext27941 Moraes, Anselmo de Supplemento ao n.º 7 das Insomnias de Camillo Castello Branco etext27993 Reid, Mayne, 1818-1883 Bruin etext27994 Looy, Jacobus van, 1855-1930 Gekken etext28025 Paton, John Gibson, 1824-1907 The Story of John G. Paton etext28030 Slesar, Henry, 1927-2002 Reluctant Genius etext28037 Madison, Lucy Foster, 1865-1932 In Doublet and Hose etext28063 Bova, Ben, 1932- The Next Logical Step etext28068 Teirlinck, Herman, 1879-1967 Het ivoren aapje etext28091 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Double Four etext28128 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Noites de insomnia, offerecidas a quem não póde dormir. Nº8 (de 12) etext28135 Various The Nursery, July 1877, XXII. No. 1 etext28148 Cotton is King, and Pro-Slavery Arguments etext28192 Paine, Albert Bigelow, 1861-1937 Mr. Turtle's Flying Adventure etext28225 Hazlitt, William Carew, 1834-1913 The Book-Collector etext28231 Rovetta, Gerolamo, 1854-1910 Ninnoli etext28359 Hilton, Warren, 1874- Applied Psychology: Making Your Own World etext28373 Saint-Elme, Ida, 1778-1845 Mémoires d'une contemporaine etext28432 Sidgwick, Alfred, Mrs., 1854-1934 Home Life in Germany etext9 Lincoln, Abraham, 1809-1865 Abraham Lincoln's First Inaugural Address etext28448 Penrose, Margaret The Campfire Girls of Roselawn etext28535 Ackerman, Forrest J., 1916-2008 Out of This World Convention etext28554 Dick, Philip K., 1928-1982 Beyond Lies the Wub etext28575 Black, Madeleine A Terminal Market System etext28615 Sinclair, May, 1863-1946 The Flaw in the Crystal etext28629 Oliphant, Mrs. (Margaret), 1828-1897 Phoebe, Junior etext28649 Victoria, Queen of Great Britain, 1819-1901 The Letters of Queen Victoria : A Selection from Her Majesty's Correspondence between the Years 1837 and 1861 etext28726 The Boy Scouts Book of Stories etext28747 Holmes, Oliver Wendell, 1809-1894 The Works Of Oliver Wendell Holmes etext28814 Borrow, George Henry, 1803-1881 Letters to his wife Mary Borrow etext28825 Borrow, George Henry, 1803-1881 The Verner Raven; The Count of Vendel's Daughter etext28909 Spencer, Herbert, 1820-1903 The Philosophy of Style etext28926 De Gurowski, Adam G., count, 1805-1866 Diary from March 4, 1861, to November 12, 1862 etext28988 Dreiser, Theodore, 1871-1945 Jennie Gerhardt etext28991 Nearing, Scott, 1883-1983 The Next Step etext29035 Marinetti, Filippo Tommaso, 1876-1944 L'alcòva d'acciaio etext29155 Bindloss, Harold, 1866-1945 Blake's Burden etext29156 Conrad, Joseph, 1857-1924 The Project Gutenberg Works of Joseph Conrad etext29219 Fothergill, Jessie, 1851-1891 The First Violin etext29242 Jacobi, Carl Richard, 1908-1997 Made in Tanganyika etext29255 Various Astounding Stories of Super-Science September 1930 etext29256 Kahn, Otto Hermann, 1867-1934 High Finance etext29290 Hensley, Joe L., 1926-2007 Now We Are Three etext29294 Larrabee, William, 1832-1912 The Railroad Question etext29354 Pease, M. C. This One Problem etext29375 etext29451 Staveley, Lilian, 1878?-1928 The Romance of the Soul etext29479 Cullum, Ridgwell, 1867-1943 The Night Riders etext29482 More, Paul Elmer, 1864-1937 Benjamin Franklin etext29556 Various The American Missionary — Volume 38, No. 06, June, 1884 etext29566 Burrell, David James, 1844-1926 The Centurion's Story etext29667 Ellis, Edward Sylvester, 1840-1916 Adrift on the Pacific etext29703 Halévy, Ludovic, 1834-1908 El Abate Constanín etext29728 Apicius De re coquinaria. English etext29833 Thucydides, 455? BC-395 BC Πελοποννησιακός Πόλεμος, Τόμος πρώτος etext29861 McClung, Nellie L., 1873-1951 In Times Like These etext29871 Mario, Alberto, 1825-1883 La camicia rossa etext29927 Hurst, Gerald B. (Gerald Berkeley), Sir, 1877-1957 With Manchesters in the East etext29962 McKimmey, James, 1923- Celebrity etext29989 Fyfe, Horace Brown, 1918-1997 The Outbreak of Peace etext29993 Howells, William Dean, 1837-1920 Poems etext29999 Lima, Sebastião de Magalhães, 1850-1928 Costumes Madrilenos etext30001 Price, Derek J. de Solla (Derek John de Solla), 1922-1983 On the Origin of Clockwork, Perpetual Motion Devices, and the Compass etext30011 Boelcke, Oswald, 1891-1916 Held in de Lucht. English etext30124 Various Astounding Stories, February, 1931 etext30126 Conant, J. E. (Judson Eber), 1867-1955 The Church, the Schools and Evolution etext30132 Davidson, Samuel, 1806-1898 The Canon of the Bible etext30144 Robespierre, Maximilien, 1758-1794 Discours par Maximilien Robespierre — 21 octobre 1789-1er juillet 1794 etext30285 Malins, Geoffrey H. How I Filmed the War etext30288 Janifer, Laurence M., 1933-2002 Sight Gag etext30318 Garland, Hamlin, 1860-1940 Money Magic etext30329 Marlowe, Stephen, 1928-2008 Black Eyes and the Daily Grind etext30339 Reynolds, Mack, 1917-1983 Status Quo etext30341 Carvalho, João Marques de, 1866-1910 Contos Paraenses etext30350 The Philippine Islands, 1493-1898, Volume 36, 1649-1666 etext30351 Hughes, Rupert, 1872-1956 The Cup of Fury etext30459 Various The American Missionary — Volume 39, No. 03, March, 1885 etext30485 Ogden, George W. (George Washington), 1871-1966 The Rustler of Wind River etext30564 Stanley, Edward, 1779-1849 Before and after Waterloo etext30667 Bailey, Arthur Scott, 1877-1949 The Tale of Old Dog Spot etext30682 Gifford-Bennet, Robert Ottiwell, 1834-1902 Buxton and its Medicinal Waters etext30698 Clarke, Covington, 1892- Aces Up etext30741 Plato, 427? BC-347? BC Ερυξίας, Αξίοχος, Αλκυών etext30780 Hatch, Charles E. The First Seventeen Years: Virginia 1607-1624 etext30794 Unknown The Princess of Ponthieu etext30801 Herculano, Alexandre, 1810-1877 Opúsculos por Alexandre Herculano - Tomo 06 etext30804 Gage, Harry Lawrence, 1887-1982 Applied Design for Printers etext30848 Stockton, Frank Richard, 1834-1902 Mrs. Cliff's Yacht etext30861 Pierce, Paul Breakfasts and Teas etext30874 Brown, Paul Cameron The Land of Look Behind etext30909 Holmes, E. E. The Church: Her Books and Her Sacraments etext30922 Bonnefoux, Pierre-Marie-Joseph Vie de Christophe Colomb etext30926 Lemos, António de, 1864-1931 Notas d'arte etext31038 Stuart, William W. The Real Hard Sell etext31053 Defoe, Daniel, 1661?-1731 The History of the Devil etext31085 Various The Galaxy, Volume 23, No. 2, February, 1877 etext31101 Church, R. W. (Richard William), 1815-1890 Spenser etext31145 Lagerlöf, Selma, 1858-1940 Liljecronas Heimat etext31192 Dame, William Meade, 1845?-1923 From the Rapidan to Richmond and the Spottsylvania Campaign etext31198 Spence, Lewis, 1874-1955 Legenden en Romances van Spanje etext31215 Merwin, Sam, 1910-1996 A World Apart etext31257 Miller, Alex. McVeigh, Mrs., 1850-1937 Dainty's Cruel Rivals etext31272 Reed, Myrtle, 1874-1911 Threads of Grey and Gold etext31290 Grimké, Archibald Henry, 1849-1930 Right on the Scaffold, or The Martyrs of 1822 etext31301 Cook, Charles C. A Comparative Study of the Negro Problem etext31361 Footner, Hulbert, 1879-1944 The Deaves Affair etext31397 Jones, Henry, 1721-1770 The Earl of Essex etext31411 Carpenter, Flora L., 1880- Stories Pictures Tell etext31420 Michelet, Jules, 1798-1874 La Sorcière: The Witch of the Middle Ages etext31433 Psycharis, Ioannis, 1854-1929 Ρόδα και Μήλα etext31455 Various Harper's New Monthly Magazine, Vol. 2, No. 8, January, 1851 etext31471 Jordan, Elizabeth Garver, 1867-1947 The Girl in the Mirror etext31519 Smith, Jan Narakan Rifles, About Face! etext31593 Various Wilson's Tales of the Borders and of Scotland, Volume III etext31607 Cullum, Ridgwell, 1867-1943 In the Brooding Wild etext31622 Keller, Helen, 1880-1968 Optimism etext31645 Various The Tatler, Volume 3 etext31692 Wolf, Mari Homo Inferior etext31726 Heine, Heinrich, 1797-1856 Poems and Ballads of Heinrich Heine etext31767 Coppel, Alfred The Peacemaker etext31782 Sue, Eugène, 1804-1857 The Poniard's Hilt etext31786 etext31904 Mérimée, Prosper, 1803-1870 Lettres à M. Panizzi - 3eme édition, Tome I etext31912 Tieck, Ludwig, 1773-1853 The Pictures; The Betrothing etext31956 Wesley, Joseph Garth and the Visitor etext31965 Rudy, Charles The Cathedrals of Northern Spain etext31980 Janis, Jean M. Rough Translation etext31995 Myers, Howard L. The Reluctant Weapon etext32003 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 A espada de Alexandre etext32010 Samachson, Joseph, 1906-1980 A Feast of Demons etext32011 Knight, Damon Francis, 1922-2002 Special Delivery etext32039 Kniffin, Gilbert C. The Third Day at Stone's River etext32046 Various Tales from the German etext32079 Clinton, Ed M., 1926-2006 The Small World of M-75 etext32082 Lever, Charles James, 1806-1872 A Rent In A Cloud etext32122 Various The Scrap Book, Volume 1, No. 5 etext32157 Michelet, Jules, 1798-1874 Priests, Women, and Families etext32174 Costa, José Fernandes, 1848-1920 Historia da Grecia etext32223 Hoffmann, Ernst Theodor Amadeus Specimens of German Romance; Vol. II. Master Flea etext32277 Parkerson, James Characters from Life etext32312 Long, Helen Beecher Janice Day etext32331 Bowen, Robert Sydney Dave Dawson at Casablanca etext32333 Bishop, Nathaniel H. (Nathaniel Holmes), 1837-1902 Voyage of the Paper Canoe etext32348 etext32373 Various The Golden Treasury etext32389 Various Favorite Fairy Tales etext32393 Otis, James, 1848-1912 Toby Tyler etext32439 Green, Anna Katharine, 1846-1935 The Doctor, his Wife, and the Clock etext32517 Auerbach, Berthold, 1812-1882 Black Forest Village Stories etext32581 Kelly, Myra, 1876-1910 Little Aliens etext32586 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 O Condemnado/Como os anjos se vingam etext32593 Harrison, William Elizabethan England etext32612 Figgis, Darrell, 1882-1925 The Irish Constitution etext32616 Various The Galaxy, April, 1877 etext32625 Keynes, John Maynard, 1883-1946 A Treatise on Probability etext49 Polly, Jean Armour Surfing the Internet etext54 Baum, L. Frank (Lyman Frank), 1856-1919 The Marvelous Land of Oz etext175 Leroux, Gaston, 1868-1927 The Phantom of the Opera etext176 James, Henry, 1843-1916 Roderick Hudson etext239 United States Radar Map of the United States etext249 French Cave Paintings etext275 Melanchthon, Philipp, 1497-1560 The Augsburg Confession etext308 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Three Men in a Boat etext331 Burroughs, Edgar Rice, 1875-1950 The Mucker etext349 Stratton-Porter, Gene, 1863-1924 The Harvester etext360 Proudhon, P.-J. (Pierre-Joseph), 1809-1865 What is Property? etext361 Porter, Eleanor H. (Eleanor Hodgman), 1868-1920 Miss Billy — Married etext368 Conwell, Russell Herman, 1843-1925 Acres of Diamonds: our every-day opportunities etext408 Du Bois, W. E. B. (William Edward Burghardt), 1868-1963 The Souls of Black Folk etext468 Prévost, Abbé, 1697-1763 Manon Lescaut etext504 Sousa, John Philip, 1854-1932 The Fifth String etext520 Baum, L. Frank (Lyman Frank), 1856-1919 Life and Adventures of Santa Claus etext527 Conrad, Joseph, 1857-1924 The End of the Tether etext620 Carroll, Lewis, 1832-1898 Sylvie and Bruno etext645 James, Henry, 1843-1916 The Figure in the Carpet etext666 etext694 Various Stories from Everybody's Magazine etext718 Wells, H. G. (Herbert George), 1866-1946 Tono Bungay etext753 White, Stewart Edward, 1873-1946 Arizona Nights etext783 Badger, Jos. E. (Joseph Edward), 1848-1909 The Lost City etext807 Dickens, Charles, 1812-1870 Hunted Down: the detective stories of Charles Dickens etext852 Dewey, John, 1859-1952 Democracy and Education: an introduction to the philosophy of education etext860 Mayo, Margaret, 1882-1951 Baby Mine etext867 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Mrs. Korner Sins Her Mercies etext885 Wilde, Oscar, 1854-1900 An Ideal Husband etext925 United States. Presidents. United States Presidents' Inaugural Speeches etext927 Dickens, Charles, 1812-1870 The Lamplighter; a farce in one act etext928 Carroll, Lewis, 1832-1898 Alice's Adventures in Wonderland etext933 Gilbert, W. S. (William Schwenck), Sir, 1836-1911 More Bab Ballads etext942 Hudson, W. H. (William Henry), 1841-1922 Green Mansions: a romance of the tropical forest etext977 Kipling, Rudyard, 1865-1936 American Notes etext996 Cervantes Saavedra, Miguel de, 1547-1616 Don Quixote etext1002 Dante Alighieri, 1265-1321 Divine Comedy, Longfellow's Translation, Purgatory etext1004 Dante Alighieri, 1265-1321 Divine Comedy, Longfellow's Translation, Complete etext1030 Various Cavalier Songs and Ballads of England from 1642 to 1684 etext1047 Wells, H. G. (Herbert George), 1866-1946 The New Machiavelli etext1059 Wells, H. G. (Herbert George), 1866-1946 The World Set Free etext1114 Shakespeare, William, 1564-1616 The Merchant of Venice etext1143 Conrad, Joseph, 1857-1924 Notes on Life and Letters etext1147 Fielding, Henry, 1707-1754 A journey from this world to the next — Volume 2 etext1193 James, Henry, 1843-1916 The Coxon Fund etext1264 Wells, H. G. (Herbert George), 1866-1946 The Wheels of Chance: a Bicycling Idyll etext1268 Verne, Jules, 1828-1905 Île mystérieuse. English etext1359 Nield, Jonathan, 1863- A Guide to the Best Historical Novels and Tales etext1363 Appleton, Victor [pseud.] Tom Swift Among the Fire Fighters, or, Battling with Flames from the Air etext1379 Wister, Owen, 1860-1938 A Straight Deal etext1431 Schreiner, Olive, 1855-1920 Trooper Peter Halket of Mashonaland etext1464 All the Year Round: Contributions etext1510 Shakespeare, William, 1564-1616 Love's Labour's Lost etext1521 Shakespeare, William, 1564-1616 King Henry V etext1585 etext1594 Lang, Andrew, 1844-1912 Essays in Little etext1678 Balzac, Honoré de, 1799-1850 An Historical Mystery etext1699 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Vanished Messenger etext1701 Wiggin, Kate Douglas Smith, 1856-1923 Story of Waitstill Baxter etext1801 Shakespeare, William, 1564-1616 The Tempest etext1832 Groner, Auguste, 1850-1929 The Case of the Lamp That Went Out etext1845 Beerbohm, Max, Sir, 1872-1956 Zuleika Dobson, or, an Oxford love story etext1889 Blanchan, Neltje, 1865-1918 Bird Neighbors etext1915 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Second Thoughts of an Idle Fellow etext2002 Browning, Elizabeth Barrett, 1806-1861 Sonnets from the Portuguese etext2027 Molière, 1622-1673 Tartuffe etext2058 Donn-Byrne, Brian Oswald, 1889-1928 Messer Marco Polo etext2107 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 07 etext2146 Goethe, Johann Wolfgang von, 1749-1832 Egmont etext2155 Moore, Frank Frankfort, 1855-1931 Phyllis of Philistia etext2187 Wieland, Christoph Martin, 1733-1813 Oberon etext2196 Loti, Pierre, 1850-1923 An Iceland Fisherman etext2205 Human Genome Project Chromosome Number 05 etext2317 Jefferies, Richard, 1848-1887 The Story of My Heart etext2327 James, Henry, 1843-1916 Some Short Stories [by Henry James] etext2343 Doyle, Arthur Conan, Sir, 1859-1930 The Adventure of Wisteria Lodge etext2358 Rinehart, Mary Roberts, 1876-1958 The After House etext2407 Goethe, Johann Wolfgang von, 1749-1832 Die Leiden des jungen Werther — Band 1 etext2411 Goethe, Johann Wolfgang von, 1749-1832 Wilhelm Meisters Wanderjahre — Band 3 etext2431 Twain, Mark, 1835-1910 Is Shakespeare Dead? etext2445 Voltaire, 1694-1778 Letters on England etext2450 Tolstoy, Leo, graf, 1828-1910 Boyhood etext2496 Mitford, Mary Russell, 1787-1855 Our Village etext2557 Burgess, Thornton W. (Thornton Waldo), 1874-1965 Old Mother West Wind etext2567 Thoreau, Henry David, 1817-1862 A Plea for Captain John Brown etext2588 Various Stories by English Authors: Scotland (Selected by Scribners) etext2659 Lincoln, Abraham, 1809-1865 The Writings of Abraham Lincoln — Volume 7: 1863-1865 etext2698 Holmes, Oliver Wendell, 1809-1894 A Mortal Antipathy: first opening of the new portfolio etext2813 Bennett, Arnold, 1867-1931 The Grand Babylon Hotel etext2851 Henry, O., 1862-1910 Sixes and Sevens etext2886 Harte, Bret, 1836-1902 Tales of the Argonauts etext2910 Galsworthy, John, 1867-1933 The Little Dream etext2994 Hichens, Robert Smythe, 1864-1950 A Spirit in Prison etext3006 Kipling, Rudyard, 1865-1936 Stalky & Co. etext3012 Aristophanes, 446? BC-385? BC The Acharnians etext3026 Frost, Robert, 1874-1963 North of Boston etext3032 Farrand, Max, 1869-1945 The Fathers of the Constitution; a chronicle of the establishment of the Union etext3038 Orth, Samuel Peter, 1873-1922 The Armies of Labor etext3058 Hardy, Thomas, 1840-1928 A Changed Man; and other tales etext3114 Warner, Charles Dudley, 1829-1900 Education of the Negro etext3163 Burroughs, John, 1837-1921 Birds and Bees, Sharp Eyes and Other Papers etext3193 Twain, Mark, 1835-1910 Mark Twain's Letters — Volume 1 (1835-1866) etext3204 Ward, Grady Moby Hyphenation List etext3217 Honig, Winfried Mr. Honey's Small Business Dictionary etext3224 Honig, Winfried Mr. Honey's Work Study Dictionary etext3261 Morris, William, 1834-1896 News from Nowhere, or, an Epoch of Rest : being some chapters from a utopian romance etext3297 Hebbel, Christian Friedrich, 1813-1863 Schnock etext3350 Sue, Eugène, 1804-1857 The Wandering Jew — Complete etext3404 Howells, William Dean, 1837-1920 April Hopes etext3497 Perkins, Lucy Fitch, 1865-1937 The Swiss Twins etext3504 Human Genome Project Human Genome Project, Chromosome Number 04 etext3532 Leacock, Stephen, 1869-1944 My Discovery of England etext3628 Wilcox, Ella Wheeler, 1855-1919 The Kingdom of Love etext3740 Various Complete Project Gutenberg Collection of Memoirs of Napoleon etext3743 Paine, Thomas, 1737-1809 Writings of Thomas Paine — Volume 4 (1794-1796): the Age of Reason etext3922 France, Anatole, 1844-1924 The Red Lily — Complete etext3935 Theuriet, André, 1833-1907 A Woodland Queen — Volume 1 etext3941 Musset, Alfred de, 1810-1857 The Confession of a Child of the Century — Volume 3 etext3985 Bernard, Charles de, 1804-1850 Gerfaut — Complete etext3995 Loti, Pierre, 1850-1923 Madame Chrysantheme — Complete etext4140 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 21: March/April 1662-63 etext4215 Cooper, James Fenimore, 1789-1851 Oak Openings etext4230 Appleton, Victor [pseud.] Tom Swift and His Motor-Cycle, or, Fun and Adventures on the Road etext4238 Babbage, Charles, 1792-1871 On the Economy of Machinery and Manufactures etext4246 Evans, Augusta J. (Augusta Jane), 1835-1909 Beulah etext4256 Bogue, Benjamin Nathaniel Stammering, Its Cause and Cure etext4268 Gaskell, Elizabeth Cleghorn, 1810-1865 Cousin Phillis etext4307 Gissing, George, 1857-1903 In the Year of Jubilee etext4311 Gissing, George, 1857-1903 The Emancipated etext4320 Hume, David, 1711-1776 An Enquiry Concerning the Principles of Morals etext4357 Baum, L. Frank (Lyman Frank), 1856-1919 American Fairy Tales etext4411 Meredith, George, 1828-1909 Ordeal of Richard Feverel — Volume 6 etext4480 Meredith, George, 1828-1909 Lord Ormont and His Aminta — Volume 4 etext4553 Evans, Augusta J. (Augusta Jane), 1835-1909 St. Elmo etext4589 Arthur, T. S. (Timothy Shay), 1809-1885 All's for the Best etext4594 Arthur, T. S. (Timothy Shay), 1809-1885 Home Lights and Shadows etext4654 Shelley, Percy Bysshe, 1792-1822 The Daemon of the World etext4710 Munro, John, 1849-1930 The Story of Electricity etext4712 Day, Holman, 1865-1935 The Landloper etext4831 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 29: 1578, part III etext4876 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1603-04 etext4889 Motley, John Lothrop, 1814-1877 Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years' War, 1610c-12 etext4890 Motley, John Lothrop, 1814-1877 Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years' War, 1609-14 etext4921 Various Young Canada's Nursery Rhymes etext4956 Ballou, Maturin Murray, 1820-1895 The Duke's Prize; a Story of Art and Heart in Florence etext4988 Hope, Laura Lee The Outdoor Girls at Wild Rose Lodge etext5059 Galsworthy, John, 1867-1933 Plays : Fifth Series etext5078 Wilson, Woodrow, 1856-1924 When a Man Comes to Himself etext5098 Johnson, Samuel, 1709-1784 Lives of the English Poets : Waller, Milton, Cowley etext5157 Stanley, Henry M. (Henry Morton), 1841-1904 How I Found Livingstone; travels, adventures, and discoveres in Central Africa, including an account of four months' residence with Dr. Livingstone, by Henry M. Stanley etext5166 Jonson, Ben, 1573-1637 The Poetaster etext5204 Matz, Bertram Waldrom, 1865-1925 The Inns and Taverns of "Pickwick"; with Some Observations on Their Other Associations, etext5264 Wells, Carolyn, 1862-1942 Patty's Butterfly Days etext5293 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 19 etext5308 Fletcher, J. S. (Joseph Smith), 1863-1935 The Paradise Mystery etext5312 Baum, L. Frank (Lyman Frank), 1856-1919 Mother Goose in Prose etext5408 Irwin, Wallace, 1876-1959 The Rubaiyat of Omar Khayyam Jr. etext5414 Hamilton, Anthony, Count, 1646-1720 The Memoirs of Count Grammont — Volume 06 etext5528 Ebers, Georg, 1837-1898 The Bride of the Nile — Volume 12 etext5530 Ebers, Georg, 1837-1898 A Thorny Path — Volume 01 etext5546 Ebers, Georg, 1837-1898 In the Fire of the Forge — Volume 04 etext5548 Ebers, Georg, 1837-1898 In the Fire of the Forge — Volume 06 etext5600 Ebers, Georg, 1837-1898 Complete Project Gutenberg Georg Ebers Works etext5614 Lasker, Edward, 1885-1981 Chess Strategy etext5621 Cushing, Max Pearson, 1886-1951 Baron D'Holbach : a Study of Eighteenth Century Radicalism in France etext5631 Wells, Carolyn, 1862-1942 Patty's Suitors etext5671 Wynne, Ellis, 1671-1734 The Visions of the Sleeping Bard etext5677 Sinclair, Upton, 1878-1968 Jimmie Higgins etext5757 Barr, Amelia Edith Huddleston, 1831-1919 The Maid of Maiden Lane etext5841 Twain, Mark, 1835-1910 Sketches New and Old, Part 6. etext5849 Spencer, Herbert, 1820-1903 The Philosophy of Style etext5906 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 04 etext5915 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 13 etext6094 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Scouts of Stonewall etext6236 Parker, Gilbert, 1862-1932 The Battle of the Strong — Complete etext6291 Parker, Gilbert, 1862-1932 Wild Youth, Complete etext6298 Parker, Gilbert, 1862-1932 Carnac's Folly, Volume 3. etext6314 De Quincey, Thomas, 1785-1859 Biographical Essays etext6328 The Junior Classics — Volume 5 etext6346 Burney, Fanny, 1752-1840 Cecilia; Or, Memoirs of an Heiress — Volume 1 etext6380 Spyri, Johanna, 1827-1901 Cornelli etext6397 Suetonius Tranquillus, Gaius, 75-160 The Lives of the Twelve Caesars, Volume 12: Domitian etext6419 Library of Congress. Copyright Office Copyright Renewals 1959 etext6480 Trench, Richard Chenevix, 1807-1886 On the Study of Words etext6528 Stendal, Russell Martin Sagradas Escrituras Version Antigua etext6595 Chavasse, Pye Henry, 1810-1879 Advice to a Mother on the Management of Her Children etext6653 Champlain, Samuel de, 1567-1635 Voyages of Samuel De Champlain — Volume 01 etext6687 Blavatsky, H. P. (Helena Petrovna), 1831-1891 From the Caves and Jungles of Hindostan etext6700 Meinhold, Wilhelm, 1797-1851 Sidonia, the Sorceress : the Supposed Destroyer of the Whole Reigning Ducal House of Pomerania — Volume 1 etext6737 Rizal, José, 1861-1896 The Social Cancer etext6742 Molière, 1622-1673 The School for Husbands etext6749 Champlain, Samuel de, 1567-1635 Voyages of Samuel De Champlain — Volume 02 etext6769 Haggard, Henry Rider, 1856-1925 The People of the Mist etext6840 Benson, E. F. (Edward Frederic), 1867-1940 Queen Lucia etext6864 Adams, Samuel Hopkins, 1871-1958 Average Jones etext6877 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Head of Kay's etext6884 Atherton, Gertrude Franklin Horn, 1857-1948 Sleeping Fires: a Novel etext6888 Parker, John H. (John Henry), 1866- History of the Gatling Gun Detachment, Fifth Army Corps, at Santiago etext6913 Radisson, Pierre Esprit, 1636-1710 Voyages of Peter Esprit Radisson etext6915 Leslie, Lawrence J. In Camp on the Big Sunflower etext6950 Hope, Laura Lee The Bobbsey Twins at the Seashore etext6998 Brown, Edna Adelaide The Spanish Chest etext7032 Kingsley, Charles, 1819-1875 Prose Idylls, New and Old etext7038 Susag, S. O., 1862-1952 Personal Experiences of S. O. Susag etext7128 Indian Fairy Tales etext7159 Twain, Mark, 1835-1910 The Prince and the Pauper, Part 6. etext7165 De Vere, Aubrey, 1814-1902 The Legends of Saint Patrick etext7169 Mârkandeya Purâna, Books VII. VIII etext7294 Ardant du Picq, Charles Jean Jacques Joseph, 1821-1870 Battle Studies etext7300 Johnson, Helen Kendrick, 1844-1917 Woman and the Republic — a Survey of the Woman-Suffrage Movement in the United States and a Discussion of the Claims and Arguments of Its Foremost Advocates etext7312 Shen, Kuo, 1031-1095 夢溪筆談, Volume 01-06 etext7331 Liu, Xiang, 77? BC-6? BC 說苑, Volume 17-20 etext7399 Holmes, Oliver Wendell, 1809-1894 The Poetical Works of Oliver Wendell Holmes — Volume 12: Verses from the Oldest Portfolio etext7417 Balzac, Honoré de, 1799-1850 The Resources of Quinola etext7533 A Book of Old Ballads — Volume 3 etext7541 Dumas père, Alexandre, 1802-1870 Quotes and Images from Celebrated Crimes etext7560 Hamilton, Anthony, Count, 1646-1720 Quotes and Images From Memoirs of Count Grammont etext7590 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 05 etext7686 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Lucretia — Volume 02 etext7719 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Last of the Barons — Volume 05 etext7797 Howells, William Dean, 1837-1920 The Lady of the Aroostook etext7817 Gubernatis, Angelo de, comte, 1840-1913 Alessandro Manzoni etext7832 Phillips, David Graham, 1867-1911 The Deluge etext7837 Hale, Beatrice Forbes-Robertson The Nest Builder etext7842 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 The Rise of Iskander etext7866 Wilcox, Ella Wheeler, 1855-1919 An Ambitious Man etext7927 Balzac, Honoré de, 1799-1850 The Celibates etext7955 Strindberg, August, 1849-1912 Historical Miniatures etext8004 Anonymous The Bible, King James version, Book 4: Numbers etext8073 Lynde, Francis, 1856-1930 A Fool for Love etext8099 Stedman, John Gabriël, 1744-1797 Reize naar Surinamen en door de binnenste gedeelten van Guiana — Deel 4 etext8154 Parton, James, 1822-1891 Revolutionary Heroes, and Other Historical Papers etext8205 Darwin, Charles, 1809-1882 On the Origin of Species etext8231 Anonymous The World English Bible (WEB): Numbers etext8283 Anonymous The World English Bible (WEB): Titus etext8287 Anonymous The World English Bible (WEB): 1 Peter etext8316 The Bible, Douay-Rheims, Book 16: 2 Esdras etext8404 Brown, Charles Brockden, 1771-1810 Jane Talbot etext8448 Vera, [pseud.], 1865- Honor Edgeworth etext8468 Bilderdijk, Willem, 1756-1831 De ondergang der Eerste Wareld etext8469 etext8475 Twain, Mark, 1835-1910 Life on the Mississippi, Part 5. etext8521 Alsaker, R. L. Maintaining Health etext8538 Foote, Mary Hallock, 1847-1938 A Touch of Sun and Other Stories etext8615 Doyle, Arthur Conan, Sir, 1859-1930 A Study in Scarlet etext8618 Doyle, Arthur Conan, Sir, 1859-1930 The Parasite etext8624 Doyle, Arthur Conan, Sir, 1859-1930 The Adventures of Sherlock Holmes etext8697 Bonehill, Ralph Guns and Snowshoes etext8709 The Doré Gallery of Bible Illustrations, Volume 9 etext8781 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Hell, Volume 03 etext8829 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Mark etext8840 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, 1 Thessalonians etext8854 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Revelation etext8869 Stephens, Robert Neilson, 1867-1906 Tales from Bohemia etext8884 Burckhardt, John Lewis, 1784-1817 Travels in Syria and the Holy Land etext8909 Holbach, Paul Henri Thiry, baron d', 1723-1789 The System of Nature, Volume 1 etext8911 Stuart, John McDouall, 1815-1866 Explorations in Australia etext8936 Betham-Edwards, Matilda, 1836-1919 Holidays in Eastern France etext8938 Ware, William, 1797-1852 Zenobia etext8948 Hayley, William, 1745-1820 Poems on Serious and Sacred Subjects etext9092 Bloomfield, Robert, 1766-1823 The Farmer's Boy etext9148 Hakluyt, Richard, 1552-1616 The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 07 etext9183 MacDonald, George, 1824-1905 Wilfrid Cumbermede etext9223 Hawthorne, Nathaniel, 1804-1864 Fire Worship (From "Mosses from an Old Manse") etext9225 Hawthorne, Nathaniel, 1804-1864 Monsieur du Miroir (From "Mosses from an Old Manse") etext9234 Hawthorne, Nathaniel, 1804-1864 The Old Apple Dealer (From "Mosses from an Old Manse") etext9253 Hawthorne, Nathaniel, 1804-1864 Browne's Folly etext9334 etext9344 Conrad, Joseph, 1857-1924 Almayer's Folly etext9375 Lessing, Gotthold Ephraim, 1729-1781 Ausgewählte Fabeln etext9397 Richards, Laura Elizabeth Howe, 1850-1943 The Green Satin Gown etext9417 Hardy, Thomas, 1840-1928 Far from the Madding Crowd etext9457 Burckhardt, John Lewis, 1784-1817 Travels in Arabia; comprehending an account of those territories in Hedjaz which the Mohammedans regard as sacred etext9471 MacDonald, George, 1824-1905 The Vicar's Daughter etext9565 Whittier, John Greenleaf, 1807-1892 Narrative and Legendary Poems: Pennsylvania Pilgrim and Others etext9641 Bazzero, Ambrogio, 1851-1882 Ugo: Scene del secolo X etext9665 Ward, Humphry, Mrs., 1851-1920 Delia Blanchflower etext9671 Eliot, George, 1819-1880 Daniel Deronda etext9695 Dickens, Charles, 1812-1870 Bleak House etext9698 Dickens, Charles, 1812-1870 Some Christmas Stories etext9782 Cox, Francis Augustus, 1783-1853 Female Scripture Biographies, Volume I etext9802 Shaw, Bernard, 1856-1950 Der Mann des Schicksals etext9809 Glyn, Elinor, 1864-1943 The Price of Things etext9832 White, Fred M. (Fred Merrick), 1859- The Crimson Blind etext9833 Fitzhugh, Percy Keese, 1876-1950 Pee-Wee Harris etext9886 Abrahams, Israel, 1858-1925 The Book of Delight and Other Papers etext9890 L.C. Biografia del libertador Simon Bolívar, o La independencia de la America del sud etext9937 Woman's Institute of Domestic Arts and Sciences Woman's Institute Library of Cookery etext9966 Perkins, Lucy Fitch, 1865-1937 The Spartan Twins etext9967 Sinclair, May, 1863-1946 Mr. Waddington of Wyck etext10078 Johnson, Douglas W. (Douglas Wilson), 1878-1944 Plain Words from America etext10097 Carpenter, Edward, 1844-1929 The Healing of Nations and the Hidden Sources of Their Strife etext10108 Anonymous A Treatise of Daunses etext10109 Marquand, John P. (John Phillips), 1893-1960 The Unspeakable Gentleman etext10111 Sweetser, Kate Dickinson, -1939 Boys and girls from Thackeray etext10162 Dio, Cassius Dio's Rome, Volume 3 etext10223 Various Meyers Konversationslexikon Band 15 etext10240 Orchestra, Losey's Plaque No. 1 etext10260 Iwanowski, Aleksander (Harmonika) Narodowe Melodye etext10280 Wright, Edward Sterling In de Mornin' and Jes Gib Him One Ob Mine etext10281 Humphrey, Harry E. Antony's Address over the Body of Caesar etext10286 Kryl, Bohumir (coronet) Arbucklenian Polka etext10291 Wells, H. G. (Herbert George), 1866-1946 In the Fourth Year etext10307 Burkhart, Maurice At the Moving Picture Ball etext10370 Musick, John R. (John Roy), 1849-1901 Sustained honor etext10404 Raine, William MacLeod, 1871-1954 Man Size etext10406 Tuson, William Heart Bowed Down etext10407 Orchestra, Jaudas' Society A Perfect Day etext10408 Broadway Dance Orchestra Bring Back my Blushing Rose ("Sally Won't You Come Back") etext10423 Green, George Hamilton, 1893-1970 Triplets : Fox Trot etext10461 etext10470 McGuinn, Roger Nine Hundred Miles etext10555 Yonge, Charles Duke, 1812-1891 The Life of Marie Antoinette, Queen of France etext10565 Jacobs, W. W. (William Wymark), 1863-1943 Watch-Dogs etext10568 Jacobs, W. W. (William Wymark), 1863-1943 Dual Control etext10599 Snell, Roy J. (Roy Judson), 1878-1959 Lost in the Air etext10619 Benwell, John An Englishman's Travels in America etext10687 Daudet, Alphonse, 1840-1897 Tartarin de Tarascon etext10700 etext10711 Various Punch, or the London Charivari, Volume 153, October 3, 1917 etext10733 McCleary, J. T. (James Thompson), 1853-1924 Studies in Civics etext10758 McGuinn, Roger Star-Spangled Banner etext10782 Jacobs, W. W. (William Wymark), 1863-1943 Homeward Bound etext10861 Leighton, John Paris under the Commune etext10983 Anonymous The Young Captives etext11001 Beethoven, Ludwig van, 1770-1827 String Quartet No. 05 in a major Opus 18 etext11007 Anonymous Jemmy Stubbins, or the Nailer Boy etext11117 Various The Atlantic Monthly, Volume 07, No. 40, February, 1861 etext11136 Rousseau, Jean-Jacques, 1712-1778 A Discourse Upon the Origin and the Foundation Of etext11158 Various The Atlantic Monthly, Volume 10, No. 61, November, 1862 etext11164 Maggard, James H. Rough and Tumble Engineering etext11183 Jacobs, W. W. (William Wymark), 1863-1943 The Nest Egg etext11202 Richardson, James D. (James Daniel), 1843-1914 A Compilation of the Messages and Papers of the Presidents etext11216 Price, Edith Ballinger, 1897-1997 The Happy Venture etext11233 Various The Mirror of Literature, Amusement, and Instruction etext11257 May, Sophie, 1833-1906 Little Folks Astray etext11273 American Anti-Slavery Society The Anti-Slavery Examiner, Part 3 of 4 etext11320 Various The Mirror of Literature, Amusement, and Instruction etext11344 Various Scientific American Supplement, No. 415, December 15, 1883 etext11389 Various The Mirror of Literature, Amusement, and Instruction etext11402 Marshall, Edison, 1894-1967 The Sky Line of Spruce etext11406 Various The Mirror of Literature, Amusement, and Instruction etext11423 Thiers, Adolphe, 1797-1877 Histoire de la Révolution française, Tome 6 etext11425 Various Punch, or the London Charivari, Volume 153, December 5, 1917 etext11462 Various The Mirror of Literature, Amusement, and Instruction etext11479 Jacobs, W. W. (William Wymark), 1863-1943 The Substitute etext11531 Pardoe, Julia, 1804-1862 The Life of Marie de Medicis — Volume 1 etext11576 etext11637 Various The Mirror of Literature, Amusement, and Instruction etext11658 A Williams Anthology etext11689 Miller, Alice Duer, 1874-1942 Are Women People? etext11707 Various Notes and Queries, Number 13, January 26, 1850 etext11709 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext11732 Various Punch, or the London Charivari, Volume 156, April 16, 1919 etext11738 Hindoo Tales etext11756 Moisa, Dorin Teodor Creierul, O Enigma Descifrata etext11768 Johnson, Samuel, 1709-1784 The Works of Samuel Johnson, Volume 05 etext11898 Various Seeing Europe with Famous Authors, Volume 4 etext11939 Jordan, David Starr, 1851-1931 Life's Enthusiasms etext11945 Schopenhauer, Arthur, 1788-1860 Essays of Schopenhauer etext11964 Thiers, Adolphe, 1797-1877 Histoire de la Révolution française, Tome 7 etext11996 Lady, An English A Residence in France During the Years 1792, 1793, 1794 and 1795, Complete etext12024 Payn, James, 1830-1898 Bred in the Bone etext12037 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Wild Knight and Other Poems etext12038 Moses, Montrose Jonas, 1878-1934 Representative Plays by American Dramatists: 1856-1911: etext12102 Bacheller, Irving, 1859-1950 Darrel of the Blessed Isles etext12131 Jacobs, W. W. (William Wymark), 1863-1943 A Golden Venture etext12132 Jacobs, W. W. (William Wymark), 1863-1943 Three at Table etext12156 Jacobs, W. W. (William Wymark), 1863-1943 The Three Sisters etext12170 Curwood, James Oliver, 1878-1927 The Wolf Hunters etext12249 Riddle, A. G. Bart Ridgeley etext12393 Various Punch, or the London Charivari, Volume 99, September 6, 1890 etext12399 Laboulaye, Edouard, 1811-1883 Contes et nouvelles etext12455 Guerber, H. A. (Hélène Adeline), 1859-1929 Legends of the Middle Ages etext12456 Chaytor, H.J., 1871-1954 The Troubadours etext12464 A Compilation of the Messages and Papers of the Presidents etext12496 Various The Mirror of Literature, Amusement, and Instruction etext12499 Heller, Frank, 1886-1947 Förbannelse över de otrogna! etext12641 Ruskin, John, 1819-1900 The Queen of the Air etext12649 etext12689 Hancock, H. Irving (Harrie Irving), 1868-1922 The High School Freshmen etext12717 Whitman, Walt, 1819-1892 When Lilacs Last in the Dooryard Bloom'd etext12759 Various The World's Best Poetry, Volume 4 etext12775 Hancock, H. Irving (Harrie Irving), 1868-1922 Dave Darrin's Fourth Year at Annapolis etext12824 Kivi, Aleksis, 1834-1872 Olviretki Schleusingenissä; Leo ja Liina; Alma etext12830 Andrews, Mary Raymond Shipman, 1860-1936 The Perfect Tribute etext12864 Hall, Benjamin Homer, 1830-1893 A Collection of College Words and Customs etext12932 Bramah, Ernest, 1869?-1942 Four Max Carrados Detective Stories etext12998 Swan, Annie S. (Annie Shepherd), 1859-1943 Thankful Rest etext13006 Mackaye, Steele, 1844?-1894 Representative Plays by American Dramatists: 1856-1911: Paul Kauvar; or, Anarchy etext13046 Belloc, Hilaire, 1870-1953 The Historic Thames etext13086 Abu al-Ala al-Maarri, 973-1057 The Diwan of Abu'l-Ala etext13110 Baum, L. Frank (Lyman Frank), 1856-1919 Aunt Jane's Nieces at Work etext13140 Canth, Minna, 1844-1897 Hanna etext13153 Beethoven, Ludwig van, 1770-1827 String Quartet No. 15 in A minor Opus 132 etext13163 Semmes, Raphael, 1809-1877 The Cruise of the Alabama and the Sumter etext13165 Canth, Minna, 1844-1897 Papin perhe; Hän on Sysmästä; Spiritistinen istunto etext13230 Dunn, Oscar, 1845-1885 Glossaire franco-canadien et vocabulaire de locutions vicieuses usitées au Canada etext13278 Bone, Gertrude Women of the Country etext13328 Goethe, Johann Wolfgang von, 1749-1832 Torquato Tasso etext13349 Besant, Annie Wood, 1847-1933 The Freethinker's Text Book, Part II. etext13365 Runciman, James, 1852-1891 The Ethics of Drink and Other Social Questions etext13489 Various The Brochure Series of Architectural Illustration, Volume 01, No. 01, January 1895 etext13570 McFeeters, J. C. Sketches of the Covenanters etext13614 Ellis, Havelock, 1859-1939 Studies in the Psychology of Sex, Volume 5 etext13623 Library of the World's Best Literature, Ancient and Modern — Volume 6 etext13750 Bunyan, John, 1628-1688 The Heavenly Footman etext13765 Leroux, Gaston, 1868-1927 Le mystère de la chambre jaune etext13772 Leroux, Gaston, 1868-1927 Les etranges noces de Rouletabille etext13787 Lugt, Johanna G. Taormina etext13792 Baudelaire, Charles, 1821-1867 Journaux intimes etext13863 Diderot, Denis, 1713-1784 Regrets sur ma vieille robe de chambre etext13898 Heyliger, William Don Strong, Patrol Leader etext13950 Dumas père, Alexandre, 1802-1870 Le vicomte de Bragelonne, Tome IV. etext14011 Various The Mirror of Literature, Amusement, and Instruction etext14213 Foster, J. F. Three Months of My Life etext14223 Collin, J. (Josef), 1864- Untersuchungen über Goethes Faust in seiner ältesten Gestalt etext14230 Various The Mirror of Literature, Amusement, and Instruction etext14253 Hichens, Robert Smythe, 1864-1950 Flames etext14262 Caine, Hall, Sir, 1853-1931 The Shadow of a Crime etext14293 Brown, Robert Carlton, 1886-1959 The Complete Book of Cheese etext14305 Layamon Roman de Brut. English etext14353 Swift, Jonathan, 1667-1745 The Poems of Jonathan Swift, D.D., Volume 1 etext14365 Various Punch, Or The London Charivari, Volume 102, March 19, 1892 etext14370 etext14371 Archard, Charles J. The Portland Peerage Romance etext14430 Runciman, John F., 1866-1916 Purcell etext14486 Bower, B. M., 1874-1940 The Thunder Bird etext14488 Finley, Martha, 1828-1909 Elsie's Kith and Kin etext14581 Kester, Vaughan, 1869-1911 The Just and the Unjust etext14650 Pakkala, Teuvo, 1862-1925 Meripoikia etext14668 McGuffey, William Holmes, 1800-1873 McGuffey's Second Eclectic Reader etext14679 Soulsby, Lucy H. M. Stray Thoughts for Girls etext14697 Johnston, Mary, 1870-1936 Lewis Rand etext14702 Féval, Paul, 1817-1887 Le loup blanc etext14732 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Unc' Billy Possum etext14733 Päivärinta, Pietari, 1827-1913 Elämän hawainnoita I: Uudistalo; Halla=aamuna; Mökin Maiju; Noidan rangaistus etext14758 Farrar, J. M. Mary Anderson etext14801 Jahnsson, Evald Ferdinand, 1844-1895 "En ollenkaan muista" etext14817 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 The White Wolf and Other Fireside Tales etext14848 Potter, Beatrix, 1866-1943 The Story of Miss Moppet etext14882 Wallace, Dillon, 1863-1939 Bobby of the Labrador etext14918 Dostoyevsky, Fyodor, 1821-1881 Souvenirs de la maison des morts etext14936 Various Punch, or the London Charivari, Volume 1, November 13, 1841 etext14992 Paul, Herbert W. (Herbert Woodfield), 1853-1935 The Life of Froude etext15020 Various The Brochure Series of Architectural Illustration, Volume 01, No. 11, November, 1895 etext15108 Catherwood, Mary Hartwell, 1847-1902 Lazarre etext15128 Green, Jacob D. Narrative of the Life of J.D. Green, a Runaway Slave, from Kentucky etext15152 Premio-Real, Comte de Saint-Pierre & Miquelon etext15253 Huxley, Thomas Henry, 1825-1895 The Advance of Science in the Last Half-Century etext15295 Sue, Eugène, 1804-1857 Le juif errant - Tome I etext15298 Indriði Einarsson, 1851-1939 Sword and crozier, drama in five acts etext15310 Shea, John Gilmary Dictionnaire François—Onontagué etext15381 Victorian Short Stories: Stories of Courtship etext15412 Randolph, B. W. (Berkeley William), 1858-1925 The Virgin-Birth of Our Lord etext15482 Sawyer, Ruth, 1880-1970 The Primrose Ring etext15521 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Prickly Porky etext15572 Dicey, Albert Venn, 1835-1922 A Leap in the Dark etext15594 Various Punch, or the London Charivari, Volume 103, October 22, 1892 etext15601 Various The Great Round World and What Is Going On In It, Vol. 1, No. 29, May 27, 1897 etext15634 Various Blackwood's Edinburgh Magazine — Volume 56, No. 346, August, 1844 etext15656 Anonymous Representation of the Impiety and Immorality of the English Stage (1704); Some Thoughts Concerning the Stage in a Letter to a Lady (1704) etext15670 Everett-Green, Evelyn, 1856-1932 The Secret Chamber at Chad etext15686 Maquet, Auguste, 1813-1886 La belle Gabrielle, vol. 3 etext15779 Kaye-Smith, Sheila, 1887-1956 Joanna Godden etext15802 Ritchie, Eric Moore With Botha in the Field etext15823 Pitray, Olga de Ségur, vicomtesse, 1835- Voyages abracadabrants du gros Philéas etext15871 Bader, Clarisse, 1840-1902 La femme française dans les temps modernes etext15892 Stuart, Janet Erskine, 1857-1914 The Education of Catholic Girls etext15981 Lucio y Bustamante, Fray Miguel, 1842-1893 Si Tandang Basio Macunat etext16040 Dalrymple, Leona, 1884- Kenny etext16079 Willing, Thomson Some Old Time Beauties etext16081 Anonymous The Anti-Slavery Alphabet etext16109 etext16121 Ewing, Juliana Horatia Gatty, 1841-1885 Brothers of Pity and Other Tales of Beasts and Men etext16173 Various St. Nicholas Magazine for Boys and Girls, Vol. 5, May, 1878, No. 7. etext16372 Escrich, Enrique Perez Fortuna etext16396 Mühlbach, L. (Luise), 1814-1873 A Conspiracy of the Carbonari etext16427 Pedler, Margaret, -1948 The Splendid Folly etext16512 Southwell, Charles An Apology for Atheism etext16543 Totius, 1877-1953 Trekkerswee etext16553 Sinclair, Bertrand W., 1881-1972 Burned Bridges etext16619 Various Punch, or the London Charivari, Vol. 159, 1920-07-28 etext16624 Eddy, Mary Baker, 1821-1910 No and Yes etext16639 Wing, Frank The Fotygraft Album etext16641 López, Honorio, 1875-1958 Dimasalang Kalendariong Tagalog (1920) etext16662 Holmes, Mary Jane, 1825-1907 Bad Hugh etext16694 Bellamy, Edward, 1850-1898 Vuonna 2000 etext16749 Holinshed, Raphael, -1580? Chronicles of England, Scotland and Ireland (2 of 6): England (3 of 12) etext16753 Dekker, Thomas, 1572-1632 The Noble Spanish Soldier etext16810 Fortune, Timothy Thomas, 1856-1928 Black and White etext16813 Barrès, Maurice, 1862-1923 Le culte du moi 2 etext16857 Tupper, Martin Farquhar, 1810-1889 Probabilities : An aid to Faith etext16867 Colum, Padraic, 1881-1972 The Adventures of Odysseus and The Tales of Troy etext16893 Shakespeare, William, 1564-1616 Macbeth etext17024 Livingstone, David, 1813-1873 The Last Journals of David Livingstone, in Central Africa, from 1865 to His Death, Volume II (of 2), 1869-1873 etext17061 etext17101 Earle, John, 1824-1903 Anglo-Saxon Literature etext17113 Mukerji, S. Indian Ghost Stories etext17117 Goldsmith, Oliver, 1730-1774 An Elegy on the Glory of Her Sex, Mrs. Mary Blaize etext17177 Herculano, Alexandre, 1810-1877 Opúsculos por Alexandre Herculano - Tomo 04 etext17288 Arbuthnot, George, 1836-1912 Herzegovina etext17296 Pictures in Colour of the Isle of Wight etext17298 Conscience, Hendrik, 1812-1883 Argent et Noblesse etext17374 Anonymous Bank of the Manhattan Company etext17384 Hilbert, David, 1862-1943 The Foundations of Geometry etext17417 Franklin, Fabian, 1853-1939 What Prohibition Has Done to America etext17428 Freeman, Mary Eleanor Wilkins, 1852-1930 Pembroke etext17437 Kingsley, Charles, 1819-1875 Health and Education etext17438 Wilson, Mary A. Mrs. Wilson's Cook Book etext17450 Heeres, J. E. (Jan Ernst), 1858-1932 The Part Borne by the Dutch in the Discovery of Australia 1606-1765 etext17455 Chatterji, Bankim Chandra, 1838-1894 The Poison Tree etext17507 Laughlin, Clara E. (Clara Elizabeth), 1873-1941 Everybody's Lonesome etext17529 Shakespeare, William, 1564-1616 Othello etext17559 Hallowell, Sarah C. On the Church Steps etext17601 Ross, Robert, 1869-1918 Masques & Phases etext17617 Westcott, Edward Noyes, 1847-1898 David Harum etext17677 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Tree of Appomattox etext17746 Goncourt, Edmond de, 1822-1896 Journal des Goncourt (Troisième série, premier volume) etext17770 Various Christmas Stories And Legends etext17808 Achard, Amédée, 1814-1875 Belle-Rose etext17836 Rossi, Adolfo, 1857-1921 Nel paese dei dollari etext17851 Prince, Mary, 1788-1833 The History of Mary Prince etext17863 Barker, B. (Benjamin) Blackbeard etext17933 Jacob, Violet, 1863-1946 Songs of Angus and More Songs of Angus etext17985 Appleton, Victor [pseud.] Tom Swift and The Visitor from Planet X etext18042 Belloc, Hilaire, 1870-1953 A General Sketch of the European War etext18062 London, Jack, 1876-1916 Stories of Ships and the Sea etext18104 Kelman, John, 1864-1929 Among Famous Books etext18115 Järnefelt, Arvid, 1861-1932 Veljekset etext18125 Barron, Clarence W. (Clarence Walker), 1855-1928 The Audacious War etext18160 Czernin von und zu Chudenitz, Ottokar Theobald Otto Maria, Graf, 1872-1932 Im Weltkriege. English etext18172 Leinster, Murray, 1896-1975 This World Is Taboo etext18188 Nietzsche, Friedrich Wilhelm, 1844-1900 Homer and Classical Philology etext18250 Swift, Jonathan, 1667-1745 The Prose Works of Jonathan Swift, D.D. - Volume 07 etext18255 Fichte, Johann Gottlieb, 1762-1814 Versuch einer Kritik aller Offenbarung etext18289 Lozano, Pedro, 1697-1752 Diario de un viage a la costa de la mar Magallanica etext18381 Twain, Mark, 1835-1910 De Lotgevallen van Tom Sawyer etext18405 Various Great Sea Stories etext18536 Ignacio, Cleto R. Cahangahangang Buhay ni Santa Margarita de Cortona etext18597 Various Stories of Achievement, Volume III (of 6) etext18607 Garvan, John M. The Manóbos of Mindanáo etext18677 etext18742 Tabor, Alta Willie Mouse etext18792 Ibsen, Henrik, 1828-1906 John Gabriel Borkman etext18806 Fontenelle, Jean-Sébastien-Eugène Julia de Manuel complet des fabricans de chapeaux en tous genres etext18829 Evans, Larry, -1925 Winner Take All etext18884 Hines, Robert W. Ducks at a Distance etext18905 The War and Unity etext18919 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 Du style gothique au dix-neuvième siècle etext18991 Mulholland, Rosa, 1841-1921 The Late Miss Hollingford etext19011 Shorter, Clement King, 1857-1926 Charlotte Brontë and Her Circle etext19118 The Philippine Islands, 1493-1898 — Volume 25 of 55 etext19124 La Fayette, Madame de (Marie-Madeleine Pioche de La Vergne), 1634-1693 La princesse de Monpensier etext19163 Andersen, H. C. (Hans Christian), 1805-1875 Märchen für Kinder etext19190 Smith, Elwyn A. (Elwyn Allen), 1919- Men Called Him Master etext19226 Various The Dog's Book of Verse etext19229 Wells, H. G. (Herbert George), 1866-1946 Anticipations etext19252 Shoghi Effendi, 1897-1957 Bahá’í Administration etext19341 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 A Maker of History etext19344 France, Anatole, 1844-1924 La vie littéraire etext19355 Mencken, H. L. (Henry Louis), 1880-1956 A Book of Prefaces etext19391 Sanborn, Kate, 1839-1917 A Truthful Woman in Southern California etext19461 Various Tales of Wonder Every Child Should Know etext19501 Davis, Richard Harding, 1864-1916 The Boy Scout etext19519 Doin, Ernest, 1809-1891 Le divorce du tailleur etext19567 Smith, Goldwin, 1823-1910 No Refuge but in Truth etext19594 Hague, W. Grant (William Grant), 1868- The Eugenic Marriage, Volume I. (of IV.) etext19605 Hodgkin, L. V. (Lucy Violet), 1869-1954 A Book of Quaker Saints etext19766 Freeman, Mary Eleanor Wilkins, 1852-1930 Young Lucretia and Other Stories etext19784 Donne, John, 1572-1631 Death Be Not Proud etext19820 Laveleye, Émile de, 1822-1892 La Péninsule Des Balkans etext19868 Caldecott, Randolph, 1846-1886 The Milkmaid etext19946 Henry, Stuart Oliver, 1860-1953 Villa Elsa etext19987 Twain, Mark, 1835-1910 Chapters from My Autobiography etext20010 Thompson, Charles Miner, 1864-1941 The Calico Cat etext20034 O'Donnell, Elliott, 1872-1965 Scottish Ghost Stories etext20070 Hemenway, Hetty Four Days etext20079 Légendes pour les enfants etext20084 Stacpoole, H. De Vere (Henry De Vere), 1863-1951 The Beach of Dreams etext20127 Stephens, James, 1882-1950 Here are Ladies etext20143 France, Anatole, 1844-1924 La vie littéraire etext20176 Mayne, Rutherford, 1878-1967 The Drone etext20201 Tynan, Katharine, 1861-1931 Mary Gray etext20260 Sitwell, Florence Alice, 1858-1930 Daybreak etext20278 Wood, Robert Williams, 1868-1955 How to Tell the Birds from the Flowers etext20283 Hartley, C. Gasquoine (Catherine Gasquoine), 1867-1928 Women's Wild Oats etext20289 Howe, Reuel L., 1905-1985 Herein is Love etext20291 Bjørnson, Bjørnstjerne, 1832-1910 Captain Mansana and Mother's Hands etext20296 Carr, John, Sir, 1772-1832 The Stranger in France etext20319 Various Punch, or the London Charivari, Volume 103, December 31, 1892 etext20473 Flower, Jessie Graham [pseud.], -1931 Grace Harlowe's Third Year at Overton College etext20507 Ségur, Philippe-Paul, comte de, 1780-1873 Histoire de Napoléon et de la Grande-Armée pendant l'année 1812 etext20530 Brehm, Alfred Edmund, 1829-1884 Het Leven der Dieren etext20577 Beaumarchais, Pierre Augustin Caron de, 1732-1799 La Folle Journée ou le Mariage de Figaro etext20601 Joyce, James, 1882-1941 Chamber Music etext20624 Various Ballads of Scottish Tradition and Romance etext20652 Anonymous Ring O' Roses etext20663 Coppinger, Joseph The American Practical Brewer and Tanner etext20686 Austen, Jane, 1775-1817 Pride and Prejudice etext20741 Elwes, Alfred, 1819?-1888 The Adventures of a Dog, and a Good Dog Too etext20742 Eliot, George, 1819-1880 O May I Join the Choir Invisible! etext20778 Evelyn, John, 1620-1706 Sylva, Vol. 1 (of 2) etext20795 Dickens, Charles, 1812-1870 The Cricket on the Hearth etext20851 Brewer, Ebenezer Cobham, 1810-1897 Character Sketches of Romance, Fiction and the Drama etext20858 Campe, Joachim Heinrich Ang Bagong Robinson (Tomo 1) etext20868 Maitland, Julia Charlotte Cat and Dog etext20959 Enock, C. Reginald (Charles Reginald), 1868-1970 Mexico etext20981 Hope, Anthony, 1863-1933 Tristram of Blent etext20999 Miranda, Francisco Luís Coutinho de, -1883 Á hora do crime etext21057 Collingwood, Harry, 1851-1922 The Log of the Flying Fish etext21067 Collingwood, Harry, 1851-1922 Overdue etext21121 Vaizey, George de Horne, Mrs., 1857-1917 A Houseful of Girls etext21317 Fenn, George Manville, 1831-1909 A Life's Eclipse etext21319 Fenn, George Manville, 1831-1909 Three Boys etext21320 Fenn, George Manville, 1831-1909 Mass' George etext21343 Girardin, Mme Emile de, 1804-1855 La canne de M. de Balzac etext21382 Fenn, George Manville, 1831-1909 Son Philip etext21393 Kingston, William Henry Giles, 1814-1880 Hendricks the Hunter etext21400 Haslam, W. E. Style in Singing etext21408 Various The Atlantic Monthly, Volume 17, No. 102, April, 1866 etext21412 Bailey, Arthur Scott, 1877-1949 The Tale of Bobby Bobolink etext21429 Coelho, Francisco Adolfo, 1847-1919 Portugal e Ilhas Adjacentes etext21436 Poems Every Child Should Know etext21440 Haggard, Henry Rider, 1856-1925 Allan Quatermain etext21442 Sheehan, James Your Plants etext21471 Kingston, William Henry Giles, 1814-1880 Mountain Moggy etext21472 Kingston, William Henry Giles, 1814-1880 Ned Garth etext21489 Verne, Jules, 1828-1905 The Secret of the Island etext21520 Doyle, Arthur Conan, Sir, 1859-1930 The Hound of the Baskervilles etext21536 Benson, Arthur Christopher, 1862-1925 Paul the Minstrel and Other Stories etext21594 Chapman, Allen Fred Fenton on the Crew etext21747 Ballantyne, R. M. (Robert Michael), 1825-1894 The Lonely Island etext21771 James, Henry, 1843-1916 Georgina's Reasons etext21807 Field, Eugene, 1850-1895 The Holy Cross and Other Tales etext21826 Various My Pet Recipes, Tried and True etext21906 Pérez Galdós, Benito, 1843-1920 Cádiz etext21955 Theiss, Lewis E. The Secret Wireless etext21993 Sand, George, 1804-1876 La mare au diable. English etext22047 Bell, Lilian, -1929 The Love Affairs of an Old Maid etext22105 Alexander, Archibald B. C. Christianity and Ethics etext22112 Canton, William A Child's Book of Saints etext22185 Connolly, James B. (James Brendan), 1868-1957 Sonnie-Boy's People etext22243 Le Feuvre, Amy, -1929 Dwell Deep etext22308 Anonymous Golden Moments etext22339 Various Notes and Queries, Number 66, February 1, 1851 etext22344 Morton, Edward Remarks on the Subject of Lactation etext22356 Apollinaire, Guillaume, 1880-1918 L'hérésiarque et Cie etext22365 Optic, Oliver, 1822-1897 Little By Little etext22387 Young, Arthur, 1741-1820 A Tour in Ireland etext22498 Porta, Giambattista della, 1535?-1615 Le commedie - lo astrologo etext22582 Unknown Harrison's Amusing Picture and Poetry Book etext22738 Büttner, August Zweierlei Denken etext22768 Dante Alighieri, 1265-1321 L'enfer (1 of 2) etext22818 Herford, Oliver, 1863-1935 An Alphabet of Celebrities etext22841 Mitford, Mary Russell, 1787-1855 Mr. Joseph Hanson, The Haberdasher etext22847 etext22878 Borrow, George Henry, 1803-1881 Lavengro etext23009 Harris, Frank, 1856-1931 A Modern Idyll etext23016 Page, Thomas Nelson, 1853-1922 P'laski's Tunament etext23132 Hill, Grace Livingston, 1865-1947 Marcia Schuyler etext23142 Collingwood, Harry, 1851-1922 In Search of El Dorado etext23165 Trowbridge, J. T. (John Townsend), 1827-1916 The Man Who Stole A Meeting-House etext23213 Garis, Howard Roger, 1873-1962 Uncle Wiggily and Old Mother Hubbard etext23220 Eschstruth, Nataly von, 1860-1939 The Gray Nun etext23230 Anonymous Boys etext23339 Cole, Everett B., 1918-1977 Indirection etext23375 Fenn, George Manville, 1831-1909 Jack at Sea etext23391 Young, Rose E. (Rose Emmet), 1869-1941 Sally of Missouri etext23392 Taylor, Rachel Annand, 1876-1960 The Hours of Fiammetta etext23435 French, Henry F. (Henry Flagg), 1813-1885 Farm drainage etext23544 Glaucoma etext23583 Dombre, Roger, 1859-1914 Folla etext23600 Caballero, Fernán, 1796-1877 La gaviota etext23628 Janson, Kristofer, 1841-1917 Lumottu etext23665 etext23726 Various Punch, or the London Charivari, Vol. 146, March 11, 1914 etext23761 Hubbard, Elbert, 1856-1915 Little Journeys to the Homes of the Great, Volume 7 etext23777 Parkinson, James, 1755-1824 An Essay on the Shaking Palsy etext23893 Zangwill, Israel, 1864-1926 The Melting-Pot etext23904 Kahle, Brewster, 1960- The Open Library etext23914 Huangfu, Mei, fl. 874-910 山水小牘 etext23930 Martin, Robert J. Beyond Pandora etext23933 Moore, Clement Clarke, 1779-1863 'Twas the Night Before Christmas etext23941 Houghton, W. (William), 1828-1895 Country Walks of a Naturalist with His Children etext24018 Boynton, Henry Walcott, 1869-1947 The Golfer's Rubaiyat etext24019 Harte, Bret, 1836-1902 Excelsior etext24069 Holmes, John Haynes, 1879-1964 Heroes in Peace etext24130 Bangs, John Kendrick, 1862-1922 Andiron Tales etext24141 Feng, Menglong, 1574-1646 警世通言 etext24149 Leinster, Murray, 1896-1975 The Ambulance Made Two Trips etext24167 Pyle, Katharine, 1863-1938 Careless Jane and Other Tales etext24198 Garrett, Randall, 1927-1987 A Spaceship Named McGuire etext24241 Bennett, Ethel Hume, 1881- Judy of York Hill etext24276 Nourse, Alan Edward, 1928-1992 The Coffin Cure etext24278 Purdom, Thomas Edward The Green Beret etext24302 Garrett, Randall, 1927-1987 The Highest Treason etext24380 Wald, E. G. von Shock Absorber etext24427 Beeckman, Ross Princess Zara etext24445 Maupassant, Guy de, 1850-1893 Elämän tarina etext24451 Child, Richard Washburn, 1881-1935 The Blue Wall etext24452 Pennell, Elizabeth Robins, 1855-1936 Nights etext24475 Various The Nursery, February 1873, Vol. XIII. etext24513 Timlow, Elizabeth Weston, 1861-1931 Cricket at the Seashore etext24561 Chittenden, L. E. (Lucius Eugene), 1824-1900 A Report of the Debates and Proceedings in the Secret Sessions of the Conference Convention etext24582 Optic, Oliver, 1822-1897 Field and Forest etext24667 Hooper, William George Aether and Gravitation etext24669 Anonymous Little Scenes for Little Folks etext24695 Marshall, Edison, 1894-1967 The Snowshoe Trail etext24702 etext24709 Reeves, Ira L. (Ira Louis), 1872-1939 Bamboo Tales etext24716 Dunbar, Paul Laurence, 1872-1906 The heart of happy hollow etext24729 Sagarra, Josep Maria de, 1894-1961 Paulina Buxareu etext24826 Richards, Laura Elizabeth Howe, 1850-1943 Hildegarde's Holiday etext24851 Various Lippincott's Magazine, Vol. 26, August, 1880 etext24898 Ward, Humphry, Mrs., 1851-1920 Robert Elsmere etext24926 Fenn, George Manville, 1831-1909 In the Mahdi's Grasp etext24948 Eivind, R. Finnish Legends for English Children etext24969 Lie, Jonas Lauritz Idemil, 1833-1908 Fremsynte. Finnish etext25072 Various The New England Magazine, Volume 1, No. 4, Bay State Monthly, Volume 4, No. 4, April, 1886 etext25082 Evarts, Hal G. (Hal George), 1887-1934 The Yellow Horde etext25111 King, Richard, 1879-1947 Over the Fireside with Silent Friends etext25168 Guiguzi, 4th cent. B.C. 鬼谷子 etext25231 Zhang, Zhuo, ca. 660-ca. 740 遊仙窟 etext25237 Wuseshizhuren, ju ren 1738 快士傳 etext25289 Yan, Yu, 12th cent. 滄浪詩話 etext25314 Wang, Xianqian, 1842-1918 荀子集解 etext25322 Ade, George, 1866-1944 Fables in Slang etext25348 Xueqiaozhuren 雙鳳奇緣 etext555 Saki, 1870-1916 The Unbearable Bassington etext25403 Récamier, Jeanne Françoise Julie Adélaïde Bernard, 1777-1849 Souvenirs et correspondance tirés des papiers de Mme Récamier (1/2) etext25416 Kidder, Frederic, 1804-1885 The Abenaki Indians etext25421 Wang, Yongbin 圍爐夜話 etext25431 Ouyang, Xiu, 1007-1072 歸田錄 etext25477 Garis, Howard Roger, 1873-1962 The Curlytops on Star Island etext25503 Various Le Tour du Monde; Scandinavie etext25563 Tuckwell, William, 1829-1919 Horace etext25593 Trueba, António de, 1821?-1889 Contos escolhidos de D. Antonio de Trueba etext25605 Sanvittore, Gaetano I misteri del processo Monti e Tognetti etext25757 Myer, Isaac, 1836-1902 Scarabs etext25781 etext25785 McCarthy, Justin H. (Justin Huntly), 1860-1936 The Proud Prince etext25821 The Great Events by Famous Historians, Volume 11 etext25899 Clouston, J. Storer (Joseph Storer), 1870-1944 The Prodigal Father etext25909 Various The Arena etext26032 Various American Cookery etext26089 Various Punch, or the London Charivari, Vol. 93, September 24, 1887 etext26108 Shaw, Bernard, 1856-1950 Revolutionist's Handbook and Pocket Companion etext26133 Scott, Walter, Sir, 1771-1832 Trial of Duncan Terig, alias Clerk, and Alexander Bane Macdonald etext26135 Ridge, W. Pett (William Pett), -1930 Love at Paddington etext26138 Trueblood, Edward Alva In the Flash Ranging Service etext26212 Colmenero de Ledesma, Antonio Chocolate: or, An Indian Drinke etext26277 Bacon, Josephine Dodge Daskam, 1876-1961 Margarita's Soul etext26307 Graham, Margaret Collier, 1850-1910 The Wizard's Daughter and Other Stories etext26319 Hamlin, A. D. F. (Alfred Dwight Foster), 1855-1926 A Text-Book of the History of Architecture etext26362 Lequeux, André, 1852-1902 Le théâtre japonais etext26365 Jamison, Alcinous B. (Alcinous Burton), 1851- Intestinal Ills etext26370 Berlioz, Hector, 1803-1869 Mémoires de Hector Berlioz etext26426 Brinton, Daniel Garrison, 1837-1899 Nagualism etext26446 Goodell, Abner Cheney, 1831-1914 The Trial and Execution, for Petit Treason, of Mark and Phillis, Slaves of Capt. John Codman etext26461 Piper, H. Beam, 1904-1964 Five Sci-Fi Short Stories etext26479 Topelius, Toini Mathilda, 1854-1910 I Utvecklingstid etext26488 Saint-Hilaire, Emile Marco de, -1887 L'art de payer ses dettes et de satisfaire ses créanciers sans débourser un sou etext26543 etext26559 Various Novelleja ja kertomuksia I etext26625 Maitland, Robert The Boy Scout Automobilists etext26626 Stewart, Maria L. Our Little Brown House, A Poem of West Point etext26632 Wharton, James The Bounty of the Chesapeake etext26667 Sala, George Augustus, 1828-1895 The Strange Adventures of Captain Dangerous, Vol. 1 etext26669 Sala, George Augustus, 1828-1895 The Strange Adventures of Captain Dangerous, Vol. 3 etext26673 Reed, Myrtle, 1874-1911 At the Sign of the Jack O'Lantern etext26684 Green, Samuel A. (Samuel Abbott), 1830-1918 Piracy off the Florida Coast and Elsewhere etext26686 Fontane, Theodor, 1819-1898 Unterm Birnbaum etext26692 Raine, William MacLeod, 1871-1954 A Daughter of Raasay etext26799 Biggs, William, 1755-1827 Narrative of the Captivity of William Biggs among the Kickapoo Indians in Illinois in 1788 etext26812 Flaubert, Gustave, 1821-1880 Un coeur simple etext26856 Butler, Ellis Parker, 1869-1937 Solander's Radio Tomb etext26885 Berquin, M. (Arnaud), 1747-1791 Ami des enfants. English etext26892 Robins, Edward, 1862-1943 Chasing an Iron Horse etext26915 Lima, Jaime de Magalhães, 1859-1936 A Guerra etext26932 Chen, Hongmo, 1474-1555 治世餘聞 etext26954 The Mirror of Taste, and Dramatic Censor, Vol. I, No. 4, April 1810 etext26986 Stacpoole, H. De Vere (Henry De Vere), 1863-1951 The Ghost Girl etext26993 Munroe, Kirk, 1850-1930 The Copper Princess etext27014 Davidson, G. F. Trade and Travel in the Far East etext27016 Five colors stone Eight dwelling places of Buddhist immortals etext27062 Shakespeare, William, 1564-1616 Romeo and Juliet. Polish etext27126 Oxenham, John, 1852-1941 'All's Well!' etext27153 Brown, John, 1810-1882 Spare Hours etext27189 Tolstoy, Leo, graf, 1828-1910 Bethink Yourselves! etext27230 etext27251 Richards, Laura Elizabeth Howe, 1850-1943 "Some Say" etext27279 Manly, Louise, 1857-1936 Southern Literature From 1579-1895 etext27366 Heywood, Robert, 1786-1868 A Journey in Russia in 1858 etext27437 Sabin, Edwin L. (Edwin Legrand), 1870-1952 Desert Dust etext27438 Lockhart, Caroline, 1870-1962 'Me--Smith' etext27479 Various Encyclopaedia Britannica, 11th Edition, Volume 3, Part 1, Slice 2 etext27494 Whitman, Walt, 1819-1892 The Patriotic Poems of Walt Whitman etext27527 Stockton State Hospital (Calif.) Rules and Regulations of the Insane Asylum of California etext27536 Shakespeare, William, 1564-1616 The Merchant of Venice. Catalan etext27557 etext27585 etext27626 Du Veuzit, Max, 1886-1952 Paternité etext27634 Trolle, Alf, 1879-1949 Van de Deensche expeditie naar Noord-Groenland etext27638 United States. Central Intelligence Agency The 2001 CIA World Factbook etext27677 Jeffrey, Rosa Vertner, 1828-1894 Daisy Dare, and Baby Power etext27686 Anonymous 狄公案 etext27694 Rollin, Charles, 1661-1741 Oeuvres Completes de Rollin Tome 1 etext27744 Fielding, Sarah, 1710-1768 Remarks on Clarissa (1749) etext27760 Rhoides, Emmanouel D., 1835-1904 Η Πάπισσα Ιωάννα etext27828 Pons de l'Hérault, André, 1772-1853 Souvenirs et anecdotes de l'île d'Elbe etext27856 Savage, Juanita Bandit Love etext27947 The Home Medical Library, Volume V (of VI) etext27978 Luther, Martin, 1483-1546 Commentary on Genesis, Vol. II etext27996 Reid, Mayne, 1818-1883 The Free Lances etext28011 Tracy, W. W. (William Warner), 1845-1922 Tomato Culture: A Practical Treatise on the Tomato etext28028 Bone, David Drummond Scottish Football Reminiscences and Sketches etext28041 Browning, Robert, 1812-1889 Selections from the Poems and Plays of Robert Browning etext28097 Webster, W. F. (William Franklin), 1862-1936 English: Composition and Literature etext28176 Wairy, Louis Constant, 1778-1845 Mémoires de Constant, premier valet de chambre de l'empereur, sur la vie privée de Napoléon, sa famille et sa cour. etext28196 Various Harper's Young People, November 18, 1879 etext28222 Ballou, Maturin Murray, 1820-1895 Due West etext28223 Wilson, Warren H. (Warren Hugh), 1867-1937 Quaker Hill etext28246 Various Harper's Young People, December 2, 1879 etext28272 Howie, John, 1735-1793 Biographia Scoticana (Scots Worthies) etext28275 Various Harper's Young People, December 30, 1879 etext28286 Lemaître, Jules, 1853-1914 Les Contemporains, 6ème Série etext28303 Fitch, Clyde, 1865-1909 The Smart Set etext28306 etext28328 Brownlow, William Gannaway, 1805-1877 Americanism Contrasted with Foreignism, Romanism, and Bogus Democracy in the Light of Reason, History, and Scripture; etext28394 Hodges, George, 1856-1919 William Penn etext28397 Tissandier, Gaston, 1843-1899 La Navigation Aérienne L'aviation Et La Direction Des Aérostats Dans Les Temps Anciens Et Modernes etext28403 Tarchetti, Iginio Ugo, 1841-1869 Racconti umoristici etext28445 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Madame Roland, Makers of History etext28504 Smith, Ruel Perley, 1869-1937 The Rival Campers Ashore etext28574 Hendryx, James B. (James Beardsley), 1880-1963 Connie Morgan in the Fur Country etext28585 Kelly, Florence Finch, 1858-1939 With Hoops of Steel etext28611 Nathorst, A. G. (Alfred Gabriel), 1850-1921 Polarforskningen etext28631 Sedgwick, Anne Douglas, 1873-1935 Amabel Channice etext28636 Gaskell, Elizabeth Cleghorn, 1810-1865 The Grey Woman and other Tales etext28698 Dick, Philip K., 1928-1982 The Crystal Crypt etext28745 Bigelow, Jacob, 1786-1879 Chenodia etext28771 Child Maidelvold etext28790 Various Harper's Young People, April 20, 1880 etext28802 Fanny, Aunt, 1822-1894 The Fairy Nightcaps etext28813 Goodwin, Harold L. (Harold Leland), 1914-1990 The Electronic Mind Reader etext28860 Jefferson, Thomas, 1743-1826 The Memoirs, Correspondence, And Miscellanies, From The Papers Of Thomas Jefferson etext28870 Pearson, C. H. (Charles Henry), 1824-1906 The Cabin on the Prairie etext28884 etext28919 Leacock, Stephen, 1869-1944 Frenzied Fiction etext28934 Maitland, Frederick Lewis, Sir, 1777-1839 The Surrender of Napoleon etext28976 Shea, Robert, 1933-1994 Shaman etext28996 Archer, Thomas, 1830-1893 Miss Grantley's Girls etext29046 Weiss, George Henry, 1898-1946 The Heads of Apex etext29143 Dawson, Æneas MacDonell, 1810-1894 Pius IX. And His Time etext29174 Various Harper's Young People, October 5, 1880 etext29176 Ouida, 1839-1908 Lehti myrskyssä etext29221 Representative Plays by American Dramatists etext29225 Brackenridge, H. H. (Hugh Henry), 1748-1816 The Battle of Bunkers-Hill etext29233 United States. Central Intelligence Agency The 2008 CIA World Factbook etext29243 Alberto da Silva, Caetano, 1843-1924 Descobrimento das Filippinas pelo navegador portuguez Fernão de Magalhães etext29275 Macedo, Diogo de, 1844- O Christão novo etext29351 Various Punch or the London Charivari, Vol. 147, December 2, 1914 etext29393 Clark, John Bates, 1847-1938 Social Justice Without Socialism etext29461 Digital Equipment Corporation Preliminary Specifications: Programmed Data Processor Model Three (PDP-3) etext29473 Greusel, John Hubert, 1868- Blood and Iron etext29483 Van Dresser, Jasmine Stone, 1878- The Little Brown Hen Hears the Song of the Nightingale & The Golden Harvest etext29539 Various Le Tour du Monde; Afrique Centrale etext29557 Gaebelein, Arno Clemens, 1861-1945 The Lord of Glory etext29650 Bindloss, Harold, 1866-1945 The Greater Power etext29779 Byerly, William Elwood, 1849- An Elementary Treatise on Fourier's Series and Spherical, Cylindrical, and Ellipsoidal Harmonics etext29809 Various Astounding Stories of Super-Science, May, 1930 etext29839 Roberts, Charles George Douglas, Sir, 1860-1943 The House in the Water etext29924 Various Le Tour du Monde; Nouvelles Hébrides etext29963 Harris, Tom W. Goodbye, Dead Man! etext29972 Colquhoun, A. H. U. (Arthur Hugh Urquhart), 1861-1936 The Fathers of Confederation etext30019 Harrison, Harry, 1925- Navy Day etext30077 Schulz, Friedrich, 1866-1914 Die Hanse und England etext30085 Rhea, Sarah J. Life of Henry Martyn, Missionary to India and Persia, 1781 to 1812 etext30210 Foote, G. W. (George William), 1850-1915 Comic Bible Sketches etext30227 Smith, David Nichol, 1875-1962 Eighteenth Century Essays on Shakespeare etext30245 Stephens, Ann S. (Ann Sophia), 1810-1886 Phemie Frost's Experiences etext30295 Lamb, Edwin Gifford, 1878- The Social Work of the Salvation Army etext30324 Friel, Arthur O. (Arthur Olney), 1885-1959 The Pathless Trail etext30356 Mullins, Isla May, 1859-1936 The Boy from Hollow Hut etext30384 Pope, Joseph, Sir, 1854-1926 The Day of Sir John Macdonald etext30474 Westlake, Donald E., 1933- They Also Serve etext30480 Falconbridge, 1818-1854 The Humors of Falconbridge etext30600 Mitchell, John Ames, 1845-1918 The Pines of Lory etext30626 Various Birds, Illustrated by Color Photography, Vol. 1, No. 2 etext30678 Various Supplement to "Punch", 16th December 1914 etext30696 Gill, André, 1840-1885 Vingt années de Paris etext30708 Baird, Henry Martyn, 1832-1906 History of the Rise of the Huguenots etext30730 Thompson, Francis, 1859-1907 The Hound of Heaven etext30746 Smith, William J. The Last Straw etext30772 Minutes of the Proceedings of the Second Convention of Delegates from the Abolition Societies Established in Different Parts of the United States etext30789 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 Dictionnaire raisonné de l'architecture française du XIe au XVIe siècle (9/9) etext30812 Davis, Richard Harding, 1864-1916 With the French in France and Salonika etext30892 Tejero, Don Luis Prudencio Alvarez y De Las Islas Filipinas etext30967 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States From Interviews with Former Slaves. etext30974 Blackwood, Algernon, 1869-1951 Jimbo etext31005 Swinnerton, Frank, 1884-1982 Coquette etext31045 Ruskin, John, 1819-1900 Frondes Agrestes etext31098 MacBride, Thomas H. (Thomas Huston) The North American Slime-Moulds etext31118 Richardson, Dorothy, 1882- The Long Day etext31127 Lugt, Frits Rembrandt's Amsterdam etext31158 Kennan, George, 1845-1924 Campaigning in Cuba etext31234 Purchas, H. T. (Henry Thomas), 1860-1921 A History of the English Church in New Zealand etext31239 Heijnes, Hendrik Jacobus, -1936 Bij ons in Noord-Holland etext31332 Sinclair, May, 1863-1946 A Journal of Impressions in Belgium etext31345 Draper, John William, 1811-1882 History of the Intellectual Development of Europe, Volume I (of 2) etext31477 Brown, Paul Cameron Point Spread Poems etext31482 Smeaton, John Smeaton and Lighthouses etext31534 Hiller, Elizabeth O. Fifty-Two Sunday Dinners etext31560 Freud, Sigmund, 1856-1939 Traum und Telepathie etext31634 Lebert, Marie Le Projet Gutenberg (1971-2009) etext31635 Tracy, Louis, 1863-1928 The Silent Barrier etext31639 Anonymous Complete Classified Price List of School and College Textbooks etext31640 Bayne, Mary Addams Crestlands etext31642 Jókai, Mór, 1825-1904 Eyes Like the Sea etext31673 Pyle, Howard, 1853-1911 The Rose of Paradise etext31727 Meisel-Hess, Grete Weiberhaß und Weiberverachtung etext31731 Sylva, Carmen Aus meinem Königreich etext31748 Hornibrook, Isabel Katherine Pemrose Lorry, Camp Fire Girl etext31752 Sue, Eugène, 1804-1857 The Gold Sickle etext31790 Sanger, Margaret, 1883-1966 Family Limitation etext31801 Murfree, Mary Noailles, 1850-1922 The Story of Old Fort Loudon etext31803 Mann, Franziska Der Schäfer etext31843 Kemp-Welch, Alice Of Six Mediæval Women etext31927 Buck, Charles Neville, 1879-1930 The Portal of Dreams etext31928 etext31929 Gallun, Raymond Z., 1911-1994 Big Pill etext31931 Poëpe, Claude de la La politique du Paraguay etext31943 Walford, L. B. Leonore Stubbs etext31974 Randol, Alanson M. Last Days of the Rebellion etext31978 Ostayen, Paul van Bezette stad etext32053 Abbott, Jane D. Happy House etext32105 Various Belford's Magazine, Vol 2, December 1888 etext32108 Kuttner, Henry, 1915-1958 The Ego Machine etext32123 Various The Scrap Book, Volume 1, No. 6 etext32134 Marlowe, Stephen, 1928-2008 The Dictator etext32148 Oppenheim, L. (Lassa), 1858-1919 International Incidents for Discussion in Conversation Classes etext32149 Marks, Winston K., 1915-1979 Unbegotten Child etext32211 Papadopoulou, Arsinoi Η Φωτεινή - Ο μαγευμένος εργαλειός - Η καλή Νεράιδα etext32213 Dewey, Gordon Hoiman and the Solar Circuit etext32254 Wald, E. G. von World Without War etext32265 Giacosa, Giuseppe, 1847-1906 Non dir quattro se non l'hai nel sacco etext32302 Vance, Louis Joseph, 1879-1933 The Destroying Angel etext32336 Cheever, Harriet A. Maid Sally etext32345 Parker, Lewis The Animated Pinup etext32368 Caston, Herbert de Peerless Prestidigitation etext32380 Sirven, Alfredo O Romance d'uma cantora etext32402 The Story of Our Country etext32433 Burton, Richard, 1861-1940 How to See a Play etext32485 Reynard, Geoff St. The Giants From Outer Space etext32514 Quinn, Seabury Pledged to the Dead etext32552 Brinton, Daniel Garrison, 1837-1899 American Languages, and Why We Should Study Them etext32684 Coppel, Alfred The Invader etext32690 Various The Great Events by Famous Historians, Volume 14 etext16 Barrie, J. M. (James Matthew), 1860-1937 Peter Pan etext24 Cather, Willa Sibert, 1873-1947 O Pioneers! etext92 Burroughs, Edgar Rice, 1875-1950 Tarzan and the Jewels of Opar etext128 Lang, Andrew, 1844-1912 The Arabian Nights etext205 Thoreau, Henry David, 1817-1862 Walden etext208 James, Henry, 1843-1916 Daisy Miller etext229 Virgil, 70 BC-19 BC The Bucolics and Eclogues etext246 Omar Khayyám, 1048-1122 The Rubaiyat of Omar Khayyam etext276 Haydn, Joseph, 1732-1809 Franz Haydn's 104th Symphony [1794-5] etext290 Doyle, Arthur Conan, Sir, 1859-1930 The Stark Munro Letters etext291 Grahame, Kenneth, 1859-1932 The Golden Age etext313 Robinson, Edwin Arlington, 1869-1935 Children of the Night etext351 Maugham, W. Somerset (William Somerset), 1874-1965 Of Human Bondage etext403 Davis, Richard Harding, 1864-1916 Soldiers of Fortune etext440 Porter, Eleanor H. (Eleanor Hodgman), 1868-1920 Just David etext448 Le Bon, Gustave, 1841-1931 The Psychology of Revolution etext449 etext455 Parlette, Ralph, 1870-1930 The University of Hard Knocks etext529 Steedman, Amy Knights of Art; stories of the Italian painters etext532 Stratton-Porter, Gene, 1863-1924 At the Foot of the Rainbow etext569 Brann, William Cowper, 1855-1898 Brann the Iconoclast — Volume 12 etext570 Fries, Adelaide L. (Adelaide Lisetta), 1871-1949 The Moravians in Georgia, 1735-1740 etext582 Potter, Beatrix, 1866-1943 A Collection of Beatrix Potter Stories etext589 Stevenson, Robert Louis, 1850-1894 Catriona etext593 Maupassant, Guy de, 1850-1893 Selected Writings of Guy De Maupassant etext695 Kingsley, Charles, 1819-1875 Glaucus, or the Wonders of the Shore etext710 London, Jack, 1876-1916 Love of Life and Other Stories etext735 Gibbon, Edward, 1737-1794 History of the Decline and Fall of the Roman Empire — Volume 5 etext737 Hope, Laura Lee The Bobbsey Twins at School etext739 Clay, Henry, 1777-1852 Henry Clay's Remarks in House and Senate etext868 Jerome, Jerome K. (Jerome Klapka), 1859-1927 The Philosopher's Joke etext882 Dickens, Charles, 1812-1870 Sketches by Boz, illustrative of everyday life and every-day people etext902 Wilde, Oscar, 1854-1900 The Happy Prince and Other Tales etext934 Gilbert, W. S. (William Schwenck), Sir, 1836-1911 Songs of a Savoyard etext1007 Dante Alighieri, 1265-1321 Divine Comedy, Cary's Translation, Paradise etext1012 Dante Alighieri, 1265-1321 La Divina Commedia di Dante etext1082 Bishop, Nathaniel H. (Nathaniel Holmes), 1837-1902 Voyage of the Paper Canoe; a geographical journey of 2500 miles, from Quebec to the Gulf of Mexico, during the years 1874-5 etext1100 Shakespeare, William, 1564-1616 King Henry VI, Part 1 etext1169 Xenophon, 431 BC-350? BC Agesilaus etext1270 Mencken, H. L. (Henry Louis), 1880-1956 In Defense of Women etext1278 Wiggin, Kate Douglas Smith, 1856-1923 Penelope's English Experiences etext1335 Kingsley, Charles, 1819-1875 The Ancien Regime etext1397 Volney, C.-F. (Constantin-François), 1757-1820 The Ruins, or, Meditation on the Revolutions of Empires and the Law of Nature etext1410 Balzac, Honoré de, 1799-1850 The Commission in Lunacy etext1412 Marryat, Frederick, 1792-1848 Masterman Ready etext1445 Zerbe, James Slough, 1850- Aeroplanes etext1461 Scott, Walter, Sir, 1771-1832 A Legend of Montrose etext1463 Gissing, George, 1857-1903 The Private Papers of Henry Ryecroft etext1473 Edgeworth, Maria, 1767-1849 The Absentee etext1505 Shakespeare, William, 1564-1616 The Rape of Lucrece etext1523 Shakespeare, William, 1564-1616 As You Like It etext1554 Balzac, Honoré de, 1799-1850 Adieu etext1571 Plato, 427? BC-347? BC Critias etext1590 Rinehart, Mary Roberts, 1876-1958 The Amazing Interlude etext1626 Collins, Wilkie, 1824-1889 After Dark etext1641 Balzac, Honoré de, 1799-1850 The Lesser Bourgeoisie etext1708 etext1715 Balzac, Honoré de, 1799-1850 Eugenie Grandet etext1734 Wells, H. G. (Herbert George), 1866-1946 Secret Places of the Heart etext1743 Wells, H. G. (Herbert George), 1866-1946 Twelve Stories and a Dream etext1745 Milton, John, 1608-1674 The Poetical Works of John Milton etext1820 Davis, Richard Harding, 1864-1916 A Wasted Day etext1843 Davis, Richard Harding, 1864-1916 Vera, the Medium etext1897 Brand, Max, 1892-1944 The Seventh Man etext1924 Nesbit, E. (Edith), 1858-1924 Many Voices etext1941 Balzac, Honoré de, 1799-1850 Letters of Two Brides etext1945 Goethe, Johann Wolfgang von, 1749-1832 Egmont etext1953 MacDonald, George, 1824-1905 A Book of Strife in the Form of The Diary of an Old Soul etext2007 Lyall, Edna, 1857-1903 We Two, a novel etext2015 Chesterton, G. K. (Gilbert Keith), 1874-1936 A Miscellany of Men etext2023 Jerome, Jerome K. (Jerome Klapka), 1859-1927 The Fawn Gloves etext2037 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Novel Notes etext2130 More, Thomas, Sir, Saint, 1478?-1535 Utopia etext2182 Hawthorne, Nathaniel, 1804-1864 The Marble Faun - Volume 2 etext2195 Jerome, Jerome K. (Jerome Klapka), 1859-1927 The Master of Mrs. Chilvers etext2329 Cooper, James Fenimore, 1789-1851 Autobiography of a Pocket-Handkerchief etext2357 Smith, Jewell Ellen, 1915-1998 Great Jehoshaphat and Gully Dirt! etext2382 Mowry, Sylvester, 1830-1871 Memoir of the Proposed Territory of Arizona etext2406 Goethe, Johann Wolfgang von, 1749-1832 Die Geschwister etext2416 London, Jack, 1876-1916 The House of Pride, and Other Tales of Hawaii etext2423 Piozzi, Hester Lynch, 1741-1821 Anecdotes of the late Samuel Johnson etext2464 Machiavelli, Niccolò, 1469-1527 History of Florence and of the Affairs of Italy etext2487 Sangster, Margaret E. (Margaret Elizabeth), 1894-1981 Cross Roads etext2519 Livingstone, David, 1813-1873 A Popular Account of Dr. Livingstone's Expedition to the Zambesi and its tributaries etext2553 Oliphant, Mrs. (Margaret), 1828-1897 Jeanne D'Arc: her life and death etext2555 Harte, Bret, 1836-1902 Under the Redwoods etext2577 Taine, Hippolyte, 1828-1893 The Ancient Regime etext2673 Warner, Charles Dudley, 1829-1900 The Complete Writings of Charles Dudley Warner — Volume 3 etext2696 Holmes, Oliver Wendell, 1809-1894 Elsie Venner etext2779 May, Karl Friedrich, 1842-1912 Mein Leben und Streben etext2796 Thackeray, William Makepeace, 1811-1863 The Memoirs of Mr. Charles J. Yellowplush etext2798 Harte, Bret, 1836-1902 The Queen of the Pirate Isle etext2820 etext2827 La Motte-Fouqué, Friedrich Heinrich Karl Freiherr de, 1777-1843 Aslauga's Knight etext2854 Sir Francis Drake Revived etext2965 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 15: with Voltaire etext3033 Hough, Emerson, 1857-1923 The Passing of the Frontier; a chronicle of the old West etext3070 Doyle, Arthur Conan, Sir, 1859-1930 The Hound of the Baskervilles etext3179 Twain, Mark, 1835-1910 The American Claimant etext3186 Twain, Mark, 1835-1910 The Mysterious Stranger etext3255 Hardy, Thomas, 1840-1928 Moments of Vision and Miscellaneous Verses etext3259 Yonge, Charlotte Mary, 1823-1901 Countess Kate etext3307 etext3344 Sue, Eugène, 1804-1857 The Wandering Jew — Volume 06 etext3358 Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773 Letters to His Son on the Art of Becoming a Man of the World and a Gentleman, 1756-58 etext3423 Sabatini, Rafael, 1875-1950 The Strolling Saint; being the confessions of the high and mighty Agostino D'Anguissola, tyrant of Mondolfo and Lord of Carmina in the state of Piacenza etext3432 Twain, Mark, 1835-1910 Quotations from the Project Gutenberg Editions of the Works of Mark Twain etext3442 Anonymous Arabian nights. English etext3474 Walpole, Hugh, Sir, 1884-1941 Jeremy etext3521 Human Genome Project Human Genome Project, Chromosome Number 21 etext3561 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 11 etext3583 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 03 etext3606 Collins, Wilkie, 1824-1889 Antonina etext3623 Frazer, James George, Sir, 1854-1941 The Golden Bough etext3725 etext3734 Appleton, Victor [pseud.] Tom Swift in the Caves of Ice, or, the Wreck of the Airship etext3744 Yonge, Charlotte Mary, 1823-1901 The Trial etext3760 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 Sybil, or the Two Nations etext3798 Gronow, R. H. (Rees Howell), 1794-1865 Reminiscences of Captain Gronow etext3877 etext3882 etext3893 Goldsmith, Lewis, 1763-1846 Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 2 etext3932 Massa, Philippe, marquis de, 1831-1911 Zibeline — Volume 2 etext3953 Vigny, Alfred de, 1797-1863 Cinq Mars — Complete etext3974 Bazin, René, 1853-1932 The Ink-Stain (Tache d'encre) — Volume 3 etext4013 Das Buch Henoch etext4032 Donnelly, Ignatius, 1831-1901 Atlantis : the antediluvian world etext4081 Jonson, Ben, 1573-1637 The Alchemist etext4083 Hebbel, Christian Friedrich, 1813-1863 Mutter und Kind etext4157 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 36: July 1665 etext4160 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 39: October 1665 etext4233 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 Jeanne of the Marshes etext4267 Yonge, Charlotte Mary, 1823-1901 Abbeychurch etext4273 Lindlahr, Henry, 1862-1924 Nature Cure etext4323 Rees, Byron J. (Byron Johnson), 1877-1920 The Heart-Cry of Jesus etext4328 Sturt, Charles, 1795-1869 Two Expeditions into the Interior of Southern Australia — Volume I etext4345 Newte, Horace W. C. (Horace Wykeham Can), 1870-1949 Sparrows: the story of an unprotected girl etext4378 Nesbit, E. (Edith), 1858-1924 In Homespun etext4415 Meredith, George, 1828-1909 Sandra Belloni — Volume 3 etext4441 Meredith, George, 1828-1909 Vittoria — Volume 7 etext4483 Meredith, George, 1828-1909 The Amazing Marriage — Volume 1 etext4493 Meredith, George, 1828-1909 Case of General Ople etext4513 Nesbit, E. (Edith), 1858-1924 The Rainbow and the Rose etext4631 Arthur, T. S. (Timothy Shay), 1809-1885 The Hand but Not the Heart etext4650 Voltaire, 1694-1778 Romans — Volume 4: Candide etext4693 Orr, Lyndon Famous Affinities of History, Vol 1-4, Complete etext4702 Curwood, James Oliver, 1878-1927 The Flaming Forest etext4705 Hume, David, 1711-1776 A Treatise of Human Nature etext4719 Richardson, John, 1796-1852 Wacousta : a tale of the Pontiac conspiracy — Volume 1 etext4741 Bertrand, Huguette Silence En Otage etext4754 Jordan, David Starr, 1851-1931 The Philosophy of Despair etext4805 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 05: 1559-60 etext4844 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1585e-86a etext4869 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1597-98 etext4881 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1608a etext4949 Bach, Johann Sebastian, 1685-1750 Brandenburg Concerto No. 2 in F Major, BWV 1047 etext4996 Tracy, Louis, 1863-1928 Number Seventeen etext5026 Grant, Ulysses S. (Ulysses Simpson), 1822-1885 State of the Union Address etext5028 Arthur, Chester Alan, 1830-1886 State of the Union Address etext5061 The Children's Book of Christmas Stories etext5079 Corelli, Marie, 1855-1924 Ziska etext5110 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Jerry Muskrat etext5112 Landor, Walter Savage, 1775-1864 Citation and Examination of William Shakspeare, Euseby Treen, Joseph Carnaby, and Silas Gough, Clerk etext5114 Corelli, Marie, 1855-1924 Ardath etext5134 Jonson, Ben, 1573-1637 Discoveries Made Upon Men and Matter and Some Poems etext5147 France, Anatole, 1844-1924 Le Jardin d'Épicure etext5162 Green, Anna Katharine, 1846-1935 Agatha Webb etext5346 Eyre, Edward John, 1815-1901 Journals of Expeditions of Discovery into Central Australia and Overland from Adelaide to King George's Sound in the Years 1840-1: Sent By the Colonists of South Australia, with the Sanction and Support of the Government: Including an Account of the Manners and Customs of the Aborigines and the State of Their Relations with Europeans — Complete etext5349 McCutcheon, George Barr, 1866-1928 Castle Craneycrow etext5351 McCarthy, Justin, 1830-1912 If I Were King etext5362 Churchill, Winston, 1871-1947 The Inside of the Cup — Volume 07 etext5364 Churchill, Winston, 1871-1947 The Inside of the Cup — Complete etext5410 Hamilton, Anthony, Count, 1646-1720 The Memoirs of Count Grammont — Volume 02 etext5468 Ebers, Georg, 1837-1898 Joshua — Volume 2 etext5471 Ebers, Georg, 1837-1898 Joshua — Volume 5 etext5489 Ebers, Georg, 1837-1898 The Emperor — Volume 07 etext5499 Ebers, Georg, 1837-1898 Homo Sum — Complete etext5577 Ebers, Georg, 1837-1898 A Word, Only a Word — Complete etext5616 Gibran, Khalil, 1883-1931 The Madman etext5662 Woodbury, Lucia Prudence Hall, 1848- The Potato Child & Others etext5689 Twain, Mark, 1835-1910 The Innocents Abroad — Volume 02 etext5710 Osmer, William A Dissertation on Horses etext5734 Richardson, Sarah J. Life in the Grey Nunnery at Montreal etext5771 Neuhaus, Eugen, 1879-1963 The Art of the Exposition etext5774 Sinclair, Upton, 1878-1968 They Call Me Carpenter etext5793 Yeats, W. B. (William Butler), 1865-1939 Stories of Red Hanrahan etext5799 Huxley, Leonard, 1860-1933 Life and Letters of Thomas Henry Huxley — Volume 3 etext5820 etext5844 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Johnny Chuck etext5845 Hope, Laura Lee The Story of Calico Clown etext6016 Ferber, Edna, 1885-1968 Roast Beef, Medium etext6022 Various Stories by Foreign Authors: German — Volume 2 etext6029 Moore, George (George Augustus), 1852-1933 Spring Days etext6088 Cid, ca. 1043-1099 The Lay of the Cid etext6101 Palmer, George Herbert, 1842-1933 The Nature of Goodness etext6144 Connecticut, Diocese Of Report of Commemorative Services with the Sermons and Addresses at the Seabury Centenary, 1883-1885. etext6159 Wells, Carolyn, 1862-1942 Vicky Van etext6160 Allen, Brigadier Margaret Fletcher of Madeley etext6188 Parker, Gilbert, 1862-1932 Northern Lights, Volume 3. etext6206 Parker, Gilbert, 1862-1932 The Trail of the Sword, Volume 1 etext6354 James, Henry, 1843-1916 Italian Hours etext6360 Ray, Anna Chapin, 1865-1945 Half a Dozen Girls etext6387 Suetonius Tranquillus, Gaius, 75-160 The Lives of the Twelve Caesars, Volume 02: Augustus etext6421 Meyer, Conrad Ferdinand, 1825-1898 Angela Borgia etext6426 Hancock, H. Irving (Harrie Irving), 1868-1922 Dick Prescott's First Year at West Point etext6436 Woolson, Constance Fenimore, 1840-1894 Castle Nowhere etext6438 Carryl, Guy Wetmore, 1873-1904 Fables for the Frivolous etext6576 Hope, Laura Lee The Bobbsey Twins at Meadow Brook etext6579 Gray, Arthur Herbert, 1868-1956 Men Women and God etext6670 Browning, Robert, 1812-1889 Christmas Eve etext6691 Danton, Georges Jacques, 1759-1794 Discours Civiques de Danton etext6696 Keller, Gottfried, 1819-1890 Die Leute von Seldwyla — Band 1 etext6747 Shaffer, Geneve L. A. The Log of the Empire State etext6920 Marcus Aurelius, Emperor of Rome, 121-180 Thoughts of Marcus Aurelius etext6966 Helie, Auguste Traité General de la Cuisine Maigre etext7036 Byrum, Isabel C. (Isabel Coston), 1870-1938 The Poorhouse Waif and His Divine Teacher etext7119 Hawthorne, Nathaniel, 1804-1864 The Dolliver Romance etext7154 Twain, Mark, 1835-1910 The Prince and the Pauper, Part 1. etext7172 Ibsen, Henrik, 1828-1906 Early Plays — Catiline, the Warrior's Barrow, Olaf Liljekrans etext7205 Nietzsche, Friedrich Wilhelm, 1844-1900 Also sprach Zarathustra etext7230 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Not George Washington — an Autobiographical Novel etext7238 Gerard, James W. (James Watson), 1867-1951 My Four Years in Germany etext7258 Beckford, William, 1759-1844 Dreams, Waking Thoughts, and Incidents etext7374 Crawford, F. Marion (Francis Marion), 1854-1909 An American Politician etext7383 Shang, Yang, -338 BC 商子 etext7481 Trollope, Anthony, 1815-1882 The Three Clerks etext7519 Friebe, A. Frances (Abby Frances) The Nomad of the Nine Lives etext7576 Feuillet, Octave, 1821-1890 Images from Feuillet's, Monsieur de Camors etext7608 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Zicci — Complete etext7640 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Ernest Maltravers — Volume 01 etext7672 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Harold : the Last of the Saxon Kings — Volume 01 etext7694 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 A Strange Story — Volume 03 etext7761 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Falkland, Complete etext7830 Vaux, Frances Bowyer Domestic Pleasures, or, the Happy Fire-side etext7919 Smith, John Jay, 1798-1881 American Historical and Literary Antiquities, Part 19. etext7971 Tagore, Rabindranath, 1861-1941 The Fugitive etext7990 Sallust, 86 BC-34? BC Conspiracy of Catiline and the Jurgurthine War etext7998 Aristophanes, 446? BC-385? BC The Frogs etext8104 Russell, George William, 1867-1935 The National Being etext8106 Cook, James, 1728-1779 Captain Cook's Journal During the First Voyage Round the World etext8157 Moore, George (George Augustus), 1852-1933 Esther Waters etext8161 MacPherson, James, 1736-1796 Fragments of Ancient Poetry etext8271 Anonymous The World English Bible (WEB): Acts etext8274 Anonymous The World English Bible (WEB): 2 Corinthians etext8278 Anonymous The World English Bible (WEB): Colossians etext8296 Various Scientific American Supplement, No. 303, October 22, 1881 etext8298 Lipps, Theodor, 1851-1914 Komik und Humor etext8302 The Bible, Douay-Rheims, Book 02: Exodus etext8317 The Bible, Douay-Rheims, Book 17: Tobias etext8337 The Bible, Douay-Rheims, Book 37: Jonas etext8417 Speke, John Hanning, 1827-1864 What Led to the Discovery of the Source of the Nile etext8444 Baroja, Pío, 1872-1956 Cæsar or Nothing etext8495 Fullerton, Georgiana, 1812-1885 The Life of St. Frances of Rome, and Others etext8505 Home, Gordon, 1878-1969 Normandy, Illustrated, Complete etext8512 Zola, Émile, 1840-1902 The Three Cities Trilogy: Lourdes, Volume 2 etext8544 Smith, Logan Pearsall, 1865-1949 Trivia etext8586 Twain, Mark, 1835-1910 Roughing It, Part 5. etext8595 Home, Gordon, 1878-1969 Normandy, Illustrated, Part 3 etext8597 Turgenev, Ivan Sergeevich, 1818-1883 A Sportsman's Sketches etext8645 Curtis, George William, 1824-1892 Prue and I etext8654 etext8673 Serviss, Garrett Putman, 1851-1929 A Columbus of Space etext8677 Alcott, Louisa May, 1832-1888 Behind a Mask, or a Woman's Power etext8688 Aristophanes, 446? BC-385? BC The Eleven Comedies, Volume 1 etext8763 Burroughs, Edgar Rice, 1875-1950 The Land That Time Forgot etext8785 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Hell, Volume 07 etext8798 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Paradise, Volume 3 etext8896 Fisher, George Park, 1827-1909 Outline of Universal History etext8903 Various The Atlantic Monthly, Volume 02, No. 08, June 1858 etext8904 Hale, Edward Everett, 1822-1909 How to Do It etext8946 Proust, Marcel, 1871-1922 Le Côté de Guermantes - Première partie etext8971 Wells, H. G. (Herbert George), 1866-1946 The Island of Doctor Moreau etext9043 Bloomfield, Robert, 1766-1823 May Day with the Muses etext9220 Hawthorne, Nathaniel, 1804-1864 The Threefold Destiny (From "Twice Told Tales") etext9259 Braddon, M. E. (Mary Elizabeth), 1835-1915 Charlotte's Inheritance etext9285 Wharton, Edith, 1862-1937 Summer etext9317 Maclaren, Ian, 1850-1907 A Doctor of the Old School — Volume 3 etext9405 Edwards, George Wharton, 1859-1950 The Book of Old English Ballads etext9464 Edwords, Clarence E. (Clarence Edgar), 1856- Bohemian San Francisco etext9490 Quaint Courtships etext9533 Thackeray, William Makepeace, 1811-1863 Little Travels and Roadside Sketches etext9538 Thackeray, William Makepeace, 1811-1863 Roundabout Papers etext9545 Various Punchinello, Volume 1, No. 11, June 11, 1870 etext9548 Sandars, Mary F. (Mary Frances), 1864- Honore de Balzac, His Life and Writings etext9552 Doyle, Arthur Conan, Sir, 1859-1930 The Hound of the Baskervilles etext9563 Whittier, John Greenleaf, 1807-1892 Narrative and Legendary Poems: Mabel Martin, a Harvest Idyl etext9573 Whittier, John Greenleaf, 1807-1892 Religious Poems, Part 2., from Poems of Nature, etext9670 Gilfillan, George, 1813-1878 Specimens with Memoirs of the Less-known British Poets, Complete etext9684 Defoe, Daniel, 1661?-1731 From London to Land's End etext9686 Defoe, Daniel, 1661?-1731 The Further Adventures of Robinson Crusoe etext9699 Dickens, Charles, 1812-1870 Martin Chuzzlewit etext9748 Keyes, Frances Parkinson, 1885-1970 The Old Gray Homestead etext9839 Cable, George Washington, 1844-1925 The Cavalier etext9844 Turnbull, Margaret W. A. G.'s Tale etext9847 Durning-Lawrence, Sir Edwin, 1837-1914 Bacon is Shake-Speare etext9897 etext9898 Various Punchinello, Volume 1, No. 04, April 23, 1870 etext9945 Thiers, Adolphe, 1797-1877 Histoire de la Révolution française, Tome 1 etext9973 Home, Gordon, 1878-1969 Yorkshire etext9985 Castleman, Virginia Carter Pocahontas. etext10018 Various Punchinello, Volume 1, No. 05, April 30, 1870 etext10028 Spalding's Official Baseball Guide - 1913 etext10060 Huxley, Thomas Henry, 1825-1895 Discourses etext10065 Beck, James M. (James Montgomery), 1861-1936 The Constitution of the United States etext10075 Smith, Venture A Narrative of the Life and Adventures of Venture, a Native of Africa, but Resident above Sixty Years in the United States of America, Related by Himself etext10190 Hill, Murray K. A Bunch of Nonsense etext10196 Fiddlin' Powers & Family Cluck Old Hen etext10200 To Edison from Colonel Gouraud, Introducing Mr. Gladstone etext10270 Song, Hann's Emperors of What Band Is This? etext10272 Constantino, Florencio (tenor) Sono Un Poeta etext10431 Hughes, Louis Thirty Years a Slave etext10441 Chambers, Robert W. (Robert William), 1865-1933 The Green Mouse etext10463 Eliot, Ethel Cook, 1890-1972 The Little House in the Fairy Wood etext10469 Brooke, L. Leslie (Leonard Leslie), 1862-1940 Johnny Crow's Garden etext10503 McGuinn, Roger John Henry etext10571 Jacobs, W. W. (William Wymark), 1863-1943 The Old Man of the Sea etext10668 The War and Democracy etext10714 Schopenhauer, Arthur, 1788-1860 The Essays of Arthur Schopenhauer; The Art of Literature etext10826 Le Gallienne, Richard, 1866-1947 The Book-Bills of Narcissus etext10851 etext10901 Donnell, Annie Hamilton, 1862- Three Young Knights etext10920 Kingsley, Charles, 1819-1875 Two Years Ago, Volume I etext10930 Bindloss, Harold, 1866-1945 The Buccaneer Farmer etext10933 Various Punchinello, Volume 2, No. 38, December 17, 1870. etext10976 Unknown The Apricot Tree etext10990 Selected Speeches on British Foreign Policy 1738-1914 etext11026 Kingsley, Charles, 1819-1875 Literary and General Lectures and Essays etext11032 Wilson's Tales of the Borders and of Scotland, Volume XXIII etext11101 Coleridge, Samuel Taylor, 1772-1834 Rime of the ancient mariner etext11106 Stockton, Frank Richard, 1834-1902 The Girl at Cobhurst etext11123 The German Classics of the Nineteenth and Twentieth Centuries, Volume 01 etext11143 Porter, Eleanor H. (Eleanor Hodgman), 1868-1920 Mary Marie etext11147 Livermore, Edward Phebe, the Blackberry Girl etext11213 Sherwood, Mrs. (Mary Martha), 1775-1851 Brotherly Love etext11235 Various The Mirror of Literature, Amusement, and Instruction etext11237 Anonymous The Pearl Box etext11242 Symonds, John Addington, 1840-1893 The Life of Michelangelo Buonarroti etext11252 Morrison, Arthur, 1863-1945 Martin Hewitt, Investigator etext11281 Various The Mirror of Literature, Amusement, and Instruction etext11304 Moore, George (George Augustus), 1852-1933 The Lake etext11323 Godwin, William, 1756-1836 Caleb Williams etext11360 Bennett, Arnold, 1867-1931 Sacred and Profane Love etext11450 Maupassant, Guy de, 1850-1893 Fort comme la mort etext11504 Leacock, Stephen, 1869-1944 Further Foolishness etext11512 O. Henry Memorial Award Prize Stories of 1921 etext11535 Taylor, Bayard, 1825-1878 Views a-foot etext11574 Bennett, John Master Skylark etext11600 Pardoe, Julia, 1804-1862 The Life of Marie de Medicis — Volume 2 etext11615 Brown, Goold, 1791-1857 The Grammar of English Grammars etext11617 Various Punch, or the London Charivari, Volume 156, April 2, 1919 etext11675 Le Gallienne, Richard, 1866-1947 Vanishing Roads and Other Essays etext11711 Hall, Thomas Winthrop, 1862-1900 When hearts are trumps etext11739 Wilde, Oscar, 1854-1900 Individualisme en socialisme etext11743 Various The Mirror of Literature, Amusement, and Instruction etext11848 Library of Congress. Copyright Office U.S. Copyright Renewals, 1973 July - December etext11915 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Mr. Mocker etext11922 Bill, Ledyard Minnesota; Its Character and Climate etext11951 Guizot, M. (François), 1787-1874 A Popular History of France from the Earliest Times, Volume 1 etext12031 De la Mare, Walter, 1873-1956 Collected Poems 1901-1918 in Two Volumes etext12050 Johnson, Samuel, 1709-1784 The Works of Samuel Johnson, Volume 04 etext12074 Walpole, Horace, 1717-1797 Letters of Horace Walpole — Volume II etext12100 Howells, William Dean, 1837-1920 Between the Dark and the Daylight etext12106 Lorimer, George Horace, 1868-1937 Old Gorgon Graham etext12116 Hoffmann, Heinrich, 1809-1894 Struwwelpeter: Merry Stories and Funny Pictures etext12166 Dryden, John, 1631-1700 The works of John Dryden, $c now first collected in eighteen volumes. $p Volume 02 etext12188 Miles, A. Marie The Key to Peace etext12222 etext12246 Villon, François, 1431- Oeuvres complètes de François Villon etext12338 Sand, George, 1804-1876 Contes d'une grand-mère etext12342 Nuttall, P. Austin The Nuttall Encyclopædia etext12372 Various The Atlantic Monthly, Volume 01, No. 06, April, 1858 etext12410 etext12452 Wood, Benjamin, 1820-1900 Fort Lafayette or, Love and Secession etext12459 Jourdan, Prosper Contes et poésies de Prosper Jourdan: 1854-1866 etext12513 Dewey, Melvil, 1851-1931 A Classification and Subject Index for Cataloguing and Arranging the Books and Pamphlets of a Library etext12517 Various Punch, or the London Charivari, Volume 99, November 15, 1890 etext12565 Collins, David, 1754-1810 An Account of the English Colony in New South Wales, Volume 1 etext12607 McHugh, Hugh You Can Search Me etext12650 Various The Mirror of Literature, Amusement, and Instruction etext12724 Shakespeare, William, 1564-1616 Sonnet #116 etext12726 Daudet, Alphonse, 1840-1897 Le nabab, tome I etext12742 Scott, Walter, Sir, 1771-1832 Minstrelsy of the Scottish border, Volume 1 etext12802 Scott, Walter, Sir, 1771-1832 Vanha tarina Montrosesta etext12813 James, George Wharton, 1858-1923 Quit Your Worrying! etext12890 Spalding, Thomas Alfred, 1850- Elizabethan Demonology etext13014 Amman, John Conrade, 1669-1724 Surdus loquens. English etext13015 Redesdale, Algernon Bertram Freeman-Mitford, Baron, 1837-1916 Tales of Old Japan etext13096 David, Laurent-Olivier, 1840-1926 Le Héros de Châteauguay etext13117 Hume, Allan Octavian, 1829-1912 The Nests and Eggs of Indian Birds, Volume 1 etext13178 Dobie, Charles Caldwell, 1881-1943 Broken to the Plow etext13195 Various Lippincott's Magazine of Popular Literature and Science etext13208 Ferrero, Guglielmo, 1871-1942 Characters and events of Roman History etext13240 Cousin, John W. (John William), 1849-1910 A Short Biographical Dictionary of English Literature etext13261 Forman, Justus Miles, 1875-1915 Jason etext13301 Velimirović, Nikolai, 1880-1956 The New Ideal in Education etext13307 Kelland, Clarence Budington, 1881-1964 Scattergood Baines etext13362 Various Notes and Queries, Number 38, July 20, 1850 etext13410 Payn, James, 1830-1898 Some Private Views etext13419 Chekhov, Anton Pavlovich, 1860-1904 The Bishop and Other Stories etext13424 Anonymous Honoring Parents etext13436 Loftie, W. J., 1839-1911 Authorised Guide to the Tower of London etext13571 Various Notes and Queries, Index of Volume 2, May-December, 1850 etext13592 Sand, George, 1804-1876 L'Uscoque etext13601 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture: Romans Corinthians (To II Corinthians, Chap. V) etext13603 The Hawaiian Romance Of Laieikawai etext13673 Marryat, Frederick, 1792-1848 The Pacha of Many Tales etext13694 Morley, Christopher, 1890-1957 Mince Pie etext13711 Various International Weekly Miscellany - Volume 1, No. 7, August 12, 1850 etext13803 Alger, Horatio, 1832-1899 Making His Way etext13835 Conscience, Hendrik, 1812-1883 The Amulet etext13873 Aho, Juhani, 1861-1921 Tuomio etext13874 Aho, Juhani, 1861-1921 Rauhan erakko etext13880 Snell, Roy J. (Roy Judson), 1878-1959 Triple Spies etext13908 Riley, James Whitcomb, 1849-1916 Pipes O'Pan at Zekesbury etext13951 Dumas père, Alexandre, 1802-1870 Les trois mousquetaires etext14120 Turner, Matthew, -1788 Answer to Dr. Priestley's Letters to a Philosophical Unbeliever etext14136 Hope, Laura Lee The Outdoor Girls at the Hostess House etext14232 Graves, Alfred Perceval, 1846-1931 A Celtic Psaltery etext14249 Isham, Frederic Stewart, 1866-1922 Half A Chance etext14269 Amundsen, Roald, 1872-1928 Aan de Zuidpool etext14285 Homer, 750? BC-650? BC L'Iliade etext14358 A Little Book of Filipino Riddles etext14391 Táin Bó Cúalnge. English etext14459 etext14468 Doheny, Michael, 1805-1863 The Felon's Track etext14469 Saintsbury, George, 1845-1933 The English Novel etext14472 etext14491 Richmond, Grace S. (Grace Smith), 1866-1959 The Twenty-Fourth of June etext14538 Various L'Illustration, Samedi 1er Août 1914, 72e Année, No 3727 etext14573 Rinehart, Mary Roberts, 1876-1958 The Truce of God etext14579 Keable, Robert, 1887-1927 Simon Called Peter etext14639 Various Punch, or the London Charivari, Volume 152, February 28, 1917 etext14704 Vallès, Jules, 1832-1885 L'enfant etext14707 Various Punch, or the London Charivari, Volume 102, June 11, 1892 etext14753 Various Blackwood's Edinburgh Magazine — Volume 54, No. 335, September 1843 etext14762 Optic, Oliver, 1822-1897 Now or Never etext14766 McGuffey, William Holmes, 1800-1873 McGuffey's Third Eclectic Reader etext14786 Knapp, Shepherd Up the Chimney etext14802 Hahnsson, Theodolinda (Sofia Theodolinda), 1838-1919 Huutolaiset etext14849 Steinmetz, Margaret Bird Leaves of Life etext14908 Lett, William Pittman Recollections of Bytown and Its Old Inhabitants etext14928 Various Punch, or the London Charivari, Volume 1, September 18, 1841 etext14986 Faraday, Michael, 1791-1867 Experimental Researches in Electricity, Volume 1 etext14993 Various Rig Veda Americanus etext15005 Norton, Arthur Orlo, 1869-1959 Readings in the History of Education etext15019 M., W. A Queens Delight etext15031 Lee, Andrew Sermons on Various Important Subjects etext15166 Various Punch, or the London Charivari, Volume 103, September 3, 1892 etext15174 Sanborn, Kate, 1839-1917 Memories and Anecdotes etext15181 Brame, Charlotte M., 1836-1884 My Mother's Rival etext15233 Beatty, William, 1773-1842 Authentic Narrative of the Death of Lord Nelson etext15261 Clarkson, Thomas, 1760-1846 A Portraiture of Quakerism, Volume 2 etext15266 Van Dyke, Henry, 1852-1933 What Peace Means etext15342 M'lean, John Notes of a Twenty-Five Years' Service in the Hudson's Bay Territory etext15374 Various St. Nicholas, Vol. 5, No. 5, March, 1878 etext15410 Oliphant, Mrs. (Margaret), 1828-1897 A Little Pilgrim etext15451 Various The Great Round World And What Is Going On In It, Vol. 1. No. 21, April 1, 1897 etext15501 Malmberg, Aino, 1865-1933 Yksinkö? etext15596 Hawthorne, Julian, 1846-1934 Bressant etext15612 Genesis A etext15614 MacGrath, Harold, 1871-1932 The Ragged Edge etext15627 Wood, Henry, Mrs., 1814-1887 Verner's Pride etext15641 Various Notes and Queries, Number 65, January 25, 1851 etext15668 Unknown Breves instrucções aos correspondentes da Academia das Sciencias de Lisboa sobre as remessas dos productos, e noticias pertencentes a' Historia da Natureza, para formar hum Museo Nacional etext15726 Stewart, Jane L. The Camp Fire Girls on the Farm etext15813 Michelangelo Buonarroti, 1475-1564 Michelangelo Gedichte und Briefe etext15951 Whistler, Charles W. (Charles Watts), 1856-1913 A Sea Queen's Sailing etext15987 Runeberg, Fredrika Charlotta Tengström, 1807-1879 Kuvauksia ja unelmia etext15990 Gibergues, de Akten voor en na de Heilige Communie etext16035 Head, Brandon The Food of the Gods etext16091 Penrose, Margaret Dorothy Dale's Camping Days etext16144 Hart, Fanny Wheeler Harry etext16210 Beaugrand, Honoré, 1848-1906 La chasse galerie etext16257 London, Jack, 1876-1916 The Turtles of Tasman etext16260 Daguerre, Louis-Jacques-Mandé, 1787-1851 Nouveau moyen de préparer la couche sensible des plaques destinées à recevoir les images photographiques etext16330 Phelan, Michael The Young Priest's Keepsake etext16349 Dunderdale, George, 1822-1903 The Book of the Bush etext16352 The Great Events by Famous Historians, Volume 01 etext16370 Lacroix, John Victor Lameness of the Horse etext16377 etext16398 Dougall, Lily, 1858-1923 What Necessity Knows etext16418 Various What Great Men Have Said About Women etext16453 Barr, Amelia Edith Huddleston, 1831-1919 The Measure of a Man etext16604 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Poison Island etext16685 Peat, Harold Reginald, 1893-1960 Private Peat etext16706 etext16710 Shakespeare, William, 1564-1616 Les Deux Gentilshommes de Vérone etext16712 Santayana, George, 1863-1952 Some Turns of Thought in Modern Philosophy etext16735 Bartley, James Avis Lays of Ancient Virginia, and Other Poems etext16798 Wood, Henry, Mrs., 1814-1887 Elster's Folly etext16817 Ponson du Terrail, 1829-1871 Les misères de Londres etext16834 Bolton, Charles E. (Charles Edward), 1841-1901 The Harris-Ingram Experiment etext16840 Guerber, H. A. (Hélène Adeline), 1859-1929 Stories of the Wagner Opera etext16850 Retté, Adolphe, 1863-1930 Au pays des lys noirs etext16928 Milne, James, 1865-1951 The Romance of a Pro-Consul etext16980 Memini, 1849-1899? Mia etext16986 Bahá'u'lláh, 1817-1892 The Seven Valleys and the Four Valleys etext16990 Clarke, Michael, 1844-1916 The Story of Troy etext16992 Logan, Innes On the King's Service etext17028 Doctorow, Cory, 1971- Eastern Standard Tribe etext17081 Brontë, Patrick, 1777-1861 Cottage Poems etext17158 Courtney, W. L. (William Leonard), 1850-1928 Armageddon—And After etext17199 Various Golden Days for Boys and Girls, Vol. XII, Jan. 3, 1891 etext17285 etext17319 Lemaître, Jules, 1853-1914 Chateaubriand etext17350 Russell, Bertrand, 1872-1970 The Practice and Theory of Bolshevism etext17391 MacGrath, Harold, 1871-1932 The Princess Elopes etext17446 Ayres, Ruby M. (Ruby Mildred), 1883-1955 The Second Honeymoon etext17458 Maigron, Louis, 1866- Le Roman Historique a l'Epoque Romantique - Essai sur l'Influence de Walter Scott etext17477 Seltzer, Charles Alden, 1875-1942 The Trail Horde etext17530 Gillmore, Inez Haynes, 1873-1970 Maida's Little Shop etext17615 Glanville, Ernest, 1855-1925 In Search of the Okapi etext17676 Dickens, Charles, 1812-1870 Le magasin d'antiquités, Tome II etext17699 Lucka, Emil, 1877-1941 The Evolution of Love etext17723 Various The Bay State Monthly, Volume 3, No. 3 etext17734 Taine, Hippolyte, 1828-1893 Le positivisme anglais etext17767 Fitzhugh, Percy Keese, 1876-1950 Pee-Wee Harris Adrift etext17903 etext17921 etext17949 Tolstoy, Leo, graf, 1828-1910 La guerre et la paix, Tome I etext17968 Guyot, Yves, 1843-1928 Boer Politics etext17988 Flower, Jessie Graham [pseud.], -1931 Grace Harlowe's First Year at Overton College etext17989 Dumas père, Alexandre, 1802-1870 Le comte de Monte-Cristo, Tome I etext18013 Schellhas, Paul, 1859?-1945 Representation of Deities of the Maya Manuscripts etext18132 Coghill, Harry, Mrs., 1836-1907 A Canadian Heroine, Volume 3 etext18150 Sinclair, Bertrand W., 1881-1972 The Hidden Places etext18182 Laut, Agnes C. (Agnes Christina), 1871-1936 Heralds of Empire etext18202 Withington, William The Growth of Thought etext18239 Croker, B. M. (Bithia Mary), 1849-1920 The Road to Mandalay etext18256 Hadley, Caroline Woodside etext18334 Various The Illustrated War News, Number 21, Dec. 30, 1914 etext18346 etext18354 Beaumarchais, Pierre Augustin Caron de, 1732-1799 Barbier de Séville etext18415 Lermina, Jules, 1839-1915 Histoires incroyables, Tome I etext18423 Catherwood, Mary Hartwell, 1847-1902 Old Kaskaskia etext18466 Virgil, 70 BC-19 BC The Æneid of Virgil etext18592 Marshall, John, 1755-1835 The Life of George Washington, Vol. 2 etext18604 Andersen, H. C. (Hans Christian), 1805-1875 The Ice-Maiden: and Other Tales. etext18625 etext18650 McCabe, Joseph, 1867-1955 The War and the Churches etext18692 Dombre, Roger, 1859-1914 Une Pupille Genante etext18720 In the Yule-Log Glow, Book I etext18721 Dixon, Thomas, 1864-1946 The Victim etext18784 Sourryère de Souillac, José, 1750-1820 Itinerario de Buenos Aires a Cordoba etext18804 Prose Masterpieces from Modern Essayists etext18848 Various The Continental Monthly, Vol. 5, No. 3, March, 1864 etext18861 Piper, H. Beam, 1904-1964 Temple Trouble etext18909 Various Poems Teachers Ask For etext18912 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext18914 Various The Atlantic Monthly, Volume 20, No. 117, July, 1867. etext18934 Barrie, J. M. (James Matthew), 1860-1937 My Lady Nicotine etext18992 Current Superstitions etext19032 Various Lippincott's Magazine of Popular Literature and Science, Volume 22. July, 1878. etext19079 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Lightfoot the Deer etext19084 In the Yule-Log Glow, Book II etext19193 Miller, J. R. (James Russell), 1840-1912 Making the Most of Life etext19235 Munroe, Kirk, 1850-1930 Under the Great Bear etext19261 Jackson, Chevalier, 1865-1958 Bronchoscopy and Esophagoscopy etext19352 Fernie, William Thomas, 1830- Herbal Simples Approved for Modern Uses of Cure etext19446 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext19479 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 Roughing it De Luxe etext19497 Bessette, Arsène, 1873-1921 Le débutant: Ouvrage enrichi de nombreux dessins de Busnel, de deux dessins... et d'un portrait de l'auteur par St-Charles etext19517 Collodi, Carlo, 1826-1890 Le avventure di Pinocchio etext19521 Mack, Isaac Alexander Letters from France etext19581 United States Amendments to the United States Constitution etext19634 Nietzsche, Friedrich Wilhelm, 1844-1900 Beyond Good and Evil etext19655 Hall, James Norman, 1887-1951 Kitchener's Mob etext19656 Herrick, Robert, 1868-1938 One Woman's Life etext19681 Tolstoy, Leo, graf, 1828-1910 Детство etext19690 Newman, John Henry, 1801-1890 Apologia pro Vita Sua etext19721 The Literary World Seventh Reader etext19754 Freytag, Gustav, 1816-1895 Debit and Credit etext19861 Harland, Henry, 1861-1905 The Lady Paramount etext19910 McSpadden, J. Walker (Joseph Walker), 1874-1960 Boys' Book of Famous Soldiers etext19935 Morley, John, 1838-1923 Critical Miscellanies, Vol. 1, Essay 5, Emerson etext19963 Smith, George O. (George Oliver), 1911-1981 Stop Look and Dig etext19990 Jewell, F. Little Abe etext20006 Zamenhof, L. L. (Ludwik Lejzer), 1859-1917 Dua Libro de l' Lingvo Internacia etext20030 Frost, Robert, 1874-1963 Fire and Ice etext20031 Henty, G. A. (George Alfred), 1832-1902 A Final Reckoning etext20062 Guerrazzi, Francesco Domenico, 1804-1873 Lo assedio di Roma etext20125 Lippmann, Walter, 1889-1974 A Preface to Politics etext20145 Koskenniemi, V. A., 1885-1962 Elegioja etext20207 Henty, G. A. (George Alfred), 1832-1902 Under Wellington's Command etext20248 Brooks, David Marshall, 1902- The Necessity of Atheism etext20265 Montgomery, L. M. (Lucy Maud), 1874-1942 Anne of the Island etext20323 Yonge, Charlotte Mary, 1823-1901 That Stick etext20376 Kiljander, Robert, 1848-1924 Postikonttorissa etext20410 Various Notes and Queries, Number 187, May 28, 1853 etext20452 FitzGerald, Edward, 1809-1883 Letters of Edward FitzGerald etext20459 Stephen, Leslie, Sir, 1832-1904 Hours in a Library, Volume I. (of III.) etext20475 Cooper, James Fenimore, 1789-1851 The Two Admirals etext20479 Anonymous Le Râmâyana - tome premier etext20508 Pinto, Alexandre Alberto da Rocha de Serpa, 1846-1900 Como eu atravessei Àfrica do Atlantico ao mar Indico, volume primeiro etext20613 Freud, Sigmund, 1856-1939 Über Psychoanalyse etext20651 Stockton, Frank Richard, 1834-1902 A Jolly Fellowship etext20676 Genesis etext20701 Anonymous Viamos e não veremos etext20720 Shakespeare, William, 1564-1616 Les joyeuses Bourgeoises de Windsor etext20788 Norton, Andre, 1912-2005 Storm Over Warlock etext20800 Besant, Annie Wood, 1847-1933 London Lectures of 1907 etext20808 Pansy, 1841-1930 Three People etext20849 Eggleston, George Cary, 1839-1911 The Big Brother etext20857 Smith, E. E. (Edward Elmer), 1890-1965 Spacehounds of IPC etext20915 Field, George Field's Chromatography etext20927 Cherágh Ali, 1844-1895 A Critical Exposition of the Popular 'Jihád' etext20955 Various The International Monthly Magazine, Volume 5, No. 1, January, 1852 etext20978 Jókai, Mór, 1825-1904 A Hungarian Nabob etext20994 Reed, Talbot Baines, 1852-1893 Kilgorman etext21000 Goethe, Johann Wolfgang von, 1749-1832 Faust etext21101 Vaizey, George de Horne, Mrs., 1857-1917 Pixie O'Shaughnessy etext21108 Hutcheson, John C. (John Conroy) Fritz and Eric etext21143 etext21156 Field, Eugene, 1850-1895 Selected Lullabies etext21195 Irving, Washington, 1783-1859 Tri Noveloj etext21197 Collado, Diego, -1638 Ars Grammaticae Iaponicae Linguae. English etext21241 Reid, Mayne, 1818-1883 The Rifle Rangers etext21259 Briggs, Olive M. The Black Cross etext21262 Marlowe, Christopher, 1564-1593 The Works of Christopher Marlowe, Vol. 3 (of 3) etext21293 Fenn, George Manville, 1831-1909 Brownsmith's Boy etext21350 Udall, Nicholas, 1505-1556 Ralph Roister Doister etext21355 Fenn, George Manville, 1831-1909 Middy and Ensign etext21392 Kingston, William Henry Giles, 1814-1880 Happy Jack etext21431 Manning, Anne, 1807-1879 Mary Powell & Deborah's Diary etext21451 Kingston, William Henry Giles, 1814-1880 Ben Hadden etext21456 Kingston, William Henry Giles, 1814-1880 The Cruise of the Dainty etext21593 Kafka, Franz, 1883-1924 Das Urteil etext21642 Cadogan, Adelaide Lady Cadogan's Illustrated Games of Solitaire or Patience etext21726 Ballantyne, R. M. (Robert Michael), 1825-1894 Deep Down, a Tale of the Cornish Mines etext21736 Ballantyne, R. M. (Robert Michael), 1825-1894 The Gorilla Hunters etext21762 Ladd, Adoniram Judson On the Firing Line in Education etext21781 Wells, H. G. (Herbert George), 1866-1946 Text Book of Biology, Part 1: Vertebrata etext21838 Daudet, Ernest, 1837-1921 Which? etext2976 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 26: Spain etext21849 Pinero, Arthur Wing, Sir, 1855-1934 The 'Mind the Paint' Girl etext21872 Maclaren, Alexander, 1826-1910 The Life of David etext21973 Lee, R. Anecdotes of the Habits and Instinct of Animals etext21975 Hofland, Mrs. The Barbadoes Girl etext21985 Cholmeley, R. E. John Nicholson etext22007 Faribault, Georges-Barthélémi Catalogue d'ouvrages sur l'histoire de l'Amérique et en particulier sur celle du Canada etext22009 Hinemoa etext22018 Lermina, Jules, 1839-1915 The Son of Monte-Cristo, Volume I etext22046 Ostwald, Hans Maxim Gorki etext22078 etext22084 Creswell, John A. J. Oration on the Life and Character of Henry Winter Davis etext22110 Vandenburg, G. L. Martian V.F.W. etext22118 Delany, Martin Robison, 1812-1885 Official Report of the Niger Valley Exploring Party etext22121 Craik, Dinah Maria Mulock, 1826-1887 Olive etext22142 The Modern Scottish Minstrel, Volume V. etext22158 MacGrath, Harold, 1871-1932 The Lure of the Mask etext22256 Various Sparkling Gems of Race Knowledge Worth Reading etext22268 Lescarbot, Marc Histoire de la Nouvelle-France etext22270 Bennet, Robert Ames, 1870-1954 Bloom of Cactus etext22281 etext22282 Harris, Joel Chandler, 1848-1908 Uncle Remus and Brer Rabbit etext22297 Howells, William Dean, 1837-1920 The Coast of Bohemia etext22329 Garland, Hamlin, 1860-1940 A Daughter of the Middle Border etext22350 Bronson, Edgar Beecher The Red-Blooded Heroes of the Frontier etext22386 Rovigo, Duc de Mémoires du duc de Rovigo, pour servir à l'histoire de l'empereur Napoléon etext22398 Searchfield, Emilie The Heiress of Wyvern Court etext22458 Watson, Paul Barron The Swedish Revolution Under Gustavus Vasa etext22622 Almeida, José Valentim Fialho de, 1857-1911 Aves Migradoras etext22627 Kroeh, Charles Frederick, 1846-1928 German Science Reader etext22778 Anonymous The Remarkable Adventures of an Old Woman and Her Pig etext22867 Nourse, Alan Edward, 1928-1992 Meeting of the Board etext22898 Bocage, Manuel Maria Barbosa du, 1765-1805 Elegia etext22900 Huizinga, Johan, 1872-1945 Erasmus and the Age of Reformation etext22905 Various Punch, or the London Charivari, Vol. 158, 1920-04-07 etext22912 Whitehill, Dorothy Phyllis etext22942 Holt, Emily Sarah, 1836-1893 Clare Avery etext22963 Austen, Jane, 1775-1817 Persuasion etext23006 Chaplin, Heman White, 1847-1924 Five Hundred Dollars etext23022 Meade, L. T., 1854-1914 Red Rose and Tiger Lily etext23029 Ohio Arbor Day 1913: Arbor and Bird Day Manual etext23118 Collingwood, Harry, 1851-1922 A Chinese Command etext23136 Tagore, Rabindranath, 1861-1941 Creative Unity etext23139 Marryat, Frederick, 1792-1848 Olla Podrida etext23146 MacApp, C. C., 1917-1971 And All the Earth a Grave etext23211 Agnel, Émile, 1810-1882 Curiosités judiciaires et historiques du moyen âge. Procès contre les animaux etext23251 Catherwood, Mary Hartwell, 1847-1902 Marianson etext23275 Martineau, Harriet, 1802-1876 The Peasant and the Prince etext23354 Masters, Maxwell T. (Maxwell Tylden), 1833-1907 Vegetable Teratology etext23427 Butler, Samuel, 1835-1902 Evolution, Old & New etext23432 Masterpieces of Mystery In Four Volumes etext23470 McCarthy, Justin, 1830-1912 A History of the Four Georges, Volume II etext23484 Coeuret, Auguste La Bastille etext23487 King, Charles, 1844-1933 Tonio, Son of the Sierras etext23508 Lemaître, Jules, 1853-1914 Les Contemporains, 7ème Série etext23524 Taine, Hippolyte, 1828-1893 The Origins of Contemporary France, Complete Table of Contents etext23548 Murfree, Mary Noailles, 1850-1922 The Raid Of The Guerilla etext23568 Long, Frank Belknap, 1903-1994 The Mississippi Saucer etext23669 Reynolds, Mack, 1917-1983 Summit etext23686 Gray, Lucy The Life and Adventures of Poor Puss etext23765 Dickens, Charles, 1812-1870 Captain Boldheart & the Latin-Grammar Master etext23799 Godwin, Tom, 1915-1980 Cry from a Far Planet etext23825 Anonymous Shi Gong Chuan etext23832 Lee, Day Kellogg, 1816-1869 Summerfield etext23858 etext23889 Janifer, Laurence M., 1933-2002 Charley de Milo etext24002 In Arapahoe: Matthew 9, 1-8. etext24059 Liu, An, -122 BC 淮南子 etext24152 Cox, Irving E. The Guardians etext24157 Various Punch, or the London Charivari, May 27, 1914 etext24160 Schmid, Christoph von, 1768-1854 Blumenkörbchen. English etext24182 Abbott, Jacob, 1803-1879 Rollo in London etext24183 Tuotuo, 1313-1355 宋史 etext24197 Anstey, F., 1856-1934 The Tinted Venus etext24213 Storm, Theodor, 1817-1888 Marthe und ihre Uhr etext24219 Peachey, Emma The Royal Guide to Wax Flower Modelling etext24330 Nicholls, H. G. (Henry George), 1825-1867 Iron Making in the Olden Times etext24383 Arnault, A.-V. (Antoine-Vincent), 1766-1834 Souvenirs d'un sexagénaire, Tome III etext24384 Anonymous 365 Luncheon Dishes etext24397 Janifer, Laurence M., 1933-2002 Hex etext24415 Optic, Oliver, 1822-1897 Proud and Lazy etext24564 Bell, Joseph, 1837-1911 A Manual of the Operations of Surgery etext24576 Toomer, Jean, 1894-1967 An Interpretation of Friends Worship etext24653 Hascall, Milo S., 1829-1904 Personal recollections and experiences concerning the Battle of Stone River etext24674 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture etext24690 Kayme, Sargent Anting-Anting Stories etext24704 Allison, Young Ewing, 1853-1932 On the Vice of Novel Reading. etext24742 Stephens, James, 1882-1950 Mary, Mary etext24774 Lima, Jaime de Magalhães, 1859-1936 Cidades e Paisagens etext24794 Bell, Florence Eveleen Eleanore Olliffe, Lady, 1851-1930 The Arbiter etext24973 Derreaux, Gaston The Sun King etext24979 Ayer, Joseph Cullen, 1866-1944 A Source Book for Ancient Church History etext25001 Trollope, Anthony, 1815-1882 An Old Man's Love etext25079 Haverfield, Eleanor Luisa Queensland Cousins etext25171 Dunbar, Paul Laurence, 1872-1906 The Uncalled etext25179 Bersezio, Vittorio, 1830-1900 La carità del prossimo etext25187 Wei, Zi'an, 1819-1874 花月痕 etext25219 Wei, Zi'an, 1819-1874 花月痕 etext25327 Wenkang, fl. 1842-1851 兒女英雄傳 etext25392 Zhou, Qingyuan, 16th/17th cent. 西湖二集 etext25398 etext25478 F. M. S. The Boy Artist. etext25522 Hearnshaw, F. J. C. (Fossey John Cobb), 1869-1946 Freedom In Service etext25579 Trollope, Anthony, 1815-1882 Ralph the Heir etext25584 Le Fanu, Joseph Sheridan, 1814-1873 The Purcell Papers etext25612 Cox, Leonard, ca. 1495- The Art or Crafte of Rhetoryke etext25666 Reid, Mayne, 1818-1883 The Boy Tar etext25672 Butterworth, Hezekiah, 1839-1905 In The Boyhood of Lincoln etext25731 Roth, H. Ling (Henry Ling), 1855-1925 Ancient Egyptian and Greek Looms etext25748 Wilson, Ann Zeta Exchange etext25792 Higginson, Thomas Wentworth, 1823-1911 The Sympathy of Religions etext25844 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Voltareis ó Christo? etext25905 Compton, D. A. The $100 Prize Essay on the Cultivation of the Potato. etext25922 Bindloss, Harold, 1866-1945 Masters of the Wheat-Lands etext25937 Lyall, Alfred Comyn, Sir, 1835-1911 Studies in Literature and History etext25939 Wise, Thomas James, 1859-1937 A Bibliography of the writings in Prose and Verse of George Henry Borrow etext25955 Orczy, Emmuska Orczy, Baroness, 1865-1947 The Bronze Eagle etext25972 Arthur, Frances Browne Two Little Travellers etext26021 Robinson, Doane, 1856-1946 Sioux Indian Courts etext26031 Ross, John, Sir, 1777-1856 Memoirs and Correspondence of Admiral Lord de Saumarez, Vol. I etext26046 Burroughs, John, 1837-1921 Bird Stories from Burroughs etext26050 Scott, Sarah, 1723-1795 A Description of Millenium Hall etext26111 Alger, Horatio, 1832-1899 In A New World etext26143 Verne, Jules, 1828-1905 Cesar Cascabel: "De Schoone Zwerfster" etext26180 McClatchie, Sam, 1915- Mother America etext26182 Stratemeyer, Edward, 1862-1930 The Rover Boys on the Plains etext26196 Various The International Magazine, Volume 2, No. 3, February, 1851 etext26213 Twain, Mark, 1835-1910 Fenimore Cooper's Literary Offenses etext26225 Kleiser, Grenville, 1868-1953 Fifteen Thousand Useful Phrases etext26264 Hardy, Thomas, 1840-1928 The Return of the Native etext26316 Glasgow, Ellen Anderson Gholson, 1873-1945 Virginia etext26332 Bone, Jesse F. (Jesse Franklin), 1916-1986 A Prize for Edie etext26334 Lecky, William Edward Hartpole, 1838-1903 The Map of Life etext26343 Dahn, Felix, 1834-1912 Ein Kampf um Rom. Finnish etext26371 Vila Moura, Visconde de, 1877-1935 Nova Sapho etext26403 Zola, Émile, 1840-1902 Juutalaisten puolustukseksi etext26434 Hamp, Sidford F. (Sidford Frederick), 1855-1919 The Boys of Crawford's Basin etext26455 etext26466 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Idle Thoughts of an Idle Fellow etext26493 Boulger, Demetrius Charles, 1853-1928 The Life of Gordon, Volume II etext26509 Parry, William Edward, Sir, 1790-1855 Journal of the Third Voyage for the Discovery of a North-West Passage etext26527 MacGowan, Alice, 1858- Judith of the Cumberlands etext26552 Benson, Albert H. Fruits of Queensland etext26614 Sand, George, 1804-1876 Le secrétaire intime etext26657 Paternoster, G. Sidney, 1866- The Motor Pirate etext26662 Tolstoy, Leo, graf, 1828-1910 The First Distiller etext26709 Murray, Andrew, 1828-1917 Lord, Teach Us To Pray etext26726 Tulloch, John, 1823-1886 Pascal etext26739 Chen, Lang, 18th cent. 雪月梅傳 etext26753 Various Notes and Queries, Number 183, April 30, 1853 etext26765 Shakespeare, William, 1564-1616 Henri VI (3/3) etext26801 Waring, George E. (George Edwin), 1833-1898 Village Improvements and Farm Villages etext26809 Mirabeau, Honoré-Gabriel de Riquetti, comte de, 1749-1791 Le Rideau levé etext26824 Feuillet, Octave, 1821-1890 Histoire de Sibylle etext26849 Gillespie, George, 1613-1648 The Works of Mr. George Gillespie (Vol. 1 of 2) etext26929 Picón, Jacinto Octavio, 1852-1923 Cuentos de mi tiempo etext27011 Various Notes and Queries, Number 214, December 3, 1853 etext27031 Lebert, Marie De l'imprimé à Internet etext27050 Caius, John, 1510-1573 De Canibus Britannicis etext27053 Buckner, Bradner The Day Time Stopped Moving etext27068 Blasco Ibáñez, Vicente, 1867-1928 The Dead Command etext27095 Baker, Willard F. The Boy Ranchers at Spur Creek etext27111 Fisher, Peter, 1782-1848 History of New Brunswick etext27120 Anonymous Litanaiit Liturgiillo attoraksat illagêktunut Labradoremẽtunut etext27211 Wilson, Hazel Hutchins, 1898-1992 Jerry's Charge Account etext27212 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 The Life of the Party etext27298 Anonymous Marvel Carbureter and Heat Control etext27311 Pina, Rui de, 1440-1521 Chronica de El-Rei D. Sancho II etext27338 Chadwick, Lester Baseball Joe Around the World etext27352 Shapes that Haunt the Dusk etext27357 Carlton, Henry Fisk The Landing of the Pilgrims etext27485 Smith, Francis Asbury, 1837-1915 The Critics Versus Shakspere etext27495 Mackintosh, Mabel The Girls of St. Olave's etext27502 Ball, Thomas Hanly Sketch of Handel and Beethoven etext27505 McCarter, Margaret Hill, 1860-1938 Winning the Wilderness etext27513 Yard, Robert Sterling, 1861-1945 The Book of the National Parks etext27516 Jefferies, Richard, 1848-1887 The Toilers of the Field etext27524 Jerrold, Walter, 1865-1929 Hampton Court etext27544 Macedo, José Agostinho de, 1761-1831 Epistola de Manoel Mendes Fogaça etext27620 Black, Helen C. Mrs. Hungerford etext27635 Dudeney, Henry Ernest, 1857-1930 The Canterbury Puzzles etext27647 Various The Economist etext27658 Blicher-Clausen, Jenny, 1865-1907 Het Verloren Tooverland etext27682 MacKaye, Harold Steele, 1866-1928 The Panchronicon etext27728 Clifford, Hugh Charles, Sir, 1866-1941 In Court and Kampong etext27763 Waterhouse, Benjamin, 1754-1846 A Journal of a Young Man of Massachusetts, 2nd ed. etext27771 Milne, A. A. (Alan Alexander), 1882-1956 Once on a Time etext27784 Wildman, Rounsevelle, 1864-1901 Tales of the Malayan Coast etext27847 Sillevis, Annie Een Meisje-Student over 'Een Meisje-Studentje' etext27916 Stein, Evaleen, 1863-1923 Gabriel and the Hour Book etext27924 Dickens, Charles, 1812-1870 Mugby Junction etext27943 The Home Medical Library, Volume I (of VI) etext27946 Euripides, 480? BC-406 BC Άλκηστις etext27966 Dehan, Richard, 1863-1932 The Dop Doctor etext27971 Mackay, Eric, 1851-1898 A Lover's Litanies etext27997 Hobbes, John Oliver, 1867-1906 Robert Orange etext28031 Shea, Robert, 1933-1994 Resurrection etext28032 Scollard, Clinton, 1860-1932 Sprays of Shamrock etext28039 History of Woman Suffrage, Volume II etext28074 Hall, S. C., Mrs., 1800-1881 The Buccaneer etext28085 Adossidès, A. In Griekenland etext28145 Liveing, Edward G. D. (Edward George Downing), 1895-1963 Attack etext28151 Shakespeare, William, 1564-1616 Tout est bien qui finit bien etext28172 Taylor, Thomas, 1738-1816 A Solemn Caution Against the Ten Horns of Calvinism etext28226 Raleigh, Walter Alexander, Sir, 1861-1922 The War in the Air; Vol. 1 etext28234 MacGregor, Mary Esther Miller, 1876-1961 'Lizbeth of the Dale etext28235 MacGregor, Mary Esther Miller, 1876-1961 In Orchard Glen etext28260 Hunt, Leigh, 1784-1859 Captain Sword and Captain Pen etext28273 Miller, Hugh, 1802-1856 The Cruise of the Betsey etext28274 Lubbock, John, Sir, 1834-1913 The Beauties of Nature etext28289 Eliot, George, 1819-1880 The Essays of "George Eliot" etext28321 Barrili, Anton Giulio, 1836-1908 L'undecimo comandamento etext28326 Pemberton, Max, Sir, 1863-1950 Aladdin of London etext28372 Porta, Giambattista della, 1535?-1615 La carbonaria etext28406 Rinehart, Mary Roberts, 1876-1958 Why I Believe in Scouting for Girls etext28431 Perkins, Lucy Fitch, 1865-1937 The Irish Twins etext28473 Geijerstam, Gustaf af, 1858-1909 Boken om lille-bror etext28496 etext28682 Leslie, Madeline, 1815-1893 Minnie's Pet Cat etext28693 London, Jack, 1876-1916 Tales of the Fish Patrol etext28700 Creswick, Paul, 1866-1947 Robin Hood etext28730 Carrier, Lyman, 1877-1963 Agriculture in Virginia, 1607-1699 etext28784 Borrow, George Henry, 1803-1881 Letters to his mother, Ann Borrow etext28797 Homer, 750? BC-650? BC The Odyssey etext28823 Meredith, George, 1828-1909 The Works Of George Meredith etext28836 Service, Robert W. (Robert William), 1874-1958 Ballads of a Bohemian etext28872 Marryat, Frederick, 1792-1848 Frank Mildmay etext28993 Butti, Enrico Annibale, 1868-1912 L'Immorale etext29043 Various Harper's Young People, July 20, 1880 etext29067 Hurlbut, Jesse Lyman, 1843-1930 Hurlbut's Bible Lessons etext29103 Borrow, George Henry, 1803-1881 Grimhild's Vengeance etext29133 Binder, Eando Shipwreck in the Sky etext29154 Various Harper's Young People, September 28, 1880 etext29179 Chavannes de la Giraudière, H. de Patrice, ou les pionniers de l'Amérique du nord etext29253 Wiggin, Kate Douglas Smith, 1856-1923 The Girl Scouts: A Training School for Womanhood etext29263 Lawrence, William, 1791-1867 The Autobiography of Sergeant William Lawrence etext29278 Bradley, Mary Hastings, -1976 The Innocent Adventuress etext29338 Dillon, Emile Joseph, 1855-1933 England and Germany etext29360 Fenwick, E. (Eliza), 1766-1840 The Bad Family & Other Stories etext29364 Escher, Franklin, 1881- Elements of Foreign Exchange etext29406 Curwood, James Oliver, 1878-1927 The Country Beyond etext29494 Abbott, John S. C. (John Stevens Cabot), 1805-1877 King Philip etext29558 Boy Scouts of America Boy Scouts Handbook etext29585 Hoffmann, E. T. A. (Ernst Theodor Amadeus), 1776-1822 Martti mestari ja hänen kisällinsä etext29632 Causey, James Competition etext29732 Cook, Eliza, 1818-1889 The Old Arm-Chair etext29738 Boy-Ed, Ida, 1852-1928 Stille Helden etext29813 Fanny, Aunt, 1822-1894 The Big Nightcap Letters etext29816 Houssay, Frédéric, 1860-1920 The Industries of Animals etext29824 Warner, Susan, 1819-1885 Diana etext29872 Porta, Giambattista della, 1535?-1615 La fantesca etext29894 Sue, Eugène, 1804-1857 Le morne au diable. English etext29910 Rubin, Mann The Second Voice etext29932 Poole, Ernest, 1880-1950 The Harbor etext29949 Washington, George, 1732-1799 Washington's Masonic Correspondence etext29959 Various Graham's Magazine Vol XXXIII No. 2 August 1848 etext29968 Osório, Ana de Castro, 1872-1935 Quatro Novelas etext29984 Ellis, A. B. (Alfred Burdon), 1852-1894 The History of the First West India Regiment etext29987 Lanier, Sterling E., 1927-2007 Join Our Gang? etext30005 Koenigsberger, Leo, 1837-1921 Zur Geschichte der Theorie der Elliptischen Transcendenten etext30024 The Fisher-Boy Urashima etext30044 MacLean, Katherine, 1925- The Carnivore etext30072 Price, Eleanor C. (Eleanor Catherine) Angelot etext30101 Brown, Paul Cameron Whispers etext30114 Forstner, Georg-Günther, Freiherr von, 1882-1940 The Journal of Submarine Commander von Forstner etext30360 Anonymous My Secret Life, Volumes I. to III. etext30362 Gerhardt, Paul, 1607-1676 Paul Gerhardt's Spiritual Songs etext30376 Hawthorne, Nathaniel, 1804-1864 The Snow-Image etext30395 Gérando, A. de (Auguste), 1819-1849 Essai historique sur l'origine des Hongrois etext30434 etext30454 Jones, Bascom Blind Spot etext30496 Springer, Norman, 1888-1974 Fire Mountain etext30521 Various Le Tour du Monde; Bou Hedma etext30537 etext30553 Louÿs, Pierre, 1870-1925 Les aventures du roi Pausole etext30555 Stretton, Hesba, 1832-1911 Little Meg's Children etext30591 Greville, Charles, 1794-1865 The Greville Memoirs etext30646 Bebel, August, 1840-1913 Woman under socialism etext30816 Garrett, Randall, 1927-1987 A World by the Tale etext30828 Budrys, Algis, 1931-2008 The Barbarians etext30831 Sand, George, 1804-1876 Le Piccinino etext30883 Andree, Richard, 1835-1912 Abessinien, das Alpenland unter den Tropen und seine Grenzländer etext30901 Fyfe, Horace Brown, 1918-1997 Fee of the Frontier etext30921 Mota, Inácio Francisco Silveira da Quadros de historia portugueza etext30948 Brown, Paul Cameron Coming to Grips with White Knuckles etext30953 Davis, Richard Harding, 1864-1916 The Boy Scout and Other Stories for Boys etext30959 Coventry Libraries Committee George Eliot Centenary, November 1919 etext31023 Meyer, Robert B. The First Airplane Diesel Engine: Packard Model DR-980 of 1928 etext31025 Russell, Robert J. A New Species of Pocket Gopher (Genus Pappogeomys) From Jalisco, Mexico etext31060 Wolbers, Julien, 1819-1889 De slavernij in Suriname, etext31089 Kelson, Keith R. The Subspecies of the Mexican Red-bellied Squirrel, Sciurus aureogaster etext31119 Various Punch, or the London Charivari, Vol. 158, June 9, 1920 etext31120 Conscience, Hendrik, 1812-1883 Hoe men schilder wordt etext31135 Thierry, James Francis The Adventures of the Eleven Cuff-Buttons etext31165 Anonymous The Church Handy Dictionary etext31190 Sampaio, Diogo de Carvalho e, 1750-1807 Tratado das Cores etext31195 Everitt, Graham English Caricaturists and Graphic Humourists of the Nineteenth Century. etext31250 Packard, Winthrop, 1862-1943 Old Plymouth Trails etext31266 Barrie, J. M. (James Matthew), 1860-1937 Quality Street etext31279 Miller, Kelly, 1863-1939 A Review of Hoffman's Race Traits and Tendencies of the American Negro etext31284 Salten, Felix, 1869-1945 Josefine Mutzenbacher etext31296 Latham, R. G. (Robert Gordon), 1812-1888 The Ethnology of the British Colonies and Dependencies etext31323 Moorland, Jesse E. The Demand and the Supply of Increased Efficiency in the Negro Ministry etext31398 Various Notes and Queries, Number 238, May 20, 1854 etext31564 Planck, Max Vorlesungen über Thermodynamik etext31604 Luther, Martin, 1483-1546 Works of Martin Luther etext31632 Lebert, Marie Project Gutenberg (1971-2009) etext31657 Dostoyevsky, Fyodor, 1821-1881 Um club da Má-Lingua etext31870 Marlowe, Amy Bell Frances of the Ranges etext31879 More, Hannah, 1745-1833 Coelebs In Search of a Wife etext31894 Paxson, Susan Two Latin Plays for High-School Students etext31897 Fisher, David E. You Don't Make Wine Like the Greeks Did etext31935 Langdon, Stephen, 1876-1937 Sumerian Liturgies and Psalms etext31941 Robertson, J. M. (John Mackinnon), 1856-1933 Rationalism etext32016 Gore, Charles, 1853-1932 St. Paul's Epistle to the Ephesians etext32031 Nickerson, Ansel D. A Raw Recruit's War Experiences etext32083 Lever, Charles James, 1806-1872 St. Patrick's Eve etext32085 Barr, Amelia Edith Huddleston, 1831-1919 Christine etext32114 McFee, William, 1881-1966 Command etext32133 Marlowe, Stephen, 1928-2008 The Graveyard of Space etext32154 Dick, Philip K., 1928-1982 The Variable Man etext32155 Henry VIII, King of England, 1491-1547 The Love Letters of Henry VIII to Anne Boleyn etext32227 Field, Chester, jr The Cynic's Rules of Conduct etext32231 Pennell, T. L. (Theodore Leighton), 1867-1912 Among the Wild Tribes of the Afghan Frontier etext32256 Leiber, Fritz, 1910-1992 The Big Time etext32257 Belloc, Hilaire, 1870-1953 Malplaquet etext32326 Lang, Andrew, 1844-1912 Tales of Troy and Greece etext32344 Aycock, Roger D., 1914-2004 Pet Farm etext32423 Various Encyclopaedia Britannica, 11th Edition, Volume 7, Slice 6 etext32430 Anonymous The Practical Joke etext32467 Anonymous The Medley etext32472 Lusk, Graham, 1866-1932 Food in War Time etext32480 Omelka, František, 1904-1960 La Alaska stafeto kaj Kaptitoj de la glacirokoj etext32488 Kipling, Rudyard, 1865-1936 Just So Stories etext32502 Zwilgmeyer, Dikken What Happened to Inger Johanne etext32516 Russell, W. Clark (William Clark), 1844-1911 A Marriage at Sea etext32525 Garis, Howard R. The Curlytops at Uncle Frank's Ranch etext32588 Symonds, John Addington, 1840-1893 A Problem in Modern Ethics etext32601 Westervelt, W. D. Legends of Ma-ui—a demi god of Polynesia, and of his mother Hina etext32665 Dee, Roger, 1914-2004 The Anglers of Arz etext32679 etext32680 Robinson, Frank M., 1926- The Worlds of Joe Shannon etext32681 Willson, Harry The Use of a Box of Colours etext23 Douglass, Frederick, 1818-1895 Narrative of the Life of Frederick Douglass etext68 Burroughs, Edgar Rice, 1875-1950 Warlord of Mars etext82 Scott, Walter, Sir, 1771-1832 Ivanhoe etext137 Burnett, Frances Hodgson, 1849-1924 Sara Crewe: or, What happened at Miss Minchin's boarding school etext147 Paine, Thomas, 1737-1809 Common Sense etext152 Sprague, Ruth M. Wild Justice etext255 Scavezze, Dan QREAD, Etext Reader for Windows etext287 Barr, Amelia Edith Huddleston, 1831-1919 Remember the Alamo etext378 etext383 Goldsmith, Oliver, 1730-1774 She Stoops to Conquer etext387 Stevenson, Robert Louis, 1850-1894 Vailima Letters etext409 Wheatley, Phillis, 1753-1784 Poems on various subjects, religious and moral etext436 Baum, L. Frank (Lyman Frank), 1856-1919 The Master Key, an Electrical Fairy Tale Founded Upon the Mysteries of Electricity etext452 Borrow, George Henry, 1803-1881 Lavengro; the Scholar, the Gypsy, the Priest etext480 Hutsko, Joe, 1963- Undo, a Novel By Joe Hutsko etext497 Coke, Henry J. (Henry John), 1827-1916 Tracks of a Rolling Stone etext533 Stratton-Porter, Gene, 1863-1924 The Song of the Cardinal etext544 Montgomery, L. M. (Lucy Maud), 1874-1942 Anne's House of Dreams etext641 Lang, Andrew, 1844-1912 The Violet Fairy Book etext659 Alger, Horatio, 1832-1899 Paul the Peddler, or the Fortunes of a Young Street Merchant etext677 Kingsley, Charles, 1819-1875 Heroes, or Greek Fairy Tales for My Children etext693 Mitchell, S. Weir (Silas Weir), 1829-1914 The Autobiography of a Quack and the Case of George Dedlow etext742 Brisbane, Arthur, 1864-1936 Editorials from the Hearst Newspapers etext744 etext761 Beerbohm, Max, Sir, 1872-1956 A. V. Laider etext811 Marlowe, Christopher, 1564-1593 The Tragical History of Doctor Faustus etext824 Dickens, Charles, 1812-1870 Speeches: Literary and Social etext864 Stevenson, Robert Louis, 1850-1894 Master of Ballantrae etext918 Dickens, Charles, 1812-1870 Sketches of Young Gentlemen etext920 Spinoza, Benedictus de, 1632-1677 Ethics — Part 2 etext960 Baum, L. Frank (Lyman Frank), 1856-1919 The Tin Woodman of Oz etext1024 etext1027 Grey, Zane, 1872-1939 The Lone Star Ranger, a romance of the border etext1055 Conrad, Joseph, 1857-1924 'Twixt Land and Sea etext1079 Sterne, Laurence, 1713-1768 The Life and Opinions of Tristram Shandy, Gentleman etext1111 Shakespeare, William, 1564-1616 King Richard II etext1129 Shakespeare, William, 1564-1616 Macbeth etext1130 Shakespeare, William, 1564-1616 Antony and Cleopatra etext1185 Draper, John William, 1811-1882 History of the Conflict Between Religion and Science etext1235 Gautier, Théophile, 1811-1872 Captain Fracasse etext1257 Dumas père, Alexandre, 1802-1870 The Three Musketeers etext1297 Davis, James J. (James John), 1873-1947 The Iron Puddler etext1315 Huxley, Thomas Henry, 1825-1895 Autobiography and Selected Essays etext1326 Ransome, Arthur, 1884-1967 The Crisis in Russia etext1331 Oliver, Charles A. (Charles Alexander), 1858-1932 ABC's of Science etext1333 etext1334 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Paul Kelver, a Novel etext1459 Eliot, T. S. (Thomas Stearns), 1888-1965 Prufrock and Other Observations etext1460 Scott, Walter, Sir, 1771-1832 The Black Dwarf etext1470 Keene, H. G. (Henry George), 1825-1915 Fall of the Moghul Empire of Hindustan etext1472 Mansfield, Katherine, 1888-1923 In a German Pension etext1516 Shakespeare, William, 1564-1616 King Henry IV, Part 1 etext1547 Shakespeare (spurious and doubtful works), 1564-1616 Sir Thomas More etext1597 Andersen, H. C. (Hans Christian), 1805-1875 Andersen's Fairy Tales etext1602 Ferber, Edna, 1885-1968 Dawn O'Hara, the Girl Who Laughed etext1638 Doyle, Arthur Conan, Sir, 1859-1930 The New Revelation etext1652 Verne, Jules, 1828-1905 The Survivors of the Chancellor, diary of J.R. Kazallon, passenger etext1703 Hornung, E. W. (Ernest William), 1866-1921 Dead Men Tell No Tales etext1704 Balzac, Honoré de, 1799-1850 Pierrette etext1750 Plato, 427? BC-347? BC Laws etext1777 Shakespeare, William, 1564-1616 Romeo and Juliet etext1868 Wiggin, Kate Douglas Smith, 1856-1923 Penelope's Postscripts etext1885 Whyte, Alexander, 1836-1921 Bunyan Characters (1st Series) etext1895 Collins, Wilkie, 1824-1889 Armadale etext1898 Balzac, Honoré de, 1799-1850 Albert Savarus etext1909 Seward, A. C. (Albert Charles), 1863-1941 Darwin and Modern Science etext1949 Gildas, 516-570 Liber querulus de excidio Britanniae. English etext1957 Balzac, Honoré de, 1799-1850 Beatrix etext1979 Perdue, Mitzi The Perdue Chicken Cookbook etext2039 Longfellow, Henry Wadsworth, 1807-1882 Evangeline etext2169 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 Miscellaneous Writings and Speeches — Volume 3 etext2203 Human Genome Project Chromosome Number 03 etext2235 Shakespeare, William, 1564-1616 The Tempest etext2240 Shakespeare, William, 1564-1616 Much Ado about Nothing etext2276 Hogg, James, 1770-1835 The Private Memoirs and Confessions of a Justified Sinner etext2277 Harte, Bret, 1836-1902 Condensed Novels etext2286 Harte, Bret, 1836-1902 Devil's Ford etext2313 Wieland, Christoph Martin, 1733-1813 Geschichte des Agathon etext2326 Tarkington, Booth, 1869-1946 His Own People etext2360 Childers, Erskine, 1870-1922 The Riddle of the Sands etext2456 Herodotus, 480? BC-420? BC The history of Herodotus — Volume 2 etext2579 Taine, Hippolyte, 1828-1893 The French Revolution - Volume 2 etext2651 Sheridan, Philip Henry, 1831-1888 Personal Memoirs of P. H. Sheridan, General, United States Army — Volume 1 etext2699 Holmes, Oliver Wendell, 1809-1894 Pages from an Old Volume of Life; a collection of essays, 1857-1881 etext2708 Mérimée, Prosper, 1803-1870 Colomba etext2729 Haggard, Henry Rider, 1856-1925 The Tale of Three Lions etext2751 Dumas père, Alexandre, 1802-1870 Man in the Iron Mask (an Essay) etext2784 Harte, Bret, 1836-1902 Colonel Starbottle's Client etext2818 Saunders, Marshall, 1861-1947 Beautiful Joe etext2821 Kipling, Rudyard, 1865-1936 The Story of the Gadsbys etext2826 La Motte-Fouqué, Friedrich Heinrich Karl Freiherr de, 1777-1843 The Two Captains etext2848 Josephus, Flavius, 38?-100? Antiquities of the Jews etext2891 Forster, E. M. (Edward Morgan), 1879-1970 Howards End etext2901 Galsworthy, John, 1867-1933 Studies and Essays: Censorship and Art etext2903 Galsworthy, John, 1867-1933 Inn of Tranquillity etext2913 Galsworthy, John, 1867-1933 The Pigeon etext2935 Huxley, Thomas Henry, 1825-1895 On the Study of Zoology etext2987 Paine, Albert Bigelow, 1861-1937 Mark Twain, a Biography — Volume III, Part 2: 1907-1910 etext3047 Hardy, Thomas, 1840-1928 Life's Little Ironies etext3060 Mommsen, Theodor, 1817-1903 Römische Geschichte — Band 1 etext3119 Warner, Charles Dudley, 1829-1900 What Is Your Culture to Me? etext3149 Wiggin, Kate Douglas Smith, 1856-1923 Marm Lisa etext3214 Honig, Winfried Mr. Honey's Insurance Dictionary etext3254 Galsworthy, John, 1867-1933 Complete Project Gutenberg John Galsworthy Works etext3298 Honig, Winfried Mr. Honey's Banking Dictionary etext3483 Howells, William Dean, 1837-1920 Widger's Quotations from the Project Gutenberg Editions of the Works of William Dean Howells etext3536 Nesbit, E. (Edith), 1858-1924 The Enchanted Castle etext3555 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 05 etext3568 Wairy, Louis Constant, 1778-1845 Mémoires de Constant etext3578 Wairy, Louis Constant, 1778-1845 Recollections of the Private Life of Napoleon — Volume 11 etext3624 Ward, Adolphus William, Sir, 1837-1924 Chaucer etext3657 Baker, Samuel White, Sir, 1821-1893 Wild Beasts and Their Ways, Reminiscences of Europe, Asia, Africa and America — Volume 1 etext3677 Rudd, Steele, 1868-1935 On Our Selection etext3701 Dufferin, Lord, 1826-1902 Letters from High Latitudes etext3878 etext3881 etext3891 Campan, Jeanne Louise Henriette (Genet), 1752-1822 Memoirs of the Court of Marie Antoinette, Queen of France, Complete etext4041 Follen, Eliza Lee Cabot, 1787-1860 Conscience etext4042 Mozart, Wolfgang Amadeus, 1756-1791 Mozart: the man and the artist, as revealed in his own words etext4054 Clacy, Ellen A Lady's Visit to the Gold Diggings of Australia in 1852-53 etext4095 Pater, Walter, 1839-1894 Plato and Platonism etext4098 Hill, Frederick Trevor, 1866-1930 On the Trail of Grant and Lee etext4116 Young, Filson, 1876-1938 Christopher Columbus and the New World of His Discovery — Complete etext4152 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 32: December 1664 etext4176 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 53: May 1667 etext4211 Norris, Kathleen Thompson, 1880-1966 The Treasure etext4336 Malthus, T. R. (Thomas Robert), 1766-1834 Nature and Progress of Rent etext4341 Kropotkin, Petr Alekseevich, kniaz, 1842-1921 Mutual Aid; a factor of evolution etext4375 Nadin, Mihai, 1938- Jenseits der Schriftkultur — Band 5 etext4421 Meredith, George, 1828-1909 Rhoda Fleming — Volume 1 etext4424 Meredith, George, 1828-1909 Rhoda Fleming — Volume 4 etext4537 Gaskell, Elizabeth Cleghorn, 1810-1865 Sylvia's Lovers — Complete etext4621 Arthur, T. S. (Timothy Shay), 1809-1885 The Two Wives etext4634 Lee, Jennette, 1860-1951 Uncle William: the man who was shif'less etext4653 Corelli, Marie, 1855-1924 God's Good Man etext4731 Turner, Ethel Sybil, 1872-1958 Seven Little Australians etext4767 Green, Anna Katharine, 1846-1935 The Mayor's Wife etext4809 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 09: 1564-65 etext4810 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 10: 1566, part I etext4824 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 22: 1574-76 etext4828 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 26: 1577, part III etext4875 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1602-03 etext4883 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1609 etext4946 Hume, Fergus, 1859-1932 Madame Midas etext4954 Abbott, Lyman, 1835-1922 Laicus; Or, the Experiences of a Layman in a Country Parish. etext5001 Einstein, Albert, 1879-1955 Relativity : the Special and General Theory etext5003 Stratemeyer, Edward, 1862-1930 The Rover Boys in New York etext5031 McKinley, William, 1843-1901 State of the Union Address etext5033 Taft, William H., 1857-1930 State of the Union Address etext5090 Orczy, Emmuska Orczy, Baroness, 1865-1947 I Will Repay etext5167 Yeats, W. B. (William Butler), 1865-1939 The Countess Cathleen etext5169 Richardson, John, 1796-1852 Hardscrabble; or, the fall of Chicago. a tale of Indian warfare etext5208 Crabbe, George, 1754-1832 The Parish Register etext5219 Petronius Arbiter, 20-66 The Satyricon — Volume 02: Dinner of Trimalchio etext5225 Petronius Arbiter, 20-66 The Satyricon — Complete etext5261 Reeve, Arthur B. (Arthur Benjamin), 1880-1936 Constance Dunlap etext5267 Dreiser, Theodore, 1871-1945 Sister Carrie etext5270 Reeve, Arthur B. (Arthur Benjamin), 1880-1936 The Film Mystery etext5278 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 04 etext5298 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 24 etext5341 Montgomery, L. M. (Lucy Maud), 1874-1942 Kilmeny of the Orchard etext5557 Ebers, Georg, 1837-1898 Margery — Volume 06 etext5575 Ebers, Georg, 1837-1898 A Word, Only a Word — Volume 04 etext5591 Ebers, Georg, 1837-1898 The Nuts etext5625 Johnson, E. Pauline, 1861-1913 Flint and Feather etext5629 Penrose, Margaret Dorothy Dale : a girl of today etext5639 Morris, Charles E. The Progressive Democracy of James M. Cox etext5664 Anonymous The Arabian Nights Entertainments — Volume 01 etext5675 Milne, A. A. (Alan Alexander), 1882-1956 The Holiday Round etext5762 Ivens, W. G. (Walter George), 1871- Grammar and Vocabulary of the Lau Language, Solomon Islands etext5826 Burney, Fanny, 1752-1840 The Diary and Letters of Madame D'Arblay — Volume 1 etext5937 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 34 etext5961 Sinclair, Upton, 1878-1968 Samuel the Seeker etext5989 Garis, Howard Roger, 1873-1962 The Curlytops on Star Island etext5994 Carroll, Robert S. Our Nervous Friends — Illustrating the Mastery of Nervousness etext6038 Evans, William, 1870-1950 The Great Doctrines of the Bible etext6044 McCutcheon, George Barr, 1866-1928 Quill's Window etext6062 Hay, John, 1835-1905 Pike County Ballads and Other Poems etext6114 Webster, Frank V. The Young Firemen of Lakeville; or, Herbert Dare's Pluck etext6156 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Athens: Its Rise and Fall, Complete etext6158 etext6235 Parker, Gilbert, 1862-1932 The Battle of the Strong — Volume 6 etext6241 Parker, Gilbert, 1862-1932 The Lane That Had No Turning, Complete etext6247 Parker, Gilbert, 1862-1932 The Right of Way — Volume 05 etext6251 Parker, Gilbert, 1862-1932 Michel and Angele — Volume 2 etext6342 Kant, Immanuel, 1724-1804 Kritik der reinen Vernunft etext6350 Crawford, F. Marion (Francis Marion), 1854-1909 Via Crucis etext6353 McCutcheon, George Barr, 1866-1928 The Prince of Graustark etext6459 Burnham, Margaret The Girl Aviators on Golden Wings etext6600 Johnson, E. Pauline, 1861-1913 The Moccasin Maker etext6601 McDougall, Margaret Moran Dixon, 1826-1898 Verses and Rhymes By the Way etext6608 Skinner, Charles M. (Charles Montgomery), 1852-1907 Myths and Legends of Our Own Land — Volume 03 : on and near the Delaware etext6614 Skinner, Charles M. (Charles Montgomery), 1852-1907 Myths and Legends of Our Own Land — Volume 09 : as to buried treasure etext6633 McGee, Thomas D'Arcy, 1825-1868 A Popular History of Ireland : from the Earliest Period to the Emancipation of the Catholics - Volume 2 etext6698 Hegel, Georg Wilhelm Friedrich, 1770-1831 Phänomenologie des Geistes etext6857 Davis, Andrew McFarland Indian Games : an historical research etext6883 Anonymous Life of Venerable Sister Margaret Bourgeois etext6893 Chambers, Robert W. (Robert William), 1865-1933 In the Quarter etext6906 Ellis, Edward Sylvester, 1840-1916 The Lost Trail etext6911 Jordan, William George, 1864-1928 The Majesty of Calmness; individual problems and posibilities etext6946 Ward, Artemus, 1834-1867 The Complete Works of Artemus Ward (HTML edition) etext7010 etext7031 Hull, E. M. (Edith Maude), -1947 The Sheik etext7065 Lawson, Henry, 1867-1922 Children of the Bush etext7181 Landor, Edward Wilson, 1811-1878 The Bushman — Life in a New Country etext7199 Twain, Mark, 1835-1910 The Adventures of Tom Sawyer, Part 7. etext7242 Twain, Mark, 1835-1910 A Connecticut Yankee in King Arthur's Court, Part 1. etext7303 Bellamy, Edward, 1850-1898 Equality etext7355 Wharton, William H. (William Harris), 1802-1839 Texas : a Brief Account of the Origin, Progress and Present State of the Colonial Settlements of Texas; Together with an Exposition of the Causes which have induced the Existing War with Mexico etext7366 Bjørnson, Bjørnstjerne, 1832-1910 Three Comedies etext7382 Gwynn, Stephen Lucius, 1864-1950 The Life of the Rt. Hon. Sir Charles W. Dilke, Volume 1 etext7386 Petrie, W. M. Flinders (William Matthew Flinders), Sir, 1853-1942 Egyptian Tales, Translated from the Papyri etext7403 Catherine, of Siena, Saint, 1347-1380 Letters of Catherine Benincasa etext7410 Howells, William Dean, 1837-1920 The Minister's Charge etext7527 etext7528 Lord, Frances Ellen, 1835- The Roman Pronunciation of Latin etext7588 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 03 etext7594 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 09 etext7602 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 16 etext7603 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 17 etext7709 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 My Novel — Volume 08 etext7711 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 My Novel — Volume 10 etext7728 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Paul Clifford — Volume 01 etext7732 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Paul Clifford — Volume 05 etext7744 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Parisians — Volume 08 etext7789 Moore, George (George Augustus), 1852-1933 Memoirs of My Dead Life etext7846 Kipling, Rudyard, 1865-1936 Departmental Ditties and Barrack Room Ballads etext7859 Raimund, Ferdinand, 1790-1836 Der Diamant des Geisterkönigs etext7888 Spyri, Johanna, 1827-1901 Wie Wiselis Weg gefunden wird etext7901 etext7911 Smith, John Jay, 1798-1881 American Historical and Literary Antiquities, Part 11. etext7925 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture etext7975 Ornsby, Robert, 1820-1889 Memoirs of James Robert Hope-Scott, Volume 2 etext7997 Archer, William, 1856-1924 America To-day, Observations and Reflections etext8007 Anonymous The Bible, King James version, Book 7: Judges etext8016 Anonymous The Bible, King James version, Book 16: Nehemiah etext8025 Anonymous The Bible, King James version, Book 25: Lamentations etext8057 Anonymous The Bible, King James version, Book 57: Philemon etext8067 Carter, Herbert The Boy Scouts on Sturgeon Island etext8079 Balzac, Honoré de, 1799-1850 Pamela Giraud etext8123 Thackeray, William Makepeace, 1811-1863 The Virginians etext8165 Farnol, Jeffery, 1878-1952 The Geste of Duke Jocelyn etext8189 Rowlands, Samuel, 1573?-1630? The Bride etext8294 Anonymous The World English Bible (WEB): etext8301 The Bible, Douay-Rheims, Book 01: Genesis etext8307 The Bible, Douay-Rheims, Book 07: Judges etext8325 The Bible, Douay-Rheims, Book 25: Wisdom etext8326 The Bible, Douay-Rheims, Book 26: Ecclesiasticus etext8355 The Bible, Douay-Rheims, Book 55: Galatians etext8382 Traill, Catharine Parr Strickland, 1802-1899 Canadian Crusoes etext8430 Locke, William John, 1863-1930 The Mountebank etext8436 Clarke, C. B., 1832-1906 Speculations from Political Economy etext8447 Weston, Jessie Laidlay, 1850-1928 The Romance of Morien etext8503 Lowell, James Russell, 1819-1891 Among My Books etext8539 Steinberg, Jehudah In Those Days etext8590 Barrie, J. M. (James Matthew), 1860-1937 Auld Licht Idyls etext8594 Home, Gordon, 1878-1969 Normandy, Illustrated, Part 2 etext8627 Doyle, Arthur Conan, Sir, 1859-1930 The Adventure of the Cardboard Box etext8678 Leonowens, Anna Harriette, 1834-1914 The English Governess at the Siamese Court etext8681 Barr, Robert, 1850-1912 The Face and the Mask etext8686 Allison, Young Ewing, 1853-1932 The Delicious Vice etext8704 The Doré Gallery of Bible Illustrations, Volume 4 etext8820 A Treasury of War Poetry etext8822 Aulard, François-Alphonse, 1849-1928 Les grands orateurs de la Révolution etext8833 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Romans etext8839 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Colossians etext8851 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, 2 John etext8856 McCabe, James Dabney, 1842-1883 The Secrets of the Great City etext8868 Natsume, Soseki, 1867-1916 Botchan (Master Darling) etext8876 Blanc, Dr. Henri, 1831-1911 Ma captivité en Abyssinie etext8883 A Bushman A Love Story etext8902 MacDonald, George, 1824-1905 The Flight of the Shadow etext8955 MacDonald, George, 1824-1905 Far Above Rubies etext8962 Henry, O., 1862-1910 The Four Million etext8988 Verne, Jules, 1828-1905 The Master of the World etext8992 Verne, Jules, 1828-1905 The Blockade Runners etext8994 Coolidge, Susan, 1835-1905 What Katy Did etext9051 Artzybashev, Mikhail Petrovich, 1878-1927 Sanine etext9056 Sheckley, Robert, 1928-2005 Bad Medicine etext9086 Heyse, Paul, 1830-1914 Die Witwe von Pisa etext9105 La Rochefoucauld, François duc de, 1613-1680 Reflections; or Sentences and Moral Maxims etext9153 Le Page du Pratz, -1775 History of Louisisana etext9258 Hawthorne, Nathaniel, 1804-1864 The Miraculous Pitcher etext9325 Lessing, Gotthold Ephraim, 1729-1781 Der Freigeist etext9351 Conrad, Joseph, 1857-1924 The Secret Sharer etext9352 Conrad, Joseph, 1857-1924 The End of the Tether etext9353 Conrad, Joseph, 1857-1924 The Mirror of the Sea etext9403 Thomas, Calvin, 1854-1919 The Life and Works of Friedrich Schiller etext9444 Holley, Marietta, 1836-1926 Samantha among the Brethren — Volume 2 etext9482 Spyri, Johanna, 1827-1901 What Sami Sings with the Birds etext9508 Various Stories Worth Rereading etext9537 Thackeray, William Makepeace, 1811-1863 The History of Pendennis etext9639 Dumas père, Alexandre, 1802-1870 La dame de Monsoreau — Tome 3. etext9688 Defoe, Daniel, 1661?-1731 Tour through the Eastern Counties of England etext9747 Vance, Louis Joseph, 1879-1933 The Fortune Hunter etext9771 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Alice, or the Mysteries — Book 09 etext9795 Le Queux, William, 1864-1927 The Four Faces etext9803 Laughton, John Knox, 1830-1915 Memoirs of the Life and Correspondence of Henry Reeve, C.B., D.C.L. etext9850 Drinkwater, John, 1882-1937 The Lyric etext9868 Lingley, Charles Ramsdell The United States Since the Civil War etext9904 Thackeray, William Makepeace, 1811-1863 The History of Pendennis, Volume 2 etext9910 Dent, John Charles, 1841-1888 Canadian Notabilities, Volume 1 etext9931 Rinehart, Mary Roberts, 1876-1958 K etext9983 Le Fanu, Joseph Sheridan, 1814-1873 Wylder's Hand etext9995 George, Marian Minnie, 1865- Little Journey to Puerto Rico etext10005 Tucker, George, 1775-1861 A Voyage to the Moon etext10024 Cross, F. J. Beneath the Banner etext10055 Lessing, Gotthold Ephraim, 1729-1781 Hamburgische Dramaturgie etext10056 etext10073 etext10116 Kingsley, Charles, 1819-1875 All Saints' Day and Other Sermons etext10146 Moore, Frank, 1843?- Reminiscences of Pioneer Days in St. Paul etext10151 The Great Events by Famous Historians, Volume 05 etext10176 White, Edna (Trumpet) The Debutante etext10179 American Concert Orchestra Extracts from the Ballet-Suite Scherazada, Pt. 1 etext10181 Debussy, Claude, 1862-1918 Clair de Lune etext10184 Quartet in G, 1st Movement, Pt. 1 etext10266 Berman, Louis, M.D. The Glands Regulating Personality etext10274 Barrow, Isaac, 1630-1677 Sermons on Evil-Speaking etext10309 Sullivan, Arthur, Sir, 1842-1900 The Lost Chord etext10311 Edison, Thomas A., 1847-1931 Around the World on the Phonograph etext10329 Smith, Laura Rountree Snubby Nose and Tippy Toes etext10361 Troward, T. (Thomas), 1847-1916 The Creative Process in the Individual etext10369 Yeardley, John, 1786-1858 Memoir and Diary of John Yeardley, Minister of the Gospel etext10420 Lewes, George Henry, 1817-1878 The Principles of Success in Literature etext10471 The World's Greatest Books — Volume 01 — Fiction etext10512 Wilde, Oscar, 1854-1900 Picture of Dorian Gray. Dutch etext10519 Jackson, Helen Hunt, 1830-1885 Mercy Philbrick's Choice etext10577 International Short Stories: French etext10592 Grayson, David, 1870-1946 Adventures in Friendship etext10637 Gasparin, Agénor, comte de, 1810-1871 The Uprising of a Great People etext10689 Imbert de Saint-Amand, Arthur Léon, baron, 1834-1900 La Cour de Louis XIV etext10691 Kossuth, Lajos, 1802-1894 Select Speeches of Kossuth etext10704 Mommsen, Theodor, 1817-1903 The History of Rome, Book IV etext10815 Richardson, James D. (James Daniel), 1843-1914 A Compilation of the Messages and Papers of the Presidents etext10839 Johnson, James Sugar and Spice etext10844 etext10866 Emmerich, Anna Catherine, 1774-1824 The Dolorous Passion of Our Lord Jesus Christ etext10927 Lassila, Maiju, 1868-1918 Tulitikkuja lainaamassa etext10931 Bolles, John R. The Lullaby, with Original Engravings etext11010 etext11052 Wharton, Edith, 1862-1937 The Custom of the Country etext11102 Johnson, Edward A. (Edward Austin), 1860-1944 History of Negro Soldiers in the Spanish-American War, and Other Items of Interest etext11163 Macaulay, Rose, Dame, 1881-1958 Potterism etext11178 Maeterlinck, Maurice, 1862-1949 La sagesse et la destinée etext11179 Various Seeing Europe with Famous Authors, Volume 6 etext11193 Betham, Matilda, 1776-1852 Elegies and Other Small Poems etext11207 Conscience, Hendrik, 1812-1883 Redevoeringen etext11251 Famous Reviews etext11263 Verne, Jules, 1828-1905 The Adventures of a Special Correspondent etext11284 Various Punch, or the London Charivari, Volume 156, March 26, 1919 etext11286 Kielder, G. Meesterstukken van Rembrandt Harmensz. Van Rijn etext11316 Various The Atlantic Monthly, Volume 08, No. 47, September, 1861 etext11339 Aesop, 620 BC-563 BC Aesop's Fables; a new translation etext11341 Various The Mirror of Literature, Amusement, and Instruction etext11372 Oppenheim, James, 1882-1932 The Nine-Tenths etext11396 Bang, Herman, 1857-1912 Faedra etext11399 Biddulph, J. (John), 1840-1921 The Pirates of Malabar, and an Englishwoman in India Two Hundred Years Ago etext11444 Various Punch, or the London Charivari, Volume 153, December 12, 1917 etext11481 Jacobs, W. W. (William Wymark), 1863-1943 Dirty Work etext11494 Anonymous Les joies du pardon etext11583 Cooper, Michael D., [pseud.] The Runaway Asteroid etext11596 Maupassant, Guy de, 1850-1893 La Maison Tellier etext11691 Wren, Percival Christopher, 1885-1941 Driftwood Spars etext11767 Girardin, Jules, 1832-1888 Contes à Jeannot etext11779 Human Genome Project Chromosome Number 05 etext11829 Library of Congress. Copyright Office U.S. Copyright Renewals, 1964 January - June etext11849 Library of Congress. Copyright Office U.S. Copyright Renewals, 1974 January - June etext11914 Linnankoski, Johannes, 1869-1913 Pakolaiset etext11941 Roosevelt, Theodore, 1858-1919 The Winning of the West, Volume 1 etext11948 Hakluyt, Richard, 1552-1616 The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 10 etext11954 Guizot, M. (François), 1787-1874 A Popular History of France from the Earliest Times, Volume 4 etext11960 Rhodes, Eugene Manlove, 1869-1934 The Desire of the Moth; and the Come On etext11978 Ellis, Edward Sylvester, 1840-1916 Brave Tom etext12098 etext12114 Various Punch, or the London Charivari, Volume 156, May 14, 1919 etext12129 Jacobs, W. W. (William Wymark), 1863-1943 A Mixed Proposal etext12175 Orczy, Emmuska Orczy, Baroness, 1865-1947 The Nest of the Sparrowhawk etext12181 Ward, Humphry, Mrs., 1851-1920 The Story of Bessie Costrell etext12211 Jacobs, W. W. (William Wymark), 1863-1943 A Spirit of Avarice etext12221 etext12239 Fletcher, J. S. (Joseph Smith), 1863-1935 Dead Men's Money etext12254 Litchfield, Frederick, 1850-1930 Illustrated History of Furniture etext12278 Moore, George (George Augustus), 1852-1933 Confessions of a Young Man etext12287 etext12299 Record, Samuel J. The Mechanical Properties of Wood etext12317 Johnston, Annie F. (Annie Fellows), 1863-1931 Two Little Knights of Kentucky etext12341 Huysmans, J.-K. (Joris-Karl), 1848-1907 Against the Grain etext12389 Carman, Bliss, 1861-1929 Sappho: One Hundred Lyrics etext12395 Various Punch, or the London Charivari, Volume 99, October 18, 1890 etext12396 Ainsworth, William Harrison, 1805-1882 The Star-Chamber, Volume 1 etext12505 Various Notes and Queries, Number 23, April 6, 1850 etext12507 Clarkson, Thomas, 1760-1846 The History of the Rise, Progress and Accomplishment of the Abolition of the African Slave Trade by the British Parliament (1808) etext12532 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Shades of the Wilderness etext12548 Fontenoy, Mme. la Marquise de The Secret Memoirs of the Courts of Europe: William II, Germany; Francis Joseph, Austria-Hungary, Volume I. (of 2) etext12604 Tolstoy, Leo, graf, 1828-1910 Ylösnousemus II etext12634 Various The Mirror of Literature, Amusement, and Instruction etext12638 Stephenson, Andrew Public Lands and Agrarian Laws of the Roman Republic etext12664 Lampman, Archibald, 1861-1899 Lyrics of Earth etext12677 Ferber, Edna, 1885-1968 Personality Plus etext12700 Holmes, Oliver Wendell, 1809-1894 Ralph Waldo Emerson etext12723 Shakespeare, William, 1564-1616 Sonnet #106 etext12758 Library of the World's Best Mystery and Detective Stories etext12765 Rae, Mrs. Milne Geordie's Tryst etext12786 Gurdon, P. R. T. (Philip Richard Thornhagh), 1863-1942 The Khasis etext12789 Miller, Alice Duer, 1874-1942 Ladies Must Live etext12796 Kivi, Aleksis, 1834-1872 Lea; Margareta etext12856 Myer, Edmund The Renaissance of the Vocal Art etext12893 Bonaparte, Napoléon, 1769-1821 Oeuvres de Napoléon Bonaparte, Tome III. etext12930 Fountainhall, John Lauder, Lord, 1646-1722 Publications of the Scottish History Society, Volume 36 etext12931 Daviess, Maria Thompson, 1872-1924 The Daredevil etext12944 Various Punch, or the London Charivari, Volume 99, December 27, 1890 etext12984 Thompson, Slason, 1849-1935 Eugene Field, a Study in Heredity and Contradictions — Volume 1 etext13024 Dandurand, Josephine Marchand, 1862-1925 Contes de Noël par Josette etext13090 Various The Mirror of Literature, Amusement, and Instruction etext13120 The Philippine Islands, 1493-1898 — Volume 06 of 55 etext13176 Hume, John F. (John Ferguson), 1830- The Abolitionists etext13184 Stevenson, O. J. Narrative and Lyric Poems (first series) for use in the Lower School etext13222 Nordhoff, Charles, 1830-1901 Northern California, Oregon, and the Sandwich Islands etext13227 Everett-Green, Evelyn, 1856-1932 The Lord of Dynevor etext13229 Smith, F. G. (Frederick George), 1880-1947 The Revelation Explained etext13236 Montano, Joseph, 1844- Een reis naar de Philippijnen etext13275 Tarkington, Booth, 1869-1946 The Gibson Upright etext13375 Crake, A. D. (Augustine David), 1836-1890 The Rival Heirs; being the Third and Last Chronicle of Aescendune etext13380 Sand, George, 1804-1876 Gabriel etext13463 Various Notes and Queries, Number 48, September 28, 1850 etext13482 Bobbitt, John Franklin What the Schools Teach and Might Teach etext13483 Irving, Henry Brodribb, 1870-1919 The Drama etext13497 Dell, Ethel M. (Ethel May), 1881-1939 Greatheart etext13505 Chekhov, Anton Pavlovich, 1860-1904 The Duel and Other Stories etext13557 Daoust, Charles R. Cent-vingt jours de service actif etext13558 Various Notes and Queries, Number 14, February 2, 1850 etext13606 etext13610 Ellis, Havelock, 1859-1939 Studies in the Psychology of Sex, Volume 1 etext13698 Miramon-Fargues, Vicomte de Bij de ruïnen van Angkor etext13703 Colette, 1873-1954 La maison de Claudine etext13706 Myers, William Starr, 1877-1956 Socialism and American ideals etext13707 Hawthorne, Nathaniel, 1804-1864 Twice Told Tales etext13709 Lewis, Alfred Henry, 1857-1914 Wolfville Nights etext13725 Havell, H. L. (Herbert Lord), -1913 Stories from the Odyssey etext13734 Doyle, Arthur Conan, Sir, 1859-1930 Jim Harrison, boxeur etext13757 Crawford, F. Marion (Francis Marion), 1854-1909 Saracinesca etext13858 Thomson, H. Byerley The Laws Of War, Affecting Commerce And Shipping etext13867 Wright, Marie Robinson, 1866-1914 Kijkjes in een mooi werk over Chili etext13907 Various The American Missionary — Volume 42, No. 07, July, 1888 etext14023 Hartley, Cecil B. Life of Daniel Boone, the Great Western Hunter and Pioneer etext14056 Mauclair, Camille, 1872-1945 The French Impressionists (1860-1900) etext14069 Schmid, Christoph von, 1768-1854 Contes pour les petits garçons etext14074 Various Punch, or the London Charivari, Volume 101, November 14, 1891 etext14093 Various Punch, or the London Charivari, Volume 152, January 24, 1917 etext14142 Rohlfs, Gerhard, 1831-1896 Land und Volk in Afrika, Berichte aus den Jahren 1865-1870 etext14159 Bordeaux, Henry, 1870-1963 Les Roquevillard etext14205 Francisco, Gabriel Beato Ang Katipunan etext14221 Fulda, Ludwig, 1862-1939 Aladdin und die Wunderlampe etext14266 The Philippine Islands, 1493-1898 — Volume 10 of 55 etext14388 Leino, Eino, 1878-1926 Naisen orja etext14410 Lewis, Charlton Miner, 1866-1923 Gawayne and the Green Knight etext14439 Leino, Eino, 1878-1926 Lalli; Tuomas piispa; Maunu Tavast etext14482 Cullum, Ridgwell, 1867-1943 The Story of the Foss River Ranch etext14484 Sophocles, 495? BC-406 BC The Seven Plays in English Verse etext14492 Burton, Margaret E. Notable Women of Modern China etext14551 Anonymous Baltimore Catechism, No. 1 etext14560 Anonymous Omzwervingen door de eilandenwereld van den Grooten Oceaan: De Fidji-eilanden etext14580 Kuiper, A.C., 1860-1934 Elsje etext14588 Gregory, Lady, 1852-1932 Three Wonder Plays etext14654 London, Jack, 1876-1916 A Daughter of the Snows etext14665 Rockwood, Roy Through the Air to the North Pole etext14676 Fraser, Helen Women and War Work etext14736 Päivärinta, Pietari, 1827-1913 Elämän hawainnoita II: Waimoni; Puutteen Matti etext14756 Cullum, Ridgwell, 1867-1943 The Man in the Twilight etext14805 Heredia, José-Maria de, 1842-1905 Les trophées etext14816 Catala, Victor La Mare Balena etext14832 Oxenham, John, 1852-1941 A Maid of the Silver Sea etext14836 Brassey, Annie, 1839-1887 A Voyage in the 'Sunbeam' etext14843 Lighthall, W. D. (William Douw), 1857-1954 The Manor House of Lacolle etext14854 Lippmann, Julie Mathilde, 1864- Martha By-the-Day etext14888 etext14892 Minto, William, 1845-1893 Daniel Defoe etext14920 Various Punch, or the London Charivari, Volume 1, July 24, 1841 etext14946 Cutting, Mary Stewart Doubleday, 1851-1924 The Blossoming Rod etext14961 Barrie, J. M. (James Matthew), 1860-1937 Sentimental Tommy etext14965 Various Punch, or the London Charivari, Volume 103, July 23, 1892 etext15018 Peterman, Alexander L. Elements of Civil Government etext15023 Nissinen, Alli, 1866-1926 Tunnustus etext15091 Various The Brochure Series of Architectural Illustration, Volume 01, No. 02, February 1895. etext15100 Phillip, Arthur, 1738-1814 The Voyage of Governor Phillip to Botany Bay etext15115 Cervantes Saavedra, Miguel de, 1547-1616 Novelas y teatro etext15236 Murray, Margaret Alice, 1863-1963 Oude Egyptische Legenden etext15289 Miles, George Henry, 1824-1871 The Truce of God etext15308 Sanford, P. Gerald (Percy Gerald) Nitro-Explosives: A Practical Treatise etext15317 Fleming, May Agnes, 1840-1880 The Baronet's Bride etext15322 Various The American Architect and Building News, Vol. 27, No. 733, January 11, 1890 etext15361 Fréchette, Louis, 1839-1908 Félix Poutré etext15398 Bibb, Henry, 1815-1854 Narrative of the Life and Adventures of Henry Bibb, an American Slave, Written by Himself etext15431 Adams, Samuel Hopkins, 1871-1958 Success etext15461 Winstanley, William The Lives of the Most Famous English Poets (1687) etext15478 Various New York Times Current History: The European War, Vol 2, No. 1, April, 1915 etext15498 Curtis, George William, 1824-1892 Trumps etext15530 The Philippine Islands, 1493-1898 — Volume 17 of 55 etext15590 Peet, T. Eric (Thomas Eric), 1882-1934 Rough Stone Monuments and Their Builders etext15648 Abbot, Willis J. (Willis John), 1863-1934 American Merchant Ships and Sailors etext15699 A Handbook of the Boer War etext15729 Dubnow, S. M. (Simon Markovich), 1860-1941 History of the Jews in Russia and Poland. Volume II etext15734 Achleitner, Arthur, 1858-1927 Aus Kroatien etext15805 Voltaire, 1694-1778 La mort de César etext15832 Willman-Eloranta, Elviira, 1875-1927 Vallankumouksen vyöryssä etext15848 Shakespeare, William, 1564-1616 La Comédie des Méprises etext15874 James, M. R. (Montague Rhodes), 1862-1936 Old Testament Legends etext15916 Various The Great Round World and What Is Going On In It, Vol. 1, No. 39, August 5, 1897 etext15986 Waugh, Edwin, 1817-1890 Th' Barrel Organ etext16034 Runeberg, Johan Ludvig, 1804-1877 Jouluilta etext16052 Ewing, Juliana Horatia Gatty, 1841-1885 The Brownies and Other Tales etext16063 Marryat, Frederick, 1792-1848 Jack Rustig etext16118 Various The American Missionary — Volume 43, No. 05, May, 1889 etext16127 Steele, Chester K. The Diamond Cross Mystery etext16181 Smith, Thomas Barlow Young Lion of the Woods etext16203 The Philippine Islands, 1493-1898 — Volume 21 of 55 etext16304 Kafka, Franz, 1883-1924 Der Heizer etext16338 Lang, Andrew, 1844-1912 The Homeric Hymns etext16343 Petitt, Maud Beth Woodburn etext16389 Elizabeth, 1866-1941 The Enchanted April etext16421 Sacher-Masoch, Leopold, Ritter von, 1836-1895 Le legs de Caïn etext16438 Benson, Arthur Christopher, 1862-1925 Memoirs of Arthur Hamilton, B. A. Of Trinity College, Cambridge etext16459 Saint-Saëns, Camille, 1835-1921 Musical Memories etext16463 etext16510 Spencer, Herbert, 1820-1903 Essays on Education and Kindred Subjects etext16525 Streeter, John Williams The Fat of the Land etext16532 Marks, Percy, 1891-1956 The Plastic Age etext16550 Wordsworth, William, 1770-1850 The Prose Works of William Wordsworth etext16561 Erasmus, Desiderius, 1469-1536 Encomium artis medicae etext16579 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 On The Art of Reading etext16638 Various Golden Days for Boys and Girls, Vol. XIII, Nov. 28, 1891 etext16695 Corbett, Julian S. (Julian Stafford), 1854-1922 Fighting Instructions, 1530-1816 etext16739 Drummond, Henry, 1851-1897 The Greatest Thing In the World and Other Addresses etext16754 Meriläinen, Heikki, 1847-1939 Kuusten juurella etext16777 Morrow, Honoré, 1880-1940 The Heart of the Desert etext16831 Tufail, Ibn The Improvement of Human Reason etext16851 Sue, Eugène, 1804-1857 L'alouette du casque etext16913 Harrison, James The Life of the Right Honourable Horatio Lord Viscount Nelson, Volume 2 etext16927 Tacitus, Cornelius, 56-120 Tacitus: The Histories, Volumes I and II etext16954 Molesworth, Mrs., 1839-1921 Us etext16956 Hope, Laura Lee Bunny Brown and His Sister Sue Playing Circus etext16985 Bahá'u'lláh, 1817-1892 The Proclamation of Bahá'u'lláh etext17009 Blavatsky, H. P. (Helena Petrovna), 1831-1891 Studies in Occultism; A Series of Reprints from the Writings of H. P. Blavatsky etext17022 Collingridge, George, 1847-1931 The First Discovery of Australia and New Guinea etext17046 Shakespeare, William, 1564-1616 Merry Wives of Windsor etext17093 Gibson, William Hamilton, 1850-1896 Camp Life in the Woods and the Tricks of Trapping and Trap Making etext17130 Salus, Hugo, 1866-1929 Das blaue Fenster etext17197 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Black Box etext17201 Mallock, W. H. (William Hurrell), 1849-1923 Is Life Worth Living? etext17212 Hurll, Estelle M. (Estelle May), 1863-1924 Michelangelo etext17242 Conscience, Hendrik, 1812-1883 La tombe de fer etext17277 Hope, Laura Lee The Story of a Monkey on a Stick etext17343 Bute, John Patrick Crichton-Stuart, Marquess of, 1847-1900 Brendan's Fabulous Voyage etext17346 Ruppelt, Edward J., 1922-1960 The Report on Unidentified Flying Objects etext17423 Mozart, Wolfgang Amadeus, 1756-1791 Theme from Mozart's Piano Sonata in A major, K.331 etext17454 Döring, Heinrich, 1789-1862 Chr. M. Wieland's Biographie etext17543 Anonymous Une Confédération Orientale comme solution de la Question d'Orient (1905) etext5533 Ebers, Georg, 1837-1898 A Thorny Path — Volume 04 etext17565 Dickens, Charles, 1812-1870 Les grandes espérances etext17569 Anonymous The New York Subway etext17620 Conrad, Joseph, 1857-1924 The Point Of Honor etext17659 Couperus, Louis, 1863-1923 Noodlot etext17664 Goethe, Johann Wolfgang von, 1749-1832 Kampagne in Frankreich etext17706 Lennep, J. van (Jacob), 1802-1868 Ferdinand Huyck etext17735 Various Eyes of Youth etext17736 Dante Alighieri, 1265-1321 La Vita Nuova etext17812 Nervander, Emil, 1840-1914 Vanhoista kätköistä etext17827 Thompson, L. S. The Story of Mattie J. Jackson etext17837 Guerrazzi, Francesco Domenico, 1804-1873 Beatrice Cenci etext17890 Parrish, Randall, 1858-1923 When Wilderness Was King etext17946 Eirik the Red's Saga etext17965 Ollivant, Alfred, 1874-1927 Boy Woodburn etext17996 Aeschylus, 525 BC-456 BC Επτά επί Θήβας etext18011 Freeman, Mary Eleanor Wilkins, 1852-1930 The Portion of Labor etext18012 Temple, E. B. Transactions of the American Society of Civil Engineers, Vol. LXVIII, Sept. 1910 etext18101 etext18107 Schmucker, S. S. (Samuel Simon), 1799-1873 American Lutheranism Vindicated; or, Examination of the Lutheran Symbols, on Certain Disputed Topics etext18144 Shakespeare, William, 1564-1616 Timon Ateenalainen etext18151 Piper, H. Beam, 1904-1964 Time Crime etext18217 Various Chambers's Elementary Science Readers etext18235 Lamberts Hurrelbrinck, L. H. J., 1856-1941 Het Geuldal etext18244 Andersen, H. C. (Hans Christian), 1805-1875 Contes merveilleux, Tome I etext18300 L'Estrange, Alfred Guy Kingan, 1832-1915 History of English Humour, Vol. 1 etext18304 Street, Julian, 1879-1947 American Adventures etext18316 Anonymous Notable Women of Olden Time etext18318 Fox, John, 1863-1919 Crittenden etext18324 Stokes, John H. (John Hinchman), 1885-1961 The Third Great Plague etext18364 Macnaughtan, S. (Sarah), 1864-1916 My War Experiences in Two Continents etext18390 Bean, C. E. W. (Charles Edwin Woodrow), 1879-1968 Letters from France etext18441 etext18461 Hope, Laura Lee Six Little Bunkers at Mammy June's etext18478 Deland, Margaret Wade Campbell, 1857-1945 John Ward, Preacher etext18484 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext18513 Jesus of Nazareth, A Biography, by John Mark etext18545 France, Anatole, 1844-1924 A Mummer's Tale etext18609 Mendelssohn, Felix, 1809-1847 Hark! The Herald Angels Sing etext18648 Walsh, George Ethelbert, 1865-1941 Bumper, The White Rabbit etext18651 Crawford, F. Marion (Francis Marion), 1854-1909 A Cigarette-Maker's Romance etext18690 Warner, Susan, 1819-1885 Queechy, Volume I etext18712 Cope, Henry Frederick, 1870-1923 Levels of Living etext18713 Dunbar-Nelson, Alice Moore, 1875-1935 Violets and Other Tales etext18730 Hewlett, Maurice Henry, 1861-1923 Lore of Proserpine etext18791 Bassnett, Thomas, 1808- Outlines of a Mechanical Theory of Storms etext18809 Lansdown, Henry Venn Recollections of the late William Beckford etext18843 Porter, Mary F. Applied Psychology for Nurses etext18873 Guerber, H. A. (Hélène Adeline), 1859-1929 Contes et légendes etext18876 Blasco Ibáñez, Vicente, 1867-1928 Woman Triumphant etext18882 Benson, Arthur Christopher, 1862-1925 The Isles of Sunset etext18906 L'Estrange, Alfred Guy Kingan, 1832-1915 History of English Humour, Vol. 2 etext19006 Gregory, James John Howard, 1827-1910 Cabbages and Cauliflowers: How to Grow Them etext19028 Weygandt, Cornelius, 1871-1957 Irish Plays and Playwrights etext19039 Cantù, Cesare, 1804-1895 Margherita Pusterla etext19138 Fillebrown, Thomas, 1836-1908 Resonance in Singing and Speaking etext19150 Mereto, Joseph J. The Red Conspiracy etext19284 `Abdu'l-Bahá, 1844-1921 Paris Talks etext19290 Baha'i International Community Statement on Bahá’u’lláh etext19316 Various Lyra Heroica etext19444 Various The Brochure Series of Architectural Illustration, Volume 01, No. 06, June 1895 etext19490 Maumené, Charles De Boe Hedma in Zuid-Tunis etext19503 Morris, Charles, 1833-1922 Historical Tales - The Romance of Reality - Volume III etext19512 Fleming, May Agnes, 1840-1880 Kate Danton, or, Captain Danton's Daughters etext19544 Jacobi, H. D. Wat tante Dora vertelde etext19562 L. Mühlbach Napoleon and the Queen of Prussia etext19584 Bryant, Jacob, 1715-1804 A New System; or, an Analysis of Antient Mythology. Volume II. (of VI.) etext19625 Aesop, 620 BC-563 BC Aesop's Fables - Volume 10 etext19643 Anonymous Actas capitulares desde el 21 hasta el 25 de mayo de 1810 en Buenos Aires etext19646 Soini, Wilho, 1854-1934 Valoa kansalle etext19745 Stevenson, Adlai E. (Adlai Ewing), 1835-1914 Something of Men I Have Known etext19746 Chesnutt, Charles W. (Charles Waddell), 1858-1932 The Colonel's Dream etext19750 Stevenson, Robert Louis, 1850-1894 The Waif Woman etext19779 Various The Atlantic Monthly, Volume 20, No. 118, August, 1867 etext19795 Raabe, Wilhelm, 1831-1910 Die schwarze Galeere etext19835 Saillard, M. Een Reisje door de Republiek Costa-Rica etext19843 Unknown Book of Judith etext19849 Wood, William Charles Henry, 1864-1947 Flag and Fleet etext19867 Standish, Burt L., 1866-1945 Frank Merriwell, Junior's, Golden Trail etext19906 etext20008 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 The Young Duke etext20012 Gladstone, William Henry, 1840-1892 The Hawarden Visitors' Hand-Book etext20023 Victoria, Queen of Great Britain, 1819-1901 The Letters of Queen Victoria : A Selection from Her Majesty's Correspondence between the Years 1837 and 1861 etext20065 Blaine, James Gillespie, 1830-1893 Twenty Years of Congress, Volume 2 etext20095 Brooks, Charles S. (Charles Stephen), 1878-1934 Journeys to Bagdad etext20138 Kingsley, Charles, 1819-1875 True Words for Brave Men etext20163 Brazil, Angela, 1868-1947 The Jolliest School of All etext20200 Mant, Alicia Catherine, -1869 Christmas, A Happy Time etext20224 Smoot, Dan, 1913-2003 The Invisible Government etext20371 Paris, Faculté de Theologie de Le catalogue des livres censurez par la faculté de theologie de Paris etext20393 Plomer, Henry R. A Short History of English Printing, 1476-1898 etext20396 Marmette, Joseph, 1844-1895 La fiancée du rebelle etext20406 Ker, W. P. Epic and Romance etext20439 Lutz, Alma Susan B. Anthony etext20456 Thomas, Cyrus, 1825-1910 Notes on Certain Maya and Mexican Manuscripts etext20467 etext20520 Woodcock, Henry The Hero of the Humber etext20521 Various The New York Times Current History, A Monthly Magazine etext20526 Barrett, Charles Raymond Short Story Writing etext20553 Wilson, Robert H. Out Around Rigel etext20611 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 Mr. Grex of Monte Carlo etext20638 Antin, Mary, 1881-1949 From Plotzk to Boston etext20698 Bassett, Sara Ware, 1872-1968 The Story of Glass etext20762 Doubleday, Abner, 1819-1893 Chancellorsville and Gettysburg etext20827 Jones, James Athearn, 1791-1854 Traditions of the North American Indians, Vol. 2 etext20833 Field, Ben Exciting Adventures of Mister Robert Robin etext20861 Black, Hugh Friendship etext20892 Jókai, Mór, 1825-1904 Manasseh etext20902 Lang, Andrew, 1844-1912 The Clyde Mystery etext20905 Sissala, Eero, 1851-1909 Heikki Helmikangas etext21061 Collingwood, Harry, 1851-1922 Under the Chilian Flag etext21088 Hutcheson, John C. (John Conroy) The White Squall etext21113 Buntline, Ned Wild Bill's Last Trail etext21134 Wilson, Theodore P. Working in the Shade etext21138 Ruskin, John, 1819-1900 Love's Meinie etext21139 Brooke, L. Leslie (Leonard Leslie), 1862-1940 Johnny Crow's Garden etext21154 Boole, Mary Everest, 1832-1916 Philosophy and Fun of Algebra etext21179 Baum, L. Frank (Lyman Frank), 1856-1919 The Wonderful Wizard of Oz etext21233 Holt, Emily Sarah, 1836-1893 All's Well etext21235 Holt, Emily Sarah, 1836-1893 The Maidens' Lodge etext21245 Young, Egerton Ryerson, 1840-1909 Three Boys in the Wild North Land etext21248 Johnston, Annie F. (Annie Fellows), 1863-1931 The Little Colonel: Maid of Honor etext21272 Vincent, Leon H. (Leon Henry), 1859-1941 The Bibliotaph etext21278 Anonymous The Old Castle and Other Stories etext21287 Vicente, Gil, 1465-1537 Pranto de Maria Parda etext21340 Various The Little Gold Miners of the Sierras and Other Stories etext21404 Kingston, William Henry Giles, 1814-1880 From Powder Monkey to Admiral etext21426 Bailey, Arthur Scott, 1877-1949 The Tale of Daddy Longlegs etext21464 Kingston, William Henry Giles, 1814-1880 The Gilpins and their Fortunes etext21469 Kingston, William Henry Giles, 1814-1880 The Mate of the Lily etext21475 Kingston, William Henry Giles, 1814-1880 Peter Trawl etext21524 Defoe, Daniel, 1661?-1731 Robinson Crusoe etext21636 Cupples, George, Mrs., 1839-1898 Bluff Crag, etext21693 Ballantyne, R. M. (Robert Michael), 1825-1894 Post Haste etext21718 Ballantyne, R. M. (Robert Michael), 1825-1894 The Big Otter etext21724 etext21758 Ballantyne, R. M. (Robert Michael), 1825-1894 Hudson Bay etext21766 Cory, William (AKA William Johnson) Ionica etext21772 James, Henry, 1843-1916 The Path Of Duty etext21789 etext21833 Callwell, C. E. (Charles Edward), Sir, 1859-1928 Experiences of a Dug-out, 1914-1918 etext21850 Garland, Hamlin, 1860-1940 A Little Norsk; Or, Ol' Pap's Flaxen etext21851 Williams, George Washington, 1849-1891 History of the Negro Race in America from 1619 to 1880. Vol. 2 (of 2) etext21854 Bentley, E. C. (Edmund Clerihew), 1875-1956 The Woman in Black etext21866 Mathews, R. H. (Robert Hamilton), 1841-1918 The Gundungurra Language etext21867 Rhodes, Kathlyn Afterwards etext21984 Kemp, William Kemps Nine Daies Wonder etext22061 etext22098 Bates, Joseph, 1792-1872 The Seventh Day Sabbath, a Perpetual Sign, from the Beginning to the Entering into the Gates of the Holy City, According to the Commandment etext22149 Various The Journal of Negro History, Volume 6, 1921 etext22193 etext22213 Cumont, Franz, 1868-1947 The Oriental Religions in Roman Paganism etext22271 Murray, David Christie, 1847-1907 Schwartz: A History etext22293 Richards, Laura Elizabeth Howe, 1850-1943 Three Margarets etext22334 Weyman, Stanley John, 1855-1928 In Kings' Byways etext22343 Talmage, T. De Witt (Thomas De Witt), 1832-1902 The Wedding Ring etext22361 Löfving, Stefan, 1689-1777 Päiväkirja etext22443 Clare, John, 1793-1864 Selected Poems of John Clare, Volume 1 etext22456 Virgil, 70 BC-19 BC The Aeneid of Virgil etext22517 Henschke, Alfred, 1890-1928 Deutsche Literaturgeschichte in einer Stunde etext22557 Bourinot, John George, Sir, 1837-1902 Canada etext22572 Le Goffic, Charles, 1863-1932 Fêtes et coutumes populaires etext22614 Bocage, Manuel Maria Barbosa du, 1765-1805 A Pavorosa Illusão etext22616 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Salve, Rei! etext22617 Various Chambers's Edinburgh Journal, No. 454 etext22657 Babcock & Wilcox Company Steam, Its Generation and Use etext22714 Bellamy, Edward, 1850-1898 Deserted etext22719 Hansen, Marcus L. Old Fort Snelling etext22753 Janson, Kristofer, 1841-1917 Per ja Bergit etext22772 Pires, Ernesto, 1857-1884 Camões e o amor etext22791 Shakespeare, William, 1564-1616 King Henry the Fifth etext22854 John the Apostle, Saint The Gospel According to Saint John etext22872 Warner, Anne, 1869-1913 Susan Clegg and a Man in the House etext22908 Verne, Jules, 1828-1905 Mathias Sandorf etext22924 Douglas, Alan Pathfinder etext22946 Abbott, Eleanor Hallowell, 1872-1958 The Indiscreet Letter etext23005 Chaplin, Heman White, 1847-1924 Eli etext23017 Page, Thomas Nelson, 1853-1922 Elsket etext23034 etext23053 Romero, George A. Night of the Living Dead etext23071 Kingston, William Henry Giles, 1814-1880 The Rival Crusoes etext23260 Kingston, William Henry Giles, 1814-1880 The Two Whalers etext23263 Ballantyne, R. M. (Robert Michael), 1825-1894 The Fugitives etext23292 Bassett, Sara Ware, 1872-1968 Ted and the Telephone etext23311 Unknown Beauty and the Beast etext23351 Optic, Oliver, 1822-1897 The Yacht Club etext23356 Aldrich, Thomas Bailey, 1836-1907 A Struggle For Life etext23385 Ballantyne, R. M. (Robert Michael), 1825-1894 Saved by the Lifeboat etext23403 etext23496 Kingston, William Henry Giles, 1814-1880 How Britannia Came to Rule the Waves etext23506 Conrad, Joseph, 1857-1924 Chance etext23645 Stokes, Katherine The Motor Maids at Sunrise Camp etext23657 Garrett, Randall, 1927-1987 That Sweet Little Old Lady etext23763 Chapman, Allen Fred Fenton on the Track etext23860 Alcott, William A. (William Andrus), 1798-1859 The Young Man's Guide etext23905 etext23906 Wang, Shifu fl. 1295-1307 西廂記 etext23989 Abbott, Jacob, 1803-1879 Caleb in the Country etext23999 Burnett, Alice Hale A Day at the County Fair etext24025 Brazil, Angela, 1868-1947 The New Girl at St. Chad's etext24041 Cao, Zhi, 192-232 洛神賦 etext24055 Confucius, 551 BC-479 BC The Sayings Of Confucius etext24077 Dooley, William H. (William Henry), 1880- Textiles etext24155 Birmingham, George A., 1865-1950 Lady Bountiful etext24208 Spain. Comisión arqueológica ejecutiva La nao Santa María: memória de la Comisión arqueológica ejecutiva, 1892 etext24253 Sumner, William Graham, 1840-1910 Folkways etext24277 Berryman, John, 1919-1988 Card Trick etext24289 Anonymous Ley, porque V. Magestade ha por bem restituir aos indios do Grão Pará, e Maranhão a liberdade das suas pessoas, e bens etc. etext24313 Milne, A. A. (Alan Alexander), 1882-1956 Once a Week etext24409 Packard, A. S. (Alpheus Spring), 1839-1905 Our Common Insects etext24413 Brochowska, Alberta von Tante Toni und ihre Bande etext24490 Michelet, Jules, 1798-1874 Histoire de France etext24492 Morley, John, 1838-1923 Critical Miscellanies (Vol. 2 of 3) etext24581 Howe, Archibald Murray, 1848- Colonel John Brown, of Pittsfield, Massachusetts, the Brave Accuser of Benedict Arnold etext24601 Palacio Valdés, Armando, 1853-1938 El cuarto poder etext24614 Hartland, Edwin Sidney, 1848-1927 The Science of Fairy Tales etext24625 Albergaria, António José da Costa Couto Sá de, 1850-1921 Os Filhos do Padre Anselmo etext24646 Lemos, João de, 1819-1890 O Livro de Elysa etext24717 etext24766 Krafft-Ebing, R. von (Richard), 1840-1902 Psychopathia Sexualis etext24838 Becke, Louis, 1855-1913 Tessa etext24868 National Industrial Conference Board The Cost of Living Among Wage-Earners etext24916 Hutcheson, John C. (John Conroy) Crown and Anchor etext24949 Aycock, Roger D., 1914-2004 Control Group etext24968 Keckley, Elizabeth, 1818-1907 Behind the Scenes etext25009 The World's Greatest Books — Volume 14 — Philosophy and Economics etext25015 Library of the World's Best Literature, Ancient and Modern — Volume 11 etext25125 Zheng, Chuhui, jin shi 834 明皇雜錄 etext25148 Gomes, José Caetano Memoria sobre a cultura, e productos da cana de assucar etext25163 Fitch, George, 1877-1915 At Good Old Siwash etext25165 Alcott, Louisa May, 1832-1888 The Candy Country etext25188 Greene, Homer, 1853-1940 The Flag etext25194 Nalan, Xingde, 1655-1685 飲水詞集 etext25203 Reid, Mayne, 1818-1883 The Land of Fire etext25238 Barata, António Francisco, 1836-1910 A batalha de Toro etext25466 Optic, Oliver, 1822-1897 Little Bobtail etext25502 Ebbutt, M. I. (Maud Isabel), 1867- Hero-Myths & Legends of the British Race etext25541 American Eloquence, an Index of the Four Volumes etext25548 Abbott, Jacob, 1803-1879 Rollo's Museum etext25555 Chodzko, Alexander, 1804-1891 Fairy Tales of the Slav Peasants and Herdsmen etext25568 Shaler, Nathaniel Southgate, 1841-1906 Domesticated Animals etext25571 Caine, Hall, Sir, 1853-1931 The Little Manx Nation - 1891 etext25585 Coleridge, Samuel Taylor, 1772-1834 Shakespeare, Ben Jonson, Beaumont and Fletcher etext25689 Gibbs, George, 1870-1942 The Secret Witness etext25737 Wilson, Ann Concordance etext25786 Whibley, Charles, 1859-1930 American Sketches etext25802 Emerson, Alice B. Ruth Fielding on the St. Lawrence etext25839 Maréchal, Sylvain, 1750-1803 Apologues modernes, à l'usage du Dauphin etext25840 Pato, Raimundo António de Bulhão, 1829-1912 Versos de Bulhão Pato etext25880 American Poetry, 1922 etext25894 Walker, James, 1794-1874 The Spirit Proper to the Times etext25914 Core, Mary Kennedy The Khaki Kook Book etext25924 Blanche, August, 1811-1868 Koston henki etext25967 Alger, Horatio, 1832-1899 Rufus and Rose etext26041 Alcott, Louisa May, 1832-1888 Aunt Jo's Scrap-Bag etext26121 Various Notes and Queries, Number 33, June 15, 1850 etext26129 Dallmann, William, 1862-1952 John Hus etext26184 United States. Office of Strategic Services Simple Sabotage Field Manual etext26188 Linnankoski, Johannes, 1869-1913 Taistelu Heikkilän talosta etext26281 Burnand, F. C. (Francis Cowley), Sir, 1836-1917 Happy-Thought Hall etext26322 Molesworth, Mrs., 1839-1921 Peterkin etext26384 Taylor, James Hudson, 1832-1905 Separation and Service etext26396 Hay, James, 1881-1936 No Clue etext26407 etext26439 Various The Quarterly Review, Volume 162, No. 324, April, 1886 etext26459 Stevenson, Robert Louis, 1850-1894 A Child's Garden of Verses etext26520 Raine, William MacLeod, 1871-1954 The Fighting Edge etext26523 etext26525 Hodell, Frans, 1840-1890 Heinosen perhe huvimatkalla etext26539 Stratemeyer, Edward, 1862-1930 The Rover Boys at Big Horn Ranch etext26576 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 History of England from the Accession of James II, vol2 chapter 6 etext26581 Tolstoy, Leo, graf, 1828-1910 Master and Man etext26584 Woolf, Virginia, 1882-1941 Night and Day etext26585 Kant, Immanuel, 1724-1804 Perpetual Peace: A Philosophic Essay etext26597 Wells, Samuel R. (Samuel Roberts), 1820-1875 How To Behave: A Pocket Manual Of Republican Etiquette, And Guide To Correct Personal Habits etext26612 Neville, Richard A Pirate of Parts etext26714 Manwell, M. B. The Captain's Bunk etext26725 Page, Thomas Nelson, 1853-1922 Two Little Confederates etext26790 The Brother Avenged etext26803 King Hacon's Death and Bran and the Black Dog etext26805 Little Engel etext26808 Mirabeau, Honoré-Gabriel de Riquetti, comte de, 1749-1791 Ma conversion etext26829 Warner, Susan, 1819-1885 The Old Helmet, Volume I etext26831 Marsk Stig etext9123 etext26839 Ball, W. W. Rouse (Walter William Rouse), 1850-1925 Mathematical Recreations and Essays etext26866 Lazari, Vincenzo, 1823-1864 Le monete dei possedimenti veneziani di oltremare e di terraferma descritte ed illustrate da Vincenzo Lazari etext26923 etext26937 etext26945 Various Lippincott's Magazine, December 1878 etext26965 Frost, John, 1800-1859 Heroes and Hunters of the West etext26970 Tanmengdaoren 彭公案 etext27000 Andersen, H. C. (Hans Christian), 1805-1875 What the Moon Saw: and Other Tales etext27005 Various Notes and Queries, Number 206, October 8, 1853 etext27039 Lebert, Marie Project Gutenberg (1971-2005) etext27190 Nesbit, E. (Edith), 1858-1924 Pussy and Doggy Tales etext27218 Jiang, Risheng, fl. 1692 臺灣外紀 etext27258 Pike, G. Holden (Godfrey Holden), 1836- From Slave to College President etext27300 Alger, Horatio, 1832-1899 The Young Adventurer etext27309 Verne, Jules, 1828-1905 De la Terre à la Lune. Dutch etext27388 Macgowan, Daniel Jerome, 1815-1893 Sociologia Chinesa: Autoplastia etext27394 Peck, John Mason, 1789-1858 A New Guide for Emigrants to the West etext27403 Zuoguanlaoren, 1849-1917 清代野记 etext27454 Scott, John Reed, 1869- In Her Own Right etext27459 Yue, Jun, 1766-1814 耳食錄 etext27475 Ryan, Marah Ellis, 1866-1934 That Girl Montana etext27511 Sullivan, Francis William, 1887- The Free Range etext27535 Nobre, António Pereira, 1867-1900 Despedidas: 1895-1899 etext27539 Stenius, John Naapurit etext27571 Cocker, B. F. (Benjamin Franklin), 1821-1883 Christianity and Greek Philosophy etext27595 Clifton, Mark, 1906-1963 Eight Keys to Eden etext27611 Various Blackwood's Edinburgh Magazine, Volume 62, Number 361, November, 1845. etext27613 Raymond, Evelyn, 1843-1910 Reels and Spindles etext27653 Sjögren, Otto, 1844-1917 Historiallinen lukukirja: Vanha ja Keski-aika etext27659 Henderson, Percy E. (Percy Edward), 1852- Op het Balkan-schiereiland etext27660 Nathan, George Jean, 1882-1958 A Book Without A Title etext27671 Shackleton, Ernest Henry, Sir, 1874-1922 Het dichtste bij de Zuidpool etext27705 Le Queux, William, 1864-1927 The Golden Face etext27750 Mahan, A. T. (Alfred Thayer), 1840-1914 Admiral Farragut etext27758 Buchanan's Journal of Man, November 1887 etext27774 Daudet, Ernest, 1837-1921 Fils d'émigré etext27808 Wilhelmine, Margravine, consort of Friedrich, Margrave of Bayreuth, 1709-1758 Mémoires de Frédérique Sophie Wilhelmine de Prusse, margrave de Bareith. Vol. I etext27874 Ballou, Maturin Murray, 1820-1895 Foot-prints of Travel etext27883 Chappuis, Herman Théodore, 1844-1906 Napoleon Geschetst etext27945 Brehm, Alfred Edmund, 1829-1884 Het Leven der Dieren etext27975 Vasey, George, 1822-1893 Delineations of the Ox Tribe etext27983 Robertson, Margaret M. (Margaret Murray), 1821-1897 The Orphans of Glen Elder etext28017 Nicholson, Meredith, 1866-1947 Otherwise Phyllis etext28071 Morrison, Arthur, 1863-1945 The Red Triangle etext28096 Lang, Andrew, 1844-1912 The Lilac Fairy Book etext28154 Mesquita, Marcelino, 1856-1919 Petronio etext28155 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Noites de insomnia, offerecidas a quem não póde dormir. Nº 9 (de 12) etext28259 Wit, Augusta de, 1864-1939 Natuur en Menschen in Indië etext28284 Hobson, J. A. (John Atkinson), 1858-1940 The Evolution of Modern Capitalism etext28305 Howells, William Dean, 1837-1920 A Likely Story etext28456 Great Men and Famous Women. Vol. 6 etext28461 Sinclair, May, 1863-1946 The Combined Maze etext28492 Garland, Hamlin, 1860-1940 The Light of the Star etext28536 Maunder, E. Walter (Edward Walter), 1851-1928 The Astronomy of the Bible etext28549 Smith, Hugh, 1736?-1789 A Treatise on Foreign Teas etext28616 Marshall, Emma, 1830-1899 Penshurst Castle etext28617 Various Astounding Stories of Super-Science February 1930 etext28676 Trollope, Anthony, 1815-1882 The Life of Cicero etext28697 Otis, James, 1848-1912 Down the Slope etext28740 Morrison, Gertrude W. The Girls of Central High in Camp etext28793 Piper, H. Beam, 1904-1964 Oomphel in the Sky etext28842 Cervantes Saavedra, Miguel de, 1547-1616 Don Quixote, Volume 1 etext28863 Freud, Sigmund, 1856-1939 Der Dichter und das Phantasieren etext28962 Bastos, Teixeira, 1857?-1902 Tribunaes de Arbitros-Avindores etext28979 Ayrton, Matilda Chaplin, 1846-1883 Child-Life in Japan and Japanese Child Stories etext28994 Peck, Harry Thurston, 1856-1914 Latin Pronunciation etext28999 Benson, E. F. (Edward Frederic), 1867-1940 Daisy's Aunt etext29024 Andrews, Roy Chapman, 1884-1960 Across Mongolian Plains etext29058 etext29082 Mazzini, Giuseppe, 1805-1872 Scritti di Giuseppe Mazzini, Politica ed Economia, Vol. I etext29113 Sullivan, May Kellogg The Trail of a Sourdough etext29123 Borrow, George Henry, 1803-1881 The Fountain of Maribo etext29310 Gilmore, Anthony The Affair of the Brains etext29313 Hitchcock, Frederick L. (Frederick Lyman) War from the Inside etext29536 Various Le Tour du Monde; Kachmir etext29554 Brinton, Daniel Garrison, 1837-1899 An Ethnologist's View of History etext29563 etext29570 Hall, Holworthy, 1887-1936 Rope etext29730 Lemcke, Gesine, 1841-1904 Desserts and Salads etext29731 Alarcón, Pedro Antonio de, 1833-1891 El Capitán Veneno etext29763 Witwer, H. C. (Harry Charles), 1890-1929 Alex the Great etext29820 Mansfield, M. F. (Milburg Francisco), 1871- The Cathedrals of Northern France etext29826 Cottin, Madame (Sophie), 1770-1807 Elisabeth etext29844 Hugo, Victor, 1802-1885 Les contemplations etext29874 Capuana, Luigi, 1839-1915 Delitto ideale etext29907 Ruskin, John, 1819-1900 Modern Painters Volume I (of V) etext29977 Jacopone, da Todi, 1230-1306 Le Laude etext29981 Hartley, C. Gasquoine (Catherine Gasquoine), 1867-1928 The Truth About Woman etext30000 Reed, Chester A. (Chester Albert), 1876-1912 The Bird Book etext30036 Hamilton, Frederick W. (Frederick William), 1860-1940 Word Study and English Grammar etext30056 Various Punch, or, the London Charivari, Volume 98, March 8, 1890. etext30086 Walton, Bryce, 1918-1988 Has Anyone Here Seen Kelly? etext30169 Unknown The Story of the White Mouse etext30184 Shorter, Dora Sigerson, 1866-1918 The Fairy Changeling and Other Poems etext30225 Rice, Cale Young, 1872-1943 Many Gods etext30228 etext30298 Hough, Emerson, 1857-1923 The Magnificent Adventure etext30315 Caw, J. L. (James Lewis), Sir, 1864-1950 Raeburn etext30353 Hernhuter, Albert The Smiler etext30364 Hamilton, Francis, 1762-1829 An Account of The Kingdom of Nepal etext30378 Edholm, Lizette M. The Merriweather Girls and the Mystery of the Queen's Fan etext30396 Anonymous Books and Authors etext30407 Prus, Bolesław, 1847-1912 O odkryciach i wynalazkach etext30472 Alford, Marianne Margaret Compton Cust, Viscountess, 1817-1888 Needlework As Art etext30530 Kielland, Alexander Lange, 1849-1906 Skipper Worse etext30534 Various Punch, or the London Charivari, Vol. 98, April 12, 1890 etext30543 Borys, Gontran, 1828-1872 Nas Cinzas etext30571 Feydeau, Ernest, 1821-1873 Fanny: estudo etext30611 Various The Atlantic Monthly, Volume 15, No. 90, April, 1865 etext30617 Vicary, John Fulford, 1832-1887 A Danish Parsonage etext30633 Robespierre, Maximilien, 1758-1794 Projet de la constitution française de 1791 etext30796 etext30833 Garrett, Randall, 1927-1987 The Eyes Have It etext30836 Biggers, Earl Derr, 1884-1933 Seven Keys to Baldpate etext30877 Parkhurst, Daniel Burleigh The Painter in Oil etext30996 Petruccelli della Gattina, Ferdinando, 1816-1890 Il re dei re, vol. 2 (di 4) etext31017 Huneker, James, 1857-1921 Ivory Apes and Peacocks etext31096 De Mille, James, 1833-1880 The Lily and the Cross etext31141 Russell, Robert J. Four New Pocket Gophers of the Genus Cratogeomys from Jalisco, Mexico etext31150 Huch, Ricarda Octavia, 1864-1947 Gottfried Keller etext31191 Dexter, Franklin, 1793-1857 A Letter to the Hon. Samuel A. Eliot, Representative in Congress From the City of Boston, In Reply to His Apology For Voting For the Fugitive Slave Bill. etext31217 Stowe, Harriet Beecher, 1811-1896 Household Papers and Stories etext31240 etext31298 Parker, Theodore, 1810-1860 The Trial of Theodore Parker etext31303 Lee, Vernon, 1856-1935 Euphorion etext31305 Heine, Heinrich, 1797-1856 Atta Troll etext31313 Rolland, Romain, 1866-1944 The Forerunners etext31325 etext31341 Taylor, Joseph Apparitions; or, The Mystery of Ghosts, Hobgoblins, and Haunted Houses Developed etext31423 Keane, William In-Door Gardening for Every Week in the Year etext31426 Newcomb, Ambrose Eagles of the Sky etext31463 Otway, Thomas, 1652-1685 The Orphan etext31468 Shellenberger, John K., 1843?- The Battle of Franklin, Tennessee etext31676 Mikszáth, Kálmán, 1847-1910 Heathen Master Filcsik etext31703 McKimmey, James, 1923- 'Mid Pleasures and Palaces etext31755 Peterson, John Victor Political Application etext31756 Battison, Edwin A. Screw-Thread Cutting by the Master-Screw Method since 1480 etext31773 McElroy, John, 1846-1929 Si Klegg, Book 3 (of 6) etext31820 Hoffmann, Ernst Theodor Wilhelm The Serapion Brethren, etext31849 etext31857 Jewett, Sarah Orne, 1849-1909 Strangers and Wayfarers etext31861 Wood-Allen, Mary, 1841-1908 Almost a Woman etext31960 Moore, George Foot The Covenanters of Damascus; A Hitherto Unknown Jewish Sect etext32055 Sohl, Gerald Allan, 1913-2002 The Hand etext32095 Cory, David, 1872-1966 The Adventures of Puss in Boots, Jr. etext32124 Bone, Jesse F. (Jesse Franklin), 1916-1986 To Choke an Ocean etext32144 Barr, Amelia Edith Huddleston, 1831-1919 Jan Vedder's Wife etext32150 Marlowe, Stephen, 1928-2008 Prison of a Billion Years etext32167 Chesterton, Gilbert Keith The Ballad of St. Barbara etext32186 Various Tales from "Blackwood," Volume 2 etext32198 Hanshew, Thomas W., 1857-1914 Cleek of Scotland Yard etext32233 Yeats, W. B. (William Butler), 1865-1939 The Wind Among the Reeds etext32446 Auerbach, Berthold, 1812-1882 Waldfried etext32484 Vandenburg, G. L. Moon Glow etext32572 Andersen, H. C. (Hans Christian), 1805-1875 Hans Andersen's Fairy Tales etext32603 Howe, Julia Ward, 1819-1910 Reminiscences, 1819-1899 etext32622 Various St. Nicholas Magazine for Boys and Girls, Vol. 8, May 1878, No. 7. etext32677 Cooper, Grace Rogers The Invention of the Sewing Machine etext42 Stevenson, Robert Louis, 1850-1894 The Strange Case of Dr. Jekyll and Mr. Hyde etext60 Orczy, Emmuska Orczy, Baroness, 1865-1947 The Scarlet Pimpernel etext135 Hugo, Victor, 1802-1885 Les Misérables etext163 Alcott, Louisa May, 1832-1888 Flower Fables etext259 Service, Robert W. (Robert William), 1874-1958 Ballads of a Cheechako etext260 etext261 Lowell, Amy, 1874-1925 A Dome of Many-Coloured Glass etext309 Service, Robert W. (Robert William), 1874-1958 Rhymes of a Rolling Stone etext325 MacDonald, George, 1824-1905 Phantastes, a Faerie Romance for Men and Women etext358 Davis, Richard Harding, 1864-1916 The Scarlet Car etext414 Jefferies, Richard, 1848-1887 Pageant of Summer etext441 Stevenson, Robert Louis, 1850-1894 New Poems etext561 Defoe, Daniel, 1661?-1731 The Further Adventures of Robinson Crusoe etext628 etext640 Lang, Andrew, 1844-1912 The Yellow Fairy Book etext646 Ballantyne, R. M. (Robert Michael), 1825-1894 The Coral Island etext24036 Shakespeare, William, 1564-1616 Sonnet 130 etext685 United States. Army. Corps of Engineers. Manhattan District The Atomic Bombings of Hiroshima and Nagasaki etext692 Riley, James Whitcomb, 1849-1916 Complete Works of James Whitcomb Riley — Volume 10 etext749 John of Damascus, Saint, 676?-749 Barlaam and Ioasaph etext752 Anonymous A Young Girl's Diary etext771 Brontë, Charlotte, 1816-1855 Biographical Notes on the Pseudonymous Bells etext816 Tocqueville, Alexis de, 1805-1859 Democracy in America — Volume 2 etext828 Anonymous Latin Vulgate, Daniel: Prophetia Danielis etext847 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 Lays of Ancient Rome etext878 Whittier, John Greenleaf, 1807-1892 Yankee Gypsies etext926 Miller, Gustavus Hindman, 1857-1929 Ten Thousand Dreams Interpreted, or what's in a dream: a scientific and practical exposition etext970 Stewart, Cal, 1856-1919 Uncle Josh's Punkin Centre Stories etext971 Spinoza, Benedictus de, 1632-1677 Ethics — Part 4 etext997 Dante Alighieri, 1265-1321 La Divina Commedia di Dante: Inferno etext1022 Thoreau, Henry David, 1817-1862 Walking etext1069 Zola, Émile, 1840-1902 Four Short Stories By Emile Zola etext1107 Shakespeare, William, 1564-1616 The Taming of the Shrew etext1146 Fielding, Henry, 1707-1754 Journal of a Voyage to Lisbon — Volume 1 etext1196 Balzac, Honoré de, 1799-1850 The Purse etext1244 Congreve, William, 1670-1729 Love for Love: a Comedy etext1364 Appleton, Victor [pseud.] Tom Swift and His Electric Locomotive, or, Two Miles a Minute on the Rails etext1401 Burroughs, Edgar Rice, 1875-1950 Tarzan the Untamed etext1426 Balzac, Honoré de, 1799-1850 The Recruit etext1435 Dickens, Charles, 1812-1870 Miscellaneous Papers etext1485 Nation, Carry Amelia, 1846-1911 The Use and Need of the Life of Carry A. Nation etext1511 Shakespeare, William, 1564-1616 King John etext1520 Shakespeare, William, 1564-1616 Much Ado about Nothing etext1529 Shakespeare, William, 1564-1616 All's Well That Ends Well etext1539 Shakespeare, William, 1564-1616 The Winter's Tale etext1563 Leblanc, Maurice, 1864-1941 The Crystal Stopper etext1604 etext1609 Anonymous The Bible, Douay-Rheims, Old Testament — Part 1 etext1625 Collins, Wilkie, 1824-1889 The Frozen Deep etext1650 etext1712 Conrad, Joseph, 1857-1924 The Rescue etext1724 Haggard, Henry Rider, 1856-1925 Finished etext1778 Shakespeare, William, 1564-1616 A Midsummer Night's Dream etext1813 Balzac, Honoré de, 1799-1850 A Man of Business etext1847 McNeill, John Charles, 1874-1907 Songs, Merry and Sad etext1867 Wiggin, Kate Douglas Smith, 1856-1923 The Diary of a Goose Girl etext1871 Balzac, Honoré de, 1799-1850 The Deputy of Arcis etext1884 Balzac, Honoré de, 1799-1850 The Exiles etext1900 Melville, Herman, 1819-1891 Typee etext1905 Fielding, Sarah, 1710-1768 The Governess; or, Little Female Academy etext1928 Cooper, Susan Fenimore, 1813-1894 Elinor Wyllys, Volume 2 etext1940 Balzac, Honoré de, 1799-1850 Christ in Flanders etext1943 Balzac, Honoré de, 1799-1850 Louis Lambert etext1948 Aldrich, Thomas Bailey, 1836-1907 The Story of a Bad Boy etext1961 Lang, Andrew, 1844-1912 Books and Bookmen etext1981 Stallman, Richard M., 1953- The Right to Read etext2000 Cervantes Saavedra, Miguel de, 1547-1616 Don Quijote etext2004 Butler, Ellis Parker, 1869-1937 Pigs is Pigs etext2118 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 18 etext2149 Poe, Edgar Allan, 1809-1849 The Works of Edgar Allan Poe — Volume 3 etext2153 Gaskell, Elizabeth Cleghorn, 1810-1865 Mary Barton etext2172 Barbour, A. Maynard (Anna Maynard), -1941 That Mainwaring Affair etext2181 Hawthorne, Nathaniel, 1804-1864 The Marble Faun - Volume 1 etext2223 Human Genome Project Chromosome X Number 23 etext2249 Shakespeare, William, 1564-1616 King John etext2315 Wiggin, Kate Douglas Smith, 1856-1923 The Flag-Raising etext2318 Balzac, Honoré de, 1799-1850 Droll Stories — Volume 2 etext2325 Cory, David, 1872-1966 The Iceberg Express etext2339 Goethe, Johann Wolfgang von, 1749-1832 Wilhelm Meisters Lehrjahre — Band 5 etext2340 Goethe, Johann Wolfgang von, 1749-1832 Wilhelm Meisters Lehrjahre — Band 6 etext2417 Williams, Valentine, 1883-1946 Okewood of the Secret Service etext2460 James, Henry, 1843-1916 The Madonna of the Future etext2475 Darlington, Edgar B. P. The Circus Boys Across the Continent : or, Winning New Laurels on the Tanbark etext2512 London, Jack, 1876-1916 The Cruise of the Snark etext2566 Lang, Andrew, 1844-1912 How to Fail in Literature; a lecture etext2614 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 The History of England, from the Accession of James II — Volume 5 etext2629 Huxley, Thomas Henry, 1825-1895 Lectures on Evolution etext2685 Deland, Margaret Wade Campbell, 1857-1945 The Way to Peace etext2763 etext2790 Botev, Khristo, 1848-1876 Христо Ботев, Стихотворения etext2863 Hardy, Thomas, 1840-1928 Satires of Circumstance, lyrics and reveries with miscellaneous pieces etext2881 Ginzberg, Louis, 1873-1953 The Legends of the Jews — Volume 3 etext9287 Wharton, Edith, 1862-1937 The Glimpses of the Moon etext2893 Haggard, Henry Rider, 1856-1925 The Wizard etext2906 Galsworthy, John, 1867-1933 The Silver Box etext2912 Galsworthy, John, 1867-1933 The Fugitive etext2932 Huxley, Thomas Henry, 1825-1895 On the Relations of Man to the Lower Animals etext2954 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 04: Return to Venice etext2974 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 24: London to Berlin etext3044 Hardy, Thomas, 1840-1928 Desperate Remedies etext3062 Mommsen, Theodor, 1817-1903 Römische Geschichte — Band 3 etext3066 Huntington, Ellsworth, 1876-1947 The Red Man's Continent: a chronicle of aboriginal America etext3080 Maupassant, Guy de, 1850-1893 Original Short Stories — Volume 04 etext3127 Warner, Charles Dudley, 1829-1900 Being a Boy etext3137 Lincoln, Joseph Crosby, 1870-1944 The Rise of Roscoe Paine etext3167 Hardy, Thomas, 1840-1928 Wessex Poems and Other Verses etext3170 Morris, William, 1834-1896 Chants for Socialists etext3222 Honig, Winfried Mr. Honey's Correspondence Dictionary etext3235 Butler, Samuel, 1835-1902 A First Year in Canterbury Settlement etext3250 Twain, Mark, 1835-1910 How to Tell a Story and Other Essays etext3317 Gibbs, Philip, 1877-1962 Now It Can Be Told etext3369 Howells, William Dean, 1837-1920 A Hazard of New Fortunes — Volume 4 etext3388 Howells, William Dean, 1837-1920 The Man of Letters as a Man of Business etext3392 Howells, William Dean, 1837-1920 Cambridge Neighbors (from Literary Friends and Acquaintance) etext3495 Colum, Padraic, 1881-1972 The King of Ireland's Son etext3570 Wairy, Louis Constant, 1778-1845 Recollections of the Private Life of Napoleon — Volume 03 etext3577 Wairy, Louis Constant, 1778-1845 Recollections of the Private Life of Napoleon — Volume 10 etext3582 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 02 etext3584 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 04 etext3590 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 10 etext3601 Walpole, Hugh, Sir, 1884-1941 The Captives etext3631 Tolstoy, Leo, graf, 1828-1910 On the Significance of Science and Art etext3632 Collins, Wilkie, 1824-1889 Poor Miss Finch etext3706 Atherton, Gertrude Franklin Horn, 1857-1948 The Valiant Runaways etext3758 Sutphen, Van Tassel, 1861-1945 The Gates of Chance etext3835 etext3936 Theuriet, André, 1833-1907 A Woodland Queen — Volume 2 etext3939 Musset, Alfred de, 1810-1857 The Confession of a Child of the Century — Volume 1 etext4044 Follen, Eliza Lee Cabot, 1787-1860 What the Animals Do and Say etext4045 Melville, Herman, 1819-1891 Omoo etext4153 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Complete 1664 N.S. etext4198 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 73: April/May 1669 etext4254 Aubrey, John, 1626-1697 Miscellanies Upon Various Subjects etext4274 Gaskell, Elizabeth Cleghorn, 1810-1865 Wives and Daughters etext4310 Gissing, George, 1857-1903 Will Warburton etext4416 Meredith, George, 1828-1909 Sandra Belloni — Volume 4 etext4427 Meredith, George, 1828-1909 Evan Harrington — Volume 1 etext4438 Meredith, George, 1828-1909 Vittoria — Volume 4 etext4539 Curwood, James Oliver, 1878-1927 Back to God's Country and Other Stories etext4555 Symonds, John Addington, 1840-1893 Percy Bysshe Shelley etext4561 Bertrand, Huguette Espace Perdu; Poesie etext4645 Howells, William Dean, 1837-1920 The Landlord at Lion's Head — Complete etext4711 Appleton, Victor [pseud.] Tom Swift in the City of Gold, or, Marvelous Adventures Underground etext4755 Jordan, David Starr, 1851-1931 California and the Californians etext4762 Fox, William Fayette, 1836-1909 Civil Government of Virginia etext4770 Alcott, Louisa May, 1832-1888 Work: a Story of Experience etext4832 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 30: 1579-80 etext4863 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1590-92 etext5019 Polk, James K. (James Knox), 1795-1849 State of the Union Address etext5049 Bush, George W. (George Walker), 1946- State of the Union Address etext5053 Strindberg, August, 1849-1912 Plays by August Strindberg: Creditors. Pariah. etext5117 James, William, 1842-1910 Meaning of Truth etext5129 Kester, Vaughan, 1869-1911 The Prodigal Judge etext5179 Trollope, Thomas Adolphus, 1810-1892 A Siren etext5188 Haydn, Joseph, 1732-1809 String Quartet No. 57 in C Major, Op. 74, No. 1, FHE No. 28, Hoboken No. 72 etext5266 Park, Mungo, 1771-1806 Travels in the Interior of Africa — Volume 01 etext5273 Gray, Asa, 1810-1888 Darwiniana; Essays and Reviews Pertaining to Darwinism etext5329 Dom PoPHILO etext5369 Churchill, Winston, 1871-1947 Richard Carvel — Volume 05 etext5466 Ebers, Georg, 1837-1898 The Sisters — Complete etext5524 Ebers, Georg, 1837-1898 The Bride of the Nile — Volume 08 etext5531 Ebers, Georg, 1837-1898 A Thorny Path — Volume 02 etext5574 Ebers, Georg, 1837-1898 A Word, Only a Word — Volume 03 etext5605 etext5622 Harland, Marion, 1830-1922 At Last etext5691 Twain, Mark, 1835-1910 The Innocents Abroad — Volume 04 etext5722 Shaw, Bernard, 1856-1950 The Shewing-up of Blanco Posnet etext5730 Eddy, Sarah J. Friends and Helpers etext5738 Kyne, Peter B. (Peter Bernard), 1880-1957 Cappy Ricks etext5796 Sylvester, Charles Herbert Journeys Through Bookland, Vol. 2 etext5824 etext5838 Twain, Mark, 1835-1910 Sketches New and Old, Part 3. etext5872 Shaw, Bernard, 1856-1950 Cashel Byron's Profession etext5914 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 12 etext5918 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 16 etext5975 MacDonald, George, 1824-1905 Thomas Wingfold, Curate V3 etext5979 Hearn, Lafcadio, 1850-1904 Japan: an Attempt at Interpretation etext5995 Krehbiel, Henry Edward, 1854-1923 Chapters of Opera etext6000 Łubieński, Maciej hr. Ironia Pozorów etext6028 Roe, Edward Payson, 1838-1888 Opening a Chestnut Burr etext6041 Various Stories by English Authors: the Sea etext6043 Kyd, Thomas, 1558-1594 The Spanish Tragedie etext6090 Roe, Edward Payson, 1838-1888 What Can She Do? etext6096 Fielding, Henry, 1707-1754 Amelia — Volume 2 etext6110 Al-Raschid, Omar bey, -1910 Das hohe Ziel der Erkenntnis etext6179 Parker, Gilbert, 1862-1932 Pierre and His People, [Tales of the Far North], Complete etext6258 Parker, Gilbert, 1862-1932 Donovan Pasha, and Some People of Egypt — Volume 3 etext6271 Parker, Gilbert, 1862-1932 Embers, Complete etext6311 Roe, Edward Payson, 1838-1888 A Knight of the Nineteenth Century etext6355 Burroughs, John, 1837-1921 Locusts and Wild Honey etext6377 France, Anatole, 1844-1924 Thaïs etext6476 Hooker, J. D. (Joseph Dalton), 1817-1911 Himalayan Journals — Volume 1 etext6504 Schiller, Friedrich, 1759-1805 Der Parasit, oder die Kunst, sein Glück zu machen etext6538 Verne, Jules, 1828-1905 Vingt mille lieues sous les mers. English etext6566 Porter, Jane, 1776-1850 Thaddeus of Warsaw etext6622 Mabie, Hamilton Wright, 1845-1916 Legends That Every Child Should Know; a Selection of the Great Legends of All Times for Young People etext6673 Baden-Powell of Gilwell, Robert Stephenson Smyth Baden-Powell, Baron, 1857-1941 Young Knights of the Empire : Their Code, and Further Scout Yarns etext6685 etext6707 Sheridan, Richard Brinsley, 1751-1816 St. Patrick's day, or, the scheming lieutenant : a farce in one act etext6730 Tinsley, Henry C., 1834-1902 Observations of a Retired Veteran etext6763 Aristotle, 384 BC-322 BC Poetics. English etext6770 Schiller, Friedrich, 1759-1805 The Thirty Years War — Volume 01 etext6785 Schiller, Friedrich, 1759-1805 Wallenstein's Camp etext6850 Carey, Rosa Nouchette, 1840-1909 Esther : a book for girls etext6898 Forbes, Graham B The Boys of Columbia High on the Gridiron : or, the Struggle for the Silver Cup etext6945 Armour, Rebecca Agatha, 1846?-1891 Marguerite Verne etext7001 Morga, Antonio de, 1559-1636 History of the Philippine Islands etext7004 Scott, Walter, Sir, 1771-1832 The Antiquary — Volume 02 etext7068 Stifter, Adalbert, 1805-1868 Das Haidedorf etext7085 Hawthorne, Nathaniel, 1804-1864 Fanshawe etext7141 Howells, William Dean, 1837-1920 Suburban Sketches etext7184 Savigny, Annie Gregg A Heart-Song of To-day etext7234 Vries, Hugo de, 1848-1935 Species and Varieties, Their Origin by Mutation etext7235 Bacon, Delia, 1811-1859 The Bride of Fort Edward etext7308 Wells, H. G. (Herbert George), 1866-1946 The History of Mr. Polly etext7315 Shen, Kuo, 1031-1095 夢溪筆談, Volume 17-21 etext7318 Henty, G. A. (George Alfred), 1832-1902 The Bravest of the Brave — or, with Peterborough in Spain etext7378 Yonge, Charlotte Mary, 1823-1901 Chantry House etext7409 Pope, Alexander, 1688-1744 An Essay on Criticism etext7448 Yeats, W. B. (William Butler), 1865-1939 The Hour Glass etext7488 Chisholm, Louey Celtic Tales, Told to the Children etext7579 Loti, Pierre, 1850-1923 Images from Loti's Crysantheme etext7612 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Eugene Aram — Volume 04 etext7729 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Paul Clifford — Volume 02 etext7745 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Parisians — Volume 09 etext7798 Dufresny, Charles Rivière, 1654-1724 The Village Coquette etext7841 Smythe, E. Louise (Emma Louise) A Primary Reader etext7854 Rosencreutz, Christian Les Noces Chimiques etext7882 Ellis, Edward Sylvester, 1840-1916 The Life of Kit Carson etext7929 Balzac, Honoré de, 1799-1850 Parisians in the Country etext7944 Grillparzer, Franz, 1791-1872 Der Gastfreund etext7953 Aitken, Edward Hamilton, 1851-1909 Behind the Bungalow etext7961 Dodd, Anna Bowman In and out of Three Normady Inns etext7967 Rolland, Romain, 1866-1944 Jean-Christophe Journey's End etext7976 Dunne, Finley Peter, 1867-1936 Mr. Dooley's Philosophy etext7989 Phillips, David Graham, 1867-1911 The Great God Success etext8017 Anonymous The Bible, King James version, Book 17: Esther etext8030 Anonymous The Bible, King James version, Book 30: Amos etext8114 Charlotte Elizabeth, 1790-1846 Personal Recollections etext8116 Nordhoff, Charles, 1830-1901 The Communistic Societies of the United States etext8192 Various The Bakchesarian Fountain and Other Poems etext8196 Fuller, Henry Blake, 1857-1929 Under the Skylights etext8229 Anonymous The World English Bible (WEB): Exodus etext8256 Anonymous The World English Bible (WEB): Joel etext8277 Anonymous The World English Bible (WEB): Philippians etext8282 Anonymous The World English Bible (WEB): 2 Timothy etext8304 The Bible, Douay-Rheims, Book 04: Numbers etext8306 The Bible, Douay-Rheims, Book 06: Josue etext8310 The Bible, Douay-Rheims, Book 10: 2 Kings etext8333 The Bible, Douay-Rheims, Book 33: Osee etext8383 Edwards, Amelia Ann Blanford, 1831-1892 Monsieur Maurice etext8500 Strindberg, August, 1849-1912 Plays: Comrades; Facing Death; Pariah; Easter etext8554 Walton, George Lincoln, 1854-1941 Why Worry? etext8578 Dostoyevsky, Fyodor, 1821-1881 The Grand Inquisitor etext8579 Eddy, Daniel C. Daughters of the Cross: or Woman's Mission etext8635 Doyle, Arthur Conan, Sir, 1859-1930 The Hound of the Baskervilles etext8646 Ferguson, Adam, 1723-1816 An Essay on the History of Civil Society, Eighth Edition etext8647 Cooper, James Fenimore, 1789-1851 Afloat and Ashore etext8752 Burroughs, Edgar Rice, 1875-1950 Return of Tarzan etext8779 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Hell, Volume 01 etext8863 Dumas père, Alexandre, 1802-1870 Le Speronare etext8870 Calleja (pseudonym) La Mejor Cocinera etext8880 Cooper, James Fenimore, 1789-1851 Satanstoe etext8888 Cooper, James Fenimore, 1789-1851 The Wept of Wish-Ton-Wish etext8947 Various The Atlantic Monthly, Volume 01, No. 03, January, 1858 etext8977 Wells, H. G. (Herbert George), 1866-1946 The Wheels of Chance etext9006 Twain, Mark, 1835-1910 The Man That Corrupted Hadleyburg etext9081 Stark, Harriet The Bacillus of Beauty etext9099 Heyse, Paul, 1830-1914 Der Weinhüter etext9171 Ross, F. A. (Frederick Augustus), 1796-1883 Slavery Ordained of God etext9174 Various The Bay State Monthly — Volume 1, No. 1, January, 1884 etext9190 Wharton, Edith, 1862-1937 The Greater Inclination etext9298 Sinclair, May, 1863-1946 Life and Death of Harriett Frean etext9337 Conrad, Joseph, 1857-1924 Amy Foster etext9358 Conrad, Joseph, 1857-1924 Victory etext9378 Vance, Louis Joseph, 1879-1933 The Lone Wolf etext9394 Legge, James, 1815-1897 The Shih King etext9416 Hardy, Thomas, 1840-1928 A Changed Man and Other Tales etext9437 Hardy, Thomas, 1840-1928 Under the Greenwood Tree etext9474 Yonge, Charlotte Mary, 1823-1901 Cameos from English History, from Rollo to Edward II etext9531 Thackeray, William Makepeace, 1811-1863 John Leech's Pictures of Life and Character etext9541 Thackeray, William Makepeace, 1811-1863 The Wolves and the Lamb etext9569 Whittier, John Greenleaf, 1807-1892 Mountain Pictures and Others, from Poems of Nature, etext9757 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Leila or, the Siege of Granada, Book II. etext9783 Cox, Francis Augustus, 1783-1853 Female Scripture Biographies, Volume II etext9788 Cooper, James Fenimore, 1789-1851 Ned Myers etext9815 Hakluyt, Richard, 1552-1616 The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 08 etext9988 Maniates, Belle Kanaris Amarilly of Clothes-line Alley etext10010 Hayley, William, 1745-1820 The Eulogies of Howard etext10017 Various Punchinello, Volume 1, No. 23, September 3, 1870 etext10042 etext10074 Various The Mirror of Literature, Amusement, and Instruction etext10106 Various Punchinello, Volume 2, No. 34, November 19, 1870 etext10120 Hutton, Edward, 1875-1969 England of My Heart : Spring etext10147 Russell, Thomas Herbert, 1862-1947 America's War for Humanity etext10172 Beethoven, Ludwig van, 1770-1827 Minuet in G flat major and Valse Bluette etext10188 Harlan, Byron G. Two Rubes at the Vaudeville etext10192 Woottwell, Tom Interruptions etext10246 Trio, The All Star Sensation Jazz etext10253 Carnegie, Andrew, 1835-1919 Andrew Carnegie etext10315 Various The Persian Literature, Comprising The Shah Nameh, The Rubaiyat, The Divan, and The Gulistan, Volume 1 etext10354 Goethe, Johann Wolfgang von, 1749-1832 Die Laune des Verliebten etext10380 Wells, Philip P. Bible Stories and Religious Classics etext10388 Various A Collection of Old English Plays, Volume 1 etext10393 Guest, Edgar A. (Edgar Albert), 1881-1959 Making the House a Home etext10504 McGuinn, Roger Liverpool Gals etext10506 Valle-Inclan, Ramon del, 1866-1936 Romance de lobos, comedia barbara etext10513 Smith, R. Cadwallader On the Seashore etext10539 Browne, Theo. Stephenson In the Riding-School; Chats with Esmeralda etext10567 Jacobs, W. W. (William Wymark), 1863-1943 The Guardian Angel etext10584 Beach, Charles Amory Air Service Boys over the Atlantic etext10588 Various Seeing Europe with Famous Authors, Volume 1 etext10626 Various The Atlantic Monthly, Volume 02, No. 10, August, 1858 etext10628 Keeling, Annie E. Andrew Golding etext10646 McGuinn, Roger Roddy McCorley etext10659 Blackwood, Algernon, 1869-1951 Three More John Silence Stories etext10699 Various Character Writings of the 17th Century etext10707 Locke, William John, 1863-1930 A Christmas Mystery etext10710 Hobson, J. A. (John Atkinson), 1858-1940 Problems of Poverty etext10899 Douglas, O., 1877-1948 Olivia in India etext10909 Hartzenbusch, Juan Eugenio, 1806-1880 Los Amantes de Teruel etext10913 Le Gallienne, Richard, 1866-1947 English Poems etext10948 Stockton, Frank Richard, 1834-1902 The Stories of the Three Burglars etext10966 Hodgson, William Hope, 1877-1918 The Ghost Pirates etext11043 Cohen, Octavus Roy, 1891-1959 Midnight etext11070 Pérez Galdós, Benito, 1843-1920 La Fontana de Oro etext11071 Vaca, Alvar Núñez Cabeza de Naufragios de Alvar Núñez Cabeza de Vaca etext11104 Wharton, Edith, 1862-1937 In Morocco etext11107 Anonymous Theobald, the Iron-Hearted etext11124 Terry, Jean F. (Jean Finlay), 1865-1951 Northumberland Yesterday and To-day etext11155 Various The Atlantic Monthly, Volume 07, No. 42, April, 1861 etext11157 Various The Atlantic Monthly, Volume 08, No. 46, August, 1861 etext11187 Jacobs, W. W. (William Wymark), 1863-1943 Four Pigeons etext11291 Zujovic, Jovan, 1856-1936 Камено доба etext11313 McMaster, John Bach, 1852-1932 A School History of the United States etext11332 Various The Mirror of Literature, Amusement, and Instruction etext11409 Cooper, James Fenimore, 1789-1851 The Red Rover etext11416 Pye, Charles, 1777-1864 A Description of Modern Birmingham etext11434 Ségur, Sophie, comtesse de, 1799-1874 Pauvre Blaise etext11499 Bain, F. W. (Francis William), 1863-1940 An Essence of the Dusk, 5th Edition etext11557 Morley, John, 1838-1923 On Compromise etext11568 Various The Mirror of Literature, Amusement, and Instruction etext11616 Various The Mirror of Literature, Amusement, and Instruction etext11634 Wallas, Graham, 1858-1932 Human Nature in Politics etext11649 Various Scientific American Supplement, No. 799, April 25, 1891 etext11665 Russell, George William Erskine, 1853-1919 Collections and Recollections etext11679 Burke, Kathleen, 1887-1958 The White Road to Verdun etext11688 Abbott, Jacob, 1803-1879 History of Julius Caesar etext11700 Le Fanu, Joseph Sheridan, 1814-1873 J. S. Le Fanu's Ghostly Tales, Volume 2 etext11769 Bonaparte, Pierre-Napoléon, 1815-1881 Un mois en Afrique etext11797 Human Genome Project Chromosome X etext11798 Human Genome Project Chromosome Y etext11853 Library of Congress. Copyright Office U.S. Copyright Renewals, 1976 January - June etext11873 Swinburne, T. R. A Holiday in the Happy Valley with Pen and Pencil etext11979 Cowper, William, 1731-1800 The Diverting History of John Gilpin etext12040 etext12045 Waters, Clara Erskine Clement, 1834-1916 Women in the fine arts, from the Seventh Century B.C. to the Twentieth Century A.D. etext12103 Potter, Beatrix, 1866-1943 The Tale of Mrs. Tiggy-Winkle etext12159 Jacobs, W. W. (William Wymark), 1863-1943 Easy Money etext12164 Richmond, Grace S. (Grace Smith), 1866-1959 Strawberry Acres etext12186 Mackey, Albert G. The Principles of Masonic Law etext12204 Jacobs, W. W. (William Wymark), 1863-1943 Bill's Lapse etext12230 Bonaparte, Napoléon, 1769-1821 Oeuvres de Napoléon Bonaparte, Tome I. etext12300 Ford, Paul Leicester, 1865-1902 The True George Washington [10th Ed.] etext12413 Lampman, Archibald, 1861-1899 Among the Millet and Other Poems etext12430 Calthrop, S.R. A Lecture on Physical Development, and its Relations to Mental and Spiritual Development, delivered before the American Institute of Instruction, at their Twenty-Ninth Annual Meeting, in Norwich, Conn., August 20, 1858 etext12465 Various Punch, or the London Charivari, Volume 146, January 21, 1914 etext12473 The German Classics of the Nineteenth and Twentieth Centuries, Volume 06 etext12510 Borrow, George Henry, 1803-1881 Targum etext12531 Various The Mirror of Literature, Amusement, and Instruction etext12550 Various The Mirror of Literature, Amusement, and Instruction etext12586 Chafer, Lewis Sperry, 1871-1952 Satan etext12590 Hornung, E. W. (Ernest William), 1866-1921 The Shadow of the Rope etext12655 Popular Mechanics Co. The Boy Mechanic: Volume 1 etext12679 Janes, Don Carlos A Trip Abroad etext12692 Hancock, H. Irving (Harrie Irving), 1868-1922 The High School Captain of the Team etext12708 etext12782 Bonaparte, Napoléon, 1769-1821 Oeuvres de Napoléon Bonaparte, Tome II. etext12792 Jones, Erasmus W., 1817- The Young Captives: A Story of Judah and Babylon etext12818 etext12838 Linnankoski, Johannes, 1869-1913 Kirot etext12840 Piquer, D. Andres Logica etext12870 Hayes, Clair W. (Clair Wallace), 1887- The Boy Allies on the Firing Line etext12911 Murdock, Charles A. (Charles Albert), 1841-1928 A Backward Glance at Eighty etext12933 Hubbard, Elbert, 1856-1915 Little Journeys to the Homes of the Great - Volume 01 etext12979 Ségur, Sophie, comtesse de, 1799-1874 Le Général Dourakine etext12987 Bang, Herman, 1857-1912 Det graa hus etext13041 Ibsen, Henrik, 1828-1906 Vildanden etext13062 Various Blackwood's Edinburgh Magazine — Volume 53, No. 328, February, 1843 etext13169 Swift, Jonathan, 1667-1745 The Prose Works of Jonathan Swift, D.D. — Volume 09 etext13174 Canth, Minna, 1844-1897 Sylvi; Kovan onnen lapsia etext13191 etext13253 Various Punch, or the London Charivari, Volume 100, February 21, 1891 etext13285 Masham, Lady Damaris Cudworth, 1659-1708 Occasional Thoughts in Reference to a Vertuous or Cristian life etext13294 Orr, Charles Ebert, 1861-1933 Food for the Lambs; or, Helps for Young Christians etext13316 Boethius, Anicius Manlius Severinus, 480-525? The Theological Tractates and The Consolation of Philosophy etext13357 Watson, W. Cactus Culture for Amateurs etext13366 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels — Volume 08 etext13379 Finley, Martha, 1828-1909 The Two Elsies etext13383 Zévaco, Michel, 1860-1918 Les Pardaillan — Tome 03, La Fausta etext13443 Various Scientific American Supplement, No. 795, March 28, 1891 etext13452 Hauff, Wilhelm, 1802-1827 Kontrovers-Predigt über H. Clauren und den Mann im Mond etext13459 Ouida, 1839-1908 The Waters of Edera etext13464 etext13477 Hare, William Loftus Watts (1817-1904) etext13507 Quiroga, Horacio, 1878-1937 Cuentos de Amor de Locura y de Muerte etext13519 Blasco Ibáñez, Vicente, 1867-1928 La Tierra de Todos etext13540 Various Notes and Queries, Number 53, November 2, 1850 etext13542 Barbour, Ralph Henry, 1870-1944 Left Tackle Thayer etext13595 Conscience, Hendrik, 1812-1883 Avondstonden etext13604 Park, Marmaduke Thrilling Stories Of The Ocean etext13609 Macfarlane, Alexander, 1851-1913 Vector Analysis and Quaternions etext13621 Swift, Jonathan, 1667-1745 The Poems of Jonathan Swift, D.D., Volume 2 etext13642 Various The Journal of Negro History, Volume 1, January 1916 etext13732 Dehmel, Paula, 1862-1918 Das liebe Nest etext13748 Coolidge, Calvin, 1872-1933 Have faith in Massachusetts; 2d ed. etext13805 Heiberg, Hermann, 1840-1910 Todsünden etext13811 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Peter Stuyvesant, the Last Dutch Governor of New Amsterdam etext13844 Scott, Leroy, 1875-1929 No. 13 Washington Square etext13845 Lassila, Maiju, 1868-1918 Manasse Jäppinen etext13849 Aho, Juhani, 1861-1921 Panu: Näytelmä etext13878 Holmes, Mary Jane, 1825-1907 The English Orphans etext13918 Fea, Allan, 1860-1956 Secret Chambers and Hiding Places etext13943 Saintsbury, George, 1845-1933 Political Pamphlets etext13945 Stowe, Harriet Beecher, 1811-1896 Sunny Memories Of Foreign Lands, Volume 1 etext13946 Hornibrook, Isabel Camp and Trail etext14031 Erasmus, Desiderius, 1469-1536 Colloquies of Erasmus, Volume I. etext14045 Capes, Bernard Edward Joseph, 1854-1918 At a Winter's Fire etext14054 Thurston, Katherine Cecil, 1875-1911 Max etext14107 Falkner, John Meade, 1858-1932 The Lost Stradivarius etext14126 Ward, Humphry, Mrs., 1851-1920 The Marriage of William Ashe etext14161 Kataja, Väinö, 1867-1914 Koskenlaskijan morsian etext14260 The Great Events by Famous Historians, Volume 06 etext14294 Morrison, John, 1856- New Ideas in India During the Nineteenth Century etext14308 Blasco Ibáñez, Vicente, 1867-1928 El préstamo de la difunta etext14324 Various Lippincott's Magazine of Popular Literature and Science etext14344 Various Punch, or the London Charivari, Volume 102, February 27, 1892 etext14447 Holland, Thomas Erskine, Sir, 1835-1926 Letters to "The Times" upon War and Neutrality (1881-1920) etext14477 Dillon, Emile Joseph, 1855-1933 The Inside Story of the Peace Conference etext14545 Rhodes, Eugene Manlove, 1869-1934 Copper Streak Trail etext14568 Anonymous Sir Gawayne and the Green Knight etext14608 May, Sophie, 1833-1906 Jimmy, Lucy, and All etext14632 Hill, Grace Livingston, 1865-1947 The Mystery of Mary etext14712 Norris, Frank, 1870-1902 Vandover and the Brute etext14780 Paley, William, 1743-1805 Evidence of Christianity etext14783 Anonymous The Twelve Tables etext14831 Alger, Horatio, 1832-1899 Andy Grant's Pluck etext14914 Dundonald, Thomas Cochrane, Earl of, 1775-1860 Narrative of Services in the Liberation of Chili, Peru and Brazil, etext14952 etext15007 Stewart, Anna Bird The Belles of Canterbury etext15024 Sten, Daniel [pseud.], 1846-1930 "Sämre folk" etext15039 Tissandier, Albert, 1839-1906 Reis in Utah en Arizona etext15106 Thomas, C. H. Origin of the Anglo-Boer War Revealed (2nd ed.) etext15147 Beeton, Mrs. (Isabella Mary), 1836-1865 Beeton's Book of Needlework etext15195 Daviess, Maria Thompson, 1872-1924 Rose of Old Harpeth etext15200 Ruskin, John, 1819-1900 Selections From the Works of John Ruskin etext15206 Pérez Galdós, Benito, 1843-1920 Torquemada en la hoguera etext15218 etext15254 Wellington, Arthur Wellesley, Duke of, 1769-1852 Maxims and Opinions of Field-Marshal His Grace the Duke of Wellington, Selected From His Writings and Speeches During a Public Life of More Than Half a Century etext15277 Kettle, T. M. (Thomas Michael), 1880-1916 The Open Secret of Ireland etext15319 Young, Andrew W. The Government Class Book etext15390 Longfellow, Henry Wadsworth, 1807-1882 Evangeline etext15509 Dafoe, J. W. (John Wesley), 1866-1944 Laurier: A Study in Canadian Politics etext15532 Alarcón, Pedro Antonio de, 1833-1891 Novelas Cortas etext15587 Black, William, 1841-1898 Macleod of Dare etext15588 Lie, Jonas Lauritz Idemil, 1833-1908 The Pilot and his Wife etext15683 Obrien, Francis P. The High School Failures etext15698 Woodward, A. A Review of Uncle Tom's Cabin etext15700 Burke, Edmund, 1729-1797 The Works of the Right Honourable Edmund Burke, Vol. 04 (of 12) etext15712 Bennett, Arnold, 1867-1931 Hugo etext15728 Abbott, Eleanor Hallowell, 1872-1958 The Indiscreet Letter etext15739 Grotius, Hugo, 1583-1645 De veritate religionis Christianae. French etext15783 Wigström, Eva, 1832-1901 Utan anförare etext15808 Benson, Robert Hugh, 1871-1914 The History of Richard Raynal, Solitary etext15811 Ponson du Terrail, 1829-1871 Le serment des hommes rouges etext15845 Balagtas, Francisco, 1788-1862 Florante at Laura etext15918 Various The Great Round World and What Is Going On In It, Vol. 1, No. 41, August 19, 1897 etext15919 Various The Great Round World and What Is Going On In It, Vol. 1, No. 42, August 26, 1897 etext15952 Wassermann, Jakob, 1873-1934 Die Prinzessin Girnara etext15967 Eurén, Gustaf Erik, 1818-1872 Suomen maan Meripedot etext15996 Various Notes and Queries, Number 32, June 8, 1850 etext16123 Various St. Nicholas Magazine for Boys and Girls, Vol. 5, Nov 1877-Nov 1878 etext16170 Halleck, Henry Wager, 1815-1872 Elements of Military Art and Science etext16190 Dante Alighieri, 1265-1321 La Divina Comèdia: Complete etext16195 Campbell, Dudley M., 1836-1906 A Sketch of the History of Oneonta etext16274 Peters, de Witt C. The Life and Adventures of Kit Carson, the Nestor of the Rocky Mountains, from Facts Narrated by Himself etext16319 Campo-Arana, José Impresiones, Poesías etext16329 Whitney, A. D. T. (Adeline Dutton Train), 1824-1906 The Other Girls etext16365 Lassila, Maiju, 1868-1918 Liika viisas etext16369 Perry, Bliss, 1860-1954 Fishing with a Worm etext16441 Digby, Kenelm, 1603-1665 The Closet of Sir Kenelm Digby Knight Opened etext16457 Verne, Jules, 1828-1905 All Around the Moon etext16536 Holinshed, Raphael, -1580? Chronicles (1 of 6): The Historie of England (4 of 8) etext16552 McClung, Nellie L., 1873-1951 The Next of Kin etext16557 King, Charles, 1844-1933 The Deserter etext16596 Wallace, Dillon, 1863-1939 Ungava Bob etext16616 Russell, George William, 1867-1935 The Nuts of Knowledge etext16632 Guest, Edgar A. (Edgar Albert), 1881-1959 Over Here etext16642 Kann, Réginald, 1876-1925 Reizen en vechten in het Zuiden van de Philippijnen etext16646 Browning, Elizabeth Barrett, 1806-1861 The Letters of Elizabeth Barrett Browning, Volume II etext16687 Ingman, Alfred Emil, 1860-1917 Latvasaaren kuninkaan hovilinna etext16724 Johnstone, James Johnstone, chevalier de, 1719-1800 The Campaign of 1760 in Canada etext16751 McGuffey, William Holmes, 1800-1873 McGuffey's Sixth Eclectic Reader etext16760 Holinshed, Raphael, -1580? Chronicles of England, Scotland and Ireland (2 of 6): England (4 of 12) etext16765 Procopius History of the Wars, Books III and IV etext16782 Jefferson, Thomas, 1743-1826 Memoir, Correspondence, And Miscellanies, From The Papers Of Thomas Jefferson, Volume 2 etext16814 Barrès, Maurice, 1862-1923 Le culte du moi 3 etext16871 Bower, B. M., 1874-1940 Skyrider etext16901 Achard, Amédée, 1814-1875 Madame Rose; Pierre de Villerglé etext16903 Dyson, Edward, 1865-1931 The Gold-Stealers etext16910 Parmele, Mary Platt, 1843-1911 A Short History of France etext16939 Bahá'u'lláh, 1817-1892 Gems of Divine Mysteries etext16994 Thicknesse, Philip, 1719-1792 A Year's Journey through France and Part of Spain, Volume 2 etext17057 Durham, Victor G. The Submarine Boys and the Spies etext17098 Perrault, Charles, 1628-1703 Riquet à la Houppe etext17107 Dibdin, Thomas Frognall, 1776-1847 A Bibliographical, Antiquarian and Picturesque Tour in France and Germany, Volume Two etext17115 Various Fruits of Toil in the London Missionary Society etext17166 Weed, George Ludington, 1828-1904 A Life of St. John for the Young etext17173 Barr, Amelia Edith Huddleston, 1831-1919 The Bow of Orange Ribbon etext17174 Leblond de Brumath, Adrien, 1854-1939 The Makers of Canada: Bishop Laval etext17176 Bennett, Arnold, 1867-1931 The Ghost etext17180 etext17195 Hubbard, Elbert, 1856-1915 A Message to Garcia etext17246 Dawson, William J., 1854-1928 The Quest of the Simple Life etext17256 Various Chambers's Edinburgh Journal, No. 427 etext17294 Various Essays in Liberalism etext17347 Swinburne, Algernon Charles, 1837-1909 Sonnets, and Sonnets on English Dramatic Poets (1590-1650) etext17369 Hills, John David The Fifth Leicestershire etext17448 Rorie, David, 1867-1946 The Auld Doctor and other Poems and Songs in Scots etext17528 Stanley, Henry M. (Henry Morton), 1841-1904 Stanley's tocht ter opsporing van Livingstone etext17544 Ader, Guillaume, 1575?-1628 Lou catounet gascoun etext17546 Henty, G. A. (George Alfred), 1832-1902 The Lion of Saint Mark etext17557 Zola, Émile, 1840-1902 Son Excellence Eugène Rougon etext17558 Tupper, Martin Farquhar, 1810-1889 My Life as an Author etext17584 Palmer, Robert Stafford Arthur, 1888-1916 Letters from Mesopotamia in 1915 and January, 1916, from Robert Palmer, who was killed in the Battle of Um El Hannah, June 21, 1916, aged 27 years etext17588 Pearson, Francis B. (Francis Bail), 1853- The Vitalized School etext17597 Jókai, Mór, 1825-1904 Halil the Pedlar etext17609 Young, John H. Our Deportment etext17646 Gourmont, Remy de, 1858-1915 Sixtine etext17651 Ibsen, Henrik, 1828-1906 Helgelannin sankarit etext17690 Lynde, Francis, 1856-1930 The Master of Appleby etext17792 Freeman, Mary Eleanor Wilkins, 1852-1930 The Jamesons etext17814 Aristophanes, 446? BC-385? BC Lysistrata, Greek etext17826 Anonymous Memoir of Old Elizabeth, A Coloured Woman etext17945 Twain, Mark, 1835-1910 Mark Twain: Tri Noveloj etext17961 Charlotte Elizabeth, 1790-1846 Kindness to Animals etext18010 Ogilvy, Maud Marie Gourdon etext18019 Brazil, Angela, 1868-1947 The Luckiest Girl in the School etext18040 Fresenborg, Bernard, 1847- Thirty Years In Hell etext18091 Holley, Marietta, 1836-1926 Samantha at the World's Fair etext18118 Hubbard, Elbert, 1856-1915 Little Journeys to the Homes of the Great - Volume 04 etext18146 Various The Children's Portion etext18191 Lightfoot, Joseph Barber, 1828-1889 Essays on the work entitled "Supernatural Religion" etext18208 Chevalier, H. Émile (Henri Émile), 1828-1879 L'enfer et le paradis de l'autre monde etext18233 O'Donnell, Elliott, 1872-1965 Animal Ghosts etext18271 Dumas père, Alexandre, 1802-1870 Georges etext18281 Anonymous An Account of the Proceedings on the Trial of Susan B. Anthony, on the Charge of Illegal Voting etext18284 Moore, Aubertine Woodward, 1841-1929 For Every Music Lover etext18310 Bandelier, Adolph Francis Alphonse, 1840-1914 The Delight Makers etext18311 Shakespeare, William, 1564-1616 Le conte d'hiver etext18313 Shakespeare, William, 1564-1616 Troïlus et Cressida etext18314 Mahan, A. T. (Alfred Thayer), 1840-1914 Types of Naval Officers etext18321 Dumas père, Alexandre, 1802-1870 Acté etext18356 Henty, G. A. (George Alfred), 1832-1902 Orange and Green etext18396 The Modern Scottish Minstrel, Volume I. etext18453 Various The Continental Monthly, Vol. 5, No. 1, January, 1864 etext18454 Chevalier, H. Émile (Henri Émile), 1828-1879 L'île de sable etext18467 Pierce, Ray Vaughn, 1840-1914 The People's Common Sense Medical Adviser in Plain English etext18489 Richmond, Grace S. (Grace Smith), 1866-1959 A Court of Inquiry etext18614 etext18698 Betts, George Herbert, 1868-1934 The Recitation etext18746 Various The Great Round World and What Is Going On In It, Vol. 2, No. 24, June 16, 1898 etext18778 Raine, Allen, 1863-1908 Garthowen etext18811 MacDonald, George, 1824-1905 The Light Princess and Other Fairy Stories etext18878 United States. Council of National Defense. Highway Transport Committee Return-Loads Bureaus To Save Waste In Transportation etext18963 O'Brien, Jack Into the Jaws of Death etext18967 Lespérance, John, 1838-1891 The Bastonnais etext18968 Myrtle, Harriet, 1811?-1876 Adventure of a Kite etext18972 Voltaire, 1694-1778 Zadig etext18985 Franklin, John, 1786-1847 Narrative of a Journey to the Shores of the Polar Sea, in the years 1819-20-21-22, Volume 2 etext12721 Shakespeare, William, 1564-1616 Sonnet #55 etext19002 Carroll, Lewis, 1832-1898 Alice's Adventures Under Ground etext19022 United States. Federal Bureau of Investigation The Science of Fingerprints etext19049 Newton, Joseph Fort, 1876-1950 The Builders etext19067 Piper, H. Beam, 1904-1964 Police Operation etext19071 Norris, Zoe Anderson The Way of the Wind etext19075 Aristophanes, 446? BC-385? BC Aristophane; Traduction nouvelle, Tome premier etext19085 Walpole, Hugh, Sir, 1884-1941 The Prelude to Adventure etext19086 Verne, Jules, 1828-1905 Vijf weken in een luchtballon etext19106 Cramer, Ambrosio Reconocimiento del fuerte del Carmen del Rio Negro etext19136 Leslie, Emma Hayslope Grange etext19146 Townsend, George Alfred, 1841-1914 The Entailed Hat etext19179 Miller, Kelly, 1863-1939 Kelly Miller's History of the World War for Human Rights etext19181 Various Chambers's Edinburgh Journal, No. 439 etext19230 Boyton, Paul, 1848-1914 The Story of Paul Boyton etext19236 Japan Will Turn Ablaze! etext19239 `Abdu'l-Bahá, 1844-1921 Bahá’í World Faith etext19249 France, Anatole, 1844-1924 La vie littéraire etext19298 Shoghi Effendi, 1897-1957 The World Order of Bahá’u’lláh etext19326 Vereshchagin, Vasilii Vasilevich, 1842-1904 Van Orenburg naar Samarkand etext19369 Barr, Robert, 1850-1912 The Triumphs of Eugène Valmont etext19374 Lajula, Osmo, 1874-1935 Valkaman perhe etext19400 Maspero, G. (Gaston), 1846-1916 History Of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 1 (of 12) etext19472 Lynde, Francis, 1856-1930 Branded etext19513 Verne, Jules, 1828-1905 A Journey to the Center of the Earth etext19518 Dorsey, James Owen, 1848-1895 Siouan Sociology etext19551 Gorham, J.C. Alice in Wonderland etext19572 Murray, Andrew, 1828-1917 Absolute Surrender and Other Addresses etext19588 Dagron, Prudent René-Patrice, 1819-1900 La poste par pigeons voyageurs etext19611 Wassermann, Jakob, 1873-1934 Der goldene Spiegel etext19618 Aesop, 620 BC-563 BC Aesop's Fables - Volume 03 etext19700 Bonaparte, Napoléon, 1769-1821 Tendresses impériales etext19732 Caine, Hall, Sir, 1853-1931 The Eternal City etext19744 Surányi, Miklós, 1882-1936 A mester etext19757 United States. Council of National Defense. Highway Transport Committee 'Return Loads' to Increase Transport Resources by Avoiding Waste of Empty Vehicle Running. etext19774 Kohl, Johann Georg, 1808-1878 Geschiedenis der Europeesche Volken etext19796 Descartes, René, 1596-1650 Discourse on the Method of Rightly Conducting One's Reason and of Seeking Truth in the Sciences etext19803 Ibsen, Henrik, 1828-1906 Popolmalamiko etext19857 Scott, Frederick George, 1861-1944 The Great War As I Saw It etext19891 Brocherel, Jules, 1871-1954 De Reis van Prins Scipio Borghese naar de Hemelsche Bergen etext19901 Williamson, A. M. (Alice Muriel), 1869-1933 The Castle Of The Shadows etext19940 Wassermann, Jakob, 1873-1934 Die ungleichen Schalen etext20045 Kafka, Franz, 1883-1924 Großer Lärm etext20121 etext20128 Biriukov, Pavel Ivanovich, 1860-1931 Tolstoi's leven etext20309 Hope, Laura Lee Bunny Brown and His Sister Sue in the Sunny South etext20316 Erkko, J. H. (Juhana Heikki), 1849-1906 Kootut teokset IV: Kertomuksia ja kirjoitelmia etext20352 Lemon, Mark, 1809-1870 The Jest Book etext20355 Gibbon, Perceval, 1879-1926 Vrouw Grobelaar and Her Leading Cases etext20374 Hamilton, Frederick W. (Frederick William), 1860-1940 Capitals etext20397 Nervander, Emil, 1840-1914 Jouluvieraita etext20407 Various Notes and Queries, Number 184, May 7, 1853 etext20429 Bartlett, Frederick Orin, 1876-1945 The Seventh Noon etext20448 Burroughs, John, 1837-1921 The Wit of a Duck and Other Papers etext20453 Stretton, Hesba, 1832-1911 The Christmas Child etext20476 etext20478 Beard, Charles, 1827-1888 Strong Souls etext20498 Molière, 1622-1673 Le Médicin Malgré Lui etext20504 Sigourney, Lydia Howard, 1791-1865 Man of Uz, and Other Poems etext20531 Various Up To Date Business etext20543 Blyth, James Edward FitzGerald and "Posh" etext20612 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Fort Amity etext20645 Spencer, Anna Garlin, 1851-1931 The Family and it's Members etext20655 McBride, Herbert Wes The Emma Gees etext20691 Balzac, Honoré de, 1799-1850 Sarrasine etext20737 Chalmers, Amy D. V. Madge Morton's Secret etext20776 Dillmont, Thérèse de, 1846-1890 Encyclopedia of Needlework etext20825 Anonymous Bulletin de Lille, 1916.06 etext20832 Francis, Stella M. Campfire Girls at Twin Lakes etext20836 Stockton, Frank Richard, 1834-1902 Ting-a-ling etext20856 Fairman, Paul W., 1916-1977 Ten From Infinity etext20952 A Jolly Jingle-Book etext21006 Ogg, Frederic Austin, 1878-1951 The Governments of Europe etext21020 The Little Clay Cart etext21047 Various The Nursery, No. 109, January, 1876, Vol. XIX. etext21050 Reed, Talbot Baines, 1852-1893 The Master of the Shell etext21064 Collingwood, Harry, 1851-1922 A Middy in Command etext21091 Morley, John, 1838-1923 The Life of William Ewart Gladstone, Vol. 1 (of 3) etext21171 Bunyan, John, 1628-1688 The Pilgrim's Progress etext21193 Various Chambers's Edinburgh Journal, No. 448 etext21211 Gray, John Silverpoints etext21312 Fenn, George Manville, 1831-1909 Glyn Severn's Schooldays etext21351 Jackson, Percival The Prayer Book Explained etext21356 Fenn, George Manville, 1831-1909 Nat the Naturalist etext21405 Kingston, William Henry Giles, 1814-1880 The Loss of the Royal George etext21423 Serao, Matilde, 1865-1927 L'infedele etext21453 Kingston, William Henry Giles, 1814-1880 Captain Mugford etext21454 Kingston, William Henry Giles, 1814-1880 The Seven Champions of Christendom etext21458 Kingston, William Henry Giles, 1814-1880 Charley Laurel etext21499 Graham, Stephen, 1884-1975 Europe—Whither Bound? etext21585 Burnett, Frances Hodgson, 1849-1924 The Secret Garden etext21730 Ballantyne, R. M. (Robert Michael), 1825-1894 Erling the Bold etext21745 Ballantyne, R. M. (Robert Michael), 1825-1894 The Life of a Ship etext21793 Birrell, Augustine, 1850-1933 Obiter Dicta etext21903 Atherton, Gertrude Franklin Horn, 1857-1948 The Californians etext21909 Blackwell, Sarah Ellen A Military Genius etext21937 Sigurjónsson, Jóhann, 1880-1919 Modern Icelandic Plays etext21966 Murger, Henry, 1822-1861 Propos de ville et propos de théâtre etext21967 Donkersley, J. Athaliah etext22000 Trollope, Anthony, 1815-1882 Kept in the Dark etext22024 Barrili, Anton Giulio, 1836-1908 L'olmo e l'edera etext22060 Henty, G. A. (George Alfred), 1832-1902 The Young Franc Tireurs etext22085 Bose, Jagadis Chandra, Sir, 1858-1937 Sir Jagadis Chunder Bose etext22139 Ingimundur Sveinsson, 1873-1926 Leiðarvísir í ástamálum etext22141 Purves, George Tybout Joy in Service; Forgetting, and Pressing Onward; Until the Day Dawn etext22151 etext22157 Charlier, Carl Vilhelm Ludvig, 1862-1934 Lectures on Stellar Statistics etext22159 Ibsen, Henrik, 1828-1906 Gengangere. German etext22189 Trotter, I. Lilias Parables of the Cross etext22196 Adams, Samuel Hopkins, 1871-1958 Little Miss Grouch etext4948 Osbourne, Lloyd, 1868-1947 Love, the Fiddler etext22249 Ford, Sewell, 1868-1946 Shorty McCabe etext22274 Murray, David Christie, 1847-1907 Julia And Her Romeo: A Chronicle Of Castle Barfield etext22288 Petrucci, Raphaël, 1872-1917 Chinese Painters etext22336 Buchanan's Journal of Man, February 1887 etext22358 Hecht, Ben, 1894-1964 Erik Dorn etext22376 Meyer, F. B. (Frederick Brotherton), 1847-1929 Love to the Uttermost etext22393 Brougnes, Auguste Bases pour servir aux entreprises de colonisation dans les territoires nationaux de la Republique Argentine etext22402 Various Lippincott's Magazine of Popular Literature and Science etext22444 Dickinson, Emily, 1830-1886 Selected Poems of Emily Dickinson etext22536 etext22539 Unknown Rock A Bye Library: A Book of Fables etext22547 Stratemeyer, Edward, 1862-1930 The Rover Boys on Treasure Isle etext22558 La Harpe, Jean-François de, 1739-1803 Abrégé de l'Histoire Générale des Voyages (Tome premier) etext22571 Standish, Burt L., 1866-1945 Frank Merriwell's Bravery etext22573 Various Punch, or the London Charivari, Vol. 146, February 11, 1914 etext22584 DeLeon, T. C. Four Years in Rebel Capitals etext22587 Northern Nut Growers Association Thirty-Fourth Annual Report 1943 etext22626 Sprague, Charles, 1791-1875 An Ode Pronounced Before the Inhabitants of Boston, September the Seventeenth, 1830, etext22660 Gautier, Théophile, 1811-1872 King Candaules etext22693 Lang, Jeanie A Book of Myths etext22718 Rose, Elise Whitlock Cathedrals and Cloisters of the South of France, Volume 1 etext22725 Various Punch, or the London Charivari, Vol. 158, 1920-03-31 etext22726 Lawrence, D. H. (David Herbert), 1885-1930 New Poems etext22729 Lima, João de Figueiredo Maio e, 1779-1851 Testamento Poetico-Anachreontico etext22746 The Copy/South Dossier etext22830 Anonymous La terrible et merveilleuse vie de Robert le Diable etext22920 Various Le procès des Templiers etext22956 Abbott, Jacob, 1803-1879 Rollo in Paris etext22959 Julian, George W. Political Recollections etext22983 Abbott, Eleanor Hallowell, 1872-1958 Molly Make-Believe etext23000 Trollope, Anthony, 1815-1882 Orley Farm etext23007 Chaplin, Heman White, 1847-1924 The Village Convict etext23025 Henney, Nella Braddy, 1894- The Book of Business Etiquette etext23168 Murray, W. H. H. (William Henry Harrison), 1840-1904 A Ride With A Mad Horse In A Freight-Car etext23182 De Forest, John William, 1826-1906 The Brigade Commander etext23184 Flagg, Edmund, 1815-1890 Monte-Cristo's Daughter etext23196 Morley, Christopher, 1890-1957 Songs for a Little House etext23278 Long, Helen Beecher Janice Day at Poketown etext23344 Dickens, Charles, 1812-1870 The Magic Fishbone etext23520 La Brète, Jean de, 1854-1945 Mon oncle et mon curé; Le voeu de Nadia etext23538 Pound, Ezra, 1885-1972 Hugh Selwyn Mauberley etext23580 etext23589 Régnier, Henri de, 1864-1936 La cité des eaux etext23596 Molard, Étienne, 1760?-1825 Dictionnaire grammatical du mauvais langage etext23619 Leighton, John, 1822-1912 The Royal Picture Alphabet etext23626 Mastin, John, 1865- The Chemistry, Properties and Tests of Precious Stones etext23653 Meade, L. T., 1854-1914 How It All Came Round etext23702 Smith, Francis Hopkinson, 1838-1915 A List To Starboard etext23745 Quick, Herbert, 1861-1925 Aladdin & Co. etext23769 Cox, Joseph Bradford, 1840- Report on Surgery to the Santa Clara County Medical Society etext23773 Optic, Oliver, 1822-1897 The Coming Wave etext23817 Ji, Yun, 1724-1805 閱微草堂筆記 etext23838 Xiong, Damu, 16th cent. 楊家將 etext23846 Spicer, William A., 1845-1913 The Flag Replaced on Sumter etext23853 Reid, Mayne, 1818-1883 Ran Away to Sea etext23878 Tianhuazangzhuren 人間樂 etext23966 Johnson, E. Pauline, 1861-1913 The Song My Paddle Sings etext23976 London, Jack, 1876-1916 White Fang etext23990 Young, E. H. (Emily Hilda), 1880-1949 Moor Fires etext23996 Winter, Alice Ames, 1865-1944 Jewel Weed etext24030 Church, Alfred John, 1829-1912 Stories From Livy etext24048 Anonymous 禮記 etext24054 Garrett, Randall, 1927-1987 Dead Giveaway etext24063 etext24091 Garrett, Randall, 1927-1987 Despoilers of the Golden Empire etext24097 Ellis, Edward Sylvester, 1840-1916 The Story of Red Feather etext24101 Cory, John Egocentric Orbit etext24120 Martineau, Harriet, 1802-1876 The Hour and the Man, An Historical Romance etext24140 Birmingham, George A., 1865-1950 The Northern Iron etext24146 etext24153 Beibitz, J. H. (Joseph Hugh), 1868-1936 Gloria Crucis etext24272 Zhang, Zhongjing, fl. 168-196 傷寒論 etext24359 Belasco, David, 1853-1931 The Return of Peter Grimm etext24406 Bryan, William Jennings, 1860-1925 The Price of a Soul etext24443 Turner, Lilian An Australian Lassie etext24554 Optic, Oliver, 1822-1897 Down South etext24571 Hoffmann, Heinrich, 1809-1894 Der Struwwelpeter etext24615 Collingwood, Harry, 1851-1922 A Middy of the King etext24632 Reed, Talbot Baines, 1852-1893 The Fifth Form at Saint Dominic's etext24640 Becke, Louis, 1855-1913 "Old Mary" etext24662 Kingston, William Henry Giles, 1814-1880 The Grateful Indian etext24694 Unknown Peter Prim's Profitable Present etext24700 Dowden, Edward, 1843-1913 A History of French Literature etext24708 Hall, Winfield Scott, 1861- The Biology, Physiology and Sociology of Reproduction etext24754 Cervantes Saavedra, Miguel de, 1547-1616 Wit and Wisdom of Don Quixote etext24784 Turnbull, Lawrence, Mrs., -1927 The Royal Pawn of Venice etext24802 Feuillet, Octave, 1821-1890 Honor de artista etext24806 Becke, Louis, 1855-1913 John Frewen, South Sea Whaler etext24813 Fenn, George Manville, 1831-1909 The Queen's Scarlet etext24869 Valmiki Ramayana. English etext24896 Becke, Louis, 1855-1913 The Ebbing Of The Tide etext24921 Neville, Emily It’s like this, cat etext24990 Sutro, Theodore, 1845-1927 Thirteen Chapters of American History etext25100 Griffin, Martin I. J. (Martin Ignatius Joseph), 1842-1911 The Story of Commodore John Barry etext25133 Guyon, Jeanne Marie Bouvier de la Motte, 1648-1717 Spiritual Torrents etext25160 Wang, Yinglin, 1223-1296 三字經 etext25174 Abbott, Jacob, 1803-1879 Rollo in Scotland etext25273 Song, Yingxing, 1587- 天工開物 etext25325 Various The International Monthly, Volume 3, No. 1, April, 1851 etext25337 Atkinson, William Walker, 1862-1932 Genuine Mediumship or The Invisible Powers etext25371 Taylor, Bayard, 1825-1878 Northern Travel etext25374 Kong, Fu, ca. 264-208 B.C. 孔叢子 etext25386 Mitchell, John Ames, 1845-1918 The last American. Esperanto etext25402 Wu, Jianren, 1866-1910 九命奇冤 etext25441 Chambers, Robert W. (Robert William), 1865-1933 The Reckoning etext25490 Peck, George W. (George Wilbur), 1840-1916 Peck's Uncle Ike and The Red Headed Boy etext25501 Anonymous 易經 etext25564 Kingsley, Charles, 1819-1875 The Water-Babies etext25631 Moss, Maria J. A Poetical Cook-Book etext25660 Bancroft, Jessie Hubbell, 1867- Games for the Playground, Home, School and Gymnasium etext25661 Eggleston, Edward, 1837-1902 Duffels etext25663 Roberts, W. (William), 1862-1940 Printers' Marks etext25681 Anonymous The Quadrupeds' Pic-Nic etext25705 Betanzos, Juan de, -1576 Suma y narracion de los Incas, que los indios llamaron Capaccuna, que fueron señores de la ciudad del Cuzco y de todo lo á ella subjeto etext25721 Wassermann, Jakob, 1873-1934 Caspar Hauser etext25775 Northern Nut Growers Association Report of the Proceedings at the 13th Annual Meeting etext25827 Bruce, Charles Leslie Ross: etext25834 Holt, Emily Sarah, 1836-1893 It Might Have Been etext25863 etext25885 Williams, Ben Ames, 1889-1953 All the Brothers Were Valiant etext25992 Brewster, David, Sir, 1781-1868 The Martyrs of Science, or, The lives of Galileo, Tycho Brahe, and Kepler etext26081 Fighting the Traffic in Young Girls etext26084 Various Parks for the People etext26091 Pitray, Olga de Ségur, vicomtesse, 1835- Les enfants des Tuileries etext26103 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Annos de Prosa etext26243 Scheele, Carl Wilhelm, 1742-1786 Discovery of Oxygen, Part 2 etext26247 Stevenson, Robert Louis, 1850-1894 The Strange Case of Dr Jekyll & Mr Hyde etext26342 Chronicles of Strathearn etext26361 The New Testament of our Lord and Savior Jesus Christ. etext26376 Anacreon Anacreontea. French etext26423 Great Men and Famous Women. Vol. 3 etext26491 Andersen, H. C. (Hans Christian), 1805-1875 The Sand-Hills of Jutland etext26506 Picón, Jacinto Octavio, 1852-1923 Lázaro etext26512 Allen, J. A. (Joel Asaph), 1838-1921 Description of a New Vespertilionine Bat from Yucatan etext26553 Schiller, Friedrich, 1759-1805 Turandot: The Chinese Sphinx etext26656 Various Birds, Illustrated by Color Photography, Vol. 2, No. 2 etext26665 Tolstoy, Leo, graf, 1828-1910 The Cause of it All etext26679 Wit and Mirth: or Pills to Purge Melancholy, Vol. 5 of 6 etext26706 Moss, James A. (James Alfred), 1872-1941 Manual of Military Training etext26861 Darwin, Erasmus, 1731-1802 The Temple of Nature; or, the Origin of Society etext26928 Wiggin, Kate Douglas Smith, 1856-1923 Ladies-In-Waiting etext26952 Samuels, S. B. C. (Susan Blagge Caldwell), 1848-1931 Eric etext26978 Upham, Charles Wentworth, 1802-1875 Salem Witchcraft and Cotton Mather etext27009 Various Notes and Queries, Number 212, November 19, 1853 etext27082 Xiong, Damu, 16th cent. 楊家將演義 etext27085 Sandburg, Carl, 1878-1967 Rootabaga Stories etext27132 Garneau, F.-X. (François-Xavier), 1809-1866 Histoire du Canada depuis sa découverte jusqu'à nos jours. Tome II etext27158 Boccardi, Alberto, 1854-1921 Il peccato di Loreta etext27191 Shakespeare, William, 1564-1616 Sonnets etext27193 Rawlinson, James H. Through St. Dunstan's to Light etext27201 Brieux, Eugène, 1858-1932 Woman on Her Own, False Gods and The Red Robe etext27215 Clément, Pierre, 1809-1870 Histoire de la vie et de l'administration de Colbert etext27275 Murphy, Ethel Allen The Angel of Thought and Other Poems etext27319 Dostoyevsky, Fyodor, 1821-1881 Valkoisia öitä etext27339 MacGrath, Harold, 1871-1932 The Pagan Madonna etext27344 Macduff, John R. (John Ross), 1818-1895 The Faithful Promiser etext27378 Ball, Robert S. (Robert Stawell), Sir, 1840-1913 The Story of the Heavens etext27387 Melo, Joaquim Lopes Carreira de, 1816-1885 Biographia do Padre José Agostinho de Macedo etext27411 Chekhov, Anton Pavlovich, 1860-1904 The House with the Mezzanine and Other Stories etext27522 Chase, Mary Ellen, 1887-1973 Virginia of Elk Creek Valley etext27528 California. State Board of Charities and Corrections Rules and regulations governing maternity hospitals and homes ... September, 1922 etext27649 Strange, Robert, 1857-1914 Church work among the Negroes in the South etext27665 Lee, William M. Junior Achievement etext27669 Walker, James Herbert The Johnstown Horror!!! etext27725 Ribeiro, Bernardim, 1482-1552 Saudades: história de menina e moça etext27730 Sutphen, Van Tassel, 1861-1945 The Doomsman etext27802 Abbott, Jacob, 1803-1879 Darius the Great etext27871 Krasiński, Zygmunt, hrabia, 1812-1859 Moja Beatrice etext27907 Fenn, George Manville, 1831-1909 Hunting the Skipper etext27909 Collingwood, Harry, 1851-1922 Dick Leslie's Luck etext27923 Jewett, Sarah Orne, 1849-1909 Betty Leicester etext27937 Anczyc, Wł. L. (Władysław Ludwik), 1823-1883 Wiersz do Króla Pruskiego etext27957 Bauman, G. A. Plain Facts etext27959 Reuter, Gabriele, 1859-1941 Ins neue Land etext28020 History of Woman Suffrage, Volume I etext28089 Galsworthy, John, 1867-1933 Tatterdemalion etext28193 Paine, Albert Bigelow, 1861-1937 Mr. Rabbit's Wedding etext28195 Bertolini, Gino De Ziel van het Noorden etext28210 Barine, Arvède Alfred de Musset etext28277 Mickiewicz, Adam, 1798-1855 Moja Pierwsza Bitwa; Opowiadanie Sierżanta. English etext28350 Remy, Jean S. Lives of the Presidents Told in Words of One Syllable etext28353 Various Harper's Young People, February 17, 1880 etext28390 Hughes, Thomas Proctor, 1905- Medicine in Virginia, 1607-1699 etext28430 Balmes, Jaime Luciano, 1810-1848 Filosofía Fundamental, Tomo IV etext28439 Sampson, Emma Speed, 1868-1947 The Comings of Cousin Ann etext28548 Smith, George, 1831-1895 Gipsy Life etext28555 Craven, Wesley Frank, 1905-1981 The Virginia Company Of London, 1606-1624 etext28661 Saint-Pierre, Bernardin de, 1737-1814 Paul ja Virginia etext28667 Abbott, Jacob, 1803-1879 Genghis Khan, Makers of History Series etext28692 etext28709 etext28722 Stevenson, Robert Louis, 1850-1894 A Child's Garden of Verses etext28724 Coolidge, Susan, 1835-1905 In the High Valley etext28761 Calderón de la Barca, Madame (Frances Erskine Inglis), 1804-1882 Life in Mexico etext28779 Golfis, Rigas, 1886-1958 Ο Γήταυρος etext28800 Kant, Immanuel, 1724-1804 On the Popular Judgment: That may be Right in Theory, etext28828 Byron, George Gordon Byron, Baron, 1788-1824 Oeuvres complètes de lord Byron, Volume 8 etext28875 Hillis, Newell Dwight, 1858-1929 A Man's Value to Society etext28882 Various Harper's Young People, May 11, 1880 etext28898 Ebers, Georg, 1837-1898 The Historical Novels Of Georg Ebers etext28949 Hofmannsthal, Hugo von, 1874-1929 Jedermann etext28959 Home, Gordon, 1878-1969 The Illustrated Works Of Gordon Home etext28985 Borrow, George Henry, 1803-1881 Tord of Hafsborough etext28998 Cooke, Maud C. Social Life etext29007 Harrison, Mary The Skilful Cook etext29012 Saint-Elme, Ida, 1778-1845 Mémoires d'une contemporaine etext29039 Mira, José Paulo de, 1808- Um brado contra as monterias de cerco aos Lobos na Provincia do Alemtejo etext29071 Holt, Mathew Joseph, 1866- Chit-Chat; Nirvana; The Searchlight etext29081 Lilla, Felix, 1842-1905 Viimeinen Algonquini etext29089 Johnson, Jesse, 1842- Testimony of the Sonnets as to the Authorship of the Shakespearean Plays and Poems etext29144 Klei, Jac. van der Licht en Leven: Dubbele Twee. I. etext29161 Carvalho, João Marques de, 1866-1910 Entre as Nymphéas etext29162 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Traitors etext29181 etext29205 Venable, Lyn Grove of the Unborn etext29239 Various Graham's Magazine, Vol. XXXII No. 4, April 1848 etext29272 Smith, Richard R. No Hiding Place etext29279 Trissino, Giovanni Giorgio, 1478-1550 Sophonisba etext29343 Wilson, J. M. (James Maurice), 1836-1931 Three Addresses to Girls at School etext29358 Virgil, 70 BC-19 BC The Æneids of Virgil etext29362 Flower, Sydney Blanshard, 1867- The Goat-gland Transplantation etext29368 Tyler, Moses Coit, 1835-1900 Patrick Henry etext29373 Bryant, Louise Stevens, 1885-1959 Educational Work of the Girl Scouts etext29434 Josephus, Flavius, 38?-100? The Project Gutenberg Works Of Flavius Josephus etext29457 Sloat, Edwin K., 1895-1986 Loot of the Void etext29489 Kellogg, Vernon L. (Vernon Lyman), 1867-1937 Herbert Hoover etext29544 Libbey, Laura Jean, 1862-1924 Jolly Sally Pendleton etext29615 Leask, W. Keith (William Keith), 1857- James Boswell etext29624 Saintsbury, George, 1845-1933 Sir Walter Scott etext29636 Barrili, Anton Giulio, 1836-1908 Una notte bizzarra etext29694 Ryan, Marah Ellis, 1866-1934 The Treasure Trail etext29794 Dryfoos, Dave Tree, Spare that Woodman etext29797 Quinby, Hosea, 1804-1878 The Prison Chaplaincy, And Its Experiences etext29870 The History of Woman Suffrage, Volume IV etext29873 Di Giacomo, Salvatore, 1860-1934 Mattinate napoletane etext29891 Oliphant, Mrs. (Margaret), 1828-1897 The Rector etext29953 Holt, Hamilton, 1872-1951 Commercialism and Journalism etext29970 Moore, Cora Twenty-four Little French Dinners and How to Cook and Serve Them etext30021 Berlioz, Hector, 1803-1869 Correspondance inédite de Hector Berlioz, 1819-1868 etext30022 Maclaren, Ian, 1850-1907 Graham of Claverhouse etext30037 Shedd, George C. (George Clifford), 1877-1937 In the Shadow of the Hills etext30039 Leacock, Stephen, 1869-1944 Adventurers of the Far North etext30058 Virginia. History, Government, and Geography Service The Road to Independence: Virginia 1763-1783 etext30060 Various Vasárnapi Könyv etext30084 etext30122 Blasco Ibáñez, Vicente, 1867-1928 Entre naranjos etext30139 Giles, Harry F. The Beauties of the State of Washington etext30176 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 O Carrasco de Victor Hugo José Alves etext30205 Foote, G. W. (George William), 1850-1915 Reminiscences of Charles Bradlaugh etext30232 Ambrus, Zoltán, 1861-1932 Giroflé és Girofla I etext30269 Müller, F. Max (Friedrich Max), 1823-1900 My Autobiography etext30283 Constant, Barbara The Sound of Silence etext30286 Ayres, Ruby M. (Ruby Mildred), 1883-1955 The Phantom Lover etext30314 MacFall, Haldane, 1860-1928 Vigée Le Brun etext30325 Ruskin, John, 1819-1900 The Elements of Drawing etext30342 Burroughs, John, 1837-1921 Whitman etext30380 McKimmey, James, 1923- Pipe of Peace etext30420 The Poets' Lincoln etext30426 Rhymes Old and New : collected by M.E.S. Wright etext30524 More, Hannah, 1745-1833 Percy etext30552 Various Birds, Illustrated by Color Photography, Vol. 2, No. 4 etext30558 Ogden, George W. (George Washington), 1871-1966 Claim Number One etext30587 Maupassant, Guy de, 1850-1893 La Femme de Paul etext30594 Various Notes and Queries, Number 215, December 10, 1853 etext30602 Michelet, Jules, 1798-1874 Histoire de France 1618-1661 etext30610 Blackmar, Frank W. (Frank Wilson), 1854-1931 History of Human Society etext30660 Cornaro, Luigi, 1475-1566 Discourses on a Sober and Temperate Life etext30666 Various Birds, Illustrated by Color Photography, Vol. 1, No. 6 etext30692 Oliphant, Mrs. (Margaret), 1828-1897 Sir Tom etext30694 Various Punch, or the London Charivari, Vol. 98, 1890.05.10 etext30709 Robinson, Arthur William, 1856-1928 God and the World etext30735 Reuther, Antoine Charles, 1824-1900 Bedenkingen tegen de Leer van Darwin etext30774 Apostol, P. N. (Pavel Natanovich), 1872-1942 Московия в представлении иностранцев XVI-XVII в. etext30793 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 Geschichte von England seit der Thronbesteigung Jakob's des Zweiten. etext30837 Baldwin, May A City Schoolgirl etext30842 Sackville-West, V. (Victoria), 1892-1962 Poems of West & East etext30846 Anonymous The Tragedy Of Caesar's Revenge etext30855 Wells, H. G. (Herbert George), 1866-1946 The Wife of Sir Isaac Harman etext30867 Calin, Harold What Need of Man? etext30886 Swieten, Gerard van Vampyrismus etext30895 Holman, Louis Arthur Rembrandt and His Etchings etext30906 Weimer, Marguerite-Joséphine Mémoires inédits de Mademoiselle George etext30910 Upward, Allen, 1863-1926 The Queen Against Owen etext31016 Greg, W. W. Catalogue of the Books Presented by Edward Capell to the Library of Trinity College in Cambridge etext21428 Unknown Goody Two-Shoes etext31059 Anonymous Verklaring van het stoomwerktuig etext31112 Smith, James Edgar, 1864- The Scarlet Stigma etext31133 Griswold, Hattie Tyng, 1842-1909 Home Life of Great Authors etext31148 Finley, Robert B. A New Subspecies of Wood Rat (Neotoma mexicana) from Colorado etext31174 Harmon, Jim, 1933-2010 The Planet with No Nightmare etext31276 Cassirer, Ernst, 1874-1945 Heinrich von Kleist und die Kantische Philosophie etext31374 Reynolds, Frederick, 1764-1841 The Dramatist; or Stop Him Who Can! etext31377 Hoffmann, E. T. A. (Ernst Theodor Amadeus), 1776-1822 Weird Tales. Vol. I etext31378 Various Notes and Queries, Number 237, May 13, 1854 etext31417 Bennett, Edward T. Psychic Phenomena etext31436 Plato, 427? BC-347? BC Φίληβος etext31454 Various The Atlantic Monthly, Volume 16, No. 93, July, 1865 etext31540 Marquis, T. G. Marguerite De Roberval etext31566 Gorman, John C. Lee's Last Campaign etext31600 Floquet, Gaston, 1847-1920 Thèses présentées à la Faculté des Sciences de Paris etext31614 Luxemburg, Rosa, 1871-1919 Massenstreik, Partei und Gewerkschaften etext31620 Wilson, Augusta J. Evans Vashti etext31666 Wilson, John Lyde, 1784-1849 Recreations of Christopher North, Volume I (of 2) etext31711 Morley, John, 1838-1923 The Life of William Ewart Gladstone (Vol 3 of 3) etext31719 Chalmers, Amy D. V. Madge Morton's Trust etext31785 Perram, Annie Frances For John's Sake etext31851 Various McClure's Magazine, Vol. XXXI, No. 4, August 1908 etext31923 Ballou, Maturin Murray, 1820-1895 The Pearl of India etext31959 Yeats, W. B. (William Butler), 1865-1939 Seven Poems and a Fragment etext32009 Raabe, Wilhelm, 1831-1910 German Moonlight etext32048 Williams-Ellis, Clough Cottage Building in Cob, Pisé, Chalk and Clay etext32060 Lever, Charles James, 1806-1872 Confessions Of Con Cregan etext32062 Lever, Charles James, 1806-1872 The Daltons, Volume II (of II) etext32075 Various The Galaxy, June 1877 etext32076 Marks, Winston K., 1915-1979 Brown John's Body etext32193 De Roberto, Federico, 1861-1927 La messa di nozze; Un sogno; La bella morte etext32281 Brown, Clyde First Man etext32288 Montgomery, Rutherford George, 1896- A Yankee Flier in Italy etext32300 etext32364 Palacio Valdés, Armando, 1853-1938 Marta y María etext32366 Nielsen, Anton Et Aar etext32375 Griggs, William C. Shan Folk Lore Stories from the Hill and Water Country etext32431 Morrison, William Douglas, 1853-1943 The Model of a Judge etext32510 Morley, John, 1838-1923 The Life of William Ewart Gladstone (Vol 2 of 3) etext32519 Silva, João Manuel Pereira da Christovam Colombo e o descobrimento da America etext32561 Lever, Charles James, 1806-1872 The Bramleighs of Bishop's Folly etext32590 Graham, Roger Phillips, 1909-1965 The Old Martians etext32617 Various The Galaxy, May, 1877 etext32646 Braga, Joaquim Teófilo Fernandes, 1843-1924 Contos Phantasticos etext32660 Virgil, 70 BC-19 BC Georgics. Greek etext32699 Various The Makers of Canada: Index and Dictionary of Canadian History etext51 Montgomery, L. M. (Lucy Maud), 1874-1942 Anne of the Island etext70 Twain, Mark, 1835-1910 What Is Man? and Other Essays etext81 Burroughs, Edgar Rice, 1875-1950 Return of Tarzan etext108 Doyle, Arthur Conan, Sir, 1859-1930 The Return of Sherlock Holmes etext207 Service, Robert W. (Robert William), 1874-1958 The Spell of the Yukon and Other Verses etext214 Lawson, Henry, 1867-1922 In the Days When the World Was Wide and Other Verses etext226 Cicero, Marcus Tullius, 106 BC-43 BC Cicero's Orations etext230 Virgil, 70 BC-19 BC The Bucolics and Eclogues etext234 Morris, William, 1834-1896 Child Christopher and Goldilind the Fair etext266 Gower, John, 1330?-1408 Confessio Amantis, or, Tales of the Seven Deadly Sins etext296 Alger, Horatio, 1832-1899 The Cash Boy etext315 Service, Robert W. (Robert William), 1874-1958 Rhymes of a Red Cross Man etext316 Montgomery, L. M. (Lucy Maud), 1874-1942 The Golden Road etext321 Norris, Frank, 1870-1902 Moran of the Lady Letty etext478 Phillips, David Graham, 1867-1911 The Cost etext534 Stevenson, Robert Louis, 1850-1894 An Inland Voyage etext591 Teasdale, Sara, 1884-1933 Flame and Shadow etext598 Snorri Sturluson, 1179-1241 Heimskringla, or the Chronicle of the Kings of Norway etext601 Lewis, M. G. (Matthew Gregory), 1775-1818 The Monk; a romance etext630 etext835 Fairless, Michael, 1869-1901 The Gray Brethren and Other Fragments in Prose and Verse etext872 Dickens, Charles, 1812-1870 Reprinted Pieces etext873 Wilde, Oscar, 1854-1900 A House of Pomegranates etext891 Gibbon, Edward, 1737-1794 History of the Decline and Fall of the Roman Empire — Volume 2 etext917 Dickens, Charles, 1812-1870 Barnaby Rudge: a tale of the Riots of 'eighty etext936 Wiggin, Kate Douglas Smith, 1856-1923 The Village Watch-Tower etext983 Defoe, Daniel, 1661?-1731 Tour through Eastern Counties of England, 1722 etext993 Higginson, Thomas Wentworth, 1823-1911 Malbone: an Oldport Romance etext995 Service, Robert W. (Robert William), 1874-1958 Ballads of a Bohemian etext1106 Shakespeare, William, 1564-1616 Titus Andronicus etext1115 Shakespeare, William, 1564-1616 King Henry IV Part 1 etext1156 Lewis, Sinclair, 1885-1951 Babbitt etext1252 Malory, Thomas, Sir, 1400-1470 Le Mort d'Arthur: Volume 2 etext1260 Brontë, Charlotte, 1816-1855 Jane Eyre etext1311 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 If: a play in four acts etext1339 Wilde, Oscar, 1854-1900 Salomé etext1414 Dickens, Charles, 1812-1870 Somebody's Luggage etext1482 Balzac, Honoré de, 1799-1850 Modeste Mignon etext1491 Lang, Andrew, 1844-1912 Letters to Dead Authors etext1503 Shakespeare, William, 1564-1616 King Richard III etext1584 Plato, 427? BC-347? BC Laches etext1623 Collins, Wilkie, 1824-1889 The New Magdalen etext1757 Aldrich, Thomas Bailey, 1836-1907 Cruise of the Dolphin etext1872 Milne, A. A. (Alan Alexander), 1882-1956 The Red House Mystery etext1873 Balzac, Honoré de, 1799-1850 Gambara etext1907 Bower, B. M., 1874-1940 Rowdy of the Cross L etext1932 Carlyle, Thomas, 1795-1881 Early Kings of Norway etext1994 Lang, Andrew, 1844-1912 Adventures Among Books etext2011 Stockton, Frank Richard, 1834-1902 Rudder Grange etext2079 Weyman, Stanley John, 1855-1928 From the Memoirs of a Minister of France etext2098 Hornung, E. W. (Ernest William), 1866-1921 A Thief in the Night: a Book of Raffles' Adventures etext2111 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 11 etext2112 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 12 etext2126 Rohmer, Sax, 1883-1959 The Quest of the Sacred Slipper etext2211 Human Genome Project Chromosome Number 11 etext2247 Shakespeare, William, 1564-1616 Twelfth Night etext2264 Shakespeare, William, 1564-1616 Macbeth etext2284 Seton, Ernest Thompson, 1860-1946 Animal Heroes etext2288 Gorky, Maksim, 1868-1936 Through Russia etext2391 Terhune, Albert Payson, 1872-1942 Bruce etext2393 Terhune, Albert Payson, 1872-1942 His Dog etext2405 Goethe, Johann Wolfgang von, 1749-1832 Italienische Reise — Band 2 etext2438 Sherwood, Margaret Pollock, 1864-1955 Daphne, an autumn pastoral etext2447 Strachey, Lytton, 1880-1932 Eminent Victorians etext2480 Conrad, Joseph, 1857-1924 Under Western Eyes etext2510 Chamberlain, Basil Hall, 1850-1935 The Invention of a New Religion etext2513 Butler, Samuel, 1835-1902 God the Known and God the Unknown etext2521 Gaskell, Elizabeth Cleghorn, 1810-1865 Lizzie Leigh etext2538 etext2544 Harte, Bret, 1836-1902 From Sand Hill to Pine etext2547 Gaskell, Elizabeth Cleghorn, 1810-1865 Half a Life-Time Ago etext2618 Bangs, John Kendrick, 1862-1922 A House-Boat on the Styx etext2644 Steele, Richard, Sir, 1672-1729 Isaac Bickerstaff, physician and astrologer etext2660 Pinkerton, John, 1758-1826 Early Australian Voyages: Pelsart, Tasman, Dampier etext2691 Carr, Annie Roe Nan Sherwood at Pine Camp etext2717 James, Henry, 1843-1916 Nona Vincent etext2728 Haggard, Henry Rider, 1856-1925 Hunter Quatermain's Story etext2747 Dumas père, Alexandre, 1802-1870 Nisida etext2769 Haggard, Henry Rider, 1856-1925 Cleopatra etext2775 Ford, Ford Madox, 1873-1939 The Good Soldier etext2835 Skelton, Oscar Douglas, 1878-1941 The Canadian Dominion; a chronicle of our northern neighbor etext2847 Josephus, Flavius, 38?-100? Josephus' Discourse to the Greeks Concerning Hades etext2885 Morris, William, 1834-1896 The House of the Wolfings etext2911 Galsworthy, John, 1867-1933 Justice etext2921 Huxley, Thomas Henry, 1825-1895 The Present Condition of Organic Nature etext2975 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 25: Russia and Poland etext2981 Casanova, Giacomo, 1725-1798 The Complete Memoirs of Jacques Casanova de Seingalt etext2983 Paine, Albert Bigelow, 1861-1937 Mark Twain, a Biography — Volume I, Part 2: 1835-1866 etext3050 Davis, Richard Harding, 1864-1916 Notes of a War Correspondent etext3111 Warner, Charles Dudley, 1829-1900 Diversities of American Life etext3133 Warner, Charles Dudley, 1829-1900 Baddeck, and That Sort of Thing etext3151 Barry, John D. (John Daniel), 1866-1942 The City of Domes : a walk with an architect about the courts and palaces of the Panama-Pacific International Exposition, with a discussion of its architecture, its sculpture, its mural decorations, its coloring and its lighting, preceded by a history of its growth etext3173 Twain, Mark, 1835-1910 Essays on Paul Bourget etext3249 Connor, Ralph, 1860-1937 The Major etext3273 Ward, Artemus, 1834-1867 The Complete Works of Artemus Ward — Part 3: Stories and Romances etext3280 Lincoln, Joseph Crosby, 1870-1944 Cap'n Warren's Wards etext3282 Lang, Andrew, 1844-1912 The Brown Fairy Book etext3296 Augustine, Saint, Bishop of Hippo, 354-430 The Confessions of St. Augustine etext3382 Howells, William Dean, 1837-1920 American Literary Centers (from Literature and Life) etext3390 Howells, William Dean, 1837-1920 My Mark Twain (from Literary Friends and Acquaintance) etext3446 Anonymous Arabian nights. English etext3469 Hardy, Thomas, 1840-1928 The Hand of Ethelberta etext3482 Hakluyt, Richard, 1552-1616 Voyages in Search of the North-West Passage etext3539 Knowles, James Sheridan, 1784-1862 The Love-chase etext3574 Wairy, Louis Constant, 1778-1845 Recollections of the Private Life of Napoleon — Volume 07 etext3575 Wairy, Louis Constant, 1778-1845 Recollections of the Private Life of Napoleon — Volume 08 etext3600 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Complete etext3609 Cross, Victoria, 1868-1952 To-morrow? etext3615 Trollope, Anthony, 1815-1882 John Bull on the Guadalquivir etext3690 Wells, H. G. (Herbert George), 1866-1946 Floor Games; a companion volume to "Little Wars" etext3842 Retz, Jean François Paul de Gondi de, 1613-1679 The Memoirs of Cardinal de Retz — Volume 1 [Historic court memoirs] etext3851 Montespan, Françoise-Athénaïs de Rochechouart de Mortemart, marquise de, 1641-1707 Memoirs of Madame de Montespan — Volume 5 etext3901 Rousseau, Jean-Jacques, 1712-1778 The Confessions of J. J. Rousseau — Volume 01 etext3902 Rousseau, Jean-Jacques, 1712-1778 The Confessions of J. J. Rousseau — Volume 02 etext3919 France, Anatole, 1844-1924 The Red Lily — Volume 01 etext3920 France, Anatole, 1844-1924 The Red Lily — Volume 02 etext3942 Musset, Alfred de, 1810-1857 The Confession of a Child of the Century — Complete etext3949 Vigny, Alfred de, 1797-1863 Cinq Mars — Volume 3 etext3975 Bazin, René, 1853-1932 The Ink-Stain (Tache d'encre) — Complete etext4001 Various Widger's Quotations from Project Gutenberg Edition of French Immortals Series etext4003 Shaw, Bernard, 1856-1950 Androcles and the Lion etext4012 Perkins, Lucy Fitch, 1865-1937 The Dutch Twins etext4138 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Complete 1662 N.S. etext4205 Mühlbach, L. (Luise), 1814-1873 Berlin and Sans-Souci; or Frederick the Great and his friends etext4287 Locke, William John, 1863-1930 The Red Planet etext4356 Baum, L. Frank (Lyman Frank), 1856-1919 Sky Island: being the further exciting adventures of Trot and Cap'n Bill after their visit to the sea fairies etext4374 Nadin, Mihai, 1938- Jenseits der Schriftkultur — Band 4 etext4382 Norris, Frank, 1870-1902 The Pit etext4407 Meredith, George, 1828-1909 Ordeal of Richard Feverel — Volume 2 etext4422 Meredith, George, 1828-1909 Rhoda Fleming — Volume 2 etext4445 Meredith, George, 1828-1909 The Adventures of Harry Richmond — Volume 2 etext4503 Brentano, Clemens, 1778-1842 Geschichte vom braven Kasperl und dem schönen Annerl etext4523 Wagner, Richard, 1813-1883 On Conducting (Üeber Das Dirigiren) : a Treatise on Style in the Execution of Classical Music, etext4527 Hopkins, Cyril G. (Cyril George), 1866-1919 The Story of the Soil; from the Basis of Absolute Science and Real Life, etext4533 Wharton, Edith, 1862-1937 The Hermit and the Wild Woman etext4563 Bertrand, Huguette La Mort Amoureuse: Poesie etext4614 Benson, Arthur Christopher, 1862-1925 From a College Window etext1245 Woolf, Virginia, 1882-1941 Night and Day etext4633 Curwood, James Oliver, 1878-1927 Philip Steele of the Royal Northwest mounted Police etext4665 Staël, Madame de (Anne-Louise-Germaine), 1766-1817 Signora Fantastici etext4676 Austin, Jane G. (Jane Goodwin), 1831-1894 Outpost etext4690 Orr, Lyndon Famous Affinities of History — Volume 2 etext4716 Davis, William Stearns, 1877-1930 A Day in Old Athens; a Picture of Athenian Life etext4725 Holmes, Oliver Wendell, 1809-1894 John Lothrop Motley. a memoir — Volume 1 etext4730 Dennis, C. J. (Clarence James), 1876-1938 The Songs of a Sentimental Bloke etext4736 Guðmundur Kamban, 1888-1945 Hadda Pada etext4744 Arthur, T. S. (Timothy Shay), 1809-1885 Ten Nights in a Bar Room etext4746 Smith, Francis Hopkinson, 1838-1915 Kennedy Square etext4777 Maupassant, Guy de, 1850-1893 Strong as Death etext4791 Verne, Jules, 1828-1905 Voyage au Centre de la Terre etext4793 Bierce, Ambrose, 1842-1914? The Fiend's Delight etext4801 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 01: Introduction I etext4811 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Complete (1555-66) etext4911 Richardson, John, 1796-1852 Wacousta : a tale of the Pontiac conspiracy — Volume 3 etext4920 etext4965 Scott, Walter, Sir, 1771-1832 Waverley — Volume 2 etext4981 Andrews, C. C. (Christopher Columbus), 1829-1922 Minnesota and Dacotah etext4984 Chambers, Robert W. (Robert William), 1865-1933 The Hidden Children etext4986 Galbraith, Anna M. (Anna Mary), 1859- The Four Epochs of Woman's Life; a study in hygiene etext5009 Adams, Samuel Hopkins, 1871-1958 The Unspeakable Perk etext5046 Reagan, Ronald, 1911-2004 State of the Union Address etext5062 Beach, Rex Ellingwood, 1877-1949 The Winds of Chance etext5137 Shakespeare (spurious and doubtful works), 1564-1616 Fair Em etext5186 Kalevala : the Epic Poem of Finland — Complete etext5239 Lever, Charles James, 1806-1872 The Confessions of Harry Lorrequer — Volume 6 etext5258 Nietzsche, Friedrich Wilhelm, 1844-1900 Ainsi Parlait Zarathoustra etext5317 Doyle, Arthur Conan, Sir, 1859-1930 Through the Magic Door etext5367 Churchill, Winston, 1871-1947 Richard Carvel — Volume 03 etext5368 Churchill, Winston, 1871-1947 Richard Carvel — Volume 04 etext5401 Reed, Myrtle, 1874-1911 Old Rose and Silver etext5417 Alger, Horatio, 1832-1899 Struggling Upward, or Luke Larkin's Luck etext5419 Horace, 65 BC-8 BC The Satires, Epistles, and Art of Poetry etext5433 Roe, Edward Payson, 1838-1888 Without a Home etext5439 Ebers, Georg, 1837-1898 Uarda : a Romance of Ancient Egypt — Volume 01 etext5445 Ebers, Georg, 1837-1898 Uarda : a Romance of Ancient Egypt — Volume 07 etext5482 Ebers, Georg, 1837-1898 Cleopatra — Complete etext5496 Ebers, Georg, 1837-1898 Homo Sum — Volume 03 etext5517 Ebers, Georg, 1837-1898 The Bride of the Nile — Volume 01 etext5549 Ebers, Georg, 1837-1898 In the Fire of the Forge — Volume 07 etext5563 Ebers, Georg, 1837-1898 Barbara Blomberg — Volume 03 etext5632 Sidney, Margaret, 1844-1924 Five Little Peppers Midway etext5678 Leahy, Arthur Herbert, 1857-1928 Heroic Romances of Ireland — Volume 1 etext5692 Twain, Mark, 1835-1910 The Innocents Abroad — Volume 05 etext5743 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Evil Shepherd etext5750 MacDonald, George, 1824-1905 St. George and St. Michael Volume I etext5752 MacDonald, George, 1824-1905 St. George and St. Michael Volume III etext5759 McCutcheon, George Barr, 1866-1928 The Day of the Dog etext5785 Twain, Mark, 1835-1910 A Tramp Abroad — Volume 04 etext5866 McCutcheon, George Barr, 1866-1928 Yollop etext5948 Hope, Laura Lee The Bobbsey Twins on a Houseboat etext5970 Rice, Alice Caldwell Hegan, 1870-1942 Lovey Mary etext5998 Scott, Walter, Sir, 1771-1832 Waverley etext6045 McCutcheon, George Barr, 1866-1928 The Hollow of Her Hand etext6185 Parker, Gilbert, 1862-1932 Romany of the Snows, Continuation of "Pierre and His People" etext6200 Dickinson, G. Lowes (Goldsworthy Lowes), 1862-1932 The Greek View of Life etext6225 Parker, Gilbert, 1862-1932 The Seats of the Mighty, Volume 2 etext6243 Parker, Gilbert, 1862-1932 The Right of Way — Volume 01 etext6279 Parker, Gilbert, 1862-1932 The Money Master, Volume 5. etext6325 McCutcheon, George Barr, 1866-1928 A Fool and His Money etext6331 Yonge, Charlotte Mary, 1823-1901 The Pillars of the House, V1 etext6477 Hooker, J. D. (Joseph Dalton), 1817-1911 Himalayan Journals — Volume 2 etext6486 Religious of the Ursuline Community, A The Life of the Venerable Mother Mary of the Incarnation etext6534 Stoker, Bram, 1847-1912 Dracula etext6546 Beethoven, Ludwig van, 1770-1827 Beethoven, the Man and the Artist, as Revealed in His Own Words etext6581 Mackenzie, J. B. (James Bovell), 1851-1919 A Treatise on the Six-Nation Indians etext6583 Sainte-Foi, Charles, 1806-1861 Serious Hours of a Young Lady etext6593 Fielding, Henry, 1707-1754 History of Tom Jones, a Foundling etext6609 Skinner, Charles M. (Charles Montgomery), 1852-1907 Myths and Legends of Our Own Land — Volume 04 : Tales of Puritan Land etext6664 Loti, Pierre, 1850-1923 The Story of a Child etext6757 Bunbury, Selina Fanny, the Flower-Girl, or, Honesty Rewarded etext6791 Schiller, Friedrich, 1759-1805 Mary Stuart etext6801 McCutcheon, George Barr, 1866-1928 Beverly of Graustark etext6865 Yeats, W. B. (William Butler), 1865-1939 Four Years etext6900 Turgenev, Ivan Sergeevich, 1818-1883 Rudin etext6909 Catherwood, Mary Hartwell, 1847-1902 Old Caravan Days etext6910 Tytler, Sarah, 1827-1914 Life of Her Most Gracious Majesty the Queen — Volume 1 etext6923 Molière, 1622-1673 L'avare. English etext6925 Ellwood, Thomas, 1639-1714? The History of Thomas Ellwood Written By Himself etext6933 Parkman, Francis, 1823-1893 The Jesuits in North America in the Seventeenth Century etext6984 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Pothunters etext7063 Fleming, May Agnes, 1840-1880 A Terrible Secret etext7090 Stern, Eva The Little Immigrant etext7094 Cervantes Saavedra, Miguel de, 1547-1616 Don Quixote etext7197 Twain, Mark, 1835-1910 The Adventures of Tom Sawyer, Part 5. etext7239 Crane, Stephen, 1871-1900 Men, Women, and Boats etext7257 Godkin, Edwin Lawrence, 1831-1902 Reflections and Comments 1865-1895 etext7311 Howells, William Dean, 1837-1920 The Leatherwood God etext7341 Liezi, 4th cent. B.C. 列子 etext7464 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Adventures of Sally etext7548 Lever, Charles James, 1806-1872 Images from Harry Lorrequer etext7616 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Pelham — Volume 02 etext7643 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Ernest Maltravers — Volume 04 etext7655 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Kenelm Chillingly — Volume 06 etext7658 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Kenelm Chillingly — Complete etext7714 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 My Novel — Complete etext7784 Scollard, Clinton, 1860-1932 From the Lips of the Sea etext7792 Nexø, Martin Andersen, 1869-1954 Pelle the Conqueror — Volume 02 etext7807 Johnston, Annie F. (Annie Fellows), 1863-1931 Georgina of the Rainbows etext7956 Strindberg, August, 1849-1912 Married etext7999 Anonymous The Bible, King James Version, Complete Contents etext8052 Anonymous The Bible, King James version, Book 52: 1 Thessalonians etext8120 Teresa, of Avila, Saint, 1515-1582 The Life of St. Teresa of Jesus etext8122 Gordon, Hanford Lennox, 1836-1920 Legends of the Northwest etext8353 The Bible, Douay-Rheims, Book 53: 1 Corinthians etext8369 The Bible, Douay-Rheims, Book 69: 1 John etext8580 Cottle, Joseph, 1770-1853 Reminiscences of Samuel Taylor Coleridge and Robert Southey etext8593 Home, Gordon, 1878-1969 Normandy, Illustrated, Part 1 etext8596 Tracy, Louis, 1863-1928 The Wheel O' Fortune etext8649 Kipling, Rudyard, 1865-1936 Indian Tales etext8657 Anonymous The Book of the Thousand Nights and One Night, Volume III etext8661 etext8693 Dumas père, Alexandre, 1802-1870 Le Capitaine Aréna — Tome 1 etext8729 Yerkes, Robert M., 1876-1956 The Dancing Mouse etext8741 Vance, Louis Joseph, 1879-1933 The Brass Bowl etext8745 Henty, G. A. (George Alfred), 1832-1902 Wulf the Saxon etext8756 Burroughs, Edgar Rice, 1875-1950 The Monster Men etext8812 Burnett, Frances Hodgson, 1849-1924 The Secret Garden etext8816 Sienkiewicz, Henryk, 1846-1916 Quo Vadis, a Narrative of the Time of Nero etext8828 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Matthew etext8835 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, 2 Corinthians etext8891 Fuller, Henry Blake, 1857-1929 With the Procession etext8900 Anonymous The London and Country Brewer etext8912 Wordsworth, William, 1770-1850 Lyrical Ballads with Other Poems, 1800, Volume 2 etext8926 Storm, Theodor, 1817-1888 In St. Jürgen etext8939 Merriman, Henry Seton, 1862-1903 With Edged Tools etext9000 Sri Vishnu Sahasranaamam etext9008 Twain, Mark, 1835-1910 A Horse's Tale etext9009 Twain, Mark, 1835-1910 Life on the Mississippi etext9025 Twain, Mark, 1835-1910 How to Tell a Story and Other Essays etext9048 Hayley, William, 1745-1820 Ballads etext9059 Heyse, Paul, 1830-1914 Andrea Delfin etext9062 Grillparzer, Franz, 1791-1872 Sappho etext9065 Heyse, Paul, 1830-1914 Beatrice etext9068 Markham, Clements R. (Clements Robert), Sir, 1830-1916 Apu Ollantay etext9180 Boswell, James, 1740-1795 Life of Johnson, Volume 3 etext9189 Braddon, M. E. (Mary Elizabeth), 1835-1915 Henry Dunbar etext9194 Serviss, Garrett Putman, 1851-1929 The Second Deluge etext9214 Hawthorne, Nathaniel, 1804-1864 The White Old Maid (From "Twice Told Tales") etext9219 Hawthorne, Nathaniel, 1804-1864 Edward Fane's Rosebud (From "Twice Told Tales") etext9256 Hawthorne, Nathaniel, 1804-1864 The Paradise of Children etext9264 Vand- og stenhoejsplanter en vejledning for havevenner etext9266 Various Scientific American Supplement, No. 447, July 26, 1884 etext9279 Wharton, Edith, 1862-1937 Fighting France etext9311 Jackson, Helen Hunt, 1830-1885 Hetty's Strange History etext9374 Barr, Amelia Edith Huddleston, 1831-1919 A Knight of the Nets etext9439 Edgeworth, Maria, 1767-1849 Tales and Novels — Volume 04 etext9481 Various Punchinello, Volume 1, No. 02, April 9, 1870 etext9487 Burnett, Frances Hodgson, 1849-1924 A Fair Barbarian etext9497 Lawrence, D. H. (David Herbert), 1885-1930 Twilight in Italy etext9509 Southern Lights and Shadows etext9513 Poe, Edgar Allan, 1809-1849 The Works of Edgar Allan Poe, Volume 2 etext9595 Whittier, John Greenleaf, 1807-1892 The Conflict with Slavery, Part 1, from Volume VII, etext9637 Dumas père, Alexandre, 1802-1870 La dame de Monsoreau — Tome 1. etext9676 Eliot, George, 1819-1880 Silas Marner etext9689 Dickens, Charles, 1812-1870 Three Ghost Stories etext9690 Dickens, Charles, 1812-1870 A Child's History of England etext9716 Dickens, Charles, 1812-1870 The Lamplighter etext32658 Bartholomew, Stephen The Standardized Man etext9825 Jackson, Helen Hunt, 1830-1885 A Calendar of Sonnets etext9909 Peacock, Thomas Love, 1785-1866 Nightmare Abbey etext9930 Neikirk, Lewis Irving Groups of the Order p^m etext9943 Mitchell, Thomas, 1792-1855 Journal of an Expedition into the Interior of Tropical Australia etext9946 Various The Atlantic Monthly, Volume 10, No. 59, September, 1862 etext10007 Le Fanu, Joseph Sheridan, 1814-1873 Carmilla etext10023 Brooks, Charles S. (Charles Stephen), 1878-1934 There's Pippins and Cheese to Come etext10054 Berzelius, Jöns Jacob, 1779-1848 Nova analysis aquarum Medeviensium etext10138 Various The Atlantic Monthly, Volume 01, No. 02, December, 1857 etext10175 Rachmaninoff, Sergie, 1873-1943 Prelude in C Sharp Minor, Op. 3 etext10182 Trio, The New York Trio No. 1 in B Flat, Pt. 1 etext10346 Buysse, Cyriël, 1859-1932 C'Était ainsi... etext10351 Johnson, Samuel, 1709-1784 The Works of Samuel Johnson, Volume 10 etext10424 Caprice Viennois etext10428 Goethe, Johann Wolfgang von, 1749-1832 Die Aufgeregten etext10443 Fletcher, J. S. (Joseph Smith), 1863-1935 The Rayner-Slade Amalgamation etext10478 Lord, John, 1810-1894 Beacon Lights of History, Volume 02 etext10524 McGuinn, Roger We Wish You a Merry Christmas etext10587 The Poetical Works of Addison; Gay's Fables; and Somerville's Chase etext10606 MacDonald, George, 1824-1905 The Tragedie of Hamlet, Prince of Denmark etext10614 Various Punch, or the London Charivari, Volume 153, September 5, 1917 etext10642 Cram, Ralph Adams, 1863-1942 Towards the Great Peace etext10657 Caesar, Julius, 100 BC-44 BC "De Bello Gallico" and Other Commentaries etext10680 Loudun, Eugène La Bretagne. Paysages et Récits. etext10697 Laffon de Ladébat, André-Daniel, 1746-1829 Discours sur la nécessité et les moyens de détruire l'esclavage dans les colonies etext10717 Pindar, 518? BC-438? BC The Extant Odes of Pindar etext10748 The World's Greatest Books — Volume 03 — Fiction etext10776 Appleton, Victor [pseud.] The Moving Picture Boys at Panama etext10808 Consumers' League of New York, The Consumers' Cooperative Societies in New York State etext10840 Favenc, Ernest, 1845-1908 The Explorers of Australia and their Life-work etext10850 etext10880 Le Feuvre, Amy, -1929 Teddy's Button etext10882 Cabell, James Branch, 1879-1958 The Eagle's Shadow etext10987 Anonymous The Adventures of Little Bewildered Henry etext11008 Ruhl, Arthur, 1876-1935 Antwerp to Gallipoli etext11073 Unknown The Illustrated Alphabet of Birds etext11075 Falke, Gustav, 1853-1916 Der Mann im Nebel etext11119 Schoolcraft, Henry Rowe, 1793-1864 Personal Memoirs of a Residence of Thirty Years with the Indian Tribes on the American Frontiers etext11229 Shiel, M. P. (Matthew Phipps), 1865-1947 The Purple Cloud etext11336 Various The Mirror of Literature, Amusement, and Instruction etext11495 Maupassant, Guy de, 1850-1893 La Main Gauche etext11519 Various The Mirror of Literature, Amusement, and Instruction etext11536 Kingsley, Charles, 1819-1875 Town and Country Sermons etext11554 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Crimes of England etext11643 Trollope, Anthony, 1815-1882 John Caldigate etext11652 Various Notes and Queries, Number 08, December 22, 1849 etext11660 Smith, Mabell S. C. (Mabell Shippie Clarke), 1864-1942 Ethel Morton's Enterprise etext11684 Metastasio, Pietro, 1698-1782 Il sogno di Scipione etext11685 Metastasio, Pietro, 1698-1782 L'Endimione etext11764 Various The American Missionary — Volume 42, No. 03, March, 1888 etext11787 Human Genome Project Chromosome Number 13 etext11826 Library of Congress. Copyright Office U.S. Copyright Renewals, 1962 July - December etext11852 Library of Congress. Copyright Office U.S. Copyright Renewals, 1975 July - December etext11870 Wells, H. G. (Herbert George), 1866-1946 The Country of the Blind, and Other Stories etext11887 Various The Mirror of Literature, Amusement, and Instruction etext11917 Lawless, Emily, 1845-1913 The Story of Ireland etext11966 Symons, John C. The Village Sunday School etext11991 Dodge, Mary Mapes, 1830-1905 Po-No-Kah etext12030 etext12067 Stockton, Frank Richard, 1834-1902 The Bee-Man of Orn and Other Fanciful Tales etext12077 Worcester, Dean C. The Philippines: Past and Present (Volume 1 of 2) etext12171 Morley, Edith J., 1875-1964 Women Workers in Seven Professions etext12223 Various The Idler, Volume III., Issue XIII., February 1893 etext12228 Long, C. C. Home Geography for Primary Grades etext12238 Kellogg, Mrs. E. E. Science in the Kitchen. etext12281 Adams, Andy, 1859-1935 Cattle Brands etext12331 Silvestre, Armand, 1837-1901 Contes à la brune etext12339 Bang, Herman, 1857-1912 Hendes højhed etext12374 Various The Atlantic Monthly, Volume 01, No. 07, May, 1858 etext12409 Halstead, Murat, 1829-1908 The Story of the Philippines and Our New Possessions, etext12478 Strachey, Lytton, 1880-1932 Books and Characters etext12486 Apess, William, 1798-1839 Indian Nullification of the Unconstitutional Laws of Massachusetts Relative to the Marshpee Tribe etext12491 Chesterton, G. K. (Gilbert Keith), 1874-1936 Twelve Types etext12518 Knower, Daniel The Adventures of a Forty-niner etext12519 Randolph, Mary The Virginia Housewife etext12591 Various Tiger and Tom and Other Stories for Boys etext12593 Various The Atlantic Monthly, Volume 11, No. 65, March, 1863 etext12606 etext12620 Mullem, Louis, -1908 Contes d'Amérique etext12654 Bennett, Arnold, 1867-1931 The Roll-Call etext12661 Bourinot, John George, Sir, 1837-1902 Canada under British Rule 1760-1900 etext12730 Hancock, H. Irving (Harrie Irving), 1868-1922 The High School Boys' Fishing Trip etext12773 Bennett, Arnold, 1867-1931 Mr. Prohack etext12776 Hancock, H. Irving (Harrie Irving), 1868-1922 Dave Darrin at Vera Cruz etext12784 Swift, Jonathan, 1667-1745 The Prose Works of Jonathan Swift, D.D. — Volume 06 etext12804 Leino, Eino, 1878-1926 Pankkiherroja etext12863 Holdsworth, T.W.E. Campaign of the Indus etext12874 Cameron, Agnes Deans, 1863-1912 The New North etext12919 Adams, Andy, 1859-1935 A Texas Matchmaker etext12936 Bonehill, Ralph Young Hunters of the Lake etext13049 Pearson, Francis B. (Francis Bail), 1853- Reveries of a Schoolmaster etext13060 Various The Persian Literature, Comprising The Shah Nameh, The Rubaiyat, The Divan, and The Gulistan, Volume 2 etext13138 O'Brien, Edward J. (Edward Joseph Harrington), 1890-1941 The Forgotten Threshold etext13139 Walton, Izaak, 1593-1683 Lives of John Donne, Henry Wotton, Rich'd Hooker, George Herbert, &C, Volume 2 etext13143 Atkinson, William Walker, 1862-1932 Mystic Christianity etext13172 Train, Arthur Cheney, 1875-1945 True Stories of Crime From the District Attorney's Office etext13187 Joly, Maurice, 1829-1878 Dialogue aux enfers entre Machiavel et Montesquieu etext13276 Marryat, Frederick, 1792-1848 The Mission etext13310 Lowell, James Russell, 1819-1891 The Complete Poetical Works of James Russell Lowell etext13335 Glover, T. R. The Jesus of History etext13394 Järnefelt, Arvid, 1861-1932 Elämän meri etext13493 Child, Lydia Maria Francis, 1802-1880 The American Frugal Housewife etext13499 Seton, Ernest Thompson, 1860-1946 Two Little Savages etext13511 Pushkin, Aleksandr Sergeevich, 1799-1837 The Daughter of the Commandant etext13547 Dell, Ethel M. (Ethel May), 1881-1939 The Rocks of Valpre etext13652 Dodds, James Exposition of the Apostles Creed etext13671 Sand, George, 1804-1876 Horace etext13780 Aho, Juhani, 1861-1921 Minkä mitäkin Italiasta etext13782 Ward, Humphry, Mrs., 1851-1920 Lady Rose's Daughter etext13842 Hemstreet, Charles The Story of Manhattan etext13916 Bashkirtseff, Marie, 1858-1884 Marie Bashkirtseff (From Childhood to Girlhood) etext13926 Hutton, William, 1723-1815 An History of Birmingham (1783) etext13933 etext13964 Various Lippincott's Magazine of Popular Literature and Science etext13970 Bird, Robert M. Nick of the Woods etext13989 Child, Lydia Maria Francis, 1802-1880 The Duty of Disobedience to the Fugitive Slave Act etext14019 The Harvard Classics, Volume 49, Epic and Saga etext14047 A Letter to A.H. Esq.; Concerning the Stage (1698) and The Occasional Paper No. IX (1698) etext14077 Caldecott, Randolph, 1846-1886 A Frog He Would A-Wooing Go etext14089 Holmes, Mary Jane, 1825-1907 Homestead on the Hillside etext14117 Barker, C. Hélène, 1868- Wanted, a Young Woman to Do Housework etext14139 Talmage, T. De Witt (Thomas De Witt), 1832-1902 New Tabernacle Sermons etext14156 Flaubert, Gustave, 1821-1880 Dictionnaire des idées reçues etext14177 Anonymous Dramas in de wolken: Luchtreizen en luchtreizigers etext14181 Vuillier, Gaston, 1846- Malta en de Maltezer Orde etext14199 Various Punch, Or The London Charivari, Volume 102, Jan. 2, 1892 etext14240 Wilde, Oscar, 1854-1900 Reviews etext14246 Balzac, Honoré de, 1799-1850 Mercadet etext14257 Maugham, W. Somerset (William Somerset), 1874-1965 The Magician etext14295 Carey, H. C. (Henry Charles), 1793-1879 Letters on International Copyright; Second Edition etext14350 Parry, William Edward, Sir, 1790-1855 Three Voyages for the Discovery of a Northwest Passage from the Atlantic to the Pacific, and Narrative of an Attempt to Reach the North Pole, Volume 2 etext14351 Leino, Eino, 1878-1926 Maaliskuun lauluja; Tarina suuresta tammesta; Yökehrääjä etext14456 Bower, B. M., 1874-1940 The Uphill Climb etext14584 Richardson, James D. (James Daniel), 1843-1914 A Compilation of the Messages and Papers of the Presidents etext14590 Lighthall, W. D. (William Douw), 1857-1954 A New Hochelagan Burying-ground Discovered at Westmount on the Western Spur of Mount Royal, Montreal, July-September, 1898 etext14612 Various Chambers's Edinburgh Journal, No. 421 etext14635 Emerson, Alice B. Ruth Fielding in Moving Pictures etext14648 Menant, Delphine, 1850- Bij de Parsi's van Bombay en Gudsjerat etext14667 Beerbohm, Max, Sir, 1872-1956 A Christmas Garland etext14705 Vallès, Jules, 1832-1885 Le bachelier etext14711 Hayes, Clair W. (Clair Wallace), 1887- The Boy Allies Under the Sea etext14797 Potter, Beatrix, 1866-1943 The Tale of Timmy Tiptoes etext14807 Hahnsson, Theodolinda (Sofia Theodolinda), 1838-1919 Marjapojat etext14871 Walton, Mary Alice Poems etext14878 Olson, Oscar Ludvig The Relation of the Hrolfs Saga Kraka and the Bjarkarimur to Beowulf etext14903 Rand, Edward A. The Knights of the White Shield etext14915 Unknown Das Nibelungenlied etext14931 Various Punch, or the London Charivari, Volume 1, October 9, 1841 etext14966 Various Punch, or the London Charivari, Volume 152, March 7, 1917 etext14978 Aldrich, Anne Reeve, 1866-1892 A Village Ophelia and Other Stories etext14987 Various The Brochure Series of Architectural Illustration, Volume 01, No. 10, October 1895. etext14998 Kay, Ross The Go Ahead Boys and Simon's Mine etext15047 etext15055 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Free Rangers etext15085 Descartes, René, 1596-1650 Metodin esitys etext15094 Scott, John Reed, 1869- The Cab of the Sleeping Horse etext15135 Hergesheimer, Joseph, 1880-1954 The Three Black Pennys etext15165 Jones, Edmund O. Welsh Lyrics of the Nineteenth Century etext15175 Reitz, F. W. A Century of Wrong etext15250 Werner, E. T. C. (Edward Theodore Chalmers), 1864-1954 Myths and Legends of China etext15262 Haines, Charles Reginald Christianity and Islam in Spain (756-1031) etext15312 Guizot, M. (François), 1787-1874 Mémoires pour servir à l'Histoire de mon temps (Tome 2) etext15327 Dana, John Cotton, 1856-1929 A Library Primer etext15344 Flower, Jessie Graham [pseud.], -1931 Grace Harlowe's Sophomore Year at High School etext15365 A Psychiatric Milestone etext15395 Salmela, Marja, 1875-1924 Unelmiensa uhri etext15407 Chapman, Thomas The Cyder-Maker's Instructor, Sweet-Maker's Assistant, and Victualler's and Housekeeper's Director etext15494 Various Dew Drops, Vol. 37, No. 09, March 1, 1914 etext15543 Bertrand, Joseph, 1822-1900 D'Alembert etext15570 Gibbs, George, 1870-1942 Paradise Garden etext15580 Grey, Zane, 1872-1939 The Rustlers of Pecos County etext15618 etext15644 Stevenson, William G. Thirteen Months in the Rebel Army etext15652 Hood, Thomas, 1799-1845 The Poetical Works of Thomas Hood etext15655 Hawley, Mabel C. Four Little Blossoms and Their Winter Fun etext15736 Wassermann, Jakob, 1873-1934 Der Mann von vierzig Jahren etext15751 A Selection of Books Published by Methuen and Co. Ltd. etext15776 Keynes, John Maynard, 1883-1946 The Economic Consequences of the Peace etext15781 Espronceda, José de, 1808-1842 El Estudiante de Salamanca and Other Selections etext15803 Morrison, William Douglas, 1853-1943 Crime and Its Causes etext15810 Allen, P. S. (Percy Stafford), 1869-1933 The Age of Erasmus etext15820 French, Sarah A Book for the Young etext15821 Lundegård, Axel, 1861-1930 Elsa Finne I-II etext15840 Various Lippincott's Magazine, December, 1885 etext15857 etext15865 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Noughts and Crosses etext15897 Leino, Kasimir, 1866-1919 Ristiaallokossa etext15923 Alexander, John L. The Boy and the Sunday School etext15935 Various The Mirror of Literature, Amusement, and Instruction etext16031 Various The Great Round World and What Is Going On In It, Vol. 1, No. 50, October 21, 1897 etext16047 Hopkins, Ellice The Power of Womanhood, or Mothers and Sons etext16096 Norris, Frank, 1870-1902 A Man's Woman etext16102 Le Bon, Gustave, 1841-1931 Reis in Nepal etext16129 Besant, Walter, Sir, 1836-1901 In Luck at Last etext16156 Comstock, Harriet T. (Harriet Theresa), 1860- Then Marched the Brave etext16165 Rawlinson, George, 1812-1902 The Seven Great Monarchies Of The Ancient Eastern World, Vol 5. (of 7): Persia etext16196 Whistler, Charles W. (Charles Watts), 1856-1913 King Olaf's Kinsman etext16237 Frontin, Sextus Julius Les stratagèmes etext16259 Baum, L. Frank (Lyman Frank), 1856-1919 The Surprising Adventures of the Magical Monarch of Mo and His People etext16266 Various Harvard Psychological Studies, Volume 1 etext16280 Rohlfs, Gerhard, 1831-1896 Beiträge zur Entdeckung und Erforschung Africa's. etext16284 Saintsbury, George, 1845-1933 Matthew Arnold etext16323 Various The Continental Monthly, Vol. 4, No. 4, October, 1863 etext16450 Hussey, S.M. The Reminiscences of an Irish Land Agent etext16471 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels, Volume 16 etext16495 Smith, Gipsy, 1860-1947 Your Boys etext16498 Various The Great Round World and What Is Going On In It, Vol. 1, No. 59, December 23, 1897 etext16506 Wesley, Samuel, 1662-1735 Epistle to a Friend Concerning Poetry (1700) and the Essay on Heroic Poetry (second edition, 1697) etext16509 Various Punch, or the London Charivari, Vol. 158, 1920-02-25 etext16584 Jahnsson, Evald Ferdinand, 1844-1895 Bartholdus Simonis etext16657 Mathews, Basil The Book of Missionary Heroes etext16702 Various The New York Times Current History of the European War, Vol. 1, January 9, 1915 etext16715 Ball, Margaret Sir Walter Scott as a Critic of Literature etext16769 Chesterton, G. K. (Gilbert Keith), 1874-1936 Orthodoxy etext16802 Lady, An American The Ladies' Vase etext16803 Morrow, Honoré, 1880-1940 Lydia of the Pines etext16807 Allen, Grant, 1848-1899 Falling in Love etext16816 etext16843 Obdržálek, Peregrin, 1825-1891 Cvičení maličkých ve svatém náboženství křesťansko-katolickém etext16849 Janzé, Charles Alfred de Les huguenots etext16936 Parker, Richard Green, 1798-1869 Parker's Second Reader etext16945 Burke, Kathleen, 1887-1958 The White Road to Verdun etext16972 Various Scientific American Supplement, No. 711, August 17, 1889 etext17018 Hendrick, Burton Jesse, 1870-1949 The Life and Letters of Walter H. Page, Volume II etext17051 Various The Argosy etext17059 Durham, Victor G. The Submarine Boys for the Flag etext17079 Donders, F. C. (Franciscus Cornelis), 1818-1889 De Harmonie van het Dierlijke Leven etext17128 etext17305 Myrica, Pierre de, 1875-1951 Door Centraal-Oceanië etext17315 Cavanah, Frances, 1889-1982 Abe Lincoln Gets His Chance etext17336 Buysse, Cyriël, 1859-1932 Plus-Que-Parfait etext17341 Alas, Leopoldo, 1852-1901 Su único hijo etext17348 Various Chambers's Edinburgh Journal, No. 432 etext17386 Montgomery, D. H. (David Henry), 1837-1928 The Leading Facts of English History etext17392 Burleigh, Harry T., 1866-1949 O Perfect Love etext17470 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 On the Art of Writing etext17488 Mindeleff, Cosmos, 1863- The Repair Of Casa Grande Ruin, Arizona, in 1891 etext17491 Pardo Bazán, Emilia, condesa de, 1852-1921 La Tribuna etext17542 Gourmont, Remy de, 1858-1915 Phénissa etext17627 Benson, Robert Hugh, 1871-1914 None Other Gods etext17640 Swift, Jonathan, 1667-1745 Les Voyages de Gulliver etext17667 Lyttelton, George Lyttelton, Baron, 1709-1773 Dialogues of the Dead etext17686 Shakespeare, William, 1564-1616 Troilus ja Cressida etext17697 Bailey, Temple, -1953 The Trumpeter Swan etext17818 Kurikka, Matti, 1863-1915 Aili etext17868 Dickens, Charles, 1812-1870 David Copperfield - Tome I etext17873 Drayton, Michael, 1563-1631 Minor Poems of Michael Drayton etext17885 Freeman, Mary Eleanor Wilkins, 1852-1930 Madelon etext17886 Freeman, Mary Eleanor Wilkins, 1852-1930 Jerome, A Poor Man etext17906 Ghislanzoni, Antonio, 1824-1893 Libro proibito etext17916 Sully Prudhomme, 1839-1907 Les vaines tendresses etext17925 Kurikka, Matti, 1863-1915 Pilven hattaroita II etext18097 Hoodless, Adelaide, 1858-1910 Public School Domestic Science etext18110 Bjørnson, Bjørnstjerne, 1832-1910 The Bridal March; One Day etext18116 Laut, Agnes C. (Agnes Christina), 1871-1936 The Freebooters of the Wilderness etext18126 Townsend, George Alfred, 1841-1914 Tales of the Chesapeake etext18170 Frings, Math Josef, 1819-1895 The Excellence of the Rosary etext18219 Bailey, Temple, -1953 The Trumpeter Swan etext18223 Various The Essence of Buddhism etext18279 Trumbull, J. Hammond (James Hammond), 1821-1897 The Composition of Indian Geographical Names etext18303 etext18340 Erckmann-Chatrian L'ami Fritz etext18349 Henty, G. A. (George Alfred), 1832-1902 In the Irish Brigade etext18371 Ruskin, John, 1819-1900 Giotto and his works in Padua etext18416 Lermina, Jules, 1839-1915 Histoires incroyables, Tome II etext18429 etext18442 Baldwin, James, 1841-1925 Fifty Famous Stories Retold etext18501 Various The Girl's Own Paper, Vol. VIII, No. 357, October 30, 1886 etext18660 Gunnison, Charles A., 1861-1897 The Beautiful Eyes of Ysidria etext18671 Stringer, Arthur, 1874-1950 Never-Fail Blake etext18700 Hopkins, Herbert M. (Herbert Müller), 1870-1910 The Mayor of Warwick etext18719 Leinster, Murray, 1896-1975 Space Tug etext18776 Various The Wit and Humor of America, Volume IV. (of X.) etext18821 Edwards, Eliezer, 1815-1891 Personal Recollections of Birmingham and Birmingham Men etext18830 Anonymous Mahal na Ejercicio ó Devocion nang Pitong Arao na Domingo etext18867 Catullus, Gaius Valerius, 84 BC-54 BC The Poems and Fragments of Catullus etext18913 Wood, John Hardy Perennials and Old Fashioned Flowers etext18926 Gregory, Jackson, 1882-1943 Judith of Blue Lake Ranch etext18939 Stokes, Roy Eliot Andy at Yale etext18947 Snorri Sturluson, 1179-1241 The Younger Edda etext18951 Morrow, Honoré, 1880-1940 Benefits Forgot etext18982 Sepúlveda, Cristovão Aires de Magalhães, 1853-1930 Manuel da Maya e os engenheiros militares portugueses no Terramoto de 1755 etext19005 Whitney, Helen Hay, 1875-1944 The Rose of Dawn etext19017 Mitchell, Edmund Tales of Destiny etext19025 Blanchard, Amy Ella, 1856-1926 A Sweet Little Maid etext19090 Norton, Andre, 1912-2005 Star Hunter etext19095 Kiljander, Robert, 1848-1924 Kihlajaiskemut etext19115 Haverfield, F. (Francis), 1860-1919 Roman Britain in 1914 etext19123 Curtis, William, 1746-1799 The Botanical Magazine, Vol. 5 etext19204 Nicholson, Meredith, 1866-1947 Lady Larkspur etext19221 The Golden Treasury etext19224 Williams, Isabel Cecilia The Alchemist's Secret etext19238 `Abdu'l-Bahá, 1844-1921 Foundations of World Unity etext19250 `Abdu'l-Bahá, 1844-1921 ‘Abdu’l-Bahá in London etext19296 `Abdu'l-Bahá, 1844-1921 Tablets of the Divine Plan etext19340 Leonard, Mary Finley, 1862- The Story of the Big Front Door etext19360 Ewing, Juliana Horatia Gatty, 1841-1885 Six to Sixteen etext19372 Collins, Wilkie, 1824-1889 John Jagon henki tahi kuollutko vai elävä? etext19376 Sage, Michael, 1863-1931 Mrs. Piper & the Society for Psychical Research etext19381 Pierson, Clara Dillingham Among the Farmyard People etext19383 Various The Knickerbocker, or New-York Monthly Magazine, January 1844 etext19425 Hope, Laura Lee The Story of a Stuffed Elephant etext19499 Gehrkens, Karl Wilson, 1882-1975 Music Notation and Terminology etext19530 Fleuron, Svend, 1874-1966 Strix etext19561 Hope, Laura Lee The Outdoor Girls in a Motor Car etext19587 Janvier, Thomas A. (Thomas Allibone), 1849-1913 The Christmas Kalends of Provence etext19590 Fitzhugh, Percy Keese, 1876-1950 Tom Slade's Double Dare etext19602 Hurll, Estelle M. (Estelle May), 1863-1924 Rembrandt etext19705 Lawrence, George A. (George Alfred), 1827-1876 Border and Bastille etext19708 Greene, Sarah P. McLean, 1856-1935 Cape Cod Folks etext19716 Döhring, Angela Hundert neue Rätsel etext19762 Hinkle, Thomas C. (Thomas Clark), 1876-1949 How to Eat etext19793 Nietzsche, Friedrich Wilhelm, 1844-1900 Der tolle Mensch etext19903 Various The American Missionary — Volume 49, No. 5, May, 1895 etext19908 Boyesen, Hjalmar Hjorth, 1848-1895 Essays on Scandinavian Literature etext19911 United States. Congress. House. Committee on Science and Astronautics. The Practical Values of Space Exploration etext19962 Peacocke, Isabel Maud, 1881-1973 Piccaninnies etext20040 Sherman, V. T. The Call of the Beaver Patrol etext20094 Berchet, Giovanni, 1783-1851 Opere, Volume Secondo : scritti critici e letterari etext20255 Van Dyke, Henry, 1852-1933 The Unruly Sprite etext20295 Sheehan, Patrick Augustine, 1852-1913 My New Curate etext20327 Durston, George The Boy Scouts on the Trail etext20332 Brown, Ruth Alberta Tabitha's Vacation etext20339 Kiljander, Robert, 1848-1924 Pahassa pulassa etext20340 Curtis, Alice Turner A Little Maid of Old Maine etext20409 Various Notes and Queries, Number 186, May 21, 1853 etext20422 Goethe, Johann Wolfgang von, 1749-1832 Runoelmia etext20496 Ruland, Wilhelm, 1869-1927 Legends of the Rhine etext20499 Douglas, Alan Afloat etext20513 Marden, Orison Swett, 1850-1924 How to Succeed etext20516 Gale, Zona, 1874-1938 Christmas etext20563 Thomson, Charles Goff Terry etext20685 Aristotle, 384 BC-322 BC Poetics etext20697 Garland, Hamlin, 1860-1940 Prairie Folks etext20722 Douglas, Amanda Minnie, 1831-1916 A Little Girl in Old Salem etext20755 Froude, James Anthony, 1818-1894 Short Studies on Great Subjects etext20779 Various Punch, or the London Charivari, Volume 159, October 27, 1920 etext20789 Hancock, H. Irving (Harrie Irving), 1868-1922 The Grammar School Boys Snowbound etext20805 Dilnot, Frank Lloyd George etext20859 Cummings, Ray, 1887-1957 Wandl the Invader etext20870 Penrose, Margaret The Motor Girls Through New England etext20884 Lie, Jonas Lauritz Idemil, 1833-1908 Yhdyselämää etext20893 Davis, Calvin Olin A Guide to Methods and Observation in History etext20910 Brady, Cyrus Townsend, 1861-1920 South American Fights and Fighters etext20920 Leinster, Murray, 1896-1975 Morale etext20923 Henson, Matthew A. A Negro Explorer at the North Pole etext20937 Rathenau, Walther, 1867-1922 Cannes und Genua etext20992 Reed, Talbot Baines, 1852-1893 Tom, Dick and Harry etext21004 Hough, Emerson, 1857-1923 The Singing Mouse Stories etext21016 Dedekind, Richard, 1831-1916 Essays on the Theory of Numbers etext21024 Guthrie, Thomas, 1803-1873 The Angels' Song etext21058 Collingwood, Harry, 1851-1922 The Strange Adventures of Eric Blackburn etext21153 Darwin, Charles, 1809-1882 On the Origin of Species by Means of Natural Selection etext21168 Burgess, Gelett, 1866-1951 The Goop Directory of Juvenile Offenders Famous for their Misdeeds and Serving as a Salutary Example for all Virtuous Children etext21186 Dostoyevsky, Fyodor, 1821-1881 Записки из подполья etext21229 Walton, Amy, 1848-1899 Thistle and Rose etext21243 Michelson, Miriam, 1870-1942 The Madigans etext21265 Salmela, Marja, 1875-1924 Pohjavirtoja etext21306 Fenn, George Manville, 1831-1909 Dick o' the Fens etext21324 Nonagenarian, A Recollections of Old Liverpool etext21367 Fenn, George Manville, 1831-1909 Sappers and Miners etext21421 Wyndham, Horace The Magnificent Montez etext21576 Marryat, Frederick, 1792-1848 The Privateersman etext21586 Doyle, Arthur Conan, Sir, 1859-1930 The Sign of the Four etext21740 Ballantyne, R. M. (Robert Michael), 1825-1894 The Iron Horse etext21802 Cuauhtlehuanitzin, Domingo Francisco de San Antón Muñón Chimalpahin Yntemoca yntlacamecayo, yn tlahtoque yn teteuhctin yn ompa tlaca ypan altepetl culhuacan yhuan nican tlahtoque teteuhctin yn ipan in tlaca huey altepetl mexico tenochtitlan etext21820 Ambient, Mark Oh! Susannah! etext21890 Guest, Edgar A. (Edgar Albert), 1881-1959 The Path to Home etext21971 London, Jack, 1876-1916 A Son Of The Sun etext21997 Walton, O. F., Mrs., 1849-1939 Christie's Old Organ etext22044 Malheiro, Agostinho Marques Perdigão, 1824-1881 Indice chronologico dos factos mais notaveis da Historia do Brasil etext22133 Various Punch, or the London Charivari, Vol. 104, February 18, 1893 etext22178 Various Chambers's Edinburgh Journal, No. 451 etext22194 Richardson, James H. Spring Street etext22210 Landor, Arnold Henry Savage, 1865-1924 In the Forbidden Land etext22237 Moule, H. C. G. (Handley Carr Glyn), 1841-1920 Messages from the Epistle to the Hebrews etext22242 Various The Youth's Companion etext22260 Massé, H. J. L. J. (Henri Jean Louis Joseph), 1860- Bell's Cathedrals: The Abbey Church of Tewkesbury etext22283 Romanes, George John, 1848-1894 Mind and Motion and Monism etext22305 Abbot, Willis J. (Willis John), 1863-1934 The Naval History of the United States etext22345 Fleury de Chaboulon, Pierre Alexandre Édouard, baron, 1779-1835 Memoirs of the Private Life, Return, and Reign of Napoleon in 1815, Vol. I etext22355 Reuter, Christian, 1665-1712 Schelmuffskys wahrhaftige, kuriöse und sehr gefährliche Reisebeschreibung zu Wasser und zu Lande etext22363 Coyne, James H. The Country of the Neutrals etext22366 Hutton, William Holden, 1860-1930 The Church and the Barbarians etext22384 etext22440 Henry, O., 1862-1910 The Gift of the Magi etext22484 Rockwell, F. F. (Frederick Frye), 1884-1976 Gardening Indoors and Under Glass etext22488 The Mirror of Taste, and Dramatic Censor etext22507 Gentile, Anna Vertua Romanzo d'una signorina per bene etext22512 Merliss, R. R. The Stutterer etext22518 Various Quaint Epitaphs etext22566 Baum, L. Frank (Lyman Frank), 1856-1919 Dorothy and the Wizard in Oz etext22577 Wood, Thomas Practical Grammar and Composition etext22608 Spofford, Ainsworth Rand A Book for All Readers etext22624 Various Notes and Queries, Number 52, October 26, 1850 etext22629 Smith, E. E. (Edward Elmer), 1890-1965 The Vortex Blaster etext22649 Riehl, Wilhelm Heinrich, 1823-1897 Laupeuden työt etext22652 Stewart, Jane L. A Campfire Girl's Test of Friendship etext22682 Spivak, John L. Secret Armies etext22687 Various Punch, or the London Charivari, Vol. 150, March 1, 1916 etext22703 Bellamy, Edward, 1850-1898 Hooking Watermelons etext22754 etext22784 Threlfall, Richard On Laboratory Arts etext22831 Anonymous As A Chinaman Saw Us etext22873 Various Punch, or the London Charivari, Vol. 150, April 5, 1916 etext22885 Barnett, Lionel D. Hindu Gods And Heroes etext22977 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Lagrimas Abençoadas etext22998 Comstock, Harriet T. (Harriet Theresa), 1860- Janet of the Dunes etext23015 Page, Thomas Nelson, 1853-1922 "Run To Seed" etext23045 Shakespeare, William, 1564-1616 Measure for Measure etext23062 Zschokke, Heinrich, 1771-1848 The Broken Cup etext23123 Hodson, Thomas Old Daniel etext23198 Garrett, Randall, 1927-1987 With No Strings Attached etext23201 Rebouças, Antonio Pereira, 1798-1880 Apontamentos sobre a via de communicação do rio Madeira etext23222 Zola, Émile, 1840-1902 The Fête At Coqueville etext23223 Wildenbruch, Ernst von, 1845-1909 Good Blood etext23248 Catherwood, Mary Hartwell, 1847-1902 The Black Feather etext23259 Farnham, Albert Burton, 1870- Home Taxidermy for Pleasure and Profit etext23306 Descartes, René, 1596-1650 Meditationes de prima philosophia etext23326 Burnett, Frances Hodgson, 1849-1924 Mère Giraud's Little Daughter etext23362 Aldrich, Thomas Bailey, 1836-1907 Mademoiselle Olympe Zabriski etext23367 Bacon, Josephine Dodge Daskam, 1876-1961 Julia The Apostate etext23405 Sylvester, Charles Herbert Journeys Through Bookland, Vol. 7 etext23420 Hichens, Robert Smythe, 1864-1950 The Folly Of Eustace etext23467 Anonymous Fairy's Album etext23473 Anonymous Lectures on Land Warfare; A tactical Manual for the Use of Infantry Officers etext23530 Various Adventures in Many Lands etext23537 Various The Continental Monthly, Vol. 6, No 4, August, 1864 etext23578 Camo, Sans L'escapade du Miquette etext23595 Hubbard, Elbert, 1856-1915 Little Journeys to the Homes of the Great - Volume 11 etext23608 Jókai, Mór, 1825-1904 The Day of Wrath etext23609 etext23621 etext23631 Murfree, Mary Noailles, 1850-1922 The Moonshiners At Hoho-Hebee Falls etext23641 Green, Anna Katharine, 1846-1935 The Forsaken Inn etext23655 Various Chambers's Edinburgh Journal, No. 456 etext23741 Lloyd, Nelson, 1873-1933 David Malcolm etext23743 Various The Atlantic Monthly, Volume 18, No. 107, September, 1866 etext23748 Andrews, Elisha Benjamin, 1844-1917 History of the United States, Volume 3 etext23781 Douglas, Amanda Minnie, 1831-1916 A Little Girl of Long Ago etext23783 Pain, Barry, 1864-1928 Eliza etext23788 De Quincey, Thomas, 1785-1859 The Posthumous Works of Thomas De Quincey, Vol. 1 etext23818 Li, Ruzhen, ca. 1763-ca. 1830 鏡花緣 etext23826 Cooper, William A Sketch of the Life of the late Henry Cooper etext23842 Xiong, Damu, 16th cent. 楊家將 etext23886 Havens, Munson Aldrich, 1873-1942 Old Valentines etext23890 Various Skandinaviasta etext23958 Weekley, Ernest, 1865-1954 The Romance of Words (4th ed.) etext23973 Bassett, Sara Ware, 1872-1968 Mrs. Christy's Bridge Party etext24013 Alger, Horatio, 1832-1899 The Telegraph Boy etext24023 Andrews, Elisha Benjamin, 1844-1917 History of the United States, Volume 6 etext24177 Van-Anderson, Helen, 1859- The Right Knock etext24212 Storm, Theodor, 1817-1888 Im Saal etext24280 Keats, John, 1795-1821 Endymion etext24326 Painter, F. V. N. (Franklin Verzelius Newton), 1852-1931 Elementary Guide to Literary Criticism etext24328 Cole, Lawrence Thomas, 1869- The Basis of Early Christian Theism etext24408 Various Punch, or the London Charivari, Vol. 104, April 29, 1893 etext24421 Anonymous The Story Of Gunnlaug The Worm-Tongue And Raven The Skald etext24483 Drummond, Hamilton, 1857-1935 The Justice of the King etext24507 Steiner, Rudolf, 1861-1925 Christentum als mystische Tatsache und die Mysterien des Altertums. English etext24522 Miller, Leo E. (Leo Edward), 1887- The Black Phantom etext24611 Archer, Jean C. The Adventures of Samuel and Selina etext24668 Wilson, Woodrow, 1856-1924 In Our First Year of the War etext24684 Windle, Bertram Coghill Alan, Sir, 1858-1929 Science and Morals and Other Essays etext24715 Kingston, William Henry Giles, 1814-1880 The Western World etext24753 Arthur, T. S. (Timothy Shay), 1809-1885 Who Are Happiest? and Other Stories etext24779 Cole, Everett B., 1918-1977 Millennium etext24800 Romanes, George John, 1848-1894 Darwin, and After Darwin (Vol. 1 and 3, of 3) etext24814 Reid, Mayne, 1818-1883 The Forest Exiles etext24861 Lemay, Pamphile, 1837-1918 L'affaire Sougraine etext24933 Wallace, Edgar, 1875-1932 The Man Who Knew etext25003 Brazil, Angela, 1868-1947 The Nicest Girl in the School etext25038 Wallace, Edgar, 1875-1932 Tam o' the Scoots etext25076 Cable, Boyd, 1878-1943 Between the Lines etext25105 Becke, Louis, 1855-1913 Pâkia etext25121 Wang, Yisun, -ca. 1290 花外集 etext25176 Giacosa, Giuseppe, 1847-1906 Diritti dell'Anima etext25209 Bianchi, Arturo, 1856-1939 I ladri della pace etext25252 Wu, Jing, 670-749 貞觀政要 etext25278 Rexford, Eben E. (Eben Eugene), 1848-1916 Amateur Gardencraft etext25320 Theuriet, André, 1833-1907 Paternidad etext25381 Zhang, Chao, 1650- 幽夢影 etext25410 France, Anatole, 1844-1924 The Miracle Of The Great St. Nicolas etext25438 Nowlan, Philip Francis, 1888-1940 The Airlords of Han etext25447 Russell, Bertrand, 1872-1970 Mysticism and Logic and Other Essays etext25461 Bo-Peep Story Books etext25592 Unknown Life and Adventures of Mr. Pig and Miss Crane etext25711 Haeckel, Ernst Heinrich Philipp August, 1834-1919 Freie wissenschaft und freie lehr. English etext25750 Scott, G. Firth Colonial Born etext25793 Morley, John, 1838-1923 Critical Miscellanies (Vol. 3 of 3) etext25800 Hallett, Cecil Walter Charles, 1868- Bell's Cathedrals: The Cathedral Church of Ripon etext25837 Nicholson, Meredith, 1866-1947 The Madness of May etext25862 Peyton, Green, 1907-1968 The Chamber of Life etext25874 Various Birds, Illustrated by Color Photography, Vol. 1, No. 4 etext25892 Hueston, Ethel, 1887- Eve to the Rescue etext25904 Meyer, F. B. (Frederick Brotherton), 1847-1929 John the Baptist etext25917 Dingle, Aylward Edward, 1874- Gold Out of Celebes etext25998 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Riflemen of the Ohio etext26056 Rainolde, Richard, -1606 A booke called the Foundacion of Rhetorike etext26086 Hannay, James, 1842-1910 Wilmot and Tilley etext26112 Smith, Mabell S. C. (Mabell Shippie Clarke), 1864-1942 A Tar-Heel Baron etext26122 Sidney, Margaret, 1844-1924 Five Little Peppers at School etext26176 Wallace, Edgar, 1875-1932 The Secret House etext26179 Bacon, Francis, 1561-1626 Filosofiset mietelmät etext26198 Creswicke, Louis South Africa and the Transvaal War, Vol. 2 (of 6) etext26236 Braddon, M. E. (Mary Elizabeth), 1835-1915 Vixen, Volume I. etext26267 United States Rubber Company The Romance of Rubber etext26282 Musick, John R. (John Roy), 1849-1901 The Witch of Salem etext26286 Bianco, Margery Williams, 1880-1944 The Velveteen Rabbit etext26313 Hunt, Thomas Forsyth, 1862-1927 The Young Farmer: Some Things He Should Know etext26336 Talleyrand-Périgord, Charles Maurice de, prince de Bénévent, 1754-1838 Rapport sur l'Instruction Publique, les 10, 11 et 19 Septembre 1791 etext26420 Robins, Elizabeth, 1862-1952 The Convert etext26450 Okey, Thomas, 1852-1935 The Story of Paris etext26503 Ivalo, Santeri, 1866-1937 Iltapuhteeksi II etext26514 Pemberton, Max, Sir, 1863-1950 The Iron Pirate etext26619 Leslie, Madeline, 1815-1893 Minnie's Pet Lamb etext26655 Palacio Valdés, Armando, 1853-1938 Tristán o el pesimismo etext26676 Anonymous Diffinição da sécia etext26695 Optic, Oliver, 1822-1897 Make or Break etext26771 Bunge, Carlos O. (Carlos Octavio), 1875-1918 Thespis etext26844 Marryat, Frank, 1826-1855 Borneo and the Indian Archipelago etext26868 Louÿs, Pierre, 1870-1925 La femme et le pantin etext26905 Parker, Gilbert, 1862-1932 Northern Lights etext26913 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 O Assassino de Macario etext26940 Defoe, Daniel, 1661?-1731 Atalantis Major etext26979 Liu, Hui, 3rd/4th cent. 海島算經 etext26998 Barrie, J. M. (James Matthew), 1860-1937 Peter Pan in Kensington Gardens etext27018 Denon, Vivant, 1747-1825 Point de lendemain etext27019 Marlowe, Stephen, 1928-2008 My Shipmate—Columbus etext27057 Rolleston, T. W. (Thomas William), 1857-1920 Ireland and Poland etext27080 West, Julius, 1891-1918 G. K. Chesterton, A Critical Study etext27091 Bazzoni, Giambattista, 1803-1850 Falco della rupe etext27110 Gallun, Raymond Z., 1911-1994 The Eternal Wall etext27134 Garneau, F.-X. (François-Xavier), 1809-1866 Histoire du Canada depuis sa découverte jusqu'à nos jours. Tome IV etext27145 Luo, Guanzhong, 1330?-1400? 殘唐五代史演義傳 etext27234 Dickens, Mamie, 1838-1896 My Father as I Recall Him etext27236 Camões, Luís Vaz de, 1524-1580 Os Lusíadas etext27263 Zhang, Record Gather Record Gather Zhang etext27286 Runciman, Walter C. Gas and Oil Engines, Simply Explained etext27293 Tiffany, Osmond, 1823- A sketch of the life and services of Gen. Otho Holland Williams etext27295 Fernández y González, Manuel, 1821-1888 Amparo etext27326 Gisbert, Mateo Diccionario Bagobo-Español etext27334 Rapisardi, Mario, 1844-1912 Africa Orrenda etext27336 Wilcox, Ella Wheeler, 1855-1919 Three Women etext27412 Sequeira, Eduardo Henrique Vieira Coelho de, 1861-1914 Lendas dos Vegetaes etext27431 Hawks, Francis L. (Francis Lister), 1798-1866 The Adventures of Daniel Boone: the Kentucky rifleman etext27442 Cammaerts, Emile, 1878-1953 Belgium etext27446 Huch, Ricarda Octavia, 1864-1947 Der Hahn von Quakenbrück und andere Novellen etext27506 Menzies, Sutherland, fl. 1840-1883 Political Women, Vol. 2 etext27560 United States. Central Intelligence Agency The 2005 CIA World Factbook etext27579 Brown, William Garrott, 1868-1913 Stephen Arnold Douglas etext27609 Hansen, L. Taylor (Lucile Taylor), 1897-1976 The Undersea Tube etext27621 Duchess, 1855?-1897 How I write my novels etext27656 d'Albay, Jacques Tournadour De verwoeste steden aan de straat van Messina etext27670 Chapman, John Jay, 1862-1933 The Treason and Death of Benedict Arnold etext27672 Silius Italicus, Tiberius Catius Punicorum Libri Septemdecim etext27835 Brodziński, Kazimierz, 1791-1835 Wiesław etext27850 Hough, Emerson, 1857-1923 The Young Alaskans in the Rockies etext27881 Wharton, Anne Hollingsworth, 1845-1928 In Château Land etext27930 Robertson, Margaret M. (Margaret Murray), 1821-1897 David Fleming's Forgiveness etext27951 Baum, L. Frank (Lyman Frank), 1856-1919 Policeman Bluejay etext27956 Schoener, Reinhold, 1849- Roma Sacra etext27968 MacApp, C. C., 1917-1971 Tulan etext29025 Anonymous Roman Catholicism in Spain etext27987 Donnell, Annie Hamilton, 1862- Glory and the Other Girl etext28018 Lucian, of Samosata, 120-180 Λουκιανός - Άπαντα etext28047 Walton, Bryce, 1918-1988 Strange Alliance etext28075 Various The Christian Foundation, Or, Scientific and Religious Journal, March, 1880 etext28103 Wallace, Robert The Doctrines of Predestination, Reprobation, and Election etext28123 Townley, Houghton The Scarlet Feather etext28136 Various The Nursery, August 1877, Vol. XXII, No. 2 etext28187 James, M. R. (Montague Rhodes), 1862-1936 The Wanderings and Homes of Manuscripts etext28198 A Budget of Christmas Tales by Charles Dickens and Others etext28202 Lucian, of Samosata, 120-180 Λουκιανός - Άπαντα etext28298 Bernhardi, Friedrich von, 1849-1930 Cavalry in Future Wars etext28337 Le Queux, William, 1864-1927 Hushed Up! etext28355 Porta, Giambattista della, 1535?-1615 La tabernaria etext28365 Groves, Ernest R. (Ernest Rutherford), 1877-1946 Rural Problems of Today etext28378 Ludovici, Anthony M. (Anthony Mario), 1882-1971 Too Old for Dolls etext28462 White, Grace Miller, 1868-1957 Rose O'Paradise etext28465 Leverson, Ada, 1862-1933 The Limit etext28501 McGaw, Virginia Construction Work for Rural and Elementary Schools etext28586 Orton, Helen Fuller, 1872-1955 Prince and Rover of Cloverfield Farm etext28610 Rydberg, Viktor, 1828-1895 Singoalla etext28624 Saint-Elme, Ida, 1778-1845 Mémoires d'une contemporaine etext28662 Stockton, Frank Richard, 1834-1902 The Squirrel Inn etext28711 Bacon, Mary Schell Hoke, 1870-1934 Operas Every Child Should Know etext28735 Breckenridge, Gerald, 1889-1964 The Radio Boys with the Revenue Guards etext28772 Ellen of Villenskov etext28837 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Three Men in a Boat (To Say Nothing of the Dog) etext28853 Mitton, G. E. (Geraldine Edith) The Children's Book of Stars etext28862 Meade, L. T., 1854-1914 The Time of Roses etext28897 Darwin, Charles, 1809-1882 The Variation of Animals and Plants Under Domestication, Volume II (of 2) etext28904 Azara, Félix de, 1742-1821 Correspondencia Oficial e Inedita sobre la Demarcacion de Limites entre el Paraguay y el Brasil etext28928 Mello, Thomaz José de, 1836-1905 O Conde de S. Luiz etext28940 Kipling, Rudyard, 1865-1936 Stalky & Co. etext29052 Potter, Beatrix, 1866-1943 Histoire de Pierre Lapin etext29062 Vikelas, Demetrios, 1835-1908 Λουκής Λάρας etext29078 Fernández Duro, Cesáreo, 1830-1908 Estudios históricos del reinado de Felipe II etext29130 Duncan, Norman, 1871-1916 Billy Topsail & Company etext29131 Bennet, Robert Ames, 1870-1954 Out of the Depths etext29142 Brown, Fredric, 1906-1972 Keep Out etext29166 Ingram, Eleanor M. (Eleanor Marie), 1886-1921 The Flying Mercury etext29194 Locke, Robert Donald G-r-r-r...! etext29245 Lillibridge, Will, 1878-1909 A Breath of Prairie and other stories etext29291 Marryat, Frederick, 1792-1848 The Pirate, and The Three Cutters etext29345 Frost, Robert, 1874-1963 Mountain Interval etext29387 Castlemon, Harry, 1842-1915 Marcy The Blockade Runner etext29416 Burks, Arthur J., 1898-1974 The Mind Master etext29422 Schmucker, Samuel Christian, 1860- The Meaning of Evolution etext29433 Emerson, Ralph Waldo, 1803-1882 Nature etext29464 Gerstäcker, Friedrich, 1816-1872 Tahiti. Zweiter Band. etext29499 Hirst, Francis Wrigley, 1873-1953 The Paper Moneys of Europe etext29502 Little Masterpieces of Science: Explorers etext29510 Plotinus, 205?-270 An Essay on the Beautiful etext29560 Furniss, Harry, 1854-1925 M. P.'s in Session etext29580 Bower, B. M., 1874-1940 Rim o' the World etext29618 Arthur, Robert, 1909-1969 The Aggravation of Elmer etext29641 Shaw, Albert, 1857-1947 The business career in its public relations etext29647 Brinton, Selwyn, 1859-1940 The Eighteenth Century in English Caricature etext29672 Cossack Fairy Tales and Folk Tales etext29688 Janes, Donald W. Home Range and Movements of the Eastern Cottontail in Kansas etext29774 Montgomery, Rutherford George, 1896- A Yankee Flier Over Berlin etext29790 Thieme, Richard F. Pleasant Journey etext29806 Frischauf, Johannes, 1837-1924 Elemente der Absoluten Geometrie etext30089 Maclaren, Ian, 1850-1907 Young Barbarians etext30107 Mill, John Stuart, 1806-1873 Principles Of Political Economy etext30134 Rogers, L. W. (Louis William), 1859-1953 Elementary Theosophy etext30142 Doctorow, Cory, 1971- Little Brother etext30143 Henty, G. A. (George Alfred), 1832-1902 Out on the Pampas etext30147 Warner, Susan, 1819-1885 Opportunities etext30206 Bradlaugh, Charles, 1833-1891 Humanity's Gain from Unbelief etext30241 Torrey, R. A. (Reuben Archer), 1856-1928 The Person and Work of The Holy Spirit etext30265 Various The Atlantic Monthly, Volume 15, No. 89, March, 1865 etext30291 Kelly, Eleanor Mercein, 1880-1968 Kildares of Storm etext30319 Parrish, Randall, 1858-1923 Beyond the Frontier etext30321 Fox, Richard C. The Adductor Muscles of the Jaw In Some Primitive Reptiles etext30447 Warman, Cy, 1855-1914 Snow on the Headlight etext30504 Brown, Paul Cameron Eyeshine etext30510 etext30542 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 Berenice etext30547 Molesworth, Mrs., 1839-1921 The Thirteen Little Black Pigs etext30601 etext30613 Homer, 750? BC-650? BC Ομήρου Οδύσσεια Τόμος Α etext30738 Notturno, Napolitano Opera nova amorosa, vol. 1 etext30769 Various The Baptist Magazine, Vol. 27, January, 1835 etext30784 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 Dictionnaire raisonné de l'architecture française du XIe au XVIe siècle (4/9) etext30818 Various Punch, or the London Charivari, Vol. 98, January 25th, 1890 etext30940 Madison, Lucy Foster, 1865-1932 Peggy Owen and Liberty etext30966 Molesworth, Mrs., 1839-1921 Miss Mouse and Her Boys etext30970 Allen, Grant, 1848-1899 Miss Cayley's Adventures etext30987 Hall, Arthur D. Porto Rico etext31049 Crane, William E. Bugle Blasts etext31052 Conscience, Hendrik, 1812-1883 Siska van Roosemael etext31073 Phillips, W. B. How Department Stores Are Carried On etext31086 Gibbons, Floyd "And they thought we wouldn't fight" etext31106 Sergeant, Adeline, 1851-1904 Brooke's Daughter etext31132 Zeitlin, Jacob Hazlitt on English Literature etext31188 King, Charles, 1844-1933 Laramie; or, The Queen of Bedlam. etext31297 Rudolph, Roelof Jan Willem Van strak gespannen snaren etext31321 Ziegler, Alexander Martin Behaim aus Nürnberg etext31443 Vizantios, Dimitrios K., 1790-1853 Ο Σινάνης etext31487 Fletcher, Archibald Lee Boy Scouts on the Great Divide etext31546 Stevens, Nettie Maria, 1861-1912 Studies in Spermatogenesis etext31558 Darwin, Charles, 1809-1882 A Monograph on the Sub-class Cirripedia etext31611 Wolf, Mari Robots of the World! Arise! etext31613 Valera, Juan, 1824-1905 El Superhombre y otras novedades etext31641 Various Encyclopaedia Britannica, 11th Edition, Volume 6, Slice 4 etext31825 Duchess, 1855?-1897 Portia etext31853 Souris, Georgios, 1853-1919 Ποιήματα, Τόμος Δεύτερος, Ανέκδοτα etext31937 Ganes, Mark Evil Out of Onzar etext31953 Bone, David W. (David William), 1874-1959 Merchantmen-at-arms : the British merchants' service in the war etext32037 Poe, Edgar Allan, 1809-1849 Eureka: etext32038 Goodwin, Harold L. (Harold Leland), 1914-1990 The Flaming Mountain etext32043 Kniffin, Gilbert C. Army of the Cumberland and the Battle of Stone's River etext32044 Fullerton, Hugh S. Jimmy Kirkland and the Plot for a Pennant etext32068 Abernathy, Robert World of the Drone etext32074 Buck, Mitchell Book Repair and Restoration etext32080 Various Punch, or the London Charivari, Vol. 158, June 16, 1920 etext32102 Strang, Herbert Barclay of the Guides etext32165 G. E. M. Venerable Philippine Duchesne etext32172 Wright, Henrietta Christian Children's Stories in American Literature, 1660-1860 etext32175 Wilson, Robert W. Preliminary Survey of a Paleocene Faunule from the Angels Peak Area, New Mexico etext32179 Nirvanas, Pavlos, 1866-1937 Η βοσκοπούλα με τα μαργαριτάρια etext32274 etext32275 Parkerson, James The Bankrupt etext32305 Shakespeare, William, 1564-1616 Σαικσπήρου Δράματα, Ο Βασιλιάς Ληρ etext32356 Brittain, Alfred Roman Women etext32365 Scott, Martin Jerome, 1865-1964 A Boy Knight etext32470 Eshbach, Lloyd Arthur, 1910-2003 Isle of the Undead etext32473 Reynard, Geoff St. The Buttoned Sky etext32487 Holden, Fox B. A Gift For Terra etext32508 Whitney, Elliott The Blind Lion of the Congo etext32543 Drayson, A. W. (Alfred Wilks), 1827-1901 The White Chief of the Caffres etext32546 Various The Atlantic Monthly, Volume 16, No. 95, September 1865 etext32565 Mitford, Bertram, 1855-1914 Aletta etext32651 Cox, Irving E. Adolescents Only etext32657 Galouye, Daniel F., 1920-1976 Spillthrough etext4 Lincoln, Abraham, 1809-1865 Gettysburg Address etext27 Hardy, Thomas, 1840-1928 Far from the Madding Crowd etext35 Wells, H. G. (Herbert George), 1866-1946 The Time Machine etext37 etext59 Descartes, René, 1596-1650 Discourse on the Method of Rightly Conducting One's Reason and of Seeking Truth in the Sciences etext143 Hardy, Thomas, 1840-1928 The Mayor of Casterbridge etext242 Cather, Willa Sibert, 1873-1947 My Antonia etext272 Luther, Martin, 1483-1546 An Open Letter on Translating etext281 Stevenson, Robert Louis, 1850-1894 Father Damien, an Open Letter to the Reverend Dr. Hyde of Honolulu etext283 Wharton, Edith, 1862-1937 The Reef etext302 Husted, Michael The Fibonacci Number Series etext322 Stevenson, Robert Louis, 1850-1894 St. Ives, Being the Adventures of a French Prisoner in England etext371 Wheatley, Henry Benjamin, 1838-1917 Literary Blunders etext398 Platt, Rutherford Hayes, 1894-1975 Bible. O. T. Apocryphal books. English etext405 Davis, Richard Harding, 1864-1916 Adventures and Letters of Richard Harding Davis etext413 Stevenson, Robert Louis, 1850-1894 Ballads etext479 Burnett, Frances Hodgson, 1849-1924 Little Lord Fauntleroy etext492 Stevenson, Robert Louis, 1850-1894 Essays in the Art of Writing etext508 Hawthorne, Nathaniel, 1804-1864 From Twice Told Tales etext514 Alcott, Louisa May, 1832-1888 Little Women etext531 Steinmetz, Andrew, 1816-1877 The Gaming Table: Its Votaries and Victims etext535 Stevenson, Robert Louis, 1850-1894 Travels with a Donkey in the Cevennes etext536 Stevenson, Robert Louis, 1850-1894 A Footnote to History etext541 Wharton, Edith, 1862-1937 The Age of Innocence etext562 Kay, Ross Go Ahead Boys and the Racing Motorboat etext621 James, William, 1842-1910 Varieties of Religious Experience, a Study in Human Nature etext636 Mackay, Charles, 1814-1889 Memoirs of Extraordinary Popular Delusions — Volume 1 etext678 Dickens, Charles, 1812-1870 The Cricket on the Hearth etext731 Gibbon, Edward, 1737-1794 History of the Decline and Fall of the Roman Empire — Volume 1 etext750 Anonymous The High History of the Holy Graal etext784 Boyesen, Hjalmar Hjorth, 1848-1895 Boyhood in Norway etext788 London, Jack, 1876-1916 The Red One etext805 Fitzgerald, F. Scott (Francis Scott), 1896-1940 This Side of Paradise etext820 etext870 Jerome, Jerome K. (Jerome Klapka), 1859-1927 The Love of Ulrich Nebendahl etext946 Austen, Jane, 1775-1817 Lady Susan etext979 Munro, John, 1849-1930 Heroes of the Telegraph etext1005 Dante Alighieri, 1265-1321 Divine Comedy, Cary's Translation, Hell etext1033 Wiggin, Kate Douglas Smith, 1856-1923 Rose O' the River etext1048 Van Dyke, Henry, 1852-1933 The Ruling Passion; tales of nature and human nature etext1089 London, Jack, 1876-1916 Moon-Face etext1214 Rinehart, Mary Roberts, 1876-1958 The Street of Seven Stars etext1228 Darwin, Charles, 1809-1882 On the origin of species etext1242 Balzac, Honoré de, 1799-1850 Unconscious Comedians etext1320 Gross, Hans Gustav Adolf, 1847-1915 Criminal Psychology; a manual for judges, practitioners, and students etext1329 Lindsay, David, 1876-1945 A Voyage to Arcturus etext1403 Balzac, Honoré de, 1799-1850 A Start in Life etext1405 Balzac, Honoré de, 1799-1850 The Collection of Antiquities etext1483 Carvalho, David Nunes, 1848-1925 Forty Centuries of Ink etext1495 Steele, Chester K. The Golf Course Mystery etext1507 Shakespeare, William, 1564-1616 The Tragedy of Titus Andronicus etext1522 Shakespeare, William, 1564-1616 Julius Caesar etext1577 Phillpotts, Eden, 1862-1960 The Grey Room etext1589 Marlowe, Christopher, 1564-1593 Tamburlaine the Great — Part 2 etext1616 Plato, 427? BC-347? BC Cratylus etext1632 Whibley, Charles, 1859-1930 A Book of Scoundrels etext1698 Verne, Jules, 1828-1905 The Survivors of the Chancellor etext1753 Chekhov, Anton Pavlovich, 1860-1904 Swan Song etext1764 Davis, Richard Harding, 1864-1916 Billy and the Big Stick etext1780 Shakespeare, William, 1564-1616 King Henry IV, Part 1 etext1792 Shakespeare, William, 1564-1616 Measure for Measure etext1812 Balzac, Honoré de, 1799-1850 A Prince of Bohemia etext1862 Daudet, Alphonse, 1840-1897 Tartarin of Tarascon etext1869 Rinehart, Mary Roberts, 1876-1958 The Man in Lower Ten etext1904 Kilner, Dorothy, 1755-1836 Life and Perambulations of a Mouse etext1970 Rinehart, Mary Roberts, 1876-1958 A Poor Wise Man etext1978 Field, Ellen Robena Buttercup Gold, and other stories etext1989 Wurdz, Gideon, 1875- The Foolish Dictionary etext2005 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Piccadilly Jim etext2064 Johnson, Samuel, 1709-1784 Journey to the Western Islands of Scotland etext2076 Giles, Herbert Allen, 1845-1935 The Civilization of China etext2083 Verne, Jules, 1828-1905 In Search of the Castaways; or the Children of Captain Grant etext2110 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 10 etext2210 Human Genome Project Chromosome Number 10 etext2228 Goethe, Johann Wolfgang von, 1749-1832 Reineke Fuchs etext2275 Cooper, James Fenimore, 1789-1851 The Pioneers etext2294 Various Anthology of Massachusetts Poets etext2321 Goethe, Johann Wolfgang von, 1749-1832 Götz von Berlichingen mit der eisernen Hand etext2348 Doyle, Arthur Conan, Sir, 1859-1930 The Disappearance of Lady Frances Carfax etext2399 Pater, Walter, 1839-1894 Imaginary Portraits etext2454 Reeve, Arthur B. (Arthur Benjamin), 1880-1936 The Silent Bullet etext2508 Harte, Bret, 1836-1902 Stories in Light and Shadow etext2514 Burnett, Frances Hodgson, 1849-1924 T. Tembarom etext2543 Corneille, Pierre, 1606-1684 Polyeucte etext2545 London, Jack, 1876-1916 When God Laughs: and other stories etext2641 Forster, E. M. (Edward Morgan), 1879-1970 A Room with a View etext2645 Thackeray, William Makepeace, 1811-1863 The Second Funeral of Napoleon etext2686 Thackeray, William Makepeace, 1811-1863 The Book of Snobs etext2687 Sabatini, Rafael, 1875-1950 The Snare etext2771 Galsworthy, John, 1867-1933 The Island Pharisees etext2797 Thackeray, William Makepeace, 1811-1863 The Wolves and the Lamb etext2824 La Motte-Fouqué, Friedrich Heinrich Karl Freiherr de, 1777-1843 Sintram and His Companions etext2849 Josephus, Flavius, 38?-100? Against Apion etext2873 Allen, Emory Adams, 1853- The Prehistoric World; or, Vanished races etext2876 Kipling, Rudyard, 1865-1936 The Light That Failed etext2878 Lydgate, John, 1370?-1451? Disguising at Hertford etext2882 Ginzberg, Louis, 1873-1953 The Legends of the Jews — Volume 4 etext2908 Galsworthy, John, 1867-1933 Strife etext2952 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 02: a Cleric in Naples etext2967 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 17: Return to Italy etext2979 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 29: Florence to Trieste etext3035 Stephenson, Nathaniel W. (Nathaniel Wright), 1867-1935 The Day of the Confederacy; a chronicle of the embattled South etext3045 Trollope, Anthony, 1815-1882 The Last Chronicle of Barset etext3069 Doyle, Arthur Conan, Sir, 1859-1930 The Great Boer War etext3087 Maupassant, Guy de, 1850-1893 Original Short Stories — Volume 11 etext3108 Warner, Charles Dudley, 1829-1900 Nine Short Essays etext3166 Trollope, Anthony, 1815-1882 Doctor Thorne etext3175 Twain, Mark, 1835-1910 Mark Twain's Burlesque Autobiography etext3183 Twain, Mark, 1835-1910 The Facts Concerning the Recent Carnival of Crime in Connecticut etext3230 Pyle, Katharine, 1863-1938 The Counterpane Fairy etext3231 Baker, Samuel White, Sir, 1821-1893 The Rifle and the Hound in Ceylon etext3268 Radcliffe, Ann Ward, 1764-1823 The Mysteries of Udolpho etext3281 Lincoln, Joseph Crosby, 1870-1944 Cy Whittaker's Place etext3288 Connor, Ralph, 1860-1937 The Sky Pilot in No Man's Land etext3292 Yonge, Charlotte Mary, 1823-1901 Clever Woman of the Family etext3415 Amundsen, Roald, 1872-1928 The South Pole; an account of the Norwegian antarctic expedition in the "Fram," 1910-1912 — Volume 2 etext3443 Anonymous Arabian nights. English etext3464 Rinehart, Mary Roberts, 1876-1958 Tish etext3475 Burroughs, Edgar Rice, 1875-1950 The Efficiency Expert etext3501 Human Genome Project Human Genome Project, Chromosome Number 01 etext3518 Human Genome Project Human Genome Project, Chromosome Number 18 etext3541 Tolstoy, Leo, graf, 1828-1910 What to Do? Thoughts Evoked By the Census of Moscow etext3542 Casanova, Giacomo, 1725-1798 Widger's Quotations from the Project Gutenberg Editions of the Works of Jacques Casanova etext3548 Bunyan, John, 1628-1688 The Pharisee and Publican etext3556 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 06 etext3589 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 09 etext3662 Harris, Frank, 1856-1931 Oscar Wilde, His Life and Confessions — Volume 1 etext3670 Reade, Charles, 1814-1884 Peg Woffington etext3679 Johnson, J. C. F. (Joseph Colin Frances), 1848- Getting Gold: a practical treatise for prospectors, miners and students etext26985 Waggaman, Mary T. (Mary Theresa), 1846-1931 Killykinick etext3746 Parker, Gilbert, 1862-1932 The Judgment House etext3786 Kingsley, Henry, 1830-1876 Recollections of Geoffrey Hamlyn etext3802 Gaboriau, Émile, 1832-1873 The Widow Lerouge etext3863 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 04 etext3866 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 07 etext3905 Rousseau, Jean-Jacques, 1712-1778 The Confessions of J. J. Rousseau — Volume 05 etext3926 Droz, Gustave, 1832-1895 Monsieur, Madame, and Bebe — Complete etext3933 Massa, Philippe, marquis de, 1831-1911 Zibeline — Volume 3 etext3938 Theuriet, André, 1833-1907 A Woodland Queen — Complete etext3989 Malot, Hector, 1830-1907 Conscience — Volume 4 etext3994 Loti, Pierre, 1850-1923 Madame Chrysantheme — Volume 4 etext4004 Shaw, Bernard, 1856-1950 Bernard Shaw's Preface to Androcles and the Lion etext4015 O'Neill, Eugene, 1888-1953 The Hairy Ape etext4019 Wallace, Dillon, 1863-1939 The Lure of the Labrador Wild etext4026 O'Neill, Eugene, 1888-1953 The First Man etext4039 Jonson, Ben, 1573-1637 Volpone; Or, the Fox etext4052 Johnson, Richard, 1753-1827 Address to the Inhabitants of the Colonies, established in New South Wales And Norfolk Island etext4091 Perkins, Lucy Fitch, 1865-1937 The French Twins etext4093 Ibsen, Henrik, 1828-1906 Hedda Gabler etext4111 Young, Filson, 1876-1938 Christopher Columbus and the New World of His Discovery — Volume 4 etext4126 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 09: January/February/March 1660-61 etext4214 Shakespeare (spurious and doubtful works), 1564-1616 The Puritaine Widdow etext4247 Hariot, Thomas, 1560-1621 A Briefe and True Report of the New Found Land of Virginia etext4305 Gissing, George, 1857-1903 The Unclassed etext4317 Anonymous Prophetia Ionae etext4346 Darwin, Charles, 1809-1882 Effects of Cross and Self Fertilisation in the Vegetable Kingdom etext4413 Meredith, George, 1828-1909 Sandra Belloni — Volume 1 etext4436 Meredith, George, 1828-1909 Vittoria — Volume 2 etext4437 Meredith, George, 1828-1909 Vittoria — Volume 3 etext4477 Meredith, George, 1828-1909 Lord Ormont and His Aminta — Volume 1 etext4501 Brentano, Clemens, 1778-1842 Gockel, Hinkel und Gackeleia etext4517 Wharton, Edith, 1862-1937 Ethan Frome etext4610 Walpole, Horace, 1717-1797 The Letters of Horace Walpole, Earl of Orford — Volume 2 etext4613 Benson, Arthur Christopher, 1862-1925 At Large etext4620 The Wedding Guest etext4649 Voltaire, 1694-1778 Romans — Volume 3: Micromegas etext4688 Mallarmé, Stéphane, 1842-1898 Pages etext4697 Shelley, Percy Bysshe, 1792-1822 Peter Bell the Third etext4760 Martin, Helen Reimensnyder, 1868-1939 Tillie, a Mennonite Maid; a Story of the Pennsylvania Dutch etext4778 Vaknin, Samuel, 1961- Sipurim etext4787 Norris, Kathleen Thompson, 1880-1966 The Story of Julia Page etext4812 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 11: 1566, part II etext4870 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1598 etext4907 Stratton-Porter, Gene, 1863-1924 Moths of the Limberlost etext4915 Norris, Kathleen Thompson, 1880-1966 The Heart of Rachael etext4924 Widtsoe, John Andreas, 1872-1952 Dry-Farming : a System of Agriculture for Countries under a Low Rainfall etext5013 Madison, James, 1751-1836 State of the Union Address etext5083 Mackenzie, Henry, 1745-1831 The Man of Feeling etext5092 O'Grady, Standish, 1846-1928 The Coming of Cuculain etext5105 Daudet, Alphonse, 1840-1897 Tartarin Sur Les Alpes etext5153 Mundy, Talbot, 1879-1940 Rung Ho! etext5170 Wilcox, Ella Wheeler, 1855-1919 Poems of Experience etext5178 Molière, 1622-1673 Le Mariage Forcé etext5187 Calhoun, Frances Boyd, 1867-1909 Miss Minerva and William Green Hill etext5280 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 06 etext5292 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 18 etext5294 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 20 etext5334 Oxley, John, 1781-1828 Journals of Two Expeditions into the Interior of New South Wales etext5386 Churchill, Winston, 1871-1947 The Celebrity, Volume 04 etext5399 Churchill, Winston, 1871-1947 An essay on the American contribution and the democratic idea etext5420 Brown, John, 1810-1882 Rab and His Friends etext5438 Remick, Grace M. Glenloch Girls etext5470 Ebers, Georg, 1837-1898 Joshua — Volume 4 etext5520 Ebers, Georg, 1837-1898 The Bride of the Nile — Volume 04 etext5597 Ebers, Georg, 1837-1898 The Story of My Life — Volume 05 etext5627 Schubert, Franz Peter, 1797-1828 String Quartet No. 10 in E-flat Major, Opus 124, No. 1 etext5707 Durston, George The Boy Scout Aviators etext5764 Haggard, Henry Rider, 1856-1925 Doctor Therne etext5804 Hope, Laura Lee The Story of a Lamb on Wheels etext5809 Twain, Mark, 1835-1910 Following the Equator, Part 2 etext5810 Twain, Mark, 1835-1910 Following the Equator, Part 3 etext5832 Allen, Grant, 1848-1899 Recalled to Life etext5924 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 21 etext5938 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 35 etext5954 Rawlinson, A. E. J. (Alfred Edward John), 1884-1960 Religious Reality etext5993 Alger, Horatio, 1832-1899 Walter Sherwood's Probation etext6007 Yonge, Charlotte Mary, 1823-1901 The Two Sides of the Shield etext6036 Burton, Richard Francis, Sir, 1821-1890 The Kasidah of Haji Abdu El-Yezdi etext6095 Fielding, Henry, 1707-1754 Amelia — Volume 1 etext6207 Parker, Gilbert, 1862-1932 The Trail of the Sword, Volume 2 etext6222 Parker, Gilbert, 1862-1932 The Trespasser, Complete etext6274 Parker, Gilbert, 1862-1932 A Lover's Diary, Complete etext6294 Parker, Gilbert, 1862-1932 No Defense, Volume 3. etext6366 Parker, Dewitt H., 1885-1949 The Principles of Aesthetics etext6369 Davis, H. W. C. (Henry William Carless), 1874-1928 Medieval Europe etext6378 Conrad, Joseph, 1857-1924 Victory etext6400 Suetonius Tranquillus, Gaius, 75-160 De vita Caesarum etext6402 etext6416 Seeger, Frederica Entertainments for Home, Church and School etext6428 Scott, Walter, Sir, 1771-1832 The Surgeon's Daughter etext6503 Schiller, Friedrich, 1759-1805 Der Neffe als Onkel etext6551 Huxley, Aldous, 1894-1963 Crome Yellow etext6580 Hudson Bay Company Charter and Supplemental Charter of the Hudson's Bay Company etext6589 Fyffe, Charles Alan, 1845-1892 A History of Modern Europe, 1792-1878 etext6591 Leadem, Christopher Highland Ballad etext6642 Raimund, Ferdinand, 1790-1836 Die gefesselte Phantasie etext6677 Leslie, Eliza, 1787-1858 Seventy-Five Receipts for Pastry, Cakes and Sweetmeats, by Miss Leslie etext6708 Boulger, Demetrius Charles, 1853-1928 China etext6724 Arndt, Ernst Moritz, 1769-1860 Kater Martinchen etext6740 Molière, 1622-1673 Don Garcia of Navarre etext6750 Bird, Isabella L. (Isabella Lucy), 1831-1904 The Hawaiian Archipelago etext6775 Schiller, Friedrich, 1759-1805 The Thirty Years War — Complete etext6886 Burton, Richard Francis, Sir, 1821-1890 First Footsteps in East Africa etext6903 Bellamy, Edward, 1850-1898 Miss Ludington's Sister etext6924 Shakespeare, William, 1564-1616 Richard III etext6953 Henty, G. A. (George Alfred), 1832-1902 By England's Aid or the Freeing of the Netherlands (1585-1604) etext6993 Shiel, M. P. (Matthew Phipps), 1865-1947 The Lord of the Sea etext7055 Webb, Mary Gladys Meredith, 1881-1927 Gone to Earth etext7121 Socci, Ettore Da Firenze a Digione etext7170 Stearns, Frank Preston, 1846-1917 The Life and Genius of Nathaniel Hawthorne etext7253 The Letter-Bag of Lady Elizabeth Spencer-Stanhope — Volume 1 etext7254 Humboldt, Alexander von, 1769-1859 Personal Narrative of Travels to the Equinoctial Regions of America, During the Year 1799-1804 — Volume 3 etext7298 Wodehouse, P. G. (Pelham Grenville), 1881-1975 William Tell Told Again etext7363 Strindberg, August, 1849-1912 Master Olof : a Drama in Five Acts etext7380 Douglas, Norman, 1868-1952 Alone etext7426 Dumas père, Alexandre, 1802-1870 Chicot the Jester etext7473 Rockwood, Roy Lost on the Moon etext7480 Sologub, Fyodor [pseud.], 1863-1927 The Created Legend etext7511 Spyri, Johanna, 1827-1901 Heidis Lehr- und Wanderjahre etext7522 Sinclair, Upton, 1878-1968 King Coal : a Novel etext7628 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Devereux — Volume 05 etext7663 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 What Will He Do with It? — Volume 05 etext7665 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 What Will He Do with It? — Volume 07 etext7692 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 A Strange Story — Volume 01 etext7693 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 A Strange Story — Volume 02 etext7757 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Falkland, Book 1. etext7799 Allison, Samuel Buell, 1861- An American Robinson Crusoe etext7904 etext7941 Mann, Mary E., -1929 Mrs. Day's Daughters etext8083 American Sunday School Union The Allis Family; or, Scenes of Western Life etext8115 Lumb, T. W. Authors of Greece etext8118 Melville, Herman, 1819-1891 Redburn. His First Voyage etext8173 Erckmann-Chatrian Contes de la Montagne etext8191 Booth, Bramwell, 1856-1929 Our Master etext8198 Cody, H. A. (Hiram Alfred), 1872-1948 The Fourth Watch etext8204 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Three Men in a Boat etext8206 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Pilgrims of the Rhine etext8215 Vaknin, Samuel, 1961- The Development Psychology of Psychopathology etext8313 The Bible, Douay-Rheims, Book 13: 1 Paralipomenon etext8374 Kingsley, Charles, 1819-1875 Alton Locke, Tailor and Poet etext8488 Coleridge, Samuel Taylor, 1772-1834 Literary Remains, Volume 1 etext8520 Gallet, Pierre Voyage d'un Habitant de la Lune à Paris à la Fin du XVIIIe Siècle etext8528 Twain, Mark, 1835-1910 Eve's Diary, Part 3 etext8610 Pyle, Howard, 1853-1911 Howard Pyle's Book of Pirates etext8642 Fuller, Margaret, 1810-1850 Woman in the Ninteenth Century etext8747 Myers, F. W. H. (Frederic William Henry), 1843-1901 Wordsworth etext8760 Burroughs, Edgar Rice, 1875-1950 The Mad King etext8802 Hitchcock, Elizabeth Arnold Elizabeth: the Disinherited Daughter etext8805 Merriman, Henry Seton, 1862-1903 From One Generation to Another etext8849 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, 2 Peter etext8889 Storm, Theodor, 1817-1888 Aquis Submersus etext8952 Various Scientific American, Volume 22, No. 1, January 1, 1870 etext8953 Kirk, William F. The Norsk Nightingale etext8965 Wells, H. G. (Herbert George), 1866-1946 Floor Games etext8973 Wells, H. G. (Herbert George), 1866-1946 Little Wars etext9049 Grillparzer, Franz, 1791-1872 Libussa etext9060 Demosthenes, 384 BC-322 BC The Public Orations of Demosthenes, volume 1 etext9155 MacDonald, George, 1824-1905 Heather and Snow etext9215 Hawthorne, Nathaniel, 1804-1864 Chippings with a Chisel (From "Twice Told Tales") etext9232 Hawthorne, Nathaniel, 1804-1864 Passages from a Relinquised Work (From "Mosses from an Old Manse") etext9244 Hawthorne, Nathaniel, 1804-1864 Little Daffydowndilly etext9249 Hawthorne, Nathaniel, 1804-1864 Dr. Bullivant etext9294 Frémont, John Charles, 1813-1890 The Exploring Expedition to the Rocky Mountains, Oregon and California etext9304 Faguet, Émile, 1847-1916 Initiation into Philosophy etext9321 Edgeworth, Maria, 1767-1849 Tales and Novels — Volume 08 etext9341 Conrad, Joseph, 1857-1924 Chance etext9395 Evans, Robert J. Dorothy's Mystical Adventures in Oz etext9498 Lawrence, D. H. (David Herbert), 1885-1930 The Trespasser etext9523 Thackeray, William Makepeace, 1811-1863 The Christmas Books etext9717 Dickens, Charles, 1812-1870 The Lazy Tour of Two Idle Apprentices etext9745 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Rock of Chickamauga etext9812 Lincoln, Natalie Sumner, 1881-1935 I Spy etext9827 Rydberg, Viktor, 1828-1895 De vandrande djäknarne etext9831 Imbert de Saint-Amand, Arthur Léon, baron, 1834-1900 The Court of the Empress Josephine etext9848 A Select Collection of Old English Plays, Volume 6 etext9948 Warren, George A. The Banner Boy Scouts Afloat etext9955 Schnitzler, Arthur, 1862-1931 Bertha Garlan etext9990 Alger, Horatio, 1832-1899 Brave and Bold etext9999 Bradford, Sarah H. (Sarah Hopkins), 1818- Harriet, the Moses of Her People etext10061 Verhaeren, Emile, 1855-1916 Les Heures Claires etext10122 Graves, Robert, 1895-1985 Fairies and Fusiliers etext10130 etext10235 Edison, Theodore M. Discussion on Edison's Monoid Theory etext10242 Orchestra, Losey's Plaque No. 6 etext10254 Watson, Thomas A., 1854-1934 The Birth of the Telephone etext10384 Conscience, Hendrik, 1812-1883 Le Pays de l'or etext10391 Waterloo, Stanley, 1846-1913 The Wolf's Long Howl etext10433 Perry, Nora, 1841-1896 A Flock of Girls and Boys etext10474 Copplestone, Bennet, 1867-1932 The Lost Naval Papers etext10505 McGuinn, Roger Waltzing Matilda etext10517 Adams, E. E. Government and Rebellion etext10575 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Profiteers etext10598 Cibber, Theophilus, 1703-1758 The Lives of the Poets of Great Britain and Ireland (1753) etext10622 Cibber, Theophilus, 1703-1758 The Lives of the Poets of Great Britain and Ireland (1753) etext10651 McGuinn, Roger Shenandoah etext10684 Bury, J. B. (John Bagnell), 1861-1927 A History of Freedom of Thought etext10688 Frey, Hildegard G. (Hildegard Gertrude), 1891-1957 The Camp Fire Girls at Camp Keewaydin etext10725 Chaplin, Ralph, 1887-1961 The Centralia Conspiracy etext10769 Lucas, E. V. (Edward Verrall), 1868-1938 A Wanderer in Florence etext10785 Jacobs, W. W. (William Wymark), 1863-1943 Matrimonial Openings etext10805 Daggett, David, 1764-1851 Count the Cost etext10810 Cozzens, Samuel Woodworth, 1834-1878 The Young Trail Hunters etext10836 Couturat, Louis, 1868-1914 The Algebra of Logic etext10837 Griggs, Edward Howard, 1868-1951 The Soul of Democracy etext10845 Various The Mirror of Literature, Amusement, and Instruction etext10859 Saint-Pierre, Bernardin de, 1737-1814 Paul and Virginia from the French of J.B.H. de Saint Pierre etext10894 A Compilation of the Messages and Papers of the Presidents etext10915 Hawks, Francis L. (Francis Lister), 1798-1866 The Girl's Cabinet of Instructive and Moral Stories etext10934 Various Punchinello, Volume 2, No. 39, December 24, 1870. etext10960 Frank, Tenney, 1876-1939 Vergil etext10996 Unknown Whig Against Tory etext10997 Osborne, Mrs. David The World of Waters etext11018 Morse, Samuel F. B. (Samuel Finley Breese), 1791-1872 Samuel F. B. Morse, His Letters and Journals etext11021 Richardson, James D. (James Daniel), 1843-1914 A Compilation of the Messages and Papers of the Presidents etext11028 etext11054 Williams, Helen Maria, 1762-1827 Poems (1786), Volume I. etext11057 Chesnutt, Charles W. (Charles Waddell), 1858-1932 The Wife of his Youth and Other Stories of the Color Line, and Selected Essays etext11061 Various The Atlantic Monthly, Volume 06, No. 34, August, 1860 etext11084 Stuart, Ruth McEnery, 1856-1917 Sonny, a Christmas Guest etext11086 Souttar, Henry Sessions, 1875-1964 A Surgeon in Belgium etext11103 Various The Atlantic Monthly, Volume 06, No. 37, November, 1860 etext11148 Anonymous Aunt Harding's Keepsakes etext11199 Maupassant, Guy de, 1850-1893 Claire de Lune etext11201 Various Punch, or the London Charivari, Volume 156, March 5, 1919 etext11208 Coster, Charles Théodore Henri de, 1827-1879 De legende en de heldhaftige, vroolijke en roemrijke daden van Uilenspiegel en Lamme Goedzak in Vlaanderenland en elders etext11264 Various The Mirror of Literature, Amusement, and Instruction etext11368 Doubleday, Russell, 1872-1949 Stories of Inventors etext11415 Various The Atlantic Monthly, Volume 08, No. 49, November, 1861 etext11433 Various The Mirror of Literature, Amusement, and Instruction etext11469 Ralphson, G. Harvey (George Harvey), 1879-1940 Boy Scouts on Motorcycles etext11520 Dell, Ethel M. (Ethel May), 1881-1939 The Obstacle Race etext11595 Anonymous The Pearl Box etext11605 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Appetite of Tyranny etext11645 France, Anatole, 1844-1924 La rôtisserie de la Reine Pédauque etext11657 Espina, Concha, 1869-1955 La Niña de Luzmela etext11672 Hecker, Eugene Arthur, 1884- A Short History of Women's Rights etext11681 Abbott, Jacob, 1803-1879 Marco Paul's Voyages and Travels; Vermont etext11695 Various The Mirror of Literature, Amusement, and Instruction etext11703 Wyss, Johann David, 1743-1818 The Swiss Family Robinson; or Adventures in a Desert Island etext11754 Fagg, John Gerardus, 1860-1917 Forty Years in South China etext11789 Human Genome Project Chromosome Number 15 etext11874 Jefferies, Richard, 1848-1887 Hodge and His Masters etext11875 Dobie, Charles Caldwell, 1881-1943 The Blood Red Dawn etext11876 Sinclair, May, 1863-1946 The Three Sisters etext11955 Guizot, M. (François), 1787-1874 A Popular History of France from the Earliest Times, Volume 5 etext11956 Guizot, M. (François), 1787-1874 A Popular History of France from the Earliest Times, Volume 6 etext12015 Parrish, Randall, 1858-1923 Love under Fire etext12025 English Prose etext12039 etext12118 Various The American Missionary — Volume 42, No. 05, May, 1888 etext12123 Jacobs, W. W. (William Wymark), 1863-1943 Bill's Paper Chase etext12142 Traill, H. D. (Henry Duff), 1842-1900 Sterne etext12147 Various The Mirror of Literature, Amusement, and Instruction etext12225 Grey, Zane, 1872-1939 Tales of lonely trails etext12256 Payne, Dutton Mistress Penwick etext12258 Thiers, Adolphe, 1797-1877 Histoire de la Révolution française, Tome 9 etext12271 Jacob, P. L., 1806-1884 Contes littéraires du bibliophile Jacob à ses petits-enfants etext12272 Van Middeldyk, R. A. (Rudolph Adams), 1832- The History of Puerto Rico etext12276 Guerra, Juan Álvarez Viajes por Filipinas: De Manila á Tayabas etext12282 Newton, R. Heber, 1840-1914 The Right and Wrong Uses of the Bible etext12288 Taylor, John M. (John Metcalf), 1845-1918 The Witchcraft Delusion in Colonial Connecticut (1647-1697) etext12290 Gladden, Washington, 1836-1918 The Church and Modern Life etext12336 London, Jack, 1876-1916 Brown Wolf and Other Jack London Stories etext12365 Ferland, Albert, 1872-1943 Femmes Rêvées etext12376 Miller, Wesson Gage Thirty Years in the Itinerancy etext12380 Eddy, Arthur Jerome, 1859-1920 Two Thousand Miles on an Automobile etext12444 Toaster's Handbook etext12477 Various The Mirror of Literature, Amusement, and Instruction etext12528 Holman, James, 1786-1857 A Voyage Round the World, Volume I etext12583 Various The Mirror of Literature, Amusement, and Instruction etext12592 Le Fanu, Joseph Sheridan, 1814-1873 J. S. Le Fanu's Ghostly Tales, Volume 5 etext12625 Bragdon, Claude Fayette, 1866-1946 Architecture and Democracy etext12735 Hancock, H. Irving (Harrie Irving), 1868-1922 The Grammar School Boys in Summer Athletics etext12745 The World's Greatest Books — Volume 11 — Ancient and Mediæval History etext12780 Linnankoski, Johannes, 1869-1913 Laulu tulipunaisesta kukasta etext12820 Besant, Annie Wood, 1847-1933 The Case for India etext12846 Flint, Timothy The First White Man of the West etext12847 Whistler, Charles W. (Charles Watts), 1856-1913 Havelok the Dane etext12852 Baden-Powell, Baden Henry, 1841-1901 Creation and Its Records etext12868 Rutherford, J. F. (Joseph Franklin), 1869-1942 The Harp of God etext12895 Drannan, William F., 1832-1913 Chief of Scouts etext12901 Verne, Jules, 1828-1905 The Moon-Voyage etext12929 Flinders, Matthew, 1774-1814 A Voyage to Terra Australis — Volume 1 etext12967 Various Memoirs and Historical Chronicles of the Courts of Europe etext12975 Various International Weekly Miscellany — Volume 1, No. 2, July 8, 1850 etext12991 Wright, Harold Bell, 1872-1944 The Uncrowned King etext9144 etext13019 Lamartine, Alphonse de, 1790-1869 Raphael etext13040 Swift, Jonathan, 1667-1745 The Prose Works of Jonathan Swift, D.D. — Volume 10 etext13099 Hellaakoski, Aaro, 1893-1952 Runoja etext13109 Linton, E. Lynn (Elizabeth Lynn), 1822-1898 About Ireland etext13251 Ferguson, Donald The Chums of Scranton High on the Cinder Path etext13267 Ainsworth, Percy C. The Threshold Grace etext13325 Tennent, James Emerson, Sir, 1804-1869 Sketches of the Natural History of Ceylon etext13342 Chesterton, G. K. (Gilbert Keith), 1874-1936 Robert Browning etext13345 McCarter, Margaret Hill, 1860-1938 Vanguards of the Plains etext13386 Angelkot, Hermannus, 1688-1727 Vechter etext13445 Leino, Eino, 1878-1926 Suomalaisia kirjailijoita etext13458 Derroteros y viages à la Ciudad Encantada, ó de los Césares. etext13470 Wade, Mary Hazelton Blanchard, 1860-1936 Bertha etext13486 Morris, William, 1834-1896 The Story of Sigurd the Volsung etext13515 Irving, Washington, 1783-1859 Bracebridge Hall, or The Humorists etext13524 Zévaco, Michel, 1860-1918 Les Pardaillan — Tome 05, Pardaillan et Fausta etext13539 Scudder, Dr. John Dr. Scudder's Tales for Little Readers, About the Heathen. etext13569 Jacob, Giles Tractus de Hermaphrodites etext13587 Various The Mirror of Literature, Amusement, and Instruction etext13594 Sainte-Beuve, Charles Augustin, 1804-1869 Portraits littéraires, Tome I etext13616 The Philippine Islands, 1493-1803 — Volume 03 of 55 etext13661 Müller, Florian Der Bankerott etext13704 About, Edmond, 1828-1885 L'homme à l'oreille cassée etext13729 Various Notes and Queries, Number 37, July 13, 1850 etext13779 Aho, Juhani, 1861-1921 Minkä mitäkin Tyrolista etext13785 Coleridge, Stephen, 1854-1936 The Glory of English Prose etext13804 Bougeant, Guillaume Hyacinthe, 1690-1743 Voyage du Prince Fan-Federin dans la romancie etext13818 Sand, George, 1804-1876 Jacques etext13853 etext13865 Various Chambers's Edinburgh Journal, No. 418 etext13941 The Divine Right of Church Government by Sundry Ministers Of Christ Within The City Of London etext13955 Hegermann-Lindencrone, L. de (Lillie de), 1844-1928 The Sunny Side of Diplomatic Life, 1875-1912 etext13962 Various Scientific American Supplement, No. 455, September 20, 1884 etext13969 Machen, Arthur, 1863-1947 The Hill of Dreams etext13980 Barnum, Richard Mappo, the Merry Monkey etext13997 Whitney, A. D. T. (Adeline Dutton Train), 1824-1906 Real Folks etext14002 McIvor-Tyndall, Alexander J. (Alexander James), -1940 Cosmic Consciousness etext14061 Stowe, Harriet Beecher, 1811-1896 Lady Byron Vindicated etext14094 Tennyson, Alfred Tennyson, Baron, 1809-1892 The Suppressed Poems of Alfred Lord Tennyson etext14165 Various Punch, or the London Charivari, Volume 101, December 12, 1891 etext14202 May, Sophie, 1833-1906 Little Prudy's Sister Susy etext14235 Tamayo y Baus, Manuel, 1829-1898 Más vale maña que fuerza etext14271 Ignacio, Cleto R. Panayam ng Tatlong Binata — Ikalawang Hati etext14303 Harrison, Henry Sydnor, 1880-1930 Queed etext14334 Bower, B. M., 1874-1940 The Range Dwellers etext14343 d'Orléans, Charles, 1394-1465 Poésies de Charles d'Orléans etext14435 Lassila, Maiju, 1868-1918 Iivana etext14514 Various Punch, or the London Charivari, Volume 102, April 23, 1892 etext14521 Müller, F. Max (Friedrich Max), 1823-1900 Memories etext14536 Beaugrand, Honoré, 1848-1906 Jeanne la Fileuse etext14539 Musset, Paul de, 1804-1880 La Chèvre Jaune etext14662 Talmage, T. De Witt (Thomas De Witt), 1832-1902 Around The Tea-Table etext14685 The Philippine Islands, 1493-1898 — Volume 11 of 55 etext14703 Scott, Walter, Sir, 1771-1832 Le nain noir etext14751 Fréchette, Louis, 1839-1908 Le retour de l'exilé etext14771 etext14787 Various Punch, Or The London Charivari, Volume 102, July 2, 1892 etext14838 Potter, Beatrix, 1866-1943 The Tale of Peter Rabbit etext14840 Reijonen, Juho, 1855-1924 Vaihdokas etext14877 Potter, Beatrix, 1866-1943 The Tale of Ginger and Pickles etext14921 Various Punch, or the London Charivari. Volume 1, July 31, 1841 etext14934 Various Punch, or the London Charivari, Volume 1, October 30, 1841 etext14944 Blasco Ibáñez, Vicente, 1867-1928 La Barraca etext15064 Various Punch, or the London Charivari, Volume 152, April 25, 1917 etext15077 Potter, Beatrix, 1866-1943 The Tale of Mr. Jeremy Fisher etext15114 Boole, George, 1815-1864 An Investigation of the Laws of Thought etext15168 Burgess, Thornton W. (Thornton Waldo), 1874-1965 Bowser the Hound etext15219 etext15228 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Lady Good-for-Nothing etext15243 Daviess, Maria Thompson, 1872-1924 Over Paradise Ridge etext15276 Kelly, Allen, 1855-1916 Bears I Have Met—and Others etext15339 Kiljander, Robert, 1848-1924 Vieraita odottaessa etext15360 Campbell, Helen, 1839-1918 The Easiest Way in Housekeeping and Cooking etext15416 Phillpotts, Eden, 1862-1960 The Spinners etext15453 Various Punch, or the London Charivari, Volume 103, October 15, 1892 etext15465 Halévy, Ludovic, 1834-1908 Parisian Points of View etext15480 Various New York Times Current History; The European War, Vol 2, No. 3, June, 1915 etext15491 Hooke, Robert, 1635-1703 Micrographia etext15493 Ainsworth, William Harrison, 1805-1882 The Lancashire Witches etext15513 Leino, Eino, 1878-1926 Suomalaisen kirjallisuuden historia etext15541 Chittenden, Charlotte E. What Two Children Did etext15569 Molesworth, Mrs., 1839-1921 The Cuckoo Clock etext15609 Various The American Missionary — Volume 44, No. 04, April, 1890 etext15657 Various Punch, or the London Charivari, Volume 152, June 6, 1917 etext15667 Best Short Stories etext15694 Davis, William Stearns, 1877-1930 A Friend of Caesar etext15807 Warren, Henry White, 1831-1912 Among the Forces etext15859 Melville, Herman, 1819-1891 The Piazza Tales etext15876 Various The Unpopular Review, Volume II Number 3 etext16026 De Quincey, Thomas, 1785-1859 De Quincey's Revolt of the Tartars etext16049 Strang, Herbert Humphrey Bold etext16122 etext16201 Camara, Eduardo Martin de la Parnaso Filipino etext16221 Addams, Jane, 1860-1935 The Spirit of Youth and the City Streets etext16230 Mitchell, S. Weir (Silas Weir), 1829-1914 Fat and Blood etext16241 Hoyt, Deristhe L. Barbara's Heritage etext16244 Nasreddin, Hoca The Turkish Jester etext16290 Tidwell, Josiah Blake, 1870-1946 The Bible Book by Book etext16336 Tardivel, Jules-Paul, 1851-1905 Pour la patrie etext16362 Dennis, C. J. (Clarence James), 1876-1938 The Glugs of Gosh etext16382 Strang, Herbert In Clive's Command etext16408 Zangwill, Israel, 1864-1926 The Grey Wig: Stories and Novelettes etext16522 Various The Nursery, No. 106, October, 1875. Vol. XVIII. etext16558 King, Charles, 1844-1933 From the Ranks etext16576 M. T. W. Connor Magan's Luck and Other Stories etext16588 Cuttriss, G. P. Over the Top With the Third Australian Division etext16660 The Story of the 6th Battalion, The Durham Light Infantry etext16672 Livingstone, David, 1813-1873 The Last Journals of David Livingstone, in Central Africa, from 1865 to His Death, Volume I (of 2), 1866-1868 etext16690 Trayes, Frederic George, 1871- Five Months on a German Raider etext16716 Parker, Gilbert, 1862-1932 The Going of the White Swan etext16738 Holinshed, Raphael, -1580? Chronicles of England, Scotland and Ireland (2 of 6) etext16742 Perry, Lawrence, 1875-1954 Dan Merrithew etext16762 Holinshed, Raphael, -1580? Chronicles of England, Scotland and Ireland (2 of 6): England (6 of 12) etext16764 Procopius History of the Wars, Books I and II etext16789 Assollant, Alfred, 1827-1886 Hyacinthe etext16797 Seiss, Joseph A. Luther and the Reformation: etext16896 Staël, Madame de (Anne-Louise-Germaine), 1766-1817 Corinne, Volume 1 (of 2) etext16924 Various Chambers's Edinburgh Journal, No. 425 etext16953 Various Chambers's Edinburgh Journal, No. 426 etext16959 Grismer, Joseph Rhode, 1849-1922 'Way Down East etext17017 Hendrick, Burton Jesse, 1870-1949 The Life and Letters of Walter H. Page, Volume I etext17023 Lopez, Pantaleón S., 1872-1912 Apô-Apô (Zarzuela) at Kung Sinong Apô-Apô (Kasaysayan) etext17025 Verne, Jules, 1828-1905 Sæfarinn etext17074 Shedlock, J. S. (John South), 1843-1919 The Pianoforte Sonata etext17089 Potter, Beatrix, 1866-1943 The Tale of Mrs. Tittlemouse etext17103 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Double Life Of Mr. Alfred Burton etext17114 Friberg, Maikki, 1861-1927 Tieni varrella tapaamia 2 etext17119 Lowell, James Russell, 1819-1891 The Vision of Sir Launfal etext17121 Various De Aarde en haar Volken, Jaargang 1906 etext17140 etext17152 Wright, Anna Potter Rosa's Quest etext17164 Richardson, James, 1806-1851 Narrative of a Mission to Central Africa Performed in the Years 1850-51, Volume 1 etext17179 Unknown The Book Of Quinte Essence Or The Fifth Being (1889) etext17181 Lodge, Thomas, 1558?-1625 Rosalynde etext17243 Matthews, Ike, 1857-1913 Full Revelations of a Professional Rat-catcher etext17352 Tolstoy, Leo, graf, 1828-1910 The Awakening etext17359 MacGrath, Harold, 1871-1932 Arms and the Woman etext17361 Schappelle, Benjamin Franklin, 1885- The German Element in Brazil etext9125 etext17382 Moore, Clement Clarke, 1779-1863 A Visit From Saint Nicholas etext17406 Pardo Bazán, Emilia, condesa de, 1852-1921 Un viaje de novios etext17445 Pumpurs, Andrejs, 1841-1902 Bearslayer etext17499 A Jolly by Josh etext17520 Montagu, Mary Wortley, Lady, 1689-1762 Letters of the Right Honourable Lady M—y W—y M—e etext17545 McClelland, M. G. (Mary Greenway), 1853-1895 Princess etext17663 Various McClure's Magazine, Vol. 31, No. 1, May 1908 etext17681 Egerton, Beatrice Lippa etext17710 Parrish, Randall, 1858-1923 The Devil's Own etext17721 Various The Bay State Monthly, Volume 3, No. 1 etext17753 Mactear, James On the Antiquity of the Chemical Art etext17845 Upham, Charles Wentworth, 1802-1875 Salem Witchcraft, Volumes I and II etext17857 Halsey, Rosalie Vrylina Forgotten Books of the American Nursery etext17878 Hope, Laura Lee Bunny Brown and his Sister Sue Giving a Show etext17891 Freeman, Mary Eleanor Wilkins, 1852-1930 Evelina's Garden etext17953 Various The Haunters & The Haunted etext17981 Gregory, Jackson, 1882-1943 Under Handicap etext17982 Bailey, Temple, -1953 Judy etext17995 Euripides, 480? BC-406 BC Ηλέκτρα etext18025 Nursey, Walter R., 1847-1927 The Story of Isaac Brock etext18027 Gaboriau, Émile, 1832-1873 Les cotillons célèbres etext18048 Edwards, William Hanford Football Days etext18145 Armour, Rebecca Agatha, 1846?-1891 Lady Rosamond's Secret etext18234 Marks, Jeannette Augustus, 1875-1964 A Girl's Student Days and After etext18266 Besant, Annie Wood, 1847-1933 Death—and After? etext18295 Guizot, M. (François), 1787-1874 Mémoires pour servir à l'Histoire de mon temps (Tome 7) etext18297 Cleveland, Cecilia Pauline, 1850- The Story of a Summer etext18345 Various Scientific American Supplement, No. 315, January 14, 1882 etext18376 Garnett, Thomas, 1766-1802 A Lecture on the Preservation of Health etext18392 Trine, Ralph Waldo, 1866-1958 Thoughts I Met on the Highway etext18395 Various The Girl's Own Paper, Vol. VIII: No. 356, October 23, 1886. etext18410 etext18438 Stapleton, John H. (John Henry), 1873- Explanation of Catholic Morals etext18492 Nourse, Alan Edward, 1928-1992 Star Surgeon etext18550 Swinburne, Algernon Charles, 1837-1909 Erechtheus etext18553 Latane, John Holladay, 1869-1932 From Isolation to Leadership, Revised etext18569 Voltaire, 1694-1778 Voltaire's Philosophical Dictionary etext18662 Bailey, Arthur Scott, 1877-1949 The Tale of Buster Bumblebee etext18760 Aris, Ernest Alfred, 1882-1963 Wee Peter Pug etext18782 Swinburne, Algernon Charles, 1837-1909 Studies in Song, A Century of Roundels, Sonnets on English Dramatic Poets, The Heptalogia, Etc etext18798 Viedma, Francisco de, 1737-1809 Memoria dirigida al Sr. Marquez de Loreto, Virey y Capitan General de las Provincias del Rio de La Plata etext18812 Abbadie, Arnauld d', 1815-1894? Douze ans de séjour dans la Haute-Éthiopie etext18816 Optic, Oliver, 1822-1897 Stand By The Union etext18857 Verne, Jules, 1828-1905 Voyage au centre de la terre. English etext18863 Waugh, Alec, 1898-1981 The Loom of Youth etext18890 Anonymous Mémoire pour le service actuel des messageries etext18899 Boylesve, René, 1867-1926 Mademoiselle Clocque etext18916 Gregory, Jackson, 1882-1943 Daughter of the Sun etext18922 Sue, Eugène, 1804-1857 Les mystères de Paris, Tome II etext18942 Fouché, Joseph, 1759-1820 Mémoires de Joseph Fouché, Duc d'Otrante, Ministre de la Police Générale etext18954 Fitzhugh, Percy Keese, 1876-1950 Tom Slade with the Boys Over There etext18958 Townsend, Mary Ashley, 1832-1901 The Brother Clerks etext19063 Anonymous Little Alice's Palace etext19202 Johnston, Annie F. (Annie Fellows), 1863-1931 Cicely and Other Stories etext19206 Henty, G. A. (George Alfred), 1832-1902 Under Drake's Flag etext19211 Hume, David, 1711-1776 The History of England in Three Volumes, Vol.I., Part A. etext19287 `Abdu'l-Bahá, 1844-1921 Selections from the Writings of ‘Abdu’l-Bahá etext19346 Swinton, William, 1833-1892 New Word-Analysis etext19451 Quick, Herbert, 1861-1925 Double Trouble etext19543 Alvarez, José S., 1858-1903 Memorias de un vigilante etext19595 More, Hannah, 1745-1833 Essays on Various Subjects etext19608 Van Dyke, Henry, 1852-1933 The Story of the Other Wise Man etext19645 Mabie, Hamilton Wright, 1845-1916 Under the Trees and Elsewhere etext19679 etext19727 Högman, Aukusti Merimiehen matkamuistelmia I etext19737 Bloxam, Matthew Holbeche, 1805-1888 The Principles of Gothic Ecclesiastical Architecture, Elucidated by Question and Answer, 4th ed. etext19742 etext19764 Garland, Hamlin, 1860-1940 The Moccasin Ranch etext19810 Cather, Willa Sibert, 1873-1947 My Ántonia etext19859 Ewing, Juliana Horatia Gatty, 1841-1885 A Flat Iron for a Farthing etext19876 Nasmith, George G. (George Gallie), 1877-1965 On the Fringe of the Great Fight etext19934 etext20092 Henty, G. A. (George Alfred), 1832-1902 Saint Bartholomew's Eve etext20098 Hunter, William Crosbie, 1866- Evening Round Up etext20103 Castro, Urbano de, 1850-1902 A princeza na berlinda etext20113 Lear, Edward, 1812-1888 Nonsense Drolleries etext20116 Frazer, James George, Sir, 1854-1941 The Belief in Immortality and the Worship of the Dead, Volume I (of 3) etext20199 Renard, Jules, 1864-1910 L'écornifleur etext20204 Ruskin, John, 1819-1900 The Storm-Cloud of the Nineteenth Century etext20205 The Maya Chronicles etext20240 Francoeur, Jazno Fountain Street etext20271 Spyri, Johanna, 1827-1901 Heidi etext20330 Dickson, Harris, 1868-1946 The Black Wolf's Breed etext20351 Ewing, Juliana Horatia Gatty, 1841-1885 Jackanapes etext20398 Castille, Hippolyte Benjamin Constant etext20421 Ruskin, John, 1819-1900 Proserpina, Volume 1 etext20480 Cheiro, 1866-1936 Palmistry for All etext20522 Baldwin, James Mark, 1861-1934 The Story of the Mind etext20602 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 Cobb's Anatomy etext20607 Israels, Josef Rembrandt etext20617 Scout, An Old Young Wild West at "Forbidden Pass" etext20650 Barbour, Ralph Henry, 1870-1944 Left End Edwards etext20687 Austen, Jane, 1775-1817 Pride and Prejudice etext20693 Farrow, G. E. (George Edward), 1866?-1920? The Jungle Baby etext20747 Robinson, Jane M. Bancroft (Jane Marie Bancroft), 1847-1932 Deaconesses in Europe and their Lessons for America etext20748 Marshall, Logan Favorite Fairy Tales etext20852 Quiroga, Jose P. Descripcion del rio Paraguay, desde la boca del Xauru hasta la confluencia del Parana etext20877 Burgess, Thornton W. (Thornton Waldo), 1874-1965 Mother West Wind's Children etext20885 Antin, Mary, 1881-1949 The Promised Land etext20904 Hay, Ian, 1876-1952 The Right Stuff etext20924 Anonymous Ely Cathedral etext20938 Allardyce, Paul "Stops", Or How to Punctuate etext20949 Croy, Henri de L'art et science de rhethorique pour faire rigmes et ballades etext20972 Perrault, Charles, 1628-1703 Histoires ou Contes du temps passé avec des moralités etext21008 Rolt-Wheeler, Francis, 1876-1960 The Boy With the U. S. Fisheries etext21028 Various Punch, or the London Charivari, Volume 103, December 17, 1892 etext21033 Powell, John Wesley, 1834-1902 Sketch of the Mythology of the North American Indians etext21053 Thomas, Calvin, 1854-1919 An anthology of German literature etext21129 Vaizey, George de Horne, Mrs., 1857-1917 The Heart of Una Sackville etext21206 Borrow, George Henry, 1803-1881 The Romany Rye etext21314 Fenn, George Manville, 1831-1909 King o' the Beach etext21339 Behn, Aphra, 1640-1689 The Works of Aphra Behn, Volume I etext21361 Fenn, George Manville, 1831-1909 Patience Wins etext21371 Fenn, George Manville, 1831-1909 Our Soldier Boy etext21450 Kingston, William Henry Giles, 1814-1880 Ben Burton etext21476 Kingston, William Henry Giles, 1814-1880 Salt Water etext21503 Various Notes and Queries, Number 58, December 7, 1850 etext21519 Burroughs, Edgar Rice, 1875-1950 The Gods of Mars etext21534 Watson, Kate Heintz Textiles and Clothing etext21622 Marden, Orison Swett, 1850-1924 Architects of Fate etext21650 Leigh, Felix London Town etext21689 Buck, Charles Neville, 1879-1930 The Tyranny of Weakness etext21696 Ballantyne, R. M. (Robert Michael), 1825-1894 Red Rooney etext21709 Ballantyne, R. M. (Robert Michael), 1825-1894 The Walrus Hunters etext21716 Ballantyne, R. M. (Robert Michael), 1825-1894 The Battery and the Boiler etext21774 Underhill, Evelyn, 1875-1941 Practical Mysticism etext21792 Rovigo, Duc de Mémoires du duc de Rovigo, pour servir à l'histoire de l'empereur Napoléon, Tome 4 etext21809 Field, Eugene, 1850-1895 Second Book of Tales etext21914 Baum, L. Frank (Lyman Frank), 1856-1919 The Woggle-Bug Book etext21960 etext21999 Donn-Byrne, Brian Oswald, 1889-1928 The Wind Bloweth etext22037 Howard, James Quay The Life, Public Services and Select Speeches of Rutherford B. Hayes etext22057 Powers, Paul S. (Paul Sylvester), 1905-1971 Kid Wolf of Texas etext22080 Anonymous True Stories of Wonderful Deeds etext22092 Valera, Juan, 1824-1905 Pasarse de listo etext22111 Allais, Alphonse, 1854-1905 Pour cause de fin de bail etext22162 Anonymous Children of the Old Testament etext22168 Leamy, Edmund, 1848-1904 The Golden Spears etext22187 Various Chambers's Edinburgh Journal, No. 452 etext22204 Murray, David Christie, 1847-1907 The Making Of A Novelist etext22226 Winterbotham, R. R. (Russell Robert), 1904-1971 The Whispering Spheres etext22228 Gibbs, George, 1815-1873 Alphabetical Vocabularies of the Clallum and Lummi etext22262 Landelle, Gabriel de la Sans-peur le corsaire etext22287 Robinson, Eliot H. 'Smiles' etext22290 Le Feuvre, Amy, -1929 'Me and Nobbles' etext22295 Thomas, Aquinas, Saint, 1225?-1274 On Prayer and The Contemplative Life etext22314 Delafield, John Mysticism and its Results etext22327 Reese, A. M. (Albert Moore), 1872- Development of the Digestive Canal of the American Alligator etext22333 Appleton, Victor [pseud.] Tom Swift and the Visitor From Planet X etext22409 Sullivan, May Kellogg A Woman who went to Alaska etext22442 Henry, O., 1862-1910 The Four Million etext22449 Dickens, Charles, 1812-1870 No Thoroughfare etext22454 Haggard, Henry Rider, 1856-1925 Heart of the World etext22461 Johnson, Allen, 1870-1931 Union and Democracy etext22501 Oriani, Alfredo, 1852-1909 Fino a Dogali etext22527 Cummings, Ray, 1887-1957 Beyond the Vanishing Point etext22545 Cocking, Ron Warning from the Stars etext22568 Stockley, Cynthia Blue Aloes etext22575 Various Le Tour du Monde; Afrique Orientale etext22604 Penniman, James Hosmer Children and Their Books etext22628 Unknown New-Yorker Staats-Zeitung, 16. Oktober 1915 etext22668 Various Poems of To-Day: an Anthology etext22689 Furniss, Harry, 1854-1925 The Confessions of a Caricaturist, Vol. 2 etext22788 etext22798 Unknown The Book of Job etext22809 Green, Anna Katharine, 1846-1935 The Hermit Of ——— Street etext22839 Mitford, Mary Russell, 1787-1855 Jesse Cliffe etext22855 The Gospel According to Saint Mark etext22883 Carey, Rosa Nouchette, 1840-1909 Doctor Luttrell's First Patient etext22970 Bocage, Manuel Maria Barbosa du, 1765-1805 Queixumes do Pastor Elmano Contra a Falsidade da Pastora Urselina etext22992 Various Punch, or the London Charivari, Vol. 150, May 10, 1916 etext23039 Janson, Kristofer, 1841-1917 Marit Skjölte etext23066 Marcy, Randolph Barnes, 1812-1887 The Prairie Traveler etext23094 Arnold, Allan The Boy Nihilist etext23125 Vaizey, George de Horne, Mrs., 1857-1917 The Love Affairs of Pixie etext23157 Smith, Harriet L. (Harriet Lummis) Other People's Business etext23164 Leiber, Fritz, 1910-1992 The Creature from Cleveland Depths etext23319 Rose, Joshua Mechanical Drawing Self-Taught etext23363 Aldrich, Thomas Bailey, 1836-1907 A Midnight Fantasy etext23393 Japanische Märchen etext23479 Crane, Walter, 1845-1915 Eight Illustrations to Shakespeare's Tempest etext23485 Crosland, T. W. H. (Thomas William Hodgson), 1865-1924 The Old Man's Bag etext23533 Jephson, Harriet Julia Campbell, Lady A War-time Journal, Germany 1914 and German Travel Notes etext23564 Ainsworth, William Harrison, 1805-1882 Rookwood etext23592 Gimble, Stanley Breakaway etext23615 Various Le Tour du Monde; Australie etext23637 Moore, John Trotwood The Bishop of Cottontown etext23649 Two-Shoes, Margery The Sugar-Plumb etext23755 Dewar, Douglas, 1875-1957 Birds of the Indian Hills etext23760 Various Punch, or the London Charivari, Vol. 146, February 25, 1914 etext23822 Liu, Xie, 465?-522? 文心雕龍 etext23840 Zhu, Xi, 1130-1200 近思錄 etext23855 Huang, Zongxi, 1610-1695 明夷待訪錄 etext23885 Ostrander, Isabel, 1883-1924 The Fifth Ace etext24081 Gréville, Henry, 1842-1902 L'expiation de Saveli etext24145 Stevenson, Robert Louis, 1850-1894 Strange case of Dr. Jekyll and Mr. Hyde. Esperanto etext24158 Various Chambers's Edinburgh Journal, No. 460 etext24181 Chambers, Robert W. (Robert William), 1865-1933 Lorraine etext24251 Otis, James, 1848-1912 Left Behind etext24275 Nourse, Alan Edward, 1928-1992 Letter of the Law etext24285 Van Dyke, Henry, 1852-1933 Days Off etext24303 Smyth, Albert Henry, 1863-1907 The Philadelphia Magazines and their Contributors 1741-1850 etext24351 Wharton, Edith, 1862-1937 The Triumph Of Night etext24356 Griswold, Stephen Morrell, 1835-1916 Sixty years with Plymouth Church etext24364 Huxley, Aldous, 1894-1963 The Defeat of Youth and Other Poems etext24385 Sprague, Homer B. (Homer Baxter), 1829-1918 Lights and Shadows in Confederate Prisons etext24428 Ruskin, John, 1819-1900 Our Fathers Have Told Us etext24439 Johnson, Charles, fl. 1724-1736 Pirates etext24488 Abbott, Jacob, 1803-1879 Rollo in Naples etext24494 Hallowell, James Mott, 1865- The Spirit of Lafayette etext24505 Nicholls, H. G. (Henry George), 1825-1867 The Forest of Dean etext24539 Kinston, Whitehall and Goldsboro (North Carolina) expedition, December, 1862 etext24544 Optic, Oliver, 1822-1897 Desk and Debit etext24585 Younger, Cole, 1844-1916 The Story of Cole Younger, by Himself etext24621 Belisle, D. W. (David W.) The American Family Robinson etext24641 Becke, Louis, 1855-1913 "Martin Of Nitendi"; and The River Of Dreams etext24665 Rundle, Edwin George, 1838- A Soldier's Life etext24711 May, Sophie, 1833-1906 Little Prudy etext24733 Xin, Qiji, 1140-1207 辛棄疾詞選 etext24816 Leighton, Caroline C. Life at Puget Sound: With Sketches of Travel in Washington Territory, British Columbia, Oregon and California etext24848 London, Jack, 1876-1916 Rautakorko etext24862 Laurie, G. B. (George Brenton), 1867-1915 Letters of Lt.-Col. George Brenton Laurie etext24870 Hamilton, Edmond, 1904-1977 The Stars, My Brothers etext24946 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 From a Cornish Window etext24989 Guyon, Jeanne Marie Bouvier de la Motte, 1648-1717 A Short Method Of Prayer etext25023 Seton, Ernest Thompson, 1860-1946 The Biography of a Grizzly etext25062 Davison, Charles, 1858-1940 A Study of Recent Earthquakes etext25086 Slesar, Henry, 1927-2002 The Delegate from Venus etext25101 Various The Continental Monthly, Vol 2, No 6, December 1862 etext25118 Harland, Marion, 1830-1922 When Grandmamma Was New etext25172 Dewey, John, 1859-1952 Moral Principles in Education etext25175 Mioni, Ugo, 1870-1935 I sogni dell'Anarchico etext25195 Wu, Yitang, 19th cent. 風月鑒 etext25275 Abbott, Jacob, 1803-1879 Margaret of Anjou etext25315 Yuan, Mei, 1716-1798 續子不語 etext25316 Standish, Burt L., 1866-1945 Frank Merriwell's Son etext25364 Montblanc, Charles, comte de, 1833-1894 Le Japon en 1866 etext25380 Li, Yu, 1611-1680? 閒情偶寄 etext25382 Domenichi, Lodovico, 1515-1564 Facecies et motz subtilz, d'aucuns excellens esprits et tresnobles seigneurs etext25409 France, Anatole, 1844-1924 The Story Of The Duchess Of Cicogne And Of Monsieur De Boulingrin etext25423 Lu, Xun, 1881-1936 狂人日記 etext25426 Colman, George, 1762-1836 Broad Grins etext25430 Lewis, Sinclair, 1885-1951 The Innocents etext25434 Various Le Tour du Monde; Cuba etext25457 Korzybski, Alfred, 1879-1950 Manhood of Humanity. etext25471 Li, Yu, 1611-1680? 闲情偶寄 etext25506 White, Stewart Edward, 1873-1946 The Adventures of Bobby Orde etext25513 Dulac, Edmund, 1882-1953 Edmund Dulac's Fairy-Book etext25533 Green, John Richard, 1837-1883 History of the English People, Index etext25546 Service, Robert W. (Robert William), 1874-1958 Songs of a Sourdough etext25558 Lü, Kun, 1536-1618 呻吟語 etext25569 Marcosson, Isaac Frederick, 1876-1961 An African Adventure etext25614 De Roberto, Federico, 1861-1927 Ermanno Raeli etext25633 Various Blackwood's Edinburgh Magazine - Volume 62, No. 384, October 1847 etext25673 Morris, Charles, 1833-1922 Historic Tales, Volume 11 (of 15) etext25693 Kotzebue, Otto von, 1787-1846 A New Voyage Round the World in the Years 1823, 24, 25, and 26. Vol. 1 etext25703 Northern Nut Growers Association Report of the Proceedings at the 44th Annual Meeting etext25732 Cotterill, H. B. (Henry Bernard), 1846- The Faust-Legend and Goethe's 'Faust' etext25746 Wilson, Ann New Year's Wake etext25759 Vasari, Giorgio, 1511-1574 Lives of the Most Eminent Painters Sculptors and Architects etext25780 Cummings, Ray, 1887-1957 The Fire People etext25794 Indian Legends of Minnesota etext25810 Burnett, Frances Hodgson, 1849-1924 In Connection with the De Willoughby Claim etext25829 Bottome, Phyllis, 1884-1963 The Dark Tower etext25868 Coombs, Francis Lovell The Young Railroaders etext25869 Wells, Carolyn, 1862-1942 Patty's Success etext25877 Putnam, George Haven, 1844-1930 The Little Gingerbread Man etext25933 Anonymous English as She is Wrote etext25995 Stables, Gordon, 1840-1910 As We Sweep Through The Deep etext26006 Alec-Tweedie, Mrs. (Ethel), -1940 A Girl's Ride in Iceland etext26059 Stuck, Hudson, 1863-1920 The Ascent of Denali (Mount McKinley) etext26065 Marson, Charles L. (Charles Latimer), 1858-1914 Hugh, Bishop of Lincoln etext26128 Various The Writer, Volume VI, April 1892. etext26132 Bailey, L. H. (Liberty Hyde), 1858-1954 The Apple-Tree etext26141 Ivalo, Santeri, 1866-1937 Iltapuhteeksi I etext26206 Bone, Jesse F. (Jesse Franklin), 1916-1986 Pandemic etext26231 Vedia, Enrique de, 1796-1863? Transfusión etext26233 Richmond, Grace S. (Grace Smith), 1866-1959 The Indifference of Juliet etext26250 Lincoln, Abraham, 1809-1865 Lincoln at Cooper Union etext26258 Baird, Jean K. (Jean Katherine), 1872-1918 Elizabeth Hobart at Exeter Hall etext26280 Morley, Margaret Warner, 1858-1923 The Renewal of Life; How and When to Tell the Story to the Young etext26327 Crawford, F. Marion (Francis Marion), 1854-1909 Casa Braccio, Volumes 1 and 2 etext26330 Lawson, Thomas William, 1857-1925 Frenzied Finance etext26347 Homén, Olaf, 1879-1949 I marginalen etext26378 Clark, John Willis, 1833-1910 The Care of Books etext26394 Dolent Fortuné Le chevalier des dames du dolent fortuné etext26431 Wells, Carolyn, 1862-1942 Children of Our Town etext26441 Chapin, E. H. (Edwin Hubbell), 1814-1880 Humanity in the City etext26456 Anonymous Aus den Memoiren einer Sängerin. French etext26463 Mansfield, Katherine, 1888-1923 The Garden Party and Other Stories etext26471 Masters, Edgar Lee, 1868-1950 Spoon River Anthology etext26521 Brown, Fredric, 1906-1972 Earthmen Bearing Gifts etext26530 Adama van Scheltema, Carel Steven, 1877-1924 Mei-droom etext26575 Field, Eugene, 1850-1895 Selected Lullabies etext26724 Harte, Bret, 1836-1902 Tarinoita Kalifornian kultamailta etext26774 Allen, Martha Meir, 1854-1926 Alcohol: A Dangerous and Unnecessary Medicine, How and Why etext26775 Lighton, William R. (William Rheem), 1866-1923 Lewis and Clark etext26781 Haensel, Johann Gottfried Letters on the Nicobar islands, their natural productions, and the manners, customs, and superstitions of the natives etext26797 Adams, Franklin P. (Franklin Pierce), 1881-1960 Something Else Again etext26877 Yuanhuyanshuisanren, 17th/18th cent. 珍珠舶 etext26919 Nearing, Scott, 1883-1983 The New Education etext26971 More, Thomas, Sir, Saint, 1478?-1535 Utopia etext26980 Herrick, Warren Crocker, 1898- Frank H. Nelson of Cincinnati etext26992 Munger, Dell H., 1862- The Wind Before the Dawn etext27004 Various Notes and Queries, Number 204, September 24, 1853 etext27023 etext27075 Mitchell, Lucy Sprague, 1878-1967 Here and Now Story Book etext27174 Bruce, Mary Grant, 1878-1958 Captain Jim etext27195 Talley, Thomas Washington Negro Folk Rhymes etext27217 Zhu, Mingshi, 1260-1340 牛郎織女傳 etext27246 Tomlinson, H. M. (Henry Major), 1873-1958 Waiting for Daylight etext27353 Branson, L. H. (Lionel Hugh), 1879-1946 Indian Conjuring etext27363 Heady, Morrison, 1829-1915 Burl etext27364 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 A Filha do Arcediago etext27375 Pain, Barry, 1864-1928 If Winter Don't etext27396 Proud Signild etext27421 Various Punch or the London Charivari, October 10, 1920 etext27452 Strong, Augustus Hopkins, 1836-1921 A Tour of the Missions etext27482 Jester, Annie Lash Domestic Life in Virginia in the Seventeenth Century etext27533 Trollope, Anthony, 1815-1882 The Struggles of Brown, Jones, and Robinson etext31975 Highe, Jefferson What Rough Beast? etext27558 United States. Central Intelligence Agency The 2003 CIA World Factbook etext27737 Daudet, Alphonse, 1840-1897 Le Petit Chose (part 1) etext27762 Carneiro, Décio, 1868-1939 Sá de Miranda e a sua Obra etext27783 Reuter, Fritz, 1810-1874 Twee vroolijke geschiedenissen etext27811 Evans, Augusta J. (Augusta Jane), 1835-1909 Macaria etext27813 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Merry-Garden and Other Stories etext27829 Toy, Crawford Howell, 1836-1919 Introduction to the History of Religions etext27865 Dutt, William A. (William Alfred), 1870-1939 George Borrow in East Anglia etext27866 Farnol, Jeffery, 1878-1952 Great Britain at War etext27867 Various Scientific American magazine, Vol. 2 Issue 1 etext27906 Collingwood, Harry, 1851-1922 The Voyage of the Aurora etext27938 Lucian, of Samosata, 120-180 Λουκιανός - Άπαντα etext27939 Lee, Vernon, 1856-1935 Laurus Nobilis etext27950 Page, Gertrude, 1873-1922 The Rhodesian etext28003 Various Supplement to Punch, or the London Charivari, September 16, 1914 etext28077 Johonnot, James, 1823-1888 Friends in Feathers and Fur, and Other Neighbors etext28082 Byron, George Gordon Byron, Baron, 1788-1824 Oeuvres complètes de lord Byron. Volume 5. etext28119 Slesar, Henry, 1927-2002 My Father, the Cat etext28140 Various The Nursery, December 1877, Vol. XXII. No. 6 etext28239 Eubank, Rice S. The story of Kentucky etext28244 Chambers, Robert W. (Robert William), 1865-1933 The Gay Rebellion etext28329 Browne, J. Ross (John Ross), 1821-1875 The Land of Thor etext28332 La Tour du Pin Gouvernet, Henriette Lucie Dillon, marquise de, 1770-1853 Journal d'une femme de cinquante ans (1/2) etext28348 Cordeiro, Luciano, 1844-1900 Inscripções portuguezas etext28354 Leal, António Duarte Gomes, 1848-1921 O Renegado a António Rodrigues Sampaio etext28369 Hebrew Literature etext28374 Barrili, Anton Giulio, 1836-1908 Tra cielo e terra etext28391 Castlemon, Harry, 1842-1915 True To His Colors etext28405 Various Notes and Queries etext28463 Carey, Rosa Nouchette, 1840-1909 Not Like Other Girls etext28466 Hunt, Jean Lee A Catalogue of Play Equipment etext28474 Various Notes and Queries, Number 192, July 2, 1853 etext28476 Various Notes and Queries, Number 194, July 16, 1853 etext28477 Various Notes and Queries, Number 195, July 23, 1853 etext28521 Anonymous The Power of Mesmerism etext28558 Rollin, Charles, 1661-1741 The Ancient History of the Egyptians, Carthaginians, Assyrians, etext28572 Stewart, Elinore Pruitt, 1878- Letters on an Elk Hunt etext28597 Dunn, J. Allan, (Joseph Allan), 1872-1941 A Man to His Mate etext28598 Cobbold, George A. (George Augustus), 1857- Religion in Japan etext28688 MacGregor, Mary Esther Miller, 1876-1961 The Silver Maple etext28738 Edwords, Clarence E. (Clarence Edgar), 1856- Bohemian San Francisco etext28835 Borrow, George Henry, 1803-1881 The Tale of Brynild, and King Valdemar and his Sister etext28844 Du Bois, W. E. B. (William Edward Burghardt), 1868-1963 The Souls of Black Folk etext28847 Busch, Wilhelm, 1832-1908 Max and Maurice etext28852 etext28858 Marguerite, Queen, consort of Henry II, King of Navarre, 1492-1549 The Heptameron of Margaret, Queen of Navarre etext28902 Lima, Jaime de Magalhães, 1859-1936 José Estevão etext28915 Butterworth, Hezekiah, 1839-1905 Zigzag Journeys in Northern Lands; etext28937 Guizot, M. (François), 1787-1874 Histoire parlementaire de France, Volume II. etext28974 Brazil, Angela, 1868-1947 The Manor House School etext29003 Root, Elihu, 1845-1937 Latin America and the United States etext29021 Perrault, Charles, 1628-1703 The Fairy Tales of Charles Perrault etext29077 etext29164 La Tour du Pin Gouvernet, Henriette Lucie Dillon, marquise de, 1770-1853 Journal d'une femme de cinquante ans, Tome 2 etext29265 The Story of the Great War, Volume III (of 8) etext29353 Wright, Sewell Peaslee, 1897-1970 Vampires of Space etext29357 Our Young Folks at Home and Abroad etext29394 Chagas, Manuel Pinheiro, 1842-1895 Historia alegre de Portugal etext29409 Amari, Michele, 1806-1889 La guerra del Vespro Siciliano vol. 1 etext29466 Burks, Arthur J., 1898-1974 Lords of the Stratosphere etext29471 Harrison, Harry, 1925- The Velvet Glove etext29508 Tufts, James Hayden, 1862-1942 The Ethics of Coöperation etext29514 Freud, Sigmund, 1856-1939 Vergänglichkeit etext29525 Sheckley, Robert, 1928-2005 The Leech etext29623 Barefoot, Wesley The Cuckoo Clock etext29628 Cullum, Ridgwell, 1867-1943 The Golden Woman etext29629 Stevenson, Burton Egbert, 1872-1962 The Destroyer etext29638 Cullum, Ridgwell, 1867-1943 The Twins of Suffering Creek etext29651 Sandeau, Jules, 1811-1883 Mademoiselle de la Seiglière etext29661 Maclaren, Ian, 1850-1907 De Dominee en zijn Gemeente etext29663 Picón, Jacinto Octavio, 1852-1923 Tres mujeres etext29701 West, Charles, 1816-1898 The Mother's Manual of Children's Diseases etext29776 Libbey, Laura Jean, 1862-1924 Pretty Madcap Dorothy etext29784 etext29787 Cook, Joel, 1842-1910 England, Picturesque and Descriptive etext29841 Roe, W. R. (William Robert) Anecdotes & Incidents of the Deaf and Dumb etext29850 etext29923 Various Le Tour du Monde; Lugano, la ville des fresques etext29939 The Chinese Fairy Book etext29971 Jennings, Frederick Charles, 1847-1948 Old Groans and New Songs etext29975 Leahy, Tom One Martian Afternoon etext30033 Various Punch, or the London Charivari, Vol. 98, February 8, 1890 etext30064 Kelly, R. Talbot (Robert Talbot), 1861-1934 Burma etext30098 Phillipps, Evelyn March, -1915 The Venetian School of Painting etext30154 Vaknin, Samuel, 1961- Essays on God and Freud etext30167 Nesbit, E. (Edith), 1858-1924 Royal Children of English History etext30214 Ernst, Paul, 1899-1985 The Red Hell of Jupiter etext30239 Steedman, Amy The Babe in the Bulrushes etext30262 Rhys, Ernest, 1859-1946 Frederic Lord Leighton etext30276 etext30326 Benson, Arthur Christopher, 1862-1925 The Thread of Gold etext30439 Richards, Laura Elizabeth Howe, 1850-1943 Mrs. Tree etext30500 Harmon, Kenneth The Passenger etext30540 Phelps, Elizabeth Stuart, 1844-1911 The Gates Between etext30568 Kipling, Rudyard, 1865-1936 Kipling Stories and Poems Every Child Should Know, Book II etext30578 Coolidge, Dane, 1873-1940 Wunpost etext30580 Lang, Andrew, 1844-1912 The Fairy Books of Andrew Lang etext30615 Homer, 750? BC-650? BC Ομήρου Οδύσσεια Τόμος Γ etext30616 Homer, 750? BC-650? BC Ομήρου Οδύσσεια Τόμος Δ etext30624 Abbott, Jacob, 1803-1879 Alexander the Great etext30749 Galt, John, 1779-1839 Ringan Gilhaize etext30750 Brown, Sanger, 1884-1968 The Sex Worship and Symbolism of Primitive Races etext30781 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 Dictionnaire raisonné de l'architecture française du XIe au XVIe siècle (1/9) etext30840 Morrison, Gertrude W. The Girls of Central High on Lake Luna etext30885 Slesar, Henry, 1927-2002 Heart etext30946 Buffenoir, Hippolyte, 1847-1928 Amôres d'um deputado etext30986 Valera, Juan, 1824-1905 De varios colores etext31018 Willard, J. H. A Farmer's Wife etext31019 Molesworth, Mrs., 1839-1921 Four Ghost Stories etext31037 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. XIX (of 25) etext31076 Baker, Arthur Latham, 1853-1934 Elliptic Functions etext31142 Haslam, John, 1764-1844 On the Nature of Thought etext31164 Meyrink, Gustav, 1868-1932 Der violette Tod etext31180 Fullerton, Georgiana, 1812-1885 Ellen Middleton—A Tale etext31184 Chesterton, G. K. (Gilbert Keith), 1874-1936 Poems etext31280 Anderson, Sydney, 1927- Mammals of the Grand Mesa, Colorado etext31330 Grimké, Archibald Henry, 1849-1930 Modern Industrialism and the Negroes of the United States etext31431 Perrault, Charles, 1628-1703 Old-Time Stories etext31446 Karkavitsas, Andreas, 1865-1922 Διηγήματα etext31458 etext31472 Tracy, Louis, 1863-1928 Cynthia's Chauffeur etext31506 Woodman, Rea The Sweet Girl Graduates etext31616 Davison, Alvin Health Lessons etext31623 Ruskin, John, 1819-1900 Modern Painters, Volume IV (of V) etext31631 Karkavitsas, Andreas, 1865-1922 Ο αρχαιολόγος etext31648 Smith, Evelyn E., 1927-2000 My Fair Planet etext31669 Homer, 750? BC-650? BC Ιλιάδος Ραψωδία Α etext31682 Rossetti, William Michael, 1829-1919 Life of John Keats etext31691 Douglas, Loudon The Bacillus of Long Life etext31736 Shea, Robert, 1933-1994 Star Performer etext31764 Cawein, Madison Julius, 1865-1914 Days and Dreams etext31834 Huch, Ricarda Octavia, 1864-1947 Lebenslauf des heiligen Wonnebald Pück etext31838 Various The Atlantic Monthly, Volume 14, No. 81, July, 1864 etext31889 Wiltz, Louis A. The Great Mississippi Flood of 1874 etext31901 Lever, Charles James, 1806-1872 Tom Burke Of "Ours", Volume I etext31922 Causey, James Felony etext31932 Nourse, Alan Edward, 1928-1992 Contamination Crew etext31961 Meadows, Mark Joy Ride etext31990 Rust, Jeanne Johnson A History of the Town of Fairfax etext32045 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Boy Scouts in A Trapper's Camp etext32096 Barrili, Anton Giulio, 1836-1908 La legge Oppia etext32151 Hamerton, Philip Gilbert, 1834-1894 The Intellectual Life etext32187 Findley, James S. Pleistocene Soricidae from San Josecito Cave, Nuevo Leon, Mexico etext32195 Belloc, Hilaire, 1870-1953 The Battle of Blenheim etext32196 Belloc, Hilaire, 1870-1953 Crécy etext32228 Brayton, Matthew The Indian Captive etext32266 Bretnor, Reginald, 1911-1992 Sugar Plum etext32298 Houard, David Anciennes loix des françois conservées dans les coutumes engloises recueillies par Littleton, Vol. II etext32320 Blackburn, Henry, 1830-1897 The Art of Illustration etext32358 Edschmid, Kasimir, 1890-1966 Timur etext32369 Various Graham's Magazine, Vol XXXIII, No. 6, December 1848 etext32397 Curzon, Robert Visits To Monasteries in the Levant etext32411 Yerxa, Leroy, 1915-1946 Queen of the Flaming Diamond etext32422 etext32424 Lever, Charles James, 1806-1872 Arthur O'Leary etext32436 Anderson, Poul William, 1926-2001 Duel on Syrtis etext32437 Crane, Laura Dent The Automobile Girls at Chicago etext32461 Dahn, Felix, 1834-1912 The Scarlet Banner etext32526 Turgenev, Ivan Sergeevich, 1818-1883 Asja etext32578 Jacks, L. P. (Lawrence Pearsall), 1860-1955 Religious Perplexities etext32596 France, Anatole, 1844-1924 Anatole France etext32607 Various Encyclopaedia Britannica, 11th Edition, Volume 8, Slice 4 etext32615 Palmer, Raymond Alfred, 1910-1977 The Hell Ship etext32621 Vandal, Albert, 1853-1910 Napoléon et Alexandre Ier (3/3) etext32629 Various Punch, or the London Charivari, Volume 93, July 9, 1887. etext32639 Swet, Pearl Norton The Medici Boots etext32643 Henry, Charles, 1859-1926 etext32667 Ludwig, Edward W. The Holes and John Smith etext32675 Rogers, William Henry Hamilton The Strife of the Roses and Days of the Tudors in the West etext2 United States United States Bill of Rights etext55 Baum, L. Frank (Lyman Frank), 1856-1919 The Wonderful Wizard of Oz etext83 Verne, Jules, 1828-1905 From the Earth to the Moon; and, Round the Moon etext224 Hardy, Thomas, 1840-1928 A Pair of Blue Eyes etext264 Kilmer, Joyce, 1886-1918 Main Street and Other Poems etext267 Wharton, Edith, 1862-1937 The Touchstone etext374 Bierce, Ambrose, 1842-1914? Fantastic Fables etext388 Churchill, Winston, 1871-1947 The Crossing etext399 Alger, Horatio, 1832-1899 Cast Upon the Breakers etext416 Anderson, Sherwood, 1876-1941 Winesburg, Ohio; a group of tales of Ohio small town life etext427 Stockton, Frank Richard, 1834-1902 The Great War Syndicate etext430 Phillips, David Graham, 1867-1911 The Grain of Dust etext432 James, Henry, 1843-1916 The Ambassadors etext459 Burnett, Frances Hodgson, 1849-1924 The White People etext498 Wiggin, Kate Douglas Smith, 1856-1923 Rebecca of Sunnybrook Farm etext506 Burnett, Frances Hodgson, 1849-1924 The Shuttle etext515 Davis, Rebecca Harding, 1831-1910 Margret Howth, a Story of To-day etext538 Bower, B. M., 1874-1940 Jean of the Lazy A etext615 Ariosto, Lodovico, 1474-1533 Orlando Furioso etext616 Stevenson, Robert Louis, 1850-1894 Vailima Prayers and Sabbath Morn etext637 Stevenson, Robert Louis, 1850-1894 Letters of Robert Louis Stevenson — Volume 2 etext723 Howells, William Dean, 1837-1920 Henry James, Jr. etext791 Tennyson, Alfred Tennyson, Baron, 1809-1892 The Princess etext809 Dickens, Charles, 1812-1870 Holiday Romance etext862 Wister, Owen, 1860-1938 Philosophy 4 etext871 Epictetus, 55-135 The Golden Sayings of Epictetus etext940 Cooper, James Fenimore, 1789-1851 The Last of the Mohicans; A narrative of 1757 etext962 Kendall, Henry, 1839-1882 The Poems of Henry Kendall etext978 Freeman, Mary Eleanor Wilkins, 1852-1930 The Yates Pride, a romance etext992 Spinoza, Benedictus de, 1632-1677 Theologico-Political Treatise — Part 4 etext1216 Babbage, Charles, 1792-1871 Reflections on the Decline of Science in England etext1221 Coulter, John Merle, 1851-1928 North American Species of Cactus etext1224 Mims, Edwin A Biography of Sidney Lanier etext1226 Various The Journal of Abnormal Psychology, Volume 10 etext1236 Brooks, Noah, 1830-1903 First Across the Continent etext1271 Redgrove, H. Stanley (Herbert Stanley), 1887-1943 Bygone Beliefs: being a series of excursions in the byways of thought etext1351 Trueman, Howard, 1837-1908 The Chignecto Isthmus and its first settlers etext1353 Verne, Jules, 1828-1905 Off on a Comet! a Journey through Planetary Space etext1378 White, Stewart Edward, 1873-1946 The Land of Footprints etext1380 Balzac, Honoré de, 1799-1850 The Two Brothers etext1406 Dickens, Charles, 1812-1870 Perils of Certain English Prisoners etext1467 Dickens, Charles, 1812-1870 Some Christmas Stories etext1504 Shakespeare, William, 1564-1616 The Comedy of Errors etext1519 Shakespeare, William, 1564-1616 Much Ado about Nothing etext1546 Shakespeare, William, 1564-1616 Sonnets on Sundry Notes of Music etext1639 Balzac, Honoré de, 1799-1850 Eve and David etext1643 Plato, 427? BC-347? BC Meno etext1654 Shaw, Bernard, 1856-1950 An Unsocial Socialist etext1718 Chesterton, G. K. (Gilbert Keith), 1874-1936 Manalive etext1732 Chekhov, Anton Pavlovich, 1860-1904 The Schoolmistress, and other stories etext1768 Shakespeare, William, 1564-1616 King Richard III etext1795 Shakespeare, William, 1564-1616 Macbeth etext1816 Ogden, Ruth, 1853-1927 Tattine etext1833 Groner, Auguste, 1850-1929 The Case of the Registered Letter etext1857 Green, Anna Katharine, 1846-1935 Initials Only etext1865 Trollope, Anthony, 1815-1882 North America — Volume 1 etext1937 Kipling, Rudyard, 1865-1936 The Second Jungle Book etext2031 The Lock and Key Library etext2082 Lamothe-Langon, Etienne-Léon, baron de, 1786-1864 Memoirs of the Comtesse Du Barry; with intimate details of her entire career as favorite of Louis XV etext2122 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Appendix etext2156 Giles, Herbert Allen, 1845-1935 China and the Manchus etext2184 Bird, Isabella L. (Isabella Lucy), 1831-1904 Unbeaten Tracks in Japan etext2199 Homer, 750? BC-650? BC The Iliad etext2349 Doyle, Arthur Conan, Sir, 1859-1930 The Adventure of the Devil's Foot etext2386 Thayer, William Roscoe, 1859-1923 Theodore Roosevelt; an Intimate Biography etext2451 Gaboriau, Émile, 1832-1873 Caught in the Net etext2501 Roe, Edward Payson, 1838-1888 A Face Illumined etext2518 Tagore, Rabindranath, 1861-1941 The Hungry Stones and Other Stories etext2541 Smiles, Samuel, 1812-1904 Character etext2548 Gaskell, Elizabeth Cleghorn, 1810-1865 The Poor Clare etext2619 Stevenson, Burton Egbert, 1872-1962 The Home Book of Verse — Volume 1 etext2666 Holmes, Oliver Wendell, 1809-1894 The Poet at the Breakfast-Table etext2723 Harte, Bret, 1836-1902 A First Family of Tasajara etext2748 Dumas père, Alexandre, 1802-1870 Derues etext2766 McElroy, John, 1846-1929 The Red Acorn etext2804 Alcott, Louisa May, 1832-1888 Rose in Bloom etext2989 Ferguson, W. B. M. (William Blair Morton), 1882-1967 Garrison's Finish : a romance of the race course etext2991 Pretty, Francis Sir Francis Drake's Famous Voyage Round the World etext3096 Haggard, Henry Rider, 1856-1925 Beatrice etext26785 Modern British Poetry etext26916 Rand, Theodore H. (Theodore Harding), 1835-1900 Song-waves etext3143 Kingsley, Charles, 1819-1875 Sir Walter Raleigh and His Time etext3264 Stead, Robert J. C., 1880-1959 Dennison Grant: a Novel of To-day etext3309 Nadaillac, Jean-François-Albert du Pouget, marquis de, 1818-1904 Manners and Monuments of Prehistoric Peoples etext3374 Howells, William Dean, 1837-1920 Complete March Family Trilogy etext3384 Howells, William Dean, 1837-1920 Some Anomalies of the Short Story (from Literature and Life) etext3405 Howells, William Dean, 1837-1920 Ragged Lady — Volume 1 etext3433 Slaveikov, Pencho P., 1866-1912 Епически песни etext3502 Human Genome Project Human Genome Project, Chromosome Number 02 etext3535 Tench, Watkin, 1759-1833 A Narrative of the Expedition to Botany-Bay etext3598 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 18 etext3645 Molière, 1622-1673 L'Etourdi etext3667 Lewis, Alfred Henry, 1857-1914 Wolfville Days etext3682 Churchill, Winston, 1871-1947 Mr. Crewe's Career — Volume 2 etext3696 Yonge, Charlotte Mary, 1823-1901 The Prince and the Page; a story of the last crusade etext3747 Ariosto, Lodovico, 1474-1533 Orlando Furioso etext3824 Pedler, Margaret, -1948 The Lamp of Fate etext3864 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 05 etext4022 Darwin, Charles, 1809-1882 Coral Reefs — Complete etext4065 Newcomb, Simon, 1835-1909 Side-Lights on Astronomy and Kindred Fields of Popular Science etext4102 Ames, Azel, 1845-1908 The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Volume 2 etext4104 Ames, Azel, 1845-1908 The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Volume 4 etext4115 Young, Filson, 1876-1938 Christopher Columbus and the New World of His Discovery — Volume 8 etext4131 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Complete 1661 N.S. etext4163 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 41: January/February 1665-66 etext4194 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 70: December 1668 etext4208 Swift, Jonathan, 1667-1745 The Journal to Stella etext4217 Joyce, James, 1882-1941 A Portrait of the Artist as a Young Man etext4286 Haddock, Frank C. (Frank Channing), 1853-1915 Mastery of Self for Wealth Power Success etext4315 Wright, Thomas, 1859-1936 The Life of Sir Richard Burton etext4385 Call, Annie Payson, 1853-1940 As a Matter of Course etext4391 Descartes, René, 1596-1650 The Selections from the Principles of Philosophy etext26594 Shakespeare, William, 1564-1616 Two Gentlemen of Verona. Dutch etext4406 Meredith, George, 1828-1909 Ordeal of Richard Feverel — Volume 1 etext4410 Meredith, George, 1828-1909 Ordeal of Richard Feverel — Volume 5 etext4485 Meredith, George, 1828-1909 The Amazing Marriage — Volume 3 etext4487 Meredith, George, 1828-1909 The Amazing Marriage — Volume 5 etext4514 Wharton, Edith, 1862-1937 Tales of Men and Ghosts etext4515 Curwood, James Oliver, 1878-1927 The Golden Snare etext4529 Allen, Grant, 1848-1899 Biographies of Working Men etext4605 Collins, Wilkie, 1824-1889 Basil etext4608 Appleton, Victor [pseud.] Tom Swift in Captivity, or a Daring Escape By Airship etext4612 Benson, Arthur Christopher, 1862-1925 The Altar Fire etext4626 Arthur, T. S. (Timothy Shay), 1809-1885 Married Life; Its Shadows and Sunshine etext4658 Burton, Richard Francis, Sir, 1821-1890 Personal Narrative of a Pilgrimage to Al-Madinah & Meccah — Volume 2 etext4724 Berkeley, George, 1685-1753 Three Dialogues Between Hylas and Philonous etext4756 Irwin, Wallace, 1876-1959 The Love Sonnets of a Hoodlum etext4757 Wright, J. W. (Jacob William), 1871- The Long Ago etext4761 Tolstoy, Leo, graf, 1828-1910 The Cossacks etext4807 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 07: 1561-62 etext4891 Motley, John Lothrop, 1814-1877 Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years' War, 1613-15 etext4910 Lindsay, Norman, 1879-1969 The Magic Pudding etext4926 Bulfinch, Thomas, 1796-1867 The Age of Chivalry etext4928 Bulfinch, Thomas, 1796-1867 Bulfinch's Mythology etext4995 Stratemeyer, Edward, 1862-1930 True to Himself : or Roger Strong's Struggle for Place etext5056 Galsworthy, John, 1867-1933 Plays : Second Series etext5097 Verne, Jules, 1828-1905 20000 Lieues Sous Les Mers — Complete etext5139 Ewald, Carl, 1856-1908 Tales etext5176 Sills, Steven (Steven David Justin) Corpus of a Siam Mosquito etext5197 Wagner, Richard, 1813-1883 My Life — Volume 1 etext5201 Zorrilla, José, 1817-1893 Don Juan Tenorio etext5235 Lever, Charles James, 1806-1872 The Confessions of Harry Lorrequer — Volume 2 etext5243 Payne, John, 1842-1916 Tales from the Arabic — Volume 02 etext5245 Payne, John, 1842-1916 Tales from the Arabic — Complete etext5304 Burnett, Frances Hodgson, 1849-1924 My Robin etext5363 Churchill, Winston, 1871-1947 The Inside of the Cup — Volume 08 etext5397 Churchill, Winston, 1871-1947 Dr. Jonathan etext5404 Flower, Jessie Graham [pseud.], -1931 Grace Harlowe's Overland Riders on the Great American Desert etext5456 Ebers, Georg, 1837-1898 An Egyptian Princess — Volume 07 etext5465 Ebers, Georg, 1837-1898 The Sisters — Volume 5 etext5481 Ebers, Georg, 1837-1898 Cleopatra — Volume 09 etext5493 Ebers, Georg, 1837-1898 The Emperor — Complete etext5523 Ebers, Georg, 1837-1898 The Bride of the Nile — Volume 07 etext5561 Ebers, Georg, 1837-1898 Barbara Blomberg — Volume 01 etext5572 Ebers, Georg, 1837-1898 A Word, Only a Word — Volume 01 etext5634 Beethoven, Ludwig van, 1770-1827 Große Fuge in B flat major Opus 133 etext5638 Ireland, Alleyne An Adventure with a Genius etext5641 Lehrs, Ernst, 1894-1979 Man or Matter etext5655 Burke, Edmund, 1729-1797 Burke's Speech on Conciliation with America etext5700 Yonge, Charlotte Mary, 1823-1901 Love and Life etext5716 Joinville, Prince De, 1818-1900 Memoirs (Vieux Souvenirs) of the Prince de Joinville etext5720 Housman, A. E. (Alfred Edward), 1859-1936 A Shropshire Lad etext5736 Wemyss, Mary C.E. The Professional Aunt etext5741 Stories by Foreign Authors: Russian etext5744 Zola, Émile, 1840-1902 Ventre de Paris. English etext5746 Haggard, Henry Rider, 1856-1925 The Ancient Allan etext5749 Holberg, Ludvig, baron, 1684-1754 Comedies by Holberg : Jeppe of the Hill, The Political Tinker, Erasmus Montanus etext5775 Drake, Durant Problems of Conduct etext5790 Millay, Edna St. Vincent, 1892-1950 Aria da Capo etext5813 Twain, Mark, 1835-1910 Following the Equator, Part 6 etext5846 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Poor Mrs. Quack etext6015 Davis, Richard Harding, 1864-1916 Captain Macklin etext6023 Rutherford, Mark, 1831-1913 Catharine Furze etext6046 Bunyan, John, 1628-1688 Works of John Bunyan — Volume 01 etext6059 Simms, William Gilmore, 1806-1870 Confession, or, the Blind Heart; a Domestic Story etext6073 Haggard, Henry Rider, 1856-1925 Smith and the Pharaohs, and other Tales etext6119 Paterson, A. B. (Andrew Barton), 1864-1941 Outback Marriage, an : a story of Australian life etext6138 Butler, Samuel, 1835-1902 Life and Habit etext6167 Calhoun, Alfred Rochefort Business Hints for Men and Women etext6176 Parker, Gilbert, 1862-1932 Pierre and His People, [Tales of the Far North], Volume 3. etext6189 Parker, Gilbert, 1862-1932 Northern Lights, Volume 4. etext6215 Parker, Gilbert, 1862-1932 The Pomp of the Lavilettes, Volume 1 etext6226 Parker, Gilbert, 1862-1932 The Seats of the Mighty, Volume 3 etext6230 Parker, Gilbert, 1862-1932 The Battle of the Strong — Volume 1 etext6284 Parker, Gilbert, 1862-1932 The World for Sale, Complete etext6300 Parker, Gilbert, 1862-1932 The Project Gutenberg Complete Works of Gilbert Parker etext6386 Suetonius Tranquillus, Gaius, 75-160 The Lives of the Twelve Caesars, Volume 01: Julius Caesar etext6406 Scott, Walter, Sir, 1771-1832 The Monastery etext6448 Sue, Eugène, 1804-1857 Mysteries of Paris, V3 etext6481 Ellis, John, 1815-1896 Personal Experience of a Physician etext6482 Various The Coverley Papers etext6556 Sinclair, Upton, 1878-1968 The Jungle etext6588 Barnes, Walter, 1880- Types of Children's Literature etext6627 Roe, Edward Payson, 1838-1888 Barriers Burned Away etext6639 Hauff, Wilhelm, 1802-1827 Märchen-Almanach auf das Jahr 1827 etext6648 Kleist, Heinrich von, 1777-1811 Penthesilea etext6668 Collins, J. E. (Joseph Edmund), 1855-1892 Annette, the Metis Spy etext6701 Meinhold, Wilhelm, 1797-1851 Sidonia, the Sorceress : the Supposed Destroyer of the Whole Reigning Ducal House of Pomerania — Volume 2 etext6718 Lincoln, Joseph Crosby, 1870-1944 Cap'n Dan's Daughter etext6727 Innes, Arthur D. (Arthur Donald), -1938 England under the Tudors etext6777 Schiller, Friedrich, 1759-1805 History of the Revolt of the Netherlands — Volume 02 etext6793 Schiller, Friedrich, 1759-1805 The Bride of Messina, and On the Use of the Chorus in Tragedy etext6871 Beethoven, Ludwig van, 1770-1827 String Quartet No. 09 in C major Opus 59 etext6889 Lessing, Gotthold Ephraim, 1729-1781 Laokoon etext6994 Hugo, Victor, 1802-1885 Han d'Islande etext7107 Twain, Mark, 1835-1910 Adventures of Huckleberry Finn, Chapters 36 to The Last etext7117 Memoirs of Sir Wemyss Reid 1842-1885 etext7143 Leslie, Lawrence J. The Strange Cabin on Catamount Island etext7211 Philbrick, John D. (John Dudley), 1818-1886 The American Union Speaker etext7228 Curzon, Sarah Anne, 1833-1898 Laura Secord, the heroine of 1812. etext7251 Holley, Marietta, 1836-1926 Sweet Cicely — or Josiah Allen as a Politician etext7255 Stearns, Frank Preston, 1846-1917 Cambridge Sketches etext7262 Bradley, Richard, 1688-1732 The Country Housewife and Lady's Director in the Management of a House, and the Delights and Profits of a Farm etext7267 Capuana, Luigi, 1839-1915 Cardello etext7314 Shen, Kuo, 1031-1095 夢溪筆談, Volume 11-16 etext7364 Howells, William Dean, 1837-1920 The Albany Depot : a Farce etext7406 Lu, Yu, 733-804 茶經 etext7422 Howells, William Dean, 1837-1920 Roman Holidays, and Others etext7424 Widdemer, Margaret, 1884-1978 The Wishing-Ring Man etext7425 Alcott, Louisa May, 1832-1888 The Louisa Alcott Reader: a Supplementary Reader for the Fourth Year of School etext7445 Curtis, George William, 1824-1892 Ars Recte Vivendi; Being Essays Contributed to "The Easy Chair" etext7471 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Man with Two Left Feet etext7500 Spyri, Johanna, 1827-1901 Heidis Lehr- und Wanderjahre etext7524 Tacitus, Cornelius, 56-120 The Germany and the Agricola of Tacitus etext7532 A Book of Old Ballads — Volume 2 etext7538 Casanova, Giacomo, 1725-1798 Quotes and Images from the Memoirs of Jacques Casanova de Seingalt etext7547 Lincoln, Abraham, 1809-1865 Quotes and Images From The Writings of Abraham Lincoln etext7554 Pepys, Samuel, 1633-1703 Quotes and Images From The Diary of Samuel Pepys etext7568 Bentzon, Th. (Thérèse), 1840-1907 Images from Bentzon's Jacqueline etext7633 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Disowned — Volume 03 etext7660 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 What Will He Do with It? — Volume 02 etext7750 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Godolphin, Volume 1. etext7801 Adams, Sherred Willcox Five Little Friends etext7914 Smith, John Jay, 1798-1881 American Historical and Literary Antiquities, Part 14. etext8051 Anonymous The Bible, King James version, Book 51: Colossians etext8064 Anonymous The Bible, King James version, Book 64: 3 John etext8162 Moore, George (George Augustus), 1852-1933 Modern Painting etext8227 Eliot, George, 1819-1880 Middlemarch etext8238 Anonymous The World English Bible (WEB): 1 Kings etext8241 Anonymous The World English Bible (WEB): 2 Chronicles etext8253 Anonymous The World English Bible (WEB): Ezekiel etext8335 The Bible, Douay-Rheims, Book 35: Amos etext8347 The Bible, Douay-Rheims, Book 47: Matthew etext8390 Hodous, Lewis, 1872-1949 Buddhism and Buddhists in China etext8396 Ollivant, Alfred, 1874-1927 The Gentleman etext8431 Onerva, L., 1882-1972 Liesilauluja etext8518 Tegnér, Esaias, 1782-1846 Fritiofs Saga etext8527 Twain, Mark, 1835-1910 Eve's Diary, Part 2 etext8542 Gurney, Lydia Maria Things Mother Used to Make etext8564 Park, Mungo, 1771-1806 Life and Travels of Mungo Park in Central Africa etext8566 Kent, Charles Foster, 1867-1925 The Origin and Permanent Value of the Old Testament etext8775 Hugo, Victor, 1802-1885 Poems etext8794 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Purgatory, Volume 5 etext8815 Blanc, Dr. Henri, 1831-1911 Narrative of Captivity in Abyssinia with Some Account of the Late Emperor the Late Emperor Theodore, His Country and People etext8861 Byron, George Gordon Byron, Baron, 1788-1824 Byron's Poetical Works, Volume 1 etext8871 Turgenev, Ivan Sergeevich, 1818-1883 A Desperate Character and Other Stories etext8882 Hearn, Lafcadio, 1850-1904 Kokoro etext8914 Lawrence, D. H. (David Herbert), 1885-1930 England, My England etext8996 Miller, Marion Mills, 1864-1949 Practical Suggestions for Mother and Housewife etext9017 Twain, Mark, 1835-1910 A Double Barrelled Detective Story etext9021 Twain, Mark, 1835-1910 Fenimore Cooper's Literary Offences etext9047 Bloomfield, Robert, 1766-1823 The Banks of Wye etext9071 Parsons, John Denham The Non-Christian Cross etext9115 London, Jack, 1876-1916 The Call of the Wild etext9165 Zola, Émile, 1840-1902 The Three Cities Trilogy: Paris, Volume 2 etext9172 Kent, Grace Helen A Study of Association in Insanity etext9221 Hawthorne, Nathaniel, 1804-1864 The Old Manse (From "Mosses from an Old Manse") etext9239 Hawthorne, Nathaniel, 1804-1864 Old News etext9280 Wharton, Edith, 1862-1937 House of Mirth etext9300 Barr, Robert, 1850-1912 Jennie Baxter, Journalist etext9348 Conrad, Joseph, 1857-1924 Some Reminiscences etext9369 Lessing, Gotthold Ephraim, 1729-1781 Der junge Gelehrte etext9380 A Nonsense Anthology etext9386 Miller, J. R. (James Russell), 1840-1912 Girls: Faults and Ideals etext9429 Hardy, Thomas, 1840-1928 A Pair of Blue Eyes etext9438 Hardy, Thomas, 1840-1928 The Well-Beloved etext9442 Ward, Humphry, Mrs., 1851-1920 Helbeck of Bannisdale — Volume II etext9465 Hardy, Arthur Sherburne, 1847-1930 Songs of Two etext9484 Various Georgian Poetry 1911-12 etext9556 Doyle, Arthur Conan, Sir, 1859-1930 A Study in Scarlet etext9576 Whittier, John Greenleaf, 1807-1892 Anti-Slavery Poems II. etext9596 Whittier, John Greenleaf, 1807-1892 Reform and Politics, Part 2, from Volume VII, etext9597 Whittier, John Greenleaf, 1807-1892 The Inner Life, Part 3, from Volume VII, etext9652 Various Miscellany of Poetry etext9654 Herculano, Alexandre, 1810-1877 Lendas e Narrativas (Tomo I) etext9656 Chesterton, G. K. (Gilbert Keith), 1874-1936 Alarms and Discursions etext9701 Beowulf etext9711 Dickens, Charles, 1812-1870 The Holly-Tree etext9715 Dickens, Charles, 1812-1870 Little Dorrit etext9737 Dickens, Charles, 1812-1870 The Seven Poor Travellers etext9756 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Leila or, the Siege of Granada, Book I. etext9762 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Calderon the Courtier, a Tale etext9822 Robinson, Mary, 1758-1800 Beaux and Belles of England etext9834 Fletcher, J. S. (Joseph Smith), 1863-1935 The Talleyrand Maxim etext9949 Nowlin, William, 1821-1884 The Bark Covered House etext9950 Lessing, Gotthold Ephraim, 1729-1781 Abhandlungen über die Fabel etext9964 Blackwood, Algernon, 1869-1951 The Centaur etext10027 Avery, Harold, 1867-1943 The Triple Alliance etext10034 Various Punchinello, Volume 1, No. 26, September 24, 1870 etext10052 Oliphant, Mrs. (Margaret), 1828-1897 The Open Door, and the Portrait. etext10062 Keenan, Henry F. (Henry Francis), 1850- The Iron Game etext23162 Leiber, Fritz, 1910-1992 No Great Magic etext10069 Planta, Joseph, Esq. F. R. S., 1744-1827 Account of the Romansh Language etext10072 Moxon, Elizabeth English Housewifery etext10094 Stevenson, Burton Egbert, 1872-1962 A Soldier of Virginia etext10139 Tyrrell, George, 1861-1909 The Faith of the Millions (2nd series) etext10203 Ferguson, Miss. Big Ben Clock Tower of Westminster etext10284 Jaudas (violin) Spring of Love Spring of Love etext10298 Trucksess, Robert (American Guitar) Flow Gently Sweet Afton and Bonnie, Sweet Bonnie etext10479 Atticus, 1836?-1912 Our Churches and Chapels etext10492 Canth, Minna, 1844-1897 Agnes etext10508 McGaffey, Kenneth The Sorrows of a Show Girl etext10596 Cap and Gown etext10603 Beynon, William George Laurence, 1866-1955 With Kelly to Chitral etext10610 James, Eighth Earl of Elgin, 1811-1863 Letters and Journals of James, Eighth Earl of Elgin etext10625 etext10640 Lord, John, 1810-1894 Beacon Lights of History, Volume 09 etext10675 Gardiner, A. G. (Alfred George), 1865-1946 Pebbles on the shore [by] Alpha of the plough etext10709 Shiel, M. P. (Matthew Phipps), 1865-1947 Prince Zaleski etext10871 Jacobs, W. W. (William Wymark), 1863-1943 At Sunwich Port, Part 1. etext10872 Jacobs, W. W. (William Wymark), 1863-1943 At Sunwich Port, Part 2. etext10890 Dio, Cassius Dio's Rome, Volume 5, Books 61-76 (A.D. 54-211) etext10891 Young, Egerton Ryerson, 1840-1909 Algonquin Indian Tales etext10904 Standish, Burt L., 1866-1945 Frank Merriwell's Nobility etext10906 Neuray, Fernand Quinze Jours en Égypte etext10935 Lagerlöf, Selma, 1858-1940 The Wonderful Adventures of Nils etext10939 Frye, Major W. E After Waterloo: Reminiscences of European Travel 1815-1819 etext10940 Jacob, P. L., 1806-1884 Manners, Customs, and Dress During the Middle Ages and During the Renaissance Period etext10944 Adams, Samuel Hopkins, 1871-1958 From a Bench in Our Square etext11005 Wetterau, John Moncure O+F etext11035 Loti, Pierre, 1850-1923 Aziyadé etext11118 Various The Atlantic Monthly, Volume 07, No. 39, January, 1861 etext11132 Lauer, Ph. Robert Ier et Raoul de Bourgogne, rois de France (923-936) etext11138 Nye, Bill, 1850-1896 Comic History of England etext11171 Stowe, Harriet Beecher, 1811-1896 Uncle Tom's Cabin, Young Folks' Edition etext11172 Drinkwater, John, 1882-1937 Abraham Lincoln etext11218 Anonymous Highroads of Geography etext11256 Fowler, W. Warde (William Warde), 1847-1921 Social life at Rome in the Age of Cicero etext11293 Wergeland, Henrik, 1808-1845 Jan van Huysums Blomsterstykke etext11296 Canth, Minna, 1844-1897 Työmiehen vaimo etext11327 Mair, G. H. (George Herbert), 1887-1926 English Literature: Modern etext11328 Curwood, James Oliver, 1878-1927 The Hunted Woman etext11391 Allston, Washington, 1779-1843 Lectures on Art etext11397 Johnson, Samuel, 1709-1784 The Works of Samuel Johnson, Volume 03 etext11427 Church, Ella Rodman, 1831- A Grandmother's Recollections etext11432 Gould, Hannah Flagg, 1788-1865 The Youth's Coronal etext11540 Various The Mirror of Literature, Amusement, and Instruction etext11543 Various The Mirror of Literature, Amusement, and Instruction etext11571 Graves, Charles L. (Charles Larcom), 1856-1944 Mr. Punch's History of the Great War etext11629 Various Punch, or the London Charivari, Volume 153, December 26, 1917 etext11633 Huckel, Oliver, 1864-1940 Parsifal etext11728 Putnam, George Haven, 1844-1930 Abraham Lincoln etext11729 Boswell, James, 1740-1795 Life of Johnson, Volume 6 etext11803 Library of Congress. Copyright Office U.S. Copyright Renewals, 1951 January - June etext11832 Library of Congress. Copyright Office U.S. Copyright Renewals, 1965 July - December etext11851 Library of Congress. Copyright Office U.S. Copyright Renewals, 1975 January - June etext11855 Library of Congress. Copyright Office U.S. Copyright Renewals, 1977 January - June etext11856 Library of Congress. Copyright Office U.S. Copyright Renewals, 1977 July - December etext11863 Various The Mirror of Literature, Amusement, and Instruction etext11867 Curwood, James Oliver, 1878-1927 The Alaskan etext11877 Monkey Jack and Other Stories etext11884 Anonymous Aenmerkinge op de Missive van Parnas etext11890 Webster, Frank V. Comrades of the Saddle etext11935 Spurgeon, Caroline F. E., 1869-1942 Mysticism in English Literature etext11974 Jacobs, W. W. (William Wymark), 1863-1943 Dialstone Lane, Part 4. etext12064 Roberts, Miss Emma, 1794-1840 Notes of an Overland Journey Through France and Egypt to Bombay etext12072 Bonnières, Robert de Contes des fées etext12143 Royova, Kristina, 1860-1936 The Three Comrades etext12200 Various Delsarte System of Oratory etext12210 Jacobs, W. W. (William Wymark), 1863-1943 Dixon's Return etext12214 Jacobs, W. W. (William Wymark), 1863-1943 Admiral Peters etext12242 Dickinson, Emily, 1830-1886 Poems by Emily Dickinson, Three Series, Complete etext12252 Swift, Jonathan, 1667-1745 The Prose Works of Jonathan Swift, D.D. — Volume 03 etext12326 Terry, Ellen, 1848-1928 The Story of My Life etext12345 Lawson, Thomas William, 1857-1925 Friday, the Thirteenth etext12369 Library of the World's Best Literature, Ancient and Modern — Volume 1 etext12449 Yonge, Charlotte Mary, 1823-1901 A Reputed Changeling etext12480 Panchadasi, Swami Clairvoyance and Occult Powers etext12502 Buena Nueva de acuerdo a Lucas: Traducción de dominio público abierta a mejoras etext12516 Dell, Ethel M. (Ethel May), 1881-1939 The Way of an Eagle etext12616 Berry, Robert Lee Around Old Bethany etext12766 Various The Mirror of Literature, Amusement, and Instruction etext12823 Alger, Horatio, 1832-1899 Joe's Luck etext12899 Various The Mirror of Literature, Amusement, and Instruction etext12920 Train, Arthur Cheney, 1875-1945 The "Goldfish" etext12922 Morley, John, 1838-1923 Burke etext12924 Various The World's Best Poetry, Volume 8 etext12935 Linnankoski, Johannes, 1869-1913 The Song of the Blood-Red Flower etext12978 Vincent, W.T. (William Thomas) In Search of Gravestones Old and Curious etext13001 Vizetelly, Henry, 1820-1894 California etext13011 Mortimer, Favell Lee, 1802-1878 Far Off etext13095 Moore, George, 1806-1876 Journal of a Voyage across the Atlantic etext13221 Musset, Alfred de, 1810-1857 Oeuvres Complètes de Alfred de Musset — Tome 7. etext13257 De Mille, James, 1833-1880 The American Baron etext13262 Blaikie, William Garden, 1820-1899 The Personal Life of David Livingstone etext13367 Belloc, Hilaire, 1870-1953 Hills and the Sea etext13442 Janvier, Thomas A. (Thomas Allibone), 1849-1913 Henry Hudson etext13457 Begbie, Harold, 1871-1929 The Bed-Book of Happiness etext13466 Various Punch, or the London Charivari, Volume 101, August 1, 1891 etext13544 Various Notes and Queries, Number 18, March 2, 1850 etext13564 Aho, Juhani, 1861-1921 Ensimmäiset novellit etext13611 Ellis, Havelock, 1859-1939 Studies in the Psychology of Sex, Volume 2 etext13618 Sweeting, W. D. (Walter Debenham), 1839-1913 The Cathedral Church of Peterborough etext13624 Holinshed, Raphael, -1580? Chronicles (1 of 6): The Historie of England (2 of 8) etext13683 Sequera, Mariano Justicia Nang Dios etext13721 Melville, Herman, 1819-1891 Mardi: and A Voyage Thither, Vol. II etext13827 Ward, Humphry, Mrs., 1851-1920 Fields of Victory etext13995 Various Punch, or the London Charivari, Volume 101, October 3, 1891 etext14003 Lavay, Jerome Buell, 1860- Disputed Handwriting etext14012 Browne, G. F. (George Forrest), 1833-1930 Ice-Caves of France and Switzerland etext14029 Waddington, Mary Alsop King, -1923 Chateau and Country Life in France etext14080 Lang, Andrew, 1844-1912 Custom and Myth etext14132 Various The Bay State Monthly — Volume 2, No. 5, February, 1885 etext14168 Onions, Oliver [pseud.], 1873-1961 Widdershins etext14229 Various Punch, or the London Charivari, Volume 101, November 21, 1891 etext14261 Bindloss, Harold, 1866-1945 Alton of Somasco etext14273 Lagerlöf, Selma, 1858-1940 Invisible Links etext14290 Rose, John Holland, 1855-1942 The Life of Napoleon I (Volume 2 of 2) etext14301 Benôit, Pierre, 1886-1962 Atlantida etext14302 Wheeler, Candace, 1827-1923 Principles of Home Decoration etext14310 Desbordes-Valmore, Marceline, 1786-1859 Le Livre des Mères et des Enfants, Tome II etext14317 O'Donnell, Elliott, 1872-1965 The Sorcery Club etext14337 Leino, Eino, 1878-1926 Jaana Rönty etext14342 Plunkett, Horace Curzon, Sir, 1854-1932 Ireland In The New Century etext14396 Poole, Ernest, 1880-1950 His Family etext14402 Bailey, Arthur Scott, 1877-1949 The Tale of Old Mr. Crow etext14412 O'Rourke, John The History of the Great Irish Famine of 1847 (3rd ed.) (1902) etext14414 Mather, Marshall Lancashire Idylls (1898) etext14438 Leino, Eino, 1878-1926 Mesikämmen; Musti; Ahven ja kultakalat etext14452 Various Punch, Or the London Charivari, Volume 102, April 16, 1892 etext14463 Macklin, Charles, 1697?-1797 The Man of the World (1792) etext14473 Smith, Cecil, 1826-1890 Birds of Guernsey (1879) etext14503 Matos, Júlio de, 1857-1923 A Paranoia etext14509 Various Lippincott's Magazine, October 1885 etext14522 Wilde, Oscar, 1854-1900 The Canterville Ghost etext14528 Cobb, Samuel, 1675-1713 Discourse on Criticism and of Poetry (1707) etext14531 Peabody, Josephine Preston, 1874-1922 The Singing Man etext14532 Ford, Paul Leicester, 1865-1902 The Honorable Peter Stirling and What People Thought of Him etext14554 Kinkead, Thomas L. Baltimore Catechism, No. 4 etext14563 Cooper, James A. Sheila of Big Wreck Cove etext14577 Hartwell, E. C. (Ernest Clark), 1883-1964 The Teaching of History etext14596 Inge, William Ralph, 1860-1954 Christian Mysticism etext14627 Spyri, Johanna, 1827-1901 Veronica And Other Friends etext21623 Elliott, Calvin Usury etext14671 Major, Charles, 1856-1913 Dorothy Vernon of Haddon Hall etext14673 Morang, George N. (George Nathaniel), 1866-1937 The Copyright Question etext14715 Wolfe, Elsie de The House in Good Taste etext14743 Blythe, Samuel G. (Samuel George), 1868-1947 The Fun of Getting Thin etext14749 Rolleston, T. W. (Thomas William), 1857-1920 The High Deeds of Finn and other Bardic Romances of Ancient Ireland etext14755 Hope, Anthony, 1863-1933 Father Stafford etext14761 Caxton's Book of Curtesye etext14790 Maupassant, Guy de, 1850-1893 Contes du jour et de la nuit etext14860 Scott, Walter, Sir, 1771-1832 The Journal of Sir Walter Scott etext14890 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Hunters of the Hills etext14901 Briggs, Isaac George, 1892- Epilepsy, Hysteria, and Neurasthenia etext14912 Bürger, Gottfried August, 1748-1794 Lénore et autres ballades etext14971 Edmundson, George, 1848-1930 History of Holland etext14981 Benjamin of Tudela The Itinerary of Benjamin of Tudela etext14999 Pemble, William, 1592?-1623 A Briefe Introduction to Geography etext15032 Shakespeare, William, 1564-1616 Hamlet etext15071 Shakespeare, William, 1564-1616 La Tempête etext15084 Various Recent Developments in European Thought etext15119 Various Handy Dictionary of Poetical Quotations etext15137 Potter, Beatrix, 1866-1943 The Tale of Mrs. Tiggy-Winkle etext15170 Hetty Browne, Sarah Withers, W.K. Tate The Child's World etext15172 Baggs, Charles Michael The Ceremonies of the Holy-Week at Rome etext15189 Grinnell, George Bird, 1849-1938 When Buffalo Ran etext15190 La Trobe, Benjamin, 1725-1786 With the Harmony to Labrador etext15212 Anonymous Bulletin de Lille, 1916-01 etext15216 Various Notes and Queries, Number 55, November 16, 1850 etext15293 Semple, Ellen Churchill, 1863-1932 Influences of Geographic Environment etext15348 Ballantyne, R. M. (Robert Michael), 1825-1894 Blown to Bits etext15375 Chellier, Dorothée Voyage dans l'Aurès etext15415 Kemp, Harry, 1883-1960 Tramping on Life etext15427 Various Notes and Queries, Number 59, December 14, 1850 etext15466 Victorian Short Stories of Troubled Marriages etext15523 Hay, Ian, 1876-1952 Getting Together etext32703 Harlow S. The Making of a Country Parish etext15555 Wilde, Oscar, 1854-1900 La chasse à l'oppossum etext15581 Drake, Benjamin, 1794-1841 Life of Tecumseh, and of His Brother the Prophet etext15635 Guizot, M. (François), 1787-1874 Mémoires pour servir à l'Histoire de mon temps (Tome 4) etext15658 etext15689 Ballantyne, R. M. (Robert Michael), 1825-1894 Gascoyne, The Sandal-Wood Trader etext15780 Moore, Edward Caldwell, 1857-1943 An Outline of the History of Christian Thought Since Kant etext15816 Féval, Paul, 1817-1887 La fabrique de crimes etext15819 Various The Atlantic Monthly, Volume 13, No. 76, February, 1864 etext15824 Various Notable Events of the Nineteenth Century etext15883 Anonymous The London-Bawd: With Her Character and Life etext15902 Hurston, Zora Neale, 1901?-1960 Poker! etext15924 Various The Bay State Monthly — Volume 1, No. 2, February, 1884 etext16042 The Wonder Book of Bible Stories etext16070 Abbott, John S. C. (John Stevens Cabot), 1805-1877 The Empire of Austria; Its Rise and Present Power etext16076 Fitch, Albert Parker Preaching and Paganism etext16113 Various Punch, or the London Charivari, Volume 152, June 27, 1917 etext16132 Balmes, Jaime Luciano, 1810-1848 Filosofía Fundamental, Tomo II etext16216 Various The American Missionary — Volume 50, No. 8, August, 1896 etext16253 Chalmers, Amy D. V. Madge Morton, Captain of the Merry Maid etext16302 Braun, Lily, 1865-1916 Memoiren einer Sozialistin etext16364 Various Punch, or the London Charivari, Vol. 158, 1920-03-20 etext16378 Piesse, George William Septimus, 1820-1882 The Art of Perfumery etext16446 Leon, Pascual de, 1893-1958 Buntong Hininga etext16461 Palmer, Frank Nelson A Bird's-Eye View of the Bible etext16464 Unknown The Ancient Irish Epic Tale Táin Bó Cúalnge etext16480 Preston, Margaret J. Beechenbrook etext16502 Hill, Grace Livingston, 1865-1947 The Witness etext16524 Various The Nursery, No. 107, November, 1875, Vol. XVIII. etext16541 Sinclair, Bertrand W., 1881-1972 Poor Man's Rock etext16559 Denvir, John The Life Story of an Old Rebel etext16567 Baum, L. Frank (Lyman Frank), 1856-1919 Aunt Jane's Nieces in the Red Cross etext16582 Meriläinen, Heikki, 1847-1939 Korpelan seppä etext16618 Shakespeare, William, 1564-1616 Antonius ja Cleopatra etext16634 Smith, Thorne, 1892-1934 Biltmore Oswald etext16669 Holinshed, Raphael, -1580? Chronicles (1 of 6): The Historie of England (8 of 8) etext16748 Holinshed, Raphael, -1580? Chronicles of England, Scotland and Ireland (2 of 6): England (2 of 12) etext16767 Proctor, Richard A. (Richard Anthony), 1837-1888 Half-hours with the Telescope etext16775 Arago, François (Jean Dominique), 1786-1853 Biographies of Distinguished Scientific Men etext16781 Jefferson, Thomas, 1743-1826 Memoir, Correspondence, And Miscellanies, From The Papers Of Thomas Jefferson, Volume 1 etext16786 Various The World's Best Poetry, Volume 3 etext16788 Poynter, Eleanor Frances My Little Lady etext16801 Showerman, Grant Horace and His Influence etext16833 Mill, John Stuart, 1806-1873 Auguste Comte and Positivism etext16844 Van Name, Addison Catalogue of the William Loring Andrews Collection of Early Books in the Library of Yale University etext16993 Eveleth, Stanford Miss Dexie etext16997 Sleeman, William, 1788-1856 A Journey through the Kingdom of Oude, Volumes I & II etext17033 Stowe, Harriet Beecher, 1811-1896 Lukinverkkoja etext17065 Smith, Horace, 1836-1922 Interludes etext17135 Moore, Clement Clarke, 1779-1863 Twas the Night before Christmas etext17218 Todhunter, John, 1839-1916 The Black Cat etext17244 Brownell, W. C. (William Crary), 1851-1928 French Art etext17333 Ford, Sewell, 1868-1946 Wilt Thou Torchy etext17367 Kellogg, John Harvey, 1852-1943 First Book in Physiology and Hygiene etext17422 Dowland, John, 1563-1626 Fine Knacks for Ladies etext17440 Haym, Nicola Francesco, 1678-1729 Amadigi di Gaula etext17441 Ignacio, Cleto R. Kasaysayan ng Katotohanang Buhay ng Haring Clodeveo at Reyna Clotilde sa Reyno nang Francia etext17452 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Adventures in Criticism etext17512 Various Prairie Farmer, Vol. 56: No. 1, January 5, 1884. etext17556 Patrick, Mary Mills, 1850-1940 Sextus Empiricus and Greek Scepticism etext17592 English, George Bethune, 1787-1828 A Narrative of the Expedition to Dongola and Sennaar etext17607 Holbach, Paul Henri Thiry, baron d', 1723-1789 Superstition In All Ages (1732) etext17636 Stratemeyer, Edward, 1862-1930 The Mystery at Putnam Hall etext17805 Baccini, Ida, 1850-1911 Lezioni e Racconti per i bambini etext17834 Veniero, Lorenzo La Zaffetta etext17872 Various Gifts of Genius etext17917 Green, Jonathan Harrington, 1812- Secret Band of Brothers etext17941 La Fontaine, Jean de, 1621-1695 Fables de La Fontaine etext17992 Dumas père, Alexandre, 1802-1870 Le comte de Monte-Cristo, Tome IV etext18016 Sandick, R. A. (Rudolf Adriaan) van, 1855-1933 In Het Rijk van Vulcaan etext18049 Jameson, Mrs. (Anna), 1794-1860 The Diary of an Ennuyée etext18141 Rodriguez, Fr. José ¡Caiñgat Cayo! etext18163 Mackay, Constance D'Arcy, 1887?-1966 Patriotic Plays and Pageants for Young People etext18204 Nankivell, Edward James, 1848-1909 Stamp Collecting as a Pastime etext18205 Sand, George, 1804-1876 Simon etext18348 Goethe, Johann Wolfgang von, 1749-1832 Faust I etext18350 Fabre, Jean-Henri, 1823-1915 Social Life in the Insect World etext18382 Various Chambers's Edinburgh Journal, No. 433 etext18406 Vovchok, Marko, 1834-1907 Maroessia etext18437 Glasgow, Geraldine Troublesome Comforts etext18457 Pirandello, Luigi, 1867-1936 Sei personaggi in cerca d'autore etext18542 Reed, Myrtle, 1874-1911 How to Cook Fish etext18561 Ontario. Ministry of Education The Ontario Readers etext18581 Alger, Horatio, 1832-1899 Adrift in New York etext18598 Various Stories of Achievement, Volume IV (of 6) etext18637 The Constitution of the United States of America: Analysis and Interpretation etext18652 Bailey, Arthur Scott, 1877-1949 The Tale of Henrietta Hen etext18667 Hinkle, Thomas C. (Thomas Clark), 1876-1949 Doctor Rabbit and Brushtail the Fox etext18676 Perry, Lawrence, 1875-1954 Our Navy in the War etext18743 Gibson, Wilfrid Wilson, 1878-1962 Krindlesyke etext18762 Byron, George Gordon Byron, Baron, 1788-1824 The Works of Lord Byron. Vol. 6 etext18831 Piper, H. Beam, 1904-1964 Time and Time Again etext18856 Evarts, Hal G. (Hal George), 1887-1934 The Settling of the Sage etext18918 Darien, Georges, 1862-1921 Bas les coeurs! etext18953 Bailey, Arthur Scott, 1877-1949 The Tale of Dickie Deer Mouse etext19036 Collier, Price, 1860-1913 Germany and the Germans etext19041 Foote, John Taintor, 1881-1950 Blister Jones etext19100 Various The Covenants And The Covenanters etext19111 Raphael, Rick, 1919-1994 Code Three etext19127 Various Punch, or the London Charivari, Volume 159, December 8, 1920 etext19168 Glueck, Bernard, 1883- Studies in Forensic Psychiatry etext19169 Baseball ABC etext19231 Griffith, George Chetwynd, 1857-1906 The Mummy and Miss Nitocris etext19311 Hope, Laura Lee The Outdoor Girls in Florida etext19345 France, Anatole, 1844-1924 La vie littéraire etext19408 Cable, George Washington, 1844-1925 The Amateur Garden etext19414 Campbell, Alexander, 1822-1892 General Instructions For The Guidance Of Post Office Inspectors In The Dominion Of Canada etext19465 Waring, George E. (George Edwin), 1833-1898 Draining for Profit, and Draining for Health etext19498 Grautoff, Ferdinand Heinrich, 1871-1935 Banzai! by Parabellum etext19565 Hope, Laura Lee Bunny Brown and His Sister Sue and Their Shetland Pony etext19617 Aesop, 620 BC-563 BC Aesop's Fables - Volume 02 etext19675 Gerstäcker, Friedrich, 1816-1872 Herrn Mahlhubers Reiseabenteuer etext19798 Fowler, Ellen Thorneycroft, 1860-1929 The Farringdons etext19865 Amélineau, E. (Emile), 1850-1915 Reis door Nubië etext19936 Herbert, Minie Willie the Waif etext19997 Ober, Frederick Albion, 1849-1913 Amerigo Vespucci etext20075 Smedley, Frank E. Frank Fairlegh etext20087 Patchin, Frank Gee, 1861-1925 The Pony Rider Boys in Texas etext20131 Hornblow, Arthur, 1865-1942 The Mask etext20134 Hope, Laura Lee Bunny Brown and His Sister Sue at Christmas Tree Cove etext20167 etext20215 Orpen, William, Sir, 1878-1931 An Onlooker in France 1917-1919 etext20223 Ellis, Edward Sylvester, 1840-1916 Two Boys in Wyoming etext20279 Korinek, Charles James, 1880- The Veterinarian etext20300 Pollard, A. F. (Albert Frederick), 1869-1948 Henry VIII. etext20343 Various The Spinner's Book of Fiction etext20349 Hope, Laura Lee The Moving Picture Girls at Rocky Ranch etext20493 Caswell, Harriet S., 1834- Stories and Sketches etext20514 Tiuppa, Otto, 1872-1914 Ensitaistelujen ajoilta etext20538 Various Punch, or the London Charivari, Volume 104, February 4, 1893 etext20540 Salmond, J. B. My Man Sandy etext20550 Nordberg, Carl Edin, 1880-1926 Presten som ikke kunde brukes etext20591 Yeats, W. B. (William Butler), 1865-1939 Aedh Wishes for the Cloths of Heaven etext20622 Curnick, Edward T. The Kentucky Ranger etext20641 Henty, G. A. (George Alfred), 1832-1902 Through Three Campaigns etext20643 Turner, Frederick Jackson, 1861-1932 The Character and Influence of the Indian Trade in Wisconsin etext20665 Molkenboer, Theodoor, 1871-1920 De Nederlandsche Nationale Kleederdrachten etext20735 Eales, Mary Mrs. Mary Eales's receipts. (1733) etext20757 Büchner, Ludwig, 1824-1899? Darwinismus und Sozialismus etext20814 Partridge, G.E. The Psychology of Nations etext20873 Stevens, John Austin Albert Gallatin etext20943 Twain, Mark, 1835-1910 Mark Twain: Tri Ceteraj Noveloj etext20948 Thomson, Mrs. Memoirs of the Jacobites of 1715 and 1745 etext20991 Reed, Talbot Baines, 1852-1893 Follow My leader etext21030 Nervander, Emil, 1840-1914 Uotilan isäntä etext21099 Vaizey, George de Horne, Mrs., 1857-1917 More About Peggy etext21116 etext21147 etext21234 Holt, Emily Sarah, 1836-1893 The Gold that Glitters etext21269 Klinkhamer, Jacob, 1738-1817 Het leven van Hugo de Groot etext21291 Marden, Orison Swett, 1850-1924 Pushing to the Front etext21328 Arnot, William, 1808-1875 The Parables of Our Lord etext21377 Fenn, George Manville, 1831-1909 To Win or to Die etext21446 Various Favourite Fables in Prose and Verse etext21468 Kingston, William Henry Giles, 1814-1880 Marmaduke Merry etext21572 Marryat, Frederick, 1792-1848 Percival Keene etext21590 Various Punch, or the London Charivari, Volume 98, January 18, 1890 etext21605 Harris, Joel Chandler, 1848-1908 Uncle Remus, his songs and his sayings etext21614 Henty, G. A. (George Alfred), 1832-1902 For the Temple etext21645 Crawford, Mary Caroline The Romance of Old New England Rooftrees etext21663 Perring, Mrs. Aunt Mary etext21677 Raleigh, Walter Alexander, Sir, 1861-1922 Milton etext21714 Ballantyne, R. M. (Robert Michael), 1825-1894 The Red Eric etext21759 Whyte-Melville, G. J., 1821-1878 Kate Coventry etext21790 Holbein, Hans, 1497-1543 The Dance of Death etext21801 Humboldt, Wilhelm von, 1767-1835 Briefe an eine Freundin etext21803 Mäkinen, Antti, 1857-1936 "Soitto on suruista tehty" etext21815 Fitzgerald, Percy Hethrington, 1834-1925 John Forster etext21844 Bailey, Arthur Scott, 1877-1949 The Tale of Turkey Proudfoot etext21871 Kingston, William Henry Giles, 1814-1880 Adventures in the Far West etext21888 Graydon, William Murray, 1864-1946 Canoe Boys and Campfires etext21926 Agassis, F. J. Het settlement Malakka en het sultanaat Perak etext21943 Chamisso, Adelbert von, 1781-1838 Peter Schlemihl etext21965 Hutchinson, Woods, 1862-1930 Preventable Diseases etext21987 Baring-Gould, S. (Sabine), 1834-1924 The Village Pulpit, Volume II. Trinity to Advent etext22036 Sherman, John Recollections of Forty Years in the House, Senate and Cabinet etext22063 Service, Robert W. (Robert William), 1874-1958 The Trail of '98 etext22116 Shaw, Edward R. (Edward Richard), 1855-1903 Discoverers and Explorers etext22119 Flaccus, A. Persius (AKA Persius) The Satires of A. Persius Flaccus etext19066 Cummings, Ray, 1887-1957 Brigands of the Moon etext22132 Meek, S. P. (Sterner St. Paul), 1894-1972 Giants on the Earth etext22140 Stewart, Charles D. The Wrong Woman etext22153 Lanciani, Rodolfo Amedeo, 1847-1929 Pagan and Christian Rome etext22244 Ginther, Pemberton Miss Pat at Artemis Lodge etext22269 Guyon, Jeanne Marie Bouvier de la Motte, 1648-1717 The Autobiography of Madame Guyon etext22286 Bailey, John Cann, 1864-1931 Milton etext22317 Blackmore, R. D. (Richard Doddridge), 1825-1900 George Bowring - A Tale Of Cader Idris etext22338 etext22352 Stratemeyer, Edward, 1862-1930 American Boy's Life of Theodore Roosevelt etext22378 Barroso, Carlos Cervantes e Portugal etext22381 Berens, E.M. Myths and Legends of Ancient Greece and Rome etext22427 Jones, Owen One Thousand and One Initial Letters etext22438 Bierce, Ambrose, 1842-1914? The Parenticide Club etext22494 Chekhov, Anton Pavlovich, 1860-1904 Der Bär etext22500 Trusler, John The Works of William Hogarth: In a Series of Engravings etext22510 Bandelier, Adolph Francis Alphonse, 1840-1914 Documentary History of the Rio Grande Pueblos of New Mexico; I. Bibliographic Introduction etext22562 Burgersdijk, L. A. J. (Leendert Alexander Johannes), 1828-1900 De Werken van William Shakespeare etext22565 Alger, Horatio, 1832-1899 From Farm to Fortune etext22637 Snyder, Jean M. A Little Window etext22686 Bertrand, H. Een strijd om de schatten van Alva etext22775 Münsterberg, Hugo, 1863-1916 Psychotherapy etext22781 McGibeny, Donald 32 Caliber etext22864 The Epistle of Paul to Titus etext22871 Stoddard, Charles Warren, 1843-1909 Over the Rocky Mountains to Alaska etext22874 Standish, Burt L., 1866-1945 Frank Merriwell's Pursuit etext22931 The General Epistle of James etext22950 Housman, Laurence, 1865-1959 An Englishwoman's Love-Letters etext22969 Negreiros, José Sobral de Almada, 1893-1970 Exposição Amadeo de Souza Cardoso - Liga Naval de Lisboa etext23046 Shakespeare, William, 1564-1616 The Comedy of Errors etext23100 De Morgan, Augustus, 1806-1871 A Budget of Paradoxes, Volume I etext23102 Fyfe, Horace Brown, 1918-1997 This World Must Die! etext23104 Smith, Evelyn E., 1927-2000 The Blue Tower etext23126 Farrar, F. W. (Frederic William), 1831-1903 Eric, or Little by Little etext23145 Queirós, José Maria Eça de, 1845-1900 A Illustre Casa de Ramires etext23160 Carroll, William Solomon's Orbit etext23187 Holt, Emily Sarah, 1836-1893 Mistress Margery etext23233 Wollstonecraft, Mary, 1759-1797 Posthumous Works etext23234 Dargan, Olive Tilford, 1869-1968 Semiramis and Other Plays etext23257 Strange, Michael Clair de Lune etext23287 Borrow, George Henry, 1803-1881 Lavengro etext23342 Collins, Wilkie, 1824-1889 Sisar Rosa etext23345 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 A Gratidão etext23380 Ballantyne, R. M. (Robert Michael), 1825-1894 Fighting the Flames etext23401 Anonymous Our Pets etext23437 Anonymous Reis naar Merw etext23474 Hume, Fergus, 1859-1932 The Bishop's Secret etext23611 Flagg, James Montgomery, 1877-1960 Why They Married etext23617 Doblas, Gonzalo de, 1744-1809 Memoria histórica, geográfica, política y éconómica sobre la provincia de Misiones de indios guaranís etext23629 Murfree, Mary Noailles, 1850-1922 The Riddle Of The Rocks etext23644 Lester, Pauline Marjorie Dean, High School Freshman etext23662 Cullum, Ridgwell, 1867-1943 The Heart of Unaga etext23691 Fewkes, Jesse Walter, 1850-1930 Archeological Expedition to Arizona in 1895 etext23733 Burnett, Alfred, 1824-1884 Incidents of the War: Humorous, Pathetic, and Descriptive etext23862 Snelleman, Johannes François, 1852-1938 Merauke, en wat daaraan voorafging etext23869 Harris, Joel Chandler, 1848-1908 Little Mr. Thimblefinger and His Queer Country etext23929 Reynolds, Mack, 1917-1983 Revolution etext23932 etext23948 Huangfu, Mi, 215-282 高士傳 etext23957 Pereda, José María de, 1833-1906 Al primer vuelo etext23971 The Best of the World's Classics, Restricted to Prose, Vol. VI (of X)—Great Britain and Ireland IV etext23982 Fei, Xin, 1388-1436? 星槎勝覽 etext24015 Lamb, Charles, 1775-1834 A Masque of Days etext24072 Various First Italian Readings etext24118 Kuykendall, Roger We Didn't Do Anything Wrong, Hardly etext24173 Zweig, Stefan, 1881-1942 Brennendes Geheimnis etext24178 Mencius, 372? BC-289? BC 孟子 etext24209 Charles, Elizabeth Rundle, 1828-1896 Diary of Mrs. Kitty Trevylyan. Finnish etext24239 Feng, Menglong, 1574-1646 醒世恆言 etext24271 Ford, Robert, 1846-1905 Children's Rhymes, Children's Games, Children's Songs, Children's Stories etext24349 Wharton, Edith, 1862-1937 Coming Home etext24375 Janifer, Laurence M., 1933-2002 Wizard etext24377 Bonsels, Waldemar, 1881?-1952 Indienfahrt etext24454 Collingwood, Harry, 1851-1922 Across the Spanish Main etext24455 Silva, Joaquim Possidónio Narciso da, 1806-1896 Resumo elementar de archeologia christã etext24469 Huse, Caleb, 1831-1905 The Supplies for the Confederate Army, etext24663 Gates, Eleanor, 1875-1951 The Rich Little Poor Boy etext24664 Ritchie, Anna Cora Ogden Mowatt, 1819-1870 Fairy Fingers etext24675 Nievelt, Carel van, 1843-1913 Ontboezemingen etext24681 Horton, Charles M. (Charles Marcus), 1879- Opportunities in Engineering etext24914 Brooks, Charles S. (Charles Stephen), 1878-1934 Wappin' Wharf etext24917 Pérez Galdós, Benito, 1843-1920 Heath's Modern Language Series: Mariucha etext24965 Marks, Winston K., 1915-1979 The Deadly Daughters etext24982 Various The Continental Monthly, Vol. 3, No. 1 January 1863 etext25000 Fletcher, William Younger, 1830-1913 English Book Collectors etext25064 Various The New England Magazine Volume 1, No. 6, June, 1886, Bay State Monthly Volume 4, No. 6, June, 1886 etext25070 Rice, Alice Caldwell Hegan, 1870-1942 Mr. Opp etext25142 Wang, Yangming, 1472-1529 王陽明全集 etext25157 Lie, Sophus, 1842-1899 Über Integralinvarianten und Differentialgleichungen etext25164 Reid, Mayne, 1818-1883 The Flag of Distress etext25170 Rogers, Jasper W. Facts for the Kind-Hearted of England! etext25222 Griffith, John Howell, 1868- Transactions of the American Society of Civil Engineers, vol. LXX, Dec. 1910 etext25239 Azevedo, Maximiliano de, 1850-1911 Homenagem ao Marquez De Pombal 1782-1882 etext25249 etext25266 Dimock, Arthur Bell's Cathedrals: The Cathedral Church of Saint Paul etext25284 Yunyangchichidaoren, 17th/18th cent. 五鳳吟 etext25285 Valera, Paolo, 1850-1926 Dal cellulare a Finalborgo etext25286 Xihuyuyinzhuren 歡喜冤家 etext25290 Crane, Walter, 1845-1915 Line and Form (1900) etext25401 Zhang, Dai, 1597-1679 陶庵夢憶 etext25450 Whitney, Elliott The Rogue Elephant etext25463 Hocking, Joseph, 1860-1937 The Day of Judgment etext25475 Various The Knickerbocker, or New-York Monthly Magazine, June 1844 etext25590 Chamberlain, Basil Hall, 1850-1935 Saru no ikigimo. English etext25638 Troward, T. (Thomas), 1847-1916 The Hidden Power etext18120 Verne, Jules, 1828-1905 In de Oer-wouden van Afrika etext25641 Queirós, José Maria Eça de, 1845-1900 Cartas de Inglaterra etext25651 etext25684 Granger, Darius John A World Called Crimson etext25751 The Best of the World's Classics, Restricted to Prose, Vol. VIII (of X) - Continental Europe II. etext25770 Seaman, Augusta Huiell, 1879-1950 The Dragon's Secret etext25796 Wittich, Engelbert, 1878-1937 Blicke in das Leben der Zigeuner etext25807 Poe, Edgar Allan, 1809-1849 Poemas etext25833 White, Ellen Gould Harmon, 1827-1915 The Great Controversy Between Christ and Satan etext25870 Meade, L. T., 1854-1914 A World of Girls etext25903 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 The Miscellaneous Writings and Speeches of Lord Macaulay etext25932 Unknown Short History of the London Rifle Brigade etext25945 Lima, Jaime de Magalhães, 1859-1936 Transviado etext26051 Lee, H. W. (Henry William), 1865-1932 Bolshevism: A Curse & Danger to the Workers etext26064 Reid, Whitelaw, 1837-1912 Problems of Expansion etext26097 Doddridge, Philip, 1702-1751 Submission to Divine Providence in the Death of Children etext26134 Burgon, John William, 1813-1888 The Last Twelve Verses of the Gospel According to S. Mark etext26249 MacDonald, George, 1824-1905 The Light Princess etext26285 James, Henry, 1843-1916 The Turn of the Screw etext26292 Schmitz, James H., 1911-1981 The Star Hyacinths etext26298 Kafka, Franz, 1883-1924 Verwandlung. English etext26302 Adams, Brooks, 1848-1927 The Theory of Social Revolutions etext26306 Clouston, J. Storer (Joseph Storer), 1870-1944 Simon etext26367 Hough, Emerson, 1857-1923 The Young Alaskans on the Missouri etext26379 Anonymous Vice in its Proper Shape etext26392 Panting, J. Harwood, (James Harwood) The Hero of Garside School etext26415 Various Le Tour du Monde; Voyage d'un naturaliste. etext26421 Great Men and Famous Women. Vol. 1 etext26454 Various Punch, or the London Charivari, Volume 104, May 6, 1893 etext26472 Tolstoy, Leo, graf, 1828-1910 What Men Live By and Other Tales etext26474 Hall, Mordaunt Some Naval Yarns etext26482 Lynch, Lawrence L. Madeline Payne, the Detective's Daughter etext18007 etext26492 Atkinson, George Francis, 1854-1918 Studies of American Fungi. Mushrooms, Edible, Poisonous, etc. etext26529 Williamson, A. W. (Andrew Woods), 1838-1905 The Dakotan Languages, and Their Relations to Other Languages etext26549 Jackson, Gabrielle E. (Gabrielle Emilie), 1861- Caps and Capers etext26582 Stratton-Porter, Gene, 1863-1924 Michael O'Halloran etext26617 Leslie, Madeline, 1815-1893 Minnie's Pet Parrot etext26674 Wright Henderson, P. A. (Patrick Arkley), 1841-1922 The Life and Times of John Wilkins etext26731 Sophocles, 495? BC-406 BC Antigoni etext26733 Smith, Logan Pearsall, 1865-1949 More Trivia etext26751 Egan, Jack Cully etext26819 Montolieu, Isabelle de, 1751-1832 Caroline de Lichtfield etext26863 Stern, Daniel, 1805-1876 Nélida etext26881 Erdman, Charles Rosenbury, 1866-1960 The Gospel of Luke, An Exposition etext26902 Stratemeyer, Edward, 1862-1930 The Rover Boys in Alaska etext26972 Lukács, György, 1885-1971 Die Theorie des Romans etext26984 Bagg, Helen Across the Mesa etext27021 Landor, Arnold Henry Savage, 1865-1924 An Explorer's Adventures in Tibet etext27025 Watts-Dunton, Theodore, 1832-1914 Old Familiar Faces etext27083 Mill, John Stuart, 1806-1873 The Subjection of Women etext27086 De Mille, James, 1833-1880 The Dodge Club etext27094 Baker, Willard F. The Boy Ranchers in Camp etext27099 Corfield, W. H. (William Henry), 1843-1903 Reminiscences of Queensland etext27280 Gamon, Hannibal The Praise of a Godly Woman etext27285 Torrey, Bradford, 1843-1912 The Foot-path Way etext27302 Youhuanyusheng 鄰女語 etext27335 Winkel, L. A. te, 1809-1868 De grondbeginselen der Nederlandsche spelling etext27462 Campbell, John Wood, 1910-1971 The Last Evolution etext27489 Schmid, Christoph von, 1768-1854 De nachtegaal etext27519 Feis, Herbert, 1893-1972 The Settlement of Wage Disputes etext27520 Hoffman, Frederick, Captain A Sailor of King George etext27577 Byron, George Gordon Byron, Baron, 1788-1824 The Works of Lord Byron, Vol. 7. etext27624 Duchess, 1855?-1897 How to Marry Well etext27636 Yu, Dafu, 1896-1945 沉沦 etext27693 Various Little Folks (October 1884) etext16886 Gourmont, Remy de, 1858-1915 Le livre des masques etext17265 Barrows, E. P. (Elijah Porter), 1807-1888 Companion to the Bible etext27745 Fow, John Henry, 1851-1915 The True Story of the American Flag etext27796 Buchanan's Journal of Man, December 1887 etext27819 Peel, W. H. Round Games with Cards etext27832 Anonymous Zenith Television Receiver Operating Manual etext27863 Pardo de Tavera, T. H. (Trinidad Hermenegildo), 1857-1925 The Legacy of Ignorantism etext27908 Fenn, George Manville, 1831-1909 Fix Bay'nets etext27910 Collingwood, Harry, 1851-1922 Under the Ensign of the Rising Sun etext27958 Holt, Emily Sarah, 1836-1893 In Convent Walls etext28065 Hume, H. Harold (Hardrada Harold), 1875-1965 The Pecan and its Culture etext28066 Various The Christian Foundation, Or, Scientific and Religious Journal, February, 1880 etext28157 Gardiner, Samuel Rawson, 1829-1902 A Student's History of England, v. 1 (of 3) etext28163 Trine, Ralph Waldo, 1866-1958 The Higher Powers of Mind and Spirit etext28184 Burgess, Gelett, 1866-1951 The Rubaiyat of Omar Cayenne etext28197 Unknown The Trial of Reuben Crandall, M.D. etext28308 The Children's Book of Christmas Stories etext28333 etext28416 Simpson, A. B. (Albert B.), 1843-1919 Days of Heaven Upon Earth etext28429 Saint-Elme, Ida, 1778-1845 Mémoires d'une contemporaine etext28533 Tombs, Robert Charles, 1842-1923 The King's Post etext28546 Ranke, Leopold von, 1795-1886 A History of England Principally in the Seventeenth Century, Volume I (of 6) etext28595 Pemberton, Max, Sir, 1863-1950 The Man Who Drove the Car etext28644 Dick, Philip K., 1928-1982 Beyond the Door etext28653 The Best of the World's Classics, Restricted to Prose, Vol. IX (of X) - America - I etext28816 Borrow, George Henry, 1803-1881 Signelil etext28826 Borrow, George Henry, 1803-1881 The Song of Deirdra, King Byrge and his Brothers etext28849 Goodwin, Harold L. (Harold Leland), 1914-1990 Smugglers' Reef etext28879 Guizot, M. (François), 1787-1874 A Popular History Of France From The Earliest Times etext28914 Lima, Sebastião de Magalhães, 1850-1928 Paz e Arbitragem etext28932 Eskimo Folk-Tales etext28946 Swift, Jonathan, 1667-1745 Gulliver's Travels etext28954 Sheldon, Walter J., 1917- This is Klon Calling etext29036 Barrili, Anton Giulio, 1836-1908 La montanara etext29056 Wood-Allen, Mary, 1841-1908 Almost A Man etext29167 Fischer, Henry W. (Henry William), 1856-1932 Secret Memoirs: The Story of Louise, Crown Princess etext29173 Le Queux, William, 1864-1927 The White Lie etext29188 Sallengre, Albert-Henri de, 1694-1723 Ebrietatis Encomium etext29215 Morton, Samuel George, 1799-1851 Some Observations on the Ethnography and Archaeology of the American Aborigines etext29230 Barker, James Nelson, 1784-1858 The Indian Princess etext29237 Harte, Walter, 1709-1774 An Essay on Satire, Particularly on the Dunciad etext29262 Various Graham's Magazine Vol XXXII. No. 5. May 1848 etext29328 James, Alex The Shining Cow etext29330 Schwartz, Marie Sophie, 1819-1894 Laulajat etext29376 Hauptmann, Gerhart, 1862-1946 Bahnwärter Thiel etext29381 Lever, Charles James, 1806-1872 The Works Of Charles James Lever etext29428 Major, Richard Henry, 1818-1891 O descobrimento da Australia pelos portuguezes em 1601 etext29459 Xenophon, 431 BC-350? BC The Project Gutenberg Works Of Xenophon etext29472 Wells, H. G. (Herbert George), 1866-1946 Select Conversations with an Uncle (Now Extinct) etext29501 Scott, Emmett J. (Emmett Jay), 1873-1957 Negro Migration during the War etext29507 Jacobs, Aletta H. (Aletta Henriette), 1854-1929 Reisbrieven uit Afrika en Azië etext29521 Gautier, Théophile, 1811-1872 Enamels and Cameos and other Poems etext29545 Hewlett, Maurice Henry, 1861-1923 The Spanish Jade etext29552 Lydgate, John, 1370?-1451? The Temple of Glass etext29577 Blasco Ibáñez, Vicente, 1867-1928 Mayflower (Flor de mayo) etext29601 Robles, Edward G. See? etext29653 Berkebile, Donald H. Conestoga Wagons in Braddock's Campaign, 1755 etext29684 Echard, Lawrence, 1670?-1730 Prefaces to Terence's Comedies and Plautus's Comedies (1694) etext29765 Various Webster's Unabridged Dictionary etext29773 Hapai, Charlotte Legends of the Wailuku etext29800 Godefroy, Maurice, 1872- La Fonction Gamma etext29854 Behn, Aphra, 1640-1689 The Works of Aphra Behn etext29904 Leonardo da Vinci, 1452-1519 Thoughts on Art and Life etext29912 Rauschenbusch, Walter, 1861-1918 The Social Principles of Jesus etext29961 Sperani, Bruno, 1839-1923 Tre Donne etext29978 Brailsford, Henry Noel, 1873-1958 Shelley, Godwin and Their Circle etext29990 Fyfe, Horace Brown, 1918-1997 Satellite System etext30018 Various Punch, or the London Charivari, Vol. 98, February 22nd, 1890 etext30034 Huber, Helen I'll Kill You Tomorrow etext30118 Thornburgh, George Masonic Monitor of the Degrees of Entered Apprentice, Fellow Craft and Master Mason etext30236 Valera, Juan, 1824-1905 Pepita Ximenez etext30243 Paul, John Dean, Sir, 1775-1852 ABC of Fox Hunting etext30253 The Philippine Islands, 1493-1898 - Volume 40 of 55 etext30363 Fezensac, Raymond-Aymery-Philippe-Joseph de Montesquiou, duc de, 1784-1867 Souvenirs militaires de 1804 à 1814 etext30391 de Esque, Jean, 1879- Betelguese etext30423 Lebert, Marie L'Internet et les langues etext30448 Carryl, Guy Wetmore, 1873-1904 The Lieutenant-Governor etext30450 Livingston, Armstrong, 1885- The Monk of Hambleton etext30494 Craik, Dinah Maria Mulock, 1826-1887 The Adventures of A Brownie etext30509 Skelton, Oscar Douglas, 1878-1941 The Railway Builders etext30597 Dodge, Grenville Mellen, 1831-1916 The Battle of Atlanta etext30662 Bunner, H. C. (Henry Cuyler), 1855-1896 The Story of a New York House etext30671 Whiting, Lilian, 1847-1942 The Brownings etext30672 Cassels, Walter Richard, 1826-1907 Eidolon, or The Course of a Soul etext30695 Hindenburg, Paul von, 1847-1934 Aus meinem Leben etext30721 Setoun, Gabriel, 1861-1930 Robert Burns etext30742 Garrett, Randall, 1927-1987 Anything You Can Do! etext30813 Various Notes and Queries, Number 234, April 22, 1854 etext30821 Kant, Immanuel, 1724-1804 Beantwortung der Frage: Was ist Aufklärung? etext30832 Garrett, Randall, 1927-1987 Nor Iron Bars a Cage.... etext30844 Lewis, Irwin "To Invade New York...." etext30849 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 20 (of 25) etext30853 Bangs, John Kendrick, 1862-1922 Mrs. Raffles etext30887 Seccombe, Thomas George Borrow etext30975 Walden, J. H. Soil Culture etext30993 Leonard, Mary Finley, 1862- The Spectacle Man etext30995 Various Indian Methodist Hymn-book etext15502 Gregory, Jackson, 1882-1943 The Desert Valley etext31031 Lathbury, Thomas Guy Fawkes etext31041 Skelton, Oscar Douglas, 1878-1941 The Day of Sir Wilfrid Laurier etext31069 Kock, Charles Paul de Jean etext31081 Various The German Classics, v. 20 etext31154 Bazin, René, 1853-1932 Le Blé qui lève etext31169 Various The American Missionary — Volume 39, No. 08, August, 1885 etext31197 Calógeras, João Pandiá Os jesuitas e o ensino etext31267 White, John A. Taxonomy of the Chipmunks, Eutamias quadrivittatus and Eutamias umbrinus etext31299 Grimké, Archibald Henry, 1849-1930 The Ultimate Criminal etext31311 Anonymous Vocations Explained etext31328 Cromwell, John W. The Early Negro Convention Movement etext31337 Prittwitz, Moritz von Über allgemeine Landesbewaffnung etext31339 Wilson, Joseph T. (Joseph Thomas), 1836-1891 The Black Phalanx etext31356 Dye, Charles The Man Who Staked the Stars etext31368 Raymond, W. O. (William Odber), 1853-1923 Glimpses of the Past etext31372 Brown, Alice, 1857-1948 Old Crow etext31537 Oetker, August Dr A. Oetkers Grundlehren der Kochkunst etext31547 Asimov, Isaac, 1920-1992 Youth etext31583 Smith, Evelyn E., 1927-2000 The Venus Trap etext31656 Cunha, J. G. de Barros e Os factos etext31675 Hackwood, Frederick William The Annals of Willenhall etext31694 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Estrellas Funestas etext31705 Kellicott, William E. The Social Direction of Evolution etext31708 Ewald, Carl, 1856-1908 The Pond etext31747 Haslam, John, 1764-1844 Sound Mind etext31765 Irvine, Alexander, 1863-1941 My Lady of the Chimney Corner etext31783 Boynton, Henry V., 1835-1905 Was General Thomas Slow at Nashville? etext31805 Launay, Jean-Baptiste Mosneron de Le Vallon Aérien etext31852 Vilaras, Ioannis, 1771-1823 Ποιήματα και Πεζά τινα etext32072 Ferreira, António Aurélio da Costa, 1879-1922 Algumas lições de psicologia e pedologia etext32117 etext32164 Putnam, George Palmer In the Oregon Country etext15297 Darien, Georges, 1862-1921 Le voleur etext32194 Strickland, Agnes, 1796-1874 Alda etext32205 Boyle, Frederick, 1841- The Woodlands Orchids etext32286 Anonymous A Letter to Lord Robert Bertie etext32296 Brandão, Zeferino Norberto Gonçalves Pero da Covilhan etext32319 Seton, Ernest Thompson, 1860-1946 The Trail of the Sandhill Stag etext32390 Reynolds, Mack, 1917-1983 Black Man's Burden etext32403 Jones, Raymond F., 1915-1994 Human Error etext32495 Various Notes and Queries, Number 80, May 10, 1851 etext32533 Hunt, Henry M. The Crime of the Century etext32591 Swain, Dwight V. Henry Horn's X-Ray Eye Glasses etext32664 Brackett, Leigh Douglass, 1915-1978 Black Amazon of Mars etext32694 etext32705 Fairman, Paul W., 1916-1977 Deadly City etext32 Gilman, Charlotte Perkins, 1860-1935 Herland etext132 Sunzi 6th cent. B.C. The Art of War etext180 United States. Central Intelligence Agency The 1994 CIA World Factbook etext206 Various Martin Luther King, Jr. Day, 1995, Memorial Issue etext251 United States United States Congressional Address Book etext268 Norris, Frank, 1870-1902 The Octopus : A story of California etext332 Page, Thomas Nelson, 1853-1922 The Burial of the Guns etext392 Tasso, Torquato, 1544-1595 Jerusalem Delivered etext446 Irving, Henry Brodribb, 1870-1919 A Book of Remarkable Criminals etext477 Ferri, Enrico, 1859-1929 Criminal Sociology etext505 White, Andrew Dickson, 1832-1918 History of the Warfare of Science with Theology in Christendom etext519 Baum, L. Frank (Lyman Frank), 1856-1919 A Kidnapped Santa Claus etext522 Headland, Isaac Taylor, 1859-1942 The Chinese Boy and Girl etext530 Alger, Horatio, 1832-1899 Driven from Home, or Carl Crawford's Experience etext596 Teasdale, Sara, 1884-1933 Rivers to the Sea etext623 Swift, Jonathan, 1667-1745 The Battle of the Books and other Short Pieces etext632 etext650 Dickens, Charles, 1812-1870 Pictures from Italy etext663 etext725 Smiles, Samuel, 1812-1904 Men of Invention and Industry etext774 Wilde, Oscar, 1854-1900 Essays and Lectures etext822 Tymon, Frank The Tarn of Eternity etext831 Chrétien, de Troyes, 12th cent. Four Arthurian Romances etext834 Doyle, Arthur Conan, Sir, 1859-1930 The Memoirs of Sherlock Holmes etext836 Nesbit, E. (Edith), 1858-1924 The Phoenix and the Carpet etext850 Smith, Francis Hopkinson, 1838-1915 Tom Grogan etext866 Jerome, Jerome K. (Jerome Klapka), 1859-1927 The Cost of Kindness etext892 Gibbon, Edward, 1737-1794 History of the Decline and Fall of the Roman Empire — Volume 3 etext896 Adams, John Quincy, 1767-1848 Orations etext915 Hazeltine, Alice Isabel, 1878-1959 Library Work with Children etext973 Pyle, Howard, 1853-1911 Howard Pyle's Book of Pirates; fiction, fact & fancy concerning the buccaneers & marooners of the Spanish main etext980 Tarkington, Booth, 1869-1946 Alice Adams etext1010 Dante Alighieri, 1265-1321 La Divina Commedia di Dante: Purgatorio etext1014 Bower, B. M., 1874-1940 The Lure of the Dim Trails etext1041 Shakespeare, William, 1564-1616 Shakespeare's Sonnets etext1050 Shaw, Bernard, 1856-1950 Dark Lady of the Sonnets etext1096 London, Jack, 1876-1916 The Faith of Men etext1103 Shakespeare, William, 1564-1616 King Richard III etext1105 Shakespeare, William, 1564-1616 The Shakespearian Sonnets etext1109 Shakespeare, William, 1564-1616 Love's Labour's Lost etext1120 Shakespeare, William, 1564-1616 Julius Caesar etext1155 Christie, Agatha, 1890-1976 Secret Adversary etext1161 London, Jack, 1876-1916 Jerry of the Islands etext1181 Xenophon, 431 BC-350? BC The Symposium etext1281 Appleton, Victor [pseud.] Tom Swift and His Aerial Warship, or, the Naval Terror of the Seas etext1361 Appleton, Victor [pseud.] Tom Swift and His Giant Cannon, or, the Longest Shots on Record etext1376 Barrie, J. M. (James Matthew), 1860-1937 The Little White Bird; or, Adventures in Kensington gardens etext1388 Wister, Owen, 1860-1938 Padre Ignacio; or, the song of temptation etext1474 Balzac, Honoré de, 1799-1850 The Illustrious Gaudissart etext1551 Wiggin, Kate Douglas Smith, 1856-1923 A Cathedral Courtship etext1586 Collins, Wilkie, 1824-1889 Man and Wife etext1611 Tarkington, Booth, 1869-1946 Seventeen etext1640 MacDonald, George, 1824-1905 Lilith, a romance etext1658 Plato, 427? BC-347? BC Phaedo etext1742 Davis, Richard Harding, 1864-1916 Miss Civilization etext1803 Raine, William MacLeod, 1871-1954 Wyoming, a Story of the Outdoor West etext1818 Davis, Richard Harding, 1864-1916 The Spy etext1824 Davis, Richard Harding, 1864-1916 Peace Manoeuvres etext1852 Meredith, Owen, 1831-1891 Lucile etext1879 Molloy, J. Fitzgerald (Joseph Fitzgerald), 1858-1908 Royalty Restored etext1883 Chekhov, Anton Pavlovich, 1860-1904 The Wife, and other stories etext1919 Alger, Horatio, 1832-1899 Grand'ther Baldwin's Thanksgiving with Other Ballads and Poems etext1967 Balzac, Honoré de, 1799-1850 The Brotherhood of Consolation etext1974 Aristotle, 384 BC-322 BC Poetics. English etext1980 Stories by English Authors: Africa (Selected by Scribners) etext1988 The History of Tom Thumb etext1998 Nietzsche, Friedrich Wilhelm, 1844-1900 Thus Spake Zarathustra etext2045 Depew, Chauncey M. (Chauncey Mitchell), 1834-1928 My Memories of Eighty Years etext2068 Lincoln, Joseph Crosby, 1870-1944 Keziah Coffin etext2073 Lang, Andrew, 1844-1912 The Valet's tragedy, and other studies etext2102 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 02 etext2127 Saint-Pierre, Bernardin de, 1737-1814 Paul et Virginie. English etext2174 Rohner, Gerold K. Frau und Kindern auf der Spur etext2175 Shaw, Bernard, 1856-1950 You Never Can Tell etext2204 Human Genome Project Chromosome Number 04 etext2243 Shakespeare, William, 1564-1616 The Merchant of Venice etext2245 Shakespeare, William, 1564-1616 The Taming of the Shrew etext2257 Shakespeare, William, 1564-1616 Richard III etext2267 Shakespeare, William, 1564-1616 Othello etext2280 Harte, Bret, 1836-1902 A Millionaire of Rough-and-Ready etext2367 United States. Army. Corps of Engineers. Manhattan District Los Bombardeos Atomicos de Hiroshima y Nagasaki etext2384 Glasgow, Ellen Anderson Gholson, 1873-1945 The Deliverance; a romance of the Virginia tobacco fields etext2477 Darlington, Edgar B. P. The Circus Boys on the Mississippi : or, Afloat with the Big Show on the Big River etext2486 Stowe, Harriet Beecher, 1811-1896 Queer Little Folks etext2511 Thackeray, William Makepeace, 1811-1863 The History of Henry Esmond, Esq. etext2532 Gaskell, Elizabeth Cleghorn, 1810-1865 The Half-Brothers etext2551 Balzac, Honoré de, 1799-1850 Droll Stories — Volume 3 etext2563 Lamothe-Langon, Etienne-Léon, baron de, 1786-1864 Memoirs of the Comtesse Du Barry, with minute details of her entire career as favorite of Louis XV. Written by herself etext2576 Butler, Samuel, 1835-1902 Alps and Sanctuaries of Piedmont and the Canton Ticino etext2598 Harte, Bret, 1836-1902 Urban Sketches etext2612 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 The History of England, from the Accession of James II — Volume 3 etext2622 Stevenson, Burton Egbert, 1872-1962 The Home Book of Verse — Volume 4 etext2653 Lincoln, Abraham, 1809-1865 The Writings of Abraham Lincoln — Volume 1: 1832-1843 etext2665 Holmes, Oliver Wendell, 1809-1894 The Professor at the Breakfast-Table etext2683 Galsworthy, John, 1867-1933 Saint's Progress etext2692 Harte, Bret, 1836-1902 A Protegee of Jack Hamlin's and Other Stories etext2693 Atkinson, Eleanor Stackhouse, 1863-1942 Greyfriars Bobby etext2707 Herodotus, 480? BC-420? BC The history of Herodotus — Volume 1 etext2757 Dumas père, Alexandre, 1802-1870 Vaninka etext2759 Dumas père, Alexandre, 1802-1870 The Man in the Iron Mask etext2817 Joyce, James, 1882-1941 Chamber Music etext2834 James, Henry, 1843-1916 The Portrait of a Lady — Volume 2 etext2868 Hume, Fergus, 1859-1932 The Green Mummy etext2928 Huxley, Thomas Henry, 1825-1895 Time and Life etext2934 Huxley, Thomas Henry, 1825-1895 On the Advisableness of Improving Natural Knowledge etext3005 Appleton, Victor [pseud.] Tom Swift and His Airship etext3049 Hardy, Thomas, 1840-1928 A Group of Noble Dames etext3097 Haggard, Henry Rider, 1856-1925 The Wanderer's Necklace etext3123 Warner, Charles Dudley, 1829-1900 The Novel and the Common School etext3147 Wiggin, Kate Douglas Smith, 1856-1923 A Summer in a Canyon etext3216 Honig, Winfried Mr. Honey's Small Business Dictionary etext3223 Honig, Winfried Mr. Honey's Correspondence Dictionary etext3269 Rutherford, Mark, 1831-1913 Autobiography of Mark Rutherford, Edited by his friend Reuben Shapcott etext3276 Ward, Artemus, 1834-1867 The Complete Works of Artemus Ward — Part 6: Artemus Ward's Panorama etext3380 Howells, William Dean, 1837-1920 Staccato Notes of a Vanished Summer (from Literature and Life) etext3427 Butler, Ellis Parker, 1869-1937 Kilo : being the love story of Eliph' Hewlitt, book agent etext3457 Grey, Zane, 1872-1939 The Man of the Forest etext3473 Lazarus, Emma, 1849-1887 The Poems of Emma Lazarus, Volume 2 etext3531 Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773 Widger's Quotations from the Project Gutenberg Editions of the Works of Lord Chesterfield etext3538 Bok, Edward William, 1863-1930 The Americanization of Edward Bok : the autobiography of a Dutch boy fifty years after etext3613 Bunyan, John, 1628-1688 Miscellaneous Pieces etext3634 Collins, Wilkie, 1824-1889 The Guilty River etext3689 Liszt, Franz, 1811-1886 Letters of Franz Liszt -- Volume 1 etext3745 Daviess, Maria Thompson, 1872-1924 The Road to Providence etext3776 Doyle, Arthur Conan, Sir, 1859-1930 The Valley of Fear etext3803 Gaboriau, Émile, 1832-1873 File No. 113 etext3859 Orleans, Charlotte-Elisabeth, duchesse d', 1652-1722 Memoirs of Louis XIV and His Court and of the Regency — Complete etext3873 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 14 etext3895 Goldsmith, Lewis, 1763-1846 Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 4 etext3956 Halévy, Ludovic, 1834-1908 L'Abbe Constantin — Volume 3 etext3958 Coppée, François, 1842-1908 A Romance of Youth — Volume 1 etext4038 Pater, Walter, 1839-1894 Imaginary Portraits etext4090 Weston, Jessie Laidlay, 1850-1928 From Ritual to Romance etext4182 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 59: November 1667 etext4189 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 65: May 1668 etext4199 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Complete 1669 N.S. etext4201 Howells, William Dean, 1837-1920 Literary Friends and Acquaintance; a Personal Retrospect of American Authorship etext4207 Pater, Walter, 1839-1894 Aesthetic Poetry etext4231 Nordau, Max Simon, 1849-1923 The Malady of the Century etext4339 Call, Annie Payson, 1853-1940 Nerves and Common Sense etext4365 Library of Congress. Copyright Office Supplementary Copyright Statutes, US Copy. Office etext4368 Fitzgerald, F. Scott (Francis Scott), 1896-1940 Flappers and Philosophers etext4451 Meredith, George, 1828-1909 The Adventures of Harry Richmond — Volume 8 etext4469 Meredith, George, 1828-1909 Diana of the Crossways — Volume 5 etext4495 Meredith, George, 1828-1909 The House on the Beach etext4518 Wharton, Edith, 1862-1937 Madame De Treymes etext4531 Hume, Fergus, 1859-1932 The Secret Passage etext4733 Day, Holman, 1865-1935 When Egypt Went Broke etext4816 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 15: 1568, part II etext4888 Motley, John Lothrop, 1814-1877 Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years' War, 1610b etext4923 Sinclair, Upton, 1878-1968 King Midas: a Romance etext5021 Fillmore, Millard, 1800-1874 State of the Union Address etext5044 Ford, Gerald R., 1913- State of the Union Address etext5065 Northam, Henry C. Civil Government for Common Schools etext5111 Shute, Henry A. (Henry Augustus), 1856-1943 The Real Diary of a Real Boy etext5118 Trollope, Anthony, 1815-1882 The American Senator etext5123 Mill, John Stuart, 1806-1873 The Contest in America etext5146 Colby, Charles W. (Charles William), 1867-1955 The Fighting Governer : A Chronicle of Frontenac etext5177 Burroughs, John, 1837-1921 Birds and Poets : with Other Papers etext5230 Wells, H. G. (Herbert George), 1866-1946 The Invisible Man etext5260 Doyle, Arthur Conan, Sir, 1859-1930 A Duet, with an Occasional Chorus etext5306 Murfree, Mary Noailles, 1850-1922 Down the Ravine etext5314 etext5345 Eyre, Edward John, 1815-1901 Journals of Expeditions of Discovery into Central Australia and Overland from Adelaide to King George's Sound in the Years 1840-1: Sent By the Colonists of South Australia, with the Sanction and Support of the Government: Including an Account of the Manners and Customs of the Aborigines and the State of Their Relations with Europeans — Volume 02 etext5365 Churchill, Winston, 1871-1947 Richard Carvel — Volume 01 etext5370 Churchill, Winston, 1871-1947 Richard Carvel — Volume 06 etext5416 Hamilton, Anthony, Count, 1646-1720 The Memoirs of Count Grammont — Complete etext13432 Ward, Humphry, Mrs., 1851-1920 Miss Bretherton etext5510 Ebers, Georg, 1837-1898 Arachne — Volume 03 etext5566 Ebers, Georg, 1837-1898 Barbara Blomberg — Volume 06 etext5617 Hope, Laura Lee The Bobbsey Twins in Washington etext5658 Conrad, Joseph, 1857-1924 Lord Jim etext5659 Stories by Foreign Authors: Polish, Greek, Belgian, Hungarian etext5686 Bishop, Nathaniel H. (Nathaniel Holmes), 1837-1902 Four Months in a Sneak-Box etext5754 Haggard, Henry Rider, 1856-1925 Lysbeth, a Tale of the Dutch etext5768 Williams, Sam Free as in Freedom: Richard Stallman's Crusade for Free Software etext5784 Twain, Mark, 1835-1910 A Tramp Abroad — Volume 03 etext5856 Sheridan, Philip Henry, 1831-1888 The Memoirs of General Philip H. Sheridan, Volume I., Part 3 etext5871 McCutcheon, George Barr, 1866-1928 Green Fancy etext5888 Vaknin, Samuel, 1961- Crime and Corruption etext5900 Garis, Howard Roger, 1873-1962 Umboo, the Elephant etext5930 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 27 etext5963 McCutcheon, George Barr, 1866-1928 Mr. Bingle etext5974 MacDonald, George, 1824-1905 Thomas Wingfold, Curate V2 etext6033 Balzac, Honoré de, 1799-1850 Petty Troubles of Married Life etext6078 etext6091 Atherton, Gertrude Franklin Horn, 1857-1948 Senator North etext6117 Roe, Edward Payson, 1838-1888 Success with Small Fruits etext6140 Randall, Homer Army Boys on German Soil etext6162 Alger, Horatio, 1832-1899 Herbert Carter's Legacy etext6204 Parker, Gilbert, 1862-1932 When Valmond Came to Pontiac, Volume 3. etext6216 Parker, Gilbert, 1862-1932 The Pomp of the Lavilettes, Volume 2 etext6261 Parker, Gilbert, 1862-1932 The Weavers: a tale of England and Egypt of fifty years ago - Volume 1 etext6264 Parker, Gilbert, 1862-1932 The Weavers: a tale of England and Egypt of fifty years ago - Volume 4 etext6312 Emerson, Ralph Waldo, 1803-1882 Representative Men etext6383 Schiller, Friedrich, 1759-1805 Die Jungfrau von Orleans etext6410 Hutchinson, A. S. M. (Arthur Stuart-Menteth), 1879-1971 Once Aboard the Lugger etext6434 Barnes & Co. A Brief History of the United States etext6521 Tagore, Rabindranath, 1861-1941 The King of the Dark Chamber etext6537 Grey, Zane, 1872-1939 Riders of the Purple Sage etext6552 Tarkington, Booth, 1869-1946 His Own People etext6606 Skinner, Charles M. (Charles Montgomery), 1852-1907 Myths and Legends of Our Own Land — Volume 01: the Hudson and its hills etext6624 Parker, Edward Harper, 1849-1926 Ancient China Simplified etext6625 Jessopp, Augustus, 1823-1914 The Coming of the Friars etext9137 etext6654 Raimund, Ferdinand, 1790-1836 Der Verschwender etext6720 Smith, Joseph, 1805-1844 The Wentworth Letter etext6756 Paston, George, 1860-1936 Little Memoirs of the Nineteenth Century etext6778 Schiller, Friedrich, 1759-1805 History of the Revolt of the Netherlands — Volume 03 etext6848 Wallace, Lewis, 1827-1905 The Prince of India — Volume 01 etext6905 Goldfrap, John Henry, 1879-1917 The Boy Aviators in Africa etext6957 Young, T. F. (Thomas Frederick), -1940 Canada and Other Poems etext6990 Shakespeare, William, 1564-1616 Coriolanus etext6999 Orr, Charles Ebert, 1861-1933 How to Live a Holy Life etext7029 Watson, Lillian Eichler, 1902- Book of Etiquette, Volume 2 etext7113 Burton, Richard Francis, Sir, 1821-1890 The Land of Midian — Volume 2 etext7166 Tagore, Rabindranath, 1861-1941 The Home and the World etext7215 Deng, Xi, 545 BC-501 BC 鄧析子 etext7232 Shakespeare, William, 1564-1616 Romeo und Juliette etext7245 Twain, Mark, 1835-1910 A Connecticut Yankee in King Arthur's Court, Part 4. etext7268 France, Anatole, 1844-1924 Monsieur Bergeret à Paris etext7321 The Nibelungenlied etext7440 The Koran (Al-Qur'an) etext7446 Hudson, W. H. (William Henry), 1841-1922 The Naturalist in La Plata etext7459 Capuana, Luigi, 1839-1915 Il Benefattore etext7476 Hakluyt, Richard, 1552-1616 The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 03 etext7514 Stock, St. George William Joseph, 1850- Guide to Stoicism etext7564 Retz, Jean François Paul de Gondi de, 1613-1679 Quotes and Images From Memoirs of Cardinal De Retz etext7601 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 15 etext7706 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 My Novel — Volume 05 etext7713 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 My Novel — Volume 12 etext7752 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Godolphin, Volume 3. etext7770 Dumas père, Alexandre, 1802-1870 Les Quarante-Cinq — Tome 1 etext7805 Milne, A. A. (Alan Alexander), 1882-1956 First Plays etext7831 Henty, G. A. (George Alfred), 1832-1902 When London Burned : a Story of Restoration Times and the Great Fire etext7868 A Child's Story Garden etext7871 Griffis, William Elliot, 1843-1928 Dutch Fairy Tales for Young Folks etext7873 Rohmer, Sax, 1883-1959 The Insidious Dr. Fu Manchu etext7930 Phelps, William Lyon, 1865-1943 The Advance of English Poetry in the Twentieth Century etext7983 Eddy, Walter H. The Vitamine Manual etext7995 Cheyne, Thomas Kelly, 1841-1915 The Reconciliation of Races and Religions etext8174 Verne, Jules, 1828-1905 Keraban Le Tetu, Volume I etext8235 Anonymous The World English Bible (WEB): Ruth etext8255 Anonymous The World English Bible (WEB): Hosea etext8286 Anonymous The World English Bible (WEB): James etext8348 The Bible, Douay-Rheims, Book 48: Mark etext8359 The Bible, Douay-Rheims, Book 59: 1 Thessalonians etext8368 The Bible, Douay-Rheims, Book 68: 2 Peter etext8394 Doyle, Arthur Conan, Sir, 1859-1930 The Doings of Raffles Haw etext8424 Cooke, John Esten, 1830-1886 Mohun, or, the Last Days of Lee etext8465 etext8565 A Book of German Lyrics etext8600 Zola, Émile, 1840-1902 L'Assommoir etext8613 Doyle, Arthur Conan, Sir, 1859-1930 The Poison Belt etext8653 Thorne-Thomsen, Gudrun East O' the Sun and West O' the Moon etext8679 Henty, G. A. (George Alfred), 1832-1902 By England's Aid etext8683 Barlow, Joel, 1754-1812 The Columbiad etext8715 Cabell, James Branch, 1879-1958 Gallantry etext8723 Zola, Émile, 1840-1902 The Three Cities Trilogy: Rome, Volume 3 etext8743 Meinhold, Wilhelm, 1797-1851 Maria Schweidler die Bernsteinhexe. English etext8801 Whitman, Walt, 1819-1892 Drum Taps etext8810 Wallace, Lewis, 1827-1905 Ben-Hur; a tale of the Christ etext8846 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Hebrews etext8859 Henty, G. A. (George Alfred), 1832-1902 True to the Old Flag etext8929 MacDonald, George, 1824-1905 Adela Cathcart, Volume 2 etext8956 The Literary Remains of Samuel Taylor Coleridge etext8959 New Netherland etext9015 Twain, Mark, 1835-1910 The Curious Republic of Gondour, and Other Whimsical Sketches etext9067 Phelps, William Lyon, 1865-1943 Robert Browning: How to Know Him etext9077 Shakespeare, William, 1564-1616 The Tragicall Historie of Hamlet, Prince of Denmarke etext9096 MacDonald, George, 1824-1905 Weighed and Wanting etext9179 Allen, James Lane, 1849-1925 Bride of the Mistletoe etext9199 Haeckel, Ernst Heinrich Philipp August, 1834-1919 Monism as Connecting Religion and Science etext9254 Hawthorne, Nathaniel, 1804-1864 Biographical Stories etext9278 Wharton, Edith, 1862-1937 Bunner Sisters etext9291 Wharton, Edith, 1862-1937 The Reef etext9435 Hardy, Thomas, 1840-1928 The Trumpet-Major etext9440 Packard, Frank L. (Frank Lucius), 1877-1942 The Further Adventures of Jimmie Dale etext9453 etext9488 Cabell, James Branch, 1879-1958 The Line of Love etext9495 Meyer, Conrad Ferdinand, 1825-1898 Die Hochzeit des Mönchs etext9732 Dickens, Charles, 1812-1870 Barnaby Rudge etext9863 Burns, Robert, 1759-1796 The Letters of Robert Burns etext9875 Shakespeare, William, 1564-1616 Julius Caesar etext9889 Field, Eugene, 1850-1895 Songs and Other Verse etext9922 Various The Mirror of Literature, Amusement, and Instruction etext9938 Woman's Institute of Domestic Arts and Sciences Woman's Institute Library of Cookery etext9942 Macfarlane, Alexander, 1851-1913 Ten British Mathematicians etext10044 Wood, William Charles Henry, 1864-1947 The Father of British Canada: a Chronicle of Carleton etext10068 Cooke, Grace MacGowan, 1863-1944 The Power and the Glory etext10161 English Poets of the Eighteenth Century etext10198 Luther, Frank Barbara Allen etext10216 Holley, Marietta, 1836-1926 Poems etext10264 Suildauskas, Juozas (baritonas) Skamba Kankliah ir Trimintia etext10282 D'Almaine, Charles (violin) Polish National Dance etext10283 Lowe, Charles P. (xylophone) Dinah Polka etext10317 Emerson, Alice B. Betty Gordon at Boarding School etext10321 Rideout, Henry Milner, 1877-1927 Dragon's blood etext10356 Richardson, James, 1806-1851 Travels in Morocco, Volume 2. etext10357 Boswell, James, 1740-1795 Life of Johnson, Volume 4 etext10367 Carr, John, Sir, 1772-1832 Poems etext10435 Various The Atlantic Monthly, Volume 02, No. 12, October, 1858 etext10475 Various The Mirror of Literature, Amusement, and Instruction etext10594 Various Punch, or the London Charivari, Volume 153, September 12, 1917 etext10672 Caxton, William, 1422?-1492? Game and Playe of the Chesse etext10686 Bang, Herman, 1857-1912 Tine etext10703 Mommsen, Theodor, 1817-1903 The History of Rome, Book III etext10716 Abercrombie, Lascelles, 1881-1938 The Epic etext10728 Walton, O. F., Mrs., 1849-1939 Christie, the King's Servant etext10731 Schopenhauer, Arthur, 1788-1860 The Essays of Arthur Schopenhauer; the Art of Controversy etext10732 Schopenhauer, Arthur, 1788-1860 The Essays of Arthur Schopenhauer; Studies in Pessimism etext10772 Bingham, Hiram, 1875-1956 Inca Land etext10797 etext10821 Byron, George Gordon Byron, Baron, 1788-1824 Manfredo etext10823 Schopenhauer, Johanna, 1766-1838 Reise durch England und Schottland etext10865 Archer, William, 1856-1924 Play-Making etext11020 Housman, Laurence, 1865-1959 Angels & Ministers etext11067 Mill, Mrs. (Jean Oliver) Reform Cookery Book (4th edition) etext11165 Piper, Margaret Rebecca, 1879- Wild Wings etext11186 Jacobs, W. W. (William Wymark), 1863-1943 Over the Side etext11215 Gent, Thomas, 1780- Poems (1828) etext11259 Dowd, Emma C., -1938 Polly and the Princess etext11266 Jung, Nizamat, Sir, 1871-1955 Sonnets by the Nawab Nizamat Jung Bahadur etext11298 Barker, Edward Harrison, 1851-1919 Wanderings by southern waters, eastern Aquitaine etext11300 Maquet, Auguste, 1813-1886 La belle Gabrielle — Tome 1 etext11303 Moore, George (George Augustus), 1852-1933 Vain Fortune etext11321 Various The Mirror of Literature, Amusement, and Instruction etext11375 Various The Mirror of Literature, Amusement, and Instruction etext11382 Various The Mirror of Literature, Amusement, and Instruction etext11411 Various The Mirror of Literature, Amusement, and Instruction etext11437 Stories by American Authors, Volume 5 etext11447 Various The Mirror of Literature, Amusement, and Instruction etext11486 Various The Mirror of Literature, Amusement, and Instruction etext11507 etext11564 Bloomfield, Nathaniel An Essay on War, in Blank Verse; Honington Green, a Ballad; the Culprit, an Elegy; and Other Poems, on Various Subjects etext11575 Various Notes and Queries, Number 12, January 19, 1850 etext11601 Pardoe, Julia, 1804-1862 The Life of Marie de Medicis — Volume 3 etext11670 Various Punch, or the London Charivari, Volume 156, June 11, 1919 etext11720 Braddon, M. E. (Mary Elizabeth), 1835-1915 Fenton's Quest etext11749 Gregory, Lady, 1852-1932 New Irish Comedies etext11766 Balzac, Honoré de, 1799-1850 Contes bruns etext11816 Library of Congress. Copyright Office U.S. Copyright Renewals, 1957 July - December etext11823 Library of Congress. Copyright Office U.S. Copyright Renewals, 1961 January - June etext11831 Library of Congress. Copyright Office U.S. Copyright Renewals, 1965 January - June etext11838 Library of Congress. Copyright Office U.S. Copyright Renewals, 1968 July - December etext11841 Library of Congress. Copyright Office U.S. Copyright Renewals, 1970 January - June etext11864 Various The Mirror of Literature, Amusement, and Instruction etext11900 Glyn, Elinor, 1864-1943 Elizabeth Visits America etext11972 Jacobs, W. W. (William Wymark), 1863-1943 Dialstone Lane, Part 2. etext11988 Blackwood, Algernon, 1869-1951 The Human Chord etext12144 Various The Continental Classics, Volume XVIII., Mystery Tales etext12187 Freeman, R. Austin (Richard Austin), 1862-1943 The Mystery of 31 New Inn etext12198 Various Notes and Queries, Number 22, March 30, 1850 etext12247 Commune de Amiens/Nancy Le Circuit de l'Est etext12265 England, George Allan, 1877-1936 The Flying Legion etext12293 Hazlitt, William Carew, 1834-1913 Old Cookery Books and Ancient Cuisine etext12297 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext12353 Lang, Andrew, 1844-1912 The Making of Religion etext12423 Channing, Edward, 1856-1931 A Short History of the United States etext12441 Nicholson, Meredith, 1866-1947 The House of a Thousand Candles etext12447 Sand, George, 1804-1876 Pauline etext12511 Various Blackwood's Edinburgh Magazine — Volume 53, No. 332, June, 1843 etext12534 Sand, George, 1804-1876 Le péché de Monsieur Antoine, Tome 2 etext12601 Various The Mirror of Literature, Amusement, and Instruction etext12602 Filiatreault, Aristide, 1850-1913 Contes, anecdotes et récits Canadiens. etext12622 MacCarthy, Denis Florence, 1817-1882 Poems etext12633 Bjørnson, Bjørnstjerne, 1832-1910 A Happy Boy etext12771 Parton, James, 1822-1891 Famous Americans of Recent Times etext12772 Smith, Goldwin, 1823-1910 Cowper etext12912 Bennett, Arnold, 1867-1931 The Price of Love etext12925 Various The World's Best Poetry, Volume 10 etext12934 Various Punch, or the London Charivari, Volume 99, November 1, 1890 etext12989 Smith, F. Berkeley (Frank Berkeley), 1869-1931 The Lady of Big Shanty etext13003 Johnston, Harry Hamilton, Sir, 1858-1927 Pioneers in Canada etext13048 Shortall, Katherine Where the Sabots Clatter Again etext13069 Hoben, Allan, 1874- The Minister and the Boy etext13111 Mott, F. W. (Frederick Walker), 1853-1926 The Brain and the Voice in Speech and Song etext13125 etext13197 Mitchell, S. Weir (Silas Weir), 1829-1914 Wear and Tear etext13245 Wells, J. (Joseph), 1855-1929 The Charm of Oxford etext13255 The Philippine Islands, 1493-1803 — Volume 01 of 55 etext13298 Various The California Birthday Book etext13304 Various McClure's Magazine, Vol. 6, No. 6, May, 1896 etext13321 Stoddard, Charles Warren, 1843-1909 In the Footprints of the Padres etext13341 Watts, Isaac, 1674-1748 Hymns and Spiritual Songs etext13350 Johnson, Samuel, 1709-1784 The Vanity of Human Wishes (1749) and Two Rambler papers (1750) etext13355 Burgess, Thornton W. (Thornton Waldo), 1874-1965 Happy Jack etext13415 Chekhov, Anton Pavlovich, 1860-1904 The Lady with the Dog and Other Stories etext13500 Everett-Green, Evelyn, 1856-1932 A Heroine of France etext13501 Ward, Humphry, Mrs., 1851-1920 Lady Connie etext13550 Various Notes and Queries, Number 06, December 8, 1849 etext13565 Talvioja, Kuuno A., 1865-1933 Jaakko Juteini ja hänen kirjallinen toimintansa etext13589 Hamilton, Clayton Meeker, 1881-1946 The Theory of the Theatre etext13591 Boer, R.C. Noorwegens Letterkunde in de Negentiende Eeuw etext13613 Ellis, Havelock, 1859-1939 Studies in the Psychology of Sex, Volume 4 etext13632 Various The Bay State Monthly — Volume 1, No. 5, May, 1884 etext13710 Various Punch, or the London Charivari, Volume 101, September 12, 1891 etext13806 Knox, Thomas Wallace, 1835-1896 Overland through Asia; Pictures of Siberian, Chinese, and Tartar etext13830 Longfellow, Henry Wadsworth, 1807-1882 The Wreck of the Hesperus etext13836 Connolly, James B. (James Brendan), 1868-1957 Wide Courses etext13856 Dumas père, Alexandre, 1802-1870 La reine Margot - Tome I etext13890 Home, Gordon, 1878-1969 Beautiful Britain: Canterbury etext13929 Boyesen, Hjalmar Hjorth, 1848-1895 Ilka on the Hill-Top and Other Stories etext13994 Various Punch, or the London Charivari, Volume 101, October 10, 1891 etext14052 Morley, John, 1838-1923 Rousseau (Volume 1 and 2) etext14065 Defoe, Daniel, 1661?-1731 The History of the Remarkable Life of John Sheppard etext14085 Knibbs, Henry Herbert, 1874-1945 Partners of Chance etext14097 Various Scientific American Supplement, No. 483, April 4, 1885 etext14153 Mitchell, S. Weir (Silas Weir), 1829-1914 Westways etext14174 Ward, Humphry, Mrs., 1851-1920 The Mating of Lydia etext14180 Various Dew Drops, Vol. 37, No. 17, April 26, 1914 etext14214 Gummerus, K. J., 1840-1898 Ylhäiset ja alhaiset etext14251 Ohnet, Georges, 1848-1918 L'Ame de Pierre etext14300 Rose, John Holland, 1855-1942 The Life of Napoleon I (Complete) etext14379 Finley, Martha, 1828-1909 Elsie at Nantucket etext14389 Various Punch, Or The London Charivari, Volume 102, March 26, 1892 etext14418 Smiles, Samuel, 1812-1904 Thrift etext14422 Croly, Herbert David, 1869-1930 The Promise of American Life etext14437 Robinson, Therese Albertine Louise von Jacob, 1797-1870 Historical View of the Languages and Literature of the Slavic etext14476 Sharp, William, 1856-1905 Life of Robert Browning etext14520 Raine, William MacLeod, 1871-1954 Mavericks etext14586 Moisa, Dorin Teodor The Brain, A Decoded Enigma etext14664 Williams, Archibald Things To Make etext14719 Kurikka, Matti, 1863-1915 Viimeinen ponnistus etext14775 Päivärinta, Pietari, 1827-1913 Elämän hawainnoita III: Suku=ylpeys; Tahdon woima etext14791 Guizot, M. (François), 1787-1874 Mémoires pour servir à l'Histoire de mon temps (Tome 1) etext14812 Dix, Edwin Asa, 1860-1911 A Midsummer Drive Through the Pyrenees etext14842 Various Lippincott's Magazine of Popular Literature and Science etext14853 Tracy, Louis, 1863-1928 The Stowmarket Mystery etext14859 Garis, Howard Roger, 1873-1962 Daddy Takes Us to the Garden etext14880 McGuffey, William Holmes, 1800-1873 McGuffey's Fourth Eclectic Reader etext14900 Nielsen, Peter The Black Man's Place in South Africa etext14902 Wheeler, Edward L. Deadwood Dick, The Prince of the Road etext14925 Various Punch, or the London Charivari, Volume 1, August 28, 1841 etext14945 Cicero, Marcus Tullius, 106 BC-43 BC Cato Maior de Senectute with Introduction and Notes etext14968 Upton, George P. (George Putnam), 1834-1919 The Standard Operas (12th edition) etext14969 Freud, Sigmund, 1856-1939 Three Contributions to the Theory of Sex etext14979 Various Cape Cod and All the Pilgrim Land, June 1922, Volume 6, Number 4 etext15010 Sienkiewicz, Henryk, 1846-1916 Qvo vadis etext15029 Forrester, Izola L. (Izola Louise), 1878-1944 Kit of Greenacre Farm etext15030 Various The Unity of Civilization etext15082 Underhill, Evelyn, 1875-1941 The Life of the Spirit and the Life of To-day etext15126 Noad, Joseph, 1823-1898 Lecture on the Aborigines of Newfoundland etext15145 Vredenburg, Edric My Book of Favorite Fairy Tales etext15146 Ponson du Terrail, 1829-1871 Les misères de Londres etext15179 Sherley, George Douglass, 1857-1917 The Inner Sisterhood etext15248 Beaverbrook, Max Aitken, Baron, 1879-1964 Success (Second Edition) etext15291 Ibsen, Henrik, 1828-1906 Gildet på Solhaug etext15294 Jewett, Sarah Orne, 1849-1909 A Country Doctor and Selected Stories and Sketches etext15343 Brady, Cyrus Townsend, 1861-1920 A Little Book for Christmas etext15354 Various Notes and Queries, Number 56, November 23, 1850 etext15426 Lang, George Pixy's Holiday Journey etext15454 Griggs, Sutton E. (Sutton Elbert), 1872-1933 Imperium in Imperio: A Study of the Negro Race Problem etext15470 Evans, Augusta J. (Augusta Jane), 1835-1909 Inez etext15473 Rinehart, Mary Roberts, 1876-1958 Love Stories etext15489 Freud, Sigmund, 1856-1939 Dream Psychology etext15526 Stoddard, John L. (John Lawson), 1850-1931 John L. Stoddard's Lectures, Vol. 10 (of 10) etext15567 Maillard, Antoine Simon, 1710-1762 An Account of the Customs and Manners of the Micmakis and Maricheets Savage Nations, Now Dependent on the Government of Cape-Breton etext15578 Packard, Frank L. (Frank Lucius), 1877-1942 The Miracle Man etext15599 Bierce, Ambrose, 1842-1914? The Collected Works of Ambrose Bierce, Volume 8 etext15613 Various The Great Round World and What Is Going On In It, Vol. 1, No. 28, May 20, 1897 etext15632 Shakespeare, William, 1564-1616 Hamlet etext15719 Strömberg, Sigge, 1885-1920 Baron Olson och andra historier etext15763 Weyman, Stanley John, 1855-1928 Count Hannibal etext15791 Karadžić, Vuk Stefanović, 1787-1864 Први Српски Буквар etext15827 Various The Great Round World and What Is Going On In It, Vol. 1, No. 34, July 1, 1897 etext15835 Lilly, William, 1602-1681 William Lilly's History of His Life and Times etext15852 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Texan Star etext15887 Various The American Missionary — Volume 49, No. 3, March, 1895 etext15912 Various Punch or the London Charivari, Volume 158, March 24, 1920. etext15922 Hall, S. Elizabeth A Loose End and Other Stories etext15932 Budge, E. A. Wallis (Ernest Alfred Wallis), Sir, 1857-1934 The Literature of the Ancient Egyptians etext15970 Various The Great Round World and What Is Going On In It, Vol. 1, No. 44, September 9, 1897 etext15993 Leino, Kasimir, 1866-1919 25 vuotta etext16005 Carleton, William, 1794-1869 Jane Sinclair; Or, The Fawn Of Springvale etext16027 Grey, George, 1812-1898 Journals of Two Expeditions of Discovery in North-West and Western Australia, Volume 1 etext16088 Pringle, Cyrus G. (Cyrus Guernsey), 1838-1911 The Record of a Quaker Conscience, Cyrus Pringle's Diary etext16105 Various Colección de viages y expediciónes à los campos de Buenos Aires y a las costas de Patagonia etext16185 The Nest in the Honeysuckles, and other Stories etext16188 Dante Alighieri, 1265-1321 La Divina Comèdia: Purgatòri etext16218 As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1877-01/02) etext16231 Munroe, Kirk, 1850-1930 "Forward, March" etext16295 The Vedanta-Sutras with the Commentary by Sankaracarya etext16354 Various Scientific American Supplement, No. 620, November 19,1887 etext16403 Feuillet, Octave, 1821-1890 Led Astray and The Sphinx etext16409 Various Notes and Queries, Number 20, March 16, 1850 etext16431 Runciman, John F., 1866-1916 Richard Wagner etext16444 Chirol, Valentine, Sir, 1852-1929 Indian Unrest etext16474 Huxley, Thomas Henry, 1825-1895 Lectures and Essays etext16475 Various The Great Round World and What Is Going On In It, Vol. 1, No. 58, December 16, 1897 etext16511 Holinshed, Raphael, -1580? Chronicles (1 of 6): The Historie of England (3 of 8) etext16533 Meriläinen, Heikki, 1847-1939 Korpelan Tapani etext16538 Various The Alleged Haunting of B—— House etext8525 Twain, Mark, 1835-1910 Eve's Diary, Complete etext16580 Various The Great Round World and What Is Going On In It, Vol. 1, No. 60, December 30, 1897 etext16583 Miller, Elizabeth The Yoke etext16593 Clark, Bertha M. General Science etext16600 Radziwill, Catherine, Princess, 1858-1941 Cecil Rhodes etext16607 Various Blackwood's Edinburgh Magazine — Volume 54, No. 337, November, 1843 etext16617 Holinshed, Raphael, -1580? Chronicles (1 of 6): The Historie of England (7 of 8) etext16652 Schröder, Gustaf, 1824-1912 Yrjänä Kailanen ja hänen poikansa etext16699 Cody, H. A. (Hiram Alfred), 1872-1948 Glen of the High North etext16717 Various Punch, or the London Charivari, Vol. 159, 1920-09-01 etext16734 Eddy, Mary Baker, 1821-1910 Retrospection and Introspection etext16759 Thomas, à Kempis, 1380?-1471 The Chronicle of the Canons Regular of Mount St. Agnes etext16768 Marsden, William, 1754-1836 The History of Sumatra etext16819 Ponson du Terrail, 1829-1871 Les misères de Londres etext16836 Moodie, Susanna, 1803-1885 Mark Hurdlestone etext16952 Ghislanzoni, Antonio, 1824-1893 In chiave di baritono etext16982 Blaisdell, Mary Frances, 1874- Bunny Rabbit's Diary etext17006 Parker, Theodore, 1810-1860 Two Christmas Celebrations etext17007 Wassermann, Jakob, 1873-1934 Imaginäre Brücken etext17021 Anonymous Watch and Clock Escapements etext17040 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Survivor etext17043 Raine, William MacLeod, 1871-1954 The Sheriff's Son etext17072 Conscience, Hendrik, 1812-1883 Eene Gekkenwereld! etext17075 More, Thomas, Sir, Saint, 1478?-1535 Dialogue of Comfort Against Tribulation etext17080 Alphen, Hieronymus van, 1746-1803 Proeve van Kleine Gedigten voor Kinderen etext17116 Rizal, José, 1861-1896 Ang Liham ni Dr. Jose Rizal sa mga Kadalagahan sa Malolos, Bulakan etext17143 Wassermann, Jakob, 1873-1934 Der niegeküßte Mund etext17188 Stockton, Frank Richard, 1834-1902 Buccaneers and Pirates of Our Coasts etext17235 etext17363 Bouchor, Maurice, 1855-1929 Israël en Égypte etext17380 Hildén, Kaarle August, 1853- Palestiinassa etext17404 Thomas, Northcote Whitridge, 1868-1936 Kinship Organisations and Group Marriage in Australia etext17494 Hugo, Victor, 1802-1885 Les misérables Tome III etext17539 Streuvels, Stijn [pseud.], 1871-1969 Dagen etext17608 Symons, Arthur, 1865-1945 An Introduction to the Study of Browning etext17655 Muir, Ward, 1878-1927 Observations of an Orderly etext17662 Various L'Illustration, Samedi le 15 Aout 1914, 72e Année, No. 3729 etext17671 Pellico, Silvio, 1789-1854 Poesie scelte etext17687 Lucini, Gian Pietro, 1867-1914 Il libro delle figurazioni ideali etext17725 Various The Bay State Monthly, Volume 3, No. 5 etext17726 Various The Bay State Monthly, Volume 3, No. 6 etext17742 Matthews, Washington, 1843-1905 Navajo weavers etext17745 Curwood, James Oliver, 1878-1927 The Courage of Marge O'Doone etext17747 Du Boisgobey, Fortuné, 1821-1891 La main froide etext17867 Sinclair, May, 1863-1946 The Helpmate etext17904 Zetterström, Hasse, 1877-1946 Anna-Clara och Hennes Bröder etext17930 Shakespeare, William, 1564-1616 Midsummer Night's Dream. French etext17960 Freeman, Mary Eleanor Wilkins, 1852-1930 Giles Corey, Yeoman etext18001 Various The American Missionary — Volume 49, No. 4, April, 1895 etext18033 Axtell, Edward The Boston Terrier and All About It etext18127 Montgomery, D. H. (David Henry), 1837-1928 The Beginner's American History etext18154 etext18157 Garay, Juan de Fundación de la ciudad de Buenos-Aires etext18158 Freeman, Mary Eleanor Wilkins, 1852-1930 The Butterfly House etext18237 Dewar, Douglas, 1875-1957 A Bird Calendar for Northern India etext18298 Garnett, Thomas, 1799-1878 Essays in Natural History and Agriculture etext18319 Perk, M. A. In Luxemburg's Gutland etext18327 Jerrold, W. Blanchard, 1826-1884 The Cockaynes in Paris etext18378 Daly, George Thomas, 1872-1956 Catholic Problems in Western Canada etext18393 Ahrenberg, Jacob, 1847-1914 Haapakoskelaiset etext18425 Verne, Jules, 1828-1905 Een Kapitein van Vijftien Jaar etext18435 Estes, Rufus, 1857- Good Things to Eat as Suggested by Rufus etext18451 Ontario. Ministry of Education Ontario Normal School Manuals: Science of Education etext18475 Gerstäcker, Friedrich, 1816-1872 Nach Amerika! Erster Band etext18663 Various The Great Round World and What Is Going On In It, Vol. 2, No. 10, March 10, 1898 etext18699 Hope, Laura Lee The Moving Picture Girls at Sea etext7204 Nietzsche, Friedrich Wilhelm, 1844-1900 Jenseits von Gut und Böse etext6948 Graves, Dr. Armgaard Karl The Secrets of the German War Office etext18759 Faulkner, Thomas A. From the Ball-Room to Hell etext18838 Wolff, William Almon, 1885-1933 The Belgians to the Front etext18877 Louwerse, Pieter, 1840-1909 In het Schemeruur etext18976 Erasmus, Desiderius, 1469-1536 Encomium Artis Medicae etext18997 Dumas père, Alexandre, 1802-1870 The Vicomte de Bragelonne etext19040 Angyal, Dávid, 1857-1943 Takáts Sándor Szalai Barkóczy Krisztina 1671-1724 czímű könyvének ismertetése etext19145 Norton, Andre, 1912-2005 The Time Traders etext19233 France, Anatole, 1844-1924 Les opinions de M. Jérôme Coignard etext19303 Munroe, Kirk, 1850-1930 Raftmates etext19398 Henty, G. A. (George Alfred), 1832-1902 By Right of Conquest etext19423 Bassett, Sara Ware, 1872-1968 The Story of Porcelain etext19434 Jeans, J. Stephen (James Stephen), 1846-1913 Western Worthies etext19473 Optic, Oliver, 1822-1897 Now or Never etext19504 Jackson, Helen Hunt, 1830-1885 A Calendar of Sonnets etext19514 Burnett, Frances Hodgson, 1849-1924 A Little Princess etext19550 Sterndale, Robert Armitage, 1839-1902 Natural History of the Mammalia of India and Ceylon etext19560 etext19566 Patterson, Robert, 1829-1885 Fables of Infidelity and Facts of Faith etext19674 Bédier, Joseph, 1864-1938 Tristan ja Isolde etext19720 Michel, F. De zomer in Kaschmir etext19856 etext19886 Fiore di leggende etext19899 Russell, W. Clark (William Clark), 1844-1911 The Honour of the Flag etext19904 Wilde, Percival, 1887-1953 The Noble Lord etext6758 Smollett, T. (Tobias), 1721-1771 The Adventures of Sir Launcelot Greaves etext19927 Various The Continental Monthly, Vol. 2, No. 2, August, 1862 etext19939 Anderson, Rufus, 1796-1880 History Of The Missions Of The American Board Of Commissioners For Foreign Missions To The Oriental Churches, Volume II. etext19966 Fitzgerald, Robert The Statesmen Snowbound etext19989 Slosson, Annie Trumbull Story-Tell Lib etext20019 Ruskin, John, 1819-1900 Lectures on Landscape etext20024 Matthewman, Lisle de Vaux, 1867- Crankisms etext20057 Munn, Charles Clark, 1848-1917 Pocket Island etext20074 Gasquoine, C. P. (Charles Penrhyn), 1871- The Story of the Cambrian etext20088 Various The Atlantic Monthly, Volume 16, No. 97, November, 1865 etext20161 Bastiat, Frédéric, 1801-1850 Sophisms of the Protectionists etext20230 Mitchell, Ruth Comfort, 1882-1954 Jane Journeys On etext20238 Diver, Maud, 1867-1945 The Great Amulet etext20276 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 The History of England, from the Accession of James II, Volume 1, Chapter 04 etext20281 Various The Arena etext20282 etext20322 Various Notes and Queries, Number 188, June 4, 1853 etext20328 Hope, Anthony, 1863-1933 Simon Dale etext20333 Various Punch, or the London Charivari, Volume 104, January 28, 1893 etext20388 Laing, Samuel Report of the Railway Department of the Board of Trade on the etext20472 Flower, Jessie Graham [pseud.], -1931 Grace Harlowe's Plebe Year at High School etext20486 Brown, Alice, 1857-1948 Tiverton Tales etext20509 Pittenger, William, 1840-1904 Daring and Suffering: etext20548 White, Grace Miller, 1868-1957 The Secret of the Storm Country etext20551 Cummings, Ray, 1887-1957 The White Invaders etext20558 Thrumbo, Hurlo (pseudonym) The Merry-Thought: or the Glass-Window and Bog-House Miscellany. Part 1 etext20636 Tomlinson, Abraham The Military Journals of Two Private Soldiers, 1758-1775 etext20662 Terman, Lewis Madison, 1877-1956 The Measurement of Intelligence etext20666 Nearing, Scott, 1883-1983 The Debs Decision etext20723 Anonymous Little Cinderella etext20754 Victor, Metta Victoria Fuller, 1831-1885 The Blunders of a Bashful Man etext20790 Poe, Edgar Allan, 1809-1849 Nouvelles histoires extraordinaires etext20796 Bradley, Marion Zimmer, 1930-1999 The Colors of Space etext6532 Burroughs, Edgar Rice, 1875-1950 Tarzan of the Apes etext20830 The Good Housekeeping Marriage Book etext20846 Noyes, William Handwork in Wood etext20854 Jahnsson, Evald Ferdinand, 1844-1895 Muuan suomalainen soturi Kristiina kuningattaren aikakaudella etext20882 Runeberg, Johan Ludvig, 1804-1877 Nadeschda etext20899 Various The Continental Monthly , Vol. 2 No. 5, November 1862 etext20928 Fremantle, Arthur James Lyon, 1835-1901 Three Months in the Southern States, April-June 1863 etext20932 Berens, Edward, 1777?-1859? Advice to a Young Man upon First Going to Oxford etext20987 Mahan, A. T. (Alfred Thayer), 1840-1914 Story of the War in South Africa etext21036 Reed, Talbot Baines, 1852-1893 My Friend Smith etext21048 Webster, Jean, 1876-1916 Just Patty etext21102 Vaizey, George de Horne, Mrs., 1857-1917 Tom and Some Other Girls etext21106 Hutcheson, John C. (John Conroy) Bob Strong's Holidays etext21148 Busch, Wilhelm, 1832-1908 Max und Moritz etext21162 Bly, Nellie, 1864-1922 Ten Days in a Mad-house etext21165 Beauregard, G. T. (Gustave Toutant), 1818-1893 The First Battle of Bull Run etext21200 Cicero, Marcus Tullius, 106 BC-43 BC The Letters of Cicero, Volume 1 etext21219 Hill, Grace Livingston, 1865-1947 A Voice in the Wilderness etext21292 Fenn, George Manville, 1831-1909 Brave and True etext21302 Fenn, George Manville, 1831-1909 Charge! etext21399 Ellis, Mary Dick and His Cat etext21402 Kingston, William Henry Giles, 1814-1880 Our Sailors etext21414 Kains, M. G. (Maurice Grenville), 1868-1946 Culinary Herbs: Their Cultivation Harvesting Curing and Uses etext21422 Avancini, Avancinio Novelle lombarde etext21425 Abba, Giuseppe Cesare, 1838-1910 Le rive della Bormida nel 1794 etext21449 Kingston, William Henry Giles, 1814-1880 With Axe and Rifle etext21466 Kingston, William Henry Giles, 1814-1880 In the Rocky Mountains etext21473 Kingston, William Henry Giles, 1814-1880 Paddy Finn etext21511 Worley, George Bell's Cathedrals: The Priory Church of St. Bartholomew-the-Great, Smithfield etext21535 Wassermann, Jakob, 1873-1934 Die Schwestern etext21543 Johnson, William Henry French Pathfinders in North America etext5828 Ellis, Edward Sylvester, 1840-1916 In the Pecos Country / Lieutenant R. H. Jayne etext6238 Parker, Gilbert, 1862-1932 The Lane That Had No Turning, Volume 2 etext5708 Yonge, Charlotte Mary, 1823-1901 Stray Pearls etext5825 Andrews, Mary Raymond Shipman, 1860-1936 The Courage of the Commonplace etext21555 Marryat, Frederick, 1792-1848 The Mission; or Scenes in Africa etext21560 Kirk, John Papers on Health etext21567 Lima, Sebastião de Magalhães, 1850-1928 Miniaturas Romanticas etext21589 Coleridge, Samuel Taylor, 1772-1834 The Rime of the Ancient Mariner etext21637 McCarthy, Justin, 1830-1912 The Dictator etext21662 Henley, William Ernest, 1849-1903 Hawthorn and Lavender etext21755 Ballantyne, R. M. (Robert Michael), 1825-1894 Personal Reminiscences in Book Making etext21777 Kipling, Rudyard, 1865-1936 The Years Between etext21804 La Gironière, Paul P. de, 1797-1862 Aventures d'un Gentilhomme Breton aux îles Philippines etext21814 Stalker, James, 1848-1927 The Trial and Death of Jesus Christ etext21837 Baker, Charles Whiting Monopolies and the People etext21839 Austen, Jane, 1775-1817 Sense and Sensibility etext21845 Bailey, Arthur Scott, 1877-1949 The Tale of Peter Mink etext21861 Unknown The Doll and Her Friends etext21883 Morris, Gouverneur, 1876-1953 We Three etext21884 Bennett, Charles H. (Charles Henry), 1829-1867 The Faithless Parrot etext21899 Cornell, Frederick A Rip Van Winkle Of The Kalahari etext21904 Green, Anna Katharine, 1846-1935 The Millionaire Baby etext21915 Cook, James, 1728-1779 Directions for Navigating on Part of the South Coast of Newfoundland, with a Chart Thereof, Including the Islands of St. Peter's and Miquelon etext21924 Berchon, Charles Zes maanden op Cuba—Havana etext21990 Johnston, Henry P. The Campaign of 1776 around New York and Brooklyn etext22056 Williams, John H. (John Harvey), 1864- The Mountain that was 'God' etext22163 Stratemeyer, Edward, 1862-1930 The Rover Boys on the Farm etext22172 Various The Knickerbocker, or New-York Monthly Magazine, May 1844 etext22186 Stratemeyer, Edward, 1862-1930 For the Liberty of Texas etext22206 Murray, David Christie, 1847-1907 An Old Meerschaum etext22220 MacBeth, R. G. (Roderick George), 1858-1934 Policing the Plains etext22229 The Modern Scottish Minstrel, Volume VI etext22251 Abbott, Jacob, 1803-1879 The Teacher etext22310 Bacon, Josephine Dodge Daskam, 1876-1961 In the Border Country etext22320 Stowe, Harriet Beecher, 1811-1896 Oldtown Fireside Stories etext22351 Anonymous Publisher's Advertising (1872) etext22403 Hopkins, Gerard Manley, 1844-1889? Poems of Gerard Manley Hopkins etext22445 etext22478 Keable, Robert, 1887-1927 The Priest's Tale - Père Etienne etext22535 etext22579 Leiber, Fritz, 1910-1992 Bread Overhead etext22593 Garland, Hamlin, 1860-1940 The Shadow World etext22638 O'Neill, Eugene, 1888-1953 The Straw etext22706 Bellamy, Edward, 1850-1898 Two Days' Solitary Imprisonment etext22744 Marchant, Bessie, 1862-1941 The Adventurous Seven etext22756 Apjohn, Fannie Louise The Enchanted Island etext22757 Jókai, Mór, 1825-1904 Debts of Honor etext22759 Verne, Jules, 1828-1905 The English at the North Pole etext22795 Marty, A.E. The Ontario High School Reader etext22799 Baikie, James, 1866-1931 Peeps at Many Lands: Ancient Egypt etext22814 Powers, Melvin A Practical Guide to Self-Hypnosis etext22884 Fenollosa, Mary McNeil The Dragon Painter etext22945 John the Apostle, Saint The Revelation of Saint John etext22968 Schrijnen, Jos Nederlandsche Volkskunde etext22972 Abbott, Jacob, 1803-1879 Rollo in Holland etext22995 Ginther, Pemberton Miss Pat at School etext23055 Chekhov, Anton Pavlovich, 1860-1904 The Slanderer etext23064 Various Punch, or the London Charivari, Vol. 150, June 7, 1916 etext23065 Treitschke, Heinrich von, 1834-1896 Die Gründung des Deutschen Zollvereins etext23079 Browning, Elizabeth Barrett, 1806-1861 Sonnets from the Portuguese etext23082 Boethius, Anicius Manlius Severinus, 480-525? The Consolation of Philosophy etext23096 Chapman, J. Wilbur (John Wilbur), 1859-1918 And Judas Iscariot etext23149 Mohler, Will In the Control Tower etext23200 Various The Journal of Negro History, Volume 5, 1920 etext23228 Bethge, Hans, 1876-1946 Arabische Nächte etext23309 Listal, Alfred Klokje Bim-Bam etext23349 Fowler, W. Warde (William Warde), 1847-1921 The Religious Experience of the Roman People etext23353 Tourtel, Mary, 1874-1948 A Horse Book etext23366 Bacon, Josephine Dodge Daskam, 1876-1961 A Philanthropist etext23376 Fenn, George Manville, 1831-1909 A Terrible Coward etext23436 Anonymous Aladdin or The Wonderful Lamp etext23514 Page, Thomas Nelson, 1853-1922 The Long Hillside etext23525 Coutinho, Henrique Ernesto de Almeida, 1788-1868 As Saudades do Bardo Orthodoxo etext23550 Murfree, Mary Noailles, 1850-1922 Una Of The Hill Country etext23552 Murfree, Mary Noailles, 1850-1922 The Phantom Of Bogue Holauba etext23553 Murfree, Mary Noailles, 1850-1922 The Christmas Miracle etext23656 Northern Nut Growers Association, Report of the Proceedings at the Third Annual Meeting etext23712 Burroughs, Edgar Rice, 1875-1950 Tarzan of the Apes etext23739 Moir, D. M. (David Macbeth), 1798-1851 The Life of Mansie Wauch etext23859 Fuller, Anna, 1853-1916 A Venetian June etext23868 Beck, C. C. Vanishing Point etext23875 Young, Filson, 1876-1938 The Relief of Mafeking etext23950 Luo, Guanzhong, 1330?-1400? 三國志演義 etext23956 etext23983 Su, Manshu, 1884-1918 斷鴻零雁記 etext23991 Windsor, H. H. (Henry Haven), 1859-1924 Mission Furniture etext24044 Herrick, Bertha F. Myths and Legends of Christmastide etext24051 Bai, Xingjian, 776-826 李娃傳 etext24061 Foster, Edith Francis Jimmy Crow etext24084 Various Chambers's Edinburgh Journal, No. 458 etext24116 Heijermans, Herman, 1864-1924 Diamantstad etext24117 Unknown A Apple Pie and Other Nursery Tales etext24129 Vicente, Gil, 1465-1537 Monólogo do Vaqueiro etext24133 Wharton, Edith, 1862-1937 The Long Run etext24147 Raymond, Ethel T. Tecumseh etext24159 Earle, Alice Morse, 1851-1911 Customs and Fashions in Old New England etext24165 Wheeler, Candace, 1827-1923 The Development of Embroidery in America etext24234 Kong, Shangren, 1648-1718 桃花扇 etext24273 Mo, Langzi, pseud. 西湖佳話 etext24311 Stalker, James, 1848-1927 The Preacher and His Models etext24325 Gounod, Charles, 1818-1893 Mémoires d'un artiste etext24335 Colcock, Annie T. Margaret Tudor etext24336 Crosland, T. W. H. (Thomas William Hodgson), 1865-1924 Little People: An Alphabet etext24379 Carryl, Charles E. (Charles Edward), 1841-1920 The Admiral's Caravan etext24419 Gleig, G. R. (George Robert), 1796-1888 Germany, Bohemia, and Hungary, Visited in 1837. Vol. II etext24459 Baum, L. Frank (Lyman Frank), 1856-1919 The Lost Princess of Oz etext24463 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Noites de insomnia, offerecidas a quem não póde dormir. Nº1 (de 12) etext24479 Various The Nursery, June 1873, Vol. XIII. etext24514 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Luiz de Camões: notas biograficas etext24523 Bernstein, Eduard, 1850-1932 Der Sozialismus einst und jetzt etext24551 How, Frederick Douglas, 1853- Oxford etext24567 Lang, Allen Kim, 1928- Blind Man's Lantern etext24578 Baum, L. Frank (Lyman Frank), 1856-1919 Mary Louise Solves a Mystery etext24607 Tagore, Rabindranath, 1861-1941 The Cycle of Spring etext24613 Merriam, George Spring, 1843-1914 The Negro and the Nation etext24633 Stoney, Constance Early Double Monasteries etext24643 Gallini, Giovanni-Andrea, 1728-1805 A Treatise on the Art of Dancing etext24706 Smith, Edgar Fahs, 1854-1928 James Cutbush etext24710 Lima, Sebastião de Magalhães, 1850-1928 A Senhora Viscondessa etext24738 Anonymous Pleasing Stories for Good Children with Pictures etext24782 Bechstein, Ludwig, 1801-1860 Der Dunkelgraf etext24786 Games and Play for School Morale etext24799 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 The Escape of Mr. Trimm etext24804 Gould, Nat, 1857-1919 The Rider in Khaki etext24837 Becke, Louis, 1855-1913 The Trader's Wife etext24864 Lang, Allen Kim, 1928- The Great Potlatch Riots etext24904 Various Golden Days for Boys and Girls etext24910 Beeckman, Ross The Last Woman etext24935 Famous Tales of Fact and Fancy etext24988 Dumas père, Alexandre, 1802-1870 Amaury etext25029 Stebbing, W. (William), 1832-1926 Sir Walter Ralegh etext25060 Becke, Louis, 1855-1913 Officer And Man etext25093 Various Harper's New Monthly Magazine, Vol. 3, July, 1851 etext25098 Dopp, Katharine Elizabeth, 1863- The Tree-Dwellers etext25099 Rhodes, James Ford, 1848-1927 Historical Essays etext25183 Porta, Giambattista della, 1535?-1615 L'Olimpia etext25232 Hunt, William, 1842-1931 The Political History of England - Vol. X. etext25240 Braga, Joaquim Teófilo Fernandes, 1843-1924 As theocracias litterarias etext25261 Green, John Richard, 1837-1883 History of the English People, Volume VII etext25329 Unknown 春秋配 etext25340 Byron, George Gordon Byron, Baron, 1788-1824 The Works of Lord Byron. Vol. 2 etext25357 La Fontaine, Jean de, 1621-1695 A Hundred Fables of La Fontaine etext25397 Wang, Chong, 27-97? 論衡 etext25399 Tianranchisou 石點頭 etext25419 Roy, Lillian Elizabeth, 1868-1932 Polly and Eleanor etext25460 Zhong, Rong, fl. 502-519 詩品 etext25467 etext25469 Thompson, Isabel Pretty Tales for the Nursery etext25498 佛說無量壽經 etext25517 Wang, Yangming, 1472-1529 傳習錄 etext25539 Maistre, Xavier de, 1763-1852 Voyage autour de ma chambre. Esperanto etext25551 Irving, Fannie Belle Six Girls etext25597 Northern Nut Growers Association, Report of the Proceedings at the Seventh Annual Meeting etext25643 Browning, Elizabeth Barrett, 1806-1861 'He Giveth His Beloved Sleep' etext25646 Andrews, Jane, 1833-1887 Child's Health Primer For Primary Classes etext25648 Hale, Lucretia P. (Lucretia Peabody), 1820-1900 The Peterkin Papers etext25675 Northern Nut Growers Association Report of the Proceedings at the Fourteenth Annual Meeting etext25723 Cross, R. The Voyage of the Oregon from San Francisco to Santiago in 1898 etext25822 Anonymous Illustrated Science for Boys and Girls etext25849 Ellis, Edward Sylvester, 1840-1916 The Launch Boys' Adventures in Northern Waters etext25852 Dickens, Charles, 1812-1870 The Letters of Charles Dickens etext25860 Various Punch, or the London Charivari, Vol. 147, July 29, 1914 etext25864 Still, A. T. (Andrew Taylor), 1828-1917 Philosophy of Osteopathy etext25893 Schwartz, Julia Augusta, 1873- Beatrice Leigh at College etext26087 Quiller-Couch, Mabel, 1866-1924 Paul the Courageous etext26101 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 Comment on construit une maison etext26137 King, Charles, 1844-1933 Starlight Ranch etext26162 La Motte, Ellen Newbold, 1873-1961 Peking Dust etext26174 Leinster, Murray, 1896-1975 The Machine That Saved The World etext26274 Wyss, Johann David, 1743-1818 The Swiss Family Robinson etext26288 Marvell, Andrew, 1621-1678 To His Coy Mistress etext26350 Novikov, Yakov Aleksandrovich, 1849-1912 Le péril jaune etext26504 Dumas père, Alexandre, 1802-1870 La tulipe noire etext26528 Ford, Sewell, 1868-1946 Odd Numbers etext26542 Wortman, Jacob Lawson On The Affinities of Leptarctus primus of Leidy etext26556 Proctor, Richard A. (Richard Anthony), 1837-1888 Myths and Marvels of Astronomy etext26570 Caius, John, 1510-1573 De Pronunciatione Graecae & Latinae Linguae etext26631 Pendexter, Hugh, 1875-1940 A Virginia Scout etext26672 Cockerell, Douglas Bookbinding, and the Care of Books etext26782 Laumer, Keith, 1925-1993 It Could Be Anything etext26851 Hughes, Thomas, 1822-1896 Tom Brown at Oxford etext26882 Morrow, Lowell Howard Omega, the Man etext26907 Salmon, Arthur L. (Arthur Leslie), 1865- The Cornwall Coast etext26925 Doughty, Francis Worcester, 1850-1917 The Bradys Beyond Their Depth etext26975 Butterfield, Kenyon L. (Kenyon Leech), 1868-1935 Chapters in Rural Progress etext26988 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Amor de Salvação etext27029 Lebert, Marie Le multilinguisme sur le Web etext27047 Lebert, Marie Les technologies et le livre pour tous etext27131 Garneau, F.-X. (François-Xavier), 1809-1866 Histoire du Canada depuis sa découverte jusqu'à nos jours. Tome I etext27156 Serao, Matilde, 1865-1927 Fior di passione etext27200 Andersen, H. C. (Hans Christian), 1805-1875 Fairy Tales of Hans Christian Andersen etext27242 Serrano, Bento O Oraculo do Passado, do presente e do Futuro (1/7) etext27260 Penfield, Frederic Courtland, 1855-1922 East of Suez etext27288 Müller, George, 1805-1898 The Life of Trust: Being a Narrative of the Lord's Dealings With George Müller etext27327 Schlebecker, John T. Agricultural Implements and Machines in the Collection of the National Museum of History and Technology etext27369 De Roberto, Federico, 1861-1927 Spasimo etext27404 Powell, E. Alexander (Edward Alexander), 1879-1957 Where the Strange Trails Go Down etext27439 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 Sundry Accounts etext27440 Various Punch, or the London Charivari, Vol. 147, September 16, 1914 etext27461 Rohmer, Sax, 1883-1959 The Orchard of Tears etext27596 Liu, Su, fl. 742-755 隋唐嘉話 etext27604 etext27628 Bosch, G. York etext27641 Bordes, Charles, 1711-1781 Parapilla, poëme en cinq chants etext2957 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 07: Venice etext27827 Vatsyayana The Kama Sutra of Vatsyayana etext27831 Tellier, Jules, 1863-1889 Les deux paradis d'Abd-Er-Rhaman etext27869 Bledsoe, Albert Taylor, 1809-1877 A Theodicy, or, Vindication of the Divine Glory etext27872 Saintsbury, George, 1845-1933 A History of the French Novel, Vol. 2 etext27928 Asnyk, Adam, 1838-1897 Pobudka etext27933 Hulbert, William Davenport, 1868-1913 Forest Neighbors etext27999 Butler, Arthur John, 1844-1910 Dante: His Times and His Work etext28023 Pictorial Photographers of America Pictorial Photography in America 1921 etext28042 Keller, Gottfried, 1819-1890 Die Leute von Seldwyla — Band 2 etext28053 Wirt, William, 1772-1834 Celebration in Baltimore of the Triumph of Liberty in France etext28081 Byron, George Gordon Byron, Baron, 1788-1824 Oeuvres complètes de lord Byron. Volume 4. etext28093 Leblanc, Maurice, 1864-1941 The Confessions of Arsène Lupin etext28101 Paine, Albert Bigelow, 1861-1937 The Van Dwellers etext28124 Boylesve, René, 1867-1926 Le Médecin des Dames de Néans etext28165 Anonymous The Adventures of a Squirrel, Supposed to be Related by Himself etext28175 Cremer, Jacobus Jan, 1827-1880 De lelie van 's-Gravenhage etext28180 Thorne, Jack, 1863- Hanover; Or The Persecution of the Lowly etext28243 Gerstäcker, Friedrich, 1816-1872 Nach Amerika! Vierter Band etext28270 Gosse, Edmund, 1849-1928 Hypolympia etext28300 Various Harper's Young People, January 6, 1880 etext28314 The Yellow Fairy Book etext28358 Auzias-Turenne, Raymond, 1861-1940 Le roi du Klondike etext28360 Various Punch, or the London Charivari, Vol. 147, October 14, 1914 etext28475 Various Notes and Queries, Number 193, July 9, 1853 etext28591 Poems with Power to Strengthen the Soul etext28592 Hoyos y Vinent, Antonio de, 1885-1940 El pecado y la noche etext28652 Orton, Helen Fuller, 1872-1955 Bobby of Cloverfield Farm etext28664 Ignotus Langsam-Schnellzüge in Österreich etext28672 Various The Christian Foundation, Or, Scientific and Religious Journal, etext28696 Carroll, Lewis, 1832-1898 Symbolic Logic etext28732 La Fontaine, Jean de, 1621-1695 Fables de La Fontaine, livre second etext28767 Dick, Philip K., 1928-1982 The Defenders etext28834 Borrow, George Henry, 1803-1881 The Story of Yvashka with the Bear's Ear etext28869 Boito, Arrigo, 1842-1918 Novelle e riviste drammatiche etext28880 Wordsworth, Dorothy, 1771-1855 Recollections of a Tour Made in Scotland A.D. 1803 etext28910 Rovetta, Gerolamo, 1854-1910 Mater dolorosa etext28917 Le Fanu, Joseph Sheridan, 1814-1873 Carmilla etext28920 Tolstoy, Leo, graf, 1828-1910 War and Peace, Book 01: 1805 etext29040 Alencar, José Martiniano de, 1829-1877 Como e porque sou romancista etext29121 De Vere, Aubrey, 1814-1902 Legends of the Saxon Saints etext29145 The Best of the World's Classics, Restricted to Prose, Vol. X (of X) - America - II, Index etext29183 Bindloss, Harold, 1866-1945 Partners of the Out-Trail etext29187 Various Graham's Magazine Vol XXXII No. 1 January 1848 etext29277 Lind-af-Hageby, L. (Lizzy), 1878-1963 Mountain Meditations etext29297 De Mille, James, 1833-1880 Among the Brigands etext29348 Washburn, Wilcomb E. Virginia Under Charles I And Cromwell, 1625-1660 etext29359 Shakespeare, William, 1564-1616 The Merchant of Venice. Dutch etext29390 Various Astounding Stories of Super-Science April 1930 etext29403 Various The Esperantist, Vol. 1, No. 3 etext29435 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 O que fazem mulheres etext29439 Cable, George Washington, 1844-1925 Dr. Sevier etext29453 Ball, Eustace Hale, 1881-1931 Traffic in Souls etext29488 Hasse, Henry, 1913-1977 We're Friends, Now etext29512 Dalton, Moray Olive in Italy etext29524 Sheldon, Georgie, Mrs., 1843-1926 The Masked Bridal etext29561 Hughes, Rupert, 1872-1956 In a Little Town etext29670 Lynch, Lawrence L. Against Odds etext29695 Cullum, Ridgwell, 1867-1943 The Hound From The North etext29722 Cooper, Thomas, 1805-1892 The Baron's Yule Feast: A Christmas Rhyme etext29768 Various Astounding Stories of Super-Science, August 1930 etext29991 Goldfrap, John Henry, 1879-1917 The Boy Scouts on Belgian Battlefields etext30080 Strindberg, August, 1849-1912 Samlade Skrifter #28 etext30097 Thoma, Ludwig, 1867-1921 Erinnerungen etext30185 Locker-Lampson, Frederick, 1821-1895 London Lyrics etext30186 The Great Events by Famous Historians, Volume 13 etext30192 Müller, F. Max (Friedrich Max), 1823-1900 Chips from a German Workshop - Volume IV etext30194 Lake, Kirsopp, 1872-1946 Landmarks in the History of Early Christianity etext30307 Gilmore, Anthony Hawk Carse etext30313 Seton, Ernest Thompson, 1860-1946 The Preacher of Cedar Mountain etext1709 Gissing, George, 1857-1903 New Grub Street etext30331 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 Geschichte von England seit der Thronbesteigung Jakob's des Zweiten. etext30404 Carvalho, Maria Amália Vaz de, 1847-1921 Pelo mundo fóra etext30405 Sholto, Ralph The Clean and Wholesome Land etext30456 Ortigão, José Duarte Ramalho, 1836-1915 O culto da arte em Portugal etext30462 Serrano, Bento O Oraculo do Passado, do presente e do Futuro (3/7) etext30492 Various Punch, or the London Charivari, Vol. 98, April 5, 1890 etext30499 Farrar, Adam Storey, 1826-1905 History of Free Thought in Reference to The Christian Religion etext30526 Blake, William, 1757-1827 Illustrations of The Book of Job etext30579 Callan, Charles Jerome, 1877-1962 The Shepherd Of My Soul etext30582 Sue, Eugène, 1804-1857 Atar-Gull, Un Corsaire, Le Parisien en Mer, Voyages et Aventures sur Mer de Narcisse Gelin. etext30649 Bartholomew, Stephen Last Resort etext30652 Yeats, W. B. (William Butler), 1865-1939 In The Seven Woods etext30669 Meynell, Alice Christiana Thompson, 1847-1922 A Father of Women etext30677 Various Birds, Illustrated by Color Photography, Vol. 2, No. 5 etext30681 Anonymous Nanny Merry etext30770 Berryman, John, 1919-1988 The Right Time etext30814 Gerstäcker, Friedrich, 1816-1872 Die Colonie. Zweiter Band. etext30878 Petruccelli della Gattina, Ferdinando, 1816-1890 Il re dei re etext30882 Archer, William, 1856-1924 God and Mr. Wells etext30888 Miller, William James The American Church Dictionary and Cyclopedia etext30958 Overton, Mark Jack Winters' Campmates etext30984 Colajanni, Napoleone Gli avvenimenti di Sicila e le loro cause etext30992 The Esperantist, Vol. 1, No. 5 etext31033 Lang, Andrew, 1844-1912 James VI and the Gowrie Mystery etext31054 Gaboriau, Émile, 1832-1873 La clique dorée etext31067 Hart, John S. (John Seely), 1810-1877 In the School-Room etext31077 Barrili, Anton Giulio, 1836-1908 Raggio di Dio etext31092 etext31151 Jusserand, J. J. The English Novel in the Time of Shakespeare etext31160 Harris, Joel Chandler, 1848-1908 Free Joe and Other Georgian Sketches etext31170 Kinkel, Johanna Acht Briefe an eine Freundin über Clavier-Unterricht etext31176 Antoine, A., 1776-1836 Les Histoires merveilleuses, ou les Petits Peureux corrigés etext31182 Robbers, Herman Johan, 1868-1937 De bruidstijd van Annie de Boogh etext31204 Bassewitz, Gerdt von, 1878-1923 Peterchens Mondfahrt etext31258 Lockwood, John, 1826?-1901 Our campaign around Gettysburg etext31261 Faduma, Orishatukeh, 1857-1946 The Defects of the Negro Church etext31384 Cole, Gilbert L. In the Early Days along the Overland Trail in Nebraska Territory, in 1852 etext31410 Reid, Mayne, 1818-1883 The Boy Slaves etext31415 Whall, C. W. Stained Glass Work etext31509 Camões, Luís Vaz de, 1524-1580 Obras Completas de Luis de Camões, Tomo II etext31521 Anonymous Little Frida etext31535 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 A Monk of Cruta etext31598 Goodwin, Harold L. (Harold Leland), 1914-1990 The Egyptian Cat Mystery etext31650 Root, Jean Christie Nathan Hale etext31663 Lafferty, R. A., 1914-2002 The Six Fingers of Time etext31734 Gray, F. T. Tribute to a Good Man etext31793 Various Encyclopaedia Britannica, 11th Edition, Volume 6, Slice 5 etext31826 Various Tales from Blackwood, Volume 1 etext31869 Cummins, Maria S. The Lamplighter etext31875 Jevons, F. B. (Frank Byron), 1858-1936 An Introduction to the Study of Comparative Religion etext31896 Cawein, Madison Julius, 1865-1914 Idyllic Monologues etext31915 Ottolengui, Rodrigues An Artist in Crime etext31958 Onkel Adam, 1804-1889 Tunturikoski etext31962 Farrell, Joseph The Ethical Way etext32033 Leffingwell, Albert, 1845-1916 Vivisection etext32054 Gallun, Raymond Z., 1911-1994 Stamped Caution etext32066 Nuttall, Zelia The Fundamental Principles of Old and New World Civilizations etext32077 Marks, Winston K., 1915-1979 Breeder Reaction etext32137 Crockett, S. R. (Samuel Rutherford), 1860-1914 The Men of the Moss-Hags etext32181 Clifton, Mark, 1906-1963 Do Unto Others etext32191 Risley, Richard Voorhees The Sentimental Vikings etext32197 Belloc, Hilaire, 1870-1953 Poitiers etext32209 Aycock, Roger D., 1914-2004 Assignment's End etext32304 Christovasilis, Christos, 1862?-1937 Η αγάπη (Τριλογία) etext32351 Marlowe, Stephen, 1928-2008 Voyage To Eternity etext32385 Edschmid, Kasimir, 1890-1966 Die Fürstin etext32399 Mattson, Hans Reminiscences etext32413 Gold, H. L. (Horace Leonard), 1914-1996 At the Post etext32434 Henderson, Gene L. All In The Mind etext32486 Hamilton, Edmond, 1904-1977 The Legion of Lazarus etext1536 Shakespeare, William, 1564-1616 Timon of Athens etext1558 Sinclair, Upton, 1878-1968 The Profits of Religion etext1646 Henry, O., 1862-1910 Roads of Destiny etext1667 Scott, Walter, Sir, 1771-1832 My Aunt Margaret's Mirror etext1681 Plato (spurious and doubtful works), 427? BC-347? BC Eryxias etext32505 león, Juan R. The Systematics of the Frogs of the Hyla Rubra Group in Middle America etext32506 Various Notes and Queries, Number 228, March 11, 1854 etext32518 Elwes, Alfred, 1819?-1888 The Adventures of a Cat etext32579 Ackerman, Forrest J., 1916-2008 Micro-Man etext32592 Fyfe, Horace Brown, 1918-1997 Let There Be Light etext32598 Rogers, Julia Ellen Earth and Sky Every Child Should Know etext32613 Marks, Winston K., 1915-1979 Tabby etext32634 Clausius, Rudolf Die Potentialfunction und das Potential etext32636 Boyd, Waldo T. The Salesman etext14 United States. Central Intelligence Agency The 1990 CIA World Factbook etext18 etext38 Various The Jargon File, Version 2.9.10, 01 Jul 1992 etext77 Hawthorne, Nathaniel, 1804-1864 House of the Seven Gables etext95 Hope, Anthony, 1863-1933 The Prisoner of Zenda etext109 Millay, Edna St. Vincent, 1892-1950 Renascence and Other Poems etext119 Twain, Mark, 1835-1910 A Tramp Abroad etext169 Morris, William, 1834-1896 The Well at the World's End: a tale etext204 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Innocence of Father Brown etext216 Laozi The Tao Teh King, or the Tao and its Characteristics etext221 Doyle, Arthur Conan, Sir, 1859-1930 The Return of Sherlock Holmes etext232 Virgil, 70 BC-19 BC The Georgics etext236 Kipling, Rudyard, 1865-1936 The Jungle Book etext248 Webster, Noah, 1758-1843 Webster's Unabridged Dictionary etext273 Luther, Martin, 1483-1546 The Smalcald Articles etext292 Taylor, Bayard, 1825-1878 Beauty and the Beast, and Tales of Home etext311 Wharton, Edith, 1862-1937 Bunner Sisters etext328 Guest, Edgar A. (Edgar Albert), 1881-1959 A Heap O' Livin' etext354 etext451 Conrad, Joseph, 1857-1924 The Shadow Line; a confession etext463 Crane, Stephen, 1871-1900 The Red Badge of Courage etext489 Ferber, Edna, 1885-1968 One Basket etext507 Eliot, George, 1819-1880 Adam Bede etext523 Headland, Isaac Taylor, 1859-1942 Court Life in China etext559 Buchan, John, 1875-1940 Greenmantle etext605 Burroughs, Edgar Rice, 1875-1950 Pellucidar etext617 Seeger, Alan, 1888-1916 Poems etext625 Aldrich, Thomas Bailey, 1836-1907 Ponkapog Papers etext647 etext670 etext673 Project Gutenberg The Gutenberg Webster's Unabridged Dictionary etext826 Anonymous Latin Vulgate, Esther: Liber Esther etext842 Brown, Charles Brockden, 1771-1810 Memoirs of Carwin, the Biloquist etext856 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Dreams etext904 Stratton-Porter, Gene, 1863-1924 Her Father's Daughter etext929 etext938 Bower, B. M., 1874-1940 Good Indian etext1020 Lowell, Amy, 1874-1925 Sword Blades and Poppy Seed etext1057 Wilde, Oscar, 1854-1900 Ballad of Reading Gaol etext1062 Poe, Edgar Allan, 1809-1849 First Project Gutenberg Collection of Edgar Allan Poe etext1087 Roth, Lewis Baartock etext1190 James, Henry, 1843-1916 The Jolly Corner etext1191 Congreve, William, 1670-1729 The Double-Dealer, a comedy etext1204 Bower, B. M., 1874-1940 Cabin Fever etext1229 Lanier, Sidney, 1842-1881 Select Poems of Sidney Lanier etext1239 Grey, Zane, 1872-1939 The Spirit of the Border etext1296 Galt, John, 1779-1839 The Provost etext1304 Bulchevy's Book of English Verse etext1308 Wilde, Oscar, 1854-1900 La Sainte Courtisane etext1324 Ransome, Arthur, 1884-1967 Russia in 1919 etext1346 Marx, Karl, 1818-1883 Eighteenth Brumaire of Louis Bonaparte etext1449 London, Jack, 1876-1916 The Valley of the Moon etext1524 Shakespeare, William, 1564-1616 Hamlet etext1532 Shakespeare, William, 1564-1616 King Lear etext1534 Shakespeare, William, 1564-1616 Antony and Cleopatra etext1566 Osler, William, 1849-1919 The Evolution of Modern Medicine etext1620 Davis, Richard Harding, 1864-1916 Lion and the Unicorn etext1662 United States. Central Intelligence Agency The 1997 CIA World Factbook etext1679 Todd, Burbank L. Hiram the Young Farmer etext1752 Orczy, Emmuska Orczy, Baroness, 1865-1947 El Dorado, an adventure of the Scarlet Pimpernel etext1756 Chekhov, Anton Pavlovich, 1860-1904 Uncle Vanya etext1823 Davis, Richard Harding, 1864-1916 The Make-Believe Man etext1853 Beck, L. Adams (Lily Adams), -1931 The ninth vibration and other stories etext1929 Sheridan, Richard Brinsley, 1751-1816 School for Scandal etext1969 Thackeray, William Makepeace, 1811-1863 Catherine: a Story etext1987 Adams, Andy, 1859-1935 The Outlet etext2086 Lucas, E. V. (Edward Verrall), 1868-1938 The Slowcoach etext2158 Trollope, Anthony, 1815-1882 The Prime Minister etext2198 Basile, Giambattista, 1575-1632 Pentamerone. English etext2202 Human Genome Project Chromosome Number 02 etext2208 Human Genome Project Chromosome Number 08 etext2226 Kipling, Rudyard, 1865-1936 Kim etext2246 Shakespeare, William, 1564-1616 All's Well That Ends Well etext2255 Shakespeare, William, 1564-1616 Henry VI etext2263 Shakespeare, William, 1564-1616 Julius Caesar etext2279 Harte, Bret, 1836-1902 A Waif of the Plains etext2344 Doyle, Arthur Conan, Sir, 1859-1930 The Adventure of the Cardboard Box etext2354 etext2383 Chaucer, Geoffrey, 1343?-1400 The Canterbury Tales, and Other Poems etext2427 James, Henry, 1843-1916 The Patagonia etext2506 Howells, William Dean, 1837-1920 The Sleeping-Car, a farce etext2549 Gaskell, Elizabeth Cleghorn, 1810-1865 Doom of the Griffiths etext2559 Galsworthy, John, 1867-1933 The Forsyte Saga, Volume I. etext2650 Proust, Marcel, 1871-1922 Du côté de chez Swann etext2786 Alcott, Louisa May, 1832-1888 Jack and Jill etext2829 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Fanny and the Servant Problem etext2837 Neto, João Simões Lopes, 1865-1916 Lendas do sul etext2852 Doyle, Arthur Conan, Sir, 1859-1930 The Hound of the Baskervilles etext2890 Vazov, Ivan Minchov, 1850-1921 Епопея на забравените etext2898 Johnston, Mary, 1870-1936 Pioneers of the Old South: a chronicle of English colonial beginnings etext2920 Galsworthy, John, 1867-1933 Four Short Plays etext2931 Huxley, Thomas Henry, 1825-1895 Evidence as to Man's Place in Nature etext2947 Zäunemann, Sidonia Hedwig, 1714-1740 Die von denen Faunen gepeitschte Laster etext2966 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 16: Depart Switzerland etext2977 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 27: Expelled from Spain etext3061 Mommsen, Theodor, 1817-1903 Römische Geschichte — Band 2 etext3082 Maupassant, Guy de, 1850-1893 Original Short Stories — Volume 06 etext3178 etext3201 Ward, Grady Moby Word Lists etext3275 Ward, Artemus, 1834-1867 The Complete Works of Artemus Ward — Part 5: The London Punch Letters etext3312 Gillmore, Inez Haynes, 1873-1970 The Native Son etext3329 Shaw, Bernard, 1856-1950 Caesar and Cleopatra etext3340 Sue, Eugène, 1804-1857 The Wandering Jew — Volume 02 etext3406 Howells, William Dean, 1837-1920 Ragged Lady — Volume 2 etext3414 Amundsen, Roald, 1872-1928 The South Pole; an account of the Norwegian antarctic expedition in the "Fram," 1910-1912 — Volume 1 etext3419 Donnell, Annie Hamilton, 1862- Rebecca Mary etext3479 Merritt, Abraham, 1884-1943 The Metal Monster etext3507 Human Genome Project Human Genome Project, Chromosome Number 07 etext3597 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 17 etext3688 Saki, 1870-1916 The Chronicles of Clovis etext3699 Trollope, Anthony, 1815-1882 Miss Sarah Jack of Spanish Town, Jamaica etext3703 Pedley, Ethel C., 1860?-1898 Dot and the Kangaroo etext3792 Southworth, Emma Dorothy Eliza Nevitte, 1819-1899 Capitola the Madcap etext3794 Seneca, Lucius Annaeus, 4 BC-65 L. Annaeus Seneca on Benefits etext3800 Spinoza, Benedictus de, 1632-1677 Ethica. English etext3833 Parker, K. Langloh (Katie Langloh), 1856-1940 Australian Legendary Tales: folklore of the Noongahburrahs as told to the Piccaninnies etext3849 Montespan, Françoise-Athénaïs de Rochechouart de Mortemart, marquise de, 1641-1707 Memoirs of Madame de Montespan — Volume 3 etext3869 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 10 etext4033 Follen, Eliza Lee Cabot, 1787-1860 Who Spoke Next etext4067 Mühlbach, L. (Luise), 1814-1873 Frederick the Great and His Court etext4080 Hebbel, Christian Friedrich, 1813-1863 Gyges und sein Ring etext4146 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 26: January/February 1663-64 etext4151 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 31: October/November 1664 etext4169 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 47: November 1666 etext4206 Lane, Franklin Knight, 1864-1921 Letters of Franklin K. Lane etext4225 Wells, H. G. (Herbert George), 1866-1946 First and Last Things etext4309 Gissing, George, 1857-1903 Demos etext4313 Gissing, George, 1857-1903 The Odd Women etext4326 Muir, Ramsay, 1872-1941 The Expansion of Europe etext4333 Stone, J. M. (Jean Mary), 1853-1908 Studies from Court and Cloister: being essays, historical and literary dealing mainly with subjects relating to the XVIth and XVIIth centuries etext4352 Bergson, Henri, 1859-1941 Laughter : an Essay on the Meaning of the Comic etext4388 Marquis, Thomas Guthrie, 1864-1936 The Jesuit Missions : A chronicle of the cross in the wilderness etext4404 Meredith, George, 1828-1909 The Shaving of Shagpat; an Arabian entertainment — Volume 4 etext4412 Meredith, George, 1828-1909 Ordeal of Richard Feverel — Complete etext4420 Meredith, George, 1828-1909 Sandra Belloni — Complete etext4481 Meredith, George, 1828-1909 Lord Ormont and His Aminta — Volume 5 etext4509 Hall, Bolton, 1854-1938 Three Acres and Liberty etext4598 Ackland, T. S. (Thomas Suter), 1817-1892 Story of Creation as Told By Theology and By Science etext4629 Arthur, T. S. (Timothy Shay), 1809-1885 Home Scenes and Home Influence; a series of tales and sketches etext4718 Voltaire, 1694-1778 Romans — Volume 6: Histoire Des Voyages De Scarmentado etext4776 Russell, Bertrand, 1872-1970 Political Ideals etext4825 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 23: 1576 etext4833 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 31: 1580-82 etext4847 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce — Complete (1584-86) etext4865 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1592-94 etext4872 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1590-99 — Complete etext4945 Bancroft, Edith Jane Allen, Junior etext4963 Thoma, Ludwig, 1867-1921 Moral etext4968 Verne, Jules, 1828-1905 Les Cinq Cents Millions De La Bégum etext4991 Patchin, Frank Gee, 1861-1925 The Pony Rider Boys in New Mexico etext4998 Leonardo da Vinci, 1452-1519 The Notebooks of Leonardo Da Vinci — Volume 1 etext5016 Jackson, Andrew, 1767-1845 State of the Union Address etext5024 Lincoln, Abraham, 1809-1865 State of the Union Address etext5051 Locke, William John, 1863-1930 The Morals of Marcus Ordeyne : a Novel etext5080 Yonge, Charlotte Mary, 1823-1901 Magnum Bonum etext5107 Richardson, John, 1796-1852 The Canadian Brothers, or the Prophecy Fulfilled a Tale of the Late American War — Volume 2 etext5108 Richardson, John, 1796-1852 The Canadian Brothers, or the Prophecy Fulfilled a Tale of the Late American War — Complete etext5115 etext5116 James, William, 1842-1910 Pragmatism etext5180 United States District Court For The Eastern District Of Pennsylvania Children's Internet Protection Act (CIPA) Ruling etext5207 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Guns of Shiloh etext5229 Smith, Francis Hopkinson, 1838-1915 Felix O'Day etext5268 Train, Arthur Cheney, 1875-1945 Courts and Criminals etext5269 Roe, Edward Payson, 1838-1888 Driven Back to Eden etext5287 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 13 etext5297 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 23 etext5479 Ebers, Georg, 1837-1898 Cleopatra — Volume 07 etext5526 Ebers, Georg, 1837-1898 The Bride of the Nile — Volume 10 etext5534 Ebers, Georg, 1837-1898 A Thorny Path — Volume 05 etext5570 Ebers, Georg, 1837-1898 Barbara Blomberg — Volume 10 etext5592 Ebers, Georg, 1837-1898 The Complete Short Works etext5608 Sherlock, Thomas, 1678-1761 Trial of the Witnesses of the Resurrection of Jesus etext5615 Lang, Andrew, 1844-1912 The Pink Fairy Book etext5636 Page, Gertrude, 1873-1922 Winding Paths etext5656 Lightheart The Gospel of John for Readers etext5726 Buckley, Arabella B., 1840-1929 The Fairy-Land of Science etext5748 Chambers, Robert W. (Robert William), 1865-1933 In Secret etext5756 Tarkington, Booth, 1869-1946 The Guest of Quesnay etext5777 Kipling, Rudyard, 1865-1936 Life's Handicap etext5782 Twain, Mark, 1835-1910 A Tramp Abroad — Volume 01 etext5850 Sherman, William T. (William Tecumseh), 1820-1891 The Memoirs of General W. T. Sherman, Volume I., Part 1 etext5949 Tarkington, Booth, 1869-1946 Beasley's Christmas Party etext6021 Blackwood, Algernon, 1869-1951 A Prisoner in Fairyland etext6047 Bunyan, John, 1628-1688 Works of John Bunyan — Volume 02 etext6070 White, Edward Lucas, 1866-1934 The Unwilling Vestal etext6074 Tennyson, Alfred Tennyson, Baron, 1809-1892 Lady Clare etext6084 Schumann, Robert, 1810-1856 Quartet in a minor, op. 41, no. 1 etext6085 Wilson, John Lyde, 1784-1849 The Code of Honor, Or, Rules for the Government of Principals and Seconds in Duelling etext6108 Ralphson, G. Harvey (George Harvey), 1879-1940 Boy Scouts in a Submarine : or, Searching an Ocean Floor etext6111 Grove, Frederick Philip, 1879?-1948 Over Prairie Trails etext6115 Kyne, Peter B. (Peter Bernard), 1880-1957 The Long Chance etext6120 Kipling, Rudyard, 1865-1936 Soldiers Three etext6164 Jefferies, Richard, 1848-1887 The Life of the Fields etext6166 Cornwall, Barry, 1787-1874 Charles Lamb etext6173 Butler, Samuel, 1835-1902 The Note-Books of Samuel Butler etext6190 Parker, Gilbert, 1862-1932 Northern Lights, Volume 5. etext6263 Parker, Gilbert, 1862-1932 The Weavers: a tale of England and Egypt of fifty years ago - Volume 2 etext6276 Parker, Gilbert, 1862-1932 The Money Master, Volume 2. etext8592 Churchill, Charles, 1731-1764 Poetical Works etext6308 Kingsley, Charles, 1819-1875 Hypatia — or New Foes with an Old Face etext6388 Suetonius Tranquillus, Gaius, 75-160 The Lives of the Twelve Caesars, Volume 03: Tiberius etext6429 Rorer, Sarah Tyson Heston, 1849-1937 Many Ways for Cooking Eggs etext6499 Schiller, Friedrich, 1759-1805 Die Verschwörung des Fiesco zu Genua etext6522 Tagore, Rabindranath, 1861-1941 Fruit-Gathering etext6596 Chittenden, Newton H. (Newton Henry), 1840-1925 Official Report of the Exploration of the Queen Charlotte Islands for the Government of British Columbia etext6671 etext6688 Eliot, George, 1819-1880 The Mill on the Floss etext6733 Vincent de Paul, Father, 1768-1853 Memoir of Fr. Vincent De Paul; religious of La Trappe etext6755 Cockburn, James Seaton Canada for Gentlemen etext6762 Aristotle, 384 BC-322 BC Politics: A Treatise on Government etext6790 Schiller, Friedrich, 1759-1805 Demetrius etext6821 Lenz, Jakob Michael Reinhold, 1751-1792 Der Hofmeister etext6828 Fielding, Henry, 1707-1754 The Works of Henry Fielding etext6891 Hauff, Wilhelm, 1802-1827 Mitteilungen aus den Memoiren des Satan — Band 2 etext6932 Bacon, Mary Schell Hoke, 1870-1934 Pictures Every Child Should Know etext6941 Scott, Walter, Sir, 1771-1832 Old Mortality, Complete etext6958 Castlemon, Harry, 1842-1915 Frank on the Lower Mississippi etext6974 Merriman, Henry Seton, 1862-1903 Tomaso's Fortune and Other Stories etext6980 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Tales of St. Austin's etext6985 Wodehouse, P. G. (Pelham Grenville), 1881-1975 A Prefect's Uncle etext7013 Sylvester, Charles Herbert Journeys Through Bookland, Vol. 4 etext7052 Bellamy, Edward, 1850-1898 Dr. Heidenhoff's Process etext7059 Farnol, Jeffery, 1878-1952 Peregrine's Progress etext7061 Henty, G. A. (George Alfred), 1832-1902 A March on London etext7074 Leprince de Beaumont, Madame (Jeanne-Marie), 1711-1780 Beauty and the Beast etext7077 Hughes, Rupert, 1872-1956 We Can't Have Everything etext7148 Schlegel, August Wilhelm, 1767-1845 Lectures on Dramatic Art and Literature etext7150 Huxley, Thomas Henry, 1825-1895 Science & Education etext7249 Twain, Mark, 1835-1910 A Connecticut Yankee in King Arthur's Court, Part 8. etext7279 Molière, 1622-1673 Le Bourgeois Gentilhomme etext7293 Day, Horace B. The Opium Habit etext7334 Henty, G. A. (George Alfred), 1832-1902 With Buller in Natal, Or, a Born Leader etext10066 Brand, Max, 1892-1944 Gunman's Reckoning etext11113 Cairns, John, 1818-1892 Principal Cairns etext7338 Sell, Henry T. (Henry Thorne) Studies in the Life of the Christian etext7429 Cole, Mary Trials and Triumphs of Faith etext7489 Lumholtz, Carl, 1851-1922 Through Central Borneo; an Account of Two Years' Travel in the Land of Head-Hunters Between the Years 1913 and 1917 etext7669 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 What Will He Do with It? — Volume 11 etext7691 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Lucretia — Complete etext7758 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Falkland, Book 2. etext7777 Kippis, Andrew, 1725-1795 Narrative of the Voyages Round the World, Performed by Captain James Cook : with an Account of His Life During the Previous and Intervening Periods etext7788 Walcott, Earle Ashley, 1859-1931 Blindfolded etext7895 Reade, Charles, 1814-1884 A Terrible Temptation etext7954 Kingsley, Charles, 1819-1875 Twenty-Five Village Sermons etext7991 Ostrovsky, Aleksandr Nicolaevich, 1823-1886 The Storm etext8018 Anonymous The Bible, King James version, Book 18: Job etext8036 Anonymous The Bible, King James version, Book 36: Zephaniah etext8049 Anonymous The Bible, King James version, Book 49: Ephesians etext8065 Anonymous The Bible, King James version, Book 65: Jude etext8070 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture etext8097 Stedman, John Gabriël, 1744-1797 Reize naar Surinamen en door de binnenste gedeelten van Guiana — Deel 2 etext8102 Pegge, Samuel, 1704-1796 The Forme of Cury etext8153 Hancock, H. Irving (Harrie Irving), 1868-1922 The Young Engineers in Arizona etext8259 Anonymous The World English Bible (WEB): Jonah etext8309 The Bible, Douay-Rheims, Book 09: 1 Kings etext8412 Various Seeing Europe with Famous Authors, Volume 3 etext8415 Child, Lydia Maria Francis, 1802-1880 The Magician's Show Box and Other Stories etext8423 Jacobs, Colonel Eugene C. Blood Brothers etext8457 Leacock, Stephen, 1869-1944 Frenzied Fiction etext8467 Frost, Sarah Annie Frost's Laws and By-Laws of American Society etext8491 Various Chronicle of the Cid etext8510 Strindberg, August, 1849-1912 Lucky Pehr etext8559 Various Scientific American Supplement, No. 360, November 25, 1882 etext8585 Twain, Mark, 1835-1910 Roughing It, Part 4. etext8598 etext8639 Southey, Robert, 1774-1843 Poems, 1799 etext8694 Alcott, Louisa May, 1832-1888 The Abbot's Ghost, or Maurice Treherne's Temptation etext11022 Harper, Frances Ellen Watkins, 1825-1911 Sowing and Reaping etext11076 Various Punch, or the London Charivari, Volume 153, October 24, 1917 etext13076 Collingwood, W. G. (William Gershom), 1854-1932 The Life of John Ruskin etext13085 Kipling, Rudyard, 1865-1936 A Diversity of Creatures etext13092 As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1878-01) etext13118 Tietjens, Eunice, 1884-1944 Profiles from China etext13144 Power, Eileen Edna, 1889-1940 Medieval People etext13198 Sand, George, 1804-1876 Nouvelles lettres d'un voyageur etext8838 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Philippians etext8886 MacDonald, George, 1824-1905 A Rough Shaking etext8920 Arnold, Edwin, Sir, 1832-1904 The Light of Asia etext8979 Verne, Jules, 1828-1905 Five Weeks in a Balloon etext8991 Verne, Jules, 1828-1905 The Fur Country etext9007 Twain, Mark, 1835-1910 Adventures of Huckleberry Finn etext9040 Twain, Mark, 1835-1910 A Tramp Abroad etext9073 Betham-Edwards, Matilda, 1836-1919 The Roof of France etext9078 Sanders, Charles W. Sanders' Union Fourth Reader etext9168 Zola, Émile, 1840-1902 The Three Cities Trilogy: Paris, Volume 5 etext9175 Horace, 65 BC-8 BC The Art of Poetry an Epistle to the Pisos etext9274 Swift, Jonathan, 1667-1745 The Journal to Stella etext9315 Maclaren, Ian, 1850-1907 A Doctor of the Old School — Volume 1 etext9338 Conrad, Joseph, 1857-1924 The Secret Agent etext9343 Conrad, Joseph, 1857-1924 Heart of Darkness etext9350 Conrad, Joseph, 1857-1924 The Shadow Line etext9392 Chopin, Frédéric, 1810-1849 Prelude in E Minor, Op. 28, No. 4 etext9409 Pinkerton, A. Frank [pseud.] Five Thousand Dollars Reward etext9515 Poe, Edgar Allan, 1809-1849 The Works of Edgar Allan Poe, Volume 4 etext9572 Whittier, John Greenleaf, 1807-1892 Religious Poems, Part 1., from Poems of Nature, etext9767 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Alice, or the Mysteries — Book 05 etext9774 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Alice, or the Mysteries — Complete etext9804 Ruskin, John, 1819-1900 Stones of Venice [introductions] etext9829 Cabell, James Branch, 1879-1958 The Jewel Merchants etext9907 Roberts, Charles George Douglas, Sir, 1860-1943 The Raid from Beausejour; and How the Carter Boys Lifted the Mortgage etext9912 Stump, Joseph An Explanation of Luther's Small Catechism etext10051 Oliphant, Mrs. (Margaret), 1828-1897 The Little Pilgrim: Further Experiences. etext10096 Euripides, 480? BC-406 BC The Trojan women of Euripides etext10128 The Great Events by Famous Historians, Volume 17 etext10145 Toynbee, Arnold Joseph, 1889-1975 Turkey: a Past and a Future etext10231 Daniels, Addie Worth Remarks from a Visit to Edison Laboratory etext10238 Ediphone School Record No. 2 etext10248 Orchestra, Raderman's Jazz Blues my Naughty Sweetie Gives to Me etext10269 "Colored Quartet" (name unknown) Pharoah's Army Got Drowned etext10276 Gloria etext10328 Cassels, Walter Richard, 1826-1907 Poems etext10350 Johnson, Samuel, 1709-1784 The Works of Samuel Johnson, Volume 06 etext10360 Alcott, Louisa May, 1832-1888 Kitty's Class Day and Other Stories etext10410 etext10416 etext10515 O'Cotter, Pat Rhymes of a Roughneck etext10556 Orczy, Emmuska Orczy, Baroness, 1865-1947 The Old Man in the Corner etext10604 Goethe, Johann Wolfgang von, 1749-1832 Les affinités électives etext10656 Various A Collection of Old English Plays, Volume 2 etext10679 Van Dyke, Henry, 1852-1933 The Story of the Other Wise Man etext10718 Le Queux, William, 1864-1927 The House of Whispers etext10723 Stowe, Harriet Beecher, 1811-1896 Betty's Bright Idea; Deacon Pitkin's Farm; and the First Christmas of New England etext10756 Jackson, Helen Hunt, 1830-1885 Between Whiles etext10771 Miller, John Maurice Philippine Folklore Stories etext10801 Coleridge, Samuel Taylor, 1772-1834 Coleridge's Literary Remains, Volume 4. etext10843 Yerkes, Robert M., 1876-1956 The Mental Life of Monkeys and Apes etext10945 Aytoun, W. E. (William Edmondstoune), 1813-1865 Lays of the Scottish Cavaliers and Other Poems etext10946 Hill, S. C. (Samuel Charles), 1857-1926 Three Frenchmen in Bengal etext10947 The Best American Humorous Short Stories etext10953 Thiers, Adolphe, 1797-1877 Histoire de la Révolution française, Tome 5 etext10962 Aitken, Edward Hamilton, 1851-1909 Concerning Animals and Other Matters etext10975 Huygens, Constantijn, 1596-1687 Vitaulium: Hofwyck en Spaansche Wijsheit etext10989 Anonymous Our Saviour etext11029 Brinton, Daniel Garrison, 1837-1899 American Hero-Myths etext11064 Kingsley, Charles, 1819-1875 Andromeda and Other Poems etext11120 Tuthill, Louisa C. Hurrah for New England! etext11175 Maupassant, Guy de, 1850-1893 L'inutile beauté etext11188 Jacobs, W. W. (William Wymark), 1863-1943 The Temptation of Samuel Burge etext11231 Melville, Herman, 1819-1891 Bartleby, the Scrivener etext11240 Johnston, William Andrew The Apartment Next Door etext11294 Leino, Eino, 1878-1926 Juhana Herttuan ja Catharina Jagellonican lauluja etext11317 Various De Aarde en haar Volken, Jaargang 1877 etext11337 Ellis, Edward Sylvester, 1840-1916 Cowmen and Rustlers etext11358 Various The Atlantic Monthly, Volume 08, No. 48, October, 1861 etext11424 Henry, Alice, 1857-1943 The Trade Union Woman etext11484 Verne, Jules, 1828-1905 Le pilote du Danube etext11503 Bacheller, Irving, 1859-1950 Keeping up with Lizzie etext11510 etext11511 Defoe, Daniel, 1661?-1731 Robinsono Kruso etext11514 King, Grace E. Balcony Stories etext11608 Bell, Lilian, -1929 From a Girl's Point of View etext11610 Le Fanu, Joseph Sheridan, 1814-1873 Madam Crowl's Ghost and the Dead Sexton etext11628 Gosse, Edmund, 1849-1928 Gossip in a Library etext11631 Various The Mirror of Literature, Amusement, and Instruction etext11632 Webster, Thomas Woman: Man's Equal etext11654 Moore, George (George Augustus), 1852-1933 Confessions of a Young Man etext15630 Wiggin, Kate Douglas Smith, 1856-1923 Polly Oliver's Problem etext11680 Cooke, George Willis, 1848-1923 George Eliot; a Critical Study of Her Life, Writings & Philosophy etext11692 The German Classics of the Nineteenth and Twentieth Centuries, Volume 03 etext11693 The world's great sermons, Volume 08 etext11702 Ford, Henry Jones, 1851-1925 Washington and his colleagues; a chronicle of the rise and fall of federalism etext11706 Various The Mirror of Literature, Amusement, and Instruction etext11708 etext11734 Various Scientific American Supplement, No. 460, October 25, 1884 etext11750 Le Fanu, Joseph Sheridan, 1814-1873 J. S. Le Fanu's Ghostly Tales, Volume 3 etext11757 Bianco, Margery Williams, 1880-1944 The Velveteen Rabbit etext11775 Human Genome Project Chromosome Number 01 etext11790 Human Genome Project Chromosome Number 16 etext11792 Human Genome Project Chromosome Number 18 etext11858 Haworth, Paul Leland George Washington: Farmer etext11862 Various The Mirror of Literature, Amusement, and Instruction etext11866 Defoe, Daniel, 1661?-1731 The Life and Most Surprising Adventures of Robinson Crusoe, of York, Mariner (1801) etext11888 Various The Mirror of Literature, Amusement, and Instruction etext11901 Barrie, J. M. (James Matthew), 1860-1937 Tommy and Grizel etext11950 Seybert Commission, The Preliminary Report of the Commission Appointed by the University of Pennsylvania to Investigate Modern Spiritualism etext11998 Furman, Lucy Sight to the Blind etext12008 Monteyne, Lode, 1886-1959 Geerten Basse etext12027 Darrow, Clarence, 1857-1938 Crime: Its Cause and Treatment etext12055 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext12093 Keller, Helen, 1880-1968 The Song of the Stone Wall etext12112 Goldfrap, John Henry, 1879-1917 The Boy Scouts of the Eagle Patrol etext12117 Bang, Herman, 1857-1912 Excentriske noveller etext12219 Brinton, Daniel Garrison, 1837-1899 Ancient Nahuatl Poetry etext12250 etext12283 Björkman, Edwin, 1866-1951 The Soul of a Child etext12328 Kennan, George, 1845-1924 Tent Life in Siberia etext12350 Greenbaum, Florence Kreisler The International Jewish Cook Book etext12354 Stowe, Harriet Beecher, 1811-1896 Pink and White Tyranny etext12398 Richardson, Samuel, 1689-1761 Clarissa Harlowe; or the history of a young lady — Volume 9 etext12475 Mackay, Isabel Ecclestone, 1875-1928 Fires of Driftwood etext12506 Huxley, Thomas Henry, 1825-1895 Critiques and Addresses etext12566 Janin, Jules Gabriel, 1804-1874 Contes, Nouvelles et Recits etext12574 Various The Mirror of Literature, Amusement, and Instruction etext12609 McHugh, Hugh Back to the Woods etext12632 Fields, James T., 1817-1881 Yesterdays with Authors etext12663 Bower, B. M., 1874-1940 The Phantom Herd etext12703 Andersen, H. C. (Hans Christian), 1805-1875 Lille pige med svovlstikkerne. English etext12743 Bennett, Arnold, 1867-1931 The Author's Craft etext12755 Richardson, James D. (James Daniel), 1843-1914 A Compilation of the Messages and Papers of the Presidents etext12828 Le Fanu, Joseph Sheridan, 1814-1873 Two Ghostly Mysteries etext12926 Sharp, Cecil J. The Morris Book, Part 1 etext12939 Driscoll, James R. [pseud.] The Brighton Boys with the Submarine Fleet etext12945 Shaler, Robert The Boy Scouts of the Geological Survey etext12966 Various The Mirror of Literature, Amusement, and Instruction etext12997 Patchin, Frank Gee, 1861-1925 The Pony Rider Boys in the Grand Canyon etext13005 Boker, George Henry, 1823-1890 Representative Plays by American Dramatists: 1856-1911: Francesca da Rimini etext13009 Ogg, Frederic Austin, 1878-1951 The Reign of Andrew Jackson etext13031 Fletcher, Alice C. (Alice Cunningham), 1838-1923 Indian Games and Dances with Native Songs etext13084 Shaw, Bernard, 1856-1950 Back to Methuselah etext13128 Landor, Arnold Henry Savage, 1865-1924 Corea or Cho-sen etext13135 Beach, Rex Ellingwood, 1877-1949 Pardners etext13157 Anonymous Is Ulster Right? etext13162 Brame, Charlotte M., 1836-1884 Coralie etext13168 Dimock, A. W. Dick in the Everglades etext13228 Rhees, Rush The Life of Jesus of Nazareth etext13259 Tolstoy, Leo, graf, 1828-1910 Ylösnousemus III etext13300 Mukerji, A. P. The Doctrine and Practice of Yoga etext13363 Ditchfield, P. H. (Peter Hampson), 1854-1930 The Parish Clerk etext13399 Various Scientific American Supplement, No. 530, February 27, 1886 etext13462 Various Notes and Queries, Number 46, September 14, 1850 etext13469 Broadbent, R. J. A History of Pantomime etext13487 Bullock, Tom, 1873-1964 The Ideal Bartender etext13513 Various Notes and Queries, Number 04, November 24, 1849 etext13573 Ward, Humphry, Mrs., 1851-1920 Elizabeth's Campaign etext13605 Hakluyt, Richard, 1552-1616 The Principal Navigations, Voyages, Traffiques, and Discoveries of The English Nation, Vol. XII., America, Part I. etext18128 Marcoy, Paul, 1815-1888 Tocht naar de dalen van den kinaboom (Peru) etext18134 Talbot, Frederick Arthur Ambrose, 1880- Sixteen Months in Four German Prisons etext18167 Pina, Rui de, 1440-1521 Chronica d'el rei D. Diniz (Vol. II) etext18203 Schoonees, Pieter Cornelis, 1891-1970 Die prosa van die twede Afrikaanse beweging etext18206 Mindeleff, Cosmos, 1863- Navaho Houses, pages 469-518 etext13607 Thiers, Adolphe, 1797-1877 Histoire de la Révolution française, Tome 10 etext13631 Various The Atlantic Monthly, Volume 12, No. 71, September, 1863 etext13646 Lear, Edward, 1812-1888 A Book of Nonsense etext13668 Sand, George, 1804-1876 Le château des Désertes etext13695 Zola, Émile, 1840-1902 A Love Episode etext13714 Materials Toward a Bibliography of the Works of Talbot Mundy etext13723 Bennett, Arnold, 1867-1931 Leonora etext13726 Plato, 427? BC-347? BC Apology, Crito, and Phaedo of Socrates etext13770 Various Lippincott's Magazine of Popular Literature and Science etext13801 Ward, Humphry, Mrs., 1851-1920 Harvest etext13809 King, Alfred Castner Mountain idylls, and Other Poems etext13833 Grinnell, George Bird, 1849-1938 Blackfeet Indian Stories etext13837 Sand, George, 1804-1876 Correspondance, 1812-1876 — Tome 2 etext13859 Ralphson, G. Harvey (George Harvey), 1879-1940 Boy Scouts in Southern Waters etext13888 Church, R. W. (Richard William), 1815-1890 Bacon etext13903 Various Punch, or the London Charivari, Volume 152, January 3, 1917 etext13934 Harris, John William, 1849- Inferences from Haunted Houses and Haunted Men etext13948 Dumas père, Alexandre, 1802-1870 Le vicomte de Bragelonne, Tome II. etext13953 Achleitner, Arthur, 1858-1927 Celsissimus etext13959 Sykes, Percy Molesworth, Sir, 1867-1945 Door Oost-Perzië etext13973 Whistler Stories etext14091 Burroughs, Barkham Burroughs' Encyclopaedia of Astounding Facts and Useful Information, 1889 etext14104 Pierson, Charles Wheeler, 1864-1934 Our Changing Constitution etext14119 Jesse, F. Tennyson (Fryniwyd Tennyson), 1888-1958 The White Riband etext14133 Stevenson, Robert Louis, 1850-1894 David Balfour, Second Part etext14169 Benson, Irene Elliott Ethel Hollister's Second Summer as a Campfire Girl etext14207 Lassila, Maiju, 1868-1918 Pojat asialla etext14239 Austin, John Mather Golden Steps to Respectability, Usefulness and Happiness etext14297 Davis, Richard Harding, 1864-1916 The Congo and Coasts of Africa etext14397 Pergaud, Louis, 1882-1915 Le roman de Miraut - Chien de chasse etext14451 White, Stewart Edward, 1873-1946 African Camp Fires etext14535 Stevenson, Robert Louis, 1850-1894 A Christmas Sermon etext14555 Grimké, Archibald Henry, 1849-1930 William Lloyd Garrison etext14562 Godkin, James The Land-War In Ireland (1870) etext14652 Various Punch, or the London Charivari, Volume 102, June 4, 1892 etext14653 Bennett, Arnold, 1867-1931 The Feast of St. Friend etext14678 etext14680 Various The Continental Monthly, Vol. 1, No. 5, May, 1862 etext14681 Galton, Francis, Sir, 1822-1911 The Art of Travel etext14764 Snoek, Johan Martinus, 1920- The Grey Book etext14844 Lynde, Francis, 1856-1930 The Taming of Red Butte Western etext14867 Ellinwood, Frank F., 1826-1908 Oriental Religions and Christianity etext14894 Päivärinta, Pietari, 1827-1913 Elämän hawainnoita VI: Rakkauden suurin uhri; Sortunut; Olkkos=Kaisa etext14943 Parker, Cornelia Stratton, 1885- An American Idyll etext14967 Smith, Francis Hopkinson, 1838-1915 A Gentleman Vagabond and Some Others etext14970 Cicero, Marcus Tullius, 106 BC-43 BC Academica etext14988 Cicero, Marcus Tullius, 106 BC-43 BC Cicero's Tusculan Disputations etext15066 Hernández, José, 1834-1886 La Vuelta de Martín Fierro etext15210 Du Bois, W. E. B. (William Edward Burghardt), 1868-1963 Darkwater etext15242 Conquest, Joan Desert Love etext15245 Strickland, Samuel, 1804-1867 Twenty-Seven Years in Canada West etext15257 Longueville, Thomas The Curious Case of Lady Purbeck etext15269 Abbott, John S. C. (John Stevens Cabot), 1805-1877 The Empire of Russia etext15304 Clarkson, Thomas, 1760-1846 A Portraiture of Quakerism, Volume 3 etext15355 Richards, Laura Elizabeth Howe, 1850-1943 Nautilus etext15429 Huxley, Leonard, 1860-1933 Thomas Henry Huxley etext15539 Various The Great Round World and What Is Going On In It, Vol. 1, No. 27, May 13, 1897 etext15540 Optic, Oliver, 1822-1897 Across India etext15557 Dostoyevsky, Fyodor, 1821-1881 Carnet d'un inconnu etext15611 Roschier, Tekla, 1870-1928 Auringon noustessa etext15620 Warren, Henry White, 1831-1912 Recreations in Astronomy etext15640 Various Notes and Queries, Number 64, January 18, 1851 etext15645 Daudet, Alphonse, 1840-1897 Port-Tarascon etext15662 Hunter, John, 1738-1821 An Historical Journal of the Transactions at Port Jackson and Norfolk Island etext15697 Hawthorne, Nathaniel, 1804-1864 True Stories of History and Biography etext15707 Darwin, Erasmus, 1731-1802 Zoonomia, Vol. I etext15708 Various Scientific American Supplement, No. 794, March 21, 1891 etext15799 Caswell, Harriet S., 1834- Walter Harland etext15860 Various The Atlantic Monthly, Volume 13, No. 79, May, 1864 etext15885 Corbière, Édouard, 1793-1875 Les pilotes de l'Iroise etext15895 Adams, J. S., Mrs., 1845-1885 Allegories of Life etext15913 Various The Atlantic Monthly, Volume 12, No. 74, December, 1863 etext15968 English, George Bethune, 1787-1828 The Grounds of Christianity Examined by Comparing The New Testament with the Old etext15976 Kipling, Rudyard, 1865-1936 Puck of Pook's Hill etext15992 Benson, Robert Hugh, 1871-1914 Come Rack! Come Rope! etext16008 Carleton, William, 1794-1869 Ellen Duncan; And The Proctor's Daughter etext16032 Various The Great Round World and What Is Going On In It, Vol. 1, No. 51, October 28, 1897 etext16145 Grey, George, 1812-1898 Journals of Two Expeditions of Discovery in North-West and Western Australia, Volume 2 etext16184 etext16209 Hazlitt, William, 1778-1830 Lectures on the English Poets etext16245 Staël, Madame de (Anne-Louise-Germaine), 1766-1817 Ten Years' Exile etext16300 Brooke, Frances, 1724-1789 The History of Emily Montague etext16305 Griswold, B. J. (Bert Joseph), 1873-1927 Crayon and Character: Truth Made Clear Through Eye and Ear etext16350 Disraeli, Isaac, 1766-1848 Curiosities of Literature, Vol. 2 etext16375 Benson, Robert Hugh, 1871-1914 The King's Achievement etext16381 Mason, A. E. W. (Alfred Edward Woodley), 1865-1948 The Summons etext16385 Almeida, Nicolau Tolentino de, 1740-1811 Obras poéticas de Nicoláo Tolentino de Almeida, Tom. II etext16386 Anonymous Búhay na Pinagdaanan ni Juan Tamad na Anac ni Fabio at ni Sofia etext16392 Stowe, Harriet Beecher, 1811-1896 Setä Tuomon tupa etext16402 Dryden, John, 1631-1700 The works of John Dryden, $c now first collected in eighteen volumes. $p Volume 07 etext16422 Flygare-Carlén, Emilie, 1807-1892 The Home in the Valley etext16430 Various The Atlantic Monthly, Volume 04, No. 23, September, 1859 etext16455 Lorenz, Edmund S. The Otterbein Hymnal etext16460 Sellers, William Edward From Aldershot to Pretoria etext16505 Glasgow, Ellen Anderson Gholson, 1873-1945 The Voice of the People etext16573 Lynde, Francis, 1856-1930 The Honorable Senator Sage-Brush etext16597 Seltzer, Charles Alden, 1875-1942 Square Deal Sanderson etext16601 Stoddart, Thomas T The Death-Wake etext16633 Lopes, Fernão, 1380-1459 Chronica de el-rei D. Pedro I etext16651 Dell, Ethel M. (Ethel May), 1881-1939 The Safety Curtain, and Other Stories etext16693 Bryant, Sara Cone, 1873- Stories to Tell Children etext16772 Thérèse, de Lisieux, Saint, 1873-1897 The Story of a Soul (L'Histoire d'une Âme): The Autobiography of St. Thérèse of Lisieux etext16784 Jefferson, Thomas, 1743-1826 Memoir, Correspondence, And Miscellanies, From The Papers Of Thomas Jefferson, Volume 4 etext16838 Juva, Valter, 1865-1922 Valkoinen kameeli ja muita kertomuksia itämailta etext16854 Hahnsson, Theodolinda (Sofia Theodolinda), 1838-1919 Mäkelän Liisu etext16878 Newton, Isaac, Sir, 1642-1727 Observations upon the Prophecies of Daniel, and the Apocalypse of St. John etext16889 Morrow, Honoré, 1880-1940 The Enchanted Canyon etext16967 etext17068 Bingham, Clifton The Animals' Rebellion etext17086 Lee, Holme, [pseud.], 1828-1900 The Vicissitudes of Bessie Fairfax etext17129 Dyson, Edward, 1865-1931 The Missing Link etext17165 Paine, Dorothy C. (Dorothy Charlotte) A Little Florida Lady etext17190 Collison-Morley, Lacy, 1875- Greek and Roman Ghost Stories etext17223 Valera, Juan, 1824-1905 Pepita Jiménez etext17226 Burnett, Frances Hodgson, 1849-1924 Emily Fox-Seton etext17231 etext17274 Hillis, Newell Dwight, 1858-1929 The Investment of Influence etext17312 Verne, Jules, 1828-1905 Martin Paz etext17323 Maspero, G. (Gaston), 1846-1916 History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 3 (of 12) etext17326 Maspero, G. (Gaston), 1846-1916 History of Egypt, Chaldæa, Syria, Babylonia, and Assyria, Volume 6 (of 12) etext17461 Ferris, George T. (George Titus), 1840- The Great German Composers etext17505 Goncourt, Edmond de, 1822-1896 Journal des Goncourt (Deuxième série, troisième volume) etext17516 Zola, Émile, 1840-1902 L'argent etext17567 St. Mars, F., 1883-1921 The Way of the Wild etext17578 Gautier, Théophile, 1811-1872 Sacountala (1858) etext17600 Rohlfs, Gerhard, 1831-1896 Von Tripolis nach Alexandrien - 2. Band etext17680 Post, Emily, 1873-1960 The Title Market etext17713 Collado, Diego, -1638 Ars grammaticae Iaponicae linguae etext17780 Eliot, George, 1819-1880 Scenes of Clerical Life etext17804 etext17883 Ghislanzoni, Antonio, 1824-1893 Libro serio etext17913 Babcock, Retta Clemence etext17927 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 A Queda d'um Anjo etext17952 Ward, Wilfrid, Mrs., 1864-1932 Great Possessions etext18092 About, Edmond, 1828-1885 Germaine etext18094 Lamartine, Alphonse de, 1790-1869 History of the Girondists, Volume I etext18169 Shakespeare, William, 1564-1616 Mesure pour mesure etext18249 Lazell, Frederick John, 1870-1940 Some Summer Days in Iowa etext18265 Various Scientific American Supplement, No. 1178, June 25, 1898 etext18329 Patton, William, 1798-1879 The National Preacher, Vol. 2. No. 6., Nov. 1827 etext18332 Ewell, Martha Lewis Beckwith, 1841-1902 The Harvest of Years etext18431 Serviss, Garrett Putman, 1851-1929 Other Worlds etext18446 Murger, Henry, 1822-1861 Scènes de la vie de bohème etext18563 Sinclair, Bertrand W., 1881-1972 Raw Gold etext18621 Birdsall, Ralph, 1871-1918 The Story of Cooperstown etext18631 Catherwood, Mary Hartwell, 1847-1902 The Lady of Fort St. John etext18683 Brown, William Perry, 1847-1923 Ralph Granger's Fortunes etext18734 Various The Wit and Humor of America, Volume III. (of X.) etext18751 etext18758 Raine, Allen, 1863-1908 By Berwen Banks etext18763 Various Scientific American Supplement, No. 365, December 30, 1882 etext18769 Howard, Bronson, 1842-1908 The Autobiography of a Play etext18802 Rizal, José, 1861-1896 Paalaala sa mga Mapagusapin etext18845 Various Seeing Europe with Famous Authors, Volume 7 etext18854 Bastard, Algernon The Gourmet's Guide to Europe etext18864 Chateaubriand, François-René, vicomte de, 1768-1848 Mémoires d'Outre-Tombe, Tome I etext18925 Sue, Eugène, 1804-1857 Les mystères de Paris, Tome V etext18938 etext18940 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 La cité de Carcassonne etext19110 Various The Arena etext19258 Appleton, Victor [pseud.] Tom Swift and the Electronic Hydrolung etext19260 Bjørnson, Bjørnstjerne, 1832-1910 Synnöve Päiväkumpu etext19269 Universal House of Justice A Compilaton on Women etext19299 `Abdu'l-Bahá, 1844-1921 The Will And Testament of ‘Abdu’l-Bahá etext19306 Dolens, Noël Wat er te zien valt in Armenië etext19342 Alpheus, A. Complete Hypnotism, Mesmerism, Mind-Reading and Spiritualism etext19375 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 A senhora Rattazzi etext19468 Jarrett, Bede, 1881-1934 Mediaeval Socialism etext19483 Dolet, Étienne, 1509-1546 La maniere de bien traduire d'une langue en aultre etext19510 Sinclair, Bertrand W., 1881-1972 North of Fifty-Three etext19520 Hemmo, Kaarlo, 1858-1940 Järkimiehet miettimässä etext19575 Montgomery, L. M. (Lucy Maud), 1874-1942 Anne of Avonlea etext19576 Montgomery, L. M. (Lucy Maud), 1874-1942 Anne of Green Gables etext19580 James, Henry, 1843-1916 An International Episode etext19591 Boccaccio, Giovanni, 1313-1375 De Decamerone van Boccaccio etext19601 Barnum, Vance Frank and Andy Afloat etext19668 McHugh, Hugh Skiddoo! etext19669 Durham, M. E. (Mary Edith), 1863-1944 Twenty Years Of Balkan Tangle etext19692 Omond, George W. T. (George William Thomson), 1846-1929 Peeps At Many Lands: Belgium etext19703 Cable, George Washington, 1844-1925 Madame Delphine etext19713 Fillmore, Parker, 1878-1944 The Laughing Prince etext19714 Henty, G. A. (George Alfred), 1832-1902 With Frederick the Great etext19773 Various Suuren hiljaisuuden miehiä etext19806 etext19863 Tytler, Sarah, 1827-1914 The Old Masters and Their Pictures etext19866 Bosch, G. Zuid-Tirol etext19875 Thayer, William M. (William Makepeace), 1820-1898 The Bobbin Boy etext19931 Wilde, Percival, 1887-1953 The Reckoning etext19941 Bluett, Antony With Our Army in Palestine etext19945 De Benneville, James S. (James Seguin) Bakemono Yashiki (The Haunted House), Retold from the Japanese Originals etext28276 MacGregor, Mary Esther Miller, 1876-1961 The End of the Rainbow etext19992 Saint-Saëns, Camille, 1835-1921 Rimes familières etext20060 Heijermans, Herman, 1864-1924 Gevleugelde Daden etext20082 King, Charles, 1844-1933 Warrior Gap etext20133 Hope, Laura Lee Bunny Brown and His Sister Sue at Aunt Lu's City Home etext20166 Various Lyyra ja paimenhuilu etext20183 Morse, John T. (John Torrey), 1840-1937 John Quincy Adams etext20241 Painter, William, 1540?-1594 The Palace of Pleasure, Volume 1 etext20256 Quincy, Josiah, 1772-1864 Memoir of the Life of John Quincy Adams. etext20268 etext20274 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 The History of England, from the Accession of James II, Volume 1, Chapter 02 etext20286 Cogger, Edward P. Funny Alphabet etext20324 Hope, Laura Lee The Outdoor Girls at Bluff Point etext20325 Scarron, Monsieur, 1610-1660 Le prince corsaire etext20425 Ewing, Juliana Horatia Gatty, 1841-1885 The Peace Egg and Other tales etext20489 Tyler, James Endell, 1789-1851 Henry of Monmouth, Volume 2 etext20565 Various The Continental Monthly, Vol. 6, No 2, August, 1864 etext20592 Hornung, E. W. (Ernest William), 1866-1921 The Amateur Cracksman etext20667 Dellenbaugh, Frederick Samuel, 1853-1935 A Canyon Voyage etext20677 Bakunin, Mikhail, 1814-1876 God and the State etext20705 Klingsor, Tristan, 1874-1966 Humoresques etext20759 Various Punch, or the London Charivari, Volume 103, December 10, 1892 etext20794 Bosboom-Toussaint, A. L. G. (Anna Louisa Geertruida), 1812-1886 Majoor Frans etext20828 Jones, James Athearn, 1791-1854 Traditions of the North American Indians, Vol. 3 etext20847 Müller, F. Max (Friedrich Max), 1823-1900 India: What can it teach us? etext20863 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Major Vigoureux etext20864 Thackeray, William Makepeace, 1811-1863 Vanity Fair. French etext20875 Lagrange, S. Een goudzoeker op Madagascar etext20897 Chesterton, G. K. (Gilbert Keith), 1874-1936 A Short History of England etext20916 Unknown The Arabian Nights etext20921 Hartley, Marsden Adventures in the Arts etext20962 Walker, Abbie Phillips, 1867- Sandman's Goodnight Stories etext20983 Sheldon, Charles Monroe, 1857-1946 Robert Hardy's Seven Days etext21007 Pearson, Thomas Gilbert The Bird Study Book etext29209 Merwin, Sam, 1910-1996 Reel Life Films etext21029 Noyes, Alfred, 1880-1958 The New Morning etext21114 Birkhead, Alice Heroes of Modern Europe etext21125 Ellis, Edward Sylvester, 1840-1916 The Boy Patriot etext21132 Wilson, Theodore P. Frank Oldfield etext21137 Reed, Talbot Baines, 1852-1893 Parkhurst Boys etext21144 etext21181 Brontë, Charlotte, 1816-1855 Villette etext21187 Hough, Lewis Dr. Jolliffe's Boys etext21192 Baum, L. Frank (Lyman Frank), 1856-1919 The Life and Adventures of Santa Claus etext21288 Various The Atlantic Monthly, Volume 17, No. 101, March, 1866 etext21398 Hawkes, Clarence Black Bruin etext21435 Conrad, Joseph, 1857-1924 Lord Jim etext21467 Kingston, William Henry Giles, 1814-1880 The Log House by the Lake etext21521 Carroll, Lewis, 1832-1898 The Hunting of the Snark etext21549 Marryat, Frederick, 1792-1848 Jacob Faithful etext21575 Marryat, Frederick, 1792-1848 Poor Jack etext21595 Various The American Missionary — Volume 50, No. 2, February, 1896 etext21608 Weir, James, 1856-1906 The Dawn of Reason etext21611 Unknown The Runaway etext21670 Serviss, Garrett Putman, 1851-1929 Edison's Conquest of Mars etext21690 Goodwin, Maud Wilder Flint etext21694 Ballantyne, R. M. (Robert Michael), 1825-1894 The Prairie Chief etext21796 Scott-Elliot, W. The Story of Atlantis and the Lost Lemuria etext21836 Bailey, Arthur Scott, 1877-1949 The Tale of Jasper Jay etext21862 Söderberg, Hjalmar Förvillelser etext21877 Seymour, Charles, 1885-1963 Woodrow Wilson and the World War etext21900 Goodale, S. L. The Principles of Breeding etext21946 Alcott, Louisa May, 1832-1888 Good wives. Dutch etext21959 Lorimer, George Horace, 1868-1937 Letters from a Self-Made Merchant to His Son etext22014 Jackson, Leroy F. The Peter Patter Book of Nursery Rhymes etext22082 Lincoln, Abraham, 1809-1865 The Emancipation Proclamation etext22097 Finn, James Byeways in Palestine etext22104 London, Jack, 1876-1916 The Acorn-Planter etext22125 Berenson, Bernard, 1865-1959 The Venetian Painters of the Renaissance etext22136 Burton, John Hill The Book-Hunter etext22154 Vincent, Harl, 1893-1968 Creatures of Vibration etext22171 Ernst, Paul, 1899-1985 The Radiant Shell etext30386 Marlowe, Stephen, 1928-2008 The One and the Many etext22209 Herzog, Rudolf, 1869-1943 Siegfried, der Held etext22312 Northern Nut Growers Association Report of the Proceedings at the Second Annual Meeting etext22324 Nichols, George Herbert Fosdike Pushed and the Return Push etext22326 Hawes, Stephen, -1523 The cõforte of louers etext22390 Perry, Lawrence, 1875-1954 Prince or Chauffeur? etext22422 Warner, Anna Bartlett, 1824-1915 Tired Church Members etext22476 Sackville-West, V. (Victoria), 1892-1962 The Tale Of Mr. Peter Brown - Chelsea Justice etext22489 Hilton, Warren, 1874- Power of Mental Imagery etext22525 Wilson, John Dover, 1881-1969 John Lyly etext22528 Various Cerddi'r Mynydd Du etext22655 Moukhanoff, Michael Nelka etext22684 Hawaii Patent Laws of the Republic of Hawaii etext22728 Darwin, Charles, 1809-1882 The Foundations of the Origin of Species etext22767 etext22893 Weinbaum, Stanley Grauman, 1902-1935 Pygmalion's Spectacles etext22918 Bizet, Georges, 1838-1875 Lettres à un ami, 1865-1872 etext22926 Various The Continental Monthly, Vol. 6, No 3, September 1864 etext22932 The First Epistle General of Peter etext23077 Brontë, Charlotte, 1816-1855 Jane Eyre etext23103 Aycock, Roger D., 1914-2004 Traders Risk etext23107 Synge, M. B. (Margaret Bertha), -1939 A Book of Discovery etext23133 Negreiros, José Sobral de Almada, 1893-1970 K4 O Quadrado Azul etext23188 Kingston, William Henry Giles, 1814-1880 Michael Penguyne etext23194 Reynolds, Mack, 1917-1983 The Common Man etext23202 Leprohon, Mrs. (Rosanna Eleanor), 1832?-1879 Armand Durand etext23216 Huysmans, J.-K. (Joris-Karl), 1848-1907 Sac-Au-Dos etext23258 Danckaerts, Jasper, 1639- Journal of Jasper Danckaerts, 1679-1680 etext23314 Anonymous Spring Blossoms etext23389 Ballantyne, R. M. (Robert Michael), 1825-1894 Handbook to the new Gold-fields etext23394 Lawrence, D. H. (David Herbert), 1885-1930 Look! We Have Come Through! etext23434 Haseman, Leonard, 1884-1969 An Elementary Study of Insects etext23441 etext23447 Hancock, H. Irving (Harrie Irving), 1868-1922 Uncle Sam's Boys in the Philippines etext23465 Taggart, Mabel G. The Story of the Three Goblins etext23481 Bergengren, Ralph, 1871-1947 The Perfect Gentleman etext23495 Guerber, H. A. (Hélène Adeline), 1859-1929 The Story of the Greeks etext23551 Murfree, Mary Noailles, 1850-1922 Who Crosses Storm Mountain? etext23576 Reid, Mayne, 1818-1883 Quadrupeds, What They Are and Where Found etext23660 Carrington, Hereward, 1880-1959 The Problems of Psychical Research etext23667 Seton, Ernest Thompson, 1860-1946 Woodland Tales etext23703 Smith, Francis Hopkinson, 1838-1915 The Parthenon By Way Of Papendrecht etext23709 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Burgess Bird Book for Children etext23746 Various Punch, or the London Charivari, Vol. 150, April 12, 1916 etext23811 Hardy, Robina F. The Good Ship Rover etext23880 Hall, E. Raymond (Eugene Raymond), 1902-1986 A New Name for the Mexican Red Bat etext23919 Sanches, António Nunes Ribeiro, 1699-1783 Cartas sobre a educação da mocidade etext23936 Stevenson, Robert Louis, 1850-1894 Treasure Island etext23937 Wilde, Oscar, 1854-1900 The Happy Prince and Other Tales etext23947 Peng, Zunsi, jin shi 1737 蜀碧 etext24007 Le Bon, Gustave, 1841-1931 Psychologie des foules etext24027 Donglukuangsheng, 17th cent. 醉醒石 etext24034 Hope, Anthony, 1863-1933 The King's Mirror etext24037 Yan, Zhitui, 531-591 顔氏家訓 etext24039 Laozi 老子 etext24083 Mallock, W. H. (William Hurrell), 1849-1923 Every Man His Own Poet etext24086 Ballantyne, R. M. (Robert Michael), 1825-1894 Over the Rocky Mountains etext24144 Ma, Huan, fl. 1414-1451 瀛涯勝覽 etext24207 Various Punch, or the London Charivari, May 6, 1914 etext24254 Green, John Richard, 1837-1883 History of the English People, Volume VI etext24263 Billinghurst, Percy J. A Hundred Anecdotes of Animals etext24294 Yunyangchichidaoren, 17th/18th cent. 警悟鐘 etext24322 Various Scientific American Supplement, No. 664, September 22,1888 etext24411 Garrett, João Batista da Silva Leitão de Almeida, 1799-1854 Miragaia etext24500 Acheson, Arthur, 1864-1930 Shakespeare's Lost Years in London, 1586-1592 etext24560 Wells, Carolyn, 1862-1942 The Jingle Book etext24566 Tabakow, Lou, 1915?-1981 Faithfully Yours etext24579 Sears, George Washington, 1821-1890 Woodcraft etext24604 etext24699 Clark, James Bayard, 1869- Some Personal Recollections of Dr. Janeway etext24727 Montessori, Maria, 1870-1952 Spontaneous Activity in Education etext24730 Wilkie, Katharine Elliott, 1904- Daniel Boone etext24735 etext338 Zitkala-Sa, 1876-1938 Old Indian Legends etext24812 Kingston, William Henry Giles, 1814-1880 The Three Midshipmen etext24823 Eliot, George, 1819-1880 Silas Marner etext24887 Lehmann-Nitsche, Robert, 1872-1938 Ulrich Schmidel etext24893 Nicoll, Maurice, 1884-1953 In Mesopotamia etext24905 Mantere, Niilo, 1870-1954 Elämän polulla etext24925 Caro, Madame P. Amar es vencer etext24941 Various The Nursery, October 1873, Vol. XIV. No. 4 etext24975 Fontenay, Charles Louis, 1917-2007 The Gift Bearer etext24981 Pierce, Ruth Trapped in 'Black Russia' etext25065 Various Blackwood's Edinburgh Magazine, Volume 54, No. 334, August 1843 etext25078 Yaco, Murray F. No Moving Parts etext25084 Palmer, G. H. (George Henry), 1871- Bell's Cathedrals: The Cathedral Church of Rochester etext25130 Xuan, Ding, 1832-1880? 夜雨秋燈錄 etext25135 Lowry, Edward P. With the Guards' Brigade from Bloemfontein to Koomati Poort and Back etext25143 Garis, Howard Roger, 1873-1962 The Curlytops and Their Playmates etext25166 Garrett, Randall, 1927-1987 What The Left Hand Was Doing etext25177 Giacosa, Giuseppe, 1847-1906 Tristi Amori etext25235 Anonymous A Dialogue Between Dean Swift and Tho. Prior, Esq. etext25263 Zhou, Gong, -1105 BC 周禮 etext25270 Kelleam, Joseph Everidge, 1913-1975 Hunters Out of Space etext25282 Herzl, Theodor, 1860-1904 Der Judenstaat. English etext25305 Cleland, John, 1709-1789 Memoirs Of Fanny Hill etext25343 Chantre, B., Madame Onderweg in Tunis etext25344 Hawthorne, Nathaniel, 1804-1864 The Scarlet Letter etext25347 Wu, Jing, 670-749 貞觀政要 etext25353 Cunningham, John, 1819-1893 The Ordinance of Covenanting etext25354 Loisette, A. (Alphonse) Assimilative Memory etext25360 Dai, Zhen, 1724-1777 孟子字義疏證 etext25370 Various Le Tour du Monde; Ava etext25384 Alger, Horatio, 1832-1899 Ben's Nugget etext25405 France, Anatole, 1844-1924 Honey-Bee etext25406 France, Anatole, 1844-1924 Marguerite etext25415 Unknown Charlie Scott etext25452 Campbell, R. W. The Kangaroo Marines etext25518 etext25523 Tomlinson, H. M. (Henry Major), 1873-1958 Old Junk etext25561 Lü, Sheng 癡人說夢記 etext25566 Northern Nut Growers Association Report of the Proceedings at the Fifteenth Annual Meeting etext25575 Chateaubriand, François-René, vicomte de, 1768-1848 Mémoires d'Outre-Tombe, Tome IV etext25602 Yinmeishanren 蘭花夢奇傳 etext25628 Godwin, Tom, 1915-1980 The Nothing Equation etext25630 Raymond, Evelyn, 1843-1910 Dorothy's Travels etext25741 Wilson, Ann A Matter of Honor etext25799 Merwin, Bannister The Girl and The Bill etext25858 Chapman, Allen The Radio Boys Trailing a Voice etext25958 Various The American Missionary — Volume 52, No. 2, June, 1898 etext25963 World's War Events, Vol. II etext25974 Martin, T. T. (Thomas Theodore), 1862-1939 God's Plan with Men etext25975 Denton, William, 1823-1883 The Deluge in the Light of Modern Science etext26010 Tarbell, Lee Valley of the Croen etext26062 Dibble, Sheldon, 1809-1845 Thoughts on Missions etext26105 Anonymous The Oaths, Signs, Ceremonies and Objects of the Ku-Klux-Klan. etext26124 Maréchal, Sylvain, 1750-1803 Le jugement dernier des rois etext26171 Zùccoli, Luciano, 1868-1929 La volpe di Sparta etext26189 Garland, Hamlin, 1860-1940 A Spoil of Office etext26214 Marquis, Thomas Guthrie, 1864-1936 The Jesuit Missions: etext26223 Kipling, Rudyard, 1865-1936 Just So Stories etext26227 Unknown The Book of Jonah etext26262 McAulay, Alexander, 1863-1931 Utility of Quaternions in Physics etext26263 Dahn, Felix, 1834-1912 Ein Kampf um Rom. Finnish etext26300 Abbott, Jacob, 1803-1879 Peter the Great etext26349 Vlaamsch Belgie sedert 1830 etext26354 etext26356 Rives, Amélie, 1863-1945 A Brother To Dragons and Other Old-time Tales etext26357 Wright, David Is The Young Man Absalom Safe? etext26388 Harrison, Charles, -1943 A Humorous History of England etext26424 Great Men and Famous Women. Vol. 4 etext26480 Ibsen, Henrik, 1828-1906 Kongs-emnerne. Esperanto etext26486 Gilchrist, Murray, 1868-1917 The Dukeries etext26505 Doneghy, George W. The Old Hanging Fork and Other Poems etext26511 Michel, Ernest, 1837- À travers l'hémisphère sud, ou Mon second voyage autour du monde etext26536 Pangborn, Edgar, 1909-1976 The Good Neighbors etext26583 Defoe, Daniel, 1661?-1731 The Fortunes and Misfortunes of the Famous Moll Flanders etext26627 Holmes, F. M. (Frederic Morell), 1851- The Island House etext26678 Smith, F. Berkeley (Frank Berkeley), 1869-1931 A Village of Vagabonds etext26698 Ford, Ford Madox, 1873-1939 Privy Seal etext26699 Palma, Rafael, 1874-1939 The Woman and the Right to Vote etext26729 Ling, Mengchu, 1580-1644 二刻拍案驚奇 etext26784 Euripides, 480? BC-406 BC Iphigeneia at Aulis etext26798 Shaw, George Russell, 1848-1937 The Genus Pinus etext26918 etext26957 Young, Robert F., 1915-1986 Star Mother etext26974 etext26983 Blasco Ibáñez, Vicente, 1867-1928 Sangre y arena etext27002 Mason, Richard Lee, -1824 Narrative of Richard Lee Mason in the Pioneer West, 1819 etext27017 Yin, Wen, 350 BC-284 BC 尹文子 etext27048 Lebert, Marie Las tecnologías y el libro para todos etext27108 Juqizi, 17th cent. 醒夢駢言 etext27116 Overton, Grant Martin, 1887-1930 When Winter Comes to Main Street etext27121 La Brète, Jean de, 1854-1945 Mi tio y mi cura etext27137 Cooper, Grace Rogers The Scholfield Wool-Carding Machines etext27188 Beresford, J. D. (John Davys), 1873-1947 The Wonder etext27209 Jones, Susan Morrow, 1864?-1926 The La Chance Mine Mystery etext27271 Jones, Henry Arthur, 1851-1929 Dolly Reforming Herself etext27272 Fitzhugh, Percy Keese, 1876-1950 Roy Blakeley's Camp on Wheels etext27284 Anstey, F., 1856-1934 The Talking Horse etext27355 Ames, Joseph Bushnell, 1878-1928 Shoe-Bar Stratton etext27399 Anonymous 麟兒報 etext27406 Axel Thordson and Fair Valborg etext27448 Eastman, Charles Alexander, 1858-1939 The Indian To-day etext27529 etext27541 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Agulha em Palheiro etext27566 Adam, Paul, 1862-1920 La Force etext27569 Braybrooke, Patrick, 1894- Gilbert Keith Chesterton etext27637 Queirós, José Maria Eça de, 1845-1900 A correspondência de Fradique Mendes etext27673 Sophocles, 495? BC-406 BC Oedipus King of Thebes etext27678 Coolidge, Susan, 1835-1905 Nine Little Goslings etext5326 Goethe, Johann Wolfgang von, 1749-1832 Venetianische Epigramme etext5331 Dom NATURAE etext5332 Irwin, Wallace, 1876-1959 The Love Sonnets of a Car Conductor etext5446 Ebers, Georg, 1837-1898 Uarda : a Romance of Ancient Egypt — Volume 08 etext5477 Ebers, Georg, 1837-1898 Cleopatra — Volume 05 etext5500 Bacon, Francis, 1561-1626 The Advancement of Learning etext27759 Cruttwell, Maud Luca Signorelli etext27772 Scarron, Monsieur, 1610-1660 Le Roman Comique etext27794 etext27816 Aristotle, 384 BC-322 BC Περί Ψυχής etext27855 Delly, pseud. Entre Deux Ames etext27862 Crozier, A. A. (Arthur Alger), 1856-1899 The Cauliflower etext27884 Holberg, Ludvig, baron, 1684-1754 Niels Klim's journey under the ground etext27900 Fernández y González, Manuel, 1821-1888 El manco de Lepanto etext28016 Savory, Isabel In the Tail of the Peacock etext28051 Carlton, Henry Fisk Caesar Rodney's Ride etext28114 Delly, pseud. Esclave... ou reine? etext28126 Various The Christian Foundation, Or, Scientific and Religious Journal, April, 1880 etext28159 Haapanen, Emmi, 1866-1947 Rahan valtaa etext28160 White, John H., 1933- The 'Pioneer': Light Passenger Locomotive of 1851 etext28171 Simonds, Frank H. (Frank Herbert), 1878-1936 They Shall Not Pass etext28207 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Noites de insomnia, offerecidas a quem não póde dormir. Nº 12 (de 12) etext28220 Freud, Sigmund, 1856-1939 Jenseits des Lustprinzips etext28287 Scott, Walter, Sir, 1771-1832 Lady of the Lake etext28316 Heath, Sidney, 1872- Bournemouth, Poole & Christchurch etext28344 Various Harper's Young People, February 3, 1880 etext28395 Various Harper's Young People, March 2, 1880 etext28396 Gems (?) of German Thought etext28514 Stringer, Arthur, 1874-1950 The Prairie Child etext28568 Michelet, Jules, 1798-1874 L'oiseau etext28577 Barrows, David Prescott, 1873-1954 The Negrito and Allied Types in the Philippines and The Ilongot or Ibilao of Luzon etext28593 Brown, Ritter When Dreams Come True etext28618 Thayer, William M. (William Makepeace), 1820-1898 From Farm House to the White House etext28620 Mellin, G. H. (Gustaf Henrik), 1803-1876 Helena Wrede etext28643 Garrett, Randall, 1927-1987 Belly Laugh etext28725 Nesbit, E. (Edith), 1858-1924 Harding's luck etext28743 Robbins, Mrs. S. S. Miss Ashton's New Pupil etext28770 The Story of Tim etext28774 Finnish Arts etext28775 Punnett, Reginald Crundall, 1875- Mendelism etext28887 Munsey, Frank Andrew, 1854-1925 The Boy Broker etext29068 Du Wés, Giles, -1535 An Introductorie for to Lerne to Read, To Pronounce, and to Speke French Trewly etext29074 Various The American Missionary—Volume 39, No. 02, February, 1885 etext29076 Morley, John, 1838-1923 Critical Miscellanies (Vol. 3 of 3) etext29085 Bill o'th' Hoylus End, 1836-1897 Adventures and Recollections etext29088 Dowd, Emma C., -1938 Polly of Lady Gay Cottage etext29111 Locker-Lampson, Hannah Jane What the Blackbird said etext29127 Aho, Kalle, 1865-1936 Epäilijä etext29138 Smith, Evelyn E., 1927-2000 The Doorway etext29148 Various Harper's Young People, September 21, 1880 etext29182 Eden, Charles Henry, 1839-1900 Lähetyssaarnaajan tytär etext29184 Various Lippincott's Magazine of Popular Literature and Science Volume 15, No. 89, May, 1875 etext29199 French, Allen, 1870-1946 The Siege of Boston etext29266 Bindloss, Harold, 1866-1945 Thurston of Orchard Valley etext29292 Blythe, Samuel G. (Samuel George), 1868-1947 The Old Game etext29325 Mazzini, Giuseppe, 1805-1872 Scritti di Giuseppe Mazzini etext29327 Loewenfeld, Leopold, 1847-1924 Student und Alkohol etext29337 Griffis, William Elliot, 1843-1928 Japanese Fairy World etext29339 Brooks, C. Harry (Cyrus Harry), 1890- The Practice of Autosuggestion etext29342 Chagas, Manuel Pinheiro, 1842-1895 Astucias de Namorada, e Um melodrama em Santo Thyrso etext29420 Agg, T. R. (Thomas Radford), 1878-1947 American Rural Highways etext29490 Doyle, Arthur Conan, Sir, 1859-1930 De dood van Sherlock Holmes — De terugkeer van Sherlock Holmes etext29493 Kahn, Otto Hermann, 1867-1934 Government Ownership of Railroads, and War Taxation etext29530 Fichte, Johann Gottlieb, 1762-1814 Achtundvierzig Briefe von Johann Gottlieb Fichte und seinen Verwandten etext29550 Carvalho, Maria Amália Vaz de, 1847-1921 Mulheres e creanças etext29574 etext29579 Sheckley, Robert, 1928-2005 Watchbird etext29589 Lane, John V. (John Veasey), 1861- Rodney, the Ranger etext29625 Causey, James Teething Ring etext29702 Sloat, Edwin K., 1895-1986 The Space Rover etext29726 Isham, Frederic Stewart, 1866-1922 The Strollers etext29737 Hope, Robert Charles, 1855-1926 The Leper in England: with some account of English lazar-houses etext29751 Huneker, James, 1857-1921 Melomaniacs etext29755 Saint-Elme, Ida, 1778-1845 Mémoires d'une contemporaine etext29764 Witwer, H. C. (Harry Charles), 1890-1929 Kid Scanlan etext29775 Robespierre, Maximilien, 1758-1794 Discours par Maximilien Robespierre — 5 Fevrier 1791-11 Janvier 1792 etext29791 Smith, Evelyn E., 1927-2000 The Most Sentimental Man etext29823 Robespierre, Maximilien, 1758-1794 Le carnet de Robespierre (septembre-décembre 1793) etext29838 Washburne, Carleton, 1889-1968 Common Science etext29890 Oliphant, Mrs. (Margaret), 1828-1897 The Doctor's Family etext29903 Forel, Auguste, 1848-1931 The Sexual Question etext29928 Kainen, Jacob, 1909-2001 Why Bewick Succeeded etext29942 Pierson, Hamilton W. (Hamilton Wilcox), 1817-1888 A Letter to Hon. Charles Sumner, with 'Statements' of Outrages upon Freedmen in Georgia etext29945 Harker, L. Allen (Lizzie Allen), 1863-1933 Jan and Her Job etext29998 Quental, Antero de, 1842-1891 Ultimatum de 11 de Janeiro etext30009 Turgeon, Charles Marie Joseph, 1855-1934 Le féminisme français II etext30014 Hamm, T. D. Native Son etext30029 Janifer, Laurence M., 1933-2002 Lost in Translation etext30051 The History of Woman Suffrage, Volume VI etext9903 Brand, Max, 1892-1944 Way of the Lawless etext30062 Keller, Teddy The Plague etext30104 Linnaeus, Carolus, 1707-1778 Species Plantarum etext30110 Sergeant, Adeline, 1851-1904 Name and Fame etext30119 Hodgson, F. (Francis), 1805-1877 The Calvinistic Doctrine of Predestination Examined and Refuted etext30131 etext30162 etext30172 etext30173 Ruskin, John, 1819-1900 Saint Ursula etext30234 Del Rey, Lester, 1915-1993 Dead Ringer etext30248 Barhydt, Jerome A. Crayon Portraiture etext30280 Picón, Jacinto Octavio, 1852-1923 Vida y obras de don Diego Velázquez etext30299 Glasgow, Ellen Anderson Gholson, 1873-1945 The Romance of a Plain Man etext30429 Mott, Henry A. (Henry Augustus), 1852-1896 Was Man Created? etext30503 Money, Edward The Truth About America etext30570 Kafka, Franz, 1883-1924 Grosser Lärm etext30596 Maurois, André, 1885-1967 General Bramble etext30609 Jackson, J. Dodd (James Dodd), 1861-1918 The Message and the Man: etext30618 Harris, Credo Fitch, 1874-1956 Wings of the Wind etext30640 Ostrander, Isabel, 1883-1924 Anything Once etext30688 Mills, John, 1880- Letters of a Radio-Engineer to His Son etext30699 Lima, Jaime de Magalhães, 1859-1936 Alexandre Herculano etext30768 Moody, Dwight Lyman, 1837-1899 Sowing and Reaping etext30791 Brereton, F. S. (Frederick Sadleir), 1872- With Joffre at Verdun etext30803 Hamilton, Frederick W. (Frederick William), 1860-1940 Books Before Typography etext30838 McIntyre, John T. Ashton-Kirk, Criminologist etext30859 Loureiro, Urbano Questão do Palheiro: Coimbrões e Lisboetas etext30881 Wells, Carolyn, 1862-1942 Two Little Women etext30905 Seaman, Augusta Huiell, 1879-1950 The Boarded-Up House etext30979 Bedford-Jones, H. Nuala O'Malley etext30990 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 16 (of 25) etext31014 Witt, Otto, 1875-1923 Den Underbara Spegeln etext31021 Vance, Louis Joseph, 1879-1933 The Bandbox etext31030 Humbert, Aimé, 1818-1900 Japan etext31050 etext31071 Various Punch, or the London Charivari, Volume 158, June 2, 1920 etext31137 Maryan, M., 1847-1927 La Robe brodée d'argent etext31206 Drake, Samuel Adams, 1833-1905 Burgoyne's Invasion of 1777 etext31213 Berg, C. Schlupps der Handwerksbursch etext31310 Bos, J. Ritzema Beginselen der dierkunde etext31342 Anonymous The 3 Little Kittens etext31353 Fuller, Charles Augustus Personal Recollections of the War of 1861 etext31481 Various Tales from the Lands of Nuts and Grapes etext31490 Gannett, Ezra S. (Ezra Stiles), 1801-1871 The Religion of Politics etext31497 Bone, David W. (David William), 1874-1959 The Brassbounder etext31543 Hall, J. R. Clark (John R. Clark), 1855- A Concise Anglo-Saxon Dictionary etext31570 Duellman, William E., 1930- A Taxonomic Study of the Middle American Snake, Pituophis deppei etext31584 Rankin, R. C. History of the Seventh Ohio Volunteer Cavalry etext31688 Cassilly, Francis Bernard, 1860-1938 What Shall I Be? etext31706 Milton, John, 1608-1674 Minor Poems by Milton etext31714 Menzies, Sutherland, fl. 1840-1883 The Art of Needle-work, from the Earliest Ages, 3rd ed. etext31763 Irish Fairy Tales etext31771 McElroy, John, 1846-1929 Si Klegg, Book 1 (of 6) etext31795 Hawthorne, Julian, 1846-1934 Yellow-Cap and Other Fairy-Stories For Children etext31817 Feuillet, Octave, 1821-1890 Monsieur de Camors — Complet etext31938 Vasari, Giorgio, 1511-1574 Lives of the most Eminent Painters Sculptors and Architects etext31946 Various Lippincott's Magazine of Popular Literature and Science, Volume 20, September, 1877. etext31981 DeFord, Miriam Allen The Eel etext32006 Muir, Pearson McAdam Modern Substitutes for Christianity etext32034 Hoffmann, Heinrich, 1809-1894 König Nußknacker und der arme Reinhold etext32106 Baker, Olaf Dusty Star etext32111 Reichardt, Theodore Diary of Battery A, First Regiment Rhode Island Light Artillery etext32132 Boothby, Guy, 1867-1905 Long Live the King etext32141 Various Garden and Forest Weekly, Volume 1 No. 1, February 29, 1888 etext32152 Rowland, Helen, 1876- The Widow etext32162 Fairman, Paul W., 1916-1977 The Beasts in the Void etext32239 Tucker, St. George, 1828-1862 Dissertation on Slavery etext32323 Anderson, Poul William, 1926-2001 The Escape etext32327 Sohl, Gerald Allan, 1913-2002 The Seventh Order etext32334 Garis, Howard R. Jacko and Jumpo Kinkytail etext32372 Smith, Jessie Willcox, 1863-1935 Dickens's Children etext32405 Defoe, Daniel, 1661?-1731 Augusta Triumphans etext32419 Farquhar, George, 1678?-1707 The Constant Couple etext32426 Hall, E. Raymond (Eugene Raymond), 1902-1986 A Synopsis of the North American Lagomorpha etext32444 Velde, C. F. van der (Carl Franz), 1779-1824 Tales from the German. Volume II. etext32458 Hard, Francis After Two Nights of the Ear-ache etext32542 Bowen, Robert Sydney Dave Dawson on Guadalcanal etext32548 Ellenor, J. B. Rambling Recollections of Chelsea etext32641 Marlowe, Stephen, 1928-2008 Earthsmith etext32645 Carvalhal, Álvaro do Anthero do Quental, e Ramalho Ortigão etext45 Montgomery, L. M. (Lucy Maud), 1874-1942 Anne of Green Gables etext62 Burroughs, Edgar Rice, 1875-1950 A Princess of Mars etext173 Rohmer, Sax, 1883-1959 The Insidious Dr. Fu Manchu etext202 Douglass, Frederick, 1818-1895 My Bondage and My Freedom etext219 Conrad, Joseph, 1857-1924 Heart of Darkness etext263 Kilmer, Joyce, 1886-1918 Trees and Other Poems etext307 Paterson, A. B. (Andrew Barton), 1864-1941 Three Elephant Power and Other Stories etext312 Benét, Stephen Vincent, 1898-1943 Young Adventure, a Book of Poems etext362 Porter, Eleanor H. (Eleanor Hodgman), 1868-1920 Miss Billy's Decision etext364 Burroughs, Edgar Rice, 1875-1950 The Mad King etext433 Phillips, David Graham, 1867-1911 The Conflict etext447 Crane, Stephen, 1871-1900 Maggie, a Girl of the Streets etext450 Phillips, David Graham, 1867-1911 Susan Lenox: Her Fall and Rise etext454 Leland, Charles Godfrey, 1824-1903 Hans Breitman's ballads etext469 Balzac, Honoré de, 1799-1850 The Duchesse De Langeais etext501 Lofting, Hugh, 1886-1947 The Story of Doctor Dolittle etext642 James, Henry, 1843-1916 The Altar of the Dead etext683 Walton, Izaak, 1593-1683 The Compleat Angler etext721 Wiggin, Kate Douglas Smith, 1856-1923 The Birds' Christmas Carol etext837 Nesbit, E. (Edith), 1858-1924 The Story of the Amulet etext846 Weems, M. L. (Mason Locke), 1759-1825 The Life of General Francis Marion etext890 Gibbon, Edward, 1737-1794 History of the Decline and Fall of the Roman Empire — Volume 1 etext894 Gibbon, Edward, 1737-1794 History of the Decline and Fall of the Roman Empire — Volume 5 etext909 Filson, John, 1753?-1788 Life and Adventures of Colonel Daniel Boon etext932 Poe, Edgar Allan, 1809-1849 The Fall of the House of Usher etext941 Guest, Edgar A. (Edgar Albert), 1881-1959 Just Folks etext957 Baum, L. Frank (Lyman Frank), 1856-1919 The Scarecrow of Oz etext959 Baum, L. Frank (Lyman Frank), 1856-1919 The Lost Princess of Oz etext966 Peacock, Thomas Love, 1785-1866 Maid Marian etext988 Key, Ellen, 1849-1926 The Education of the Child etext998 Dante Alighieri, 1265-1321 La Divina Commedia di Dante: Purgatorio etext1077 Bramah, Ernest, 1869?-1942 The Mirror of Kong Ho etext1084 Presbyterian Ladies' Aid Recipes Tried and True etext1140 Carlyle, Thomas, 1795-1881 Latter-Day Pamphlets etext1150 Saxo, Grammaticus The Danish History, Books I-IX etext1152 The Story of the Volsungs, (Volsunga Saga) etext1182 Rohmer, Sax, 1883-1959 Dope etext1192 Congreve, William, 1670-1729 The Old Bachelor: a Comedy etext1209 Prescott, William Hickling, 1796-1859 History of the Conquest of Peru etext1217 Wiggin, Kate Douglas Smith, 1856-1923 Penelope's Experiences in Scotland etext1225 Tyndall, John, 1820-1893 Faraday as a Discoverer etext1233 Crile, George W. (Washington), 1864-1943 Origin and Nature of Emotions etext1254 Rostand, Edmond, 1868-1918 Cyrano De Bergerac etext1256 Rostand, Edmond, 1868-1918 Cyrano de Bergerac etext1275 Kingsley, Charles, 1819-1875 Alexandria and Her Schools; four lectures delivered at the Philosophical Institution, Edinburgh etext1407 Dickens, Charles, 1812-1870 A Message from the Sea etext1425 Balzac, Honoré de, 1799-1850 Verdugo, El etext1432 Balzac, Honoré de, 1799-1850 Seraphita etext1456 Balzac, Honoré de, 1799-1850 An Episode under the Terror etext1462 Thackeray, William Makepeace, 1811-1863 Some Roundabout Papers etext1478 Stewart, Donald Ogden, 1894-1980 A Parody Outline of History etext1479 Cunninghame Graham, R. B. (Robert Bontine), 1852-1936 A Vanished Arcadia: being some account of the Jesuits in Paraguay 1607-1767 etext1499 Lord, John, 1810-1894 Beacon Lights of History etext1508 Shakespeare, William, 1564-1616 The Taming of the Shrew etext1575 Myerson, Abraham, 1881-1948 The Foundations of Personality etext1615 Savage, Ernest Albert, 1877-1966 Old English Libraries etext1619 Rojas, Fernando de, 1465-1541 La Celestina etext1651 Gaboriau, Émile, 1832-1873 Crime d'Orcival. English etext1675 Brown, Arthur Judson, 1856-1963 New Forces in Old China etext1721 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Trees of Pride etext1723 Bower, B. M., 1874-1940 Cow-Country etext1739 Hecker, J. F. C. (Justus Friedrich Carl), 1795-1850 The Black Death etext1744 Plato, 427? BC-347? BC Philebus etext2049 Hazlitt, William, 1778-1830 Liber Amoris, or, the New Pygmalion etext2077 Daudet, Alphonse, 1840-1897 The Nabob etext2087 Darwin, Charles, 1809-1882 Life and Letters of Charles Darwin — Volume 1 etext2143 Anonymous The Bible etext2145 Wallace, Lewis, 1827-1905 Ben-Hur; a tale of the Christ etext2148 Poe, Edgar Allan, 1809-1849 The Works of Edgar Allan Poe — Volume 2 etext2311 Smollett, T. (Tobias), 1721-1771 Travels through France and Italy etext2314 Wieland, Christoph Martin, 1733-1813 Geschichte des Agathon etext2364 Crane, Stephen, 1871-1900 Active Service etext2376 Washington, Booker T., 1856-1915 Up from Slavery: an autobiography etext2424 Farnol, Jeffery, 1878-1952 Black Bartlemy's Treasure etext2440 Bates, Henry Walter, 1825-1892 The Naturalist on the River Amazons etext2449 Holmes, Oliver Wendell, 1841-1935 The Common Law etext2461 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Lady of Lyons etext2525 Jerome, Jerome K. (Jerome Klapka), 1859-1927 John Ingerfield and Other Stories etext2561 MacDonald, George, 1824-1905 Robert Falconer etext2599 Harte, Bret, 1836-1902 Legends and Tales etext2627 Huxley, Thomas Henry, 1825-1895 On the Method of Zadig etext2682 Dumas père, Alexandre, 1802-1870 Henri III et sa Cour etext2714 Rinehart, Mary Roberts, 1876-1958 Long Live the King! etext2750 Dumas père, Alexandre, 1802-1870 Joan of Naples etext2778 Burnham, Clara Louise, 1854-1927 Jewel etext2785 Orczy, Emmuska Orczy, Baroness, 1865-1947 The Elusive Pimpernel etext2828 Kipling, Rudyard, 1865-1936 Under the Deodars etext2838 Heine, Heinrich, 1797-1856 De Beurs Lacht etext2855 Haggard, Henry Rider, 1856-1925 Elissa etext2888 Moorman, Frederic William, 1872-1919 Yorkshire Dialect Poems (1673-1915) and traditional poems etext2897 Fleming, Walter Lynwood, 1874-1932 The Sequel of Appomattox : a chronicle of the reunion of the states etext2963 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 13: Holland and Germany etext2970 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 20: Milan etext3008 Various The Jargon File, Version 4.2.2, 20 Aug 2000 etext3028 Hale, Lucretia P. (Lucretia Peabody), 1820-1900 The Peterkin papers etext3105 Warner, Charles Dudley, 1829-1900 That Fortune etext3144 Kingsley, Charles, 1819-1875 Froude's History of England etext3194 Twain, Mark, 1835-1910 Mark Twain's Letters — Volume 2 (1867-1875) etext3271 Ward, Artemus, 1834-1867 The Complete Works of Artemus Ward — Part 1: Essays, Sketches, and Letters etext3326 Hardy, Thomas, 1840-1928 The Well-Beloved etext3331 Pepys, Samuel, 1633-1703 The Diary of Samuel Pepys etext3338 Hayes, Edward, fl. 1580. Sir Humphrey Gilbert's Voyage to Newfoundland etext3407 Hichens, Robert Smythe, 1864-1950 The Spell of Egypt etext3413 White, Stewart Edward, 1873-1946 The Blazed Trail etext3420 Wollstonecraft, Mary, 1759-1797 Vindication of the Rights of Woman etext3426 Gladstone, W. E. (William Ewart), 1809-1898 On Books and the Housing of Them etext3431 Voynich, E. L. (Ethel Lillian), 1864-1960 The Gadfly etext3436 Anonymous Arabian nights. English etext3438 Anonymous Arabian nights. English etext3452 Leggett, Francis Tea Leaves etext3461 Butler, Samuel, 1835-1902 Essays on Life, Art and Science etext3523 Human Genome Project Human Genome Project, X Chromosome etext3526 Verne, Jules, 1828-1905 Five Weeks in a Balloon etext3592 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 12 etext3619 Holmes, Mary Jane, 1825-1907 Cousin Maude etext3620 Darwin, Charles, 1809-1882 Geological Observations on South America etext3754 Fabre, Jean-Henri, 1823-1915 The Wonders of Instinct etext3766 Churchill, Winston, 1871-1947 Coniston — Complete etext3785 Henty, G. A. (George Alfred), 1832-1902 In the Reign of Terror etext3815 Henry, O., 1862-1910 Rolling Stones etext3818 Becke, Louis, 1855-1913 By Reef and Palm etext3819 Parker, K. Langloh (Katie Langloh), 1856-1940 The Euahlayi Tribe; a study of aboriginal life in Australia etext3822 Lawton, Frederick Balzac etext3828 Locke, William John, 1863-1930 Simon the Jester etext3831 Corelli, Marie, 1855-1924 The Secret Power etext3841 Marguerite, Queen, consort of Henry IV, King of France, 1553-1615 Memoirs of Marguerite de Valois — Complete [Court memoir series] etext3898 Goldsmith, Lewis, 1763-1846 Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 7 etext3925 Droz, Gustave, 1832-1895 Monsieur, Madame, and Bebe — Volume 03 etext3977 Daudet, Alphonse, 1840-1897 Fromont and Risler — Volume 2 etext4047 Green, Anna Katharine, 1846-1935 The Leavenworth Case etext4060 Pater, Walter, 1839-1894 The Renaissance: studies in art and poetry etext4086 Perkins, Lucy Fitch, 1865-1937 The Scotch Twins etext4123 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 07: August/September 1660 etext4203 Burroughs, John, 1837-1921 Wake-Robin etext4245 Fox, Charles James, 1749-1806 History of the Early Part of the Reign of James the Second etext4258 McElroy, John, 1846-1929 Andersonville — Volume 2 etext4284 Mackay, Isabel Ecclestone, 1875-1928 The Window-Gazer etext4285 Corelli, Marie, 1855-1924 The Master-Christian etext4297 Gissing, George, 1857-1903 Eve's Ransom etext4332 Ridge, Lola, 1883-1941 The Ghetto and Other Poems etext4340 Allen, Grant, 1848-1899 The British Barbarians etext4353 Chester, George Randolph, 1869-1924 Five Thousand an Hour : how Johnny Gamble won the heiress etext4371 Nadin, Mihai, 1938- Jenseits der Schriftkultur — Band 1 etext4373 Nadin, Mihai, 1938- Jenseits der Schriftkultur — Band 3 etext4473 Meredith, George, 1828-1909 One of Our Conquerors — Volume 3 etext4573 Luo, Guanzhong, 1330?-1400? 粉妝樓11-20回 etext4659 Yonge, Charlotte Mary, 1823-1901 Lady Hester, or, Ursula's Narrative etext4674 Harte, Bret, 1836-1902 Tennessee's Partner etext4691 Orr, Lyndon Famous Affinities of History — Volume 3 etext4774 Shakespeare (spurious and doubtful works), 1564-1616 The Merry Devil etext4821 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 20: 1573 etext4837 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1584 etext4862 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1590b etext4905 Lincoln, Joseph Crosby, 1870-1944 Galusha the Magnificent etext4966 Scott, Walter, Sir, 1771-1832 Waverley — Complete etext4983 Bechtel, John Hendricks, 1841- Slips of Speech : a Helpful Book for Everyone Who Aspires to Correct the Everyday Errors of Speaking etext5025 Johnson, Andrew, 1808-1875 State of the Union Address etext5155 Donnelly, Ignatius, 1831-1901 Caesar's Column etext5165 Corelli, Marie, 1855-1924 Innocent : her fancy and his fact etext5185 Kalevala : the Epic Poem of Finland — Volume 02 etext5227 Crawford, F. Marion (Francis Marion), 1854-1909 Sant' Ilario etext5279 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 05 etext5324 Baring-Gould, S. (Sabine), 1834-1924 The Book of Were-Wolves etext5394 Churchill, Winston, 1871-1947 The Crisis — Volume 07 etext5429 Johnson, Samuel, 1709-1784 Preface to Shakespeare etext5484 Ebers, Georg, 1837-1898 The Emperor — Volume 02 etext5593 Ebers, Georg, 1837-1898 The Story of My Life — Volume 01 etext5647 Seymour, Robert, 1800-1836 Sketches by Seymour — Volume 03 etext5715 Dodge, Theodore Ayrault, 1842-1909 The Campaign of Chancellorsville etext5742 Chandler, Katherine The Bird-Woman of the Lewis and Clark Expedition etext5747 Alger, Horatio, 1832-1899 Do and Dare — a Brave Boy's Fight for Fortune etext5761 Burton, Richard Francis, Sir, 1821-1890 Two Trips to Gorilla Land and the Cataracts of the Congo Volume 2 etext5778 Alger, Horatio, 1832-1899 Try and Trust etext5819 etext5821 etext5870 Simpson, John Thomas Hidden Treasure etext5904 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 02 etext5921 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Complete etext5929 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 26 etext5980 Lincoln, Joseph Crosby, 1870-1944 Kent Knowles: Quahaug etext6048 Bunyan, John, 1628-1688 Works of John Bunyan — Volume 03 etext6071 Stratemeyer, Edward, 1862-1930 The Rover Boys out West etext6079 Heine, Heinrich, 1797-1856 Deutschland. Ein Wintermärchen etext6163 Russell, William Ingraham The Romance and Tragedy etext6170 De Quincey, Thomas, 1785-1859 Memorials and Other Papers — Volume 2 etext6177 Parker, Gilbert, 1862-1932 Pierre and His People, [Tales of the Far North], Volume 4. etext6208 Parker, Gilbert, 1862-1932 The Trail of the Sword, Volume 3 etext6209 Parker, Gilbert, 1862-1932 The Trail of the Sword, Volume 4 etext6254 Parker, Gilbert, 1862-1932 John Enderby etext6269 Parker, Gilbert, 1862-1932 Embers, Volume 2. etext6287 Parker, Gilbert, 1862-1932 You Never Know Your Luck; being the story of a matrimonial deserter. Volume 3. etext6293 Parker, Gilbert, 1862-1932 No Defense, Volume 2. etext6295 Parker, Gilbert, 1862-1932 No Defense, Complete etext6319 Dumas père, Alexandre, 1802-1870 Bric-à-brac etext6332 Playful Poems etext6337 Hayes, Clair W. (Clair Wallace), 1887- The Boy Allies under Two Flags etext6356 Lightheart The Gospel of Matthew for Readers etext6371 Calderón de la Barca, Pedro, 1600-1681 The Purgatory of St. Patrick etext6393 Suetonius Tranquillus, Gaius, 75-160 The Lives of the Twelve Caesars, Volume 08: Otho etext6442 Holland, J. G. (Josiah Gilbert), 1819-1881 Bitter-Sweet etext6458 Beach, Charles Amory Air Service Boys in the Big Battle etext6496 Schiller, Friedrich, 1759-1805 Die Braut von Messina etext6555 Wilde, Oscar, 1854-1900 De Profundis etext6582 Lowe, Samuel E. (Samuel Edward), 1884- In the Court of King Arthur etext6643 Raimund, Ferdinand, 1790-1836 Das Mädchen aus der Feenwelt etext6646 Kleist, Heinrich von, 1777-1811 Das Käthchen von Heilbronn etext6659 Abbott, Jacob, 1803-1879 History of King Charles the Second of England etext6684 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Uneasy Money etext6690 Rutherford, Mark, 1831-1913 The Revolution in Tanner's Lane etext6736 Fischer, Kuno, 1824-1907 Shakespeare und die Bacon-Mythen etext6751 Mundy, Talbot, 1879-1940 The Winds of the World etext6759 Smollett, T. (Tobias), 1721-1771 The Adventures of Ferdinand Count Fathom — Volume 01 etext6804 Myers, Philip Van Ness General History for Colleges and High Schools etext6867 Craig, Austin, 1872- Lineage, Life and Labors of José Rizal, Philippine Patriot etext6962 Cox, Jacob Dolson, 1828-1900 Military Reminiscences of the Civil War, Volume 2 etext6964 Kent, Cicely Telling Fortunes By Tea Leaves etext7015 Shinran, 1173-1263 Wisdom of the East etext7018 Stampoy, Pappity Collection of Scotch Proverbs etext7047 Bruce, Mary Grant, 1878-1958 Back to Billabong etext7069 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture etext7130 Howells, William Dean, 1837-1920 London Films etext7177 Banfield, E. J. (Edmund James), 1852-1923 My Tropic Isle etext7224 Hamblin, Henry Thomas, 1873-1958 Within You is the Power etext7332 Liu, Xiang, 77? BC-6? BC 說苑 etext7337 Laozi 道德經 etext7343 Medley, D. J. (Dudley Julius), 1861-1953 The Church and the Empire, Being an Outline of the History of the Church from A.D. 1003 to A.D. 1304 etext7349 Tang, Jingwu 孫子兵法道家新註解 etext7376 Zhu, Xi, 1130-1200 中庸 章句 etext7434 Sidney, Margaret, 1844-1924 The Adventures of Joel Pepper etext7468 Tao, Qian, 372?-427 搜神後記. Selections. 1985 etext7470 Hay, John, 1835-1905 Castilian Days etext7497 Pidgin, Charles Felton, 1844-1923 Further Adventures of Quincy Adams Sawyer and Mason Corner Folks etext7505 Anderson, Robert Gordon Half-Past Seven Stories etext7508 Moore, George (George Augustus), 1852-1933 A Mummer's Wife etext7580 Malot, Hector, 1830-1907 Images from Malot's Conscience etext7586 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 01 etext7623 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Pelham — Complete etext7656 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Kenelm Chillingly — Volume 07 etext7685 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Lucretia — Volume 01 etext7688 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Lucretia — Volume 04 etext7722 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Last of the Barons — Volume 08 etext7765 Williams, Emlyn, 1905-1987 Night Must Fall : a Play in Three Acts etext7767 Leonard, Nellie Mabel The Graymouse Family etext7844 Bjørnson, Bjørnstjerne, 1832-1910 Three Dramas etext7877 Hawthorne, Nathaniel, 1804-1864 Passages from the English Notebooks, Volume 2. etext8013 Anonymous The Bible, King James version, Book 13: 1 Chronicles etext8047 Anonymous The Bible, King James version, Book 47: 2 Corinthians etext8078 Stephens, Ann S. (Ann Sophia), 1810-1886 The Old Homestead etext8084 Pope, Saxton, 1875-1926 Hunting with the Bow and Arrow etext8130 Hearn, Lafcadio, 1850-1904 Glimpses of Unfamiliar Japan etext8168 Rabelais, François, 1483-1553 Gargantua and Pantagruel, Illustrated, Book 3 etext8209 Keats, John, 1795-1821 Poems 1817 etext8244 Anonymous The World English Bible (WEB): Esther etext8276 Anonymous The World English Bible (WEB): Ephesians etext8291 Anonymous The World English Bible (WEB): 3 John etext8380 Davis, Richard Harding, 1864-1916 Cuba in War Time etext8418 Euripides, 480? BC-406 BC Hippolytus/The Bacchae etext8434 Beck, L. Adams (Lily Adams), -1931 The Ladies etext8439 Hofmann, May C. Games for Everybody etext8442 Belloc, Hilaire, 1870-1953 Europe and the Faith etext8445 Hamsun, Knut, 1859-1952 Look Back on Happiness etext8462 Dixon, Thomas, 1864-1946 The Man in Gray etext8489 Coleridge, Samuel Taylor, 1772-1834 Specimens of the Table Talk of Samuel Taylor Coleridge etext8514 Zola, Émile, 1840-1902 The Three Cities Trilogy: Lourdes, Volume 4 etext8529 Herrick, Robert, 1868-1938 The World Decision etext8547 Pirke Avot etext8553 MacDonald, George, 1824-1905 The Seaboard Parish Volume 3 etext8561 Zola, Émile, 1840-1902 Une Page d'Amour etext8602 Riddell, Mrs. J. H., 1832-1906 The Uninhabited House etext8634 Doyle, Arthur Conan, Sir, 1859-1930 His Last Bow etext8660 Sanger, Margaret, 1883-1966 Woman and the New Race etext8664 Glaspell, Susan, 1882-1948 The Glory of the Conquered etext8716 Barr, Robert, 1850-1912 The Strong Arm etext8725 Zola, Émile, 1840-1902 The Three Cities Trilogy: Rome, Volume 5 etext8776 Molière, 1622-1673 Les fourberies de Scapin. English. etext8890 Judson, Clara Ingram, 1879-1950 Mary Jane: Her Book etext8927 Storm, Theodor, 1817-1888 Auf dem Staatshof etext8954 Braddon, M. E. (Mary Elizabeth), 1835-1915 Lady Audley's Secret etext8957 Gillman, James The Life of Samuel Taylor Coleridge etext9057 MacDonald, George, 1824-1905 Unspoken Sermons etext9113 London, Jack, 1876-1916 Before Adam etext9163 Various Scientific American Supplement, No. 417, December 29, 1883 etext9197 Ditchfield, P. H. (Peter Hampson), 1854-1930 English Villages etext9202 Hawthorne, Nathaniel, 1804-1864 Little Annie's Ramble (From "Twice Told Tales") etext9319 Maclaren, Ian, 1850-1907 A Doctor of the Old School — Volume 5 etext9362 Braddon, M. E. (Mary Elizabeth), 1835-1915 Birds of Prey etext9372 Van Dyke, Henry, 1852-1933 Songs out of Doors etext9390 Roberts, Fflorens Fifteen Years with the Outcast etext9412 Seton-Thompson, Grace Gallatin A Woman Tenderfoot etext9427 Hardy, Thomas, 1840-1928 The Return of the Native etext9432 Hardy, Thomas, 1840-1928 Satires of Circumstance etc. etext9446 Holley, Marietta, 1836-1926 Samantha among the Brethren — Volume 4 etext9486 Various The Atlantic Monthly, Volume 05, No. 32, June, 1860 etext9499 Zola, Émile, 1840-1902 The Dream etext9550 Bailey, L. H. (Liberty Hyde), 1858-1954 Manual of Gardening (Second Edition) etext9566 Whittier, John Greenleaf, 1807-1892 Narrative and Legendary Poems: Bay of Seven Islands and Others etext9586 Whittier, John Greenleaf, 1807-1892 Personal Poems, Complete etext9640 Georgian Poetry 1920-22 etext9643 Esquiros, Alphonse, 1812-1876 Histoire des Montagnards etext9647 Mullgardt, Louis Christian The Architecture and Landscape Gardening of the Exposition etext9664 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 An Amiable Charlatan etext9687 Defoe, Daniel, 1661?-1731 Robinson Crusoe etext9693 Dickens, Charles, 1812-1870 American Notes etext9700 Beowulf etext9749 Bailey, H. C. (Henry Christopher), 1878-1961 The Highwayman etext9797 Various Punchinello, Volume 1, No. 15, July 9, 1870 etext9811 Holcroft, Thomas, 1745-1809 The Adventures of Hugh Trevor etext9819 Various Punchinello, Volume 1, No. 14, July 2, 1870 etext9838 Cable, George Washington, 1844-1925 Strong Hearts etext9920 The Garden of Bright Waters etext9991 Van Loon, Hendrik Willem, 1882-1944 Ancient Man etext10029 Magnay, William The Hunt Ball Mystery etext10149 Cooper, James Fenimore, 1789-1851 Home as Found etext10208 Taft, William H., 1857-1930 The Rights of Labor etext10213 Gregory, Jackson, 1882-1943 The Everlasting Whisper etext10228 Díaz, Porfirio, 1830-1915 El Presidente Diaz al Senor Edison etext10297 Wiedoeft, Rudy, 1893-1940 Saxema etext10320 May, Sophie, 1833-1906 Dotty Dimple at Play etext10359 Baum, L. Frank (Lyman Frank), 1856-1919 Aunt Jane's Nieces at Millville etext10425 Goethe, Johann Wolfgang von, 1749-1832 Torquato Tasso etext10480 Canth, Minna, 1844-1897 Kauppa-Lopo etext10488 McGuinn, Roger Away in a Manger etext10509 Dell, Ethel M. (Ethel May), 1881-1939 The Bars of Iron etext10530 McGuinn, Roger Ride Railroad Bill etext10561 Jacobs, W. W. (William Wymark), 1863-1943 Fine Feathers etext10600 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels — Volume 01 etext10616 Locke, John, 1632-1704 An Essay Concerning Humane Understanding, Volume 2 etext10617 Smith, R. Cadwallader Within the Deep etext10658 Bennett, Arnold, 1867-1931 Hilda Lessways etext10696 Curwood, James Oliver, 1878-1927 The Danger Trail etext10773 Willson, Thomas E. Ancient and Modern Physics etext10820 Deyssel, Lodewijk van, 1864-1952 Een liefde etext10824 Chevalier, Ulysse, 1804-1893 Un tournoi à Romans en 1484 etext10831 Anonymous The Village in the Mountains; Conversion of Peter Bayssiere; and History of a Bible etext10914 Hildebrandt, Alfred Die Brüder Wright etext10955 Sanday, William, 1843-1920 The Gospels in the Second Century etext10986 Chesnutt, Charles W. (Charles Waddell), 1858-1932 Frederick Douglass etext10994 Anonymous The Good Resolution etext11051 London, Jack, 1876-1916 The Cruise of the Dazzler etext11053 Harper, Frances Ellen Watkins, 1825-1911 Minnie's Sacrifice etext24994 Australia. Dept. of External Affairs Wheat Growing in Australia etext11099 Corner, Julia, 1798-1875 More Seeds of Knowledge; Or, Another Peep at Charles etext11105 Woodworth, Francis C. (Francis Channing), 1812-1859 Jack Mason, the Old Sailor etext11121 Edgeworth, Maria, 1767-1849 The Bracelets etext11145 Langford, Nathaniel Pitt, 1832-1911 The Discovery of Yellowstone Park etext11275 American Anti-Slavery Society The Anti-Slavery Examiner, Omnibus etext11295 Canth, Minna, 1844-1897 Lehtori Hellmanin vaimo etext11405 Various The Mirror of Literature, Amusement, and Instruction etext11429 Various Punch, or the London Charivari, Volume 156, April 30, 1919 etext11463 Various The Mirror of Literature, Amusement, and Instruction etext11483 Collingwood, Stuart Dodgson, 1870-1937 The Life and Letters of Lewis Carroll (Rev. C. L. Dodgson) etext11530 Various The Mirror of Literature, Amusement, and Instruction etext11547 Grinnell, George Bird, 1849-1938 Blackfoot Lodge Tales etext11558 Goodrich, Samuel G. (Samuel Griswold), 1793-1860 Poems etext11588 Gaboriau, Émile, 1832-1873 L'argent des autres etext11650 Daudet, Alphonse, 1840-1897 La Belle-Nivernaise: Histoire d'un vieux bateau et de son équipage etext11780 Human Genome Project Chromosome Number 06 etext11827 Library of Congress. Copyright Office U.S. Copyright Renewals, 1963 January - June etext11828 Library of Congress. Copyright Office U.S. Copyright Renewals, 1963 July - December etext11836 Library of Congress. Copyright Office U.S. Copyright Renewals, 1967 July - December etext11843 Library of Congress. Copyright Office U.S. Copyright Renewals, 1971 January - June etext11844 Library of Congress. Copyright Office U.S. Copyright Renewals, 1971 July - December etext11857 Betham, Matilda, 1776-1852 The Lay of Marie etext11869 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 Venetia etext11911 Benson, Arthur Christopher, 1862-1925 The Silent Isle etext11913 Haggard, Henry Rider, 1856-1925 Mr. Meeson's Will etext11919 Various Punch, or the London Charivari, Volume 99, July 19, 1890 etext11923 Lyth, John Religion in Earnest etext11969 O'Brien, Seumas Duty, and other Irish Comedies etext11975 Jacobs, W. W. (William Wymark), 1863-1943 Dialstone Lane, Part 5. etext11982 Stanton, Elizabeth Cady, 1815-1902 Eighty Years and More; Reminiscences 1815-1897 etext11986 The Book of American Negro Poetry etext25907 Eastman, Charles Alexander, 1858-1939 Indian Child Life etext12010 Williams, Cora Lenore The Fourth Dimensional Reaches of the Panama-Pacific International Exposition etext12018 Various Notes and Queries, Number 17, February 23, 1850 etext12056 Newman, Francis William, 1805-1897 Phases of Faith etext12078 Johnston, Charles, 1867-1931 Ireland, Historic and Picturesque etext12084 Garrison, Adele Revelations of a Wife etext12109 Caldecott, Randolph, 1846-1886 The House That Jack Built etext12110 etext12134 Various The American Missionary — Volume 42, No. 06, June, 1888 etext12148 Railway Shop Up to Date etext12286 Richardson, David Lester, 1801-1865 Flowers and Flower-Gardens etext12375 Towers, Walter Kellogg Masters of Space etext12388 Curwood, James Oliver, 1878-1927 The Courage of Captain Plum etext12390 etext12415 Hutchinson, William E. Byways Around San Francisco Bay etext12467 Various Punch, or the London Charivari, Volume 99, October 11, 1890 etext12523 Munro, William Bennett, 1875-1957 Crusaders of New France etext12562 Poe, Edgar Allan, 1809-1849 Derniers Contes etext12630 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Old Mr. Toad etext12667 Huish, Robert, 1777-1850 Lander's Travels etext12712 Franklin, Benjamin, 1706-1790 Dialogue Between Franklin and the Gout etext12732 Short-Stories etext12747 The Story of Grettir the Strong etext12794 Bennett, Arnold, 1867-1931 Judith, a play in three acts etext12814 Philippine Folk Tales etext12822 Berding, Frans De Edda etext12832 Stellman, Louis J. (Louis John), 1877-1961 Said the Observer etext12836 Various Good Stories from the Ladies' Home Journal etext12940 Ferguson, Donald The Chums of Scranton High out for the Pennant etext12954 Marryat, Frederick, 1792-1848 The Phantom Ship etext12958 Richardson, Samuel, 1689-1761 Pamela, Volume II etext12963 Warner, Susan, 1819-1885 Melbourne House, Volume 1 etext12981 Leighton, Robert, 1859-1934 The Thirsty Sword etext13045 Withers, Hartley, 1867-1950 War-Time Financial Problems etext13056 The German Classics of the Nineteenth and Twentieth Centuries, Volume 10 etext13058 Leblanc, Maurice, 1864-1941 The Teeth of the Tiger etext13082 NASA Images of Comet Wild 2 etext13094 Henry, O., 1862-1910 Heart of the West [Annotated] etext13106 Fuller, Margaret, 1810-1850 Memoirs of Margaret Fuller Ossoli, Volume II etext13136 Bush, David V., 1882-1959 The Silence: What It Is and How To Use It etext13161 Long, H. W. (Harland William), 1869- Sane Sex Life and Sane Sex Living etext13193 Croft, Delmer Eugene Supreme Personality etext13212 King, Basil, 1859-1928 The Wild Olive etext13220 Library of the World's Best Literature, Ancient and Modern — Volume 4 etext13231 Musset, Alfred de, 1810-1857 Oeuvres Complètes de Alfred de Musset — Tome 6. etext13271 Sidney, Samuel, 1813-1883 Rides on Railways etext13568 Woman Suffrage By Federal Constitutional Amendment etext13597 Crawford, F. Marion (Francis Marion), 1854-1909 A Tale of a Lonely Parish etext13639 Various Punch, or the London Charivari, Volume 1, July 17, 1841 etext13755 Jerrold, W. Blanchard, 1826-1884 How to See the British Museum in Four Visits etext13788 Various McClure's Magazine, Vol. 6, No. 3, February 1896 etext13790 Melville, Lewis, 1874-1932 Life And Letters Of John Gay (1685-1732) etext13791 Hilton, Warren, 1874- Psychology and Achievement etext13848 d'Aurevilly, Jules Amédée Barbey, 1808-1889 Les diaboliques etext13897 Barbour, Ralph Henry, 1870-1944 The Adventure Club Afloat etext13931 Cobban, J. Mclaren Master of His Fate etext13937 Grey, Zane, 1872-1939 The Mysterious Rider etext13952 Dumas père, Alexandre, 1802-1870 Vingt ans après etext13999 Bosch, G. Auvergne etext14035 Lassila, Maiju, 1868-1918 Mimmi Paavaliina etext14037 Butler, Charles, 1750-1832 The Life of Hugo Grotius etext14060 Wells, H. G. (Herbert George), 1866-1946 Mr. Britling Sees It Through etext14079 Rice, Alice Caldwell Hegan, 1870-1942 Sandy etext14100 Barbauld, Anna Laetitia, 1743-1825 Eighteen Hundred and Eleven etext14217 Various Punch, Or The London Charivari, Volume 102, January 16, 1892 etext14218 Muir, M. M. Pattison, 1848-1931 The Story of Alchemy and the Beginnings of Chemistry etext14222 Marryat, Frederick, 1792-1848 Poor Jack etext14241 More English Fairy Tales etext14299 Butler, Josephine E. (Josephine Elizabeth Grey), 1828-1906 Native Races and the War etext14312 Trine, Ralph Waldo, 1866-1958 What All The World's A-Seeking etext14362 Hough, Emerson, 1857-1923 The Way of a Man etext14417 Aeschylus, 525 BC-456 BC The Agamemnon of Aeschylus etext14454 Stretton, Hesba, 1832-1911 The Doctor's Dilemma etext14458 Perlman, Selig, 1888-1959 A History of Trade Unionism in the United States etext14480 Gorky, Maksim, 1868-1936 Twenty-six and One and Other Stories etext14493 Various The Nursery, No. 165. September, 1880, Vol. 28 etext14548 etext14558 Wallace, Alfred Russel, 1823-1913 Darwinism (1889) etext14621 As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1873-03/04) etext14642 McGuffey, William Holmes, 1800-1873 McGuffey's Eclectic Primer, Revised Edition etext14656 Barr, Robert, 1850-1912 The Sword Maker etext14663 Various McClure's Magazine, Vol. 6, No. 5, April, 1896 etext14683 Wilde, Oscar, 1854-1900 Poèmes etext14720 Ferland, Jean-Baptiste-Antoine Opuscules etext14726 etext14759 Gibson, Henry William, 1867- Camping For Boys etext14820 Malot, Hector, 1830-1907 Une femme d'argent etext14824 Throop, Lucy Abbot Furnishing the Home of Good Taste etext14876 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Forest Runners etext14891 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Rulers of the Lakes etext14904 Portugal Constituição politica da Monarchia portugueza etext14909 Finley, Martha, 1828-1909 Elsie's New Relations etext14932 Various Punch, or the London Charivari, Volume 1, October 16, 1841 etext14941 Various Punch, or the London Charivari, Volume 1, December 18, 1841 etext15122 Johnston, Annie F. (Annie Fellows), 1863-1931 The Little Colonel's Hero etext15130 Pennington, James W. C., 1809-1870 The Fugitive Blacksmith etext15131 Phillipps, L. March With Rimington etext15134 Wood, William Charles Henry, 1864-1947 Supplement to Animal Sanctuaries in Labrador etext15139 Marsili, Giovanni, 1727-1795 Notizie del pubblico giardino de' semplici di Padova compilate intorno l'anno 1771 etext15177 Swinnerton, Frank, 1884-1982 Nocturne etext15188 Allen, Quincy The Outdoor Chums After Big Game etext15197 Various Notes and Queries, Number 29, May 18, 1850 etext15230 Rice, Alice Caldwell Hegan, 1870-1942 Miss Mink's Soldier and Other Stories etext15234 Potter, Beatrix, 1866-1943 The Tale of the Pie and the Patty Pan etext15263 Still, William The Underground Railroad etext15316 Hannikainen, Pietari, 1813-1899 Jutelmia läheltä ja kaukaa II: Salojärwen kukkanen etext15364 Sargeaunt, John, 1857-1922 Society for Pure English Tract 4 etext15373 Various St. Nicholas, Vol. 5, No. 2, December, 1877 etext15379 Deane, David J. Robert Moffat etext15420 Colcord, Joanna C. (Joanna Carver), 1882-1960 Broken Homes etext15450 Various Against Home Rule (1912) etext15463 Beaumont, Gustave de, 1802-1866 Marie ou l'Esclavage aux Etats-Unis etext15464 etext15497 Spinoza, Benedictus de, 1632-1677 Ethica etext15529 Kipling, Rudyard, 1865-1936 Songs from Books etext15573 Manning, Marie Judith of the Plains etext15621 Anonymous The Story of Jack and the Giants etext15637 Elfving, Betty, 1837-1923 Härkmanin pojat etext15702 Burke, Edmund, 1729-1797 The Works of the Right Honourable Edmund Burke, Vol. 06 (of 12) etext15735 Williams, George Washington, 1849-1891 History of the Negro Race in America From 1619 to 1880. Vol 1 etext15745 Erckmann-Chatrian The Man-Wolf and Other Tales etext15746 Munroe, Kirk, 1850-1930 The Flamingo Feather etext15753 Various Svensk diktning II etext15759 Lee, Gerald Stanley, 1862-1944 Crowds etext15764 Reid, Mayne, 1818-1883 Kullankaivajat ja indiaanit etext15778 Meade, L. T., 1854-1914 The Honorable Miss etext15818 Daviess, Maria Thompson, 1872-1924 The Melting of Molly etext15826 Dalrymple, Leona, 1884- Uncle Noah's Christmas Inspiration etext15830 Brown, William Wells, 1816?-1884 Three Years in Europe etext15837 Lagerlöf, Selma, 1858-1940 Jerusalem etext15844 Eekhoud, Georges, 1854-1927 Escal-Vigor etext15870 Hill, Aaron, 1685-1750 'Of Genius', in The Occasional Paper, and Preface to The Creation etext15872 Sparks, William Henry, 1800-1882 The Memories of Fifty Years etext15917 Various The Great Round World and What Is Going On In It, Vol. 1, No. 40, August 12, 1897 etext15936 Van Dyke, Henry, 1852-1933 The Sad Shepherd etext32270 Goodwin, Harold L. (Harold Leland), 1914-1990 The Golden Skull etext15946 La Fontaine, Jean de, 1621-1695 The Original Fables of La Fontaine etext15966 Duncan, Sara Jeannette, 1862?-1922 A Voyage of Consolation etext15971 Dowd, Emma C., -1938 Polly of the Hospital Staff etext15999 Falstaffe, John, Sir The Theater (1720) etext16048 Wallace, Dillon, 1863-1939 Troop One of the Labrador etext16053 Duchess, 1855?-1897 The Haunted Chamber etext16054 Bradley, Mary Hastings, -1976 The Palace of Darkened Windows etext16056 Harvey, Harold A Soldier's Sketches Under Fire etext16083 Various The American Missionary — Volume 43, No. 01, January, 1889 etext16187 Dante Alighieri, 1265-1321 La Divina Comèdia: Infièr etext16227 Everett, Edward, 1794-1865 The Uses of Astronomy etext16228 Various Chambers's Edinburgh Journal, No. 422 etext16240 Mérimée, Prosper, 1803-1870 La Vénus d'Ille etext16251 Dennis, C. J. (Clarence James), 1876-1938 A Book for Kids etext16256 Gilbreth, Lillian Moller, 1878-1972 The Psychology of Management etext16262 Lessing, Gotthold Ephraim, 1729-1781 Nathan der Weise etext16273 Anonymous The Manual of Heraldry; Fifth Edition etext16287 James, William, 1842-1910 Talks To Teachers On Psychology; And To Students On Some Of Life's Ideals etext16384 Queirós, José Maria Eça de, 1845-1900 O Mandarim etext16400 Varro, Marcus Terentius De M. Terenti Varronis Libris Grammaticis etext16429 Junqueiro, Abílio Manuel Guerra, 1850-1923 Contos para a infância etext16470 Sinclair, Upton, 1878-1968 The Profits of Religion, Fifth Edition etext16514 Benton, Caroline French A Little Cook Book for a Little Girl etext16517 Maugham, W. Somerset (William Somerset), 1874-1965 Liza of Lambeth etext16545 Abbott, Jacob, 1803-1879 King Alfred of England etext16571 Pina, Rui de, 1440-1521 Chronica d'el rei D. Diniz (Vol. I) etext16575 Playfair, William, 1759-1823 An Inquiry into the Permanent Causes of the Decline and Fall of Powerful and Wealthy Nations. etext16626 Henderson, Keith, 1883-1982 Letters to Helen etext16631 Day, Holman, 1865-1935 The Skipper and the Skipped etext16656 López, Honorio, 1875-1958 Dimasalang Kalendariong Tagalog (1922) etext16661 George Selwyn: His Letters and His Life etext16686 Ewing, Juliana Horatia Gatty, 1841-1885 Verses for Children etext16688 Follen, Eliza Lee Cabot, 1787-1860 Hymns, Songs, and Fables, for Young People etext16719 McCutcheon, George Barr, 1866-1928 The Husbands of Edith etext16779 Betson, Thomas A Ryght Profytable Treatyse Compendiously Drawen Out Of Many and Dyvers Wrytynges Of Holy Men etext16868 Watson, William Henry Lowe Adventures of a Despatch Rider etext16902 Dorsey, Anna Hanson, 1815-1896 May Brooke etext16920 Bouvier, Jean Baptiste, 1783-1854 Venere ed Imene al tribunale della penitenza: manuale dei confessori etext16948 Various Scientific American Supplement, No. 611, September 17, 1887 etext16950 Rossetti, Christina Georgina, 1830-1894 Goblin Market, The Prince's Progress, and Other Poems etext16989 Lautréamont, comte de, 1846-1870 Poésies etext16999 Paton, Andrew Archibald, 1811-1874 Servia, Youngest Member of the European Family etext17030 Doctorow, Cory, 1971- Super Man and the Bug Out etext17035 Perodi, Emma, 1850-1918 Il Principe della Marsiliana etext17144 Viereck, George Sylvester, 1884-1962 The House of the Vampire etext17146 Pyrnelle, Louise Clarke, 1850-1907 Diddie, Dumps & Tot etext17155 Boyle, Frederick, 1841- About Orchids etext17183 Frazer, Caroline Augusta Atmâ etext17209 Roberts, Alexander, -1620 A Treatise of Witchcraft etext17220 Leavitt, Lydia Bohemian Society etext17250 Burgess, Thornton W. (Thornton Waldo), 1874-1965 Mother West Wind "Where" Stories etext17266 Warren, George A. The Banner Boy Scouts etext17273 Boys, Iohn, 1571-1625 An Exposition of the Last Psalme etext17339 Serena, Carla, -1884 Schetsen uit den Kaukasus etext17412 Hope, Laura Lee The Bobbsey Twins etext17442 Swan, Annie S. (Annie Shepherd), 1859-1943 The Guinea Stamp etext17457 Maupassant, Guy de, 1850-1893 Une vie etext17480 Berens, Lewis Henry The Digger Movement in the Days of the Commonwealth etext17495 Bellinger, Martha Idell Fletcher, 1870-1960 The Stolen Singer etext17518 Hugo, Victor, 1802-1885 Les misérables Tome IV etext17538 Greef, Guillaume de, 1842-1924 Les lois sociologiques etext17580 Verne, Jules, 1828-1905 De Zuidster, het land der diamanten etext17590 Gourmont, Remy de, 1858-1915 Lettres à Sixtine etext17665 Alcott, Louisa May, 1832-1888 Mia Kontrabandulo etext17711 Various Hindustani Lyrics etext17743 etext17759 Various International Conference Held at Washington for the Purpose of Fixing a Prime Meridian and a Universal Day. October, 1884. etext17763 Green, Anna Katharine, 1846-1935 The Mystery of the Hasty Arrow etext17776 Gregory, W. B. (William Benjamin), 1871-1945 Transactions of the American Society of Civil Engineers, vol. LXX, Dec. 1910 etext17853 De Amicis, Edmondo, 1846-1908 Ricordi di Parigi etext17935 Bitmead, Richard French Polishing and Enamelling etext17956 Grey of Fallodon, Edward Grey, Viscount, 1862-1933 Recreation by Viscount Grey of Fallodon, K.G. etext17959 Rohmer, Sax, 1883-1959 The Hand Of Fu-Manchu etext17975 Turgenev, Ivan Sergeevich, 1818-1883 Kuningas Lear arolla etext18026 Galvão, Duarte, 1446-1517 Chronica de el-rei D. Affonso Henriques etext18030 Päivärinta, Pietari, 1827-1913 Tintta Jaakko etext18044 Various Wine, Women, and Song etext18082 Gonzaga, Tomás António, 1744-1810? Marilia de Dirceo etext18088 Ghislanzoni, Antonio, 1824-1893 Libro bizzarro etext18096 Apperson, George Latimer, 1857-1937 The Social History of Smoking etext18109 Piper, H. Beam, 1904-1964 Graveyard of Dreams etext18162 Shakespeare, William, 1564-1616 As you like it. French etext18165 Hapgood, Isabel Florence, 1850-1928 Russian Rambles etext18201 Dickens, Charles, 1812-1870 David Copperfield II etext18207 Bangs, John Kendrick, 1862-1922 Coffee and Repartee etext18245 Andersen, H. C. (Hans Christian), 1805-1875 Contes merveilleux, Tome II etext18328 Morris, William, 1834-1896 The Story of Sigurd the Volsung and the Fall of the Niblungs etext18330 Herculano, Alexandre, 1810-1877 Opúsculos por Alexandre Herculano - Tomo 09 etext18369 Kingsley, Charles, 1819-1875 Westminster Sermons etext18375 Various The Argosy etext18379 Charnwood, Godfrey Rathbone Benson, Baron, 1864-1945 Abraham Lincoln etext18397 Ferri, Enrico, 1859-1929 Socialism and Modern Science (Darwin, Spencer, Marx) etext18430 Kilpatrick, Florence A. (Florence Antoinette), 1888- Our Elizabeth etext18452 etext18531 Wiggin, Kate Douglas Smith, 1856-1923 Timothy's Quest etext18537 Murger, Henry, 1822-1861 Scènes de la vie de jeunesse etext18548 Jacobs, Charles M. Transactions of the American Society of Civil Engineers, vol. LXVIII, Sept. 1910 etext18554 Various The Continental Monthly, Vol. 5, No. 2, February, 1864 etext18642 Effinger, John Robert, 1869-1933 Women of the Romance Countries etext18645 Trollope, Anthony, 1815-1882 Thackeray etext18756 Daviess, Maria Thompson, 1872-1924 The Heart's Kingdom etext18793 Buysse, Cyriël, 1859-1932 Broeder en Zuster etext18851 Morison, James Cotter, 1832-1888 Gibbon etext18911 Wilson, Edmund Beecher, 1856-1939 Biology etext18957 Barlow, Jane, 1857-1917 Strangers at Lisconnel etext19053 Willard, Emma, 1787-1870 Theory of Circulation by Respiration etext19062 Castilho, António Feliciano de, 1800-1875 Eco da Voz Portugueza por Terras de Santa Cruz etext19186 Lemaître, Jules, 1853-1914 Les contemporains, première série etext19223 Munroe, Kirk, 1850-1930 At War with Pontiac etext19245 Shoghi Effendi, 1897-1957 The Light of Divine Guidance (Volume 2) etext19265 Phillips, Henry Wallace, 1869-1930 Red Saunders' Pets and Other Critters etext19272 Chester, George Randolph, 1869-1924 The Early Bird etext19279 `Abdu'l-Bahá, 1844-1921 Memorials of the Faithful etext19292 `Abdu'l-Bahá, 1844-1921 Tablet to August Forel etext19293 Irving, Washington, 1783-1859 La Legendo de Dorm-Valeto etext19305 Dieulafoy, Jane, 1851-1916 Van Toledo naar Granada, deel 2 etext19317 Hamilton, Ian, Sir, 1853-1947 Gallipoli Diary, Volume I etext19318 Hope, Laura Lee The Outdoor Girls in the Saddle etext19403 Austin, Anne, 1895- Murder at Bridge etext19462 Lynde, Francis, 1856-1930 The Price etext19531 Anonymous Punky Dunk and the Mouse etext19538 Fowler, Frank The Broncho Rider Boys with Funston at Vera Cruz etext19586 Birmingham, George A., 1865-1950 The Simpkins Plot etext19629 Hedenström, Alfred von, 1869- Venäjän historia 1878-1918 etext19632 Whittier, John Greenleaf, 1807-1892 Barbara Frietchie etext19653 Braun, Lily, 1865-1916 Im Schatten der Titanen etext19661 Bailey, Carolyn Sherwin, 1875-1961 Tell Me Another Story etext19663 Anonymous Reprezentação à Academia Real das Ciências sobre a refórma da ortografia etext19676 Naylor, Edward W. (Edward Woodall), 1867-1934 Shakespeare and Music etext19685 Jewett, Sarah Orne, 1849-1909 Country of the Pointed Firs etext19718 James, Henry, 1843-1916 The Bostonians, Vol. II (of II) etext19741 Neuhauser, Eduard Altenahr en zijn omgeving etext19747 Willoughby, Barrett, -1959 Where the Sun Swings North etext19749 Thury, Zoltán, 1870-1906 Thury Zoltán összes művei, Volume I etext19783 Williams, William Carlos, 1883-1963 Danse Russe etext19801 Fortescue, J. W. (John William), 1859-1933 The Drummer's Coat etext19884 Farina, Salvatore, 1846-1918 Fante di picche etext19915 Hoffmann, Heinrich, 1809-1894 Slovenly Betsy etext19964 Dye, Charles Regeneration etext20105 Mann, Henry The Land We Live In etext20220 Betts, George Herbert, 1868-1934 The Mind and Its Education etext20243 Merriman, Henry Seton, 1862-1903 Dross etext20280 Vachell, Horace Annesley, 1861-1955 The Hill etext20294 Hutchinson, Woods, 1862-1930 A Handbook of Health etext20345 Thomson, Edward William, 1849-1924 Old Man Savarin and Other Stories etext20387 James, M. R. (Montague Rhodes), 1862-1936 A Thin Ghost and Others etext20403 Howells, William Dean, 1837-1920 A Fearful Responsibility and Other Stories etext20539 FitzGerald, Edward, 1809-1883 Letters of Edward FitzGerald in Two Volumes etext20555 Holmes, Edmond, 1850-1936 What Is and What Might Be etext20569 Peterson, Henry Dulcibel etext20570 Figueiredo, Cândido de, 1846-1925 A penalidade na India segundo o Código de Manu etext20582 Freitas, Joaquim de Melo, 1852-1923 Garatujas etext20826 Jones, James Athearn, 1791-1854 Traditions of the North American Indians, Vol. 1 etext20839 Matthews, Washington, 1843-1905 The Mountain Chant, A Navajo Ceremony etext20860 Roscoe, William, 1753-1831 The Butterfly's Ball and the Grasshopper's Feast etext20896 Cupples, George, Mrs., 1839-1898 Carry's Rose, etext20967 Phillips, George S. (George Searle), 1815-1889 A Guide to Peterborough Cathedral etext20973 Verne, Jules, 1828-1905 Le tour du monde en quatre-vingts jours etext20984 May, Sophie, 1833-1906 Prudy Keeping House etext20990 Sharpe, Reginald R. (Reginald Robinson), 1848- London and the Kingdom - Volume II etext21039 Reed, Talbot Baines, 1852-1893 Boycotted etext21046 Hartwell, E. C. (Ernest Clark), 1883-1964 Story Hour Readings: Seventh Year etext21109 Vaizey, George de Horne, Mrs., 1857-1917 Big Game etext21120 Vaizey, George de Horne, Mrs., 1857-1917 The Fortunes of the Farrells etext21140 Brooke, L. Leslie (Leonard Leslie), 1862-1940 Johnny Crow's Party etext21142 Pushkin, Aleksandr Sergeevich, 1799-1837 Красавице etext21160 Blake, William, 1757-1827 Songs of Innocence and Experience etext21205 Bindloss, Harold, 1866-1945 The Gold Trail etext21275 Myrtle, Harriet, 1811?-1876 The Goat and Her Kid etext21277 Shakespeare, William, 1564-1616 La vie et la mort du roi Richard II etext21283 Figueiredo, Francisco de Paula de, 1768-1803 Santarenaida: poema eroi-comico etext21289 Anonymous Album chulo-gaiato ou collecção de receitas para fazer rir etext21303 Fenn, George Manville, 1831-1909 Devon Boys etext21323 Grenfell, Wilfred Thomason, Sir, 1865-1940 What the Church Means to Me etext21504 Kingston, William Henry Giles, 1814-1880 My First Voyage to Southern Seas etext21509 Pryer, William Stephen Rowena & Harold etext21510 Schmitz, James H., 1911-1981 Legacy etext21522 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Innocence of Father Brown etext21523 Chambers, Robert W. (Robert William), 1865-1933 The King in Yellow, Part 1 etext21603 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Wisdom of Father Brown etext21659 Franklin, Miles, 1879-1954 Some Everyday Folk and Dawn etext21669 Liszt, Franz, 1811-1886 F. Chopin etext21674 Rhodes, Kathlyn The Making of a Soul etext21697 Ballantyne, R. M. (Robert Michael), 1825-1894 The Red Man's Revenge etext21717 Ballantyne, R. M. (Robert Michael), 1825-1894 Battles with the Sea etext21746 Ballantyne, R. M. (Robert Michael), 1825-1894 The Lighthouse etext21786 Albuquerque, Luís da Silva Mousinho de, 1792-1846 Ruy o escudeiro: Conto etext21798 May, Karl Friedrich, 1842-1912 Winnetou I etext21805 Vaknin, Samuel, 1961- TrendSiters Digital Content and Web Technologies etext21828 Stalker, James, 1848-1927 The Life of St. Paul etext21835 Spargo, John, 1876-1966 The Jew and American Ideals etext21898 Various St. Nicholas Magazine for Boys and Girls, Vol. 5, July 1878, No. 9 etext21952 Various The American Missionary — Volume 50, No. 3, March, 1896 etext22011 La Peyrère, Isaac de, 1594-1676 Relation de l'Islande etext22058 Lever, Charles James, 1806-1872 Cornelius O'Dowd Upon Men And Women And Other Things In General etext22093 Snorri Sturluson, 1179-1241 The Sagas of Olaf Tryggvason and of Harald The Tyrant (Harald Haardraade) etext22103 Anonymous With a Highland Regiment in Mesopotamia etext22106 Innes, A. Taylor John Knox etext22201 J. L. B. The Butterfly's Funeral etext22214 Hamilton, Margaret Wolfe Molly Bawn etext22278 etext22300 Various The Menorah Journal, Volume 1, 1915 etext22357 Doyle, Arthur Conan, Sir, 1859-1930 Danger! and Other Stories etext22388 Anonymous Le songe doré de la pucelle etext22434 Bailey, Arthur Scott, 1877-1949 The Tale of Timothy Turtle etext22447 Hopkins, Gerard Manley, 1844-1889? Poems of Gerard Manley Hopkins etext22581 Howard, Francis E. The Child-Voice in Singing etext22597 Collins, Les Question of Comfort etext22598 Bailey, W. F. The Story of the First Trans-Continental Railroad etext22620 etext22625 Various Notes and Queries, Number 67, February 8, 1851 etext22643 Parreira, Carlos, 1890-1950 Santa Rita Pintor etext22650 Morris, William, 1834-1896 The Defence of Guenevere and Other Poems etext22662 Gautier, Théophile, 1811-1872 The Mummy's Foot etext22723 Proença, Raul Sangreman, 1884-1941 Os Sinos etext22779 Lighthall, W. D. (William Douw), 1857-1954 The False Chevalier etext22803 Hewlett, Maurice Henry, 1861-1923 Helen Redeemed and Other Poems etext22857 The Second Epistle of Paul the Apostle to the Corinthians etext22880 Perkins, Thomas, Rev., 1842-1907 Bell's Cathedrals: A Short Account of Romsey Abbey etext22919 Various Le procès des Templiers etext22935 John the Apostle, Saint The Second Epistle of John etext22949 Anderson, Sherwood, 1876-1941 Winesburg, Ohio etext23020 Vigée-Lebrun, Louise-Elisabeth, 1755-1842 Souvenirs de Madame Louise-Élisabeth Vigée-Lebrun, Tome second etext23076 Baum, L. Frank (Lyman Frank), 1856-1919 Tik-Tok of Oz etext23086 Work, Milton C. (Milton Cooper), 1864-1934 Auction of To-day etext23173 Lewis, Alfred Henry, 1857-1914 How The Raven Died etext23208 Long, Helen Beecher How Janice Day Won etext23224 Bandelier, Adolph Francis Alphonse, 1840-1914 Historical Introduction to Studies Among the Sedentary Indians of New Mexico; Report on the Ruins of the Pueblo of Pecos etext23252 Catherwood, Mary Hartwell, 1847-1902 The Indian On The Trail etext23273 Kingston, William Henry Giles, 1814-1880 John Deane of Nottingham etext23312 Brackett, Anna C. (Anna Callender), 1836-1911 The Education of American Girls etext23321 Flickinger, Robert Elliott, 1846- The Choctaw Freedmen etext23355 Aldrich, Thomas Bailey, 1836-1907 The Little Violinist etext23422 Philip, Alexander Essays Towards a Theory of Knowledge etext23475 Byron, George Gordon Byron, Baron, 1788-1824 The Works of Lord Byron. Vol. 5 etext23490 Fitzgerald, Percy Hethrington, 1834-1925 Pickwickian Studies etext23504 Kingston, William Henry Giles, 1814-1880 The Story of Nelson etext23518 Various Punch, or the London Charivari, Vol. 158, 1920-05-05 etext23682 Agee, Alva, 1858-1943 Crops and Methods for Soil Improvement etext23803 Janvier, Thomas A. (Thomas Allibone), 1849-1913 A Border Ruffian etext23877 Tianhuazangzhuren 玉嬌梨 etext23931 Smith, George O. (George Oliver), 1911-1981 Instinct etext23946 Birmingham, George A., 1865-1950 Lalage's Lovers etext23953 Arnault, A.-V. (Antoine-Vincent), 1766-1834 Souvenirs d'un sexagénaire, Tome II etext23969 Melville, Herman, 1819-1891 Typee etext23997 Pushkin, Aleksandr Sergeevich, 1799-1837 Eugene Oneguine [Onegin] etext24066 Bailey, John Cann, 1864-1931 Dr. Johnson and His Circle etext24108 La Fontaine, Jean de, 1621-1695 Fables in Rhyme for Little Folks etext24137 Meng, Yuanlao, fl. 1126-1147 東京夢華錄 etext24164 Garrett, João Batista da Silva Leitão de Almeida, 1799-1854 Viagens na Minha Terra etext24222 Chambers, George F. (George Frederick), 1841-1915 The Story of Eclipses etext24246 Moore, Ward, 1903-1978 Greener Than You Think etext24248 Lavell, Edith The Girl Scouts' Good Turn etext24306 Chambers, Robert W. (Robert William), 1865-1933 The Flaming Jewel etext24344 Redondo, Manuel Ferreira Garcia, 1854-1916 O Descobrimento do Brazil etext24357 Various Punch, or the London Charivari, July 1, 1914 etext24378 Leathley, Mary Elizabeth Southwell Dudley, 1818-1899 Mamma's Stories about Birds etext24387 Anonymous The Community Cook Book etext24402 Saunders, William, 1822-1900 Catalogue of Economic Plants in the Collection of the U. S. Department of Agriculture etext24432 Various The Wit and Humor of America, Volume VIII (of X) etext24434 Various The Wit and Humor of America, Volume X (of X) etext24442 Australia. Queensland. Department of Ports and Harbours Report on the Department of Ports and Harbours for the Year 1890-91 etext24473 The Cat and the Mouse etext24495 Gordon, Nathaniel The Golden Judge etext24542 Murrey, Thomas J. (Thomas Jefferson) Fifty Salads etext24577 Griggs, Sutton E. (Sutton Elbert), 1872-1933 The Hindered Hand etext24594 English, George Bethune, 1787-1828 Letter to the Reverend Mr. Cary etext24605 Chant, Joseph Horatio, 1837-1928 Gleams of Sunshine etext24658 Ryerson, Egerton, 1803-1882 The Loyalists of America and Their Times, Vol. 2 of 2 etext24764 Griffith, George Chetwynd, 1857-1906 The World Peril of 1910 etext24797 etext24815 Davis, Edward Ziegler, 1878-1924 Translations of German Poetry in American Magazines 1741-1810 etext24843 Ramalho, Monteiro, 1862-1949 As ratices da Rattazzi etext24940 Various The Nursery, September 1873, Vol. XIV. No. 3 etext25040 Belcourt, N. A. (Napoléon-Antoine), 1860-1932 Bilingualism etext25041 Burpee, Lawrence J. (Lawrence Johnstone), 1873-1946 Humour of the North etext25048 Soldan, Wilhelm Gottlieb Soldan's Geschichte der Hexenprozesse etext25052 Fröding, Gustaf, 1860-1911 Valittuja runoja etext25088 Hale, John Richard Famous Sea Fights etext25108 Becke, Louis, 1855-1913 The South Seaman etext25181 Barrili, Anton Giulio, 1836-1908 Castel Gavone etext25224 Boudreaux, F. J., 1821-1894 The Happiness of Heaven etext25225 etext25257 Mendell, M. Op den Tarn etext25292 Miller, Olive Thorne, 1831-1918 In Nesting Time etext25294 Burgess, Fred. W. (Frederick William), 1855-1945 Chats on Household Curios etext25297 Lu, Xun, 1881-1936 狂人日記 etext25330 Silva, Luiz Augusto Rebello da, 1822-1871 A Casa dos Fantasmas - Volume I etext25366 Shen, Dao, ca. 350 B.C.-ca. 275 B.C. 慎子 etext25408 France, Anatole, 1844-1924 Child Life In Town And Country etext25491 Peck, George W. (George Wilbur), 1840-1916 Peck's Sunshine etext25507 May, Sophie, 1833-1906 Little Grandmother etext25553 Unknown My Flower-pot etext25562 Banks, William, 1859?-1920 William Adolphus Turnpike etext25573 Caine, Hall, Sir, 1853-1931 The Drama Of Three Hundred & Sixty-Five Days etext25610 Stevenson, Robert Louis, 1850-1894 A Child's Garden of Verses etext25617 Stevenson, Robert Louis, 1850-1894 A Child's Garden of Verses etext25620 Optic, Oliver, 1822-1897 Asiatic Breezes etext25639 Various Graded Memory Selections etext25649 Yanxiayishi 巧聯珠 etext25659 Unknown A Week of Instruction and Amusement, etext25679 Onkel Adam, 1804-1889 Puulusikka etext25724 Chamberlain, Lucia The Other Side of the Door etext25742 Wilson, Ann Hostage etext25760 Reymont, Władysław Stanisław, 1867-1925 Komediantka. English etext25788 Stephen, Leslie, Sir, 1832-1904 The English Utilitarians, Volume II (of 3) etext25805 Albertson, Catherine, 1868- In Ancient Albemarle etext25823 Bassett, Sara Ware, 1872-1968 The Story of Leather etext25845 etext25883 Denslow, W. W. (William Wallace), 1856-1915 Denslow's Humpty Dumpty etext25921 Bartimeus, 1886-1967 The Long Trick etext25973 Keyser, Leander S. (Leander Sylvester), 1856-1937 Birds of the Rockies etext26036 Jones, Edward Smyth, 1881- The Sylvan Cabin etext26048 Fawcett, Edgar, 1847-1923 Some Reminiscences of old Victoria etext26063 Hume, Fergus, 1859-1932 A Coin of Edward VII etext26110 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 O Olho de Vidro etext26155 Halsey, Harlan Page, 1839?-1898 Two Wonderful Detectives etext26159 Carlyle, Thomas, 1795-1881 Past and Present etext26181 MacGregor, Mary Esther Miller, 1876-1961 Stories of Siegfried etext26185 Various Lippincott's Magazine, November 1885 etext26191 Budrys, Algis, 1931-2008 Citadel etext26273 Montgomery, L. M. (Lucy Maud), 1874-1942 The Story Girl etext26369 Unknown Amy Harrison etext26385 Various Punch, or the London Charivari, Volume 104, January 7, 1893 etext13738 Palmer, Frederick, 1873-1958 The Last Shot etext26386 Laboulaye, Edouard, 1811-1883 Laboulaye's Fairy Book etext26429 Harris, Joel Chandler, 1848-1908 Nights With Uncle Remus etext26443 Rondou, W.-F. De honig en zijn gebruik etext26589 Nesbit, E. (Edith), 1858-1924 The Story of the Treasure Seekers etext26623 Sue, Eugène, 1804-1857 The Brass Bell etext26682 Various Donahoe's Magazine, Volume 15, No. 2, February 1886 etext26701 Manin, Leonardo, 1771-1863 Illustrazione delle medaglie dei dogi di Venezia denominate Oselle etext26703 Bryant, Lorinda Munson, 1855-1933 The Children's Book of Celebrated Pictures etext26711 Landa, Gertrude Jewish Fairy Tales and Legends etext26769 Various Punch, or the London Charivari, Vol. 104, May 20, 1893 etext26796 Cleaveland, Elizabeth H. Jocelyn (Elizabeth Hannah Jocelyn), 1824-1911 No Sect in Heaven etext26804 Restif de La Bretonne, 1734-1806 L'Anti-Justine etext26901 Emerson, Edwin, 1869-1959 A History of the Nineteenth Century, Year by Year etext26917 Wells, Hal K., 1900- Zehru of Xollar etext26969 Various Punch, or the London Charivari, Vol. 147, August 19th, 1914 etext27008 Various Notes and Queries, Number 211, November 12, 1853 etext27013 Simak, Clifford D., 1904-1988 Hellhounds of the Cosmos etext27087 Liu, Guang Wei Wu De Ji etext27105 Tianhuazangzhuren 玉支机 etext27130 Morrison, Thomas, 1705-1778 A Pindarick Ode on Painting etext27138 The Mirror of Taste, and Dramatic Censor, Vol. I, No. 6, June 1810 etext27150 Maniates, Belle Kanaris Penny of Top Hill Trail etext27161 Boyd, E. E., Mrs. 'Our Guy' etext27194 Noyes, Carleton Eldredge, 1872-1950 The Enjoyment of Art etext27270 Jones, John P. (John Peter), 1847-1916 India's Problem, Krishna or Christ etext27323 Leverson, Ada, 1862-1933 Bird of Paradise etext27405 Ulf Van Yern etext27413 Coelho, José Ramos, 1832-1914 Á Ilha da Madeira etext27435 Gibbons, James, 1834-1921 The Faith of Our Fathers etext27474 Queen Berngerd, The Bard and the Dreams etext27488 Acton, John Emerich Edward Dalberg Acton, Baron, 1834-1902 Lectures on the French Revolution etext27548 Watkins, Thomas The art of promoting the growth of the cucumber and melon etext27554 Leverson, Ada, 1862-1933 The Twelfth Hour etext27598 Walser, Robert, 1878-1956 Der Gehülfe etext14768 Ruyra, Joaquim, 1858-1939 La Parada etext14772 Swainson, Frederick Acton's Feud etext27602 The True Story Book etext27632 etext27720 Guerrazzi, Francesco Domenico, 1804-1873 La serpicina etext27778 Russell, H. L. (Harry Luman), 1866-1954 Outlines of Dairy Bacteriology, 8th edition etext27785 Jeaffreson, John Cordy, 1831-1901 A Book About Lawyers etext27793 Comfort, Will Levington, 1878-1932 Child and Country etext27821 Husik, Isaac, 1876-1939 A History of Mediaeval Jewish Philosophy etext27944 The Home Medical Library, Volume II (of VI) etext27980 Reid, Mayne, 1818-1883 Wood Rangers etext28092 Various Punch or the London Charivari, Vol. 147, October 7, 1914 etext28133 Various The Nursery, May 1877, Vol. XXI. No. 5 etext28138 Various The Nursery, October 1877, Vol. XXII. No. 4 etext28141 Various The Nursery, February 1878, Vol. XXIII, No. 2 etext28215 Simak, Clifford D., 1904-1988 Empire etext28285 Various The Atlantic Monthly, Volume 20, No. 121, November, 1867 etext28323 Bingley, William, 1774-1823 Travels in North America, From Modern Writers etext28342 Various Blackwood's Edinburgh Magazine, Volume 56, Number 349, November, 1844 etext28380 Bettany, G. T. (George Thomas), 1850-1891 Life of Charles Darwin etext28404 Various Harper's Young People, March 9, 1880 etext28421 Vasari, Giorgio, 1511-1574 Lives of the Most Eminent Painters Sculptors and Architects etext28457 Riego de la Branchardière, Éléonore Golden Stars in Tatting and Crochet etext28569 Tappan, Eva March, 1854-1930 Makers of Many Things etext28582 Gilman, Charlotte Perkins, 1860-1935 De economische toestand der vrouw etext28655 Chapman, Allen Ralph on the Overland Express etext28690 Montgomery, H. B. (Helen Barrett), 1861-1934 The Empire of the East etext28776 Abbott, Jacob, 1803-1879 Stuyvesant etext28840 Wells, H. G. (Herbert George), 1866-1946 The Island of Dr. Moreau etext28859 Marshall, John, 1755-1835 The Life Of George Washington etext28953 Lowe, Richard E. When I Grow Up etext28982 Zangwill, Israel, 1864-1926 Ghetto Comedies etext29006 Trakl, Georg, 1887-1914 Die Dichtungen von Georg Trakl etext29027 Rich, H. Thompson (Harold Thompson), 1893-1974 Spawn of the Comet etext29038 Starzl, Roman Frederick, 1899-1976 In the Orbit of Saturn etext29049 Bussy, Roger de Rabutin, comte de, 1618-1693 Histoire amoureuse des Gaules etext29066 Various Harper's Young People, August 3, 1880 etext29172 Abbott, John S. C. (John Stevens Cabot), 1805-1877 Ferdinand De Soto, The Discoverer of the Mississippi etext29222 Godfrey, Thomas, 1736-1763 The Prince of Parthia etext29267 Mellin, G. H. (Gustaf Henrik), 1803-1876 Maria Dundee eli Puolalaiset Tukholmassa etext29281 King, Edward, 1735?-1807 Remarks Concerning Stones Said to Have Fallen from the Clouds, Both in These Days, and in Antient Times etext29318 Various Notes and Queries, Number 81, May 17, 1851 etext29323 Ames, N. (Nathaniel), 1796-1835 An Old Sailor's Yarns etext29332 Michelet, Jules, 1798-1874 Histoire de France 1715-1723 etext29341 The Story of the Great War, Volume V (of 8) etext29349 Rees, Alfred Wellesley, 1872-1917 Creatures of the Night etext29465 Pyrker, János László, 1772-1847 Rudolph von Habsburg. etext29509 Sheckley, Robert, 1928-2005 Warm etext29517 Williamson, Margaret, 1886- John and Betty's History Visit etext29543 etext29568 Bacheller, Irving, 1859-1950 'Charge It' etext29595 Barrow, Sarah L. Funny Little Socks etext29608 Kidd, James Harvey, 1840-1913 Personal Recollections of a Cavalryman etext29617 Gibbs, George, 1870-1942 The Vagrant Duke etext29622 Episcopal Church in Scotland The Book of Common Prayer etext29633 Bishop, Philip W. The Beginnings of Cheap Steel etext29666 Aaberg, J. C. (Jens Christian), 1877-1970 Hymns and Hymnwriters of Denmark etext29669 Various Punch, or the London Charivari, Vol. 147, December 30, 1914 etext29798 Murray, David, 1830-1905 Japan etext29799 Andreyev, Leonid Nikolayevich, 1871-1919 Los espectros etext29830 Le Queux, William, 1864-1927 As we forgive them. Spanish etext29834 Thucydides, 455? BC-395 BC Πελοποννησιακός Πόλεμος, Τόμος δεύτερος etext29884 Lima, Jaime de Magalhães, 1859-1936 Rogações de Eremita etext9132 etext9130 etext16770 Upton, Bertha The Adventure of Two Dutch Dolls and a 'Golliwogg' etext29892 Ellis, Edward Sylvester, 1840-1916 Up the Forked River etext29914 Collins, A. Frederick (Archie Frederick), 1869- Short Cuts in Figures etext29952 Perry, Bliss, 1860-1954 The American Mind etext29957 Lagerlöf, Selma, 1858-1940 Ein Stück Lebensgeschichte etext29980 Lefèvre, Félicité, 1869- The Cock, The Mouse and the Little Red Hen etext29982 Owen, Catherine, -1889 Culture and Cooking etext29992 Various Punch, or the London Charivari, Volume 98, March 1, 1890 etext30010 Savage, Arthur Dekker Trees Are Where You Find Them etext30213 Valera, Juan, 1824-1905 Algo de todo etext30256 Wilcox, Ella Wheeler, 1855-1919 The Heart of the New Thought etext30263 Eggleston, George Cary, 1839-1911 A Captain in the Ranks etext30305 Savage, Arthur Dekker DP etext30309 Swain, George Fillmore, 1857-1931 How to Study etext30333 Meade, L. T., 1854-1914 Daddy's Girl etext30345 Seneca, Lucius Annaeus, 4 BC-65 Octavia Praetexta etext30349 Van Schaick, George, 1861-1924 The Peace of Roaring River etext30483 Kelley, Ethel M. (Ethel May), 1878- Outside Inn etext30489 Combe, George, 1788-1858 Phrenological Development of Robert Burns etext30533 White, John A. Genera and Subgenera of Chipmunks etext30614 Homer, 750? BC-650? BC Ομήρου Οδύσσεια Τόμος Β etext30623 Lyle, Eugene P. (Eugene Percy), 1873-1961 The Missourian etext30668 Aldrich, Thomas Bailey, 1836-1907 Daisy's Necklace etext30726 Cole, E. W. (Edward William), 1832-1918 Cole's Funny Picture Book No. 1 etext30806 Pereira da Silva, Manuel Joaquim Apontamentos para a Biographia do Cidadão José da Silva Passos etext30900 Lewis, Joseph Tyranny of God etext30933 Doyle, Arthur Conan, Sir, 1859-1930 Sherlock Holmes: De Agra-Schat etext30935 Various Encyclopaedia Britannica, 11th Edition, Volume 7, Slice 2 etext30971 Anderson, Poul William, 1926-2001 Industrial Revolution etext30980 Libbey, Laura Jean, 1862-1924 Kidnapped at the Altar etext31003 Dudley, Howard The History and Antiquities of Horsham etext31177 Unknown Ritual Conformity etext31207 Kuttner, Henry, 1915-1958 Where the World is Quiet etext31218 Mann, Heinrich Flöten und Dolche etext31251 Bartrum, Edward The Book of Pears and Plums etext31271 Paine, Thomas, 1737-1809 The Writings Of Thomas Paine, Volume III. etext31302 Payne, Buckner H. 'Ariel' The Negro: what is His Ethnological Status? 2nd Ed. etext31317 Stratemeyer, Edward, 1862-1930 The Campaign of the Jungle etext31381 Marshall, Archibald The Squire's Daughter etext31392 Wilson, Richard, 1920-1987 The Inhabited etext31405 Shakespeare, William, 1564-1616 Η τρικυμία etext31438 Polemis, Ioannis, 1862-1924 Ο Βασιλιάς Ανήλιαγος etext31459 Stowe, Harriet Beecher, 1811-1896 Onkel Tom's Hütte etext31474 Jovanović, Vojislav Mate, 1884-1968 "La Guzla" de Prosper Mérimée etext31494 Bok, Edward William, 1863-1930 The Young Man in Business etext31498 Musgrave, Mrs. H. A Little Hero etext31501 Anderson, Poul William, 1926-2001 The Sensitive Man etext31505 Le Bon, Gustave, 1841-1931 Psychologie de l'éducation etext31514 Brown, Paul Cameron Prussian Blue etext31526 Nohl, Louis Life of Wagner etext31555 Otis, James, 1848-1912 Under the Liberty Tree etext31624 Watson, Glen W. A Brief History of Element Discovery, Synthesis, and Analysis etext31628 Corneille, Pierre, 1606-1684 Oeuvres de P. Corneille etext31674 Jones, J. Knox, 1929-1992 Comments on the Taxonomic Status of Apodemus peninsulae, with Description of a New Subspecies from North China etext31716 Sheldon, Walter J., 1917- Jimsy and the Monsters etext31758 Pollard, John Call Him Savage etext31762 Abernathy, Robert The Record of Currupira etext31780 Journal of a Trip to California by the Overland Route Across the Plains in 1850-51 etext31787 Bloomfield, Robert, 1766-1823 The Bird and Insects' Post Office etext31800 Hellé, André Histoire de Quillembois Soldat etext31888 Waugh, Benjamin Some Conditions of Child Life in England etext31970 Sampson, Robert Feline Red etext32069 Jackson, Helen Hunt, 1830-1885 Letters from a Cat etext32125 Malleson, George Bruce, 1825-1898 Rulers of India: Lord Clive etext32130 Kieler, Laura André Kautokeinolainen etext32192 Gallatin, Albert, 176-1849 Peace with Mexico etext32208 Ellanby, Boyd The Star Lord etext32259 Anonymous Modest Remarks upon the Bishop of London's Letter Concerning the Late Earthquakes etext32328 Erichsen, Hugo Methods of Authors etext32396 Livingston, Berkeley Oogie Finds Love etext32435 Meredith, L. P. Every-Day Errors of Speech etext32438 Faris, John Thomson The Book of Courage etext32540 Muir, John, 1838-1914 My First Summer in the Sierra etext32541 DeFord, Miriam Allen One Way etext32696 Williams, Robert Moore, 1907-1977 Planet of the Gods etext64 Burroughs, Edgar Rice, 1875-1950 The Gods of Mars etext125 Stratton-Porter, Gene, 1863-1924 A Girl of the Limberlost etext127 etext133 Frederic, Harold, 1856-1898 The Damnation of Theron Ware etext136 Stevenson, Robert Louis, 1850-1894 A Child's Garden of Verses etext140 Sinclair, Upton, 1878-1968 The Jungle etext142 Twain, Mark, 1835-1910 The 30,000 Dollar Bequest and Other Stories etext154 Howells, William Dean, 1837-1920 The Rise of Silas Lapham etext166 Wharton, Edith, 1862-1937 Summer etext256 United States Motion Picture of Rotating Earth etext258 Gordon, Adam Lindsay, 1833-1870 Poems by Adam Lindsay Gordon etext262 Brooke, Rupert, 1887-1915 The Collected Poems of Rupert Brooke etext271 Sewell, Anna, 1820-1878 Black Beauty etext406 Various Appreciations of Richard Harding Davis etext482 Hardy, Thomas, 1840-1928 The Woodlanders etext518 Baum, L. Frank (Lyman Frank), 1856-1919 The Enchanted Island of Yew etext537 Doyle, Arthur Conan, Sir, 1859-1930 Tales of Terror and Mystery etext543 Lewis, Sinclair, 1885-1951 Main Street etext556 Kipling, Rudyard, 1865-1936 Rewards and Fairies etext566 Schiller, Friedrich, 1759-1805 The History of the Thirty Years' War etext603 Borrow, George Henry, 1803-1881 Letters of George Borrow to the British and Foreign Bible Society etext626 Bury, Richard de, 1287-1345 The Love of Books etext658 Quintus, Smyrnaeus, 4th century The Fall of Troy etext662 etext689 Tolstoy, Leo, graf, 1828-1910 The Kreutzer Sonata and Other Stories etext764 Dodge, Mary Mapes, 1830-1905 Hans Brinker; or, the Silver Skates etext798 Stendhal, 1783-1842 Le Rouge et Le Noir etext799 Verne, Jules, 1828-1905 De la Terre à la Lune etext801 Stendhal, 1783-1842 Les Cenci etext802 Stendhal, 1783-1842 Vittoria Accoramboni etext810 Dickens, Charles, 1812-1870 George Silverman's Explanation etext876 Davis, Rebecca Harding, 1831-1910 Life in the Iron-Mills; or, the Korl Woman etext879 Whittier, John Greenleaf, 1807-1892 The Boy Captives etext964 Pyle, Howard, 1853-1911 The Adventures of Robin Hood etext1046 Wells, H. G. (Herbert George), 1866-1946 God the Invisible King etext1102 Shakespeare, William, 1564-1616 King Henry VI, Part 3 etext1112 Shakespeare, William, 1564-1616 Romeo and Juliet etext1124 Shakespeare, William, 1564-1616 History of Troilus and Cressida etext1126 Shakespeare, William, 1564-1616 Measure for Measure etext1173 Xenophon, 431 BC-350? BC The Economist etext1222 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 Cobb's Anatomy etext1259 Dumas père, Alexandre, 1802-1870 Twenty Years After etext1394 Dickens, Charles, 1812-1870 The Holly-Tree etext1415 Dickens, Charles, 1812-1870 Doctor Marigold etext1475 Balzac, Honoré de, 1799-1850 Gaudissart II etext1530 Shakespeare, William, 1564-1616 Measure for Measure etext1537 Shakespeare, William, 1564-1616 Pericles etext1587 Collins, Wilkie, 1824-1889 The Black Robe etext1614 Hawthorne, Julian, 1846-1934 The Golden Fleece, a romance etext1630 Collins, Wilkie, 1824-1889 Little Novels etext1659 Balzac, Honoré de, 1799-1850 The Girl with the Golden Eyes etext1673 Plato (spurious and doubtful works), 427? BC-347? BC Lesser Hippias etext1726 Plato, 427? BC-347? BC Theaetetus etext1890 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 Speaking of Operations etext1923 Reeve, Arthur B. (Arthur Benjamin), 1880-1936 The Poisoned Pen etext2067 Ossendowski, Ferdinand, 1876-1945 Beasts, Men and Gods etext2129 Edgeworth, Maria, 1767-1849 Murad the Unlucky and Other Tales etext2161 Burke, Thomas, 1886-1945 Song Book of Quong Lee of Limehouse etext2167 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 Miscellaneous Writings and Speeches — Volume 1 etext2262 Shakespeare, William, 1564-1616 Timon of Athens etext2295 Henry, O., 1862-1910 Waifs and Strays etext2296 Ibsen, Henrik, 1828-1906 Pillars of Society etext2298 Ball, Robert S. (Robert Stawell), Sir, 1840-1913 Great Astronomers etext2409 Goethe, Johann Wolfgang von, 1749-1832 Wilhelm Meisters Wanderjahre — Band 1 etext2414 Chrétien, de Troyes, 12th cent. Cligés. English etext2426 James, Henry, 1843-1916 The Diary of a Man of Fifty etext2439 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 The History of England, from the Accession of James II — Volume 2 etext2442 Ross, Edmund G. (Edmund Gibson), 1826-1907 History of the Impeachment of Andrew Johnson, President of the United States, by the House of Representatives, and his trial by the Senate for high crimes and misdemeanors in office, 1868 etext2560 Harte, Bret, 1836-1902 The Three Partners etext2564 Walker, H. Wilfrid Wanderings among South Sea Savages and in Borneo and the Philippines etext2633 Huxley, Thomas Henry, 1825-1895 Hasisadra's Adventure etext2635 Harte, Bret, 1836-1902 Clarence etext2639 Galsworthy, John, 1867-1933 Villa Rubein, and other stories etext2664 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Zanoni etext2710 Dumas père, Alexandre, 1802-1870 Louise de la Valliere etext2718 James, Henry, 1843-1916 The Chaperon etext2742 Dumas père, Alexandre, 1802-1870 Cenci etext2782 Schiller, Friedrich, 1759-1805 Wilhelm Tell etext2789 Penrose, Margaret The Motor Girls on a Tour etext2823 Thackeray, William Makepeace, 1811-1863 The Fitz-Boodle Papers etext2871 Darwin, Charles, 1809-1882 The Variation of Animals and Plants under Domestication — Volume 1 etext2923 Huxley, Thomas Henry, 1825-1895 Method By Which the Causes of the Present and Past Conditions of Organic Nature Are to Be Discovered — the Origination of Living Beings etext2959 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 09: the False Nun etext2984 Paine, Albert Bigelow, 1861-1937 Mark Twain, a Biography — Volume II, Part 1: 1886-1900 etext3037 Hendrick, Burton Jesse, 1870-1949 The Age of Big Business; a chronicle of the captains of industry etext3051 Howells, William Dean, 1837-1920 An Open-Eyed Conspiracy; an Idyl of Saratoga etext3056 Hardy, Thomas, 1840-1928 Wessex Tales etext3067 Reade, Charles, 1814-1884 Hard Cash etext3074 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Burgess Bird Book for Children etext3079 Maupassant, Guy de, 1850-1893 Original Short Stories — Volume 03 etext3085 Maupassant, Guy de, 1850-1893 Original Short Stories — Volume 09 etext3152 Neilson, William Allan, 1869-1946 The Junior Classics — Volume 1 etext3154 Raspe, Rudolf Erich, 1737-1794 The Surprising Adventures of Baron Munchausen etext3203 Ward, Grady Moby Part of Speech List etext3234 Pliny, the Younger, 62?-113 Letters of the Younger Pliny, First Series — Volume 1 etext3302 Sinclair, Upton, 1878-1968 The Second-Story Man etext3400 Howells, William Dean, 1837-1920 Complete Project Gutenberg William Dean Howells Works etext3416 Bryce, James Bryce, Viscount, 1838-1922 William Ewart Gladstone etext3440 Anonymous Arabian nights. English etext3444 Anonymous Arabian nights. English etext3470 Furphy, Joseph, 1843-1912 Such Is Life etext3480 Knowles, James Sheridan, 1784-1862 The Hunchback etext3488 Shaw, Bernard, 1856-1950 Great Catherine etext3540 Tolstoy, Leo, graf, 1828-1910 The Census in Moscow etext24334 Dobson, Austin, 1840-1921 Collected Poems etext3552 Bourrienne, Louis Antoine Fauvelet de, 1769-1834 Memoirs of Napoleon — Volume 02 etext3638 Shaw, Bernard, 1856-1950 The Devil's Disciple etext3656 Baker, Samuel White, Sir, 1821-1893 Cyprus, as I Saw It in 1879 etext3671 Reade, Charles, 1814-1884 Christie Johnstone etext3681 Churchill, Winston, 1871-1947 Mr. Crewe's Career — Volume 1 etext3698 Cowper, William, 1731-1800 The Task and Other Poems etext3709 Haggard, Henry Rider, 1856-1925 Love Eternal etext3769 etext3796 Montgomery, L. M. (Lucy Maud), 1874-1942 Rilla of Ingleside etext3820 Lessing, Gotthold Ephraim, 1729-1781 Nathan the Wise; a dramatic poem in five acts etext3821 Kingsley, Charles, 1819-1875 Roman and the Teuton etext3865 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 06 etext3879 etext3886 Campan, Jeanne Louise Henriette (Genet), 1752-1822 Memoirs of the Court of Marie Antoinette, Queen of France, Volume 3 etext3887 Campan, Jeanne Louise Henriette (Genet), 1752-1822 Memoirs of the Court of Marie Antoinette, Queen of France, Volume 4 etext3965 Bourget, Paul, 1852-1935 Cosmopolis — Volume 3 etext4062 Pater, Walter, 1839-1894 Gaston de Latour; an unfinished romance etext4125 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Complete 1660 N.S. etext4127 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 10: April/May 1661 etext4156 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 35: May/June 1665 etext4223 Hume, Fergus, 1859-1932 The Mystery of a Hansom Cab etext4252 Pearson, Edmund Lester, 1880-1937 Theodore Roosevelt etext4253 Browning, Robert, 1812-1889 Dramatic Romances etext4271 Yonge, Charlotte Mary, 1823-1901 A Modern Telemachus etext4359 Bagehot, Walter, 1826-1877 Lombard Street : a description of the money market etext4403 Meredith, George, 1828-1909 The Shaving of Shagpat; an Arabian entertainment — Volume 3 etext4461 Meredith, George, 1828-1909 The Tragic Comedians — Volume 1 etext4465 Meredith, George, 1828-1909 Diana of the Crossways — Volume 1 etext4479 Meredith, George, 1828-1909 Lord Ormont and His Aminta — Volume 3 etext4499 Meredith, George, 1828-1909 Complete Short Works of George Meredith etext4534 Gaskell, Elizabeth Cleghorn, 1810-1865 Sylvia's Lovers — Volume 1 etext4558 Thackeray, William Makepeace, 1811-1863 Barry Lyndon etext4618 Arthur, T. S. (Timothy Shay), 1809-1885 Words for the Wise etext4681 Niecks, Frederick, 1845-1924 Frederick Chopin, as a Man and Musician — Volume 1 etext4694 Le Queux, William, 1864-1927 Mademoiselle of Monte Carlo etext4772 Voltaire, 1694-1778 Jeannot Et Colin etext4789 Terhune, Albert Payson, 1872-1942 Black Caesar's Clan : a Florida Mystery Story etext25103 Morris, Charles, 1833-1922 Historical Tales, Vol. 2 (of 15) etext4795 Ballou, Maturin Murray, 1820-1895 The Circassian Slave, or, the Sultan's favorite : a story of Constantinople and the Caucasus etext4846 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1586c etext4851 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1587a etext4854 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1587d etext4919 Walpole, Horace, 1717-1797 The Letters of Horace Walpole, Earl of Orford — Volume 4 etext4936 Robert, de Boron, 13th cent. Romanz De L'estoire Dou Graal etext4943 Churchill, Winston, 1874-1965 The River War etext4957 Ballou, Maturin Murray, 1820-1895 The Heart's Secret; Or, the Fortunes of a Soldier: a Story of Love and the Low Latitudes. etext5015 Adams, John Quincy, 1767-1848 State of the Union Addresses of John Quincy Adams etext5034 Wilson, Woodrow, 1856-1924 State of the Union Address etext5068 Wilson, Woodrow, 1856-1924 On Being Human etext5071 Shaw, Bernard, 1856-1950 The Philanderer etext5087 Reeve, Arthur B. (Arthur Benjamin), 1880-1936 The Treasure-Train etext5089 Pushkin, Aleksandr Sergeevich, 1799-1837 Boris Godunov: a drama in verse etext5093 Barrie, J. M. (James Matthew), 1860-1937 The Little Minister etext5191 Rhodes, W. H. (William Henry), 1822-1876 The Case of Summerfield etext5216 Film: Set of 4 Atomic Bomb Test Films etext5232 Jonson, Ben, 1573-1637 Sejanus: His Fall etext5309 Roe, Edward Payson, 1838-1888 Miss Lou etext5320 Roe, Edward Payson, 1838-1888 Taken Alive etext5357 Churchill, Winston, 1871-1947 The Inside of the Cup — Volume 02 etext5374 Churchill, Winston, 1871-1947 A Modern Chronicle — Volume 01 etext5391 Churchill, Winston, 1871-1947 The Crisis — Volume 04 etext5393 Churchill, Winston, 1871-1947 The Crisis — Volume 06 etext5425 Hillyer, Robert, 1895-1961 The Five Books of Youth etext5462 Ebers, Georg, 1837-1898 The Sisters — Volume 2 etext5478 Ebers, Georg, 1837-1898 Cleopatra — Volume 06 etext5492 Ebers, Georg, 1837-1898 The Emperor — Volume 10 etext5498 Ebers, Georg, 1837-1898 Homo Sum — Volume 05 etext5514 Ebers, Georg, 1837-1898 Arachne — Volume 07 etext5535 Ebers, Georg, 1837-1898 A Thorny Path — Volume 06 etext5562 Ebers, Georg, 1837-1898 Barbara Blomberg — Volume 02 etext5601 Ewing, Juliana Horatia Gatty, 1841-1885 Jan of the Windmill etext5661 Bierce, Ambrose, 1842-1914? A Son of the Gods and A Horseman in the Sky etext5682 Kant, Immanuel, 1724-1804 Fundamental Principles of the Metaphysic of Morals etext5765 Darwin, Charles, 1809-1882 Insectivorous Plants etext5767 Roosevelt, Franklin Delano, 1882-1945 The Fireside Chats of Franklin Delano Roosevelt etext5783 Twain, Mark, 1835-1910 A Tramp Abroad — Volume 02 etext5787 Twain, Mark, 1835-1910 A Tramp Abroad — Volume 06 etext5817 Haliburton, Thomas Chandler, 1796-1865 The Clockmaker — or, the Sayings and Doings of Samuel Slick, of Slickville etext5858 Sheridan, Philip Henry, 1831-1888 The Memoirs of General Philip H. Sheridan, Volume II., Part 5 etext5864 Grant, Ulysses S. (Ulysses Simpson), 1822-1885 The Memoirs of General Ulysses S. Grant, Part 5. etext5865 Grant, Ulysses S. (Ulysses Simpson), 1822-1885 The Memoirs of General Ulysses S. Grant, Part 6. etext5932 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 29 etext5953 Jordan, Elizabeth Garver, 1867-1947 Many Kingdoms etext5956 Davis, Richard Harding, 1864-1916 Gallegher and Other Stories etext5990 Holmes, Mary Jane, 1825-1907 Rosamond — or, the Youthful Error etext6002 Van Slyke, Lucille, 1880- Little Miss By-The-Day etext6077 McGlashan, C. F. (Charles Fayette) History of the Donner Party, a Tragedy of the Sierra etext6125 Riis, Jacob A. (Jacob August), 1849-1914 The Making of an American etext6157 Tolstoy, Leo, graf, 1828-1910 What Men Live By and Other Tales etext6234 Parker, Gilbert, 1862-1932 The Battle of the Strong — Volume 5 etext6273 Parker, Gilbert, 1862-1932 A Lover's Diary, Volume 2. etext6277 Parker, Gilbert, 1862-1932 The Money Master, Volume 3. etext6292 Parker, Gilbert, 1862-1932 No Defense, Volume 1. etext6316 Matthews, Brander, 1852-1929 Poems of American Patriotism etext6335 Lyell, Charles, Sir, 1797-1875 The Antiquity of Man etext6338 Fletcher, Archibald Lee Boy Scouts in the Coal Caverns etext6345 Bing Ding, Ed. Seven Maids of Far Cathay etext6357 Ballantyne, R. M. (Robert Michael), 1825-1894 The Young Fur Traders etext6365 Stratemeyer, Edward, 1862-1930 Richard Dare's Venture etext6382 Rohmer, Sax, 1883-1959 Bat Wing etext6432 Warde, Margaret Betty Wales, Sophomore etext6440 Finley, Martha, 1828-1909 Elsie Dinsmore etext6446 Crawford, F. Marion (Francis Marion), 1854-1909 Greifenstein etext6518 Schiller, Friedrich, 1759-1805 Wallensteins Lager etext6543 Balzac, Honoré de, 1799-1850 Droll Stories etext6564 Molière, 1622-1673 The Love-Tiff etext6573 Baker, Willard F. The Boy Ranchers on the Trail etext6578 MacGrath, Harold, 1871-1932 Man on the Box etext6665 Sparks, Edwin Erle, 1860-1924 The United States of America, Part 1 etext6666 Wilcox, Ella Wheeler, 1855-1919 Hello, Boys! etext6667 Wilcox, Ella Wheeler, 1855-1919 Poems of Power etext6675 Beesley, Lawrence, 1877-1967 The Loss of the S. S. Titanic etext6705 Rossetti, Lucy Madox Brown, 1843-1894 Mrs. Shelley etext6743 Smith, Francis Hopkinson, 1838-1915 Colonel Carter of Cartersville etext6766 Hutchinson, J. R. (John Robert) The Press-Gang Afloat and Ashore etext6892 Hauff, Wilhelm, 1802-1827 Mitteilungen aus den Memoiren des Satan etext27073 Christomanos, Konstantinos, 1867-1911 Η Κερένια κούκλα etext28033 Reid, Mayne, 1818-1883 The Wild Huntress etext28164 Zangwill, Israel, 1864-1926 The Big Bow Mystery etext6899 Meade, L. T., 1854-1914 The Children's Pilgrimage etext6937 Hales, John W., 1836-1914 A Biography of Edmund Spenser etext6942 Scott, Walter, Sir, 1771-1832 The Heart of Mid-Lothian, Volume 1 etext6995 Bangs, John Kendrick, 1862-1922 Ghosts I Have Met and Some Others etext7009 Molière, 1622-1673 Monsieur De Pourceaugnac etext7027 Williams, Effie Mae Hency A Hive of Busy Bees etext7066 etext7112 Blackmore, R. D. (Richard Doddridge), 1825-1900 Erema — My Father's Sin etext7123 Rockwell, F. F. (Frederick Frye), 1884-1976 Home Vegetable Gardening — a Complete and Practical Guide to the Planting and Care of All Vegetables, Fruits and Berries Worth Growing for Home Use etext7208 Morley, Christopher, 1890-1957 Kathleen etext7218 Huang, Shigong, 3rd cent. B.C. 三略 etext7226 Shakespeare, William, 1564-1616 Timon von Athen etext7233 Shakespeare, William, 1564-1616 Maaß für Maaß etext7261 The Siksha-Patri of the Swami-Narayana Sect etext7263 Loti, Pierre, 1850-1923 Le Mariage de Loti etext7272 Gan, Bao, fl. 317-322 搜神記 volume 15-17 etext7301 Woodberry, George Edward, 1855-1930 Nathaniel Hawthorne etext7306 De Quincey, Thomas, 1785-1859 Autobiographical Sketches etext7340 Lü, Shang 六韜 etext7381 Trollope, Anthony, 1815-1882 The Eustace Diamonds etext7394 Holmes, Oliver Wendell, 1809-1894 The Poetical Works of Oliver Wendell Holmes — Volume 07: Songs of Many Seasons etext7451 Molière, 1622-1673 Comtesse D'Escarbagnas. English etext7504 Bishop, Austin Tom of the Raiders etext7534 A Book of Old Ballads — Volume 4 etext7543 La Fontaine, Jean de, 1621-1695 Quotes and Images From The Tales and Novels of Jean de La Fontaine etext7583 Ohnet, Georges, 1848-1918 Images from Ohnet's Serge Panine etext7587 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 02 etext7592 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 07 etext7598 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 13 etext27940 Palha, Francisco, 1826-1890 Musa Velha etext28957 Church of Scotland. General Assembly The Acts Of The General Assemblies of the Church of Scotland etext7600 Webster, Daniel, 1782-1852 Select Speeches of Daniel Webster, 1817-1845 etext7611 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Eugene Aram — Volume 03 etext7657 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Kenelm Chillingly — Volume 08 etext7681 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Harold : the Last of the Saxon Kings — Volume 10 etext7698 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 A Strange Story — Volume 07 etext7704 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 My Novel — Volume 03 etext7743 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Parisians — Volume 07 etext7779 Defoe, Daniel, 1661?-1731 Of Captain Mission etext7785 Brockwell, Maurice Walter, 1869-1958 Leonardo Da Vinci etext7818 Mittag-Leffler, Magnus Gustaf, 1846-1927 Niels Henrik Abel etext7819 Mandeville, Bernard, 1670-1733? An Enquiry into an Origin of Honour; and the Usefulness of Christianity in War etext7845 Masters, Edgar Lee, 1868-1950 Toward the Gulf etext7860 Raimund, Ferdinand, 1790-1836 Die unheilbringende Krone etext7898 Prentice, Amy Mouser Cats' Story etext7900 Hakluyt, Richard, 1552-1616 The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 05 etext7902 etext7940 Wylie, I. A. R. (Ida Alexa Ross), 1885-1959 The Native Born etext7979 Rolland, Romain, 1866-1944 Jean-Christophe, Volume I etext7988 Hecht, Ben, 1894-1964 A Thousand and One Afternoons in Chicago etext8009 Anonymous The Bible, King James version, Book 9: 1 Samuel etext8022 Anonymous The Bible, King James version, Book 22: Song of Solomon etext8054 Anonymous The Bible, King James version, Book 54: 1 Timothy etext8101 Fuller, Henry Blake, 1857-1929 Bertram Cope's Year etext8108 Curtis, George William, 1824-1892 Literary and Social Essays etext8126 Stifter, Adalbert, 1805-1868 Der Nachsommer etext8145 etext8148 Baroja, Pío, 1872-1956 Youth and Egolatry etext8208 Poems of Coleridge etext8224 Zamenhof, L. L. (Ludwik Lejzer), 1859-1917 Fundamenta Krestomatio etext8243 Anonymous The World English Bible (WEB): Nehemiah etext8254 Anonymous The World English Bible (WEB): Daniel etext8269 Anonymous The World English Bible (WEB): Luke etext8405 Bennett, Arnold, 1867-1931 Journalism for Women etext8428 Forbes, Archibald, 1838-1900 The Afghan Wars 1839-42 and 1878-80 etext26590 Wollstonecraft, Mary, 1759-1797 A Vindication of the Rights of Woman etext8466 Farmer, John Stephen, 1845?-1915? Musa Pedestris - Three Centuries of Canting Songs and Slang Rhymes [1536 - 1896] etext8483 Various Scientific American Supplement, No. 324, March 18, 1882 etext8493 Merriman, Henry Seton, 1862-1903 The Last Hope etext8530 Lathrop, George Parsons, 1851-1898 A Study of Hawthorne etext8533 Coleridge, Samuel Taylor, 1772-1834 Literary Remains, Volume 2 etext8540 Gwynn, Stephen Lucius, 1864-1950 The Life of the Rt. Hon. Sir Charles W. Dilke, Volume 2 etext8548 Pirke Avot etext8560 Zola, Émile, 1840-1902 Le Docteur Pascal etext8641 Stearns, Frank Preston, 1846-1917 Sketches from Concord and Appledore etext8689 Aristophanes, 446? BC-385? BC The Eleven Comedies, Volume 2 etext8698 Verde, José Joaquim Cesário, 1855-1886 O Livro de Cesario Verde etext8753 Burroughs, Edgar Rice, 1875-1950 Beasts of Tarzan etext8761 Burroughs, Edgar Rice, 1875-1950 The Oakdale Affair etext8771 Cabell, James Branch, 1879-1958 Jurgen etext8783 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Hell, Volume 05 etext8787 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Hell, Volume 09 etext8813 Whitman, Walt, 1819-1892 Complete Prose Works etext8831 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, John etext8877 Richards, Laura Elizabeth Howe, 1850-1943 Geoffrey Strong etext8930 Sassoon, Siegfried, 1886-1967 Counter-Attack and Other Poems etext8987 Verne, Jules, 1828-1905 Michael Strogoff etext9066 Heyse, Paul, 1830-1914 Der letzte Zentaur etext9093 Bloomfield, Robert, 1766-1823 Rural Tales, Ballads, and Songs etext9187 Lessing, Gotthold Ephraim, 1729-1781 Minna von Barnhelm etext9217 Hawthorne, Nathaniel, 1804-1864 The Lily's Quest (From "Twice Told Tales") etext9218 Hawthorne, Nathaniel, 1804-1864 Footprints on the Sea-Shore (From "Twice Told Tales") etext9260 Goethe, Johann Wolfgang von, 1749-1832 Prometheus etext9261 Houssaye, Arsène, 1815-1896 Les grandes dames etext9284 Wharton, Edith, 1862-1937 Sanctuary etext9296 Richardson, Samuel, 1689-1761 Clarissa Harlowe; or the history of a young lady — Volume 1 etext9302 Arrighi, Cletto, 1830-1906 Nanà a Milano etext9324 Merriman, Henry Seton, 1862-1903 Roden's Corner etext9366 Sinclair, May, 1863-1946 Mary Olivier: a Life etext9370 Brown, Alice, 1857-1948 Tiverton Tales etext9460 Forbes, Archibald, 1838-1900 Camps, Quarters, and Casual Places etext9526 Thackeray, William Makepeace, 1811-1863 Catherine: a Story etext9559 Cone, Helen Gray, 1859-1934 Ride to the Lady etext9610 Tibullus, 54 BC-19 BC The Elegies of Tibullus etext9638 Dumas père, Alexandre, 1802-1870 La dame de Monsoreau — Tome 2. etext9667 Gilfillan, George, 1813-1878 Specimens with Memoirs of the Less-known British Poets, Volume 1 etext9673 Eliot, George, 1819-1880 Brother Jacob etext9679 Defoe, Daniel, 1661?-1731 The Life, Adventures and Piracies of the Famous Captain Singleton etext9736 Dickens, Charles, 1812-1870 Sunday under Three Heads etext9770 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Alice, or the Mysteries — Book 08 etext9791 Brand, Max, 1892-1944 Harrigan etext9806 Hornung, E. W. (Ernest William), 1866-1921 Mr. Justice Raffles etext9870 Crane, Stephen, 1871-1900 War is Kind etext9883 Various The Mirror of Literature, Amusement, and Instruction etext9936 Woman's Institute of Domestic Arts and Sciences Woman's Institute Library of Cookery etext10001 Seneca, Lucius Annaeus, 4 BC-65 Apocolocyntosis etext10025 Hurst, Fannie, 1889-1968 Gaslight Sonatas etext10058 Quigley, Edward J. The Divine Office etext10080 Blatch, Harriot Stanton, 1856-1940 Mobilizing Woman-Power etext10127 etext10211 Leslie, Lawrence J. At Whispering Pine Lodge etext10262 Que Partes El Alma etext10300 Watson, George P. Snyder, Does Your Mother Know You're Out? etext10343 etext10348 McGuinn, Roger Go to Sea Once More etext10396 Harkness, Peter T. Andy the Acrobat etext10402 Isham, Frederic Stewart, 1866-1922 A Man and His Money etext10409 Jellicoe, John Rushworth Jellicoe, Earl, 1859-1935 The Crisis of the Naval War etext10485 Root, Elihu, 1845-1937 Experiments in Government and the Essentials of the Constitution etext10490 Longfellow, Henry Wadsworth, 1807-1882 The Golden Legend etext10531 Lord, John, 1810-1894 Beacon Lights of History, Volume 05 etext10550 Various A Select Collection of Old English Plays, Volume 9 etext10560 Cooke, John Esten, 1830-1886 The Last of the Foresters etext10576 Langworthy, John Luther The Aeroplane Boys Flight etext10630 Havergal, Frances Ridley, 1836-1879 Coming to the King etext10661 Epictetus, 55-135 A Selection from the Discourses of Epictetus with the Encheiridion etext10690 Halsey, Harlan Page, 1839?-1898 A Desperate Chance etext9122 etext10712 Melville, Herman, 1819-1891 White Jacket etext10727 Barrett, Frank, 1848- A Set of Rogues etext10734 Various A Collection of Old English Plays, Volume 3 etext10736 London, Jack, 1876-1916 Children of the Frost etext10792 Jacobs, W. W. (William Wymark), 1863-1943 Keeping Up Appearances etext10819 Eeden, Frederik van, 1860-1932 De kleine Johannes etext10846 Farrar, F. W. (Frederic William), 1831-1903 Seekers after God etext10849 Walton, O. F., Mrs., 1849-1939 Saved at Sea etext10874 Jacobs, W. W. (William Wymark), 1863-1943 At Sunwich Port, Part 4. etext10929 Ballantyne, R. M. (Robert Michael), 1825-1894 The Dog Crusoe and His Master etext10936 Burnham, Margaret The Girl Aviators' Motor Butterfly etext10974 De Windt, Harry, 1856-1933 A Ride to India across Persia and Baluchistán etext11000 Anonymous An Old Babylonian Version of the Gilgamesh Epic etext11011 Aldrich, Mildred, 1853-1928 A Hilltop on the Marne etext11082 Ainsworth, William Harrison, 1805-1882 Old Saint Paul's etext11128 Freeman, R. Austin (Richard Austin), 1862-1943 The Red Thumb Mark etext11185 Jacobs, W. W. (William Wymark), 1863-1943 Bob's Redemption etext11212 Curtis, William Eleroy, 1850-1911 Modern India etext11268 Anonymous The Flood etext11349 Cable, Boyd, 1878-1943 Action Front etext11357 Mundy, Talbot, 1879-1940 Jimgrim and Allah's Peace etext11392 Not Pretty, but Precious etext11458 Various The Mirror of Literature, Amusement, and Instruction etext11578 Dryden, John, 1631-1700 The Poetical Works of John Dryden, Volume 2 etext11580 Jackson, George, 1864-1945 The Teaching of Jesus etext11607 Dio, Cassius Dio's Rome, Volume 2 etext11705 Various The Mirror of Literature, Amusement, and Instruction etext11736 Various Scientific American Supplement, No. 586, March 26, 1887 etext11737 Colette, 1873-1954 Barks and Purrs etext11742 Various The Mirror of Literature, Amusement, and Instruction etext11799 Human Genome Project Human Genome Supplemental Data etext11810 Library of Congress. Copyright Office U.S. Copyright Renewals, 1954 July - December etext11847 Library of Congress. Copyright Office U.S. Copyright Renewals, 1973 January - June etext11937 Mackey, Albert G. The Symbolism of Freemasonry etext11943 Roosevelt, Theodore, 1858-1919 The Winning of the West, Volume 3 etext11957 Cooper, James Fenimore, 1789-1851 The Wing-and-Wing etext11984 James, William, 1842-1910 A Pluralistic Universe etext11997 Stables, Gordon, 1840-1910 Crusoes of the Frozen North etext12006 Havell, E. B., 1861-1934 A Handbook to Agra and the Taj etext12021 Sanborn, Kate, 1839-1917 Adopting an Abandoned Farm etext12049 Wilson, Jennie L. (Jennie Lansley), 1847- Legal Status of Women in Iowa etext12069 Tilden, Joe Joe Tilden's Recipes for Epicures etext12081 Bolton, Sarah Knowles, 1841-1916 Lives of Girls Who Became Famous etext12101 Brawley, Benjamin Griffith, 1882-1939 A Social History of the American Negro etext12122 Jacobs, W. W. (William Wymark), 1863-1943 The Monkey's Paw etext12163 Wells, H. G. (Herbert George), 1866-1946 The Sleeper Awakes etext12178 Kailas, Uuno, 1901-1933 Tuuli ja tähkä ynnä muita runoja etext12184 Bell, Lilian, -1929 Abroad with the Jimmies etext12192 Bower, B. M., 1874-1940 The Long Shadow etext12234 Trollope, Anthony, 1815-1882 Mr. Scarborough's Family etext12241 Dickinson, Emily, 1830-1886 Poems by Emily Dickinson, Third Series etext12251 Bouilly, Jean Nicolas, 1763-1842 Contes à mes petites amies etext12302 Hay, Ian, 1876-1952 All in It : K(1) Carries On etext12314 McIntyre, John T. Ashton-Kirk, Investigator etext12349 Walpole, Hugh, Sir, 1884-1941 The Secret City etext12418 Curtin, D. Thomas The Land of Deepening Shadow etext12426 Routledge, George, 1812-1888 Routledge's Manual of Etiquette etext12434 etext12440 Bacheller, Irving, 1859-1950 D'Ri and I etext12503 Buena Nueva de acuerdo a Juan: Traducción de dominio público abierta a mejoras etext12570 Bower, B. M., 1874-1940 Starr, of the Desert etext12582 Livius, Titus The History of Rome, Books 27 to 36 etext12600 Lynd, Robert, 1879-1949 Old and New Masters etext12636 Thoma, D. Albrecht Katharina von Bora etext12709 etext12710 etext12739 Various Punch, or the London Charivari, Volume 99, December 6, 1890 etext12807 Hancock, H. Irving (Harrie Irving), 1868-1922 Dick Prescotts's Fourth Year at West Point etext12811 Bennett, Arnold, 1867-1931 The Human Machine etext12844 Wergeland, Henrik, 1808-1845 Den engelske Lods etext12853 Sullivan, A.M. (Alexander Martin), 1830-1884 The Wearing of the Green, or The Prosecuted Funeral Procession etext12857 Home, Gordon, 1878-1969 Beautiful Britain—Cambridge etext12865 Sand, George, 1804-1876 Mattea etext1469 Thompson, Francis, 1859-1907 Poems etext12946 Shaler, Robert The Boy Scouts on Picket Duty etext12973 Butler, Pardee, 1816-1888 Personal Recollections of Pardee Butler etext13044 Blessington, Marguerite, Countess of, 1789-1849 The Idler in France etext13142 Rogers, L. W. (Louis William), 1859-1953 Self-Development and the Way to Power etext13179 Watson, William, 1858-1935 The Poems of William Watson etext13186 Various Punch, or the London Charivari, Volume 100, March 14, 1891 etext13216 Henis, Tadeo Xavier Diario historico de la rebelion y guerra de los pueblos Guaranis situados en la costa oriental del Rio Uruguay, del año de 1754 etext13324 Crowley, Mary Catherine Apples, Ripe and Rosy, Sir etext13337 Ward, Humphry, Mrs., 1851-1920 Milly and Olly etext13369 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Lost Ambassador etext13376 Reilly, S. A. Our Legal Heritage, 5th Ed. etext13453 Ward, Humphry, Mrs., 1851-1920 The Testing of Diana Mallory etext13456 Ségur, Sophie, comtesse de, 1799-1874 Les deux nigauds etext13474 Higginson, Thomas Wentworth, 1823-1911 Women and the Alphabet etext13495 Various The Mirror of Literature, Amusement, and Instruction etext13545 Thomas, Edith, 1882- Mary at the Farm and Book of Recipes Compiled during Her Visit etext13633 Various Blackwood's Edinburgh Magazine — Volume 55, No. 342, April, 1844 etext13733 Pakkala, Teuvo, 1862-1925 Elsa etext13740 Libbey, Laura Jean, 1862-1924 Mischievous Maid Faynie etext13773 Valmonte, Engracio L., 1889- Ang Mestisa etext13815 Various The Talking Beasts etext13816 Adkins, W. Bion The Jericho Road etext13825 Daudet, Alphonse, 1840-1897 Sapho etext13840 Everett-Green, Evelyn, 1856-1932 The Sign of the Red Cross etext13991 Alkio, Santeri, 1862-1930 Puukkojunkkarit etext14041 Various Scientific American Supplement, No. 470, January 3, 1885 etext14073 Sten, Daniel [pseud.], 1846-1930 Berättelser från Finland etext14102 Various The American Missionary — Volume 42, No. 08, August, 1888 etext14188 Chidley, Howard J. (Howard James), 1878-1966 Fifty-Two Story Talks to Boys and Girls etext14254 Doyle, Arthur Conan, Sir, 1859-1930 Enoni: muistoja Napoleonin ajoilta etext14277 Various Punch, or the London Charivari, Volume 100, April 25, 1891 etext14382 Southworth, Emma Dorothy Eliza Nevitte, 1819-1899 The Missing Bride etext14409 Adams, Henry, 1838-1918 Esther etext14425 Sheldon, Georgie, Mrs., 1843-1926 Mona etext14471 Blackwood, Algernon, 1869-1951 The Empty House and Other Ghost Stories etext14506 Abbott, Eleanor Hallowell, 1872-1958 The White Linen Nurse etext14529 The Old English Physiologus etext14541 etext14615 Adams, Nehemiah, 1806-1878 The Sable Cloud etext14617 Baillie, Joanna, 1762-1851 Poems, &c. (1790) etext14628 Leighton, Mrs. Fleur and Blanchefleur etext14631 Various The American Missionary — Volume 44, No. 10, October, 1890 etext14640 McGuffey, William Holmes, 1800-1873 McGuffey's First Eclectic Reader, Revised Edition etext14649 Leino, Eino, 1878-1926 Sata ja yksi laulua; Hiihtäjän virsiä; Pyhä kevät etext14659 Moore, George (George Augustus), 1852-1933 Muslin etext14706 Chesterton, G. K. (Gilbert Keith), 1874-1936 Greybeards at Play etext14722 Mabini, Apolinario, 1864-1903 Contestaciones y Consideraciones etext14730 Goss, Charles Frederic The Redemption of David Corson etext14754 Cusack, Mary Frances, 1830-1899 An Illustrated History of Ireland from AD 400 to 1800 etext14796 Rizal, José, 1861-1896 El Consejo de los Dioses etext14822 Cruz, Hermenegildo, 1880- Kartilyang Makabayan etext14827 Guizot, M. (François), 1787-1874 Étude sur Shakspeare etext14841 Moore, Thomas, 1779-1852 Life of Lord Byron, Vol. 6 etext14870 Hopkinson, Alfred, Sir, 1851-1939 Rebuilding Britain etext14889 Aldridge, Janet The Meadow-Brook Girls Under Canvas etext15011 Sweeney, Zachary Taylor The Spirit and the Word etext15034 More, Hannah, 1745-1833 Stories for the Young etext15046 Barcia, Roque, 1823-1885 Un paseo por Paris, retratos al natural etext15088 Ruskin, John, 1819-1900 Proserpina, Volume 2 etext15124 Ballantyne, R. M. (Robert Michael), 1825-1894 The Lighthouse etext15173 Trager, Hannah Pictures of Jewish Home-Life Fifty Years Ago etext15186 Various Folk-Lore and Legends; Scandinavian etext15237 Duncan, A. W. The Chemistry of Food and Nutrition etext15251 Bonar, Andrew A., 1810-1892 The Biography of Robert Murray M'Cheyne etext15264 Malmberg, Aino, 1865-1933 Totta ja leikkiä etext15279 Paine, Thomas, 1737-1809 A Letter Addressed to the Abbe Raynal, on the Affairs of North America, in Which the Mistakes in the Abbe's Account of the Revolution of America Are Corrected and Cleared Up etext15306 Begbie, Harold, 1871-1929 The Mirrors of Downing Street etext15314 Lehtonen, Joel, 1881-1934 Rakastunut rampa eli Sakris Kukkelman, köyhä polseviikki etext15335 Loti, Pierre, 1850-1923 Madame Chrysantheme etext15371 Arabian nights. French etext15485 Adams, Nehemiah, 1806-1878 Catharine etext15496 Andrews, Mary Raymond Shipman, 1860-1936 The Militants etext15499 Dickens, Charles, 1812-1870 Mugbyn risteys etext15506 Stephens, Robert Neilson, 1867-1906 Philip Winwood etext15576 Anonymous A System of Instruction in the Practical Use of the Blowpipe etext15579 Gaboriau, Émile, 1832-1873 L'affaire Lerouge etext15626 Carraud, Zulma, 1796-1889 Contes et historiettes à l'usage des jeunes enfants etext15642 La Rochejaquelein, Marie-Louise-Victoire marquise de, 1772-1857 Mémoires de Mme la marquise de La Rochejaquelein etext15724 Bergman, Hjalmar, 1883-1931 Vi Bookar, Krokar och Rothar etext15741 Johnston, Annie F. (Annie Fellows), 1863-1931 The Little Colonel's House Party etext15749 Mahan, A. T. (Alfred Thayer), 1840-1914 The Interest of America in Sea Power, Present and Future etext15757 Pardo de Tavera, T. H. (Trinidad Hermenegildo), 1857-1925 Consideraciones Sobre el Origen del Nombre de los Números en Tagalog etext15769 Everett-Green, Evelyn, 1856-1932 In the Wars of the Roses etext15804 Voltaire, 1694-1778 La mort de César etext15838 Various The Atlantic Monthly, Volume 12, No. 72, October, 1863 etext15881 Cable, George Washington, 1844-1925 The Flower of the Chapdelaines etext15893 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Lighted Way etext15905 Huxley, Thomas Henry, 1825-1895 Collected Essays, Volume V etext15907 Grégoire, Henri, 1750-1831 De la littérature des nègres, ou Recherches sur leurs facultés intellectuelles, leurs qualités morales et leur littérature etext15931 Beers, Henry A. (Henry Augustin), 1847-1926 A History of English Romanticism in the Nineteenth Century etext15945 Various The Mirror of Literature, Amusement, and Instruction etext15978 Van Dyke, Henry, 1852-1933 The Broken Soldier and the Maid of France etext15997 Marchant, James Alfred Russel Wallace: Letters and Reminiscences, Vol. 1 etext16004 Carleton, William, 1794-1869 The Evil Eye; Or, The Black Spector etext16028 Various The Atlantic Monthly, Volume 12, No. 73, November, 1863 etext16057 Various The Atlantic Monthly, Volume 14, No. 82, August, 1864 etext16092 Warden, Florence, 1857-1929 The Wharf by the Docks etext16111 Herculano, Alexandre, 1810-1877 Opúsculos por Alexandre Herculano - Tomo 01 etext16202 Brunt, Captain Samuel A Voyage to Cacklogallinia etext16208 Dryden, John, 1631-1700 The works of John Dryden, $c now first collected in eighteen volumes. $p Volume 05 etext16214 As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1887-08/09) etext16224 Dibdin, Thomas Frognall, 1776-1847 A Bibliographical, Antiquarian and Picturesque Tour in France and Germany, Volume One etext7282 Plautus, Titus Maccius, 254 BC-184 BC The Captiva and the Mostellaria etext16255 Patterson, Virginia Sharpe, 1841-1913 Dickey Downy etext16294 Tyler, Lyon Gardiner, 1853-1935 England in America, 1580-1652 etext16313 Kepplerus, Anni, 1849-1899 Hovin Inkeri etext16341 Bryant, William Cullen, 1794-1878 Poems etext16342 Lehmann, Friedrich Johann, 1866- A Treatise on Simple Counterpoint in Forty Lessons etext16357 Wollstonecraft, Mary, 1759-1797 Mary etext16401 Various Punch, or the London Charivari, Vol. 158, 1920-02-18 etext16445 Piozzi, Hester Lynch, 1741-1821 Observations and Reflections Made in the Course of a Journey through France, Italy, and Germany, Vol. I etext16493 Hale, Edward Everett, 1822-1909 The Man Without a Country etext16554 Johnston, Mary, 1870-1936 Foes etext16563 Various Punch, or the London Charivari, Volume 158, March 3rd, 1920 etext16569 Anonymous De Villa's der Medici in den omtrek van Florence etext16599 Draper, George Orrin, 1884- School, Church, and Home Games etext16647 Rait, Robert S. An Outline of the Relations between England and Scotland (500-1707) etext16689 Meriläinen, Heikki, 1847-1939 Sattumuksia Jänislahdella etext16698 Cody, H. A. (Hiram Alfred), 1872-1948 The King's Arrow etext16722 Repplier, Agnes, 1858-1950 Americans and Others etext16733 Smith, Alice Prescott Montlivet etext16746 Matthews, Brander, 1852-1929 Inquiries and Opinions etext16809 Wallace, Dillon, 1863-1939 The Story of Grenfell of the Labrador etext16908 Davis, Richard Harding, 1864-1916 Once Upon A Time etext16926 Cumming, R. D. (Robert Dalziel), 1871- Skookum Chuck Fables etext16931 Eliot, Charles William, 1834-1926 Four American Leaders etext16951 Edgeworth, Richard Lovell, 1744-1817 Richard Lovell Edgeworth etext17002 Talmage, J. V. N. (John Van Nest), 1819-1892 History and Ecclesiastical Relations of the Churches of the Presbyterial Order at Amoy, China etext17003 Indiscreet Letters From Peking etext17077 Campen, M. H. Van, 1874-1942 Over literatuur etext17078 Campen, M. H. Van, 1874-1942 Over literatuur etext17106 Assollant, Alfred, 1827-1886 Histoire fantastique du célèbre Pierrot etext17225 Sand, George, 1804-1876 La comtesse de Rudolstadt etext17396 Burnett, Frances Hodgson, 1849-1924 The Secret Garden etext17397 Various Punch, or the London Charivari, Vol. 159, 1920-10-06 etext17411 Walpole, Horace, 1717-1797 Historic Doubts on the Life and Reign of King Richard the Third etext17443 Pérez Galdós, Benito, 1843-1920 Un faccioso más y algunos frailes menos etext17460 Blackmore, R. D. (Richard Doddridge), 1825-1900 Lorna Doone etext17466 Various St. Nicholas Magazine for Boys and Girls, Vol. 5, October 1878, No. 12 etext17473 Wachtl, Karol, 1876-1946 Przyjaciel Dziatek etext17485 Head, James William, 1883- History and Comprehensive Description of Loudoun County, Virginia etext17504 Hubbard, Elbert, 1856-1915 The Mintage etext17508 Wells, H. G. (Herbert George), 1866-1946 Certain Personal Matters etext17514 Wright, Mabel Osgood, 1859-1934 The Garden, You, and I etext17547 Fiske, Bradley A. (Bradley Allen), 1854-1942 The Navy as a Fighting Machine etext17652 The History of Sir Richard Whittington etext17654 Various Punch, or the London Charivari, Vol. 159, 1920-09-15 etext17689 Kipling, Rudyard, 1865-1936 Sea Warfare etext17809 France, Hector, 1837-1908 Sous le burnous etext17830 Claretie, Jules, 1840-1913 Ruines et fantômes etext17833 Evelyn, John, 1620-1706 An Apologie for the Royal Party (1659); and A Panegyric to Charles the Second (1661) etext17880 Dickens, Charles, 1812-1870 Barnabé Rudge, Tome II etext17881 Irvine, Alexander, 1863-1941 From the Bottom Up etext17908 Neera, 1846-1918 Nel sogno etext17932 Gibbon, Perceval, 1879-1926 The Second Class Passenger etext17954 Morley, John, 1838-1923 Critical Miscellanies (Vol 3 of 3) etext17972 Crosse, Andrew F. Round About the Carpathians etext18014 Biart, Lucien, 1829-1897 Pile et face etext18043 Strömberg, Sigge, 1885-1920 Göteborgsflickor etext18135 Smith, Alexander, 1830-1867 Dreamthorp etext18136 Morgan, William, 1774- The Mysteries of Free Masonry etext18218 Burke, Edmund, 1729-1797 The Works of the Right Honourable Edmund Burke, Vol. 11 (of 12) etext18275 Molesworth, Mrs., 1839-1921 The Rectory Children etext18294 Guizot, M. (François), 1787-1874 Mémoires pour servir à l'Histoire de mon temps (Tome 5) etext18305 Rolleston, T. W. (Thomas William), 1857-1920 Keltische Mythen en Legenden etext18322 Wecksell, J. J. (Josef Julius), 1838-1907 Daniel Hjort etext18355 Scofield, Anna Bishop, 1835- Insights and Heresies Pertaining to the Evolution of the Soul etext18363 Petrovitch, Woislav M. (Woislav Maximus), 1885?-1934 Heldensagen en Legenden van de Serviërs etext18409 Yates, Katherine M. (Katherine Merritte), 1865-1951 By the Roadside etext18411 Various Sata runoa etext18414 Various The Girl's Own Paper, Vol. VIII, No. 355, October 16, 1886 etext18590 Cassiodorus, Senator, 487?-585? The Letters of Cassiodorus etext18694 Auerbach, Berthold, 1812-1882 Avojalka etext18732 Aesop, 620 BC-563 BC Aesop's Fables etext18741 etext18766 Haney, John Louis Early Reviews of English Poets etext18771 Anonymous Bulletin de Lille, 1916-03 etext18935 Vanity, All Is Vanity etext18993 etext19021 Boylesve, René, 1867-1926 Le bonheur à cinq sous etext19072 Opuscula Selecta Neerlandicorum etext19130 Stevens, Frank Stonehenge etext19144 MacGregor, William, 1846-1919 Report by the Governor on a Visit to the Micmac Indians at Bay d'Espoir etext19151 Various Punch, or the London Charivari, Volume 159, August 11, 1920 etext19174 etext19222 Fitch, George Hamlin, 1852-1925 Modern English Books of Power etext19227 Shakespeare, William, 1564-1616 Love's labour's lost. French etext19315 Leopardi, Giacomo, 1798-1837 The Poems of Giacomo Leopardi etext19324 Various The Wit and Humor of America, Volume VI. (of X.) etext19380 Bezold, Gustav von, 1848-1934 Anzeiger des Germanischen Nationalmuseums, Jg. 1900 etext19407 Morton, Thomas, 1764-1838 Speed the Plough etext19416 Holmes, William Henry, 1846-1933 Illustrated Catalogue of a Portion of the Collections Made During the Field Season of 1881 etext19455 Desfontaines, Nicolas-Marc, -1652 La vraye suitte du Cid etext19466 Baum, L. Frank (Lyman Frank), 1856-1919 The Marvelous Land of Oz etext19493 Clippinger, D. A. (David Alva), 1860-1938 The Head Voice and Other Problems etext19555 Hope, Laura Lee Bunny Brown and His Sister Sue on Grandpa's Farm etext19603 Various The Arena etext19651 Norton, Andre, 1912-2005 Key Out of Time etext19665 Cooper, Elizabeth, 1877-1945 My Lady of the Chinese Courtyard etext19683 Giles, Herbert Allen, 1845-1935 China and the Chinese etext19698 Amélineau, E. (Emile), 1850-1915 Een feudale familie in Egypte etext19733 Sapper, Agnes, 1852-1929 Das kleine Dummerle etext19752 Hope, Anthony, 1863-1933 Quisanté etext13669 Royal baking powder company, New York The New Dr. Price Cookbook etext19753 Brown, Peter Hume, 1849-1918 The Youth of Goethe etext19775 Anonymous Vaughan's Vegetable Cook Book (4th edition) etext19812 Taft, William H., 1857-1930 The South and the National Government etext19817 Bruno, Giordano, 1548-1600 The Heroic Enthusiasts (Gli Eroici Furori) Part the First etext19851 Rinehart, Mary Roberts, 1876-1958 More Tish etext19881 Eley, C. King Bell's Cathedrals: The Cathedral Church of Carlisle etext19968 Stephens, C. A. (Charles Asbury), 1844-1931 A Busy Year at the Old Squire's etext19975 Ward, John Montgomery, 1860-1925 Base-Ball etext19985 Beech, Franklin The Dyeing of Woollen Fabrics etext20004 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 Tancred etext20021 Anonymous Suomalaisia sananlaskuja etext20026 Carryl, Guy Wetmore, 1873-1904 Fables for the Frivolous etext20037 Sidney, Margaret, 1844-1924 Five Little Peppers and How They Grew etext20064 Parton, James, 1822-1891 Captains of Industry etext20142 Quental, Antero de, 1842-1891 Os sonetos completos de Anthero de Quental etext20150 Conrad, Joseph, 1857-1924 Notes on My Books etext20158 Byron, George Gordon Byron, Baron, 1788-1824 The Works of Lord Byron. Vol. 4 etext20185 Afton, Effie, 1829-1887 Eventide etext20290 Poore, Benjamin Perley, 1820-1887 Perley's Reminiscences, v. 1-2 etext20292 Fox, John, 1863-1919 In Happy Valley etext20297 Sweetser, Kate Dickinson, -1939 Ten American Girls From History etext20346 Sergeant, Philip Walsingham, 1872-1952 Bell's Cathedrals: The Cathedral Church of Winchester etext20360 Boswell, James, 1740-1795 No Abolition of Slavery etext20380 Coppée, François, 1842-1908 Ten Tales etext20427 Wilcox, Ella Wheeler, 1855-1919 Custer, and Other Poems. etext20444 Various Knickerbocker, or New-York Monthly Magazine, March 1844 etext20450 Butler, Alban The Lives of the Fathers, Martyrs, and Principal Saints etext20451 Train, Arthur Cheney, 1875-1945 The Confessions of Artemas Quibble etext20458 Bartlett, Frederick Orin, 1876-1945 The Triflers etext20465 Willigen, Adriaan van der Reize door Frankrijk etext20512 Glyn, Elinor, 1864-1943 Man and Maid etext20525 Alma, Maude, -1895 Isabel Leicester etext20532 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Love Among the Chickens etext20597 Wilde, Oscar, 1854-1900 The Ballad of Reading Gaol etext14206 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 I Saw Three Ships and Other Winter Tales etext20605 Various Christmas Short Works Collection 2006 etext20626 Ford, Sewell, 1868-1946 Torchy etext20724 About, Edmond, 1828-1885 The Man With The Broken Ear etext20764 Manning, J. C. The Death of Saul and other Eisteddfod Prize Poems and Miscellaneous Verses etext20801 Butler, Joseph, 1692-1752 Some Remains (hitherto unpublished) of Joseph Butler, LL.D. etext20815 etext20816 Walling, William English, 1877-1936 Socialism As It Is etext20834 Emerson, Alice B. Ruth Fielding at the War Front etext20850 Lang, Andrew, 1844-1912 Prince Prigio etext20887 Morley, John, 1838-1923 Critical Miscellanies, Vol. 3 (of 3) etext20918 Barrie, J. M. (James Matthew), 1860-1937 Auld Licht Idylls etext20922 Webster, Frank V. The Young Treasure Hunter etext20963 Molesworth, Mrs., 1839-1921 Grandmother Dear etext20986 Fitzhugh, Percy Keese, 1876-1950 Tom Slade with the Colors etext21042 Reed, Talbot Baines, 1852-1893 Roger Ingleton, Minor etext21070 Collingwood, Harry, 1851-1922 A Middy of the Slave Squadron etext21076 etext21149 Busch, Wilhelm, 1832-1908 Max und Moritz etext21177 Blake, William, 1757-1827 The Tiger etext21276 Smith, T. C. The Wars Between England and America etext21294 Fenn, George Manville, 1831-1909 Burr Junior etext21299 Fenn, George Manville, 1831-1909 Blue Jackets etext21332 Kent, Charles Foster, 1867-1925 Charles Dickens as a Reader etext21344 Stratemeyer, Edward, 1862-1930 The Young Bridge-Tender etext21352 Kingston, Alfred Fragments of Two Centuries etext21372 Fenn, George Manville, 1831-1909 Steve Young etext21525 Chesterton, G. K. (Gilbert Keith), 1874-1936 The Man Who Knew Too Much etext21561 Supino, J. B. Fra Angelico etext21584 etext21604 Flaubert, Gustave, 1821-1880 Three Short Works etext21737 Ballantyne, R. M. (Robert Michael), 1825-1894 The Garret and the Garden etext21743 Ballantyne, R. M. (Robert Michael), 1825-1894 Jeff Benson, or the Young Coastguardsman etext21841 Carson, James The Saddle Boys in the Grand Canyon etext21843 Curtis, William, 1746-1799 The Botanical Magazine, Vol. 6 etext21853 etext21858 Caird, Mona The Daughters of Danaus etext21895 Rothery, Agnes The Old Coast Road etext21911 Pina, Rui de, 1440-1521 Chronica de el-rei D. Affonso V (Vol. II) etext21921 Fitzgerald, Percy Hethrington, 1834-1925 Pickwickian Manners and Customs etext21957 Taylor, David C. (David Clark), 1871-1918 The Psychology of Singing etext21981 Adler, Felix, 1851-1933 The Essentials of Spirituality etext21988 Gunn, James E. Breaking Point etext22020 Neera, 1846-1918 L'indomani etext22051 Various Punch, or the London Charivari, Vol. 98, February 1, 1890 etext22076 McClung, Nellie L., 1873-1951 The Second Chance etext22131 Dent, John Charles, 1841-1888 The Story of the Upper Canada Rebellion etext22152 Moffett, Cleveland, 1863-1926 Possessed etext22198 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Two Sides of the Face etext22211 Munro, Neil, 1864-1930 Gilian The Dreamer etext22215 Russell, W. Clark (William Clark), 1844-1911 The Frozen Pirate etext22216 Simak, Clifford D., 1904-1988 Project Mastodon etext22233 White, Stewart Edward, 1873-1946 Blazed Trail Stories etext22264 Gwynn, Stephen Lucius, 1864-1950 Irish Books and Irish People etext22273 Murray, David Christie, 1847-1907 Bulldog And Butterfly etext22307 Hancock, H. Irving (Harrie Irving), 1868-1922 The Grammar School Boys of Gridley etext22309 Allison, Samuel Buell, 1861- An American Robinson Crusoe etext22319 The Best British Short Stories of 1922 etext22332 etext22374 RM Caw! Caw! : the Chronicle of Crows, A Tale of the Spring-time etext22375 Various The Atlantic Monthly, Volume 17, No. 104, June, 1866 etext22432 Trotter, I. Lilias Parables of the Christ-life etext22455 Crawford, F. Marion (Francis Marion), 1854-1909 Adam Johnstone's Son etext22474 Blackmore, R. D. (Richard Doddridge), 1825-1900 Fringilla: Some Tales In Verse etext22509 Pimentel, Alberto, 1849-1925 O poeta Chiado etext22532 Sampson, Emma Speed, 1868-1947 Mary Louise and Josie O'Gorman etext22554 Anderson, Poul William, 1926-2001 The Burning Bridge etext22670 Jack Wright and His Electric Stage; etext22698 Various Punch, or the London Charivari, Vol. 104, April 1, 1893 etext22711 Bellamy, Edward, 1850-1898 A Love Story Reversed etext22752 Raine, William MacLeod, 1871-1954 The Pirate of Panama etext22770 Various The Continental Monthly, Vol. 5, No. 5, May, 1864 etext22802 Negreiros, José Sobral de Almada, 1893-1970 Litoral etext22816 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Buster Bear etext22821 Hillis, Newell Dwight, 1858-1929 The Blot on the Kaiser's 'Scutcheon etext22840 Mitford, Mary Russell, 1787-1855 Honor O'callaghan etext22843 Mitford, Mary Russell, 1787-1855 Aunt Deborah etext22881 Nourse, Alan Edward, 1928-1992 My Friend Bobby etext22937 Bible. N.T. Jude. English etext22961 Garvice, Charles, -1920 Nell, of Shorne Mills etext22994 Turner, Frederick Jackson, 1861-1932 The Frontier in American History etext23011 Harris, Frank, 1856-1931 Eatin' Crow; and The Best Man In Garotte etext23084 Braddon, M. E. (Mary Elizabeth), 1835-1915 Lady Audley's Secret etext23113 Moule, H. C. G. (Handley Carr Glyn), 1841-1920 To My Younger Brethren etext23116 Emerson, Alice B. Ruth Fielding Down East etext23148 Banta, Frank Droozle etext23172 Bierce, Ambrose, 1842-1914? The Damned Thing etext23180 Hayes, Augustus Allen, 1837-1892 The Denver Express etext23239 Carrere, Emilio, 1881-1947 La copa de Verlaine etext23262 Ballantyne, R. M. (Robert Michael), 1825-1894 Chasing the Sun etext23318 Bennett, Charles H. (Charles Henry), 1829-1867 The Nine Lives of A Cat etext23365 Bacon, Josephine Dodge Daskam, 1876-1961 In The Valley Of The Shadow etext23431 Anonymous Naughty Puppies etext23438 Taylor, James Hudson, 1832-1905 A Ribband of Blue etext23557 Murfree, Mary Noailles, 1850-1922 The Crucial Moment etext23574 La Monte, Robert Rives Socialism: Positive and Negative etext23606 Hough, Emerson, 1857-1923 The Man Next Door etext23640 Hubbard, Elbert, 1856-1915 Little Journeys to the Homes of the Great Philosophers, Volume 8 etext23674 Foster, W. Bert (Walter Bertram), 1869- Swept Out to Sea etext23717 Carroll, Lewis, 1832-1898 Jabberwocky etext23758 Optic, Oliver, 1822-1897 Work and Win etext23780 Douglas, Amanda Minnie, 1831-1916 A Little Girl in Old New York etext23820 Whiting, Lilian, 1847-1942 The Life Radiant etext23874 McNeile, H. C. (Herman Cyril), 1888-1937 No Man's Land etext23902 Stevenson, Robert Louis, 1850-1894 The Cow etext23922 Fenn, George Manville, 1831-1909 Dead Man's Land etext23934 Sassoon, Siegfried, 1886-1967 The Road etext23938 Anonymous 木蘭奇女傳 etext23943 Barksdale, Lena E. The Chickens of Fowl Farm etext23952 Marryat, Frederick, 1792-1848 Valerie etext24050 Hong, Zicheng, fl. 1596 菜根譚 etext24052 Wenying, 11th cent. 玉壺淸話 etext24056 Rödiger, Richard Takt und Ton im geselligen Verkehr nebst Kommandos der Quadrille à la cour und der Française etext24075 Zhou, Xingsi, -521 千字文 etext24087 Jókai, Mór, 1825-1904 Rakkaita sukulaisia etext24104 Leinster, Murray, 1896-1975 The Aliens etext24139 Li, Boyuan, 1867-1906 官場現形記 etext24148 King, Charles, 1844-1933 Waring's Peril etext24151 Long, Frank Belknap, 1903-1994 The Sky Trap etext24174 Sudermann, Clara, 1861-1924 Am Glück vorbei etext24238 Binning, Hugh, 1627-1653 The Works of the Rev. Hugh Binning etext24279 Onkel Adam, 1804-1889 Valdemarsborg'in sukukartano etext24281 Gildersleeve, Basil L. (Basil Lanneau), 1831-1924 The Creed of the Old South 1865-1915 etext24298 Weller, Ella Fraser Nestlings etext24321 Drake, Francis S. (Francis Samuel), 1828-1885 Tea Leaves etext24327 Zhang, Nanzhuang 何典 etext24503 Reid, Mayne, 1818-1883 The Boy Slaves etext24515 Various Le Tour du Monde; Athos etext24533 Eça, Vicente de Almeida de, 1852-1929 O Infante D. Henrique e a arte de navegar dos portuguezes etext24536 Blasco Ibáñez, Vicente, 1867-1928 Los cuatro jinetes del apocalipsis etext24588 Quélus, D. The Natural History of Chocolate etext24593 Hauff, Wilhelm, 1802-1827 The Oriental Story Book etext24600 Allen, Isaac Is Slavery Sanctioned by the Bible? etext24628 Bailey, Arthur Scott, 1877-1949 The Tale of Jimmy Rabbit etext24647 Annesley, Charles, pseud. The Standard Operaglass etext24736 Unknown Peter Pry's Puppet Show etext24762 Tappan, Eva March, 1854-1930 Diggers in the Earth etext24768 La Harpe, Jean-François de, 1739-1803 Abrégé de l'histoire générale des voyages (Tome second) etext24769 Hume, Fergus, 1859-1932 The Opal Serpent etext24785 Phillips, Stephen, 1864-1915 Nero etext24792 Maddren, Gerry The Alternate Plan etext24793 Day, Holman, 1865-1935 Blow The Man Down etext24820 Semper, C. (Carl), 1832-1893 Die Philippinen und ihre Bewohner etext24846 Coutinho, Henrique Ernesto de Almeida, 1788-1868 A Saudade etext24876 Montgomery, L. M. (Lucy Maud), 1874-1942 Lucy Maud Montgomery Short Stories, 1905 to 1906 etext24942 Various The Nursery, November 1873, Vol. XIV. No. 5 etext25027 Anonymous Peter Piper's Practical Principles of Plain and Perfect Pronunciation etext25044 Hague, W. Grant (William Grant), 1868- The Eugenic Marriage, Vol. 3 etext25112 Hopkins, J. Castell (John Castell), 1864-1923 The Life of King Edward VII etext25161 Wang, Fangqing, -702 魏鄭公諫錄 etext25180 Salgari, Emilio, 1862-1911 La favorita del Mahdi etext25207 Various Blackwood's Edinburgh Magazine, Volume 57, No. 357, June, 1845 etext25245 Yuan, Mei, 1716-1798 子不語 etext25271 Lu, Xun, 1881-1936 朝花夕拾 etext25281 Williams, James, 1851-1911 Briefless Ballads and Legal Lyrics etext25385 Dong, Zhongshu, 2nd cent. B.C. 春秋繁露 etext25420 etext25427 Optic, Oliver, 1822-1897 Careless Kate etext25576 Various Le Tour du Monde; Indes Occidentales etext25577 Optic, Oliver, 1822-1897 All Adrift etext25583 Northern Nut Growers Association Incorporated 39th Annual Report etext25640 Blasco Ibáñez, Vicente, 1867-1928 Los argonautas etext25670 Bevan, Tom, 1868- Sea-Dogs All! etext25713 etext25736 Hoffmann, Franz, 1814-1882 Rauta-kallo etext25856 Rolle, Richard, of Hampole, 1290?-1349 The Form of Perfect Living and Other Prose Treatises etext25887 Kindermann, Henny Lola etext25890 Buchanan's Journal of Man, April 1887 etext25898 Testa, Carlos, 1823-1891 A politica intercolonial e internacional e o tratado de Lourenço Marques etext25953 Kalevala, Volume I (of 2) etext25988 Schack, Adolf Friedrich von, 1815-1894 Historia de la literatura y del arte dramático en España, tomo II etext25990 Siepert, Albert Frederick, 1883- Bird Houses Boys Can Build etext26009 Biart, Lucien, 1829-1897 Aventures d'un jeune naturaliste. English etext26012 Various Punch, or the London Charivari, Vol. 147, August 5th, 1914 etext26020 Wolf, C. W., -1866 Apis Mellifica etext26022 Various The American Missionary — Volume 50, No. 1, January, 1896 etext26043 Alger, Horatio, 1832-1899 Sam's Chance etext26140 Kenyon, Ernest M. Security etext26173 Stephens, Bascom Asbury Cecil The Stephens Family etext26201 Lofting, Hugh, 1886-1947 The Story of Doctor Doolittle etext26253 Machiavelli, Niccolò, 1469-1527 The Prince etext26293 Grahame, Kenneth, 1859-1932 The Wind in the Willows etext21539 Snell, Roy J. (Roy Judson), 1878-1959 The Blue Envelope etext26364 Atkinson, William Walker, 1862-1932 Reincarnation and the Law of Karma etext26449 Fairholt, F. W. (Frederick William), 1814-1866 Rambles of an Archaeologist Among Old Books and in Old Places etext26550 Dodge, Louis, 1870-1952 Children of the Desert etext26551 Reeder, Charles Wells, 1884- Government Documents in Small Libraries etext26558 Unknown Pennsylvania Dutch Cooking etext26595 Chamberlain, Arthur Henry, 1870-1942 The Condition and Tendencies of Technical Education in Germany etext26601 Melville, Frederick John, 1882-1940 Gambia etext26620 Leslie, Madeline, 1815-1893 Minnie's Pet Horse etext26641 Westerman, Percy F. (Percy Francis), 1876-1959 The Submarine Hunters etext26652 Howard, Thomas Henry, 1849-1923 Standards of Life and Service etext26670 Saylor, Henry H. (Henry Hodgman), 1880- Making a Fireplace etext26681 Villiers de L'Isle-Adam, Auguste, comte de, 1838-1889 L'Eve Future etext26683 Waterman, Nixon, 1859-1944 The Girl Wanted etext26738 Tianhuazangzhuren 畫圖緣 etext26743 Dorman, Sonya, 1924-2005 The Putnam Tradition etext26850 Braga, Joaquim Teófilo Fernandes, 1843-1924 Viriatho etext26879 Reece, Robert Henry, 1889- Night Bombing with the Bedouins etext26912 Algie, R. M. (Ronald Macmillan), 1888-1978 Report of the Juvenile Delinquency Committee etext26930 Lewis, R. Over the top with the 25th etext26938 Besant, Annie Wood, 1847-1933 Esoteric Christianity, or The Lesser Mysteries etext26950 Scarborough, Dorothy, 1878-1935 Humorous Ghost Stories etext27030 Lebert, Marie From the Print Media to the Internet etext27032 Lebert, Marie Interviews (1998-2001) etext27054 Axelson, Maximilian, 1823-1884 Sihteeri Lundbergin häät etext27089 Westlake, Donald E., 1933- The Risk Profession etext27106 Ferguson, Eugene S., 1916-2004 Kinematics of Mechanisms from the Time of Watt etext27128 Dewey, Edward Hooker, 1837?-1904 The No Breakfast Plan and the Fasting-Cure etext27168 Eggleston, Edward, 1837-1902 The Faith Doctor etext27204 Yue, Fei, 1103-1142 滿江紅 etext27222 Alger, Horatio, 1832-1899 The Tin Box etext27262 Various Mother Earth, Vol. 1 No. 3, May 1906 etext27290 Riehl, Wilhelm Heinrich, 1823-1897 Kauneuden kirous etext27324 Robin, E. Gallienne Where Deep Seas Moan etext27350 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Noites de insomnia, offerecidas a quem não póde dormir. Nº6 (de 12) etext22372 Grenfell, Wilfred Thomason, Sir, 1865-1940 A Labrador Doctor etext22396 Gilbert, Henry King Arthur's Knights etext27356 Mitton, G. E. (Geraldine Edith) Chelsea etext27365 Wells, H. G. (Herbert George), 1866-1946 Tales of Space and Time etext27372 The Diplomatic Correspondence of the American Revolution, Vol. VIII etext27377 Curtis, Alice Turner A Little Maid of Massachusetts Colony etext27384 Dumas père, Alexandre, 1802-1870 Une fille du régent. English etext27419 Various Barnavännen, 1905-04 etext27518 Sturt, George, 1863-1927 Change in the Village etext27578 Speiser, Felix, 1880-1949 Two Years with the Natives in the Western Pacific etext27589 Gossip, Giles Coronation Anecdotes etext27608 Various Bollettino del Club Alpino Italiano 1895-96 etext27667 Various Scientific American Supplement, No. 647, May 26, 1888 etext27697 Field, Eugene, 1850-1895 The Mouse and The Moonbeam etext27741 Smith, Francis Hopkinson, 1838-1915 Colonel Carter's Christmas and The Romance of an Old-Fashioned Gentleman etext27769 Wagner, Richard, 1813-1883 Der Fliegende Hollaender etext27837 Souza-Botelho, Adélaïde-Marie-Emilie Filleul, marquise de, 1761-1836 Adèle de Sénange etext27851 Gurney, Alfred, 1845-1898 A Christmas Faggot etext27896 Aristotle, 384 BC-322 BC Μικρά Φυσικά etext27903 Nesbit, E. (Edith), 1858-1924 The Magic World etext27952 The Enchanted Castle etext27953 Paxson, Frederic L. (Frederic Logan), 1877-1948 The New Nation etext27976 Marmont, Auguste Frédéric Louis Viesse de, duc de Raguse, 1774-1852 Mémoires du maréchal Marmont, duc de Raguse, (2/9) etext28040 Holt, Emily Sarah, 1836-1893 Robin Tremayne etext28049 Mickiewicz, Adam, 1798-1855 Balady i romanse etext28056 Trotter, James M., 1842-1892 Music and Some Highly Musical People etext28070 Harriman, Alice, 1861-1925 A Man of Two Countries etext28095 Hoffmann, Franz, 1814-1882 Hengenvakuutus etext28181 Poel, Betsy van der Van Smyrna naar Holland in oorlogstijd etext28242 Child, Lydia Maria Francis, 1802-1880 An Appeal in Favor of that Class of Americans Called Africans etext28269 etext28279 Hoppeler, Hans Woher die Kindlein kommen etext28367 Collins, Wilkie, 1824-1889 Rambles Beyond Railways; etext28375 Vaughan, Henry, 1621-1695 Poems of Henry Vaughan, Silurist, Volume II etext28415 Lyng, Mary Ella History Plays for the Grammar Grades etext28452 Anonymous The American Housewife etext28530 Roberts, Charles George Douglas, Sir, 1860-1943 Kings in Exile etext28540 Dibdin, Thomas Frognall, 1776-1847 Bibliomania; or Book-Madness etext28542 Falkner, Thomas, 1707-1784 Descripción de la Patagonia y de las Partes Adyacentes de la América Meridional etext28565 Meade, L. T., 1854-1914 Good Luck etext28654 Stratemeyer, Edward, 1862-1930 Dave Porter and the Runaways etext28677 Various The Christian Foundation, Or, Scientific and Religious Journal, Volume I, No. 11, November, 1880 etext28714 Xin, Wenfang, 13th/14th cent. 唐才子傳 etext28717 Carey, Rosa Nouchette, 1840-1909 Wee Wifie etext28728 Duffield, J. W. Bert Wilson on the Gridiron etext28755 Leblanc, Maurice, 1864-1941 The Hollow Needle: Further Adventures of Arsène Lupin etext28808 Orczy, Emmuska Orczy, Baroness, 1865-1947 The Scarlet Pimpernel etext28831 Various Key-Notes of American Liberty etext28851 Moody, William Vaughn, 1869-1910 The Faith Healer etext28924 Young, Robert F., 1915-1986 Collector's Item etext28969 Schiller, Friedrich, 1759-1805 The Illustrated Works Of Frederich Schiller etext29042 Carroll, Lewis, 1832-1898 A Tangled Tale etext29126 Heine, Heinrich, 1797-1856 Aikarunoja etext29168 Sheldon, Walter J., 1917- Houlihan's Equation etext29190 Zagat, Arthur Leo, 1896-1949 The Great Dome on Mercury etext29244 Withers, Alexander Scott, 1792-1865 Chronicles of Border Warfare etext29269 Hill, H. R. A Succinct View of the Importance and Practicability of Forming a Ship Canal across the Isthmus of Panama etext29350 Rafinesque, C. S. (Constantine Samuel), 1783-1840 The Ancient Monuments of North and South America, 2nd ed. etext29385 The Story of the Great War, Volume VI (of VIII) etext29415 Avery, Harold, 1867-1943 Soldiers of the Queen etext29437 Starzl, Roman Frederick, 1899-1976 The Martian Cabal etext29441 Plato, 427? BC-347? BC The Project Gutenberg Works Of Plato etext29446 Sheckley, Robert, 1928-2005 Beside Still Waters etext29480 Hymns from the Morningland etext29529 Unknown Historia Antiga etext29531 Symons, Arthur, 1865-1945 Silhouettes etext29540 Pohle, Joseph, 1852-1922 Grace, Actual and Habitual etext29565 Loti, Pierre, 1850-1923 Les derniers jours de Pékin etext29598 Hawley, Mabel C. Four Little Blossoms at Brookside Farm etext29612 Pinkham, Lydia Estes, 1819-1883 Treatise on the Diseases of Women etext29640 About, Edmond, 1828-1885 Germaine. Spanish etext29645 Caesar, Julius, 100 BC-44 BC The Gate to Cæsar etext29720 Brown, Fredric, 1906-1972 Hall of Mirrors etext29739 Little Masterpieces of Science: etext29818 Norton, Roy, 1869-1942 The Plunderer etext29819 Silva, J. M. Pereira da (João Manuel Pereira), 1817-1898 Manuel de Moraes etext29827 Percival, Kate The Life and Amours of the Beautiful, Gay and Dashing Kate Percival etext29893 Menzies, Allan, 1845-1916 History of Religion etext29941 Freud, Sigmund, 1856-1939 Zeitgemäßes über Krieg und Tod etext29964 Richardson, Samuel, 1689-1761 Clarissa: Preface, Hints of Prefaces, and Postscript etext30012 Rostand, Edmond, 1868-1918 L'Aiglon etext30015 Gilbert, Robert E., 1924-1993 Stopover Planet etext30031 Erskine, Payne, 1854-1924 The Eye of Dread etext30053 Palacio Valdés, Armando, 1853-1938 Los Puritanos, y otros cuentos etext30075 Maniates, Belle Kanaris Our Next-Door Neighbors etext30087 Jefferies, Richard, 1848-1887 Amaryllis at the Fair etext30117 Lemaître, Jules, 1853-1914 ABC etext30148 Warner, Susan, 1819-1885 The House in Town etext30178 Our Moslem Sisters etext30183 Hamilton, Clayton Meeker, 1881-1946 A Manual of the Art of Fiction etext30212 Ellis, Edward Sylvester, 1840-1916 The Great Cattle Trail etext30275 Camba, Julio, 1884-1962 La rana viajera etext30382 Coggins, Frank W. Say "Hello" for Me etext30421 Dennis, John, 1825-1911 The Age of Pope etext30515 Tocqueville, Alexis de, 1805-1859 De la Démocratie en Amérique, tome troisième etext30653 Young, Edward, 1683-1765 The Revenge etext30654 Robespierre, Maximilien, 1758-1794 Oeuvres par Maximilien Robespierre — Miscellaneous etext30659 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 14 (of 25) etext30684 Otis, James, 1848-1912 The Boys of '98 etext30720 Various Happy Days for Boys and Girls etext30722 Spinrad, Norman, 1940- Subjectivity etext30743 Carpenter, Stephen H. (Stephen Haskins), 1831-1878 The Philosophy of Evolution etext30759 Hill, Grace Livingston, 1865-1947 Exit Betty etext30824 Davenport, Spencer The Rushton Boys at Treasure Cove etext30829 Various Our Young Folks—Vol. I, No. II, February 1865 etext30893 Tappan, Eva March, 1854-1930 The Little Book of the Flag etext30894 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 23 (of 25) etext30914 Hill, Grace Brooks The Corner House Girls Growing Up etext30916 etext30955 Hayes, Mrs. W. J. The Princess Idleways etext30972 McGuire, John Joseph, 1917-1981 Take the Reason Prisoner etext30981 Smith, F. Berkeley (Frank Berkeley), 1869-1931 The Real Latin Quarter etext31022 Robespierre, Maximilien, 1758-1794 Reproduction, par les procédés héliographiques Motteroz, du Carnet de Robespierre trouvé sur lui au moment de son arrestation etext31138 Taylor, Bert Leston, 1866-1921 The So-called Human Race etext31143 Bate, John Talkers etext31185 Tuke, Daniel Hack, 1827-1895 Chapters in the History of the Insane in the British Isles etext31193 etext31208 Lewis, Mike Collectivum etext31278 Acton, John Emerich Edward Dalberg Acton, Baron, 1834-1902 The History of Freedom etext31289 Erckmann-Chatrian Waterloo etext31335 Shambaugh, Benjamin F. History of the Constitutions of Iowa etext31344 Johnson, Willis E. Mathematical Geography etext31349 Bennitt, Ralph Satan and the Comrades etext31360 Brinton, Daniel Garrison, 1837-1899 Anthropology etext31387 Dunton, Edith K. Betty Wales Freshman etext31400 Plato, 427? BC-347? BC Κριτίας, Ίππαρχος, Αντερασταί etext31421 Ellis, Edward Sylvester, 1840-1916 Through Apache Lands etext31429 Downs, James F., 1923-1999 Washo Religion etext31493 Babcock, Bernie The Daughter of a Republican etext31496 Nexø, Martin Andersen, 1869-1954 Ditte: Girl Alive! etext31502 Taylor, Frances Two Indian Children of Long Ago etext31577 Gault, William Campbell, 1910-1995 The Mighty Dead etext31586 Evans, Dean The Very Black etext31619 Bradley, Marion Zimmer, 1930-1999 The Planet Savers etext31626 Smith, Evelyn E., 1927-2000 The Vilbar Party etext31685 Lever, Charles James, 1806-1872 Nuts and Nutcrackers etext31700 Rowland, Helen, 1876- Reflections of a Bachelor Girl etext31707 Scribe, Eugène, 1791-1861 Carlos Broschi etext31735 etext31775 McElroy, John, 1846-1929 Si Klegg, Book 5 (of 6) etext31836 Quiller-Couch, Mabel, 1866-1924 Better than Play etext31846 Thiers, Adolphe, 1797-1877 Histoire du Consulat et de l'Empire, (Vol. 4 / 20) etext31913 Cawein, Madison J. Undertones etext31947 Comte, Auguste Cours de philosophie positive. (4/6) etext31967 Various Graded Poetry: Third Year etext31968 Kalidasa The Birth of the War-God etext31992 Young, Filson, 1876-1938 Titanic etext31993 Asbjørnsen, Peter Christen, 1812-1885 'Round the yule-log: Christmas in Norway etext32013 Wingate, George W. The Last Campaign of the Twenty-Second Regiment, N.G., S.N.Y. June and July, 1863 etext32020 António, Patrício, 1878-1930 Serão inquieto : contos etext32050 Gleason, Henry Allan The Plants of Michigan etext32127 De Vet, Charles V. (Charles Vincent), 1911-1997 Wheels Within etext32129 etext32166 Bullock, Shan F. Thomas Andrews etext32169 Wiggin, Kate Douglas Smith, 1856-1923 Susanna and Sue etext32287 Lewis, Elisabeth R. Know Thy Neighbor etext32321 Shaara, Michael The Book etext32342 Lever, Charles James, 1806-1872 Davenport Dunn, Volume 2 (of 2) etext32398 Diffin, Charles Willard, 1884-1966 Brood of the Dark Moon etext32421 Call, Annie Payson, 1853-1940 A Man of the World etext32432 Glaspell, Susan, 1882-1948 Fidelity etext32456 Barlow, Robert Hayward, 1918-1951 R.E.H. etext32462 Browne, Howard, 1908-1999 Warrior of the Dawn etext32492 Unknown Endless Amusement etext32494 Boothby, Guy, 1867-1905 Doktor Nikola etext32497 Wicksteed, Philip H. The Alphabet of Economic Science etext32524 Brazil, Angela, 1868-1947 A Fourth Form Friendship etext32530 Nowlan, Philip Francis, 1888-1940 Armageddon—2419 A.D. etext32537 Webster, Frank V. The Newsboy Partners etext32573 Campbell, Charles, 1807-1876 History of the Colony and Ancient Dominion of Virginia etext32574 Thompson, Don, 1935-1994 The Telenizer etext32606 Raymond, Evelyn, 1843-1910 Dorothy on a House Boat etext32662 Anonymous Eight Stories for Isabel etext32673 Gore, Charles, 1853-1932 St. Paul's Epistle to the Romans, Vol. I etext32682 Various Punch, or the London Charivari, Volume 93, July 16, 1887 etext36 Wells, H. G. (Herbert George), 1866-1946 The War of the Worlds etext44 Cather, Willa Sibert, 1873-1947 The Song of the Lark etext61 etext79 Schwartau, Winn Terminal Compromise: computer terrorism: when privacy and freedom are the victims: a novel etext122 Hardy, Thomas, 1840-1928 The Return of the Native etext146 Burnett, Frances Hodgson, 1849-1924 A Little Princess; being the whole story of Sara Crewe now told for the first time etext165 Norris, Frank, 1870-1902 McTeague etext217 Lawrence, D. H. (David Herbert), 1885-1930 Sons and Lovers etext222 Maugham, W. Somerset (William Somerset), 1874-1965 Moon and Sixpence etext245 Twain, Mark, 1835-1910 Life on the Mississippi etext301 Wilde, Oscar, 1854-1900 Ballad of Reading Gaol etext330 Rinehart, Mary Roberts, 1876-1958 Where There's a Will etext346 Cather, Willa Sibert, 1873-1947 The Troll Garden and Selected Stories etext401 Norris, Frank, 1870-1902 Blix etext423 Doyle, Arthur Conan, Sir, 1859-1930 Round the Red Lamp etext428 Hope, Anthony, 1863-1933 Frivolous Cupid etext487 Stevenson, Robert Louis, 1850-1894 Songs of Travel etext516 Stevenson, Robert Louis, 1850-1894 The Silverado Squatters etext548 etext575 Bacon, Francis, 1561-1626 The Essays of Francis Bacon etext634 Miscellaneous Mathematical Constants etext644 Dickens, Charles, 1812-1870 The Haunted Man and the Ghost's Bargain etext653 Dickens, Charles, 1812-1870 The Chimes etext664 etext688 Dunbar-Nelson, Alice Moore, 1875-1935 The Goodness of St. Rocque and Other Stories etext728 Howells, William Dean, 1837-1920 Emile Zola etext759 Beerbohm, Max, Sir, 1872-1956 James Pethel etext787 Barr, Amelia Edith Huddleston, 1831-1919 The Man Between, an International Romance etext797 Stendhal, 1783-1842 L'Abbesse De Castro etext833 Veblen, Thorstein, 1857-1929 Theory of the Leisure Class etext906 Lowell, James Russell, 1819-1891 Abraham Lincoln etext923 James, William Dobein, 1764-1838 A Sketch of the life of Brig. Gen. Francis Marion and a history of his brigade etext1011 Dante Alighieri, 1265-1321 La Divina Commedia di Dante: Paradiso etext1023 Dickens, Charles, 1812-1870 Bleak House etext1094 Marlowe, Christopher, 1564-1593 Tamburlaine the Great — Part 1 etext1097 Shaw, Bernard, 1856-1950 Mrs. Warren's Profession etext1121 Shakespeare, William, 1564-1616 As You Like It etext1206 Bower, B. M., 1874-1940 The Flying U Ranch etext1263 Wharton, Edith, 1862-1937 The Glimpses of the Moon etext1348 McCarter, Margaret Hill, 1860-1938 A Master's Degree etext1385 Wister, Owen, 1860-1938 Lin McLean etext1392 Dickens, Charles, 1812-1870 The Seven Poor Travellers etext1417 Balzac, Honoré de, 1799-1850 Sons of the Soil etext1433 Balzac, Honoré de, 1799-1850 The Red Inn etext1458 Schreiner, Olive, 1855-1920 Dream Life and Real Life; a little African story etext1468 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 The History of England, from the Accession of James II — Volume 1 etext1502 Shakespeare, William, 1564-1616 King Henry VI, Part 3 etext32668 Jókai, Mór, 1825-1904 Black Diamonds etext1512 Shakespeare, William, 1564-1616 King Richard II etext1549 Luther, Martin, 1483-1546 Commentary on the Epistle to the Galatians etext1591 Plato, 427? BC-347? BC Protagoras etext1607 Astor, John Jacob, 1864-1912 A journey in other worlds etext1653 Thomas, à Kempis, 1380?-1471 The Imitation of Christ etext1731 Thompson, Francis, 1859-1907 Sister Songs; an offering to two sisters etext1776 Shakespeare, William, 1564-1616 King Richard II etext1840 Dreiser, Theodore, 1871-1945 The Financier, a novel etext1887 Fabre, Jean-Henri, 1823-1915 The Life of the Spider etext1935 Thackeray, William Makepeace, 1811-1863 Adventures of Major Gahagan etext1946 Clausewitz, Carl von, 1780-1831 On War — Volume 1 etext1959 Chapin, E. H. (Edwin Hubbell), 1814-1880 The Crown of Thorns : a token for the sorrowing etext2018 Lang, Andrew, 1844-1912 The Library etext2021 Conrad, Joseph, 1857-1924 Nostromo, a Tale of the Seaboard etext2042 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Something New etext2096 Smith, William, Sir, 1813-1893 A Smaller history of Greece etext2151 Poe, Edgar Allan, 1809-1849 The Works of Edgar Allan Poe — Volume 5 etext2154 Verne, Jules, 1828-1905 Around the World in 80 Days etext2160 Smollett, T. (Tobias), 1721-1771 The Expedition of Humphry Clinker etext2190 Arnim, Ludwig Achim, Freiherr von, 1781-1831 Isabella von Ägypten etext2259 Shakespeare, William, 1564-1616 Coriolanus etext2268 Shakespeare, William, 1564-1616 Antony and Cleopatra etext2333 Macaulay, Thomas Babington Macaulay, Baron, 1800-1859 Critical and Historical Essays — Volume 2 etext2396 MacCaffrey, James, 1875-1935 History of the Catholic Church from the Renaissance to the French Revolution — Volume 1 etext2408 Goethe, Johann Wolfgang von, 1749-1832 Die Leiden des jungen Werther — Band 2 etext2412 Aristotle, 384 BC-322 BC Categoriae. English etext2433 MacDonald, George, 1824-1905 Donal Grant, by George MacDonald etext2515 Prentiss, E. (Elizabeth), 1818-1878 Stepping Heavenward etext2558 Morris, George Pope, 1802-1864 Poems etext2573 Yonge, Charlotte Mary, 1823-1901 The Caged Lion etext2582 Taine, Hippolyte, 1828-1893 The Modern Regime, Volume 2 etext2593 Gardner, William, 1861- Life of Stephen A. Douglas etext2600 Tolstoy, Leo, graf, 1828-1910 War and Peace etext2610 Hugo, Victor, 1802-1885 Notre-Dame De Paris etext2628 Huxley, Thomas Henry, 1825-1895 The Rise and Progress of Palaeontology etext2690 Darwin, Charles, 1809-1882 Coral Reefs etext2700 Holmes, Oliver Wendell, 1809-1894 Medical Essays, 1842-1882 etext2721 Haggard, Henry Rider, 1856-1925 Eric Brighteyes etext2739 Darwin, Charles, 1809-1882 More Letters of Charles Darwin — Volume 1 etext2743 Dumas père, Alexandre, 1802-1870 Massacres of the South (1551-1815) etext2767 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Devil's Paw etext2846 Josephus, Flavius, 38?-100? The Life of Flavius Josephus etext2870 James, Henry, 1843-1916 Washington Square etext2883 Wells, Carolyn, 1862-1942 The Gold Bag etext2941 The Chinese Classics — Prolegomena etext2942 Yonge, Charlotte Mary, 1823-1901 Two Penniless Princesses etext2997 Hardy, Thomas, 1840-1928 Time's Laughingstocks and Other Verses etext3011 Scott, Walter, Sir, 1771-1832 The Lady of the Lake etext3036 Moody, John, 1868-1958 The Railroad Builders; a chronicle of the welding of the states etext3065 Mommsen, Theodor, 1817-1903 Römische Geschichte — Band 8 etext3090 Maupassant, Guy de, 1850-1893 Complete Original Short Stories of Guy De Maupassant etext3125 Warner, Charles Dudley, 1829-1900 Complete Essays etext3131 Warner, Charles Dudley, 1829-1900 How Spring Came in New England etext3196 Twain, Mark, 1835-1910 Mark Twain's Letters — Volume 4 (1886-1900) etext3198 Twain, Mark, 1835-1910 Mark Twain's Letters — Volume 6 (1907-1910) etext3219 Honig, Winfried Mr. Honey's Tourist Dictionary etext3243 Connor, Ralph, 1860-1937 Glengarry School Days: a story of early days in Glengarry etext3258 Hardy, Thomas, 1840-1928 A Laodicean : a Story of To-day etext3263 Lincoln, Joseph Crosby, 1870-1944 The Portygee etext3328 Shaw, Bernard, 1856-1950 Man and Superman etext3352 Chesterfield, Philip Dormer Stanhope, Earl of, 1694-1773 Letters to His Son on the Art of Becoming a Man of the World and a Gentleman, 1748 etext3372 Howells, William Dean, 1837-1920 Their Silver Wedding Journey — Volume 2 etext3395 Howells, William Dean, 1837-1920 Oliver Wendell Holmes (from Literary Friends and Acquaintance) etext3456 Verne, Jules, 1828-1905 Le tour du monde en quatre-vingts jours etext3515 Human Genome Project Human Genome Project, Chromosome Number 15 etext3527 Housman, Laurence, 1865-1959 The Blue Moon etext3547 Hiestand, Orville O. See America First etext3580 Wairy, Louis Constant, 1778-1845 Recollections of the Private Life of Napoleon — Complete etext3626 Lincoln, Abraham, 1809-1865 Widger's Quotations from the Project Gutenberg Editions of the Works of Abraham Lincoln etext3692 Rossetti, Dante Gabriel, 1828-1882 The House of Life etext3716 Trollope, Anthony, 1815-1882 Mrs. General Talboys etext3722 Stratton-Porter, Gene, 1863-1924 A Daughter of the Land etext3748 Verne, Jules, 1828-1905 A Journey to the Interior of the Earth etext3837 Alcott, Louisa May, 1832-1888 Hospital Sketches etext3847 Montespan, Françoise-Athénaïs de Rochechouart de Mortemart, marquise de, 1641-1707 Memoirs of Madame de Montespan — Volume 1 etext3857 Orleans, Charlotte-Elisabeth, duchesse d', 1652-1722 Memoirs of Louis XIV and His Court and of the Regency — Volume 03 etext3862 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 03 etext3921 France, Anatole, 1844-1924 The Red Lily — Volume 03 etext3928 Claretie, Jules, 1840-1913 Prince Zilah — Volume 2 etext3951 Vigny, Alfred de, 1797-1863 Cinq Mars — Volume 5 etext3997 Souvestre, Émile, 1806-1854 An Attic Philosopher in Paris — Volume 2 etext4006 Wilcox, Ella Wheeler, 1855-1919 Yesterdays etext4008 Landor, Walter Savage, 1775-1864 Count Julian etext4078 Wilde, Oscar, 1854-1900 The Picture of Dorian Gray etext4103 Ames, Azel, 1845-1908 The Mayflower and Her Log; July 15, 1620-May 6, 1621 — Volume 3 etext4118 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 02: January 1659-1660 etext4179 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 56: August 1667 etext4187 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 63: March 1667-68 etext4202 Pepys, Samuel, 1633-1703 Quotations from Diary of Samuel Pepys etext4209 Evans, Augusta J. (Augusta Jane), 1835-1909 At the Mercy of Tiberius etext4222 Scott, Ernest, 1867-1939 Laperouse etext4227 Appleton, Victor [pseud.] Tom Swift and His Wireless Message: or, the castaways of Earthquake island etext4331 Ridge, Lola, 1883-1941 Sun-Up and Other Poems etext4392 Norris, Kathleen Thompson, 1880-1966 Martie, the Unconquered etext4426 Meredith, George, 1828-1909 Rhoda Fleming — Complete etext4449 Meredith, George, 1828-1909 The Adventures of Harry Richmond — Volume 6 etext4627 Arthur, T. S. (Timothy Shay), 1809-1885 The Lights and Shadows of Real Life etext4655 Munro, William Bennett, 1875-1957 The Seigneurs of Old Canada : A Chronicle of New World Feudalism etext4672 Neuhaus, Eugen, 1879-1963 The Galleries of the Exposition etext4689 Orr, Lyndon Famous Affinities of History — Volume 1 etext4701 Ruskin, John, 1819-1900 The Ethics of the Dust etext4713 Smith, Francis Hopkinson, 1838-1915 The Veiled Lady and Other Men and Women etext4740 Bertrand, Huguette Dans Le Fondu Des Mots etext4743 Curwood, James Oliver, 1878-1927 The Country Beyond etext4751 Mozart, Wolfgang Amadeus, 1756-1791 String Quartet No. 2 in D major, K. 155 etext4753 Dufresny, Charles Rivière, 1654-1724 The Forfeiture etext4784 Lawrence, Josephine, 1897?-1978 Brother and Sister etext4786 Franck, Harry Alverson, 1881-1962 Zone Policeman 88; a close range study of the Panama canal and its workers etext4796 Cooper, James Fenimore, 1789-1851 Jack Tier etext4804 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Volume 04: 1555-59 etext4867 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1595 etext4879 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1607a etext4903 Allen, Grant, 1848-1899 Hilda Wade, a Woman with Tenacity of Purpose etext4955 Abbott, Belle K. (Belle Kendrick) Leah Mordecai etext4975 Carnegie, David Wynford, 1871-1900 Spinifex and Sand etext4976 Sturt, Charles, 1795-1869 Expedition into Central Australia etext5039 Truman, Harry S., 1884-1972 State of the Union Address etext5066 etext5069 Shaw, Bernard, 1856-1950 The Doctor's Dilemma: Preface on Doctors etext5149 Reeve, Arthur B. (Arthur Benjamin), 1880-1936 Gold of the Gods etext5150 Reeve, Arthur B. (Arthur Benjamin), 1880-1936 The Ear in the Wall etext5181 Crabbe, George, 1754-1832 Inebriety and the Candidate etext5251 Yonge, Charlotte Mary, 1823-1901 The Long Vacation etext5283 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 09 etext5299 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 25 etext5377 Churchill, Winston, 1871-1947 A Modern Chronicle — Volume 04 etext5390 Churchill, Winston, 1871-1947 The Crisis — Volume 03 etext5426 Brooks, Amy Princess Polly's Playmates etext5443 Ebers, Georg, 1837-1898 Uarda : a Romance of Ancient Egypt — Volume 05 etext5469 Ebers, Georg, 1837-1898 Joshua — Volume 3 etext5487 Ebers, Georg, 1837-1898 The Emperor — Volume 05 etext5522 Ebers, Georg, 1837-1898 The Bride of the Nile — Volume 06 etext5538 Ebers, Georg, 1837-1898 A Thorny Path — Volume 09 etext5663 Lichtenstein, Alfred, 1889-1914 The Prose of Alfred Lichtenstein etext5670 Woolf, Virginia, 1882-1941 Jacob's Room etext5673 Alger, Horatio, 1832-1899 The Young Musician ; Or, Fighting His Way etext5681 Unknown The Laws of Etiquette etext5694 Various The Harvard Classics Volume 38 etext5731 Wells, Carolyn, 1862-1942 Patty in Paris etext5763 Young, Daniel Young's Demonstrative Translation of Scientific Secrets etext5772 Russell, George William, 1867-1935 AE in the Irish Theosophist etext5776 Sinclair, Upton, 1878-1968 100%: the Story of a Patriot etext5868 Alger, Horatio, 1832-1899 Nothing to Eat etext5890 Blain, Mary E., 1872- Games for Hallow-e'en etext5943 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 40 etext5957 Shedlock, Marie L., 1854-1935 The Art of the Story-Teller etext5969 MacDonald, George, 1824-1905 What's Mine's Mine — Complete etext6032 Villehardouin, Geoffroi de, 1150-1213 Memoirs or Chronicle of the Fourth Crusade and the Conquest of Constantinople etext6042 Burney, Fanny, 1752-1840 The Diary and Letters of Madame D'Arblay — Volume 2 etext6050 Morris, William, 1834-1896 The Roots of the Mountains; Wherein Is Told Somewhat of the Lives of the Men of Burgdale etext6086 Porter, Jane, 1776-1850 The Scottish Chiefs etext6128 Roe, Edward Payson, 1838-1888 His Sombre Rivals etext6132 Maher, William H. A Man of Samples etext6229 Parker, Gilbert, 1862-1932 The Seats of the Mighty, Complete etext6296 Parker, Gilbert, 1862-1932 Carnac's Folly, Volume 1. etext6327 Lucian, of Samosata, 120-180 Works of Lucian of Samosata — Volume 01 etext6427 Gilman, Arthur The Story of Rome from the Earliest Times to the End of the Republic etext6450 Cooper, James Fenimore, 1789-1851 The Prairie etext6473 Pattee, George K. Practical Argumentation etext6475 Muller, Fritz, 1821-1897 Facts and Arguments for Darwin etext6483 Masson, David, 1822-1907 The Life of John Milton Volume 3 1643-1649 etext6553 Hardy, Thomas, 1840-1928 Wessex Tales etext6634 McGee, Thomas D'Arcy, 1825-1868 A Popular History of Ireland : from the Earliest Period to the Emancipation of the Catholics — Complete etext6638 Hauff, Wilhelm, 1802-1827 Märchen-Almanach auf das Jahr 1826 etext6649 Schiller, Friedrich, 1759-1805 Einige Gedichte etext6676 Molesworth, Mrs., 1839-1921 Rosy etext6693 How, Edith A. People of Africa etext6694 Strindberg, August, 1849-1912 In Midsummer Days, and Other Tales etext6715 Curwood, James Oliver, 1878-1927 Isobel : a Romance of the Northern Trail etext6722 Andreyev, Leonid Nikolayevich, 1871-1919 The Seven Who Were Hanged etext6726 Hauff, Wilhelm, 1802-1827 Lichtenstein etext6811 Ketcham, Henry The Life of Abraham Lincoln etext6832 Lenz, Jakob Michael Reinhold, 1751-1792 Die Soldaten etext6835 Lenz, Jakob Michael Reinhold, 1751-1792 Zerbin, oder die neuere Philosophie etext6869 Anonymous The American Goliah etext6876 Rayleigh, Clara, -1900 The British Association's Visit to Montreal, 1884 : letters etext6901 Middleton, Lydia Miller The Happy Adventurers etext6908 Sayler, H. L. (Harry Lincoln), 1863- The Air Ship Boys : Or, the Quest of the Aztec Treasure etext6918 Prescott, William Hickling, 1796-1859 The History of the Reign of Ferdinand and Isabella the Catholic — Volume 1 etext7017 Cole, Fay-Cooper, 1881-1961 A Study in Tinguian Folk-Lore etext7019 Woodward, Ray For Auld Lang Syne etext7022 Shakespeare, William, 1564-1616 Ein Sommernachtstraum etext7078 Kanteletar: Suomen kansan wanhoja lauluja ja wirsiä etext7114 Maupassant, Guy de, 1850-1893 Une Vie, a Piece of String and Other Stories etext7131 Hawthorne, Julian, 1846-1934 The History of the United States from 1492 to 1910, Volume 1 etext7167 Various The Guide to Reading — the Pocket University Volume XXIII etext7229 Henty, G. A. (George Alfred), 1832-1902 Rujub, the Juggler etext7236 Shakespeare, William, 1564-1616 Der Sturm, oder Die bezauberte Insel etext7266 Tao, Qian, 372?-427 搜神後記 etext7280 Burroughs, John, 1837-1921 My Boyhood etext7283 Baker, Emilie Kip Short Stories and Selections for Use in the Secondary Schools etext7289 Song yu, 3rd cent. B.C. Han shi wai chuan etext7292 Shakespeare, William, 1564-1616 Leben und Tod des Königs Johann etext7296 Masefield, John, 1878-1967 John M. Synge: a Few Personal Recollections, with Biographical Notes etext7325 Lathrop, George Parsons, 1851-1898 Dreams and Days: Poems etext7353 Hudson, W. H. (William Henry), 1841-1922 Birds in Town and Village etext7443 Anderson, Sherwood, 1876-1941 Windy McPherson's Son etext7474 Hogarth, D. G. (David George), 1862-1927 The Ancient East etext7485 Mitchell, John Ames, 1845-1918 The Last American etext7549 Maupassant, Guy de, 1850-1893 Quotes and Images From The Short Stories of Maupassant etext7644 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Ernest Maltravers — Volume 05 etext7667 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 What Will He Do with It? — Volume 09 etext7687 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Lucretia — Volume 03 etext7697 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 A Strange Story — Volume 06 etext7734 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Paul Clifford — Volume 07 etext7756 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Godolphin, Complete etext7764 Fox, Frances Margaret Little Bear at Work and at Play etext7796 Cawein, Madison Julius, 1865-1914 Poems etext7825 Archimedes, 280? BC-211? BC Geometrical Solutions Derived from Mechanics; a Treatise of Archimedes etext7853 Scott, Walter, Sir, 1771-1832 Quentin Durward etext7861 Raimund, Ferdinand, 1790-1836 Moisasurs Zauberfluch etext7862 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Sword of Antietam etext7869 Dickens, Charles, 1812-1870 A Tale of Two Cities etext7909 etext7917 Smith, John Jay, 1798-1881 American Historical and Literary Antiquities, Part 17. etext7980 Adams, Henry C., 1873-1952 The Sewerage of Sea Coast Towns etext7993 Irving, Washington, 1783-1859 Oliver Goldsmith etext8002 Anonymous The Bible, King James version, Book 2: Exodus etext8179 Hewatt, Alexander An Historical Account of the Rise and Progress of the Colonies of South Carolina and Georgia, Volume 1 etext8186 Hugo, Victor, 1802-1885 Actes et Paroles, Volume 1 etext8225 Ballou, Hosea, 1771-1852 A Series of Letters in Defence of Divine Revelation etext8267 The World English Bible (WEB): Matthew etext8281 Anonymous The World English Bible (WEB): 1 Timothy etext8323 The Bible, Douay-Rheims, Book 23: Ecclesiastes etext8397 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture: the Acts etext8413 Thurston, I. T. (Ida Treadwell), 1848-1918 The Bishop's Shadow etext8470 Martin, Frederick, 1830-1883 The Life of John Clare etext8607 Traill, Catharine Parr Strickland, 1802-1899 In the Forest etext8659 Earle, Alice Morse, 1851-1911 Sabbath in Puritan New England etext8667 Haggard, Henry Rider, 1856-1925 Cetywayo and his White Neighbours etext8711 De Mille, James, 1833-1880 The Living Link etext8744 Turgenev, Ivan Sergeevich, 1818-1883 A Sportsman's Sketches, Volume 2 etext8754 Burroughs, Edgar Rice, 1875-1950 Son of Tarzan etext8777 Fields, Annie, 1834-1915 Authors and Friends etext8824 Wordsworth, William, 1770-1850 Poems in Two Volumes, Volume 2 etext8845 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Philemon etext8942 Merriman, Henry Seton, 1862-1903 The Last Hope etext8961 Grillparzer, Franz, 1791-1872 Der arme Spielmann etext8964 Grillparzer, Franz, 1791-1872 Ein Bruderzwist in Habsburg etext8995 Coolidge, Susan, 1835-1905 What Katy Did Next etext9013 Twain, Mark, 1835-1910 The Facts Concerning the Recent Carnival of Crime in Connecticut etext9014 Twain, Mark, 1835-1910 The Letters of Mark Twain etext9033 Twain, Mark, 1835-1910 Sketches New and Old etext9095 Edgeworth, Maria, 1767-1849 The Life and Letters of Maria Edgeworth, Volume 2 etext9157 Lessing, Gotthold Ephraim, 1729-1781 Miss Sara Sampson etext9195 Merriman, Henry Seton, 1862-1903 The Slave of the Lamp etext9196 Haliburton, Thomas Chandler, 1796-1865 The Clockmaker etext9210 Hawthorne, Nathaniel, 1804-1864 The Village Uncle (From "Twice Told Tales") etext9243 Hawthorne, Nathaniel, 1804-1864 The Wives of the Dead etext9349 Conrad, Joseph, 1857-1924 A Set of Six etext9354 Conrad, Joseph, 1857-1924 Tales of Unrest etext9355 Conrad, Joseph, 1857-1924 The Rescue etext9363 The Best British Short Stories of 1922 etext9365 etext9381 Various The Atlantic Monthly, Volume 04, No. 24, October, 1859 etext9411 Budge, E. A. Wallis (Ernest Alfred Wallis), Sir, 1857-1934 Legends of the Gods etext9494 Meyer, Conrad Ferdinand, 1825-1898 Der Schuß von der Kanzel etext9517 Thackeray, William Makepeace, 1811-1863 The Second Funeral of Napoleon etext9590 Whittier, John Greenleaf, 1807-1892 Tales and Sketches, Complete etext9591 Whittier, John Greenleaf, 1807-1892 Old Portraits, Part 1, from Volume VI., etext9593 Whittier, John Greenleaf, 1807-1892 Historical Papers, Part 3, from Volume VI., etext9598 Whittier, John Greenleaf, 1807-1892 Criticism, Part 4, from Volume VII, etext9613 Henty, G. A. (George Alfred), 1832-1902 The Young Buglers etext9621 Various Georgian Poetry 1918-19 etext9636 Various Punchinello, Volume 1, No. 12, June 18, 1870 etext9649 Leslie, Lawrence J. With Trapper Jim in the North Woods etext9681 Defoe, Daniel, 1661?-1731 Everybody's Business is Nobody's Business etext9843 Kaufmann, Richard Fra det moderne Frankrig etext9895 Voltaire, 1694-1778 Novelas de Voltaire — Tomo Primero etext9939 Woman's Institute of Domestic Arts and Sciences Woman's Institute Library of Cookery etext10022 Bueltmann, A. J. White Queen of the Cannibals: the Story of Mary Slessor etext10031 Poe, Edgar Allan, 1809-1849 Edgar Allan Poe's Complete Poetical Works etext10098 Massey, William Thomas How Jerusalem Was Won etext10105 Various Punchinello, Volume 2, No. 33, November 12, 1870 etext10255 La Paloma etext10314 etext10355 Richardson, James, 1806-1851 Travels in Morocco, Volume 1. etext10450 Various Punch, or the London Charivari, Volume 153, August 22, 1917 etext10451 Boswell, James, 1740-1795 Life of Johnson, Volume 5 etext10465 Hope, Laura Lee The Outdoor Girls of Deepdale etext10487 McGuinn, Roger Alabama Bound etext10493 The Old Bush Songs etext10501 McGuinn, Roger The Whale Catchers etext10551 Mundy, Talbot, 1879-1940 Affair in Araby etext10623 Glaspell, Susan, 1882-1948 Plays etext10627 Lord, John, 1810-1894 Beacon Lights of History, Volume 08 etext10698 Langworthy, John Luther The Aeroplane Boys on the Wing etext10721 Various Punch, or the London Charivari, Volume 153, October 10, 1917 etext10793 Jacobs, W. W. (William Wymark), 1863-1943 Sailor's Knots (Entire Collection) etext10834 Unknown The History of Insects etext10855 Wallace, Alfred Russel, 1823-1913 Is Mars habitable? A critical examination of Professor Percival Lowell's book "Mars and its canals," with an alternative explanation etext10903 Various Punch, or the London Charivari, Volume 153, October 17, 1917 etext10916 Hall, Mosiah Parent and Child Volume III., Child Study and Training etext10932 Palmer, Frederick, 1873-1958 Over the Pass etext10965 Anonymous The World Turned Upside Down etext11002 Beethoven, Ludwig van, 1770-1827 String Quartet No. 11 in F minor Opus 95 "Serioso" etext11003 Wetterau, John Moncure Michelangelo's Shoulder etext11014 Smith, Elva S. Christmas in Legend and Story etext11068 Hazlitt, William, 1778-1830 The Spirit of the Age etext11095 Bonte, Willard Fun and Nonsense etext11114 Various Debate on Woman Suffrage in the Senate of the United States, etext11122 Martin, Benj. N. Choice Specimens of American Literature, and Literary Reader etext11200 Bénézet, Louis Paul, 1878-1961 The World War and What was Behind It etext11220 Project Gutenberg "Best Of" CD August 2003 etext11346 Kingsley, Charles, 1819-1875 The Saint's Tragedy etext11373 Moffett, Cleveland, 1863-1926 Through the Wall etext11381 Kingsley, Charles, 1819-1875 Sermons for the Times etext11443 Various Punch, or the London Charivari, Volume 153, November 28, 1917 etext11482 Jacobs, W. W. (William Wymark), 1863-1943 Deep Waters, the Entire Collection etext11498 Various Scientific American Supplement, No. 601, July 9, 1887 etext11516 Various The Mirror of Literature, Amusement, and Instruction etext11542 Various The Mirror of Literature, Amusement, and Instruction etext11614 Phillips, David Graham, 1867-1911 The Second Generation etext11623 Scott, Walter, Sir, 1771-1832 The Dramatic Works of John Dryden, Volume 1 etext11626 Benson, Robert Hugh, 1871-1914 Dawn of All etext11653 Various Notes and Queries, Number 11, January 12, 1850 etext11674 Blasco Ibáñez, Vicente, 1867-1928 The Torrent etext11713 The world's great sermons, Volume 03 etext11714 Maupassant, Guy de, 1850-1893 Contes de la Becasse etext11717 Robins, Edward, 1862-1943 The Palmy Days of Nance Oldfield etext11759 Bangs, John Kendrick, 1862-1922 The Bicyclers and Three Other Farces etext11783 Human Genome Project Chromosome Number 09 etext11814 Library of Congress. Copyright Office U.S. Copyright Renewals, 1956 July - December etext11821 Library of Congress. Copyright Office U.S. Copyright Renewals, 1960 January - June etext11907 Various Punch, or the London Charivari, Volume 99, July 12, 1890 etext11930 Ade, George, 1866-1944 More Fables etext11958 Various Notes and Queries, Number 21, March 23, 1850 etext11980 Graham, Stephen, 1884-1975 A Tramp's Sketches etext11993 Lady, An English A Residence in France During the Years 1792, 1793, 1794 and 1795, Part II., 1793 etext12047 Jameson, Mrs. (Anna), 1794-1860 Legends of the Madonna as Represented in the Fine Arts etext12052 Swisshelm, Jane Grey Cannon, 1815-1884 Half a Century etext12130 Jacobs, W. W. (William Wymark), 1863-1943 An Adulteration Act etext12229 Benson, Blackwood Ketcham Who Goes There? etext12316 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 True Tilda etext12318 Richardson, James D. (James Daniel), 1843-1914 A Compilation of the Messages and Papers of the Presidents etext12362 Aguilar, Grace, 1816-1847 The Mother's Recompense, Volume 2 etext12378 Various Punch, or the London Charivari, Volume 99, August 30, 1890 etext12385 Elliot, Frances, 1820-1898 The Italians etext12431 Foster, Hannah Webster, 1758-1840 The Coquette etext12445 Cooper, James Fenimore, 1789-1851 The Water-Witch or, the Skimmer of the Seas etext12446 Zùccoli, Luciano, 1868-1929 Il Designato etext12500 Buena Nueva de acuerdo a Mateo: Traducción de dominio público abierta a mejoras etext12546 Dante Alighieri, 1265-1321 Jumalainen näytelmä etext12556 Hyne, Charles John Cutcliffe Wright, 1866-1944 A Master of Fortune etext12657 Phillips, Claude, 1846-1924 The Later Works of Titian etext12672 Reed, Myrtle, 1874-1911 A Spinner in the Sun etext12682 Hayes, Clair W. (Clair Wallace), 1887- The Boy Allies in Great Peril etext12688 Runeberg, Johan Ludvig, 1804-1877 Vänrikki Stoolin tarinat (suom. Cajander) etext12701 Vaknin, Samuel, 1961- The Suffering of Being Kafka etext12702 Potter, Beatrix, 1866-1943 The Tale of Peter Rabbit etext12707 etext12727 Daudet, Alphonse, 1840-1897 Le nabab, tome II etext12740 Buffalo Bill, 1846-1917 An Autobiography of Buffalo Bill (Colonel W. F. Cody) etext12799 Gordon, S. D. (Samuel Dickey), 1859-1936 Quiet Talks with World Winners etext12803 Peacock, Thomas Love, 1785-1866 Headlong Hall etext12835 Holmes, Mary Jane, 1825-1907 'Lena Rivers etext12877 Hay, Ian, 1876-1952 The First Hundred Thousand etext12888 Various The German Classics of the Nineteenth and Twentieth Centuries, Volume 05 etext12910 Conybeare, Edward Early Britain—Roman Britain etext12995 Bennett, Arnold, 1867-1931 The Matador of the Five Towns and Other Stories etext13000 Roosevelt, Theodore, 1858-1919 The Rough Riders etext13027 Malot, Hector, 1830-1907 Cara etext13036 Doin, Ernest, 1809-1891 Le Conscrit ou Le Retour de Crimée etext13070 Doin, Ernest, 1809-1891 Le dîner interrompu etext13130 Kerr, Robert, 1755-1813 A General History and Collection of Voyages and Travels — Volume 10 etext13277 Morris, Clara Stage Confidences etext13377 Bernard, Richard Boyle A tour through some parts of France, Switzerland, Savoy, Germany and Belgium etext13382 Various The Mirror Of Literature, Amusement, And Instruction etext13384 Hough, Emerson, 1857-1923 The Covered Wagon etext13392 Fee, Mary Helen A Woman's Impression of the Philippines etext13408 Spence, Edward Fordham, 1860-1932 Our Stage and Its Critics etext13412 Chekhov, Anton Pavlovich, 1860-1904 The Schoolmaster etext13465 Various Punch, or the London Charivari, Volume 101, July 25, 1891 etext13548 Various Cambridge Essays on Education etext13552 Tennent, James Emerson, Sir, 1804-1869 Ceylon; an Account of the Island Physical, Historical, and etext13615 Ellis, Havelock, 1859-1939 Studies in the Psychology of Sex, Volume 6 etext13713 Various Notes and Queries, Number 30, May 25, 1850 etext13736 Various Notes and Queries, Number 39, July 27, 1850 etext13743 Proust, Marcel, 1871-1922 Le Côté de Guermantes - Troisième partie etext13763 Dell, Ethel M. (Ethel May), 1881-1939 The Lamp in the Desert etext13894 Bennett, Arnold, 1867-1931 The Great Adventure etext13913 Nicholson, Meredith, 1866-1947 The Port of Missing Men etext13920 Aho, Juhani, 1861-1921 Kevät ja takatalvi etext13932 Crawford, F. Marion (Francis Marion), 1854-1909 Whosoever Shall Offend etext13938 Anonymous Discours prodigieux et espouventable de trois Espaignols et une Espagnolle, etext14007 Various The Mirror of Literature, Amusement, and Instruction etext14024 Various The Mirror of Literature, Amusement, and Instruction etext14025 etext14033 Plutarch, 46-120? Plutarch's Lives, Volume I etext14051 Eggleston, Edward, 1837-1902 The End of the World etext14081 Caldecott, Randolph, 1846-1886 The Three Jovial Huntsmen etext14125 Columbus, Christopher, 1451-1506 Amerikan löytöretken päiväkirja etext14148 Various Dew Drops, Vol. 37, No. 08, February 22, 1914 etext14212 Hahnsson, Theodolinda (Sofia Theodolinda), 1838-1919 Viinantehtailia etext14238 Johnson, Alfred Edwin, 1879- Frank Reynolds, R.I. etext14264 Speed, Harold The Practice and Science of Drawing etext14267 Järnefelt, Arvid, 1861-1932 Heräämiseni etext14274 Lincoln, Abraham, 1809-1865 Lincoln's Inaugurals, Addresses and Letters (Selections) etext14419 Smith, Buckingham, 1810-1871 Grammatical Sketch of the Heve Language etext14445 Lowry, Edith B. (Edith Belle), 1878- Confidences etext14518 Handbook of Home Rule etext14543 Unknown False Friends, and The Sailor's Resolve etext14619 Lighthall, W. D. (William Douw), 1857-1954 An Account of the Battle of Chateauguay etext14647 Ellis, Edward Sylvester, 1840-1916 The Cave in the Mountain etext14127 Hoxie, Jane L. A Kindergarten Story Book etext14655 Shaw, Edward R. (Edward Richard), 1855-1903 Big People and Little People of Other Lands etext14690 Various Punch, or the London Charivari, Volume 102, May 28, 1892 etext14693 Wilde, Oscar, 1854-1900 Le crime de Lord Arthur Savile etext14699 etext14781 Cynewulf Elene. English etext14810 Verne, Jules, 1828-1905 La maison à vapeur etext14813 Hewlett, Maurice Henry, 1861-1923 The Life and Death of Richard Yea-and-Nay etext14929 Various Punch, or the London Charivari, Volume 1, September 25, 1841 etext14959 Prudentius, 348- Cathemerinon. English etext14975 Wells-Barnett, Ida B., 1862-1931 Southern Horrors etext15002 Optic, Oliver, 1822-1897 All Aboard; or, Life on the Lake etext15022 The Philippine Islands, 1493-1898 — Volume 12 of 55 etext15036 Grandy, Moses Narrative of the Life of Moses Grandy, Late a Slave in the United States of America etext15081 Euripides, 480? BC-406 BC The Tragedies of Euripides, Volume I. etext15118 Lane, Lunsford, 1803- The Narrative of Lunsford Lane, Formerly of Raleigh, N.C. etext15120 etext15127 Toledano, C. A. Pitman's Commercial Spanish Grammar (2nd ed.) etext15223 Crawford, F. Marion (Francis Marion), 1854-1909 Doctor Claudius, A True Story etext15229 Howell, Ithamar A Review of the Resources and Industries of the State of Washington, 1909 etext15249 Inge, William Ralph, 1860-1954 Outspoken Essays etext15278 Day, Holman, 1865-1935 The Ramrodders etext15283 Councilman, William Thomas Disease and Its Causes etext15325 Various The Great Round World and What Is Going On In It, Vol. 1, No. 15, February 18, 1897 etext15330 Various Punch, or the London Charivari, Volume 152, May 9, 1917 etext15385 Allen, James Lane, 1849-1925 A Cathedral Singer etext15386 Various The Great Round World and What Is Going On In It, Vol. 1, No. 18, March 11, 1897 etext15484 Holt, L. Emmett, 1855-1924 The Care and Feeding of Children etext15519 Bunce, Oliver Bell, 1828-1890 Representative Plays by American Dramatists: 1856-1911: Love in '76 etext15531 Balagtas, Francisco, 1788-1862 Florante etext15546 Hale, Lucretia P. (Lucretia Peabody), 1820-1900 The Last of the Peterkins etext15552 Dawson, Coningsby, 1883-1959 Christmas Outside of Eden etext15585 Various Humorous Masterpieces from American Literature etext15598 Mercure, Monseigneur le duc de Advis de la deffaicte des Anglois et autres heretiques etext15602 Wentworth, William Charles, 1790-1872 Statistical, Historical and Political Description of the Colony of New South Wales and its Dependent Settlements in Van Diemen's Land etext15615 Various Punch, or the London Charivari, Volume 158, March 17, 1920 etext15625 Bower, B. M., 1874-1940 The Lookout Man etext15661 Brooke, L. Leslie (Leonard Leslie), 1862-1940 The Golden Goose Book etext15695 Freeman, Mary Eleanor Wilkins, 1852-1930 'Doc.' Gordon etext15742 Various Punch, or the London Charivari, Volume 103, November 12, 1892 etext15767 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Texan Scouts etext15828 Various The Great Round World and What Is Going On In It, Vol. 1, No. 37, July 22, 1897 etext15843 Oemler, Marie Conway, 1879-1932 Slippy McGee, Sometimes Known as the Butterfly Man etext15853 Lie, Jonas Lauritz Idemil, 1833-1908 One of Life's Slaves etext15854 Beers, Henry A. (Henry Augustin), 1847-1926 Initial Studies in American Letters etext15928 Various The Nursery, Number 164 etext16003 Carleton, William, 1794-1869 The Black Baronet; or, The Chronicles Of Ballytrain etext16112 Aconite, Tobias Edward Barnett; a Neglected Child of South Carolina, Who Rose to Be a Peer of Great Britain,—and the Stormy Life of His Grandfather, Captain Williams etext16191 Various The Great Round World and What Is Going On In It, Vol. 1, No. 56, December 2, 1897 etext16219 As Farpas: Chronica Mensal da Politica, das Letras e dos Costumes (1877-05/06) etext16258 Barr, Amelia Edith Huddleston, 1831-1919 The Squire of Sandal-Side etext16311 Rivera, Jose Maria, 1882- Cinematografo etext16317 etext16320 Bookwalter, John W. If Not Silver, What? etext16346 Theobald, Lewis, 1688-1744 Preface to the Works of Shakespeare (1734) etext16380 Dell, Ethel M. (Ethel May), 1881-1939 The Odds etext16419 Brooks, Henry M. (Henry Mason), 1822-1898 The Olden Time Series, Vol. 5: Some Strange and Curious Punishments etext16423 Ward, Samuel, 1577-1640 A Coal From The Altar, To Kindle The Holy Fire of Zeale etext16520 Slattery, Margaret The Girl and Her Religion etext16611 Walter, Richard Anson's Voyage Round the World etext16612 Macaulay, Rose, Dame, 1881-1958 The Lee Shore etext16667 Yonge, Charlotte Mary, 1823-1901 Young Folks' History of Rome etext16696 Jónína Sigríður Jónsdóttir, 1884-1963 Leiðarvísir í ástamálum etext16731 Baker, Karle Wilson, 1878-1960 The Garden of the Plynck etext16756 Hope, Laura Lee The Bobbsey Twins at the County Fair etext16776 Wilcox, Ella Wheeler, 1855-1919 Poems of Passion etext16780 United States The Declaration of Independence of The United States of America etext16795 Chavette, Eugène, 1827-1902 La conquête d'une cuisinière I etext16818 Ponson du Terrail, 1829-1871 Les misères de Londres etext16853 Stretton, Hesba, 1832-1911 Fern's Hollow etext16888 Roberty, E. de (Eugène), 1843-1915 Auguste Comte et Herbert Spencer etext16906 Grigsby, Hugh Blair, 1806-1881 Discourse of the Life and Character of the Hon. Littleton Waller Tazewell etext16907 Chapin, Anna Alice, 1880-1920 Greenwich Village etext16988 Gourmont, Remy de, 1858-1915 Le IIe livre des masques etext17000 Hume, Alexander Of the Orthographie and Congruitie of the Britan Tongue etext17015 Bergman, Hjalmar, 1883-1931 Mor i Sutre etext17016 Hamilton, Frederick W. (Frederick William), 1860-1940 Division of Words etext17027 Doctorow, Cory, 1971- Return to Pleasure Island etext17056 Durham, Victor G. The Submarine Boys and the Middies etext17060 Death and Burial of Poor Cock Robin etext17067 Le Notre, G., [pseud.], 1855-1935 The House of the Combrays etext17124 Butler, Samuel, 1774-1839 The Atlas of Ancient and Classical Geography etext17172 Brown, John Crombie, -1879? The Ethics of George Eliot's Works etext17237 Bacheller, Irving, 1859-1950 A Man for the Ages etext17239 Fiske, John, 1842-1901 The Destiny of Man etext17261 etext17268 Ontario. Ministry of Education Ontario Teachers' Manuals: History etext17275 Matthews, Washington, 1843-1905 Navajo Silversmiths etext17280 Marett, R. R. (Robert Ranulph), 1866-1943 Anthropology etext17286 Powell, John Wesley, 1834-1902 Indian Linguistic Families Of America, North Of Mexico etext17297 Murphy, Thomas Dowler, 1866-1928 British Highways And Byways From A Motor Car etext17309 Bahá'u'lláh, 1817-1892 The Summons of the Lord of Hosts etext17357 Lynde, Francis, 1856-1930 The Quickening etext17368 Swedenborg, Emanuel, 1688-1772 Heaven and its Wonders and Hell etext17370 Holmes, William Henry, 1846-1933 Prehistoric Textile Fabrics Of The United States, Derived From Impressions On Pottery etext17400 Adam, of Cobsam The Wright's Chaste Wife etext17408 Berenson, Bernard, 1865-1959 The Florentine Painters of the Renaissance etext17415 Howell, Andrew Jackson, 1869-1947 Money Island etext17433 Ferguson, John L. (John Lewis), 1926- Arkansas Governors and United States Senators etext17486 Topelius, Zacharias, 1818-1898 Lukemisia lapsille 8 etext17537 Teirlinck, Herman, 1879-1967 't Bedrijf van den kwade etext17548 Benson, William, 1682-1754 Letters Concerning Poetical Translations etext17571 Fischer, J. Cree (Jerry Cree), 1871- Piano Tuning etext17589 Sand, George, 1804-1876 Journal d'un voyageur pendant la guerre etext17605 Gourmont, Remy de, 1858-1915 Le Pèlerin du silence etext17638 Agrell, Alfhild, 1849-1923 Hattu etext17647 Parrish, Randall, 1858-1923 The Strange Case of Cavendish etext17648 Muirhead, James F. (James Fullarton), 1853-1934 The Land of Contrasts etext17657 Goethe, Johann Wolfgang von, 1749-1832 Belagerung von Mainz etext17718 Evans, Augusta J. (Augusta Jane), 1835-1909 Infelice etext17727 R. H. (Robert Howlett) The School of Recreation (1696 edition) etext17750 Various Laugh and Play etext17756 Durham, Victor G. The Submarine Boys and the Middies etext17761 Hope, Laura Lee Six Little Bunkers at Grandpa Ford's etext17791 Bernier, Hector, 1886-1947 Au large de l'Écueil etext17810 Mignet, M. (François-Auguste-Marie-Alexis), 1796-1884 Vie de Franklin etext17823 Bruce, Wallace, 1844-1914 The Hudson etext17875 Allen, William G. The American Prejudice Against Color etext17940 Desfontaines, Nicolas-Marc, -1652 Eurimedon etext17971 Various The Abolition Of Slavery The Right Of The Government Under The War Power etext17976 Carnegie, Andrew, 1835-1919 Autobiography of Andrew Carnegie etext17990 Dumas père, Alexandre, 1802-1870 Le comte de Monte-Cristo, Tome II etext18024 Hayard, Napoléon, 1851-1903 Dictionnaire Argot-Français etext18028 Dumas père, Alexandre, 1802-1870 Le chevalier d'Harmental etext18029 Chevalier, H. Émile (Henri Émile), 1828-1879 Les derniers Iroquois etext18032 Laut, Agnes C. (Agnes Christina), 1871-1936 The Canadian Commonwealth etext18034 Lermina, Jules, 1839-1915 Les loups de Paris etext18076 Castlemon, Harry, 1842-1915 The Boy Trapper etext18102 The Philippine Islands, 1493-1898 — Volume 24 of 55 etext18133 Reuss, Rodolphe, 1841-1924 La cathédrale de Strasbourg pendant la Révolution. (1789-1802) etext18176 Hartley, John, 1839-1915 Yorkshire Tales. Third Series etext18179 Shakespeare, William, 1564-1616 Othello etext18193 Long, William Joseph, 1866-1952 Ways of Wood Folk etext18231 Engel, Georg, 1866-1931 Die Last etext18292 Grant, Reginald S.O.S. Stand to! etext18306 Hipolito, Pilar J. Lazaro Rizal sa Harap ng Bayan etext18341 Unknown Come Lasses and Lads etext18359 Muir, John, 1838-1914 The Story of My Boyhood and Youth etext18384 Harrison, Frederic, 1831-1923 Studies in Early Victorian Literature etext18459 Colonna, Francesco, -1527 Hypnerotomachia etext18465 Various The Wit and Humor of America, Volume II. (of X.) etext18471 Gelpke, August Heinrich Christian, 1769-1842 Ueber die schrecklichen Wirkungen des Aufsturzes eines Kometen auf die Erde etext18495 Heming, Arthur Henry Howard, 1870-1940 The Drama of the Forests etext18498 Housman, Laurence, 1865-1959 King John of Jingalo etext18503 Spicer, William Ambrose, 1865-1952 Our Day etext18630 Bailey, Arthur Scott, 1877-1949 The Tale of Frisky Squirrel etext18635 The Treaty Held with the Indians of the Six Nations at Philadelphia, in July 1742 etext18647 Kelly, R. Talbot (Robert Talbot), 1861-1934 Peeps at Many Lands: Egypt etext18658 Gunnison, Charles A., 1861-1897 In Macao etext18682 Anonymous A Declaration of the Causes, which mooved the chiefe Commanders of the Nauie of her most excellent Maiestie the Queene of England, in their voyage and expedition for Portingal, to take and arrest in the mouth of the Riuer of Lisbone, certaine Shippes of corne and other prouisions of warre bound for the said Citie etext18752 Fouquée, Friedrich de la Motte Undine etext18755 Thomas, Aquinas, Saint, 1225?-1274 Summa Theologica, Part II-II (Secunda Secundae) etext18770 Francis, Samuel W., 1835-1886 A Christmas Story etext18808 Krohn, Julius, 1835-1888 Yrjö Aukusti Wallin ja hänen matkansa Arabiassa etext18814 Piper, H. Beam, 1904-1964 The Mercenaries etext18828 Báb, 1819-1850 Selections From the Writings of the Báb etext18903 Burroughs, John, 1837-1921 The Last Harvest etext18944 Chevalier, H. Émile (Henri Émile), 1828-1879 La Tête-Plate etext18983 Boylesve, René, 1867-1926 Sainte-Marie-des-Fleurs etext19008 Fouché, Joseph, 1759-1820 Mémoires de Joseph Fouché, Duc d'Otrante, Ministre de la Police Générale etext19015 Bancroft, Edith Jane Allen: Right Guard etext19055 Raine, William MacLeod, 1871-1954 Steve Yeager etext19080 Hubbard, Elbert, 1856-1915 Little Journeys to the Homes of the Great - Volume 12 etext19109 Howard, Hattie Poems etext19113 Bonner, Geraldine, 1870-1930 The Emigrant Trail etext19164 Ruskin, John, 1819-1900 Lectures on Art etext19170 etext19177 Caldecott, Randolph, 1846-1886 Hey Diddle Diddle and Baby Bunting etext19319 Munn, William Augustus A Description of the Bar-and-Frame-Hive etext19330 King, Charles, 1844-1933 An Apache Princess etext19394 etext19433 Balázs, Béla, 1884-1949 Történet etext19452 etext19477 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Young Trailers etext19524 Gozzi, Carlo, 1720-1806 La Marfisa bizzarra etext19525 The Modern Scottish Minstrel, Volume IV. etext19532 Feijó, António Joaquim de Castro, 1859-1917 Sol de Inverno etext19564 Gosse, Philip, 1879-1959 The Pirates' Who's Who etext19604 Anonymous Louis Riel, Martyr du Nord-Ouest etext19691 Hudson, W. H. (William Henry), 1841-1922 Dead Man's Plack and an Old Thorn etext19702 Holmes, Mary Jane, 1825-1907 The Rector of St. Mark's etext19712 Anet, Claude, 1868-1931 Per auto door den Kaukasus naar Perzië etext19825 Lowry, Edith B. (Edith Belle), 1878- Herself etext19841 Twain, Mark, 1835-1910 Eve's Diary etext19888 De Marchi, Emilio, 1851-1901 Nuove storie d'ogni colore etext19980 Ruskin, John, 1819-1900 A Joy For Ever etext19981 Duncan, Norman, 1871-1916 Doctor Luke of the Labrador etext20014 Bonnycastle, Richard Henry, 1791-1847 Canada and the Canadians etext20022 Shute, Henry A. (Henry Augustus), 1856-1943 'Sequil' etext20051 etext20053 Stratemeyer, Edward, 1862-1930 The Rover Boys in the Air etext20066 Taft, William H., 1857-1930 Ethics in Service etext20068 Baldwin, May Sarah's School Friend etext20101 King, Charles, 1844-1933 Under Fire etext20172 etext20188 Shakespeare, William, 1564-1616 Coriolanus etext23921 Barometer and Weather Guide etext20250 Morrison, F. L. The Fifth Battalion Highland Light Infantry in the War 1914-1918 etext20301 A Museum for Young Gentlemen and Ladies etext20321 Casas, Bartolomé de las, 1474-1566 A Brief Account of the Destruction of the Indies etext20361 Lee, Gerald Stanley, 1862-1944 The Voice of the Machines etext20399 Maclaren, Ian, 1850-1907 Kate Carnegie and Those Ministers etext20400 James, Lionel, 1871-1955 On the Heels of De Wet etext20441 Lescarbot, Marc Adieu à la France etext20449 Phillips, David Graham, 1867-1911 The Plum Tree etext20460 Beatty, John The Citizen-Soldier etext20491 Scully, W. C. (William Charles), 1855-1943 Kafir Stories etext20505 New York Evening Journal What's in the New York Evening Journal etext20518 Canth, Minna, 1844-1897 Lifsbilder från finska hem 1 etext20573 Jahnsson, Evald Ferdinand, 1844-1895 Lalli etext20603 Various Christmas Carol Collection 2006 etext20615 Meredith, Ellis The Master-Knot of Human Fate etext20628 Ford, Sewell, 1868-1946 Torchy and Vee etext20689 Alger, Horatio, 1832-1899 Ragged Dick etext20716 Bailey, Arthur Scott, 1877-1949 The Tale of Timothy Turtle etext20721 Douglas, Amanda Minnie, 1831-1916 A Little Girl in Old Detroit etext20765 Winslow, Anna Green, 1759-1779 Diary of Anna Green Winslow etext20781 Spyri, Johanna, 1827-1901 Heidi etext20783 Pinto, Alexandre Alberto da Rocha de Serpa, 1846-1900 Como eu atravessei Àfrica do Atlantico ao mar Indico, volume segundo etext20793 Various Chambers's Edinburgh Journal, No. 443 etext20807 Barrie, J. M. (James Matthew), 1860-1937 Better Dead etext20838 Wright, Sewell Peaslee, 1897-1970 The Infra-Medians etext20841 Brandão, Raul Germano, 1867-1930 Os Pobres etext20843 Green, Thomas Hill An Estimate of the Value and Influence of Works of Fiction in Modern Times etext20869 etext20888 Fergusson, Harvey The Blood of the Conquerors etext20901 Burnham, Clara Louise, 1854-1927 In Apple-Blossom Time etext20941 Bente, F. (Friedrich), 1858-1930 American Lutheranism etext20953 Crothers, Samuel McChord By the Christmas Fire etext20968 Various Three Hundred Tang Poems, Volume 1 etext23634 Crane, Thomas Frederick, 1844-1927 Italian Popular Tales etext23690 Various Blackwood's Edinburgh Magazine, Volume 61, No. 378, April, 1847 etext21040 etext21060 Collingwood, Harry, 1851-1922 The Congo Rovers etext21065 Collingwood, Harry, 1851-1922 The Log of a Privateersman etext21066 Collingwood, Harry, 1851-1922 Harry Escombe etext21159 Baum, L. Frank (Lyman Frank), 1856-1919 Sky Island etext21249 Bennett, Arnold, 1867-1931 Clayhanger etext21273 Various The Atlantic Monthly, Volume 2, No. 14, December 1858 etext21281 Baker, Henry E. The Colored Inventor etext21334 Farquhar, George, 1678?-1707 The Beaux-Stratagem etext21349 Hehn, Victor, 1813-1890 Ueber Goethes Hermann und Dorothea etext21364 Fenn, George Manville, 1831-1909 The Rajah of Dah etext21374 Fenn, George Manville, 1831-1909 !Tention etext21375 Fenn, George Manville, 1831-1909 The Weathercock etext21386 Kingston, William Henry Giles, 1814-1880 James Braithwaite, the Supercargo etext21416 Alger, Horatio, 1832-1899 Randy of the River etext21444 Gummerus, K. J., 1840-1898 Peritäänkö vihakin? etext21479 Kingston, William Henry Giles, 1814-1880 The South Sea Whaler etext21485 Kingston, William Henry Giles, 1814-1880 The Young Rajah etext21571 Marryat, Frederick, 1792-1848 The Pacha of Many Tales etext21613 Fuller, Henry Blake, 1857-1929 On the Stairs etext21683 Porta, Giambattista della, 1535?-1615 Gli duoi fratelli rivali etext21703 Ballantyne, R. M. (Robert Michael), 1825-1894 Silver Lake etext21732 Ballantyne, R. M. (Robert Michael), 1825-1894 Fort Desolation etext21773 James, Henry, 1843-1916 Four Meetings etext21783 Ashmore, Otis A Manual of Pronunciation etext21821 Lang, Andrew, 1844-1912 The Mark Of Cain etext21893 Crockett, S. R. (Samuel Rutherford), 1860-1914 Patsy etext21938 Knox, John, 1514?-1572 The Works of John Knox, Vol. 1 (of 6) etext22008 Knowles, Robert E. St. Cuthbert's etext22043 The Book of the Cat etext22095 Vandercook, Margaret, 1876- The Red Cross Girls with the Russian Army etext22129 English, Douglas "Wee Tim'rous Beasties" etext22146 Hurston, Zora Neale, 1901?-1960 De Turkey and De Law etext22217 Tagore, Rabindranath, 1861-1941 My Reminiscences etext22254 West, John, 1778-1845 The Substance of a Journal During a Residence at the Red River Colony, British North America etext22373 Russian Fairy Tales etext22395 Junqueiro, Abílio Manuel Guerra, 1850-1923 O Melro etext22499 Praga, Marco La crisi etext22516 Various Ehstnische Märchen. Zweite Hälfte etext22521 Alger, Horatio, 1832-1899 The Young Acrobat of the Great North American Circus etext22569 De la Mare, Walter, 1873-1956 The Listeners and Other Poems etext22592 Goethe, Johann Wolfgang von, 1749-1832 Ifigenio en Taŭrido etext22641 Rapisardi, Mario, 1844-1912 Lucifero etext22697 Various Punch, or the London Charivari, Vol. 150, February 23, 1916 etext22712 Bellamy, Edward, 1850-1898 Lost etext22750 Niemann, Karen Rags etext22760 Shakespeare, William, 1564-1616 Henri IV (1re partie) etext22882 Nourse, Alan Edward, 1928-1992 Image of the Gods etext22921 Anonymous The Death and Burial of Cock Robin etext22923 Various Pieni helmivyö etext22936 John the Apostle, Saint The Third Epistle of John etext22962 Austen, Jane, 1775-1817 Mansfield Park etext23008 Harris, Frank, 1856-1931 The Sheriff And His Partner etext23080 Bierce, Ambrose, 1842-1914? The Devil's Dictionary etext23119 Holt, Emily Sarah, 1836-1893 A Forgotten Hero etext23128 Fenn, George Manville, 1831-1909 The King's Esquires etext23171 Lefevre, Edwin, 1871-1943 The Tipster etext23197 Reynolds, Mack, 1917-1983 Subversive etext23205 Various Notes and Queries, Number 71, March 8, 1851 etext23232 Young, Robert F., 1915-1986 The Servant Problem etext23256 Catherwood, Mary Hartwell, 1847-1902 The King Of Beaver, and Beaver Lights etext23267 Ballantyne, R. M. (Robert Michael), 1825-1894 The Cannibal Islands etext23288 Cecil, Sabina Little Mary etext23347 Bennett, Arnold, 1867-1931 Mental Efficiency etext23386 Fenn, George Manville, 1831-1909 In the King's Name etext23536 Friendly, Aunt Hatty and Marcus etext23540 May, Sophie, 1833-1906 The Twin Cousins etext23543 Bergman, Johan Albert, 1844-1924 Kalervo etext23603 Klein, Charles, 1867-1915 The Music Master etext23620 etext23673 The St. Gregory Hymnal and Catholic Choir Book etext23700 Boccaccio, Giovanni, 1313-1375 The Decameron of Giovanni Boccaccio etext23737 Grabo, Carl Henry, 1881- The Cat in Grandfather's House etext23752 Snyder, Charles M. The Flaw in the Sapphire etext23796 Multatuli, 1820-1887 De Geschiedenis van Woutertje Pieterse, Deel 1 etext23852 Canada. Post Office Dept. Canadian Postal Guide etext23892 Leinster, Murray, 1896-1975 Long Ago, Far Away etext23894 Wheeler, Janet D. Billie Bradley at Three Towers Hall etext23959 Devereux, W. Cope Fair Italy, the Riviera and Monte Carlo etext24089 James, M. R. (Montague Rhodes), 1862-1936 The Five Jars etext24134 Boreham, Frank, 1871-1959 Mushrooms on the Moor etext24162 Ling, Mengchu, 1580-1644 二刻拍案惊奇 etext24175 Frohnmeyer, Ida Und die ihr alle meine Brüder seid etext24189 Mason, David Something Will Turn Up etext24374 Weekley, Ernest, 1865-1954 The Romance of Names etext24389 Chambers, Robert W. (Robert William), 1865-1933 Blue-Bird Weather etext24412 Lima, Jaime de Magalhães, 1859-1936 O credito agricola em Portugal etext24446 Becke, Louis, 1855-1913 John Corwell, Sailor And Miner; and, Poisonous Fish etext24464 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Noites de insomnia, offerecidas a quem não póde dormir. Nº2 (de 12) etext24468 Roelfsema, H. R. Een jaar in de Molukken etext24486 Aakjær, Jeppe, 1866-1930 Samlede Værker etext24569 Bayliss, Clara Kern, 1848- A Treasury of Eskimo Tales etext24575 Lorenc, František Vladimír, 1872-1957 Úplná učebnice mezinárodní řeči dra. Esperanta etext24677 Busoni, Ferruccio, 1866-1924 Entwurf einer neuen Ästhetik der Tonkunst etext24682 Webster, Marie D. (Marie Daugherty), 1859-1956 Quilts etext24688 Woolman, Mary Schenck, 1860- The Making of a Trade School etext24692 Unknown A Bit of Sunshine etext24719 Walker, Charles Edward, -1953 Amateur Fish Culture etext24722 Letters from Port Royal etext24723 Cole, Everett B., 1918-1977 Final Weapon etext24739 Bidwell, Austin Bidwell's Travels, from Wall Street to London Prison etext24866 Optic, Oliver, 1822-1897 A Lieutenant at Eighteen etext24970 Underwood, Agnes S. The Story of a Robin etext25016 Machen, Arthur, 1863-1947 The House of Souls etext25017 Tracy, Louis, 1863-1928 A Son of the Immortals etext28338 Erasmus, Desiderius, 1469-1536 The Education of Children etext25053 Flaubert, Gustave, 1821-1880 Tentation de saint Antoine. English etext25056 Becke, Louis, 1855-1913 The Brothers-In-Law: A Tale Of The Equatorial Islands; and The Brass Gun Of The Buccaneers etext25087 Johnston, J. P. (James Perry), 1852- Twenty Years of Hus'ling etext25159 Footner, Hulbert, 1879-1944 Two on the Trail etext25192 Shen, Fu, 1763-ca. 1808 浮生六記 etext25262 Gu, Yanwu, 1613-1682 日知錄 etext25336 Leroy, Nicolau T. A Traviata etext25361 Various Punch, or the London Charivari, Volume 93, August 13, 1887 etext25440 etext25455 Mackay, Eric, 1851-1898 The Song of the Flag etext25468 Klinger, Friedrich Maximilian, 1752-1831 Faust's Leben, Thaten und Höllenfahrt. English etext25470 Bartlett, Vernon, 1894-1983 Mud and Khaki etext25492 Peck, George W. (George Wilbur), 1840-1916 How Private George W. Peck Put Down The Rebellion etext25504 Burleigh, Bennet, -1914 Khartoum Campaign, 1898 etext25510 Meade, L. T., 1854-1914 Betty Vivian etext25531 Fitch, Clyde, 1865-1909 Representative Plays by American Dramatists: 1856-1911: The Moth and the Flame etext25554 Buysse, Cyriël, 1859-1932 Van hoog en laag etext25581 Baum, L. Frank (Lyman Frank), 1856-1919 Rinkitink in Oz etext25632 Waters, Clara Erskine Clement, 1834-1916 A History of Art for Beginners and Students etext25688 Fisher, Frederick Vining, 1866- The Transformation of Job etext25691 Holt, Emily Sarah, 1836-1893 Joyce Morrell's Harvest etext25699 Smith, Z. F. (Zachariah Frederick), 1827-1911 The Battle of New Orleans etext25744 Wilson, Ann Teams etext25754 Seltzer, Charles Alden, 1875-1942 The Range Boss etext25806 Auerbach, Berthold, 1812-1882 Juoseppi lumessa etext25819 Buchanan's Journal of Man, March 1887 etext25826 Smyth, J. Paterson (John Paterson), 1852-1932 The Gospel of the Hereafter etext25879 MacLean, J. P. (John Patterson), 1848-1939 An Historical Account of the Settlements of Scotch Highlanders in America etext25925 Herculano, Alexandre, 1810-1877 Poesias etext25965 Arnold, Edwin, Sir, 1832-1904 Indian Poetry etext30096 Hornung, E. W. (Ernest William), 1866-1921 The Camera Fiend etext25994 Hayden, Horace Edwin, 1837-1917 A Refutation of the Charges Made against the Confederate States of America of Having Authorized the Use of Explosive and Poisoned Musket and Rifle Balls during the Late Civil War of 1861-65 etext26028 Nougués Secall, Mariano, 1808-1872 Descripcion é historia del castillo de la aljafería etext26165 Wiley, Hugh, 1884- Lady Luck etext26192 Jenner, Henry, 1848-1934 A Handbook of the Cornish Language etext26194 Robertson, Morgan, 1861-1915 The Grain Ship etext26310 Molesworth, Mrs., 1839-1921 My New Home etext26312 Lee, Gerald Stanley, 1862-1944 The Lost Art of Reading etext26314 Alarcón, Pedro Antonio de, 1833-1891 Viajes por España etext26321 Lodge, Oliver, Sir, 1851-1940 Life and Matter etext26333 Wilcox, Ella Wheeler, 1855-1919 Maurine and Other Poems etext26381 Hancock, H. Irving (Harrie Irving), 1868-1922 Uncle Sam's Boys as Lieutenants etext26393 Pardo de Tavera, T. H. (Trinidad Hermenegildo), 1857-1925 The Medicinal Plants of the Philippines etext26417 Mann, Mary E., -1929 A Sheaf of Corn etext26432 Quartier, Antoine L'esclave religieux et ses avantures etext26448 Wister, Owen, 1860-1938 The Dragon of Wantley etext26465 Stratton-Porter, Gene, 1863-1924 The Harvester etext26467 Pyle, Howard, 1853-1911 The Merry Adventures of Robin Hood etext26475 The Boy Scouts Book of Campfire Stories etext26501 Kamehameha IV, King of the Hawaiian Islands, 1834-1863 Speeches of His Majesty Kamehameha IV. To the Hawaiian Legislature etext26531 Marmontel, Jean François, 1723-1799 Mémoires de Marmontel (Volume 1 of 3) etext26537 Meigs, Cornelia, 1884-1973 The Windy Hill etext26541 Trollope, Anthony, 1815-1882 The Vicar of Bullhampton etext26546 Canth, Minna, 1844-1897 Noveller etext26554 Robbers, Herman Johan, 1868-1937 De vreemde plant etext26591 Howes, Edith Wonderwings and other Fairy Stories etext26666 Tolstoy, Leo, graf, 1828-1910 The Light Shines in Darkness etext26685 Louÿs, Pierre, 1870-1925 Aphrodite etext26696 Cats, Jacob, 1577-1660 Spaens Heydinnetie etext26702 Lowndes, Marie Belloc, 1868-1947 Studies in love and in terror etext26717 Petruccelli della Gattina, Ferdinando, 1816-1890 I suicidi di Parigi etext26740 Wilde, Oscar, 1854-1900 The Picture of Dorian Gray etext26814 Duras, Claire de Durfort, duchesse de, 1777-1828 Edouard etext26837 Dawson, Bertrand Edward Dawson, Viscount, 1864-1945 Love—Marriage—Birth Control etext26846 Telting, Albertus, 1803-1863 Iets over de grammaticale beoefening der Friesche taal in haar geheelen omvang etext26860 Vasari, Giorgio, 1511-1574 Lives of the Most Eminent Painters Sculptors and Architects etext26906 Jones, Neil Ronald, 1909-1988 The Jameson Satellite etext26949 Hanslick, Eduard, 1825-1904 Vom Musikalisch-Schönen etext26977 Bowen, William, 1877-1937 The Old Tobacco Shop etext26996 Various The American Missionary — Volume 50, No. 05, May, 1896 etext27006 Various Notes and Queries, Number 207, October 15, 1853 etext27043 Lebert, Marie Le Dictionnaire du NEF etext27061 Scott, G. Firth The Rider of Waroona etext27069 Mickiewicz, Adam, 1798-1855 Sonnets from the Crimea etext27107 Qingxincairen 金雲翹傳 etext27162 Coolidge, Susan, 1835-1905 A Little Country Girl etext27180 Walpole, Hugh, Sir, 1884-1941 The Wooden Horse etext27237 Challis, James, 1803-1882 An Essay on the Scriptural Doctrine of Immortality etext27278 Anonymous Recueil des exemples de la malice des femmes, et des malheurs venus à leur occasion etext27287 Various Golden Days for Boys and Girls etext27313 Montblanc, Charles, comte de, 1833-1894 Le Japon etext27321 May, Sophie, 1833-1906 Fairy Book etext27382 Taylor, George A. (George Augustine), 1872-1928 The Sequel etext27415 Lingyanqiaozi 殺子報 etext27512 Gezelle, Guido, 1830-1899 Laatste verzen etext27514 Boreham, Frank, 1871-1959 A Handful of Stars etext27515 State Trials, Political and Social etext27555 Woude, Johanna van Een verlaten post etext27564 Various Little Folks (July 1884) etext27567 Alcott, Louisa May, 1832-1888 Aunt Jo's Scrap-Bag VI etext27580 Gosse, Edmund, 1849-1928 Raleigh etext27650 Hopkins, William John, 1863-1926 The Doers etext27696 Noll, Ray C. A Fine Fix etext27731 Bynner, Witter, 1881-1968 The New World etext27809 Wilhelmine, Margravine, consort of Friedrich, Margrave of Bayreuth, 1709-1758 Mémoires de Frédérique Sophie Wilhelmine de Prusse, margrave de Bareith. Vol. II etext27823 Various Little Folks (November 1884) etext27834 Bassett, Sara Ware, 1872-1968 Paul and the Printing Press etext27854 Rolland, Romain, 1866-1944 Colas Breugnon etext27864 Various Ainslee's, Vol. 15, No. 5, June 1905 etext27890 Edholm, Lizette M. The Merriweather Girls in Quest of Treasure etext27893 Various Punch or the London Charivari, Vol. 147, September 23, 1914 etext27898 Brummer, F. F., 1847-1893 Runoelmia 1 etext31930 Mayer, Frank The Song of the Wolf etext28073 Ross, William A. A Yacht Voyage to Norway, Denmark, and Sweden etext28076 Maupassant, Guy de, 1850-1893 Original Short Stories, Complete, Volumes 1-13 etext28130 Various The Nursery, February 1877, Vol. XXI. No. 2 etext28161 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Master Mummer etext28206 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Noites de insomnia, offerecidas a quem não póde dormir. Nº 11 (de 12) etext28229 McCutcheon, George Barr, 1866-1928 Anderson Crow, Detective etext28236 Grant, Robert, 1852-1940 A Romantic Young Lady etext28241 Birmingham, George A., 1865-1950 A Padre in France etext28267 Thompson, George, 1823- Venus in Boston; etext28288 Edwards, George Wharton, 1859-1950 Vanished towers and chimes of Flanders etext28301 Norris, Kathleen Thompson, 1880-1966 The Beloved Woman etext28307 Trumbull, Annie Eliot, 1857-1949 A Christmas Accident and Other Stories etext28312 Drachmann, A. B. (Anders Björn), 1860-1935 Atheism in Pagan Antiquity etext28362 Various Harper's Young People, February 24, 1880 etext28377 Mahan, A. T. (Alfred Thayer), 1840-1914 Lessons of the war with Spain and other articles etext28400 Orzeszkowa, Eliza, 1842-1910 An Obscure Apostle etext28433 Abbott, Jacob, 1803-1879 Richard II etext28434 Orchard, Thomas Nathaniel The Astronomy of Milton's 'Paradise Lost' etext28483 Johnson, E. Pauline, 1861-1913 Legends of Vancouver etext28494 Steiner, Rudolf, 1861-1925 Die Kernpunkte der sozialen Frage in den Lebensnotwendigkeiten der Gegenwart und Zukunft etext28556 History of Woman Suffrage, Volume III etext28576 Blythe, Samuel G. (Samuel George), 1868-1947 Cutting It Out etext28578 etext28589 Meade, L. T., 1854-1914 Frances Kane's Fortune etext28614 Crawford, F. Marion (Francis Marion), 1854-1909 Ave Roma Immortalis, Vol. 1 etext28619 Molesworth, Mrs., 1839-1921 The Cuckoo Clock etext28694 Hough, Emerson, 1857-1923 Young Alaskans in the Far North etext28699 Bruce, H. Addington (Henry Addington), 1874-1959 Historic Ghosts and Ghost Hunters etext28764 McFarland, J. Horace (John Horace), 1859-1948 Getting Acquainted with the Trees etext28769 Sherwood, Elmer, 1884- Ted Marsh on an Important Mission etext28841 Bergen, Fanny D. (Fanny Dickerson), 1846- Current Superstitions etext28856 Dodge, Mary Mapes, 1830-1905 Donald and Dorothy etext28892 Smith, George H. (George Henry), 1922-1996 Benefactor etext28927 Blasco Ibáñez, Vicente, 1867-1928 La bodega etext28964 Keene, Louis “Crumps”, The Plain Story of a Canadian Who Went etext29002 Various Harper's Young People, June 15, 1880 etext29055 Jones, Hugh, 1669-1760 The Present State of Virginia etext29065 Cramer, Andreas Wilhelm, 1855- Bremen Cotton Exchange etext29097 Freud, Sigmund, 1856-1939 Eine Schwierigkeit der Psychoanalyse etext29106 Orczy, Emmuska Orczy, Baroness, 1865-1947 A Bride of the Plains etext29159 Garson, Bill, 1917- Acid Bath etext29175 Defrance, Jean-Claude Lettre de Defrance à Bion, sur sa réponse aux objections contre l'établissement de la régie intéressée des postes et messageries etext29207 Zangwill, Louis, 1869-1938 Cleo The Magnificent etext29226 Leacock, John, 1729-1802 The Fall of British Tyranny etext29240 Williams, Robert Moore, 1907-1977 Be It Ever Thus etext29284 Deland, Margaret Wade Campbell, 1857-1945 An Encore etext29296 Murray, Andrew, 1828-1917 The Ministry of Intercession etext29333 Jones, Henry Paul Mainwaring, 1896-1917 War Letters of a Public-School Boy etext29363 Thackeray, William Makepeace, 1811-1863 Henry Esmond; The English Humourists; The Four Georges etext29366 Brown, Alice, 1857-1948 The Prisoner etext29388 Velasquez, Pedro Memoir of an Eventful Expedition in Central America etext29396 Topelius, Zacharias, 1818-1898 Kypron prinsessa etext29432 Long, Frank Belknap, 1903-1994 The Man the Martians Made etext29469 Borrow, George Henry, 1803-1881 A Supplementary Chapter to the Bible in Spain etext29470 Bible. N.T. Luke. Romany etext29513 Marshall, John, 1755-1835 Opinion of the Supreme Court of the United States, at January Term, 1832, Delivered by Mr. Chief Justice Marshall in the Case of Samuel A. Worcester, Plaintiff in Error, versus the State of Georgia etext29542 Anderson, Poul William, 1926-2001 The Valor of Cappen Varra etext29546 Poe, Clarence Hamilton, 1881-1964 Where Half The World Is Waking Up etext29564 Goodman, Walter, 1838-1912 The Pearl of the Antilles, or An Artist in Cuba etext29567 Cordeiro, Luciano, 1844-1900 As obras dos Jeronymos etext29571 Spearman, Frank H. (Frank Hamilton), 1859-1937 Nan of Music Mountain etext29682 Wedekind, Frank, 1864-1918 Erdgeist (Earth-Spirit) etext29685 Domville-Fife, Charles W. (Charles William), 1886- Submarine Warfare of To-day etext29727 Saphro, Charles Zero Data etext29745 Schnitzler, Arthur, 1862-1931 The Lonely Way—Intermezzo—Countess Mizzie etext29753 Bartley, Nalbro, 1888- The Gorgeous Girl etext29757 Tidy, Charles Meymott, 1843-1892 The Story of a Tinder-box etext29781 Lindelöf, Ernst Leonard, 1870- Le calcul des résidus et ses applications à la théorie des fonctions etext29788 Hadamard, Jacques, 1865-1963 Four Lectures on Mathematics etext29817 Williams, Frank, 1887- The Harbor of Doubt etext29864 De Amicis, Edmondo, 1846-1908 Olanda etext29908 Kornbluth, C. M. (Cyril M.), 1924-1958 The Adventurer etext29950 Various Le Tour du Monde; À travers la Perse Orientale etext29995 Delorme Colaço, José Maria, 1815-1863 Galleria dos Vice-reis e Governadores da India Portugueza etext29997 Quental, Antero de, 1842-1891 Soldados da Revolução etext30004 Lewis, Richard O. A Bottle of Old Wine etext30081 Various The Arena etext30129 Ségur, Sophie, comtesse de, 1799-1874 Old French Fairy Tales etext30135 Multatuli, 1820-1887 Walter Pieterse etext30200 etext30217 Jones, J. Knox, 1929-1992 Pleistocene Bats from San Josecito Cave, Nuevo Leon, Mexico etext30297 Clemens, William Alvin Records of the Fossil Mammal Sinclairella, Family Apatemyidae, From the Chadronian and Orellan etext30377 Laut, Agnes C. (Agnes Christina), 1871-1936 The "Adventurers of England" on Hudson Bay etext30400 Sharp, Evelyn, 1869-1955 All the Way to Fairyland etext30419 Wheatley, Henry Benjamin, 1838-1917 How to Form a Library, 2nd ed etext30512 Various Le Tour du Monde; De Tolède à Grenade etext30519 Various Le Tour du Monde; Pondichéry etext30538 Wells, H. G. (Herbert George), 1866-1946 New Worlds For Old etext30545 Unknown The A, B, C. With the Church of England Catechism etext30551 Harris, Richard, 1833-1906 The Humourous Story of Farmer Bumpkin's Lawsuit etext30554 Skae, Hilda T. The Adventure League etext30635 etext30638 Pushkin, Aleksandr Sergeevich, 1799-1837 La fille du capitaine etext30651 Walton, William, 1843-1915 Paris from the Earliest Period to the Present Day; Volume 1 etext30674 Alloway, Mary Wilson, 1848-1919 Famous Firesides of French Canada etext30693 Lee, Vernon, 1856-1935 Renaissance Fancies and Studies etext30771 Di Giacomo, Salvatore, 1860-1934 L'ignoto etext30795 Longfellow, Henry Wadsworth, 1807-1882 The Song of Hiawatha etext30805 Costa, José Daniel Rodrigues da, 1757-1832 Espada da Justiça Sobre os Reos do Horroroso Delicto Praticado no Navio Pelos que Morreraõ Enforcados aos 14 de Agosto de 1781 etext30807 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 7 (of 25) etext30808 James, C. C. (Charles Canniff), 1863-1916 History of Farming in Ontario etext30817 Ayres, Ruby M. (Ruby Mildred), 1883-1955 The Beggar Man etext4295 Doyle, Arthur Conan, Sir, 1859-1930 Songs of Action etext30962 Keyber, Conny An Apology for the Life of Mrs. Shamela Andrews etext30964 Harrison, Harry, 1925- The Ethical Engineer etext30997 Stains, Howard J. A New Bat (Genus Leptonycteris) From Coahuila etext31058 Reinwald, Theodor Reihensteinin perillinen etext31088 Findley, James S Taxonomy and Distribution of Some American Shrews etext31103 Andersen, H. C. (Hans Christian), 1805-1875 A Christmas Greeting etext31104 Kropotkin, Petr Alekseevich, kniaz, 1842-1921 The Place of Anarchism in Socialistic Evolution etext31115 Evans, Conway An Account of Our Arresting Experiences etext31121 Barrett, Michael, 1848- A Calendar of Scottish Saints etext31166 Brion, Hypacio de A India Portugueza etext31219 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States From Interviews with Former Slaves, North Carolina Narratives, Part 2 etext31222 Peirce, Earl The Homicidal Diary etext31288 Erckmann-Chatrian The Conscript etext31316 Judd, John Wesley, 1840-1916 The Coming of Evolution etext31319 Peirson, Charles Lawrence Ball's Bluff etext31364 Stearns, Charles A. B-12's Moon Glow etext31375 Sergeant, Adeline, 1851-1904 Under False Pretences etext31385 Wolf, Lucien Notes on the Diplomatic History of the Jewish Question etext31388 Miller, Mrs. E. P. Mother Truth's Melodies etext31430 Various The Church of England Magazine - Volume 10, No. 263, January 9, 1841 etext31476 Brown, Paul Cameron The Long Necked Bottle etext31504 Emery, Lucilius A. Concerning Justice etext31539 Stuxberg, Anton, 1849-1902 Nordostpassagens Historia etext31545 Stevens, Nettie Maria, 1861-1912 Studies in Spermatogenesis etext31563 De Quincey, Thomas, 1785-1859 Walladmor: etext31589 Goodwin, Harold L. (Harold Leland), 1914-1990 The Blue Ghost Mystery etext31667 Iffland, August Wilhelm, 1759-1814 The Nephews: A Play, in Five Acts. etext31668 Hoffmann, E. T. A. (Ernst Theodor Amadeus), 1776-1822 The Serapion Brethren. etext31725 Saint-Elme, Ida, 1778-1845 Mémoires d'une contemporaine etext31740 Serrano, Bento O Oraculo do Passado, do presente e do Futuro (4/7) etext31832 Sedgwick, Catharine Maria The Travellers etext31848 Berkeley, George, 1685-1753 A Proposal for the Better Supplying of Churches in Our Foreign Plantations, and for Converting the Savage Americans to Christianity etext31868 Very, Lydia L. Red Riding Hood etext31906 Almeida Seabra, Bruno Henriques de, 1837-1876 Memorias de um pobre diabo etext31944 Lebert, Marie Le livre, de l'imprimé au numérique etext31971 Queirós, José Maria Eça de, 1845-1900 O crime do padre Amaro etext32001 Pereira, Eduardo Delenda est Carthago etext32101 Beach, Rex Ellingwood, 1877-1949 The Crimson Gardenia and Other Tales of Adventure etext32110 Richmond, Hiram Hoyt, 1843- Montezuma etext32142 Nourse, Alan Edward, 1928-1992 Marley's Chain etext32173 Ames, Joseph Bushnell, 1878-1928 Under Boy Scout Colors etext32255 Collins, W. W. Cathedral Cities of Spain etext32306 Kjelland, Alexander Vergif etext32311 King, Charles, 1844-1933 A Soldier's Trial etext32325 Twain, Mark, 1835-1910 The Adventures of Huckleberry Finn etext32335 Riley, James Whitcomb, 1849-1916 The Old Soldiers Story etext32341 Lever, Charles James, 1806-1872 Davenport Dunn, Volume 1 (of 2) etext32349 etext32384 Defoe, Daniel, 1661?-1731 An Humble Proposal to the People of England, for the Increase of their Trade, and Encouragement of Their Manufactures etext32412 Stangland, Arthur G., 1908-1990 The Black Tide etext32427 Ellanby, Boyd Category Phoenix etext32445 Worde, Wynkyn de The Pain and Sorrow of Evil Marriage etext32451 etext32471 Carpenter, Flora L., 1880- Stories Pictures Tell etext32512 Saltus, Edgar, 1855-1921 Historia Amoris: A History of Love, Ancient and Modern etext32539 Pickett, Albert James Eight days in New Orleans in February, 1847 etext32584 Kuttner, Henry, 1915-1958 The Secret of Kralitz etext32594 Wells, Basil, 1912-2003 Stalemate etext32604 Spear, Ellis, 1834-1917 The Story of the Raising and Organization of a Regiment of Volunteers in 1862 etext32632 Cooper, J. Fenimore The Spy etext32661 Bell, Malcolm Great Masters in Painting: Rembrandt van Rijn etext32698 Plumer, William Swan Thoughts on the Religious Instruction of the Negroes of this Country etext10 The Bible, Old and New Testaments, King James Version etext69 Slowinski, David The 32nd Mersenne Prime etext86 Twain, Mark, 1835-1910 A Connecticut Yankee in King Arthur's Court etext97 Abbott, Edwin Abbott, 1838-1926 Flatland: a romance of many dimensions etext138 Doumic, René, 1860-1937 George Sand, some aspects of her life and writings etext161 Austen, Jane, 1775-1817 Sense and Sensibility etext244 Doyle, Arthur Conan, Sir, 1859-1930 A Study in Scarlet etext253 Coalition for Networked Information The Universal Copyright Convention (1988) etext299 Boyesen, Hjalmar Hjorth, 1848-1895 Tales from Two Hemispheres etext314 Dobie, J. Frank (James Frank), 1888-1964 Guide to Life and Literature of the Southwest, with a Few Observations etext339 Eastman, Charles Alexander, 1858-1939 Old Indian Days etext379 Gregory, Eliot, 1854-1915 Worldly Ways and Byways etext390 Cranmer-Byng, L. (Launcelot), 1872-1945 A Lute of Jade : selections from the classical poets of China etext404 Smiles, Samuel, 1812-1904 Industrial Biography, Iron Workers and Tool Makers etext496 Craik, Dinah Maria Mulock, 1826-1887 The Little Lame Prince etext511 Le Fanu, Joseph Sheridan, 1814-1873 The Purcell Papers — Volume 3 etext513 Hawthorne, Nathaniel, 1804-1864 The Snow Image and other stories etext521 Defoe, Daniel, 1661?-1731 Robinson Crusoe etext579 Lanier, Sidney, 1842-1881 The Poems of Sidney Lanier etext600 Dostoyevsky, Fyodor, 1821-1881 Notes from the Underground etext631 etext674 Plutarch, 46-120? Plutarch: Lives of the noble Grecians and Romans etext696 Walpole, Horace, 1717-1797 The Castle of Otranto etext701 Ruskin, John, 1819-1900 The King of the Golden River etext732 Gibbon, Edward, 1737-1794 History of the Decline and Fall of the Roman Empire — Volume 2 etext806 Sophocles, 495? BC-406 BC Philoktetes etext814 Trollope, Anthony, 1815-1882 Hunting Sketches etext865 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Passing of the Third Floor Back etext874 etext985 Tolstoy, Leo, graf, 1828-1910 Father Sergius etext1045 Shakespeare, William, 1564-1616 Venus and Adonis etext1104 Shakespeare, William, 1564-1616 The Comedy of Errors etext1123 Shakespeare, William, 1564-1616 Twelfth Night; or What You Will etext1134 Shakespeare, William, 1564-1616 The Winter's Tale etext1180 Xenophon, 431 BC-350? BC The Sportsman etext1197 Gogol, Nikolai Vasilievich, 1809-1852 Taras Bulba and Other Tales etext1250 Rand, Ayn, 1905-1982 Anthem etext1287 Goethe, Johann Wolfgang von, 1749-1832 The Poems of Goethe etext1298 Wister, Owen, 1860-1938 The Virginian, a Horseman of the Plains etext1332 Barrie, J. M. (James Matthew), 1860-1937 Peter Pan in Kensington Gardens etext1345 Balzac, Honoré de, 1799-1850 The Vicar of Tours etext1381 Meredith, George, 1828-1909 Poems — Volume 1 etext1383 Meredith, George, 1828-1909 Poems — Volume 3 etext1389 Balzac, Honoré de, 1799-1850 Gobseck etext1398 Troward, T. (Thomas), 1847-1916 The Doré Lectures etext1471 Thompson, Francis, 1859-1907 New Poems etext1562 Van Dyke, Henry, 1852-1933 Little Rivers; a book of essays in profitable idleness etext1595 Henry, O., 1862-1910 Whirligigs etext1605 Stephens, James, 1882-1950 The Crock of Gold etext1612 Conkling, Hilda, 1910-1986 Poems By a Little Girl etext1682 Plato, 427? BC-347? BC Menexenus etext1694 Reilly, S. A. Our Legal Heritage etext1737 Balzac, Honoré de, 1799-1850 Facino Cane etext1758 Aldrich, Thomas Bailey, 1836-1907 Majorie Daw etext1782 Shakespeare, William, 1564-1616 King Henry IV, Part 2 etext1802 Shakespeare, William, 1564-1616 King Henry VIII etext1811 Balzac, Honoré de, 1799-1850 Massimilla Doni etext1846 Raine, William MacLeod, 1871-1954 The Vision Splendid etext1861 Aldrich, Thomas Bailey, 1836-1907 An Old Town By the Sea etext1881 Grey, Zane, 1872-1939 The Call of the Canyon etext1952 Gilman, Charlotte Perkins, 1860-1935 The Yellow Wallpaper etext2100 Bibeln, Gamla och Nya Testamentet etext2115 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 15 etext2142 Tolstoy, Leo, graf, 1828-1910 Childhood etext2152 London, Jack, 1876-1916 On the Makaloa Mat etext2213 Human Genome Project Chromosome Number 13 etext2214 Human Genome Project Chromosome Number 14 etext2251 Shakespeare, William, 1564-1616 Henry IV etext2254 Shakespeare, William, 1564-1616 Henry VI etext2265 Shakespeare, William, 1564-1616 Hamlet etext2299 James, Henry, 1843-1916 Pandora etext2304 Procter, Adelaide Anne, 1825-1864 Legends and Lyrics etext2308 Whyte, Alexander, 1836-1921 Bunyan Characters (3rd Series) etext2363 Congreve, William, 1670-1729 Incognita; or, Love and Duty Reconcil'd etext2378 Anonymous Select Epigrams from the Greek Anthology etext2435 Lang, Andrew, 1844-1912 The Crimson Fairy Book etext2436 James, Henry, 1843-1916 The Marriages etext2471 Harte, Bret, 1836-1902 The Crusade of the Excelsior etext2495 Harte, Bret, 1836-1902 Susy, a story of the Plains etext2516 Scott, Walter, Sir, 1771-1832 Redgauntlet etext2517 McClure, Alexander K. (Alexander Kelly), 1828-1909 Lincoln's Yarns and Stories: a complete collection of the funny and witty anecdotes that made Lincoln famous as America's greatest story teller etext2522 Gaskell, Elizabeth Cleghorn, 1810-1865 A Dark Night's Work etext2640 Sabatini, Rafael, 1875-1950 Saint Martin's Summer etext2667 Goldsmith, Oliver, 1730-1774 The Vicar of Wakefield etext2679 Dickinson, Emily, 1830-1886 Poems by Emily Dickinson, Series Two etext2702 Sabatini, Rafael, 1875-1950 The Lion's Skin etext10597 Godwin, William, 1756-1836 Four Early Pamphlets etext2715 James, Henry, 1843-1916 The Real Thing etext2880 Browning, Robert, 1812-1889 A Blot in the 'Scutcheon etext2887 Hebbel, Christian Friedrich, 1813-1863 Herodes und Mariamne etext2917 Galsworthy, John, 1867-1933 The Skin Game etext2955 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 05: Milan and Mantua etext2968 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 18: Return to Naples etext3030 Sabatini, Rafael, 1875-1950 The Tavern Knight etext3042 Shepherd, William R. (William Robert), 1871-1934 Hispanic Nations of the New World; a chronicle of our southern neighbors etext3057 The Common Edition: New Testament etext3072 McElroy, John, 1846-1929 Andersonville etext3091 Verne, Jules, 1828-1905 Eight Hundred Leagues on the Amazon etext3117 Warner, Charles Dudley, 1829-1900 The Relation of Literature to Life etext3122 Warner, Charles Dudley, 1829-1900 England etext3135 Warner, Charles Dudley, 1829-1900 My Summer in a Garden etext3158 Taylor, Tom, 1817-1880 Our American Cousin etext3168 Hardy, Thomas, 1840-1928 Poems of the Past and the Present etext3174 Twain, Mark, 1835-1910 A Dog's Tale etext3236 Bangs, John Kendrick, 1862-1922 Mr. Bonaparte of Corsica etext3248 Connor, Ralph, 1860-1937 The Sky Pilot, a Tale of the Foothills etext3293 Irving, Washington, 1783-1859 Chronicle of the Conquest of Granada etext3398 Howells, William Dean, 1837-1920 My First Visit to New England (from Literary Friends and Acquaintance) etext3428 Tarkington, Booth, 1869-1946 The Two Vanrevels etext3439 Anonymous Arabian nights. English etext3465 Ouida, 1839-1908 Under Two Flags etext3467 Sabatini, Rafael, 1875-1950 The Life of Cesare Borgia etext3546 Carboni, Raffaello, 1817-1885 The Eureka Stockade etext3579 Wairy, Louis Constant, 1778-1845 Recollections of the Private Life of Napoleon — Volume 12 etext3673 Ives, Charles, 1874-1954 Essays Before a Sonata etext3686 Cist, Henry Martyn, 1839-1902 The Army of the Cumberland etext3771 Jonson, Ben, 1573-1637 Cynthia's Revels etext3870 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 11 etext3871 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 12 etext3874 Saint-Simon, Louis de Rouvroy, duc de, 1675-1755 Memoirs of Louis XIV and His Court and of the Regency — Volume 15 etext3900 Various Court Memoirs of France Series — Complete etext3914 Ohnet, Georges, 1848-1918 Serge Panine — Volume 01 etext3952 Vigny, Alfred de, 1797-1863 Cinq Mars — Volume 6 etext3968 Bentzon, Th. (Thérèse), 1840-1907 Jacqueline — Volume 1 etext3983 Bernard, Charles de, 1804-1850 Gerfaut — Volume 3 etext3987 Malot, Hector, 1830-1907 Conscience — Volume 2 etext4046 Blackwood, Algernon, 1869-1951 The Garden of Survival etext4055 Aikman, William, 1824-1909 The Future of the Colored Race in America etext4120 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 04: March/April 1659-1660 etext4195 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Complete 1668 N.S. etext4240 Lawrence, D. H. (David Herbert), 1885-1930 Women in Love etext4248 Thomas, Cyrus, 1825-1910 The Problem of the Ohio Mounds etext4302 Gissing, George, 1857-1903 Thyrza etext4379 Locke, William John, 1863-1930 The Fortunate Youth etext4428 Meredith, George, 1828-1909 Evan Harrington — Volume 2 etext4482 Meredith, George, 1828-1909 Lord Ormont and His Aminta — Complete etext4520 Lawrence, D. H. (David Herbert), 1885-1930 Aaron's Rod etext4628 Arthur, T. S. (Timothy Shay), 1809-1885 The Iron Rule etext4635 Appleton, Victor [pseud.] Tom Swift and His Great Searchlight; or, on the border for Uncle Sam etext4663 Vaknin, Samuel, 1961- Malignant Self Love etext4684 Grey, Zane, 1872-1939 The U. P. Trail etext4748 Curwood, James Oliver, 1878-1927 Baree, Son of Kazan etext4752 Dufresny, Charles Rivière, 1654-1724 Spirit of Contradiction etext4773 Walpole, Horace, 1717-1797 The Letters of Horace Walpole, Earl of Orford — Volume 3 etext4878 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1605-07 etext4970 Strindberg, August, 1849-1912 There Are Crimes and Crimes etext4999 Leonardo da Vinci, 1452-1519 The Notebooks of Leonardo Da Vinci — Volume 2 etext5011 Adams, John, 1735-1826 State of the Union Address etext5035 Harding, Warren G. (Warren Gamaliel), 1865-1923 State of the Union Address etext5067 Grey, Zane, 1872-1939 The Rainbow Trail etext5143 Beach, Rex Ellingwood, 1877-1949 The Auction Block etext5164 Marsh, Richard, -1915 The Beetle etext5173 Nukariya, Kaiten The Religion of the Samurai etext5203 Crabbe, George, 1754-1832 The Village and the Newspaper etext5224 Petronius Arbiter, 20-66 The Satyricon — Volume 07: Marchena Notes etext5242 Payne, John, 1842-1916 Tales from the Arabic — Volume 01 etext5248 Halsey, Harlan Page, 1839?-1898 The Dock Rats of New York etext5284 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 10 etext13126 Various The King's Daughter and Other Stories for Girls etext5303 Burnett, Frances Hodgson, 1849-1924 The Little Hunchback Zia etext5316 Pushkin, Aleksandr Sergeevich, 1799-1837 Красавице, которая нюхала табак etext5338 Rutherford, Mark, 1831-1913 Mark Rutherford's Deliverance etext5381 Churchill, Winston, 1871-1947 A Modern Chronicle — Volume 08 etext5396 Churchill, Winston, 1871-1947 The Crisis — Complete etext5428 Shelley, Percy Bysshe, 1792-1822 A Defence of Poetry and Other Essays etext5432 Horace, 65 BC-8 BC The Odes and Carmen Saeculare of Horace etext5437 Roe, Edward Payson, 1838-1888 An Original Belle etext5475 Ebers, Georg, 1837-1898 Cleopatra — Volume 03 etext5485 Ebers, Georg, 1837-1898 The Emperor — Volume 03 etext5508 Ebers, Georg, 1837-1898 Arachne — Volume 01 etext5519 Ebers, Georg, 1837-1898 The Bride of the Nile — Volume 03 etext5532 Ebers, Georg, 1837-1898 A Thorny Path — Volume 03 etext5537 Ebers, Georg, 1837-1898 A Thorny Path — Volume 08 etext5544 Ebers, Georg, 1837-1898 In the Fire of the Forge — Volume 02 etext5721 Turgenev, Ivan Sergeevich, 1818-1883 A House of Gentlefolk etext5766 Dom Praetor's Lunch etext5792 Andrews, Jane, 1833-1887 The Stories Mother Nature Told Her Children etext5805 Orczy, Emmuska Orczy, Baroness, 1865-1947 The League of the Scarlet Pimpernel etext5818 etext5822 etext5823 etext5843 Yonge, Charlotte Mary, 1823-1901 The Young Step-Mother etext5854 Sheridan, Philip Henry, 1831-1888 The Memoirs of General Philip H. Sheridan, Volume I., Part 1 etext5857 Sheridan, Philip Henry, 1831-1888 The Memoirs of General Philip H. Sheridan, Volume II., Part 4 etext5861 Grant, Ulysses S. (Ulysses Simpson), 1822-1885 The Memoirs of General Ulysses S. Grant, Part 2. etext5862 Grant, Ulysses S. (Ulysses Simpson), 1822-1885 The Memoirs of General Ulysses S. Grant, Part 3. etext5895 Curwood, James Oliver, 1878-1927 The Honor of the Big Snows etext5910 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 08 etext5933 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 30 etext5939 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 36 etext5951 Stratton, Lilyan Reno — a Book of Short Stories and Information etext5968 MacDonald, George, 1824-1905 What's Mine's Mine — Volume 3 etext5983 The Institutes of Justinian etext6019 Marsh, George P., 1801-1882 The Earth as Modified by Human Action etext6103 Crewdson, Charles N. (Charles Newman), 1870- Tales of the Road etext6105 Wright, Harold Bell, 1872-1944 Their Yesterdays etext6148 De Quincey, Thomas, 1785-1859 Narrative and Miscellaneous Papers etext14141 Various Punch, or the London Charivari, Volume 100, May 2, 1891 etext6198 Parker, Gilbert, 1862-1932 Cumner's Son and Other South Sea Folk — Volume 04 etext6211 Parker, Gilbert, 1862-1932 The Translation of a Savage, Volume 1 etext6237 Parker, Gilbert, 1862-1932 The Lane That Had No Turning, Volume 1 etext6326 Various Half-Hours with Great Story-Tellers etext6362 Dos Passos, John, 1896-1970 Three Soldiers etext6407 Scott, Walter, Sir, 1771-1832 The Abbot etext6409 Devlin, Joseph How to Speak and Write Correctly etext6456 Lippmann, Walter, 1889-1974 Public Opinion etext6572 Optic, Oliver, 1822-1897 Haste and Waste; Or, the Young Pilot of Lake Champlain. a Story for Young People etext6781 Schiller, Friedrich, 1759-1805 The Ghost-Seer; or the Apparitionist; and Sport of Destiny etext6816 Johnson, Helen M. (Helen Mar), 1834-1863 Canadian Wild Flowers etext6824 Blackmore, R. D. (Richard Doddridge), 1825-1900 Mary Anerley : a Yorkshire Tale etext6831 Lessing, Gotthold Ephraim, 1729-1781 Oden etext6845 Richmond, Grace S. (Grace Smith), 1866-1959 The Whistling Mother etext6851 Emerson, Alice B. Ruth Fielding at Snow Camp etext6928 Gladden, Washington, 1836-1918 Who Wrote the Bible? : a Book for the People etext6931 Stowe, Harriet Beecher, 1811-1896 Sunny Memories of Foreign Lands, Volume 2 etext6972 Nicholl, M. A. Lays from the West etext6979 Crane, Stephen, 1871-1900 The Little Regiment etext7005 Scott, Walter, Sir, 1771-1832 The Antiquary — Complete etext7006 Henty, G. A. (George Alfred), 1832-1902 Bonnie Prince Charlie : a Tale of Fontenoy and Culloden etext7012 Mistral, Frédéric, 1830-1914 Mes Origines; Mémoires Et Récits De Frédéric Mistral etext7042 Kingsley, Charles, 1819-1875 Discipline and Other Sermons etext7075 Bernhardt, Sarah, 1845-1923 The Idol of Paris etext7082 Godwin, William, 1756-1836 Lives of the Necromancers etext7118 James, Henry, 1843-1916 What Maisie Knew etext7140 Logan, John Alexander, 1826-1886 The Great Conspiracy, Complete etext7182 Hakluyt, Richard, 1552-1616 The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 01 etext7196 Twain, Mark, 1835-1910 The Adventures of Tom Sawyer, Part 4. etext7276 Shakespeare, William, 1564-1616 Hamlet, Prinz von Dännemark etext7400 Holmes, Oliver Wendell, 1809-1894 The Poetical Works of Oliver Wendell Holmes — Complete etext7439 English Fairy Tales etext7447 Lawson, Henry, 1867-1922 The Rising of the Court etext7472 Bellamy, Edward, 1850-1898 The Duke of Stockbridge etext16143 Waterloo, Stanley, 1846-1913 A Man and a Woman etext7482 Landman, Isaac Stories of the Prophets (Before the Exile) etext7584 Souvestre, Émile, 1806-1854 Images from Souvestre's Attic Philosopher etext7595 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Caxtons — Volume 10 etext7627 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Devereux — Volume 04 etext7632 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Disowned — Volume 02 etext7651 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Kenelm Chillingly — Volume 02 etext7668 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 What Will He Do with It? — Volume 10 etext7675 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Harold : the Last of the Saxon Kings — Volume 04 etext7747 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Parisians — Volume 11 etext7790 Richards, Laura Elizabeth Howe, 1850-1943 Captain January etext7827 Hudson, W. H. (William Henry), 1841-1922 Fan : the story of a young girl's life etext7931 Day, Holman, 1865-1935 All-Wool Morrison etext7939 Schiller, Friedrich, 1759-1805 Die Huldigung der Künste etext8182 Beale, Charles Willing, 1845-1932 The Ghost of Guir House etext8195 Various Scientific American Supplement, No. 275, April 9, 1881 etext8199 Serviss, Garrett Putman, 1851-1929 The Moon Metal etext8240 Anonymous The World English Bible (WEB): 1 Chronicles etext8246 Anonymous The World English Bible (WEB): Psalms etext8262 Anonymous The World English Bible (WEB): Habakkuk etext8289 Anonymous The World English Bible (WEB): 1 John etext8331 The Bible, Douay-Rheims, Book 31: Ezechiel etext8350 The Bible, Douay-Rheims, Book 50: John etext8384 Alcott, Louisa May, 1832-1888 Pauline's Passion and Punishment etext8388 Whitman, Walt, 1819-1892 Poems By Walt Whitman etext8480 Twain, Mark, 1835-1910 Life on the Mississippi, Part 10. etext8536 etext8556 Adams, George Burton, 1851-1925 The History of England from the Norman Conquest etext8589 Twain, Mark, 1835-1910 Roughing It, Part 8. etext8632 Doyle, Arthur Conan, Sir, 1859-1930 The Disappearance of Lady Frances Carfax etext8652 Harrison, S. Frances (Susie Frances), 1859-1935 Crowded Out! and Other Sketches etext8701 The Doré Gallery of Bible Illustrations, Volume 1 etext8734 Betham-Edwards, Matilda, 1836-1919 East of Paris etext8762 Burroughs, Edgar Rice, 1875-1950 The Outlaw of Torn etext8778 Morris, William, 1834-1896 The Water of the Wondrous Isles etext8789 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Hell, Complete etext8830 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Luke etext8832 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, Acts etext8872 Schurz, Carl, 1829-1906 Report on the Condition of the South etext8984 Verne, Jules, 1828-1905 Off on a Comet etext9052 Braddon, M. E. (Mary Elizabeth), 1835-1915 The Golden Calf etext9064 Heyse, Paul, 1830-1914 Gedichte etext9160 Lessing, Gotthold Ephraim, 1729-1781 Die Erziehung des Menschengeschlechts etext9192 Wood, Henry, Mrs., 1814-1887 The Channings etext9211 Hawthorne, Nathaniel, 1804-1864 The Sister Years (From "Twice Told Tales") etext9238 Hawthorne, Nathaniel, 1804-1864 Sylph Etherege etext9332 Brightwell, Miss, 1811-1875 Georgie's Present etext9407 Johnston, Annie F. (Annie Fellows), 1863-1931 The Little Colonel etext9419 Hardy, Thomas, 1840-1928 The Dynasts etext9469 Jordan, David Starr, 1851-1931 The Call of the Twentieth Century etext9514 Poe, Edgar Allan, 1809-1849 The Works of Edgar Allan Poe, Volume 3 etext9578 Whittier, John Greenleaf, 1807-1892 Poems in Wartime etext9663 Cabell, James Branch, 1879-1958 Domnei etext9781 Greenidge, A. H. J. (Abel Hendy Jones), 1865-1906 A History of Rome During the Later Republic and Early Principate etext9820 Ward, Humphry, Mrs., 1851-1920 A Writer's Recollections — Volume 1 etext9880 Stanton, Elizabeth Cady, 1815-1902 The Woman's Bible etext9893 etext9921 Byron, George Gordon Byron, Baron, 1788-1824 The Works of Lord Byron: Letters and Journals. Vol. 2 etext9957 Chapman, J. Wilbur (John Wilbur), 1859-1918 The Personal Touch etext9958 Forrest, John, 1847-1918 Explorations in Australia, Illustrated, etext9976 Hugo, Victor, 1802-1885 Hernani etext9978 Bagnold, Enid, 1889-1981 The Happy Foreigner etext10083 Green, Anna Katharine, 1846-1935 The House of the Whispering Pines etext10099 Ward, Humphry, Mrs., 1851-1920 Towards the Goal etext10100 Nichol, John, 1833-1894 Byron etext10103 The Great Events by Famous Historians, Volume 08 etext10136 Beeton, Mrs. (Isabella Mary), 1836-1865 The Book of Household Management etext10169 United States Marine Band Semper Fidelis March etext10214 Taylor, Thomas, 1758-1835 Introduction to the Philosophy and Writings of Plato etext10245 Earl Fuller's Famous Jazz Band Jazz de Luxe etext10290 Duhamel, Georges, 1884-1966 Confession de Minuit etext10310 Sullivan, Arthur, Sir, 1842-1900 After Dinner Toast at Little Menlo etext10313 Orchestra, Issler's The Fifth Regiment March etext10401 Drayton, Daniel Personal Memoir of Daniel Drayton etext10414 Spencer, Elizabeth I Love You, California etext10418 Farnol, Jeffery, 1878-1952 The Money Moon etext10460 Guest, Edgar A. (Edgar Albert), 1881-1959 When Day is Done etext10507 Bjørnson, Bjørnstjerne, 1832-1910 Mary, Erzählung etext10522 Lord, John, 1810-1894 Beacon Lights of History, Volume 04 etext10572 Jacobs, W. W. (William Wymark), 1863-1943 Manners Makyth Man etext10602 Spenser, Edmund, 1552?-1599 The Poetical Works of Edmund Spenser, Volume 5 etext10620 etext10692 Cooke, John Esten, 1830-1886 A Life of Gen. Robert E. Lee etext10694 Bridge, Cyprian, Admiral Sir, 1839-1924 Sea-Power and Other Studies etext10702 Mommsen, Theodor, 1817-1903 The History of Rome, Book II etext10735 Fox, John, 1863-1919 Christmas Eve on Lonesome and Other Stories etext10764 Champollion le Jeune Lettres écrites d'Égypte et de Nubie en 1828 et 1829 etext10766 Anonymous Enquire Within Upon Everything etext10780 Litchfield, Grace Denio Only an Incident etext10877 Staley, Edgcumbe, 1845- The Tragedies of the Medici etext11012 Johnson, James Weldon, 1871-1938 The Autobiography of an Ex-Colored Man etext11030 Jacobs, Harriet Ann, 1813-1897 Incidents in the Life of a Slave Girl etext11040 Aleramo, Sibilla, 1876-1960 Le passage suivi de Transfiguration (Nouvelle) etext11047 Cyr, Ellen M. Libro segundo de lectura etext11077 Doctorow, Cory, 1971- Ebooks: Neither E, Nor Books etext11135 Seton, Ernest Thompson, 1860-1946 Monarch, the Big Bear of Tallac etext11146 Houghton, Eliza Poor Donner The Expedition of the Donner Party and its Tragic Fate etext11241 Anonymous Wee Ones' Bible Stories etext11254 etext11280 Holmes, Mary Jane, 1825-1907 Maggie Miller etext11325 Miller, Alice Duer, 1874-1942 The Happiest Time of Their Lives etext11350 Various The Mirror of Literature, Amusement, and Instruction etext11377 Blackwood, Algernon, 1869-1951 The Man Whom the Trees Loved etext11379 Banks, Nancy Huston Round Anvil Rock etext11436 Various Stories by American Authors, Volume 1 etext11527 The World's Greatest Books — Volume 07 — Fiction etext11549 Prentiss, George L., 1816-1903 The Life and Letters of Elizabeth Prentiss etext11599 Hanna, Abigail Stanley Withered Leaves from Memory's Garland etext11603 Gissing, George, 1857-1903 The House of Cobwebs and Other Stories etext11642 Home, Gordon, 1878-1969 What to See in England etext11648 Various Scientific American Supplement, No. 595, May 28, 1887 etext11686 Sienkiewicz, Henryk, 1846-1916 Without Dogma etext11698 Sinclair, May, 1863-1946 The Three Brontës etext11731 etext11809 Library of Congress. Copyright Office U.S. Copyright Renewals, 1954 January - June etext11894 The Mahabharata of Krishna-Dwaipayana Vyasa Translated into English Prose etext11908 Various Punch, or the London Charivari, Volume 156, March 19, 1919 etext11932 Various The Mirror of Literature, Amusement, and Instruction etext11947 Aldrich, Mildred, 1853-1928 On the Edge of the War Zone etext11962 Beers, Clifford Whittingham, 1876-1943 A Mind That Found Itself etext11971 Jacobs, W. W. (William Wymark), 1863-1943 Dialstone Lane, Part 1. etext11981 The World's Great Sermons, Volume 01 etext12023 Various The Atlantic Monthly, Volume 11, No. 66, April, 1863 etext12051 Verne, Jules, 1828-1905 Dick Sand etext12059 The World's Greatest Books — Volume 09 — Lives and Letters etext12115 Stokes, John Lort, 1812-1885 Discoveries in Australia, Volume 1. etext12160 Jacobs, W. W. (William Wymark), 1863-1943 His Other Self etext12168 Bang, Herman, 1857-1912 Min gamle kammerat etext12197 Phillips, Henry Wallace, 1869-1930 Mr. Scraggs etext12202 Jacobs, W. W. (William Wymark), 1863-1943 The Castaway etext12240 Little, Frances, [pseud.], 1863-1941 The Lady and Sada San etext12270 Atherton, Gertrude Franklin Horn, 1857-1948 The Doomswoman etext12295 Thiers, Adolphe, 1797-1877 Histoire de la Révolution française, Tome 8 etext12320 Nearing, Scott, 1883-1983 Civilization and Beyond etext12384 Melville, Herman, 1819-1891 Battle-Pieces and Aspects of the War etext12402 Various The Poets and Poetry of Cecil County, Maryland etext12557 Morris, Gouverneur, 1876-1953 The Penalty etext12618 Various The Mirror of Literature, Amusement, and Instruction etext12631 Andrews, Jane, 1833-1887 The Seven Little Sisters Who Live on the Round Ball etext12676 Various The Mirror of Literature, Amusement, and Instruction etext12741 Alger, Horatio, 1832-1899 Risen from the Ranks etext12751 Durand-Brager, Henri, 1814-1879 Quatre mois de l'expédition de Garibaldi en Sicilie et Italie etext12769 etext12778 Hancock, H. Irving (Harrie Irving), 1868-1922 The Young Engineers in Mexico etext12819 Hancock, H. Irving (Harrie Irving), 1868-1922 Dick Prescott's Second Year at West Point etext12855 Wood, William Charles Henry, 1864-1947 Elizabethan Sea Dogs etext12884 Adams, Andy, 1859-1935 Reed Anthony, Cowman etext12937 Bonehill, Ralph Out with Gun and Camera etext12952 Bonehill, Ralph Four Boy Hunters etext12964 Warner, Susan, 1819-1885 Melbourne House, Volume 2 etext13018 Kenyon, Frederic G. (Frederic George), Sir, 1863-1952 The Letters of Elizabeth Barrett Browning (1 of 2) etext13022 Squareman, Clarence My Book of Indoor Games etext13061 Various Lippincott's Magazine of Popular Literature and Science etext13066 Bourinot, John George, Sir, 1837-1902 Lord Elgin etext13091 Fisher, Dorothy Canfield, 1879-1958 Hillsboro People etext13104 Talmage, T. De Witt (Thomas De Witt), 1832-1902 The Abominations of Modern Society etext13123 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Great Prince Shan etext13180 Chambers, Robert W. (Robert William), 1865-1933 The Tracer of Lost Persons etext13192 Bonaparte, Napoléon, 1769-1821 Oeuvres de Napoléon Bonaparte, Tome IV. etext13211 Jewett, Sophie The Pearl etext13217 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext13286 Neil, Marion Harris The Story of Crisco etext13336 Malot, Hector, 1830-1907 Clotilde Martory etext13372 Stevenson, Burton Egbert, 1872-1962 The Gloved Hand etext13388 Velimirović, Nikolai, 1880-1956 The Religious Spirit of the Slavs (1916) etext13428 Kaila, Eino, 1890-1958 Valitut teokset 1910-1922 etext13433 Cassels, Walter Richard, 1826-1907 A Reply to Dr. Lightfoot's Essays etext13498 Bradley, Mary Hastings, -1976 The Fortieth Door etext13502 Various Punch, or the London Charivari, Volume 101, August 22, 1891 etext13512 Parry, William Edward, Sir, 1790-1855 Three Voyages for the Discovery of a Northwest Passage from the Atlantic to the Pacific, and Narrative of an Attempt to Reach the North Pole, Volume 1 etext13549 Jomini, Henri, baron, 1779-1869 The Art of War etext13575 Various How to Observe in Archaeology etext22748 Smith, John. B. Explanation of Terms Used in Entomology etext13634 Various The Continental Monthly, Vol. 1, No. 2, February, 1862 etext13649 Lear, Edward, 1812-1888 Laughable Lyrics etext13670 Bower, B. M., 1874-1940 The Happy Family etext13692 McMahon, James Hyperbolic Functions etext13753 Brooks, Amy Dorothy Dainty's Gay Times etext13796 Various International Weekly Miscellany - Volume 1, No. 8, August 19, 1850 etext13882 Freeman, R. Austin (Richard Austin), 1862-1943 John Thorndyke's Cases etext13889 Ranney, Dave Dave Ranney etext13910 Nugent, Homer Heath A Book of Exposition etext13914 Fénelon, François de Salignac de la Mothe-, 1651-1715 Lettre a Louis XIV etext13957 Borrow, George Henry, 1803-1881 The Pocket George Borrow etext14050 Wecksell, J. J. (Josef Julius), 1838-1907 Daniel Hjort etext14067 Various Punch, or the London Charivari, Volume 101, November 7, 1891 etext14084 Defoe, Daniel, 1661?-1731 A Vindication of the Press etext14109 Gilman, Lawrence, 1878-1939 Edward MacDowell etext14183 Penn, W. E., 1832-1895 There is No Harm in Dancing etext14210 Mathuisieulx, A. de, 1860- In het bergland van Tripolis etext14215 Morante, José Landas na Tuntunin etext14244 Bédier, Joseph, 1864-1938 The Romance of Tristan and Iseult etext14256 Atherton, Gertrude Franklin Horn, 1857-1948 The Bell in the Fog and Other Stories etext14270 Ignacio, Cleto R. Panayam ng Tatlong Binata — Unang Hati etext14284 McCutcheon, George Barr, 1866-1928 Truxton King etext14314 Post, Emily, 1873-1960 Etiquette etext14336 Leino, Eino, 1878-1926 Paavo Kontio etext14341 Various Punch, or the London Charivari, Volume 102, February 6, 1892 etext14359 Unknown MacMillan & Co.'s General Catalogue of Works in the Departments of History, Biography, Travels, and Belles Lettres, December, 1869 etext14372 Sand, George, 1804-1876 Autour de la table etext14433 Zola, Émile, 1840-1902 Rynnäkkö myllyä vastaan etext14462 R. G. The Third and Last Part of Conny-Catching. (1592) etext14565 Humboldt, Alexander von, 1769-1859 COSMOS: A Sketch of the Physical Description of the Universe, Vol. 1 etext14589 Hawkins, Norval A. Certain Success etext14602 Wentworth, Marion Craig, 1872- War Brides: A Play in One Act etext14634 Symonds, John Addington, 1840-1893 Sketches and Studies in Italy and Greece, Second Series etext14725 Huygens, Christiaan, 1629-1695 Treatise on Light etext14770 Harris, W. S. (William Shuler), 1865- Life in a Thousand Worlds etext14800 The Present State of Wit (1711) etext14873 Tower, G. B. N. (George Bates Nichols) Instructions on Modern American Bridge Building etext14874 Finley, Martha, 1828-1909 Elsie's Womanhood etext14933 Various Punch, or the London Charivari, Volume 1, October 23, 1841 etext15026 Various Punch, or the London Charivari, Volume 103, August 6, 1892 etext15028 Marcus Aurelius, Emperor of Rome, 121-180 Selbstbetrachtungen etext15109 Hammond, Natalie Harris, -1931 A Woman's Part in a Revolution etext15123 McGovern, John, 1850-1917 David Lockwin—The People's Idol etext15142 Various Punch, or the London Charivari, Volume 103, August 13, 1892 etext15159 Hough, Emerson, 1857-1923 Heart's Desire etext15191 Simmonds, P. L. The Commercial Products of the Vegetable Kingdom etext15247 Adams, Frederick Upham, 1859-1921 John Henry Smith etext15273 Bastiaanse, Frans, 1868-1947 Gedichten etext15275 Holmes, Mary Jane, 1825-1907 Bessie's Fortune etext15320 Hearn, Lafcadio, 1850-1904 The Romance of the Milky Way etext15323 Rohmer, Sax, 1883-1959 The Green Eyes of Bâst etext15353 etext15402 Dickinson, Anna E. What Answer? etext15441 Various Punch, or the London Charivari, Volume 103, October 8, 1892 etext15457 Various The Great Round World And What Is Going On In It, Vol. 1. No. 23, April 15, 1897 etext15515 Various Syvistä riveistä etext15545 Besant, Annie Wood, 1847-1933 The Basis of Morality etext15638 Various Notes and Queries, Number 62, January 4, 1851 etext15643 Shakespeare, William, 1564-1616 Romeo ja Julia etext15664 Pyle, Howard, 1853-1911 Pepper & Salt etext15710 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Nicky-Nan, Reservist etext15727 Spyri, Johanna, 1827-1901 Gritli's Children etext15744 Pinero, Arthur Wing, Sir, 1855-1934 The Gay Lord Quex etext15762 Runciman, James, 1852-1891 Side Lights etext15898 Morgenstern, Christian, 1871-1914 Stufen etext15908 Polén, Rietrik, 1823-1884 Johdanto Suomen kirjallishistoriaan etext15930 Bok, Edward William, 1863-1930 A Dutch Boy Fifty Years After etext15941 Housman, Laurence, 1865-1959 An Englishwoman's Love-Letters etext15942 Shakespeare, William, 1564-1616 Antoine et Cléopâtre etext15983 Holley, Horace Read-Aloud Plays etext16039 Southworth, Emma Dorothy Eliza Nevitte, 1819-1899 The Lost Lady of Lone etext16069 Herlevi, Helvi, 1898-1927 Kuningasverta etext16104 Various The American Missionary — Volume 43, No. 04, April, 1889 etext16233 Morris, Corbyn, -1779 An Essay towards Fixing the True Standards of Wit, Humour, Railery, Satire, and Ridicule (1744) etext16254 Chapple, W. A. (William Allan), 1864-1936 The Fertility of the Unfit etext16282 etext16315 Bergman, Johan Albert, 1844-1924 Nurmeksen kapina etext16324 Ferrero, Guglielmo, 1871-1942 The Women of the Caesars etext16348 Lippmann, Julie Mathilde, 1864- Dreamland etext16356 Brannon, George Brannon's Picture of The Isle of Wight etext16397 Garis, Howard Roger, 1873-1962 Larry Dexter's Great Search etext16410 Carpenter, George H. (George Herbert), 1865-1939 The Life-Story of Insects etext16462 Hillegas, Howard Clemens, 1872-1918 With the Boer Forces etext16476 Stratemeyer, Edward, 1862-1930 The Rover Boys on Land and Sea etext16477 Hutton, Edward, 1875-1969 Florence and Northern Tuscany with Genoa etext16490 Shakespeare, William, 1564-1616 King Lear. Finnish etext16530 Knibbs, Henry Herbert, 1874-1945 The Ridin' Kid from Powder River etext16540 Ewing, Juliana Horatia Gatty, 1841-1885 Melchior's Dream and Other Tales etext16551 Belasco, David, 1853-1931 The Girl of the Golden West etext16586 Carruth, Hayden, 1862-1932 The Voyage of the Rattletrap etext16670 Blasco Ibáñez, Vicente, 1867-1928 La Catedral etext16692 Glyn, Elinor, 1864-1943 Beyond The Rocks etext16709 Coppée, François, 1842-1908 Contes rapides etext16796 Chavette, Eugène, 1827-1902 La conquête d'une cuisinière II etext16815 Bourget, Paul, 1852-1935 Physiologie de l'amour moderne etext16846 Mjallhvít etext16890 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 Hetty Wesley etext16909 Von Hutten, Bettina, 1874-1957 The Halo etext16914 Mahan, A. T. (Alfred Thayer), 1840-1914 The Life of Nelson, Volume 1 etext17032 Hall, Basil, 1788-1844 The Lieutenant and Commander etext17069 Ewing, Juliana Horatia Gatty, 1841-1885 A Great Emergency and Other Tales etext17095 Hope, Laura Lee Bunny Brown and His Sister Sue on an Auto Tour etext17108 Little, Frances, [pseud.], 1863-1941 The House of the Misty Star etext17153 Reye, Theodor, 1838-1919 Synthetische Geometrie der Kugeln und linearen Kugelsysteme etext17205 Raine, William MacLeod, 1871-1954 The Big-Town Round-Up etext17217 Various The Atlantic Monthly, Volume 18, No. 110, December, 1866 etext17253 Ellis, Edward Sylvester, 1840-1916 Dewey and Other Naval Commanders etext17258 Champlain, Samuel de, 1567-1635 Oeuvres de Champlain etext17289 Anonymous The Dance (by An Antiquary) etext17314 Nesbit, E. (Edith), 1858-1924 Five Children and It etext17338 Valera, Juan, 1824-1905 Doña Luz etext17353 Corbière, Édouard, 1793-1875 La mer et les marins etext17360 Lepelletier, Edmond, 1846-1913 Emile Zola etext17364 Braun, Wilhelm Alfred, 1873- Types of Weltschmerz in German Poetry etext17385 Millard, Max 100 New Yorkers of the 1970s etext17388 Birrell, Augustine, 1850-1933 Andrew Marvell etext17462 Ferris, George T. (George Titus), 1840- Great Italian and French Composers etext17573 France, Hector, 1837-1908 L'amour au pays bleu etext17679 Hope, Laura Lee The Story of a Nodding Donkey etext17694 Chalmers, James, 1841-1901 Adventures in New Guinea etext17707 Sade, Marquis de, 1740-1814 Aline et Valcour, tome 2 etext17737 Adam, Juliette, 1836-1936 The Schemes of the Kaiser etext17788 Ibsen, Henrik, 1828-1906 Pikku Eyolf etext17802 Vignoli, Tito, 1828-1914 Myth and Science etext17879 Dickens, Charles, 1812-1870 Barnabé Rudge, Tome I etext18002 Coghill, Harry, Mrs., 1836-1907 A Canadian Heroine, Volume 1 etext18017 Schéele, Frans von, 1853-1931 Om viljans frihet etext18046 Porati, R. A. Una notte fatale etext18080 Blackburn, Henry, 1830-1897 Normandy Picturesque etext18173 Moorman, Frederic William, 1872-1919 Tales of the Ridings etext18232 Beer-Hofmann, Richard, 1866-1945 Gedenkrede auf Wolfgang Amade Mozart etext18238 etext18242 Carman, Bliss, 1861-1929 Behind the Arras etext18262 Allais, Alphonse, 1854-1905 Contes humoristiques - Tome I etext18299 Sturla Þórðarson, 1214-1284 The Norwegian account of Haco's expedition against Scotland, A.D. MCCLXIII. etext18315 Burke, Edmund, 1729-1797 The Works of the Right Honourable Edmund Burke, Vol. 12 (of 12) etext18333 Various The Illustrated War News, Number 15, Nov. 18, 1914 etext18342 Piper, H. Beam, 1904-1964 The Answer etext18358 Loti, Pierre, 1850-1923 Madame Chrysanthème etext18380 Marcosson, Isaac Frederick, 1876-1961 The War After the War etext18401 Dumas père, Alexandre, 1802-1870 La San-Felice, Tome II etext18480 Fleming, William, 1844- Bolougne-Sur-Mer etext18544 Richardson, James, 1806-1851 Narrative of a Mission to Central Africa Performed in the Years 1850-51, Volume 2 etext18578 Savage, Minot J. (Minot Judson), 1841-1918 Our Unitarian Gospel etext18627 Aicard, Jean, 1848-1921 Notre-Dame-d'Amour etext18655 Cory, David, 1872-1966 The Cruise of the Noah's Ark etext18693 Dombre, Roger, 1859-1914 Nounou etext18716 Doyle, Arthur Conan, Sir, 1859-1930 Micah Clarke - Tome I etext18728 France, Anatole, 1844-1924 The Well of Saint Clare etext18764 Meakin, Budgett, 1866-1906 Life in Morocco and Glimpses Beyond etext18783 Morillo, Francisco Diario del viaje al rio Bermejo etext18788 Allen, Grant, 1848-1899 Post-Prandial Philosophy etext18840 Venable, William Henry, 1836-1920 A Dream of Empire etext18846 Norton, Andre, 1912-2005 Voodoo Planet etext18950 Gregory, Jackson, 1882-1943 The Short Cut etext18979 Franklin, John, 1786-1847 Narrative of a Journey to the Shores of the Polar Sea, in the Years 1819-20-21-22, Volume 1 etext19013 Anonymous Sciências Naturaes etext19027 Rockwell, Carey, [pseud.] The Revolt on Venus etext19112 Thackeray, William Makepeace, 1811-1863 Vanity Fair. French etext19120 Carson, James The Saddle Boys of the Rockies etext19125 Wacklin, Sara, 1790-1846 Satanen muistelmia Pohjanmaalta 1 etext19128 Zetterström, Hasse, 1877-1946 Ada etext19142 Rohmer, Sax, 1883-1959 The Devil Doctor etext19175 Duchess, 1855?-1897 A Little Rebel etext19195 Abbott, Jacob, 1803-1879 Rollo in the Woods etext19205 Ibsen, Henrik, 1828-1906 The Vikings of Helgeland etext19216 Hume, David, 1711-1776 The History of England in Three Volumes, Vol.I., Part F. etext19255 Fitchett, W. H. (William Henry), 1845-1928 Deeds that Won the Empire etext19280 Shoghi Effendi, 1897-1957 Messages to the Bahá’í World: 1950–1957 etext19281 Baha'i International Community One Common Faith etext19283 Baha'i International Community The Prosperity of Humankind etext19297 Shoghi Effendi, 1897-1957 Unfolding Destiny etext19332 Holroyd, Charles, 1861-1917 Michael Angelo Buonarroti etext19364 Various The Brochure Series of Architectural Illustration, Volume 01, No. 05, May 1895 etext19421 Johnston, R. M. (Robert Matteson), 1867-1920 The French Revolution etext19426 Petruccelli della Gattina, Ferdinando, 1816-1890 I moribondi del Palazzo Carignano etext19429 Pellico, Silvio, 1789-1854 Poesie inedite vol. I etext19436 Prouty, Olive Higgins, 1882-1974 The Fifth Wheel etext19439 Stowe, Harriet Beecher, 1811-1896 Vaimoni ja minä eli Harry Hendersonin elämäkerta etext19467 Baum, L. Frank (Lyman Frank), 1856-1919 Little Wizard Stories of Oz etext19523 Steele, Jack A Husband by Proxy etext19529 Milman, Henry Hart, 1791-1868 Nala and Damayanti and Other Poems etext19598 etext19610 Butler, Samuel, 1835-1902 Selections from Previous Works etext19615 Richmond, Legh, 1772-1827 The Dairyman's Daughter etext19648 Harris, Joel Chandler, 1848-1908 Mingo etext19680 Tolstoy, Leo, graf, 1828-1910 Childhood etext19719 Cody, Sherwin, 1868-1959 The Art Of Writing & Speaking The English Language etext19735 Stringer, Arthur, 1874-1950 Phantom Wires etext19776 Murfree, Mary Noailles, 1850-1922 The Ordeal etext19781 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 Sketches etext19819 Milton, John, 1608-1674 Milton's Comus etext19828 Boutwell, George S., 1818-1905 Reminiscences of Sixty Years in Public Affairs, Vol. 1 etext19830 Moody, Dwight Lyman, 1837-1899 Moody's Anecdotes And Illustrations etext19834 Smith, Mabell S. C. (Mabell Shippie Clarke), 1864-1942 Ethel Morton's Holidays etext19984 Piron, A. Du service des postes et de la taxation des lettres au moyen d'un timbre etext20011 Coloma, Luis, 1851-1915 Pequeñeces etext20069 etext20072 Appleton, Everard Jack, 1872-1931 With the Colors etext20173 Griffith, George Chetwynd, 1857-1906 The Romance of Golden Star ... etext20177 Colman, George, 1762-1836 John Bull etext20191 Bygate, Joseph E. Bell's Cathedrals: The Cathedral Church of Durham etext20197 Gaines, Miriam Grandfather's Love Pie etext20216 Walsh, James Joseph, 1865-1942 Old-Time Makers of Medicine etext20222 Leffingwell, Albert, 1845-1916 An Ethical Problem etext20242 Stephens, C. A. (Charles Asbury), 1844-1931 Left on Labrador etext20258 Clarke, Margaret Bruce Hunter's Marjory etext20293 Mathews, W. S. B. (William Smythe Babcock), 1837-1912 A Popular History of the Art of Music etext20312 Kingsley, Charles, 1819-1875 Out of the Deep etext31427 Eddy, Mary Baker, 1821-1910 Miscellaneous Writings, 1883-1896 etext20329 Reed, William Allan Negritos of Zambales etext20344 Ibsen, Henrik, 1828-1906 Rakkauden komedia etext20354 Coombe, Florence Jack of Both Sides etext20365 Murfree, Mary Noailles, 1850-1922 The Young Mountaineers etext20386 Christie, Grace Embroidery and Tapestry Weaving etext20391 Andriessen, P. J., 1815-1877 De Prins en Johan de Witt etext20437 Crane, Walter, 1845-1915 The Frog Prince and Other Stories etext20446 Newman, John Philip 'America for Americans!' etext20482 Pato, Raimundo António de Bulhão, 1829-1912 A José Estevão etext20487 Joyce, John A. Shakspere, Personal Recollections etext20510 Ade, George, 1866-1944 Ade's Fables etext20546 Rees, Arthur J. (Arthur John), 1872-1942 The Hand in the Dark etext20556 Packard, A. S. (Alpheus Spring), 1839-1905 Lamarck, the Founder of Evolution etext20559 Bangs, John Kendrick, 1862-1922 R. Holmes & Co. etext20614 Finlay, Roger Thompson The Wonder Island Boys: The Mysteries of the Caverns etext20657 etext20668 Russell, R. V. (Robert Vane), 1873-1915 The Tribes and Castes of the Central Provinces of India - Volume IV of IV etext20695 Garland, Hamlin, 1860-1940 The Spirit of Sweetwater etext20706 Klaveren, L. M. van Reisherinneringen van een bestuursambtenaar in Zuid-Celebes etext20728 Piper, H. Beam, 1904-1964 Space Viking etext20752 Various The Journal of Negro History, Volume 2, 1917 etext20756 Goldsmith, Milton Rabbi and Priest etext20772 etext20786 Heer, Jakob Christoph, 1859-1925 An heiligen Wassern etext20802 Burroughs, Edgar Rice, 1875-1950 Ĉe la koro de la tero etext20872 Various The Best Short Stories of 1917 etext20894 Longfellow, Henry Wadsworth, 1807-1882 Evangeline etext20940 Leal, António Duarte Gomes, 1848-1921 Claridades do sul etext21015 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Jimmy Skunk etext21021 Bonsels, Waldemar, 1881?-1952 Die Biene Maja und ihre Abenteuer etext21062 Collingwood, Harry, 1851-1922 The Cruise of the Nonsuch Buccaneer etext21135 Wilson, Theodore P. Nearly Lost but Dearly Won etext21170 Beddoes, Thomas Lovell, 1803-1849 The Phantom-Wooer etext21190 Maclaren, Alexander, 1826-1910 Expositions of Holy Scripture etext21261 etext21271 Colmenero de Ledesma, Antonio Chocolate: or, An Indian Drinke etext21365 Fenn, George Manville, 1831-1909 Rob Harlow's Adventures etext21389 Kingston, William Henry Giles, 1814-1880 Ronald Morton, or the Fire Ships etext21396 Kingston, William Henry Giles, 1814-1880 The Three Lieutenants etext21406 Castelo Branco, Camilo Ferreira Botelho, 1825-1890 Novelas do Minho etext21445 Various Notes and Queries, Number 181, April 16, 1853 etext21477 Kingston, William Henry Giles, 1814-1880 Mark Seaworth etext21527 Schwayer, Adolf Weihnachtserzählungen etext21537 Dodd, William E. Expansion and Conflict etext21627 Laumer, Keith, 1925-1993 Gambler's World etext21640 Boothby, Guy, 1867-1905 A Bid for Fortune etext21647 Smith, E. E. (Edward Elmer), 1890-1965 Subspace Survivors etext21671 Randall, Homer Army Boys on the Firing Line etext21725 Ballantyne, R. M. (Robert Michael), 1825-1894 The Coxswain's Bride etext21764 Menefee, Maud Child Stories from the Masters etext21770 James, Henry, 1843-1916 The Author Of Beltraffio etext21827 Quintilianus, Marcus Fabius, 35-100? M. Fabi Quintiliani institutionis oratoriae liber decimus etext21830 Shearon, Lillian Nicholson The Little Mixer etext21834 Milne, James, 1865-1951 The Black Colonel etext21892 Barbour, A. Maynard (Anna Maynard), -1941 At the Time Appointed etext21897 Schmitz, James H., 1911-1981 An Incident on Route 12 etext21917 Frommel, Emil, 1828-1896 Eingeschneit etext21922 etext21931 Jacobs, W. W. (William Wymark), 1863-1943 Sea Urchins etext22038 Smith, G. Elliot The Evolution of the Dragon etext22071 Lester, Pauline Marjorie Dean, College Sophomore etext22072 Anonymous Folk-Lore and Legends: North American Indian etext22083 Myths and Legends of the Great Plains etext22091 Various The Best Short Stories of 1920 etext22094 Richardson, James, 1806-1851 Travels in the Great Desert of Sahara, in the Years of 1845 and 1846 etext22102 Coppel, Alfred The Hills of Home etext22113 Jackson, Gabrielle E. (Gabrielle Emilie), 1861- Peggy Stewart at School etext22298 Zerbe, James Slough, 1850- Practical Mechanics for Boys etext3251 Twain, Mark, 1835-1910 The Man That Corrupted Hadleyburg and Other Stories etext22370 Curtis, Alice Turner A Little Maid of Old Philadelphia etext22382 Homer, 750? BC-650? BC The Iliad of Homer (1873) etext22405 Various The Olden Time Series: Vol. 2: The Days of the Spinning-Wheel in New England etext22407 Stuart, Florence Partello The Adventures of Piang the Moro Jungle Boy etext22413 Moreck, Kurt Alaeddin und die Wunderlampe etext22416 Various L'Illustration, Samedi le 22 Aout 1914, 72e Année, No. 3730 etext22441 Crane, Walter, 1845-1915 The Frog Prince and Other Stories etext22470 Leftwich, Edmund H. The Bell Tone etext22471 Wolf, George D. The Fair Play Settlers of the West Branch Valley, 1769-1784 etext22506 Sangiorgio, Gaetano, 1843-1910 Le tre valli della Sicilia etext22540 Harrison, Harry, 1925- The K-Factor etext22541 Harrison, Harry, 1925- The Misplaced Battleship etext22567 Andrews, Elisha Benjamin, 1844-1917 History of the United States, Volume 2 etext22578 Wiggin, Kate Douglas Smith, 1856-1923 The Girl and the Kingdom etext22603 Russell, John E. Rational Horse-Shoeing etext22606 Koopman, Harry Lyman, 1860-1937 The Booklover and His Books etext22647 Dumont, Júlio A velha disciplina etext22653 Various Punch, or the London Charivari, Vol. 158, 1920-04-25 etext22673 Devereux, Margaret Plantation Sketches etext22674 Ralphson, G. Harvey (George Harvey), 1879-1940 Boy Scouts on Hudson Bay etext22675 Earle, Alice Morse, 1851-1911 Home Life in Colonial Days etext22683 Cresee, Franklin Practical Pointers for Patentees etext22717 Scott, Duncan Campbell Lundy's Lane and Other Poems etext22780 Denon, Vivant, 1747-1825 Voyages dans la basse et la haute Egypte etext22804 Gates, Eleanor, 1875-1951 Apron-Strings etext22822 Williams, Howard, 1837-1931 The Superstitions of Witchcraft etext22842 Mitford, Mary Russell, 1787-1855 The Widow's Dog etext22853 The Epistle of Paul the Apostle to the Galatians etext22904 Widdemer, Margaret, 1884-1978 I've Married Marjorie etext22925 Whipple, Wayne, 1856-1942 The Story of Young Abraham Lincoln etext22953 Austen, Jane, 1775-1817 Lady Susan etext22979 Bailey, Arthur Scott, 1877-1949 The Tale of Peter Mink etext22984 Barrie, J. M. (James Matthew), 1860-1937 Peter Pan etext22989 Various Punch, or the London Charivari, Vol. 146, April 1, 1914 etext23021 Vayreda, Marià, 1853-1903 Sang Nova etext23036 Hancock, H. Irving (Harrie Irving), 1868-1922 Dave Darrin After The Mine Layers etext23135 Remondino, P. C. (Peter Charles), 1846-1926 History of Circumcision from the Earliest Times to the Present etext23159 Shaw, Larry T., 1924-1985 Stairway to the Stars etext23167 Hoffman, Charles Fenno, 1806-1884 The Man In The Reservoir etext23177 Morrow, W. C. (William Chambers), 1853-1923 The Inmate Of The Dungeon etext23199 Duval, Louis François Marin, 1840-1917 Un frère de Nicolas Foucquet: François, Archevêque de Narbonne; Exilé à Alençon etext23237 Janson, Kristofer, 1841-1917 Liv etext23282 Various Notes and Queries, Number 74, March 29, 1851 etext23289 Cazotte, Jacques, 1719-1792 Le Diable amoureux; L'Honneur perdu et recouvré; Rachel ou la belle juive etext23290 Unknown The Dogs' Dinner Party etext23294 etext23299 Crawford, F. Marion (Francis Marion), 1854-1909 Stradella etext23300 Proctor, Richard A. (Richard Anthony), 1837-1888 Half-Hours with the Stars etext23317 Green, John Richard, 1837-1883 History of the English People, Volume IV etext23424 King, Cecil S. The Flag of My Country. Shikéyah Bidah Na'at'a'í etext23448 Brown, Ruth Alberta Heart of Gold etext23457 Anonymous The Keepsake etext23478 American Sunday School Union Self-Denial etext23491 Collingwood, Harry, 1851-1922 The Castaways etext23503 Kingston, William Henry Giles, 1814-1880 In the Wilds of Africa etext23531 Wells, Carolyn, 1862-1942 Marjorie's Busy Days etext23534 Garrett, Randall, 1927-1987 ...Or Your Money Back etext23545 De la Mare, Walter, 1873-1956 Songs of Childhood etext23566 Camo, Sans Miquette baptise sa poupée etext23604 Various Punch, or the London Charivari, Vol. 104, April 15, 1893 etext23672 Schimper, Andreas Franz Wilhelm, 1856-1901 Die epiphytische Vegetation Amerikas etext23679 Ibsen, Henrik, 1828-1906 Baumeister Solneß etext23732 Cross, Victoria, 1868-1952 A Girl of the Klondike etext23770 Windsor, H. H. (Henry Haven), 1859-1924 Mission Furniture etext23779 Douglas, Amanda Minnie, 1831-1916 A Little Girl in Old Quebec etext23872 etext23882 Nourse, Alan Edward, 1928-1992 Gold in the Sky etext23910 Lu, Xixing, 1520-1606 封神演義 etext24074 Raabe, Wilhelm, 1831-1910 La Nigra Galero etext24093 Dixon, Thomas, 1864-1946 The Root of Evil etext24105 Holt, Emily Sarah, 1836-1893 For the Master's Sake etext24190 Caminha, Adolfo Ferreira, 1867-1897 No Paiz dos Yankees etext24214 Storm, Theodor, 1817-1888 Im Brauerhause etext24243 Beaugrand, Honoré, 1848-1906 Six mois dans les Montagnes-Rocheuses etext24244 Henty, G. A. (George Alfred), 1832-1902 A Girl of the Commune etext24250 etext24352 Kohl, Edith Eudora, 1884- Land of the Burnt Thigh etext24381 Karisto, Arvi, 1879-1958 Vapaaviikolla etext24433 Various The Wit and Humor of America, Volume IX (of X) etext24478 Various The Nursery, May 1873, Vol. XIII. etext24481 Groot, G. J. de Schetsen uit Napels en Omgeving etext24516 Fenn, George Manville, 1831-1909 The Crystal Hunters etext24540 Brown, Alice, 1857-1948 Country Neighbors etext24556 Ficke, Arthur Davison, 1883-1945 Mr. Faust etext24559 Northern Nut Growers Association Report of the Proceedings at the Fifth Annual Meeting etext24616 Worley, George Bell's Cathedrals: Southwark Cathedral etext24656 Ontario. Ministry of Education Ontario Teachers' Manuals: Household Management etext24657 Brito, Gomes de, 1843-1923 Noticia de livreiros e impressores de Lisbôa na 2ª metade do seculo XVI etext24673 Wells, Carolyn, 1862-1942 A Phenomenal Fauna etext24687 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 Alroy etext24767 Wallace, Edgar, 1875-1932 Jack O' Judgment etext24775 Optic, Oliver, 1822-1897 Up the River etext24855 etext24858 Bassett, Sara Ware, 1872-1968 The Story of Wool etext24878 Montgomery, L. M. (Lucy Maud), 1874-1942 Lucy Maud Montgomery Short Stories, 1909 to 1922 etext24900 Various The Annual Catalogue: Numb. II. (1738) etext24901 Dryden, John F. (John Fairfield), 1839-1911 The American Type of Isthmian Canal etext24908 Charton, Édouard, 1807-1890 Le Tour du Monde; Sicile etext24918 Fenn, George Manville, 1831-1909 Hollowdell Grange etext24959 Parker, Cornelia Stratton, 1885- Working With the Working Woman etext24998 Becke, Louis, 1855-1913 Concerning "Bully" Hayes etext25018 Vincent, Marvin Richardson, 1834-1922 Amusement: A Force in Christian Training etext25024 Leiber, Fritz, 1910-1992 The Night of the Long Knives etext25075 Carmichael-Smyth, Robert A Letter from Major Robert Carmichael-Smyth to His Friend, the Author of 'The Clockmaker' etext25145 Brazil, Angela, 1868-1947 A Patriotic Schoolgirl etext25146 Anonymous 山水情 etext25152 Hocking, Joseph, 1860-1937 All for a Scrap of Paper etext25167 Sima, Rangju, 4th cent. B.C. 司馬法 etext25213 Mathews, W. S. B. (William Smythe Babcock), 1837-1912 The Masters and their Music etext25216 Various The Atlantic Monthly, Volume 18, No. 108, October, 1866 etext25258 Kann, Réginald, 1876-1925 Formosa, de eerste kolonie van Japan etext25283 De la Roche, Mazo, 1879-1961 Explorers of the Dawn etext25302 Daudet, Alphonse, 1840-1897 Jack etext25407 France, Anatole, 1844-1924 The Merrie Tales of Jacques Tournebroche etext25442 Aunt Friendly's Picture Book. etext25445 Hoffmann, Franz, 1814-1882 Eno ja sisarenpoika etext25480 The Book of Brave Old Ballads etext25508 etext25535 Robertson, J. M. (John Mackinnon), 1856-1933 Montaigne and Shakspere etext25537 Morais, Wenceslau José de Sousa de, 1854-1929 Paisagens da China e do Japão etext25658 etext25669 Elfving, Betty, 1837-1923 Vuosisatojen perintö 1 etext25674 United States. Air Force USAF Fact Sheet 95-03 etext25714 Crane, Walter, 1845-1915 Mother Hubbard, Her Picture Book, etext25727 Burnett, Frances Hodgson, 1849-1924 Vagabondia etext25782 Various The American Missionary — Volume 52, No. 1, March, 1898 etext25798 Ralphson, G. Harvey (George Harvey), 1879-1940 Boy Scouts in the North Sea etext25838 Crawford, F. Marion (Francis Marion), 1854-1909 Fair Margaret etext25913 Pyle, Katharine, 1863-1938 Tales of Folk and Fairies etext25930 The Philippine Islands, 1493-1898 — Volume 28 of 55 etext25936 Zschokke, Heinrich, 1771-1848 Kaleri-orja etext25938 Mainer, R. Henry (Robert Henry), 1878-1965 Nancy McVeigh of the Monk Road etext25944 Stelwagon, Henry Weightman, 1853-1919 Essentials of Diseases of the Skin etext25947 O'Brien, Joseph The Devil etext25949 Halbert, Arthur Le nouveau dictionnaire complet du jargon de l'argot etext25993 Henty, G. A. (George Alfred), 1832-1902 With Cochrane the Dauntless etext26002 Trollope, Anthony, 1815-1882 Linda Tressel etext26080 Dodge, Henry Irving Skinner's Dress Suit etext26109 Garrett, Randall, 1927-1987 Hail to the Chief etext26169 Shakespeare, William, 1564-1616 La Tempesta etext26193 Stratemeyer, Edward, 1862-1930 The Rover Boys in Southern Waters etext26195 Various The American Missionary — Volume 48, No. 7, July, 1894 etext26216 Lermina, Jules, 1839-1915 The Son of Monte-Cristo etext26242 Castaigne, J. André The Bill-Toppers etext26289 Thoreau, Henry David, 1817-1862 Walden etext26344 Burr, Jane Letters of a Dakota Divorcee etext26374 First Unitarian Society of San Francisco. Society for Christian Work The Cookery Blue Book etext26390 etext26399 Abbott, Eleanor Hallowell, 1872-1958 Fairy Prince and Other Stories etext26494 Wilde, Oscar, 1854-1900 Vera etext26526 Hornung, E. W. (Ernest William), 1866-1921 Stingaree etext26562 Parny, Évariste, 1753-1814 Poésies érotiques etext26616 Leslie, Madeline, 1815-1893 Minnie's Pet Dog etext26630 Alger, Horatio, 1832-1899 A Cousin's Conspiracy etext26710 Baudelaire, Charles, 1821-1867 Les épaves de Charles Baudelaire etext26732 Lewis, Sinclair, 1885-1951 Free Air etext26735 Greenwood, Grace, 1823-1904 Stories and Legends of Travel and History, for Children etext26770 Various Notes and Queries, Index of Volume 3, January-June, 1851 etext26833 Niels Ebbesen and Germand Gladenswayne etext26841 Butler, John James, 1867- Successful Stock Speculation etext26845 Lecomte du Noüy, Hermine Oudinot, 1854-1915 Incertidumbre etext26886 Unknown 梁公九諫 etext26909 Bente, F. (Friedrich), 1858-1930 Historical Introductions to the Symbolical Books of the Evangelical Lutheran Church etext26920 Huan, Kuan, 1st cent. B.C. 鹽鐵論 etext26951 Seltzer, Charles Alden, 1875-1942 'Firebrand' Trevison etext26959 La Lastaj Tagoj de Dro L. L. Zamenhof etext26961 Catherine, of Siena, Saint, 1347-1380 Libro della divina dottrina etext27058 Walker, Francis Amasa, 1840-1897 The Indian Question etext27096 Baker, Willard F. The Boy Ranchers on Roaring River etext27133 Garneau, F.-X. (François-Xavier), 1809-1866 Histoire du Canada depuis sa découverte jusqu'à nos jours. Tome III etext27139 Cossar, John D. A Leaf from the Old Forest etext27154 Cobb, Irvin S. (Irvin Shrewsbury), 1876-1944 Fibble, D.D. etext27176 Belloc, Hilaire, 1870-1953 More Beasts (For Worse Children) etext27227 Diana, Manuel Juan, 1814-1881 Kuinka anopista päästään etext27233 Fitch, George Hamlin, 1852-1925 The Critic in the Orient etext27264 Masefield, John, 1878-1967 William Shakespeare etext9842 Aneurin Y Gododin etext27265 Brownell, Gertrude Hall, 1863-1961 The Wagnerian Romances etext27299 Doesticks, Q. K. Philander, 1831-1875 Nothing to Say etext27301 Rhoides, Emmanouel D., 1835-1904 Συριανά Διηγήματα etext27303 Rosny, J.-H., 1856-1940 Les Corneilles etext27337 Ingram, Eleanor M. (Eleanor Marie), 1886-1921 From the Car Behind etext27359 Capuana, Luigi, 1839-1915 Rassegnazione etext27449 Pease, Howard, 1863- Border Ghost Stories etext27455 Chapman, Allen The Radio Boys at the Sending Station etext27500 Campbell, R. J. (Reginald John), 1867-1956 The New Theology etext27551 Abbott, Jacob, 1803-1879 Hannibal etext27576 Various Little Folks (Septemeber 1884) etext27612 Duncan, Norman, 1871-1916 Christmas Eve at Swamp's End etext27614 Various Notes and Queries, Number 219, January 7, 1854 etext27618 Warner, Susan, 1819-1885 The End of a Coil etext27629 Diver, Maud, 1867-1945 Captain Desmond, V.C. etext27704 Buckingham and Chandos, Richard Plantagenet Temple Nugent Brydges Chandos Grenville, Duke of, 1797-1861 Memoirs of the Court and Cabinets of George the Third etext27724 Gautier, Théophile, 1811-1872 The Works of Theophile Gautier, Volume 5 etext27726 Tolstoy, Leo, graf, 1828-1910 Tolstoy on Shakespeare etext27729 Mickiewicz, Adam, 1798-1855 Bajki etext27767 Tompkins, Cydnor Bailey, 1810-1862 Slavery: What it was, what it has done, what it intends to do etext27776 Lloyd, Evan, 1734-1776 The Methodist etext27779 Stuart, Ruth McEnery, 1856-1917 Solomon Crow's Christmas Pockets and Other Tales etext27791 Guerrazzi, Francesco Domenico, 1804-1873 I nuovi tartufi etext27873 Lee, Vernon, 1856-1935 The Spirit of Rome etext27878 Courtilz de Sandras, Gatien, 1644-1712 Mémoires de Mr. d'Artagnan etext27880 Howells, William Dean, 1837-1920 Evening Dress etext27882 Gardner, Monica M. (Monica Mary), 1873-1941 Kościuszko etext27960 Omelka, František, 1904-1960 Hore dědinú etext27981 Reid, Mayne, 1818-1883 The Plant Hunters etext27985 Lester, Pauline Marjorie Dean etext28013 Old New England Traits etext28019 Torrey, Bradford, 1843-1912 Birds in the Bush etext28078 Constant, Benjamin, 1767-1830 Adolphe et De l'esprit de conquête et de l'usurpation etext28090 Ward, C. S. Hints on Driving etext28146 Nietzsche, Friedrich Wilhelm, 1844-1900 On the Future of our Educational Institutions etext28182 Uitlander Een en ander over het dorpsleven in Transvaal etext28191 etext28216 etext28258 Nadar, Félix, 1820-1910 À terre & en l'air... etext28268 Lee, Vernon, 1856-1935 The Countess of Albany etext28281 Villaverde, Cirilo, 1812-1894 Cecilia Valdés o la Loma del Ángel etext28299 Comenius, Johann Amos, 1592-1670 The Orbis Pictus etext28304 Various Harper's Young People, January 13, 1880 etext28309 Bryant, Marguerite Christopher Hibbault, Roadmaker etext28324 Various Supplement To "Punch, Or The London Charivari."—October 14, 1914 etext28335 St. John, Thomas M. (Thomas Matthew), 1865- How Two Boys Made Their Own Electrical Apparatus etext28379 Hale, Edward Everett, 1822-1909 If, Yes and Perhaps etext28428 etext28446 Munn, Charles Clark, 1848-1917 Uncle Terry etext28486 Cole, Everett B., 1918-1977 The Weakling etext28515 Shea, Robert, 1933-1994 The Saracen: Land of the Infidel etext28525 Wells, David Ames, 1828-1898 Het Geld van Robinson Crusoe etext28529 Jones, John, of Dublin An Impartial Narrative of the Most Important Engagements Which Took Place Between His Majesty's Forces and the Rebels, During the Irish Rebellion, 1798. etext28545 etext28588 Various Kertomuksia historiasta ja elämästä : lapsille ja nuorisolle etext28646 Stopher, Chas. A. Solar Stiff etext28701 Jacobs, W. W. (William Wymark), 1863-1943 Stories of W.W. Jacobs etext28706 Miller, Freeman E. (Freeman Edwin), 1864-1951 Oklahoma Sunshine etext28758 Various Philosophical Transactions of the Royal Society - Vol 1 - 1666 etext28760 Galsworthy, John, 1867-1933 The Works of John Galsworthy etext28812 Butler, George Frank, 1857-1921 Every Girl's Book etext28819 Meade, L. T., 1854-1914 The School Queens etext28942 Neilson, William Allan, 1869-1946 The Junior Classics (vol 1) etext28963 Edwardes, Tickner, 1865-1944 Het verhaal van de honingbij etext28972 Becke, Louis, 1855-1913 The Works Of Louis Becke etext29000 Trollope, Anthony, 1815-1882 The Macdermots of Ballycloran etext29001 Richards, Laura Elizabeth Howe, 1850-1943 Five Mice in a Mouse-trap etext29005 etext29022 Mr. Punch Awheel etext29044 Salomons, Annie, 1885-1980 Een Meisje-Studentje etext29108 Various Harper's Young People, August 24, 1880 etext29122 Hall, E. Raymond (Eugene Raymond), 1902-1986 Mammals Obtained by Dr. Curt von Wedel from the Barrier Beach of Tamaulipas, Mexico etext29137 Picón, Jacinto Octavio, 1852-1923 El enemigo etext29147 Barclay, Lorne W. (Lorne Webster), 1885- Educational Work of the Boy Scouts etext29152 Unknown Fifty Glimpses of Washington etext29186 National Security Council (U.S.) National Strategy for Combating Terrorism etext29251 Anonymous Livre d'amours, auquel est relatee la grant amour et façon par laquelle Pamphille peut jouir de Galathee et le moyen qu'en fist la maquerelle etext29254 Drummond, Henry, 1851-1897 The Monkey That Would Not Kill etext29274 Hyatt, Stanley Portal, 1877-1914 People of Position etext29308 Nolan, William F., 1928- Small World etext29331 etext29414 Jenner, Edward, 1749-1823 An Inquiry into the Causes and Effects of the Variolae Vaccinae etext29419 Various The Book of Anecdotes and Budget of Fun; etext29421 Kirby, Jason The Floating Island of Madness etext29423 Various Blackwood's Edinburgh Magazine, Volume 56, Number 350, December 1844 etext29484 Abreu, Francisco Jorge de, 1878-1932 A Revolução Portugueza: O 31 de Janeiro (Porto 1891) etext29520 Onkel Adam, 1804-1889 Tupa Uudentalon veräjällä etext29677 García Gutiérrez, Antonio, 1813-1884 Heath's Modern Language Series: El trovador etext29733 Sanderson, Dwight, 1878-1944 The Farmer and His Community etext29742 Jacobi, Carl Richard, 1908-1997 The Long Voyage etext29747 Ballou, Maturin Murray, 1820-1895 Aztec Land etext29792 Ingraham, Prentiss, 1843-1904 Buffalo Bill's Spy Trailer etext29796 etext29804 Cordeiro, Luciano, 1844-1900 O thesouro do rei Fernando etext29814 Couperus, Louis, 1863-1923 De komedianten etext29885 Laut, Agnes C. (Agnes Christina), 1871-1936 The Cariboo Trail etext29911 Various The Strand Magazine, Volume V, Issue 25, January 1893 etext29930 Various Punch, or the London Charivari, Vol. 98 February 15, 1890 etext29936 Fyfe, Horace Brown, 1918-1997 Flamedown etext29966 Schachner, Nathan, 1895-1955 Slaves of Mercury etext30028 Barbour, A. Maynard (Anna Maynard), -1941 The Award of Justice etext30068 Duhamel du Monceau, Henri-Louis, 1700-1782 Descripçaõ sobre a cultura do Canamo ou Canave etext30090 etext30112 Newville, Leslie J. Development of the Phonograph at Alexander Graham Bell's Volta Laboratory etext30157 Various The Atlantic Monthly, Volume 15, No. 88, February, 1865 etext30258 Colby, Charles W. (Charles William), 1867-1955 The Fighting Governor etext30268 Montesquieu, Charles de Secondat, baron de, 1689-1755 Lettres persanes, tome I etext30308 Garrett, Randall, 1927-1987 Hanging by a Thread etext30322 Godwin, Tom, 1915-1980 The Helpful Hand of God etext30332 Morris, William, 1834-1896 The Earthly Paradise etext30343 Collins, Anthony, 1676-1729 A Discourse Concerning Ridicule and Irony in Writing (1729) etext30392 Beecher, Henry Ward, 1813-1887 Twelve Causes of Dishonesty etext30441 Parloa, Maria, 1843-1909 Canned Fruit, Preserves, and Jellies: Household Methods of Preparation etext30442 Daudet, Alphonse, 1840-1897 Letters from my Windmill etext30464 Magruder, Julia, 1854-1907 A Manifest Destiny etext30481 Mackereth, James Allan, 1871- Ioläus etext30565 Lewis, Arthur M. (Arthur Morrow), 1873-1922 The Art of Lecturing etext30572 Coolidge, Dane, 1873-1940 Silver and Gold etext30585 Mitchell, S. Weir (Silas Weir), 1829-1914 A Diplomatic Adventure etext30604 Du Casse, Albert, 1813-1893 Les Rois Frères de Napoléon Ier etext30714 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson - Swanston Edition Vol. 25 (of 25) etext30740 Moody, Dwight Lyman, 1837-1899 Men of the Bible etext30782 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 Dictionnaire raisonné de l'architecture française du XIe au XVIe siècle (2/9) etext30792 Borrow, George Henry, 1803-1881 Lavengro etext30802 Blackstone, William, Sir, 1723-1780 Commentaries on the Laws of England etext30863 De Mille, James, 1833-1880 A Castle in Spain etext30913 Talleyrand-Périgord, Charles Maurice de, prince de Bénévent, 1754-1838 Mémoires du prince de Talleyrand, Volume III (of V) etext30915 Daudet, Ernest, 1837-1921 Mon frère et moi etext30917 Lamartine, Alphonse de, 1790-1869 Cours Familier de Littérature (Volume 4) etext30923 Daudet, Ernest, 1837-1921 Histoire de l'Émigration pendant la Révolution Française etext31051 Various The Atlantic Monthly, Volume 15, No. 92, June, 1865 etext31070 Secrétan, Charles, 1815-1895 Philosophie de la Liberté (Tome I) etext15926 Various The Bay State Monthly — Volume 2, No. 1, October, 1884 etext31097 etext31125 Harper, Ida Husted, 1851-1931 The Life and Work of Susan B. Anthony (Volume 2 of 2) etext31128 Henty, G. A. (George Alfred), 1832-1902 Facing Death etext31187 Various Harper's New Monthly Magazine, Volume 1, No. 2, July, 1850. etext31200 Barrett, Katharine Ellis The Wide Awake Girls in Winsted etext31233 Ebner-Eschenbach, Marie von, 1830-1916 Rittmeister Brand; Bertram Vogelweid etext31243 Sutherland, George, 1855-1905 Twentieth Century Inventions etext31254 Du Bois, W. E. B. (William Edward Burghardt), 1868-1963 The Conservation of Races etext31367 Pinchot, Gifford, 1865-1946 The Training of a Forester etext31393 Vandercook, Margaret, 1876- The Campfire Girls on the Field of Honor etext31395 Various Railway Adventures and Anecdotes etext31401 Rodokanakis, Platon, 1883-1920? Ο Άγιος Δημήτριος etext31403 Chatzopoulos, Konstantinos, 1868-1920 Απλοί Τρόποι etext31416 Sinclair, May, 1863-1946 The Immortal Moment etext31513 etext31524 McCarter, Margaret Hill, 1860-1938 The Price of the Prairie etext31525 Gilmour, James, 1843-1891 James Gilmour of Mongolia etext31550 Condorcet, Jean-Antoine-Nicolas de Caritat, marquis de, 1743-1794 The First Essay on the Political Rights of Women etext31579 Marryat, Frederick, 1792-1848 Olla Podrida etext31602 Buschlen, J. P. A Canadian Bankclerk etext31661 Merril, Judith Exile from Space etext31670 Furness, William Henry, 1802-1896 A Discourse for the Time, delivered January 4, 1852 in the First Congregational Unitarian Church etext31717 Doesticks, Q. K. Philander, 1831-1875 The Witches of New York etext31807 Bradley, Richard, 1688-1732 The Plague at Marseilles Consider'd etext31810 Smith, Walker C. The Everett massacre etext31878 Williams, William Carlos, 1883-1963 The Tempers etext31902 Lever, Charles James, 1806-1872 Tom Burke Of "Ours", Volume II etext31905 Camara, João da Contos etext31972 Browne, Frederick W. My Service in the U.S. Colored Cavalry etext31973 Monroe, J. Albert The Rhode Island Artillery at the First Battle of Bull Run etext31986 Gold, H. L. (Horace Leonard), 1914-1996 No Charge for Alterations etext32007 Pinkerton, Allan, 1819-1884 The Spiritualists and the Detectives etext32017 Brown, Andrew Company K, Twentieth Regiment, Illinois Volunteer Infantry etext32030 Various Ancient Irish Poetry etext32086 Menpes, Dorothy Japan etext32099 McKenzie, J. H. The Titanic Disaster Poem etext32112 etext32188 Charles I, King of England, 1600-1649 Eikon Basilike etext32225 Finley, Martha, 1828-1909 Elsie at Viamede etext32234 Jókai, Mór, 1825-1904 The Lion of Janina etext32237 Bone, Jesse F. (Jesse Franklin), 1916-1986 Assassin etext32241 Dickens, Charles, 1812-1870 Dickens' Stories About Children Every Child Can Read etext32271 Dahn, Felix, 1834-1912 A Struggle for Rome, v. 1 etext32293 Wilkins, Patrick For Every Man A Reason etext32318 Carroll, Mitchell, 1870-1925 Greek Women etext32377 Dahn, Felix, 1834-1912 A Struggle for Rome, v. 3 etext32381 Pimentel, Alberto, 1849-1925 Christo não volta etext32382 Jewett, Sarah Orne, 1849-1909 Old Friends and New etext32450 Edschmid, Kasimir, 1890-1966 Über den Expressionismus in der Literatur und die neue Dichtung etext32453 Speed, Nell, 1878-1913 Molly Brown's Sophomore Days etext32454 Mayer, Brantz, 1809-1879 Calvert and Penn etext32459 Wordsworth, William, 1770-1850 The Poetical Works of William Wordsworth, Volume IV (of 8) etext32468 Sivia, H. The Last of Mrs. DeBrugh etext32563 Williams, Robert Moore, 1907-1977 The Lost Warship etext32577 Hatcher, Eldridge B. Dorothy Page etext32666 Wilde, Oscar, 1854-1900 Ιδανικός σύζυγος etext32674 Gore, Charles, 1853-1932 St. Paul's Epistle to the Romans, Vol. II etext63 Unknown The Number "e" etext65 Unknown The First 100,000 Prime Numbers etext91 Twain, Mark, 1835-1910 Tom Sawyer Abroad etext102 Twain, Mark, 1835-1910 The Tragedy of Pudd'nhead Wilson etext107 Hardy, Thomas, 1840-1928 Far from the Madding Crowd etext115 United States. Bureau of the Census United States Census Figures Back to 1630 etext121 Austen, Jane, 1775-1817 Northanger Abbey etext164 Verne, Jules, 1828-1905 Vingt mille lieues sous les mers. English etext289 Grahame, Kenneth, 1859-1932 The Wind in the Willows etext359 Olcott, Frances Jenkins, 1872-1963 Good Stories for Holidays etext365 Austin, Mary Hunter, 1868-1934 The Land of Little Rain etext381 Stevenson, Robert Louis, 1850-1894 Memories and Portraits etext19152 Dondel Du Faouëdic, Noémie Le journal d'une pensionnaire en vacances etext429 Stockton, Frank Richard, 1834-1902 The Magic Egg and Other Stories etext546 Stout, Rex, 1886-1975 Under the Andes etext578 Nakashima, Tadashi, 1920- Down with the Cities etext618 Unknown Codex Junius 11 etext635 etext702 Young, Martha, 1868- Somebody's Little Girl etext717 Hearn, Lafcadio, 1850-1904 Chita: a Memory of Last Island etext720 Conrad, Joseph, 1857-1924 Almayer's Folly: a story of an Eastern river etext804 Sterne, Laurence, 1713-1768 A Sentimental Journey Through France and Italy etext815 Tocqueville, Alexis de, 1805-1859 Democracy in America — Volume 1 etext823 The Life of St. Declan of Ardmore etext905 etext911 London, Jack, 1876-1916 Tales of the Fish Patrol etext924 Dickens, Charles, 1812-1870 To Be Read at Dusk etext937 Ryan, Abram Joseph, 1839-1886 Poems: Patriotic, Religious etext950 Appleton, Victor [pseud.] Tom Swift and His Electric Runabout, or, the Speediest Car on the Road etext974 Conrad, Joseph, 1857-1924 The Secret Agent etext989 Spinoza, Benedictus de, 1632-1677 Theologico-Political Treatise — Part 1 etext1001 Dante Alighieri, 1265-1321 Divine Comedy, Longfellow's Translation, Hell etext1021 Lindsay, Vachel, 1879-1931 The Congo and Other Poems etext1037 Venables, Edmund, 1819-1895 The Life of John Bunyan etext1043 McCabe, Joseph, 1867-1955 The Story of Evolution etext1098 Tarkington, Booth, 1869-1946 The Turmoil, a novel etext1099 White, Stewart Edward, 1873-1946 The Riverman etext1131 Shakespeare, William, 1564-1616 The Tragedy of Coriolanus etext1157 etext1219 Meredith, George, 1828-1909 An Essay on comedy and the uses of the comic spirit etext1220 Balzac, Honoré de, 1799-1850 The Atheist's Mass etext1261 Grey, Zane, 1872-1939 Betty Zane etext1341 Cardozo, Benjamin N. (Benjamin Nathan), 1870-1938 The Altruist in Politics etext1427 Balzac, Honoré de, 1799-1850 A Drama on the Seashore etext1569 Balzac, Honoré de, 1799-1850 The Lily of the Valley etext1627 Collins, Wilkie, 1824-1889 The Evil Genius etext1634 Dixon, Thomas, 1864-1946 The Foolish Virgin etext1674 etext1685 Leroux, Gaston, 1868-1927 Mystère de la chambre jaune. English etext1754 Chekhov, Anton Pavlovich, 1860-1904 The Sea-Gull etext1765 Shakespeare, William, 1564-1616 Henry VI etext1791 Shakespeare, William, 1564-1616 All's Well That Ends Well etext1858 Kipling, Rudyard, 1865-1936 Plain Tales from the Hills etext1990 Thackeray, William Makepeace, 1811-1863 The Bedford-Row Conspiracy etext1992 etext1997 Dante Alighieri, 1265-1321 Divine Comedy, Norton's Translation, Paradise etext1999 Huxley, Aldous, 1894-1963 Crome Yellow etext2010 Darwin, Charles, 1809-1882 The Autobiography of Charles Darwin etext2047 The Lock and Key Library etext2059 Fox, John, 1863-1919 The Little Shepherd of Kingdom Come etext2085 Xenophon, 431 BC-350? BC Cyropaedia: the education of Cyrus etext2094 Adams, Samuel, 1722-1803 The Writings of Samuel Adams - Volume 4 etext2113 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 13 etext2131 Herodotus, 480? BC-420? BC An Account of Egypt etext2138 Kipling, Rudyard, 1865-1936 The Day's Work - Part 01 etext2166 Haggard, Henry Rider, 1856-1925 King Solomon's Mines etext2192 Galsworthy, John, 1867-1933 The Dark Flower etext2266 Shakespeare, William, 1564-1616 King Lear etext2297 Harte, Bret, 1836-1902 Snow-Bound at Eagle's etext2369 Cather, Willa Sibert, 1873-1947 One of Ours etext2422 Lang, Andrew, 1844-1912 Introduction to the Compleat Angler etext2430 Borrow, George Henry, 1803-1881 Romantic Ballads, Translated from the Danish; and Miscellaneous Pieces etext2441 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Burgess Animal Book for Children etext2488 Verne, Jules, 1828-1905 Vingt mille lieues sous les mers. English etext2509 Bone, Jesse F. (Jesse Franklin), 1916-1986 The Lani People etext2526 Patañjali The Yoga Sutras of Patanjali: the Book of the Spiritual Man etext2552 Lincoln, Joseph Crosby, 1870-1944 Thankful's Inheritance etext2580 Taine, Hippolyte, 1828-1893 The French Revolution - Volume 3 etext2583 The Value of Zeta(3) to 1,000,000 places etext2636 Sabatini, Rafael, 1875-1950 The Historical Nights' Entertainment etext2684 Galsworthy, John, 1867-1933 Five Tales etext2712 Harte, Bret, 1836-1902 A Drift from Redwood Park etext2725 Richmond, Grace S. (Grace Smith), 1866-1959 Red Pepper Burns etext2740 Darwin, Charles, 1809-1882 More Letters of Charles Darwin — Volume 2 etext2764 Haggard, Henry Rider, 1856-1925 The Mahatma and the Hare etext2768 Thackeray, William Makepeace, 1811-1863 The Paris Sketch Book etext2791 Addison, Joseph, 1672-1719 Essays and Tales etext2794 Harte, Bret, 1836-1902 Found at Blazing Star etext21388 Kingston, William Henry Giles, 1814-1880 Exiled for the Faith etext2814 Joyce, James, 1882-1941 Dubliners etext2845 Doyle, Arthur Conan, Sir, 1859-1930 Sir Nigel etext2850 Josephus, Flavius, 38?-100? The Wars of the Jews; or the history of the destruction of Jerusalem etext2914 Galsworthy, John, 1867-1933 The Mob etext2933 Huxley, Thomas Henry, 1825-1895 On Some Fossil Remains of Man etext2948 Forster, E. M. (Edward Morgan), 1879-1970 Where Angels Fear to Tread etext2971 Casanova, Giacomo, 1725-1798 Memoirs of Casanova — Volume 21: South of France etext3059 Homer, 750? BC-650? BC The Iliad etext3064 Mommsen, Theodor, 1817-1903 Römische Geschichte — Band 5 etext3073 Skinner, Constance Lindsay, 1877-1939 Pioneers of the Old Southwest: a chronicle of the dark and bloody ground etext3086 Maupassant, Guy de, 1850-1893 Original Short Stories — Volume 10 etext3115 Warner, Charles Dudley, 1829-1900 Indeterminate Sentence etext3176 Twain, Mark, 1835-1910 The Innocents Abroad etext3191 Twain, Mark, 1835-1910 Goldsmith's Friend Abroad Again etext3225 Honig, Winfried Mr. Honey's Work Study Dictionary etext3285 Cooper, James Fenimore, 1789-1851 The Deerslayer etext3287 Connor, Ralph, 1860-1937 The Man from Glengarry; a tale of the Ottawa etext3290 etext3294 Sabatini, Rafael, 1875-1950 The Sea-Hawk etext3364 Howells, William Dean, 1837-1920 Dr. Breen's Practice etext3379 Howells, William Dean, 1837-1920 Short Stories and Essays (from Literature and Life) etext3401 Howells, William Dean, 1837-1920 The Elevator etext3596 Montaigne, Michel de, 1533-1592 The Essays of Montaigne — Volume 16 etext3647 Churchill, Winston, 1871-1947 The Dwelling Place of Light — Volume 2 etext3726 Boccaccio, Giovanni, 1313-1375 The Decameron, Volume I etext3749 Rousseau, Jean-Jacques, 1712-1778 Widger's Quotations from Project Gutenberg Edition of Confessions of J. J. Rousseau etext3765 Churchill, Winston, 1871-1947 Coniston — Volume 04 etext3811 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Star of Gettysburg etext3826 Turner, Frederick Jackson, 1861-1932 Rise of the New West, 1819-1829 etext3896 Goldsmith, Lewis, 1763-1846 Memoirs of the Court of St. Cloud (Being secret letters from a gentleman at Paris to a nobleman in London) — Volume 5 etext3906 Rousseau, Jean-Jacques, 1712-1778 The Confessions of J. J. Rousseau — Volume 06 etext3908 Rousseau, Jean-Jacques, 1712-1778 The Confessions of J. J. Rousseau — Volume 08 etext3913 Rousseau, Jean-Jacques, 1712-1778 The Confessions of J. J. Rousseau — Complete etext3984 Bernard, Charles de, 1804-1850 Gerfaut — Volume 4 etext4037 Pater, Walter, 1839-1894 Appreciations, with an Essay on Style etext4096 Calverley, Charles Stuart, 1831-1884 Verses and Translations etext4143 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 24: September/October 1663 etext4158 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 37: August 1665 etext4180 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 57: September 1667 etext4212 Arnold, Matthew, 1822-1888 Culture and Anarchy etext4228 Pater, Walter, 1839-1894 Giordano Bruno etext4236 Yonge, Charlotte Mary, 1823-1901 Dynevor Terrace: or, the clue of life — Volume 2 etext4255 Shakespeare (spurious and doubtful works), 1564-1616 A Yorkshire Tragedy etext4277 Dana, Richard Henry, 1815-1882 Two Years Before the Mast etext4288 Norris, Kathleen Thompson, 1880-1966 The Rich Mrs. Burgoyne etext4318 Library of Congress. Copyright Office Reproduction of Copyrighted Works By Educators and Librarians etext4330 Sturt, Charles, 1795-1869 Two Expeditions into the Interior of Southern Australia — Complete etext4347 Yonge, Charlotte Mary, 1823-1901 My Young Alcides etext4419 Meredith, George, 1828-1909 Sandra Belloni — Volume 7 etext4423 Meredith, George, 1828-1909 Rhoda Fleming — Volume 3 etext4470 Meredith, George, 1828-1909 Diana of the Crossways — Complete etext4472 Meredith, George, 1828-1909 One of Our Conquerors — Volume 2 etext4505 Brentano, Clemens, 1778-1842 Die drei Nüsse etext4519 Wharton, Edith, 1862-1937 The Descent of Man and Other Stories etext4521 Jardine, Frank, 1841-1919 Narrative of the Overland Expedition of the Messrs. Jardine from Rockhampton to Cape York, Northern Queensland etext4552 Grey, Zane, 1872-1939 The Border Legion etext4569 Bertrand, Huguette Mots Rouge Espoir; Poesie etext4619 Arthur, T. S. (Timothy Shay), 1809-1885 Words of Cheer for the Tempted, the Toiling, and the Sorrowing etext4640 Stetson, James B. (James Burgess), 1832-1909 San Francisco During the Eventful Days of April 1906 etext4695 Shelley, Mary Wollstonecraft, 1797-1851 Notes to the Complete Poetical Works of Percy Bysshe Shelley etext4792 Henty, G. A. (George Alfred), 1832-1902 In Freedom's Cause : a Story of Wallace and Bruce etext4839 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1585b etext4852 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1587b etext4884 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce — Complete (1600-1609) etext4898 Motley, John Lothrop, 1814-1877 Life and Death of John of Barneveld, Advocate of Holland : with a view of the primary causes and movements of the Thirty Years' War — Complete (1614-23) etext5029 Cleveland, Grover, 1837-1908 State of the Union Address etext5060 Galsworthy, John, 1867-1933 Six Short Plays etext5082 Verne, Jules, 1828-1905 Le Chateau des Carpathes etext23729 Higginbottom, John, 1788-1876 An Essay on the Application of the Lunar Caustic in the Cure of Certain Wounds and Ulcers etext23734 Various The Idler Magazine, Vol III. May 1893 etext23740 Mikszáth, Kálmán, 1847-1910 Der Zauberkaftan etext5084 etext5109 Donnelly, Ignatius, 1831-1901 Ragnarok : the Age of Fire and Gravel etext5154 Zola, Émile, 1840-1902 La Bête Humaine etext5285 La Fontaine, Jean de, 1621-1695 Tales and Novels of J. de La Fontaine — Volume 11 etext5318 Molière, 1622-1673 Les Precieuses Ridicules etext5395 Churchill, Winston, 1871-1947 The Crisis — Volume 08 etext5488 Ebers, Georg, 1837-1898 The Emperor — Volume 06 etext5567 Ebers, Georg, 1837-1898 Barbara Blomberg — Volume 07 etext5618 Darwin, Florence Henrietta Fisher, Lady, 1864-1920 Six Plays etext5630 Talmage, James Edward, 1862-1933 The Story of "Mormonism" etext5709 Trollope, Anthony, 1815-1882 La Vendée etext5712 James, Juliet Helena Lumbard, 1864- Sculpture of the Exposition Palaces and Courts etext5732 Hope, Laura Lee Bunny Brown and his Sister Sue etext5837 Twain, Mark, 1835-1910 Sketches New and Old, Part 2. etext5920 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 1, Part 18 etext5928 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Part 25 etext5946 Cervantes Saavedra, Miguel de, 1547-1616 The History of Don Quixote, Volume 2, Complete etext5988 Morris, William, 1834-1896 Old French Romances etext6013 McCutcheon, George Barr, 1866-1928 Viola Gwyn etext6051 Haggard, Henry Rider, 1856-1925 Stella Fregelius etext6099 Baudelaire, Charles, 1821-1867 Les Fleurs du Mal etext6127 Stockton, Frank Richard, 1834-1902 The Great Stone of Sardis etext6250 Parker, Gilbert, 1862-1932 Michel and Angele — Volume 1 etext6252 Parker, Gilbert, 1862-1932 Michel and Angele — Volume 3 etext6265 Parker, Gilbert, 1862-1932 The Weavers: a tale of England and Egypt of fifty years ago - Volume 5 etext6404 Rutherford, Mark, 1831-1913 More Pages from a Journal etext6497 Zola, Émile, 1840-1902 L'assommoir etext6508 Wake, William, 1657-1737 The suppressed Gospels and Epistles of the original New Testament of Jesus the Christ, Volume 2, the Protevanglion etext6536 Dostoyevsky, Fyodor, 1821-1881 Notes from the Underground etext6541 London, Jack, 1876-1916 South Sea Tales etext6711 House, Edward Mandell, 1858-1938 Philip Dru Administrator : a Story of Tomorrow 1920 - 1935 etext6823 Roe, Frances Marie Antoinette Mack Army Letters from an Officer's Wife, 1871-1888 etext6826 Withrow, W. H. (William Henry) Neville Trueman, the Pioneer Preacher : a tale of the war of 1812 etext6866 Baldwin, James, 1841-1925 The Story of Siegfried etext6929 Milton, John, 1608-1674 Poemata : Latin, Greek and Italian Poems by John Milton etext6930 Spenser, Edmund, 1552?-1599 The Faerie Queene — Volume 01 etext6944 Scott, Walter, Sir, 1771-1832 The Heart of Mid-Lothian, Complete etext6969 Lysias, 440? BC-380 BC The Orations of Lysias etext7007 Andersen, H. C. (Hans Christian), 1805-1875 True Story of My Life etext7023 Scott, Walter, Sir, 1771-1832 Rob Roy — Volume 01 etext7044 Hegermann-Lindencrone, L. de (Lillie de), 1844-1928 In the Courts of Memory, 1858 1875; from Contemporary Letters etext7051 Kingsley, Charles, 1819-1875 The Good News of God etext7057 Hawthorne, Julian, 1846-1934 David Poindexter's Disappearance, and Other Tales etext7149 White, Henry Kirk, 1785-1806 The Poetical Works of Henry Kirk White : With a Memoir by Sir Harris Nicolas etext7190 Benson, Roy, Jr. The Biography of a Rabbit etext7243 Twain, Mark, 1835-1910 A Connecticut Yankee in King Arthur's Court, Part 2. etext7244 Twain, Mark, 1835-1910 A Connecticut Yankee in King Arthur's Court, Part 3. etext7278 Martin, Theodore, 1816-1909 Horace etext7317 Shen, Kuo, 1031-1095 Meng Xi Bi Tan, volume 1-26 [1031-1095 A.D.] etext7322 Holmes, Oliver Wendell, 1809-1894 Our Hundred Days in Europe etext7333 Einstein, Albert, 1879-1955 $a Äther und Relativitäts-Theorie + Geometrie und Erfahrung $l Englisch etext7367 Guan, Zhong, -645 BC 管子 etext7372 Hawthorne, Nathaniel, 1804-1864 Septimius Felton, or, the Elixir of Life etext7390 Holmes, Oliver Wendell, 1809-1894 The Poetical Works of Oliver Wendell Holmes — Volume 03: Medical Poems etext7466 Hakluyt, Richard, 1552-1616 The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 02 etext7537 Hamsun, Knut, 1859-1952 Shallow Soil etext7577 France, Anatole, 1844-1924 Images from France's The Red Lily etext7615 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Pelham — Volume 01 etext7696 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 A Strange Story — Volume 05 etext7720 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Last of the Barons — Volume 06 etext7730 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Paul Clifford — Volume 03 etext7766 Ouida, 1839-1908 A Dog of Flanders etext7787 Reed, Ivy Kellerman, 1877-1968 A Complete Grammar of Esperanto etext7794 Nexø, Martin Andersen, 1869-1954 Pelle the Conqueror — Volume 04 etext7839 Howells, William Dean, 1837-1920 A Foregone Conclusion etext7885 Celtic Fairy Tales etext7908 etext7913 Smith, John Jay, 1798-1881 American Historical and Literary Antiquities, Part 13. etext7945 Grillparzer, Franz, 1791-1872 Medea etext8012 Anonymous The Bible, King James version, Book 12: 2 Kings etext8033 Anonymous The Bible, King James version, Book 33: Micah etext8034 Anonymous The Bible, King James version, Book 34: Nahum etext8110 Lincoln, Abraham, 1809-1865 Lincoln Letters etext8129 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 A Dreamer's Tales etext8184 Haggard, Henry Rider, 1856-1925 The Ghost Kings etext8329 The Bible, Douay-Rheims, Book 29: Lamentations of Jeremias etext8330 The Bible, Douay-Rheims, Book 30: Baruch etext8403 Benét, Stephen Vincent, 1898-1943 Young People's Pride etext8456 Wells, Carolyn, 1862-1942 Patty Fairfield etext8482 Twain, Mark, 1835-1910 Life on the Mississippi, Part 12. etext8504 Various Scientific American Supplement, No. 358, November 11, 1882 etext8572 De Mille, James, 1833-1880 Cord and Creese etext8702 The Doré Gallery of Bible Illustrations, Volume 2 etext8755 Burroughs, Edgar Rice, 1875-1950 Tarzan and the Jewels of Opar etext8784 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Hell, Volume 06 etext8800 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated etext8842 Weymouth, Richard Francis, 1822-1902 Weymouth New Testament in Modern Speech, 1 Timothy etext8921 Storm, Theodor, 1817-1888 Waldwinkel etext9045 Grillparzer, Franz, 1791-1872 Die Jüdin von Toledo etext9083 Heyse, Paul, 1830-1914 Die Einsamen etext9176 Tennyson, Alfred Tennyson, Baron, 1809-1892 Queen Mary and Harold etext9193 Landis, Frederick The Angel of Lonesome Hill etext9229 Hawthorne, Nathaniel, 1804-1864 The Intelligence Office (From "Mosses from an Old Manse") etext9292 Wharton, Edith, 1862-1937 The Valley of Decision etext9301 MacDonald, George, 1824-1905 Ranald Bannerman's Boyhood etext9303 Butler, Harold Edgeworth, 1878-1951 Post-Augustan Poetry etext9327 Gellert, Christian Fürchtegott, 1715-1769 Die zärtlichen Schwestern etext9330 Seton, Ernest Thompson, 1860-1946 The Biography of a Grizzly etext9336 Conrad, Joseph, 1857-1924 To-morrow etext9339 Conrad, Joseph, 1857-1924 A Personal Record etext9389 Various The Atlantic Monthly, Volume 05, No. 29, March, 1860 etext9398 Donnell, Annie Hamilton, 1862- Gloria and Treeless Street etext9425 Hardy, Thomas, 1840-1928 The Mayor of Casterbridge etext9441 Ward, Humphry, Mrs., 1851-1920 Helbeck of Bannisdale — Volume I etext9510 Various Stories by Modern American Authors etext9585 Whittier, John Greenleaf, 1807-1892 At Sundown etext9634 Ward, Humphry, Mrs., 1851-1920 Sir George Tressady — Volume II etext9651 Riley, James Whitcomb, 1849-1916 A Child-World etext9653 Hope, James Barron, 1829-1887 A Wreath of Virginia Bay Leaves etext9761 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Leila or, the Siege of Granada, Complete etext9766 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Alice, or the Mysteries — Book 04 etext9818 Mathiez, Albert, 1874-1932 Les grandes journées de la Constituante etext9837 Moore, T. Sturge, 1870-1944 Albert Durer etext9902 Fletcher, J. S. (Joseph Smith), 1863-1935 The Middle of Things etext9929 The Great Events by Famous Historians, Volume 12 etext9952 Sholl, Anna McClure The Faery Tales of Weir etext9959 Yonge, Charlotte Mary, 1823-1901 The Armourer's Prentices etext9969 Horatio Love's Final Victory etext10004 Lindsay, Anna Robertson Brown, 1864-1948 The Warriors etext10006 Boccaccio, Giovanni, 1313-1375 La Fiammetta etext10011 Unknown 365 Foreign Dishes etext10040 Lee, Charles A. Alaska Indian Dictionary etext10067 Stevenson, Burton Egbert, 1872-1962 The Mystery of the Boule Cabinet etext10079 Various The Atlantic Monthly, Volume 02, No. 09, July, 1858 etext10118 Dyer, T. F. Thiselton (Thomas Firminger Thiselton), 1848- The Folk-lore of Plants etext10163 Hurgronje, C. Snouck, 1857-1936 Mohammedanism etext10166 Smith, Thomas F. A. What Germany Thinks etext10197 Stoneman, Earnest V. He Was Nailed to the Cross for Me etext10241 Orchestra, Losey's Plaque No. 2 etext10287 Frosini, Pietro (accordion) New York Blues etext10293 Anonymous Relacion historica de los sucesos de la rebelion de Jose Gabriel etext10303 Sanford, Jere Jere Sanford's Yodeling and Whistling Specialty etext10338 Aaronsohn, Alexander, 1888-1948 With the Turks in Palestine etext10352 Johnson, Samuel, 1709-1784 The Works of Samuel Johnson, Volume 11. etext10385 Thiers, Adolphe, 1797-1877 Histoire de la Révolution française, Tome 3 etext29642 Coolidge, Dane, 1873-1940 Hidden Water etext10473 White, William Patterson The Heart of the Range etext10516 Jackson, Helen Hunt, 1830-1885 Bits about Home Matters etext10537 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 The Governors etext10547 Verne, Jules, 1828-1905 Topsy-Turvy etext10549 Child, Lydia Maria Francis, 1802-1880 A Romance of the Republic etext10632 Daniel, Florence The Healthy Life Cook Book, 2d ed. etext10638 Heffner, George H. The Youthful Wanderer etext10666 Various The Public vs. M. Gustave Flaubert etext10673 Hakluyt, Richard, 1552-1616 The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 09 etext10683 Wilberforce, William, 1759-1833 Lettre à l'Empereur Alexandre sur la traite des noirs etext10770 etext10786 Jacobs, W. W. (William Wymark), 1863-1943 Odd Man Out etext10853 Teachers of the School Street Universalist Sunday School, Boston Our Gift etext10854 Various The Atlantic Monthly, Volume 06, No. 36, October, 1860 etext10857 Cox, James, 1851-1901 My Native Land etext10862 Dwyer, James Francis The White Waterfall etext10892 Haggard, Henry Rider, 1856-1925 Dawn etext10924 Taylor, Bayard, 1825-1878 The Lands of the Saracen etext10925 A Collection of Old English Plays, Volume 4 etext10957 Hughes, Rupert, 1872-1956 The Love Affairs of Great Musicians, Volume 1 etext10977 Curwood, James Oliver, 1878-1927 The Grizzly King etext10980 Lady John Russell etext10981 Anonymous Child's New Story Book; etext11036 Lavalley, Gaston, 1834-1922 Légendes Normandes etext11048 Massart, Jean La Presse Clandestine dans la Belgique Occupée etext11062 Hughes, Rupert, 1872-1956 The Dozen from Lakerim etext11112 Various The Mirror of Literature, Amusement, and Instruction etext11130 Strong, James Greek in a Nutshell etext11156 Garis, Howard Roger, 1873-1962 Buddy and Brighteyes Pigg etext11167 Kincaid, C. A. (Charles Augustus), 1870-1954 Deccan Nursery Tales etext11169 Various Punch, or the London Charivari, Volume 153, August 15, 1917 etext11198 Becker, C.H. Christianity and Islam etext11274 American Anti-Slavery Society The Anti-Slavery Examiner, Part 4 of 4 etext11283 Dunsany, Edward John Moreton Drax Plunkett, Baron, 1878-1957 Plays of Gods and Men etext11292 Ilić, Dragutin J., 1858-1926 Секунд вечности, источњачки роман etext11307 Zamenhof, L. L. (Ludwik Lejzer), 1859-1917 El la Biblio etext11315 Gruelle, Johnny, 1880-1938 Friendly Fairies etext11318 Verne, Jules, 1828-1905 De reis om de wereld in tachtig dagen etext11351 Lincoln, Joseph Crosby, 1870-1944 Cape Cod Ballads, and Other Verse etext11476 Jacobs, W. W. (William Wymark), 1863-1943 Husbandry etext11534 Wilson, Harry Leon, 1867-1939 The Lions of the Lord etext11579 Scott, Robert Falcon, 1868-1912 Scott's Last Expedition Volume I etext11592 Children's Hour with Red Riding Hood and Other Stories etext11667 Abbott, Jacob, 1803-1879 Gentle Measures in the Management and Training of the Young etext11676 Schurman, Jacob Gould, 1854-1942 The Balkan Wars: 1912-1913 etext11683 Lillibridge, Will, 1878-1909 Where the Trail Divides etext11753 Michelson, Albert A., 1852-1931 Experimental Determination of the Velocity of Light etext11788 Human Genome Project Chromosome Number 14 etext11812 Library of Congress. Copyright Office U.S. Copyright Renewals, 1955 July - December etext11818 Library of Congress. Copyright Office U.S. Copyright Renewals, 1958 July - December etext11824 Library of Congress. Copyright Office U.S. Copyright Renewals, 1961 July - December etext11834 Library of Congress. Copyright Office U.S. Copyright Renewals, 1966 July - December etext11883 Burt, Emily Rose Entertaining Made Easy etext11931 Naylor, H. R. The Mystery of Monastery Farm etext11936 Herr, Charlotte B. (Charlotte Bronte), 1875-1963 The Wise Mamma Goose etext12000 Burritt, Elihu, 1810-1879 A Walk from London to John O'Groat's etext12019 Mühlbach, L. (Luise), 1814-1873 Queen Hortense etext12022 Dowsett, C. F. (Charles Finch), 1836?-1915 A start in life. A journey across America. Fruit farming in California etext12054 Various The Mirror of Literature, Amusement, and Instruction etext12058 The Mahabharata of Krishna-Dwaipayana Vyasa Translated into English Prose etext12092 Church, R. W. (Richard William), 1815-1890 The Oxford Movement etext12113 Heiberg, Hermann, 1840-1910 Eine vornehme Frau etext12135 L'Abbat, Monsieur The Art of Fencing etext12140 Roman Farm Management etext12145 Wordsworth, William, 1770-1850 The Poetical Works of William Wordsworth — Volume 2 etext12190 Stockton, Frank Richard, 1834-1902 The Adventures of Captain Horn etext12196 Phillips, Henry Wallace, 1869-1930 Red Saunders etext12220 Noyes, Alfred, 1880-1958 Rada etext12267 Bebel, August, 1840-1913 Aus meinem Leben — Erster Teil etext12347 Stoddard, Elizabeth, 1823-1902 The Morgesons etext12400 Headlam, James Wycliffe, 1863-1929 Bismarck and the Foundation of the German Empire etext12454 Kipling, Rudyard, 1865-1936 France at War etext12481 Riis, Jacob A. (Jacob August), 1849-1914 Hero Tales of the Far North etext12494 Chekhov, Anton Pavlovich, 1860-1904 Note-Book of Anton Chekhov etext12515 Various Selected English Letters (XV - XIX Centuries) etext12520 Malet, Lucas, 1852-1931 Deadham Hard etext12567 Various The Mirror of Literature, Amusement, and Instruction etext12577 Cable, George Washington, 1844-1925 Strange True Stories of Louisiana etext12595 Various The Mirror of Literature, Amusement, and Instruction etext12644 Cammaerts, Emile, 1878-1953 Through the Iron Bars etext12658 Bierce, Ambrose, 1842-1914? Shapes of Clay etext12681 Price, Edith Ballinger, 1897-1997 Us and the Bottleman etext12693 Hakluyt, Richard, 1552-1616 The Principal Navigations, Voyages, Traffiques and Discoveries of the English Nation — Volume 11 etext12736 Burton, Richard, 1861-1940 Masters of the English Novel etext12831 Bang, Herman, 1857-1912 Det hvide hus etext12907 Kivi, Aleksis, 1834-1872 Runot; Lyhyet kertomukset etext12996 Aguinaldo, Emilio, 1869-1964 True Version of the Philippine Revolution etext13002 Bryant, Edwin What I Saw in California etext13052 Holland, J. G. (Josiah Gilbert), 1819-1881 The Mistress of the Manse etext13068 Aberigh-Mackay, George Robert, 1848-1881 Twenty-One Days in India; and, the Teapot Series etext13074 Various Punch, or the London Charivari, Volume 100, February 7, 1891 etext13133 Campion, Edmund, 1540-1581 Ten Reasons Proposed to His Adversaries for Disputation in the Name etext13156 Sevilla, Jose N., 1880-1946 Alamat ng Ilang-Ilang etext13159 Balzac, Honoré de, 1799-1850 Lost Illusions etext13219 Brasier, Léon Les Ordres De Chevalerie: les ordres serbes etext13248 McKinlay, John McKinlay's Journal of Exploration in the Interior of Australia etext13266 Louisiana Purchase Exposition Commission Final Report of the Louisiana Purchase Exposition Commission etext13270 Various Punch, Or The London Charivari, Volume 101, July 11, 1891 etext13273 Mumford, Ethel Watts, 1878-1940 Out of the Ashes etext13274 Mason, John A Little Catechism etext13281 Various Punch, or the London Charivari, Volume 100, March 28, 1891 etext1080 Swift, Jonathan, 1667-1745 A Modest Proposal etext13347 Cooke, Arthur Owens Wildflowers of the Farm etext13404 Everett-Green, Evelyn, 1856-1932 Tom Tufton's Travels etext13479 Orbigny, Alcides de Descripción Geografica, Histórica y Estadística de Bolivia, Tomo 1. etext13516 Moncada, D. Francisco de Expedición de Catalanes y Argoneses al Oriente etext13520 Library of the World's Best Literature, Ancient and Modern — Volume 5 etext13566 Aho, Juhani, 1861-1921 Muuan markkinamies etext13567 Mason, A. E. W. (Alfred Edward Woodley), 1865-1948 Clementina etext13582 Davis, Charles E. The Excavations of Roman Baths at Bath etext13600 Various Encyclopaedia Britannica, 11th Edition, Volume 2, Part 1, Slice 1 etext13672 Patmore, Coventry Kersey Dighton, 1823-1896 The Unknown Eros etext13705 Maurik, Justus van, 1846-1904 Op reis en thuis etext13724 Murfree, Mary Noailles, 1850-1922 The Frontiersmen etext13727 Zévaco, Michel, 1860-1918 Les Pardaillan — Tome 06, Les amours du Chico etext13730 Jefferies, Richard, 1848-1887 The Amateur Poacher etext13731 Gale, Zona, 1874-1938 Romance Island etext13737 Le Roy, Albert, 1856-1905 George Sand et ses amis etext13742 The Philippine Islands, 1493-1898 — Volume 08 of 55 etext13756 Anderson, Nephi, 1865-1923 Story of Chester Lawrence etext13774 Dell, Ethel M. (Ethel May), 1881-1939 Rosa Mundi and Other Stories etext13786 Nordby, Conrad Hjalmar, 1867-1900 The Influence of Old Norse Literature on English Literature etext13881 Clive, Catherine, 1711-1785 The Case of Mrs. Clive etext13935 Various The Mirror of Literature, Amusement, and Instruction etext13954 Various Punch, or the London Charivari, Volume 152, June 27, 1917 etext13988 Spencer, Ichabod S. The Religious Duty of Obedience to Law etext13990 American Anti-Slavery Society The Fugitive Slave Law and Its Victims etext14004 Browne, Francis F. (Francis Fisher), 1843-1913 The Every-day Life of Abraham Lincoln etext14026 Swedenborg, Emanuel, 1688-1772 Spiritual Life and the Word of God etext14028 Gerland, Georg Karl Cornelius, 1833-1921 Über das Aussterben der Naturvölker etext14113 O'Squarr, Charles-M. Flor Les fantômes etext14121 Kloos, A. Langs den Congo tot Brazzaville etext14147 Various Dew Drops, Vol. 37, No. 34, August 23, 1914 etext14157 Flaubert, Gustave, 1821-1880 Bouvard et Pécuchet etext14204 Klein, Charles, 1867-1915 The Lion and The Mouse etext14228 Irving, Washington, 1783-1859 Bracebridge Hall etext14247 Ségur, Sophie, comtesse de, 1799-1874 Nouveaux contes de fées pour les petits enfants etext14259 Lévi, Eliphas, 1810-1875 Le sorcier de Meudon etext14280 Finley, Martha, 1828-1909 Holidays at Roselands etext14309 Guizot, Pauline, 1773-1827 Nouvelles et Contes pour la jeunesse etext14375 Burgess, Thornton W. (Thornton Waldo), 1874-1965 The Adventures of Grandfather Frog etext14384 O'Brien, Frederick, 1869-1932 White Shadows in the South Seas etext14385 Leino, Eino, 1878-1926 Työn orja etext14390 Various Punch, Or The London Charivari, Volume 102, April 2, 1892 etext14392 Wood, T. Martin George Du Maurier, the Satirist of the Victorians etext14426 Churchill, Winston, 1874-1965 London to Ladysmith via Pretoria etext14569 Pakkala, Teuvo, 1862-1925 Lapsuuteni muistoja etext14593 Kielland, Alexander Lange, 1849-1906 Norse Tales and Sketches etext14623 Hope, Laura Lee Six Little Bunkers at Grandma Bell's etext14629 Snowden, James H. (James Henry), 1852-1936 A Wonderful Night; An Interpretation Of Christmas etext14643 Willard, J. H. The Farmer Boy; the Story of Jacob etext14686 Ibsen, Henrik, 1828-1906 Hærmændene på Helgeland etext14728 Casement, Roger, 1864-1916 The Crime Against Europe etext14763 Bindloss, Harold, 1866-1945 Winston of the Prairie etext14785 Knapp, Shepherd Down the Chimney etext14828 Faucher de Saint-Maurice, 1844-1897 Les îles etext14879 Burleigh, Cyril The Hilltop Boys on Lost Island etext14885 Cholmondeley, Mary, 1859-1925 Red Pottage etext14950 Kauppis-Heikki, 1862-1920 Kirottua työtä etext14972 Symonds, John Addington, 1840-1893 Sketches and Studies in Italy and Greece, First Series etext14991 Various Punch, or the London Charivari, Volume 103, July 9, 1892 etext15070 Schleich, Carl Ludwig Von der Seele etext15113 Renan, Ernest, 1823-1892 Vie de Jésus etext15125 Martin, W. A. P. (William Alexander Parsons), 1827-1916 The Awakening of China etext15132 Brown, William Wells, 1816?-1884 The Narrative of William W. Brown, a Fugitive Slave etext15176 Coppee, Henry English Literature, Considered as an Interpreter of English History etext15180 Rice, Alice Caldwell Hegan, 1870-1942 The Honorable Percival etext15214 Holland, J. G. (Josiah Gilbert), 1819-1881 Sevenoaks etext4429 Meredith, George, 1828-1909 Evan Harrington — Volume 3 etext15239 Sand, George, 1804-1876 Spiridion etext15255 Eliot, Charles, Sir, 1862-1931 Hinduism and Buddhism, An Historical Sketch, Vol. 1 etext15281 Garis, Howard Roger, 1873-1962 Uncle Wiggily's Adventures etext15380 Johnston, Harry Hamilton, Sir, 1858-1927 Mrs. Warren's Daughter etext15383 Münsterberg, Hugo, 1863-1916 The Photoplay etext15392 American Eloquence, Volume 2 etext15432 De la Mare, Walter, 1873-1956 Henry Brocken etext15479 Various New York Times Current History; The European War, Vol 2, No. 2, May, 1915 etext15508 Johnson, Allen, 1870-1931 Stephen A. Douglas etext15522 Marquis, Thomas Guthrie, 1864-1936 The War Chief of the Ottawas : A chronicle of the Pontiac war etext15527 Eyles, M. Leonora, 1889-1960 Captivity etext15549 Various Chambers's Edinburgh Journal, No. 424 etext15561 Mann, Arthur M. The Boer in Peace and War etext15568 Troward, T. (Thomas), 1847-1916 The Law and the Word etext15577 Vail, Henry Hobart, 1839-1925 A History of the McGuffey Readers etext15583 Ingraham, Prentiss, 1843-1904 Beadle's Boy's Library of Sport, Story and Adventure, Vol. I, No. 1. etext15593 Girardin, Jules, 1832-1888 Les aventures de M. Colin-Tampon etext15610 First Love (Little Blue Book #1195) etext15623 Winship, A. E. Jukes-Edwards etext15659 Fassett, James H. (James Hiram), 1869-1930 The Beacon Second Reader etext15666 Various The American Missionary — Volume 48, No. 10, October, 1894 etext15672 Gibbs, George, 1815-1873 Dictionary of the Chinook Jargon, or, Trade Language of Oregon etext15676 Malmberg, Aino, 1865-1933 Tien ohesta tempomia etext15861 Goodsell, Daniel A. The Things Which Remain etext15934 Claretie, Jules, 1840-1913 His Excellency the Minister etext15960 Disraeli, Isaac, 1766-1848 Literary Character of Men of Genius etext15961 Hall, S. C., Mrs., 1800-1881 Turns of Fortune etext15985 Jewett, Sarah Orne, 1849-1909 Deephaven and Selected Stories & Sketches etext16013 Carleton, William, 1794-1869 The Station; The Party Fight And Funeral; The Lough Derg Pilgrim etext16018 Carleton, William, 1794-1869 The Black Prophet: A Tale Of Irish Famine etext16044 Swedenborg, Emanuel, 1688-1772 Earths In Our Solar System Which Are Called Planets, and Earths In The Starry Heaven Their Inhabitants, And The Spirits And Angels There etext16051 MacGrath, Harold, 1871-1932 The Voice in the Fog etext16094 Southworth, Emma Dorothy Eliza Nevitte, 1819-1899 For Woman's Love etext16100 Crawford, F. Marion (Francis Marion), 1854-1909 Marietta etext16124 Various Lippincott's Magazine of Popular Literature and Science, Vol. XVI., December, 1880. etext16126 Various English Satires etext16133 The Philippine Islands, 1493-1898 — Volume 20 of 55 etext16134 Van Dyke, Henry, 1852-1933 The First Christmas Tree etext16390 May, Sophie, 1833-1906 Little Prudy's Dotty Dimple etext16420 Puttenham, George, -1590 The Arte of English Poesie etext16426 Lumholtz, Carl, 1851-1922 Unknown Mexico, Volume 1 (of 2) etext16428 Dinis, Júlio, 1839-1871 Os fidalgos da Casa Mourisca etext16492 Darien, Georges, 1862-1921 Biribi etext16537 Various Myths That Every Child Should Know etext16566 Baum, L. Frank (Lyman Frank), 1856-1919 Aunt Jane's Nieces Abroad etext16592 Various Punch, or the London Charivari, Volume 159, July 14th, 1920 etext16732 Familiar Quotations etext16763 Smith, Wade C. "Say Fellows—" etext16824 Dostoyevsky, Fyodor, 1821-1881 Les possédés etext16832 Wallace, Lewis, 1827-1905 Ben-Hur etext16847 Eliot, Charles, Sir, 1862-1931 Hinduism and Buddhism, An Historical Sketch, Vol. 3 etext16848 Daudet, Alphonse, 1840-1897 Numa Roumestan etext16863 Stuart, Arabella W. Lives of the Three Mrs. Judsons etext16981 Ransome, Arthur, 1884-1967 Old Peter's Russian Tales etext17001 Lehmer, Derrick Norman, 1868-1938 An Elementary Course in Synthetic Projective Geometry etext17049 Ober, Frederick Albion, 1849-1913 "Old Put" The Patriot etext17092 Ibsen, Henrik, 1828-1906 Inger, Östråtin rouva etext17111 Bergson, Henri, 1859-1941 The Meaning of the War etext17112 Various Many Thoughts of Many Minds etext17118 Hope, Laura Lee The Moving Picture Girls Under the Palms etext17170 Cushing, Frank Hamilton, 1857-1900 A Study of Pueblo Pottery as Illustrative of Zuñi Culture Growth. etext17213 Blunt, Wilfred Scawen, 1840-1922 The Future of Islam etext17272 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 A People's Man etext17351 Cheney, Harriet Vaughan, 1796-1889 The Rivals of Acadia etext8899 Glyn, Elinor, 1864-1943 Three Weeks etext17401 Wells, H. G. (Herbert George), 1866-1946 The Time Machine etext17407 Whitelocke, Bulstrode, 1605-1675 A Journal of the Swedish Embassy in the Years 1653 and 1654, Vol II. etext17421 Haydn, Joseph, 1732-1809 Emperor Quartet op.76 no.3., 2nd movement etext17432 etext17563 Chatterton, E. Keble (Edward Keble), 1878-1944 King's Cutters and Smugglers 1700-1855 etext17568 Unknown The Arctic Queen etext17574 Woolner, Thomas, 1825-1892 My Beautiful Lady. Nelly Dale etext17606 Mason, Otis T. Throwing-sticks in the National Museum etext17618 Suffling, Ernest R. (Ernest Richard), 1855-1911 Jethou etext17625 Luckiesh, Matthew, 1883-1967 Artificial Light etext17637 etext17641 Leibniz, Gottfried Wilhelm, Freiherr von, 1646-1716 La monadologie (1909) etext17752 Lermina, Jules, 1839-1915 La deux fois morte etext17771 Santayana, George, 1863-1952 Winds Of Doctrine etext17773 Various Slavery's Passed Away and Other Songs etext17784 Tynan, Katharine, 1861-1931 The Story of Bawn etext17789 Parrish, Randall, 1858-1923 Molly McDonald etext17793 Freeman, Mary Eleanor Wilkins, 1852-1930 The Debtor etext17806 King, Charles, 1844-1933 Foes in Ambush etext17811 Flower, Jessie Graham [pseud.], -1931 Grace Harlowe's Junior Year at High School etext17821 Glyn, Elinor, 1864-1943 Red Hair etext17825 Johnston, Annie F. (Annie Fellows), 1863-1931 The Legend of the Bleeding-heart etext17839 Sophocles, 495? BC-406 BC Οιδίπους Τύραννος etext17887 Freeman, Mary Eleanor Wilkins, 1852-1930 The Green Door etext17955 Abrams, Alex St. Clair The Trials of the Soldier's Wife etext17957 Longinus, 1st cent. On the Sublime etext18022 Seawell, Molly Elliot, 1860-1916 Betty at Fort Blizzard etext18036 Skrine, John Huntley, 1848-1923 Uppingham by the Sea etext18063 Maclaren, Ian, 1850-1907 Rabbi Saunderson etext18070 Gregory, Lady, 1852-1932 Poets and Dreamers etext18075 Sand, George, 1804-1876 Mademoiselle La Quintinie etext18098 Rousselet, Louis, 1845-1929 Schetsen uit de Indische Vorstenlanden etext18153 Aimwell, Walter, 1822-1859 Oscar etext18214 Maeterlinck, Maurice, 1862-1949 Our Friend the Dog etext18228 Queirós, José Maria Eça de, 1845-1900 El Mandarín etext18253 Potts, Thomas, fl. 1612-1618 Discovery of Witches etext18272 Tavaststjerna, Karl August, 1860-1898 Valikoima runoelmia etext18273 Cole, Fay-Cooper, 1881-1961 The Wild Tribes of Davao District, Mindanao etext18320 Calkins, Gary N. (Gary Nathan), 1869-1943 Marine Protozoa from Woods Hole etext18336 Buck, Charles Neville, 1879-1930 The Lighted Match etext18365 Donászy, Ferenc, 1858-1923 Az arany szalamandra etext18367 Aulnoy, Madame d' (Marie-Catherine), 1651?-1705 Contes, Tome I etext18440 Read, Carveth, 1848-1931 Logic etext18470 etext18487 Daniel, Florence Food Remedies etext18505 Brazil, Angela, 1868-1947 A Popular Schoolgirl etext18510 Runciman, James, 1852-1891 The Chequers etext18525 etext18576 McIntyre, Margaret A. The Cave Boy of the Age of Stone etext18657 Ibsen, Henrik, 1828-1906 Love's Comedy etext18659 Wilson, S. J. The Seventh Manchesters etext18666 Meade, L. T., 1854-1914 Polly etext18673 Swinburne, Algernon Charles, 1837-1909 Astrophel and Other Poems etext18679 Lang, Andrew, 1844-1912 Historical Mysteries etext18727 Lavallée, Théophile, 1804-1865 Histoire de Paris depuis le temps des Gaulois jusqu'à nos jours - II etext18744 Leino, Eino, 1878-1926 Tuonelan joutsen; Sota valosta; Johan Wilhelm etext18775 Various Chambers's Edinburgh Journal, No. 435 etext18785 Various Transactions of the American Society of Civil Engineers, Vol. LXX, Dec. 1910 etext18849 Sestier, Jules M. La piraterie dans l'antiquité etext18871 Swinburne, Algernon Charles, 1837-1909 A Channel Passage and Other Poems etext18894 Evans, Larry, -1925 Then I'll Come Back to You etext18901 Burbank, Emily Woman as Decoration etext18930 Anderson, Rufus, 1796-1880 History Of The Missions Of The American Board Of Commissioners For Foreign Missions To The Oriental Churches, Volume I. etext19019 Robertson, W. G. Aitchison (William George Aitchison ) Aids to Forensic Medicine and Toxicology etext19094 Chesterton, G. K. (Gilbert Keith), 1874-1936 Magic etext19097 Anonymous The Young Carpenters of Freiberg etext19119 Bloomfield, Maurice, 1855-1928 Cerberus, The Dog of Hades etext19126 Raemaekers, Louis, 1869-1956 Raemaekers' Cartoons etext19154 Henty, G. A. (George Alfred), 1832-1902 With Lee in Virginia etext19162 Walsh, James Morgan, 1897-1952 The Lost Valley etext19167 Montgomery, Frances Trego, 1858-1925 Billy Whiskers etext19208 Macfadden, Bernarr, 1868-1955 Vitality Supreme etext19213 Hume, David, 1711-1776 The History of England in Three Volumes, Vol.I., Part C. etext19225 Comstock, Harriet T. (Harriet Theresa), 1860- Joyce of the North Woods etext19262 Various The Brochure Series of Architectural Illustration, Volume 01, No. 04, April 1895 etext19263 Labouchere, Henry, 1831-1912 Diary of the Besieged Resident in Paris etext19266 Deschanel, Emile, 1819-1904 Etudes sur Aristophane etext19361 The Babes in the Wood etext19411 Garvice, Charles, -1920 The Woman's Way etext19441 etext19448 Harris, Joseph, 1828-1892 Talks on Manures etext19471 Del Rey, Lester, 1915-1993 Badge of Infamy etext19526 Rockwell, Carey, [pseud.] Stand by for Mars! etext19548 Hoar, George Frisbie, 1826-1904 Autobiography of Seventy Years, Vol. 1-2 etext19549 Preyer, William T., 1841-1897 The Mind of the Child, Part II etext19612 Harnack, Adolph, 1851-1930 History of Dogma, Volume 1 (of 7) etext19649 Tracy, Louis, 1863-1928 The Captain of the Kansas etext19731 Rockwood, Roy Under the Ocean to the South Pole etext19788 Denslow, W. W. (William Wallace), 1856-1915 Denslow's Three Bears etext19824 Ford, Sewell, 1868-1946 Horses Nine etext19925 Andrews, William, 1848-1908 At the Sign of the Barber's Pole etext19928 King, Charles, 1844-1933 Sunset Pass etext19977 Quiller-Couch, Arthur Thomas, Sir, 1863-1944 The Blue Pavilions etext20002 Disraeli, Benjamin, Earl of Beaconsfield, 1804-1881 Alroy etext20020 Anonymous Tienhaarassa etext20047 Bramah, Ernest, 1869?-1942 Four Max Carrados Detective Stories etext20114 Goethe, Johann Wolfgang von, 1749-1832 Goethen runoja etext20154 Campbell, John Wood, 1910-1971 Invaders from the Infinite etext20168 Robinson, Solon, 1803-1880 Guano etext20179 Brant, Sebastian, 1458-1521 The Ship of Fools, Volume 1 etext20221 Northern Nut Growers Association Report of the Proceedings at the Twenty-Fourth Annual Meeting etext20228 Rizal, José, 1861-1896 Noli Me Tangere etext20269 Huxley, Thomas Henry, 1825-1895 Has a Frog a Soul? etext20284 Rydberg, Viktor, 1828-1895 Uusi Grottelaulu etext20306 etext20338 Various Punch, or the London Charivari, Volume 103, December 24, 1892 etext20358 Webster, Jean, 1876-1916 Jerry Junior etext20369 Various Notes and Queries, Number 190, June 18, 1853 etext20381 Bedford, H. Louisa The Village by the River etext20384 Harney, George S. David Lannarck, Midget etext20418 Laut, Agnes C. (Agnes Christina), 1871-1936 Lords of the North etext20438 Stuart, Ruth McEnery, 1856-1917 Moriah's Mourning and Other Half-Hour Sketches etext20583 Russell, R. V. (Robert Vane), 1873-1915 The Tribes and Castes of the Central Provinces of India—Volume I (of IV) etext20589 Ewers, Hanns Heinz, 1871-1943 Edgar Allan Poe etext20600 Bennett, Arnold, 1867-1931 The Card, a Story of Adventure in the Five Towns etext20631 Zangwill, Israel, 1864-1926 Chosen Peoples etext20634 Wynne, Ellis, 1671-1734 The Sleeping Bard etext20637 Schlippenbach, Ulrich von Liederkranz etext20658 Font, Claudi Planas i En Pere i altres contes etext20703 Colet, Louise Enfances célèbres etext20726 Piper, H. Beam, 1904-1964 A Slave is a Slave etext20730 Brazil, Angela, 1868-1947 For the Sake of the School etext20744 Lockwood, Lewis C. (Lewis Conger), 1815-1904 Mary S. Peake etext20766 Bangs, John Kendrick, 1862-1922 The Autobiography of Methuselah etext20773 Shakespeare, William, 1564-1616 Le marchand de Venise etext20799 Suomalainen, Samuli, 1850-1907 Novelleja II etext20819 Weaver, George Sumner Aims and Aids for Girls and Young Women etext20895 Rovigo, Duc de Mémoires du duc de Rovigo, pour servir à l'histoire de l'empereur Napoléon etext20950 Ohnet, Georges, 1848-1918 La Grande Marnière etext21002 Jefferson, Thomas, 1743-1826 The Writings of Thomas Jefferson etext21010 Various Chambers's Edinburgh Journal, No. 444 etext21027 Gurney, William Brodie The Trial of Charles Random de Berenger, Sir Thomas Cochrane, etext21056 Rowlands, Walter Among the Great Masters of Music etext21146 Benchley, Robert, 1889-1945 Love Conquers All etext21196 Various Little Masterpieces of American Wit and Humor etext21232 Walton, Amy, 1848-1899 The Hawthorns etext21237 Reid, Mayne, 1818-1883 The Bush Boys etext21305 Fenn, George Manville, 1831-1909 A Dash from Diamond City etext21315 Fenn, George Manville, 1831-1909 The King's Sons etext21394 Birmingham, George A., 1865-1950 Priscilla's Spies etext21438 Haggard, Henry Rider, 1856-1925 King Solomon's Mines etext21478 Kingston, William Henry Giles, 1814-1880 Snow Shoes and Canoes etext21487 Kingston, William Henry Giles, 1814-1880 The Boy who sailed with Blake etext21530 Wallace, Edgar, 1875-1932 The Angel of Terror etext21547 Turle, Frederica J. The Gap in the Fence etext21577 Marryat, Frederick, 1792-1848 Peter Simple etext21615 Disraeli, Isaac, 1766-1848 Curiosities of Literature, Vol. 1 etext21644 Moorhouse, Hopkins Every Man for Himself etext21660 Cheyney, Edward Potts, 1861-1947 An Introduction to the Industrial and Social History of England etext21712 Ballantyne, R. M. (Robert Michael), 1825-1894 The Young Fur Traders etext21720 Ballantyne, R. M. (Robert Michael), 1825-1894 Charlie to the Rescue etext21761 Lloyd, C. G. Synopsis of Some Genera of the Large Pyrenomycetes etext21767 Craik, Dinah Maria Mulock, 1826-1887 Agatha's Husband etext21800 Vondel, Joost van den, 1587-1679 De complete werken van Joost van Vondel etext21832 Finlay, Roger Thompson The Wonder Island Boys: Conquest of the Savages etext21846 Stoddard, William Osborn, 1835-1925 Crowded Out o' Crofield etext21886 Johnston, Mary, 1870-1936 Prisoners of Hope etext21940 Boylesve, René, 1867-1926 Le parfum des îles Borromées etext21976 Stevens, George T. Three Years in the Sixth Corps etext22012 Stratemeyer, Edward, 1862-1930 The Rover Boys on a Hunt etext22016 Franklin, Benjamin, 1706-1790 Vie de Benjamin Franklin, écrite par lui-même - Tome II etext22025 Anonymous Costituzione della Repubblica Italiana e Statuti Costituzionali del Regno d'Italia etext22028 Cruttwell, C. R. M. F. (Charles Robert Mowbray Fraser), 1887-1941 The War Service of the 1/4 Royal Berkshire Regiment (T. F.) etext22033 Rolt-Wheeler, Francis, 1876-1960 Plotting in Pirate Seas etext22069 Maupassant, Guy de, 1850-1893 The Works of Guy de Maupassant, Volume VIII. etext22222 Crowther, Mary Owens How to Write Letters (Formerly The Book of Letters) etext22258 Crellin, H. N. Tales of the Caliph etext22284 Morrow, Honoré, 1880-1940 The Forbidden Trail etext22299 Arriaga, Manuel de, 1840-1917 Cantos Sagrados etext22328 Raine, William MacLeod, 1871-1954 Oh, You Tex! etext22331 Studd, C. T. The Chocolate Soldier etext14645 Grant, Robert, 1852-1940 Unleavened Bread etext22383 Villey, Pierre, 1879-1933 Montaigne et François Bacon etext22451 Alcott, Louisa May, 1832-1888 Jack and Jill etext22466 DeKy, Thornton The Ultimate Experiment etext22551 Gautier, Théophile, 1811-1872 Ménagerie intime etext22691 Various Punch, or the London Charivari, Vol. 104, March 11, 1893 etext22695 Terence The Comedies of Terence etext22700 Palliser, Bury, Mrs., 1805-1878 Brittany & Its Byways etext22721 Northern Nut Growers Association Report of the Proceedings at the Thirty-Eighth Annual Meeting etext22741 Brillat-Savarin, Jean Anthelme Physiologie du goût etext22774 Gillie, E. A. Barbara in Brittany etext22783 Various The New England Magazine Volume 1, No. 3, March, 1886 etext22800 Pennell, Elizabeth Robins, 1855-1936 Mary Wollstonecraft etext22834 etext22856 The First Epistle of Paul the Apostle to the Corinthians etext22911 Jacobs, Emilie Van Beil, 1875- Where We Live etext22941 Various Punch, or the London Charivari, Vol. 150, May 3, 1916 etext22980 Ballantyne, R. M. (Robert Michael), 1825-1894 The Golden Dream etext23041 Shakespeare, William, 1564-1616 The Works of William Shakespeare [Cambridge Edition] [9 vols.] etext23044 Shakespeare, William, 1564-1616 The Merry Wives of Windsor etext23122 Holt, Emily Sarah, 1836-1893 The Well in the Desert etext23143 Hilary, Saint, Bishop of Poitiers, -367? Sancti Hilarii: Epistola Ad Abram Filiam Suam (Circa Finem Anni 558 Missa.) etext23214 Stanwood, Avis A. Burnham Fostina Woodman, the Wonderful Adventurer etext23215 Read, Opie Percival, 1852-1939 Old Ebenezer etext23219 France, Anatole, 1844-1924 Putois etext23284 Power, Tyrone, 1797-1841 Impressions of America etext23293 Lawrence, Robert Means, 1847-1935 Primitive Psycho-Therapy and Quackery etext23337 Ing, Dean Charles Tight Squeeze etext23340 Townsend, George Alfred, 1841-1914 Campaigns of a Non-Combatant, etext23360 Aldrich, Thomas Bailey, 1836-1907 Our New Neighbors At Ponkapog etext23372 Ballantyne, R. M. (Robert Michael), 1825-1894 The Buffalo Runners etext23494 etext23502 Fenn, George Manville, 1831-1909 The New Forest Spy etext23601 Connolly, James B. (James Brendan), 1868-1957 The U-boat hunters etext23614 etext23633 Murfree, Mary Noailles, 1850-1922 His "Day In Court" etext23714 Burroughs, John, 1837-1921 Squirrels and other Fur-Bearers etext23824 Luo, Guanzhong, 1330?-1400? 說唐 etext23836 Brown, Arthur, Rev. The French Prisoners of Norman Cross etext23856 Fox, Frances Barton, 1887- The Heart of Arethusa etext23870 Lakeland, R. The Teesdale Angler etext23927 King, Charles, 1844-1933 A Tame Surrender, A Story of The Chicago Strike etext23977 Craik, Dinah Maria Mulock, 1826-1887 The Little Lame Prince etext24068 Anonymous 燕丹子 etext24107 Stoddard, Lothrop, 1883-1950 The New World of Islam etext24125 Hubbard, L. P. A Little Book for A Little Cook etext24180 Cole, Everett B., 1918-1977 Alarm Clock etext24202 Dos Passos, John, 1896-1970 One Man's Initiation—1917 etext24220 Garland, Hamlin, 1860-1940 The Tyranny of the Dark etext24245 Costa, José Fernandes, 1848-1920 A viagem da Índia etext24291 Pascoais, Teixeira de, 1877-1952 O doido e a morte etext24299 Graydon, William Murray, 1864-1946 The Cryptogram etext24307 etext24347 Martin, George Madden, 1866-1936 Emmy Lou etext24398 Various Punch, or the London Charivari, Vol. 104, April 22, 1893 etext24423 Snow, S. T. Fifty years with the Revere Copper Co. etext24438 Force, M. F. (Manning Ferguson), 1824-1899 From Fort Henry to Corinth etext24471 Billings, E. R. Tobacco; Its History, Varieties, Culture, Manufacture and Commerce etext24476 Various The Nursery, March 1873, Vol. XIII. etext24493 Colum, Padraic, 1881-1972 The Boy Who Knew What The Birds Said etext24538 French, John Denton Pinkstone, Earl of Ypres, 1852-1925 1914 etext24549 Arnault, A.-V. (Antoine-Vincent), 1766-1834 Souvenirs d'un sexagénaire, Tome IV etext24555 Tussac, F.-R. de (Fr.-Richard) Cri des colons contre un ouvrage de M. l'évêque et sénateur Grégoire, ayant pour titre 'De la Littérature des nègres' etext24591 Black, Joseph, 1728-1799 Experiments upon magnesia alba, Quicklime, and some other Alcaline Substances etext24638 Kahdeksantoista runoniekkaa etext24661 Mota, João Xavier da, 1850-1895 Camilleana etext24679 Collier, Ada Langworthy, 1843- Lilith etext24713 Stockton, Frank Richard, 1834-1902 Stories of New Jersey etext24737 Colum, Padraic, 1881-1972 The Children of Odin etext24773 Verne, Jules, 1828-1905 Wonderlijke avonturen van een Chinees, gevolgd door Muiterij aan boord der 'Bounty' etext24819 Sangster, Charles, 1822-1893 Hesperus etext24821 Fenn, George Manville, 1831-1909 Diamond Dyke etext24830 Haggard, Henry Rider, 1856-1925 Beatrice etext24834 Anonymous The Wonders of a Toy Shop etext24845 Araújo, Joaquim de, 1858-1917 A estatua do poeta etext24955 Teichner, Albert Man Made etext24963 Robertson, Margaret M. (Margaret Murray), 1821-1897 Allison Bain, or, etext24995 Becke, Louis, 1855-1913 The Americans In The South Seas etext25008 Ogilvie, John, 1732-1813 An Essay on the Lyric Poetry of the Ancients etext25031 Carryl, Charles E. (Charles Edward), 1841-1920 Davy and The Goblin etext25066 Various Blackwood's Edinburgh Magazine, Volume 56, Number 348 etext25067 Gallun, Raymond Z., 1911-1994 The Planet Strappers etext25116 Various The New England Magazine, Volume 1, No. 5, Bay State Monthly, Volume 4, No. 5, May, 1886 etext25193 Various Blackwood's Edinburgh Magazine - Volume 54, No. 338, December 1843 etext25204 Schnitzler, Arthur, 1862-1931 Der Mörder etext25253 Su, E, jin shi 886 杜陽雜編 etext25280 Liu, Su, fl. 806-820 大唐新語 etext25293 Brückbauer, Frederick, 1864- The Kirk on Rutgers Farm etext25346 Lu, Xun, 1881-1936 南腔北調集 etext25425 Jacobs, Aletta H. (Aletta Henriette), 1854-1929 Vrouwenbelangen etext25473 Roosevelt, Wyn, 1870- Frontier Boys on the Coast etext25500 James, Henry, 1843-1916 A London Life and Other Tales etext25516 A. L. O. E., 1821-1893 The Crown of Success etext25543 Yulinglaoren, 18th cent. 蜃樓志 etext25549 Stockton, Frank Richard, 1834-1902 A Chosen Few etext25574 Caine, Hall, Sir, 1853-1931 Recollections of Dante Gabriel Rossetti etext25582 Beach, Seth Curtis, 1837-1932 Daughters of the Puritans etext25642 Morris, Charles, 1833-1922 Historic Tales, vol 10 (of 15) etext25656 Rita The Mystery of a Turkish Bath etext25707 Shakespeare, William, 1564-1616 Titus Andronicus etext25745 Wilson, Ann Thakur-na etext25768 Daudet, Alphonse, 1840-1897 Tartarin On The Alps etext25771 Turgenev, Ivan Sergeevich, 1818-1883 A Nobleman's Nest etext25777 Palacio Valdés, Armando, 1853-1938 El idilio de un enfermo etext25848 Abbott, Jacob, 1803-1879 William the Conqueror etext25854 Dickens, Charles, 1812-1870 The Letters of Charles Dickens etext25871 Best, Pieter, 1800-1852 Tijdtafel der geschiedenis van het vaderland etext25931 Klein, Sydney T., 1853-1934 Science and the Infinite etext25948 Fifty-Two Stories For Girls etext26113 Anonymous Handbook of Wool Knitting and Crochet etext26116 Barker, Thomas, fl. 1651 The Art of Angling etext26154 Locke, William John, 1863-1930 The Joyous Adventures of Aristide Pujol etext26160 Stratemeyer, Edward, 1862-1930 Dave Porter and His Rivals etext26204 Sherlock, Thomas, 1678-1761 A Letter from the Lord Bishop of London, to the Clergy and People of London and Westminster; On Occasion of the Late Earthquakes etext26215 Johnston, Annie F. (Annie Fellows), 1863-1931 The Little Colonel's Christmas Vacation etext26229 Lindsay, Vachel, 1879-1931 The Congo etext26235 Barclay, Florence L. (Florence Louisa), 1862-1921 The Mistress of Shenstone etext26239 Garland, Hamlin, 1860-1940 The Forester's Daughter etext26317 Buchanan's Journal of Man, May 1887 etext26359 Privat, Edmond, 1889-1962 Vivo de Zamenhof etext26445 Songs from the Southland etext26593 MacGrath, Harold, 1871-1932 The Place of Honeymoons etext26643 Gaebelein, Arno Clemens, 1861-1945 The Work Of Christ etext26675 Scheffauer, Herman George, 1878-1927 The Masque of the Elements etext26700 Short, Richard Saronia etext26723 Curtis, Alice Turner A Little Maid of Ticonderoga etext26756 De Roberto, Federico, 1861-1927 Espasmo etext26762 Shakespeare, William, 1564-1616 Henri V etext26793 The Expedition to Birting's Land etext26900 Great Britain. Board of Trade Report of the Lords Commissioners for Trade and Plantations on the Petition of the Honourable Thomas Walpole, Benjamin Franklin, John Sargent, and Samuel Wharton, Esquires, and their Associates etext26939 Abbott, Jacob, 1803-1879 Richard I etext26968 Marlowe, Stephen, 1928-2008 Summer Snow Storm etext26990 Murray, Andrew, 1828-1917 Holy in Christ etext27118 Various Mother Earth, Vol. 1 No. 2, April 1906 etext27135 Worsfold, J. N. (John Napper) The Vaudois of Piedmont etext27196 Leavitt, Joshua, 1794-1873 Cheap Postage etext27205 Hecker, Ewald Die Physiologie und Psychologie des Lachens und des Komischen. etext27206 Neugesammelte Volkssagen aus dem Lande Baden und den angrenzenden Gegenden etext27231 Ellis, Edward Sylvester, 1840-1916 The Riflemen of the Miami etext27232 Davis, Richard Harding, 1864-1916 The White Mice etext27244 Edelsheim, Franz, Freiherr von, 1868- Operations Upon the Sea etext27248 Ernst, Paul, 1899-1985 The Raid on the Termites etext27259 Freeman, Needom N. A Soldier in the Philippines etext27261 Hecht, Ben, 1894-1964 Fantazius Mallare etext27289 Sloane, William Milligan, 1850-1928 The Life of Napoleon Bonaparte etext27354 Simpson, James Young, Sir, 1811-1870 Archaeological Essays, Vol. 1 etext27383 Goble, Neil Master of None etext27389 Euripides, 480? BC-406 BC Ίων etext27422 Richings, Emily Through the Malay Archipelago etext27456 Unknown Nezumi no yomeiri. English etext27460 Il Vanzeli di Mateo etext27490 Buysse, Cyriël, 1859-1932 De vroolijke tocht etext27504 Bindloss, Harold, 1866-1945 Lorimer of the Northwest etext27517 Various Equal Suffrage in Australia etext27575 Flaubert, Gustave, 1821-1880 Madame Bovary etext27617 Du Veuzit, Max, 1886-1952 L'Aumone etext27674 Ward, Kenneth The Boy Volunteers with the Submarine Fleet etext27675 United States. Central Intelligence Agency The 1996 CIA World Factbook etext27715 Lima, Jaime de Magalhães, 1859-1936 Eucalyptos e Acacias etext27723 Mickiewicz, Adam, 1798-1855 Moja Pierwsza Bitwa etext27749 Keyser, Arthur Louis, 1856-1924 From Jungle to Java etext27753 Huayangsanren, 1610?-1675? 一枕奇 etext27780 Stevenson, Robert Louis, 1850-1894 Treasure Island etext27788 Toinen lukukirja kansakoulujen tarpeiksi etext27790 Gall, James, 1784?-1874 A Practical Enquiry into the Philosophy of Education etext27798 Roussel, John The Silver Lining etext27824 Campbell, Alice, 1887- Juggernaut etext27845 Euripides, 480? BC-406 BC Κύκλωψ etext27892 Hertzberg, Rafaël, 1845-1896 Läpi neekerien maan-osan etext27929 McCarthy, Justin H. (Justin Huntly), 1860-1936 The Lady of Loyalty House etext27986 Donnell, Annie Hamilton, 1862- Judith Lynn etext28010 Wertenbaker, Thomas Jefferson, 1879-1966 Bacon's Rebellion, 1676 etext28084 Jenkins, Herbert George, 1876-1923 Malcolm Sage, Detective etext28142 Various The Nursery, March 1878, Vol. XXIII. No. 3 etext28144 Marinetti, Filippo Tommaso, 1876-1944 I manifesti del futurismo etext28166 Anonymous Installation and Operation Instructions For Custom Mark III CP Series Oil Fired Unit etext1065 Poe, Edgar Allan, 1809-1849 The Raven etext28173 Mueller, John Theodore, 1885-1967 Three Young Pioneers etext28296 Ceynowa, Florian Stanisław, 1817-1881 Rozmowa Pòlocha z Kaszëbą etext28330 Andrews, C. C. (Christopher Columbus), 1829-1922 Reflections on the Operation of the Present System of Education, 1853 etext28339 Hull, William On Calvinism etext28346 Harrison, Harry, 1925- Deathworld etext28382 Various Punch or the London Charivari, Vol. 147, October 21, 1914 etext28424 Grierson, Elizabeth Wilson Tales From Scottish Ballads etext28472 Wertenbaker, Thomas Jefferson, 1879-1966 Patrician and Plebeian etext28638 Dunn, J. Allan, (Joseph Allan), 1872-1941 Rimrock Trail etext28640 Unknown O amor offendido, e vingado etext28670 etext28707 Sabugosa, António Maria José de Melo Silva César e Meneses, conde de, 1854-1923 Na Guella do Leão etext28710 Various The Christian Foundation, Or, Scientific and Religious Journal, Volume 1, Index, 1880 etext28720 Various The Esperantist, Vol. 1, No. 1 etext28766 Stewart, Alexander, 1764-1821 Elements of Gaelic Grammar etext28817 Borrow, George Henry, 1803-1881 The Dalby Bear etext28822 Churchill, Winston, 1871-1947 The Works Of Winston Churchill etext28950 Miller, David Hunter, 1875-1961 The Geneva Protocol etext28968 Kivi, Aleksis, 1834-1872 Nummisuutarit. Esperanto etext28971 Obama, Barack, 1961- Inaŭgura parolado de Barack Obama etext29013 Daudet, Ernest, 1837-1921 Histoire de l'Émigration pendant la Révolution Française etext29028 Winter, William West, 1881-1940 Louisiana Lou etext29050 Various Harper's Young People, July 27, 1880 etext29096 Harris, J. Rendel (James Rendel), 1852-1941 Memoranda Sacra etext29116 Malone, Edmond, 1741-1812 Cursory Observations on the Poems Attributed to Thomas Rowley (1782) etext29151 Baggally, W. W. (William Wortley) Telepathy etext29252 Kahn, Otto Hermann, 1867-1934 War Taxation etext29301 Lamartine, Alphonse de, 1790-1869 El Manuscrito de mi madre etext29309 Wright, Sewell Peaslee, 1897-1970 The Death-Traps of FX-31 etext29329 Rorer, Sarah Tyson Heston, 1849-1937 Sandwiches etext29344 Various Graham's Magazine Vol XXXII No. 6 June 1848 etext29402 Various The French Immortals etext29449 Staveley, Lilian, 1878?-1928 The Golden Fountain etext29463 Doyle, Richard, 1824-1883 The Foreign Tour of Messrs. Brown, Jones and Robinson etext29474 Niemetschek, Franz Xaver, 1766-1849 Lebensbeschreibung des k. k. Kapellmeisters Wolfgang Amadeus Mozart etext29527 Fielding, H. (Harold), 1859-1917 The Soul of a People etext14694 Various Punch, or the London Charivari, Volume 102, May 14, 1892 etext14806 Verne, Jules, 1828-1905 La Jangada etext29553 Stifter, Adalbert, 1805-1868 Bunte Steine etext29635 Montessori, Maria, 1870-1952 Dr. Montessori's Own Handbook etext29654 Bartlett, Frederick Orin, 1876-1945 The Wall Street Girl etext29692 Bechdolt, Frederick R. (Frederick Ritchie), 1874-1950 When the West Was Young etext29719 Nescio, 1881-1961 Dichtertje - De Uitvreter - Titaantjes etext29723 Salisbury, Stephen, 1835-1905 The Mayas, the Sources of Their History etext29801 Lebert, Marie A Short History of EBooks etext29852 Kummer, Frederic Arnold, 1873-1943 The Ivory Snuff Box etext29883 Various Blackwoods Edinburgh Magazine, Volume 59, No. 366, April, 1846 etext29898 Unknown O Máo Rei e o Bom Subdito etext29917 Thornton, William Thomas, 1813-1880 Old-Fashioned Ethics and Common-Sense Metaphysics etext29926 Hittell, John S. (John Shertzer), 1825-1901 Hittel on Gold Mines and Mining etext29947 Hershman, Morris, 1920- Spacemen Never Die! etext29956 Various Le Tour du Monde; Aux ruines d'Angkor etext30006 Hill, Grace Livingston, 1865-1947 Cloudy Jewel etext30032 Castelnuovo, Enrico, 1839-1915 Nella lotta etext30038 Taylor, Bert Leston, 1866-1921 A line-o'-verse or two etext30091 Guerrero, Francisco, 1528?-1599 Itinerario da viagem, que fez a Jerusalem o M.R.P. etext30100 Trollope, Anthony, 1815-1882 Marion Fay etext30102 Hethadenee waunauyaunee vadan Luke vanenana etext30137 Libbey, Laura Jean, 1862-1924 Daisy Brooks etext30164 Papadopoli Aldobrandini, Nicolò, 1841-1922 Le monete di Venezia descritte ed illustrate da Nicolò Papadopoli Aldobrandini, v. 1 etext30174 Bolívar, Víctor José Fernández The Mathematical-Historical Principles and the Evolution of Liberty etext30181 Cooke, M. C. (Mordecai Cubitt), 1825-1914 Fungi: Their Nature and Uses etext30208 Ingersoll, Robert Green, 1833-1899 The Ghosts etext30320 Gillilan, James David Trail Tales etext30335 Ellis, Edward Sylvester, 1840-1916 The Wilderness Fugitives etext30355 Novaes Vieira, João Augusto O senhor Dom Miguel I, e a senhora Dona Maria II etext30412 Saint-Saëns, Camille, 1835-1921 On the Execution of Music, and Principally of Ancient Music etext30465 御製廣寒殿記 etext30497 Garrett, Randall, 1927-1987 The Foreign Hand Tie etext30516 Tocqueville, Alexis de, 1805-1859 De la Démocratie en Amérique, tome quatrième etext30536 Chanson de Roland. Esperanto etext30620 Fox, Richard C. Two New Pelycosaurs from the Lower Permian of Oklahoma etext30664 Newman, John Henry, 1801-1890 Callista : a Tale of the Third Century etext30680 Olin, Richard All Day Wednesday etext30736 Herrick, Robert, 1868-1938 Clark's Field etext30753 Kafka, Franz, 1883-1924 Der Mord etext30779 Fénelon, François de Salignac de la Mothe-, 1651-1715 Les aventures de Télémaque suivies des aventures d'Aritonoüs etext30834 Arndt, Margaret Fairy Tales from the German Forests etext30839 Mirandola, Giovan Francesco Pico della, 1470-1533 La strega etext30929 Verne, Jules, 1828-1905 Het loterijbriefje etext30943 Various Harper's New Monthly Magazine, Volume 2, No. 12, May, 1851. etext30999 White, John A. A New Chipmunk (Genus Eutamias) from the Black Hills etext31108 Hunter, Robert Violence and the Labor Movement etext31111 etext31159 Clark, John Bates, 1847-1938 Essentials of Economic Theory etext31171 Hartshorne, Henry, 1823-1897 1931: A Glance at the Twentieth Century etext31214 etext31227 Various Stories by American Authors, Volume 10 etext31247 Barnard, Charles, 1838-1920 Camilla: A Tale of a Violin etext31286 Del Rey, Lester, 1915-1993 Let'Em Breathe Space etext31292 Burroughs, John, 1837-1921 A Year in the Fields etext31300 Hershaw, Lafayette M. Peonage etext31440 Renan, Ernest, 1823-1892 Souvenirs d'enfance et de jeunesse etext31451 Fillmore, Parker, 1878-1944 A Little Question in Ladies' Rights etext31462 Buckland, E. S. Lang Oliver Goldsmith etext31511 Notestein, Wallace A History of Witchcraft in England from 1558 to 1718 etext31552 Figueiredo, Cândido de, 1846-1925 Novo dicionário da língua portuguesa etext31605 Corson, Juliet, 1842-1897 The Cooking Manual of Practical Directions for Economical Every-Day Cookery etext31617 Tanizaki, Junichiro, 1886-1965 刺靑 etext31643 Hexamer, F. M. Asparagus, its culture for home use and for market: etext31860 Ironside, John The Red Symbol etext31893 Various Astounding Stories, June, 1931 etext31966 Gade, John Allyne Cathedrals of Spain etext31969 Militiaman, A Eleven days in the militia during the war of the rebellion etext32008 Raabe, Wilhelm, 1831-1910 Deutscher Mondschein etext32042 McFee, William, 1881-1966 Captain Macedoine's Daughter etext32073 Phisterer, Frederick The Regular Brigade of the Fourteenth Army Corps, the Army of the Cumberland, in the Battle of Stone River, or Murfreesboro', Tennessee etext32118 Wise, Stephen Child Versus Parent etext32128 etext32147 Various The Scrap Book, Volume 1, No. 1 etext32232 Various The Atlantic Monthly, Volume 16, No. 94, August, 1865 etext32251 Overton, Frank Applied Physiology etext32263 Giacosa, Giuseppe, 1847-1906 Storia vecchia etext32285 Jenkins, Herbert George, 1876-1923 Adventures of Bindle etext32292 Morris, Charles, 1833-1922 Historic Tales, Vol 14 (of 15) etext32317 Hamilton, Edmond, 1904-1977 The World with a Thousand Moons etext32337 Lee, Vernon, 1856-1935 Belcaro etext32350 etext32363 Sweetser, Kate Dickinson, -1939 Ten Girls from History etext32388 Ritchie, Mrs. David G. The New Warden etext32404 Defoe, Daniel, 1661?-1731 Second Thoughts are Best: Or a Further Improvement of a Late Scheme to Prevent Street Robberies etext32409 Canuck, Janey Seeds of Pine etext32442 Heimburg, W., 1850-1912 Gertrude's Marriage etext32479 George, Walter Lionel, 1882-1926 The Intelligence of Woman etext32482 Multhauf, Robert P., 1919-2004 The Introduction of Self-Registering Meteorological Instruments etext32635 Compton, Paul The Diary of Philip Westerly etext15 Melville, Herman, 1819-1891 Moby Dick etext19 Longfellow, Henry Wadsworth, 1807-1882 The Song of Hiawatha etext25 United States. Central Intelligence Agency The 1991 CIA World Factbook etext41 Irving, Washington, 1783-1859 The Legend of Sleepy Hollow etext47 Montgomery, L. M. (Lucy Maud), 1874-1942 Anne of Avonlea etext76 Twain, Mark, 1835-1910 Adventures of Huckleberry Finn etext94 Cather, Willa Sibert, 1873-1947 Alexander's Bridge etext101 Sterling, Bruce, 1954- The Hacker Crackdown, law and disorder on the electronic frontier etext155 Collins, Wilkie, 1824-1889 The Moonstone etext370 Defoe, Daniel, 1661?-1731 The Fortunes and Misfortunes of the Famous Moll Flanders etext467 La Fayette, Madame de (Marie-Madeleine Pioche de La Vergne), 1634-1693 The Princess of Cleves etext473 Bryant, Sara Cone, 1873- Stories to Tell to Children etext564 Dickens, Charles, 1812-1870 The Mystery of Edwin Drood etext609 Wu, Tingfang, 1842-1922 America, through the spectacles of an Oriental diplomat etext611 Buchan, John, 1875-1940 Prester John etext613 Japan The Constitution of the Empire of Japan, 1889 etext651 Carroll, Lewis, 1832-1898 Phantasmagoria and Other Poems etext773 Wilde, Oscar, 1854-1900 Lord Arthur Savile's Crime and Other Stories etext790 Wilde, Oscar, 1854-1900 Lady Windermere's Fan etext858 Jerome, Jerome K. (Jerome Klapka), 1859-1927 Stage-Land etext987 Anonymous Popular Science Monthly etext1028 Brontë, Charlotte, 1816-1855 The Professor etext1032 James, Henry, 1843-1916 The Pupil etext1038 Raleigh, Walter Alexander, Sir, 1861-1922 Style etext1042 Meredith, George, 1828-1909 A Reading of Life, Other Poems etext1056 London, Jack, 1876-1916 Martin Eden etext1128 Shakespeare, William, 1564-1616 King Lear etext1137 Shakespeare, William, 1564-1616 A Lover's Complaint etext1170 Xenophon, 431 BC-350? BC Anabasis etext1207 Haggard, Henry Rider, 1856-1925 Nada the Lily etext1230 Balzac, Honoré de, 1799-1850 Pierre Grassou etext1262 Grey, Zane, 1872-1939 Heritage of the Desert etext1269 Wells, H. G. (Herbert George), 1866-1946 Soul of a Bishop etext1300 Grey, Zane, 1872-1939 Riders of the Purple Sage etext1307 Balzac, Honoré de, 1799-1850 The Magic Skin etext1309 Meynell, Alice Christiana Thompson, 1847-1922 The Spirit of Place and Other Essays etext1310 Galt, John, 1779-1839 The Annals of the Parish; or, the chronicle of Dalmailing during the ministry of the Rev. Micah Balwhidder etext1365 Longfellow, Henry Wadsworth, 1807-1882 The Complete Poems of Henry Wadsworth Longfellow etext1387 Wister, Owen, 1860-1938 Mother etext1428 Balzac, Honoré de, 1799-1850 La Grenadiere etext1437 Balzac, Honoré de, 1799-1850 Juana etext1489 McGuffey, William Holmes, 1800-1873 The New McGuffey First Reader etext1497 Plato, 427? BC-347? BC The Republic etext1506 Shakespeare, William, 1564-1616 The Rape of Lucrece etext1540 Shakespeare, William, 1564-1616 The Tempest etext1542 Shakespeare (spurious and doubtful works), 1564-1616 The Two Noble Kinsmen etext1561 Carpenter, Edward, 1844-1929 Pagan and Christian creeds: their origin and meaning etext1649 Balzac, Honoré de, 1799-1850 Ferragus etext1655 London, Jack, 1876-1916 The God of His Fathers: Tales of the Klondyke etext1657 Plato, 427? BC-347? BC Crito etext1717 Chesterton, G. K. (Gilbert Keith), 1874-1936 What's Wrong with the World etext1841 Balzac, Honoré de, 1799-1850 Z. Marcas etext1947 Sabatini, Rafael, 1875-1950 Scaramouche etext1996 Dante Alighieri, 1265-1321 Divine Comedy, Norton's Translation, Purgatory etext2038 The Lock and Key Library etext2041 Weyman, Stanley John, 1855-1928 The House of the Wolf; a romance etext2043 The Lock and Key Library etext2050 Hawkins, Walter, 1809?- Old John Brown, the man whose soul is marching on etext2063 Bower, B. M., 1874-1940 The Trail of the White Mule etext2065 Garis, Howard Roger, 1873-1962 Dick Hamilton's Airship, or, a Young Millionaire in the Clouds etext2114 Carlyle, Thomas, 1795-1881 History of Friedrich II of Prussia — Volume 14 etext2179 Harte, Bret, 1836-1902 Drift from Two Shores etext2189 Anzengruber, Ludwig, 1839-1889 Der G'wissenswurm etext2238 Shakespeare, William, 1564-1616 Measure for Measure etext2320 Goethe, Johann Wolfgang von, 1749-1832 Novelle etext2380 Brentano, Clemens, 1778-1842 Das Märchen von dem Myrtenfräulein etext2428 Pope, Alexander, 1688-1744 An Essay on Man etext2467 Ibsen, Henrik, 1828-1906 Ghosts etext2494 Kane, William Terence, 1880-1946 For Greater Things; the story of Saint Stanislaus Kostka etext2500 Hesse, Hermann, 1877-1962 Siddhartha etext2529 Russell, Bertrand, 1872-1970 The Analysis of Mind etext2530 Wallace, Alfred Russel, 1823-1913 The Malay Archipelago, the land of the orang-utan and the bird of paradise; a narrative of travel, with studies of man and nature — Volume 1 etext2534 James, Henry, 1843-1916 Eugene Pickering etext2542 Ibsen, Henrik, 1828-1906 A Doll's House : a play etext2581 Taine, Hippolyte, 1828-1893 The Modern Regime, Volume 1 etext2585 The First 1001 Fibonacci Numbers etext2615 Dryden, John, 1631-1700 Discourses on Satire and on Epic Poetry etext2670 Field, Eugene, 1850-1895 Love-Songs of Childhood etext2801 Harrington, James, 1611-1677 The Commonwealth of Oceana etext2815 Adams, Henry, 1838-1918 Democracy, an American novel etext2842 Haggard, Henry Rider, 1856-1925 Black Heart and White Heart etext2940 Huxley, Thomas Henry, 1825-1895 Evolution and Ethics etext2945 Emerson, Ralph Waldo, 1803-1882 Essays — Second Series etext2985 Paine, Albert Bigelow, 1861-1937 Mark Twain, a Biography — Volume II, Part 2: 1886-1900 etext3034 Macy, Jesse, 1842-1919 An Anti-Slavery Crusade; a chronicle of the gathering storm etext3245 Connor, Ralph, 1860-1937 Black Rock: a Tale of the Selkirks etext3247 Connor, Ralph, 1860-1937 The Patrol of the Sun Dance Trail etext3267 Le Gallienne, Richard, 1866-1947 Old Love Stories Retold etext3299 Honig, Winfried Mr. Honey's Banking Dictionary etext3301 Sinclair, Upton, 1878-1968 The Naturewoman etext3303 Sinclair, Upton, 1878-1968 Prince Hagen etext3325 Swinburne, Algernon Charles, 1837-1909 Locrine: a tragedy etext3336 Gaboriau, Émile, 1832-1873 Within an Inch of His Life etext3343 Sue, Eugène, 1804-1857 The Wandering Jew — Volume 05 etext3383 Howells, William Dean, 1837-1920 Spanish Prisoners of War (from Literature and Life) etext3389 Howells, William Dean, 1837-1920 Literature and Life (Complete) etext3391 Howells, William Dean, 1837-1920 A Belated Guest (from Literary Friends and Acquaintance) etext3478 Johnson, E. Pauline, 1861-1913 Legends of Vancouver etext3486 Shaw, Bernard, 1856-1950 The Inca of Perusalem etext3525 Van Dyke, Henry, 1852-1933 Music and Other Poems etext3528 Beethoven, Ludwig van, 1770-1827 Beethoven, the Man and the Artist, as Revealed in His Own Words etext3533 Leacock, Stephen, 1869-1944 Sunshine Sketches of a Little Town etext3705 Wason, Robert Alexander, 1874-1955 Happy Hawkins etext3738 Churchill, Winston, 1871-1947 A Far Country — Volume 3 etext3756 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Indiscretions of Archie etext3774 Perkins, Lucy Fitch, 1865-1937 The Eskimo Twins etext3846 Retz, Jean François Paul de Gondi de, 1613-1679 The Memoirs of Cardinal de Retz — Complete [Historic court memoirs] etext3852 Montespan, Françoise-Athénaïs de Rochechouart de Mortemart, marquise de, 1641-1707 Memoirs of Madame de Montespan — Volume 6 etext3855 Orleans, Charlotte-Elisabeth, duchesse d', 1652-1722 Memoirs of Louis XIV and His Court and of the Regency — Volume 01 etext3907 Rousseau, Jean-Jacques, 1712-1778 The Confessions of J. J. Rousseau — Volume 07 etext3929 Claretie, Jules, 1840-1913 Prince Zilah — Volume 3 etext3982 Bernard, Charles de, 1804-1850 Gerfaut — Volume 2 etext4016 Mühlbach, L. (Luise), 1814-1873 Prince Eugene and His Times etext4020 Leacock, Stephen, 1869-1944 Arcadian Adventures with the Idle Rich etext4050 Bruce, Mary Grant, 1878-1958 Mates at Billabong etext4099 Patmore, Coventry Kersey Dighton, 1823-1896 Angel in the House etext4109 Young, Filson, 1876-1938 Christopher Columbus and the New World of His Discovery — Volume 2 etext4129 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 12: September/October 1661 etext4136 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 18: September/October 1662 etext4141 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 22: May/June 1663 etext4142 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 23: July/August 1663 etext4145 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Complete 1663 N.S. etext4165 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 43: May/June 1666 etext4185 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 61: January 1667-68 etext4191 Pepys, Samuel, 1633-1703 Diary of Samuel Pepys — Volume 67: August 1668 etext4232 Thoreau, Henry David, 1817-1862 A Week on the Concord and Merrimack Rivers etext4281 Habberton, John, 1842-1921 Helen's Babies etext4290 Centennius, Ralph The Dominion in 1983 etext4298 Gissing, George, 1857-1903 The Paying Guest etext4299 Gissing, George, 1857-1903 The Whirlpool etext4319 Clontz, J. The Gospels in Four Part Harmony etext4383 Hémon, Louis, 1880-1913 Maria Chapdelaine etext4478 Meredith, George, 1828-1909 Lord Ormont and His Aminta — Volume 2 etext4564 Bertrand, Huguette Rouge Memoire; Poesie etext4579 Luo, Guanzhong, 1330?-1400? 粉妝樓71-80回 etext4584 Adams, Henry, 1838-1918 Mont-Saint-Michel and Chartres etext4666 St. John de Crèvecoeur, J. Hector, 1735-1813 Letters from an American Farmer etext4696 Shelley, Percy Bysshe, 1792-1822 The Witch of Atlas etext4720 Richardson, John, 1796-1852 Wacousta : a tale of the Pontiac conspiracy — Volume 2 etext4860 Motley, John Lothrop, 1814-1877 History of the United Netherlands, 1586-89 — Complete etext4877 Motley, John Lothrop, 1814-1877 History of the United Netherlands from the Death of William the Silent to the Twelve Year's Truce, 1604-05 etext4916 Norris, Kathleen Thompson, 1880-1966 Undertow etext4927 Bulfinch, Thomas, 1796-1867 Legends of Charlemagne etext4930 Bangs, John Kendrick, 1862-1922 Paste Jewels etext4951 Mozart, Wolfgang Amadeus, 1756-1791 String Quartet No. 17 in B flat major, "Hunt", K. 458 etext5043 Nixon, Richard M. (Richard Milhous), 1913-1994 State of the Union Address etext5106 Richardson, John, 1796-1852 The Canadian Brothers, or the Prophecy Fulfilled a Tale of the Late American War — Volume 1 etext5121 Green, Anna Katharine, 1846-1935 Dark Hollow etext5145 Fox, John, 1863-1919 The Heart of the Hills etext5156 Yonge, Charlotte Mary, 1823-1901 Beechcroft at Rockstone etext5193 Dufresny, Charles Rivière, 1654-1724 The Double Widowing etext5206 Anonymous Fires and Firemen: from the Eclectic Magazine of Foreign Literature, Science and Art, Vol XXXV No. 1, May 1855 etext5237 Lever, Charles James, 1806-1872 The Confessions of Harry Lorrequer — Volume 4 etext5321 Kandinsky, Wassily, 1866-1944 Concerning the Spiritual in Art etext5360 Churchill, Winston, 1871-1947 The Inside of the Cup — Volume 05 etext5366 Churchill, Winston, 1871-1947 Richard Carvel — Volume 02 etext5378 Churchill, Winston, 1871-1947 A Modern Chronicle — Volume 05 etext5476 Ebers, Georg, 1837-1898 Cleopatra — Volume 04 etext5660 Baum, L. Frank (Lyman Frank), 1856-1919 Mary Louise etext5701 Bailey, Arthur Scott, 1877-1949 Sleepy-Time Tales: the Tale of Fatty Coon etext5703 Flint, Homer Eon, 1892-1924 The Lord of Death and the Queen of Life etext32185 Barr, Robert, 1850-1912 Lord Stranleigh Abroad etext2498 Drummond, Henry, 1851-1897 Addresses etext2631 Huxley, Thomas Henry, 1825-1895 Mr.Gladstone and Genesis etext2675 Thackeray, William Makepeace, 1811-1863 Burlesques etext2680 Marcus Aurelius, Emperor of Rome, 121-180 Meditations etext2733 Borrow, George Henry, 1803-1881 Romano Lavo-Lil: word book of the Romany; or, English Gypsy language etext2761 Haggard, Henry Rider, 1856-1925 Benita, an African romance etext3339 Sue, Eugène, 1804-1857 The Wandering Jew — Volume 01 etext3385 Howells, William Dean, 1837-1920 Last Days in a Dutch Hotel (from Literature and Life) etext21599 Barnum, Richard Tum Tum, the Jolly Elephant etext21624 Russell, George William Erskine, 1853-1919 Fifteen Chapters of Autobiography etext21692 Ballantyne, R. M. (Robert Michael), 1825-1894 The Pirate City etext21727 Ballantyne, R. M. (Robert Michael), 1825-1894 Digging for Gold etext31510 Saltus, Edgar, 1855-1921 Mary Magdalen etext32672 Garson, Clee Direct Wire etext5740 Wittgenstein, Ludwig, 1889-1951 Tractatus Logico-Philosophicus etext5753 MacDonald, George, 1824-1905 St. George and St. Michael etext5811 Twain, Mark, 1835-1910 Following the Equator, Part 4 etext5831 etext5984 Anonymous The British North America Act, 1867 etext6106 Canby, Henry Seidel, 1878-1961 Definitions: Essays in Contemporary Criticism etext6112 Haliburton, Thomas Chandler, 1796-1865 Nature and Human Nature etext6135 Brengle, Col. S. L. When the Holy Ghost is Come etext6141 Peck, George W. (George Wilbur), 1840-1916 Peck's Bad Boy with the Cowboys etext6143 Mabie, Hamilton Wright, 1845-1916 Essays on Work and Culture etext6178 Parker, Gilbert, 1862-1932 Pierre and His People, [Tales of the Far North], Volume 5. etext6192 Parker, Gilbert, 1862-1932 Mrs. Falchion, Volume 1. etext6221 Parker, Gilbert, 1862-1932 The Trespasser, Volume 3 etext6233 Parker, Gilbert, 1862-1932 The Battle of the Strong — Volume 4 etext6239 Parker, Gilbert, 1862-1932 The Lane That Had No Turning, Volume 3 etext6270 Parker, Gilbert, 1862-1932 Embers, Volume 3. etext6280 Parker, Gilbert, 1862-1932 The Money Master, Complete etext6305 Browne, Porter Emerson A Fool There Was etext6340 Leacock, Stephen, 1869-1944 Literary Lapses etext6359 De Quincey, Thomas, 1785-1859 The English Mail-Coach and Joan of Arc etext6374 Brebner, Percy James, 1864-1922 Princess Maritza etext6381 Hearn, Lafcadio, 1850-1904 Two Years in the French West Indies etext6398 Suetonius Tranquillus, Gaius, 75-160 The Lives of the Twelve Caesars, Volume 13: Grammarians and Rhetoricians etext6401 Tarkington, Booth, 1869-1946 Harlequin and Columbine etext6462 Yarrow, H. C. (Harry Crécy), 1840-1929 An Introduction to the mortuary customs of the North American Indians etext6498 Schiller, Friedrich, 1759-1805 Kabale und Liebe etext6530 etext6585 Lucian, of Samosata, 120-180 Works of Lucian of Samosata — Volume 02 etext6605 Butler, Samuel, 1835-1902 Unconscious Memory etext6619 Bjørnson, Bjørnstjerne, 1832-1910 Poems and Songs etext6663 Haight, Canniff, 1825-1901 Country Life in Canada Fifty Years Ago etext1375 Wiggin, Kate Douglas Smith, 1856-1923 New Chronicles of Rebecca etext6702 Stowe, Harriet Beecher, 1811-1896 Life of Harriet Beecher Stowe etext6721 Turley, Charles, 1868-1940 The Voyages of Captain Scott : Retold from the Voyage of the Discovery and Scott's Last Expedition etext6725 Hauff, Wilhelm, 1802-1827 Othello etext6783 Schiller, Friedrich, 1759-1805 Fiesco; or, the Genoese Conspiracy etext6799 Schiller, Friedrich, 1759-1805 Philosophical Letters of Frederich Schiller etext6837 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Little Warrior etext6856 Headley, Joel Tyler, 1813-1897 The Great Riots of New York, 1712 to 1873 etext6875 Parkman, Francis, 1823-1893 Count Frontenac and New France under Louis XIV etext6881 De Quincey, Thomas, 1785-1859 Note Book of an English Opium-Eater etext6885 Rizal, José, 1861-1896 The Indolence of the Filipino etext6907 Potter, Austin, 1842-1913 From Wealth to Poverty etext6955 Wodehouse, P. G. (Pelham Grenville), 1881-1975 The Prince and Betty etext6977 McConnell, James R. (James Rogers), 1887-1917 Flying for France etext6986 Steele, Joel Dorman Hygienic Physiology : with Special Reference to the Use of Alcoholic Drinks and Narcotics etext7026 Shaw, S. B. (Solomon Benjamin), 1854- Children's Edition of Touching Incidents : and Remarkable Answers to Prayer etext7034 Weir, Arthur, 1864-1902 Fleurs De Lys, and Other Poems etext7037 Henty, G. A. (George Alfred), 1832-1902 Beric the Briton : a Story of the Roman Invasion etext7067 Molière, 1622-1673 The Magnificent Lovers etext7072 Franck, Harry Alverson, 1881-1962 Tramping Through Mexico, Guatemala and Honduras — Being the Random Notes of an Incurable Vagabond etext7084 Meredith, Isabel A Girl Among the Anarchists etext7111 Burton, Richard Francis, Sir, 1821-1890 The Land of Midian — Volume 1 etext7133 Logan, John Alexander, 1826-1886 The Great Conspiracy, Volume 1 etext7146 Burney, Fanny, 1752-1840 Cecilia; Or, Memoirs of an Heiress — Volume 2 etext7175 Chakravartin, Purnananda The Tattva-Muktavali etext7227 Ruskin, John, 1819-1900 Mornings in Florence etext7246 Twain, Mark, 1835-1910 A Connecticut Yankee in King Arthur's Court, Part 5. etext7270 Gan, Bao, fl. 317-322 搜神記 volume 4-10 etext7288 Song yu, 3rd cent. B.C. Han shi wai chuan etext7291 Ruskin, John, 1819-1900 The Two Paths etext7299 Birrell, Augustine, 1850-1933 Obiter Dicta etext7335 Hemyng, Bracebridge, 1841-1901 Jack Harkaway and His Son's Escape from the Brigand's of Greece etext7388 Holmes, Oliver Wendell, 1809-1894 The Poetical Works of Oliver Wendell Holmes — Volume 01: Earlier Poems (1830-1836) etext7402 Sallust, 86 BC-34? BC C. Sallusti Crispi De Bello Catilinario Et Jugurthino etext7432 Belloc, Hilaire, 1870-1953 On Nothing and Kindred Subjects etext2638 Dostoyevsky, Fyodor, 1821-1881 The Idiot etext7452 Yogananda, Paramahansa, 1893-1952 Autobiography of a Yogi etext7555 Rousseau, Jean-Jacques, 1712-1778 Quotes and Images From The Confessions of J. J. Rousseau etext7563 Orleans, Charlotte-Elisabeth, duchesse d', 1652-1722 Quotes and Images From Memoirs of Louis XIV. etext7613 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Eugene Aram — Volume 05 etext7662 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 What Will He Do with It? — Volume 04 etext7682 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Harold : the Last of the Saxon Kings — Volume 11 etext7715 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 The Last of the Barons — Volume 01 etext7778 Bandini, Helen Elliott History of California etext7786 Clayton, Louisa The One Great Reality etext7800 Long, William Joseph, 1866-1952 Outlines of English and American Literature : an Introduction to the Chief Writers of England and America, to the Books They Wrote, and to the Times in Which They Lived etext7847 Rockwood, Roy Jack North's Treasure Hunt etext7870 Henty, G. A. (George Alfred), 1832-1902 Tales of Daring and Danger etext7884 Davis, Richard Harding, 1864-1916 In the Fog etext7950 Balzac, Honoré de, 1799-1850 The Jealousies of a Country Town etext7966 Chamberlain, Alexander F. The Child and Childhood in Folk-Thought etext7973 Rose, Achilles, 1839-1916 Napoleon's Campaign in Russia Anno 1812 etext7984 Inman, Henry, 1837-1899 The old Santa Fe trail etext8011 Anonymous The Bible, King James version, Book 11: 1 Kings etext8060 Anonymous The Bible, King James version, Book 60: 1 Peter etext8082 Powell, John Wesley, 1834-1902 Canyons of the Colorado etext8086 Doctorow, Cory, 1971- Down and Out in the Magic Kingdom etext8096 Stedman, John Gabriël, 1744-1797 Reize naar Surinamen en door de binnenste gedeelten van Guiana — Deel 1 etext8128 Hearn, Lafcadio, 1850-1904 In Ghostly Japan etext8135 Walpole, Hugh, Sir, 1884-1941 The Cathedral etext8149 Rolland, Romain, 1866-1944 Jean Christophe: in Paris etext8234 Anonymous The World English Bible (WEB): Judges etext8270 Anonymous The World English Bible (WEB): John etext8315 The Bible, Douay-Rheims, Book 15: 1 Esdras etext8357 The Bible, Douay-Rheims, Book 57: Philippians etext8370 The Bible, Douay-Rheims, Book 70: 2 John etext8391 Various Scientific American Supplement, No. 288, July 9, 1881 etext8426 Verlaine, Paul, 1844-1896 Poems of Paul Verlaine etext8429 Hawthorne, Nathaniel, 1804-1864 The Ancestral Footstep (fragment) etext8453 Hugo, Victor, 1802-1885 Actes et Paroles, Volume 2 etext8526 Twain, Mark, 1835-1910 Eve's Diary, Part 1 etext8623 Doyle, Arthur Conan, Sir, 1859-1930 The Adventures of Gerard etext8631 Doyle, Arthur Conan, Sir, 1859-1930 The Adventure of the Dying Detective etext8671 Bates, Arlo, 1850-1918 The Pagans etext8700 Haeckel, Ernst Heinrich Philipp August, 1834-1919 The Evolution of Man etext8718 Various Scientific American Supplement, No. 401, September 8, 1883 etext8735 Dunn, Jonathan The Revolutions of Time etext8758 Burroughs, Edgar Rice, 1875-1950 Jungle Tales of Tarzan etext8788 Dante Alighieri, 1265-1321 The Divine Comedy by Dante, Illustrated, Hell, Volume 10 etext8887 Wells, Carolyn, 1862-1942 Marjorie's New Friend etext8893 Gambrill, J. Montgomery Selections from Poe etext8922 Storm, Theodor, 1817-1888 Viola Tricolor etext8932 Titcomb, Timothy Lessons in Life etext9085 Heyse, Paul, 1830-1914 Das Mädchen von Treppi etext9108 Lessing, Gotthold Ephraim, 1729-1781 Emilia Galotti etext9188 Brinton, Daniel Garrison, 1837-1899 Aboriginal American Authors etext9201 Hawthorne, Nathaniel, 1804-1864 Sunday at Home (From "Twice Told Tales") etext9228 Hawthorne, Nathaniel, 1804-1864 The Christmas Banquet (From "Mosses from an Old Manse") etext9262 Dumas père, Alexandre, 1802-1870 Le corricolo etext9342 Conrad, Joseph, 1857-1924 Falk etext9368 Griffis, William Elliot, 1843-1928 Welsh Fairy Tales etext9373 Drummond, Henry, 1851-1897 Pax Vobiscum etext9401 White, Stewart Edward, 1873-1946 The Leopard Woman etext9418 Hardy, Thomas, 1840-1928 Desperate Remedies etext9428 Hardy, Thomas, 1840-1928 A Group of Noble Dames etext9468 Holcroft, Thomas, 1745-1809 Anna St. Ives etext9527 Thackeray, William Makepeace, 1811-1863 The Fatal Boots etext9530 Thackeray, William Makepeace, 1811-1863 The History of Henry Esmond, Esq. etext9547 Stribling, T. S., 1881-1965 The Cruise of the Dry Dock etext9588 Whittier, John Greenleaf, 1807-1892 My Summer with Dr. Singletary etext9622 etext9658 Various Punchinello, Volume 1, No. 13, June 25, 1870 etext9666 Various Scientific American Supplement, No. 497, July 11, 1885 etext9668 Gilfillan, George, 1813-1878 Specimens with Memoirs of the Less-known British Poets, Volume 2 etext9712 Dickens, Charles, 1812-1870 Hunted Down etext9713 Dickens, Charles, 1812-1870 The Haunted Man and the Ghost's Bargain etext9750 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Night and Morning, Volume 1 etext9751 Lytton, Edward Bulwer Lytton, Baron, 1803-1873 Night and Morning, Volume 2 etext9841 Luther, Martin, 1483-1546 Selections from the Table Talk of Martin Luther etext6971 Abrahams, Israel, 1858-1925 Judaism etext9917 Gruenberg, Sidonie Matzner Your Child: Today and Tomorrow etext10035 Various Punchinello, Volume 2, No. 27, October 1, 1870 etext10093 MacDonald, George, 1824-1905 Gutta-Percha Willie etext10137 Edison, Thomas A., 1847-1931 Mary Had a Little Lamb etext10158 Girard, Gilbert Daybreak at Calamity Farm etext10204 Landfrey, Trumpeter Charge of the Light Brigade etext10226 Saunders, Marshall, 1861-1947 Beautiful Joe etext10252 Higham, Daniel (Director) The Old Violin etext10324 Brand, Max, 1892-1944 Bull Hunter etext10397 Stevenson, Burton Egbert, 1872-1962 Affairs of State etext10426 Goethe, Johann Wolfgang von, 1749-1832 Die natürliche Tochter etext10458 Flaubert, Gustave, 1821-1880 Three short works etext10468 Baum, L. Frank (Lyman Frank), 1856-1919 Aunt Jane's Nieces in Society etext10529 McGuinn, Roger I am a Pilgrim etext10566 Jacobs, W. W. (William Wymark), 1863-1943 The Bequest etext10574 Hume, David, 1711-1776 The History of England, Volume I etext10580 Ferri, Enrico, 1859-1929 The Positive School of Criminology etext10648 Lord, John, 1810-1894 Beacon Lights of History, Volume 13 etext10693 Ellenborough, Edward Law, Earl of, 1790-1871 A Political Diary 1828-1830, Volume II etext10746 Maupassant, Guy de, 1850-1893 Boule de Suif etext10751 Lomax, E. L. (Edward Lloyd), 1852-1916 Oregon, Washington and Alaska; Sights and Scenes for the Tourist etext10774 Achard, Amédée, 1814-1875 Récits d'un soldat etext10779 Unknown Happy Little Edward etext10856 Griffiths, Charles John A Narrative of the Siege of Delhi etext10967 Kreisler, Fritz, 1875-1962 Four Weeks in the Trenches etext11004 Wetterau, John Moncure Joe Burke's Last Stand etext11024 Multatuli, 1820-1887 Max Havelaar etext11093 Brand, Max, 1892-1944 Trailin'! etext11109 Various Punch, or the London Charivari, Volume 156, February 12, 1919 etext6309 Tinseau, Léon de, 1844-1921 Ma Cousine Pot-Au-Feu etext11180 The World's Greatest Books — Volume 06 — Fiction etext11190 Jacobs, W. W. (William Wymark), 1863-1943 The White Cat etext11195 Brand, Max, 1892-1944 Alcatraz etext11310 Hindu Tales from the Sanskrit etext11364 Richardson, Samuel, 1689-1761 Clarissa Harlowe; or the history of a young lady — Volume 6 etext11414 Williams, Albert Rhys, 1883-1962 In the Claws of the German Eagle etext11454 Sturge, Joseph, 1793-1859 A Visit to the United States in 1841 etext11490 Phillips, Ulrich Bonnell, 1877-1934 American Negro Slavery etext11526 Fuller, Margaret, 1810-1850 Summer on the Lakes, in 1843 etext11565 Henty, G. A. (George Alfred), 1832-1902 Friends, though divided etext11587 Pack, Charles Lathrop, 1857-1937 The School Book of Forestry etext11730 Davis, Richard Harding, 1864-1916 With the Allies etext11741 Various The Mirror of Literature, Amusement, and Instruction etext11747 Prévost, Marcel, 1862-1941 Les Demi-Vierges etext11762 Various The American Missionary — Volume 42, No. 01, January, 1888 etext11904 Chambers, Robert W. (Robert William), 1865-1933 Ailsa Paige etext11934 Finck, Henry Theophilus, 1854-1926 Primitive Love and Love-Stories etext11953 Guizot, M. (François), 1787-1874 A Popular History of France from the Earliest Times, Volume 3 etext11987 Train, Arthur Cheney, 1875-1945 By Advice of Counsel etext12007 etext12048 Pike, Henry Lee Mitchell, 1865- Our Little Korean Cousin etext12053 Mann, Thomas, 1875-1955 Gladius Dei; Schwere Stunde etext12075 Sapper, Agnes, 1852-1929 Kriegsbüchlein für unsere Kinder etext12099 Various Memories of Jane Cunningham Croly, "Jenny June" etext12167 Bang, Herman, 1857-1912 Enkens søn etext12185 Huard, Frances Wilson, 1885- My Home in the Field of Honor etext12195 Eggleston, Edward, 1837-1902 The Mystery of Metropolisville etext12232 Various Punch, or the London Charivari, Volume 156, May 28, 1919 etext12248 Walton, O. F., Mrs., 1849-1939 The King's Cup-Bearer etext12266 Wasserzieher, Ernst, 1860-1927 Von Haparanda bis San Francisco etext12307 Cook, Herbert, 1868-1939 Giorgione etext12367 Sand, George, 1804-1876 Le péché de Monsieur Antoine, Tome 1 etext12387 MacDonald, George, 1824-1905 Paul Faber, Surgeon etext12419 Harte, Bret, 1836-1902 Frontier Stories etext12422 Kemble, Fanny, 1809-1893 Journal of a Residence on a Georgian Plantation etext12435 Phipps, Helen Paginas Sudamericanas etext12469 Various Punch, or the London Charivari, Volume 99, November 8, 1890 etext12474 Bierce, Ambrose, 1842-1914? Write It Right etext12495 Bower, B. M., 1874-1940 Casey Ryan etext12536 Various Punch, or the London Charivari, Volume 146, January 14, 1914 etext12554 Various The Mirror of Literature, Amusement, and Instruction etext12611 Bennett, Arnold, 1867-1931 The Regent etext12629 Sapir, Edward, 1884-1939 Language etext12668 Collins, David, 1754-1810 An Account of the English Colony in New South Wales, Volume 2 etext12722 Shakespeare, William, 1564-1616 Sonnet #100 etext12731 Hancock, H. Irving (Harrie Irving), 1868-1922 The High School Boys' Training Hike etext12757 Runeberg, Johan Ludvig, 1804-1877 Vänrikki Stoolin tarinat (suom. Manninen) etext12851 Various Folk Tales from the Russian etext12861 Hutton, James, 1726-1797 Theory of the Earth, Volume 1 (of 4) etext12885 Stiles, Henry Reed Bundling; Its Origin, Progress and Decline in America etext12900 Balzac, Honoré de, 1799-1850 Poor Relations etext13008 Faraday, L. Winifred, 1872- The Edda, Volume 2 etext13025 Sand, George, 1804-1876 La Marquise etext13033 Mitchell, Thomas, 1792-1855 Three Expeditions into the Interior of Eastern Australia, Volume 2 etext13037 Chatterton, Thomas The Rowley Poems etext13064 Gordon, Thomas Edward, 1832-1914 Persia Revisited etext13079 Beethoven, Ludwig van, 1770-1827 String Quartet No. 14 in C-sharp minor Opus 131 etext13083 Čapek, Karel, 1890-1938 R.U.R. etext13132 MacSwiney, Terence J. (Terence Joseph), 1879-1920 Principles of Freedom etext13145 Various Lippincott's Magazine of Popular Literature and Science etext13173 Canth, Minna, 1844-1897 Anna Liisa; Kotoa pois etext13232 Sexton, Ella M. Stories of California etext13303 Sand, George, 1804-1876 Kourroglou etext13333 Tocqueville, Alexis de, 1805-1859 Correspondence & Conversations of Alexis de Tocqueville with Nassau William Senior from 1834 to 1859, Volume 2 etext13346 Charnay, Désiré, 1828-1915 Reis naar Yucatan etext13356 Stockton, Frank Richard, 1834-1902 The Captain's Toll-Gate etext13370 Price, George McCready Q. E. D., or New Light on the Doctrine of Creation etext13426 Various Notes and Queries, Number 44, August 31, 1850 etext13438 Whistler, Charles W. (Charles Watts), 1856-1913 A King's Comrade etext13450 Stokes, Katherine The Motor Maids in Fair Japan etext13461 Craik, Dinah Maria Mulock, 1826-1887 Mistress and Maid etext9746 Bryce, Charles, Mrs. The Ashiel mystery etext9790 Kipling, Rudyard, 1865-1936 Traffics and Discoveries etext9793 Bentwich, Norman, 1883-1971 Josephus etext13488 O'Brien, George An Essay on Mediaeval Economic Teaching etext13529 Mahan, A. T. (Alfred Thayer), 1840-1914 The Influence of Sea Power Upon History, 1660-1783 etext13638 Various Notes and Queries, Number 19, March 9, 1850 etext13658 Meding, Johann Ferdinand Martin Oskar, 1829-1903 Der Todesgruß der Legionen, 2. Band etext13666 Kready, Laura F. A Study of Fairy Tales etext13819 Dumas père, Alexandre, 1802-1870 Les compagnons de Jéhu etext13855 Grosclaude, Etienne, 1858-1932 Une politique européenne : la France, la Russie, l'Allemagne et la guerre au Transvaal etext13862 Diderot, Denis, 1713-1784 Le neveu de Rameau etext13864 Various The Bay State Monthly — Volume 2, No. 3, December, 1884 etext13869 Hebbelynck, Th. In Roemenië etext13872 Marsh, A. The Ten Pleasures of Marriage etext13877 Starke, D. Poise: How to Attain It etext13883 Sinclair, May, 1863-1946 The Tree of Heaven etext13909 Hope, Anthony, 1863-1933 The Indiscretion of the Duchess etext13956 Various Lippincott's Magazine of Popular Literature and Science etext13961 Various Punch, or the London Charivari, Volume 101, September 19, 1891 etext13963 Sheehan, D. D. (Daniel Desmond), 1873-1948 Ireland Since Parnell etext13998 McDonnell, Michael F. J. Ireland and the Home Rule Movement etext14000 Tyndall, John, 1820-1893 Six Lectures on Light etext14036 Various Lippincott's Magazine of Popular Literature and Science etext14038 Sand, George, 1804-1876 La Daniella, Vol. II. etext14071 Level, Maurice, 1875-1926 Les Portes de l'Enfer etext14099 Seymour, St. John D. (St. John Drelincourt) True Irish Ghost Stories etext14108 Burroughs, John, 1837-1921 In the Catskills etext14149 Leighton, Robert, 1859-1934 The Pilots of Pomona etext14233 Flaubert, Gustave, 1821-1880 Over Strand and Field etext14245 Ferrar, William J. The Fall of the Grand Sarrasin etext14311 Pérez Galdós, Benito, 1843-1920 Bailén etext14318 Pérez de Ayala, Ramón, 1881?-1962 Belarmino y Apolonio etext14327 Various Lippincott's Magazine of Popular Literature and Science etext14348 Wilson, Harry Leon, 1867-1939 Ma Pettengill etext14368 Various Hebraic Literature; Translations from the Talmud, Midrashim and etext14404 Lemaître, Jules, 1853-1914 Les Rois etext14415 etext14440 Leino, Eino, 1878-1926 Alla kasvon kaikkivallan etext14446 McKinley, William, 1843-1901 A Supplement to A Compilation of the Messages and Papers of the Presidents etext14534 Finley, Martha, 1828-1909 Christmas with Grandma Elsie etext14597 Caine, Hall, Sir, 1853-1931 The Woman Thou Gavest Me etext14616 Lighthall, W. D. (William Douw), 1857-1954 Thoughts, Moods and Ideals: Crimes of Leisure etext14739 MacKenzie, Compton, 1883-1972 The Altar Steps etext14855 Sherley, George Douglass, 1857-1917 A Few Short Sketches etext14883 Finley, Martha, 1828-1909 Grandmother Elsie etext14924 Various Punch, or the London Charivari, Volume 1, August 21, 1841 etext14937 Various Punch, or the London Charivari, Volume 1, November 20, 1841 etext14960 White, Stewart Edward, 1873-1946 The Silent Places etext15073 Read, Opie Percival, 1852-1939 The Colossus etext15083 Haan, Jacob Israël de, 1881-1924 Jerusalem etext15087 Various The Mirror of Literature, Amusement, and Instruction etext15095 Sherley, George Douglass, 1857-1917 The Story of a Picture etext15107 Gaboriau, Émile, 1832-1873 La corde au cou etext15265 Du Bois, W. E. B. (William Edward Burghardt), 1868-1963 The Quest of the Silver Fleece etext15349 Dryden, John, 1631-1700 The works of John Dryden, $c now first collected in eighteen volumes. $p Volume 04 etext15351 Beresford, J. D. (John Davys), 1873-1947 H. G. Wells etext15368 Byron, George Gordon Byron, Baron, 1788-1824 Fugitive Pieces etext15389 Arthur, T. S. (Timothy Shay), 1809-1885 True Riches etext15393 American Eloquence, Volume 3 etext15422 Melville, Herman, 1819-1891 Israel Potter etext15669 Ibsen, Henrik, 1828-1906 Fru Inger til Østråt etext15675 Dampier, William, 1652-1715 A Voyage to New Holland etext15806 Järnefelt, Arvid, 1861-1932 Hiljaisuudessa etext15831 Bond, A. Russell (Alexander Russell), 1876- The Scientific American Boy etext15833 Various Scientific American Supplement, No. 441, June 14, 1884. etext15846 Shakespeare, William, 1564-1616 Much ado about nothing. French etext15909 Various The American Missionary — Volume 44, No. 01, January, 1890 etext15910 Merrett, Christopher A Short View of the Frauds and Abuses Committed by Apothecaries etext15956 Forrest, E. W. (Edmund William), -1880 Vellenaux etext15974 Mollinger-Hooyer, Dina De Pop van Elisabeth Gehrke etext15975 Beets, Nicolaas, 1814-1903 Camera Obscura etext16014 Carleton, William, 1794-1869 The Hedge School; The Midnight Mass; The Donagh etext16061 Langsdorff, Baron de Op de olifantenjacht in Oeganda etext16077 Roberts, Charles George Douglas, Sir, 1860-1943 Children of the Wild etext16097 Bangs, John Kendrick, 1862-1922 The Pursuit of the House-Boat etext16101 Dalrymple, Leona, 1884- Diane of the Green Van etext16125 West, Rebecca, 1892-1983 The Judge etext16154 Various The American Missionary — Volume 43, No. 09, September, 1889 etext16160 Weigall, Arthur E. P. B. The Treasury of Ancient Egypt etext16198 Fitch, Clyde, 1865-1909 Her Own Way etext16211 Runeberg, Johan Ludvig, 1804-1877 Fjalar Kuningas etext16249 etext16458 Watson, Virginia The Princess Pocahontas etext16500 More Translations from the Chinese etext16603 Nevinson, Henry W., 1859-1941 Ladysmith etext16605 Unknown The Ladies' Work-Book etext16608 Mighels, Philip Verrill Bruvver Jim's Baby etext16621 Gripenberg, Alexandra, 1857-1913 Orjien vapauttaminen Pohjois-Amerikassa etext16755 Anonymous Reis door Griekenland etext16804 Trollope, Anthony, 1815-1882 An Eye for an Eye etext16820 Mirbeau, Octave Le Journal d'une Femme de Chambre etext16897 Morris, William, 1834-1896 The Tables Turned etext16917 Bell, Clive, 1881-1964 Art etext16929 Lardner, Ring, 1885-1933 Treat 'em Rough etext16949 Clouston, William Alexander, 1843-1896 Flowers from a Persian Garden and Other Papers etext16971 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 A Prince of Sinners etext17005 Herculano, Alexandre, 1810-1877 Lendas e Narrativas (Tomo II) etext17038 Green, John Richard, 1837-1883 History of the English People, Volume II etext17084 Lawrence, George A. (George Alfred), 1827-1876 Guy Livingstone; etext17088 Shedd, George C. (George Clifford), 1877-1937 The Iron Furrow etext17159 Thieme, Hugo P. (Hugo Paul), 1870-1940 Women of Modern France etext17160 Various Modern Prose And Poetry; For Secondary Schools etext17214 Johnston, Annie F. (Annie Fellows), 1863-1931 The Quilt that Jack Built; How He Won the Bicycle etext17221 Defoe, Daniel, 1661?-1731 History of the Plague in London etext17234 etext17247 A Selection of Books published by Methuen and Co. Ltd., London, 36, Essex Street, W.C etext17279 Dougall, Lily, 1858-1923 The Mormon Prophet etext17292 Powell, E. Alexander (Edward Alexander), 1879-1957 The New Frontiers of Freedom from the Alps to the Ægean etext17320 Baring, Evelyn, 1841-1917 Political and Literary essays, 1908-1913 etext17331 Rappoport, A. S. (Angelo Solomon), 1871-1950 History of Egypt From 330 B.C. To the Present Time, Volume 11 (of 12) etext17435 Wilson, Anna May The Days of Mohammed etext17467 Forester, Fanny, 1817-1854 Effie Maurice etext17502 Maginnis, Charles, 1867-1955 Pen Drawing etext17551 Uzanne, Octave, 1852-1931 Le calendrier de Vénus etext17564 Freeman, Mary Eleanor Wilkins, 1852-1930 By the Light of the Soul etext17582 Stockton, Frank Richard, 1834-1902 Round-about Rambles in Lands of Fact and Fancy etext17593 Bertrand, A. [Pseudonym.], 1873-1953 Van Schooljongen tot Koning etext17603 Duffield, J. W. Bert Wilson in the Rockies etext17623 Villiers de L'Isle-Adam, Auguste, comte de, 1838-1889 Le secret de l'échafaud (1888) etext17624 Dibdin, Thomas Frognall, 1776-1847 A Bibliographical, Antiquarian and Picturesque Tour in France and Germany, Volume Three etext17661 Zaccone, Pierre, 1817-1895 La Recluse etext17670 Marcel, Jeanne Les petits vagabonds etext17674 Ibsen, Henrik, 1828-1906 Nora etext17688 Laforest, Jean-Louis Dubut de, 1853-1902 Morphine etext17703 Marguerite, Queen, consort of Henry II, King of Navarre, 1492-1549 The Tales Of The Heptameron, Vol. III. (of V.) etext17708 Bertrand, Aloysius, 1807-1841 Gaspard de la nuit etext17749 Leland, Charles Godfrey, 1824-1903 The Mystic Will etext17943 Jerome, Jerome K. (Jerome Klapka), 1859-1927 The Observations of Henry etext17950 Tolstoy, Leo, graf, 1828-1910 La guerre et la paix, Tome II etext17993 Holmes, Prescott Young Peoples' History of the War with Spain etext18031 Maxwell, Donald, 1877-1936 A Dweller in Mesopotamia etext18041 Anwyl, Edward, 1866-1914 Celtic Religion etext18064 Claretie, Jules, 1840-1913 L'américaine etext15766 Trollope, Anthony, 1815-1882 The Claverings etext18124 Hutton, Richard Holt, 1826-1897 Sir Walter Scott etext18175 Hartley, John, 1839-1915 Yorksher Puddin' etext18261 Piper, H. Beam, 1904-1964 Operation R.S.V.P. etext18263 Chevalier, H. Émile (Henri Émile), 1828-1879 La fille des indiens rouges etext18282 Poblete, Pascual Hicaro, 1857-1921 Buhay at Mga Ginawa ni Dr. Jose Rizal etext18296 Corbière, Édouard, 1793-1875 Scènes de mer, Tome II etext18323 Kleiser, Grenville, 1868-1953 Model Speeches for Practise etext18398 Pengilly, Mary Huestis Diary Written in the Provincial Lunatic Asylum etext18424 Swinburne, Algernon Charles, 1837-1909 A Midsummer Holiday and Other Poems etext18464 Various The Wit and Humor of America, Volume I. (of X.) etext18562 Shaler, Nathaniel Southgate, 1841-1906 Outlines of the Earth's History etext18605 Howells, William Dean, 1837-1920 A Pair of Patient Lovers etext18616 Coppens, Charles, 1835-1920 Moral Principles and Medical Practice etext18640 Trollope, Anthony, 1815-1882 Phineas Redux etext18668 Chambers, Robert W. (Robert William), 1865-1933 In Search of the Unknown etext18701 Anonymous Choice Readings for the Home Circle etext18754 etext18757 Beazley, C. Raymond, 1868-1955 Prince Henry the Navigator, the Hero of Portugal and of Modern Discovery, 1394-1460 A.D. etext18813 Henty, G. A. (George Alfred), 1832-1902 The Tiger of Mysore etext18850 Leeuwen, J.A.C. van (Jacobus Adrianus Cornelis), 1870-1930 Erasmus etext18862 De Quincey, Thomas, 1785-1859 The Uncollected Writings of Thomas de Quincey—Vol. 1 etext18879 Smith, Preserved, 1880-1941 The Age of the Reformation etext18898 Various Chambers's Edinburgh Journal, No. 437 etext18910 Anonymous Diary of a Nursing Sister on the Western Front, 1914-1915 etext18946 Various The Continental Monthly, Vol. 4, No. 6, December 1863 etext18981 Webster, Frank V. Dick the Bank Boy etext19104 Webster, Nesta H., 1876-1960 Secret Societies And Subversive Movements etext19121 Lawrence, George A. (George Alfred), 1827-1876 Sword and Gown etext19140 Tytler, Sarah, 1827-1914 Girlhood and Womanhood etext19149 Roussel, Raymond, 1877-1933 Locus Solus etext19157 Arnold, Gertrude Weld A Mother's List of Books for Children etext19207 Beston, Henry, 1888-1968 The Firelight Fairy Book etext19331 Stevenson, James, 1840-1888 Ceremonial of Hasjelti Dailjis and Mythical Sand Painting of the etext19386 Tupper, Martin Farquhar, 1810-1889 An Author's Mind : The Book of Title-pages etext14962 Gjellerup, Karl Adolph Der Pilger Kamanita etext15090 Päivärinta, Pietari, 1827-1913 Isäin pahat teot lasten päällä etext19402 Standish, Burt L., 1866-1945 Frank Merriwell's Reward etext19410 Morley, John, 1838-1923 Critical Miscellanies (Vol. 3 of 3) etext19417 Various Chambers's Edinburgh Journal, No. 434 etext19431 Chavette, Eugène, 1827-1902 Le saucisson à pattes II etext19449 Curtis, Edward S., 1868-1952 The North American Indian etext19464 Dorsey, James Owen, 1848-1895 Osage Traditions etext19506 Twain, Mark, 1835-1910 A Connecticut Yankee in King Arthur's Court etext19511 Perkins, Thomas, Rev., 1842-1907 Bell's Cathedrals: Wimborne Minster and Christchurch Priory etext19516 Collodi, Carlo, 1826-1890 The Adventures of Pinocchio etext19535 Chesterton, G. K. (Gilbert Keith), 1874-1936 George Bernard Shaw etext19573 Carroll, Lewis, 1832-1898 Alice's Adventures in Wonderland etext19593 Crane, Stephen, 1871-1900 The Third Violet etext19636 Busch, Wilhelm, 1832-1908 Bildergeschichten etext19758 United States. Council of National Defense. Highway Transport Committee Address by Honorable William C. Redfield, Secretary of Commerce at Conference of Regional Chairmen of the Highway Transport Committee Council of National Defense etext19770 Todhunter, I. (Isaac), 1820-1884 Spherical Trigonometry etext19790 Storm, Theodor, 1817-1888 Der Schimmelreiter etext19894 Negri, Antonio In gondoleta etext19895 Fisher, Sydney George, 1856-1927 The American Revolution and the Boer War, An Open Letter to Mr. Charles Francis Adams on His Pamphlet "The Confederacy and the Transvaal" etext19920 Féval, Paul, 1817-1887 L'avaleur de sabres etext19976 The Mabinogion Vol. 3 etext19979 Ashton, John, 1834-1911 A Righte Merrie Christmasse etext20050 etext20089 Erkko, J. H. (Juhana Heikki), 1849-1906 Kootut teokset III: Näytelmät etext20109 Boutwell, George S., 1818-1905 Reminiscences of Sixty Years in Public Affairs, Vol. 2 etext20136 The Seventeenth Highland Light Infantry (Glasgow Chamber of Commerce Battalion) etext20159 etext20190 Triemens, Joseph The Handy Cyclopedia of Things Worth Knowing etext20218 Sarmiento de Gamboa, Pedro, 1532?-1608? History of the Incas etext20219 Osborne, Duffield, 1858-1917 The Lion's Brood etext20287 Carr, Edmund Donald, -1900 A Night in the Snow etext20299 Emerson, Nathaniel Bright, 1839-1915 Unwritten Literature of Hawaii etext20395 Rose, Geoffrey Keith, 1889- The Story of the 2/4th Oxfordshire and Buckinghamshire Light Infantry etext20405 Flower, Jessie Graham [pseud.], -1931 Grace Harlowe's Overland Riders Among the Kentucky Mountaineers etext20484 etext20578 Chappell, Clovis G. Sermons on Biblical Characters etext20588 Finlay, Roger Thompson The Wonder Island Boys: Exploring the Island etext20619 Wardle, J. General Gordon etext20646 Daudet, Alphonse, 1840-1897 The Nabob, Volume 1 etext20699 May, Sophie, 1833-1906 Dotty Dimple at Her Grandmother's etext20707 Campbell, John Wood, 1910-1971 The Black Star Passes etext20713 Stewart, Jane L. A Campfire Girl's First Council Fire etext20738 Calderón, Sofronio G., 1878-1954? Diccionario Ingles-Español-Tagalog etext20743 Spargo, John, 1876-1966 The Marx He Knew etext20785 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext20817 etext20878 Morley, John, 1838-1923 Critical Miscellanies, Vol. I etext20891 Hughes, John Itinerary of Provence and the Rhone etext20926 Fletcher, W. G. D. The Register of Ratlinghope etext20934 White, Gilbert, 1720-1793 The Natural History of Selborne, Vol. 2 etext20977 Storm, Theodor, 1817-1888 Im Sonnenschein etext20998 Vasconcelos, António Augusto Teixeira de, 1816-1878 A fundação da monarchia portugueza etext21014 Ingelow, Jean, 1820-1897 Wonder-Box Tales etext21054 Unknown People's Handy Atlas of the World etext21209 Junqueiro, Abílio Manuel Guerra, 1850-1923 Pátria etext21210 Davis, Thomas Osborne, 1814-1845 Thomas Davis, Selections from his Prose and Poetry etext21214 Lockwood, Frank, Sir, 1846-1897 The Law and Lawyers of Pickwick etext21216 Bewsher, M. E. Catharine's Peril, or The Little Russian Girl Lost in a Forest etext21221 Lescarbot, Marc Conversion des Sauvages qui ont esté baptizés en la Nouvelle France, cette année 1610 etext21225 Various Scientific American Supplement, No. 1157, March 5, 1898 etext21239 Reid, Mayne, 1818-1883 The Cliff Climbers etext21240 Reid, Mayne, 1818-1883 The Lone Ranche etext21296 Fenn, George Manville, 1831-1909 Mother Carey's Chicken etext21353 Allen, William H. Civics and Health etext21383 Kingston, William Henry Giles, 1814-1880 Adventures in Australia etext21385 Kingston, William Henry Giles, 1814-1880 On the Banks of the Amazon etext21403 Kingston, William Henry Giles, 1814-1880 The Pirate of the Mediterranean etext21465 Kingston, William Henry Giles, 1814-1880 Hurricane Hurry etext21545 Bandarra, Gonçalo Anes, 1500-1556 Trovas Inedìtas de Bandarra etext21654 Norton, Minerva Brace, 1837- In and Around Berlin etext21656 Brazil, Angela, 1868-1947 The Princess of the School etext21680 Cammerer, Adelbert, 1786-1848 Die Jungfrau von Treiden etext21760 Finlay, Roger Thompson The Wonder Island Boys: Adventures on Strange Islands etext21788 Henty, G. A. (George Alfred), 1832-1902 Held Fast For England etext21855 Leal, António Duarte Gomes, 1848-1921 A Fome de Camões etext21856 Shakespeare, William, 1564-1616 Le roi Jean etext21859 Newman, John Henry, 1801-1890 Historical Sketches, Volume I (of 3) etext21894 Stratemeyer, Edward, 1862-1930 The Rover Boys at Colby Hall etext21925 etext21956 Committee, Knaresbrough Rail-way Report of the Knaresbrough Rail-way Committee etext21979 Henty, G. A. (George Alfred), 1832-1902 For Name and Fame etext22021 Hamilton, Ian, Sir, 1853-1947 Gallipoli Diary, Volume 2 etext22039 Erckmann-Chatrian Madame Thérèse etext22040 Various Prairie Farmer, Vol. 56: No. 3, January 19, 1884. etext22042 Dawson, William Francis Christmas: Its Origin and Associations etext22048 Hugo, Victor, 1802-1885 Napoléon Le Petit etext22203 Murray, David Christie, 1847-1907 My Contemporaries In Fiction etext22236 Jones, Edward Smyth, 1881- Flag of the Free etext22240 Various Masterpieces of Negro Eloquence etext22301 Weinbaum, Stanley Grauman, 1902-1935 Valley of Dreams etext22302 Fairbanks, Harold W. (Harold Wellman), 1860- The Western United States etext22421 Herrick, Robert, 1591-1674 The Hesperides & Noble Numbers: Vol. 1 and 2 etext22452 Forster, E. M. (Edward Morgan), 1879-1970 Howards End etext22590 Fontenay, Charles Louis, 1917-2007 Wind etext22607 Roberts, W. (William), 1862-1940 The Book-Hunter in London etext22618 Lamartine, Alphonse de, 1790-1869 Cours Familier de Littérature (Volume 1) etext19722 Stevenson, Robert Louis, 1850-1894 A Child's Garden of Verses etext19734 Craik, Dinah Maria Mulock, 1826-1887 The Fairy Book etext22631 Shabeeny, Abd Salam An Account of Timbuctoo and Housa Territories in the Interior of Africa etext22677 Abbott, G. F. (George Frederick) Greece and the Allies 1914-1922 etext22680 Lowell, James Russell, 1819-1891 The Biglow Papers etext22715 Bellamy, Edward, 1850-1898 The Cold Snap etext22735 Stead, William T. King of the Jews etext22807 Green, Anna Katharine, 1846-1935 A Difficult Problem etext22868 Jacobs, Aletta H. (Aletta Henriette), 1854-1929 De Vrouw etext22901 Blicher, Steen Steensen, 1782-1848 Taglibro de Vilaĝ-pedelo etext22934 John the Apostle, Saint The First Epistle of John etext23069 Kingston, William Henry Giles, 1814-1880 Janet McLaren etext23074 Kingston, William Henry Giles, 1814-1880 A Voyage round the World etext23087 Various Punch, or the London Charivari, Vol. 146, March 18, 1914 etext23090 Winton, Julia de Yr Ynys Unyg etext23092 Wagner, Charles, 1852-1916 The Simple Life etext23108 Alger, Horatio, 1832-1899 Chester Rand etext23176 Peattie, Elia Wilkinson, 1862-1935 A Michigan Man etext23186 Boutell, Charles, 1812-1877 The Handbook to English Heraldry etext23236 Blasco Ibáñez, Vicente, 1867-1928 Mare nostrum etext23241 Jowett, John Henry, 1864-1923 My Daily Meditation for the Circling Year etext23245 Dutt, Toru, 1856-1877 Ancient Ballads and Legends of Hindustan etext23246 Bailey, Temple, -1953 Mistress Anne etext23261 Young, Egerton Ryerson, 1840-1909 Oowikapun etext23304 Lockhart, Caroline, 1870-1962 The Lady Doc etext23343 Senior, William, 1839?-1920 Lines in Pleasant Places etext23368 Bacon, Josephine Dodge Daskam, 1876-1961 The Courting Of Lady Jane etext23381 Ballantyne, R. M. (Robert Michael), 1825-1894 The Thorogood Family etext23413 Hichens, Robert Smythe, 1864-1950 The Princess And The Jewel Doctor etext23418 Hichens, Robert Smythe, 1864-1950 Desert Air etext23440 Becke, Louis, 1855-1913 Edward Barry etext23442 Júnior, Faustino Fonseca Lyra da Mocidade etext23454 etext23460 Abroad etext23501 Walton, Amy, 1848-1899 A Pair of Clogs etext23528 Anonymous Carlo etext23561 Garrett, Randall, 1927-1987 Anchorite etext23572 Various Blackwood's Edinburgh Magazine, Volume 61, No. 379, May, 1847 etext23590 Cordeiro, Manoel Caldas, 1869-1914 Alexandre Herculano etext23642 Green, John Richard, 1837-1883 History of the English People, Volume V etext23671 V. M. The Strange Little Girl etext23694 Smith, Francis Hopkinson, 1838-1915 Homo etext23735 Lindsay, Maud, 1874-1941 The Story-teller etext23774 Ibsen, Henrik, 1828-1906 La Asocio de la Junuloj etext23787 Märchen-Sammlung etext23795 Winslow, Margaret E. Katie Robertson etext23861 The Story of the Great War, Volume V (of 12) etext23925 Brehm, Alfred Edmund, 1829-1884 Het Leven der Dieren etext23986 Hayes, I. I. (Isaac Israel), 1832-1881 Cast Away in the Cold etext24016 Duchochois, Peter C. Photographic Reproduction Processes etext24038 Sunzi, ca. 5th cent. 孫子算經 etext24046 Tooker, William Wallace, 1848-1917 John Eliot's First Indian Teacher and Interpreter Cockenoe-de-Long Island and The Story of His Career from the Early Records etext24099 Wu, Wo-Yao Er Shih Nian Mu Du Guai Sian Jhuang etext24168 Marlowe, Amy Bell A Little Miss Nobody etext24188 Various The Strand Magazine, Volume V, Issue 30, June 1893 etext24199 etext24369 Gréville, Henry, 1842-1902 La Niania etext24401 Garrett, João Batista da Silva Leitão de Almeida, 1799-1854 Viagens na Minha Terra etext24420 Anonymous The Story Of Frithiof The Bold etext24470 Marryat, Frederick, 1792-1848 Japhet in Search of a Father etext24508 Pina, Rui de, 1440-1521 Chronica de el-rei D. Affonso V (Vol. III) etext24528 Williamson, Mabel Have We No Rights? etext24553 Morley, John, 1838-1923 Critical Miscellanies (Vol. 2 of 3) etext24587 Cholmondeley, Mary, 1859-1925 The Lowest Rung etext24623 Mother Goose etext24636 Lemay, Pamphile, 1837-1918 Picounoc le maudit etext24660 Optic, Oliver, 1822-1897 Hope and Have etext24666 Kingston, William Henry Giles, 1814-1880 The Voyages of the Ranger and Crusader etext24748 Lima, Jaime de Magalhães, 1859-1936 A Democracia etext24758 Altsheler, Joseph A. (Joseph Alexander), 1862-1919 The Eyes of the Woods etext24765 Lippitt, Francis J. (Francis James), 1812-1902 A Treatise on the Tactical Use of the Three Arms: Infantry, Artillery, and Cavalry etext24788 Mooney, James, 1861-1921 The Sacred Formulas of the Cherokees etext24818 Freeman, Edward Augustus, 1823-1892 Sketches of Travel in Normandy and Maine etext24867 Anonymous Dictionnaire complet de l'argot employé dans les Mystères de Paris etext24875 Montgomery, L. M. (Lucy Maud), 1874-1942 Lucy Maud Montgomery Short Stories, 1904 etext24907 Hough, Emerson, 1857-1923 The Lady and the Pirate etext24929 Wallace, Edgar, 1875-1932 The Green Rust etext24966 Sevcik, Al Survival Tactics etext25019 Verne, Jules, 1828-1905 Ein Drama in Mexico. etext25083 Various The Idler Magazine, Volume III, March 1893 etext25091 etext25106 Becke, Louis, 1855-1913 "The Gallant, Good Riou", and Jack Renton etext25113 Gomes, João Augusto Marques, 1853-1931 Centenario do Revolução de 1820 etext25129 Anstey, F., 1856-1934 Baboo Jabberjee, B.A. etext25182 De Roberto, Federico, 1861-1927 Documenti Umani etext25185 Quinby, M. (Moses), 1810-1875 Mysteries of Bee-keeping Explained etext25190 Roberts, Morley, 1857-1942 A Tramp's Notebook etext25210 Marinetti, Filippo Tommaso, 1876-1944 Distruzione etext25288 Anonymous 山海經 etext25311 Stankiević, V. El la vivo de esperantistoj etext25318 Belgioioso, Cristina, 1808-1871 Studi intorno alla storia della Lombardia etext25332 Lu, Xun, 1881-1936 阿Q正傳 etext25367 Li, Qingzhao, 1081-ca. 1141 漱玉詞 etext25400 Barker, John Marshall, 1849-1928 Colleges in America etext25413 Thomas, Jean, 1881- Blue Ridge Country etext25449 Fenn, George Manville, 1831-1909 The Young Castellan etext25476 Anonymous Golden Deeds etext24417 Keyes, Hervey The Forest King etext25520 Cameron, Charles Alexander, Sir, 1830-1921 The Stock-Feeder's Manual etext25550 Norton, Andre, 1912-2005 The Defiant Agents etext25552 Randell, Winifred Milk for You and Me etext25567 Cox, Irving E. Impact etext25591 Various Punch, or the London Charivari, Vol. 158, 1920-05-19 etext25615 Pons, A. J., 1829-1884 Sainte Beuve et ses inconnues etext25650 Anonymous All About the Little Small Red Hen etext25654 MacGregor, Mary Esther Miller, 1876-1961 Stories of King Arthur's Knights etext25687 etext25739 Wilson, Ann The Alembic Plot etext25801 Vandercook, Margaret, 1876- The Girl Scouts in Beechwood Forest etext25847 Wells, Carolyn, 1862-1942 Patty's Friends etext25911 Mahan, A. T. (Alfred Thayer), 1840-1914 Sea Power in its Relations to the War of 1812 etext25919 Benson, E. F. (Edward Frederic), 1867-1940 Miss Mapp etext25957 Various The Contemporary Review, January 1883 etext26014 Browne, Montagu Practical Taxidermy etext26066 Williamson, Jack, 1908-2006 The Cosmic Express etext26076 Urban, Emil K. Birds from Coahuila, Mexico etext26145 Niebuhr, Carl, 1861-1927 The Tell El Amarna Period etext26325 Lucci, Eduardo Shwalbach, 1860-1946 A Mulher Portugueza etext26353 Blanche, Émile, 1820-1893 Des homicides commis par les aliénés etext26411 Vaz, João Villa Nova de Gaia etext26427 Bellasis, Edward, 1852-1922 Cardinal Newman as a Musician etext26430 Ribot, Th. (Théodule), 1839-1916 Essai sur l'imagination créatrice. English etext26484 Various Blackwood's Edinburgh Magazine, Volume 61, No. 380, June, 1847 etext26508 Fromentin, Eugène, 1820-1876 Fiebre de amor (Dominique) etext26560 Tolman, Albert Walter, 1866- Jim Spurling, Fisherman etext26615 etext26642 Westerman, Percy F. (Percy Francis), 1876-1959 Wilmshurst of the Frontier Force etext26664 Tolstoy, Leo, graf, 1828-1910 The Live Corpse etext26708 Various Punch, or the London Charivari, Vol. 104, May 13, 1893 etext26757 Shakespeare, William, 1564-1616 La mort de Lucrèce etext26815 Feuillet, Octave, 1821-1890 Le roman d'un jeune homme pauvre (Novel) etext21860 Wassermann, Jakob, 1873-1934 Olivia oder Die unsichtbare Lampe etext26830 Warner, Susan, 1819-1885 The Old Helmet, Volume II etext26872 Han, Bangqing, 1856-1894 海上花列傳 etext26878 Petherick, Horace, 1839-1919 The Repairing & Restoration of Violins etext26904 Unknown 天豹圖 etext26994 Stephens, C. A. (Charles Asbury), 1844-1931 When Life Was Young etext27103 Gréville, Henry, 1842-1902 The Little Russian Servant etext27257 Anderson, Frederick Irving, 1877-1947 Electricity for the farm etext27273 Behn, Aphra, 1640-1689 The Works of Aphra Behn etext27305 Plunkett, Horace Curzon, Sir, 1854-1932 The Rural Life Problem of the United States etext27306 Stocking, Abner, 1753- An interesting journal of Abner Stocking of Chatham, Connecticut etext27432 Ford, Ford Madox, 1873-1939 The Fifth Queen Crowned etext27434 Chapman, S. E. (Samuel E.) Doctor Jones' Picnic etext27457 Sargent, Epes, 1813-1880 The Woman Who Dared etext27510 Select Masterpieces of Biblical Literature etext27525 Wallace, Edgar, 1875-1932 Bones in London etext27530 Brooke, L. Leslie (Leonard Leslie), 1862-1940 The Tailor and the Crow etext27590 D'Annunzio, Gabriele, 1863-1938 Cabiria etext27592 Euripides, 480? BC-406 BC Ανδρομάχη etext27597 Stephen, Leslie, Sir, 1832-1904 The English Utilitarians, Volume I. etext27622 Duchess, 1855?-1897 The story of my first novel; How a novel is written etext27701 New York Central Railroad Company The Greatest Highway in the World etext27710 Smiles, Samuel, 1812-1904 Lives of the Engineers etext27787 Nearing, Scott, 1883-1983 The American Empire etext27817 Morris, Lewis, Sir, 1833-1907 Gycia etext27927 Brehm, Alfred Edmund, 1829-1884 Het Leven der Dieren etext27972 Bernard, F. Van Batavia naar Atjeh, dwars door Sumatra etext28001 Obama, Barack, 1961- Inaugural Presidential Address etext28008 Robins, Elizabeth, 1862-1952 Under the Southern Cross etext28014 Bruner, Ludwik, 1871-1913 Jeden miesiąc życia etext28044 etext28080 Byron, George Gordon Byron, Baron, 1788-1824 Oeuvres complètes de lord Byron. Tome 2. etext28100 Speidel, Ludwig, 1830-1906 Heilige Zeiten etext28118 Jones, Raymond F., 1915-1994 The Great Gray Plague etext28122 Gandavo, Pero de Magalhães, -1576 Tractado da terra do Brasil etext28203 Alcott, Louisa May, 1832-1888 Moods etext28204 Paine, Albert Bigelow, 1861-1937 How Mr. Rabbit Lost his Tail etext28208 Orr, Charles Ebert, 1861-1933 The Gospel Day etext28212 Picón, Jacinto Octavio, 1852-1923 La vistosa etext28238 Gummerus, K. J., 1840-1898 Veljekset etext28257 The Story of the Great War, Volume I (of 8) etext28264 Hanshew, Thomas W., 1857-1914 Cleek, the Master Detective etext28271 Sawyer, Ruth, 1880-1970 Seven Miles to Arden etext28302 Paine, Albert Bigelow, 1861-1937 The Arkansaw Bear etext28418 Meader, Stephen W. (Stephen Warren), 1892-1977 The Black Buccaneer etext28437 Howard, Allan It's a Small Solar System etext28453 Coblentz, Stanton Arthur, 1896-1982 Flight Through Tomorrow etext28484 Mansel, Henry Longueville, 1820-1871 The Philosophy of the Conditioned etext28506 Warner, Charles Dudley, 1829-1900 Our Italy etext28531 Warren, George A. The Banner Boy Scouts Snowbound etext28553 Williams, Archibald How it Works etext28609 Heath, Sidney, 1872- The Cornish Riviera etext28658 Deledda, Grazia, 1871-1936 Καλαμιές στον άνεμο etext28704 Codman, John, 1814-1900 Free Ships: The Restoration of the American Carrying Trade etext28765 etext28798 Porter, Eleanor H. (Eleanor Hodgman), 1868-1920 Pollyanna etext28803 Twain, Mark, 1835-1910 The Works Of Mark Twain etext28821 Warner, Charles Dudley, 1829-1900 The Works of Charles Dudley Warner etext28832 Hamilton, Edmond, 1904-1977 The Sargasso of Space etext28838 Richardson, Henry Handel, 1870-1946 The Getting of Wisdom etext28888 Petruccelli della Gattina, Ferdinando, 1816-1890 Il Re prega etext28890 Luce, Edmund Helps to Latin Translation at Sight etext28960 Roberts, Charles George Douglas, Sir, 1860-1943 The Backwoodsmen etext29018 Morley, John, 1838-1923 Critical Miscellanies (Vol. 3 of 3) etext29037 Rovetta, Gerolamo, 1854-1910 Baby etext29099 Various Harper's Young People, August 17, 1880 etext29117 Andrews, William, 1848-1908 Bygone Punishments etext29124 Oehlenschläger, Adam Gottlob, 1779-1850 The Gold Horns etext29170 Miller, Walter M., 1923-1996 The Hoofer etext28912 Rand, Ayn, 1905-1982 Anthem etext29224 Warren, Mercy Otis, 1728-1814 The Group etext29259 Dewey, John, 1859-1952 The Child and the Curriculum etext29302 Rimbaud, Arthur, 1854-1891 Poésies complètes etext29317 Thiessen, V. E. There Will Be School Tomorrow etext29346 Grey, Zane, 1872-1939 Tales of Fishes etext29382 Anonymous The Ladies' Work-Table Book etext29389 Wandrei, Donald A., 1908-1987 Raiders of the Universes etext29400 Dawson, Coningsby, 1883-1959 Murder Point etext29405 Burroughs, Edgar Rice, 1875-1950 The Gods of Mars etext29436 Meinauer Naturlehre etext29500 Cannan, Gilbert, 1884-1955 Mummery etext29606 Thomas, Frederick W. (Frederick William), 1806-1866 The Emigrant etext29619 Kornbluth, C. M. (Cyril M.), 1924-1958 The Altar at Midnight etext29708 Mäkinen, Antti, 1857-1936 Runoelmia etext29711 Galsworthy, John, 1867-1933 Another Sheaf etext29748 Ogden, George W. (George Washington), 1871-1966 The Duke Of Chimney Butte etext29853 Andrews, Charles McLean, 1863-1943 The Fathers of New England etext29882 Various Astounding Stories of Super-Science, October, 1930 etext29897 Samachson, Joseph, 1906-1980 Runaway etext29902 Ervine, St. John G. (St. John Greer), 1883-1971 Changing Winds etext29925 Various Le Tour du Monde; d'Alexandrette au coude de l'Euphrate etext29931 Lohrman, Paul The Big Tomorrow etext29969 Various The Celtic Magazine, Vol. 1, No. 3, January 1876 etext29979 Coelho Louzada, Antonio José, 1828-1859 Os tripeiros etext30020 Matsuyama kagami. English etext30049 Dominicus, F. C. (Foort Cornelis), 1884- Het huiselik en maatschappelik leven van de Zuid-Afrikaner etext30073 Various Encyclopaedia Britannica, 11th Edition, Volume 8, Slice 3 etext30115 Sedgwick, Anne Douglas, 1873-1935 Tante etext30128 McReynolds, Robert, -1928 Where Strongest Tide Winds Blew etext30130 Ballou, Maturin Murray, 1820-1895 Due South or Cuba Past and Present etext30138 Connolly, James B. (James Brendan), 1868-1957 The Seiners etext30222 Various The Strand Magazine, Volume V, Issue 27, March 1893 etext30261 Blades, Leslie Burton Claire etext29378 Pinafore Palace etext30300 MacMahon, Henry Orphans of the Storm etext30316 Bensusan, S. L. (Samuel Levy), 1872-1958 Velazquez etext30336 Stephen, Leslie, Sir, 1832-1904 Hours in a Library etext30375 Brooks, John Graham, 1846-1938 The Conflict between Private Monopoly and Good Citizenship etext30415 Various The Galaxy etext30430 Various Vasárnapi Könyv etext30437 Vance, Gerald Larson's Luck etext30460 Zhuge, Liang, 181-234 出師表 etext30466 Hergesheimer, Joseph, 1880-1954 Wild Oranges etext30478 Alcott, William A. (William Andrus), 1798-1859 Vegetable Diet: As Sanctioned by Medical Men, and by Experience in All Ages etext30488 Yeats, W. B. (William Butler), 1865-1939 The Green Helmet and Other Poems etext30532 Various Astounding Stories, May, 1931 etext30548 Jackson, F. Hamilton (Frederick Hamilton), 1848-1923 The Shores of the Adriatic etext30584 Macklin, Charles, 1697?-1797 The Covent Garden Theatre, or Pasquin Turn'd Drawcansir etext30598 Stevenson, Robert Louis, 1850-1894 The Works of Robert Louis Stevenson, Volume 9 etext30647 Macaulay, Rose, Dame, 1881-1958 Mystery at Geneva etext30657 Moody, Dwight Lyman, 1837-1899 Sovereign Grace etext30670 Purcell, Dick Mr. Chipfellow's Jackpot etext30785 Viollet-le-Duc, Eugène-Emmanuel, 1814-1879 Dictionnaire raisonné de l'architecture française du XIe au XVIe siècle (5/9) etext30799 Lamplugh, F. The Gnôsis of the Light etext30825 Frey, Hildegard G. (Hildegard Gertrude), 1891-1957 The Campfire Girls on Ellen's Isle etext30898 Jones, J. Knox, 1929-1992 A New Bog Lemming (Genus Synaptomys) From Nebraska etext30904 Bois, Louis François Du Glossaire du patois normand etext30961 Davenport, Spencer The Rushton Boys at Rally Hall etext30983 Jutsum, J. Netherclift Knots, Bends, Splices etext31028 Various Punch, or the London Charivari, Vol. 158, May 26, 1920 etext31163 Cox, Harold, 1859-1936 Are we Ruined by the Germans? etext31179 Chapelle, Howard I. (Howard Irving), 1901-1975 Fulton's "Steam Battery": Blockship and Catamaran etext31238 Scudder, Horace E. Noah Webster etext31249 etext31260 Vandal, Albert, 1853-1910 Napoléon et Alexandre Ier (2/3) etext31294 Dahn, Felix, 1834-1912 Ein Kampf um Rom. Erster Band etext31315 Grimké, Archibald Henry, 1849-1930 Charles Sumner Centenary etext31324 Griffith, George Chetwynd, 1857-1906 The Angel of the Revolution etext31379 Barreto, Guilherme Moniz, 1863-1896 Oliveira Martins: Estudo de Psychologia etext31380 Horton, Marcus Bred of the Desert etext31413 Anderson, Robert Edward The Story of Extinct Civilizations of the West etext31492 Unknown Rossmoyne etext31536 Mickiewicz, Adam, 1798-1855 Pan Tadeusz etext31542 Rolland, Romain, 1866-1944 Pierre and Luce etext31549 Shields, G. O. The Battle of the Big Hole etext31571 Morris, Charles, 1833-1922 Historic Tales, Vol. 12 (of 15) etext31592 Addison, Joseph, 1672-1719 Cato etext31690 Various Notes and Queries, Number 239, May 27, 1854 etext31695 Guimarães, Alberto Dias Folhas Soltas etext31696 Figueiredo, Candido de Morte de Yaginadatta etext31710 Jefferies, Richard, 1848-1887 The Hills and the Vale etext31792 Deland, Margaret Wade Campbell, 1857-1945 An Old Chester Secret etext31794 Otto, Rudolf, 1869-1937 Naturalism And Religion etext31804 Seawell, Molly Elliot, 1860-1916 Francezka etext31811 Waterton, Charles, 1782-1865 Wanderings in South America etext31814 Hemstreet, Charles Literary New York etext31819 etext31844 Spooner, Lysander, 1808-1887 The Unconstitutionality of Slavery etext31881 Comte, Auguste Cours de philosophie positive. (1/6) etext31907 Holmes, William Henry, 1846-1933 Ancient Pottery of the Mississippi Valley etext31914 Tomlinson, Everett Titsworth, 1859-1931 The Story of General Pershing etext31918 Loti, Pierre, 1850-1923 Quelques aspects du vertige mondial etext31989 Stratemeyer, Edward, 1862-1930 To Alaska for Gold etext32014 Meyrink, Gustav, 1868-1932 Fledermäuse etext32059 Goodwin, Harold L. (Harold Leland), 1914-1990 The Pirates of Shan etext32178 Wise, H. A. (Henry Augustus), 1819-1869 Los Gringos etext32199 Ouida, 1839-1908 A House-Party etext32220 Dahn, Felix, 1834-1912 A Captive of the Roman Eagles etext32236 Laut, A. C. The Story of the Trapper etext32440 Bowen, Robert Sydney Dave Dawson at Dunkirk etext32475 Díaz del Castillo, Bernal, 1492-1585 The Memoirs of the Conquistador Bernal Diaz del Castillo, Vol 2 (of 2) etext32611 Boykin, Edward M. The Falling Flag etext32671 Waltermire, Arthur B. The Doors of Death etext32693 Lever, Charles James, 1806-1872 That Boy Of Norcott's etext5874 Porter, Eleanor H. (Eleanor Hodgman), 1868-1920 Dawn etext7358 Stretton, Hesba, 1832-1911 Brought Home etext9091 Pansy, 1841-1930 Ester Ried Yet Speaking etext9104 Roosevelt, Theodore, 1858-1919 The Naval War of 1812 etext9299 Godwin, William, 1756-1836 Italian Letters, Vols. I and II etext9367 Brown, Alice, 1857-1948 Meadow Grass etext9391 Various The Atlantic Monthly, Volume 04, No. 25, November, 1859 etext9413 Pope, Alexander, 1688-1744 The Poetical Works of Alexander Pope, Volume 1 etext9422 Hardy, Thomas, 1840-1928 A Laodicean etext13358 Various Scientific American Supplement, No. 803, May 23, 1891 etext14626 Hayes, Clair W. (Clair Wallace), 1887- The Boy Allies with the Victorious Fleets etext14641 Helvetius, John Frederick The Golden Calf, Which the World Adores, and Desires etext29821 Shakespeare Jest-Books etext29822 O'Hara, Thomas J. Rescue Squad etext29860 Bennett, Arnold, 1867-1931 A Great Man etext29929 Froude, James Anthony, 1818-1894 Bunyan etext29935 Strindberg, August, 1849-1912 Inferno etext30008 Turgeon, Charles Marie Joseph, 1855-1934 Le féminisme français I etext30046 Various Le Tour du Monde; Abydos etext30079 Strindberg, August, 1849-1912 Skäkarlsliv etext22128 Ward, Humphry, Mrs., 1851-1920 Bessie Costrell etext25825 French, Allen, 1870-1946 At Plattsburg etext30482 Upward, Allen, 1863-1926 The International Spy etext8438 Aristotle, 384 BC-322 BC Ethics etext10312 Stewart, Effie (vocal) The Pattison Waltz etext11811 Library of Congress. Copyright Office U.S. Copyright Renewals, 1955 January - June etext11840 Library of Congress. Copyright Office U.S. Copyright Renewals, 1969 July - December etext11872 Various Punch, or the London Charivari, Volume 156, April 23, 1919 etext11895 Angell, Norman, 1872-1967 Peace Theories and the Balkan War etext11942 Roosevelt, Theodore, 1858-1919 The Winning of the West, Volume 2 etext11287 Conscience, Hendrik, 1812-1883 De omwenteling van 1830 etext11361 Various The Mirror of Literature, Amusement, and Instruction etext11384 Various The Mirror of Literature, Amusement, and Instruction etext11480 Jacobs, W. W. (William Wymark), 1863-1943 Striking Hard etext11485 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext13700 Work Projects Administration Slave Narratives: a Folk History of Slavery in the United States etext15296 Sue, Eugène, 1804-1857 Le juif errant - Tome II etext32727 Hugo Paul Thieme Women of Modern France (Illustrated) etext32728 Froude, James Anthony, 1818-1894 The English in the West Indies etext32729 Chatzopoulos, Mitsos Local Drawings etext32730 Orczy, Emmuska Orczy, Baroness, 1865-1947 The Heart of a Woman etext32731 Partridge, Edward Bellamy Sube Cane etext32732 Oppenheim, E. Phillips (Edward Phillips), 1866-1946 Jacob's Ladder etext25984 Pinero, Arthur Wing, Sir, 1855-1934 The Big Drum etext32733 Hardenbergh, John Leonard The Journal of Lieut. John L. Hardenbergh of the Second New York Continental Regiment from May 1 to October 3, 1779, in General Sullivan's Campaign Against the Western Indians etext32734 Savage, Arthur Dekker Fly By Night etext32735 Marks, Winston K., 1915-1979 Forsyte's Retreat etext32736 etext32737 Dryfoos, Dave Uniform of a Man etext32738 Various Blackwood's Edinburgh Magazine, Volume 58, No. 359, September 1845 etext103 Verne, Jules, 1828-1905 Around the World in 80 Days etext32739 Trimble, Louis Probability etext1316 Conrad, Joseph, 1857-1924 Some Reminiscences etext2578 Taine, Hippolyte, 1828-1893 The French Revolution - Volume 1 etext2607 Wodehouse, P. G. (Pelham Grenville), 1881-1975 Psmith, Journalist etext2620 Stevenson, Burton Egbert, 1872-1962 The Home Book of Verse — Volume 2 etext2637 Tolstoy, Leo, graf, 1828-1910 Youth etext2705 Harte, Bret, 1836-1902 Sally Dows etext2713 Haggard, Henry Rider, 1856-1925 Maiwa's Revenge etext2726 Alcott, Louisa May, 1832-1888 Eight Cousins etext32599 Fogazzaro, Antonio, 1842-1911 Il dolore nell'arte etext5829 Sinclair, Upton, 1878-1968 The Moneychangers etext18933 Gregory, Jackson, 1882-1943 Man to Man etext20536 Conscience, Hendrik, 1812-1883 De Ziekte der Verbeelding etext20609 Drummond, William Henry, 1854-1907 The Voyageur and Other Poems etext20659 Piper, H. Beam, 1904-1964 Ministry of Disturbance etext20690 Unknown Livre de Ruth etext12596 Oemler, Marie Conway, 1879-1932 The Purple Heights etext22796 Power, Tyrone, 1797-1841 Impressions of America etext22811 Green, Anna Katharine, 1846-1935 The Staircase At The Heart's Delight etext22813 About, Edmond, 1828-1885 Heath's Modern Language Series: La Mère de la Marquise etext1272 Lefebure, Victor The Riddle of the Rhine; chemical strategy in peace and war etext1299 Bower, B. M., 1874-1940 The Heritage of the Sioux etext1313 Lawson, Henry, 1867-1922 Over the Sliprails etext1321 Eliot, T. S. (Thomas Stearns), 1888-1965 The Waste Land etext1362 Appleton, Victor [pseud.] Tom Swift and His Undersea Search, or, the Treasure on the Floor of the Atlantic etext1384 Galt, John, 1779-1839 The Ayrshire Legatees, or, the Pringle family etext1413 Dickens, Charles, 1812-1870 Tom Tiddler's Ground etext4836 Motley, John Lothrop, 1814-1877 The Rise of the Dutch Republic — Complete (1555-84) etext10268 Wells, Carolyn, 1862-1942 Patty at Home etext15156 Bibesco, Elizabeth, 1897-1945 Balloons etext32566 Mitford, Bertram, 1855-1914 The Triumph of Hilary Blachland etext32580 Wellman, Manly Wade, 1903-1986 The Golgotha Dancers etext32583 Leahy, Tom Tape Jockey etext32655 Magill, Rory The Last Gentleman
list_reading/make.dep
book.o: book.cpp book.h counted.h counted.o: counted.cpp counted.h mergeLists.o: mergeLists.cpp book.h counted.h readingList.h
list_reading/makefile
MAINPROG=mergeLists DIR=${PWD} ASST=$(notdir ${DIR}) CC=gcc CXX=g++ ## # Adjust settings for different compilers # ifeq ($(OS),Windows_NT) # # Flags for Windows compilers CPPFLAGS=-g -std=c++17 -MMD -pthread -D_GLIBCXX_DEBUG -Wall LFLAGS= RM=del /q EXE=.exe else # # Flags for Linux & MacOS CPPFLAGS=-g -std=c++17 -MMD -pthread -D_GLIBCXX_DEBUG -Wall LFLAGSx=-fuse-ld=gold -pthread RM=/bin/rm -rf EXE= endif # ######################################################################## # Macro definitions for "standard" C and C++ compilations # CFLAGS=-g TARGET=$(MAINPROG)$(EXE) CPPS=$(wildcard *.cpp) MAINCPPS=$(filter-out unittest.cpp test%.cpp, $(CPPS)) TESTCPPS=$(filter-out $(MAINPROG).cpp, $(CPPS)) LINK=g++ $(CPPFLAGS) # # # In most cases, you should not change anything below this line. # # The following is "boilerplate" to set up the standard compilation # commands: # MAINOBJS=$(MAINCPPS:%.cpp=%.o) TESTOBJS=$(TESTCPPS:%.cpp=%.o) DEPENDENCIES = $(CPPS:%.cpp=%.d) %.d: %.cpp touch $@ %.o: %.cpp $(CXX) $(CPPFLAGS) -o $@ -c $*.cpp # # Targets: # all: $(TARGET) unittest$(EXE) $(TARGET): $(MAINOBJS) $(LINK) $(FLAGS) -o $(TARGET) $^ $(LFLAGS) clean: -/bin/rm -rf *.d *.o $(TARGET) unittest$(EXE) docs documentation: -mkdir docs doxygen Doxyfile unittest$(EXE): $(TESTOBJS) $(LINK) $(FLAGS) -o $@ $^ $(LFLAGS) make.dep: $(DEPENDENCIES) -cat $(DEPENDENCIES) > $@ include make.dep
list_reading/mergeLists.cpp
#include <iostream> #include <string> #include <fstream> #include "book.h" #include "readingList.h" using namespace std; ReadingList readList(const string& fileName) { ReadingList c; ifstream in (fileName); in >> c; in.close(); return c; } ReadingList mergeReadingLists (const ReadingList& cat1, const ReadingList& cat2) { ReadingList result; ReadingList::const_iterator i = cat1.begin(); ReadingList::const_iterator j = cat2.begin(); while (i != cat1.end() && j != cat2.end()) { const Book& b1 = *i; const Book& b2 = *j; if (b1.getID() < b2.getID()) { result.add(b1); ++i; } else { result.add(b2); ++j; } } while (i != cat1.end()) { result.add(*i); ++i; } while (j != cat2.end()) { result.add(*j); ++j; } return result; } void mergeReadingListFiles (const string& readingListFile1, const string& readingListFile2) { ReadingList c1, c2; c1 = readList(readingListFile1); cout << readingListFile1 << " contained " << c1.size() << " books." << endl; c2 = readList(readingListFile2); cout << readingListFile2 << " contained " << c2.size() << " books." << endl; ReadingList c3 = mergeReadingLists (c1, c2); cout << "Their merge contains " << c3.size() << " books." << endl; cout << c3 << flush; } int main (int argc, char** argv) { if (argc != 3) { cerr << "Usage: " << argv[0] << "readingListFile1 readingListFile2" << endl; return -1; } string file1 = argv[1]; string file2 = argv[2]; mergeReadingListFiles (file1, file2); if (Counted::getCurrentCount() == 0) { cout << "No memory leak detected." << endl; return 0; } else { cout << "Memory leak detected: " << Counted::getCurrentCount() << endl; return -2; } }
list_reading/mergeLists.d
mergeLists.o: mergeLists.cpp book.h counted.h readingList.h
list_reading/readingList.cpp
list_reading/readingList.cpp
/*
* readingList.cpp
*
* Created on: May 11, 2021
* Author: zeil
*/
#include
"readingList.h"
#include
<
algorithm
>
using
namespace
std
;
/**
* A list of books, identified by Gutenberg ID.
*/
/**
* Check to see if a book is contained in the reading list.
*
*
@param
bookID the ID string of a potential book
*
@returns
true iff a book with that ID is in the reading list.
*/
bool
ReadingList
::
contains
(
std
::
string bookID
)
const
{
return
find
(
bookID
)
!=
books
.
end
();
}
/**
* Read a reading list from the input stream, terminating at
* end of stream or at a book with ID "**END**".
*
*
@param
in the stream to read from.
*
@param
readingList the reading list variable to hold the input.
*
@return
the stream from which the data was read.
*/
std
::
istream
&
operator
>>
(
std
::
istream
&
in
,
ReadingList
&
readingList
)
{
readingList
=
ReadingList
();
Book
b
;
while
(
in
>>
b
)
{
if
(
b
.
getID
()
!=
"**END**"
)
{
readingList
.
add
(
b
);
}
else
{
break
;
}
}
return
in
;
}
/**
* Write a reading list to an output stream.
*
*
@param
out the stream to print to.
*
@param
readingList the reading list to be printed.
*
@return
the stream to which the data was written.
*
*/
std
::
ostream
&
operator
<<
(
std
::
ostream
&
out
,
const
ReadingList
&
readingList
)
{
for
(
const
Book
&
b
:
readingList
)
{
out
<<
b
<<
endl
;
}
return
out
;
}
/**
* Compare two reading lists.
*
@param
left a reading list
*
@param
right a reading list
*
@return
True iff both reading lists are of the same length and all corresponding
* elements are equal.
*/
bool
operator
==
(
const
ReadingList
&
left
,
const
ReadingList
&
right
)
{
if
(
left
.
size
()
!=
right
.
size
())
return
false
;
else
{
auto it1
=
left
.
begin
();
auto it2
=
right
.
begin
();
while
(
it1
!=
left
.
end
())
{
if
(
!
(
*
it1
==
*
it2
))
return
false
;
++
it1
;
++
it2
;
}
return
true
;
}
}
list_reading/readingList.d
list_reading/readingList.h
/* * readingList.h * * Created on: May 11, 2021 * Author: zeil */ #ifndef READINGLIST_H_ #define READINGLIST_H_ #include <string> #include <iostream> #include <list> #include <initializer_list> #include "book.h" /** * A list of books, identified by Gutenberg ID. */ class ReadingList { public: typedef int const_iterator; // replace this by an appropriate type for the const iterator typedef const_iterator iterator; /** * Create a new empty reading list. */ ReadingList(); /** * How many books currently in this reading list? * * @return number of books in the reading list. */ int size() const; /** * Add a book to the reading list. If a book with the same ID exists, it is * replaced by b. Books are kept in order by their IDs. * * If there is no room to add another book, calls reserve(size()+1) * before adding. * * @param b A book to add * * @pre size() < capacity() || contains(b.getID()) * @post contains(b.getID()) && b == get(b.getID()) */ void add(Book b); /** * Remove a book from the reading list. If a book with the same ID exists, it is * removed from the list. Otherwise the list is left unchanged. * * @param bid ID of a book to remove * * @post !contains(bid) */ void remove(std::string bid); /** * Check to see if a book is contained in the reading list. * * @param bookID the ID string of a potential book * @returns true iff a book with that ID is in the reading list. */ bool contains(std::string bookID) const; /** * Return the index (position) of the book with a given ID * in the reading list. * * @param bookID the ID string of a potential book * @returns The position of a book with that ID in the reading list, or * end() if the ID is unknown. * * @post find(id) == end() || find(id)->getID() == id */ const_iterator find(std::string bookID) const; private: //** Do NOT change the next two lines std::list<Book> books; int theSize; // For use by instructor only public: bool sanityCheck() const; }; /** * Read a reading list from the input stream, terminating at * end of stream or at a book with ID "**END**". * * @param in the stream to read from. * @param readingList the reading list variable to hold the input. * @return the stream from which the data was read. */ std::istream &operator>>(std::istream &in, ReadingList &readingList); /** * Write a reading list to an output stream. * * @param out the stream to print to. * @param readingList the reading list to be printed. * @return the stream to which the data was written. * */ std::ostream &operator<<(std::ostream &out, const ReadingList &readingList); /** * Compare two reading lists. * @param left a reading list * @param right a reading list * @return True iff both reading lists are of the same length and all corresponding * elements are equal. */ bool operator==(const ReadingList &left, const ReadingList &right); #endif
list_reading/sanityCheck.cpp
#include <cassert> #include "readingList.h" #include <list> using namespace std; bool constCheck (const Book&) { return true; } bool constCheck (Book&) { return false; } bool ReadingList::sanityCheck() const { const unsigned& n = theSize; const list<Book> bookList = books; if (n > 1) { const_iterator start = begin(); const_iterator next = start; ++next; while (next != end()) { if (*next < *start) return false; start = next; next++; } } ReadingList& fac = (ReadingList&)(*this); ReadingList::iterator iter = fac.begin(); Book s; decltype(*iter) x = s; return constCheck(x); }
list_reading/sanityCheck.d
list_reading/shortList.txt
| etext7556 | Twain, Mark, 1835-1910 | Quotes and Images From The Works of Mark Twain |
| etext5840 | Twain, Mark, 1835-1910 | Sketches New and Old, Part 5. |
| etext3185 | Twain, Mark, 1835-1910 | Those Extraordinary Twins |
| etext3187 | Twain, Mark, 1835-1910 | Christian Science |
| etext5786 | Twain, Mark, 1835-1910 | A Tramp Abroad — Volume 05 |
| etext5814 | Twain, Mark, 1835-1910 | Following the Equator, Part 7 |
| etext7102 | Twain, Mark, 1835-1910 | Adventures of Huckleberry Finn, Chapters 11 to 15 |
| etext7158 | Twain, Mark, 1835-1910 | The Prince and the Pauper, Part 5. |
| etext8478 | Twain, Mark, 1835-1910 | Life on the Mississippi, Part 8. |
| etext19640 | Twain, Mark, 1835-1910 | Adventures of Huckleberry Finn |
| etext3184 | Twain, Mark, 1835-1910 | Alonzo Fitz and Other Stories |
| etext3188 | Twain, Mark, 1835-1910 | Mark Twain's Speeches |
| etext5808 | Twain, Mark, 1835-1910 | Following the Equator — Part 1 |
| etext7200 | Twain, Mark, 1835-1910 | The Adventures of Tom Sawyer, Part 8. |
| etext8584 | Twain, Mark, 1835-1910 | Roughing It, Part 3. |
| etext1044 | Twain, Mark, 1835-1910 | Extract from Captain Stormfield's Visit to Heaven |
| etext2988 | Paine, Albert Bigelow, 1861-1937 | Mark Twain, a Biography. Complete |
| etext3197 | Twain, Mark, 1835-1910 | Mark Twain's Letters — Volume 5 (1901-1906) |
| etext7248 | Twain, Mark, 1835-1910 | A Connecticut Yankee in King Arthur's Court, Part 7. |
| etext9038 | Twain, Mark, 1835-1910 | The Adventures of Tom Sawyer |
| etext19484 | Twain, Mark, 1835-1910 | Editorial Wild Oats |
| etext26304 | Twain, Mark, 1835-1910 | The Stolen White Elephant |
| etext9036 | Twain, Mark, 1835-1910 | Tom Sawyer Abroad |
| etext2572 | Twain, Mark, 1835-1910 | On the Decay of the Art of Lying |
| etext3180 | Twain, Mark, 1835-1910 | A Double Barrelled Detective Story |
| etext3200 | Twain, Mark, 1835-1910 | The Entire Project Gutenberg Works of Mark Twain |
| etext5688 | Twain, Mark, 1835-1910 | The Innocents Abroad — Volume 01 |
| etext7155 | Twain, Mark, 1835-1910 | The Prince and the Pauper, Part 2. |
| etext7247 | Twain, Mark, 1835-1910 | A Connecticut Yankee in King Arthur's Court, Part 6. |
| etext5842 | Twain, Mark, 1835-1910 | Sketches New and Old, Part 7. |
| etext7100 | Twain, Mark, 1835-1910 | Adventures of Huckleberry Finn, Chapters 01 to 05 |
| etext8582 | Twain, Mark, 1835-1910 | Roughing It, Part 1. |
| etext9002 | Twain, Mark, 1835-1910 | Personal Recollections of Joan of Arc — Volume 02 |
| etext9026 | Twain, Mark, 1835-1910 | The Innocents Abroad |
| etext3171 | Twain, Mark, 1835-1910 | In Defence of Harriet Shelley |
| etext3182 | Twain, Mark, 1835-1910 | Some Rambling Notes of an Idle Excursion |
| etext5690 | Twain, Mark, 1835-1910 | The Innocents Abroad — Volume 03 |
| etext5812 | Twain, Mark, 1835-1910 | Following the Equator, Part 5 |
| etext7250 | Twain, Mark, 1835-1910 | A Connecticut Yankee in King Arthur's Court, Part 9. |
| etext8476 | Twain, Mark, 1835-1910 | Life on the Mississippi, Part 6. |
| etext8583 | Twain, Mark, 1835-1910 | Roughing It, Part 2. |
| etext9012 | Twain, Mark, 1835-1910 | A Burlesque Autobiography |
| etext9016 | Twain, Mark, 1835-1910 | Christian Science |
| etext9037 | Twain, Mark, 1835-1910 | Tom Sawyer, Detective |
| etext19682 | Twain, Mark, 1835-1910 | Chapters from My Autobiography |
| etext30890 | Twain, Mark, 1835-1910 | Les Aventures De Tom Sawyer |
| etext2982 | Paine, Albert Bigelow, 1861-1937 | Mark Twain, a Biography — Volume I, Part 1: 1835-1866 |
| etext7193 | Twain, Mark, 1835-1910 | The Adventures of Tom Sawyer, Part 1. |
| etext8474 | Twain, Mark, 1835-1910 | Life on the Mississippi, Part 4. |
| etext9003 | Twain, Mark, 1835-1910 | The 30,000 Dollar Bequest and Other Stories |
| etext9022 | Twain, Mark, 1835-1910 | Goldsmith's Friend Abroad Again |
| etext22450 | Howells, William Dean, 1837-1920 | My Mark Twain |
| etext2986 | Paine, Albert Bigelow, 1861-1937 | Mark Twain, a Biography — Volume III, Part 1: 1900-1907 |
| etext5836 | Twain, Mark, 1835-1910 | Sketches New and Old, Part 1. |
| etext7156 | Twain, Mark, 1835-1910 | The Prince and the Pauper, Part 3. |
| etext7161 | Twain, Mark, 1835-1910 | The Prince and the Pauper, Part 8. |
| etext7194 | Twain, Mark, 1835-1910 | The Adventures of Tom Sawyer, Part 2. |
| etext9001 | Twain, Mark, 1835-1910 | Personal Recollections of Joan of Arc — Volume 01 |
| etext9010 | Twain, Mark, 1835-1910 | On the Decay of the Art of Lying |
| etext9011 | Twain, Mark, 1835-1910 | The American Claimant |
| etext9027 | Twain, Mark, 1835-1910 | Alonzo Fitz and Other Stories |
| etext9030 | Twain, Mark, 1835-1910 | Essays on Paul Bourget |
| etext9042 | Twain, Mark, 1835-1910 | Extracts from Adam's Diary |
| etext93 | Twain, Mark, 1835-1910 | Tom Sawyer, Detective |
| etext3192 | Twain, Mark, 1835-1910 | The Curious Republic of Gondour, and Other Whimsical Sketches |
| etext3643 | Paine, Albert Bigelow, 1861-1937 | Widger's Quotations from the Project Gutenberg Editions of Paine's Writings on Mark Twain |
| etext8481 | Twain, Mark, 1835-1910 | Life on the Mississippi, Part 11. |
| etext8588 | Twain, Mark, 1835-1910 | Roughing It, Part 7. |
| etext20595 | Twain, Mark, 1835-1910 | The Awful German Language |
| etext1086 | Twain, Mark, 1835-1910 | A Horse's Tale |
| etext1892 | Twain, Mark, 1835-1910 | Extracts from Adam's Diary, translated from the original ms. |
| etext2874 | Twain, Mark, 1835-1910 | Personal Recollections of Joan of Arc — Volume 1 |
| etext2895 | Twain, Mark, 1835-1910 | Following the Equator |
| etext3463 | Paine, Albert Bigelow, 1861-1937 | The Boys' Life of Mark Twain |
| etext5839 | Twain, Mark, 1835-1910 | Sketches New and Old, Part 4. |
| etext7104 | Twain, Mark, 1835-1910 | Adventures of Huckleberry Finn, Chapters 21 to 25 |
| etext7106 | Twain, Mark, 1835-1910 | Adventures of Huckleberry Finn, Chapters 31 to 35 |
| etext7157 | Twain, Mark, 1835-1910 | The Prince and the Pauper, Part 4. |
| etext9019 | Twain, Mark, 1835-1910 | A Dog's Tale |
| etext9020 | Twain, Mark, 1835-1910 | Those Extraordinary Twins |
| etext9024 | Twain, Mark, 1835-1910 | The Man That Corrupted Hadleyburg and Other Stories |
| etext9029 | Twain, Mark, 1835-1910 | Mark Twain's Speeches |
| etext26252 | Twain, Mark, 1835-1910 | The Prince and the Pauper |
| etext74 | Twain, Mark, 1835-1910 | The Adventures of Tom Sawyer |
| etext1837 | Twain, Mark, 1835-1910 | The Prince and the Pauper |
| etext6533 | Twain, Mark, 1835-1910 | A Connecticut Yankee |
| etext6873 | Henderson, Archibald, 1877-1963 | Mark Twain |
| etext9035 | Twain, Mark, 1835-1910 | The Tragedy of Pudd'nhead Wilson |
| etext3172 | Twain, Mark, 1835-1910 | Fenimore Cooper's Literary Offences |
| etext3177 | Twain, Mark, 1835-1910 | Roughing It |
| etext3189 | Twain, Mark, 1835-1910 | Sketches New and Old |
| etext3190 | Twain, Mark, 1835-1910 | 1601 |
| etext2875 | Twain, Mark, 1835-1910 | Personal Recollections of Joan of Arc — Volume 2 |
| etext5693 | Twain, Mark, 1835-1910 | The Innocents Abroad — Volume 06 |
| etext7198 | Twain, Mark, 1835-1910 | The Adventures of Tom Sawyer, Part 6. |
| etext8472 | Twain, Mark, 1835-1910 | Life on the Mississippi, Part 2. |
| etext8473 | Twain, Mark, 1835-1910 | Life on the Mississippi, Part 3. |
| etext8479 | Twain, Mark, 1835-1910 | Life on the Mississippi, Part 9. |
| etext9028 | Twain, Mark, 1835-1910 | The Mysterious Stranger |
| etext9031 | Twain, Mark, 1835-1910 | Some Rambling Notes of an Idle Excursion |
| etext9041 | Twain, Mark, 1835-1910 | What Is Man? and Other Essays |
| etext3195 | Twain, Mark, 1835-1910 | Mark Twain's Letters — Volume 3 (1876-1885) |
| etext5788 | Twain, Mark, 1835-1910 | A Tramp Abroad — Volume 07 |
| etext7105 | Twain, Mark, 1835-1910 | Adventures of Huckleberry Finn, Chapters 26 to 30 |
| etext7195 | Twain, Mark, 1835-1910 | The Adventures of Tom Sawyer, Part 3. |
| etext8471 | Twain, Mark, 1835-1910 | Life on the Mississippi, Part 1. |
| etext8587 | Twain, Mark, 1835-1910 | Roughing It, Part 6. |
| etext9004 | Twain, Mark, 1835-1910 | Extract from Captain Stormfield's Visit to Heaven |
| etext9005 | Twain, Mark, 1835-1910 | Following the Equator |
| etext9034 | Twain, Mark, 1835-1910 | The Stolen White Elephant |
| etext12711 | Twain, Mark, 1835-1910 | On the Decay of the Art of Lying |
| etext7103 | Twain, Mark, 1835-1910 | Adventures of Huckleberry Finn, Chapters 16 to 20 |
| etext9018 | Twain, Mark, 1835-1910 | In Defense of Harriet Shelley |
| etext8611 | Twain, Mark, 1835-1910 | The Prince and the Pauper |
| etext9032 | Twain, Mark, 1835-1910 | Roughing It |
| etext9039 | Twain, Mark, 1835-1910 | Is Shakespeare Dead? |
| etext11622 | Twain, Mark, 1835-1910 | Plus fort que Sherlock Holmès |
| etext26203 | Twain, Mark, 1835-1910 | The Adventures of Tom Sawyer |
| etext28781 | Twain, Mark, 1835-1910 | Extracts from Adam's Diary |
| etext30165 | Twain, Mark, 1835-1910 | Die Abenteuer Tom Sawyers |
| etext1213 | Twain, Mark, 1835-1910 | The Man That Corrupted Hadleyburg |
| etext3181 | Twain, Mark, 1835-1910 | The Stolen White Elephant |
| etext3199 | Twain, Mark, 1835-1910 | Complete Letters of Mark Twain |
| etext7101 | Twain, Mark, 1835-1910 | Adventures of Huckleberry Finn, Chapters 06 to 10 |
| etext7160 | Twain, Mark, 1835-1910 | The Prince and the Pauper, Part 7. |
| etext7162 | Twain, Mark, 1835-1910 | The Prince and the Pauper, Part 9. |
| etext8477 | Twain, Mark, 1835-1910 | Life on the Mississippi, Part 7. |
| etext2431 | Twain, Mark, 1835-1910 | Is Shakespeare Dead? |
| etext3193 | Twain, Mark, 1835-1910 | Mark Twain's Letters — Volume 1 (1835-1866) |
| etext5841 | Twain, Mark, 1835-1910 | Sketches New and Old, Part 6. |
| etext7159 | Twain, Mark, 1835-1910 | The Prince and the Pauper, Part 6. |
| etext8475 | Twain, Mark, 1835-1910 | Life on the Mississippi, Part 5. |
| etext18381 | Twain, Mark, 1835-1910 | De Lotgevallen van Tom Sawyer |
| etext19987 | Twain, Mark, 1835-1910 | Chapters from My Autobiography |
| etext3179 | Twain, Mark, 1835-1910 | The American Claimant |
| etext3186 | Twain, Mark, 1835-1910 | The Mysterious Stranger |
| etext3432 | Twain, Mark, 1835-1910 | Quotations from the Project Gutenberg Editions of the Works of Mark Twain |
| etext5689 | Twain, Mark, 1835-1910 | The Innocents Abroad — Volume 02 |
| etext7154 | Twain, Mark, 1835-1910 | The Prince and the Pauper, Part 1. |
| etext8586 | Twain, Mark, 1835-1910 | Roughing It, Part 5. |
| etext26213 | Twain, Mark, 1835-1910 | Fenimore Cooper's Literary Offenses |
| etext2987 | Paine, Albert Bigelow, 1861-1937 | Mark Twain, a Biography — Volume III, Part 2: 1907-1910 |
| etext7199 | Twain, Mark, 1835-1910 | The Adventures of Tom Sawyer, Part 7. |
| etext7242 | Twain, Mark, 1835-1910 | A Connecticut Yankee in King Arthur's Court, Part 1. |
| etext3250 | Twain, Mark, 1835-1910 | How to Tell a Story and Other Essays |
| etext5691 | Twain, Mark, 1835-1910 | The Innocents Abroad — Volume 04 |
| etext5838 | Twain, Mark, 1835-1910 | Sketches New and Old, Part 3. |
| etext9006 | Twain, Mark, 1835-1910 | The Man That Corrupted Hadleyburg |
| etext17945 | Twain, Mark, 1835-1910 | Mark Twain: Tri Noveloj |
| etext70 | Twain, Mark, 1835-1910 | What Is Man? and Other Essays |
| etext2983 | Paine, Albert Bigelow, 1861-1937 | Mark Twain, a Biography — Volume I, Part 2: 1835-1866 |
| etext3173 | Twain, Mark, 1835-1910 | Essays on Paul Bourget |
| etext3390 | Howells, William Dean, 1837-1920 | My Mark Twain (from Literary Friends and Acquaintance) |
| etext5692 | Twain, Mark, 1835-1910 | The Innocents Abroad — Volume 05 |
| etext5785 | Twain, Mark, 1835-1910 | A Tramp Abroad — Volume 04 |
| etext7197 | Twain, Mark, 1835-1910 | The Adventures of Tom Sawyer, Part 5. |
| etext9008 | Twain, Mark, 1835-1910 | A Horse's Tale |
| etext9009 | Twain, Mark, 1835-1910 | Life on the Mississippi |
| etext9025 | Twain, Mark, 1835-1910 | How to Tell a Story and Other Essays |
| etext3175 | Twain, Mark, 1835-1910 | Mark Twain's Burlesque Autobiography |
| etext3183 | Twain, Mark, 1835-1910 | The Facts Concerning the Recent Carnival of Crime in Connecticut |
| etext5809 | Twain, Mark, 1835-1910 | Following the Equator, Part 2 |
| etext5810 | Twain, Mark, 1835-1910 | Following the Equator, Part 3 |
| etext8528 | Twain, Mark, 1835-1910 | Eve's Diary, Part 3 |
| etext5813 | Twain, Mark, 1835-1910 | Following the Equator, Part 6 |
| etext7107 | Twain, Mark, 1835-1910 | Adventures of Huckleberry Finn, Chapters 36 to The Last |
| etext8527 | Twain, Mark, 1835-1910 | Eve's Diary, Part 2 |
| etext9017 | Twain, Mark, 1835-1910 | A Double Barrelled Detective Story |
| etext9021 | Twain, Mark, 1835-1910 | Fenimore Cooper's Literary Offences |
| etext20943 | Twain, Mark, 1835-1910 | Mark Twain: Tri Ceteraj Noveloj |
| etext5784 | Twain, Mark, 1835-1910 | A Tramp Abroad — Volume 03 |
| etext7245 | Twain, Mark, 1835-1910 | A Connecticut Yankee in King Arthur's Court, Part 4. |
| etext9015 | Twain, Mark, 1835-1910 | The Curious Republic of Gondour, and Other Whimsical Sketches |
| etext8525 | Twain, Mark, 1835-1910 | Eve's Diary, Complete |
| etext119 | Twain, Mark, 1835-1910 | A Tramp Abroad |
| etext5782 | Twain, Mark, 1835-1910 | A Tramp Abroad — Volume 01 |
| etext7249 | Twain, Mark, 1835-1910 | A Connecticut Yankee in King Arthur's Court, Part 8. |
| etext8585 | Twain, Mark, 1835-1910 | Roughing It, Part 4. |
| etext9007 | Twain, Mark, 1835-1910 | Adventures of Huckleberry Finn |
| etext9040 | Twain, Mark, 1835-1910 | A Tramp Abroad |
| etext3194 | Twain, Mark, 1835-1910 | Mark Twain's Letters — Volume 2 (1867-1875) |
| etext142 | Twain, Mark, 1835-1910 | The 30,000 Dollar Bequest and Other Stories |
| etext2984 | Paine, Albert Bigelow, 1861-1937 | Mark Twain, a Biography — Volume II, Part 1: 1886-1900 |
| etext5783 | Twain, Mark, 1835-1910 | A Tramp Abroad — Volume 02 |
| etext5787 | Twain, Mark, 1835-1910 | A Tramp Abroad — Volume 06 |
| etext245 | Twain, Mark, 1835-1910 | Life on the Mississippi |
| etext3196 | Twain, Mark, 1835-1910 | Mark Twain's Letters — Volume 4 (1886-1900) |
| etext3198 | Twain, Mark, 1835-1910 | Mark Twain's Letters — Volume 6 (1907-1910) |
| etext9013 | Twain, Mark, 1835-1910 | The Facts Concerning the Recent Carnival of Crime in Connecticut |
| etext9014 | Twain, Mark, 1835-1910 | The Letters of Mark Twain |
| etext9033 | Twain, Mark, 1835-1910 | Sketches New and Old |
| etext19841 | Twain, Mark, 1835-1910 | Eve's Diary |
| etext32325 | Twain, Mark, 1835-1910 | The Adventures of Huckleberry Finn |
| etext86 | Twain, Mark, 1835-1910 | A Connecticut Yankee in King Arthur's Court |
| etext3174 | Twain, Mark, 1835-1910 | A Dog's Tale |
| etext7196 | Twain, Mark, 1835-1910 | The Adventures of Tom Sawyer, Part 4. |
| etext8480 | Twain, Mark, 1835-1910 | Life on the Mississippi, Part 10. |
| etext8589 | Twain, Mark, 1835-1910 | Roughing It, Part 8. |
| etext3251 | Twain, Mark, 1835-1910 | The Man That Corrupted Hadleyburg and Other Stories |
| etext91 | Twain, Mark, 1835-1910 | Tom Sawyer Abroad |
| etext102 | Twain, Mark, 1835-1910 | The Tragedy of Pudd'nhead Wilson |
| etext3176 | Twain, Mark, 1835-1910 | The Innocents Abroad |
| etext3191 | Twain, Mark, 1835-1910 | Goldsmith's Friend Abroad Again |
| etext5837 | Twain, Mark, 1835-1910 | Sketches New and Old, Part 2. |
| etext7243 | Twain, Mark, 1835-1910 | A Connecticut Yankee in King Arthur's Court, Part 2. |
| etext7244 | Twain, Mark, 1835-1910 | A Connecticut Yankee in King Arthur's Court, Part 3. |
| etext8482 | Twain, Mark, 1835-1910 | Life on the Mississippi, Part 12. |
| etext76 | Twain, Mark, 1835-1910 | Adventures of Huckleberry Finn |
| etext2985 | Paine, Albert Bigelow, 1861-1937 | Mark Twain, a Biography — Volume II, Part 2: 1886-1900 |
| etext5811 | Twain, Mark, 1835-1910 | Following the Equator, Part 4 |
| etext7246 | Twain, Mark, 1835-1910 | A Connecticut Yankee in King Arthur's Court, Part 5. |
| etext8526 | Twain, Mark, 1835-1910 | Eve's Diary, Part 1 |
| etext19506 | Twain, Mark, 1835-1910 | A Connecticut Yankee in King Arthur's Court |
| etext28803 | Twain, Mark, 1835-1910 | The Works Of Mark Twain |
| etext29888 | Carroll, Lewis, 1832-1898 | The Hunting of the Snark |
| etext11 | Carroll, Lewis, 1832-1898 | Alice's Adventures in Wonderland |
| etext17482 | Carroll, Lewis, 1832-1898 | La Aventuroj de Alicio en Mirlando |
| etext13 | Carroll, Lewis, 1832-1898 | The Hunting of the Snark |
| etext12 | Carroll, Lewis, 1832-1898 | Through the Looking-Glass |
| etext23718 | Carroll, Lewis, 1832-1898 | Through the Looking-Glass |
| etext4763 | Carroll, Lewis, 1832-1898 | The Game of Logic |
| etext29171 | Quiller-Couch, Mabel, 1866-1924 | The Carroll Girls |
| etext19033 | Carroll, Lewis, 1832-1898 | Alice's Adventures in Wonderland |
| etext28371 | Carroll, Lewis, 1832-1898 | Le avventure d'Alice nel paese delle meraviglie |
| etext19778 | Carroll, Lewis, 1832-1898 | Alice's Abenteuer im Wunderland |
| etext28885 | Carroll, Lewis, 1832-1898 | Alice's Adventures in Wonderland |
| etext23716 | Carroll, Lewis, 1832-1898 | Alice's Adventures in Wonderland |
| etext620 | Carroll, Lewis, 1832-1898 | Sylvie and Bruno |
| etext928 | Carroll, Lewis, 1832-1898 | Alice's Adventures in Wonderland |
| etext5994 | Carroll, Robert S. | Our Nervous Friends — Illustrating the Mastery of Nervousness |
| etext19002 | Carroll, Lewis, 1832-1898 | Alice's Adventures Under Ground |
| Life of Anna Ella Carroll of Maryland | ||
| etext23160 | Carroll, William | Solomon's Orbit |
| etext28696 | Carroll, Lewis, 1832-1898 | Symbolic Logic |
| etext21521 | Carroll, Lewis, 1832-1898 | The Hunting of the Snark |
| etext11483 | Collingwood, Stuart Dodgson, 1870-1937 | The Life and Letters of Lewis Carroll (Rev. C. L. Dodgson) |
| etext23717 | Carroll, Lewis, 1832-1898 | Jabberwocky |
| etext29042 | Carroll, Lewis, 1832-1898 | A Tangled Tale |
| etext32318 | Carroll, Mitchell, 1870-1925 | Greek Women |
| etext651 | Carroll, Lewis, 1832-1898 | Phantasmagoria and Other Poems |
| etext19573 | Carroll, Lewis, 1832-1898 | Alice's Adventures in Wonderland |
list_reading/testReadingList.cpp
#include "unittest.h" #include "readingList.h" #include <algorithm> #include <sstream> #include <vector> #include <list> #include <set> #include <array> using namespace std; struct Setup { Book b1; Book b2; Book b3; Book expected[3]; // expected order in which books will be stored Setup() { b1 = Book("etext13", "Carroll, Lewis", "The Hunting of the Snark"); b2 = Book("etext11792", "Poe, Edgar Allan", "The Raven"); b3 = Book("etext9038", "Twain, Mark", "The Adventures of Tom Sawyer"); expected[0] = b2; expected[1] = b1; expected[2] = b3; } }; UnitTest(testRLDefaultConstructor) { ReadingList rl; assertThat (rl.size(), isEqualTo(0)); assertThat (rl, isEqualTo(ReadingList())); assertTrue (rl.sanityCheck()); } UnitTest(testRLConsInit) { Setup s; ReadingList rl({s.b1, s.b2, s.b3}); assertThat (rl.size(), isEqualTo(3)); assertThat (rl, isNotEqualTo(ReadingList())); assertTrue(rl.contains(s.b1.getID())); assertTrue(rl.contains(s.b2.getID())); assertTrue(rl.contains(s.b3.getID())); assertFalse(rl.contains(s.b1.getID() + "x")); assertThat(rl.find(s.b2.getID()), isEqualTo(rl.begin())); assertThat(rl.find(s.b3.getID()+"0"), isEqualTo(rl.end())); int i = 0; for (const Book& b: rl) { assertThat (b, isEqualTo(s.expected[i])); ++i; } // The above loop can be written in one contentsOf..matches assertion as shown below: assertThat(contentsOf(rl), matches(range(s.expected, s.expected+3))); ReadingList rl2; rl2.add(s.b3); rl2.add(s.b2); rl2.add(s.b1); assertThat(rl, isEqualTo(rl2)); assertTrue (rl.sanityCheck()); } UnitTest(testRLConsRange) { Setup s; vector<Book> inputv {s.b1, s.b2, s.b3}; list<Book> inputl {s.b1, s.b2, s.b3}; set<Book> inputs {s.b1, s.b2, s.b3}; array<Book, 3> inputa {s.b1, s.b2, s.b3}; // All of these constructor calls should invoke the same constructor. ReadingList rl(s.expected, s.expected+3); ReadingList rlv(inputv.begin(), inputv.end()); ReadingList rll(inputl.begin(), inputl.end()); ReadingList rls(inputs.begin(), inputs.end()); ReadingList rla(inputa.begin(), inputa.end()); assertThat (rl.size(), isEqualTo(3)); assertThat (rl, isNotEqualTo(ReadingList())); assertThat(contentsOf(rl), matches(range(s.expected, s.expected+3))); assertThat(contentsOf(rlv), matches(range(s.expected, s.expected+3))); assertThat(contentsOf(rla), matches(range(s.expected, s.expected+3))); assertThat(rl, isEqualTo(rlv)); assertThat(rl, isEqualTo(rll)); assertThat(rl, isEqualTo(rls)); assertThat(rl, isEqualTo(rla)); assertTrue(rl.contains(s.b1.getID())); assertTrue(rl.contains(s.b2.getID())); assertTrue(rl.contains(s.b3.getID())); assertFalse(rl.contains(s.b1.getID() + "x")); assertThat(rl.find(s.b2.getID()), isEqualTo(rl.begin())); assertThat(rl.find(s.b3.getID()+"0"), isEqualTo(rl.end())); ReadingList rl2; rl2.add(s.b3); rl2.add(s.b2); rl2.add(s.b1); assertThat(rl, isEqualTo(rl2)); assertTrue (rl.sanityCheck()); } UnitTest(testRLAddDiscrete) { Setup s; ReadingList rl; rl.add(s.b1); rl.add(s.b2); rl.add(s.b3); assertThat (rl.size(), isEqualTo(3)); assertThat (rl, isNotEqualTo(ReadingList())); assertTrue(rl.contains(s.b1.getID())); assertTrue(rl.contains(s.b2.getID())); assertTrue(rl.contains(s.b3.getID())); assertFalse(rl.contains(s.b1.getID() + "x")); assertThat(rl.find(s.b1.getID()), isNotEqualTo(rl.end())); assertThat(rl.find(s.b2.getID()), isEqualTo(rl.begin())); assertThat(rl.find(s.b3.getID()+"0"), isEqualTo(rl.end())); assertThat(contentsOf(rl), matches(range(s.expected, s.expected+3))); ReadingList rl2; rl2.add(s.b3); rl2.add(s.b2); rl2.add(s.b1); assertThat(rl, isEqualTo(rl2)); assertTrue (rl.sanityCheck()); } UnitTest(testRLAddDuplicates) { Setup s; ReadingList rl; rl.add(s.b3); rl.add(s.b2); rl.add(s.b1); rl.add(s.b2); assertThat (rl.size(), isEqualTo(3)); assertThat (rl, isNotEqualTo(ReadingList())); assertTrue(rl.contains(s.b1.getID())); assertTrue(rl.contains(s.b2.getID())); assertTrue(rl.contains(s.b3.getID())); assertFalse(rl.contains(s.b1.getID() + "x")); assertThat(rl.find(s.b2.getID()), isEqualTo(rl.begin())); assertThat(rl.find(s.b3.getID()+"0"), isEqualTo(rl.end())); assertThat(contentsOf(rl), matches(range(s.expected, s.expected+3))); assertTrue (rl.sanityCheck()); } UnitTest(testRLRemove) { Setup s; ReadingList rl; rl.add(s.b1); rl.add(s.b2); rl.add(s.b3); rl.remove(s.b1.getID()); assertThat (rl.size(), isEqualTo(2)); assertThat (rl, isNotEqualTo(ReadingList())); assertFalse(rl.contains(s.b1.getID())); assertTrue(rl.contains(s.b2.getID())); assertTrue(rl.contains(s.b3.getID())); assertFalse(rl.contains(s.b1.getID() + "x")); assertThat(rl.find(s.b1.getID()), isEqualTo(rl.end())); assertThat(rl.find(s.b2.getID()), isEqualTo(rl.begin())); assertThat(rl.find(s.b3.getID()), isNotEqualTo(rl.end())); assertThat(rl.find(s.b3.getID()+"0"), isEqualTo(rl.end())); auto it = rl.begin(); assertThat(*it, isEqualTo(s.b2)); ++it; assertThat(*it, isEqualTo(s.b3)); assertTrue (rl.sanityCheck()); } UnitTest(testRLAssign) { Setup s; ReadingList rl; rl.add(s.b1); rl.add(s.b2); ReadingList rl2; ReadingList rl3(rl2 = rl); assertThat(rl2, isEqualTo(rl)); assertThat(rl3, isEqualTo(rl)); assertThat(rl2.size(), isEqualTo(2)); assertThat (rl2, isNotEqualTo(ReadingList())); assertThat(contentsOf(rl), matches(range(s.expected, s.expected+2))); rl2.add(s.b3); assertThat(rl2, isNotEqualTo(rl)); assertThat(rl3, isEqualTo(rl)); assertThat(rl.size(), isEqualTo(2)); assertThat(rl2.size(), isEqualTo(3)); assertThat(rl3.size(), isEqualTo(2)); assertThat (rl2, isNotEqualTo(ReadingList())); } UnitTest(testRLCopy) { Setup s; ReadingList rl; rl.add(s.b1); rl.add(s.b2); ReadingList rl2 (rl); assertThat(rl2, isEqualTo(rl)); assertThat(rl2.size(), isEqualTo(2)); assertThat(contentsOf(rl), matches(range(s.expected, s.expected+2))); rl2.add(s.b3); assertThat(rl2, isNotEqualTo(rl)); assertThat(rl.size(), isEqualTo(2)); assertThat(rl2.size(), isEqualTo(3)); } UnitTest(testRLInput) { ReadingList rl; string instring = string() + "etext29662\tLeiber, Fritz, 1910-1992\tThe Moon is Green\n" + "etext1195\tJames, Henry, 1843-1916\tGlasses\n" + "etext14784\tWade, Mary Hazelton Blanchard, 1860-1936\tTimid Hare\n"; istringstream in(instring); in >> rl; assertThat (rl.size(), isEqualTo(3)); assertTrue(rl.contains("etext1195")); assertTrue(rl.contains("etext14784")); assertThat(rl.find("etext1195")->getAuthor(), isEqualTo("James, Henry, 1843-1916")); assertThat(rl.find("etext1195")->getTitle(), isEqualTo("Glasses")); } UnitTest (zzMemoryCheck) { assertThat (Counted::getCurrentCount(), isEqualTo(0)); }
list_reading/testReadingList.d
list_reading/tinyList.txt
etext19640 Twain, Mark, 1835-1910 Adventures of Huckleberry Finn etext13 Carroll, Lewis, 1832-1898 The Hunting of the Snark etext9038 Twain, Mark, 1835-1910 The Adventures of Tom Sawyer
list_reading/tinyList2.txt
etext9038 Twain, Mark, 1835-1910 The Adventures of Tom Sawyer etext20595 Twain, Mark, 1835-1910 The Awful German Language etext23717 Carroll, Lewis, 1832-1898 Jabberwocky
list_reading/unittest.cpp
#include <algorithm> #include <iostream> #include <iomanip> #include <set> #include <sstream> #include <fstream> #include <chrono> #include <thread> #include <mutex> #include <regex> #include <iterator> #include <signal.h> #include <setjmp.h> #include <cstdlib> #include <unistd.h> #include "unittest.h" #ifdef __MINGW32__ #ifdef __MINGW64__ #include <debugapi.h> #else #include <winbase.h> #endif #elif __CYGWIN__ #include <w32api/debugapi.h> #endif using namespace CppUnitLite; std::map<std::string, UnitTest::BoundedTest> *UnitTest::tests = nullptr; long UnitTest::numSuccesses = 0L; long UnitTest::numFailures = 0L; long UnitTest::numErrors = 0L; std::string UnitTest::currentTest; bool UnitTest::expectToFail = false; bool UnitTest::diagnosticMessagesBeforeResults = true; std::vector<std::string> UnitTest::callLog; std::vector<std::string> UnitTest::failedTests; #ifdef __amd64__ #define breakDebugger { asm volatile ("int $3"); } #elif __i386__ #define breakDebugger { asm volatile ("int $3"); } #else #define breakDebugger { } #endif template <> std::string CppUnitLite::getStringRepr(std::string t) { return std::string("\"") + t + '"'; } template <> std::string CppUnitLite::getStringRepr(const char t[]) { return CppUnitLite::getStringRepr(std::string(t)); } template <> std::string CppUnitLite::getStringRepr(char t) { return std::string("'") + t + "'"; } template <> std::string CppUnitLite::getStringRepr(bool b) { return (b) ? "true" : "false"; } UnitTest::UnitTestFailure::UnitTestFailure ( const char* conditionStr, const char* fileName, int lineNumber) { if (!UnitTest::expectToFail) { std::ostringstream out; out << "Failed assertion " << conditionStr << " in " << currentTest << " at " << fileName << ", line " << lineNumber << "\n"; explanation = out.str(); } else { explanation = "(expected to fail)"; } } UnitTest::UnitTestFailure::UnitTestFailure ( const std::string& conditionStr, const char* fileName, int lineNumber) { if (!UnitTest::expectToFail) { std::ostringstream out; out << fileName << ":" << lineNumber << ": \t" << conditionStr << "\n"; explanation = out.str(); } else { explanation = "(expected to fail)"; } } const char* UnitTest::UnitTestFailure::what() const noexcept { return explanation.c_str(); } AssertionResult::AssertionResult (bool theResult, std::string pexplain, std::string fexplain) : result(theResult), passExplanation(pexplain), failExplanation(fexplain) {} #ifdef __MINGW32__ bool UnitTest::debuggerIsRunning() { return IsDebuggerPresent(); } #elif __CYGWIN__ bool UnitTest::debuggerIsRunning() { bool debuggerDetected = IsDebuggerPresent(); if (debuggerDetected) { UnitTest::msg("# Debugger detected -- test time limits will be ignored.\n"); } return debuggerDetected; } #else bool UnitTest::debuggerIsRunning() { using namespace std; static bool debuggerDetected = false; const string traceField = "tracerpid"; int pid = ::getpid(); string statusFile = string("/proc/") + std::to_string(pid) + "/status"; ifstream status (statusFile); if (status) { string line; getline (status, line); while (status) { transform(line.begin(), line.end(), line.begin(), ::tolower); if (line.find(traceField) != string::npos) { string::size_type k = line.find_first_of(" \t"); if (k != string::npos) { line = line.substr(k+1); istringstream lineIn (line); pid = -1; lineIn >> pid; if (pid > 0) { debuggerDetected = true; } } break; } getline (status, line); } } if (debuggerDetected) { UnitTest::msg("# Debugger detected -- test time limits will be ignored.\n"); } return debuggerDetected; } #endif void UnitTest::checkTest (AssertionResult assertionResult, std::string conditionStr, const char* fileName, int lineNumber) { if (!assertionResult.result) { if (debuggerIsRunning()) { std::string explanation = "Failed assertion: " + conditionStr + "\n" + assertionResult.failExplanation; breakDebugger; // A unit test has failed. // Examine explanation and your call stack for information explanation = explanation + " "; } if (assertionResult.failExplanation.size() > 0) { conditionStr += "\n\t" + assertionResult.failExplanation; } throw UnitTestFailure(conditionStr, fileName, lineNumber); } } //void UnitTest::checkTest (bool condition, const string& conditionStr, // const char* fileName, int lineNumber) //{ // checkTest(AssertionResult(condition), conditionStr.c_str(), fileName, lineNumber); //} // Print a simple summary report void UnitTest::report () { UnitTest::msgSummary(); } // Register a new UnitTest int UnitTest::registerUT (std::string functName, int timeLimit, TestFunction funct) { if (tests == nullptr) { tests = new std::map<std::string, UnitTest::BoundedTest>(); } if (tests->count(functName) > 0) { std::cerr << "**Error: duplicate unit test named " << functName << std::endl; } (*tests)[functName] = BoundedTest(timeLimit, funct); return 0; } jmp_buf unitTestSignalEnv; int unitTestLastSignal = 0; void unitTestSignalHandler(int sig) { unitTestLastSignal = sig; longjmp (unitTestSignalEnv, sig); } int UnitTest::runTestGuarded (unsigned testNumber, std::string testName, TestFunction u, std::string& testExplanation) { currentTest = testName; expectToFail = false; try { signal(SIGFPE, &unitTestSignalHandler); signal(SIGSEGV, &unitTestSignalHandler); if (setjmp(unitTestSignalEnv)) { // Runtime error was caught std::ostringstream out; out << "# runtime error " << unitTestLastSignal; if (!expectToFail) { testExplanation = UnitTest::msgFailed(testNumber, testName, out.str(), 0); return -1; } else { // OK (failed but was expected to fail)" UnitTest::msgXFailed(testNumber, testName, out.str(), 0); } } else { u(); if (!expectToFail) { UnitTest::msgPassed(testNumber, testName, 0); } else { // Failed (passed but was expected to fail UnitTest::msgXPassed(testNumber, testName, 0); return 0; } } return 1; } catch (UnitTestFailure& ex) { if (!expectToFail) { testExplanation = UnitTest::msgFailed(testNumber, testName, ex.what(), 0); return 0; } else { // OK (failed but was expected to fail)" UnitTest::msgXFailed(testNumber, testName, ex.what(), 0); return 1; } } catch (std::exception& e) { if (!expectToFail) { UnitTest::msgError(testNumber, testName, "Unexpected error in " + currentTest + ": " +e.what(), 0); testExplanation = ""; return -1; } else { // OK (exception but was expected to fail)" UnitTest::msgXFailed(testNumber, testName, "", 0); return 1; } } catch (...) { if (!expectToFail) { UnitTest::msgError(testNumber, testName, "Unexpected error in " + currentTest, 0); testExplanation = ""; return -1; } else { // OK (exception but was expected to fail)" UnitTest::msgXFailed(testNumber, testName, "", 0); return 1; } } } /** * Reverses the expectation for the current test. A test that fails or halts * with an error will be reported and counted as OK. If that test succeeds, * it will be reported and counted as an error. * * Must be called before any assertions. */ void UnitTest::expectedToFail() { expectToFail = true; } // Run a single unit test function with no timer. void UnitTest::runTestUntimed (unsigned testNumber, std::string testName, TestFunction u) { int testResult; // 1== passed, 0 == failed, -1 == erro std::string testExplanation; // No time-out supported if compiler does not have thread support. testResult = runTestGuarded (testNumber, testName, u, testExplanation); try { // Normal exit if (testResult == 1) { ++numSuccesses; } else if (testResult == 0) { ++numFailures; failedTests.push_back(testName); UnitTest::msg(testExplanation); } else if (testResult == -1) { ++numErrors; failedTests.push_back(testName); UnitTest::msg(testExplanation); } } catch (std::runtime_error& e) { ++numErrors; failedTests.push_back(testName); UnitTest::msg(std::string("# Test ") + currentTest + " failed due to " + e.what() + "\n"); } } #ifndef __MINGW32__ // Run a single unit test function. void UnitTest::runTest (unsigned testNumber, std::string testName, TestFunction u, long timeLimit) { if (timeLimit > 0L && !debuggerIsRunning()) { int testResult = -99; // 1== passed, 0 == failed, -1 == error std::string testExplanation; std::mutex m; std::chrono::duration<int,std::milli> limit (timeLimit); std::chrono::duration<int,std::milli> incr (100); std::chrono::duration<int,std::milli> elapsed (0); std::thread t([&m, &testNumber, &testName, &u, &testResult, &testExplanation](){ { int result = runTestGuarded (testNumber, testName, u, testExplanation); std::unique_lock<std::mutex> l2(m); testResult = result; } }); t.detach(); bool finished = false; do { { std::unique_lock<std::mutex> l(m); finished = (testResult >= -1 || elapsed >= limit); elapsed += incr; } std::this_thread::sleep_for( incr ); } while (!finished); if (testResult < -1) { ++numFailures; failedTests.push_back(testName); std::ostringstream out; out << "# Test " << testNumber << " - " << currentTest << " still running after " << timeLimit << " milliseconds - possible infinite loop?"; if (!expectToFail) { UnitTest::msg ( UnitTest::msgFailed(testNumber, testName, out.str(), timeLimit) ); } else { UnitTest::msgXFailed(testNumber, testName, out.str(), timeLimit); ++numSuccesses; --numFailures; } } // Normal exit else if (testResult == 1) { ++numSuccesses; } else if (testResult == 0) { ++numFailures; failedTests.push_back(testName); UnitTest::msg(testExplanation); } else if (testResult == -1) { ++numErrors; failedTests.push_back(testName); UnitTest::msg(testExplanation); } } else { runTestUntimed (testNumber, testName, u); } } #else // Run a single unit test function. void UnitTest::runTest (unsigned testNumber, std::string testName, TestFunction u, long int timeLimit) { runTestUntimed (testNumber, testName, u); } #endif // Run all units tests whose name contains testNames[i], // 0 <= i <= nTests // // Special case: If nTests == 0, runs all unit Tests. void UnitTest::runTests (int nTests, char** testNames, char* program) { std::set<std::string> testsToRun; // Check for GTest emulation for (int i = 0; i < nTests; ++i) { std::string arg = testNames[i]; } std::string badTestSpecifications = ""; for (int i = 0; i < nTests; ++i) { std::string testID = testNames[i]; bool found = false; for (const auto& utest: *tests) { if (utest.first.find(testID) != std::string::npos) { testsToRun.insert(utest.first); found = true; } } if (!found) { for (const auto& utest: *tests) { const std::string& utestName = utest.first; std::string reducedName (1, utestName[0]); for (unsigned j = 1; j < utest.first.size(); ++j) { if (utestName[j] >= 'A' && utestName[j] <= 'Z') { reducedName += utestName[j]; } } if (testID == reducedName) { testsToRun.insert(utest.first); found = true; } } } if (!found) { badTestSpecifications += "# Warning: No matching test found for input specification " + testID + "\n"; } } if (testsToRun.size() == 0) { for (const auto& utest: *tests) { testsToRun.insert(utest.first); } } // Emit TAP plan line UnitTest::msg ("1.." + std::to_string(testsToRun.size())); UnitTest::msg (badTestSpecifications); unsigned testNumber = 1; for (std::string testName: testsToRun) { BoundedTest test = (*tests)[testName]; runTest (testNumber, testName, test.unitTest, test.timeLimit); ++testNumber; } } /** * Clear the call log. */ void UnitTest::clearCallLog() { callLog.clear(); } /** * Position of oldest logged call. */ UnitTest::iterator UnitTest::begin() { return callLog.begin(); } /** * Position just after the most recently logged call. */ UnitTest::iterator UnitTest::end() { return callLog.end(); } /** * Log a call to a zero-parameter function. * * @param functionName name of the function */ void UnitTest::logCall (const std::string& functionName) { callLog.push_back (functionName); } void UnitTest::msgPassed (unsigned testNumber, std::string testName, unsigned timeMS) { using namespace std; cout << flush; cout << "ok " << testNumber << " - " << testName << endl; } void UnitTest::msgXPassed (unsigned testNumber, std::string testName, unsigned timeMS) { UnitTest::msg( UnitTest::msgFailed(testNumber, testName, std::string("Test ") + std::to_string(testNumber) + " - " + testName + " passed but was expected to fail.", timeMS) ); } std::string UnitTest::extractLocation (const std::string& msg) { using namespace std; string::size_type len = msg.size(); string::size_type pos1 = msg.find(".h:"); string::size_type pos2 = msg.find(".cpp:"); string::size_type pos = (pos1 < pos2) ? pos1 : pos2; string::size_type posEnd = pos + ((pos1 < pos2) ? 3 : 5); string::size_type stop = posEnd; while (stop < len && isdigit(msg[stop])) { ++stop; } if (stop == posEnd) return ""; string::size_type start = pos; char c = msg[start]; while (start <= pos && (isalnum(c) || c == '.' || c == '_' || c == '-' || c == '/' || c == '\\')) { --start; if (start <= pos) c = msg[start]; } if (start == pos) return ""; string result = msg.substr(start+1, stop-start-1); return result; } std::string UnitTest::msgFailed (unsigned testNumber, std::string testName, std::string diagnostics, unsigned timeMS) { using namespace std; string location = extractLocation(diagnostics); if (location.size() > 0) location += ": error: Failed test\n"; string diagnosticString = location + msgComment(diagnostics); string resultMsg = "not ok " + to_string(testNumber) + " - " + testName; if (diagnosticMessagesBeforeResults) return diagnosticString + ": \n" + resultMsg; else return resultMsg + "\n" + diagnosticString; } std::string UnitTest::msgComment (const std::string& commentary) { const static std::string commentPrefix = "# "; std::string result; std::string startOfLine = commentary.substr(0, commentPrefix.size()); if (startOfLine == commentPrefix) result = commentary; else result = commentPrefix + commentary; std::string::size_type pos = result.find('\n'); while (pos != std::string::npos) { if (result.size() >= pos+1+commentPrefix.size()) { startOfLine = result.substr(pos+1, commentPrefix.size()); if (startOfLine != commentPrefix) { result.insert(pos+1, commentPrefix); } } else { result.insert(pos+1, commentPrefix); } pos = result.find('\n', pos+1); } return result; } void UnitTest::msgXFailed (unsigned testNumber, std::string testName, std::string diagnostics, unsigned timeMS) { std::string diagnosticMsg = msgComment(std::string("Test ") + std::to_string(testNumber) + " failed but was expected to fail."); if (diagnosticMessagesBeforeResults) UnitTest::msg(diagnosticMsg); UnitTest::msgPassed(testNumber, testName, timeMS); if (!diagnosticMessagesBeforeResults) UnitTest::msg(diagnosticMsg); } void UnitTest::msgError (unsigned testNumber, std::string testName, std::string diagnostics, unsigned timeMS) { std::string diagnosticMsg = msgComment("ERROR - " + diagnostics); if (diagnosticMessagesBeforeResults) UnitTest::msg(diagnosticMsg); UnitTest::msg("not ok " + std::to_string(testNumber) + " - " + testName); if (!diagnosticMessagesBeforeResults) UnitTest::msg(diagnosticMsg); } void UnitTest::msgSummary () { using namespace std; cout << "# UnitTest: passed " << numSuccesses << " out of " << getNumTests() << " tests, for a success rate of " << std::showpoint << std::fixed << std::setprecision(1) << (100.0 * numSuccesses)/(float)getNumTests() << "%" << endl; } void UnitTest::msg (const std::string& detailMessage) { using std::cout; cout << detailMessage; if (detailMessage.size() > 0 && detailMessage[detailMessage.size()-1] != '\n') cout << "\n"; cout << std::flush; } StringContainsMatcher::StringContainsMatcher (const std::string& t): right(t) {} AssertionResult StringContainsMatcher::eval(const std::string& e) const { auto result = e.find(right); return AssertionResult( result != std::string::npos, "Found " + getStringRepr(right) + " starting in position " + getStringRepr(result) + " of " + getStringRepr(e), "Within " + getStringRepr(e) + ", cannot find " + getStringRepr(right)); } CppUnitLite::StringContainsMatcher contains(const char* t) { return CppUnitLite::StringContainsMatcher(std::string(t)); } CppUnitLite::StringContainsMatcher contains(const std::string& t) { return CppUnitLite::StringContainsMatcher(t); } StringEndsWithMatcher::StringEndsWithMatcher (const std::string& t): right(t) {} AssertionResult StringEndsWithMatcher::eval(const std::string& e) const { std::string eStr = getStringRepr(e); std::string rightStr = getStringRepr(right); bool result = (right.size() <= e.size()) && equal(right.begin(), right.end(), e.begin() + e.size() - right.size()); return AssertionResult(result, eStr + " ends with " + rightStr, eStr + " does not end with " + rightStr); } StringEndsWithMatcher endsWith(const char* t) { return StringEndsWithMatcher(std::string(t)); } StringEndsWithMatcher endsWith(const std::string& t) { return StringEndsWithMatcher(t); } StringBeginsWithMatcher::StringBeginsWithMatcher (const std::string& t) : right(t) {} AssertionResult StringBeginsWithMatcher::eval(const std::string& e) const { std::string eStr = getStringRepr(e); std::string rightStr = getStringRepr(right); bool result = (right.size() <= e.size()) && equal(right.begin(), right.end(), e.begin()); return AssertionResult(result, eStr + " begins with " + rightStr, eStr + " does not begin with " + rightStr ); } StringBeginsWithMatcher beginsWith(const char* t) { return CppUnitLite::StringBeginsWithMatcher(std::string(t)); } StringBeginsWithMatcher beginsWith(const std::string& t) { return StringBeginsWithMatcher(t); } StringBeginsWithMatcher startsWith(const char* t) { return StringBeginsWithMatcher(std::string(t)); } StringBeginsWithMatcher startsWith(const std::string& t) { return StringBeginsWithMatcher(t); } AssertionResult NullMatcher::eval(const void* p) const { return AssertionResult(p == nullptr, "", ""); } CppUnitLite::NullMatcher isNull() { return CppUnitLite::NullMatcher(); } AssertionResult NotNullMatcher::eval(const void* p) const { return AssertionResult(p != nullptr, "", ""); } CppUnitLite::NotNullMatcher isNotNull() { return CppUnitLite::NotNullMatcher(); } #ifndef NOMAIN int main(int argc, char** argv) { UnitTest::diagnosticMessagesBeforeResults = true; UnitTest::runTests(argc-1, argv+1, argv[0]); UnitTest::report(); return 0; } #endif
list_reading/unittest.d
list_reading/unittest.h
#ifndef UNITTEST_H #define UNITTEST_H #include <algorithm> #include <cstdarg> #include <iostream> #include <map> #include <sstream> #include <string> #include <vector> /** * This class helps support self-checking unit tests. * * This is a lightweight framework similar in spirit to JUnit (for Java), * Google Test, and Boost Test, but which can be added to a project by the * simple addition of the two files, unittest.h and unittest.cpp. It's not as * robust as those other frameworks - some runtime errors will shut the * test suite down with no final report. * * # Usage * * The framework consists of a two files, `unittest.h` and `unittest.cpp`, * that can be dropped into a C++ project directory, allowing the creation of * a unit test suite. * * A test suite consists of a collection of unit test functions, which can * be distributed among multiple .cpp files. (Typically one such file * would be devoted to testing each class in the project.) * * Each unit test function is introduced via `UnitTest` or, optionally, * `UnitTestTimed` (which alters the default timeout, measured in * milliseconds). * * Each unit test function can contain code to set up parameters, invoke * the function(s) being tested, and to evaluate the results of those * function calls via the use of assertions. Most assertions have the form: * * assertThat (value, matcher); * * although the following "old-fashioned" assertions are also supported. * * assertTrue (condition); * assertFalse (condition); * assertEqual (expression1, expression2); * assertNotEqual (expression1, expression2); * assertNull (expression); * assertNotNull (expression); * * The assertThat form, however, allows for a much wider and expressive range of * tests: * * ## Relational Matchers * * assertThat(x, isEqualTo(y)); * assertThat(x, is(y)); // same as isEqualTo * assertThat(x, isApproximately(y, delta)); // floating point only * assertThat(x, isNotEqualTo(y)); * assertThat(x, isNot(y)); // same as isNotEqualTo * * assertThat(x, isOneOf(w, y, z)); // Allows 1 or more options * * assertThat(x, isLessThan(y)); * assertThat(x, isGreaterThan(y)); * assertThat(x, isLessThanOrEqualTo(y)); * assertThat(x, isGreaterThanOrEqualTo(y)); * * ## String Matchers * * assertThat(str, contains("bc")); * assertThat(str, beginsWith(str2)); * assertThat(str, endsWith(str2)); * assertThat(str, startsWith(str2)); // same as beginsWith * * ## Pointer Matchers * * assertThat(p, isNull()); * assertThat(q, isNotNull()); * * ## Container Matchers * * Containers that define key_type (sets and maps, including unordered) * will be searched using their own fast find member function. Other * containers will be searched using a sequential search over begin()..end(). * * assertThat(v, contains(3)); * assertThat(v, hasItem(x)); // Same as contains * assertThat(v, hasKey(x)); // Same as contains * * assertThat(L, hasItems(3, 9)); // Allows one or more values * assertThat(L, hasKeys(3, 9)); // Same as hasItems * * range() and arrayOfLength() can be used to describe sequences that can be * used with any of the container objects. * * assertThat(range(v.begin(), v.end()), hasItem(z)); * assertThat(arrayOfLength(array, len), hasItem(z)); * * The common case of a sequence consisting of some container's entire contents * from begin() to end() can also be written as contentsOf(): * * assertThat(contentsOf(v), hasItem(z)); * * assertThat(x, isIn(v)); * assertThat(x, isInRange(v.begin(), v.end())); * * assertThat(aMap, hasEntry(5, 10)); // maps only * * A test for equality of corresponding elements between two sequences can be * made with matches(). * * assertThat(range(v.begin(), v.end()), matches(range(L.begin(), L.end()))); * * This can also be written as * * assertThat(contentsOf(v), matches(contentsOf(L))); * * ## Combining Matchers * * assertThat(x, !(matcher)); // Negate a matcher * * assertThat(x, allOf(isLessThan(42), isGreaterThan(10), is(23))); // All must be true * * assertThat(23, anyOf(isLessThan(42), isGreaterThan(10))); // One or more must be true * * # Example * * ## Writing A Unit Test * * A unit test of a simple "counter" class might look like: * * #include "unittest.h" * #include "myCounter.h" * * UnitTest (testConstructor) * { * MyClass x (23); * assertThat (x.getValue(), is(23)); * assertThat (x.isZero(), is(true)); * assertTrue (x.isZero()); // older style * } * * UnitTestTimed (testIncrement, 100L) // Limited to 100ms * { * MyClass x (23); * x.increment(); * assertThat (x.getValue(), is(24)); * x.increment(); * assertThat (x.getValue(), is(25)); * } * * UnitTestTimed (longTest, -1L) // No timer: will never time out * { * MyClass x (23); * for (int i = 0; i < 10000; ++i) * x.increment(); * assertThat (x.getValue(), is(10023)); * } * * * ## Running Your Tests * * The unittest.cpp includes a main() function to drive the tests. When * run with no command-line parameters, all unit test functions are run. * If command-line parameters are provided, they provide a list of test * function names to indicate which tests to run. Specifically, * any test function whose name contains the command-line parameter * will be run. * * For example, if the above tests are compiled to form an executable * named "`unittest`", then * * ./unittest testIncrement * * or * * ./unittest Incr * * * would run only the second test above, but any of the following * * ./unittest testConstructor testIncrement longTest * ./unittest est * ./unittest * * would run all three tests. */ /** * Time limit, in milliseconds, before a test function is killed * on suspicion of the code under test having gone into an infinite loop. * * Affects all subsequent UniTest(...) declarations, but is ignored by * any UnitTestTimed(...) declarations (because they supply their own * time limit, overriding the default). * * Note that a non-positive value for this time limit suppresses the timing * check entirely. This may be useful as a way of "stopping the clock" * when debugging failed tests. */ #define DEFAULT_UNIT_TEST_TIME_LIMIT 500L /** * Macros - actual tests will invoke one of these */ #define assertThat( obj, matcher ) CppUnitLite::UnitTest::checkTest \ ((matcher).eval(obj), \ std::string(#obj) + " " + std::string(#matcher), __FILE__, __LINE__) #define assertTrue(cond) CppUnitLite::UnitTest::checkTest\ (CppUnitLite::AssertionResult(cond,"",""), #cond, __FILE__, __LINE__) #define assertTruex(cond) CppUnitLite::UnitTest::checkTest\ (cond, #cond, __FILE__, __LINE__) #define assertFalse(cond) CppUnitLite::UnitTest::checkTest\ (CppUnitLite::AssertionResult(!(cond),"",""), std::string("!(") + #cond + ")", __FILE__, __LINE__) #define assertFalsex(cond) CppUnitLite::UnitTest::checkTest\ (!(cond), std::string("!(") + #cond + ")", __FILE__, __LINE__) #define assertEqual( x, y ) assertThat(x, isEqualTo(y)) #define assertEqualx( x, y ) CppUnitLite::UnitTest::checkTest ((x)==(y),\ "assertEqual(" #x "," #y ")", \ __FILE__, __LINE__) #define assertNotEqual( x , y ) assertThat(x, isNotEqualTo(y)) #define assertNotEqualx( x , y ) assertFalse ((x)==(y)) #define assertNull(x) assertTrue ((x)==nullptr) #define assertNotNull(x) assertTrue ((x)!=nullptr) #define succeed CppUnitLite::UnitTest::checkTest (\ CppUnitLite::AssertionResult(true,"",""),\ "succeed", __FILE__, __LINE__) #define fail CppUnitLite::UnitTest::checkTest (\ CppUnitLite::AssertionResult(false,"",""), "fail",\ __FILE__, __LINE__) /** * Test registration */ #define UnitTest(functName) UnitTestTimed(functName, DEFAULT_UNIT_TEST_TIME_LIMIT) #define UnitTestTimed(functName, limit) void functName(); int functName ## dummy = \ CppUnitLite::UnitTest::registerUT(#functName, limit, &functName); void functName() namespace CppUnitLite { template <typename T> struct has_begin { private: template <typename U, class = decltype( std::declval<U&>().begin() ) > static std::true_type try_begin(U&&); static std::false_type try_begin(...); public: using type = decltype( try_begin( std::declval<T>())); static constexpr bool value = type(); }; template <typename T> struct can_be_written { private: template <typename U, class = decltype( std::declval<std::ostringstream&>() << std::declval<U&>()) > static std::true_type try_output(U&&); static std::false_type try_output(...); public: using type = decltype( try_output( std::declval<T>())); static constexpr bool value = type(); }; template <typename T, typename U> std::string getStringRepr(const std::pair<T,U>& t); template <typename T> std::string getStringRepr(T t); template<typename T, typename std::enable_if<can_be_written<T>::value, int>::type = 0> std::string getStringRepr2(T const& t) { std::ostringstream out; out << t; return out.str(); } template<typename T, typename std::enable_if<!can_be_written<T>::value && has_begin<T>::value, int>::type = 0> std::string getStringRepr2(T t) { static const unsigned ContainerDisplayLimit = 10; auto n = std::distance(t.begin(), t.end()); auto pos = t.begin(); unsigned count = 0; std::string result = "["; while (pos != t.end() && n > 0) { result += getStringRepr(*pos); if (n > 1) result += ", "; --n; ++pos; ++count; if (count >= ContainerDisplayLimit && n > 0) { result += "..."; break; } } if (n > 0) { result += "... (" + getStringRepr(n) + " additional elements) ..."; } result += "]"; return result; } template<typename T, typename std::enable_if<!can_be_written<T>::value && !has_begin<T>::value, int>::type = 0> std::string getStringRepr2(T t) { return "???"; } template <typename T, typename U> std::string getStringRepr(const std::pair<T,U>& t) { return std::string("<") + getStringRepr(t.first) + ", " + getStringRepr(t.second) + ">"; } template <typename Tuple, std::size_t size, std::size_t remaining> struct getTupleRepr { static std::string getContentRepr(Tuple t) { std::string separator = (remaining > 1)? std::string(", ") : std::string(); return getStringRepr(std::get<size-remaining>(t)) + separator + getTupleRepr<Tuple,size, remaining-1>::getContentRepr(t); } }; template <typename Tuple, std::size_t size> struct getTupleRepr<Tuple, size, 0> { static std::string getContentRepr(Tuple t) { return ""; } }; template <typename Tuple> std::string getTupleStringRepr(Tuple t) { return std::string("<") + getTupleRepr<Tuple, std::tuple_size<Tuple>::value, std::tuple_size<Tuple>::value>::getContentRepr(t) + ">"; } template <typename... T> std::string getStringRepr(const std::tuple<T...>& t) { return getTupleStringRepr(t); } template <typename T> std::string getStringRepr(T t) { return getStringRepr2(t); } template <> std::string getStringRepr(std::string t); template <> std::string getStringRepr(const char t[]); template <> std::string getStringRepr(char t); template <> std::string getStringRepr(bool b); class AssertionResult { public: bool result; ///> True iff assertion passed std::string passExplanation; ///> Optional explanation for passing; std::string failExplanation; ///> Optional explanation for failure; AssertionResult (bool theResult, std::string passExplain, std::string failExplain); }; /** * Main support class for unit test execution. */ class UnitTest { private: static long numSuccesses; static long numFailures; static long numErrors; static std::string currentTest; static std::vector<std::string> failedTests; static std::vector<std::string> callLog; public: /** * Change to false to print diagnostics after the ok/not ok result. */ static bool diagnosticMessagesBeforeResults; typedef void (*TestFunction)(); /** * Exception thrown to indicate a failed assertion. */ class UnitTestFailure: public std::exception { std::string explanation; public: UnitTestFailure (const char* conditionStr, const char* fileName, int lineNumber); UnitTestFailure (const std::string& conditionStr, const char* fileName, int lineNumber); virtual const char* what() const noexcept; }; /** * The main test function - normally called via one of the macros * declared following this class. Does nothing if the assertion * was passed, but throws an exception if the assertion was failed. * * @param result the assertion condition, "" if passed, otherwise * contains an explanation for the failure. * @param conditionStr a string rendering of the assertion condition. * @param fileName Source code file in which the assertion occurs, * @param lineNumber Source code line number at which the assertion occurs, * @throws UnitTestFailure if condition is false. */ static void checkTest (AssertionResult result, std::string conditionStr, const char* fileName, int lineNumber); /** * The main test function - normally called via one of the macros * declared following this class. Does nothing if the assertion * was passed, but throws an exception if the assertion was failed. * * @param condition the assertion condition, true iff passed. * @param conditionStr a string rendering of the assertion condition. * @param fileName Source code file in which the assertion occurs, * @param lineNumber Source code line number at which the assertion occurs, * @throws UnitTestFailure if condition is false. */ // static void checkTest (bool condition, const std::string& conditionStr, // const char* fileName, int lineNumber); // Summary info about tests conducted so far /** * How many tests have been run? * * @return number of tests. */ static long getNumTests() {return numSuccesses + numFailures;} /** * How many tests were terminated by a failed assertion? * * @return number of failed tests. */ static long getNumFailures() {return numFailures;} /** * How many tests were terminated by an unexpected exception, * run-time error, or time-out? * * @return number of uncompleted tests. */ static long getNumErrors() {return numErrors;} /** * How many tests terminated successfully? * * @return number of passed tests. */ static long getNumSuccesses() {return numSuccesses;} /** * Run all units tests whose name contains testNames[i], * for all i in 0..nTests-1. * * Special case: If nTests == 0, runs all unit Tests. * * @param nTests number of test name substrings * @param testNames array of possible substrings of test names * @param programName path to program executable */ static void runTests (int nTests, char** testNames, char* programName); /** * Print a simple summary report. Includes number of tests passed, * failed, and erroneously termnated. * */ static void report (); /** * Register a new UnitTest, making it eligible for running. * * @param functName name of the test function. * @param timeLimit time limit in milliseconds * @param funct the unit test function */ static int registerUT (std::string functName, int timeLimit, TestFunction funct); /** * Reverses the expectation for the current test. A test that fails or halts * with an error will be reported and counted as OK. If that test succeeds, * it will be reported and counted as an error. * * Must be called before any assertions. */ static void expectedToFail(); /* ******************************************************** * The call log is intended as an aid in writing stubs. * ********************************************************/ typedef std::vector<std::string>::const_iterator const_iterator; typedef std::vector<std::string>::const_iterator iterator; /** * Clear the call log. */ static void clearCallLog(); /** * Position of oldest logged call. */ static iterator begin(); /** * Position just after the most recently logged call. */ static iterator end(); /** * Log a call to a zero-parameter function. * * @param functionName name of the function */ static void logCall (const std::string& functionName); /** * Log a call to a function with one parameter. * * Parameter types must support operator<< * * @param functionName name of the function * @param arg1 a parameter to the function call */ template <typename T1> static void logCall (const std::string& functionName, const T1& arg1) { logCall (functionName + "\t" + getStringRepr(arg1)); } /** * Log a call to a function with two parameters. * * Parameter types must support operator<< * * @param functionName name of the function * @param arg1 a parameter to the function call * @param arg2 a parameter to the function call */ template <typename T1, typename T2> static void logCall (const std::string& functionName, const T1& arg1, const T2& arg2) { logCall (functionName + "\t" + getStringRepr(arg1) + "\t" + getStringRepr(arg2)); } /** * Log a call to a function with three parameters. * * Parameter types must support operator<< * * @param functionName name of the function * @param arg1 a parameter to the function call * @param arg2 a parameter to the function call * @param arg3 a parameter to the function call */ template <typename T1, typename T2, typename T3> static void logCall (const std::string& functionName, const T1& arg1, const T2& arg2, const T3& arg3) { logCall (functionName + "\t" + getStringRepr(arg1) + "\t" + getStringRepr(arg2) + "\t" + getStringRepr(arg3)); } /** * Log a call to a function with four parameters. * * Parameter types must support operator<< * * @param functionName name of the function * @param arg1 a parameter to the function call * @param arg2 a parameter to the function call * @param arg3 a parameter to the function call * @param arg4 a parameter to the function call */ template <typename T1, typename T2, typename T3, typename T4> static void logCall (const std::string& functionName, const T1& arg1, const T2& arg2, const T3& arg3, const T4& arg4) { logCall (functionName + "\t" + getStringRepr(arg1) + "\t" + getStringRepr(arg2) + "\t" + getStringRepr(arg3) + "\t" + getStringRepr(arg4)); } // These should be private, but I wanted to unit test them. static std::string msgComment (const std::string& commentary); static std::string msgFailed (unsigned testNumber, std::string testName, std::string diagnostics, unsigned timeMS); static bool debuggerIsRunning(); private: /** * Internal container for test functions and their associated time limits. */ struct BoundedTest { int timeLimit; TestFunction unitTest; BoundedTest(): timeLimit(0), unitTest(0) {} BoundedTest (int time, TestFunction f): timeLimit(time), unitTest(f) {} }; static std::map<std::string, BoundedTest> *tests; static bool expectToFail; static void runTest(unsigned testNumber, std::string testName, TestFunction u, long timeLimitInMS); static void runTestUntimed(unsigned testNumber, std::string testName, TestFunction u); static int runTestGuarded(unsigned testNumber, std::string testName, TestFunction u, std::string& msg); static std::string extractLocation (const std::string& msg); static void msgRunning (unsigned testNumber, std::string testName); static void msgPassed (unsigned testNumber, std::string testName, unsigned timeMS); static void msgXPassed (unsigned testNumber, std::string testName, unsigned timeMS); //static std::string msgFailed (unsigned testNumber, std::string testName, unsigned timeMS); //static std::string msgComment (const std::string& commentary); static void msgXFailed (unsigned testNumber, std::string testName, std::string diagnostics, unsigned timeMS); static void msgError (unsigned testNumber, std::string testName, std::string diagnostics, unsigned timeMS); static void msgSummary (); static void msg (const std::string& detailMessage); }; inline void expectedToFail() { UnitTest::expectedToFail(); } // Compile-time test for associative containers inline constexpr auto container_has_keytype_impl(...) -> std::false_type { return std::false_type{}; } template <typename C, typename = typename C::key_type> constexpr auto container_has_keytype_impl(C const*) -> std::true_type { return std::true_type{}; } template <typename C> constexpr auto container_has_keytype(C const& c) -> decltype(container_has_keytype_impl(&c)) { return container_has_keytype_impl(&c); } template <typename Container, typename Element> long find_in_container_impl (const Container& c, const Element& e, std::false_type) { long ctr = 0L; for (auto it = c.begin(); it != c.end(); ++it) { if (e == *it) return ctr; ++ctr; } return -1L; } template <typename Container, typename Element> long find_in_container_impl (const Container& c, const Element& e, std::true_type) { auto pos = c.find(e); if (c.find(e) != c.end()) return (long)distance(c.begin(), pos); else return -1L; } template <typename Container, typename Element> long find_in_container (const Container& c, const Element& e) { return find_in_container_impl (c, e, container_has_keytype(c)); } //// Relational Matchers template <typename T> class EqualToMatcher { const T right; public: EqualToMatcher (const T& t) : right(t) {} /** * Evaluate the condition denoted by this matcher. */ AssertionResult eval(const T& left) const { std::string leftStr = CppUnitLite::getStringRepr(left); std::string rightStr = CppUnitLite::getStringRepr(right); std::string explain = "Expected: " + rightStr + "\n\tObserved: " + leftStr; return AssertionResult(left == right, "Both values were: " + getStringRepr(left), explain ); } }; template <typename T, typename U> class ApproximatelyEqualToMatcher { const T right; const U delta; public: ApproximatelyEqualToMatcher (const T& t, const U& d): right(t), delta(d) {} AssertionResult eval(const T& left) const { std::string leftStr = CppUnitLite::getStringRepr(left); std::string rightPlusStr = CppUnitLite::getStringRepr(right+delta); std::string rightMinusStr = CppUnitLite::getStringRepr(right-delta); std::string passExplain = leftStr + " is between " + rightMinusStr + " and " + rightPlusStr; if (left < right - delta || left > right + delta) return AssertionResult(false, passExplain, leftStr + " is outside the range " + getStringRepr(right-delta) + " .. " + getStringRepr(right+delta)); else return AssertionResult(true, passExplain, ""); } }; template <typename T> class NotEqualToMatcher { const T right; public: NotEqualToMatcher (const T& t): right(t) {} AssertionResult eval(const T& left) const { std::string leftStr = CppUnitLite::getStringRepr(left); std::string rightStr = CppUnitLite::getStringRepr(right); std::string explain = "Expected: " + rightStr + "\n\tObserved: " + leftStr; return AssertionResult(!(left == right), explain, "Both values were: " + getStringRepr(left) ); } }; template <typename T> class LessThanMatcher { const T right; public: LessThanMatcher (const T& t): right(t) {} AssertionResult eval(const T& left) const { std::string leftStr = CppUnitLite::getStringRepr(left); std::string rightStr = CppUnitLite::getStringRepr(right); return AssertionResult(left < right, leftStr + " is less than " + rightStr, leftStr + " is not less than " + rightStr ); } }; template <typename T> class GreaterThanMatcher { const T right; public: GreaterThanMatcher (const T& t): right(t) {} AssertionResult eval(const T& left) const { std::string leftStr = CppUnitLite::getStringRepr(left); std::string rightStr = CppUnitLite::getStringRepr(right); return AssertionResult(right < left, leftStr + " is greater than " + rightStr, leftStr + " is not greater than " + rightStr ); } }; template <typename T> class LessThanOrEqualToMatcher { const T right; public: LessThanOrEqualToMatcher (const T& t): right(t) {} AssertionResult eval(const T& left) const { std::string leftStr = CppUnitLite::getStringRepr(left); std::string rightStr = CppUnitLite::getStringRepr(right); return AssertionResult(!(right < left), leftStr + " is less than or equal to " + rightStr, leftStr + " is greater than " + rightStr ); } }; template <typename T> class GreaterThanOrEqualToMatcher { const T right; public: GreaterThanOrEqualToMatcher (const T& t): right(t) {} AssertionResult eval(const T& left) const { std::string leftStr = CppUnitLite::getStringRepr(left); std::string rightStr = CppUnitLite::getStringRepr(right); return AssertionResult(!(left < right), leftStr + " is greater than or equal to " + rightStr, leftStr + " is less than " + rightStr ); } }; //// String Matchers class StringContainsMatcher { const std::string right; public: StringContainsMatcher (const std::string& t); AssertionResult eval(const std::string& e) const; }; class StringEndsWithMatcher { const std::string right; public: StringEndsWithMatcher (const std::string& t); AssertionResult eval(const std::string& e) const; }; class StringBeginsWithMatcher { const std::string right; public: StringBeginsWithMatcher (const std::string& t); AssertionResult eval(const std::string& e) const; }; // Pointer Matchers class NullMatcher { public: AssertionResult eval(const void* p) const; }; class NotNullMatcher { public: AssertionResult eval(const void* p) const; }; //// Container Matchers template <typename Element> class ContainsMatcher { Element right; public: ContainsMatcher (Element e) : right(e) {} template <typename Container> AssertionResult eval(const Container& c) const { std::string containerStr = CppUnitLite::getStringRepr(c); std::string rightStr = CppUnitLite::getStringRepr(right); long pos = find_in_container(c, right); return AssertionResult(pos >= 0, "Found " + rightStr + " in position " + getStringRepr(pos) + " of " + containerStr, "Could not find " + rightStr + " in " + containerStr ); } }; template <typename Key, typename Data> class HasEntryMatcher { Key key; Data data; public: HasEntryMatcher (const Key& k, const Data& d) : key(k), data(d) {} template <typename Container> AssertionResult eval(const Container& c) const { std::string containerStr = CppUnitLite::getStringRepr(c); std::string keyStr = CppUnitLite::getStringRepr(key); auto pos = c.find(key); if (pos != c.end()) { return AssertionResult(data == pos->second, "Found " + getStringRepr(*pos) + " in " + containerStr, "Could not find <" + keyStr + ", " + getStringRepr(data) + "> in " + containerStr ); } else return AssertionResult(pos != c.end(), "Found " + getStringRepr(*pos) + " in " + containerStr, "Could not find " + keyStr + " in " + containerStr ); } }; template <typename Iterator> class IteratorRange { Iterator start; Iterator stop; public: typedef Iterator iterator; typedef Iterator const_iterator; IteratorRange (Iterator b, Iterator e): start(b), stop(e) {} Iterator begin() const { return start; } Iterator end() const { return stop; } }; template <typename... Ts> class HasItemsMatcher { using Element = typename std::common_type<Ts...>::type; typename std::vector<Element> right; public: HasItemsMatcher (Ts... ts): right({ts...}) { } template <typename Container> AssertionResult eval (const Container& c) const { std::string cStr = getStringRepr(c); std::string foundAll = "Found all of " + getStringRepr(right) + " in " + cStr; for (const Element& e: right) { if (find_in_container(c, e) < 0L) { std::string explain = "Did not find " + getStringRepr(e) + " in " + cStr; return AssertionResult(false, foundAll, explain); } } return AssertionResult(true, foundAll, foundAll); } }; template <typename Iterator1> class MatchesMatcher { const IteratorRange<Iterator1> range1; public: MatchesMatcher (IteratorRange<Iterator1> r1) : range1(r1) {} template <typename Iterator2> AssertionResult eval(IteratorRange<Iterator2> range2) const { auto d1 = std::distance(range1.begin(), range1.end()); auto d2 = std::distance(range2.begin(), range2.end()); if (d1 == d2) { Iterator1 pos1 = range1.begin(); Iterator2 pos2 = range2.begin(); while (pos1 != range1.end()) { if (!(*pos1 == *pos2)) { return AssertionResult (false, "", "In position " + getStringRepr(std::distance(range1.begin(), pos1)) + ", " + getStringRepr(*pos1) + " != " + getStringRepr(*pos2) ); } ++pos1; ++pos2; } return AssertionResult (true, "All corresponding elements were equal.",""); } else return AssertionResult(false, "", "Ranges are of different length (" + getStringRepr(d1) + " and " + getStringRepr(d2) + ")"); } }; template <typename Container> class IsInMatcher { const Container& container; public: IsInMatcher (const Container& c) : container(c) {} template <typename Element> AssertionResult eval(const Element& e) const { std::string cStr = getStringRepr(container); std::string eStr = getStringRepr(e); long pos = find_in_container(container, e); return AssertionResult(pos >= 0L, "Found " + eStr + " in postion " + getStringRepr(pos) + " of " + cStr, "Could not find " + eStr + " in " + cStr); } }; template <typename Iterator> class IsInRangeMatcher { Iterator start; Iterator stop; public: IsInRangeMatcher (Iterator b, Iterator e) : start(b), stop(e) {} template <typename Element> AssertionResult eval(const Element& e) const { std::string eStr = getStringRepr(e); auto pos = find(start, stop, e); return AssertionResult (pos != stop, "Found " + eStr + " in range, " + getStringRepr(distance(start,pos)) + " steps from the start", "Could not find " + eStr + " in the range"); } }; //// Boolean Matchers template <typename T> class NotMatcher { T right; public: NotMatcher (const T& t): right(t) {} template <typename U> AssertionResult eval(const U& u) const { AssertionResult r = right.eval(u); return AssertionResult(!(r.result), r.failExplanation, r.passExplanation); } }; template <typename... Rest> class AllOfMatcher { public: AllOfMatcher (Rest... matchers) { } template <typename T> AssertionResult eval (const T& t) const { return AssertionResult(true, "", ""); } }; template <typename Matcher, typename... Rest> class AllOfMatcher<Matcher, Rest...> { Matcher matcher; AllOfMatcher<Rest...> rest; public: AllOfMatcher (Matcher m, Rest... matchers): matcher(m), rest(matchers...) { } template <typename T> AssertionResult eval (const T& t) const { AssertionResult result1 = matcher.eval(t); if (result1.result) return rest.eval(t); else return AssertionResult(false, "All of the conditions were true", result1.failExplanation); } }; template <typename... Rest> class AnyOfMatcher { public: AnyOfMatcher (Rest... matchers) { } template <typename T> AssertionResult eval (const T& t) const { return AssertionResult(false, "", ""); } }; template <typename Matcher, typename... Rest> class AnyOfMatcher<Matcher, Rest...> { Matcher matcher; AnyOfMatcher<Rest...> rest; public: AnyOfMatcher (Matcher m, Rest... matchers): matcher(m), rest(matchers...) { } template <typename T> AssertionResult eval (const T& t) const { AssertionResult result1 = matcher.eval(t); if (!result1.result) return rest.eval(t); else return AssertionResult(true, result1.passExplanation, "None of the conditions were true"); } }; template <typename... T> class OneOfMatcher { using Element = typename std::common_type<T...>::type; typename std::vector<Element> right; public: OneOfMatcher (T... t): right({std::forward<T>(t)...}) { } AssertionResult eval (const Element& left) const { std::string leftStr = CppUnitLite::getStringRepr(left); std::string rightStr = CppUnitLite::getStringRepr(right); std::string foundMessage = "Found " + leftStr + " in " + rightStr; std::string notFoundMessage = "Could not find " + leftStr + " in " + rightStr; for (const Element& e: right) { if (left == e) return AssertionResult(true, foundMessage, notFoundMessage); } return AssertionResult(false, foundMessage, notFoundMessage); } }; } //// Matchers /// Relational Matchers inline CppUnitLite::EqualToMatcher<std::string> isEqualTo(const char* t) { return CppUnitLite::EqualToMatcher<std::string>(std::string(t)); } template <typename T> CppUnitLite::EqualToMatcher<T> isEqualTo(const T& t) { return CppUnitLite::EqualToMatcher<T>(t); } inline CppUnitLite::EqualToMatcher<std::string> is(const char* t) { return CppUnitLite::EqualToMatcher<std::string>(std::string(t)); } template <typename T> CppUnitLite::EqualToMatcher<T> is(const T& t) { return CppUnitLite::EqualToMatcher<T>(t); } template <typename T, typename U> CppUnitLite::ApproximatelyEqualToMatcher<T,U> isApproximately(const T& t, const U& delta) { return CppUnitLite::ApproximatelyEqualToMatcher<T,U>(t, delta); } inline CppUnitLite::NotEqualToMatcher<std::string> isNotEqualTo(const char* t) { return CppUnitLite::NotEqualToMatcher<std::string>(std::string(t)); } template <typename T> CppUnitLite::NotEqualToMatcher<T> isNotEqualTo(const T& t) { return CppUnitLite::NotEqualToMatcher<T>(t); } inline CppUnitLite::NotEqualToMatcher<std::string> isNot(const char* t) { return CppUnitLite::NotEqualToMatcher<std::string>(std::string(t)); } template <typename T> CppUnitLite::NotEqualToMatcher<T> isNot(const T& t) { return CppUnitLite::NotEqualToMatcher<T>(t); } inline CppUnitLite::LessThanMatcher<std::string> \ isLessThan(const char* t) { return CppUnitLite::LessThanMatcher<std::string>(std::string(t)); } template <typename T> CppUnitLite::LessThanMatcher<T> isLessThan(const T& t) { return CppUnitLite::LessThanMatcher<T>(t); } inline CppUnitLite::GreaterThanMatcher<std::string> isGreaterThan(const char* t) { return CppUnitLite::GreaterThanMatcher<std::string>(std::string(t)); } template <typename T> CppUnitLite::GreaterThanMatcher<T> isGreaterThan(const T& t) { return CppUnitLite::GreaterThanMatcher<T>(t); } inline CppUnitLite::LessThanOrEqualToMatcher<std::string> isLessThanOrEqualTo(const char* t) { return CppUnitLite::LessThanOrEqualToMatcher<std::string>(std::string(t)); } template <typename T> CppUnitLite::LessThanOrEqualToMatcher<T> isLessThanOrEqualTo(const T& t) { return CppUnitLite::LessThanOrEqualToMatcher<T>(t); } inline CppUnitLite::GreaterThanOrEqualToMatcher<std::string> isGreaterThanOrEqualTo(const char* t) { return CppUnitLite::GreaterThanOrEqualToMatcher<std::string>(std::string(t)); } template <typename T> CppUnitLite::GreaterThanOrEqualToMatcher<T> isGreaterThanOrEqualTo(const T& t) { return CppUnitLite::GreaterThanOrEqualToMatcher<T>(t); } /// String matchers CppUnitLite::StringContainsMatcher contains(const char* t); CppUnitLite::StringContainsMatcher contains(const std::string& t); CppUnitLite::StringEndsWithMatcher endsWith(const char* t); CppUnitLite::StringEndsWithMatcher endsWith(const std::string& t); CppUnitLite::StringBeginsWithMatcher beginsWith(const char* t); CppUnitLite::StringBeginsWithMatcher beginsWith(const std::string& t); CppUnitLite::StringBeginsWithMatcher startsWith(const char* t); CppUnitLite::StringBeginsWithMatcher startsWith(const std::string& t); /// Pointer matchers CppUnitLite::NullMatcher isNull(); CppUnitLite::NotNullMatcher isNotNull(); /// Container matchers template <typename T> CppUnitLite::ContainsMatcher<T> hasItem(const T& e) { return CppUnitLite::ContainsMatcher<T>(e); } template <typename T> CppUnitLite::ContainsMatcher<T> contains(const T& e) { return CppUnitLite::ContainsMatcher<T>(e); } template <typename T> CppUnitLite::ContainsMatcher<T> hasKey(const T& e) { return CppUnitLite::ContainsMatcher<T>(e); } template <typename Key, typename Data> CppUnitLite::HasEntryMatcher<Key, Data> hasEntry(const Key& k, const Data& d) { return CppUnitLite::HasEntryMatcher<Key, Data>(k, d); } template <typename Element> CppUnitLite::IteratorRange<const Element*> arrayOfLength (const Element* start, int n) { return CppUnitLite::IteratorRange<const Element*>(start, start+n); } template <typename Iterator> CppUnitLite::IteratorRange<Iterator> range (Iterator start, Iterator stop) { return CppUnitLite::IteratorRange<Iterator>(start, stop); } template <typename T> CppUnitLite::IteratorRange<typename T::const_iterator> contentsOf (const T& container) { return CppUnitLite::IteratorRange<typename T::const_iterator>(container.begin(), container.end()); } template <typename... Ts> CppUnitLite::HasItemsMatcher<Ts...> hasItems (Ts... t) { return CppUnitLite::HasItemsMatcher<Ts...>(t...); } template <typename T> CppUnitLite::MatchesMatcher<const T*> matches (CppUnitLite::IteratorRange<const T*> arrayrange) { return CppUnitLite::MatchesMatcher<const T*>(arrayrange); } template <typename Iterator> CppUnitLite::MatchesMatcher<Iterator> matches (CppUnitLite::IteratorRange<Iterator> range) { return CppUnitLite::MatchesMatcher<Iterator>(range); } /// Associative container (set & map) matchers template <typename... Ts> CppUnitLite::HasItemsMatcher<Ts...> hasKeys (Ts... t) { return CppUnitLite::HasItemsMatcher<Ts...>(t...); } template <typename Container> CppUnitLite::IsInMatcher<Container> isIn(const Container& c) { return CppUnitLite::IsInMatcher<Container>(c); } template <typename Iterator> CppUnitLite::IsInRangeMatcher<Iterator> isInRange(Iterator b, Iterator e) { return CppUnitLite::IsInRangeMatcher<Iterator>(b, e); } /// Combining matchers template <typename T> CppUnitLite::NotMatcher<T> operator!(const T& t) { return CppUnitLite::NotMatcher<T>(t); } template <typename... Ts> CppUnitLite::AllOfMatcher<Ts...> allOf(Ts... ts) { return CppUnitLite::AllOfMatcher<Ts...>(ts...); } template <typename... Ts> CppUnitLite::AnyOfMatcher<Ts...> anyOf(Ts... ts) { return CppUnitLite::AnyOfMatcher<Ts...>(ts...); } template <typename... T> CppUnitLite::OneOfMatcher<T...> isOneOf (T... t) { return CppUnitLite::OneOfMatcher<T...>(t...); } #endif