From e3e6a874fd2dda3ee141df9175edcddfab214c1c Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 16 Apr 2026 22:07:24 +0100 Subject: [PATCH] Add CompactPro compression algorithms. --- CMakeLists.txt | 4 +- cpt/cpt.c | 370 ++++ cpt/cpt.h | 54 + library.c | 11 + library.h | 8 + tests/CMakeLists.txt | 9 +- tests/cpt/cpt.cpp | 109 ++ tests/data/cpt_lzh_rle.bin | Bin 0 -> 61101 bytes tests/data/cpt_rle.bin | 3628 ++++++++++++++++++++++++++++++++++++ 9 files changed, 4191 insertions(+), 2 deletions(-) create mode 100644 cpt/cpt.c create mode 100644 cpt/cpt.h create mode 100644 tests/cpt/cpt.cpp create mode 100644 tests/data/cpt_lzh_rle.bin create mode 100644 tests/data/cpt_rle.bin diff --git a/CMakeLists.txt b/CMakeLists.txt index 640651d..f065111 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -236,7 +236,9 @@ add_library("Aaru.Compression.Native" SHARED library.c apple_rle.c apple_rle.h a ppmd/SubAllocatorVariantH.c ppmd/SubAllocatorVariantH.h ppmd/VariantH.c - ppmd/VariantH.h) + ppmd/VariantH.h + cpt/cpt.c + cpt/cpt.h) include(3rdparty/bzip2.cmake) include(3rdparty/flac.cmake) diff --git a/cpt/cpt.c b/cpt/cpt.c new file mode 100644 index 0000000..6e4457d --- /dev/null +++ b/cpt/cpt.c @@ -0,0 +1,370 @@ +/* + * cpt.c - Compact Pro archive decompression + * + * This file is part of the Aaru Data Preservation Suite. + * Copyright (c) 2019-2026 Natalia Portillo. + * + * This library is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation; either version 2.1 of the + * License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see . + */ + +#include "cpt.h" + +#include +#include + +#include "../pak/bitstream.h" +#include "../pak/prefixcode.h" + +/* ============ Constants ============ */ + +#define CPT_WINDOW_SIZE 8192 +#define CPT_BLOCK_SIZE 0x1fff0 +#define CPT_RLE_ESCAPE 0x81 +#define CPT_LITERAL_SYMS 256 +#define CPT_LENGTH_SYMS 64 +#define CPT_OFFSET_SYMS 128 +#define CPT_MAX_CODELEN 15 +#define CPT_OFFSET_LOW 6 + +/* ============ Bitstream helpers ============ */ + +/** Discard remaining bits in the current byte to align to a byte boundary. */ +static void bs_align_to_byte(BitStream *bs) +{ + int remainder = bs->bitcount & 7; + + if(remainder > 0) + { + bs->bitbuffer <<= remainder; + bs->bitcount -= remainder; + } +} + +/** Return the logical byte offset of consumed data (bytes read from source). */ +static size_t bs_byte_offset(const BitStream *bs) { return bs->pos - (size_t)((bs->bitcount + 7) / 8); } + +/** Skip n bytes through the bit buffer (must be at a byte boundary). */ +static void bs_skip_bytes(BitStream *bs, int n) +{ + for(int i = 0; i < n; i++) bitstream_read_bits(bs, 8); +} + +/* ============ Huffman table reading ============ */ + +/** + * Read a canonical Huffman code table from the bitstream. + * + * Format: one byte giving the number of packed byte pairs, then that many + * bytes each containing two 4-bit code lengths (high nibble first). + * Maximum code length is 15. Uses shortest-code-is-zeros convention. + * + * @param bs Bitstream positioned at the start of the code table. + * @param size Number of symbols in the code alphabet. + * @return Allocated PrefixCode on success, NULL on error. + */ +static PrefixCode *cpt_read_code_table(BitStream *bs, int size) +{ + int numbytes = (int)bitstream_read_bits(bs, 8); + + if(numbytes * 2 > size) return NULL; + + int *lengths = (int *)calloc((size_t)size, sizeof(int)); + + if(!lengths) return NULL; + + for(int i = 0; i < numbytes; i++) + { + int val = (int)bitstream_read_bits(bs, 8); + lengths[2 * i] = val >> 4; + lengths[2 * i + 1] = val & 0x0f; + } + + /* Remaining symbols have length 0 (no code assigned). */ + PrefixCode *code = prefix_code_alloc_with_lengths(lengths, size, CPT_MAX_CODELEN, true); + free(lengths); + return code; +} + +/* ============ LZH decoder ============ */ + +/** + * Decompress LZH-encoded data (block-based Huffman LZSS, 8 KB window). + * + * The output is the intermediate RLE-encoded stream that must be further + * processed by the RLE decoder to produce the final data. + * + * @param dst Output buffer. + * @param dst_cap Capacity of output buffer. + * @param src Input compressed data. + * @param src_size Size of input data. + * @param out_len Receives the number of bytes actually written. + * @return 0 on success, -1 on error. + */ +static int cpt_lzh_decode(uint8_t *dst, size_t dst_cap, const uint8_t *src, size_t src_size, size_t *out_len) +{ + BitStream bs; + bitstream_init(&bs, src, src_size); + + uint8_t window[CPT_WINDOW_SIZE]; + memset(window, 0, sizeof(window)); + size_t win_pos = 0; + + size_t out_pos = 0; + int block_cost = CPT_BLOCK_SIZE; /* Force first block read immediately. */ + size_t block_start = 0; + + PrefixCode *literal_code = NULL; + PrefixCode *length_code = NULL; + PrefixCode *offset_code = NULL; + + while(!bitstream_eof(&bs)) + { + /* New block required? */ + if(block_cost >= CPT_BLOCK_SIZE) + { + if(block_start) + { + /* Inter-block alignment padding: + * Align to byte boundary, then skip 2 or 3 bytes depending on + * whether the consumed byte count since block_start is odd or even. */ + bs_align_to_byte(&bs); + + size_t consumed = bs_byte_offset(&bs) - block_start; + + if(consumed & 1) + bs_skip_bytes(&bs, 3); + else + bs_skip_bytes(&bs, 2); + } + + /* Free previous tables. */ + prefix_code_free(literal_code); + prefix_code_free(length_code); + prefix_code_free(offset_code); + literal_code = length_code = offset_code = NULL; + + /* Read three Huffman code tables for this block. */ + literal_code = cpt_read_code_table(&bs, CPT_LITERAL_SYMS); + length_code = cpt_read_code_table(&bs, CPT_LENGTH_SYMS); + offset_code = cpt_read_code_table(&bs, CPT_OFFSET_SYMS); + + if(!literal_code || !length_code || !offset_code) goto fail; + + block_cost = 0; + block_start = bs_byte_offset(&bs); + } + + if(bitstream_eof(&bs)) break; + + /* Read next symbol: bit=1 means literal, bit=0 means match. */ + uint32_t flag = bitstream_read_bit(&bs); + + if(flag) + { + /* Literal byte. */ + int sym = prefix_code_read_symbol(&bs, literal_code); + + if(sym < 0) goto fail; + if(out_pos >= dst_cap) goto fail; + + uint8_t byte = (uint8_t)sym; + dst[out_pos++] = byte; + window[win_pos] = byte; + win_pos = (win_pos + 1) & (CPT_WINDOW_SIZE - 1); + block_cost += 2; + } + else + { + /* LZSS match. */ + int match_len = prefix_code_read_symbol(&bs, length_code); + + if(match_len < 0) goto fail; + + int offset_high = prefix_code_read_symbol(&bs, offset_code); + + if(offset_high < 0) goto fail; + + int offset = (offset_high << CPT_OFFSET_LOW) | (int)bitstream_read_bits(&bs, CPT_OFFSET_LOW); + + /* Copy from window. */ + size_t copy_pos = (win_pos - offset) & (CPT_WINDOW_SIZE - 1); + + for(int i = 0; i < match_len; i++) + { + if(out_pos >= dst_cap) goto fail; + + uint8_t byte = window[copy_pos]; + dst[out_pos++] = byte; + window[win_pos] = byte; + win_pos = (win_pos + 1) & (CPT_WINDOW_SIZE - 1); + copy_pos = (copy_pos + 1) & (CPT_WINDOW_SIZE - 1); + } + + block_cost += 3; + } + } + + *out_len = out_pos; + + prefix_code_free(literal_code); + prefix_code_free(length_code); + prefix_code_free(offset_code); + return 0; + +fail: + prefix_code_free(literal_code); + prefix_code_free(length_code); + prefix_code_free(offset_code); + return -1; +} + +/* ============ RLE decoder ============ */ + +int cpt_rle_decode_buffer(uint8_t *dst_buffer, size_t *dst_size, const uint8_t *src_buffer, size_t src_size) +{ + if(!dst_buffer || !dst_size || !src_buffer) return -1; + + size_t dst_cap = *dst_size; + size_t out_pos = 0; + size_t in_pos = 0; + + uint8_t saved = 0; + int repeat = 0; + int halfescaped = 0; + + while(out_pos < dst_cap) + { + /* Emit pending repeats first. */ + if(repeat > 0) + { + repeat--; + if(out_pos >= dst_cap) break; + + dst_buffer[out_pos++] = saved; + continue; + } + + int byte; + + if(halfescaped) + { + byte = CPT_RLE_ESCAPE; + halfescaped = 0; + } + else + { + if(in_pos >= src_size) break; + + byte = src_buffer[in_pos++]; + } + + if(byte == CPT_RLE_ESCAPE) + { + if(in_pos >= src_size) break; + + byte = src_buffer[in_pos++]; + + if(byte == 0x82) + { + if(in_pos >= src_size) break; + + byte = src_buffer[in_pos++]; + + if(byte != 0) + { + /* Repeat previous byte: byte-2 additional copies. */ + repeat = byte - 2; + + if(out_pos >= dst_cap) break; + + dst_buffer[out_pos++] = saved; + } + else + { + /* Literal 0x81 0x82 sequence. */ + repeat = 1; + saved = 0x82; + + if(out_pos >= dst_cap) break; + + dst_buffer[out_pos++] = CPT_RLE_ESCAPE; + } + } + else if(byte == CPT_RLE_ESCAPE) + { + /* Escaped 0x81: output 0x81 and set half-escaped state. */ + halfescaped = 1; + saved = CPT_RLE_ESCAPE; + + if(out_pos >= dst_cap) break; + + dst_buffer[out_pos++] = saved; + } + else + { + /* Literal 0x81 followed by this byte. */ + repeat = 1; + saved = (uint8_t)byte; + + if(out_pos >= dst_cap) break; + + dst_buffer[out_pos++] = CPT_RLE_ESCAPE; + } + } + else + { + saved = (uint8_t)byte; + + if(out_pos >= dst_cap) break; + + dst_buffer[out_pos++] = saved; + } + } + + *dst_size = out_pos; + return 0; +} + +/* ============ Combined LZH + RLE decoder ============ */ + +int cpt_lzh_rle_decode_buffer(uint8_t *dst_buffer, size_t *dst_size, const uint8_t *src_buffer, size_t src_size) +{ + if(!dst_buffer || !dst_size || !src_buffer) return -1; + + size_t final_size = *dst_size; + + /* Intermediate buffer for LZH output (RLE-encoded data). + * The RLE encoding can at most double the data size (every 0x81 byte in + * the original needs escaping), so 2 × final_size is a safe upper bound. */ + size_t intermediate_cap = final_size * 2 + 4096; + uint8_t *intermediate = (uint8_t *)malloc(intermediate_cap); + + if(!intermediate) return -1; + + size_t intermediate_len = 0; + int ret = cpt_lzh_decode(intermediate, intermediate_cap, src_buffer, src_size, &intermediate_len); + + if(ret != 0) + { + free(intermediate); + return -1; + } + + /* Now RLE-decode the intermediate data to produce the final output. */ + *dst_size = final_size; + ret = cpt_rle_decode_buffer(dst_buffer, dst_size, intermediate, intermediate_len); + + free(intermediate); + return ret; +} diff --git a/cpt/cpt.h b/cpt/cpt.h new file mode 100644 index 0000000..afd932b --- /dev/null +++ b/cpt/cpt.h @@ -0,0 +1,54 @@ +/* + * cpt.h - Compact Pro archive decompression + * + * This file is part of the Aaru Data Preservation Suite. + * Copyright (c) 2019-2026 Natalia Portillo. + * + * This library is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation; either version 2.1 of the + * License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see . + */ + +#ifndef AARU_CPT_H +#define AARU_CPT_H + +#include +#include + +/** + * Decompress Compact Pro RLE-encoded data. + * + * All Compact Pro entries use RLE encoding with escape byte 0x81. + * + * @param dst_buffer Output buffer for decompressed data. + * @param dst_size On input, size of dst_buffer. On output, actual bytes written. + * @param src_buffer Input RLE-encoded data. + * @param src_size Size of input data. + * @return 0 on success, -1 on error. + */ +int cpt_rle_decode_buffer(uint8_t *dst_buffer, size_t *dst_size, const uint8_t *src_buffer, size_t src_size); + +/** + * Decompress Compact Pro LZH+RLE-encoded data. + * + * LZH-compressed entries use block-based canonical Huffman coding with an + * 8192-byte LZSS sliding window, followed by RLE decoding. + * + * @param dst_buffer Output buffer for decompressed data. + * @param dst_size On input, size of dst_buffer. On output, actual bytes written. + * @param src_buffer Input LZH+RLE compressed data. + * @param src_size Size of input data. + * @return 0 on success, -1 on error. + */ +int cpt_lzh_rle_decode_buffer(uint8_t *dst_buffer, size_t *dst_size, const uint8_t *src_buffer, size_t src_size); + +#endif /* AARU_CPT_H */ diff --git a/library.c b/library.c index 04eb107..c559c11 100644 --- a/library.c +++ b/library.c @@ -48,6 +48,7 @@ #include "3rdparty/lzo-2.10/include/lzo/lzodefs.h" #include "3rdparty/zstd/lib/zstd.h" #include "ace/ace.h" +#include "cpt/cpt.h" #include "zip/zip.h" AARU_EXPORT int32_t AARU_CALL AARU_bzip2_decode_buffer(uint8_t *dst_buffer, uint32_t *dst_size, @@ -555,4 +556,14 @@ AARU_EXPORT int AARU_CALL AARU_zip_winzipjpeg_decode_buffer(uint8_t *dst_buffer, const uint8_t *src_buffer, size_t src_size) { return zip_winzipjpeg_decompress(dst_buffer, dst_size, src_buffer, src_size); } +/* ============== Compact Pro Wrappers ============== */ + +AARU_EXPORT int AARU_CALL AARU_cpt_rle_decode_buffer(uint8_t *dst_buffer, size_t *dst_size, const uint8_t *src_buffer, + size_t src_size) +{ return cpt_rle_decode_buffer(dst_buffer, dst_size, src_buffer, src_size); } + +AARU_EXPORT int AARU_CALL AARU_cpt_lzh_rle_decode_buffer(uint8_t *dst_buffer, size_t *dst_size, + const uint8_t *src_buffer, size_t src_size) +{ return cpt_lzh_rle_decode_buffer(dst_buffer, dst_size, src_buffer, src_size); } + AARU_EXPORT uint64_t AARU_CALL AARU_get_acn_version() { return AARU_CHECKUMS_NATIVE_VERSION; } \ No newline at end of file diff --git a/library.h b/library.h index 9410de6..f12e0b4 100644 --- a/library.h +++ b/library.h @@ -332,4 +332,12 @@ AARU_EXPORT int AARU_CALL rar30_decompress(const uint8_t *in_buf, size_t in_len, AARU_EXPORT int AARU_CALL rar50_decompress(const uint8_t *in_buf, size_t in_len, uint8_t *out_buf, size_t *out_len, size_t window_size); +// Compact Pro: RLE decompression (always applied) +AARU_EXPORT int AARU_CALL AARU_cpt_rle_decode_buffer(uint8_t *dst_buffer, size_t *dst_size, const uint8_t *src_buffer, + size_t src_size); + +// Compact Pro: LZH + RLE decompression (block Huffman LZSS + RLE) +AARU_EXPORT int AARU_CALL AARU_cpt_lzh_rle_decode_buffer(uint8_t *dst_buffer, size_t *dst_size, + const uint8_t *src_buffer, size_t src_size); + #endif // AARU_COMPRESSION_NATIVE_LIBRARY_H diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 302712d..dd0ac7f 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -147,6 +147,12 @@ file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/data/rar50_m4.bin file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/data/rar50_m5.bin DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/data/) +file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/data/cpt_rle.bin + DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/data/) + +file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/data/cpt_lzh_rle.bin + DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/data/) + # 'Google_Tests_run' is the target name # 'test1.cpp tests2.cpp' are source files with tests add_executable(tests_run apple_rle.cpp crc32.c crc32.h adc.cpp bzip2.cpp lzip.cpp lzfse.cpp zstd.cpp lzma.cpp flac.cpp lz4.cpp @@ -157,5 +163,6 @@ add_executable(tests_run apple_rle.cpp crc32.c crc32.h adc.cpp bzip2.cpp lzip.cp arj/arj.cpp arjz/arjz.cpp zip/zip.cpp - rar/rar.cpp) + rar/rar.cpp + cpt/cpt.cpp) target_link_libraries(tests_run gtest gtest_main "Aaru.Compression.Native") diff --git a/tests/cpt/cpt.cpp b/tests/cpt/cpt.cpp new file mode 100644 index 0000000..522fd95 --- /dev/null +++ b/tests/cpt/cpt.cpp @@ -0,0 +1,109 @@ +/* + * This file is part of the Aaru Data Preservation Suite. + * Copyright (c) 2019-2026 Natalia Portillo. + * + * This library is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation; either version 2.1 of the + * License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see . + */ + +#include +#include +#include +#include +#include +#include + +#include "../../library.h" +#include "../crc32.h" +#include "gtest/gtest.h" + +#define EXPECTED_CRC32 0x66007DBA +#define EXPECTED_ORIGSIZE 152089 + +/* ---- RLE only (STORE.CPT data fork) ---- */ + +#define RLE_COMPRESSED_SIZE 150125 + +static const uint8_t *rle_buffer; + +class CptRleFixture : public ::testing::Test +{ +protected: + void SetUp() + { + char path[PATH_MAX]; + char filename[PATH_MAX]; + getcwd(path, PATH_MAX); + snprintf(filename, PATH_MAX, "%s/data/cpt_rle.bin", path); + FILE *file = fopen(filename, "rb"); + rle_buffer = (const uint8_t *)malloc(RLE_COMPRESSED_SIZE); + fread((void *)rle_buffer, 1, RLE_COMPRESSED_SIZE, file); + fclose(file); + } + + void TearDown() { free((void *)rle_buffer); } +}; + +TEST_F(CptRleFixture, cpt_rle) +{ + size_t destLen = EXPECTED_ORIGSIZE; + auto *outBuf = (uint8_t *)malloc(EXPECTED_ORIGSIZE); + + auto err = AARU_cpt_rle_decode_buffer(outBuf, &destLen, rle_buffer, RLE_COMPRESSED_SIZE); + + EXPECT_EQ(err, 0); + EXPECT_EQ(destLen, (size_t)EXPECTED_ORIGSIZE); + + auto crc = crc32_data(outBuf, EXPECTED_ORIGSIZE); + free(outBuf); + EXPECT_EQ(crc, EXPECTED_CRC32); +} + +/* ---- LZH + RLE (DEFAULTS.CPT data fork) ---- */ + +#define LZH_RLE_COMPRESSED_SIZE 61101 + +static const uint8_t *lzh_rle_buffer; + +class CptLzhRleFixture : public ::testing::Test +{ +protected: + void SetUp() + { + char path[PATH_MAX]; + char filename[PATH_MAX]; + getcwd(path, PATH_MAX); + snprintf(filename, PATH_MAX, "%s/data/cpt_lzh_rle.bin", path); + FILE *file = fopen(filename, "rb"); + lzh_rle_buffer = (const uint8_t *)malloc(LZH_RLE_COMPRESSED_SIZE); + fread((void *)lzh_rle_buffer, 1, LZH_RLE_COMPRESSED_SIZE, file); + fclose(file); + } + + void TearDown() { free((void *)lzh_rle_buffer); } +}; + +TEST_F(CptLzhRleFixture, cpt_lzh_rle) +{ + size_t destLen = EXPECTED_ORIGSIZE; + auto *outBuf = (uint8_t *)malloc(EXPECTED_ORIGSIZE); + + auto err = AARU_cpt_lzh_rle_decode_buffer(outBuf, &destLen, lzh_rle_buffer, LZH_RLE_COMPRESSED_SIZE); + + EXPECT_EQ(err, 0); + EXPECT_EQ(destLen, (size_t)EXPECTED_ORIGSIZE); + + auto crc = crc32_data(outBuf, EXPECTED_ORIGSIZE); + free(outBuf); + EXPECT_EQ(crc, EXPECTED_CRC32); +} diff --git a/tests/data/cpt_lzh_rle.bin b/tests/data/cpt_lzh_rle.bin new file mode 100644 index 0000000000000000000000000000000000000000..b6feb6a7f0abab263ac2ac649e0b6dc59b7c39c9 GIT binary patch literal 61101 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

8HOU&ViXZu>>r#*RZ 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 A*#H0l literal 0 HcmV?d00001 diff --git a/tests/data/cpt_rle.bin b/tests/data/cpt_rle.bin new file mode 100644 index 0000000..11b5eed --- /dev/null +++ b/tests/data/cpt_rle.bin @@ -0,0 +1,3628 @@ + + + + + ALICE'S ADVENTURES IN WONDERLAND + + Lewis Carroll + + THE MILLENNIUM FULCRUM EDITION 2.9 + + + + + CHAPTER I + + Down the Rabbit-Hole + + + Alice was beginning to get very tired of sitting by her sister +on the bank, and of having nothing to do: once or twice she had +peeped into the book her sister was reading, but it had no +pictures or conversations in it, `and what is the use of a book,' +thought Alice `without pictures or conversation?' + + So she was considering in her own mind (as well as she could, +for the hot day made her feel very sleepy and stupid), whether +the pleasure of making a daisy-chain would be worth the trouble +of getting up and picking the daisies, when suddenly a White +Rabbit with pink eyes ran close by her. + + There was nothing so VERY remarkable in that; nor did Alice +think it so VERY much out of the way to hear the Rabbit say to +itself, `Oh dear! Oh dear! I shall be late!' (when she thought +it over afterwards, it occurred to her that she ought to have +wondered at this, but at the time it all seemed quite natural); +but when the Rabbit actually TOOK A WATCH OUT OF ITS WAISTCOAT- +POCKET, and looked at it, and then hurried on, Alice started to +her feet, for it flashed across her mind that she had never +before seen a rabbit with either a waistcoat-pocket, or a watch to +take out of it, and burning with curiosity, she ran across the +field after it, and fortunately was just in time to see it pop +down a large rabbit-hole under the hedge. + + In another moment down went Alice after it, never once +considering how in the world she was to get out again. + + The rabbit-hole went straight on like a tunnel for some way, +and then dipped suddenly down, so suddenly that Alice had not a +moment to think about stopping herself before she found herself +falling down a very deep well. + + Either the well was very deep, or she fell very slowly, for she +had plenty of time as she went down to look about her and to +wonder what was going to happen next. First, she tried to look +down and make out what she was coming to, but it was too dark to +see anything; then she looked at the sides of the well, and +noticed that they were filled with cupboards and book-shelves; +here and there she saw maps and pictures hung upon pegs. She +took down a jar from one of the shelves as she passed; it was +labelled `ORANGE MARMALADE', but to her great disappointment it +was empty: she did not like to drop the jar for fear of killing +somebody, so managed to put it into one of the cupboards as she +fell past it. + + `Well!' thought Alice to herself, `after such a fall as this, I +shall think nothing of tumbling down stairs! How brave they'll +all think me at home! Why, I wouldn't say anything about it, +even if I fell off the top of the house!' (Which was very likely +true.) + + Down, down, down. Would the fall NEVER come to an end! `I +wonder how many miles I've fallen by this time?' she said aloud. +`I must be getting somewhere near the centre of the earth. Let +me see: that would be four thousand miles down, I think--' (for, +you see, Alice had learnt several things of this sort in her +lessons in the schoolroom, and though this was not a VERY good +opportunity for showing off her knowledge, as there was no one to +listen to her, still it was good practice to say it over) `--yes, +that's about the right distance--but then I wonder what Latitude +or Longitude I've got to?' (Alice had no idea what Latitude was, +or Longitude either, but thought they were nice grand words to +say.) + + Presently she began again. `I wonder if I shall fall right +THROUGH the earth! How funny it'll seem to come out among the +people that walk with their heads downward! The Antipathies, I +think--' (she was rather glad there WAS no one listening, this +time, as it didn't sound at all the right word) `--but I shall +have to ask them what the name of the country is, you know. +Please, Ma'am, is this New Zealand or Australia?' (and she tried +to curtsey as she spoke--fancy CURTSEYING as you're falling +through the air! Do you think you could manage it?) `And what +an ignorant little girl she'll think me for asking! No, it'll +never do to ask: perhaps I shall see it written up somewhere.' + + Down, down, down. There was nothing else to do, so Alice soon +began talking again. `Dinah'll miss me very much to-night, I +should think!' (Dinah was the cat.) `I hope they'll remember +her saucer of milk at tea-time. Dinah my dear! I wish you were +down here with me! There are no mice in the air, I'm afraid, but +you might catch a bat, and that's very like a mouse, you know. +But do cats eat bats, I wonder?' And here Alice began to get +rather sleepy, and went on saying to herself, in a dreamy sort of +way, `Do cats eat bats? Do cats eat bats?' and sometimes, `Do +bats eat cats?' for, you see, as she couldn't answer either +question, it didn't much matter which way she put it. She felt +that she was dozing off, and had just begun to dream that she +was walking hand in hand with Dinah, and saying to her very +earnestly, `Now, Dinah, tell me the truth: did you ever eat a +bat?' when suddenly, thump! thump! down she came upon a heap of +sticks and dry leaves, and the fall was over. + + Alice was not a bit hurt, and she jumped up on to her feet in a +moment: she looked up, but it was all dark overhead; before her +was another long passage, and the White Rabbit was still in +sight, hurrying down it. There was not a moment to be lost: +away went Alice like the wind, and was just in time to hear it +say, as it turned a corner, `Oh my ears and whiskers, how late +it's getting!' She was close behind it when she turned the +corner, but the Rabbit was no longer to be seen: she found +herself in a long, low hall, which was lit up by a row of lamps +hanging from the roof. + + There were doors all round the hall, but they were all locked; +and when Alice had been all the way down one side and up the +other, trying every door, she walked sadly down the middle, +wondering how she was ever to get out again. + + Suddenly she came upon a little three-legged table, all made of +solid glass; there was nothing on it except a tiny golden key, +and Alice's first thought was that it might belong to one of the +doors of the hall; but, alas! either the locks were too large, or +the key was too small, but at any rate it would not open any of +them. However, on the second time round, she came upon a low +curtain she had not noticed before, and behind it was a little +door about fifteen inches high: she tried the little golden key +in the lock, and to her great delight it fitted! + + Alice opened the door and found that it led into a small +passage, not much larger than a rat-hole: she knelt down and +looked along the passage into the loveliest garden you ever saw. +How she longed to get out of that dark hall, and wander about +among those beds of bright flowers and those cool fountains, but +she could not even get her head though the doorway; `and even if +my head would go through,' thought poor Alice, `it would be of +very little use without my shoulders. Oh, how I wish +I could shut up like a telescope! I think I could, if I only +know how to begin.' For, you see, so many out-of-the-way things +had happened lately, that Alice had begun to think that very few +things indeed were really impossible. + + There seemed to be no use in waiting by the little door, so she +went back to the table, half hoping she might find another key on +it, or at any rate a book of rules for shutting people up like +telescopes: this time she found a little bottle on it, (`which +certainly was not here before,' said Alice,) and round the neck +of the bottle was a paper label, with the words `DRINK ME' +beautifully printed on it in large letters. + + It was all very well to say `Drink me,' but the wise little +Alice was not going to do THAT in a hurry. `No, I'll look +first,' she said, `and see whether it's marked "poison" or not'; +for she had read several nice little histories about children who +had got burnt, and eaten up by wild beasts and other unpleasant +things, all because they WOULD not remember the simple rules +their friends had taught them: such as, that a red-hot poker +will burn you if you hold it too long; and that if you cut your +finger VERY deeply with a knife, it usually bleeds; and she had +never forgotten that, if you drink much from a bottle marked +`poison,' it is almost certain to disagree with you, sooner or +later. + + However, this bottle was NOT marked `poison,' so Alice ventured +to taste it, and finding it very nice, (it had, in fact, a sort +of mixed flavour of cherry-tart, custard, pine-apple, roast +turkey, toffee, and hot buttered toast,) she very soon finished +it off. + + * * * * * * * + + * * * * * * + + * * * * * * * + + `What a curious feeling!' said Alice; `I must be shutting up +like a telescope.' + + And so it was indeed: she was now only ten inches high, and +her face brightened up at the thought that she was now the right +size for going though the little door into that lovely garden. +First, however, she waited for a few minutes to see if she was +going to shrink any further: she felt a little nervous about +this; `for it might end, you know,' said Alice to herself, `in my +going out altogether, like a candle. I wonder what I should be +like then?' And she tried to fancy what the flame of a candle is +like after the candle is blown out, for she could not remember +ever having seen such a thing. + + After a while, finding that nothing more happened, she decided +on going into the garden at once; but, alas for poor Alice! when +she got to the door, she found he had forgotten the little golden +key, and when she went back to the table for it, she found she +could not possibly reach it: she could see it quite plainly +through the glass, and she tried her best to climb up one of the +legs of the table, but it was too slippery; and when she had +tired herself out with trying, the poor little thing sat down and +cried. + + `Come, there's no use in crying like that!' said Alice to +herself, rather sharply; `I advise you to leave off this minute!' +She generally gave herself very good advice, (though she very +seldom followed it), and sometimes she scolded herself so +severely as to bring tears into her eyes; and once she remembered +trying to box her own ears for having cheated herself in a game +of croquet she was playing against herself, for this curious +child was very fond of pretending to be two people. `But it's no +use now,' thought poor Alice, `to pretend to be two people! Why, +there's hardly enough of me left to make ONE respectable +person!' + + Soon her eye fell on a little glass box that was lying under +the table: she opened it, and found in it a very small cake, on +which the words `EAT ME' were beautifully marked in currants. +`Well, I'll eat it,' said Alice, `and if it makes me grow larger, +I can reach the key; and if it makes me grow smaller, I can creep +under the door; so either way I'll get into the garden, and I +don't care which happens!' + + She ate a little bit, and said anxiously to herself, `Which +way? Which way?', holding her hand on the top of her head to +feel which way it was growing, and she was quite surprised to +find that she remained the same size: to be sure, this generally +happens when one eats cake, but Alice had got so much into the +way of expecting nothing but out-of-the-way things to happen, +that it seemed quite dull and stupid for life to go on in the +common way. + + So she set to work, and very soon finished off the cake. + + * * * * * * * + + * * * * * * + + * * * * * * * + + + + + CHAPTER II + + The Pool of Tears + + + `Curiouser and curiouser!' cried Alice (she was so much +surprised, that for the moment she quite forgot how to speak good +English); `now I'm opening out like the largest telescope that +ever was! Good-bye, feet!' (for when she looked down at her +feet, they seemed to be almost out of sight, they were getting so +far off). `Oh, my poor little feet, I wonder who will put on +your shoes and stockings for you now, dears? I'm sure _I_ shan't +be able! I shall be a great deal too far off to trouble myself +about you: you must manage the best way you can; --but I must be +kind to them,' thought Alice, `or perhaps they won't walk the +way I want to go! Let me see: I'll give them a new pair of +boots every Christmas.' + + And she went on planning to herself how she would manage it. +`They must go by the carrier,' she thought; `and how funny it'll +seem, sending presents to one's own feet! And how odd the +directions will look! + + ALICE'S RIGHT FOOT, ESQ. + HEARTHRUG, + NEAR THE FENDER, + (WITH ALICE'S LOVE). + +Oh dear, what nonsense I'm talking!' + + Just then her head struck against the roof of the hall: in +fact she was now more than nine feet high, and she at once took +up the little golden key and hurried off to the garden door. + + Poor Alice! It was as much as she could do, lying down on one +side, to look through into the garden with one eye; but to get +through was more hopeless than ever: she sat down and began to +cry again. + + `You ought to be ashamed of yourself,' said Alice, `a great +girl like you,' (she might well say this), `to go on crying in +this way! Stop this moment, I tell you!' But she went on all +the same, shedding gallons of tears, until there was a large pool +all round her, about four inches deep and reaching half down the +hall. + + After a time she heard a little pattering of feet in the +distance, and she hastily dried her eyes to see what was coming. +It was the White Rabbit returning, splendidly dressed, with a +pair of white kid gloves in one hand and a large fan in the +other: he came trotting along in a great hurry, muttering to +himself as he came, `Oh! the Duchess, the Duchess! Oh! won't she +be savage if I've kept her waiting!' Alice felt so desperate +that she was ready to ask help of any one; so, when the Rabbit +came near her, she began, in a low, timid voice, `If you please, +sir--' The Rabbit started violently, dropped the white kid +gloves and the fan, and skurried away into the darkness as hard +as he could go. + + Alice took up the fan and gloves, and, as the hall was very +hot, she kept fanning herself all the time she went on talking: +`Dear, dear! How queer everything is to-day! And yesterday +things went on just as usual. I wonder if I've been changed in +the night? Let me think: was I the same when I got up this +morning? I almost think I can remember feeling a little +different. But if I'm not the same, the next question is, Who in +the world am I? Ah, THAT'S the great puzzle!' And she began +thinking over all the children she knew that were of the same age +as herself, to see if she could have been changed for any of +them. + + `I'm sure I'm not Ada,' she said, `for her hair goes in such +long ringlets, and mine doesn't go in ringlets at all; and I'm +sure I can't be Mabel, for I know all sorts of things, and she, +oh! she knows such a very little! Besides, SHE'S she, and I'm I, +and--oh dear, how puzzling it all is! I'll try if I know all the +things I used to know. Let me see: four times five is twelve, +and four times six is thirteen, and four times seven is--oh dear! +I shall never get to twenty at that rate! However, the +Multiplication Table doesn't signify: let's try Geography. +London is the capital of Paris, and Paris is the capital of Rome, +and Rome--no, THAT'S all wrong, I'm certain! I must have been +changed for Mabel! I'll try and say "How doth the little--"' +and she crossed her hands on her lap as if she were saying lessons, +and began to repeat it, but her voice sounded hoarse and +strange, and the words did not come the same as they used to do:-- + + `How doth the little crocodile + Improve his shining tail, + And pour the waters of the Nile + On every golden scale! + + `How cheerfully he seems to grin, + How neatly spread his claws, + And welcome little fishes in + With gently smiling jaws!' + + `I'm sure those are not the right words,' said poor Alice, and +her eyes filled with tears again as she went on, `I must be Mabel +after all, and I shall have to go and live in that poky little +house, and have next to no toys to play with, and oh! ever so +many lessons to learn! No, I've made up my mind about it; if I'm +Mabel, I'll stay down here! It'll be no use their putting their +heads down and saying "Come up again, dear!" I shall only look +up and say "Who am I then? Tell me that first, and then, if I +like being that person, I'll come up: if not, I'll stay down +here till I'm somebody else"--but, oh dear!' cried Alice, with a +sudden burst of tears, `I do wish they WOULD put their heads +down! I am so VERY tired of being all alone here!' + + As she said this she looked down at her hands, and was +surprised to see that she had put on one of the Rabbit's little +white kid gloves while she was talking. `How CAN I have done +that?' she thought. `I must be growing small again.' She got up +and went to the table to measure herself by it, and found that, +as nearly as she could guess, she was now about two feet high, +and was going on shrinking rapidly: she soon found out that the +cause of this was the fan she was holding, and she dropped it +hastily, just in time to avoid shrinking away altogether. + +`That WAS a narrow escape!' said Alice, a good deal frightened at +the sudden change, but very glad to find herself still in +existence; `and now for the garden!' and she ran with all speed +back to the little door: but, alas! the little door was shut +again, and the little golden key was lying on the glass table as +before, `and things are worse than ever,' thought the poor child, +`for I never was so small as this before, never! And I declare +it's too bad, that it is!' + + As she said these words her foot slipped, and in another +moment, splash! she was up to her chin in salt water. He first +idea was that she had somehow fallen into the sea, `and in that +case I can go back by railway,' she said to herself. (Alice had +been to the seaside once in her life, and had come to the general +conclusion, that wherever you go to on the English coast you find +a number of bathing machines in the sea, some children digging in +the sand with wooden spades, then a row of lodging houses, and +behind them a railway station.) However, she soon made out that +she was in the pool of tears which she had wept when she was nine +feet high. + + `I wish I hadn't cried so much!' said Alice, as she swam about, +trying to find her way out. `I shall be punished for it now, I +suppose, by being drowned in my own tears! That WILL be a queer +thing, to be sure! However, everything is queer to-day.' + + Just then she heard something splashing about in the pool a +little way off, and she swam nearer to make out what it was: at +first she thought it must be a walrus or hippopotamus, but then +she remembered how small she was now, and she soon made out that +it was only a mouse that had slipped in like herself. + + `Would it be of any use, now,' thought Alice, `to speak to this +mouse? Everything is so out-of-the-way down here, that I should +think very likely it can talk: at any rate, there's no harm in +trying.' So she began: `O Mouse, do you know the way out of +this pool? I am very tired of swimming about here, O Mouse!' +(Alice thought this must be the right way of speaking to a mouse: +she had never done such a thing before, but she remembered having +seen in her brother's Latin Grammar, `A mouse--of a mouse--to a +mouse--a mouse--O mouse!' The Mouse looked at her rather +inquisitively, and seemed to her to wink with one of its little +eyes, but it said nothing. + + `Perhaps it doesn't understand English,' thought Alice; `I +daresay it's a French mouse, come over with William the +Conqueror.' (For, with all her knowledge of history, Alice had +no very clear notion how long ago anything had happened.) So she +began again: `Ou est ma chatte?' which was the first sentence in +her French lesson-book. The Mouse gave a sudden leap out of the +water, and seemed to quiver all over with fright. `Oh, I beg +your pardon!' cried Alice hastily, afraid that she had hurt the +poor animal's feelings. `I quite forgot you didn't like cats.' + + `Not like cats!' cried the Mouse, in a shrill, passionate +voice. `Would YOU like cats if you were me?' + + `Well, perhaps not,' said Alice in a soothing tone: `don't be +angry about it. And yet I wish I could show you our cat Dinah: +I think you'd take a fancy to cats if you could only see her. +She is such a dear quiet thing,' Alice went on, half to herself, +as she swam lazily about in the pool, `and she sits purring so +nicely by the fire, licking her paws and washing her face--and +she is such a nice soft thing to nurse--and she's such a capital +one for catching mice--oh, I beg your pardon!' cried Alice again, +for this time the Mouse was bristling all over, and she felt +certain it must be really offended. `We won't talk about her any +more if you'd rather not.' + + `We indeed!' cried the Mouse, who was trembling down to the end +of his tail. `As if I would talk on such a subject! Our family +always HATED cats: nasty, low, vulgar things! Don't let me hear +the name again!' + + `I won't indeed!' said Alice, in a great hurry to change the +subject of conversation. `Are you--are you fond--of--of dogs?' +The Mouse did not answer, so Alice went on eagerly: `There is +such a nice little dog near our house I should like to show you! +A little bright-eyed terrier, you know, with oh, such long curly +brown hair! And it'll fetch things when you throw them, and +it'll sit up and beg for its dinner, and all sorts of things--I +can't remember half of them--and it belongs to a farmer, you +know, and he says it's so useful, it's worth a hundred pounds! +He says it kills all the rats and--oh dear!' cried Alice in a +sorrowful tone, `I'm afraid I've offended it again!' For the +Mouse was swimming away from her as hard as it could go, and +making quite a commotion in the pool as it went. + + So she called softly after it, `Mouse dear! Do come back +again, and we won't talk about cats or dogs either, if you don't +like them!' When the Mouse heard this, it turned round and swam +slowly back to her: its face was quite pale (with passion, Alice +thought), and it said in a low trembling voice, `Let us get to +the shore, and then I'll tell you my history, and you'll +understand why it is I hate cats and dogs.' + + It was high time to go, for the pool was getting quite crowded +with the birds and animals that had fallen into it: there were a +Duck and a Dodo, a Lory and an Eaglet, and several other curious +creatures. Alice led the way, and the whole party swam to the +shore. + + + + CHAPTER III + + A Caucus-Race and a Long Tale + + + They were indeed a queer-looking party that assembled on the +bank--the birds with draggled feathers, the animals with their +fur clinging close to them, and all dripping wet, cross, and +uncomfortable. + + The first question of course was, how to get dry again: they +had a consultation about this, and after a few minutes it seemed +quite natural to Alice to find herself talking familiarly with +them, as if she had known them all her life. Indeed, she had +quite a long argument with the Lory, who at last turned sulky, +and would only say, `I am older than you, and must know better'; +and this Alice would not allow without knowing how old it was, +and, as the Lory positively refused to tell its age, there was no +more to be said. + + At last the Mouse, who seemed to be a person of authority among +them, called out, `Sit down, all of you, and listen to me! I'LL +soon make you dry enough!' They all sat down at once, in a large +ring, with the Mouse in the middle. Alice kept her eyes +anxiously fixed on it, for she felt sure she would catch a bad +cold if she did not get dry very soon. + + `Ahem!' said the Mouse with an important air, `are you all ready? +This is the driest thing I know. Silence all round, if you please! +"William the Conqueror, whose cause was favoured by the pope, was +soon submitted to by the English, who wanted leaders, and had been +of late much accustomed to usurpation and conquest. Edwin and +Morcar, the earls of Mercia and Northumbria--"' + + `Ugh!' said the Lory, with a shiver. + + `I beg your pardon!' said the Mouse, frowning, but very +politely: `Did you speak?' + + `Not I!' said the Lory hastily. + + `I thought you did,' said the Mouse. `--I proceed. "Edwin and +Morcar, the earls of Mercia and Northumbria, declared for him: +and even Stigand, the patriotic archbishop of Canterbury, found +it advisable--"' + + `Found WHAT?' said the Duck. + + `Found IT,' the Mouse replied rather crossly: `of course you +know what "it" means.' + + `I know what "it" means well enough, when I find a thing,' said +the Duck: `it's generally a frog or a worm. The question is, +what did the archbishop find?' + + The Mouse did not notice this question, but hurriedly went on, +`"--found it advisable to go with Edgar Atheling to meet William +and offer him the crown. William's conduct at first was +moderate. But the insolence of his Normans--" How are you +getting on now, my dear?' it continued, turning to Alice as it +spoke. + + `As wet as ever,' said Alice in a melancholy tone: `it doesn't +seem to dry me at all.' + + `In that case,' said the Dodo solemnly, rising to its feet, `I +move that the meeting adjourn, for the immediate adoption of more +energetic remedies--' + + `Speak English!' said the Eaglet. `I don't know the meaning of +half those long words, and, what's more, I don't believe you do +either!' And the Eaglet bent down its head to hide a smile: +some of the other birds tittered audibly. + + `What I was going to say,' said the Dodo in an offended tone, +`was, that the best thing to get us dry would be a Caucus-race.' + + `What IS a Caucus-race?' said Alice; not that she wanted much +to know, but the Dodo had paused as if it thought that SOMEBODY +ought to speak, and no one else seemed inclined to say anything. + + `Why,' said the Dodo, `the best way to explain it is to do it.' +(And, as you might like to try the thing yourself, some winter +day, I will tell you how the Dodo managed it.) + + First it marked out a race-course, in a sort of circle, (`the +exact shape doesn't matter,' it said,) and then all the party +were placed along the course, here and there. There was no `One, +two, three, and away,' but they began running when they liked, +and left off when they liked, so that it was not easy to know +when the race was over. However, when they had been running half +an hour or so, and were quite dry again, the Dodo suddenly called +out `The race is over!' and they all crowded round it, panting, +and asking, `But who has won?' + + This question the Dodo could not answer without a great deal of +thought, and it sat for a long time with one finger pressed upon +its forehead (the position in which you usually see Shakespeare, +in the pictures of him), while the rest waited in silence. At +last the Dodo said, `EVERYBODY has won, and all must have +prizes.' + + `But who is to give the prizes?' quite a chorus of voices +asked. + + `Why, SHE, of course,' said the Dodo, pointing to Alice with +one finger; and the whole party at once crowded round her, +calling out in a confused way, `Prizes! Prizes!' + + Alice had no idea what to do, and in despair she put her hand +in her pocket, and pulled out a box of comfits, (luckily the salt +water had not got into it), and handed them round as prizes. +There was exactly one a-piece all round. + + `But she must have a prize herself, you know,' said the Mouse. + + `Of course,' the Dodo replied very gravely. `What else have +you got in your pocket?' he went on, turning to Alice. + + `Only a thimble,' said Alice sadly. + + `Hand it over here,' said the Dodo. + + Then they all crowded round her once more, while the Dodo +solemnly presented the thimble, saying `We beg your acceptance of +this elegant thimble'; and, when it had finished this short +speech, they all cheered. + + Alice thought the whole thing very absurd, but they all looked +so grave that she did not dare to laugh; and, as she could not +think of anything to say, she simply bowed, and took the thimble, +looking as solemn as she could. + + The next thing was to eat the comfits: this caused some noise +and confusion, as the large birds complained that they could not +taste theirs, and the small ones choked and had to be patted on +the back. However, it was over at last, and they sat down again +in a ring, and begged the Mouse to tell them something more. + + `You promised to tell me your history, you know,' said Alice, +`and why it is you hate--C and D,' she added in a whisper, half +afraid that it would be offended again. + + `Mine is a long and a sad tale!' said the Mouse, turning to +Alice, and sighing. + + `It IS a long tail, certainly,' said Alice, looking down with +wonder at the Mouse's tail; `but why do you call it sad?' And +she kept on puzzling about it while the Mouse was speaking, so +that her idea of the tale was something like this:-- + + `Fury said to a + mouse, That he + met in the + house, + "Let us + both go to + law: I will + prosecute + YOU. --Come, + I'll take no + denial; We + must have a + trial: For + really this + morning I've + +nothing + to do." + Said the + mouse to the + cur, "Such + a trial, + dear Sir, + With + no jury + or judge, + would be + wasting + our + breath." + "I'll be + judge, I'll + be jury," + Said + cunning + old Fury: + "I'll + try the + whole + cause, + and + condemn + you + to + death."' + + + `You are not attending!' said the Mouse to Alice severely. +`What are you thinking of?' + + `I beg your pardon,' said Alice very humbly: `you had got to +the fifth bend, I think?' + + `I had NOT!' cried the Mouse, sharply and very angrily. + + `A knot!' said Alice, always ready to make herself useful, and +looking anxiously about her. `Oh, do let me help to undo it!' + + `I shall do nothing of the sort,' said the Mouse, getting up +and walking away. `You insult me by talking such nonsense!' + + `I didn't mean it!' pleaded poor Alice. `But you're so easily +offended, you know!' + + The Mouse only growled in reply. + + `Please come back and finish your story!' Alice called after +it; and the others all joined in chorus, `Yes, please do!' but +the Mouse only shook its head impatiently, and walked a little +quicker. + + `What a pity it wouldn't stay!' sighed the Lory, as soon as it +was quite out of sight; and an old Crab took the opportunity of +saying to her daughter `Ah, my dear! Let this be a lesson to you +never to lose YOUR temper!' `Hold your tongue, Ma!' said the +young Crab, a little snappishly. `You're enough to try the +patience of an oyster!' + + `I wish I had our Dinah here, I know I do!' said Alice aloud, +addressing nobody in particular. `She'd soon fetch it back!' + + `And who is Dinah, if I might venture to ask the question?' +said the Lory. + + Alice replied eagerly, for she was always ready to talk about +her pet: `Dinah's our cat. And she's such a capital one for +catching mice you can't think! And oh, I wish you could see her +after the birds! Why, she'll eat a little bird as soon as look +at it!' + + This speech caused a remarkable sensation among the party. +Some of the birds hurried off at once: one the old Magpie began +wrapping itself up very carefully, remarking, `I really must be +getting home; the night-air doesn't suit my throat!' and a Canary +called out in a trembling voice to its children, `Come away, my +dears! It's high time you were all in bed!' On various pretexts +they all moved off, and Alice was soon left alone. + + `I wish I hadn't mentioned Dinah!' she said to herself in a +melancholy tone. `Nobody seems to like her, down here, and I'm +sure she's the best cat in the world! Oh, my dear Dinah! I +wonder if I shall ever see you any more!' And here poor Alice +began to cry again, for she felt very lonely and low-spirited. +In a little while, however, she again heard a little pattering of +footsteps in the distance, and she looked up eagerly, half hoping +that the Mouse had changed his mind, and was coming back to +finish his story. + + + + CHAPTER IV + + The Rabbit Sends in a Little Bill + + + It was the White Rabbit, trotting slowly back again, and +looking anxiously about as it went, as if it had lost something; +and she heard it muttering to itself `The Duchess! The Duchess! +Oh my dear paws! Oh my fur and whiskers! She'll get me +executed, as sure as ferrets are ferrets! Where CAN I have +dropped them, I wonder?' Alice guessed in a moment that it was +looking for the fan and the pair of white kid gloves, and she +very good-naturedly began hunting about for them, but they were +nowhere to be seen--everything seemed to have changed since her +swim in the pool, and the great hall, with the glass table and +the little door, had vanished completely. + + Very soon the Rabbit noticed Alice, as she went hunting about, +and called out to her in an angry tone, `Why, Mary Ann, what ARE +you doing out here? Run home this moment, and fetch me a pair of +gloves and a fan! Quick, now!' And Alice was so much frightened +that she ran off at once in the direction it pointed to, without +trying to explain the mistake it had made. + + `He took me for his housemaid,' she said to herself as she ran. +`How surprised he'll be when he finds out who I am! But I'd +better take him his fan and gloves--that is, if I can find them.' +As she said this, she came upon a neat little house, on the door +of which was a bright brass plate with the name `W. RABBIT' +engraved upon it. She went in without knocking, and hurried +upstairs, in great fear lest she should meet the real Mary Ann, +and be turned out of the house before she had found the fan and +gloves. + + `How queer it seems,' Alice said to herself, `to be going +messages for a rabbit! I suppose Dinah'll be sending me on +messages next!' And she began fancying the sort of thing that +would happen: `"Miss Alice! Come here directly, and get ready +for your walk!" "Coming in a minute, nurse! But I've got to see +that the mouse doesn't get out." Only I don't think,' Alice went +on, `that they'd let Dinah stop in the house if it began ordering +people about like that!' + + By this time she had found her way into a tidy little room with +a table in the window, and on it (as she had hoped) a fan and two +or three pairs of tiny white kid gloves: she took up the fan and +a pair of the gloves, and was just going to leave the room, when +her eye fell upon a little bottle that stood near the looking- +glass. There was no label this time with the words `DRINK ME,' +but nevertheless she uncorked it and put it to her lips. `I know +SOMETHING interesting is sure to happen,' she said to herself, +`whenever I eat or drink anything; so I'll just see what this +bottle does. I do hope it'll make me grow large again, for +really I'm quite tired of being such a tiny little thing!' + + It did so indeed, and much sooner than she had expected: +before she had drunk half the bottle, she found her head pressing +against the ceiling, and had to stoop to save her neck from being +broken. She hastily put down the bottle, saying to herself +`That's quite enough--I hope I shan't grow any more--As it is, I +can't get out at the door--I do wish I hadn't drunk quite so +much!' + + Alas! it was too late to wish that! She went on growing, and +growing, and very soon had to kneel down on the floor: in +another minute there was not even room for this, and she tried +the effect of lying down with one elbow against the door, and the +other arm curled round her head. Still she went on growing, and, +as a last resource, she put one arm out of the window, and one +foot up the chimney, and said to herself `Now I can do no more, +whatever happens. What WILL become of me?' + + Luckily for Alice, the little magic bottle had now had its full +effect, and she grew no larger: still it was very uncomfortable, +and, as there seemed to be no sort of chance of her ever getting +out of the room again, no wonder she felt unhappy. + + `It was much pleasanter at home,' thought poor Alice, `when one +wasn't always growing larger and smaller, and being ordered about +by mice and rabbits. I almost wish I hadn't gone down that +rabbit-hole--and yet--and yet--it's rather curious, you know, +this sort of life! I do wonder what CAN have happened to me! +When I used to read fairy-tales, I fancied that kind of thing +never happened, and now here I am in the middle of one! There +ought to be a book written about me, that there ought! And when +I grow up, I'll write one--but I'm grown up now,' she added in a +sorrowful tone; `at least there's no room to grow up any more +HERE.' + + `But then,' thought Alice, `shall I NEVER get any older than I +am now? That'll be a comfort, one way--never to be an old woman- +-but then--always to have lessons to learn! Oh, I shouldn't like +THAT!' + + `Oh, you foolish Alice!' she answered herself. `How can you +learn lessons in here? Why, there's hardly room for YOU, and no +room at all for any lesson-books!' + + And so she went on, taking first one side and then the other, +and making quite a conversation of it altogether; but after a few +minutes she heard a voice outside, and stopped to listen. + + `Mary Ann! Mary Ann!' said the voice. `Fetch me my gloves +this moment!' Then came a little pattering of feet on the +stairs. Alice knew it was the Rabbit coming to look for her, and +she trembled till she shook the house, quite forgetting that she +was now about a thousand times as large as the Rabbit, and had no +reason to be afraid of it. + + Presently the Rabbit came up to the door, and tried to open it; +but, as the door opened inwards, and Alice's elbow was pressed +hard against it, that attempt proved a failure. Alice heard it +say to itself `Then I'll go round and get in at the window.' + + `THAT you won't' thought Alice, and, after waiting till she +fancied she heard the Rabbit just under the window, she suddenly +spread out her hand, and made a snatch in the air. She did not +get hold of anything, but she heard a little shriek and a fall, +and a crash of broken glass, from which she concluded that it was +just possible it had fallen into a cucumber-frame, or something +of the sort. + + Next came an angry voice--the Rabbit's--`Pat! Pat! Where are +you?' And then a voice she had never heard before, `Sure then +I'm here! Digging for apples, yer honour!' + + `Digging for apples, indeed!' said the Rabbit angrily. `Here! +Come and help me out of THIS!' (Sounds of more broken glass.) + + `Now tell me, Pat, what's that in the window?' + + `Sure, it's an arm, yer honour!' (He pronounced it `arrum.') + + `An arm, you goose! Who ever saw one that size? Why, it +fills the whole window!' + + `Sure, it does, yer honour: but it's an arm for all that.' + + `Well, it's got no business there, at any rate: go and take it +away!' + + There was a long silence after this, and Alice could only hear +whispers now and then; such as, `Sure, I don't like it, yer +honour, at all, at all!' `Do as I tell you, you coward!' and at +last she spread out her hand again, and made another snatch in +the air. This time there were TWO little shrieks, and more +sounds of broken glass. `What a number of cucumber-frames there +must be!' thought Alice. `I wonder what they'll do next! As for +pulling me out of the window, I only wish they COULD! I'm sure I +don't want to stay in here any longer!' + + She waited for some time without hearing anything more: at +last came a rumbling of little cartwheels, and the sound of a +good many voice all talking together: she made out the words: +`Where's the other ladder?--Why, I hadn't to bring but one; +Bill's got the other--Bill! fetch it here, lad!--Here, put 'em up +at this corner--No, tie 'em together first--they don't reach half +high enough yet--Oh! they'll do well enough; don't be particular- +-Here, Bill! catch hold of this rope--Will the roof bear?--Mind +that loose slate--Oh, it's coming down! Heads below!' (a loud +crash)--`Now, who did that?--It was Bill, I fancy--Who's to go +down the chimney?--Nay, I shan't! YOU do it!--That I won't, +then!--Bill's to go down--Here, Bill! the master says you're to +go down the chimney!' + + `Oh! So Bill's got to come down the chimney, has he?' said +Alice to herself. `Shy, they seem to put everything upon Bill! +I wouldn't be in Bill's place for a good deal: this fireplace is +narrow, to be sure; but I THINK I can kick a little!' + + She drew her foot as far down the chimney as she could, and +waited till she heard a little animal (she couldn't guess of what +sort it was) scratching and scrambling about in the chimney close +above her: then, saying to herself `This is Bill,' she gave one +sharp kick, and waited to see what would happen next. + + The first thing she heard was a general chorus of `There goes +Bill!' then the Rabbit's voice along--`Catch him, you by the +hedge!' then silence, and then another confusion of voices--`Hold +up his head--Brandy now--Don't choke him--How was it, old fellow? +What happened to you? Tell us all about it!' + + Last came a little feeble, squeaking voice, (`That's Bill,' +thought Alice,) `Well, I hardly know--No more, thank ye; I'm +better now--but I'm a deal too flustered to tell you--all I know +is, something comes at me like a Jack-in-the-box, and up I goes +like a sky-rocket!' + + `So you did, old fellow!' said the others. + + `We must burn the house down!' said the Rabbit's voice; and +Alice called out as loud as she could, `If you do. I'll set +Dinah at you!' + + There was a dead silence instantly, and Alice thought to +herself, `I wonder what they WILL do next! If they had any +sense, they'd take the roof off.' After a minute or two, they +began moving about again, and Alice heard the Rabbit say, `A +barrowful will do, to begin with.' + + `A barrowful of WHAT?' thought Alice; but she had not long to +doubt, for the next moment a shower of little pebbles came +rattling in at the window, and some of them hit her in the face. +`I'll put a stop to this,' she said to herself, and shouted out, +`You'd better not do that again!' which produced another dead +silence. + + Alice noticed with some surprise that the pebbles were all +turning into little cakes as they lay on the floor, and a bright +idea came into her head. `If I eat one of these cakes,' she +thought, `it's sure to make SOME change in my size; and as it +can't possibly make me larger, it must make me smaller, I +suppose.' + + So she swallowed one of the cakes, and was delighted to find +that she began shrinking directly. As soon as she was small +enough to get through the door, she ran out of the house, and +found quite a crowd of little animals and birds waiting outside. +The poor little Lizard, Bill, was in the middle, being held up by +two guinea-pigs, who were giving it something out of a bottle. +They all made a rush at Alice the moment she appeared; but she +ran off as hard as she could, and soon found herself safe in a +thick wood. + + `The first thing I've got to do,' said Alice to herself, as she +wandered about in the wood, `is to grow to my right size again; +and the second thing is to find my way into that lovely garden. +I think that will be the best plan.' + + It sounded an excellent plan, no doubt, and very neatly and +simply arranged; the only difficulty was, that she had not the +smallest idea how to set about it; and while she was peering +about anxiously among the trees, a little sharp bark just over +her head made her look up in a great hurry. + + An enormous puppy was looking down at her with large round +eyes, and feebly stretching out one paw, trying to touch her. +`Poor little thing!' said Alice, in a coaxing tone, and she tried +hard to whistle to it; but she was terribly frightened all the +time at the thought that it might be hungry, in which case it +would be very likely to eat her up in spite of all her coaxing. + + Hardly knowing what she did, she picked up a little bit of +stick, and held it out to the puppy; whereupon the puppy jumped +into the air off all its feet at once, with a yelp of delight, +and rushed at the stick, and made believe to worry it; then Alice +dodged behind a great thistle, to keep herself from being run +over; and the moment she appeared on the other side, the puppy +made another rush at the stick, and tumbled head over heels in +its hurry to get hold of it; then Alice, thinking it was very +like having a game of play with a cart-horse, and expecting every +moment to be trampled under its feet, ran round the thistle +again; then the puppy began a series of short charges at the +stick, running a very little way forwards each time and a long +way back, and barking hoarsely all the while, till at last it sat +down a good way off, panting, with its tongue hanging out of its +mouth, and its great eyes half shut. + + This seemed to Alice a good opportunity for making her escape; +so she set off at once, and ran till she was quite tired and out +of breath, and till the puppy's bark sounded quite faint in the +distance. + + `And yet what a dear little puppy it was!' said Alice, as she +leant against a buttercup to rest herself, and fanned herself +with one of the leaves: `I should have liked teaching it tricks +very much, if--if I'd only been the right size to do it! Oh +dear! I'd nearly forgotten that I've got to grow up again! Let +me see--how IS it to be managed? I suppose I ought to eat or +drink something or other; but the great question is, what?' + + The great question certainly was, what? Alice looked all round +her at the flowers and the blades of grass, but she did not see +anything that looked like the right thing to eat or drink under +the circumstances. There was a large mushroom growing near her, +about the same height as herself; and when she had looked under +it, and on both sides of it, and behind it, it occurred to her +that she might as well look and see what was on the top of it. + + She stretched herself up on tiptoe, and peeped over the edge of +the mushroom, and her eyes immediately met those of a large +caterpillar, that was sitting on the top with its arms folded, +quietly smoking a long hookah, and taking not the smallest notice +of her or of anything else. + + + + CHAPTER V + + Advice from a Caterpillar + + + The Caterpillar and Alice looked at each other for some time in +silence: at last the Caterpillar took the hookah out of its +mouth, and addressed her in a languid, sleepy voice. + + `Who are YOU?' said the Caterpillar. + + This was not an encouraging opening for a conversation. Alice +replied, rather shyly, `I--I hardly know, sir, just at present-- +at least I know who I WAS when I got up this morning, but I think +I must have been changed several times since then.' + + `What do you mean by that?' said the Caterpillar sternly. +`Explain yourself!' + + `I can't explain MYSELF, I'm afraid, sir' said Alice, `because +I'm not myself, you see.' + + `I don't see,' said the Caterpillar. + + `I'm afraid I can't put it more clearly,' Alice replied very +politely, `for I can't understand it myself to begin with; and +being so many different sizes in a day is very confusing.' + + `It isn't,' said the Caterpillar. + + `Well, perhaps you haven't found it so yet,' said Alice; `but +when you have to turn into a chrysalis--you will some day, you +know--and then after that into a butterfly, I should think you'll +feel it a little queer, won't you?' + + `Not a bit,' said the Caterpillar. + + `Well, perhaps your feelings may be different,' said Alice; +`all I know is, it would feel very queer to ME.' + + `You!' said the Caterpillar contemptuously. `Who are YOU?' + + Which brought them back again to the beginning of the +conversation. Alice felt a little irritated at the Caterpillar's +making such VERY short remarks, and she drew herself up and said, +very gravely, `I think, you ought to tell me who YOU are, first.' + + `Why?' said the Caterpillar. + + Here was another puzzling question; and as Alice could not +think of any good reason, and as the Caterpillar seemed to be in +a VERY unpleasant state of mind, she turned away. + + `Come back!' the Caterpillar called after her. `I've something +important to say!' + + This sounded promising, certainly: Alice turned and came back +again. + + `Keep your temper,' said the Caterpillar. + + `Is that all?' said Alice, swallowing down her anger as well as +she could. + + `No,' said the Caterpillar. + + Alice thought she might as well wait, as she had nothing else +to do, and perhaps after all it might tell her something worth +hearing. For some minutes it puffed away without speaking, but +at last it unfolded its arms, took the hookah out of its mouth +again, and said, `So you think you're changed, do you?' + + `I'm afraid I am, sir,' said Alice; `I can't remember things as +I used--and I don't keep the same size for ten minutes together!' + + `Can't remember WHAT things?' said the Caterpillar. + + `Well, I've tried to say "HOW DOTH THE LITTLE BUSY BEE," but it +all came different!' Alice replied in a very melancholy voice. + + `Repeat, "YOU ARE OLD, FATHER WILLIAM,"' said the Caterpillar. + + Alice folded her hands, and began:-- + + `You are old, Father William,' the young man said, + `And your hair has become very white; + And yet you incessantly stand on your head-- + Do you think, at your age, it is right?' + + `In my youth,' Father William replied to his son, + `I feared it might injure the brain; + But, now that I'm perfectly sure I have none, + Why, I do it again and again.' + + `You are old,' said the youth, `as I mentioned before, + And have grown most uncommonly fat; + Yet you turned a back-somersault in at the door-- + Pray, what is the reason of that?' + + `In my youth,' said the sage, as he shook his grey locks, + `I kept all my limbs very supple + By the use of this ointment--one shilling the box-- + Allow me to sell you a couple?' + + `You are old,' said the youth, `and your jaws are too weak + For anything tougher than suet; + Yet you finished the goose, with the bones and the beak-- + Pray how did you manage to do it?' + + `In my youth,' said his father, `I took to the law, + And argued each case with my wife; + And the muscular strength, which it gave to my jaw, + Has lasted the rest of my life.' + + `You are old,' said the youth, `one would hardly suppose + That your eye was as steady as ever; + Yet you balanced an eel on the end of your nose-- + What made you so awfully clever?' + + `I have answered three questions, and that is enough,' + Said his father; `don't give yourself airs! + Do you think I can listen all day to such stuff? + Be off, or I'll kick you down stairs!' + + + `That is not said right,' said the Caterpillar. + + `Not QUITE right, I'm afraid,' said Alice, timidly; `some of the +words have got altered.' + + `It is wrong from beginning to end,' said the Caterpillar +decidedly, and there was silence for some minutes. + + The Caterpillar was the first to speak. + + `What size do you want to be?' it asked. + + `Oh, I'm not particular as to size,' Alice hastily replied; +`only one doesn't like changing so often, you know.' + + `I DON'T know,' said the Caterpillar. + + Alice said nothing: she had never been so much contradicted in +her life before, and she felt that she was losing her temper. + + `Are you content now?' said the Caterpillar. + + `Well, I should like to be a LITTLE larger, sir, if you +wouldn't mind,' said Alice: `three inches is such a wretched +height to be.' + + `It is a very good height indeed!' said the Caterpillar +angrily, rearing itself upright as it spoke (it was exactly three +inches high). + + `But I'm not used to it!' pleaded poor Alice in a piteous tone. +And she thought of herself, `I wish the creatures wouldn't be so +easily offended!' + + `You'll get used to it in time,' said the Caterpillar; and it +put the hookah into its mouth and began smoking again. + + This time Alice waited patiently until it chose to speak again. +In a minute or two the Caterpillar took the hookah out of its +mouth and yawned once or twice, and shook itself. Then it got +down off the mushroom, and crawled away in the grass, merely +remarking as it went, `One side will make you grow taller, and +the other side will make you grow shorter.' + + `One side of WHAT? The other side of WHAT?' thought Alice to +herself. + + `Of the mushroom,' said the Caterpillar, just as if she had +asked it aloud; and in another moment it was out of sight. + + Alice remained looking thoughtfully at the mushroom for a +minute, trying to make out which were the two sides of it; and as +it was perfectly round, she found this a very difficult question. +However, at last she stretched her arms round it as far as they +would go, and broke off a bit of the edge with each hand. + + `And now which is which?' she said to herself, and nibbled a +little of the right-hand bit to try the effect: the next moment +she felt a violent blow underneath her chin: it had struck her +foot! + + She was a good deal frightened by this very sudden change, but +she felt that there was no time to be lost, as she was shrinking +rapidly; so she set to work at once to eat some of the other bit. +Her chin was pressed so closely against her foot, that there was +hardly room to open her mouth; but she did it at last, and +managed to swallow a morsel of the lefthand bit. + + + * * * * * * * + + * * * * * * + + * * * * * * * + + `Come, my head's free at last!' said Alice in a tone of +delight, which changed into alarm in another moment, when she +found that her shoulders were nowhere to be found: all she could +see, when she looked down, was an immense length of neck, which +seemed to rise like a stalk out of a sea of green leaves that lay +far below her. + + `What CAN all that green stuff be?' said Alice. `And where +HAVE my shoulders got to? And oh, my poor hands, how is it I +can't see you?' She was moving them about as she spoke, but no +result seemed to follow, except a little shaking among the +distant green leaves. + + As there seemed to be no chance of getting her hands up to her +head, she tried to get her head down to them, and was delighted +to find that her neck would bend about easily in any direction, +like a serpent. She had just succeeded in curving it down into a +graceful zigzag, and was going to dive in among the leaves, which +she found to be nothing but the tops of the trees under which she +had been wandering, when a sharp hiss made her draw back in a +hurry: a large pigeon had flown into her face, and was beating +her violently with its wings. + + `Serpent!' screamed the Pigeon. + + `I'm NOT a serpent!' said Alice indignantly. `Let me alone!' + + `Serpent, I say again!' repeated the Pigeon, but in a more +subdued tone, and added with a kind of sob, `I've tried every +way, and nothing seems to suit them!' + + `I haven't the least idea what you're talking about,' said +Alice. + + `I've tried the roots of trees, and I've tried banks, and I've +tried hedges,' the Pigeon went on, without attending to her; `but +those serpents! There's no pleasing them!' + + Alice was more and more puzzled, but she thought there was no +use in saying anything more till the Pigeon had finished. + + `As if it wasn't trouble enough hatching the eggs,' said the +Pigeon; `but I must be on the look-out for serpents night and +day! Why, I haven't had a wink of sleep these three weeks!' + + `I'm very sorry you've been annoyed,' said Alice, who was +beginning to see its meaning. + + `And just as I'd taken the highest tree in the wood,' continued +the Pigeon, raising its voice to a shriek, `and just as I was +thinking I should be free of them at last, they must needs come +wriggling down from the sky! Ugh, Serpent!' + + `But I'm NOT a serpent, I tell you!' said Alice. `I'm a--I'm +a--' + + `Well! WHAT are you?' said the Pigeon. `I can see you're +trying to invent something!' + + `I--I'm a little girl,' said Alice, rather doubtfully, as she +remembered the number of changes she had gone through that day. + + `A likely story indeed!' said the Pigeon in a tone of the +deepest contempt. `I've seen a good many little girls in my +time, but never ONE with such a neck as that! No, no! You're a +serpent; and there's no use denying it. I suppose you'll be +telling me next that you never tasted an egg!' + + `I HAVE tasted eggs, certainly,' said Alice, who was a very +truthful child; `but little girls eat eggs quite as much as +serpents do, you know.' + + `I don't believe it,' said the Pigeon; `but if they do, why +then they're a kind of serpent, that's all I can say.' + + This was such a new idea to Alice, that she was quite silent +for a minute or two, which gave the Pigeon the opportunity of +adding, `You're looking for eggs, I know THAT well enough; and +what does it matter to me whether you're a little girl or a +serpent?' + + `It matters a good deal to ME,' said Alice hastily; `but I'm +not looking for eggs, as it happens; and if I was, I shouldn't +want YOURS: I don't like them raw.' + + `Well, be off, then!' said the Pigeon in a sulky tone, as it +settled down again into its nest. Alice crouched down among the +trees as well as she could, for her neck kept getting entangled +among the branches, and every now and then she had to stop and +untwist it. After a while she remembered that she still held the +pieces of mushroom in her hands, and she set to work very +carefully, nibbling first at one and then at the other, and +growing sometimes taller and sometimes shorter, until she had +succeeded in bringing herself down to her usual height. + + It was so long since she had been anything near the right size, +that it felt quite strange at first; but she got used to it in a +few minutes, and began talking to herself, as usual. `Come, +there's half my plan done now! How puzzling all these changes +are! I'm never sure what I'm going to be, from one minute to +another! However, I've got back to my right size: the next +thing is, to get into that beautiful garden--how IS that to be +done, I wonder?' As she said this, she came suddenly upon an +open place, with a little house in it about four feet high. +`Whoever lives there,' thought Alice, `it'll never do to come +upon them THIS size: why, I should frighten them out of their +wits!' So she began nibbling at the righthand bit again, and did +not venture to go near the house till she had brought herself +down to nine inches high. + + + + CHAPTER VI + + Pig and Pepper + + + For a minute or two she stood looking at the house, and +wondering what to do next, when suddenly a footman in livery came +running out of the wood--(she considered him to be a footman +because he was in livery: otherwise, judging by his face only, +she would have called him a fish)--and rapped loudly at the door +with his knuckles. It was opened by another footman in livery, +with a round face, and large eyes like a frog; and both footmen, +Alice noticed, had powdered hair that curled all over their +heads. She felt very curious to know what it was all about, and +crept a little way out of the wood to listen. + + The Fish-Footman began by producing from under his arm a great +letter, nearly as large as himself, and this he handed over to +the other, saying, in a solemn tone, `For the Duchess. An +invitation from the Queen to play croquet.' The Frog-Footman +repeated, in the same solemn tone, only changing the order of the +words a little, `From the Queen. An invitation for the Duchess +to play croquet.' + + Then they both bowed low, and their curls got entangled +together. + + Alice laughed so much at this, that she had to run back into +the wood for fear of their hearing her; and when she next peeped +out the Fish-Footman was gone, and the other was sitting on the +ground near the door, staring stupidly up into the sky. + + Alice went timidly up to the door, and knocked. + + `There's no sort of use in knocking,' said the Footman, `and +that for two reasons. First, because I'm on the same side of the +door as you are; secondly, because they're making such a noise +inside, no one could possibly hear you.' And certainly there was +a most extraordinary noise going on within--a constant howling +and sneezing, and every now and then a great crash, as if a dish +or kettle had been broken to pieces. + + `Please, then,' said Alice, `how am I to get in?' + + `There might be some sense in your knocking,' the Footman went +on without attending to her, `if we had the door between us. For +instance, if you were INSIDE, you might knock, and I could let +you out, you know.' He was looking up into the sky all the time +he was speaking, and this Alice thought decidedly uncivil. `But +perhaps he can't help it,' she said to herself; `his eyes are so +VERY nearly at the top of his head. But at any rate he might +answer questions.--How am I to get in?' she repeated, aloud. + + `I shall sit here,' the Footman remarked, `till tomorrow--' + + At this moment the door of the house opened, and a large plate +came skimming out, straight at the Footman's head: it just +grazed his nose, and broke to pieces against one of the trees +behind him. + + `--or next day, maybe,' the Footman continued in the same tone, +exactly as if nothing had happened. + + `How am I to get in?' asked Alice again, in a louder tone. + + `ARE you to get in at all?' said the Footman. `That's the +first question, you know.' + + It was, no doubt: only Alice did not like to be told so. +`It's really dreadful,' she muttered to herself, `the way all the +creatures argue. It's enough to drive one crazy!' + + The Footman seemed to think this a good opportunity for +repeating his remark, with variations. `I shall sit here,' he +said, `on and off, for days and days.' + + `But what am I to do?' said Alice. + + `Anything you like,' said the Footman, and began whistling. + + `Oh, there's no use in talking to him,' said Alice desperately: +`he's perfectly idiotic!' And she opened the door and went in. + + The door led right into a large kitchen, which was full of +smoke from one end to the other: the Duchess was sitting on a +three-legged stool in the middle, nursing a baby; the cook was +leaning over the fire, stirring a large cauldron which seemed to +be full of soup. + + `There's certainly too much pepper in that soup!' Alice said to +herself, as well as she could for sneezing. + + There was certainly too much of it in the air. Even the +Duchess sneezed occasionally; and as for the baby, it was +sneezing and howling alternately without a moment's pause. The +only things in the kitchen that did not sneeze, were the cook, +and a large cat which was sitting on the hearth and grinning from +ear to ear. + + `Please would you tell me,' said Alice, a little timidly, for +she was not quite sure whether it was good manners for her to +speak first, `why your cat grins like that?' + + `It's a Cheshire cat,' said the Duchess, `and that's why. +Pig!' + + She said the last word with such sudden violence that Alice +quite jumped; but she saw in another moment that it was addressed +to the baby, and not to her, so she took courage, and went on +again:-- + + `I didn't know that Cheshire cats always grinned; in fact, I +didn't know that cats COULD grin.' + + `They all can,' said the Duchess; `and most of 'em do.' + + `I don't know of any that do,' Alice said very politely, +feeling quite pleased to have got into a conversation. + + `You don't know much,' said the Duchess; `and that's a fact.' + + Alice did not at all like the tone of this remark, and thought +it would be as well to introduce some other subject of +conversation. While she was trying to fix on one, the cook took +the cauldron of soup off the fire, and at once set to work +throwing everything within her reach at the Duchess and the baby +--the fire-irons came first; then followed a shower of saucepans, +plates, and dishes. The Duchess took no notice of them even when +they hit her; and the baby was howling so much already, that it +was quite impossible to say whether the blows hurt it or not. + + `Oh, PLEASE mind what you're doing!' cried Alice, jumping up +and down in an agony of terror. `Oh, there goes his PRECIOUS +nose'; as an unusually large saucepan flew close by it, and very +nearly carried it off. + + `If everybody minded their own business,' the Duchess said in a +hoarse growl, `the world would go round a deal faster than it +does.' + + `Which would NOT be an advantage,' said Alice, who felt very +glad to get an opportunity of showing off a little of her +knowledge. `Just think of what work it would make with the day +and night! You see the earth takes twenty-four hours to turn +round on its axis--' + + `Talking of axes,' said the Duchess, `chop off her head!' + + Alice glanced rather anxiously at the cook, to see if she meant +to take the hint; but the cook was busily stirring the soup, and +seemed not to be listening, so she went on again: `Twenty-four +hours, I THINK; or is it twelve? I--' + + `Oh, don't bother ME,' said the Duchess; `I never could abide +figures!' And with that she began nursing her child again, +singing a sort of lullaby to it as she did so, and giving it a +violent shake at the end of every line: + + `Speak roughly to your little boy, + +And beat him when he sneezes: + He only does it to annoy, + +Because he knows it teases.' + + CHORUS. + + (In which the cook and the baby joined):-- + + `Wow! wow! wow!' + + While the Duchess sang the second verse of the song, she kept +tossing the baby violently up and down, and the poor little thing +howled so, that Alice could hardly hear the words:-- + + `I speak severely to my boy, + +I beat him when he sneezes; + For he can thoroughly enjoy + +The pepper when he pleases!' + + CHORUS. + + `Wow! wow! wow!' + + `Here! you may nurse it a bit, if you like!' the Duchess said +to Alice, flinging the baby at her as she spoke. `I must go and +get ready to play croquet with the Queen,' and she hurried out of +the room. The cook threw a frying-pan after her as she went out, +but it just missed her. + + Alice caught the baby with some difficulty, as it was a queer- +shaped little creature, and held out its arms and legs in all +directions, `just like a star-fish,' thought Alice. The poor +little thing was snorting like a steam-engine when she caught it, +and kept doubling itself up and straightening itself out again, +so that altogether, for the first minute or two, it was as much +as she could do to hold it. + + As soon as she had made out the proper way of nursing it, +(which was to twist it up into a sort of knot, and then keep +tight hold of its right ear and left foot, so as to prevent its +undoing itself,) she carried it out into the open air. `IF I +don't take this child away with me,' thought Alice, `they're sure +to kill it in a day or two: wouldn't it be murder to leave it +behind?' She said the last words out loud, and the little thing +grunted in reply (it had left off sneezing by this time). `Don't +grunt,' said Alice; `that's not at all a proper way of expressing +yourself.' + + The baby grunted again, and Alice looked very anxiously into +its face to see what was the matter with it. There could be no +doubt that it had a VERY turn-up nose, much more like a snout +than a real nose; also its eyes were getting extremely small for +a baby: altogether Alice did not like the look of the thing at +all. `But perhaps it was only sobbing,' she thought, and looked +into its eyes again, to see if there were any tears. + + No, there were no tears. `If you're going to turn into a pig, +my dear,' said Alice, seriously, `I'll have nothing more to do +with you. Mind now!' The poor little thing sobbed again (or +grunted, it was impossible to say which), and they went on for +some while in silence. + + Alice was just beginning to think to herself, `Now, what am I +to do with this creature when I get it home?' when it grunted +again, so violently, that she looked down into its face in some +alarm. This time there could be NO mistake about it: it was +neither more nor less than a pig, and she felt that it would be +quite absurd for her to carry it further. + + So she set the little creature down, and felt quite relieved to +see it trot away quietly into the wood. `If it had grown up,' +she said to herself, `it would have made a dreadfully ugly child: +but it makes rather a handsome pig, I think.' And she began +thinking over other children she knew, who might do very well as +pigs, and was just saying to herself, `if one only knew the right +way to change them--' when she was a little startled by seeing +the Cheshire Cat sitting on a bough of a tree a few yards off. + + The Cat only grinned when it saw Alice. It looked good- +natured, she thought: still it had VERY long claws and a great +many teeth, so she felt that it ought to be treated with respect. + + `Cheshire Puss,' she began, rather timidly, as she did not at +all know whether it would like the name: however, it only +grinned a little wider. `Come, it's pleased so far,' thought +Alice, and she went on. `Would you tell me, please, which way I +ought to go from here?' + + `That depends a good deal on where you want to get to,' said +the Cat. + + `I don't much care where--' said Alice. + + `Then it doesn't matter which way you go,' said the Cat. + + `--so long as I get SOMEWHERE,' Alice added as an explanation. + + `Oh, you're sure to do that,' said the Cat, `if you only walk +long enough.' + + Alice felt that this could not be denied, so she tried another +question. `What sort of people live about here?' + + `In THAT direction,' the Cat said, waving its right paw round, +`lives a Hatter: and in THAT direction,' waving the other paw, +`lives a March Hare. Visit either you like: they're both mad.' + + `But I don't want to go among mad people,' Alice remarked. + + `Oh, you can't help that,' said the Cat: `we're all mad here. +I'm mad. You're mad.' + + `How do you know I'm mad?' said Alice. + + `You must be,' said the Cat, `or you wouldn't have come here.' + + Alice didn't think that proved it at all; however, she went on +`And how do you know that you're mad?' + + `To begin with,' said the Cat, `a dog's not mad. You grant +that?' + + `I suppose so,' said Alice. + + `Well, then,' the Cat went on, `you see, a dog growls when it's +angry, and wags its tail when it's pleased. Now I growl when I'm +pleased, and wag my tail when I'm angry. Therefore I'm mad.' + + `I call it purring, not growling,' said Alice. + + `Call it what you like,' said the Cat. `Do you play croquet +with the Queen to-day?' + + `I should like it very much,' said Alice, `but I haven't been +invited yet.' + + `You'll see me there,' said the Cat, and vanished. + + Alice was not much surprised at this, she was getting so used +to queer things happening. While she was looking at the place +where it had been, it suddenly appeared again. + + `By-the-bye, what became of the baby?' said the Cat. `I'd +nearly forgotten to ask.' + + `It turned into a pig,' Alice quietly said, just as if it had +come back in a natural way. + + `I thought it would,' said the Cat, and vanished again. + + Alice waited a little, half expecting to see it again, but it +did not appear, and after a minute or two she walked on in the +direction in which the March Hare was said to live. `I've seen +hatters before,' she said to herself; `the March Hare will be +much the most interesting, and perhaps as this is May it won't be +raving mad--at least not so mad as it was in March.' As she said +this, she looked up, and there was the Cat again, sitting on a +branch of a tree. + + `Did you say pig, or fig?' said the Cat. + + `I said pig,' replied Alice; `and I wish you wouldn't keep +appearing and vanishing so suddenly: you make one quite giddy.' + + `All right,' said the Cat; and this time it vanished quite +slowly, beginning with the end of the tail, and ending with the +grin, which remained some time after the rest of it had gone. + + `Well! I've often seen a cat without a grin,' thought Alice; +`but a grin without a cat! It's the most curious thing I ever +say in my life!' + + She had not gone much farther before she came in sight of the +house of the March Hare: she thought it must be the right house, +because the chimneys were shaped like ears and the roof was +thatched with fur. It was so large a house, that she did not +like to go nearer till she had nibbled some more of the lefthand +bit of mushroom, and raised herself to about two feet high: even +then she walked up towards it rather timidly, saying to herself +`Suppose it should be raving mad after all! I almost wish I'd +gone to see the Hatter instead!' + + + + CHAPTER VII + + A Mad Tea-Party + + + There was a table set out under a tree in front of the house, +and the March Hare and the Hatter were having tea at it: a +Dormouse was sitting between them, fast asleep, and the other two +were using it as a cushion, resting their elbows on it, and the +talking over its head. `Very uncomfortable for the Dormouse,' +thought Alice; `only, as it's asleep, I suppose it doesn't mind.' + + The table was a large one, but the three were all crowded +together at one corner of it: `No room! No room!' they cried +out when they saw Alice coming. `There's PLENTY of room!' said +Alice indignantly, and she sat down in a large arm-chair at one +end of the table. + + `Have some wine,' the March Hare said in an encouraging tone. + + Alice looked all round the table, but there was nothing on it +but tea. `I don't see any wine,' she remarked. + + `There isn't any,' said the March Hare. + + `Then it wasn't very civil of you to offer it,' said Alice +angrily. + + `It wasn't very civil of you to sit down without being +invited,' said the March Hare. + + `I didn't know it was YOUR table,' said Alice; `it's laid for a +great many more than three.' + + `Your hair wants cutting,' said the Hatter. He had been +looking at Alice for some time with great curiosity, and this was +his first speech. + + `You should learn not to make personal remarks,' Alice said +with some severity; `it's very rude.' + + The Hatter opened his eyes very wide on hearing this; but all +he SAID was, `Why is a raven like a writing-desk?' + + `Come, we shall have some fun now!' thought Alice. `I'm glad +they've begun asking riddles.--I believe I can guess that,' she +added aloud. + + `Do you mean that you think you can find out the answer to it?' +said the March Hare. + + `Exactly so,' said Alice. + + `Then you should say what you mean,' the March Hare went on. + + `I do,' Alice hastily replied; `at least--at least I mean what +I say--that's the same thing, you know.' + + `Not the same thing a bit!' said the Hatter. `You might just +as well say that "I see what I eat" is the same thing as "I eat +what I see"!' + + `You might just as well say,' added the March Hare, `that "I +like what I get" is the same thing as "I get what I like"!' + + `You might just as well say,' added the Dormouse, who seemed to +be talking in his sleep, `that "I breathe when I sleep" is the +same thing as "I sleep when I breathe"!' + + `It IS the same thing with you,' said the Hatter, and here the +conversation dropped, and the party sat silent for a minute, +while Alice thought over all she could remember about ravens and +writing-desks, which wasn't much. + + The Hatter was the first to break the silence. `What day of +the month is it?' he said, turning to Alice: he had taken his +watch out of his pocket, and was looking at it uneasily, shaking +it every now and then, and holding it to his ear. + + Alice considered a little, and then said `The fourth.' + + `Two days wrong!' sighed the Hatter. `I told you butter +wouldn't suit the works!' he added looking angrily at the March +Hare. + + `It was the BEST butter,' the March Hare meekly replied. + + `Yes, but some crumbs must have got in as well,' the Hatter +grumbled: `you shouldn't have put it in with the bread-knife.' + + The March Hare took the watch and looked at it gloomily: then +he dipped it into his cup of tea, and looked at it again: but he +could think of nothing better to say than his first remark, `It +was the BEST butter, you know.' + + Alice had been looking over his shoulder with some curiosity. +`What a funny watch!' she remarked. `It tells the day of the +month, and doesn't tell what o'clock it is!' + + `Why should it?' muttered the Hatter. `Does YOUR watch tell +you what year it is?' + + `Of course not,' Alice replied very readily: `but that's +because it stays the same year for such a long time together.' + + `Which is just the case with MINE,' said the Hatter. + + Alice felt dreadfully puzzled. The Hatter's remark seemed to +have no sort of meaning in it, and yet it was certainly English. +`I don't quite understand you,' she said, as politely as she +could. + + `The Dormouse is asleep again,' said the Hatter, and he poured +a little hot tea upon its nose. + + The Dormouse shook its head impatiently, and said, without +opening its eyes, `Of course, of course; just what I was going to +remark myself.' + + `Have you guessed the riddle yet?' the Hatter said, turning to +Alice again. + + `No, I give it up,' Alice replied: `what's the answer?' + + `I haven't the slightest idea,' said the Hatter. + + `Nor I,' said the March Hare. + + Alice sighed wearily. `I think you might do something better +with the time,' she said, `than waste it in asking riddles that +have no answers.' + + `If you knew Time as well as I do,' said the Hatter, `you +wouldn't talk about wasting IT. It's HIM.' + + `I don't know what you mean,' said Alice. + + `Of course you don't!' the Hatter said, tossing his head +contemptuously. `I dare say you never even spoke to Time!' + + `Perhaps not,' Alice cautiously replied: `but I know I have to +beat time when I learn music.' + + `Ah! that accounts for it,' said the Hatter. `He won't stand +beating. Now, if you only kept on good terms with him, he'd do +almost anything you liked with the clock. For instance, suppose +it were nine o'clock in the morning, just time to begin lessons: +you'd only have to whisper a hint to Time, and round goes the +clock in a twinkling! Half-past one, time for dinner!' + + (`I only wish it was,' the March Hare said to itself in a +whisper.) + + `That would be grand, certainly,' said Alice thoughtfully: +`but then--I shouldn't be hungry for it, you know.' + + `Not at first, perhaps,' said the Hatter: `but you could keep +it to half-past one as long as you liked.' + + `Is that the way YOU manage?' Alice asked. + + The Hatter shook his head mournfully. `Not I!' he replied. +`We quarrelled last March--just before HE went mad, you know--' +(pointing with his tea spoon at the March Hare,) `--it was at the +great concert given by the Queen of Hearts, and I had to sing + + "Twinkle, twinkle, little bat! + How I wonder what you're at!" + +You know the song, perhaps?' + + `I've heard something like it,' said Alice. + + `It goes on, you know,' the Hatter continued, `in this way:-- + + "Up above the world you fly, + Like a tea-tray in the sky. + Twinkle, twinkle--"' + +Here the Dormouse shook itself, and began singing in its sleep +`Twinkle, twinkle, twinkle, twinkle--' and went on so long that +they had to pinch it to make it stop. + + `Well, I'd hardly finished the first verse,' said the Hatter, +`when the Queen jumped up and bawled out, "He's murdering the +time! Off with his head!"' + + `How dreadfully savage!' exclaimed Alice. + + `And ever since that,' the Hatter went on in a mournful tone, +`he won't do a thing I ask! It's always six o'clock now.' + + A bright idea came into Alice's head. `Is that the reason so +many tea-things are put out here?' she asked. + + `Yes, that's it,' said the Hatter with a sigh: `it's always +tea-time, and we've no time to wash the things between whiles.' + + `Then you keep moving round, I suppose?' said Alice. + + `Exactly so,' said the Hatter: `as the things get used up.' + + `But what happens when you come to the beginning again?' Alice +ventured to ask. + + `Suppose we change the subject,' the March Hare interrupted, +yawning. `I'm getting tired of this. I vote the young lady +tells us a story.' + + `I'm afraid I don't know one,' said Alice, rather alarmed at +the proposal. + + `Then the Dormouse shall!' they both cried. `Wake up, +Dormouse!' And they pinched it on both sides at once. + + The Dormouse slowly opened his eyes. `I wasn't asleep,' he +said in a hoarse, feeble voice: `I heard every word you fellows +were saying.' + + `Tell us a story!' said the March Hare. + + `Yes, please do!' pleaded Alice. + + `And be quick about it,' added the Hatter, `or you'll be asleep +again before it's done.' + + `Once upon a time there were three little sisters,' the +Dormouse began in a great hurry; `and their names were Elsie, +Lacie, and Tillie; and they lived at the bottom of a well--' + + `What did they live on?' said Alice, who always took a great +interest in questions of eating and drinking. + + `They lived on treacle,' said the Dormouse, after thinking a +minute or two. + + `They couldn't have done that, you know,' Alice gently +remarked; `they'd have been ill.' + + `So they were,' said the Dormouse; `VERY ill.' + + Alice tried to fancy to herself what such an extraordinary ways +of living would be like, but it puzzled her too much, so she went +on: `But why did they live at the bottom of a well?' + + `Take some more tea,' the March Hare said to Alice, very +earnestly. + + `I've had nothing yet,' Alice replied in an offended tone, `so +I can't take more.' + + `You mean you can't take LESS,' said the Hatter: `it's very +easy to take MORE than nothing.' + + `Nobody asked YOUR opinion,' said Alice. + + `Who's making personal remarks now?' the Hatter asked +triumphantly. + + Alice did not quite know what to say to this: so she helped +herself to some tea and bread-and-butter, and then turned to the +Dormouse, and repeated her question. `Why did they live at the +bottom of a well?' + + The Dormouse again took a minute or two to think about it, and +then said, `It was a treacle-well.' + + `There's no such thing!' Alice was beginning very angrily, but +the Hatter and the March Hare went `Sh! sh!' and the Dormouse +sulkily remarked, `If you can't be civil, you'd better finish the +story for yourself.' + + `No, please go on!' Alice said very humbly; `I won't interrupt +again. I dare say there may be ONE.' + + `One, indeed!' said the Dormouse indignantly. However, he +consented to go on. `And so these three little sisters--they +were learning to draw, you know--' + + `What did they draw?' said Alice, quite forgetting her promise. + + `Treacle,' said the Dormouse, without considering at all this +time. + + `I want a clean cup,' interrupted the Hatter: `let's all move +one place on.' + + He moved on as he spoke, and the Dormouse followed him: the +March Hare moved into the Dormouse's place, and Alice rather +unwillingly took the place of the March Hare. The Hatter was the +only one who got any advantage from the change: and Alice was a +good deal worse off than before, as the March Hare had just upset +the milk-jug into his plate. + + Alice did not wish to offend the Dormouse again, so she began +very cautiously: `But I don't understand. Where did they draw +the treacle from?' + + `You can draw water out of a water-well,' said the Hatter; `so +I should think you could draw treacle out of a treacle-well--eh, +stupid?' + + `But they were IN the well,' Alice said to the Dormouse, not +choosing to notice this last remark. + + `Of course they were', said the Dormouse; `--well in.' + + This answer so confused poor Alice, that she let the Dormouse +go on for some time without interrupting it. + + `They were learning to draw,' the Dormouse went on, yawning and +rubbing its eyes, for it was getting very sleepy; `and they drew +all manner of things--everything that begins with an M--' + + `Why with an M?' said Alice. + + `Why not?' said the March Hare. + + Alice was silent. + + The Dormouse had closed its eyes by this time, and was going +off into a doze; but, on being pinched by the Hatter, it woke up +again with a little shriek, and went on: `--that begins with an +M, such as mouse-traps, and the moon, and memory, and muchness-- +you know you say things are "much of a muchness"--did you ever +see such a thing as a drawing of a muchness?' + + `Really, now you ask me,' said Alice, very much confused, `I +don't think--' + + `Then you shouldn't talk,' said the Hatter. + + This piece of rudeness was more than Alice could bear: she got +up in great disgust, and walked off; the Dormouse fell asleep +instantly, and neither of the others took the least notice of her +going, though she looked back once or twice, half hoping that +they would call after her: the last time she saw them, they were +trying to put the Dormouse into the teapot. + + `At any rate I'll never go THERE again!' said Alice as she +picked her way through the wood. `It's the stupidest tea-party I +ever was at in all my life!' + + Just as she said this, she noticed that one of the trees had a +door leading right into it. `That's very curious!' she thought. +`But everything's curious today. I think I may as well go in at +once.' And in she went. + + Once more she found herself in the long hall, and close to the +little glass table. `Now, I'll manage better this time,' she +said to herself, and began by taking the little golden key, and +unlocking the door that led into the garden. Then she went to +work nibbling at the mushroom (she had kept a piece of it in her +pocked) till she was about a foot high: then she walked down the +little passage: and THEN--she found herself at last in the +beautiful garden, among the bright flower-beds and the cool +fountains. + + + + CHAPTER VIII + + The Queen's Croquet-Ground + + + A large rose-tree stood near the entrance of the garden: the +roses growing on it were white, but there were three gardeners at +it, busily painting them red. Alice thought this a very curious +thing, and she went nearer to watch them, and just as she came up +to them she heard one of them say, `Look out now, Five! Don't go +splashing paint over me like that!' + + `I couldn't help it,' said Five, in a sulky tone; `Seven jogged +my elbow.' + + On which Seven looked up and said, `That's right, Five! Always +lay the blame on others!' + + `YOU'D better not talk!' said Five. `I heard the Queen say only +yesterday you deserved to be beheaded!' + + `What for?' said the one who had spoken first. + + `That's none of YOUR business, Two!' said Seven. + + `Yes, it IS his business!' said Five, `and I'll tell him--it +was for bringing the cook tulip-roots instead of onions.' + + Seven flung down his brush, and had just begun `Well, of all +the unjust things--' when his eye chanced to fall upon Alice, as +she stood watching them, and he checked himself suddenly: the +others looked round also, and all of them bowed low. + + `Would you tell me,' said Alice, a little timidly, `why you are +painting those roses?' + + Five and Seven said nothing, but looked at Two. Two began in a +low voice, `Why the fact is, you see, Miss, this here ought to +have been a RED rose-tree, and we put a white one in by mistake; +and if the Queen was to find it out, we should all have our heads +cut off, you know. So you see, Miss, we're doing our best, afore +she comes, to--' At this moment Five, who had been anxiously +looking across the garden, called out `The Queen! The Queen!' +and the three gardeners instantly threw themselves flat upon +their faces. There was a sound of many footsteps, and Alice +looked round, eager to see the Queen. + + First came ten soldiers carrying clubs; these were all shaped +like the three gardeners, oblong and flat, with their hands and +feet at the corners: next the ten courtiers; these were +ornamented all over with diamonds, and walked two and two, as the +soldiers did. After these came the royal children; there were +ten of them, and the little dears came jumping merrily along hand +in hand, in couples: they were all ornamented with hearts. Next +came the guests, mostly Kings and Queens, and among them Alice +recognised the White Rabbit: it was talking in a hurried nervous +manner, smiling at everything that was said, and went by without +noticing her. Then followed the Knave of Hearts, carrying the +King's crown on a crimson velvet cushion; and, last of all this +grand procession, came THE KING AND QUEEN OF HEARTS. + + Alice was rather doubtful whether she ought not to lie down on +her face like the three gardeners, but she could not remember +every having heard of such a rule at processions; `and besides, +what would be the use of a procession,' thought she, `if people +had all to lie down upon their faces, so that they couldn't see +it?' So she stood still where she was, and waited. + + When the procession came opposite to Alice, they all stopped +and looked at her, and the Queen said severely `Who is this?' +She said it to the Knave of Hearts, who only bowed and smiled in +reply. + + `Idiot!' said the Queen, tossing her head impatiently; and, +turning to Alice, she went on, `What's your name, child?' + + `My name is Alice, so please your Majesty,' said Alice very +politely; but she added, to herself, `Why, they're only a pack of +cards, after all. I needn't be afraid of them!' + + `And who are THESE?' said the Queen, pointing to the three +gardeners who were lying round the rosetree; for, you see, as +they were lying on their faces, and the pattern on their backs +was the same as the rest of the pack, she could not tell whether +they were gardeners, or soldiers, or courtiers, or three of her +own children. + + `How should I know?' said Alice, surprised at her own courage. +`It's no business of MINE.' + + The Queen turned crimson with fury, and, after glaring at her +for a moment like a wild beast, screamed `Off with her head! +Off--' + + `Nonsense!' said Alice, very loudly and decidedly, and the +Queen was silent. + + The King laid his hand upon her arm, and timidly said +`Consider, my dear: she is only a child!' + + The Queen turned angrily away from him, and said to the Knave +`Turn them over!' + + The Knave did so, very carefully, with one foot. + + `Get up!' said the Queen, in a shrill, loud voice, and the +three gardeners instantly jumped up, and began bowing to the +King, the Queen, the royal children, and everybody else. + + `Leave off that!' screamed the Queen. `You make me giddy.' +And then, turning to the rose-tree, she went on, `What HAVE you +been doing here?' + + `May it please your Majesty,' said Two, in a very humble tone, +going down on one knee as he spoke, `we were trying--' + + `I see!' said the Queen, who had meanwhile been examining the +roses. `Off with their heads!' and the procession moved on, +three of the soldiers remaining behind to execute the unfortunate +gardeners, who ran to Alice for protection. + + `You shan't be beheaded!' said Alice, and she put them into a +large flower-pot that stood near. The three soldiers wandered +about for a minute or two, looking for them, and then quietly +marched off after the others. + + `Are their heads off?' shouted the Queen. + + `Their heads are gone, if it please your Majesty!' the soldiers +shouted in reply. + + `That's right!' shouted the Queen. `Can you play croquet?' + + The soldiers were silent, and looked at Alice, as the question +was evidently meant for her. + + `Yes!' shouted Alice. + + `Come on, then!' roared the Queen, and Alice joined the +procession, wondering very much what would happen next. + + `It's--it's a very fine day!' said a timid voice at her side. +She was walking by the White Rabbit, who was peeping anxiously +into her face. + + `Very,' said Alice: `--where's the Duchess?' + + `Hush! Hush!' said the Rabbit in a low, hurried tone. He +looked anxiously over his shoulder as he spoke, and then raised +himself upon tiptoe, put his mouth close to her ear, and +whispered `She's under sentence of execution.' + + `What for?' said Alice. + + `Did you say "What a pity!"?' the Rabbit asked. + + `No, I didn't,' said Alice: `I don't think it's at all a pity. +I said "What for?"' + + `She boxed the Queen's ears--' the Rabbit began. Alice gave a +little scream of laughter. `Oh, hush!' the Rabbit whispered in a +frightened tone. `The Queen will hear you! You see, she came +rather late, and the Queen said--' + + `Get to your places!' shouted the Queen in a voice of thunder, +and people began running about in all directions, tumbling up +against each other; however, they got settled down in a minute or +two, and the game began. Alice thought she had never seen such a +curious croquet-ground in her life; it was all ridges and +furrows; the balls were live hedgehogs, the mallets live +flamingoes, and the soldiers had to double themselves up and to +stand on their hands and feet, to make the arches. + + The chief difficulty Alice found at first was in managing her +flamingo: she succeeded in getting its body tucked away, +comfortably enough, under her arm, with its legs hanging down, +but generally, just as she had got its neck nicely straightened +out, and was going to give the hedgehog a blow with its head, it +WOULD twist itself round and look up in her face, with such a +puzzled expression that she could not help bursting out laughing: +and when she had got its head down, and was going to begin again, +it was very provoking to find that the hedgehog had unrolled +itself, and was in the act of crawling away: besides all this, +there was generally a ridge or furrow in the way wherever she +wanted to send the hedgehog to, and, as the doubled-up soldiers +were always getting up and walking off to other parts of the +ground, Alice soon came to the conclusion that it was a very +difficult game indeed. + + The players all played at once without waiting for turns, +quarrelling all the while, and fighting for the hedgehogs; and in +a very short time the Queen was in a furious passion, and went +stamping about, and shouting `Off with his head!' or `Off with +her head!' about once in a minute. + + Alice began to feel very uneasy: to be sure, she had not as +yet had any dispute with the Queen, but she knew that it might +happen any minute, `and then,' thought she, `what would become of +me? They're dreadfully fond of beheading people here; the great +wonder is, that there's any one left alive!' + + She was looking about for some way of escape, and wondering +whether she could get away without being seen, when she noticed a +curious appearance in the air: it puzzled her very much at +first, but, after watching it a minute or two, she made it out to +be a grin, and she said to herself `It's the Cheshire Cat: now I +shall have somebody to talk to.' + + `How are you getting on?' said the Cat, as soon as there was +mouth enough for it to speak with. + + Alice waited till the eyes appeared, and then nodded. `It's no +use speaking to it,' she thought, `till its ears have come, or at +least one of them.' In another minute the whole head appeared, +and then Alice put down her flamingo, and began an account of the +game, feeling very glad she had someone to listen to her. The +Cat seemed to think that there was enough of it now in sight, and +no more of it appeared. + + `I don't think they play at all fairly,' Alice began, in rather +a complaining tone, `and they all quarrel so dreadfully one can't +hear oneself speak--and they don't seem to have any rules in +particular; at least, if there are, nobody attends to them--and +you've no idea how confusing it is all the things being alive; +for instance, there's the arch I've got to go through next +walking about at the other end of the ground--and I should have +croqueted the Queen's hedgehog just now, only it ran away when it +saw mine coming!' + + `How do you like the Queen?' said the Cat in a low voice. + + `Not at all,' said Alice: `she's so extremely--' Just then +she noticed that the Queen was close behind her, listening: so +she went on, `--likely to win, that it's hardly worth while +finishing the game.' + + The Queen smiled and passed on. + + `Who ARE you talking to?' said the King, going up to Alice, and +looking at the Cat's head with great curiosity. + + `It's a friend of mine--a Cheshire Cat,' said Alice: `allow me +to introduce it.' + + `I don't like the look of it at all,' said the King: `however, +it may kiss my hand if it likes.' + + `I'd rather not,' the Cat remarked. + + `Don't be impertinent,' said the King, `and don't look at me +like that!' He got behind Alice as he spoke. + + `A cat may look at a king,' said Alice. `I've read that in +some book, but I don't remember where.' + + `Well, it must be removed,' said the King very decidedly, and +he called the Queen, who was passing at the moment, `My dear! I +wish you would have this cat removed!' + + The Queen had only one way of settling all difficulties, great +or small. `Off with his head!' she said, without even looking +round. + + `I'll fetch the executioner myself,' said the King eagerly, and +he hurried off. + + Alice thought she might as well go back, and see how the game +was going on, as she heard the Queen's voice in the distance, +screaming with passion. She had already heard her sentence three +of the players to be executed for having missed their turns, and +she did not like the look of things at all, as the game was in +such confusion that she never knew whether it was her turn or +not. So she went in search of her hedgehog. + + The hedgehog was engaged in a fight with another hedgehog, +which seemed to Alice an excellent opportunity for croqueting one +of them with the other: the only difficulty was, that her +flamingo was gone across to the other side of the garden, where +Alice could see it trying in a helpless sort of way to fly up +into a tree. + + By the time she had caught the flamingo and brought it back, +the fight was over, and both the hedgehogs were out of sight: +`but it doesn't matter much,' thought Alice, `as all the arches +are gone from this side of the ground.' So she tucked it away +under her arm, that it might not escape again, and went back for +a little more conversation with her friend. + + When she got back to the Cheshire Cat, she was surprised to +find quite a large crowd collected round it: there was a dispute +going on between the executioner, the King, and the Queen, who +were all talking at once, while all the rest were quite silent, +and looked very uncomfortable. + + The moment Alice appeared, she was appealed to by all three to +settle the question, and they repeated their arguments to her, +though, as they all spoke at once, she found it very hard indeed +to make out exactly what they said. + + The executioner's argument was, that you couldn't cut off a +head unless there was a body to cut it off from: that he had +never had to do such a thing before, and he wasn't going to begin +at HIS time of life. + + The King's argument was, that anything that had a head could be +beheaded, and that you weren't to talk nonsense. + + The Queen's argument was, that if something wasn't done about +it in less than no time she'd have everybody executed, all round. +(It was this last remark that had made the whole party look so +grave and anxious.) + + Alice could think of nothing else to say but `It belongs to the +Duchess: you'd better ask HER about it.' + + `She's in prison,' the Queen said to the executioner: `fetch +her here.' And the executioner went off like an arrow. + + The Cat's head began fading away the moment he was gone, and, +by the time he had come back with the Dutchess, it had entirely +disappeared; so the King and the executioner ran wildly up and +down looking for it, while the rest of the party went back to the game. + + + + CHAPTER IX + + The Mock Turtle's Story + + + `You can't think how glad I am to see you again, you dear old +thing!' said the Duchess, as she tucked her arm affectionately +into Alice's, and they walked off together. + + Alice was very glad to find her in such a pleasant temper, and +thought to herself that perhaps it was only the pepper that had +made her so savage when they met in the kitchen. + + `When I'M a Duchess,' she said to herself, (not in a very +hopeful tone though), `I won't have any pepper in my kitchen AT +ALL. Soup does very well without--Maybe it's always pepper that +makes people hot-tempered,' she went on, very much pleased at +having found out a new kind of rule, `and vinegar that makes them +sour--and camomile that makes them bitter--and--and barley-sugar +and such things that make children sweet-tempered. I only wish +people knew that: then they wouldn't be so stingy about it, you +know--' + + She had quite forgotten the Duchess by this time, and was a +little startled when she heard her voice close to her ear. +`You're thinking about something, my dear, and that makes you +forget to talk. I can't tell you just now what the moral of that +is, but I shall remember it in a bit.' + + `Perhaps it hasn't one,' Alice ventured to remark. + + `Tut, tut, child!' said the Duchess. `Everything's got a +moral, if only you can find it.' And she squeezed herself up +closer to Alice's side as she spoke. + + Alice did not much like keeping so close to her: first, +because the Duchess was VERY ugly; and secondly, because she was +exactly the right height to rest her chin upon Alice's shoulder, +and it was an uncomfortably sharp chin. However, she did not +like to be rude, so she bore it as well as she could. + + `The game's going on rather better now,' she said, by way of +keeping up the conversation a little. + + `'Tis so,' said the Duchess: `and the moral of that is--"Oh, +'tis love, 'tis love, that makes the world go round!"' + + `Somebody said,' Alice whispered, `that it's done by everybody +minding their own business!' + + `Ah, well! It means much the same thing,' said the Duchess, +digging her sharp little chin into Alice's shoulder as she added, +`and the moral of THAT is--"Take care of the sense, and the +sounds will take care of themselves."' + + `How fond she is of finding morals in things!' Alice thought to +herself. + + `I dare say you're wondering why I don't put my arm round your +waist,' the Duchess said after a pause: `the reason is, that I'm +doubtful about the temper of your flamingo. Shall I try the +experiment?' + + `HE might bite,' Alice cautiously replied, not feeling at all +anxious to have the experiment tried. + + `Very true,' said the Duchess: `flamingoes and mustard both +bite. And the moral of that is--"Birds of a feather flock +together."' + + `Only mustard isn't a bird,' Alice remarked. + + `Right, as usual,' said the Duchess: `what a clear way you +have of putting things!' + + `It's a mineral, I THINK,' said Alice. + + `Of course it is,' said the Duchess, who seemed ready to agree +to everything that Alice said; `there's a large mustard-mine near +here. And the moral of that is--"The more there is of mine, the +less there is of yours."' + + `Oh, I know!' exclaimed Alice, who had not attended to this +last remark, `it's a vegetable. It doesn't look like one, but it +is.' + + `I quite agree with you,' said the Duchess; `and the moral of +that is--"Be what you would seem to be"--or if you'd like it put +more simply--"Never imagine yourself not to be otherwise than +what it might appear to others that what you were or might have +been was not otherwise than what you had been would have appeared +to them to be otherwise."' + + `I think I should understand that better,' Alice said very +politely, `if I had it written down: but I can't quite follow it +as you say it.' + + `That's nothing to what I could say if I chose,' the Duchess +replied, in a pleased tone. + + `Pray don't trouble yourself to say it any longer than that,' +said Alice. + + `Oh, don't talk about trouble!' said the Duchess. `I make you +a present of everything I've said as yet.' + + `A cheap sort of present!' thought Alice. `I'm glad they don't +give birthday presents like that!' But she did not venture to +say it out loud. + + `Thinking again?' the Duchess asked, with another dig of her +sharp little chin. + + `I've a right to think,' said Alice sharply, for she was +beginning to feel a little worried. + + `Just about as much right,' said the Duchess, `as pigs have to +fly; and the m--' + + But here, to Alice's great surprise, the Duchess's voice died +away, even in the middle of her favourite word `moral,' and the +arm that was linked into hers began to tremble. Alice looked up, +and there stood the Queen in front of them, with her arms folded, +frowning like a thunderstorm. + + `A fine day, your Majesty!' the Duchess began in a low, weak +voice. + + `Now, I give you fair warning,' shouted the Queen, stamping on +the ground as she spoke; `either you or your head must be off, +and that in about half no time! Take your choice!' + + The Duchess took her choice, and was gone in a moment. + + `Let's go on with the game,' the Queen said to Alice; and Alice +was too much frightened to say a word, but slowly followed her +back to the croquet-ground. + + The other guests had taken advantage of the Queen's absence, +and were resting in the shade: however, the moment they saw her, +they hurried back to the game, the Queen merely remarking that a +moment's delay would cost them their lives. + + All the time they were playing the Queen never left off +quarrelling with the other players, and shouting `Off with his +head!' or `Off with her head!' Those whom she sentenced were +taken into custody by the soldiers, who of course had to leave +off being arches to do this, so that by the end of half an hour +or so there were no arches left, and all the players, except the +King, the Queen, and Alice, were in custody and under sentence of +execution. + + Then the Queen left off, quite out of breath, and said to +Alice, `Have you seen the Mock Turtle yet?' + + `No,' said Alice. `I don't even know what a Mock Turtle is.' + + `It's the thing Mock Turtle Soup is made from,' said the Queen. + + `I never saw one, or heard of one,' said Alice. + + `Come on, then,' said the Queen, `and he shall tell you his +history,' + + As they walked off together, Alice heard the King say in a low +voice, to the company generally, `You are all pardoned.' `Come, +THAT'S a good thing!' she said to herself, for she had felt quite +unhappy at the number of executions the Queen had ordered. + + They very soon came upon a Gryphon, lying fast asleep in the +sun. (IF you don't know what a Gryphon is, look at the picture.) +`Up, lazy thing!' said the Queen, `and take this young lady to +see the Mock Turtle, and to hear his history. I must go back and +see after some executions I have ordered'; and she walked off, +leaving Alice alone with the Gryphon. Alice did not quite like +the look of the creature, but on the whole she thought it would +be quite as safe to stay with it as to go after that savage +Queen: so she waited. + + The Gryphon sat up and rubbed its eyes: then it watched the +Queen till she was out of sight: then it chuckled. `What fun!' +said the Gryphon, half to itself, half to Alice. + + `What IS the fun?' said Alice. + + `Why, SHE,' said the Gryphon. `It's all her fancy, that: they +never executes nobody, you know. Come on!' + + `Everybody says "come on!" here,' thought Alice, as she went +slowly after it: `I never was so ordered about in all my life, +never!' + + They had not gone far before they saw the Mock Turtle in the +distance, sitting sad and lonely on a little ledge of rock, and, +as they came nearer, Alice could hear him sighing as if his heart +would break. She pitied him deeply. `What is his sorrow?' she +asked the Gryphon, and the Gryphon answered, very nearly in the +same words as before, `It's all his fancy, that: he hasn't got +no sorrow, you know. Come on!' + + So they went up to the Mock Turtle, who looked at them with +large eyes full of tears, but said nothing. + + `This here young lady,' said the Gryphon, `she wants for to +know your history, she do.' + + `I'll tell it her,' said the Mock Turtle in a deep, hollow +tone: `sit down, both of you, and don't speak a word till I've +finished.' + + So they sat down, and nobody spoke for some minutes. Alice +thought to herself, `I don't see how he can EVEN finish, if he +doesn't begin.' But she waited patiently. + + `Once,' said the Mock Turtle at last, with a deep sigh, `I was +a real Turtle.' + + These words were followed by a very long silence, broken only +by an occasional exclamation of `Hjckrrh!' from the Gryphon, and +the constant heavy sobbing of the Mock Turtle. Alice was very +nearly getting up and saying, `Thank you, sir, for your +interesting story,' but she could not help thinking there MUST be +more to come, so she sat still and said nothing. + + `When we were little,' the Mock Turtle went on at last, more +calmly, though still sobbing a little now and then, `we went to +school in the sea. The master was an old Turtle--we used to call +him Tortoise--' + + `Why did you call him Tortoise, if he wasn't one?' Alice asked. + + `We called him Tortoise because he taught us,' said the Mock +Turtle angrily: `really you are very dull!' + + `You ought to be ashamed of yourself for asking such a simple +question,' added the Gryphon; and then they both sat silent and +looked at poor Alice, who felt ready to sink into the earth. At +last the Gryphon said to the Mock Turtle, `Drive on, old fellow! +Don't be all day about it!' and he went on in these words: + + `Yes, we went to school in the sea, though you mayn't believe +it--' + + `I never said I didn't!' interrupted Alice. + + `You did,' said the Mock Turtle. + + `Hold your tongue!' added the Gryphon, before Alice could speak +again. The Mock Turtle went on. + + `We had the best of educations--in fact, we went to school +every day--' + + `I'VE been to a day-school, too,' said Alice; `you needn't be +so proud as all that.' + + `With extras?' asked the Mock Turtle a little anxiously. + + `Yes,' said Alice, `we learned French and music.' + + `And washing?' said the Mock Turtle. + + `Certainly not!' said Alice indignantly. + + `Ah! then yours wasn't a really good school,' said the Mock +Turtle in a tone of great relief. `Now at OURS they had at the +end of the bill, "French, music, AND WASHING--extra."' + + `You couldn't have wanted it much,' said Alice; `living at the +bottom of the sea.' + + `I couldn't afford to learn it.' said the Mock Turtle with a +sigh. `I only took the regular course.' + + `What was that?' inquired Alice. + + `Reeling and Writhing, of course, to begin with,' the Mock +Turtle replied; `and then the different branches of Arithmetic-- +Ambition, Distraction, Uglification, and Derision.' + + `I never heard of "Uglification,"' Alice ventured to say. `What +is it?' + + The Gryphon lifted up both its paws in surprise. `What! Never +heard of uglifying!' it exclaimed. `You know what to beautify +is, I suppose?' + + `Yes,' said Alice doubtfully: `it means--to--make--anything-- +prettier.' + + `Well, then,' the Gryphon went on, `if you don't know what to +uglify is, you ARE a simpleton.' + + Alice did not feel encouraged to ask any more questions about +it, so she turned to the Mock Turtle, and said `What else had you +to learn?' + + `Well, there was Mystery,' the Mock Turtle replied, counting +off the subjects on his flappers, `--Mystery, ancient and modern, +with Seaography: then Drawling--the Drawling-master was an old +conger-eel, that used to come once a week: HE taught us +Drawling, Stretching, and Fainting in Coils.' + + `What was THAT like?' said Alice. + + `Well, I can't show it you myself,' the Mock Turtle said: `I'm +too stiff. And the Gryphon never learnt it.' + + `Hadn't time,' said the Gryphon: `I went to the Classics +master, though. He was an old crab, HE was.' + + `I never went to him,' the Mock Turtle said with a sigh: `he +taught Laughing and Grief, they used to say.' + + `So he did, so he did,' said the Gryphon, sighing in his turn; +and both creatures hid their faces in their paws. + + `And how many hours a day did you do lessons?' said Alice, in a +hurry to change the subject. + + `Ten hours the first day,' said the Mock Turtle: `nine the +next, and so on.' + + `What a curious plan!' exclaimed Alice. + + `That's the reason they're called lessons,' the Gryphon +remarked: `because they lessen from day to day.' + + This was quite a new idea to Alice, and she thought it over a +little before she made her next remark. `Then the eleventh day +must have been a holiday?' + + `Of course it was,' said the Mock Turtle. + + `And how did you manage on the twelfth?' Alice went on eagerly. + + `That's enough about lessons,' the Gryphon interrupted in a +very decided tone: `tell her something about the games now.' + + + + CHAPTER X + + The Lobster Quadrille + + + The Mock Turtle sighed deeply, and drew the back of one flapper +across his eyes. He looked at Alice, and tried to speak, but for +a minute or two sobs choked his voice. `Same as if he had a bone +in his throat,' said the Gryphon: and it set to work shaking him +and punching him in the back. At last the Mock Turtle recovered +his voice, and, with tears running down his cheeks, he went on +again:-- + + `You may not have lived much under the sea--' (`I haven't,' +said Alice)--`and perhaps you were never even introduced to a lobster--' +(Alice began to say `I once tasted--' but checked herself hastily, +and said `No, never') `--so you can have no idea what a delightful +thing a Lobster Quadrille is!' + + `No, indeed,' said Alice. `What sort of a dance is it?' + + `Why,' said the Gryphon, `you first form into a line along the +sea-shore--' + + `Two lines!' cried the Mock Turtle. `Seals, turtles, salmon, +and so on; then, when you've cleared all the jelly-fish out of +the way--' + + `THAT generally takes some time,' interrupted the Gryphon. + + `--you advance twice--' + + `Each with a lobster as a partner!' cried the Gryphon. + + `Of course,' the Mock Turtle said: `advance twice, set to +partners--' + + `--change lobsters, and retire in same order,' continued the +Gryphon. + + `Then, you know,' the Mock Turtle went on, `you throw the--' + + `The lobsters!' shouted the Gryphon, with a bound into the air. + + `--as far out to sea as you can--' + + `Swim after them!' screamed the Gryphon. + + `Turn a somersault in the sea!' cried the Mock Turtle, +capering wildly about. + + `Back to land again, and that's all the first figure,' said the +Mock Turtle, suddenly dropping his voice; and the two creatures, +who had been jumping about like mad things all this time, sat +down again very sadly and quietly, and looked at Alice. + + `It must be a very pretty dance,' said Alice timidly. + + `Would you like to see a little of it?' said the Mock Turtle. + + `Very much indeed,' said Alice. + + `Come, let's try the first figure!' said the Mock Turtle to the +Gryphon. `We can do without lobsters, you know. Which shall +sing?' + + `Oh, YOU sing,' said the Gryphon. `I've forgotten the words.' + + So they began solemnly dancing round and round Alice, every now +and then treading on her toes when they passed too close, and +waving their forepaws to mark the time, while the Mock Turtle +sang this, very slowly and sadly:-- + + +`"Will you walk a little faster?" said a whiting to a snail. +"There's a porpoise close behind us, and he's treading on my + tail. +See how eagerly the lobsters and the turtles all advance! +They are waiting on the shingle--will you come and join the +dance? + +Will you, won't you, will you, won't you, will you join the +dance? +Will you, won't you, will you, won't you, won't you join the +dance? + + +"You can really have no notion how delightful it will be +When they take us up and throw us, with the lobsters, out to + 6sea!" +But the snail replied "Too far, too far!" and gave a look + 7askance-- +Said he thanked the whiting kindly, but he would not join the + dance. + Would not, could not, would not, could not, would not join + the dance. + Would not, could not, would not, could not, could not join + the dance. + +`"What matters it how far we go?" his scaly friend replied. +"There is another shore, you know, upon the other side. +The further off from England the nearer is to France-- +Then turn not pale, beloved snail, but come and join the dance. + + Will you, won't you, will you, won't you, will you join the + dance? + Will you, won't you, will you, won't you, won't you join the + dance?"' + + + + `Thank you, it's a very interesting dance to watch,' said +Alice, feeling very glad that it was over at last: `and I do so +like that curious song about the whiting!' + + `Oh, as to the whiting,' said the Mock Turtle, `they--you've +seen them, of course?' + + `Yes,' said Alice, `I've often seen them at dinn--' she +checked herself hastily. + + `I don't know where Dinn may be,' said the Mock Turtle, `but +if you've seen them so often, of course you know what they're +like.' + + `I believe so,' Alice replied thoughtfully. `They have their +tails in their mouths--and they're all over crumbs.' + + `You're wrong about the crumbs,' said the Mock Turtle: +`crumbs would all wash off in the sea. But they HAVE their tails +in their mouths; and the reason is--' here the Mock Turtle +yawned and shut his eyes.--`Tell her about the reason and all +that,' he said to the Gryphon. + + `The reason is,' said the Gryphon, `that they WOULD go with +the lobsters to the dance. So they got thrown out to sea. So +they had to fall a long way. So they got their tails fast in +their mouths. So they couldn't get them out again. That's all.' + + `Thank you,' said Alice, `it's very interesting. I never knew +so much about a whiting before.' + + `I can tell you more than that, if you like,' said the +Gryphon. `Do you know why it's called a whiting?' + + `I never thought about it,' said Alice. `Why?' + + `IT DOES THE BOOTS AND SHOES.' the Gryphon replied very +solemnly. + + Alice was thoroughly puzzled. `Does the boots and shoes!' she +repeated in a wondering tone. + + `Why, what are YOUR shoes done with?' said the Gryphon. `I +mean, what makes them so shiny?' + + Alice looked down at them, and considered a little before she +gave her answer. `They're done with blacking, I believe.' + + `Boots and shoes under the sea,' the Gryphon went on in a deep +voice, `are done with a whiting. Now you know.' + + `And what are they made of?' Alice asked in a tone of great +curiosity. + + `Soles and eels, of course,' the Gryphon replied rather +impatiently: `any shrimp could have told you that.' + + `If I'd been the whiting,' said Alice, whose thoughts were +still running on the song, `I'd have said to the porpoise, "Keep +back, please: we don't want YOU with us!"' + + `They were obliged to have him with them,' the Mock Turtle +said: `no wise fish would go anywhere without a porpoise.' + + `Wouldn't it really?' said Alice in a tone of great surprise. + + `Of course not,' said the Mock Turtle: `why, if a fish came +to ME, and told me he was going a journey, I should say "With +what porpoise?"' + + `Don't you mean "purpose"?' said Alice. + + `I mean what I say,' the Mock Turtle replied in an offended +tone. And the Gryphon added `Come, let's hear some of YOUR +adventures.' + + `I could tell you my adventures--beginning from this morning,' +said Alice a little timidly: `but it's no use going back to +yesterday, because I was a different person then.' + + `Explain all that,' said the Mock Turtle. + + `No, no! The adventures first,' said the Gryphon in an +impatient tone: `explanations take such a dreadful time.' + + So Alice began telling them her adventures from the time when +she first saw the White Rabbit. She was a little nervous about +it just at first, the two creatures got so close to her, one on +each side, and opened their eyes and mouths so VERY wide, but she +gained courage as she went on. Her listeners were perfectly +quiet till she got to the part about her repeating `YOU ARE OLD, +FATHER WILLIAM,' to the Caterpillar, and the words all coming +different, and then the Mock Turtle drew a long breath, and said +`That's very curious.' + + `It's all about as curious as it can be,' said the Gryphon. + + `It all came different!' the Mock Turtle repeated +thoughtfully. `I should like to hear her try and repeat +something now. Tell her to begin.' He looked at the Gryphon as +if he thought it had some kind of authority over Alice. + + `Stand up and repeat "'TIS THE VOICE OF THE SLUGGARD,"' said +the Gryphon. + + `How the creatures order one about, and make one repeat +lessons!' thought Alice; `I might as well be at school at once.' +However, she got up, and began to repeat it, but her head was so +full of the Lobster Quadrille, that she hardly knew what she was +saying, and the words came very queer indeed:-- + + `'Tis the voice of the Lobster; I heard him declare, + "You have baked me too brown, I must sugar my hair." + As a duck with its eyelids, so he with his nose + Trims his belt and his buttons, and turns out his toes.' + + [later editions continued as follows + When the sands are all dry, he is gay as a lark, + And will talk in contemptuous tones of the Shark, + But, when the tide rises and sharks are around, + His voice has a timid and tremulous sound.] + + `That's different from what I used to say when I was a child,' +said the Gryphon. + + `Well, I never heard it before,' said the Mock Turtle; `but it +sounds uncommon nonsense.' + + Alice said nothing; she had sat down with her face in her +hands, wondering if anything would EVER happen in a natural way +again. + + `I should like to have it explained,' said the Mock Turtle. + + `She can't explain it,' said the Gryphon hastily. `Go on with +the next verse.' + + `But about his toes?' the Mock Turtle persisted. `How COULD +he turn them out with his nose, you know?' + + `It's the first position in dancing.' Alice said; but was +dreadfully puzzled by the whole thing, and longed to change the +subject. + + `Go on with the next verse,' the Gryphon repeated impatiently: +`it begins "I passed by his garden."' + + Alice did not dare to disobey, though she felt sure it would +all come wrong, and she went on in a trembling voice:-- + + `I passed by his garden, and marked, with one eye, + How the Owl and the Panther were sharing a pie--' + + [later editions continued as follows + The Panther took pie-crust, and gravy, and meat, + While the Owl had the dish as its share of the treat. + When the pie was all finished, the Owl, as a boon, + Was kindly permitted to pocket the spoon: + While the Panther received knife and fork with a growl, + And concluded the banquet--] + + `What IS the use of repeating all that stuff,' the Mock Turtle +interrupted, `if you don't explain it as you go on? It's by far +the most confusing thing I ever heard!' + + `Yes, I think you'd better leave off,' said the Gryphon: and +Alice was only too glad to do so. + + `Shall we try another figure of the Lobster Quadrille?' the +Gryphon went on. `Or would you like the Mock Turtle to sing you +a song?' + + `Oh, a song, please, if the Mock Turtle would be so kind,' +Alice replied, so eagerly that the Gryphon said, in a rather +offended tone, `Hm! No accounting for tastes! Sing her "Turtle +Soup," will you, old fellow?' + + The Mock Turtle sighed deeply, and began, in a voice sometimes +choked with sobs, to sing this:-- + + + `Beautiful Soup, so rich and green, + Waiting in a hot tureen! + Who for such dainties would not stoop? + Soup of the evening, beautiful Soup! + Soup of the evening, beautiful Soup! + Beau--ootiful Soo--oop! + Beau--ootiful Soo--oop! + Soo--oop of the e--e--evening, + Beautiful, beautiful Soup! + + `Beautiful Soup! Who cares for fish, + Game, or any other dish? + Who would not give all else for two p + ennyworth only of beautiful Soup? + Pennyworth only of beautiful Soup? + Beau--ootiful Soo--oop! + Beau--ootiful Soo--oop! + Soo--oop of the e--e--evening, + Beautiful, beauti--FUL SOUP!' + + `Chorus again!' cried the Gryphon, and the Mock Turtle had +just begun to repeat it, when a cry of `The trial's beginning!' +was heard in the distance. + + `Come on!' cried the Gryphon, and, taking Alice by the hand, +it hurried off, without waiting for the end of the song. + + `What trial is it?' Alice panted as she ran; but the Gryphon +only answered `Come on!' and ran the faster, while more and more +faintly came, carried on the breeze that followed them, the +melancholy words:-- + + `Soo--oop of the e--e--evening, + Beautiful, beautiful Soup!' + + + + CHAPTER XI + + Who Stole the Tarts? + + + The King and Queen of Hearts were seated on their throne when +they arrived, with a great crowd assembled about them--all sorts +of little birds and beasts, as well as the whole pack of cards: +the Knave was standing before them, in chains, with a soldier on +each side to guard him; and near the King was the White Rabbit, +with a trumpet in one hand, and a scroll of parchment in the +other. In the very middle of the court was a table, with a large +dish of tarts upon it: they looked so good, that it made Alice +quite hungry to look at them--`I wish they'd get the trial done,' +she thought, `and hand round the refreshments!' But there seemed +to be no chance of this, so she began looking at everything about +her, to pass away the time. + + Alice had never been in a court of justice before, but she had +read about them in books, and she was quite pleased to find that +she knew the name of nearly everything there. `That's the +judge,' she said to herself, `because of his great wig.' + + The judge, by the way, was the King; and as he wore his crown +over the wig, (look at the frontispiece if you want to see how he +did it,) he did not look at all comfortable, and it was certainly +not becoming. + + `And that's the jury-box,' thought Alice, `and those twelve +creatures,' (she was obliged to say `creatures,' you see, because +some of them were animals, and some were birds,) `I suppose they +are the jurors.' She said this last word two or three times over +to herself, being rather proud of it: for she thought, and +rightly too, that very few little girls of her age knew the +meaning of it at all. However, `jury-men' would have done just +as well. + + The twelve jurors were all writing very busily on slates. +`What are they doing?' Alice whispered to the Gryphon. `They +can't have anything to put down yet, before the trial's begun.' + + `They're putting down their names,' the Gryphon whispered in +reply, `for fear they should forget them before the end of the +trial.' + + `Stupid things!' Alice began in a loud, indignant voice, but +she stopped hastily, for the White Rabbit cried out, `Silence in +the court!' and the King put on his spectacles and looked +anxiously round, to make out who was talking. + + Alice could see, as well as if she were looking over their +shoulders, that all the jurors were writing down `stupid things!' +on their slates, and she could even make out that one of them +didn't know how to spell `stupid,' and that he had to ask his +neighbour to tell him. `A nice muddle their slates'll be in +before the trial's over!' thought Alice. + + One of the jurors had a pencil that squeaked. This of course, +Alice could not stand, and she went round the court and got +behind him, and very soon found an opportunity of taking it +away. She did it so quickly that the poor little juror (it was +Bill, the Lizard) could not make out at all what had become of +it; so, after hunting all about for it, he was obliged to write +with one finger for the rest of the day; and this was of very +little use, as it left no mark on the slate. + + `Herald, read the accusation!' said the King. + + On this the White Rabbit blew three blasts on the trumpet, and +then unrolled the parchment scroll, and read as follows:-- + + `The Queen of Hearts, she made some tarts, + +All on a summer day: + The Knave of Hearts, he stole those tarts, + +And took them quite away!' + + `Consider your verdict,' the King said to the jury. + + `Not yet, not yet!' the Rabbit hastily interrupted. `There's +a great deal to come before that!' + + `Call the first witness,' said the King; and the White Rabbit +blew three blasts on the trumpet, and called out, `First +witness!' + + The first witness was the Hatter. He came in with a teacup in +one hand and a piece of bread-and-butter in the other. `I beg +pardon, your Majesty,' he began, `for bringing these in: but I +hadn't quite finished my tea when I was sent for.' + + `You ought to have finished,' said the King. `When did you +begin?' + + The Hatter looked at the March Hare, who had followed him into +the court, arm-in-arm with the Dormouse. `Fourteenth of March, I +think it was,' he said. + + `Fifteenth,' said the March Hare. + + `Sixteenth,' added the Dormouse. + + `Write that down,' the King said to the jury, and the jury +eagerly wrote down all three dates on their slates, and then +added them up, and reduced the answer to shillings and pence. + + `Take off your hat,' the King said to the Hatter. + + `It isn't mine,' said the Hatter. + + `Stolen!' the King exclaimed, turning to the jury, who +instantly made a memorandum of the fact. + + `I keep them to sell,' the Hatter added as an explanation; +`I've none of my own. I'm a hatter.' + + Here the Queen put on her spectacles, and began staring at the +Hatter, who turned pale and fidgeted. + + `Give your evidence,' said the King; `and don't be nervous, or +I'll have you executed on the spot.' + + This did not seem to encourage the witness at all: he kept +shifting from one foot to the other, looking uneasily at the +Queen, and in his confusion he bit a large piece out of his +teacup instead of the bread-and-butter. + + Just at this moment Alice felt a very curious sensation, which +puzzled her a good deal until she made out what it was: she was +beginning to grow larger again, and she thought at first she +would get up and leave the court; but on second thoughts she +decided to remain where she was as long as there was room for +her. + + `I wish you wouldn't squeeze so.' said the Dormouse, who was +sitting next to her. `I can hardly breathe.' + + `I can't help it,' said Alice very meekly: `I'm growing.' + + `You've no right to grow here,' said the Dormouse. + + `Don't talk nonsense,' said Alice more boldly: `you know +you're growing too.' + + `Yes, but I grow at a reasonable pace,' said the Dormouse: +`not in that ridiculous fashion.' And he got up very sulkily +and crossed over to the other side of the court. + + All this time the Queen had never left off staring at the +Hatter, and, just as the Dormouse crossed the court, she said to +one of the officers of the court, `Bring me the list of the +singers in the last concert!' on which the wretched Hatter +trembled so, that he shook both his shoes off. + + `Give your evidence,' the King repeated angrily, `or I'll have +you executed, whether you're nervous or not.' + + `I'm a poor man, your Majesty,' the Hatter began, in a +trembling voice, `--and I hadn't begun my tea--not above a week +or so--and what with the bread-and-butter getting so thin--and +the twinkling of the tea--' + + `The twinkling of the what?' said the King. + + `It began with the tea,' the Hatter replied. + + `Of course twinkling begins with a T!' said the King sharply. +`Do you take me for a dunce? Go on!' + + `I'm a poor man,' the Hatter went on, `and most things +twinkled after that--only the March Hare said--' + + `I didn't!' the March Hare interrupted in a great hurry. + + `You did!' said the Hatter. + + `I deny it!' said the March Hare. + + `He denies it,' said the King: `leave out that part.' + + `Well, at any rate, the Dormouse said--' the Hatter went on, +looking anxiously round to see if he would deny it too: but the +Dormouse denied nothing, being fast asleep. + + `After that,' continued the Hatter, `I cut some more bread- +and-butter--' + + `But what did the Dormouse say?' one of the jury asked. + + `That I can't remember,' said the Hatter. + + `You MUST remember,' remarked the King, `or I'll have you +executed.' + + The miserable Hatter dropped his teacup and bread-and-butter, +and went down on one knee. `I'm a poor man, your Majesty,' he +began. + + `You're a very poor speaker,' said the King. + + Here one of the guinea-pigs cheered, and was immediately +suppressed by the officers of the court. (As that is rather a +hard word, I will just explain to you how it was done. They had +a large canvas bag, which tied up at the mouth with strings: +into this they slipped the guinea-pig, head first, and then sat +upon it.) + + `I'm glad I've seen that done,' thought Alice. `I've so often +read in the newspapers, at the end of trials, "There was some +attempts at applause, which was immediately suppressed by the +officers of the court," and I never understood what it meant +till now.' + + `If that's all you know about it, you may stand down,' +continued the King. + + `I can't go no lower,' said the Hatter: `I'm on the floor, as +it is.' + + `Then you may SIT down,' the King replied. + + Here the other guinea-pig cheered, and was suppressed. + + `Come, that finished the guinea-pigs!' thought Alice. `Now we +shall get on better.' + + `I'd rather finish my tea,' said the Hatter, with an anxious +look at the Queen, who was reading the list of singers. + + `You may go,' said the King, and the Hatter hurriedly left the +court, without even waiting to put his shoes on. + + `--and just take his head off outside,' the Queen added to one +of the officers: but the Hatter was out of sight before the +officer could get to the door. + + `Call the next witness!' said the King. + + The next witness was the Duchess's cook. She carried the +pepper-box in her hand, and Alice guessed who it was, even before +she got into the court, by the way the people near the door began +sneezing all at once. + + `Give your evidence,' said the King. + + `Shan't,' said the cook. + + The King looked anxiously at the White Rabbit, who said in a +low voice, `Your Majesty must cross-examine THIS witness.' + + `Well, if I must, I must,' the King said, with a melancholy +air, and, after folding his arms and frowning at the cook till +his eyes were nearly out of sight, he said in a deep voice, `What +are tarts made of?' + + `Pepper, mostly,' said the cook. + + `Treacle,' said a sleepy voice behind her. + + `Collar that Dormouse,' the Queen shrieked out. `Behead that +Dormouse! Turn that Dormouse out of court! Suppress him! Pinch +him! Off with his whiskers!' + + For some minutes the whole court was in confusion, getting the +Dormouse turned out, and, by the time they had settled down +again, the cook had disappeared. + + `Never mind!' said the King, with an air of great relief. +`Call the next witness.' And he added in an undertone to the +Queen, `Really, my dear, YOU must cross-examine the next witness. +It quite makes my forehead ache!' + + Alice watched the White Rabbit as he fumbled over the list, +feeling very curious to see what the next witness would be like, +`--for they haven't got much evidence YET,' she said to herself. +Imagine her surprise, when the White Rabbit read out, at the top +of his shrill little voice, the name `Alice!' + + + + CHAPTER XII + + Alice's Evidence + + + `Here!' cried Alice, quite forgetting in the flurry of the +moment how large she had grown in the last few minutes, and she +jumped up in such a hurry that she tipped over the jury-box with +the edge of her skirt, upsetting all the jurymen on to the heads +of the crowd below, and there they lay sprawling about, reminding +her very much of a globe of goldfish she had accidentally upset +the week before. + + `Oh, I BEG your pardon!' she exclaimed in a tone of great +dismay, and began picking them up again as quickly as she could, +for the accident of the goldfish kept running in her head, and +she had a vague sort of idea that they must be collected at once +and put back into the jury-box, or they would die. + + `The trial cannot proceed,' said the King in a very grave +voice, `until all the jurymen are back in their proper places-- +ALL,' he repeated with great emphasis, looking hard at Alice as +he said do. + + Alice looked at the jury-box, and saw that, in her haste, she +had put the Lizard in head downwards, and the poor little thing +was waving its tail about in a melancholy way, being quite unable +to move. She soon got it out again, and put it right; `not that +it signifies much,' she said to herself; `I should think it +would be QUITE as much use in the trial one way up as the other.' + + As soon as the jury had a little recovered from the shock of +being upset, and their slates and pencils had been found and +handed back to them, they set to work very diligently to write +out a history of the accident, all except the Lizard, who seemed +too much overcome to do anything but sit with its mouth open, +gazing up into the roof of the court. + + `What do you know about this business?' the King said to +Alice. + + `Nothing,' said Alice. + + `Nothing WHATEVER?' persisted the King. + + `Nothing whatever,' said Alice. + + `That's very important,' the King said, turning to the jury. +They were just beginning to write this down on their slates, when +the White Rabbit interrupted: `UNimportant, your Majesty means, +of course,' he said in a very respectful tone, but frowning and +making faces at him as he spoke. + + `UNimportant, of course, I meant,' the King hastily said, and +went on to himself in an undertone, `important--unimportant-- +unimportant--important--' as if he were trying which word +sounded best. + + Some of the jury wrote it down `important,' and some +`unimportant.' Alice could see this, as she was near enough to +look over their slates; `but it doesn't matter a bit,' she +thought to herself. + + At this moment the King, who had been for some time busily +writing in his note-book, cackled out `Silence!' and read out +from his book, `Rule Forty-two. ALL PERSONS MORE THAN A MILE +HIGH TO LEAVE THE COURT.' + + Everybody looked at Alice. + + `I'M not a mile high,' said Alice. + + `You are,' said the King. + + `Nearly two miles high,' added the Queen. + + `Well, I shan't go, at any rate,' said Alice: `besides, +that's not a regular rule: you invented it just now.' + + `It's the oldest rule in the book,' said the King. + + `Then it ought to be Number One,' said Alice. + + The King turned pale, and shut his note-book hastily. +`Consider your verdict,' he said to the jury, in a low, trembling +voice. + + `There's more evidence to come yet, please your Majesty,' said +the White Rabbit, jumping up in a great hurry; `this paper has +just been picked up.' + + `What's in it?' said the Queen. + + `I haven't opened it yet,' said the White Rabbit, `but it seems +to be a letter, written by the prisoner to--to somebody.' + + `It must have been that,' said the King, `unless it was +written to nobody, which isn't usual, you know.' + + `Who is it directed to?' said one of the jurymen. + + `It isn't directed at all,' said the White Rabbit; `in fact, +there's nothing written on the OUTSIDE.' He unfolded the paper +as he spoke, and added `It isn't a letter, after all: it's a set +of verses.' + + `Are they in the prisoner's handwriting?' asked another of +they jurymen. + + `No, they're not,' said the White Rabbit, `and that's the +queerest thing about it.' (The jury all looked puzzled.) + + `He must have imitated somebody else's hand,' said the King. +(The jury all brightened up again.) + + `Please your Majesty,' said the Knave, `I didn't write it, and +they can't prove I did: there's no name signed at the end.' + + `If you didn't sign it,' said the King, `that only makes the +matter worse. You MUST have meant some mischief, or else you'd +have signed your name like an honest man.' + + There was a general clapping of hands at this: it was the +first really clever thing the King had said that day. + + `That PROVES his guilt,' said the Queen. + + `It proves nothing of the sort!' said Alice. `Why, you don't +even know what they're about!' + + `Read them,' said the King. + + The White Rabbit put on his spectacles. `Where shall I begin, +please your Majesty?' he asked. + + `Begin at the beginning,' the King said gravely, `and go on +till you come to the end: then stop.' + + These were the verses the White Rabbit read:-- + + `They told me you had been to her, + +And mentioned me to him: + She gave me a good character, + +But said I could not swim. + + He sent them word I had not gone + +(We know it to be true): + If she should push the matter on, + +What would become of you? + + I gave her one, they gave him two, + +You gave us three or more; + They all returned from him to you, + +Though they were mine before. + + If I or she should chance to be + +Involved in this affair, + He trusts to you to set them free, + +Exactly as we were. + + My notion was that you had been + +(Before she had this fit) + An obstacle that came between + +Him, and ourselves, and it. + + Don't let him know she liked them best, + +For this must ever be + A secret, kept from all the rest, + +Between yourself and me.' + + `That's the most important piece of evidence we've heard yet,' +said the King, rubbing his hands; `so now let the jury--' + + `If any one of them can explain it,' said Alice, (she had +grown so large in the last few minutes that she wasn't a bit +afraid of interrupting him,) `I'll give him sixpence. _I_ don't +believe there's an atom of meaning in it.' + + The jury all wrote down on their slates, `SHE doesn't believe +there's an atom of meaning in it,' but none of them attempted to +explain the paper. + + `If there's no meaning in it,' said the King, `that saves a +world of trouble, you know, as we needn't try to find any. And +yet I don't know,' he went on, spreading out the verses on his +knee, and looking at them with one eye; `I seem to see some +meaning in them, after all. "--SAID I COULD NOT SWIM--" you +can't swim, can you?' he added, turning to the Knave. + + The Knave shook his head sadly. `Do I look like it?' he said. +(Which he certainly did NOT, being made entirely of cardboard.) + + `All right, so far,' said the King, and he went on muttering +over the verses to himself: `"WE KNOW IT TO BE TRUE--" that's +the jury, of course-- "I GAVE HER ONE, THEY GAVE HIM TWO--" why, +that must be what he did with the tarts, you know--' + + `But, it goes on "THEY ALL RETURNED FROM HIM TO YOU,"' said +Alice. + + `Why, there they are!' said the King triumphantly, pointing to +the tarts on the table. `Nothing can be clearer than THAT. +Then again--"BEFORE SHE HAD THIS FIT--" you never had fits, my +dear, I think?' he said to the Queen. + + `Never!' said the Queen furiously, throwing an inkstand at the +Lizard as she spoke. (The unfortunate little Bill had left off +writing on his slate with one finger, as he found it made no +mark; but he now hastily began again, using the ink, that was +trickling down his face, as long as it lasted.) + + `Then the words don't FIT you,' said the King, looking round +the court with a smile. There was a dead silence. + + `It's a pun!' the King added in an offended tone, and +everybody laughed, `Let the jury consider their verdict,' the +King said, for about the twentieth time that day. + + `No, no!' said the Queen. `Sentence first--verdict afterwards.' + + `Stuff and nonsense!' said Alice loudly. `The idea of having +the sentence first!' + + `Hold your tongue!' said the Queen, turning purple. + + `I won't!' said Alice. + + `Off with her head!' the Queen shouted at the top of her voice. +Nobody moved. + + `Who cares for you?' said Alice, (she had grown to her full +size by this time.) `You're nothing but a pack of cards!' + + At this the whole pack rose up into the air, and came flying +down upon her: she gave a little scream, half of fright and half +of anger, and tried to beat them off, and found herself lying on +the bank, with her head in the lap of her sister, who was gently +brushing away some dead leaves that had fluttered down from the +trees upon her face. + + `Wake up, Alice dear!' said her sister; `Why, what a long +sleep you've had!' + + `Oh, I've had such a curious dream!' said Alice, and she told +her sister, as well as she could remember them, all these strange +Adventures of hers that you have just been reading about; and +when she had finished, her sister kissed her, and said, `It WAS a +curious dream, dear, certainly: but now run in to your tea; it's +getting late.' So Alice got up and ran off, thinking while she +ran, as well she might, what a wonderful dream it had been. + + But her sister sat still just as she left her, leaning her +head on her hand, watching the setting sun, and thinking of +little Alice and all her wonderful Adventures, till she too began +dreaming after a fashion, and this was her dream:-- + + First, she dreamed of little Alice herself, and once again the +tiny hands were clasped upon her knee, and the bright eager eyes +were looking up into hers--she could hear the very tones of her +voice, and see that queer little toss of her head to keep back +the wandering hair that WOULD always get into her eyes--and +still as she listened, or seemed to listen, the whole place +around her became alive the strange creatures of her little +sister's dream. + + The long grass rustled at her feet as the White Rabbit hurried +by--the frightened Mouse splashed his way through the +neighbouring pool--she could hear the rattle of the teacups as +the March Hare and his friends shared their never-ending meal, +and the shrill voice of the Queen ordering off her unfortunate +guests to execution--once more the pig-baby was sneezing on the +Duchess's knee, while plates and dishes crashed around it--once +more the shriek of the Gryphon, the squeaking of the Lizard's +slate-pencil, and the choking of the suppressed guinea-pigs, +filled the air, mixed up with the distant sobs of the miserable +Mock Turtle. + + So she sat on, with closed eyes, and half believed herself in +Wonderland, though she knew she had but to open them again, and +all would change to dull reality--the grass would be only +rustling in the wind, and the pool rippling to the waving of the +reeds--the rattling teacups would change to tinkling sheep- +bells, and the Queen's shrill cries to the voice of the shepherd +boy--and the sneeze of the baby, the shriek of the Gryphon, and +all thy other queer noises, would change (she knew) to the +confused clamour of the busy farm-yard--while the lowing of the +cattle in the distance would take the place of the Mock Turtle's +heavy sobs. + + Lastly, she pictured to herself how this same little sister of +hers would, in the after-time, be herself a grown woman; and how +she would keep, through all her riper years, the simple and +loving heart of her childhood: and how she would gather about +her other little children, and make THEIR eyes bright and eager +with many a strange tale, perhaps even with the dream of +Wonderland of long ago: and how she would feel with all their +simple sorrows, and find a pleasure in all their simple joys, +remembering her own child-life, and the happy summer days. + + THE END + \ No newline at end of file