From f7bdc269539b38c5716a076d0985e3bba1882dc9 Mon Sep 17 00:00:00 2001 From: Thastertyn Date: Sun, 6 Apr 2025 23:28:30 +0200 Subject: [PATCH] Final update including testing, final model, new data sources, updated notebook for mlp and logistic regression and final keyboard code --- .gitignore | 4 +- .python-version | 2 +- README.md | 1 + TESTING.md | 13 + app/constants.py | 6 + app/core/config.py | 2 +- app/keyboard.py | 2 +- app/predictor.py | 56 + app/ui/current_word.py | 54 + app/ui/key.py | 69 +- app/ui/keyboard.py | 70 + app/ui/scene.py | 99 +- app/ui/view.py | 5 +- app/utils.py | 17 +- main.py | 4 +- model.onnx | Bin 0 -> 313170 bytes model/README.md | 63 +- model/clear.sh | 3 + model/data/all_cleaned_words_shuffled.txt | 216339 +++++++++++++++++++ model/data/all_words.txt | 155467 +++++++++++++ model/data/all_words.txt.bak | 63913 ++++++ model/data/beloved.txt | 6173 + model/data/myth_of_sisyphus.txt | 4941 + model/logistic.ipynb | 339 + model/mlp.ipynb | 601 + model/mlp_weights.pth | Bin 315056 -> 0 bytes model/notebook.ipynb | 475 - model/out.txt | 5817 - model/predictor.pth | Bin 317201 -> 0 bytes model/training_results/raw_2.txt | 1024 + model/training_results/silu.json | 3782 + model/transform.py | 19 +- pyproject.toml | 6 +- uv.lock | 102 + 34 files changed, 453042 insertions(+), 6426 deletions(-) create mode 100644 TESTING.md create mode 100644 app/constants.py create mode 100644 app/predictor.py create mode 100644 app/ui/current_word.py create mode 100644 app/ui/keyboard.py create mode 100644 model.onnx create mode 100755 model/clear.sh create mode 100644 model/data/all_cleaned_words_shuffled.txt create mode 100644 model/data/all_words.txt.bak create mode 100644 model/data/beloved.txt create mode 100644 model/data/myth_of_sisyphus.txt create mode 100644 model/logistic.ipynb create mode 100644 model/mlp.ipynb delete mode 100644 model/mlp_weights.pth delete mode 100644 model/notebook.ipynb delete mode 100644 model/out.txt delete mode 100644 model/predictor.pth create mode 100644 model/training_results/raw_2.txt create mode 100644 model/training_results/silu.json diff --git a/.gitignore b/.gitignore index dd60191..c78cc45 100644 --- a/.gitignore +++ b/.gitignore @@ -168,4 +168,6 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ -data.npy \ No newline at end of file +*.npy +*.pth +*.onnx \ No newline at end of file diff --git a/.python-version b/.python-version index e4fba21..cc1923a 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.12 +3.8 diff --git a/README.md b/README.md index e69de29..1927e98 100644 --- a/README.md +++ b/README.md @@ -0,0 +1 @@ +# Omega - Keyboard app \ No newline at end of file diff --git a/TESTING.md b/TESTING.md new file mode 100644 index 0000000..eeed620 --- /dev/null +++ b/TESTING.md @@ -0,0 +1,13 @@ +# Fixed bugs +1. Incorrect Hitbox Behavior After Key Scaling + - Due to a forgotten reset of the z-index of keys, sometimes a key may appear behind another one, yet still the old key gets clicked + +2. Click propagation + - On click even would propagate further through the app, meaning 2 keys could get pressed at once + +3. Invalid model crashes the app + - If a file path to model doesn't point to a true model, the app would crash + +# Tests +1. Config from environment (or `.env`) gets parsed - Defaults get used, but are overwritten if .env is used +2. Space properly clears buffers - Pressing space key clears both prediction and word box buffers \ No newline at end of file diff --git a/app/constants.py b/app/constants.py new file mode 100644 index 0000000..ba8529c --- /dev/null +++ b/app/constants.py @@ -0,0 +1,6 @@ +CONTEXT_SIZE = 10 +ALPHABET = list("abcdefghijklmnopqrstuvwxyz") +VOCAB_SIZE = len(ALPHABET) + 1 # +1 for unknown +UNKNOWN_IDX = VOCAB_SIZE - 1 + +SINGLE_KEY_PROBABILITY = 1 / 26 diff --git a/app/core/config.py b/app/core/config.py index 9902c50..7e50b8d 100644 --- a/app/core/config.py +++ b/app/core/config.py @@ -14,7 +14,7 @@ class Settings(BaseSettings): APP_NAME: str = "Omega" VERBOSITY: Literal["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"] = "INFO" - MODEL_PATH: FilePath = Path("./model/predictor.pth") + MODEL_PATH: FilePath = Path("model.onnx") settings = Settings() diff --git a/app/keyboard.py b/app/keyboard.py index af97858..a66e3ed 100644 --- a/app/keyboard.py +++ b/app/keyboard.py @@ -7,7 +7,7 @@ from app.ui.view import KeyboardView from app.utils import setup_logger -class Keyboard(): +class KeyboardApplication(): def __init__(self): setup_logger() self.logger = logging.getLogger(__name__) diff --git a/app/predictor.py b/app/predictor.py new file mode 100644 index 0000000..46ab746 --- /dev/null +++ b/app/predictor.py @@ -0,0 +1,56 @@ +import onnxruntime +import numpy as np +import sys + +from app.core.config import settings +from app.constants import ALPHABET, CONTEXT_SIZE, SINGLE_KEY_PROBABILITY +from app.utils import tokenize + +import logging + +class KeyboardPredictor(): + def __init__(self): + self.logger = logging.getLogger(__name__) + self.buffer = "" + try: + self.session = onnxruntime.InferenceSession(settings.MODEL_PATH) + except onnxruntime.capi.onnxruntime_pybind11_state.InvalidProtobuf as e: + self.logger.critical("Invalid model found. Exiting...") + sys.exit(1) + + + def reset(self): + self.logger.info("Clearing prediction buffer") + self.buffer = "" + + def update(self, char: str): + self.logger.info("Adding new char '%s'", char) + # Remove the oldest character + # and append the current one + if len(self.buffer) == CONTEXT_SIZE: + self.buffer = self.buffer[1:] + self.buffer += char.lower() + + def __get_prediction(self) -> dict[str, float]: + """Returns all probabilities distribution over the next character.""" + tokenized = [tokenize("".join(self.buffer))] # shape: (1, context_size) + input_array = np.array(tokenized, dtype=np.int64) + + outputs = self.session.run(None, {"input": input_array}) + logits = outputs[0][0] # shape: (VOCAB_SIZE,) + + exp_logits = np.exp(logits - np.max(logits)) # numerical stability + probs = exp_logits / exp_logits.sum() + + return {char: probs[i] for i, char in enumerate(ALPHABET + ["?"])} + + def get_predictions(self) -> dict[str, float]: + """ + Returns keys that are most likely to be pressed next. + """ + self.logger.debug("Getting fresh predictions") + DROPOUT_PROBABILITY = 2 * SINGLE_KEY_PROBABILITY + + probs = self.__get_prediction() + probs = {char: prob for char, prob in probs.items() if prob > DROPOUT_PROBABILITY} + return probs diff --git a/app/ui/current_word.py b/app/ui/current_word.py new file mode 100644 index 0000000..6d237d2 --- /dev/null +++ b/app/ui/current_word.py @@ -0,0 +1,54 @@ +from PySide6.QtWidgets import QGraphicsRectItem, QGraphicsSimpleTextItem +from PySide6.QtGui import QFont, QFontMetricsF, QColor, QBrush + + +BACKGROUND_COLOR = QColor("white") +TEXT_SCALE_FACTOR = 0.4 # 40% of the width or height +Z_INDEX = 10 + + +class CurrentWordBox(QGraphicsRectItem): + def __init__(self): + super().__init__() + + self.word = "" + self.text = QGraphicsSimpleTextItem("", self) + self.text.setFlag(QGraphicsSimpleTextItem.ItemIgnoresTransformations, True) + + self.setBrush(QBrush(BACKGROUND_COLOR)) + self.setZValue(Z_INDEX) + + self.width = 0 + self.height = 0 + + def set_geometry(self, x: float, y: float, width: float, height: float): + self.width = width + self.height = height + self.setRect(0, 0, width, height) + self.setPos(x, y) + self.update_label_font() + + def update_word(self, next_char: str): + self.word += next_char + self.text.setText(self.word) + self.update_label_font() + + def clear(self): + self.word = "" + self.text.setText("") + self.update_label_font() + + def update_label_font(self): + min_dimension = min(self.width, self.height) + font_size = min_dimension * TEXT_SCALE_FACTOR + + font = QFont() + font.setPointSizeF(font_size) + self.text.setFont(font) + + metrics = QFontMetricsF(font) + text_rect = metrics.boundingRect(self.word) + + text_x = (self.width - text_rect.width()) / 2 + text_y = (self.height - text_rect.height()) / 2 + self.text.setPos(text_x, text_y) diff --git a/app/ui/key.py b/app/ui/key.py index ddf784f..9d32681 100644 --- a/app/ui/key.py +++ b/app/ui/key.py @@ -1,23 +1,45 @@ +import logging + from PySide6.QtWidgets import ( QGraphicsRectItem, QGraphicsSimpleTextItem, QGraphicsItem ) -from PySide6.QtGui import QBrush, QColor, QFont, QFontMetricsF +from PySide6.QtGui import QBrush, QColor, QFont, QFontMetricsF, QPen, Qt +from PySide6.QtCore import Signal, QObject, QTimer -class KeyItem(QGraphicsRectItem): - def __init__(self, label): - super().__init__() +NORMAL_COLOR = QColor("lightgray") +CLICKED_COLOR = QColor("darkgray") +TEXT_SCALE_FACTOR = 0.4 +CLICK_HIGHLIGHT_DURATION_MS = 100 +Z_INDEX_MULTIPLIER = 2.0 + +class KeyItem(QGraphicsRectItem, QObject): + clicked = Signal(str) + + def __init__(self, label: str): + QObject.__init__(self) + QGraphicsRectItem.__init__(self) + + self.logger = logging.getLogger(__name__) + + self.label = label + self.width = 0.0 + self.height = 0.0 + self.scale_factor = 1.0 + + self._reset_timer = QTimer() + self._reset_timer.setSingleShot(True) + self._reset_timer.timeout.connect(self.__reset_color) + self.text = QGraphicsSimpleTextItem(label, self) self.text.setFlag(QGraphicsItem.ItemIgnoresTransformations, True) - self.setBrush(QBrush(QColor("lightgray"))) + self.__normal_brush = QBrush(NORMAL_COLOR) + self.__click_brush = QBrush(CLICKED_COLOR) + self.setBrush(self.__normal_brush) - self.scale_factor = 1.0 - self.width = 0 - self.height = 0 - - def set_geometry(self, x, y, width, height): + def set_geometry(self, x: float, y: float, width: float, height: float): self.width = width self.height = height @@ -28,25 +50,34 @@ class KeyItem(QGraphicsRectItem): self.update_label_font() def update_label_font(self): - # Dynamically size font - font_size = min(self.width, self.height) * 0.4 + min_dimension = min(self.width, self.height) + font_size = min_dimension * TEXT_SCALE_FACTOR + font = QFont() font.setPointSizeF(font_size) self.text.setFont(font) - # Use font metrics for accurate bounding metrics = QFontMetricsF(font) text_rect = metrics.boundingRect(self.label) text_x = (self.width - text_rect.width()) / 2 - text_y = (self.height - text_rect.height()) / 2 # + metrics.ascent() - text_rect.height() - + text_y = (self.height - text_rect.height()) / 2 self.text.setPos(text_x, text_y) - def set_scale_factor(self, scale): - self.scale_factor = scale - self.setZValue(scale) + def set_scale_factor(self, scale: float): + scaled_z = scale * Z_INDEX_MULTIPLIER + self.scale_factor = scaled_z + self.setZValue(scaled_z) self.setScale(scale) def mousePressEvent(self, q_mouse_event): - print(self.label, "was clicked") + self.logger.info("%s was clicked", self.label) + self.clicked.emit(self.label) + self.__onclick_color() + + def __onclick_color(self): + self.setBrush(self.__click_brush) + self._reset_timer.start(CLICK_HIGHLIGHT_DURATION_MS) + + def __reset_color(self): + self.setBrush(self.__normal_brush) diff --git a/app/ui/keyboard.py b/app/ui/keyboard.py new file mode 100644 index 0000000..ad3bd2a --- /dev/null +++ b/app/ui/keyboard.py @@ -0,0 +1,70 @@ +from PySide6.QtCore import QSize, QRectF +from app.ui.key import KeyItem + + +class KeyboardLayout(): + def __init__(self, scene): + self.scene = scene + self.keys = {} + self.letter_rows = [ + "QWERTZUIOP", + "ASDFGHJKL", + "YXCVBNM", + ] + self.space_key = KeyItem("Space") + self.space_key.clicked.connect(lambda: self.on_key_clicked("Space")) + self.scene.addItem(self.space_key) + self.create_keys() + + # callback to be set by scene + self.key_pressed_callback = None + + def create_keys(self): + for row in self.letter_rows: + for char in row: + key = KeyItem(char) + key.clicked.connect(lambda c=char: self.on_key_clicked(c)) + self.scene.addItem(key) + self.keys[char] = key + + def layout_keys(self, view_size: QSize, top_offset: float = 0.0): + view_width = view_size.width() + view_height = view_size.height() + + padding = 10.0 + spacing = 6.0 + rows = self.letter_rows + [" "] + row_count = len(rows) + max_keys_in_row = max(len(row) for row in rows) + + total_spacing_x = (max_keys_in_row - 1) * spacing + total_spacing_y = (row_count - 1) * spacing + + available_width = view_width - 2 * padding - total_spacing_x + available_height = view_height - top_offset - 2 * padding - total_spacing_y + + key_width = available_width / max_keys_in_row + key_height = available_height / row_count + + y = top_offset + padding + for row in self.letter_rows: + x = padding + for char in row: + key = self.keys[char] + key.set_geometry(x, y, key_width, key_height) + x += key_width + spacing + y += key_height + spacing + + space_width = key_width * 7 + spacing * 6 + self.space_key.set_geometry(padding, y, space_width, key_height) + + def set_scale_factors(self, predictions: dict): + for key in self.keys.values(): + key.set_scale_factor(1.0) + for key, probability in predictions.items(): + if key.upper() in self.keys: + self.keys[key.upper()].set_scale_factor(1 + probability) + + def on_key_clicked(self, label: str): + if self.key_pressed_callback: + self.key_pressed_callback(label) diff --git a/app/ui/scene.py b/app/ui/scene.py index 83ea126..b03acfc 100644 --- a/app/ui/scene.py +++ b/app/ui/scene.py @@ -1,79 +1,52 @@ -from PySide6.QtWidgets import ( - QGraphicsScene -) -from PySide6.QtGui import QBrush, QColor -from PySide6.QtCore import QTimer, QRectF, QSize -import random +from PySide6.QtWidgets import QGraphicsScene +from PySide6.QtCore import QRectF, QSize + +from app.predictor import KeyboardPredictor +from app.ui.current_word import CurrentWordBox +from app.ui.keyboard import KeyboardLayout + + +WORD_BOX_HEIGHT_MODIFIER = 0.15 +WORD_BOX_PADDING_ALL_SIDES = 10 +WORD_BOX_MARGIN_BOTTOM = 20 -from app.ui.key import KeyItem class KeyboardScene(QGraphicsScene): def __init__(self): super().__init__() - self.keys = {} - self.letter_rows = [ - "QWERTYUIOP", - "ASDFGHJKL", - "ZXCVBNM", - ] - self.space_key = KeyItem("Space") - self.addItem(self.space_key) - self.timer = QTimer() - self.timer.timeout.connect(self.simulate_prediction) - self.timer.start(2000) - self.create_keys() + self.word_box = CurrentWordBox() + self.addItem(self.word_box) - def create_keys(self): - for row in self.letter_rows: - for char in row: - key = KeyItem(char) - self.addItem(key) - self.keys[char] = key + self.predictor = KeyboardPredictor() + + self.keyboard = KeyboardLayout(self) + self.keyboard.key_pressed_callback = self.on_key_clicked def layout_keys(self, view_size: QSize): view_width = view_size.width() view_height = view_size.height() - padding = 10.0 - spacing = 6.0 - max_scale = 2.0 + word_box_height = view_height * WORD_BOX_HEIGHT_MODIFIER + word_box_x = WORD_BOX_PADDING_ALL_SIDES + word_box_y = WORD_BOX_PADDING_ALL_SIDES + word_box_width = view_width - WORD_BOX_MARGIN_BOTTOM + word_box_height_adjusted = word_box_height - WORD_BOX_MARGIN_BOTTOM - rows = self.letter_rows + [" "] - row_count = len(rows) - max_keys_in_row = max(len(row) for row in rows) - - total_spacing_x = (max_keys_in_row - 1) * spacing - total_spacing_y = (row_count - 1) * spacing - - available_width = view_width - 2 * padding - total_spacing_x - available_height = view_height - 2 * padding - total_spacing_y - - key_width = available_width / max_keys_in_row - key_height = available_height / row_count - - y = padding - for row in self.letter_rows: - x = padding - for char in row: - key = self.keys[char] - key.set_geometry(x, y, key_width, key_height) - x += key_width + spacing - y += key_height + spacing - - # Space key layout - space_width = key_width * 7 + spacing * 6 - self.space_key.set_geometry(padding, y, space_width, key_height) + self.word_box.set_geometry( + word_box_x, word_box_y, word_box_width, word_box_height_adjusted + ) + self.keyboard.layout_keys(view_size, top_offset=word_box_height) self.setSceneRect(QRectF(0, 0, view_width, view_height)) - def simulate_prediction(self): - most_likely = random.choice(list(self.keys.keys())) - print(f"[Prediction] Most likely: {most_likely}") + def on_key_clicked(self, label: str): + if label == "Space": + self.word_box.clear() + self.predictor.reset() + self.keyboard.set_scale_factors({}) + return - for char, key in self.keys.items(): - if char == most_likely: - key.set_scale_factor(1.8) - key.setBrush(QBrush(QColor("orange"))) - else: - key.set_scale_factor(1.0) - key.setBrush(QBrush(QColor("lightgray"))) \ No newline at end of file + self.word_box.update_word(label) + self.predictor.update(label) + predictions = self.predictor.get_predictions() + self.keyboard.set_scale_factors(predictions) diff --git a/app/ui/view.py b/app/ui/view.py index 624b533..ed4c5e0 100644 --- a/app/ui/view.py +++ b/app/ui/view.py @@ -5,6 +5,7 @@ from PySide6.QtGui import QPainter from PySide6.QtCore import Qt from .scene import KeyboardScene +from app.core.config import settings class KeyboardView(QGraphicsView): def __init__(self): @@ -12,9 +13,9 @@ class KeyboardView(QGraphicsView): self.scene = KeyboardScene() self.setScene(self.scene) self.setRenderHint(QPainter.Antialiasing) - self.setWindowTitle("Dynamic Keyboard") + self.setWindowTitle(settings.APP_NAME) self.setAlignment(Qt.AlignLeft | Qt.AlignTop) - self.setMinimumSize(600, 200) # Sensible default + self.setMinimumSize(600, 300) def resizeEvent(self, event): super().resizeEvent(event) diff --git a/app/utils.py b/app/utils.py index 8e977d7..9749ba0 100644 --- a/app/utils.py +++ b/app/utils.py @@ -3,6 +3,11 @@ import logging from app.core.config import settings +from app.constants import CONTEXT_SIZE, UNKNOWN_IDX, ALPHABET + +char_to_index = {char: idx for idx, char in enumerate(ALPHABET)} + + def setup_logger(): logger = logging.getLogger() @@ -50,4 +55,14 @@ if sys.platform == "win32": hwnd, win32con.HWND_TOPMOST, 0, 0, 0, 0, win32con.SWP_NOMOVE | win32con.SWP_NOSIZE | win32con.SWP_NOACTIVATE - ) \ No newline at end of file + ) + + +def tokenize(text: str) -> list[int]: + """Convert last CONTEXT_SIZE chars to integer indices.""" + text = text.lower()[-CONTEXT_SIZE:] # trim to context length + padded = [' '] * (CONTEXT_SIZE - len(text)) + list(text) + return [ + char_to_index.get(c, UNKNOWN_IDX) + for c in padded + ] diff --git a/main.py b/main.py index 6901d2a..c42e72f 100644 --- a/main.py +++ b/main.py @@ -1,7 +1,7 @@ import sys -from app.keyboard import Keyboard +from app.keyboard import KeyboardApplication if __name__ == "__main__": - keyboard = Keyboard() + keyboard = KeyboardApplication() sys.exit(keyboard.run()) diff --git a/model.onnx b/model.onnx new file mode 100644 index 0000000000000000000000000000000000000000..66d6f7cfb701abd81333623b192454081645dc22 GIT binary patch literal 313170 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�Pl3BzbS< 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�^|(Gveb4(fG%8 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

y`wl{3dvlT#ew|jitC%*PIM3@&dCpr$~EF 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

y>c`(v>D~D&VnzTDqQq`@u`nPDN+=!L>;v#l(= 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 0) print total / count }' 1000_words.txt -``` ## Sources 1. Generic news articles - - https://edition.cnn.com/2025/03/20/middleeast/ronen-bar-shin-bet-israel-vote-dismiss-intl-latam/index.html - - https://edition.cnn.com/2025/03/21/europe/conor-mcgregor-ireland-president-election-intl-hnk/index.html + - https://edition.cnn.com/2025/03/20/middleeast/ronen-bar-shin-bet-israel-vote-dismiss-intl-latam/index.html + - https://edition.cnn.com/2025/03/21/europe/conor-mcgregor-ireland-president-election-intl-hnk/index.html 2. Wikipedia articles - - https://simple.wikipedia.org/wiki/Dog - - https://en.wikipedia.org/wiki/Car + - https://simple.wikipedia.org/wiki/Dog + - https://en.wikipedia.org/wiki/Car 3. Scientific articles ([Kurzgesagt](https://www.youtube.com/@kurzgesagt/videos)) - - https://www.youtube.com/watch?v=dCiMUWw1BBc&t=766s - - https://news.umich.edu/astronomers-find-surprising-ice-world-in-the-habitable-zone-with-jwst-data/ - - https://www.youtube.com/watch?v=VD6xJq8NguY - - https://www.pnas.org/doi/10.1073/pnas.1711842115 + - https://www.youtube.com/watch?v=dCiMUWw1BBc&t=766s + - https://news.umich.edu/astronomers-find-surprising-ice-world-in-the-habitable-zone-with-jwst-data/ + - https://www.youtube.com/watch?v=VD6xJq8NguY + - https://www.pnas.org/doi/10.1073/pnas.1711842115 4. License text - - https://www.gnu.org/licenses/gpl-3.0.en.html - - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html + - https://www.gnu.org/licenses/gpl-3.0.en.html + - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html 5. Books - - https://ia902902.us.archive.org/19/items/diaryofawimpykidbookseriesbyjeffkinney_202004/Diary%20of%20a%20wimpy%20kid%20book02%20rodrick%20rules.pdf - - https://drive.google.com/file/d/1b1Etdxb1cNU3PvDBQnYh0bCAAfssMi8b/view \ No newline at end of file + - https://drive.google.com/file/d/1b1Etdxb1cNU3PvDBQnYh0bCAAfssMi8b/view + - https://dhspriory.org/kenny/PhilTexts/Camus/Myth%20of%20Sisyphus-.pdf + - https://www.matermiddlehigh.org/ourpages/auto/2012/11/16/50246772/Beloved.pdf \ No newline at end of file diff --git a/model/clear.sh b/model/clear.sh new file mode 100755 index 0000000..eb34983 --- /dev/null +++ b/model/clear.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +grep -o "[[:alpha:]]\{1,\}" "$1" | tr '[:upper:]' '[:lower:]' | grep -Eo '^([a-z]{2,}|a|i)$' diff --git a/model/data/all_cleaned_words_shuffled.txt b/model/data/all_cleaned_words_shuffled.txt new file mode 100644 index 0000000..893e091 --- /dev/null +++ b/model/data/all_cleaned_words_shuffled.txt @@ -0,0 +1,216339 @@ +these +provisional +matter +all +a +came +is +much +always +odd +is +that +i +life +day +from +to +make +the +he +and +this +the +geographer +stony +in +of +own +free +capable +you +needed +even +man +take +milk +of +cows +going +times +at +right +far +him +after +more +to +one +murmuring +for +has +from +collected +discarded +scalp +brain +wandering +joint +in +man +flat +and +pump +paper +the +sticky +amy +to +a +part +when +flowering +automobile +one +he +that +on +magnitude +in +hope +terms +the +was +it +if +six +used +thinking +looked +drops +say +sleeping +would +back +than +he +with +face +march +a +therefore +cross +an +a +devil +meal +i +head +are +shall +to +her +the +of +it +cross +utter +remember +end +as +we +sheep +straight +first +license +in +on +do +that +old +him +because +about +himself +of +flat +with +is +against +her +had +it +escape +punched +life +convey +sethe +this +midst +phantoms +of +housing +most +to +rented +baby +him +reasonable +throw +girl +doesn +eat +but +in +and +of +whoop +and +vile +it +first +the +force +both +was +distribution +and +couldn +i +a +the +velvet +room +they +today +that +free +of +color +melted +sethe +is +was +in +itself +appendix +the +woman +high +are +own +here +be +girls +and +ordered +down +the +you +furniture +why +which +christ +went +regular +live +and +with +know +more +like +knees +the +sunday +there +least +extreme +appendix +species +it +immortelles +cry +changed +its +it +set +her +with +back +three +fooling +a +to +at +in +for +beloved +which +the +he +know +breath +were +to +the +went +very +some +bodwin +all +the +slow +drop +doing +and +is +a +her +spared +them +was +smells +alarm +so +too +would +a +believed +progression +now +the +to +bet +and +her +that +always +be +air +and +next +feet +his +it +together +in +the +with +into +systems +extraordinary +hips +heard +a +our +no +the +goodbye +accountable +back +attention +cannot +who +if +changed +talking +ten +on +woman +peppermint +about +a +wet +shower +loves +songs +things +the +otherwise +and +action +most +so +herself +longing +luster +empty +sure +mathematics +of +he +smug +license +are +wants +and +game +legs +the +of +patrician +but +a +could +you +that +just +hot +us +consumer +plants +realm +in +there +to +at +pace +to +sex +flower +her +in +i +defy +the +the +from +wooden +the +outhouse +is +buglar +i +the +mark +show +knowledge +said +to +behind +pride +she +the +like +true +value +pleasure +and +stopping +room +of +over +paul +he +into +she +what +full +a +what +in +that +interest +speak +you +closed +of +where +this +careful +of +mean +secondary +growing +think +to +sethe +sea +well +the +all +his +car +are +spoke +even +with +swallows +his +want +new +of +having +you +of +yellow +now +today +for +mind +asked +like +you +bothered +she +of +up +breathe +action +laceration +went +become +come +who +you +in +but +is +street +cautious +finances +parts +agree +were +for +different +and +had +love +meanest +with +is +lights +loop +ground +i +and +table +lived +without +against +at +been +anywhere +section +tomorrow +the +the +it +cabin +live +kootchy +excited +considered +recognized +to +says +chair +becoming +out +told +as +got +life +lift +suggs +time +on +rights +intended +room +perfect +has +which +resisting +the +country +about +away +as +got +fall +have +the +they +sound +same +children +and +to +gone +had +and +followed +mrs +pine +on +denver +remember +good +them +peace +to +say +share +the +in +circumstances +a +there +at +away +has +you +seriously +you +month +make +and +his +then +to +rout +i +five +family +shouted +graveyard +see +hear +of +flowers +had +same +upwards +earth +become +back +on +her +me +above +are +tell +as +again +tell +pick +time +her +implementation +about +wet +she +i +acquire +in +a +his +a +under +it +uncertainty +only +would +useful +history +more +eating +church +and +modification +company +view +opportunities +did +and +endure +this +soft +he +roar +fist +excited +sight +feel +nough +who +rite +when +long +of +right +whites +people +up +when +was +the +feast +unaccounted +sister +and +it +absurd +people +pay +forget +purpose +uh +one +forming +of +pig +have +the +yonder +again +it +and +to +liquid +noticed +at +has +thing +sunset +beat +so +came +at +beginning +art +to +all +tame +need +bywater +want +citadel +have +sign +and +been +find +the +had +moved +him +occupants +all +with +celtic +the +they +girl +time +they +at +to +sort +stuck +in +not +just +until +had +i +i +two +effects +your +paper +and +and +brought +with +doing +not +and +trespass +was +rather +god +that +the +the +a +oran +house +as +code +i +the +loud +lonesome +arrangement +network +denver +about +preacher +nietzsche +to +for +of +to +brutally +work +then +hunted +clear +life +and +factory +it +your +figurines +which +all +i +transaction +wall +looked +looking +of +it +room +sobering +this +water +this +or +him +whether +of +her +narrow +illogical +levels +malady +it +for +yes +thought +thirty +it +her +that +all +human +its +pulled +range +without +the +hills +when +two +to +was +preservation +born +my +this +and +to +the +her +sethe +taken +occurred +for +skins +the +light +really +ocean +john +because +revolution +men +program +the +not +flashed +do +it +any +so +like +do +the +more +must +curious +him +one +killed +a +juan +of +in +gravely +help +other +in +little +known +the +after +and +the +his +slice +so +i +steps +would +don +this +had +a +about +that +for +mother +in +things +order +paul +room +mouth +why +if +really +the +if +like +to +you +owed +or +down +the +have +her +do +plan +its +and +no +for +for +often +it +desk +clear +talked +good +me +the +give +had +liberate +each +in +flying +it +the +to +they +witness +her +again +as +actor +and +voice +more +little +and +best +i +the +a +it +back +the +our +separated +a +only +took +or +to +said +or +off +first +clear +melancholy +sack +was +sound +three +their +his +throat +anyway +arguing +it +theirs +was +kept +not +the +group +worst +approximations +cousin +sit +emotion +seeks +batteries +to +likewise +kirilov +bundle +of +because +left +they +flower +the +software +pardon +its +out +to +are +don +but +the +said +in +distressing +the +is +to +didn +hostages +also +future +her +it +purpose +breeding +sea +the +but +taken +in +formed +other +garden +man +him +best +milk +try +the +which +in +suddenly +spend +desert +paul +songs +back +a +burst +the +so +the +sugar +came +spread +in +boy +it +a +those +to +on +the +victory +stamp +want +back +by +not +activities +is +not +or +the +is +not +baby +mr +fall +interest +of +the +asleep +get +workplace +felt +inform +throughout +one +this +a +they +implications +only +where +way +the +to +got +creature +copies +a +part +and +moved +collect +a +bar +to +to +fell +rough +extensions +a +him +roses +the +denver +i +of +if +feet +special +faces +present +lying +mad +than +his +helpless +exaggerates +consider +know +under +sound +the +was +for +of +each +like +then +couldn +suggs +this +needed +left +saw +to +back +up +agreement +this +place +alike +no +at +absurd +from +mouth +any +a +of +grass +it +its +hero +thought +be +indifference +extent +when +strong +one +had +son +me +window +cool +in +despite +this +the +a +things +social +this +said +once +and +morning +on +might +why +yet +consequence +other +but +if +going +what +have +times +countries +as +up +that +you +his +grace +again +lying +again +brought +life +a +on +of +work +the +more +oh +they +bureaucrats +something +the +busted +woman +he +yet +started +the +if +that +can +up +live +couldn +to +cost +the +suggs +an +some +the +danger +to +that +will +in +granted +slow +under +tippler +else +to +ambition +boys +fifteen +everything +back +could +visage +lady +the +later +sethe +interstudy +she +definition +the +indicate +cars +i +reproach +eyes +the +propulsion +from +is +window +its +also +dominance +scorching +all +what +a +judgments +beyond +cng +entire +to +life +after +lean +to +that +and +from +was +covering +picture +nothing +the +chairs +over +many +from +taking +is +her +declare +engineer +seemed +or +typical +discussed +been +exoplanets +he +making +use +they +statue +around +good +does +god +us +individuals +not +dedicated +also +the +man +impatient +logical +life +as +without +the +all +pickaninnies +become +is +out +before +whitepeople +man +weigh +that +in +reasonable +drops +the +face +brimmed +pushed +converted +to +artist +has +an +that +wildness +the +flash +and +hat +with +explaining +something +too +of +that +copyright +fate +are +he +to +thus +around +ring +a +front +a +charlottenstrasse +many +in +the +not +to +certainty +told +of +watched +is +an +recognized +a +give +the +unwillingly +after +colored +obscurantism +no +convince +the +get +left +is +these +commercially +one +made +life +are +the +wasn +can +for +need +the +and +far +before +her +soldiers +chest +it +steady +walls +of +small +he +is +he +not +incendiary +her +spent +against +interface +was +taking +the +the +help +that +patches +it +did +horse +at +who +to +made +baby +back +and +to +example +his +he +was +tree +pull +between +mainly +or +and +implement +so +the +his +least +squeezed +said +of +passion +you +she +what +any +clawed +needed +what +trotted +castle +are +in +the +for +hands +the +slowly +you +the +when +drawing +years +door +had +had +it +modern +with +period +your +each +at +off +be +the +sensitive +car +million +thus +was +the +no +the +could +not +me +before +universal +her +worn +days +walk +state +no +needed +place +thing +they +hands +in +you +on +his +place +flour +no +unpinned +uncertainty +subsection +ups +must +who +made +could +crying +make +throw +it +see +a +the +dusted +he +extinct +and +be +partnered +and +you +observed +spoke +than +of +what +and +without +really +its +smoke +quiet +did +held +on +here +i +was +took +great +his +software +crazy +children +she +stone +out +he +are +at +a +dimes +actor +in +tongue +rate +sethe +laws +i +a +to +with +toward +vegetables +company +such +pale +dern +not +can +for +have +she +manhood +they +it +random +lyricism +real +is +on +of +to +believed +tell +enough +at +it +children +and +of +have +really +animal +wouldn +shirt +no +and +will +or +five +is +buglar +could +if +one +she +meals +experience +is +because +circle +monday +boy +copying +she +believed +the +modified +where +of +he +my +two +after +the +the +open +powerless +appears +mr +too +because +was +where +of +negro +status +stopped +is +again +their +whilst +pleasure +to +that +when +the +in +the +increase +a +bare +dreadful +moved +the +man +time +worlds +rib +i +woke +have +molly +a +the +and +his +then +answered +am +with +are +able +those +coming +head +her +without +either +the +merely +be +a +those +chief +that +that +that +weeds +have +idea +retorted +in +ll +back +horrible +biomass +if +right +as +a +the +ready +working +prints +be +foods +to +stone +so +over +looking +this +for +got +letters +then +this +in +hardly +used +the +very +wonder +if +probably +selfish +the +world +he +may +was +fatal +of +patched +from +was +mind +flower +mother +just +in +blown +is +stop +tender +house +final +buying +newspaper +on +am +biomass +nail +of +paid +he +more +whitemen +habit +the +more +folks +reflection +sharp +bay +this +disappearance +could +to +then +on +of +he +in +item +you +global +with +but +garner +biologically +that +of +attested +going +anything +make +baby +stairsteps +which +i +walked +truth +the +girl +as +to +for +is +and +struck +what +the +much +loud +man +be +to +it +likewise +he +in +finally +must +fashioned +any +steel +it +the +fact +along +show +to +the +say +time +everyone +see +is +valleys +down +grate +my +longing +yossie +pressed +the +newspaper +secret +were +it +paul +ties +of +don +to +even +the +rule +they +all +throw +apply +her +a +will +it +his +impulses +not +breath +cannot +notches +car +sunlit +he +was +neither +a +why +not +the +up +chosen +the +under +and +there +truth +of +could +her +both +a +that +be +when +associations +twenty +living +the +up +of +to +and +a +is +through +the +snake +hands +it +out +took +borne +and +his +illusion +still +he +are +to +of +by +wings +compromise +for +was +more +one +too +years +louder +back +and +rushed +other +face +obstructed +if +his +woolen +field +what +is +little +by +upright +of +prepared +her +on +and +the +with +block +was +out +and +than +gt +thought +exacting +pregnant +a +paradox +monuments +he +was +where +could +them +and +and +leave +hand +from +to +had +what +the +last +kitchen +to +two +but +and +and +not +she +slowly +able +her +in +are +every +sethe +that +front +them +he +new +to +trains +but +in +thought +they +to +it +curved +capital +even +the +no +wet +coiled +by +however +asked +her +translation +her +something +and +the +work +out +alarm +a +files +but +herself +the +really +him +life +and +to +that +he +state +still +divested +the +mountain +women +down +bucket +nature +happen +only +places +and +for +arrived +succession +front +she +appeared +mouth +thousand +now +said +and +then +his +life +agreed +for +remain +first +things +other +deter +righteous +show +told +circumstances +existential +the +seemed +of +itself +they +taut +far +available +get +edge +packs +plot +scriptural +didn +later +jingled +spasms +the +has +of +the +improving +a +denver +a +a +some +grows +right +she +be +on +way +found +propagate +exoplanet +just +fingers +of +judge +despite +prepared +expired +sometimes +into +for +live +one +suffer +carving +hair +afterwards +and +give +trying +too +has +rose +felt +white +because +changed +fair +long +no +and +care +this +the +rain +and +in +open +peculiar +called +of +car +this +you +from +through +judgments +him +paul +is +every +the +of +above +handed +jesus +in +don +but +us +up +it +buffalo +went +revenge +it +thus +other +begin +she +a +from +of +off +it +hurt +earth +was +her +you +that +would +come +was +kick +it +back +music +books +her +all +pealing +the +at +transcends +for +permissive +the +wings +made +together +should +the +side +he +to +other +porch +work +to +them +steal +sure +remains +permissions +to +scenes +program +me +understand +was +run +known +beloved +not +fence +who +heavier +pushed +in +never +out +the +as +to +no +stage +any +guard +where +to +of +one +house +inclined +and +cooling +the +prince +where +of +suggs +lid +certainties +even +that +an +by +out +from +on +thataway +gulf +standing +of +mother +i +hips +watched +like +be +but +applies +yet +with +over +stench +he +pon +by +and +reverberate +or +to +walking +she +not +the +at +efficacious +at +fetch +so +somewhere +here +translated +is +flew +had +actor +all +forty +be +that +has +in +white +shoes +pulls +ups +little +large +their +her +love +are +door +which +little +the +magic +that +he +best +the +it +up +look +health +together +what +too +the +she +impossible +with +looked +he +the +enough +is +that +forth +be +seems +of +rocking +myself +all +defense +yard +up +of +faithful +but +settled +from +i +what +the +of +now +laid +i +appeared +one +flat +it +and +it +the +who +could +smiling +mrs +said +dark +go +you +are +late +saying +the +to +a +extended +felt +choose +she +very +press +they +it +down +her +to +of +felt +runaway +his +making +something +years +he +onto +practical +you +ma +the +i +for +there +ends +he +to +local +in +landmark +you +them +little +what +he +to +they +restless +wife +him +limit +and +with +reason +her +sister +times +is +god +giving +reverse +his +created +bent +reinstated +out +he +time +finally +a +denver +suddenly +heard +about +the +for +nor +without +cob +sacred +american +here +the +the +are +don +defenses +he +look +point +he +finds +five +the +she +the +law +which +humans +for +and +i +if +merely +you +an +in +twice +but +baptized +hovering +he +of +she +factor +fold +full +that +god +environment +the +herself +that +sturdy +close +mainly +four +be +what +concerned +nanotubes +matter +know +the +hear +if +backed +said +be +at +if +man +each +made +us +gone +we +dough +from +me +move +i +of +the +greek +stretching +all +she +destroy +would +absurdity +for +taken +wasn +career +who +the +even +activities +are +of +christmas +take +in +the +came +of +was +in +lost +was +france +that +iii +glances +would +was +and +each +you +my +wood +as +and +patience +porch +hoe +it +it +going +the +freedom +simple +or +most +her +and +edge +the +house +the +on +a +denver +hour +number +in +of +me +vehicles +guns +without +he +to +sethe +was +family +from +to +life +got +and +mass +dark +who +to +they +him +the +they +because +reasoning +stopped +present +have +that +i +get +census +his +in +brought +use +syrup +goodbye +slowly +night +wanted +she +of +ever +and +he +was +be +five +eyes +diesel +will +ago +own +in +of +flower +glancing +what +steal +them +you +handful +nothing +he +as +dying +i +the +some +railings +her +like +don +place +a +and +radiance +drum +the +understands +certainly +and +the +face +twisted +god +in +a +have +goings +of +himself +the +shall +put +them +hand +the +bright +overpopulated +and +at +be +if +will +not +justice +have +all +they +hand +lost +truth +i +not +that +i +lamp +couldn +inner +the +know +morning +a +the +in +told +came +by +him +the +of +no +and +own +of +of +went +provide +debases +speak +he +but +that +for +carried +back +may +her +of +and +according +doves +the +mother +of +everywhere +key +wanted +his +beat +something +girl +flew +those +his +not +been +linger +no +you +her +should +at +mean +stamp +minotaur +ever +and +said +a +to +worth +the +carry +by +which +in +software +for +i +bright +he +a +suggs +what +is +baby +try +is +him +tend +chair +us +more +as +cloth +fun +by +leads +hour +and +the +distinctly +same +the +passage +tears +evidence +with +without +stronger +have +think +surpass +women +sure +them +grocer +feeling +innocence +a +her +those +additional +better +been +they +and +a +begun +wonder +him +has +skirts +her +quality +first +her +she +not +in +return +of +and +him +the +winds +her +same +hope +are +the +the +lear +will +sometimes +he +field +killed +that +told +him +sadness +the +be +he +like +in +nine +pride +they +whispering +the +her +was +a +sethe +a +speak +you +whose +is +of +heard +itself +was +can +on +have +cow +was +that +what +land +steal +he +the +software +the +head +for +order +under +transport +hungry +are +in +looked +each +added +was +then +a +chapter +paper +i +here +could +leave +like +about +existence +side +song +is +at +an +choose +consciousness +denver +had +i +did +listed +a +called +moving +sethe +rabbit +ivan +when +this +can +way +integrated +nightdress +held +brake +that +ready +out +a +audience +the +from +back +to +that +wait +is +then +it +nobility +habitat +sorrow +like +halle +my +was +of +breakfast +safe +there +and +that +the +he +chosen +above +felt +to +be +such +a +of +up +don +contrast +permission +it +for +than +arm +the +one +he +a +her +hoped +back +war +passions +klan +that +believed +i +fail +because +along +i +and +thought +found +the +and +you +this +light +needed +to +differ +roses +crying +sethe +the +good +that +of +whip +who +lasted +of +witless +came +whispered +father +to +thing +staring +easy +dizzy +being +day +all +warranty +only +up +does +children +much +when +why +silence +leap +after +are +known +mighty +out +cause +through +would +animals +for +and +who +woods +this +at +inhale +why +redistribute +to +the +law +complex +limit +not +of +in +of +on +stole +all +she +problems +each +hole +under +allow +gal +can +and +a +about +make +government +head +the +charms +presence +gave +couldn +black +gregor +with +way +in +his +than +so +by +say +order +would +over +doing +what +thousand +i +theories +don +had +fig +effects +so +they +to +maimed +the +tried +but +responsible +ma +the +him +preparations +of +peace +it +this +by +was +for +front +to +ever +through +so +has +creation +show +cook +the +question +through +that +much +in +definitions +but +ella +grave +often +base +feet +those +round +me +bear +before +stuff +they +facing +touched +mind +produces +facile +people +to +number +no +his +if +service +certain +for +left +in +sethe +simultaneously +on +at +climb +it +the +he +did +beloved +husband +back +it +for +is +her +out +where +day +lady +choose +at +even +leaving +of +month +whose +you +before +tired +the +consequences +you +under +dress +possible +her +you +human +were +she +to +i +am +come +solitude +in +one +was +therefore +not +back +into +quite +it +how +is +that +too +the +then +ain +for +been +and +go +her +of +tasks +having +archaea +be +the +late +catalysts +nobody +was +first +a +am +hope +we +sin +mother +in +behind +for +aquifers +the +force +like +the +made +right +great +he +my +provokes +of +me +blood +throat +breasts +the +as +young +if +not +the +bed +won +so +for +is +fox +that +the +the +how +back +blue +standing +but +each +denver +preserve +said +ravaged +already +dreadful +it +philosophy +of +floor +where +she +turned +can +noses +come +and +and +an +she +hat +good +and +kirilov +then +what +the +auto +that +in +to +of +arched +narrow +she +there +my +single +on +the +when +little +wrongly +conquered +while +that +over +resting +there +moving +sethe +for +man +then +you +she +not +to +could +he +arms +the +effect +the +beat +that +other +eighteen +to +depth +horse +their +as +oh +that +themselves +sky +was +am +is +interactive +their +suggested +himself +charms +denver +one +calm +play +opened +i +here +once +anyone +contrary +where +go +on +wormwood +to +saw +all +she +in +her +on +you +that +to +a +he +her +down +put +their +top +screaming +that +kept +his +were +it +and +it +seen +was +driven +which +belongs +calling +bars +and +insist +crime +them +the +the +to +substitutes +the +enough +doctrinaires +home +it +refers +came +convey +it +have +knowledgeably +of +and +little +his +the +when +castles +death +expedient +any +walls +singing +for +certainly +human +this +his +lot +to +his +for +maybe +all +this +can +can +minute +lived +remember +there +and +also +eat +practice +not +have +didn +first +ford +your +gives +before +sleep +jaspers +of +observe +paul +leave +back +markedly +cell +of +was +one +hours +this +you +yard +millions +heaven +that +night +off +the +pitiless +seek +nietzsche +have +was +to +to +road +one +cursed +the +the +which +technologies +is +other +this +before +appeal +elsewhere +if +watch +day +other +hence +rain +could +time +wherever +stand +stayed +kills +the +it +from +settled +had +reasoned +but +the +all +be +she +his +dawn +brown +of +unpleasant +not +together +its +the +with +fat +of +his +was +lucidity +god +come +mind +but +man +become +escape +finally +whence +the +stop +a +the +after +nine +whomever +and +december +rights +taken +looking +mingle +here +so +to +deprived +grete +million +clerk +with +having +to +serious +if +beaver +stone +on +florence +evening +than +all +white +it +an +individual +just +asking +in +is +stubbornness +the +other +are +his +the +around +died +europe +for +did +longing +dressed +through +is +didn +all +yes +of +fear +warned +and +black +another +quiet +research +in +two +is +was +little +resurrection +sheep +of +been +and +climbed +in +her +what +not +what +this +was +length +after +like +can +the +before +a +i +for +she +eyes +added +time +dirty +be +sure +be +me +a +at +who +beloved +he +terms +and +hence +become +when +protecting +me +denver +beloved +the +her +remaining +he +skin +starlight +for +the +paterollers +her +was +that +the +own +while +to +conclusion +their +things +afraid +she +the +i +be +jones +is +since +made +them +program +in +with +empirical +injustice +choked +which +she +or +another +and +she +halt +mother +of +a +heads +which +stand +vigil +by +moments +vastly +wait +all +a +be +language +castle +from +to +upstairs +bad +the +she +consideration +of +crash +me +not +are +himself +rosy +in +never +once +the +in +no +unity +that +where +exile +but +the +works +is +whitlow +i +modify +the +at +he +other +go +been +of +you +sea +her +meaning +implies +no +himself +apathy +year +the +the +like +habitability +all +head +then +acts +down +or +said +out +says +but +increasing +dusty +nearly +under +latest +of +pencil +is +right +have +lady +live +over +was +had +furniture +them +alone +of +of +of +was +loved +of +the +grown +news +asked +are +you +plants +didn +little +to +on +toenails +definitely +rationalism +on +is +state +maturity +accept +be +in +but +especially +boas +woman +beloved +intellectuals +done +time +on +something +they +biomass +said +something +and +in +clearing +he +small +pies +the +wrath +them +they +slowly +or +profound +to +one +because +skirt +a +a +patience +his +started +it +not +is +the +the +life +heard +metaphysical +he +his +a +hands +a +writing +vehicles +of +the +thinks +brown +looked +of +resistant +and +woman +quiet +rushed +of +over +from +condition +this +question +dies +categories +wondered +the +the +was +only +who +depends +he +too +chances +decisions +frightful +into +loved +flower +man +for +curled +of +halle +words +pieces +any +squinted +some +had +this +you +her +of +the +and +slave +didn +having +better +the +link +everything +he +impossible +and +the +at +on +lady +absurd +and +to +conversation +government +little +before +giddy +mammals +light +generous +the +those +mother +his +her +they +sethe +right +myself +longer +majority +more +he +in +voice +they +species +a +fine +shabbier +a +lock +clothed +be +exoplanets +thought +close +color +the +done +a +she +i +bushes +on +me +just +development +it +a +go +shields +rolling +as +most +i +so +and +the +knees +hypothetical +moment +meaning +so +just +now +connection +he +the +to +plates +preaching +song +sea +out +pregnant +parlor +track +pillows +do +a +on +sethe +to +no +but +not +that +member +but +of +didn +her +are +it +of +necessary +the +heart +age +for +to +magnificent +in +up +hurry +at +efforts +rapidly +the +his +look +by +pain +boys +from +like +and +they +abandoned +until +how +denver +her +are +ribbons +against +in +mrs +in +had +buckboard +of +offer +and +consists +hundreds +and +said +him +prince +assembly +engine +on +there +she +inclines +to +one +bit +saw +at +no +amy +as +inched +may +aged +does +if +me +the +it +should +lamplight +the +the +next +had +we +has +glorybound +the +schoolteacher +catch +escorted +very +of +up +he +him +is +this +thinking +ain +consented +sixo +trace +he +fallen +her +times +come +or +the +be +to +the +road +is +is +to +yes +a +not +too +bloody +a +oh +alone +of +hateful +facts +holder +noticing +and +nothing +long +in +still +the +contrary +the +sethe +if +footprints +of +only +a +took +one +of +but +twenty +this +than +netting +them +turned +vertebrates +demonstrated +awareness +iii +thing +and +to +assistant +life +was +went +get +downstream +stick +and +good +and +eurydice +girl +job +be +key +arms +the +for +that +up +are +meet +find +is +right +make +my +began +but +but +little +fall +was +cupful +of +assessment +butter +rent +slide +world +knew +the +worst +now +nobody +i +can +about +in +grown +where +jones +am +him +all +make +was +death +she +jones +of +cloud +your +if +it +an +summers +massage +is +preacher +and +little +leading +work +the +hands +favored +the +and +to +this +slopping +not +and +little +peg +local +counterpart +at +guide +the +nothing +seated +made +am +lack +into +city +turn +desire +of +the +front +else +long +if +which +and +spell +right +you +the +crying +the +a +his +sampling +crowd +throw +has +those +from +beauty +model +you +it +always +philosophies +government +the +do +didn +such +too +he +slamming +more +sunlit +she +opposed +saying +in +grease +all +to +exceptional +he +of +chickens +back +contributes +at +misery +minded +that +hours +his +which +the +method +so +the +bet +but +and +it +i +no +divorce +of +now +each +made +can +noticed +through +nothing +halle +conditions +to +and +hidden +of +last +if +this +with +don +up +whole +so +to +could +can +and +be +ten +as +and +you +men +what +it +flies +the +i +she +didn +did +among +double +anything +glance +who +on +and +general +if +headstone +in +accommodate +dead +girls +goose +the +if +an +waved +about +their +but +the +we +too +which +up +a +at +the +a +the +which +mediterranean +or +taken +while +for +the +wide +full +absurd +her +them +a +more +north +in +forgot +else +the +to +to +and +obsess +home +loves +man +daytime +is +as +they +those +king +creation +more +when +in +chestov +the +do +now +of +travelers +men +the +world +of +he +crowded +this +for +a +everybody +bout +sethe +it +course +to +and +whence +pallet +how +or +worlds +just +and +the +often +the +you +from +on +chose +was +he +suddenly +anxiously +didn +question +said +not +beige +advice +satisfies +of +time +i +has +there +all +home +too +asked +be +he +kafka +works +the +postulate +about +human +pupils +myself +the +my +in +growth +of +seed +is +than +took +never +laugh +father +she +less +in +from +being +where +the +paid +will +a +even +and +beloved +that +edifying +folds +admire +his +logic +told +alfred +in +that +at +have +peace +an +like +them +since +may +humblest +to +in +was +the +a +inching +conceited +not +what +do +last +a +said +and +and +sethe +a +french +anything +it +became +her +if +minds +ears +and +him +know +down +little +you +that +for +the +the +but +to +a +been +her +in +the +laugh +days +sale +eat +or +from +of +st +molecules +it +women +it +money +wrong +he +true +the +georgia +one +five +install +on +what +ardor +nursing +made +threefold +you +a +this +on +same +the +there +accounting +from +the +to +elephant +order +late +good +invite +calcium +generation +saint +for +extra +been +thus +forward +and +make +had +possesses +understand +if +you +when +and +she +say +one +the +field +last +and +were +but +the +didn +least +and +devil +fix +change +own +comes +oran +of +and +not +in +sethe +was +wiggling +piece +pupils +she +is +into +of +his +shimmering +long +is +head +some +that +has +information +question +and +down +it +huge +the +and +left +he +in +time +solitude +of +him +are +you +a +to +apologize +chestov +could +to +over +keep +on +like +he +on +the +the +the +station +first +they +for +color +give +think +scarcely +her +the +she +for +as +is +on +brother +proportions +your +explain +and +getting +will +in +long +what +other +by +exactly +size +the +can +the +long +in +from +the +in +having +had +catch +of +is +both +from +the +account +by +look +it +hurt +and +my +side +sign +of +than +obey +able +the +is +be +ashamed +trial +would +the +are +could +these +i +father +this +loose +true +the +was +do +up +the +whether +halle +it +treated +the +are +woman +gregor +her +he +to +with +beloved +plans +its +the +had +rocking +rusted +we +not +the +outside +day +his +good +what +those +something +from +sethe +it +the +here +of +and +expected +concerned +herself +me +ariadne +order +of +their +enforce +walked +letting +it +work +forehead +the +deep +spot +were +and +governed +the +beginning +and +where +engines +her +any +in +in +fast +no +where +at +glad +convincingly +work +writing +it +god +a +got +i +am +but +that +and +house +answered +i +and +long +dog +laid +with +of +how +the +become +profound +fight +face +one +them +the +telling +them +the +out +her +so +friend +with +in +to +after +when +and +side +he +wide +the +lost +must +thus +and +me +instead +the +on +worse +head +norm +then +was +not +was +beat +absurd +turned +the +was +disturbed +want +ah +according +there +cry +sampling +be +which +if +he +rushed +to +away +but +even +why +what +door +milk +group +notion +won +that +nothing +beasts +door +but +years +but +the +in +would +was +losing +was +demands +recognize +low +and +among +oran +or +is +and +past +in +under +throbs +just +blest +and +françois +symbolizes +subtle +sections +really +is +said +balance +i +minute +of +recipient +the +certain +a +proves +of +again +although +struggling +ella +they +of +as +to +sake +plunge +in +memories +it +stars +cry +impact +and +the +say +down +going +designed +three +mister +thought +him +was +around +the +grete +rented +of +days +first +our +that +items +sour +palm +wanted +and +at +mother +and +another +passion +and +is +the +he +few +bout +give +would +does +had +goes +opened +kentucky +in +north +and +tears +her +grief +screamed +had +provide +the +door +born +new +who +can +pretext +revolves +to +in +that +creator +lord +the +a +and +wasn +to +to +neck +wagon +decreased +a +learned +stay +weeks +to +eighteen +no +notice +the +rained +sound +not +he +nor +did +in +shai +back +at +such +instead +more +neither +purpose +pointed +work +confusion +and +dark +as +worse +equal +white +stranger +her +clever +depth +the +can +beds +than +to +janey +yourself +hands +time +permitted +thought +sign +a +rest +felt +too +construction +let +again +of +german +if +being +is +there +my +note +this +gregor +at +had +or +of +see +has +let +would +and +at +in +sign +back +it +country +milk +split +wondering +from +the +the +did +be +it +the +the +did +food +he +where +writes +every +table +sun +brothers +tiness +started +no +climb +paper +my +relative +and +every +not +you +with +a +start +beloved +interstudy +behind +have +was +has +after +red +tino +the +to +would +elbow +a +the +out +for +you +same +started +paul +resentful +he +had +than +was +the +of +it +and +incorporates +astronomer +a +the +of +rolling +copy +sheet +that +and +and +they +do +level +decreases +rhythm +need +and +told +like +how +i +came +every +sideways +obey +in +it +composition +it +reveries +altogether +imperial +tip +of +is +modern +license +no +object +only +integrated +independent +mother +of +the +rocks +increase +a +him +it +to +notice +my +to +when +on +a +would +i +out +to +off +the +reason +right +the +am +a +or +spindly +know +water +stairs +time +the +woman +some +available +classify +which +her +silence +blood +seen +of +me +running +this +though +nothing +invitations +to +her +whenever +one +front +boys +down +room +with +grain +spread +the +since +they +navy +the +reckless +to +me +as +should +was +for +i +to +and +little +about +of +for +i +its +an +loop +at +was +able +upstairs +to +the +despite +and +devoid +and +sell +on +much +of +the +to +of +approximately +the +the +in +coloring +done +man +took +produce +they +humans +and +he +running +little +been +said +again +membership +red +and +caresses +minute +i +on +hear +he +themselves +bright +path +the +of +the +and +then +further +black +that +the +he +of +minimum +man +to +followed +program +went +want +was +on +she +gunshot +denver +number +after +definition +lofty +head +way +of +change +claims +hurt +halle +made +pride +never +the +not +appearing +or +that +down +the +themselves +whereas +and +you +saluted +stars +ignition +his +act +my +do +gather +maintain +or +changed +not +recognized +him +feeling +was +bet +on +for +informed +the +nobody +time +to +and +it +well +its +in +much +to +again +hard +before +it +conscious +eighteen +wife +of +has +of +once +been +the +its +backwards +in +and +have +affording +as +great +horses +greedy +well +blood +not +in +asked +the +in +grew +artists +and +time +tall +things +him +any +his +to +go +it +the +watched +drawing +not +why +you +you +this +and +ella +opened +listening +of +this +of +leaves +they +from +her +think +canines +is +my +in +life +to +the +is +the +of +for +away +was +only +washing +shaped +to +themselves +she +on +often +witness +tracks +that +them +the +she +could +the +distorted +will +beauty +prepares +is +to +since +them +the +on +he +other +out +let +was +made +first +i +exoplanets +headed +the +at +or +not +is +sewing +his +positions +work +could +would +finger +prohibiting +over +the +itself +it +areas +her +obliged +humans +not +dirt +through +vocation +over +terrible +low +dead +separate +and +you +did +ago +morning +you +old +to +i +long +baby +figured +every +you +standing +he +other +mobility +method +strokes +field +were +there +be +to +these +wants +right +licenses +report +run +to +time +possible +general +how +in +in +from +her +in +here +this +she +i +selling +that +their +her +carbon +first +to +also +the +he +in +helped +any +the +horsemen +bottoms +depends +summarize +collection +for +above +president +she +in +now +see +of +stamp +on +at +supper +didn +in +and +the +had +my +and +protested +crossed +my +able +mean +did +of +the +freedom +there +covered +must +should +and +the +she +split +care +thesis +seven +how +not +are +absurd +be +to +where +at +denver +to +titan +make +almost +strangled +gasping +have +prince +had +the +ll +do +indeed +way +seemed +and +times +the +believe +his +he +possible +so +understood +the +denseness +because +what +for +said +copious +plea +of +came +told +is +or +clearing +on +saw +would +the +than +still +whose +at +ask +the +for +takes +or +the +been +coat +real +what +that +her +and +this +she +just +perseverance +curled +taken +over +boston +on +that +after +blindness +by +greyhounds +other +he +or +play +relationship +life +i +suffered +she +terms +were +from +in +say +the +listened +stayed +juan +as +she +been +was +mammals +end +but +and +success +your +baby +the +same +rage +a +sethe +have +saying +another +may +this +electrical +garner +during +other +he +here +slavery +he +you +he +luckily +it +the +a +careful +to +comes +moving +it +had +dominance +was +engine +might +she +the +and +out +of +girl +indifference +have +its +complain +it +tears +the +at +is +this +sits +did +certainly +i +tyranny +one +of +gregor +doing +jewellery +you +the +no +the +massaged +wondering +women +close +sat +limit +work +arrived +and +cannot +of +artist +corn +me +know +always +disturbed +this +he +of +merging +possession +gifts +rise +writes +fro +draw +do +no +of +recognize +all +also +sleep +insist +flowed +reactions +the +the +legged +make +a +normal +there +where +economical +is +satisfaction +world +white +if +was +even +even +and +to +your +miami +and +to +to +still +is +smile +quilt +propounded +ever +only +or +that +the +had +looked +in +are +it +finger +it +as +the +you +particular +pretty +the +the +wrapped +only +it +said +a +tied +of +her +i +for +example +existed +two +one +the +no +no +shaved +far +of +engine +of +liked +pleading +the +she +for +time +to +pollution +you +could +express +told +the +sensing +license +but +fact +those +and +took +like +only +light +their +to +meaning +volcanoes +nobody +twenty +you +either +cologne +tell +so +he +the +strength +modest +the +the +the +the +from +all +collar +bunch +to +belong +all +tied +its +his +once +thought +the +life +one +she +is +and +from +invites +desert +bread +by +talk +take +orbital +still +holding +once +when +found +down +a +of +but +saying +on +no +to +what +little +addressed +oran +and +a +not +is +think +the +and +when +a +his +body +more +as +cordelia +so +where +which +same +the +she +and +the +sister +it +it +not +prince +said +of +tell +the +just +to +the +it +under +that +her +to +stone +and +something +with +the +is +those +were +kill +flowers +in +her +of +suffered +a +of +a +immobile +of +at +the +out +as +not +a +were +i +he +don +not +mean +newspaper +the +of +of +the +moved +of +hand +wit +was +important +a +along +men +which +to +was +excitement +or +as +to +alone +of +waged +slow +no +in +here +i +his +furniture +feet +house +to +refused +further +i +out +it +play +them +they +is +wierzchos +see +keep +railing +to +gregor +pride +needed +the +life +are +desert +sky +the +come +it +shoulders +red +his +consciousness +through +the +like +oil +drew +metal +thought +is +to +it +been +so +over +i +choosing +of +cars +home +every +that +her +i +dramatic +mind +as +there +as +it +can +with +is +out +what +man +and +lifted +sweet +bad +in +frowning +out +see +she +his +the +seventy +it +nature +the +carrying +you +the +were +no +brief +in +was +and +brought +now +productions +boat +skin +a +that +little +screeched +i +don +would +estimates +thought +there +kept +until +beloved +to +finished +functions +didn +them +a +number +for +live +that +ever +plates +me +up +which +stopped +walked +out +oxygen +if +to +diversity +back +the +too +when +sword +those +lightning +never +for +was +to +nothing +him +a +this +cold +response +in +again +brand +collar +any +flames +to +little +he +performed +them +some +another +restore +you +a +was +on +from +is +how +the +eyes +the +it +or +i +this +have +well +shining +the +just +her +transform +do +he +an +not +their +whitepeople +national +be +woods +hitherto +could +of +seems +and +for +slept +why +steps +matters +lofty +character +the +hoping +he +she +shed +white +a +left +recklessly +hair +she +lay +granting +needed +to +baby +which +i +think +of +from +that +them +touching +oh +i +him +stretched +be +he +way +happening +can +to +in +but +it +not +take +her +windows +adolescent +the +the +like +again +is +with +so +low +whiteman +god +about +the +out +showed +something +carpet +body +there +roll +tied +his +and +from +clerk +on +her +other +you +four +so +body +original +she +right +them +it +down +their +am +ivan +way +same +carbon +annoyed +which +of +this +lost +when +the +week +permissive +said +carrying +put +that +men +hungry +a +and +only +because +about +the +wings +in +in +to +whole +back +all +what +at +the +as +a +would +the +he +of +sanctions +connection +grass +he +oranese +a +what +pleasure +no +foregoing +spinning +of +he +mechanism +point +down +no +christmas +at +the +loss +the +for +kill +had +communication +energy +it +elucidated +halle +for +program +been +under +knot +have +do +be +the +will +license +were +covers +was +whole +for +receive +hand +there +i +had +irritable +the +that +hear +parents +sunlight +frame +put +said +code +to +the +country +i +the +the +suggs +he +right +to +denver +thick +chop +free +went +the +improvement +the +it +you +made +it +to +the +going +climate +exclaimed +reverend +when +twelve +in +contractual +himself +but +of +i +cough +husserl +me +the +it +i +laughed +of +it +it +than +lamplighters +if +whole +place +limit +with +highlights +you +opposition +doing +baby +give +her +gregor +then +began +defines +to +away +realize +design +water +paused +as +his +place +and +gpl +together +she +things +fishing +it +now +says +end +everything +all +lamp +at +nothing +and +aside +room +scar +instead +she +the +her +of +again +had +up +be +suddenly +shocking +man +into +in +sorrows +them +be +work +becoming +harmed +they +and +back +jens +gently +britain +happen +first +this +hard +the +careful +meister +begin +was +sea +accept +your +the +but +my +wonder +water +road +beloved +decided +street +and +herself +ll +saw +executable +train +and +ephemeral +or +than +bluestone +god +and +eyes +to +change +with +the +the +to +one +to +spoke +that +commands +for +it +no +were +hope +them +is +hallowed +what +old +two +had +nine +i +along +himself +she +was +on +a +yet +see +it +repulsion +moment +let +to +with +windows +went +me +trembling +that +for +very +minute +if +refuse +has +than +thereby +name +what +the +incapable +baby +them +copy +her +what +furnished +this +towards +silver +roast +first +for +so +with +too +sethe +is +design +locations +dead +close +a +himself +a +on +figure +conquest +think +view +she +what +calm +tragedy +am +stank +her +so +restaurant +was +is +gregor +discover +echo +anguish +unusually +a +ought +unbearable +dead +the +admitted +snatched +do +exposes +direction +bind +by +between +important +seen +white +hope +even +on +denver +spread +after +i +the +things +on +saw +from +always +noting +eukaryotes +thought +had +the +cannon +of +the +telling +room +the +nowhere +waited +saw +above +sheep +another +that +impossible +he +they +halfway +connected +the +of +remain +that +from +despite +i +a +woman +on +i +but +you +was +provide +continual +i +while +prettiest +is +the +elements +his +designated +biomass +sethe +here +sure +darker +heads +is +gt +but +watch +coolness +arise +with +comes +or +myth +principle +in +years +gaping +decided +to +the +besides +her +to +in +burial +sealed +had +them +get +the +down +strength +the +place +platform +place +ribbon +did +happy +organisms +ruins +howard +was +taking +continue +unable +nonetheless +when +all +becomes +too +one +from +spit +he +so +to +were +correction +of +truth +starting +it +on +beauty +even +often +rope +bigger +their +his +no +long +in +rue +get +world +of +us +is +hominy +to +desert +knowing +you +begins +petition +never +very +bread +why +one +sethe +it +blizzard +its +their +saved +mind +of +the +longer +ain +excuse +said +more +and +then +at +all +don +blemish +she +claimed +and +do +sheep +that +it +decked +the +in +if +he +of +and +be +might +and +ma +and +gentlemen +protect +housekeeping +the +to +the +work +in +applicable +biomass +it +prince +the +they +way +the +exposed +the +girls +with +kafka +one +seen +though +and +the +while +he +laughing +to +manner +suggs +the +and +cases +be +whipped +went +however +due +years +difficult +now +several +turned +came +been +window +boomed +way +that +state +the +he +and +beyond +he +was +maybe +in +the +white +rain +eyes +attach +not +that +relative +those +or +new +right +discussion +like +those +before +performs +but +he +not +renault +of +my +something +of +have +when +if +my +but +on +in +again +cook +the +heart +behind +later +afternoon +near +bold +mother +flowering +wharf +the +by +see +a +the +before +we +the +possible +difficulties +he +minds +the +them +to +at +the +goes +and +about +terrible +imagine +they +she +under +looked +had +guilty +the +could +of +baby +arms +interference +to +the +and +never +fro +house +life +twice +this +discover +for +couldn +with +netanyahu +order +frightened +offered +for +pets +the +still +how +original +but +a +pay +covered +with +was +here +mrs +racing +of +more +hours +he +from +receive +before +them +beloved +he +at +at +little +the +all +was +i +covered +them +he +her +shoes +own +prisoners +it +the +the +marine +the +regard +any +one +does +with +come +distraction +the +a +to +girl +you +their +made +then +thing +maistre +sweet +hands +you +words +mask +years +prince +forgotten +product +and +the +even +i +he +am +they +evidence +of +and +sethe +know +have +come +trembled +convey +need +legitimate +irrational +halle +it +and +but +my +could +are +virile +were +announced +there +the +its +of +ceased +of +ephemeral +one +his +judge +line +what +day +area +of +that +me +merely +i +biomass +front +much +down +storage +when +and +hats +i +and +and +this +by +a +little +the +beauty +fact +the +recognize +would +little +what +clear +do +he +there +all +fidgeted +stove +reason +in +transferring +it +stay +between +things +since +i +just +constant +of +in +it +attachment +him +telegraphed +a +echoes +head +but +truths +its +an +have +is +deaf +the +and +the +own +shimmered +right +cyanobacteria +to +everything +smiled +able +a +a +a +in +up +that +here +a +his +back +must +and +look +going +with +use +calico +you +and +matter +enough +including +growing +to +ten +to +anyway +to +sober +hey +the +love +all +two +said +films +and +hard +in +she +between +the +it +feel +was +mcgregor +told +example +gestures +pollution +thin +alone +man +fancy +of +dull +didn +clerk +far +you +at +and +sleep +here +a +just +steps +he +light +imposed +a +these +tree +day +out +strange +to +eyes +some +cool +made +up +still +took +like +had +work +is +her +it +asking +she +and +left +are +special +are +had +prince +eyes +pot +four +that +shooting +humiliated +little +a +her +magnetic +younger +reasonable +no +that +what +to +were +leading +man +the +cherokee +punished +after +a +the +your +like +small +own +ring +wanted +they +information +your +three +ocean +a +feel +the +he +do +what +copyright +copies +good +quarter +inserting +who +coming +always +they +possibility +his +and +way +frozen +he +to +she +a +her +tongue +preacher +life +judge +have +life +returns +the +the +the +ain +than +nearly +me +appeared +is +that +a +virgin +flour +finally +i +her +and +a +man +at +ask +so +and +the +gentlemen +but +and +silence +or +your +but +stench +the +her +other +he +with +astonishingly +her +i +in +finds +nobility +chose +a +very +works +in +yes +you +found +used +the +so +the +face +on +the +a +they +him +denver +paul +out +tools +forces +exemplary +bring +for +the +it +it +the +the +that +i +the +were +there +she +got +quit +at +work +fiction +you +the +abstract +and +pay +i +much +tracks +sure +having +the +not +his +but +of +act +said +to +for +had +do +harm +my +will +way +was +beauty +something +uproars +propositions +meeting +usually +happened +i +have +of +her +bugs +hem +no +the +indicating +calling +left +show +feet +it +love +knows +from +earrings +thinking +the +nor +loving +thought +love +he +made +pregnancy +cloth +i +a +you +open +main +reason +whup +in +he +denver +the +now +then +everybody +contrast +in +could +i +by +go +and +leaped +of +in +emptiness +only +laugh +her +short +a +on +more +from +monk +to +when +is +and +glimpses +can +is +were +environments +task +and +exceptional +the +and +without +the +which +they +responsibility +this +but +another +biomass +yonder +evoking +but +not +forgotten +the +what +it +he +species +the +own +not +already +learn +watering +when +her +her +cart +yard +me +be +project +rightly +and +warmer +again +took +with +gregor +limits +make +cent +but +of +in +no +the +page +have +matter +were +after +for +the +go +your +out +floor +described +cents +stick +has +door +it +but +he +parameter +viewed +don +had +to +he +man +he +falling +pills +or +the +to +won +asleep +only +just +which +table +in +under +he +i +ridiculous +knew +another +the +a +had +here +contributor +the +seen +a +yielded +the +order +then +is +sethe +must +the +you +of +i +the +in +of +carnival +the +partition +repair +section +ill +of +just +are +mess +gratitude +able +impersonal +absurd +end +say +by +other +world +are +where +make +implacable +to +looked +which +the +once +in +nurse +through +joy +conscious +and +and +program +i +some +of +them +baby +and +more +and +absurd +will +is +to +thought +to +signifies +there +knowing +fading +life +you +i +fraction +the +with +and +but +now +words +us +paul +her +garner +tapping +there +copyright +hurt +in +it +well +of +makes +white +he +but +was +for +its +close +consolation +there +her +not +in +return +your +the +examining +we +his +his +is +bathed +was +ground +and +to +go +simultaneously +same +his +everything +covered +pressure +pressed +here +large +comfortably +the +to +style +forever +and +the +cooking +step +heavy +did +all +skin +had +always +the +bloodspill +odd +more +both +dirt +to +the +me +internal +around +and +floor +looked +wiped +with +gently +i +and +trailing +backed +her +i +to +he +efforts +majority +was +the +the +child +from +it +drives +remain +are +a +come +from +soon +don +leaned +which +the +lamps +to +it +pup +the +which +go +sethe +out +sent +naivete +electricity +absurd +in +it +his +the +was +the +testimonies +to +tries +that +have +covering +she +to +one +or +cousin +on +withstand +room +of +his +we +is +stare +to +forms +meant +fingered +word +the +of +validity +consciousness +the +about +that +the +came +it +was +bond +anyone +lips +she +myself +for +father +admiration +the +gone +when +of +little +define +been +funny +who +estimates +do +no +to +after +she +violation +the +prince +drink +his +thirsty +have +serves +they +rose +ignorant +the +afraid +he +and +been +would +answering +car +girl +as +up +to +particular +begin +and +again +looked +upon +four +it +this +swallowed +can +entitled +a +environments +and +the +as +make +without +hadn +denver +other +correlating +was +i +melodrama +motorwagen +the +between +the +as +the +earth +warranty +grant +is +holding +little +i +already +the +did +by +the +left +first +at +was +his +a +fingers +man +summarizes +heavy +saying +nobody +their +that +because +your +my +without +as +harder +fact +the +leaving +dry +his +he +asked +told +them +four +the +itself +controversial +reason +we +sweeter +sethe +is +goodbye +sir +a +his +mcgregor +fatal +sheep +without +to +of +from +pyréolophore +much +from +a +compared +to +stamp +mcgregor +mine +of +saw +men +needed +her +hiss +has +house +for +them +joining +coast +speak +under +their +they +is +the +enough +if +in +changed +let +can +a +is +maybe +last +with +to +yet +little +find +helped +my +shame +because +software +heap +right +for +i +a +cherish +work +him +along +was +are +suggs +both +countries +she +time +who +one +her +god +wrong +as +while +window +her +merely +so +understanding +headlights +of +universe +the +halle +worlds +he +she +amy +not +don +the +might +mother +and +whitegirl +skies +squatted +denver +the +is +support +there +thought +one +uh +she +organisms +mine +and +buckets +starting +his +and +it +generate +happen +contrary +long +don +name +triumph +trade +of +it +down +was +on +harder +on +it +the +done +em +little +the +longer +those +which +an +the +denver +thursday +a +went +it +and +the +of +them +rushes +motor +three +true +to +to +her +annoyed +untied +due +quietly +how +stood +she +the +out +is +it +fallen +copyright +that +despite +on +alone +way +the +wall +thyself +yes +impassible +life +rivals +of +when +give +like +whence +the +wants +declare +the +can +to +heavy +husband +without +production +the +as +about +a +the +she +everyone +was +caught +made +installed +beyond +diamonds +i +salt +the +five +origin +preacher +her +being +warm +the +marine +lucidity +lisle +touching +em +there +infringement +appearing +he +two +to +and +planet +remain +against +never +is +an +a +light +of +of +emptied +named +him +and +she +them +out +remembered +establish +right +and +did +mister +two +descent +is +him +it +not +nothing +little +about +renunciatory +immoral +went +at +and +of +the +matter +run +soon +we +mother +or +assures +of +go +not +goes +in +were +she +because +on +work +she +forbidden +the +free +as +have +she +life +is +to +that +to +your +laugh +off +path +under +done +the +with +was +he +which +is +girl +husband +she +able +in +and +is +you +other +involved +next +if +what +from +to +the +a +he +sound +of +i +this +and +to +said +yes +actual +herself +he +her +habits +master +was +blue +here +this +he +side +they +long +consciousness +in +was +them +well +said +her +for +sometimes +of +by +a +house +have +his +simpering +merchantability +doing +do +of +stopped +the +us +quite +to +the +everywhere +afterward +respect +with +the +to +the +the +the +now +long +of +disordered +sweet +asked +know +lowered +my +mother +for +that +it +when +work +vision +desirable +an +rule +sharpened +simultaneously +following +to +has +couldn +the +she +the +the +surprising +be +devotion +dung +general +burned +he +thirty +suddenly +it +several +of +he +i +was +kill +bottomless +house +the +israel +saved +the +the +describing +not +than +leapt +splashing +was +were +stage +the +forward +and +i +to +to +but +oceans +home +wind +could +on +work +the +where +hand +without +in +pieces +fingers +sacrifice +the +who +that +a +as +was +them +with +had +incoherence +bashed +it +world +his +the +father +is +some +they +on +and +this +work +secretly +can +of +garner +of +to +three +a +would +is +down +addressed +love +feet +all +the +agree +or +be +place +hopes +has +that +the +implied +chief +mighty +further +easily +remembered +the +instant +trusted +if +comprehensive +with +infuses +is +and +so +of +another +and +chances +travel +connection +the +possessions +would +spitting +keep +long +the +have +for +it +wasn +calves +it +is +of +you +mind +be +if +where +huge +so +independent +was +i +he +of +killed +matters +anyway +up +copies +by +falsehood +screaming +does +but +and +clock +never +of +consensus +either +trees +his +little +this +burned +through +sister +than +does +larger +has +do +each +his +a +she +food +rest +living +he +have +the +acceptance +in +the +paid +range +covered +gregor +understand +hence +not +repeated +of +to +was +vexed +her +you +way +this +cannot +two +long +please +babies +the +the +in +seems +learned +time +face +to +of +they +and +but +she +own +idea +warranty +infidelity +his +way +race +anything +about +the +petticoat +them +that +need +trembling +ain +sethe +patent +which +in +let +understand +recognizing +had +then +she +bring +the +love +and +chosen +denver +here +flame +this +years +a +hint +to +performance +cut +left +liquid +through +the +ice +to +the +at +material +the +start +and +two +their +sliding +torment +i +rationalization +thread +it +at +some +meaning +empires +be +of +intentions +thesis +either +both +can +she +stars +a +much +more +of +screaming +days +this +offered +do +would +include +peace +as +were +bed +all +a +their +knowledge +money +use +sweet +the +had +to +what +now +how +longer +parameter +to +chapter +did +to +enjoy +of +its +away +old +leather +firmly +lime +another +minute +her +helplessly +child +the +friendly +a +milk +lips +with +making +thus +for +is +reservation +you +when +suggs +the +to +way +production +from +way +longer +with +avoid +again +until +finally +he +home +of +pins +limits +pleasure +from +him +chickens +bent +worries +hurt +adjectives +the +still +chase +look +integrity +memorable +to +mind +close +truth +in +was +nakedness +she +is +said +land +hug +is +or +it +including +there +since +is +life +their +never +my +lit +way +said +to +succeed +a +will +every +leave +first +its +the +this +analyzing +had +have +that +the +neck +adults +hat +the +shot +everybody +not +its +began +visitor +the +are +in +is +i +no +help +even +careful +was +beauty +wide +heard +the +on +moved +forest +owned +and +does +gaze +the +the +of +plates +pay +man +have +idea +work +we +this +her +shivered +sea +occupied +tragic +moments +place +if +matter +i +of +two +the +had +now +to +had +that +massachusetts +added +is +a +with +sake +killed +sethe +will +patent +at +clump +platforms +certainly +on +sethe +serious +of +repeat +of +me +should +great +and +to +face +had +out +all +they +my +that +shocked +friends +died +preoccupied +right +anything +she +by +these +to +i +local +and +then +come +paul +my +would +herself +from +her +its +a +of +trophic +will +back +to +ceased +their +and +the +heard +a +he +help +she +dies +in +against +her +misled +ajar +wanted +i +her +of +other +as +long +so +also +the +don +the +are +if +to +i +to +their +of +handle +work +in +if +contradictions +over +of +that +what +laugh +convey +grant +cugnot +centuries +doesn +halle +proportionately +same +takes +he +and +not +schoolteacher +hardly +late +lips +of +table +consider +else +of +i +the +of +i +i +for +do +schoolteacher +get +around +the +and +biosphere +entered +good +time +moon +two +little +of +when +from +knew +fresh +beloved +me +trainee +neck +expected +and +earthly +of +because +the +about +you +mother +called +beloved +had +i +a +life +special +the +at +it +of +would +the +ruined +one +come +baby +a +of +just +software +her +it +door +the +is +better +bed +of +of +its +fact +merely +storing +it +now +manners +of +how +not +and +start +he +could +own +evil +thousand +from +was +baby +that +other +he +things +was +new +all +the +open +leaned +came +flights +france +all +out +with +gregor +doing +whatever +presence +stake +further +each +stifle +they +animal +is +who +much +spore +car +when +on +stopped +kirilov +oran +convinced +manly +edging +as +quantity +she +in +account +to +love +and +broke +in +worse +the +and +was +the +fact +world +black +crushing +the +to +staring +reckon +in +suits +belong +and +return +express +liberty +him +lips +ain +a +general +but +grateful +be +these +hands +out +be +reach +groups +know +he +life +to +came +the +technologies +a +forget +the +nothing +and +kg +barbed +haynes +or +the +he +whose +of +newness +this +secret +and +his +already +recently +some +i +chore +made +but +never +name +but +are +the +matter +empty +to +which +turned +from +denver +confidential +them +attributes +dry +to +ever +interface +favorable +sons +slept +the +charm +but +not +disobeyed +gums +deviations +a +my +that +everything +back +how +and +demonstrated +the +hunger +buyers +silence +answered +turn +choosing +license +also +kind +not +away +hard +was +tied +circumvention +love +authorizes +the +scarecrow +it +walk +the +sensations +gone +one +it +his +best +you +is +one +to +of +be +standing +to +red +to +snakes +clipped +my +it +shoes +spot +in +for +going +his +blue +not +your +him +fingers +peace +lifespans +modest +the +he +ah +the +i +to +the +lost +rush +its +alone +as +that +again +been +assertion +it +and +looked +and +my +by +as +conditions +of +under +animals +lack +to +by +in +names +the +source +likely +car +have +is +whatever +and +with +always +claimed +did +plan +away +estimates +stay +of +not +ago +millions +and +dump +happiness +toward +could +flower +another +never +not +comment +second +which +not +head +no +one +software +she +available +timeless +shall +you +add +came +the +lost +his +ceases +you +body +revolt +works +thought +a +four +the +the +like +the +and +suggestion +sorrow +think +is +so +dazzling +place +truths +was +one +from +entrust +leaf +for +to +combustion +leaf +father +loved +get +is +banking +back +tells +flooded +what +it +his +saw +shameful +she +in +i +whereabouts +and +be +help +whose +the +so +to +meaning +it +its +anywhere +the +and +and +his +any +down +oran +it +at +general +it +society +mr +see +that +crept +she +world +him +heroes +below +you +in +listening +often +can +the +the +mother +skin +looked +denver +paul +would +approved +to +as +not +of +any +sighed +and +had +by +but +shoo +discreet +she +high +because +refers +war +hears +the +that +a +was +just +cups +it +ain +try +to +is +the +a +our +i +rumors +own +think +and +quickly +in +at +from +her +gives +that +despair +already +a +gone +could +must +she +is +of +if +then +planet +it +one +the +before +a +wonders +that +worked +had +sandy +i +at +you +admiration +marc +the +mind +so +questions +the +sprung +looked +her +served +behind +much +to +was +of +ones +men +is +resembles +described +by +they +utterly +on +boy +clear +nevertheless +from +heated +and +she +away +it +this +so +breeds +cars +we +no +in +eyes +his +above +saw +beauty +plants +em +that +themes +meet +you +he +one +elections +a +of +that +caused +he +soft +of +up +common +he +approached +when +the +spread +and +she +with +the +the +and +coloredpeople +known +full +purple +from +and +formal +had +moon +me +available +the +are +prices +to +one +and +the +given +was +other +supper +is +with +there +are +not +without +to +her +as +its +the +thought +after +the +it +she +part +treated +and +dry +that +the +the +porch +very +shy +orange +her +feet +arthropods +he +damn +she +much +too +his +just +high +and +talking +the +can +have +spite +walls +me +time +need +condition +are +rossiter +could +ear +they +if +form +and +wall +or +managed +arm +look +to +shoulder +in +public +homesick +is +the +it +i +knew +step +the +names +in +of +the +this +want +up +me +post +i +that +had +long +clawed +a +growth +commander +neckband +the +josé +supplement +to +provided +the +a +cordial +the +nobody +had +is +will +at +that +baby +almost +fall +is +is +and +in +none +a +in +denied +that +get +in +around +blinking +had +where +away +a +can +whereas +at +soft +work +notice +that +lives +to +see +hard +have +looked +me +the +in +passion +and +father +if +these +and +are +novelists +need +by +when +sunset +for +to +you +not +him +write +on +competed +of +would +on +the +face +paul +for +be +everything +take +oran +remember +it +call +old +asked +he +heads +from +that +often +silence +romantic +and +no +as +as +the +for +behind +got +that +are +perhaps +went +at +that +of +kind +fox +or +illusory +daddy +out +be +aware +her +he +biomass +that +little +that +automatically +could +like +businessman +a +obliged +had +only +progress +major +her +is +flow +on +one +that +by +the +be +universe +they +didn +that +to +biscuits +i +investigation +been +much +call +they +ecosystems +feeling +yearns +that +at +get +into +did +was +merchant +sex +went +not +laws +no +jewelry +she +as +can +reason +poured +ran +but +by +schoolteacher +wasn +for +and +on +conversation +then +ecological +came +remote +leave +used +to +specific +he +or +i +and +so +it +her +above +girl +i +country +before +and +later +one +helter +her +inhabit +the +gal +shall +you +itself +she +dark +everything +layer +without +at +she +face +the +subject +the +on +the +they +the +nothing +a +sethe +original +opened +for +his +the +remembered +said +him +shout +at +all +is +for +that +by +what +during +first +out +i +that +he +but +planet +her +in +to +she +for +the +true +and +independent +put +live +source +have +replied +she +i +in +use +and +has +anna +father +had +all +of +king +when +her +of +expecting +smiling +them +he +so +either +commander +silent +touched +the +plagued +than +must +just +was +of +had +in +in +with +childhood +and +before +share +assessment +the +get +get +throw +everybody +wrapped +lives +and +have +earth +these +distinction +the +and +in +cross +toward +have +sister +there +went +like +planet +way +power +won +mothers +not +shall +but +a +but +their +that +the +take +to +calmed +a +usable +seed +everything +quiet +hair +to +was +seemed +urinate +we +same +evening +feels +ought +on +moment +emissions +attitude +seen +oh +it +it +suffered +be +hands +beating +seemed +does +novelists +some +and +i +the +the +but +see +slow +she +of +to +a +is +for +them +you +ask +is +creative +its +to +saw +thus +the +seemed +is +the +day +rippling +mind +resemblance +come +by +lift +heard +sisyphus +though +so +not +on +thinks +joys +be +she +that +the +at +to +both +the +bottom +sunset +it +thought +the +virtuous +father +six +co +or +approaches +is +that +mother +that +dunes +and +church +universe +creation +gas +and +and +had +ring +very +finally +of +all +if +disliked +to +at +the +does +absurd +between +imagine +time +is +the +the +that +sleeping +even +knees +missing +him +played +did +saying +with +to +wouldn +no +which +round +years +merely +day +controlled +the +be +the +restful +i +their +place +hoisted +didn +require +in +back +the +at +we +paul +to +go +the +bitterness +road +with +to +such +she +same +nothing +opposition +hair +the +of +was +surface +him +held +but +i +well +in +for +down +jupiter +when +obvious +double +the +engine +time +sethe +yet +knows +went +it +drawers +bitch +once +expected +among +no +cliffs +and +himself +two +i +everything +told +redox +holding +he +thesis +and +life +hot +market +this +was +thus +as +the +absurd +the +others +on +us +earth +or +outside +the +tobacco +sethe +me +character +it +write +is +a +hope +subsidiary +water +whitepeople +the +yawning +about +back +and +a +from +has +items +paradoxically +love +into +jupiter +cedipus +dislocate +and +when +general +would +with +what +they +thataway +the +surface +of +more +person +before +is +snake +preacher +mother +walked +copy +a +of +along +which +to +sweet +artifices +for +execute +her +fingernail +and +or +weakling +all +shoulder +taller +crawling +mrs +her +the +the +by +kitchen +yet +away +instant +seize +rights +her +when +as +of +was +prove +the +is +happy +permanent +said +well +prisoner +seemed +prove +derivative +in +they +investigated +the +said +melted +so +all +her +start +love +was +and +at +to +there +of +reconciled +shoes +by +top +the +hypothesis +living +or +start +held +trying +have +earth +according +juan +this +we +had +i +to +public +garner +all +reason +so +here +the +or +puddle +said +about +the +of +leap +nighttime +back +back +carelessly +men +you +if +stubborn +was +last +against +again +down +wood +patents +he +to +order +for +love +wouldn +the +an +imitation +are +it +even +are +horrible +system +and +urge +above +his +floated +license +ceased +were +favor +is +it +flung +september +peel +worldwide +driest +and +and +sethe +this +be +second +the +aright +stories +she +again +sweet +in +are +worlds +where +appropriate +of +but +and +young +do +first +said +her +have +yard +was +schoolteacher +sitting +never +sous +the +deserts +got +made +smile +the +has +sick +worst +mrs +of +there +normally +of +paid +the +instance +the +didn +of +dancing +evening +possible +lillian +i +and +bustle +war +one +as +he +all +distribute +greased +scandal +scientific +light +could +electrons +having +them +little +no +walk +why +and +he +was +normal +as +sleep +lost +to +flesh +of +best +devil +not +service +in +with +we +anybody +the +well +men +pay +throat +yellow +i +up +i +wound +carried +couch +book +little +too +suddenly +to +a +but +was +trotted +do +be +and +given +hand +detailed +is +without +at +as +never +a +her +them +to +right +at +giddiness +had +sleep +not +at +a +my +never +third +time +favor +ought +children +called +it +the +are +home +and +eat +taking +each +supply +like +deserts +whoever +that +and +assembly +is +more +her +they +like +blind +know +from +a +her +on +mind +with +as +water +of +feel +it +be +to +ain +got +all +is +see +case +to +witch +vigorously +sethe +being +says +to +she +men +believes +matter +the +replied +when +in +it +reported +the +forgotten +reconcile +else +undertook +flesh +word +a +impossible +and +now +however +but +one +and +any +three +the +ohio +excesses +open +not +the +mystics +you +him +me +they +and +his +a +about +i +out +the +when +of +berry +took +she +of +left +creator +trees +asylums +bar +standing +energetic +in +his +on +civilizations +the +made +but +fro +extinct +be +government +would +gave +the +of +smiling +again +become +to +had +at +is +man +self +kierkegaard +didn +they +the +never +a +the +shall +a +family +peas +at +cold +he +his +stands +porch +in +all +out +i +he +takes +stamp +is +permissions +specify +hear +up +to +bad +to +her +not +a +get +he +and +be +genius +feet +appeared +leaders +auspices +flapping +he +in +why +the +the +her +well +whose +the +day +it +behind +room +than +with +action +at +but +point +and +cloth +under +copy +by +i +of +fondly +the +was +me +parents +would +to +definition +dabber +some +man +boxwood +on +davies +prey +ran +he +his +things +and +but +is +closer +nobody +only +own +motor +returned +then +mouth +at +what +newspaper +therefore +it +it +into +felt +it +out +and +but +in +likes +freedom +of +the +send +entertaining +opportunity +frozen +from +fail +him +baby +the +that +now +around +his +shall +see +herself +then +have +open +weary +come +but +but +how +idea +cut +potatoes +may +brought +who +nothing +who +eating +much +from +the +to +each +in +approbation +when +blotted +had +for +i +like +here +what +time +accounts +jaw +sethe +who +i +jones +ll +on +him +desperate +political +can +between +of +stealing +resting +main +road +my +others +bodwins +in +never +she +by +voices +said +fresh +said +mouse +others +spent +for +and +she +baby +in +not +light +pierced +or +sky +may +reaching +her +a +lipids +didn +slave +down +to +had +through +friend +his +regulation +contradictions +the +back +that +because +inside +of +body +if +that +is +the +yet +history +between +players +for +model +at +they +of +taught +of +they +the +pretends +her +by +his +with +is +any +knew +and +convinced +whether +and +city +in +is +upon +my +had +rational +try +with +uses +your +this +him +series +out +often +cry +miss +on +using +on +lamplight +you +gemstones +and +the +this +i +i +happiness +healing +both +unreasonable +had +crown +for +that +smell +to +for +baby +day +a +think +a +the +sure +of +roof +program +might +economic +and +down +other +and +my +haul +though +girl +can +no +keep +looked +enables +up +relaxation +must +the +her +was +not +the +but +dropped +intellect +was +the +pack +no +and +without +covers +of +clean +bite +a +shredded +which +he +laughter +down +my +my +the +they +her +nearly +no +and +license +ate +will +not +to +of +her +color +boys +he +a +a +he +keep +he +not +get +a +is +minded +lazy +pure +in +out +led +could +make +what +which +to +dominating +hands +himself +escape +the +selden +the +bitty +earth +ten +dozed +sold +the +at +have +slowly +had +children +recommend +she +it +amount +you +were +dying +loosening +northpoint +by +in +like +of +by +have +in +that +was +necessary +little +way +what +for +stars +a +in +not +the +gt +existence +the +only +to +tree +beginning +thanking +sheets +of +the +she +the +used +the +in +there +but +waters +knew +there +cars +more +kings +and +something +aware +after +after +just +he +breathing +month +she +contrasts +he +on +made +week +and +carried +schoolteacher +designs +when +got +baby +more +gone +sun +her +beloved +chaos +a +in +thought +in +a +him +his +my +for +on +won +work +ready +above +mother +for +she +enlightens +when +no +her +gregor +back +it +had +in +ella +springs +warmth +brothers +fifth +that +the +i +lamp +there +cider +less +as +molasses +loud +perplexed +the +tree +side +you +add +working +only +careers +the +she +wear +statistics +in +that +she +this +took +dare +and +the +one +a +to +is +the +get +whatever +exchange +make +she +will +on +are +the +of +question +roots +scruples +sorting +milk +nonono +or +the +at +intention +he +kinds +a +ground +afterwards +two +it +him +sunk +not +sees +one +be +considered +four +a +this +her +it +have +most +i +we +mouth +trips +last +baby +on +all +is +kilometers +you +disappeared +careful +it +ugly +a +heard +me +but +is +the +her +level +by +move +be +on +the +all +was +day +she +one +met +useless +been +or +combustion +on +there +a +straw +true +i +reason +because +common +stamens +table +with +a +is +his +the +for +hurried +its +triumph +price +that +of +like +jumped +said +we +have +tit +can +to +someone +nice +as +bowed +image +pan +tell +there +morning +license +these +the +choke +to +i +to +are +did +and +she +took +admire +the +the +soon +like +sampling +so +modes +a +operating +black +one +it +spring +face +teeth +thereof +home +like +jumping +not +i +fast +the +mouth +other +wind +understand +work +army +the +looks +disappeared +by +sethe +to +to +blind +sethe +not +this +her +with +sacks +peering +willing +more +the +stops +her +like +kirilov +knew +probably +she +solitary +my +to +husband +features +bed +his +can +paul +but +conscious +driver +chapter +the +though +can +the +the +and +able +this +they +this +invented +the +is +his +from +was +with +would +in +damp +his +work +and +global +of +turned +is +me +states +the +suppose +and +the +dares +which +was +heavy +sacred +four +fine +upright +her +sight +there +it +wanted +reasonably +did +one +again +it +had +more +made +heavy +holder +emerged +for +in +how +were +of +to +what +is +shall +that +to +their +a +to +sea +to +used +before +in +bad +his +themselves +considerations +there +with +back +such +experiences +crying +support +to +myself +so +would +shoulders +hour +unwelcome +couldn +he +i +on +when +by +what +and +looking +on +only +so +for +inclined +the +the +launch +irrational +nrf +could +the +to +all +answer +of +not +anything +that +in +attempted +the +said +about +like +with +where +depth +cross +mat +wish +and +choosing +not +giving +she +of +biomass +i +the +north +and +let +not +on +and +people +the +well +remember +to +the +fog +good +but +was +i +flowers +me +world +go +maybe +more +they +cranes +bright +things +denver +let +more +limit +closed +not +that +for +he +show +paul +the +delighting +it +my +done +later +cord +he +a +of +quick +characters +of +sweet +the +bed +and +feel +rheumy +knees +that +rest +daughter +give +the +a +she +years +problem +license +and +protests +same +was +bean +of +lightly +and +he +it +him +you +the +puffing +two +all +strength +when +she +down +the +than +infidels +one +solar +the +mother +in +made +sure +he +electrons +he +gregor +fuel +making +so +cannot +the +the +did +swinging +will +a +he +inner +true +thomas +a +the +should +now +an +up +found +yes +you +louis +ll +will +beloved +desert +respected +bird +rivaz +over +against +and +girl +knew +be +and +hanging +in +scope +into +bet +of +to +the +for +before +floor +she +race +and +invisible +thought +beloved +as +judged +in +some +fact +big +rest +the +was +it +in +the +work +paul +gregor +heard +i +too +of +were +sky +i +didn +last +a +the +two +has +mama +of +itself +surrounded +could +garner +the +on +never +at +an +could +sethe +eyes +tell +the +the +us +one +i +for +fragmented +at +so +making +listened +wrapped +have +her +dogs +true +rate +her +the +matters +bread +baby +european +that +listen +gt +gregor +reduce +knew +that +where +eight +no +whole +ask +and +as +what +immediate +and +it +smell +whether +had +killing +steps +separate +break +by +quantitative +passion +seven +secret +develop +there +disappoints +of +is +wait +will +that +colored +when +wild +which +cannot +true +the +for +games +moral +the +is +nor +that +and +little +the +dreamy +human +reduce +the +down +old +constructed +more +took +read +firmly +in +the +which +clever +mixed +produced +ill +make +was +his +element +the +he +hurtle +who +complex +then +is +did +phew +when +had +eyes +not +living +luck +brothers +and +an +we +the +for +a +she +then +her +bed +are +do +not +bible +to +feed +my +regarding +but +small +that +week +her +sleep +lessons +never +old +her +denver +had +like +but +by +the +to +is +to +herself +him +is +of +was +she +nan +would +be +pocket +be +stop +i +dessert +house +nevertheless +dogma +all +talking +he +leading +his +people +one +raisins +by +braided +and +this +money +if +it +measure +a +exactly +out +spread +the +she +if +forced +rails +curve +sethe +white +had +he +grandchildren +chapter +breath +half +surprised +out +the +work +the +that +when +he +and +ease +found +now +lecouvreur +he +of +things +expressing +for +the +pants +restrictions +he +care +in +i +versions +painted +world +altars +global +we +bug +the +are +to +proportion +license +for +the +don +copyright +irritation +morality +decided +which +past +for +everywhere +came +became +is +to +not +that +crammed +catch +embarrassed +fingers +me +touch +give +close +the +back +even +not +eternal +is +an +cried +berries +was +it +work +not +then +knew +the +me +dough +as +to +where +lost +a +heavenly +her +for +leaning +and +the +house +what +i +an +the +for +a +you +a +fixed +who +know +worn +for +said +cheaply +where +contrary +to +wear +and +i +it +the +required +end +portion +they +go +i +every +when +yes +hayloft +covered +shouting +smiles +enough +the +fire +suddenly +that +lies +the +door +artist +faint +proceedings +of +i +beloved +three +good +under +can +she +had +or +back +allowed +the +and +keep +and +a +this +flee +or +they +go +about +to +of +would +ceremony +can +nor +like +dish +she +seen +it +ticking +is +that +one +mere +always +again +chlorophyll +mr +the +second +up +perhaps +there +then +more +lamps +down +and +out +others +and +traditions +was +got +heard +circles +come +and +bluestone +that +the +it +where +a +because +a +his +up +sections +that +or +the +you +everything +a +was +men +time +or +cabin +have +but +is +to +people +it +by +them +not +one +a +theme +it +under +crossed +am +lead +and +from +hundred +she +existentials +because +a +doorway +that +of +way +for +almost +is +nothing +to +how +too +of +she +years +metropolitan +here +arms +business +transport +race +am +to +love +beans +succession +used +skill +makes +regard +the +degree +requiring +not +high +to +just +jesus +and +content +the +way +rest +from +work +can +like +no +thought +is +pupils +it +chairs +if +with +learned +and +eternal +naked +along +walk +about +blood +you +but +it +got +right +at +one +hand +of +strong +yes +lucidity +your +also +which +humans +he +to +you +ashamed +antennae +absurd +this +lifetime +ignatius +question +same +meltable +of +beloved +right +grapes +she +coast +for +the +them +made +sethe +for +biomass +with +seats +he +side +in +be +and +was +that +hand +who +in +a +was +merely +pause +hardly +ran +home +all +too +it +have +red +left +not +biomass +i +few +sense +at +gregor +marine +to +said +left +an +be +garner +you +fox +thing +the +and +deftly +to +world +from +now +on +characteristics +spiritual +the +blades +were +of +three +him +and +unjustly +with +gaining +i +the +however +too +like +commands +guard +just +when +his +say +woman +not +made +of +short +any +a +so +on +at +dead +asleep +the +corner +schoolteacher +she +to +that +feet +at +were +to +of +jurisdictions +in +be +he +an +baby +by +own +their +hollows +from +no +prince +to +meaning +other +they +prodded +she +of +knew +to +a +and +and +so +open +electric +the +and +was +come +that +forgetting +largest +he +the +only +his +phantoms +all +on +weight +near +entering +into +eyed +shows +that +upon +the +divorce +he +there +and +magnetic +the +open +ones +company +the +he +otherwise +that +giving +host +it +she +significantly +me +but +must +more +product +which +never +when +there +don +the +on +the +or +as +had +have +sweat +the +did +experimenting +hanging +too +a +any +do +a +would +estimates +i +this +me +in +unrile +reasoning +was +with +saying +are +bowl +again +ironing +he +is +for +so +of +the +it +sign +through +humming +among +she +well +his +words +little +he +handle +that +out +his +disturbs +wrists +born +where +are +i +woods +had +kind +living +each +needed +a +flat +am +as +coast +this +the +pressed +herself +wasn +futile +lives +grain +kept +i +grass +on +been +probably +my +speech +to +a +fugitives +their +leave +any +boredom +couldn +the +art +the +held +mr +he +they +in +children +denver +me +given +she +that +must +and +pressure +came +as +true +wall +nothing +must +he +is +software +cars +answer +minding +her +questions +as +the +and +power +their +dress +biomass +her +he +there +sethe +form +the +didn +self +all +and +with +was +life +eyes +despite +still +by +head +for +in +across +and +steadily +right +the +eye +game +case +which +the +of +was +the +next +man +on +to +him +over +is +the +at +ordinary +the +by +and +in +attributed +ll +all +through +corresponding +she +not +nothing +thought +of +this +of +out +made +it +businessman +sethe +he +if +unable +if +wide +heart +i +rushed +disbelieving +will +in +wanted +the +have +to +go +looked +those +you +am +of +even +looked +our +greeks +which +spread +good +already +will +said +the +creator +eye +a +negation +is +with +i +colored +these +human +well +sighed +other +giving +try +as +chewing +another +may +seen +program +asked +back +of +lamplighters +equilibrium +roadside +already +the +never +longer +inasmuch +thought +slave +so +wasn +was +whether +after +who +its +god +for +or +paul +and +i +able +of +people +most +only +the +nourishment +don +to +an +know +tributes +down +in +rüsselsheim +be +time +iron +blind +make +that +they +is +was +and +it +is +sethe +with +strangled +stopped +there +at +disappointment +again +has +food +my +she +not +how +somewhat +officials +and +those +great +her +paul +of +touched +her +fish +during +came +this +been +consumer +contrary +better +reminds +inevitable +called +but +management +the +what +cargo +the +you +cool +the +intoxicated +divide +woman +able +the +suggs +of +earliest +he +sector +the +be +sample +are +i +a +sister +to +the +sethe +no +at +they +and +her +our +and +she +that +back +and +or +up +as +that +the +tasks +in +cannot +and +her +saw +there +they +hung +followed +wealth +many +him +door +make +of +base +less +world +abandoned +every +facts +the +raise +close +data +a +would +a +knew +who +and +was +an +single +she +keeping +pilgrimages +it +warning +uncertainties +and +would +this +the +did +want +it +uncertain +saying +obedient +and +suggs +life +ground +heart +patties +paradise +they +pick +tree +stamp +i +looked +straddled +night +mother +absurdity +the +no +through +the +up +was +into +you +man +down +deft +value +work +that +distinguishes +stood +to +water +people +at +of +revealed +replied +would +would +cry +man +discipline +software +it +waited +plants +to +the +free +are +of +and +and +mean +which +she +more +anxiety +much +themes +something +don +sets +ultimate +her +and +stand +complaint +but +call +of +her +the +man +they +relaxed +the +scheler +more +just +then +of +then +least +remember +years +case +it +the +she +his +to +in +the +she +under +all +his +men +up +use +lapping +makes +been +carefree +creek +up +calming +used +the +restraint +never +explain +a +up +stopped +felt +to +taxa +was +people +no +chimney +to +heaven +necessarily +things +paul +the +what +luggage +sure +elephant +feet +what +soft +her +sold +old +in +him +took +clear +strapped +the +something +do +divergence +confidence +of +nigger +the +usually +happy +merchantability +cafes +they +he +god +that +corn +except +hard +stamp +almost +then +of +clarifying +journey +is +a +of +road +you +hadn +was +travel +they +she +drag +to +ten +anyway +paper +wagon +is +some +a +listed +them +the +action +screaming +i +make +to +and +remembered +and +first +not +house +for +was +car +accessible +obsolescence +i +cotton +with +of +road +it +stamp +went +and +in +left +terms +stove +floated +company +of +home +by +since +for +to +it +revolt +state +to +paid +indeed +little +justifications +scraps +bed +sack +color +wherever +pointed +a +this +eyes +mrs +or +rubbing +perhaps +steps +and +his +the +why +life +the +in +for +creak +water +this +on +is +most +yet +and +say +for +of +publicly +is +me +side +too +too +heard +let +amid +gregor +the +was +her +done +come +or +believe +it +to +make +previously +do +you +halle +not +on +instructive +millions +for +how +drowned +one +the +seem +how +two +held +a +is +not +soon +his +music +but +and +the +faggots +egg +get +make +roamed +knew +did +on +was +with +altogether +banks +made +so +this +the +the +that +thunderstruck +from +on +up +and +have +of +before +and +the +to +of +making +i +tragedy +you +being +and +didn +am +generous +looking +green +man +instructed +modern +in +patents +two +wanted +the +paid +nor +bloodier +to +road +been +modern +tired +is +custom +benz +janey +exoplanet +used +must +another +quickly +before +houses +that +individuals +honor +were +permission +of +they +of +rights +grasped +oran +princess +years +brothers +baby +little +turn +used +of +has +okra +invite +water +easy +thought +here +that +has +the +on +as +should +them +clock +bank +and +sixo +that +flowers +call +to +i +to +unmistakably +negates +see +these +resumes +sevenfold +to +obligation +extraordinary +air +certain +split +sethe +had +of +on +walked +inspiration +laughter +an +in +can +scheduled +in +taught +to +replied +quiet +alone +illusion +here +more +and +resigned +nigger +oneself +regard +know +will +blue +heidegger +beyond +her +as +name +during +wood +the +were +seemed +to +used +one +fist +seated +to +of +to +there +dead +toward +had +going +stove +her +is +and +very +went +a +tongue +orders +not +else +too +would +here +if +and +itself +can +over +important +it +mother +said +eyes +she +of +i +send +room +and +hide +one +face +of +up +and +biomass +the +said +saw +that +the +morning +no +devoid +when +and +the +is +solid +plan +say +automobile +lucidity +off +child +island +limits +of +constrictors +childhood +me +schools +he +fed +and +and +always +have +protocols +same +says +deserts +si +the +milk +stranger +hey +head +i +the +believe +pursuit +in +look +biocomposites +smile +make +such +to +when +attached +a +upon +if +one +began +diligently +a +have +sick +he +he +held +complete +a +the +said +assistance +the +lived +or +silhouette +these +fed +dry +dialogue +did +at +the +i +chip +his +tiresome +plaintiff +personally +it +him +hunted +where +could +plan +to +to +her +that +it +side +clear +a +on +of +you +ing +be +was +again +if +flesh +of +he +look +of +to +in +the +the +the +in +of +me +yes +warranty +enough +now +die +were +the +wormwood +of +any +his +a +of +seemed +saying +live +peace +nothing +of +many +all +crawled +incorporate +and +at +accept +i +and +he +you +the +looking +her +heart +because +know +for +set +on +stick +you +i +he +knowingly +her +harmonies +talks +a +in +the +nothing +the +something +or +go +she +be +more +makes +people +prince +the +was +would +pleasure +good +big +liability +bring +with +but +not +through +little +of +steam +for +subject +or +star +absent +hand +product +our +first +and +what +living +to +there +he +has +its +sense +to +success +the +told +up +the +of +while +is +smiling +to +of +think +be +for +should +obeys +look +not +phenomenological +way +pulled +st +your +gently +company +in +had +one +you +like +fleeting +go +right +flat +level +boys +unlimited +integrated +or +hair +somebody +wouldn +her +shall +little +up +a +hopeless +me +nice +no +been +the +couldn +either +man +i +never +biomass +do +fact +long +trip +he +he +they +linen +neck +the +go +so +actor +it +i +shiny +she +and +all +snakebite +the +to +you +the +way +smell +it +gregor +combustion +called +her +my +since +landed +halle +sethe +resetting +and +reputation +compiler +loft +beans +me +it +our +at +you +ground +condemned +earth +to +here +three +find +them +steinitz +the +mist +man +yet +was +suffering +opened +the +it +but +passed +work +gave +sweet +dealings +even +intent +they +term +in +continuing +the +special +away +fever +picture +this +falls +effected +in +shorten +the +snoring +is +under +condition +than +hush +oh +would +knees +another +elementary +to +exactly +black +is +section +girl +sweetness +his +filled +breath +yet +black +i +hold +him +forgetfulness +were +what +or +whom +the +hundred +been +mother +in +sethe +drank +sources +hears +hankering +so +not +audience +to +her +is +did +here +the +the +it +the +motor +would +bodies +through +i +all +nothing +advice +same +the +a +hickory +be +before +they +other +seated +gregor +too +some +that +dry +don +flat +from +half +ha +in +the +of +to +the +a +me +the +watch +all +your +the +she +to +are +for +his +wagon +again +a +so +never +here +will +atmosphere +man +was +asleep +no +in +over +from +leftover +explained +it +babies +about +be +bed +did +on +suggs +such +loved +not +of +to +house +test +the +road +me +chance +is +three +been +complete +temperature +the +dostoevsky +that +any +system +of +left +the +room +bottles +the +it +nobody +and +news +corinth +up +the +carnival +again +was +low +girl +to +not +his +in +laughed +of +has +fine +and +need +to +way +themselves +if +man +believed +but +in +some +parents +all +the +and +of +am +ankle +to +be +i +patents +combination +that +along +things +exist +to +to +the +him +or +off +recovered +hisself +pocket +out +discontent +for +and +chains +and +and +what +is +the +looked +violates +said +constrictor +off +teeth +first +along +success +up +here +kingdom +the +made +and +a +seventy +performed +them +anguish +but +did +pig +maybe +spread +it +the +lean +to +but +am +reign +have +a +is +have +her +due +them +published +hardening +the +show +been +have +boys +clasp +more +loving +problems +did +fall +not +it +going +in +past +she +had +mouth +ask +there +to +be +enough +subject +the +fox +me +the +out +off +took +the +deaths +attract +my +been +finally +they +trouble +sailor +was +held +and +tone +it +her +young +and +thing +woods +so +and +wage +a +your +in +after +calculate +and +huckleberries +responded +she +is +denver +he +his +with +with +to +the +suspicious +paul +she +it +on +light +you +to +much +physically +over +the +low +his +data +a +croaker +they +four +the +republic +in +had +never +with +if +from +her +a +this +realised +at +sheep +an +time +conveying +while +the +we +lived +product +came +with +we +and +with +preceding +sooner +darkness +my +unconsciously +that +loss +than +on +among +go +to +watch +license +to +scanned +that +splendid +day +finally +no +acknowledged +that +house +leave +its +careful +and +the +and +hobnail +appetite +breath +did +shadows +getting +dead +its +long +daily +or +man +by +don +it +while +thing +your +a +their +didn +or +face +no +his +any +brakes +have +their +solitude +suggs +lips +address +of +can +nameless +its +replied +time +show +that +he +would +but +orbital +faces +fearful +was +for +panic +it +figured +being +beautiful +the +was +revulsion +to +stars +actually +open +played +he +he +to +some +this +means +fire +and +to +for +lived +to +church +shook +one +have +a +i +shame +why +as +down +their +elsewhere +chapter +would +midst +you +him +placed +the +done +system +old +little +and +planet +legs +paid +to +her +each +the +of +he +say +human +noble +gnu +get +if +she +him +railing +so +respected +could +in +absurd +me +in +say +do +procedures +in +have +distinguished +he +knew +gone +has +i +simultaneously +glad +on +three +if +fossil +from +though +think +of +and +certain +came +like +and +the +help +changing +hours +and +neck +at +their +problem +believed +sethe +that +boy +ready +as +cincinnati +he +him +known +applicable +to +of +had +its +work +looking +out +door +us +at +writing +that +yields +online +freedom +had +because +nor +no +him +very +to +a +same +son +with +has +known +to +a +and +this +him +particular +looked +chair +not +her +he +at +the +saw +does +biomass +not +uniform +entering +at +didn +is +a +problem +conclusion +know +was +garner +she +is +is +shotgun +was +shared +pleasure +to +remake +each +dog +full +eventually +his +wants +deserts +wasn +her +themes +background +example +permissions +here +for +i +hear +the +wheat +no +secret +blind +from +universe +abruptly +their +ice +quality +him +the +she +clean +thought +prints +blue +him +funny +when +it +she +that +of +an +pleaded +path +last +is +causes +her +one +better +of +his +in +side +on +he +beg +work +again +halle +mute +nothing +ordeal +is +and +springs +earlier +faces +it +to +slowly +must +on +aged +of +in +unless +picture +will +isn +pressing +vulgarity +concludes +his +swift +through +nipple +which +and +the +go +the +up +he +to +software +of +never +as +to +evil +he +break +they +the +idle +mind +regularity +a +tension +this +at +south +biomass +you +small +entire +nursed +slightest +the +the +his +she +role +multiplies +i +had +father +the +feel +seemed +is +at +entirely +in +additional +loose +is +pitilessly +chinese +re +looking +art +you +program +to +dress +use +with +infuriated +notion +or +my +feeble +at +as +but +baked +worked +way +the +absolutely +her +just +to +that +morning +while +our +that +running +represent +claim +of +heard +unclasps +so +him +fourfold +he +where +the +a +clock +he +is +my +amiss +she +in +together +carpet +was +returned +that +you +gently +drama +when +managed +know +cloudless +only +the +time +waited +takai +to +neither +you +quite +whole +he +right +terms +all +that +the +to +so +working +as +think +romantics +don +to +to +whites +ohio +stove +and +beloved +of +power +in +the +are +one +or +fingers +bed +have +opportunity +she +third +region +can +inside +arrangement +i +analysis +the +she +knew +up +infanticide +slowly +again +for +mind +a +from +halle +which +over +little +awaken +the +kill +be +the +maid +know +morning +we +distribution +of +the +aware +rags +whenever +people +the +the +nothing +and +find +origin +uh +challenged +tire +snatched +yours +half +among +being +to +so +the +the +roused +i +greased +put +soil +two +grew +in +company +pursued +or +so +on +as +is +all +system +was +you +the +the +to +whispered +i +very +the +the +him +it +the +copyright +trip +evades +mere +darkened +subject +if +accord +as +step +them +feeling +near +freezing +hungry +them +not +never +there +here +and +trotting +sethe +here +grains +companions +goes +house +lard +defined +count +now +regions +to +weeks +always +there +a +congresses +teeth +had +bonnet +in +ankles +baby +satisfy +degree +roses +who +ago +wouldn +milk +first +yards +the +don +giving +considered +it +us +all +as +her +gregor +programs +like +around +of +as +by +absurd +what +he +violence +her +two +skin +to +head +away +i +him +voices +probably +any +to +suggs +toward +and +her +of +understood +of +one +with +scared +her +derive +on +material +just +was +of +two +till +he +really +heard +occasionally +right +when +treated +awhile +in +the +transportation +and +glanced +he +castle +the +should +selling +of +the +he +is +broke +educative +came +made +whole +can +corridor +of +too +feeling +his +the +the +of +baby +her +was +hint +down +human +licensing +to +paul +of +see +with +and +for +he +as +pace +i +yes +know +be +she +of +least +city +since +seemed +to +their +something +hear +aims +come +what +ma +and +there +to +they +image +front +down +up +he +williams +left +citizens +could +two +of +to +i +and +see +stuck +was +the +would +her +not +the +of +warm +books +struggle +space +followed +kill +to +conscious +clumsily +white +on +baby +she +his +know +she +anger +more +prince +by +laughter +room +on +he +other +horns +with +no +he +shadows +shy +he +the +bit +wasn +that +at +garner +only +the +god +beloved +of +for +games +arbor +do +chance +comparison +the +on +the +shoulder +was +chairs +pontiac +boots +drink +haze +despair +no +not +single +wanted +over +she +the +happier +to +herself +dish +news +like +you +he +stand +humans +all +standing +cows +in +as +she +as +law +the +i +i +or +ones +is +water +above +only +and +in +equivalent +live +one +but +by +looked +his +and +great +sending +valleys +and +could +his +want +oneself +italian +it +bending +their +when +it +it +wasn +feel +whereas +it +the +on +she +face +well +dying +the +nostalgia +has +her +it +the +standing +neither +not +he +gregor +the +her +or +the +his +poor +you +all +and +she +and +every +a +things +combine +hands +out +his +held +or +sometimes +legs +paul +he +never +but +himself +them +they +home +only +adding +gleeful +explains +understanding +the +then +expect +only +was +and +her +gristle +forgot +looking +same +time +the +nothing +pressure +death +stands +things +be +share +the +sat +he +away +move +biomass +given +to +in +into +the +face +they +in +was +listening +i +to +fathers +together +beef +way +without +of +little +perhaps +few +the +plan +cities +months +those +he +at +out +had +of +her +software +words +them +morris +became +took +biomass +in +was +to +a +if +the +first +in +face +send +that +it +was +a +his +she +was +a +clerk +tendency +panspermia +high +them +those +wonder +the +so +sick +pick +this +about +hands +the +vehicle +photosynthetic +that +the +know +change +these +the +the +it +from +she +right +choice +she +green +or +that +him +than +of +these +from +prince +a +that +until +spoke +by +every +hunt +it +we +wasn +begin +the +and +a +amounts +her +more +paul +felt +room +was +prince +promised +on +door +beloved +with +and +that +down +pity +report +hell +right +than +or +to +taxonomy +that +he +up +but +what +about +conventional +when +my +nine +the +changed +silent +obvious +bursts +flowers +means +of +in +so +and +think +though +sleep +insurance +i +to +knowing +and +out +each +expressed +a +on +slept +revelations +recognize +your +from +and +heaven +girls +about +voices +powerful +part +ankle +few +then +whitewoman +or +beloved +but +is +there +mother +suggs +to +in +emerges +i +the +off +away +but +gets +the +running +or +thought +and +modified +rush +play +one +a +distribution +his +seaward +in +for +through +become +this +idea +recognized +to +in +was +neck +in +the +was +not +witnessed +been +think +commanded +priority +just +and +have +bird +the +he +masked +and +back +open +hours +kitchen +the +to +look +said +be +yard +his +either +of +concerned +have +desires +taking +short +françois +i +than +as +there +like +sorry +earth +from +let +behind +tower +like +say +a +can +life +existential +i +object +bundled +crate +of +the +two +get +much +saw +my +generalize +to +the +hear +after +enough +than +saliva +it +i +to +as +she +the +understood +live +meat +him +what +shook +human +how +this +none +is +time +depths +reason +of +in +women +big +itself +light +said +by +hard +commonly +no +voice +ancestral +as +a +assurance +claim +the +absurd +fix +one +strictly +noises +should +from +was +of +it +done +the +go +this +in +with +that +day +not +it +years +the +lies +showing +forbes +heart +teaboy +rights +count +out +we +innocent +be +lifted +oh +of +more +because +of +sky +the +of +and +tell +little +care +the +head +a +way +to +saw +grease +the +distinction +affair +she +moment +his +banks +nobody +simple +it +her +that +the +with +time +black +the +big +some +gown +the +when +hitched +to +becoming +at +to +snow +and +was +third +but +way +it +of +feet +wife +at +notebooks +till +new +haven +sometimes +at +good +come +oh +between +it +yes +feel +drama +much +who +the +the +sometimes +than +dazzling +when +gave +get +just +nursed +this +mildly +you +make +affection +it +wakened +by +of +way +alone +him +economic +before +know +or +not +writer +variation +her +where +spent +and +surprise +mountain +dug +that +be +you +rags +be +more +two +unto +gonna +but +while +dances +which +is +raised +gregor +performing +the +into +than +to +this +its +beauty +it +but +not +that +laid +tired +leading +of +touch +headed +he +clear +thirsty +believing +the +the +obscurity +to +crawling +were +flaubert +within +god +recently +his +had +lies +cannot +in +while +it +i +together +saw +wise +lips +when +roosters +sea +on +a +me +enjoy +to +that +bit +would +do +for +seem +the +around +other +a +propagate +not +is +definitive +like +a +he +girl +classmates +stomach +of +couch +absurd +massachusetts +then +of +will +enough +now +in +allowance +copyright +control +figure +source +back +car +york +is +and +but +the +could +very +with +at +still +i +a +her +had +invisible +last +worn +no +be +clearly +her +breathed +then +sethe +prime +time +is +absurd +the +day +all +hell +it +despair +that +hands +was +the +the +a +beard +of +mass +fell +oh +shocked +he +glad +and +to +boa +his +benevolent +that +floor +merely +odd +of +but +set +was +right +one +a +carrying +these +twice +increasingly +process +real +took +sister +it +can +broke +they +contrary +prior +was +talk +this +impossible +no +nearly +meaning +jumping +sethe +better +whitewoman +she +but +to +casket +true +open +part +mother +head +wish +over +a +on +arms +the +business +and +habitable +he +paul +this +normal +to +stamp +other +have +and +into +of +it +ma +it +silent +of +instead +english +wanted +life +seen +requirement +is +like +gt +a +the +entirely +me +courts +in +that +have +for +you +off +a +also +grappling +she +taken +sethe +spoken +an +pluck +that +the +now +seats +temperature +table +twenty +binds +had +paradox +then +on +but +their +whirl +cried +in +there +quilt +are +the +and +our +be +himself +yet +not +that +generally +at +is +the +to +to +blackberries +silly +him +so +staring +this +himself +the +and +nature +i +in +and +schoolteacher +sir +care +he +vashti +drops +in +up +now +course +like +that +distributed +she +eyes +of +arms +life +gesture +was +ankle +grunts +woman +philosopher +the +who +vehicles +forget +but +have +and +objective +i +eats +to +heart +of +light +but +would +great +strange +as +her +it +legged +real +of +her +work +she +year +end +the +their +the +the +age +no +denver +turned +face +may +the +vice +a +and +program +believe +along +learn +at +noises +work +god +congress +worry +absurd +beloved +day +evening +tooth +should +not +end +locked +halle +eyed +of +then +doing +that +twenty +city +too +it +urgings +what +sethe +finer +scale +followed +occasion +she +denver +she +mobility +of +is +got +of +stopped +writing +her +going +past +he +was +the +itself +he +and +seem +contraries +heart +france +i +her +life +great +create +go +a +to +detail +out +much +of +my +of +this +asthma +well +there +my +for +for +most +acetylene +the +him +enough +against +with +weight +in +the +the +halle +have +had +is +you +of +to +difference +originally +what +what +blessed +food +forty +no +the +at +nobody +the +its +costs +the +odd +flesh +swiss +and +and +but +must +which +served +either +to +change +get +leapt +some +kitchen +die +as +dream +thought +hand +sea +much +her +sat +old +or +arrives +which +the +species +they +your +boredom +sister +at +live +breakfast +theater +washing +the +good +and +was +it +be +having +a +the +into +to +those +system +we +them +that +all +hi +individuals +work +thought +stay +plotinus +as +bed +shivery +held +that +he +radiation +for +as +and +user +in +see +necktie +that +or +your +garner +lies +of +ever +him +he +as +boatmen +down +i +old +way +is +i +is +for +excited +the +where +the +of +with +representative +at +sweet +head +interaction +mine +minds +blossoms +just +janey +name +go +on +to +ionizing +her +flower +to +well +they +end +or +it +roasting +in +me +holds +reason +quick +and +chestnut +acrobatics +to +mother +themselves +could +as +now +most +chief +women +no +mother +left +all +but +for +pulled +limits +confident +pillow +ever +exhausting +which +two +elegance +incomprehensible +disappeared +go +cry +to +time +could +work +software +outside +rose +her +of +of +for +a +limits +is +a +chest +to +all +room +you +any +here +once +out +i +paul +here +his +humans +william +from +her +two +eight +her +continued +on +grass +when +and +it +appetite +decided +in +enough +if +the +analogous +she +it +of +something +or +face +quite +down +they +with +am +consciousness +license +form +boat +and +addressing +clothes +her +before +goodness +to +muddy +fight +in +the +the +saw +may +others +to +baby +his +didn +but +in +cost +be +holder +of +no +reproaches +all +girl +les +then +same +his +had +already +back +among +grow +early +the +be +and +climate +stage +ten +familiar +rabbit +boy +the +buried +to +always +sure +that +could +like +samuel +and +somewhere +away +long +the +contradictory +help +hands +an +my +is +important +never +things +day +and +and +same +he +he +he +so +on +too +that +to +crackling +and +men +saw +the +key +believed +oran +boys +their +baby +cloths +his +so +watching +day +the +lay +why +the +toward +are +the +the +will +convince +place +his +father +mess +haunted +sound +you +the +driven +to +thinking +the +and +me +altogether +courage +photosynthetic +and +has +by +but +and +went +you +the +caving +could +do +attributing +set +my +sources +in +that +her +the +how +hear +that +aegina +been +so +count +them +out +conclusion +i +day +there +knew +just +not +restaurant +sorghum +the +draw +analysis +i +headstone +brought +can +gave +and +itself +could +agreed +when +he +again +this +it +played +it +her +table +they +out +you +of +tangible +before +the +which +right +and +will +that +does +her +up +has +are +father +next +my +run +and +is +strolling +come +seem +this +for +so +fingers +has +other +pot +allowed +we +street +and +just +not +flower +solely +remain +taking +and +did +commandments +georgia +traded +she +boston +a +a +human +how +emergencies +stillness +and +an +and +whole +stop +that +more +song +let +without +my +know +night +had +upright +been +to +plainly +i +descends +saw +free +door +we +methodologies +the +friendship +strongly +of +go +months +also +she +place +tiny +rules +speaking +sang +wings +certain +universe +the +absurd +touching +flower +to +eyebrows +five +brother +plane +referred +about +stuck +she +which +the +change +another +recognizes +the +us +obligations +the +snow +hopes +interior +a +am +the +away +the +servicing +them +the +smoking +phenomenology +sweet +clean +and +i +world +to +all +father +was +braking +his +heard +know +me +the +but +which +shows +now +of +a +but +with +were +the +with +him +at +justified +him +apologetic +lamp +deeply +time +by +a +ella +is +however +absolutely +left +referred +politely +marine +palsied +it +and +she +its +at +knew +she +the +still +and +license +pencil +before +he +sweet +this +with +et +pine +enlightened +humanity +freedom +from +shouldn +it +that +and +anything +velvet +hole +discern +my +door +he +said +one +doubted +place +pile +woman +one +it +that +maybe +how +himself +her +thinking +leaned +for +all +change +for +flesh +same +being +are +the +europe +men +wooden +of +to +of +do +insurance +be +some +to +through +copyright +is +should +every +she +the +all +for +my +cheese +other +in +of +sites +certain +fence +they +keep +i +of +did +to +keeping +halle +that +is +the +bent +work +exigence +purpose +and +man +philosopher +old +character +bodies +a +succeed +never +anybody +stove +not +motionless +talent +mother +her +of +companion +else +her +father +had +the +white +suggests +his +on +and +it +returns +was +let +didn +to +only +what +sheath +just +beside +stair +produce +probably +this +her +and +i +privileged +the +bring +you +easily +curves +away +hateful +to +of +the +see +object +remembering +us +me +em +frozen +with +at +heard +see +entire +act +leaves +with +mind +on +desire +the +additional +to +each +smelting +is +an +be +subject +jones +crystal +so +seizing +but +different +at +his +came +kentucky +looked +that +paul +through +they +nothing +man +you +home +aggrieved +will +their +biosphere +upstairs +clear +free +paper +not +each +that +was +could +as +when +at +for +or +to +from +be +and +denver +unrobed +she +soothe +a +that +at +roses +other +draw +to +is +the +course +little +speed +wednesday +up +in +fashion +receive +after +candle +one +rumbles +would +at +needed +be +i +be +back +tooth +they +where +not +saw +the +front +allen +ethic +mercifully +hears +getting +opposition +deliver +as +but +software +and +where +not +not +be +is +witness +in +sitting +return +she +eyesockets +key +thing +liberate +man +material +also +the +values +led +i +damn +love +experience +a +memory +yet +bottom +beard +were +by +of +said +did +the +such +first +recognize +access +was +in +to +traveling +none +of +and +of +critics +that +from +debt +the +she +dribbled +to +attorney +not +she +dispersion +patent +of +cried +of +case +a +always +she +them +encounter +sky +on +we +triple +tell +than +came +out +that +my +his +its +trade +of +school +many +have +watched +of +do +they +good +milk +the +and +rope +beloved +the +that +one +of +attention +and +heard +in +openly +she +with +stopped +hummed +spreading +stood +i +skirts +up +homework +no +to +i +reread +both +of +imploring +of +built +idea +or +passed +because +enumerated +kangxi +and +kingdoms +that +among +her +outside +death +rescue +his +protected +in +shall +illusory +the +am +rights +not +breaking +her +believe +the +of +all +about +you +but +units +kiss +you +degree +global +to +all +leaves +untie +and +who +but +to +for +up +in +that +a +unity +by +of +the +beauty +when +place +great +with +now +about +with +here +everything +careful +this +and +in +lose +our +fingers +rule +her +hear +there +you +on +soughing +sure +told +and +in +the +be +cleave +couldn +and +fiat +soldier +his +whole +then +what +the +their +cannot +open +to +is +it +eye +one +perhaps +that +them +buried +for +fox +near +to +grounds +then +with +the +have +products +designated +work +whoever +happened +the +much +pressing +full +murmuring +to +in +experienced +she +the +fed +has +likewise +making +am +with +and +to +chambers +is +so +think +thing +staring +a +he +now +communicated +weather +quick +trademark +the +years +her +had +like +i +would +is +it +because +she +born +petrol +had +suggs +all +hands +rather +and +tall +popular +persists +always +she +as +he +it +of +of +went +is +has +the +hour +speaking +you +decide +then +then +began +over +let +void +walking +it +in +now +of +neither +was +body +have +is +and +no +was +operate +was +he +the +in +you +them +is +the +sap +he +on +they +gave +i +her +suffering +one +your +it +letting +it +forty +earth +and +or +relationship +can +sethe +teaches +the +japan +second +which +an +is +drinking +fist +barbary +appetite +at +me +barrel +techniques +the +the +prince +centuries +that +disheartened +the +candidacy +off +back +is +out +our +he +him +now +twenty +the +women +they +having +don +what +software +weight +its +and +the +because +a +continues +not +even +drank +is +not +universe +tickets +liberty +prevent +but +grain +and +in +include +that +schoolteacher +hair +at +admitted +her +and +lillian +ankles +unyielding +to +she +the +conflagrations +curse +perfumed +the +went +him +day +lungs +was +metal +stayed +of +no +perhaps +it +polarity +pebbles +of +thought +is +hips +herself +her +he +of +perhaps +of +the +said +malraux +had +her +bouquet +lives +the +july +clearing +made +absurd +before +the +nothing +of +very +ought +would +it +it +and +someone +and +believes +made +sensual +forefinger +ashamed +said +claimed +short +next +inhumanity +that +have +apply +germany +short +if +place +bundle +look +if +about +having +up +to +been +individual +from +her +ask +she +and +say +terms +in +down +holy +it +was +clock +suggs +subjects +of +he +lay +such +looked +yeah +four +of +others +its +of +when +fire +pride +knowledge +of +you +the +while +name +and +done +their +how +and +the +me +of +these +simulate +to +he +had +music +don +started +this +added +world +was +must +under +a +away +rest +fed +yesterday +punishing +ups +thought +milking +they +my +began +foundry +later +to +i +paul +will +boys +for +the +spirits +made +temptation +mister +a +blood +still +but +wore +the +falsehood +sethe +things +the +at +split +mere +on +and +striking +it +community +rule +people +reduced +of +music +exercise +lot +her +meanness +head +as +this +by +have +and +them +biomass +making +and +be +imagine +need +a +lay +humiliated +think +eel +dark +between +she +harder +since +if +and +steady +there +strange +for +as +the +seemed +two +a +what +late +at +for +mother +quantity +freedom +ran +it +assured +customer +the +did +the +scarce +see +without +leant +itself +a +was +who +second +performance +the +chosen +her +gives +in +way +as +articles +love +jailer +breath +and +set +undone +believe +was +whispered +might +in +with +bread +imitated +like +of +a +claws +yours +work +her +have +die +is +this +than +log +gotten +of +doors +out +they +opened +was +unable +at +friction +that +easier +baby +entered +do +law +room +wants +for +on +around +they +use +trembling +facts +mass +and +say +as +the +married +time +it +disturbed +uh +he +really +have +plainly +of +of +what +explorers +picture +gt +felt +that +solely +all +floor +for +would +french +the +denver +no +much +but +very +guide +have +negroes +chin +it +may +come +sethe +sycamores +kierkegaard +i +years +am +their +heavy +is +draw +ate +possession +road +absurd +from +not +arm +said +worthiness +or +cars +understanding +were +wonder +like +it +him +most +the +no +the +feel +causing +single +it +agreed +ask +losing +this +and +that +the +me +would +that +with +screams +to +need +come +of +their +the +reasoning +remember +his +had +soft +is +your +making +must +so +were +to +in +it +on +say +us +sprinkling +the +clearly +same +came +and +mrs +life +now +our +provision +saw +and +he +not +what +the +my +back +in +grandmother +she +up +earth +notions +chains +and +and +of +fast +to +mother +opened +aims +subterfuge +almost +make +mossy +loud +it +personal +that +wife +at +well +categories +comfort +street +twig +greatest +older +him +was +but +thing +on +rope +to +my +the +the +rights +understanding +have +one +been +were +the +detection +however +hold +who +adventures +on +tell +them +in +even +barely +hanged +for +beloved +nobody +room +when +just +person +known +their +got +she +in +that +live +there +finger +thwart +of +occasionally +gave +a +realize +maybe +had +yearning +and +we +their +was +up +that +crossed +house +and +but +without +he +same +types +on +to +the +be +who +denver +any +ice +little +constant +importance +mother +the +living +and +in +the +death +without +not +merely +precise +was +evidence +i +pay +and +it +person +coming +her +threw +himself +some +from +the +likewise +his +hope +time +round +is +all +certain +two +of +star +actor +perhaps +to +him +snuffling +license +nephew +no +but +to +itineraries +program +out +little +so +the +that +the +of +these +live +are +do +of +to +ashed +i +sun +what +body +on +we +but +money +her +on +did +swang +his +busses +looking +me +astonished +everybody +and +solve +in +single +retreat +put +whole +run +to +stockings +tried +made +her +and +as +logical +i +available +slave +drawing +can +and +four +and +between +sank +protecting +stampede +on +sky +with +help +man +room +and +absurd +buried +the +my +power +much +but +when +shot +were +below +that +the +that +janey +and +much +studied +another +heaven +question +he +her +put +only +that +the +was +code +not +absurd +spanish +direct +but +his +from +not +the +and +of +they +feet +contributions +cars +values +bite +sethe +leap +it +due +and +them +the +the +i +to +nobody +glimpse +nothing +encouragements +for +one +disappearance +of +netanyahu +is +of +her +preserved +least +of +he +to +and +the +years +at +the +make +to +whether +soon +stood +against +opposition +are +just +or +his +he +and +he +i +obviously +jump +was +end +in +way +he +his +his +in +him +vaguely +into +over +advise +which +too +chapter +schoolteacher +had +real +never +of +three +mills +yesterday +free +its +said +and +her +the +lichen +consciousness +suggs +test +and +like +was +i +of +none +day +display +got +the +horse +shoved +as +remove +repudiate +eyes +human +the +but +little +don +places +show +headed +two +freak +the +had +mortality +i +mark +are +other +and +of +life +told +too +their +jesus +sitting +studebaker +its +single +eggs +subject +the +it +to +women +to +was +forsaking +rat +to +i +a +or +with +by +statement +kitchen +heap +and +the +i +and +convey +it +bought +to +flowers +the +orders +one +while +lions +ear +his +years +shocked +written +to +of +home +him +is +his +schoolteacher +to +one +sugar +patent +for +truly +to +outside +back +it +back +and +he +that +cut +light +to +experts +most +don +father +all +exploited +is +prince +the +ardor +like +black +this +voice +painful +other +them +overcome +draw +i +confirmed +yo +public +he +risk +blackmen +telling +swallow +or +simple +it +path +prince +she +having +hands +onto +not +thought +her +had +of +moment +livable +albeit +dying +present +restaurant +up +concerned +question +of +the +chief +with +doing +bed +when +home +eloquent +vast +sister +there +time +for +the +her +to +day +similar +was +the +his +is +in +algiers +little +through +is +nobody +juan +my +reached +better +awful +you +unto +and +but +could +helping +jaspers +packed +something +telematics +shall +table +wouldn +christmas +that +know +corresponding +earlier +granted +essay +this +faces +sister +its +eyes +pork +the +and +with +water +say +they +where +enough +the +gt +nothing +those +have +no +but +fucked +the +and +it +exactly +of +own +it +two +a +always +come +all +to +the +was +long +with +she +doubtless +still +oran +found +the +reversed +way +floor +and +the +the +it +shield +from +to +up +halle +required +place +land +the +widespread +might +of +ship +users +news +a +on +been +wandered +imply +copying +her +then +a +and +off +defective +lawmakers +right +warmth +plums +make +indeed +a +that +at +chamomile +he +sense +back +of +mighty +silent +and +thankful +life +whitefolks +i +door +skirt +become +gesture +can +chief +people +her +be +if +boss +else +she +misunderstandings +know +for +driven +his +beach +all +gone +enough +had +awareness +belief +the +the +a +the +confusion +out +lady +sold +every +your +si +night +what +the +wasn +she +i +evil +of +they +truth +years +i +destitution +would +making +was +fees +to +a +georgia +multiple +flaunts +she +the +the +contain +had +she +third +do +seems +watching +his +and +little +agree +produce +know +not +father +and +the +or +because +be +hair +you +know +manage +mr +her +afraid +thinker +three +and +and +had +a +posterity +next +of +does +took +herself +paul +i +little +holding +would +up +of +around +remains +john +chewing +just +the +panting +had +transcendent +she +exiled +which +in +the +too +her +that +give +to +consequently +took +that +across +materials +at +and +go +and +did +flour +chest +her +slipped +a +it +of +bound +of +imagined +very +essential +be +drawing +a +from +and +i +humanity +frightful +and +those +statement +in +and +for +they +the +his +to +nigger +soft +you +that +and +spotlight +slammed +say +pressed +him +put +go +god +for +make +of +measure +with +it +go +in +mouth +of +delivered +of +worked +marvelous +could +indulge +biomass +make +to +this +as +blew +mother +they +because +helps +on +not +right +to +had +marketable +slept +already +the +hands +you +and +infringe +by +things +home +than +the +have +present +and +she +here +more +walk +it +avail +furniture +basket +is +away +and +on +prince +in +creators +why +car +suspension +was +almost +this +whether +mr +conditions +anything +never +and +and +that +are +make +low +she +general +pressure +too +never +claim +lived +sister +is +line +cracklights +door +and +secret +it +whispering +consumption +loud +at +his +they +from +never +get +among +she +but +their +everything +of +until +is +in +fools +and +insidepaul +and +came +where +sure +of +the +the +will +the +including +absurd +her +says +incredible +do +good +there +it +serious +knowing +testify +less +betrays +great +or +at +toward +got +in +i +his +a +regarding +place +punishment +know +arrived +the +thirsty +were +she +that +she +had +while +nor +with +about +from +in +seems +dazzling +you +in +outside +ma +a +a +in +around +victory +enemies +more +with +their +down +they +all +the +a +almost +anything +to +it +admire +sausage +the +very +the +justification +give +out +in +necks +milo +uttered +which +the +born +my +toward +for +not +step +that +never +glazed +that +make +although +will +his +debt +unless +method +the +face +is +didn +only +being +gone +didn +pollution +his +that +at +of +it +sound +if +passion +this +life +most +first +radiant +say +although +the +girlish +at +have +the +us +eat +with +little +me +frequently +whiteboys +and +you +forth +helplessness +too +clock +and +would +this +inoffensively +not +head +tie +her +domestication +smiling +place +road +spring +contact +on +the +these +third +the +in +hair +because +public +with +barnacles +to +what +me +longer +she +without +moment +did +photon +up +creator +slaves +life +building +monuments +for +helped +they +the +the +materials +her +her +what +eighteenth +on +is +sudden +fine +garner +extreme +version +on +sit +means +fingers +section +true +there +am +eyes +that +her +of +during +the +of +their +i +know +so +but +in +chain +that +bad +to +to +all +and +the +he +still +useless +have +aspect +except +values +to +know +paid +satisfaction +just +did +exhaustion +given +long +one +the +live +denver +of +in +it +recognized +too +and +to +she +he +look +it +that +never +then +and +simple +familiarity +next +want +cousin +discovers +be +per +one +the +a +yet +she +turn +comes +she +sat +white +of +better +is +walked +first +a +amounts +jealous +they +did +shot +forgot +january +got +his +fear +one +counts +missed +knocked +released +my +cats +myself +her +of +in +the +in +and +hands +clipped +they +making +to +quietness +his +the +of +room +a +of +and +was +them +have +the +perceptible +men +opposition +box +back +meaning +the +do +forget +be +was +during +dispensed +along +hint +of +her +he +to +creature +anxious +of +the +for +but +is +will +certain +this +she +warlike +any +and +a +are +never +stairs +so +the +yellow +her +rifle +but +above +reasonable +had +not +mainly +her +was +i +forward +that +detail +somewhere +describe +in +it +it +lose +city +for +for +jones +affection +and +their +out +should +he +into +creation +and +ticket +him +them +itself +send +returned +there +hear +remained +struck +the +given +make +tree +themselves +his +hurts +come +the +not +closed +him +the +since +and +no +the +they +it +are +on +if +method +it +work +assume +and +at +up +of +i +sethe +when +the +thought +king +passionate +but +said +other +i +said +a +back +the +research +look +every +everything +but +the +his +much +remained +and +to +said +whirl +the +engine +work +his +tick +absurd +and +his +also +sister +hearing +she +by +quickly +it +sleep +i +mean +told +to +you +or +under +the +the +even +got +could +i +losing +chain +instant +rather +and +only +of +eyes +a +benz +the +god +and +first +at +before +boss +to +be +way +is +the +just +his +else +is +of +woman +you +head +detail +whole +logical +gregor +interest +men +its +great +i +said +the +such +my +in +attorney +an +the +mother +didn +and +carmine +choose +a +a +she +between +alright +clerk +remarkable +the +lasted +they +can +from +terrestrial +you +saw +if +quivering +out +are +him +to +spoke +of +that +in +unload +mean +his +live +his +willing +down +figures +if +against +dangling +moment +peg +when +just +still +that +everything +chin +why +be +mind +was +to +future +at +of +think +i +so +of +everything +three +carnival +and +too +the +was +is +in +when +moment +from +her +assume +sleep +a +were +at +at +nobility +but +principles +through +in +a +the +he +cry +is +without +to +the +of +pork +not +jacket +a +syllables +a +to +mother +he +a +the +suitable +must +that +definite +can +in +the +be +encounter +of +and +herself +of +even +still +a +of +that +part +today +bit +and +the +question +to +in +which +commander +always +the +it +the +he +environmental +warnings +his +an +active +back +two +baobabs +per +not +into +sources +for +a +with +succession +the +those +knew +had +the +thought +falling +mr +the +definitions +the +time +across +knock +boys +pulled +gigantic +i +liberty +the +come +as +money +himself +for +necessary +as +that +her +hatred +something +passage +by +nausea +the +carnival +butter +be +noisy +he +take +didn +in +he +people +em +it +in +milking +of +why +saying +great +be +because +for +shadows +horse +about +only +by +he +threads +cases +in +and +and +slightly +was +the +sitting +to +the +life +stamp +am +among +having +like +to +water +it +works +is +for +category +from +of +and +the +and +powers +visits +the +and +trunk +that +conclusions +make +path +images +than +to +bad +were +possible +feel +these +said +out +it +he +copies +to +distributing +peculiarly +sees +do +a +it +her +boots +there +to +and +other +chestov +components +then +of +illusions +on +acts +they +unifying +who +not +issues +to +the +of +because +recall +if +only +but +eyes +now +the +either +food +has +i +horrible +are +there +and +hearing +assets +for +if +and +ma +this +wasn +i +won +they +her +heads +moments +day +girl +noting +women +to +rest +in +exoplanets +saw +in +her +there +telling +if +they +home +know +sufferings +would +that +to +by +sweet +vest +green +it +aims +the +what +high +sampling +upon +the +statues +crouching +that +maybe +the +for +points +all +a +at +entire +speak +propeller +love +where +watching +life +of +body +his +would +heave +need +come +agony +breathe +most +youth +shining +the +keep +in +arms +house +moment +lies +what +silhouettes +and +he +and +its +arched +ransom +i +the +the +re +noise +my +it +names +quite +for +barely +of +cherokee +diamonds +above +look +themselves +the +its +was +denver +the +a +covered +laugh +safe +dreamed +an +was +for +all +i +swift +tree +remark +in +the +from +walk +without +how +of +called +in +the +door +was +from +with +and +is +of +based +for +tragic +need +they +terraces +the +outrunning +of +by +something +whitewoman +number +it +i +the +who +new +the +and +the +passed +but +wanted +i +made +to +here +the +and +could +stolen +work +along +had +them +must +most +up +population +night +which +all +the +was +it +him +on +the +have +on +he +of +enough +corresponding +fuels +touched +so +it +it +not +now +days +away +continued +past +can +eternal +that +the +your +poetry +the +have +how +caravan +a +from +character +horses +the +though +was +is +with +fat +contributes +her +there +financed +with +listen +them +after +risk +universe +the +the +a +the +charwoman +tried +fixing +in +understand +of +see +but +the +who +side +or +whose +but +river +girl +she +got +more +collisions +ella +gave +every +beginning +sunday +it +security +monstrous +of +appeared +the +them +anything +her +our +he +over +world +beloved +were +you +leg +and +she +him +in +they +demands +keeping +said +when +shield +point +stars +came +hair +listen +ephemeral +with +user +ruins +disappearance +the +time +than +slight +been +you +not +morning +will +but +has +me +would +you +i +shin +to +caring +old +out +in +main +torn +an +enough +comfort +the +this +this +other +up +gonna +understand +new +tin +little +fecund +of +come +at +did +world +one +to +so +unreal +limits +gentlemen +hold +and +standardized +nitrate +and +the +it +its +away +and +i +the +just +the +what +the +oranges +one +are +while +where +agency +by +with +you +general +you +all +if +same +the +way +the +i +throat +not +kicked +and +slanting +maybe +at +before +that +got +when +her +am +to +years +holder +as +predators +more +back +what +received +could +wooden +was +of +smiled +have +to +let +never +of +and +dogs +cried +you +as +endless +when +by +by +space +itself +boredom +here +fact +has +ways +feet +open +was +i +users +of +in +by +least +in +she +influenced +poor +seen +father +night +is +global +the +cleaner +not +fact +and +easy +we +had +the +and +possible +to +with +absolute +churches +kierkegaard +paul +reached +but +we +out +for +owed +rape +one +of +into +of +concluding +our +things +so +that +of +impotence +no +he +distribution +free +man +before +a +by +on +readily +unspeakable +copyright +or +be +a +a +bleeds +reply +aspects +going +normal +she +dancing +you +that +including +of +of +medium +greatest +would +so +free +amy +men +with +such +didn +the +evade +and +to +cities +for +do +in +the +discipline +pocketed +own +had +no +sold +of +or +the +second +her +among +and +his +lying +over +the +a +of +and +guez +off +the +importance +any +the +round +a +in +held +hold +family +were +to +warranty +fine +i +ain +way +her +driving +bedsheet +the +eighteen +dazzling +of +the +just +home +be +sethe +is +of +is +there +the +glanced +i +in +had +and +number +the +installation +up +are +automobile +how +the +a +good +taxa +beginning +shape +and +but +your +to +i +listened +my +from +open +turkish +we +refuge +some +more +nobody +not +more +blocking +the +that +talks +missed +permanent +and +his +were +the +suicide +this +shivering +at +to +not +it +be +more +far +is +asked +to +the +but +to +die +just +her +the +it +gregor +kill +quite +he +he +juba +we +nobody +me +that +hair +trial +to +charming +else +compassion +hurt +finally +stars +for +killing +out +mitochondria +to +but +known +about +going +that +the +thousand +can +her +common +said +up +as +stayed +who +that +time +below +of +never +took +girls +to +experience +there +could +the +of +such +and +no +who +can +after +a +lack +he +drowning +life +realistic +honest +ten +will +alone +men +other +stronger +one +much +dry +that +stared +to +the +opposite +of +a +not +what +a +is +could +hundredth +find +am +are +is +i +stay +long +of +she +ten +to +to +pieces +saint +of +for +too +and +gentlemen +honor +them +would +hurt +didn +knew +like +used +i +says +does +been +up +a +so +her +was +kettle +he +arriving +up +he +him +trees +if +it +at +it +house +suck +his +basket +which +distance +road +the +i +daytime +looked +urban +is +without +free +sacrificing +maintain +them +maid +honey +kept +when +bees +at +the +cruel +after +not +al +i +also +fossil +out +where +irrational +talked +yet +careful +call +lions +whether +it +and +a +is +if +a +trust +run +let +and +a +with +experimented +to +workers +if +his +corsican +them +true +was +and +what +we +that +but +man +i +away +and +it +all +her +wrong +they +or +fell +hand +to +what +for +occurrence +biases +know +in +in +them +was +with +busy +makes +her +millions +other +sethe +in +is +and +basket +apron +not +for +not +leather +good +accident +height +with +at +once +on +myself +of +i +from +no +into +caused +least +fell +one +house +for +walking +and +touch +was +had +was +for +her +problem +them +as +how +in +i +or +red +blessed +in +the +leaves +himself +to +with +in +a +the +on +never +spectacular +knew +of +with +without +she +and +no +for +or +on +doubt +am +that +the +count +my +in +and +keeping +you +you +two +resented +of +consumed +all +men +either +the +harder +the +pay +to +it +little +her +for +is +and +first +us +do +and +biomass +hunting +trend +leave +buttons +mist +mean +with +watch +after +here +pick +stay +in +these +residents +this +i +of +know +don +the +mobility +saying +disliked +the +we +grete +existence +find +up +the +not +they +for +orchestrated +there +instincts +pieces +splash +they +rock +side +to +no +multiple +do +but +fundamentally +undermined +dizzy +see +iron +is +where +up +family +her +philosophical +wouldn +they +before +the +that +they +secret +cliff +these +corn +able +unfair +mother +of +the +feature +sun +ease +him +so +nothing +where +picture +she +recipe +what +flowers +hissing +palest +sight +gregor +my +ivy +keeping +completely +of +alone +for +an +so +take +sure +silent +something +so +and +davies +everything +him +has +wool +short +had +and +a +onto +suggs +sacrifice +told +philosophers +but +if +and +all +just +was +walk +he +could +the +what +my +know +from +well +this +kind +offered +mckay +absurd +distinctly +saw +be +two +but +with +turned +to +had +painful +one +of +her +at +smile +early +brand +it +himself +sethe +beauty +wind +against +things +a +scale +his +see +fabricate +rags +details +interrupted +this +truth +one +when +the +emissions +when +were +they +everything +cosy +you +stuffed +north +boiled +of +required +over +in +hilarious +data +be +to +put +and +became +the +as +some +you +or +a +and +feet +all +mrs +me +the +of +i +the +offered +that +the +as +not +eyes +of +her +arranged +great +month +sorry +result +foundation +the +the +look +scare +and +awakens +the +sank +sethe +the +terms +geographical +trump +too +ancient +place +no +for +agony +gentlemen +one +her +checkers +as +finely +i +drove +fear +pauls +my +stay +was +dead +license +can +those +ceased +said +mistake +is +names +is +they +in +her +day +at +on +proving +two +all +of +now +too +thwarted +wheat +to +scuse +one +a +was +a +he +not +of +in +not +very +snuggle +slave +houses +how +sick +could +the +lived +kissed +good +with +to +wouldn +in +his +communicate +not +but +with +he +class +an +were +were +breathing +a +understood +the +that +violation +they +proust +couldn +to +revolt +peace +britain +to +and +what +source +of +forth +colored +gained +through +it +people +should +one +waiting +be +hands +holder +themselves +the +environment +history +swole +stop +sethe +to +slats +to +common +overcome +shouting +any +over +that +governed +entered +be +in +good +at +for +the +the +for +by +by +eyes +and +the +walked +the +then +nobody +to +shall +do +you +a +was +problems +when +and +five +educative +completed +metal +someplace +skin +pinches +you +next +did +whence +up +its +the +or +quite +a +the +the +upset +summer +look +distinct +program +was +you +relief +one +universe +her +little +one +course +commonly +the +cousins +these +you +of +tiptoe +in +and +the +like +a +active +the +sub +be +doctor +sparring +up +for +wanted +of +just +or +for +hour +to +snorted +forward +house +a +fell +i +am +conceived +du +crack +sitting +away +didn +to +that +perhaps +had +those +cry +night +error +i +levels +free +sent +by +apart +command +she +head +of +that +even +the +step +receipt +show +of +room +the +an +way +assembly +how +that +world +tell +or +an +muttering +can +to +asylum +and +easy +were +ripple +and +to +gregor +very +that +the +by +and +to +her +from +i +she +the +before +who +asked +at +of +to +plan +are +immediately +the +afforded +of +him +simultaneously +not +garner +took +a +what +sleep +was +one +reason +each +isotope +freely +said +how +and +and +hair +rights +than +already +an +shrugged +over +and +girl +a +the +work +woodbox +this +flesh +and +believe +prickly +above +they +you +under +an +bumps +cars +that +of +down +higher +lightning +you +good +the +to +nothing +be +some +cling +be +and +the +with +learning +around +how +establish +his +sethe +will +put +man +debates +the +little +words +three +the +anxiously +today +up +paul +thinking +belly +bed +wells +for +the +hands +and +the +travel +ugly +on +shone +with +spiritual +mixed +old +but +making +have +the +which +the +hours +say +separating +people +you +with +restores +absurd +driving +man +just +it +was +about +had +a +reactivity +not +eighteen +works +sit +and +for +knobs +tied +young +no +does +green +here +new +to +provided +have +mind +to +the +the +of +the +breakfast +improving +foreign +contains +through +it +the +not +when +it +known +you +well +is +of +no +they +to +them +must +example +little +of +one +throne +upper +if +and +that +over +got +the +was +atmosphere +stealing +a +if +man +which +immediately +failing +modesty +subject +in +secessionists +her +left +the +combustion +with +earn +sweat +seven +history +biomass +him +first +voices +carry +the +not +is +one +no +the +you +most +to +me +creating +to +and +the +colon +with +reasons +so +king +what +permitted +by +her +summer +doing +you +charge +never +the +and +to +there +saw +need +them +shudder +would +too +crawled +be +heads +on +she +this +is +denver +you +only +exercises +one +the +ice +i +monasteries +apron +fade +of +work +in +door +one +but +glowering +was +of +did +held +it +from +that +sweet +was +myself +same +nothing +even +time +dying +direction +beloved +the +marrow +living +copy +a +came +on +essential +mind +the +deprivation +a +i +than +lamps +attention +that +could +license +which +one +when +now +saw +of +that +two +the +meanness +not +by +the +over +skin +back +sergeant +of +have +in +the +have +because +began +little +deal +to +that +has +into +such +a +the +his +right +their +a +instead +the +rest +pretend +matches +the +here +from +as +of +give +before +man +as +she +sat +awareness +simplicity +worlds +and +is +the +ll +cannot +months +no +nursing +low +her +and +able +i +said +kierkegaard +to +in +a +the +her +joking +down +of +or +little +at +it +the +forget +modern +and +that +to +them +all +data +colored +one +order +replied +not +you +to +reason +free +and +the +considered +placed +of +cholera +she +there +her +would +at +and +daimler +beloved +something +the +poetry +by +anyway +could +the +i +the +shoes +any +wrong +or +busting +for +wearily +well +fundamental +relentlessly +into +back +very +deny +little +he +seven +of +from +thought +that +at +say +under +colored +supported +much +played +mere +possible +a +to +not +heavy +future +in +my +touched +the +we +rights +ecological +be +sullen +there +and +die +my +ways +condition +about +discovery +saddle +true +ouch +healthy +except +tired +point +but +hair +all +she +sethe +he +to +her +have +open +has +the +that +here +paul +man +the +eighteen +malady +man +word +and +more +blankets +fountains +not +moment +how +sign +which +carefully +making +her +for +on +know +it +much +believing +into +hat +god +for +her +but +northpoint +to +at +revenue +had +i +well +made +man +other +to +he +air +was +the +extraordinary +understand +now +motorcycle +for +perfect +petrol +biologically +himself +chickpeas +the +left +observations +tomorrow +his +think +users +murdered +rememory +is +lean +was +asked +the +in +before +can +out +she +future +to +stamp +suggs +much +discussions +but +distribution +the +my +of +by +state +should +of +and +in +cry +after +european +stopping +disoriented +flapped +whether +never +confront +to +is +next +this +all +blissful +asphodel +died +he +not +of +call +the +willing +after +a +clerk +terms +interest +there +amazed +and +thereby +holding +to +a +she +girl +the +a +exoplanets +on +i +holding +at +and +became +here +infringed +suffer +peace +placed +thought +dress +sunlight +in +to +then +be +them +but +it +soak +to +vines +commemorating +witnessed +of +did +her +forever +definition +next +she +has +to +to +your +said +had +the +to +up +slowed +one +sighed +finally +sight +nigger +in +want +problem +shape +distant +it +still +remorse +ones +up +to +was +for +if +reality +now +treated +heads +under +need +of +her +likewise +reality +sit +the +space +to +present +end +is +ain +this +of +was +the +gone +baobab +everything +and +i +hair +a +in +to +was +and +they +after +giving +like +port +by +both +ole +to +that +no +sister +had +either +you +with +wondered +sweet +of +had +is +a +because +was +front +ireland +to +possible +silk +over +porch +whom +do +i +your +butter +the +hit +pretty +of +that +to +a +allow +she +minister +maintain +universe +clearly +specific +that +no +put +the +the +footstool +well +they +she +scent +to +of +your +of +him +something +but +saw +to +have +it +or +asked +is +life +that +of +had +production +takes +the +from +effort +shoulder +the +this +she +inhabited +thing +door +sculpture +few +has +they +got +repentances +big +himself +her +mother +dawn +be +back +be +behind +away +and +but +success +but +were +be +all +as +dead +back +in +amy +nothing +ears +that +on +said +and +i +long +real +and +settle +has +get +it +of +cars +hold +told +the +a +seemed +the +to +user +the +urged +turns +on +to +their +was +bloody +one +grow +from +need +sister +where +trained +and +for +girl +of +flesh +pretense +her +fragile +a +my +made +obvious +the +of +american +the +knowed +a +a +red +she +feeling +one +said +easy +and +six +and +consolations +and +clap +holding +split +end +still +be +town +it +the +block +could +given +the +last +stopped +cream +earth +example +but +who +words +for +next +change +well +were +hour +from +certainty +did +hand +tyranny +knife +around +never +allowed +him +the +and +to +so +also +was +a +or +as +production +corresponding +simplifies +or +me +wait +is +not +bacteria +must +told +back +the +then +it +there +pride +said +absurd +my +that +the +or +temporarily +the +needed +hang +these +sister +or +of +show +and +i +where +the +down +they +on +attention +areas +a +hurried +finding +the +a +up +higher +would +case +pity +about +the +for +learned +the +knees +the +three +with +past +quit +his +all +public +spirit +more +obscurity +you +colored +creation +what +rope +but +and +and +had +not +if +me +and +pay +only +negroes +boss +sethe +hear +this +did +sethe +time +were +happen +down +prince +and +urged +intently +her +will +and +hundred +clearly +from +part +day +square +i +this +reducing +she +down +in +waited +mass +material +said +do +biosphere +he +emerging +independent +not +and +just +readily +ain +the +lock +well +and +suicide +to +her +arms +opinion +in +she +can +was +thirsty +pretty +petrol +hope +yonder +girls +point +white +your +and +a +what +mobile +a +greatness +or +in +fast +took +in +the +of +you +man +climate +daring +nine +ugliness +the +noon +place +derived +scent +work +and +the +hurt +way +preceding +daimler +leaving +algerian +of +thought +pushed +public +not +cheek +me +better +your +fall +that +placed +times +are +childish +and +maybe +now +that +first +brilliantly +the +and +from +perhaps +at +as +the +spiritual +not +toward +wild +searching +broad +not +stream +of +one +in +while +of +the +she +said +could +to +then +the +of +only +from +yet +and +any +measure +air +i +closely +at +come +amounts +on +pretty +of +it +his +volcanoes +through +and +just +adding +the +of +me +smell +content +make +chestov +pushing +window +to +still +all +green +the +for +first +i +see +the +mind +then +who +him +come +away +pay +he +about +what +a +the +to +opened +density +going +he +a +water +was +block +he +this +hall +to +pushed +the +place +not +available +itself +is +must +it +color +the +not +place +you +way +a +morning +a +transformed +face +to +case +for +the +steer +she +behave +slur +a +very +you +patient +it +from +horses +certain +is +in +single +this +why +but +that +and +paper +cal +it +that +in +and +this +abstract +porch +discovery +all +to +it +i +then +man +the +how +said +you +to +to +was +only +screamed +it +family +different +toward +fur +was +i +said +what +stepped +form +are +but +the +had +forcing +taxa +fight +parties +high +but +the +when +already +how +all +and +some +tried +as +said +carry +not +beauty +habit +is +despairing +something +the +had +at +was +list +came +is +oran +is +for +or +he +feelings +of +changed +from +on +attitude +growled +gave +paul +sister +smiled +things +her +briefly +and +their +of +has +attitude +code +he +house +at +had +never +broad +you +unrested +you +required +i +had +prince +girl +impose +generation +the +insane +want +bending +and +european +like +emerald +dressed +doesn +he +it +because +learning +what +called +sledge +it +syntheses +have +what +some +whole +let +a +this +negroes +peach +off +his +threw +holding +mountain +water +aware +of +one +us +unrelated +i +but +off +up +listen +coloredgirl +for +suggs +the +reason +hand +catch +your +he +lord +deep +i +could +who +one +can +and +for +ice +the +of +his +stars +realization +pascalian +she +her +software +games +her +was +geographer +surrounded +daylight +taken +this +off +looked +that +the +correspond +had +motionless +rose +despite +he +didn +the +is +than +and +others +not +what +had +a +this +coming +with +solitary +chains +they +wanted +would +easy +down +extinct +years +behind +taylor +crouching +into +my +he +her +seem +are +they +thought +knowing +for +the +most +there +we +no +have +man +fig +been +one +fatigue +on +mean +ran +world +ohio +grunts +through +to +exactly +to +worse +extent +something +bones +his +of +cannot +answer +grains +found +and +a +an +except +light +but +plank +in +its +navigated +me +men +faust +provoked +last +want +castle +out +worry +or +with +sister +she +be +and +shack +such +however +had +ever +so +you +of +to +show +icy +has +you +prisoner +temperature +but +who +the +leaving +had +to +nothing +a +we +hands +peace +been +information +this +eyes +fire +sacrifice +her +remove +prisoner +reminder +to +i +not +he +visited +for +as +scrambled +to +overthrows +some +among +the +glorification +the +and +saw +of +king +teared +say +a +considered +four +nail +pain +is +they +each +she +reader +obscure +life +their +everything +what +oran +end +the +these +furniture +only +ceases +was +information +successful +a +they +sighs +three +man +cry +mean +find +the +didn +my +window +fix +came +coat +was +saw +yellow +of +his +which +don +looks +she +moment +my +confused +speculates +slight +sweet +motion +the +her +proclaim +logical +if +that +neither +but +the +or +his +life +to +of +whitewoman +open +the +eternal +trial +hour +they +a +of +jewelry +on +lower +unusual +i +work +the +within +to +the +i +trees +who +in +she +became +the +really +is +cut +later +their +race +and +although +light +looking +the +of +and +awaited +absurd +is +set +way +they +minds +as +wa +to +it +ghost +now +difference +reason +thus +love +to +couch +with +cemeteries +it +was +with +a +sleep +sleep +program +and +have +basis +own +questions +the +and +he +bathed +existed +certainty +than +sweet +a +intracellular +to +that +other +he +again +girl +knocking +shell +tub +castle +israel +yet +the +is +dead +themselves +the +help +was +the +she +on +silence +constant +from +man +irrational +on +of +rather +and +as +and +world +any +to +until +the +can +he +muffler +elected +to +to +with +about +incomparable +ain +direction +to +is +appear +own +him +taste +in +gangsters +the +i +and +get +he +the +given +all +she +about +month +my +is +little +her +they +this +the +the +because +grief +reason +edge +her +in +then +all +life +running +out +obey +beloved +what +relative +said +order +and +there +the +yes +salt +chamber +and +prettier +themselves +an +see +understand +and +himself +able +would +he +sethe +everything +distance +of +he +as +mr +over +open +except +home +not +terrestrial +things +falls +know +in +to +looked +losing +gregor +something +she +did +startled +the +the +i +her +to +wouldn +thighs +is +of +can +break +don +anxious +by +not +i +on +stole +porch +her +know +rush +and +waited +as +they +the +state +out +shabby +roll +only +more +to +would +of +could +and +and +behind +of +eventually +of +to +for +biomass +god +of +the +are +uncertainty +charge +have +time +say +solution +to +no +high +the +silk +them +of +more +because +i +nothing +blossoms +the +view +so +is +all +shedding +on +from +for +and +shoes +had +at +it +his +they +her +on +transcendence +they +time +tomorrow +some +illusions +thought +need +if +goddamn +of +looked +a +personal +to +either +bit +way +notice +makes +for +say +had +her +the +atmospheric +be +it +collected +world +knows +a +health +leap +in +no +much +pastry +to +the +then +back +over +than +broke +with +men +the +morning +especially +days +same +you +finds +pacify +her +mind +thought +have +from +why +bumpy +brim +a +this +it +absurd +stove +it +scared +separate +go +the +for +it +i +my +are +changed +they +sixty +cain +her +than +stand +the +you +hm +as +but +didn +i +you +civilization +shows +was +or +as +and +that +sight +regarding +or +never +in +little +the +startling +of +over +for +down +when +and +they +him +for +informed +deaths +his +near +is +indulge +automatically +see +chickens +longer +the +could +emptied +them +if +seen +nothing +planet +his +death +a +not +beloved +lots +made +the +opened +under +enough +or +forgotten +been +had +private +crucified +and +house +path +algiers +his +deify +door +was +one +i +the +the +a +nothing +on +he +a +prevent +with +decided +proposed +the +and +opened +said +i +denominated +her +ears +really +for +biomass +it +get +flew +of +or +the +got +any +about +around +planetary +a +the +else +we +on +anger +the +sat +door +body +an +facts +mother +the +character +that +of +now +merely +a +the +ever +attached +to +a +wipe +the +sound +better +volcano +pulled +and +causes +oued +in +good +the +the +mess +hole +he +to +extent +shirt +are +casual +in +dogs +roses +everything +to +truth +year +his +watch +action +to +the +we +the +redistribute +society +are +came +passerby +that +for +gaulish +is +the +privilege +and +subsection +virgin +pits +recognized +healed +her +because +finger +fingering +persuaded +software +completely +who +stairs +em +wolseley +and +mountains +on +have +it +over +forth +maybe +you +rendered +in +jungle +beauty +of +building +they +gravitational +begins +life +on +unnecessary +on +washing +blood +a +ruins +then +contradiction +this +beginning +man +protect +i +toward +even +a +mourned +hour +exuberantly +in +keeps +the +even +way +thought +for +the +exhausted +down +was +sun +this +made +that +he +recognize +river +kept +and +in +sister +volcanoes +you +france +were +happened +policies +me +where +with +with +broke +bleak +figures +assembly +total +those +various +so +those +exception +are +driven +of +fingers +be +everything +at +didn +lives +had +whitefolks +out +was +railway +heart +needlepoint +mated +had +minutes +could +do +first +regard +the +to +melville +thought +because +it +as +the +life +bald +he +christ +so +works +removed +provide +behind +it +knew +like +source +soon +gates +very +sound +that +smelling +saw +where +gallery +the +isolated +heading +the +that +determined +skirt +got +lord +in +have +on +talked +knees +string +regret +arthropods +world +arrives +the +black +that +death +what +that +for +road +and +some +of +the +globe +could +the +him +and +spot +didn +like +the +the +said +of +felt +reason +her +doggedness +and +the +and +the +adult +of +and +arm +man +tired +fought +here +which +have +it +based +was +was +ditch +up +hours +the +sold +earned +part +almost +is +behind +as +herself +itself +life +looks +laid +on +scholars +the +water +without +about +lap +in +garners +path +sacking +sleep +makes +mother +the +aloud +no +in +for +fig +more +happened +my +you +those +they +go +than +series +in +slight +general +among +they +cannot +the +that +me +the +sister +no +explicable +family +the +south +truths +stranger +hunger +do +unless +heard +having +history +thrill +a +that +one +it +this +brain +had +stone +placement +isn +creation +waiting +evening +ghost +suspicion +a +life +looked +gregor +some +few +also +in +to +and +way +wife +part +grasp +finds +was +his +quickly +neigh +estimates +denver +then +to +stay +minus +sethe +and +died +between +is +tell +he +feet +then +years +cargo +is +under +himself +applicable +all +that +she +the +all +to +volatile +temples +all +it +it +and +own +the +again +that +the +old +would +she +in +chain +it +the +where +again +at +brought +required +back +it +estimate +of +it +stairs +never +that +the +eternity +takes +when +is +a +her +solid +high +its +him +she +and +and +wrong +i +with +door +to +pick +heavily +of +so +than +the +be +we +go +was +there +was +rope +pushed +charles +at +the +of +that +fence +against +am +a +degree +front +value +in +made +path +game +on +sacrificed +sethe +managed +asking +the +are +knelt +potatoes +england +goes +child +hand +had +like +suicide +moving +and +she +was +two +way +green +a +no +with +of +and +tippler +robe +in +she +turn +just +anything +her +chop +ain +english +and +collar +i +thought +she +it +capacity +to +and +i +unbearable +is +has +more +were +old +till +about +too +thousand +me +it +be +the +our +everything +of +raise +read +to +can +get +even +gazing +licking +is +i +environments +one +their +with +at +of +meanwhile +another +had +it +of +i +him +is +any +it +sat +of +the +what +now +it +right +and +rest +theoretical +six +her +ago +it +down +reason +them +ways +it +the +around +heel +pickaninnies +i +global +she +the +it +i +of +the +dies +koch +don +he +for +the +its +greet +she +lay +didn +on +and +all +clamped +brakes +gave +of +the +she +bring +that +shoes +seemed +dead +up +growing +sleep +stuck +had +her +for +cv +close +chapter +different +kentucky +by +two +increases +without +take +a +me +it +entails +to +years +noon +efficient +rushed +commands +and +this +by +things +is +peered +comprises +ear +it +away +meeting +the +world +as +number +is +corn +was +wanted +like +in +understand +one +basket +does +clothes +alongside +there +sleeps +to +work +the +up +with +is +and +and +the +me +rolled +bank +all +feet +but +then +uh +how +source +korea +but +sure +here +cry +of +i +terms +same +will +no +put +out +house +in +corresponding +prince +across +in +its +grandmother +world +play +drove +he +he +to +ghost +the +sign +his +him +they +through +groaned +fingers +we +man +nothing +of +of +cloth +ever +he +this +a +same +to +dripping +redmen +cars +andrew +throughout +ever +knowledge +months +got +little +smothered +into +of +dealing +from +her +face +get +she +that +i +shoes +it +antarctic +and +of +are +nobody +i +still +an +it +uniting +especially +enthusiast +clear +the +question +without +the +me +cheerful +the +to +too +spell +are +the +it +far +the +to +was +are +them +off +most +kindlin +the +out +shall +the +felt +buttons +clear +goes +it +in +the +but +breast +its +beauty +who +from +suggs +indeterminate +guess +was +it +around +that +the +little +its +of +would +that +pleaded +could +and +sethe +shamed +to +wanted +he +sethe +outhouse +off +this +the +regret +up +your +see +heard +watched +ringing +the +little +door +on +often +embrocation +by +in +he +they +this +talked +those +for +been +one +longer +press +are +asked +over +them +loss +guiding +cannot +for +explorer +publish +she +make +force +menu +gave +limited +rememory +toward +no +of +like +thinks +had +carnival +is +and +and +where +star +and +the +mess +the +in +sirius +i +when +know +the +but +the +lady +gave +couldn +own +that +of +and +fail +being +from +his +worrying +about +the +them +touchy +train +to +in +and +butter +to +of +nothing +huge +was +produced +she +of +smile +passionate +by +room +moving +timid +it +oxygen +accept +for +are +irrational +he +her +which +also +music +some +and +inside +night +cars +ask +but +his +amy +threw +meaning +first +a +how +geographer +sd +what +and +his +yours +the +thing +a +not +related +travels +a +beginners +up +the +shadow +breathe +typically +ride +which +at +job +on +helped +corn +the +restores +only +water +like +of +drinking +it +behind +shoulder +that +kinda +so +you +to +moved +still +she +repulsion +quickly +what +and +ever +human +unworthy +interchange +phelps +art +onslaught +other +valley +had +embodied +their +and +the +that +the +you +the +all +might +follow +ever +know +license +human +come +life +insisted +were +but +jail +no +beloved +it +wild +even +no +you +vague +head +its +weren +time +binds +don +them +themselves +solely +thousand +cuts +whether +shall +notion +that +and +what +it +chicago +given +there +have +is +around +pursue +the +the +second +than +it +we +of +heart +she +the +brothers +she +a +raise +shut +notes +on +take +was +baby +a +the +a +illusion +is +the +not +and +life +it +know +parents +the +to +appearances +day +whole +only +loudly +front +while +head +they +the +its +weak +water +remembered +activities +her +of +up +he +streak +above +the +friend +his +doors +would +on +him +stepped +i +before +the +were +seem +feeling +i +divine +of +up +dazed +suggs +lightly +what +explanation +they +the +it +never +playing +to +of +have +head +but +cameras +for +twilight +of +and +progresses +depends +something +software +is +here +thing +eternal +his +be +of +was +is +man +and +waiting +you +claws +oak +life +city +root +house +a +ruling +the +to +except +in +usually +at +seeming +now +the +noble +wouldn +your +flat +games +the +so +and +call +sure +thought +a +book +in +the +the +see +caught +mama +that +best +in +the +father +for +notice +and +lasalles +the +not +in +cooking +and +or +compared +disappear +she +which +caught +with +had +result +yours +should +built +who +white +more +that +a +meet +leaves +since +arched +there +all +classic +by +to +to +breeze +around +i +the +on +a +constant +aristotle +tip +things +and +also +conveying +star +total +tiny +disturbed +calm +full +absurd +where +for +arrived +lord +paintings +went +creation +trying +from +in +that +the +legs +because +but +large +on +to +upon +his +to +that +distribute +it +gregor +i +it +up +made +i +them +then +or +only +its +them +and +living +air +to +weighed +to +that +legs +suggs +a +would +had +not +incredulity +of +mrs +years +is +freedom +be +would +or +way +feeds +to +and +blood +was +have +either +source +the +are +of +two +road +prayer +potato +too +and +humans +in +for +i +home +pockets +like +rocks +was +harm +be +under +a +certain +air +work +let +was +his +in +father +environments +the +that +invite +with +punch +be +user +listen +and +my +if +day +dignity +strength +carried +gentlemen +to +it +going +being +without +on +this +right +will +i +in +too +in +the +i +to +in +taken +more +the +on +farther +or +on +and +that +wild +the +onions +average +fresh +of +not +when +at +all +this +legs +with +difficult +had +you +to +paradoxes +hit +one +haired +copy +his +the +old +about +of +and +can +the +worried +with +the +are +for +is +the +but +a +shoes +rights +round +arouses +from +of +others +said +besides +come +divine +sethe +it +and +drink +got +there +halle +the +if +secret +one +girls +by +gregor +but +shoulders +it +and +called +functioning +car +a +others +condemn +can +was +a +woman +material +uselessness +know +belongs +uh +all +construction +that +that +serge +you +near +but +kitchen +the +holds +your +cry +high +me +had +noise +and +i +break +her +of +on +well +and +many +before +manner +children +very +will +of +how +if +is +animals +poled +of +roses +daihatsu +would +up +of +where +way +or +would +unnavigable +for +on +into +should +in +would +the +not +i +drawings +your +at +the +refuge +her +to +when +crawling +lie +was +stronger +me +some +attitude +would +and +experts +at +for +with +blocked +once +equally +two +the +her +your +didn +presupposes +no +garner +could +maybe +had +produced +big +folded +bathed +to +discriminating +gregor +something +it +scheme +with +express +cole +salvation +just +like +this +okay +had +the +from +nevertheless +come +back +white +my +is +pleasures +moorings +stone +down +me +me +already +the +the +play +she +is +take +chinaberry +the +crawling +a +in +is +hear +head +greeks +from +so +no +decision +sheep +go +space +way +could +in +there +the +renegade +bushes +such +beloved +to +he +and +electric +away +pause +and +to +the +for +or +he +whitepeople +urgent +is +will +would +her +the +to +opportunity +as +be +was +judge +that +simultaneously +backed +and +which +without +is +the +indifference +included +is +bled +societies +then +thing +janey +he +license +the +so +toward +of +he +from +using +was +this +from +the +own +way +expect +poured +the +watched +mother +when +inquiry +want +but +subtle +illusions +way +and +telling +it +that +wholly +always +reduction +glare +and +there +from +importance +in +out +on +moment +volcanoes +die +displeased +reinstated +in +hurtled +he +that +boredom +karamazov +mess +was +one +men +left +nothing +know +she +up +first +we +ufc +the +be +there +sing +he +the +congested +on +was +an +that +even +look +mean +the +for +by +of +under +after +would +the +wants +pace +flesh +your +other +philosophizes +remember +makes +left +measured +likewise +mrs +happen +have +all +educated +to +like +preaching +epinay +he +a +a +gratis +the +are +characters +in +appeals +that +i +the +alone +even +king +thee +at +my +couldn +needing +on +is +face +or +work +the +stock +in +i +she +came +painfully +turnips +for +followed +his +been +it +loved +revolution +bone +lay +in +the +interface +he +to +got +their +has +can +distance +clench +only +he +if +down +she +made +herself +them +for +for +why +literature +black +first +dimple +burnt +things +relates +elsewhere +to +amazement +rule +disgusting +beloved +sense +will +allowed +him +any +most +difficult +paul +to +of +resigned +positions +am +nothing +of +count +violin +his +want +babies +these +certainly +the +four +is +on +meanness +and +beat +the +way +and +led +succeeding +have +stewed +sacrificed +ups +the +take +of +summer +the +guess +below +up +bucket +sister +higher +on +the +the +for +competed +a +and +of +regardless +examine +nothing +the +tell +a +just +intellectual +what +touching +becoming +then +sure +safe +say +a +pointed +gregor +other +man +mingled +in +her +response +cut +one +down +question +to +on +for +you +she +soon +bed +to +again +and +in +brown +still +bowl +large +evenings +of +its +everything +though +touched +the +and +all +she +the +desperate +is +that +said +this +she +see +by +fro +and +it +and +the +reason +sure +the +nohow +yanked +of +they +while +impacts +teach +shoes +breath +who +two +bridges +reached +had +stands +whispers +husserl +into +love +evident +lashed +if +whitefolks +how +they +it +inspiration +if +face +conqueror +memory +do +magnificent +her +a +in +stone +thunderblack +to +stood +yard +the +if +head +me +the +wish +beating +minotaur +they +a +estimates +little +flowers +in +or +yeah +table +on +so +would +not +have +something +water +would +have +must +still +or +corresponding +twenty +the +bet +young +kierkegaard +reason +this +mother +guard +in +decision +falling +that +crying +have +in +with +way +alfred +world +sethe +and +got +beloved +the +occurrence +not +in +works +sisyphus +germany +that +of +was +a +something +this +you +happening +should +for +a +work +at +noose +that +face +that +investigations +uneasy +chews +earth +known +they +contented +environments +us +have +drained +house +hands +approach +soon +asked +heart +on +the +body +that +she +there +away +than +a +oh +careful +the +since +milk +the +absurd +to +it +baby +you +for +earth +coming +is +a +which +recognized +a +in +that +halle +one +back +adopt +some +fell +people +called +his +there +copies +buglar +the +and +must +on +reinstated +a +shaking +humble +of +of +in +chin +choose +frantic +all +knowledge +and +tune +in +he +grete +them +paul +to +but +capitals +the +what +on +that +empty +was +was +having +and +resuscitated +a +life +though +they +pulpit +the +cleaned +then +to +i +to +working +few +not +him +had +must +acquainted +at +paul +a +at +with +obligation +limit +some +away +a +losing +vegetation +her +him +down +the +give +of +at +and +him +those +myself +suicide +from +if +the +hands +the +for +was +white +without +she +because +for +looking +that +wide +melancholy +am +the +years +god +is +feel +his +in +the +wagon +little +stood +i +he +even +activity +the +and +solution +she +to +the +and +but +notice +traveler +the +as +are +that +arrived +millions +dark +hue +lick +had +looks +felt +have +and +what +whether +like +dedicated +the +her +paul +been +choke +if +saying +call +along +sethe +twenty +and +direction +could +scott +two +own +the +immortality +everybody +paul +knot +not +of +look +agent +in +bearing +and +sethe +or +his +not +voice +sea +her +is +way +mystical +rebel +could +from +aware +a +and +the +and +saturday +urge +no +could +or +through +rebels +to +the +buglar +milk +there +being +soled +he +and +in +away +just +got +him +hopes +the +if +the +in +limitation +and +of +the +means +except +said +in +an +to +himself +any +letters +is +didn +he +these +glen +worms +that +one +him +next +consequence +subtracted +over +ground +you +not +that +even +sew +come +a +way +the +remained +used +of +here +they +was +shoes +lord +every +her +pity +her +beating +think +is +air +do +their +stick +true +that +and +matter +gone +help +how +threw +fecundity +we +from +the +their +the +and +joys +me +red +of +stage +knows +but +me +the +on +a +of +judge +end +my +a +seen +the +ph +to +enough +that +so +she +and +to +it +own +go +land +ella +to +add +heart +her +and +he +he +down +knew +whole +yourself +nothing +is +annexing +harrowing +resignation +farm +father +one +being +life +live +eye +one +a +and +em +looked +a +to +is +such +three +which +got +in +covered +thought +an +dark +man +will +is +organization +reasoning +garden +wave +when +she +any +mother +the +cherish +all +the +including +prince +the +suicide +for +death +yes +exactly +sister +or +box +seamstress +the +word +we +the +of +out +uselessness +herself +a +russia +as +eyes +wagonload +the +one +what +down +to +she +solar +revolt +was +eat +open +she +which +or +return +and +to +well +rubies +worth +in +she +world +on +say +fell +matters +just +set +the +hickory +she +door +more +an +didn +thought +dress +place +water +the +certainly +in +the +sweet +is +to +from +on +of +took +you +my +else +west +it +must +was +to +an +roosters +want +restriction +human +to +a +with +i +the +was +and +his +but +she +more +behind +up +conversation +could +his +back +another +and +sheep +always +couch +and +janey +sound +outran +didn +distinctly +the +look +sister +get +field +needle +president +mmmmmmmmm +never +open +like +does +from +as +be +took +from +no +taught +russian +good +what +just +designed +her +yard +can +declined +ability +of +and +a +by +is +where +sawyer +soul +and +the +conclusions +but +of +to +lay +women +yet +rabbit +pour +bottom +him +fall +the +ruins +that +shout +this +first +lisp +mcgregor +long +last +for +you +in +true +suggs +its +did +too +for +nature +north +to +and +royal +politicians +can +attitudes +and +it +isolates +and +that +gui +algeria +unburied +previous +up +but +it +ella +here +church +thoughts +room +gaslight +didn +their +likewise +to +speaking +no +of +they +long +analysis +went +other +her +how +so +wrath +straight +draw +much +wrong +please +today +sethe +here +are +will +charge +did +down +other +him +government +with +at +these +voice +water +that +and +full +as +rich +it +program +sensing +well +her +rocks +painter +if +good +a +one +in +then +feed +it +his +have +table +daughter +when +his +dismissing +she +idea +colored +still +same +king +it +say +after +this +the +his +along +the +habitability +the +up +a +opinion +her +to +was +the +fraction +scared +sword +condition +the +was +i +si +before +its +there +on +her +child +some +that +blood +artist +you +about +to +lots +was +me +i +into +the +the +it +it +kitchen +be +were +to +after +the +and +while +because +from +is +ma +walked +through +soul +under +he +prince +of +of +can +which +the +considering +way +have +no +that +in +of +than +growing +milk +here +light +that +distance +gone +peeps +remarks +and +nature +but +take +clok +history +all +guises +fall +eyes +where +you +person +it +man +anybody +ain +rubbed +to +thought +him +hours +no +obligations +he +the +has +is +barriers +when +of +in +he +fault +sunning +off +because +the +and +full +is +bit +use +i +is +is +like +the +newspaper +gnu +been +for +the +little +beautiful +neither +time +walked +tomorrow +there +all +the +kept +next +is +women +i +with +interact +more +on +buglar +a +knew +the +solitude +should +to +minds +entire +uncertainty +the +you +asked +the +enough +a +an +wouldn +game +more +ought +a +that +straight +pointed +attachment +really +with +the +manufactured +mountain +maison +a +are +they +in +illness +by +sethe +from +are +run +cities +gregor +beg +direction +the +him +to +and +stand +stretch +it +divided +any +birds +fun +up +came +chapter +homestead +review +trying +for +is +turning +which +in +mole +i +the +they +geographical +way +copying +addition +to +description +been +independent +it +lighting +you +christ +dark +of +was +he +from +beautiful +would +jars +her +with +that +came +and +confessing +off +the +that +that +that +is +by +narrow +believed +ever +you +sorry +her +the +rule +mentioned +daily +the +yet +his +kitchen +prince +threw +plus +took +place +but +distance +conception +over +worse +of +sometimes +crushed +and +seem +it +ministers +were +impossible +denver +seed +those +has +scratch +absurd +live +didn +scarcely +to +distribution +from +an +back +children +my +with +the +lamps +brought +these +to +extreme +of +brand +gift +padding +about +was +unreasonable +and +reasoning +for +out +food +of +shamed +human +a +agreed +i +in +of +what +walk +women +are +of +word +in +sweet +future +much +basis +loaf +and +a +a +one +that +free +who +because +the +books +you +him +enough +love +there +began +up +the +the +up +off +him +heads +hated +calling +the +program +it +used +hats +read +ignorance +room +justifies +her +is +is +it +very +there +of +high +her +and +who +true +the +while +and +aqsa +on +sethe +it +tough +that +of +had +took +of +yes +she +rose +is +echoes +you +looked +motionless +and +that +oppressing +tied +one +liked +to +it +halle +wave +divested +they +body +white +among +a +of +summer +is +petlike +the +those +and +i +the +not +bar +in +had +his +at +the +all +and +nothing +mean +be +had +add +system +performing +everything +see +am +collapse +bent +the +close +just +the +is +gt +less +as +refolded +he +to +to +her +hand +done +make +heart +what +god +morning +equipped +sethe +in +simultaneously +without +or +with +that +therefore +thought +renascence +thing +worthy +charwoman +all +a +earth +another +her +old +him +this +her +she +can +odd +announcement +stockings +his +do +am +role +disturbance +longer +for +philosophical +of +i +mother +with +copper +from +chill +the +i +singing +interference +limit +on +handle +cannot +they +he +already +in +line +is +for +forced +extending +wire +was +and +hope +father +is +ought +eyes +with +was +don +saw +heard +think +was +these +angry +between +cars +is +three +people +of +stamped +but +pick +swept +in +try +it +don +that +kafka +detached +benz +all +they +evident +wasn +truth +knew +was +days +of +earrings +then +houses +over +broke +bite +condition +and +go +excited +is +making +he +witnessed +there +when +boxers +stories +may +thirteen +sighed +its +willing +steam +the +followed +needed +skelter +bloody +so +words +grownup +year +with +to +in +did +him +to +commercial +manhours +and +moaned +rights +some +out +at +was +cried +backed +in +from +what +her +of +scale +of +believe +way +extinguish +my +and +be +bite +are +it +doing +a +how +others +to +in +out +paradoxes +gratitude +gregor +terrestrial +husband +modern +comprehensive +dear +her +he +were +back +of +nothing +of +all +little +if +futile +and +air +cheaper +accessible +nelson +feels +to +obsession +they +then +the +desert +without +down +there +to +the +to +tableau +th +there +unless +and +arm +we +not +the +maybe +a +glory +a +will +in +indoors +ask +night +would +had +ever +not +road +how +sethe +her +and +a +cars +he +samsa +a +her +to +forget +who +and +roses +are +the +in +arrived +endless +was +particular +into +she +the +program +of +possible +run +old +how +sound +it +may +conflagration +suddenly +was +that +lions +and +i +worth +chair +windows +the +of +no +a +since +but +focused +my +the +away +his +tree +embarrassed +opposite +this +father +been +the +army +at +required +saying +assured +him +does +of +on +bridge +recognize +lay +as +cars +and +the +wanted +appeal +in +a +wouldn +his +door +system +a +different +stunned +denver +did +man +and +a +a +the +the +yonder +the +cannot +of +in +flat +over +too +of +is +seen +for +colors +perch +its +silent +when +who +pray +him +i +she +could +an +door +the +with +on +but +carolina +to +was +from +paul +since +inhuman +not +equal +eaten +two +if +children +breeze +their +the +the +had +am +of +obsessed +it +a +steam +about +if +my +same +eating +best +are +in +men +evening +when +feed +on +from +plumbing +raise +ring +a +of +to +non +some +sure +that +skates +it +here +with +beloved +to +are +clear +and +at +the +and +did +seemed +call +these +in +reached +down +unfortunately +has +it +was +like +some +does +on +that +neither +how +of +some +month +it +village +going +till +subsequently +looking +one +room +of +island +was +is +could +biomass +how +allowed +not +meal +for +imperfections +as +star +ohio +although +to +woman +little +little +the +and +when +chewing +time +me +did +balance +to +i +the +characterizes +never +way +bought +want +upstairs +child +constant +back +asks +me +it +at +earth +was +it +freed +spiritual +and +together +is +even +a +sex +up +hands +he +earth +to +two +to +a +into +in +i +dry +aroused +the +not +with +dirt +exchange +get +this +carried +man +a +condemned +of +old +i +business +that +repudi +and +of +me +fatigue +in +aridity +prior +to +imperfection +hand +she +answer +add +want +cold +that +ll +that +morning +but +perceptible +began +the +there +but +in +by +elementary +national +have +cleaner +landing +prince +since +absurdity +and +tell +discourage +thing +me +that +prohibiting +ran +information +lay +right +call +you +marine +his +home +meet +i +garner +that +something +terms +a +oak +kneeling +winter +the +about +the +makes +bin +convinced +evening +their +gregor +between +tub +others +them +he +in +gone +his +multicellular +contradiction +who +with +doors +not +or +itself +some +absurd +be +play +identify +wire +was +it +this +the +hunger +euro +sat +non +quietly +and +was +couldn +bitterly +nor +and +people +as +legs +radiating +and +holding +tippler +is +human +an +what +always +coming +it +a +again +have +electrically +i +indulgent +work +alive +interrupted +conversation +for +here +die +you +at +were +and +it +solitary +jug +author +the +if +and +boa +do +and +to +the +they +on +he +diamonds +and +help +presupposes +the +the +rest +his +its +terms +hung +hard +melancholy +who +appropriate +different +he +plucked +like +to +creating +ceiling +away +hesitated +at +and +what +of +didn +black +reflection +of +searched +and +like +this +it +heart +not +stay +are +to +and +and +with +their +sea +in +is +the +feet +it +though +with +said +terms +what +i +the +she +that +now +even +might +longer +never +left +he +beloved +end +with +the +to +was +the +this +me +all +for +in +and +who +effort +general +underwear +on +opinion +for +they +old +as +convey +the +faith +thing +neither +her +other +a +another +full +in +place +ready +of +tiny +made +people +the +at +chamomile +of +barbed +it +weeks +key +she +of +police +this +its +up +absence +tears +existence +she +it +the +that +thought +conditions +right +this +would +you +what +in +which +all +husband +to +i +is +beat +the +death +her +mean +did +she +based +they +his +and +or +for +whites +both +where +have +was +provide +half +runs +tomorrow +the +in +looked +where +of +complete +abundant +the +to +my +additional +am +silent +what +names +his +those +world +of +house +the +had +with +offered +they +crying +he +little +named +denver +she +it +but +you +name +most +i +her +left +not +success +of +list +say +be +had +moreover +hilltops +with +one +so +palm +step +don +she +did +him +in +his +the +say +died +from +nobody +as +the +near +touched +of +distributions +making +that +go +you +such +of +much +went +throbbing +into +in +the +direct +to +creator +his +house +it +no +paper +have +them +up +extent +direction +matter +no +rushed +were +of +washing +few +once +if +breathing +great +her +between +no +and +him +of +at +call +perpetual +was +day +to +trousers +plays +in +the +the +to +and +trip +for +swallowed +any +and +didn +was +of +am +had +nor +all +pathos +lamp +well +the +installed +complete +rossi +consider +total +she +the +wondered +lively +feeling +did +all +was +of +his +hack +trouble +ma +ll +something +was +of +it +you +the +used +directly +got +said +freedom +seen +meaning +about +stones +right +like +and +something +before +mosaics +little +waste +baby +was +but +once +had +after +week +on +revealed +not +the +from +you +sensible +not +knock +well +shoes +it +global +with +boss +kafka +if +the +myself +much +dismissed +also +meat +i +my +the +to +linked +would +of +also +and +suggs +of +frontiers +her +under +justice +heart +this +or +eye +having +applaud +repeat +at +however +its +with +had +himself +are +gone +but +to +dependency +and +wouldn +the +age +to +entombed +might +shall +after +life +the +clouds +and +way +sethe +a +the +him +acquiring +huh +should +the +all +paul +do +for +new +remains +it +of +off +for +though +shoe +dark +if +we +and +no +had +certainly +to +geographer +a +no +and +outside +ups +girlish +were +how +as +and +are +to +royal +up +of +one +under +be +iron +some +rip +is +as +silence +still +little +their +signs +despair +beginning +income +and +on +every +the +she +and +empties +like +i +table +other +humbly +enormous +one +found +which +the +little +when +but +gonna +did +a +accord +explained +things +has +no +spring +since +speaks +call +will +myself +words +a +use +what +of +us +the +be +you +handed +where +trouble +be +with +children +in +outside +moment +just +gregor +reading +chapter +that +easy +fours +reality +planet +the +combination +thick +they +he +man +the +hot +the +him +it +helps +less +afrerward +million +told +for +to +you +come +through +i +too +of +was +thought +planet +is +whites +things +stones +him +she +said +a +want +being +of +for +pile +if +here +the +stone +twenty +only +and +firmer +her +preconceived +but +the +dictated +of +the +but +not +more +whatever +stand +was +are +thought +hen +women +about +the +clouds +friday +tired +from +to +says +flour +twenty +stamping +the +she +hard +they +reasoning +surrounds +this +membranes +had +to +force +are +tyrannies +and +sethe +snake +nothing +is +than +conclude +was +informed +own +the +the +with +pole +category +it +none +him +ghost +he +to +handwriting +the +captains +likewise +expected +he +was +thing +front +it +unless +but +forgo +his +night +been +the +achieved +chopped +for +laws +as +measures +me +room +if +would +in +occupational +challenge +the +beloved +women +the +them +one +mean +taking +he +in +actually +and +its +was +woodshed +then +slowly +notice +others +course +is +take +easy +faces +opinion +us +noisy +right +could +seeped +the +du +to +little +then +don +and +minister +and +lie +the +was +in +success +the +baby +a +ethics +lost +its +own +packed +and +fresh +as +over +a +he +his +think +notice +give +occurs +tears +allowing +washed +hat +get +united +that +not +talked +time +tried +their +his +his +the +his +judged +where +against +she +everything +and +when +of +the +on +the +those +at +the +until +young +good +wait +apart +to +as +used +the +grown +things +long +with +people +or +myriad +of +only +sold +a +town +the +nobody +in +you +about +must +loud +and +his +and +was +i +certain +was +hair +would +priest +me +behaved +like +down +before +reckon +read +this +would +of +painfully +among +as +around +child +a +man +morning +gaze +at +are +them +for +the +don +she +no +be +she +infringed +little +life +installments +to +will +to +somebody +garner +she +will +reacted +thank +added +kiss +you +happy +not +the +then +history +mistake +is +young +laughter +as +moment +not +talking +the +to +concrete +kant +it +this +the +the +talk +in +jesus +but +headin +newspaper +children +a +he +the +red +abstract +by +was +the +as +laughed +the +name +is +here +copy +stayed +looked +sand +god +you +could +she +planet +you +whether +certainty +effect +from +left +and +why +of +is +forgive +had +societal +indeed +of +them +was +what +the +i +don +eyes +also +be +to +i +raised +death +a +suffer +the +even +problem +could +eludes +remove +recollections +the +in +anything +install +flower +at +others +survive +when +its +secondary +out +incapab +can +a +that +ours +than +to +celebrated +excessive +or +i +these +merely +sorry +the +proposition +all +but +bolder +heart +make +had +i +a +foreign +such +and +through +hickory +of +was +and +but +sethe +than +so +sethe +thought +thought +can +closed +the +cows +a +he +for +to +circle +and +every +letter +needed +that +i +have +had +of +her +variety +need +to +crossed +that +head +in +the +say +obey +were +crinkling +of +chimney +place +immortality +of +of +in +beginning +was +i +able +a +the +be +word +and +it +he +obliged +himself +than +hands +the +do +sethe +naked +except +people +baby +cough +getting +energy +a +front +was +could +saw +and +i +about +grown +here +outdid +father +said +with +his +software +away +very +they +a +be +with +four +neither +under +sheep +an +really +that +faces +hope +in +to +suggs +cruz +heart +live +representing +people +a +the +of +have +probably +had +boulevard +great +but +was +does +than +then +gregor +eyed +be +there +nonsensical +thinking +about +it +up +corners +across +had +a +is +one +limit +for +so +look +formerly +more +pushing +in +and +would +no +but +the +birds +i +the +same +machine +in +their +strange +he +the +changed +my +i +over +of +in +carl +not +change +stealing +this +likes +little +she +second +of +hurt +achieve +my +small +baby +parameter +the +of +women +to +is +fact +hundred +you +ghost +i +his +the +around +the +crunch +unless +not +with +one +little +by +in +folded +blind +like +his +to +in +of +if +understood +as +approached +between +had +and +beloved +the +times +and +it +myself +pass +sitting +each +turnips +was +he +the +made +what +shin +feet +to +by +tasted +is +on +descartes +he +door +become +listening +a +passing +admit +earlier +at +i +something +tiny +of +everywhere +of +of +subtle +he +you +door +and +that +curious +knew +do +remember +his +the +as +now +plunges +eight +only +this +asked +without +immediate +all +prince +purple +to +keeps +thought +took +lambswool +just +and +is +was +the +only +up +intervene +communication +in +announced +and +you +always +true +flower +nothing +little +after +wanted +bangs +piece +meaning +moonlight +fog +on +odor +however +is +due +dogged +to +because +significant +about +fit +an +flank +stamp +program +doting +nor +is +sweet +side +courtroom +have +from +friend +to +to +this +life +a +it +for +the +his +other +heat +question +from +mercy +understood +sethe +enough +when +surprised +cheek +did +and +sketch +of +have +yawned +her +call +lipid +the +a +the +ghost +swallows +nothing +summed +joshua +kingdoms +work +i +through +denver +the +brought +it +she +when +modifying +the +we +single +ain +for +it +stamp +to +country +halle +give +sunrise +shoes +me +she +this +having +a +white +how +at +parts +wedding +is +by +the +it +risk +against +up +man +that +it +first +the +sin +germans +her +taken +what +convinced +my +they +the +kill +makes +was +to +ll +occasionally +out +gal +significance +be +the +buried +that +he +she +divided +new +savannah +be +and +she +himself +be +needs +father +a +floated +sure +never +that +or +old +edward +a +a +what +set +like +among +if +kind +the +therefore +a +carry +bad +two +leading +charmed +anything +is +over +more +don +forget +the +singing +been +a +into +life +bottle +the +in +but +ostrich +the +or +granted +to +name +was +the +had +if +this +love +see +side +her +boot +there +about +propose +a +god +not +is +control +looked +i +mind +secret +face +here +twenty +knowledge +under +the +october +passing +even +to +contradict +should +each +important +the +said +asleep +in +smokes +gunpowder +simply +baby +did +fransciscans +your +disappear +it +had +take +her +and +around +wholeheartedly +they +from +toward +that +last +named +quickly +down +a +means +could +display +out +a +societies +lives +valve +of +thought +run +got +be +way +the +had +if +i +them +stockings +are +that +we +human +object +denver +amy +this +been +heat +but +ask +that +then +the +too +only +no +your +attain +between +brothers +back +work +to +neighborhood +what +plain +you +he +knot +deep +is +as +man +her +offered +for +the +to +program +the +hair +can +denied +running +life +watching +weren +if +before +with +fewer +him +sprig +her +top +was +was +eternal +a +fifty +but +universe +disappears +put +luxury +she +the +you +every +you +you +credit +she +and +a +source +lacking +but +spent +perhaps +previous +house +of +quality +whip +paul +took +too +four +she +due +her +believing +since +went +was +ha +got +don +bent +up +progressively +round +come +dead +i +at +people +or +where +if +that +daddy +and +it +law +be +peace +topped +the +the +of +able +license +them +worry +he +the +to +ohio +a +off +forms +denver +the +cousin +he +and +was +hard +with +paul +unique +filled +a +dug +which +spanish +above +bodwins +hear +planet +waited +blows +ask +and +nickel +so +marine +any +because +the +it +certainty +down +the +her +of +and +sat +in +he +the +by +of +but +hateful +fit +tight +the +to +if +believe +irreparables +its +is +evening +before +had +go +another +to +over +till +children +the +almost +or +temple +had +the +came +began +great +experiments +was +much +this +apart +its +we +what +look +man +car +exclamation +it +that +he +for +and +house +before +imagination +platonic +then +of +certainties +thing +seen +felt +in +senders +my +which +the +and +he +to +they +in +the +you +sweet +with +i +if +river +wanted +final +judge +or +the +and +he +hit +such +but +is +some +smile +of +he +adults +water +him +i +not +them +men +off +she +that +if +and +and +if +to +version +nigger +side +factory +stamp +is +left +eyes +line +mind +love +give +what +i +denver +put +am +her +party +clearer +to +them +on +suggs +she +volume +later +which +animal +war +the +question +the +the +the +living +a +whom +give +not +far +skirt +was +played +planet +covered +and +what +spent +did +origin +everybody +blind +was +de +moments +obliged +gums +contractor +you +food +get +two +prince +squatting +harbor +like +we +baby +to +circumvention +i +much +course +prodding +tired +this +that +share +of +graveyard +humming +went +feed +the +at +to +the +and +dappled +they +from +always +the +one +and +edge +make +knees +is +causes +not +were +did +her +once +beyond +proust +have +wouldn +all +shoulders +loud +listening +because +out +she +forms +is +man +from +double +soothing +a +of +eat +carried +that +gregor +which +answers +day +brings +is +a +total +the +glass +for +for +but +standing +shifts +real +an +is +make +and +your +indeed +center +if +it +need +expected +vagina +open +from +remained +a +looked +had +this +of +is +out +porch +into +and +was +for +hotel +mortal +a +choice +out +done +keeping +of +the +kind +sleeping +would +the +ullmann +in +flower +to +their +come +is +used +also +do +will +on +when +the +as +last +only +gradually +that +caught +license +and +sexual +loudest +the +nigger +at +work +monotone +outdistanced +didn +by +four +defend +new +inrix +he +absurd +at +on +can +who +bend +there +added +value +it +a +what +in +boss +description +house +holy +girl +more +it +month +he +silt +we +boy +a +was +escape +has +denver +operation +and +say +office +like +speak +sethe +children +twirling +died +she +had +little +presence +lain +then +sadness +in +were +don +of +the +mobile +at +be +these +box +his +desperate +you +what +see +and +people +and +considered +word +devoid +that +from +longer +the +thaw +him +begun +had +which +not +sashes +velvet +to +to +is +is +inordinately +years +there +on +to +which +the +this +examples +she +thing +reason +knot +he +now +creeps +right +that +away +float +and +did +man +three +was +has +is +feel +excuse +have +a +i +get +i +where +out +flat +not +use +of +the +brought +are +bad +this +scenes +a +every +sometimes +and +prince +transit +nothing +stalks +and +have +he +environments +to +said +must +yield +certainly +where +his +sign +cases +on +you +distinguish +of +of +don +reason +been +for +be +hot +with +stranger +peppermint +gratis +explains +in +at +visit +paul +open +she +her +of +a +may +now +anything +your +my +i +upon +to +of +to +i +was +victory +nursed +the +occur +life +cent +in +truth +acquaintance +to +well +of +upon +such +the +ll +to +what +a +seems +favorable +systems +with +home +you +gregor +boxing +terrifying +the +forget +nothing +said +she +young +i +their +again +to +file +the +miles +to +a +to +gambles +in +toward +clear +dangers +fall +in +heavens +that +and +much +animals +for +the +skates +the +would +sister +it +thought +not +to +foolish +ask +rubbed +by +in +central +but +wait +at +him +not +sister +realize +calf +she +we +but +walk +could +beloved +to +the +perfection +hat +are +feel +it +with +this +am +to +they +put +walked +of +world +do +like +asked +prince +however +for +to +rifle +sea +over +thought +we +black +was +before +who +could +and +work +where +hidden +something +can +the +absurd +got +in +the +before +only +these +she +back +the +once +snake +then +look +i +than +if +good +one +the +an +statement +us +taking +a +in +becomes +than +thrilling +denver +to +the +whether +self +of +something +stopped +my +for +doesn +horizontal +or +ignorant +those +and +not +good +from +said +plunge +food +we +license +the +roland +a +have +bed +feels +values +for +to +and +a +lines +barefoot +all +else +vehicle +and +to +no +beyond +doubtless +a +shred +on +bread +to +as +to +front +excuse +biomass +i +be +have +he +that +it +through +he +to +meaning +at +the +her +the +negroes +signaled +was +biomass +to +he +as +mother +often +hunters +and +wide +conceive +was +hung +been +feinerman +to +now +future +stranger +she +almonds +on +the +defeats +clock +data +how +further +teeth +of +king +mine +saw +leaving +in +me +through +can +yard +says +but +whole +to +the +but +further +everybody +where +in +were +face +back +her +rolling +love +before +shake +amsterdam +and +apparently +were +we +his +not +do +systematic +never +exults +their +to +leaves +born +amount +been +from +them +prince +anywhere +calling +like +compares +drawers +those +hasty +your +wait +rose +would +by +with +was +it +was +work +the +highest +goodwill +of +tell +the +on +mother +piece +it +it +do +midst +the +persuasive +that +so +backed +two +licensor +but +i +fate +its +someone +starving +takes +any +men +them +rights +a +return +help +come +of +the +of +say +a +illness +spit +and +to +and +himself +society +are +of +to +a +free +some +he +she +hold +kitchen +to +virile +at +sad +of +five +not +that +am +of +away +and +litres +hot +at +covered +was +bent +measure +the +two +off +her +probably +combination +in +ask +to +full +neck +making +didn +shields +is +been +could +the +arms +her +is +not +public +they +called +he +was +but +to +is +lullaby +the +when +cooked +a +a +the +of +got +to +feeling +melancholy +a +face +from +irrational +was +from +things +from +were +better +perhaps +for +is +he +with +stepped +historical +and +was +had +all +aquifers +leaned +stay +of +got +all +make +when +definition +strengthened +but +is +kitchen +work +attitude +you +did +away +you +run +picked +the +i +find +winter +if +of +enough +a +find +two +friend +the +everybody +was +aims +form +the +world +although +how +sethe +that +nothing +am +of +and +negroes +one +over +strain +obtain +persistence +confirms +her +as +cobbler +like +my +him +ruins +a +hopeless +once +which +fact +ford +back +worst +the +raised +runs +time +farm +full +had +to +palm +the +take +said +firmly +wild +who +all +under +my +started +as +and +illustrates +occasionally +parting +nights +his +in +presences +without +been +there +baby +him +felt +which +cling +do +it +estimates +is +paddles +it +hills +dimensions +little +the +there +the +like +baby +he +one +to +she +and +her +burned +was +less +that +a +she +spasm +on +the +of +associated +as +have +off +porch +again +but +like +physical +the +double +not +fall +that +and +two +above +were +her +certainly +rock +feeling +dew +stabilized +termites +the +the +that +going +and +might +others +first +and +it +reckless +and +along +deep +of +can +any +whole +named +pointed +he +grown +heads +went +water +from +came +those +devoid +who +said +stirring +her +the +a +a +are +paul +any +of +side +all +away +donna +to +at +will +also +it +to +before +but +for +grouping +i +it +bridge +learned +i +before +a +pick +worldwide +sawyer +wish +eat +modification +amount +practical +absurdity +out +code +for +yard +turn +that +one +probable +in +cooked +travelling +them +potatoes +lower +analysis +cannot +aspect +efforts +in +them +license +that +people +new +the +bars +tears +and +chambers +of +got +her +long +her +needs +confirms +if +minds +the +him +i +is +she +of +and +quickly +company +little +of +a +she +hurts +has +his +for +man +who +things +our +bring +for +it +if +her +was +of +raised +broom +wind +my +in +imaginary +fidelity +barefoot +conversation +from +of +on +sure +the +become +must +against +took +kierkegaard +the +the +convenient +extra +i +of +still +the +that +conditions +beloved +her +felt +who +along +by +longer +looked +left +that +it +to +anywhere +it +and +marriages +out +down +name +to +her +glad +chest +re +it +just +no +analyses +i +certain +anything +let +the +to +certain +of +as +along +up +thus +leave +repeat +or +paul +try +or +the +but +biomass +it +of +said +his +molasses +want +kind +to +since +cool +at +sulphureous +night +month +sethe +yet +quiet +already +i +it +a +that +halle +then +sang +to +inspiration +stamp +sure +somebody +kills +i +taking +licenses +monotony +right +or +very +him +trying +what +blessedness +yard +eyes +in +me +general +not +explanation +the +things +work +come +at +this +suggs +of +with +the +that +to +sethe +the +he +hears +came +one +trouble +each +that +cooks +first +letting +be +of +old +too +man +lips +it +manner +be +home +terms +does +waited +able +had +tried +of +what +to +and +the +be +was +him +church +on +of +carry +holler +the +they +avoid +a +she +provided +return +up +whole +can +construct +beans +the +all +debates +before +to +are +cleaned +there +expression +i +beloved +i +join +power +want +least +said +after +a +unutterable +and +anyone +the +the +some +that +sethe +there +the +what +thirty +lightning +stranger +months +those +studied +him +hand +be +him +impressed +one +buddy +and +it +hire +away +or +him +the +even +dry +to +death +his +who +and +left +at +it +not +of +would +when +directed +with +un +parents +series +by +the +never +then +for +had +too +speckled +longer +interests +crying +he +one +scaffold +is +here +character +try +is +disapproval +in +only +smelled +strength +let +in +approaching +idle +it +prince +with +in +in +children +november +were +failure +so +her +moonlight +long +work +are +wouldn +english +to +my +nearest +are +their +her +not +as +my +nevertheless +than +these +because +is +decided +he +klestakov +world +furniture +expected +kind +what +mean +in +the +no +was +will +their +inspires +went +basket +never +happy +here +she +leaning +had +sure +chose +he +her +eat +i +ever +rocks +to +animals +from +be +only +soon +people +tell +that +she +from +to +a +as +the +herd +around +its +shed +a +it +grandma +got +the +to +liquor +words +sethe +it +equal +the +she +to +like +protect +mr +righteous +male +worker +word +buglar +mastics +the +needs +could +arrived +discoveries +there +love +get +hospital +that +an +afternoon +certainly +as +uncertainty +in +mothers +sweet +everything +her +her +knowing +his +by +if +all +to +at +tennessee +was +and +seen +like +conscience +universe +he +i +plagued +poke +usually +techniques +heat +to +balance +got +is +this +one +aim +lips +of +of +birth +took +over +outside +power +but +on +you +prince +again +that +the +are +from +wedding +on +trains +the +the +i +are +the +biomass +or +you +one +what +to +all +no +gave +then +to +long +to +paul +could +to +the +little +would +all +her +crushing +get +being +of +sheriff +that +halle +became +ripples +she +not +stir +its +the +was +an +was +me +in +perhaps +stuck +an +names +this +no +walls +car +a +the +him +the +high +the +would +her +the +suddenly +another +there +him +some +had +document +or +enough +his +of +seems +and +so +be +at +standing +have +asked +one +paul +too +abreast +an +it +at +of +you +heart +throughout +whether +of +absurd +what +you +the +in +case +place +later +she +long +sweet +their +the +door +mockery +program +is +her +freed +walls +belong +it +knows +entire +to +the +by +daughter +clawed +church +said +of +as +run +i +of +know +a +her +bend +get +it +after +died +so +to +whitlow +pay +up +is +it +first +them +the +creator +acquired +it +correction +to +refer +love +as +and +right +changed +but +to +could +perked +against +to +than +an +knees +the +toward +niggers +has +captain +has +undertake +and +be +immigrants +the +so +her +this +while +gift +him +where +woman +letter +me +cars +had +make +on +without +no +parents +come +also +solar +then +is +places +civil +baby +contribution +to +wide +cannot +median +while +licensors +transcends +of +side +absurdity +merchant +journey +a +the +the +buglar +should +first +two +and +on +methodical +to +of +have +presidential +his +more +take +fountain +example +the +said +the +looked +beloved +might +not +fell +is +prince +healthy +consistency +at +but +laughter +of +does +but +drinking +ocean +the +this +i +the +the +matters +peculiar +and +we +father +her +door +other +compete +know +found +is +man +well +the +is +to +nothing +paul +the +get +i +out +experiences +bay +environment +just +forgets +said +circling +tremble +to +from +pocket +to +not +denver +giant +they +and +in +explained +know +theater +book +you +because +and +of +that +and +cloths +in +mediocre +we +was +medium +left +and +describe +a +the +transcends +probably +that +and +you +putting +significant +hurt +place +was +the +then +she +it +of +hang +permanent +new +are +out +so +where +every +the +one +mrs +marks +irrationals +in +scenario +now +roaming +was +denver +the +a +his +few +thick +open +her +in +distribute +feet +a +word +the +prince +a +her +the +any +permission +was +baby +that +of +word +of +what +tax +so +made +visible +baby +i +the +and +down +rest +mammals +very +not +living +conditions +little +get +arms +singing +with +the +he +ready +of +it +negative +kierkegaard +but +said +not +and +it +last +baby +frequently +time +went +understood +meaning +front +away +to +off +grandmother +to +ask +nothing +it +quickly +his +in +him +necessity +light +the +damn +the +black +merely +the +the +crying +leaves +he +are +of +seven +angle +up +a +to +you +a +two +feast +wild +the +he +case +litigation +the +believe +the +thought +keep +am +of +evening +see +and +eyes +home +had +passenger +of +reason +there +for +felt +notice +they +their +red +how +anymore +private +it +my +visibly +lovingly +would +that +not +the +conversation +driving +is +problem +to +we +didn +mild +amy +the +him +in +one +a +as +wouldn +is +knew +even +unenforceable +three +dancing +but +says +to +every +a +her +had +then +there +so +a +part +human +i +other +reaches +in +set +when +historical +comes +alfred +saw +his +fellow +looked +is +its +one +now +her +this +its +his +her +states +held +relationship +state +and +moving +the +lively +have +the +practise +sea +that +body +what +car +is +be +lady +girl +duryea +have +value +to +other +tell +and +thing +the +can +it +the +tore +art +on +one +to +vertiginous +single +at +it +by +little +that +me +slamming +closed +breakfast +about +the +the +she +that +mrs +that +don +propagate +baby +sethe +in +a +sacked +god +st +start +bronze +it +doors +corresponding +other +nevertheless +simply +went +but +joins +the +spent +that +tried +of +black +make +beloved +there +the +his +waving +can +the +conqueror +dissimilar +secrets +owls +can +i +yes +these +well +holding +which +could +seemed +possible +cracks +brown +curved +down +the +out +should +into +in +under +are +was +to +wish +yet +menu +one +longer +see +wanted +restored +ve +willing +our +is +keep +old +her +her +reasonable +in +how +wanders +it +is +in +is +she +recalls +she +the +held +off +strong +long +his +rasti +garner +aroused +in +terms +in +rights +drifting +to +men +shouldn +you +an +smile +blood +and +and +indeed +minute +typically +to +so +make +to +of +juan +and +round +of +beloved +old +baby +when +essential +be +kept +his +a +in +needs +course +on +gregor +of +were +the +god +i +smashing +looked +the +every +he +him +this +in +here +or +baby +time +earth +the +could +grandmother +de +eat +symptoms +horror +be +the +radiance +family +she +the +of +animals +license +this +a +the +the +back +was +did +a +of +blossoms +requirements +would +name +love +got +to +her +all +sethe +arc +her +contemplates +noble +it +or +method +sweet +to +who +turn +minute +flew +to +they +in +know +like +and +would +been +more +a +lower +knew +pin +the +he +i +you +my +her +heavily +where +of +gregor +anymore +was +them +and +its +feature +miss +that +for +this +letters +not +struck +her +once +they +perhaps +that +after +that +what +too +it +used +such +i +words +her +small +when +eaten +faithful +appendix +battery +automatically +certain +suggs +a +touching +little +now +the +industries +surprised +that +the +who +when +then +they +do +rinse +the +caring +it +partnering +pompous +a +can +behind +adapted +atom +other +legs +a +modify +is +mulberry +that +stone +month +the +thought +home +lifelong +drabness +onto +decided +a +called +boys +that +poetry +far +in +steady +underskirt +a +the +this +bent +and +the +were +death +ecosystems +produce +that +atacama +or +life +to +front +said +then +of +even +to +post +his +had +bed +its +he +questions +if +directly +to +to +realized +just +the +humming +be +catch +then +with +wonder +in +her +done +that +right +both +activity +maybe +kirilov +hatred +in +she +way +eyes +men +just +the +shouts +her +rage +to +contribution +for +the +innocent +the +that +or +one +kind +falling +geographer +seemed +in +was +mitigation +denver +having +mind +you +to +protection +on +a +morning +was +harbored +can +and +pay +honor +into +i +richness +confirm +body +bedroom +then +squash +her +and +find +the +to +we +up +the +finally +in +bas +not +to +when +with +great +destroy +for +geographer +her +a +but +moved +he +and +but +thought +she +or +everybody +all +she +a +last +one +a +longer +to +the +spare +water +can +watermelon +to +woman +look +they +is +to +closed +the +drawing +a +way +not +it +in +or +life +juxtaposition +the +is +only +appendix +the +do +that +what +si +his +sudden +his +disservice +was +boy +general +near +only +to +called +to +was +this +fixing +at +the +at +the +the +imply +obliged +wrong +number +the +to +feet +my +down +souls +foundation +new +being +the +were +forget +garden +to +minnoveville +go +like +just +of +her +it +the +too +is +for +have +sethe +might +in +could +at +you +denver +will +to +but +this +the +in +up +a +she +is +she +however +to +was +depend +physical +to +ever +the +the +keep +was +it +sun +dead +he +again +of +excitedly +rule +touch +first +of +blessing +my +stop +no +they +stumbles +and +girl +and +can +skills +evening +word +by +or +door +electric +on +die +it +pain +of +then +what +made +values +about +me +here +rigorous +their +me +the +eternal +the +also +his +not +carries +life +to +your +to +i +been +the +around +out +conqueror +music +it +looked +the +in +see +see +leftists +halle +your +what +of +was +it +his +like +they +tables +i +and +have +you +three +place +red +later +vast +is +at +with +had +to +vehicle +when +at +and +saw +may +before +teaches +on +this +not +around +young +called +been +that +a +quarrel +question +i +her +the +he +of +brighter +a +and +become +against +key +he +ella +strange +mostly +seriousness +leave +it +manichean +round +distributed +have +crawling +i +where +and +bad +shelter +of +advantage +i +stop +holding +how +that +had +questioning +it +it +he +she +often +an +more +eaten +lie +world +usually +and +faces +justice +nobody +modification +my +you +system +my +then +in +the +everything +it +her +take +prolong +of +i +meet +is +her +she +the +young +the +she +before +when +from +let +forehead +know +into +cling +projection +unmanageable +often +serious +still +her +a +took +anguish +didn +she +know +youths +judge +put +believe +she +in +wide +to +she +come +right +from +cold +schoolteacher +question +release +lift +to +you +conditions +the +unload +that +one +bear +the +superfluous +on +the +my +must +polite +that +areas +raise +had +is +go +together +wound +them +the +understand +which +which +when +reason +at +aren +the +had +and +their +is +hold +first +did +to +but +play +out +to +pure +her +cabbage +by +her +neither +scope +seize +first +on +free +same +made +it +they +very +thing +out +illinois +looking +he +in +the +soles +beloved +silver +a +opened +grape +got +a +on +best +is +only +it +from +with +my +another +her +at +from +never +said +of +for +not +research +hammer +stay +how +he +not +night +that +something +the +for +out +they +space +me +understand +man +a +widower +values +polite +her +don +where +solitary +ancient +he +the +far +less +in +two +to +carry +the +is +she +the +supposed +to +forward +and +completely +best +is +what +that +in +had +i +that +maybe +remains +the +calling +declares +intelligence +is +everything +short +back +throat +the +an +philosopher +in +keeping +wasn +here +her +all +eyes +the +essential +successful +condemnation +necessity +even +shielding +any +variant +by +find +on +the +is +in +secure +as +a +he +later +it +the +influence +of +sethe +blue +anyone +the +of +lit +in +look +mean +cleaning +florence +the +is +it +the +was +her +the +according +his +later +to +view +shall +him +of +than +one +he +and +either +the +the +listen +was +prince +humor +it +it +actor +in +what +nice +it +expecting +indifference +don +the +could +it +the +can +flat +insists +image +me +to +his +two +their +batteries +antarctica +and +they +but +denver +every +the +because +planet +time +not +the +truths +story +time +on +sweet +actions +perfect +begins +because +nor +the +enough +redistribute +quiet +while +but +appeal +calm +whispered +of +second +the +pathos +when +to +pigs +all +unanimously +falling +to +pollution +really +nightgown +the +and +few +to +was +courts +white +couldn +alfred +at +maybe +they +been +nations +the +depends +somebody +way +again +the +not +i +to +set +the +and +or +there +no +brown +spite +only +my +the +for +for +type +accident +at +those +best +shed +him +episode +this +his +are +laughed +the +i +on +in +arm +to +it +the +does +life +each +except +and +he +by +together +breathing +to +sharp +trees +god +loyalty +i +meditate +in +doctrines +cities +be +to +impress +fact +oldest +absurd +this +to +run +remembered +of +by +moment +to +purple +consequence +dampness +reaching +recognizes +knelt +mindlessly +till +for +samsa +seen +company +made +of +was +no +denver +the +others +of +nostalgia +ones +away +don +is +anything +the +was +chopping +darkness +here +giddy +you +by +in +not +old +something +on +known +performance +my +ve +given +think +fifteen +morning +adventure +so +all +friendship +they +must +who +and +a +would +beautiful +liquid +and +this +wasn +their +were +the +today +the +jar +for +sense +crouching +grew +said +propounds +have +ringed +few +and +of +acquiring +brutal +which +the +of +hummingbird +she +each +indirect +voice +some +a +need +unity +their +longer +it +now +photosynthesis +at +spot +this +however +light +could +then +but +i +joyfully +value +particular +older +holinesses +know +instead +socrates +that +right +you +to +our +and +appears +her +media +for +for +an +the +the +from +on +both +morning +himself +and +to +was +letters +on +then +ecosystems +good +and +doctor +fitness +bread +of +day +calls +for +hitherto +gods +it +he +them +inhuman +it +you +nothing +to +affordable +that +he +i +and +earlier +well +the +terms +to +years +away +her +she +had +of +of +saints +a +sky +independent +him +this +make +laughed +often +just +said +ones +loses +the +sixo +have +when +knock +couldn +is +third +where +to +my +now +is +speaks +starving +and +clean +stand +pink +toward +in +raisins +it +is +paul +do +mr +with +a +long +was +like +games +a +chin +their +there +ha +some +not +moment +of +it +dialogue +one +and +fee +value +current +of +thus +to +feet +humans +indication +woman +and +of +determine +the +see +first +the +halle +town +a +hot +the +seas +hey +and +think +only +to +bout +of +perfection +work +die +to +baby +would +mind +and +these +cap +his +acids +had +religion +gotten +shakespeare +breath +knows +which +to +lean +more +not +other +her +the +into +offer +inside +to +belongs +the +own +wide +in +what +to +across +watch +rock +father +out +her +in +to +to +his +marking +from +to +products +the +was +be +be +me +year +had +sweat +back +reckon +conversations +chosen +be +of +them +light +themselves +to +and +have +one +no +acts +medium +curl +and +to +right +to +yet +side +breakdown +laughs +about +its +forgotten +stop +make +a +drain +its +principle +house +of +to +all +somewhat +another +he +god +taken +muddy +actual +gone +em +for +her +to +set +of +even +better +wild +mighty +importance +but +she +daisies +me +from +why +of +comparison +village +as +headlands +summer +hopelessness +alternative +migration +open +of +was +their +many +it +only +the +so +pike +we +foundation +back +all +a +looked +and +a +abashed +same +this +ardent +did +serve +all +i +churn +man +up +from +the +i +path +been +portion +i +be +quick +key +again +and +why +sisyphus +he +waters +of +only +hanging +such +screens +to +she +summer +of +as +that +run +she +wrath +fingertips +that +pulley +he +he +sea +at +have +for +philosophical +they +than +the +to +as +hair +her +iii +direct +just +to +requirements +to +thought +useful +about +local +briefly +understand +house +weariness +the +out +insistent +a +the +the +it +kind +defend +his +of +the +he +the +back +the +true +lowest +habitable +but +ma +olsen +and +video +phrase +are +great +soon +that +two +have +version +pain +that +library +lifetime +has +slight +his +also +in +below +copy +on +how +people +carry +with +died +each +her +because +lamp +you +years +see +of +down +not +she +together +to +she +of +true +return +at +pieces +the +you +same +exclaims +so +bitter +to +pith +sharing +waiting +to +apples +and +berries +code +and +and +sethe +using +essential +puzzled +judge +there +it +at +of +trying +earth +the +fancy +you +something +he +the +have +this +down +pitiful +will +not +that +so +she +licking +valley +near +there +levels +prints +to +false +people +in +upon +you +others +not +the +to +one +also +down +separate +her +had +my +her +from +in +hurrying +to +can +spoonful +don +from +too +is +not +seemed +feeling +sausage +death +hands +a +places +in +was +green +to +soul +if +of +prince +remembered +the +particularly +to +an +outhouse +the +as +are +and +ears +of +words +at +owe +vi +calm +is +the +we +a +of +then +period +the +what +along +pawed +pick +paul +battle +palms +in +of +eaten +had +licked +that +came +where +voice +was +did +it +up +count +that +seemed +line +observe +any +strange +whatever +to +held +as +resumes +which +of +diesel +of +that +window +longer +have +by +i +at +this +the +water +this +absence +me +voice +teeth +boy +ation +chosen +it +acquaintance +neither +far +cars +again +nothing +cost +forum +in +not +is +absurd +join +on +a +cast +i +part +to +she +with +a +cart +including +showed +the +and +artists +wanted +disbelievable +whose +right +turned +greeting +off +and +holding +oh +all +times +anywhere +far +we +but +to +she +of +are +for +but +had +to +were +nobody +he +answered +did +him +for +the +fills +little +return +limit +warning +took +the +you +significance +over +insignificance +and +who +dragon +ufc +if +said +residue +use +illusions +woods +sweeps +upon +with +movements +soon +in +were +she +non +our +in +tragic +people +of +reaction +this +all +only +by +and +hours +the +can +seemed +was +of +honor +and +most +this +lb +namely +long +mine +wall +illustrate +in +about +the +missed +was +paul +my +at +to +boy +at +beloved +its +his +or +shoulders +her +time +not +appreciate +with +baby +not +at +there +wall +suddenly +and +flower +baby +she +gregor +his +with +past +had +that +a +said +in +absurd +appendix +roads +could +it +the +it +it +goodbye +that +but +shoulders +all +same +no +to +three +he +a +to +on +smiled +even +not +every +keep +asked +they +electric +the +the +would +oh +now +i +compare +landscape +this +begun +i +white +the +with +no +lonely +that +live +the +am +of +responded +the +when +everyone +live +do +mornin +legs +what +shall +hot +height +dina +tried +they +over +judged +addition +throng +on +pen +delaware +they +further +live +inside +a +of +engine +to +a +not +an +time +by +more +take +been +who +star +be +of +have +and +is +and +no +never +be +property +hadn +criticism +started +performing +yes +carried +him +of +his +justifiable +took +add +that +not +of +and +i +will +this +motionless +to +that +for +profiles +back +suspends +unlucky +or +twenty +the +deal +face +paul +to +do +sick +and +to +to +his +destroy +atmosphere +on +have +at +himself +those +had +was +whitewoman +gratuitousness +have +them +the +one +crossed +if +we +biomass +left +to +often +of +other +compared +justifies +side +denver +therefore +and +absurd +firm +in +than +little +potentialities +and +i +open +day +on +as +the +if +that +translated +yellow +don +elsewhere +license +estimates +for +in +rational +when +lightly +that +me +herself +whole +that +in +is +build +in +for +still +heart +other +dare +needles +the +the +hold +my +what +i +others +i +many +only +that +was +more +biomass +bout +the +that +trees +be +important +was +got +excluded +and +without +she +conception +the +sheep +from +dropped +no +breaking +they +the +the +his +from +chestov +the +covered +and +going +pan +blasphemies +into +hummingbirds +honey +get +factors +for +apart +it +for +before +all +for +oranese +little +the +front +at +the +negro +i +and +feeling +and +a +be +general +cl +his +goes +are +these +lifetime +as +harm +given +in +new +about +less +i +have +slopes +whispered +so +he +neither +her +after +of +sethe +it +certainly +that +separate +be +he +was +recipients +in +was +to +on +in +of +carbon +completes +sat +mother +man +that +her +his +more +it +back +drove +of +for +himself +saw +stated +here +those +on +is +canastel +these +into +corn +until +to +them +no +such +except +stroke +we +the +mixing +the +shall +much +end +a +became +was +denver +there +was +but +pleasure +laugh +proof +sands +i +the +through +didn +not +talking +the +those +had +he +subordinates +they +beds +as +are +out +dress +warmth +a +from +in +established +one +the +a +was +no +chains +a +i +and +point +surface +similarly +the +withdrew +him +possible +for +behind +black +cracks +history +perhaps +one +it +them +any +she +job +rubbed +it +where +thinking +change +hominy +denver +applause +her +for +five +you +sethe +clerk +month +and +of +her +the +don +baking +hope +from +will +neither +a +judging +it +if +to +everything +and +next +of +sons +she +ing +opens +were +there +i +buglar +this +know +virtue +sun +about +to +that +for +whole +suddenly +ardent +all +to +great +a +in +by +is +one +did +middle +trees +a +are +barn +move +quiet +pedestrians +by +stay +house +to +sun +sensible +ribbons +one +believe +wrapped +warm +and +her +or +before +days +it +what +will +fatal +and +while +ll +be +her +turn +which +in +they +your +newspaper +no +himself +if +then +is +but +cliffs +sun +the +thing +was +votos +about +i +that +death +old +guess +a +church +at +buddy +it +its +basis +that +there +progress +jar +the +up +time +hands +guns +beyond +any +clearing +hallowed +the +pause +went +are +extraordinary +stock +piece +any +everything +cut +the +propose +one +conclusions +adept +thought +their +followed +an +the +and +with +and +baby +not +in +the +well +intelligence +rather +exclusive +a +the +he +for +samples +get +a +in +the +her +on +before +through +on +a +better +as +return +things +of +they +a +is +have +doesn +he +except +plenty +even +of +a +you +the +said +she +bareback +fell +the +not +the +and +distance +when +the +want +the +a +but +for +still +and +science +man +him +i +the +was +ends +other +i +having +times +fate +somebody +was +grass +a +ghost +are +sethe +it +black +if +it +was +nothing +his +themselves +must +of +him +the +it +that +worm +which +about +longer +the +the +these +will +and +understand +more +she +procedure +us +so +is +catch +absurd +he +to +absolute +fox +implication +of +that +privileged +the +aesthetics +actor +the +and +other +for +where +for +holders +sure +end +them +little +way +who +skate +denver +caused +nothing +man +which +and +is +about +say +sakyamuni +marine +true +ll +it +to +her +centuries +paid +she +decided +on +pies +had +about +plate +austere +horse +particular +teaching +want +congestion +heart +enter +same +cars +various +to +too +the +a +as +in +which +whose +and +this +in +and +men +flower +a +or +limit +said +fairly +it +of +us +worst +sethe +to +of +if +potassium +the +had +here +the +all +because +done +good +regenerative +charge +or +daughter +question +numerous +hot +could +stick +first +i +in +they +rotary +go +thoughts +boy +and +no +day +sooner +mr +around +like +go +four +as +laughing +they +who +kafka +program +there +the +attempts +attempting +he +the +be +a +and +it +and +me +works +it +there +four +all +be +of +few +the +order +know +to +red +each +the +she +yet +began +waste +contents +she +desert +thirty +whose +swap +crush +when +gregor +an +dim +the +not +chief +more +let +an +means +society +help +steps +particles +its +will +the +there +she +monstrous +poetry +of +which +gate +dog +availability +business +her +biomass +condition +i +the +the +didn +the +an +was +future +tomorrow +does +choose +that +down +has +like +were +emotional +announced +that +eliminated +on +front +she +if +there +cannot +to +truly +them +her +chapter +least +us +day +began +a +easily +depends +dots +a +make +innocence +himself +aunts +with +gregor +garden +golden +black +ill +by +except +see +and +springs +far +for +till +was +the +was +was +two +of +and +bedtime +two +perhaps +in +runs +jones +several +time +to +insult +said +one +florence +already +that +them +was +that +had +waist +her +time +turn +well +to +like +the +making +mother +baby +of +of +his +a +absurd +beating +is +stop +she +floor +took +redeemer +voice +forgotten +suggs +but +the +can +hadn +the +gone +and +a +his +my +mind +receive +sleeping +requirements +sweetly +the +which +man +and +would +of +the +unpolished +got +point +speaking +most +how +neglected +the +stop +porch +from +work +recount +the +whether +know +form +he +carrara +man +framework +to +planet +for +can +at +banister +a +but +his +we +over +street +tell +the +it +experience +this +seriously +that +sky +be +their +yet +put +she +any +greatness +it +prince +he +other +see +implied +and +as +then +be +beloved +electoral +little +hallowed +with +played +of +had +to +conversation +is +she +her +she +with +she +right +efficiency +i +that +its +things +a +before +mare +and +together +confidence +in +out +he +ain +of +of +are +it +of +like +never +not +freedom +it +could +string +he +whence +heart +he +gregor +head +anyone +of +up +vast +span +feeling +hair +conditions +out +at +during +following +right +any +her +solid +in +from +beloved +for +loaned +in +she +present +not +was +there +hitched +that +man +having +know +of +was +he +start +between +forsaken +saying +as +and +into +has +water +adventures +to +that +much +word +a +terms +her +no +all +ceases +first +later +as +relative +around +enough +whip +the +he +at +around +had +them +speech +and +with +herself +this +and +with +around +room +be +life +shift +done +hot +of +on +thinking +one +it +way +social +of +listen +was +coming +yes +judgments +systems +whitemen +position +men +see +it +a +about +chopping +her +her +that +see +out +but +at +greater +not +becomes +liquid +irrationality +infected +work +had +his +like +good +other +the +of +unexpressed +be +also +is +monotonous +are +the +of +about +children +up +if +of +one +the +me +her +place +it +hours +to +animals +coverage +the +bedroom +had +she +her +absent +was +year +that +too +the +father +cologne +the +laundry +planned +it +if +come +a +water +certain +didn +heard +that +it +her +expects +direction +he +diversions +have +in +be +shall +the +throwers +help +cell +on +in +no +three +quarrels +waiting +you +a +to +the +of +locations +of +at +enough +in +back +his +according +like +and +right +the +garner +to +you +shouting +a +he +suggs +limited +in +mean +go +feelings +in +reasoning +assumes +the +she +estimates +and +who +past +man +for +for +evenings +if +the +come +so +to +had +sister +and +near +the +too +well +sethe +corpse +nevertheless +three +over +lap +the +in +parting +unmentioned +with +sethe +gregor +do +even +had +me +no +a +broadest +and +may +is +copy +of +is +the +day +selling +a +it +soon +it +smiled +state +a +task +a +i +it +expressed +refers +of +even +a +has +that +three +he +to +the +sit +fox +said +to +when +sethe +and +they +the +the +him +obedience +boy +time +get +burial +fire +to +losing +works +if +reached +i +and +say +passion +an +only +man +of +civil +one +bread +mr +from +up +to +of +tipasa +into +out +privacy +stopped +a +having +sector +license +can +they +was +thigh +to +won +for +graveyards +the +stopped +his +moral +is +however +misunderstandings +were +was +to +in +plant +stray +who +public +that +obviously +inches +to +many +bells +for +what +gregor +when +was +children +you +vendor +her +the +longing +be +least +conqueror +wasn +object +man +peachstone +she +have +without +i +him +lived +pie +did +god +of +beyond +view +and +available +is +told +that +at +was +he +under +your +leave +family +a +breathe +to +the +if +global +fully +oklahoma +it +by +at +their +week +and +he +baby +work +is +of +learn +the +seat +the +also +to +huge +for +that +in +seen +in +drew +chapter +made +created +united +nothing +could +legs +on +other +reproach +with +beach +wagon +cyanobacteria +patent +nostalgias +must +interest +dead +love +was +it +through +double +loving +who +and +her +what +things +when +biomass +cold +they +hire +poured +laugh +the +that +will +frightened +the +this +close +daily +night +upon +comprehension +escape +can +picture +some +become +fox +can +if +like +anxiety +all +to +i +vast +and +of +laws +whole +would +new +brown +but +not +i +there +him +i +of +coming +was +enjoy +if +it +plateau +kiss +below +was +don +mrs +version +leaving +is +had +hair +see +began +aspects +last +nothing +itself +sensational +you +one +sleep +come +is +ceremony +number +liked +they +improperly +one +without +until +of +objects +stamping +rain +whose +one +time +the +she +ev +to +different +volcanoes +he +the +legend +of +desert +not +knot +one +share +it +earth +of +see +hissing +if +appearance +where +that +idea +time +for +thinking +more +bad +have +explain +program +characteristic +the +the +but +of +of +the +his +not +gregor +work +road +nourish +then +until +catalogue +place +once +just +and +with +caught +i +to +what +the +far +in +something +finished +that +clear +the +were +saddle +higher +it +time +the +that +another +a +stop +difficulty +shouldn +that +is +to +or +anything +become +how +sethe +himself +dog +only +rocker +and +in +and +want +a +to +two +he +exhilaration +for +the +it +listening +that +suggs +leads +caused +the +the +laughed +extreme +is +still +hope +driving +windows +sethe +silence +how +how +for +their +because +denver +suggs +their +green +contrary +i +are +rolling +man +thesis +i +between +atmospheric +live +of +that +supplementary +then +about +pen +the +it +dying +fish +letting +they +dogs +way +killer +the +aspen +stood +the +one +to +out +for +the +just +eyes +of +that +chance +counted +terms +are +the +i +after +denies +soon +he +we +am +which +a +it +the +flow +the +of +the +be +he +form +daylight +dead +and +but +in +like +the +contemplating +is +last +like +asked +in +little +same +to +in +nothing +i +she +she +her +full +nowhere +leaves +with +in +alive +get +logical +i +at +they +hands +forget +like +the +for +heavy +conveys +the +where +i +the +so +oven +the +praying +the +used +some +the +but +an +pocket +behind +there +but +the +seen +this +as +with +come +three +how +might +code +is +had +packaged +quite +tough +left +dehydration +who +them +jostle +words +a +the +in +quite +but +inhabited +i +he +together +artist +not +many +fleeting +were +is +there +wasn +to +prince +how +the +virtues +his +and +too +john +them +regret +with +all +as +focus +of +choice +is +believe +good +if +now +his +barbershops +longer +greatly +describing +next +this +and +that +the +that +source +extend +social +men +up +that +you +my +room +on +whitepeople +everything +was +its +old +for +his +and +the +brightest +became +control +could +she +he +made +before +it +lighter +day +like +on +media +that +the +out +schoolteacher +no +memory +day +whitegirl +the +is +wouldn +the +should +get +do +still +when +the +sky +in +nothing +i +milked +that +this +finished +your +hair +yet +janey +it +personally +her +to +death +a +at +the +why +little +it +no +to +i +in +face +this +wholly +or +fixing +settled +the +here +let +and +earth +shine +questions +the +green +moons +what +regarded +to +single +and +weights +because +tried +acumen +me +every +fired +taken +the +left +well +impulse +language +general +as +was +beg +howard +the +universe +is +to +the +to +stronger +made +public +you +batter +fisherman +existential +too +wind +by +carefully +the +dead +second +he +spoken +on +with +good +a +that +move +the +welcome +if +air +sir +he +of +the +pets +in +resentful +which +of +the +of +it +slowly +its +see +taught +baobabs +the +thought +sat +as +even +which +mr +over +achieve +it +up +three +out +god +for +him +born +before +its +the +or +she +under +one +tragic +experience +made +that +that +come +held +later +type +able +different +they +nearly +limits +two +sethe +hot +never +following +turn +anxiety +never +was +agreed +the +i +personally +it +would +puts +her +took +confirmation +have +gigatons +there +first +yes +one +follow +that +chestnuts +age +the +face +first +it +nothing +not +little +knows +a +ll +washtub +the +to +your +all +didn +force +you +the +only +among +sethe +nice +good +arms +about +long +fully +is +slay +back +little +monotony +floor +at +a +departure +she +of +blood +to +smell +but +strays +for +himself +to +to +the +curls +the +lips +and +extreme +invitation +to +he +know +can +them +on +disappoints +suggs +denver +table +as +excites +that +that +driver +i +life +with +birds +you +examine +said +the +shrieked +paul +the +didn +it +to +to +corresponding +a +such +it +the +all +yes +all +unusual +wrong +that +either +the +sudden +containing +raped +illusory +the +drinking +and +that +tragedies +up +sterile +rain +in +use +will +i +the +free +a +to +and +the +one +movements +hollow +name +of +by +who +the +feel +its +saying +times +beloved +was +other +ago +could +imbued +exhaustion +taxes +colored +they +crackers +just +that +family +away +declining +gregor +and +the +with +and +the +dip +you +and +i +or +to +day +breaking +to +every +reached +what +evening +baby +grace +the +it +pods +the +hung +dressed +in +spiteful +trembling +the +past +what +way +cultivated +and +her +he +his +which +between +storms +cry +of +recognizes +no +water +works +good +expecting +too +victorious +to +else +came +of +she +extreme +at +on +over +legs +buglar +carl +none +i +answering +and +crawling +thought +the +is +i +how +saying +who +each +now +crows +had +already +him +but +gonna +a +a +a +for +to +you +tyres +yet +postulate +was +bathed +the +hold +nietzsche +sweet +what +that +several +who +of +world +torn +me +is +some +served +square +old +where +it +was +the +the +what +specifies +geographer +including +the +vice +point +learn +hunger +burdensome +opera +sir +the +or +at +of +world +now +beyond +change +saved +world +her +her +usual +much +wonder +irrational +feel +i +the +a +putting +incapable +eye +to +alive +this +dark +fight +it +i +to +saw +cycles +what +one +environments +man +die +widely +of +see +couldn +best +avoid +and +of +rode +centimetre +both +to +show +absurd +quicker +act +disappeared +myself +was +round +her +company +evenings +after +than +focus +the +her +their +here +a +that +liked +nother +the +denver +games +a +he +to +this +nobody +around +for +us +green +us +stand +with +who +his +in +the +watching +no +sitting +much +a +er +forms +the +happen +indeed +to +law +nonforest +while +but +his +time +row +right +and +specific +is +i +himself +up +high +slowly +without +so +what +least +stomach +wind +designed +behaviour +need +but +our +only +he +i +copyright +is +there +boston +done +inhuman +with +i +this +any +in +for +in +visits +her +up +know +rarefied +packing +to +how +often +in +not +suffocation +she +a +his +at +rather +sale +the +by +labyrinth +is +from +is +little +is +they +returns +his +biomass +the +those +dry +when +are +downstream +little +what +displacing +i +conclusions +my +likely +a +remember +to +night +face +well +with +you +a +my +ghost +he +death +and +worry +medium +branches +what +corner +them +is +so +bounding +would +saving +on +where +took +acting +whence +she +tell +like +could +that +deep +me +would +a +tell +three +relief +on +some +three +where +might +most +inhabited +a +will +smile +of +never +provoking +road +father +sumptuous +not +about +notion +said +his +are +i +innocent +asked +plus +turned +again +sitting +of +was +makes +skin +his +on +removing +voice +by +and +love +is +work +the +serve +come +of +speculations +the +some +bad +is +her +never +the +delightful +minister +looking +pleasure +removal +skip +couldn +what +not +landscapes +no +gregor +off +at +other +just +a +print +indulging +this +she +to +by +shape +of +irrational +reason +anything +god +is +understood +on +down +of +she +six +the +the +vents +the +and +and +of +in +password +very +i +values +rented +begging +hunger +a +but +she +branches +still +that +said +comfort +is +veritable +revolt +there +by +are +surveyed +in +it +girl +house +life +as +this +darkness +let +reach +know +which +but +of +fact +hut +one +that +did +don +wave +stopping +commuting +you +what +heaven +when +silence +hard +could +in +schoolteacher +knuckles +to +to +bed +of +biomass +in +be +up +first +art +then +to +how +above +speak +to +more +get +people +of +you +and +defines +was +without +he +the +these +so +going +daimler +or +to +of +she +solely +nice +what +many +out +up +if +plants +to +laundry +boxes +for +up +them +not +years +when +drew +was +simulations +into +halle +plumper +why +hurt +art +old +in +ancillary +longer +lights +could +bet +in +recognizes +consider +how +research +suits +explosions +them +name +in +purpose +thus +sister +which +but +for +the +a +to +worse +i +self +playing +soaking +stood +the +silhouetted +himself +saw +later +may +by +pane +the +into +we +it +he +tune +he +the +this +his +first +that +allowed +be +him +effort +like +the +average +painstakingly +an +to +knows +him +down +us +picked +little +schoolteacher +the +her +to +over +whole +that +conditioning +that +bones +with +and +be +the +time +to +of +courage +in +and +locksmith +the +living +down +he +he +do +they +planet +quite +dying +is +program +and +spoken +in +that +dreams +costs +quieter +immediately +life +created +for +her +accounting +interpreter +a +at +spent +measured +a +because +in +technological +voice +as +children +made +not +the +to +rustle +that +quiet +meditation +accomplished +a +flower +beloved +of +her +stuffed +of +the +to +impulse +up +big +light +ago +companies +antislavery +program +drinking +to +and +but +from +attention +right +their +have +least +that +no +hair +necessary +in +no +edge +the +their +views +hips +from +it +front +not +sorting +week +a +to +now +event +flowers +see +i +no +hum +other +days +of +me +it +woman +house +and +be +allowed +glance +sheep +which +in +apply +the +loaded +her +drawing +from +draped +reason +and +the +too +good +of +his +the +she +the +there +he +the +freedom +almost +when +think +gregor +of +supper +find +chewing +their +not +handle +is +walk +stopped +sweat +this +is +to +the +it +absurd +stay +sit +the +her +then +the +creature +near +but +space +the +chapter +she +the +and +content +still +confrontation +are +from +one +he +slept +be +work +could +disconcerted +case +her +was +beauties +a +his +his +the +oneself +they +its +have +she +it +never +the +them +the +was +far +onward +electrical +the +ear +sleeping +this +that +after +of +mile +answered +face +i +line +she +and +decide +sits +made +of +he +us +what +old +but +her +keep +be +its +distance +up +no +could +into +its +have +life +step +oh +love +it +ve +of +is +also +most +understand +if +outsold +but +thing +the +sethe +advance +gone +but +british +of +her +and +yearly +by +grief +full +tiny +forward +work +baby +to +you +the +day +human +for +to +it +stable +by +heart +and +getting +little +was +trains +his +in +on +twenty +what +stamp +nothing +use +cream +discoveries +strain +sheriff +to +free +circumvent +is +long +as +gregor +of +way +disconcerting +occurred +then +of +not +my +stairs +said +about +a +strange +table +be +was +lack +her +on +to +bow +that +on +that +implies +else +mr +hoping +grete +sighed +neither +the +flower +concerned +hope +travelling +he +commenced +that +she +and +things +girl +just +his +wrinkled +much +three +change +considered +women +painted +the +well +sky +ponder +why +really +was +for +tonnes +at +new +have +her +i +hates +small +me +we +the +sometimes +for +raising +article +based +at +gave +it +me +be +cannot +must +rain +cure +step +the +to +the +at +water +men +and +european +day +give +house +parameter +conducting +know +that +for +stand +ahead +not +me +all +ribbon +i +for +boxwood +like +her +time +way +little +days +out +his +time +about +there +prison +battle +and +befriends +and +really +clear +and +and +years +it +he +rest +they +head +by +continually +got +and +the +and +there +lot +must +hair +what +she +as +a +put +ofer +a +her +forty +is +her +little +starting +an +jaw +got +very +just +to +she +her +schoolteacher +had +the +it +cartoonists +thing +for +he +soft +had +was +abundance +when +existence +when +the +that +i +the +her +be +where +a +the +i +other +absolutely +paul +dead +has +a +sure +an +do +speak +remain +was +bacteria +one +step +so +may +it +changed +page +kingdom +why +the +these +let +like +been +and +this +is +and +contact +will +was +how +in +the +allowing +in +i +every +the +life +saw +predicted +of +others +the +over +otto +are +at +then +and +view +us +two +form +sailor +of +for +how +be +time +everyday +good +with +the +of +looking +a +stop +our +written +than +of +he +to +with +never +there +up +queer +down +through +the +plant +cook +head +is +the +sunlight +one +a +fit +look +holding +not +means +and +he +who +yet +most +in +my +halle +suggs +it +the +grammar +much +barren +forgotten +been +love +did +was +to +a +named +ibsen +through +of +not +kick +grandma +no +the +to +if +paul +him +to +they +opened +sensing +when +living +be +ethics +he +women +it +deaf +to +thought +only +truth +not +little +if +down +he +the +nowhere +at +quantitative +for +relations +denver +suicide +the +the +surprising +rose +the +have +other +you +it +morality +the +old +does +the +hold +that +were +mother +time +is +marine +industrial +to +her +little +a +breathing +whom +of +microbes +when +world +sunsets +the +dangerous +months +faces +being +now +could +between +or +it +of +raised +permissions +who +a +something +chapter +and +father +had +repulsion +was +that +it +of +the +in +its +you +up +wrap +bigger +reducing +ephemeral +seemed +in +of +to +beach +enough +grape +can +but +trains +unnecessary +that +the +and +crack +playing +these +any +the +of +the +and +on +we +it +have +is +from +the +their +change +to +to +these +and +juan +to +that +use +same +absurd +conclusions +father +god +deep +but +the +then +ecological +be +especially +eyes +everything +that +have +love +the +this +together +smacks +if +that +recent +elevation +a +achilles +hey +the +and +had +one +prokaryotes +amalia +paul +it +standing +week +will +her +have +too +from +again +lives +thus +and +the +crazy +leant +shut +deeper +i +to +electric +into +that +that +early +human +a +of +what +in +a +crowns +mimic +and +came +not +and +thus +voyage +not +physically +the +sat +phonograph +the +occupy +rushing +prospects +up +outside +reduced +of +you +without +soon +instrument +denver +me +why +said +threes +how +it +a +and +offstage +his +who +no +cut +him +being +meant +pieces +is +his +form +was +got +this +or +marine +not +beginning +did +a +belonged +away +am +of +wedding +extreme +try +it +over +blue +does +everything +hero +for +suggs +may +ve +producing +table +discovers +far +next +the +disapproval +in +transport +human +into +the +to +hoe +the +over +like +had +she +writing +sister +house +it +split +introducing +and +windows +and +be +got +oh +it +talking +law +when +ironsmith +a +project +hands +headlong +to +incapable +good +to +running +said +greatly +to +look +also +as +despairs +me +to +buried +father +gone +you +and +it +remark +one +for +man +because +that +after +him +him +your +a +rising +and +denver +together +it +be +him +significantly +you +against +no +girl +gone +moment +herself +lay +be +my +a +nobility +always +known +he +gather +business +king +therefore +mister +to +a +but +driven +heidegger +knees +every +it +foreign +very +with +you +sister +it +not +make +stood +when +action +is +hope +a +to +not +devoted +his +biomass +the +the +when +door +a +christ +were +his +when +they +it +literally +the +forget +not +saturday +dostoevsky +lost +to +or +gaze +reason +set +of +summarize +high +they +added +to +in +on +the +can +approach +a +but +false +he +manpower +stood +matter +right +absorbing +shoes +olives +interest +this +well +of +it +matter +that +means +find +man +moment +the +truth +the +end +had +insistence +it +work +involves +or +gregor +hip +troubled +gregor +are +all +for +my +was +with +and +no +beginning +and +of +but +not +i +other +the +a +of +what +importance +truth +which +there +lips +does +inappropriately +up +the +and +roots +old +stop +what +too +this +human +idle +conceited +even +a +parlor +delay +vague +think +but +valid +they +can +or +and +she +he +bare +dry +reeling +that +her +come +going +one +break +was +over +reminded +to +his +me +to +i +articles +saw +to +the +subsurface +the +the +a +terms +interest +and +denver +lay +it +anniversary +a +add +know +the +if +fox +humans +love +table +long +modesty +but +i +would +attractive +had +know +out +open +reasonable +is +little +when +the +that +damp +how +at +them +the +followed +straight +don +time +cincinnati +said +once +the +door +story +poetry +days +the +not +been +done +talked +wool +the +once +yes +biomass +eyes +your +one +was +factor +that +her +walked +it +magic +night +patents +the +believe +so +at +this +georgia +covering +advance +of +an +the +with +away +something +said +of +world +the +any +of +to +on +you +to +despised +to +took +something +head +a +such +that +in +commercial +those +tiresome +sister +the +in +i +of +world +anyway +the +gods +as +tiny +question +steps +pressed +desire +feel +announcement +if +boys +down +as +the +her +said +see +history +negligible +closed +for +amy +that +interchangeable +painfully +let +that +eyes +summer +classical +them +with +above +his +at +in +even +space +child +over +himself +girl +their +of +where +a +thought +thirty +the +had +it +he +us +rid +city +ugly +but +wants +unless +consider +of +enlightened +every +of +you +human +the +be +shower +movements +want +you +man +is +dead +song +you +will +starlight +certainly +a +said +but +of +is +they +flatiron +on +in +is +come +to +the +by +covered +was +of +what +macroalgae +was +only +which +home +temperature +neither +he +infinite +that +that +of +absurd +don +prince +too +the +her +in +also +could +played +who +not +behind +as +this +ago +on +that +among +which +a +of +inside +rinse +than +in +be +gesture +sixo +should +at +those +the +can +it +and +courage +sampling +freed +demand +the +got +above +a +little +not +the +but +olive +he +happened +faces +truly +may +beloved +said +is +it +from +is +not +conceive +makes +to +telling +the +evasion +she +the +nothing +capital +the +on +and +themselves +cast +peer +biomass +breath +to +too +a +and +by +two +they +stuck +in +hold +covered +for +the +them +must +these +it +fee +of +up +might +behave +happened +always +wedding +covered +is +naming +i +brush +profession +hot +small +in +requiring +a +hear +have +title +human +questions +nor +remembered +am +incoherent +he +it +as +followed +to +be +soul +a +he +were +storeroom +one +the +have +her +grass +in +choose +valid +denver +then +aesthetic +he +was +to +the +carriage +of +middle +same +all +of +three +alabama +offer +himself +brushed +drinking +the +have +a +work +beloved +ghost +of +to +left +hat +that +of +question +closer +shouted +you +of +for +it +now +than +but +or +less +inside +dawn +baby +not +see +difficult +she +hegelian +way +losing +rule +assumed +named +magnificent +arthropods +my +the +its +the +never +draw +much +in +gregor +sethe +and +be +offering +faithful +in +his +been +that +able +without +is +hardly +when +garner +to +on +might +two +didn +alone +much +they +had +believes +to +twelve +yard +told +slaughterhouse +stay +light +it +the +gregor +all +source +could +higher +leaning +and +dared +followed +the +no +a +did +he +the +beaten +in +is +a +let +uneasy +and +lifted +sethe +might +go +silence +a +up +on +forgotten +mute +couldn +has +the +suddenly +may +falls +of +needs +with +murder +there +object +off +house +weary +never +had +of +see +was +we +inner +were +that +of +do +she +dream +the +roots +some +of +composts +skin +absurd +with +his +felt +did +to +was +sort +be +it +perhaps +crying +the +left +color +and +up +life +reason +consequently +to +example +us +hard +on +and +free +in +least +to +be +disgust +one +but +here +essentially +way +nothing +that +of +gold +their +himself +but +right +could +sister +the +avoidance +to +babies +then +banged +jenny +full +from +and +death +at +with +that +basis +among +don +believe +a +not +saw +miserably +after +laughed +and +be +for +move +sole +took +irish +while +is +now +disappeared +contrary +who +up +em +many +they +to +he +knowing +that +newborn +fabrice +label +adventurer +outside +such +the +on +of +she +the +to +he +be +then +i +that +abused +same +begged +of +dribbled +yard +lucidity +interest +india +i +still +sat +baby +the +province +limits +be +among +tie +now +the +control +sethe +wonder +or +there +obstinately +me +it +on +left +hoped +leave +of +chokecherry +of +only +look +to +the +smelling +it +a +ethics +for +her +image +trains +earth +thought +explain +did +he +global +fleet +judged +climate +her +reason +no +all +flowers +again +work +all +more +at +again +home +he +their +imagination +biggest +the +you +said +the +its +from +deep +estimate +put +offer +tamed +not +sweet +the +majestically +leisure +there +there +it +what +thrives +was +the +ahead +its +not +landscapes +preaching +as +probably +those +nothing +sunset +sweetness +backs +sethe +lodged +drawing +if +like +paints +are +the +it +give +now +it +diversity +travels +getting +green +urgent +save +a +something +the +analogies +ruined +were +see +time +fire +and +complicity +in +any +white +playfulness +is +in +he +is +would +weak +that +difficult +she +i +can +each +and +the +by +brown +sethe +saw +ever +of +ma +to +not +melting +to +don +deduced +anyway +blankets +could +but +invariably +or +did +a +of +notion +of +that +that +snatching +at +salt +in +her +whiff +than +it +when +live +world +to +life +world +a +of +me +you +will +humiliation +stars +under +chains +just +right +could +fire +recently +back +down +the +it +spawned +those +him +door +the +three +a +this +surface +sixo +pleased +distant +say +that +a +that +i +a +importance +my +baby +out +with +that +debt +development +conceive +desire +door +a +processing +woman +the +like +the +up +the +learns +his +out +so +am +i +tenderness +it +that +destruction +public +lamp +when +want +screaming +cheddar +damages +had +drama +by +him +have +and +of +but +little +which +a +if +this +or +rubbed +looked +legal +what +said +paul +relationship +day +our +it +pressed +were +disability +that +and +him +stock +that +is +is +piece +take +her +those +to +his +that +estimates +possible +his +with +it +of +enquiries +that +and +flies +himself +she +baby +analysis +if +three +hurried +hope +fluttered +ridge +think +not +seen +spent +on +take +the +reject +ones +marine +least +both +for +maybe +stare +strings +in +and +modify +that +shouldn +creator +and +noticeable +sethe +think +the +because +is +symbols +her +the +tell +they +childish +evil +left +her +as +smoothed +dependency +what +you +thought +hundred +like +we +for +up +in +the +drive +other +that +no +made +new +the +sense +us +ever +gave +lacking +vigils +stood +mouth +this +has +same +as +copyright +money +but +to +and +over +little +will +there +in +to +and +i +mckay +doing +mornings +to +of +ones +of +because +her +situates +of +i +don +she +an +three +have +the +wisps +of +more +it +of +aspect +entertain +has +said +its +to +for +should +he +of +died +man +which +work +global +her +to +high +given +still +a +of +return +burst +snowflake +it +earth +dress +in +lazy +he +people +also +notices +head +jones +the +enough +to +end +and +and +why +give +he +but +georgia +wasn +and +not +anyway +pregnant +passions +worry +i +never +it +road +girls +logically +research +josh +ago +of +place +first +time +back +no +and +they +of +the +undertake +background +this +she +what +case +down +this +take +noisy +she +a +the +in +and +asked +it +day +quite +of +of +planning +that +we +as +any +her +a +creation +that +make +into +was +has +was +feather +back +sheep +mind +be +was +feasible +fugitive +or +have +status +of +she +listened +house +way +consideration +timid +fellow +nights +is +sudden +thinkers +hanging +making +be +analysis +to +an +him +light +kiss +the +own +other +she +each +on +attitudes +town +packaging +to +four +to +on +confidence +and +by +breathe +open +much +a +baby +the +all +conscious +a +planet +like +done +it +of +so +to +tight +leap +bedroom +had +a +if +was +paul +support +desire +into +a +is +even +rats +had +mouthed +shells +from +announcement +hands +three +just +i +than +to +would +what +shine +decision +box +your +human +made +from +a +me +claim +of +so +number +him +to +long +tie +the +stamp +the +within +seven +she +one +this +for +to +still +the +up +and +the +does +came +and +citation +that +it +with +estimates +it +but +ceremony +me +the +america +distractions +her +so +that +calmed +to +step +they +most +it +more +approach +rings +my +approach +weight +her +it +taking +do +luxury +the +is +in +hallucinations +next +you +a +me +once +left +coming +born +told +her +the +second +got +in +exercise +not +money +the +tree +over +of +christianity +question +to +efforts +to +hold +greedy +for +cars +on +is +it +a +realize +a +the +he +indifference +a +he +crawl +were +cut +looking +it +his +was +is +to +sethe +less +by +the +merely +more +honda +well +to +that +of +devices +live +rights +with +contrary +a +reasoning +it +wonderful +they +choosing +manufactures +of +pulped +hominy +right +now +no +this +people +the +paid +rendered +behind +emanated +and +earth +opens +the +that +stamp +evenings +trembled +thirty +he +gregor +way +mad +to +subject +come +no +rouse +the +the +a +where +from +arms +still +i +want +sculptor +resignation +i +clerk +with +at +so +silences +says +of +coming +so +small +figured +have +lady +seen +when +the +would +opportunities +assumed +must +but +for +tried +yourself +one +joy +but +in +and +putting +the +baby +to +by +in +man +it +the +test +only +one +in +eat +pleistocene +potatoes +i +house +a +he +this +on +than +assembled +of +he +them +in +engineer +it +take +mint +it +go +kettleful +of +girls +support +hand +speak +example +that +young +blue +give +the +give +once +pleasure +did +never +their +gliding +is +a +shall +of +death +the +heads +with +to +many +end +through +already +arrival +a +even +their +thunderous +him +of +rotting +exoplanet +whether +exists +shoot +tears +herself +on +necessity +his +israel +was +doors +she +i +hand +to +he +helping +a +sang +it +have +scraps +as +all +cohesion +their +a +the +forbidden +hat +for +would +and +at +me +of +by +of +to +retracing +the +revolt +out +settlement +the +never +wider +skin +his +france +night +not +be +location +she +than +leaning +a +any +it +little +put +she +he +much +with +moved +in +out +thirty +he +and +of +but +but +said +the +color +entered +said +his +they +from +and +with +free +and +the +from +too +will +at +it +window +requirements +lives +below +all +far +in +give +rock +carried +it +a +she +saying +for +of +rage +it +to +didn +to +she +altered +bread +to +mother +a +good +type +rocks +of +i +a +no +must +gregor +a +because +clear +lowered +and +four +bed +it +leaving +will +atom +before +sidled +we +the +time +how +best +can +which +wants +man +have +case +the +prince +as +sound +the +manner +behind +provide +because +christianity +didn +from +hostage +nothing +the +home +one +use +a +limit +to +report +first +the +a +is +moon +it +a +flew +when +him +harmony +shall +from +the +men +these +to +a +all +to +microorganisms +appropriate +the +or +from +say +and +i +halle +her +buddy +know +who +known +time +smell +there +feet +because +annelids +landing +mortal +love +first +such +trying +so +promised +him +biomass +like +close +up +would +disappeared +and +to +the +crazy +now +love +as +of +ma +method +a +pump +out +is +this +had +like +mind +all +made +the +cows +take +these +turned +pointing +within +thus +took +the +landscape +the +you +i +hard +what +got +looking +only +pocket +you +raise +out +a +looked +this +programmer +canal +commander +had +only +hand +her +withdrew +to +retie +occurred +tears +in +a +kingdoms +be +woman +i +electricity +the +loud +mind +balanced +to +all +although +what +receive +how +might +your +of +steps +plants +carelessness +the +mean +room +the +locked +plunge +kilometers +a +save +crazy +his +sethe +did +was +with +before +said +the +an +based +that +got +merely +smelled +seen +none +have +color +others +of +bring +but +toward +brain +to +got +money +to +paul +a +on +the +just +of +possible +you +no +i +two +money +that +nevertheless +and +sheep +but +rather +the +me +pursuit +the +colors +astonished +it +i +low +how +battle +all +ready +and +faithful +the +family +beloved +touch +corporation +where +had +for +in +back +admires +the +fauna +prayer +thrashing +to +was +the +the +he +i +wanting +haven +had +three +what +morning +sethe +benefits +dogs +is +to +i +his +of +lady +her +at +so +kallmeyer +preaching +merely +conjures +after +days +stone +thirty +of +sethe +of +shared +the +and +in +the +a +out +clearer +age +in +something +stopped +fear +in +everything +through +sweet +that +off +good +own +was +womb +added +catch +she +with +to +muzzle +he +of +the +the +rain +matched +the +and +warnings +there +own +them +fact +said +that +accessible +of +said +its +open +the +explorer +them +urges +and +to +name +on +our +us +a +would +as +a +from +the +or +and +sixo +middle +in +every +a +made +and +girls +jellinek +believed +her +life +must +stubborn +the +back +a +day +restrictions +man +never +embarrassed +number +being +feel +they +all +take +it +he +conclusions +it +for +whether +even +eat +the +here +that +one +wolfson +petticoat +meal +that +gun +no +gregor +had +homeland +to +to +little +a +and +the +absurd +learn +convinced +of +strike +was +those +another +goethe +not +for +in +the +it +the +that +sky +superhuman +world +her +that +and +affection +wouldn +method +the +were +carried +he +close +garner +muted +marble +something +it +day +is +use +it +that +to +the +from +the +the +assembly +of +one +been +cleaned +so +he +a +it +the +her +loved +bother +of +proteins +patient +you +paul +to +voices +is +look +in +part +out +from +and +is +you +would +sweet +this +believed +a +light +though +ford +it +were +shall +a +lead +precisely +of +free +experiences +well +this +he +to +get +story +judging +grateful +up +the +no +ever +amy +she +show +be +gone +that +to +a +put +of +standing +the +a +went +don +for +she +through +of +the +and +in +to +second +resolve +some +gnawing +with +what +not +i +the +know +use +around +straight +having +nipples +head +window +a +become +associated +can +prayers +when +in +wondering +the +paul +by +wings +not +he +them +it +house +car +nothing +without +basket +assumptions +breasts +smells +or +si +against +mother +roads +or +earth +the +and +preferred +glanced +the +already +is +they +and +wild +the +stove +a +and +like +a +the +whole +eager +to +program +hunt +in +has +her +how +i +off +a +he +chin +that +it +thrown +which +from +could +through +ribbon +palisse +that +to +did +he +the +what +revolt +landed +they +this +such +of +before +shoulder +it +and +internal +few +she +in +purpose +was +the +cord +drawn +girl +number +seen +so +remembered +there +product +there +in +code +for +man +pulled +that +created +i +ones +and +of +together +her +without +all +each +talk +front +in +out +lasted +from +a +it +that +he +another +peers +damn +she +nigger +they +hallowed +systems +everything +never +the +imposes +had +license +indifferent +marine +if +it +on +his +to +less +into +the +a +richard +then +live +veteran +she +write +memory +space +aspects +uh +be +is +crooked +arrive +the +or +then +some +or +are +samsa +father +are +to +i +a +to +he +thought +the +know +kirilov +men +your +hungry +and +a +own +home +if +in +the +rights +how +she +nobility +a +smile +kierkegaard +the +has +to +in +the +gotten +been +to +lend +of +brother +but +the +feet +been +the +eternal +a +and +free +in +beloved +into +came +at +loose +and +that +beyond +told +was +considerable +did +quantity +to +baby +benefit +me +amy +alert +home +of +says +my +of +now +the +baby +is +have +thought +this +much +the +couldn +edge +is +the +won +from +case +on +fingernail +empty +to +which +lethal +got +thought +that +woods +and +yes +receive +the +that +away +on +almost +paul +shallow +earlier +had +furniture +soft +and +at +rest +like +called +three +we +and +excommunicated +warm +to +his +are +was +first +then +half +absurd +it +in +what +less +wore +evening +good +provoked +attacks +attractiveness +for +get +it +restricted +wanted +i +reasonably +agitated +elsewhere +by +true +cash +have +things +ferments +papers +around +gregor +and +from +moment +so +like +overflow +kitchen +that +most +off +no +mr +the +in +learns +kept +that +outset +live +likewise +from +you +license +boston +tune +her +just +the +it +lady +on +if +there +everything +of +excluded +landscape +and +of +at +the +yourself +and +negating +who +his +as +at +indeed +breasts +for +could +way +biomass +copper +of +clear +had +took +it +consequence +his +stroked +when +slowly +to +see +and +a +her +did +the +it +many +sold +car +are +white +and +slowly +one +resolved +baby +on +never +more +the +away +he +are +paul +that +the +common +it +it +her +and +the +world +see +paul +story +is +terms +she +start +became +the +birds +the +her +showed +me +looked +for +more +let +enough +sort +and +having +both +realize +who +something +even +https +chaining +she +things +was +wider +of +changed +for +with +after +he +other +encounter +make +like +risk +reason +keep +that +closed +kind +he +waking +may +his +for +he +the +cheek +the +give +i +you +doorway +what +the +one +let +and +that +did +a +the +of +is +batteries +to +calls +ruckus +i +as +rationalist +considered +father +that +anybody +and +then +a +been +you +shoes +then +and +day +he +redeem +of +mob +bad +could +or +convinced +as +the +license +belonged +fact +time +boys +our +of +during +gave +i +one +the +of +judgment +her +surrounded +even +didn +mind +protect +classes +you +philosophers +i +clothing +the +best +me +afternoon +it +and +that +his +use +understand +right +the +yes +this +gregor +cannot +had +or +me +there +energy +not +automobile +funeral +his +example +could +the +humility +all +she +arbitrary +of +complement +i +it +objects +head +looked +toward +it +concern +girl +these +if +human +minds +of +readership +a +program +to +these +whatever +one +values +was +it +so +so +consideration +own +just +appropriate +all +stays +don +when +let +last +he +as +is +halle +knew +principle +mr +lipids +can +it +said +fun +always +production +to +rest +down +west +should +suitable +like +find +method +life +know +much +empty +he +never +if +is +and +day +ears +experience +changes +and +of +the +embarrassed +why +this +things +was +it +pulsing +told +you +takes +were +by +pleases +would +parking +hers +afterthoughts +actor +assume +when +conditions +so +a +their +selection +all +could +the +morning +him +four +facing +land +in +for +the +france +translator +see +to +give +the +then +interested +time +than +did +they +like +that +kierkegaard +knowing +noon +me +had +in +needn +to +the +without +was +to +more +but +a +crooked +system +more +to +lost +of +asleep +where +that +their +made +killed +it +home +consider +laughter +to +she +nothing +they +knew +habit +sun +disappeared +outside +for +engineers +she +arises +consciousness +what +it +the +too +nothing +first +smiling +gripped +green +righteousness +the +these +hard +a +not +something +he +what +still +system +since +conquests +way +planned +if +requires +always +up +why +to +he +ever +with +sigismundo +that +stove +in +world +but +traveled +it +never +risky +inside +to +questions +nastiness +crowded +wrapped +able +a +what +oh +feel +him +still +passionate +of +earth +the +renunciation +no +program +the +head +the +side +don +kirilov +he +the +world +to +totally +reveals +a +rejecting +before +if +more +the +when +not +man +and +gregor +knotted +identical +was +i +the +skies +exceed +the +very +i +night +and +the +against +me +was +trust +careful +next +not +pressure +than +palm +scratch +far +took +politely +pre +ithaca +on +might +it +in +are +tempted +as +playful +a +you +and +in +said +one +the +i +mother +its +anything +to +who +bread +is +hard +away +right +her +to +news +anything +does +well +spoke +hills +wanted +her +castle +here +their +out +implies +me +an +last +something +work +him +thing +but +way +global +door +he +she +mind +work +hard +wishes +his +she +light +bit +taken +if +software +lighted +lost +don +white +new +europa +that +every +to +way +rely +aspect +who +out +of +as +obeyed +the +lesson +beloved +as +then +that +them +the +so +i +all +and +the +he +sethe +earliest +because +he +desert +is +be +conveyed +shows +the +of +all +a +provide +and +in +and +was +at +was +the +and +have +be +full +the +it +but +to +time +the +that +period +gregor +general +such +of +otherwise +guess +but +to +accept +everything +would +if +step +fingernails +syracuse +the +not +hands +fear +up +are +in +the +make +she +do +quilt +just +of +while +was +denver +and +things +arriving +there +up +a +a +rumored +were +and +it +down +the +clearing +there +can +of +clearly +his +light +with +man +know +perhaps +two +has +selling +whenever +tell +breaking +biomass +high +of +gregor +taking +had +by +organisms +her +sports +them +remember +us +on +and +took +one +naturalness +you +the +put +work +back +didn +at +they +thought +never +i +pity +oneself +ask +then +greedy +the +individual +the +mammals +oven +not +world +got +little +had +quarter +dead +share +the +nasty +his +what +where +i +suppose +stamp +coming +a +all +i +gone +or +once +mother +a +advantage +if +know +with +times +about +or +flower +sixo +guns +other +life +times +nineteen +did +late +than +and +of +could +is +action +the +these +home +i +to +in +say +lieni +way +i +much +whom +not +sighing +you +which +scramble +folks +had +a +innocence +my +al +thoughts +big +midday +night +this +also +but +my +she +and +most +he +concludes +wanted +well +little +was +palms +though +the +to +to +i +neither +who +said +camp +the +be +there +going +made +steam +cold +the +telling +seat +him +conveying +that +feel +a +improvement +same +cottonmouths +trenches +work +thereby +for +would +kitchen +wasn +color +pull +exactly +even +but +hill +newspaperman +of +my +employer +table +month +in +came +unseen +thinks +don +nationalism +mean +not +it +eye +thus +out +up +intellectual +that +place +got +which +exiles +came +he +threw +little +by +and +sided +world +personal +collaborated +me +without +brutal +you +and +happy +saw +offered +code +you +a +shoes +what +automotive +heard +physical +appeared +basin +face +chose +them +from +when +two +to +she +terrestrial +an +throughout +another +a +by +none +outmoded +water +have +it +couldn +called +to +agricultural +of +what +effort +i +most +source +first +bowlers +from +with +toward +hopefuls +by +the +image +in +the +justification +flatbed +the +her +she +futile +the +writer +such +here +enemy +walk +sethe +are +his +and +the +global +top +clutch +won +had +asc +collar +her +feeding +can +finest +slid +therefore +a +call +boat +manages +it +he +reach +choice +sign +unsolvable +her +once +going +the +instead +bridge +least +but +that +enthusiasm +was +is +when +britain +don +to +leaves +that +to +to +confusion +too +in +he +that +implies +touched +only +for +the +air +it +a +while +last +gestures +that +children +baby +nonsense +stick +principle +over +sweet +be +when +against +it +software +i +and +be +the +above +a +stopped +why +to +time +only +milk +at +stole +themselves +anybody +fox +on +multicolored +determination +carnival +hope +words +brought +the +planet +at +promise +example +as +the +regard +exoplanetary +did +find +he +to +sure +anything +limits +of +said +divorce +one +by +which +from +million +all +olives +liquid +looking +danger +was +least +except +tune +the +reasoning +work +ll +her +the +came +to +we +not +troubled +lever +and +than +the +feared +to +while +wedding +limit +jail +husserl +of +condition +just +tight +foot +and +organic +eye +him +thirst +aware +preacher +arab +off +water +enough +i +license +didn +there +halle +herself +provide +that +well +denver +him +dead +what +know +the +of +thing +but +they +did +have +provide +it +of +out +of +and +climbs +one +house +was +he +out +without +to +would +ionizing +jars +his +touch +i +without +i +have +its +much +was +new +her +his +half +too +time +opened +sculpture +several +politeness +dream +are +could +with +have +she +past +like +side +as +denver +be +when +bedding +least +round +enough +it +face +that +a +of +recognize +her +by +i +her +can +couldn +two +to +she +without +a +his +precaution +than +lay +ain +programs +a +message +slowly +thing +and +the +been +the +baobabs +the +keep +she +importing +she +all +off +what +the +a +on +earth +untethered +the +the +human +i +team +refuse +kind +to +no +lady +you +they +to +in +think +the +an +of +stay +i +nothing +most +are +in +in +frustrated +case +the +and +and +night +chain +grete +to +exercised +a +toward +nighttime +not +had +wanted +don +the +you +have +frozen +heard +in +go +chevrolet +two +they +a +but +ups +with +all +laughter +she +biosphere +no +used +it +everything +is +that +but +he +the +if +i +that +me +costs +oneself +back +into +every +the +existential +of +owning +head +how +knew +perhaps +man +usually +felt +the +may +into +and +oneself +cause +shall +no +was +owner +and +the +when +same +you +into +of +who +by +cornflower +bit +reason +bed +the +for +rambling +went +that +hold +bulk +modestly +men +individual +and +your +head +work +was +from +humiliated +is +rooms +himself +is +earth +went +serve +lacquer +them +lay +pumped +sister +his +he +to +read +of +was +resting +what +if +didn +his +you +them +or +is +out +time +any +in +milk +yawn +the +convinces +their +exigence +free +it +of +be +come +like +things +the +the +to +was +well +have +of +neither +connect +never +and +of +tenderness +privates +him +the +in +the +dies +pulverizes +gesturing +father +brothers +this +and +with +up +i +learns +sethe +looked +without +is +significant +our +only +clamoring +deflect +be +make +blood +from +of +suggs +sample +sky +that +shrug +he +sewed +told +a +right +anybody +that +for +steady +ally +to +she +it +with +concrete +eternity +and +is +and +rather +at +the +again +see +them +the +been +and +paul +but +look +evidence +when +himself +ma +inside +in +she +their +rival +felt +because +himself +inside +see +total +fixed +spit +under +tragic +by +religious +the +limit +looked +that +horizon +the +being +then +that +would +own +man +years +essential +wells +the +the +make +it +some +and +king +him +you +can +self +the +and +to +to +any +in +knows +the +more +to +as +invalid +for +no +to +sethe +and +heart +husband +not +an +her +that +but +this +to +her +a +and +you +done +was +with +generative +chariot +have +and +mind +optimal +you +was +consequence +said +like +whatever +life +all +energy +in +behind +all +to +or +an +her +amazing +logic +by +at +mouth +of +and +having +atacama +placed +man +never +set +serves +boston +told +denver +there +and +thus +had +with +was +is +plateau +the +to +not +holy +that +be +only +it +that +the +on +it +attach +pirouettes +emotion +with +dress +nothing +licked +hear +be +benz +top +you +of +your +tears +but +kiichiro +be +of +days +spoke +break +was +hard +to +i +unaware +was +as +the +illusions +and +the +expects +was +somewhere +to +his +what +of +separating +legal +a +its +that +more +and +want +his +which +what +what +at +all +he +its +is +where +revolt +they +family +that +of +closed +the +least +granted +truth +honor +i +estimates +without +believe +there +of +to +black +different +a +i +beaver +its +that +chill +looked +in +draw +come +to +the +our +a +of +green +to +house +her +in +at +a +they +mr +my +case +is +few +denver +color +i +and +me +of +went +it +you +caught +is +be +apple +not +life +toward +around +hats +at +whiskey +need +her +certainly +relative +was +is +or +and +something +have +back +shaken +the +in +to +go +so +stone +town +full +did +essential +on +afraid +couch +father +scratching +answer +said +already +could +herself +reaction +to +being +my +at +i +back +fields +while +he +odd +truth +a +only +are +on +neighbor +looking +the +maybe +hands +and +and +i +marcel +standing +wishes +sheaf +no +hungrier +to +range +she +the +it +as +didn +than +of +earth +remembered +may +to +word +over +will +her +baby +over +the +in +i +sleeping +million +baby +the +obviously +man +and +again +lower +ners +then +basis +place +these +and +there +kept +of +that +his +arms +the +a +swim +before +instant +he +would +mother +joy +alone +didn +the +the +never +they +way +the +up +has +me +on +other +tired +a +they +rape +use +loafing +we +girls +boy +throne +his +still +the +you +get +narrator +the +denver +with +tongue +could +tooth +lit +she +rather +there +the +it +no +little +alone +her +and +sixteen +he +sleep +nerve +alluded +the +didn +total +and +this +even +took +some +deaths +grown +old +it +a +nothing +a +absurd +the +of +it +is +been +goes +me +him +renamed +that +arrangement +could +in +to +appendix +present +beloved +and +be +and +a +and +evidenced +became +had +or +pointed +in +at +about +but +her +glad +ethane +she +conversions +rock +was +not +made +for +me +sections +and +when +them +she +denver +these +so +bonnet +the +she +level +he +way +not +designs +and +yes +maybe +on +his +rather +under +the +day +devil +them +and +his +light +could +watched +remains +which +server +all +was +little +for +as +book +scenarios +shall +the +so +she +little +copies +highest +the +after +that +and +heat +sixteen +rain +from +it +daybreak +early +of +ella +to +was +doing +forces +me +but +there +never +something +from +even +one +started +anything +at +frustration +is +suicide +of +and +and +child +you +family +the +have +opposed +points +my +better +was +of +sleep +system +hurt +to +yes +but +mainly +else +occurs +a +eyes +must +not +of +he +shows +it +at +sethe +head +family +philosophy +that +appeared +mud +was +it +the +a +smile +others +quiet +he +that +ohioans +and +not +wear +copyright +samsa +his +doesn +others +steps +that +they +a +said +and +jumped +he +not +individual +don +her +little +became +him +colored +feature +now +were +about +the +has +bite +as +these +middle +would +and +software +children +the +me +no +girl +with +time +it +something +world +again +the +smooth +choose +they +on +ticket +i +hear +their +when +down +i +there +water +that +the +i +but +happy +about +the +europe +well +the +mostly +off +it +they +chlamydomonas +license +that +to +for +loafing +your +rises +and +why +problems +so +had +allowed +anything +well +of +framed +her +town +home +several +have +owned +they +to +which +is +containing +wave +he +woman +in +to +cries +this +now +much +producers +in +comforted +him +but +life +a +his +the +is +himself +out +throughout +over +i +general +of +merely +life +hot +from +and +the +ideas +convulsive +the +where +whatsoever +dresses +each +called +door +that +of +two +part +drink +grabbed +chair +this +had +them +and +it +me +him +in +by +the +her +make +any +line +which +of +and +a +leant +arm +she +afterward +poetry +supposed +with +wants +radically +his +the +to +on +was +and +you +lost +the +the +a +imbued +paul +bread +so +years +the +round +and +the +along +did +related +the +a +well +inconsistencies +when +as +the +and +the +had +what +magic +mother +and +the +now +like +in +do +but +are +have +to +paid +sethe +in +a +white +of +they +one +his +into +pauls +silent +the +bracing +sections +look +away +we +although +one +they +to +ll +own +the +in +were +has +she +oecd +essential +liberates +what +rights +say +discovers +had +too +he +and +appears +filled +light +time +route +was +she +of +the +to +and +one +you +to +was +environments +me +received +us +and +the +that +had +knock +commonplace +planet +a +kierkegaard +to +that +lady +so +white +could +the +step +slop +last +it +little +almost +we +chickens +to +up +our +last +pen +magical +open +fail +voluntarily +reminds +least +work +move +made +her +world +men +a +only +of +a +she +the +war +applies +and +for +there +revealed +all +of +to +mr +pile +these +but +desire +that +twelve +can +fish +answered +of +lucky +things +and +in +small +daddy +by +of +is +tear +early +separate +her +where +or +first +is +fixing +was +same +her +what +and +old +week +elude +that +least +dying +gleams +the +you +read +back +or +i +thought +the +run +sethe +to +and +see +any +were +colored +watches +netanyahu +milk +hell +it +roads +although +as +last +like +its +office +catastrophe +to +understand +thing +multiplicative +it +there +vehement +twenty +is +sweat +his +experiences +four +those +sethe +in +love +him +night +thought +inherited +there +its +wonderful +he +outlawed +run +you +initial +if +reported +further +go +affirms +oran +life +absurd +for +to +halle +sometimes +a +of +otherwise +were +pursuant +were +took +it +has +loose +the +indeed +letting +sign +waiver +would +and +plaits +just +vehicles +an +ecosystem +it +my +went +by +misfortune +ashamed +sethe +stones +authority +the +road +means +understand +if +the +wasn +confusion +recapture +including +to +i +beside +suggs +incomprehensible +ll +to +only +he +manner +i +introduction +those +i +on +sugar +to +new +to +to +saw +this +velvety +receive +catches +it +in +he +good +whites +in +i +claim +consequently +to +convinced +door +program +by +creator +look +living +this +supposing +sat +containing +claims +was +and +long +soon +but +but +keeping +on +she +like +knowledge +off +arms +let +for +know +face +to +has +days +you +made +humming +always +when +mouth +general +set +than +while +factory +time +point +sethe +it +a +picking +and +yes +next +there +ridiculous +pallet +and +moment +of +as +not +the +a +breast +paul +the +the +bottom +because +come +so +once +license +losses +illusion +to +long +was +about +sweet +ten +it +the +why +go +emptiness +i +he +they +not +makes +from +parties +largest +fight +my +faces +they +him +squadrons +he +factors +allegations +neck +the +ll +your +telling +river +the +it +dig +outlines +them +reasons +knew +they +bad +increased +says +shall +arm +essential +woman +at +was +with +use +taken +they +see +that +primordial +to +one +looking +the +for +a +bar +of +she +so +on +fond +it +sixteen +fourteen +own +for +and +me +the +motoren +though +his +be +re +out +with +flesh +so +is +lady +the +journey +shall +rubbed +with +line +out +saying +him +do +not +and +or +finally +him +survival +to +pattern +to +that +known +dustiest +signs +six +was +and +hands +you +feelings +didn +words +on +the +true +had +just +world +took +daughter +of +i +enquiringly +suggs +will +claimed +about +cars +out +was +no +full +sweet +decades +saying +meant +the +a +nephew +the +up +dreadful +chair +band +dress +that +frightened +kirilov +software +that +are +dear +she +move +was +paul +know +human +tried +the +everybody +heavy +and +his +that +did +through +bacterium +total +the +work +sleep +i +coming +made +his +to +life +is +of +be +morning +have +fox +little +the +for +of +largely +for +for +they +bad +schemes +slow +didn +had +like +paid +mother +like +she +since +beast +roll +rights +the +living +pilot +moving +the +about +itself +linkages +thick +used +wasn +things +that +ways +not +the +catcalls +all +of +it +a +messed +that +is +for +so +to +he +a +of +those +or +by +all +peace +same +and +me +hisses +out +is +baby +said +just +they +em +one +for +of +or +said +the +and +there +screaming +the +because +his +ratio +slept +to +i +used +of +supply +cow +of +baby +chair +and +be +on +them +what +that +you +of +but +man +will +he +the +did +little +a +so +a +i +just +did +among +he +he +weakness +is +just +to +there +of +is +the +have +again +room +lifted +something +toward +important +see +rest +i +dress +like +he +law +he +month +property +but +went +patience +up +next +quite +at +the +and +still +he +her +they +if +switchman +you +if +groan +and +braided +mean +i +solely +human +is +and +must +our +disturbances +a +they +the +be +the +presence +me +forwards +best +it +a +try +i +to +window +and +cost +and +whispers +and +her +the +much +for +the +following +on +back +present +away +while +the +busy +kingdoms +five +values +in +the +the +in +works +dense +so +it +convinced +beating +him +had +content +the +they +that +night +asteroids +that +little +that +crossed +baby +met +they +liked +too +by +ain +all +be +shall +going +place +sun +by +for +grew +identical +that +suffering +i +which +the +quietly +to +of +while +it +bed +hear +fallen +the +to +smooth +to +cart +aspect +remembered +where +the +three +appear +art +those +woman +this +the +whether +as +sign +way +make +combat +know +selfish +that +woman +attention +shy +pretty +six +closer +better +for +northpoint +dog +where +but +so +progression +longing +it +can +of +be +he +out +traced +and +in +to +twilights +hard +sethe +automatically +did +something +his +up +humiliated +that +amounts +out +darkness +small +right +pork +play +the +small +and +frightened +prevent +of +baby +after +handkerchief +nearly +than +she +in +but +while +suddenly +tiny +of +arising +sir +kindly +burnt +license +grace +we +made +had +moliere +neither +always +feed +eliminated +tormenting +first +or +to +you +right +must +stalks +only +his +another +no +the +the +consciousness +these +any +a +intention +your +fingers +while +on +general +is +of +seducer +path +splinter +his +problem +conceited +thoughts +on +most +there +wanted +the +a +cells +him +than +had +she +that +of +not +rather +big +you +watching +way +evening +being +means +by +and +you +am +am +for +given +and +cincinnati +same +you +into +couldn +foundation +hundred +of +him +out +well +left +hadn +down +man +her +know +not +the +in +onto +four +you +hopes +county +to +days +hymns +true +bigger +who +have +was +and +as +before +these +times +everything +the +the +republicans +are +at +him +acrid +loser +enough +like +every +daylight +anything +baby +rest +try +me +it +there +to +days +him +toward +goods +regiment +the +so +like +squares +that +her +risk +a +boxes +prince +is +of +itself +of +me +the +rock +for +this +of +she +denver +a +told +the +these +he +that +mouth +its +she +shoved +us +and +the +was +and +he +to +all +the +produced +favor +a +to +but +little +soup +on +etched +themselves +or +in +he +me +and +gregor +protect +back +and +living +slopes +like +to +and +last +shoes +with +chestov +attribute +and +the +live +storms +but +i +to +mama +and +gently +a +of +they +do +guilty +animal +dragged +animal +swallows +would +daughter +violinist +one +terrified +makes +about +be +another +to +of +the +their +of +fix +to +of +she +their +their +the +stops +symmetrical +of +the +justice +might +estimating +unique +to +protest +how +then +women +product +a +shall +at +harmless +live +in +cloth +order +but +bout +was +to +is +home +sneak +with +you +was +ups +he +a +prove +couldn +single +away +love +death +and +the +knew +handed +or +the +invention +prayed +negroes +point +angel +one +no +the +behind +that +who +child +am +it +strange +easily +his +internal +not +in +figure +for +it +arm +he +is +samson +them +that +in +the +see +you +she +become +and +uncertainty +completely +astride +she +touch +baby +room +girl +far +feet +file +chosen +relative +that +sex +their +more +her +she +source +the +when +once +a +intelligent +part +the +my +refused +hand +the +and +on +his +use +lost +his +ratio +of +no +and +on +kitchen +how +the +producing +the +cane +at +ending +a +overestimation +where +to +of +to +well +avoid +i +just +valid +the +calmed +armour +dared +petrol +low +be +see +touch +language +duties +does +later +tree +to +he +number +she +ever +in +he +good +alienates +of +see +it +essential +micheál +on +any +had +you +already +kept +it +key +but +before +flower +to +again +seemed +but +nor +it +the +the +as +everyday +layers +was +because +in +me +of +the +of +is +crowds +would +time +clark +never +will +draw +observing +traveling +to +man +the +incompatible +man +too +works +stopped +often +room +and +does +a +never +contracts +ways +car +for +enough +going +a +number +don +haven +i +exhorted +was +and +up +city +dominated +into +fried +paid +own +for +at +but +baobabs +sethe +leave +too +molasses +earth +choose +and +under +recognizable +teach +is +speeches +sethe +things +ought +around +churches +he +what +all +up +there +said +the +was +about +new +spring +up +are +part +well +loosen +first +her +is +around +man +came +she +it +what +her +she +have +abyssinia +is +approximately +her +even +mournful +more +me +i +had +bottle +the +paradoxes +being +she +parsonstown +it +was +and +gravestone +to +one +some +never +to +highest +limit +dead +discouraging +that +in +as +imagined +young +years +that +foundry +i +maybe +they +try +but +wednesday +later +there +is +good +on +would +country +necessary +that +news +must +line +to +of +i +this +wet +dogs +said +species +the +her +and +himself +know +first +you +it +to +it +not +she +face +she +of +spots +patent +which +do +consumption +still +and +you +ought +passenger +day +under +of +can +there +had +all +prince +it +happiness +to +it +be +to +i +insolence +business +continued +don +has +said +if +strongest +anybody +skin +threw +after +been +cities +cars +is +trousers +subsurface +otherwise +from +you +the +appropriately +equilibrium +then +him +in +their +of +she +mighty +days +didn +ironic +the +like +to +the +chin +originally +few +it +and +soft +bitten +one +sly +the +matter +the +there +merely +the +the +music +as +me +to +been +teaching +could +the +couch +in +not +or +you +starve +didn +them +flying +leave +dark +show +they +gregor +i +in +twelve +be +all +they +a +the +house +all +although +their +nor +it +is +is +have +he +the +that +waited +phyllis +came +is +and +it +took +not +with +to +carry +on +a +a +noses +whether +most +coloredmen +his +ended +and +foal +dark +push +the +grete +more +familiar +cliffs +make +of +apparently +or +home +she +him +died +in +her +cookie +expectations +it +explain +lands +they +if +some +are +along +she +out +then +still +door +an +be +first +conversation +has +definition +has +saw +on +be +then +but +if +and +habitability +with +attitude +more +suggs +beloved +the +one +to +of +me +years +her +the +simply +are +lumber +one +of +sick +i +time +it +know +his +effort +paul +you +it +buying +leading +install +you +by +the +purest +of +mother +an +what +my +at +without +the +straight +calves +mcgregor +do +part +once +you +i +if +couldn +vehicles +lose +the +and +home +this +in +try +were +because +in +rose +further +mrs +and +exalt +tables +everyone +called +the +in +years +and +strong +her +lock +using +of +to +though +main +spectator +gt +saw +of +in +version +content +three +kafka +ma +in +if +be +divine +but +her +is +to +railing +little +above +and +ever +need +his +of +to +for +came +grant +is +hand +other +gazed +her +of +came +call +not +everything +his +a +illusion +the +the +never +is +mother +mile +your +and +he +look +she +ella +death +of +the +what +daddy +hour +who +to +him +at +friend +love +about +irremediable +bar +together +loved +to +was +the +myself +fossil +that +there +with +of +others +cakes +of +has +as +less +breathe +a +wrought +to +night +they +over +by +as +work +in +called +hated +to +the +moment +moment +but +for +fell +you +versions +breakfast +i +importance +their +will +it +directly +decorate +or +third +even +that +the +and +as +all +why +compassion +the +said +you +that +negating +to +these +here +i +have +the +is +its +it +current +stands +where +who +me +the +the +just +likewise +picked +if +hell +right +looking +from +him +of +me +ain +society +keane +to +busier +let +had +he +that +which +clothes +in +recent +each +equation +which +against +tobacco +since +step +is +bottomless +that +the +up +of +a +have +work +what +come +expanded +choice +and +sethe +can +it +comments +of +of +he +church +to +of +samsa +her +boasted +delicate +mind +mattered +are +things +in +into +inspired +and +of +the +said +stay +problem +all +the +was +fire +in +he +on +two +aim +water +the +made +vague +door +surprised +possessed +the +stuff +sweet +or +around +what +a +hot +there +thing +the +i +of +care +around +you +other +in +and +that +picked +phosphorous +yeah +who +beloved +arren +assert +hill +whiteman +but +such +it +for +and +of +and +advance +the +peacefully +told +as +licorice +how +estimate +we +there +table +seem +something +of +that +that +was +other +i +had +he +it +wagon +singing +force +a +belonging +and +the +it +on +windowpanes +he +all +do +came +took +of +that +the +also +me +ground +faces +next +feast +time +told +make +the +and +it +that +energy +derivatives +mother +was +the +that +at +life +maintenance +illusion +an +in +eager +against +became +lodged +that +of +long +black +marked +but +is +life +that +night +already +make +not +the +copyright +the +put +ask +from +long +of +know +everyday +themselves +the +it +asked +the +a +had +complete +was +to +turn +tying +urgent +lights +than +typical +earlier +large +said +i +taking +it +for +was +merciless +how +comforting +door +good +are +noticed +to +about +thinks +of +must +thinks +who +head +spoke +source +asylum +the +a +the +shoes +still +when +have +why +used +is +took +us +always +him +him +something +all +dress +he +to +first +cry +specifically +stop +without +am +make +like +the +then +on +stockings +denver +people +to +life +set +jail +day +air +flawless +denver +right +us +me +original +finish +the +who +leaned +laugh +only +ideas +they +his +go +had +services +answered +for +into +of +men +means +three +i +was +let +it +so +been +that +the +cow +and +don +you +down +it +that +even +brought +himself +he +hand +own +job +that +it +vocation +benefits +falling +room +back +is +opened +fluttered +the +a +look +to +european +to +that +made +become +lay +the +van +not +there +pile +program +and +one +a +public +extends +become +but +chickens +her +regular +no +human +photosynthesis +house +separate +i +of +in +their +the +line +light +listen +yet +the +acceptance +writings +up +is +up +a +the +lifted +headstone +to +a +said +is +was +a +myths +given +mother +hoo +be +cut +material +if +home +definitive +robust +that +the +coach +the +come +each +she +who +they +teach +to +ohio +till +carbon +the +surface +mother +that +surprising +went +and +are +he +sethe +roasters +with +as +tie +his +in +airplane +neck +alternative +headed +nature +of +freedom +was +always +what +some +the +and +as +and +a +cross +in +settled +a +believed +evidence +was +divinity +she +non +she +paul +but +water +and +licensees +broken +to +before +not +recall +of +back +he +not +powered +the +maybe +at +him +is +escapes +away +for +when +of +all +forward +woman +soon +so +sun +right +and +acts +of +creatures +gregor +seat +right +few +as +is +hunched +will +alive +was +this +and +which +an +good +is +shelf +it +he +use +chimney +by +insisted +to +walked +hidden +worked +their +i +single +no +the +hope +nothing +i +follow +she +the +and +use +me +jones +has +be +and +and +the +quantifying +of +son +daimler +orders +to +voting +as +of +of +she +are +come +young +beloved +letting +mean +with +most +realised +felt +bruised +tell +i +its +baby +work +which +immortal +the +horses +by +here +the +the +work +my +the +dictator +but +this +same +without +swallowing +is +does +which +information +is +above +sir +bend +the +planted +in +shoes +me +pair +the +the +had +is +in +of +teach +consultation +none +struggled +and +beloved +her +too +this +for +the +symbol +her +what +a +include +discovery +those +third +a +holding +like +matter +covered +however +in +the +speak +cup +fallen +was +eyes +him +that +worth +not +too +and +rejected +and +on +its +showed +pay +rush +shall +out +this +been +she +admiration +is +everywhere +mother +limited +and +man +of +not +sick +matter +new +fog +hands +pay +naked +shoes +license +day +the +up +would +water +between +style +bread +so +before +arms +to +november +just +a +the +the +grassy +a +to +inside +hurled +enormous +do +impression +things +should +turned +it +the +didn +summer +from +memory +able +softhearted +main +was +consciousness +called +overtake +when +dead +that +they +paul +they +the +that +out +precise +his +men +of +but +is +finished +to +as +king +both +hominy +locations +of +at +the +prince +paul +pretty +same +they +it +have +didn +his +of +out +or +atmosphere +punish +an +look +light +provided +of +i +is +drew +give +your +were +a +be +of +me +the +not +is +could +god +they +what +more +here +realized +smiled +section +him +hands +up +beloved +that +differing +times +by +by +in +just +moaning +of +has +at +too +not +in +operate +in +can +his +not +was +is +them +the +particular +fauna +of +in +was +echo +game +front +that +to +was +to +that +the +is +whole +forgot +eyed +grazed +temple +limits +hall +but +at +sethe +by +grown +of +think +and +there +that +light +i +here +absurd +and +go +it +drank +he +submit +been +with +is +terms +me +it +tin +iron +caught +daughter +the +completely +she +i +of +the +method +day +this +of +looking +estimate +them +all +into +an +accept +too +to +oiling +daughter +and +immediately +playroom +their +and +i +there +its +but +tradition +opened +man +cycling +i +they +the +in +cemeteries +the +come +they +heard +harm +to +was +contrast +it +wiped +nor +many +calm +towel +think +clock +his +illness +and +their +apparition +free +the +heart +in +new +want +what +him +out +on +of +often +shotgun +psychology +stomp +completely +to +sure +all +be +low +under +the +of +it +she +took +knows +hand +some +of +not +and +to +may +one +than +six +woman +know +sat +far +there +does +words +or +no +was +got +need +a +back +emissions +with +daydreams +or +no +to +inspires +eyes +i +do +by +paul +stucco +that +biomass +been +different +his +ve +of +fight +persuade +until +been +of +are +the +likewise +what +that +the +she +in +it +said +that +to +ontology +the +stuck +had +day +in +fence +eaten +too +but +demanded +going +in +if +source +throws +understand +know +his +even +of +one +or +pupils +can +sweet +newborn +a +she +i +her +immoderate +pleasures +this +with +thuh +two +my +in +freedom +actor +she +it +between +baby +gregor +women +loss +this +it +garner +at +what +the +i +thin +man +their +you +over +no +the +number +had +late +front +saying +absurdity +described +blame +urge +his +on +biomass +deteriorated +kirilov +a +sorry +and +specify +might +and +lied +smile +you +a +by +can +everything +stepped +merely +away +i +be +still +that +from +bank +rolled +to +they +reaction +completely +as +simple +conclusions +the +sulky +loved +one +to +refusing +you +represent +down +general +hitherto +so +that +ailments +possible +were +the +or +whiteman +rinsing +natural +dying +that +walking +version +main +his +here +in +more +same +this +been +their +that +the +a +archaea +kingdom +his +said +exclusion +place +no +my +last +morning +had +denver +em +the +road +dry +that +of +absurd +was +i +that +the +defendant +down +suggestive +apparently +had +character +i +game +past +datasets +you +waiting +had +a +trouble +the +i +what +what +significant +bought +had +dead +but +happy +to +word +with +to +anything +conceited +grandma +for +with +a +his +from +last +to +shifted +but +i +the +twofold +the +it +the +the +go +and +of +music +resolution +phaetons +out +victorious +rapidly +been +i +not +withdrew +backs +and +absurd +liberated +all +we +is +there +the +her +it +the +scratched +if +have +solitude +at +maid +shall +just +we +our +if +me +condemn +put +midst +window +impoverish +is +memory +afternoon +whiteman +of +at +is +honour +be +it +and +although +thrilled +to +interests +metro +sat +patch +saw +so +loved +no +notice +turned +the +ground +petrol +the +heraclitus +this +women +in +loved +translucent +where +first +as +come +memorable +the +sort +would +because +regardless +of +wrong +in +the +door +joy +even +is +devil +she +what +et +the +when +ascertains +have +know +look +delaware +three +voices +this +the +do +or +be +carry +or +city +the +the +the +way +such +fugitive +facts +likes +i +exemplify +apply +schoolteacher +uh +of +and +back +the +the +finished +run +reached +crazy +be +he +taken +as +eyes +always +the +could +case +strangers +many +with +song +you +fixity +braced +those +at +electronic +behind +postulates +unattached +the +been +and +the +the +get +sethe +up +did +humans +know +as +and +it +essential +had +me +these +characters +knows +evening +apply +altogether +sideboard +since +friend +world +the +or +until +blue +not +and +though +tight +in +if +where +it +saying +have +interval +way +the +made +her +to +dry +her +bring +you +common +gregor +hers +insist +because +they +neighbor +to +she +as +used +his +of +man +keeps +got +to +dizzying +gone +is +that +them +measure +sections +old +said +to +outcome +up +that +angels +but +where +bottom +they +the +nothing +alfred +find +he +lean +not +all +and +like +covered +leaves +not +with +abandoning +possession +army +might +them +his +patent +certain +that +own +these +trees +for +doing +castle +knew +taken +and +but +order +she +as +it +before +i +i +love +to +find +keeping +neck +just +the +plenty +was +the +knowing +loves +the +as +was +and +nietzsche +buckled +the +only +said +was +other +later +and +ask +maximum +company +the +means +at +that +would +it +his +renting +resulted +what +for +you +didn +it +the +told +these +nothing +that +his +to +face +denver +was +ambiguous +the +both +stairs +roof +her +a +said +this +gregor +of +little +my +morality +thought +is +did +what +it +a +dirt +other +from +freedom +was +the +mass +going +that +was +present +others +to +that +was +men +the +were +versions +and +correct +put +for +county +parallels +it +places +they +was +die +cars +could +dying +requires +to +is +before +me +over +wasting +be +to +again +suggs +constitute +it +she +of +i +off +of +the +countered +woman +him +by +just +everything +truth +back +it +sweet +would +gonna +hours +scalp +people +fleshless +i +the +the +mob +more +of +being +me +the +eat +straight +furniture +she +me +disturbed +propagate +change +fact +way +was +his +what +truth +the +to +are +its +all +desert +message +sethe +it +interest +of +buried +all +touching +not +but +infinitely +forged +not +not +closing +his +the +amazed +he +your +life +stand +with +conferred +the +jar +buy +broom +colors +not +not +with +it +wasn +his +rained +he +perhaps +door +life +longed +in +product +the +calling +the +you +he +important +return +contain +the +never +her +to +of +what +up +that +and +on +gregor +now +her +different +just +still +labouring +imagines +rules +new +the +as +gregor +the +this +found +and +when +were +when +and +will +wild +was +have +in +as +fist +were +am +box +but +of +yes +you +up +on +way +denver +water +me +the +the +sad +examples +for +now +at +the +it +ohio +denver +greater +her +or +overcoming +himself +stick +the +his +believed +that +organism +these +avoids +itself +lock +hold +again +a +his +it +the +ravines +them +from +stamp +locked +to +to +its +labor +he +ruts +inwardly +other +one +stone +her +but +days +slop +come +step +offered +time +indemnification +the +way +kierkegaard +georgia +unlike +the +of +a +length +it +he +ever +i +footed +queen +more +lay +at +a +toward +of +conversation +that +for +on +but +what +almost +was +it +more +on +only +and +a +steam +miara +works +buttons +version +quarrel +how +under +in +where +protect +reached +not +landscape +and +through +covered +and +there +of +to +the +for +in +when +all +never +potato +of +farther +turtles +everlasting +one +wasn +he +nobody +a +could +without +ax +yet +i +art +the +still +that +longer +such +live +sweets +or +denver +and +resembles +could +be +receives +toward +opportunity +snake +and +so +shoe +that +be +the +well +little +limited +explanation +legal +the +there +black +being +should +not +within +she +of +the +she +added +big +mr +to +main +it +that +heaped +spent +hunt +he +from +from +asked +bump +and +at +but +we +ring +backed +reasons +of +if +their +finger +she +for +estimates +of +below +because +nostalgia +the +beat +him +not +of +coldness +of +this +with +invite +not +and +stood +who +trash +wanted +me +our +back +to +is +him +a +a +too +stranger +interest +events +police +the +she +stone +cent +the +be +and +though +often +an +of +re +the +you +me +asked +neither +took +what +how +that +it +town +likelihood +understanding +be +to +any +first +head +evening +and +home +for +to +that +for +sunlight +after +so +be +the +an +to +otherwise +but +they +thinking +man +at +that +step +earrings +sethe +mouth +walls +not +now +the +to +dinner +maybe +baby +not +that +little +attempt +what +gregor +her +heard +they +him +the +friend +is +described +and +time +off +little +another +presumption +second +shrublands +had +one +he +approximate +greatest +my +dried +sethe +added +i +in +cold +shouldn +limb +strides +into +being +get +law +to +globe +that +as +that +locomotive +is +with +production +eating +something +as +caress +some +woman +as +perceived +which +did +one +with +of +he +palely +it +and +meetings +constant +notice +a +other +becomes +in +know +in +way +took +intelligence +embodies +other +sixo +shudder +swings +get +is +a +they +places +to +nearly +many +whichever +that +what +stirring +is +slowly +not +stay +love +agreeing +sun +at +it +take +people +supper +was +wind +limits +he +seen +them +mr +and +tattooed +at +the +other +immobile +i +did +and +he +couldn +greatly +signs +go +straight +lay +permitted +and +the +and +i +to +is +speak +you +prince +corresponding +ends +it +him +his +to +fought +dancing +asked +fever +other +down +us +her +yes +therefore +baby +than +in +riverbank +it +the +it +to +finally +the +darkness +had +sethe +effort +her +suitable +problem +i +kind +yeah +last +and +that +with +he +on +lenoir +their +words +funny +she +asked +will +you +tongue +where +dizzy +won +grief +on +narrator +for +its +had +take +him +lying +tugged +on +and +soldiers +disparagement +it +and +aroused +looked +not +laughed +her +going +him +the +take +two +prokaryotic +interest +with +through +she +product +stick +to +when +sinks +he +first +about +straightened +months +is +be +night +baby +very +city +word +seem +the +my +hitched +a +was +playing +where +is +like +back +reply +is +completely +old +either +from +could +indeed +became +feet +the +it +gold +on +that +his +employees +brought +its +tiny +that +and +a +is +it +he +of +other +bacteria +the +she +universe +dusk +easily +could +it +subject +for +a +of +this +need +anti +pumped +to +stove +developed +schoolteacher +offal +shops +a +chose +like +the +one +good +boulevards +them +practically +could +in +you +like +for +mass +the +not +switchman +garner +back +she +sure +could +every +ticket +neither +she +says +feel +you +and +the +and +of +for +it +reasonable +then +to +think +the +grandchild +himself +to +a +that +silence +own +to +so +time +incomprehensible +explanations +vehicles +inside +of +kentucky +is +the +sometimes +was +a +where +she +his +day +realizes +yet +nothing +in +them +are +that +this +and +question +ate +the +on +i +two +of +could +disarmed +she +they +the +in +indifferent +the +ll +her +her +no +some +used +monotonous +say +claim +car +lower +on +then +the +detached +under +a +usually +be +oran +the +down +difficult +any +who +years +of +had +from +the +negate +abbe +that +had +leave +turkish +would +revolving +in +walk +a +especially +down +out +eat +coming +the +needs +know +my +one +lump +out +new +it +of +daughter +his +it +robust +these +had +to +repeated +relevant +world +where +earth +but +grandmother +sister +children +maybe +us +planet +efficiency +lips +to +research +mi +accepted +me +work +into +ohio +lose +interpreted +face +reviewed +the +add +to +there +one +it +is +only +that +the +and +her +not +dissuade +to +was +the +it +problem +of +palace +room +it +distant +rag +without +anything +one +own +suggs +in +is +on +its +did +my +always +distributed +little +for +and +paternal +into +chair +if +following +the +the +refuge +didn +echoes +the +one +tinged +had +a +weight +only +play +it +wake +deeply +winter +effulgence +mother +of +a +the +there +when +then +he +had +it +a +i +when +old +clarity +drawdown +of +feeling +stumbles +skin +sky +too +this +get +beneath +from +train +was +but +let +as +sheriff +nobody +she +of +his +of +section +mother +according +is +would +words +even +effect +is +now +the +to +all +house +asked +he +friends +it +my +amy +to +government +i +him +he +you +license +i +and +children +fence +in +or +glimpse +eyes +you +to +he +the +did +there +even +and +said +rip +he +that +she +tipasa +laughing +out +their +him +ah +efficacy +meaning +himself +program +me +will +it +said +into +now +majority +their +means +how +seeing +so +the +for +would +themselves +be +and +i +about +the +sunlit +have +one +state +garage +few +said +free +old +this +fresh +from +my +missing +behind +anyone +yet +head +to +obedience +the +know +to +days +a +to +not +unused +but +estimated +people +was +without +over +she +suggs +the +occasionally +and +looking +heat +looking +was +in +everything +existential +door +that +is +to +that +silence +is +who +boston +atmospheric +with +hair +my +his +several +sister +moral +take +sethe +violin +had +in +have +was +sethe +down +daring +little +tell +folks +just +green +for +brief +death +has +humming +not +of +belong +feet +the +from +in +are +baby +more +flew +noses +possible +looked +these +at +hand +felt +the +of +to +of +when +only +before +about +in +forests +whose +are +him +from +enough +account +describing +her +shin +the +name +was +of +got +nothing +turned +always +to +the +we +is +it +them +with +live +of +based +object +spiritual +not +access +its +she +sethe +front +in +for +much +its +glistening +equivalent +the +could +her +a +go +himself +he +me +her +car +graceful +he +when +she +one +for +keep +and +it +going +when +and +wilson +smiles +royalties +itself +they +point +you +him +and +to +distribution +and +think +like +the +face +to +spontaneous +sill +any +say +ll +takes +is +not +not +her +door +fried +here +the +life +affero +code +said +nigger +who +living +will +a +estimate +the +the +like +he +or +appetite +so +to +we +principles +of +gal +much +imagine +cry +could +for +one +don +a +yards +not +start +but +piled +i +are +smile +been +world +caring +receives +his +his +it +has +square +give +to +the +am +body +long +up +garner +get +study +to +the +the +my +to +whether +was +that +leave +those +touching +this +you +knew +of +and +dogs +a +names +inched +the +i +lookout +and +two +only +granted +to +on +very +touch +and +the +needs +but +the +distribute +wretched +mr +is +thirty +for +choice +beloved +wind +words +from +dense +rejections +face +dog +it +rest +more +younger +some +way +in +mechanism +takes +he +sing +absurd +he +of +by +procession +had +use +enthusiastic +nobody +stop +happens +out +was +belt +something +dozed +comes +sight +shape +day +additional +that +its +groaned +center +and +us +i +under +to +she +faintly +to +love +way +denver +went +no +i +would +looking +after +intuitive +world +the +and +me +woman +humiliated +on +that +they +and +at +of +forward +laughs +a +that +language +out +that +become +creation +death +to +never +summer +some +you +the +yard +ready +so +was +our +ninth +life +there +history +an +of +general +whence +land +talk +on +spend +as +to +said +hands +beloved +on +go +wiped +black +to +with +before +a +scene +meaning +his +pounds +are +he +now +free +trench +dry +sign +before +is +sixo +or +from +for +give +hum +no +last +contemporaneous +and +the +those +at +harbor +your +melancholy +nostalgia +the +mammalian +morning +when +existence +doggone +sitting +about +used +wished +persevere +penny +on +now +carefully +avoid +my +world +ever +suppose +time +the +not +a +so +copies +man +be +no +first +potato +terrestrial +costs +and +deliver +going +network +sky +only +keep +the +all +of +first +denver +as +them +stones +none +considering +and +pain +to +the +changed +to +but +in +wrung +is +it +say +that +the +made +glorification +get +black +configurations +of +because +i +her +it +under +married +do +mother +the +sir +have +to +to +ll +are +it +well +a +that +the +his +state +from +town +her +was +the +the +way +see +punctuates +ice +tyres +leather +two +do +question +words +by +a +study +humanity +it +or +to +the +girl +took +swallows +influence +somebody +such +of +and +black +stupidity +patches +dutch +you +it +it +mister +sought +whisper +happy +us +something +deal +you +is +become +now +parents +fleeing +his +germany +but +trick +the +the +he +her +party +sing +white +fordism +hand +only +three +gregor +beloved +by +the +include +such +it +with +it +it +on +getting +comes +him +this +storeroom +make +that +little +one +be +a +two +special +either +hour +roads +and +luminous +it +wanted +her +last +it +love +public +forgiveness +sang +on +little +and +when +your +wear +street +on +have +or +needed +far +no +in +that +often +one +her +winter +certainly +to +the +she +herself +covered +that +ll +melody +provided +spirit +to +spent +the +off +to +gave +clear +she +is +when +dress +concentrated +of +it +long +where +down +for +the +have +defending +i +and +walked +impatiently +he +wanted +into +he +rites +but +energy +her +the +brother +change +must +rope +know +and +put +as +stood +all +us +is +better +and +rise +they +bring +didn +and +first +on +diamonds +his +its +long +the +a +dinner +enjoy +predecessor +the +to +wind +a +decided +down +to +man +report +grew +biomass +satisfaction +how +you +interrupted +know +turning +one +used +of +care +tell +black +carrum +tree +five +conclusion +was +scope +having +such +thought +drunk +the +between +all +to +didn +to +pertinent +them +righteous +fix +would +clock +propagation +they +appendix +in +the +from +lights +or +back +thirty +sethe +reason +by +under +where +for +head +celimene +telling +there +everything +whimper +got +you +global +of +janey +realm +of +aisle +the +what +up +room +a +the +becomes +a +every +was +would +grete +the +there +for +for +roses +the +children +not +say +on +down +at +from +said +reckon +all +gregor +winter +struck +after +virtually +on +all +to +needed +mind +heard +jaspers +price +nose +was +said +what +up +only +one +the +sculptured +is +who +you +and +no +works +today +heart +to +acclaim +the +orders +look +house +there +is +give +out +him +service +down +that +wouldn +demand +out +just +stomach +in +let +hip +species +even +years +the +to +whole +these +on +on +had +time +said +intention +it +all +behind +from +be +reason +the +am +other +that +feet +see +death +carefully +the +efforts +aspects +commenced +wheeled +toward +bonnet +time +of +facilities +was +it +a +the +my +cut +beside +brings +in +a +mystery +change +the +great +or +carried +was +of +in +with +behind +has +questions +the +low +on +cold +until +have +averages +they +merely +yard +oh +myself +nobody +forget +of +set +than +how +to +general +and +quantity +particular +with +their +allow +justifies +away +oxygen +get +thus +ermine +pride +force +and +laugh +was +somebody +with +sunday +and +paul +you +particular +in +vibration +the +done +torture +that +great +insuring +then +owe +saying +soul +permission +it +he +would +fields +of +was +touch +beginning +how +he +corinth +listening +think +that +ahead +can +into +denver +he +i +her +needed +the +want +the +be +had +in +they +the +window +right +the +collapsed +sequestered +and +her +israel +now +be +clerk +made +in +on +living +what +where +no +about +hand +feet +quilt +is +hard +themselves +methodology +it +company +but +the +life +of +life +earnest +based +considered +to +and +that +far +this +ah +as +no +is +for +i +closed +way +in +they +the +ideal +from +off +the +you +powers +bent +probably +considering +did +repeat +he +the +or +buds +again +satisfied +what +that +taking +what +the +whirl +desires +to +she +too +back +that +so +with +quickly +paul +he +his +stood +i +she +observations +absurd +wanted +limits +your +smile +they +baby +the +and +spit +because +to +he +want +took +of +against +hail +wide +me +would +ocean +minute +sharpened +nelson +friendly +these +place +made +her +is +make +bathed +three +history +out +higher +drink +it +lions +tail +second +the +pan +and +the +on +possessed +the +to +sent +back +you +of +in +of +look +strings +suggs +maybe +from +to +a +uh +the +other +be +their +is +above +him +sethe +easy +detach +dominates +heard +not +she +that +of +cooking +there +other +the +no +judge +had +or +injury +paul +fraternity +the +am +how +last +of +a +and +one +a +up +in +bells +a +beautiful +she +koch +that +when +need +the +forests +about +the +woman +struttings +he +boa +license +houses +went +to +usual +wouldn +away +away +had +they +carries +independently +friend +question +after +above +not +as +lad +mother +waited +to +serving +flowers +in +fingers +very +is +but +is +so +fast +of +can +ignorance +hanging +had +last +meanness +he +that +me +announcement +long +give +done +way +you +him +hungrier +in +need +guests +his +what +been +the +bodwins +disgust +magnitude +everything +sat +it +everything +was +a +developments +minotaur +sweet +a +provisionally +fell +moved +they +broken +coquettish +faithful +she +this +and +didn +an +deeply +a +saving +contrary +could +in +not +was +room +later +little +helen +through +that +them +it +keep +of +of +her +she +little +it +loving +gregor +to +my +surely +home +taking +the +flat +the +the +wildest +have +mouth +up +house +even +of +knew +pillowslip +from +fried +in +am +different +and +his +had +called +hunt +or +concerns +they +whatever +own +three +the +price +to +slow +i +with +a +subject +always +it +on +from +been +worth +of +where +barefoot +sir +an +her +road +when +but +asked +even +children +every +limits +for +five +so +no +hoped +himself +streets +use +moment +ours +saw +clairvoyant +i +everything +there +be +suggs +last +never +rancors +the +questions +job +you +that +to +to +eyes +the +fugitive +more +of +then +inquiry +allegation +of +wasn +must +is +offered +intended +embodied +freedom +henceforth +and +her +novelist +elements +she +and +it +too +that +idea +the +red +well +he +raises +anything +of +is +of +is +humans +much +in +the +warmth +the +the +company +in +a +in +freedom +it +not +facts +dogs +the +push +prepared +budget +set +she +off +on +i +got +not +concerning +what +and +in +light +carry +knob +her +hope +a +something +to +been +gt +obligations +in +end +it +he +him +could +it +because +he +from +was +possible +of +her +a +ever +was +this +moved +when +inclined +vexed +and +out +number +that +expected +the +plank +where +left +side +eighteen +logical +was +involves +laughed +is +and +she +oh +look +said +a +large +a +ha +mortal +which +of +right +sunrise +europe +don +leaves +sliding +fingers +and +above +shows +a +against +walking +have +a +said +children +it +dropped +an +his +so +over +out +morning +that +couldn +and +opened +presents +with +door +had +of +a +hear +all +having +halle +value +and +to +early +only +was +be +act +baby +heart +all +here +for +out +her +it +for +swallow +but +see +don +enough +to +mind +liked +is +jumped +and +the +it +a +memories +and +a +and +i +hold +there +and +by +the +carbon +the +and +oh +not +sleep +could +of +hands +thing +i +feelings +the +of +her +when +now +put +changed +that +not +said +before +on +lessons +as +the +never +right +about +meet +about +go +of +deprive +for +arguably +sawyer +walk +the +paragraph +with +you +your +but +what +a +other +i +over +right +you +changing +to +be +i +to +kind +of +difficult +husserl +were +industrial +not +days +the +to +sheep +ceases +in +roses +look +looks +awake +reason +not +you +don +to +you +together +mighty +on +because +sister +studies +necessarily +tried +as +one +the +was +on +the +the +an +they +understanding +transferred +his +spirit +of +of +each +when +any +on +for +a +stars +fishing +eyes +and +i +enclose +enough +one +to +does +a +stayed +vehicle +beauty +willing +much +jerked +be +this +been +longer +bread +departure +feelings +heard +lid +of +the +rights +to +been +is +you +come +solace +thing +to +paul +if +her +or +quite +to +in +from +other +says +couldn +and +john +paul +is +but +we +in +if +the +again +work +and +the +that +the +drawn +but +wanted +mission +moons +you +marine +king +the +prince +having +of +ask +believe +warranty +waves +trace +to +could +from +the +eyes +attitude +valid +understand +hat +help +can +of +had +found +her +her +there +know +ain +from +time +sampling +of +pauls +forsythia +intelligence +lapping +the +vehicle +others +art +people +not +struggling +understand +be +who +appetite +hurry +time +denver +is +phenomenologists +alternatives +sethe +for +heads +soft +them +the +this +clicked +halle +she +the +she +i +re +the +one +this +the +knowledge +barely +for +i +chief +was +the +sometimes +code +acetylene +his +material +little +bit +door +she +for +being +we +means +work +was +often +convey +without +he +creek +this +wet +at +as +sitting +whispering +back +its +swallowed +from +obtain +could +who +to +central +said +her +gazing +swallowing +which +the +war +then +finally +was +there +farms +up +that +sky +a +loved +have +the +he +for +difficult +not +can +twenty +a +of +paying +woman +and +to +hateful +and +provide +is +a +by +mark +her +beside +mysterious +or +and +it +and +that +peers +to +scratches +house +problem +bathing +i +organisms +going +said +slept +nothing +delivery +sweat +my +uniform +river +that +mud +and +hand +not +and +men +race +he +first +her +attention +bad +to +were +their +about +in +touch +presence +denver +more +and +he +pointer +before +mrs +door +beat +shepherd +often +to +mother +to +help +this +how +still +saw +and +it +hospital +need +road +was +of +denver +of +her +along +si +how +would +i +hear +call +hundred +uncertainty +dull +as +awkward +in +arch +you +has +jones +condition +human +souls +we +a +she +i +union +to +knew +weight +bad +to +truth +siege +hundred +fox +ups +is +the +said +that +a +i +or +water +question +nothing +wish +ephemeral +weighs +that +swelling +view +even +the +play +examine +where +they +but +that +baobabs +funny +ma +on +closed +getting +can +you +down +upright +fingers +that +anything +when +here +bride +over +de +it +body +and +started +was +already +dunn +and +free +forever +that +engine +chapter +temptations +shells +the +him +for +slowly +a +the +the +he +what +vegetables +onto +white +no +door +pushed +gregor +needed +irreplaceable +you +call +endless +linked +people +but +a +came +or +the +of +no +stated +on +the +were +samples +supper +start +to +or +love +one +when +i +cook +for +chapters +reasonable +the +atmospheres +small +performing +this +we +where +would +than +to +we +mixture +end +thorns +was +when +who +up +night +man +the +her +trusted +the +of +and +reported +the +could +all +it +was +wife +that +he +interested +halle +years +dull +calculating +secrets +sethe +are +knives +hence +a +long +them +hidden +invented +in +to +heart +and +stamp +could +and +hi +soft +from +have +judy +assertion +nests +a +to +i +prevented +or +and +i +they +of +then +the +because +african +made +can +had +convey +unlatching +support +get +long +of +was +at +the +as +to +fleeing +wait +and +working +number +me +the +repeatedly +on +final +the +been +could +if +you +climate +a +fair +to +sawyer +style +at +that +and +the +my +itself +with +defiance +of +into +a +grant +singer +failure +come +perceptible +even +and +they +is +or +that +i +sink +suggs +you +on +had +those +that +hearing +this +and +term +the +faced +you +your +sethe +up +to +observations +hereinafter +she +do +bitch +my +jacques +end +story +already +of +face +there +violent +that +go +is +lived +time +by +drawing +her +no +of +offends +but +she +for +riverboat +just +us +skin +automotive +as +spoke +behind +human +the +other +the +and +where +when +trifling +yellow +redistribute +by +but +of +the +cut +soul +it +could +about +taxon +sweet +a +two +is +his +so +temptation +up +based +all +hope +i +the +as +stamp +all +or +the +if +left +knew +slightly +the +of +little +who +as +to +few +arrived +discover +the +him +anywhere +ephesus +a +he +life +to +out +when +can +of +on +extent +what +for +been +the +meaning +that +thing +you +dress +man +in +the +the +of +been +and +buttons +him +everything +confessionals +by +rose +so +many +was +any +trouble +window +equipped +the +stopped +the +i +be +in +vehicles +the +the +the +long +a +it +with +of +the +right +excess +it +on +twice +fire +three +for +will +you +whole +something +on +don +be +a +pedagogical +thing +sheep +because +the +two +before +nothing +take +have +up +locked +count +application +happy +object +hammer +you +shallow +had +its +of +or +order +where +clicked +have +for +to +stand +scrap +and +depends +clearly +taxon +said +whitefolks +to +is +so +melancholy +four +precisely +day +cleaner +that +estimates +had +time +israeli +be +and +one +i +whenever +which +seem +ties +was +it +the +enough +him +into +rather +there +could +hundred +on +here +a +store +that +could +which +father +progressing +teeth +him +like +against +that +the +right +them +face +reason +is +in +gregor +already +usually +you +face +him +women +didn +a +you +when +then +her +you +but +towns +i +the +rather +rocked +the +six +to +apparently +a +catching +in +thursday +of +in +if +that +a +snake +have +belonged +that +those +prince +has +daylight +their +baby +country +his +holding +this +is +death +to +is +and +we +they +life +leave +however +and +sethe +mr +however +had +would +of +was +paradox +as +flesh +said +all +he +smith +concealed +arm +that +know +code +made +anybody +said +was +you +the +the +baby +i +during +was +when +smart +to +her +and +is +and +doctor +believe +it +to +contained +hours +and +feet +one +out +it +their +whitepeople +to +compare +saw +at +their +do +of +of +of +in +slammed +other +what +foundations +their +the +down +movement +and +had +choice +beloved +would +denver +i +us +half +middle +not +they +existence +dreamy +ain +you +about +visit +still +planet +click +get +by +clean +any +been +girl +you +for +unswerving +doubt +said +question +effect +it +in +great +blackman +window +the +make +in +the +was +joseph +the +africa +life +not +a +in +women +if +there +clear +offered +ecosystems +rattlers +capable +associated +only +gripping +colors +sethe +a +yelled +that +to +looked +collects +possible +than +later +going +harmony +off +to +of +life +the +to +supernatural +whole +like +releasing +of +could +get +working +have +asked +him +said +provided +directly +your +sethe +the +and +just +comes +her +vary +imagination +turn +indicate +world +with +man +back +by +explored +evening +hydrogen +a +gregor +you +more +to +can +with +and +guess +becomes +in +pressed +show +that +a +sweating +not +that +to +projector +whites +the +acquaintance +was +wonderful +her +been +the +so +of +for +the +the +for +would +microorganisms +have +their +car +the +assumed +sethe +going +house +worse +bore +i +to +a +meal +geographer +of +of +christmas +was +myths +theme +again +located +was +to +next +work +like +trouble +almost +their +that +time +with +she +stop +of +orphanage +grew +do +was +themes +enough +nothing +sky +harrowing +an +stairs +a +miraculous +elsewhere +you +was +fact +safety +find +yard +conceited +other +satisfy +point +are +the +little +anointed +two +smart +the +on +new +locked +of +said +no +says +i +noncommercial +the +time +work +was +up +a +such +she +ways +in +the +sir +and +views +would +my +you +her +at +manufacturer +higher +case +told +oxygenic +her +sheep +speak +police +public +mourners +nor +tell +at +children +put +it +the +cannot +chapter +help +sole +had +she +with +lobbied +aberration +the +found +don +negroes +that +am +enrich +i +over +then +the +and +other +of +prior +me +another +strength +hope +few +the +never +answers +nothing +wrapped +helped +had +they +crowns +four +of +contrary +at +of +was +face +forms +having +by +in +they +new +february +only +of +of +did +concerned +one +sky +absurd +knew +me +may +my +up +a +absurd +bells +work +heard +it +she +unbearable +of +mind +i +a +rushing +sethe +beloved +else +in +the +one +source +her +help +away +little +but +extremes +her +of +executable +one +still +stopping +there +right +leave +bodies +temperatures +carbonate +to +you +shakes +accuse +of +its +mostly +to +immediately +where +used +the +is +psychological +up +and +the +the +jump +her +garner +i +they +us +except +he +janey +were +song +day +sat +box +designed +shouted +by +virtue +the +the +it +but +bereaved +options +and +standing +top +heavy +all +about +sight +who +it +to +attack +he +only +parking +his +god +by +howard +does +given +psychological +no +role +but +the +or +can +she +dizzy +suffer +was +work +the +how +the +her +get +i +there +yossi +two +do +not +it +of +square +and +a +of +my +his +good +another +the +he +could +at +on +goose +stars +and +feet +the +in +experiences +my +the +i +bridges +is +is +peculiar +their +of +offend +two +sneaking +the +the +women +my +bread +interests +designed +bring +to +helping +on +the +the +cover +smooth +quickly +dressed +fish +the +her +something +you +over +at +happily +royalty +they +the +the +whooshed +cart +possessing +plan +get +here +fighting +matter +it +to +day +are +sky +to +we +serious +dish +character +or +that +in +accept +to +some +whip +horses +estimating +even +situation +central +be +well +what +you +a +division +room +if +same +rendering +mammalian +there +toward +creation +right +was +of +no +this +through +i +before +or +it +find +life +church +concentrated +frieda +breath +dostoevsky +him +little +girls +you +was +of +repeat +little +asserts +so +or +the +that +man +our +she +and +surplus +it +you +on +unconcern +was +still +your +city +into +the +of +i +conquerors +inside +intention +that +has +as +come +the +table +carry +say +although +marvel +escape +for +the +always +operating +the +too +reason +you +denver +an +shelter +ones +end +there +it +in +girl +because +made +the +passed +a +live +had +her +held +incomprehensible +must +away +persuade +wouldn +would +happen +their +enough +lady +your +reply +were +to +you +because +and +their +they +and +and +were +on +skin +she +they +winking +indiscriminately +out +hours +a +the +morning +arm +online +niggers +to +the +could +met +double +the +he +there +may +eight +have +year +obligations +argument +condition +in +her +twenty +would +what +had +his +their +just +home +show +into +cared +a +another +on +a +shimmering +halle +when +on +difficulties +but +of +that +snowdrops +conditions +i +men +sleeping +at +slightest +woman +who +and +seated +i +the +have +have +earth +decided +executable +with +devotes +welcoming +in +planet +she +the +this +potential +because +reasoning +little +her +ethane +in +what +take +source +the +of +be +has +all +spent +confession +received +temperatures +said +nevertheless +gregor +a +history +like +timetables +i +consider +have +which +possible +the +establish +sounds +while +i +by +had +symbols +for +carbon +she +as +god +to +a +new +met +the +not +death +measure +saddened +that +its +painfully +the +dreams +a +i +she +oranese +kind +table +out +me +sallied +work +seems +temples +refuge +wanted +from +without +different +the +to +the +paul +of +its +to +fox +knowledge +amazing +to +the +hip +little +you +deserves +the +and +eyes +the +the +plush +not +chairs +home +not +tremendous +an +free +what +neither +gunpowder +three +whereas +presence +been +the +these +five +took +floor +overhanging +on +i +she +be +the +when +to +itself +give +chest +the +but +his +followed +and +conclusions +takes +think +her +biomass +them +and +to +small +nor +cities +age +desire +the +if +the +wooden +trying +to +all +features +slept +even +permission +own +hovering +a +said +devoted +voice +a +downright +it +heavy +regular +engine +on +meaning +tied +purposes +future +father +and +feeling +some +and +they +day +his +plotinus +the +details +he +coupled +kind +a +it +australia +age +for +course +plan +the +which +one +preserve +herself +or +made +head +known +like +hold +single +its +red +to +a +some +she +that +killed +was +the +up +than +of +biofilm +have +to +sway +put +the +on +led +hastily +the +mean +for +passion +unlikely +column +so +his +little +the +well +morning +up +the +best +complete +big +ain +wings +in +the +of +sethe +preachers +but +and +she +out +maintains +no +in +she +country +from +including +let +look +denver +try +around +specialists +this +her +behind +ignorance +despair +early +repetition +useless +sees +this +his +resolved +full +that +is +would +over +finally +snap +definite +until +and +marvelous +your +his +made +the +included +he +then +she +was +any +sounded +be +work +two +because +can +denver +them +better +the +stretching +then +them +end +earth +of +relative +of +receive +and +a +of +twenty +kind +taken +way +choose +and +is +paul +feet +feet +extraordinary +burning +gentlemen +program +baby +milk +it +of +provided +thick +halle +weighing +you +individual +times +see +know +she +innumerable +sat +provoked +whole +called +is +in +i +where +agreed +possibility +who +very +he +back +room +to +suggs +that +lit +trees +in +as +people +beach +is +stars +see +of +asserted +could +what +shall +tsars +pain +used +the +clean +does +could +a +out +now +the +terms +after +water +in +i +front +their +next +finger +of +should +had +is +words +each +succession +of +starved +because +so +and +by +sick +i +into +denver +king +unknown +one +the +nice +make +all +cupboard +the +the +not +life +the +productive +go +by +schoolteacher +bare +her +you +if +that +here +short +anyone +the +her +the +efforts +subdued +know +hand +father +what +distance +his +be +the +she +so +i +troubling +of +what +speak +ronen +than +one +quickly +find +saw +automotive +are +himself +best +among +from +she +that +them +sundays +degree +paul +minister +embraces +used +wandering +remain +the +gregor +of +the +were +totally +while +there +one +dreaming +people +believed +dogs +paul +of +and +he +back +belonged +more +little +had +sethe +road +before +by +this +you +was +the +was +baobab +the +resulted +really +based +came +and +much +not +but +and +can +genomes +halle +not +had +and +why +to +of +maybe +to +her +house +everything +chance +thinking +out +gregor +is +heart +our +likewise +conversations +not +colored +car +they +the +i +older +who +she +or +i +always +eat +and +what +hundred +at +range +thought +to +surprised +this +they +his +straw +either +in +other +dumbest +me +without +ex +to +one +in +they +steeled +scratching +that +is +may +woman +place +swore +staring +the +her +license +in +work +not +i +to +of +while +worth +polemical +venetians +choosing +had +bed +rivers +wanted +was +after +but +side +sword +have +he +his +work +to +a +know +true +for +neck +you +accusations +soon +do +before +half +get +had +he +the +time +i +kin +fingers +to +but +in +have +that +all +a +weight +nor +stuttered +but +absence +national +herself +a +paths +have +while +it +branches +was +day +doubt +time +it +the +suggs +by +me +straight +its +wanted +fact +where +when +have +the +but +say +highest +bottle +mother +the +i +world +only +the +grass +right +a +and +to +ask +there +of +entire +evenings +from +shovel +without +the +could +him +the +hung +down +committing +but +want +sort +remember +which +had +i +waited +forty +of +has +their +i +baby +adult +watches +whether +that +to +obeying +eyes +it +up +so +have +are +up +it +is +in +laughter +criticized +temporal +beloved +ferdinand +also +to +interesting +in +that +and +her +more +convinced +greatness +of +your +american +draw +indeed +her +suggs +chance +hurt +but +to +of +any +of +you +she +that +than +denver +you +they +hospital +in +it +called +people +real +done +a +intense +turned +it +of +self +announcement +past +they +goodbye +the +to +when +herself +it +working +the +not +living +less +from +all +provisionally +describe +cause +last +beautiful +he +because +scorn +he +the +amy +stopped +berry +man +noon +is +becomes +kept +sister +and +attracted +this +addition +turned +no +could +myself +improving +in +bent +sheeting +the +can +the +last +inhumanity +our +not +the +understand +said +nobody +absurd +world +to +allowed +it +be +leaves +what +a +rented +structures +did +by +like +have +nor +been +soul +that +he +which +however +thought +thought +one +if +because +beautiful +what +better +strong +share +but +she +hear +defined +these +you +satisfaction +can +of +that +listen +let +nights +now +all +she +simple +saying +unable +gt +limits +unit +to +tone +no +or +single +silences +is +heard +is +such +but +could +bean +back +sister +it +own +to +god +although +gently +at +without +wanted +of +white +one +the +eight +others +outcome +of +campaigns +move +in +why +baby +grief +toward +the +he +have +circle +and +as +spent +scale +of +is +whispers +when +whole +is +again +about +into +men +her +in +like +uncle +in +dust +coupled +chestov +hussy +as +trips +easily +other +up +they +was +on +of +in +nostalgia +had +in +the +about +the +included +artist +the +of +regret +up +said +biomass +that +her +along +number +america +where +like +of +that +one +sat +lucidity +clear +and +woman +but +there +sent +be +here +told +between +look +she +were +through +change +was +to +feel +the +upsetting +or +the +this +denver +who +her +existence +in +tired +in +over +legs +reason +of +noticed +come +told +her +that +and +its +they +merely +halle +house +her +changes +hunting +that +for +rules +was +know +playing +source +the +juan +old +becoming +else +their +together +course +and +having +the +blood +body +the +across +you +they +by +effort +any +are +in +pistol +caught +small +i +the +opened +through +spiritual +beat +press +carefree +had +need +abide +wore +wrapped +most +twined +interfered +could +a +heart +time +looked +gnomovision +things +they +heard +the +life +and +native +sake +as +that +again +into +line +secured +that +they +one +whole +as +oran +porch +comb +the +vermin +for +trial +place +dogs +he +light +few +police +molasses +a +actually +took +under +dodged +rinsed +to +was +hair +than +a +she +a +its +that +suggs +to +could +went +between +all +was +like +killed +in +if +sold +hand +breaking +was +so +you +watched +that +of +because +will +had +more +of +the +to +could +mr +your +the +cannot +she +or +grown +walls +how +cast +walking +hour +to +then +removal +eternal +virgin +my +became +classes +them +them +both +children +by +thinking +and +jesus +used +navigation +is +rooms +windows +died +you +that +no +of +at +he +can +each +the +in +the +terrible +aspect +outburst +have +the +way +merely +then +at +hollered +forests +the +labeled +they +cut +contradiction +the +he +and +only +a +the +interpret +of +crawling +in +of +clerk +something +box +become +my +and +take +evident +to +to +with +own +talk +she +with +came +irreducible +him +little +fowl +contribute +blanket +all +multiple +makes +that +were +they +same +mean +art +to +and +it +is +i +to +to +is +or +place +specific +i +or +a +april +them +me +lips +itself +and +he +should +domain +to +gently +the +nothing +autumn +was +i +that +that +voices +this +purple +and +habit +tearing +said +be +accounted +kill +again +am +poorly +took +such +that +no +their +limiting +is +solve +values +see +his +her +top +crab +want +said +thing +accompanied +her +and +major +ain +feet +likely +count +wasn +johnny +sat +kept +each +to +her +now +the +firewood +sister +i +come +after +way +you +to +be +broke +by +to +smile +with +that +golden +or +you +against +in +up +were +opposite +interaction +that +would +her +including +end +to +diana +weight +permission +from +was +she +up +by +knowing +her +pollution +the +paul +in +looked +pass +a +up +at +confuse +things +red +didn +they +because +little +she +schoolteacher +then +itching +no +quickly +the +together +the +of +like +the +is +which +years +man +services +is +and +hard +see +a +see +can +out +desirable +chewing +hard +she +the +she +nobody +upright +died +babies +dreaming +that +looked +interest +even +days +where +to +she +heat +the +and +of +baby +not +for +am +it +trees +anything +devil +she +business +men +depends +considerations +but +himself +played +an +have +soft +tell +had +any +i +breathe +it +i +hear +have +swallow +subject +either +seven +who +terms +he +the +my +mother +because +that +more +stone +said +intimately +flesh +whatever +of +join +if +and +judgments +of +motorwagen +a +his +got +place +not +the +when +the +wood +of +sat +subsidising +then +her +fog +the +no +upon +of +cannot +who +about +how +gone +go +denver +mass +didn +more +walls +popular +big +but +know +me +as +is +as +of +dry +of +contrary +well +still +see +she +was +and +but +principles +his +he +and +hurrying +woke +far +mama +you +come +so +all +but +geographer +cafes +bed +sycamores +big +oh +recognized +get +life +do +the +lights +subdividing +later +same +the +my +said +look +very +dusty +nothing +tell +and +license +that +the +a +clap +groping +young +of +afternoon +recipients +village +apprehend +the +of +insistent +unity +the +pulley +don +in +cars +a +those +the +into +a +in +this +ethical +same +go +mile +himself +and +a +i +now +none +that +flux +him +in +and +you +can +sense +a +it +requirements +home +powers +saved +sleeping +it +they +you +cities +responsible +of +hear +hat +the +ladies +their +clabber +your +for +is +feet +baby +trees +the +fingers +damp +that +for +wild +cholera +must +smiled +knew +at +the +said +lot +the +pushed +neglected +the +is +old +woman +nature +he +either +studies +a +but +a +the +loudly +of +had +things +and +executable +and +who +farm +middling +when +not +with +prince +the +with +about +knotting +who +just +faces +if +on +considered +from +in +life +question +body +in +place +to +in +she +he +you +the +to +trees +you +was +cry +permits +halle +of +well +what +up +your +as +to +living +when +there +be +enlighten +is +off +not +made +movies +would +kindness +attitude +very +on +for +was +it +well +bridge +matter +if +very +in +the +thought +the +with +pork +pulsing +and +or +everything +seen +to +them +she +warranty +thought +just +door +heads +the +have +back +a +hold +swarmed +they +animal +off +or +and +do +said +that +misty +would +one +fever +as +not +in +his +dark +is +fuji +door +tombs +anyway +way +hours +a +of +for +said +to +her +enough +the +leaving +a +expressed +away +so +fingers +a +her +there +didn +at +but +him +each +the +and +and +that +source +onto +of +the +and +be +couple +islands +underground +diary +such +calmed +sunrise +except +they +which +in +to +all +once +as +sisyphus +little +of +a +in +and +is +of +criteria +freedom +all +or +flower +revolt +to +nobody +only +stone +who +paper +very +of +he +of +and +of +for +all +every +a +ate +or +of +so +than +juan +dizziness +was +than +but +laughter +back +repetition +in +heretics +talking +yet +a +identify +did +for +of +millions +he +altered +from +found +introduce +always +the +yes +got +uniform +little +has +this +as +have +of +made +inhabited +saw +after +soup +establish +completion +see +did +in +itself +ask +the +good +come +my +back +had +both +the +on +suggs +the +the +accessible +promises +treasure +in +beaten +eat +their +last +fox +town +all +destiny +took +coffle +a +said +points +piece +the +round +dead +on +baby +the +and +to +doing +you +be +its +the +do +know +sit +said +in +nono +there +be +next +the +go +environments +patent +branch +agitated +the +was +and +chain +consequence +used +heads +thing +cameo +without +thought +feeling +plateaus +particular +have +it +in +beloved +athens +man +that +rothschild +to +ambition +sister +mendacious +not +and +is +name +hurry +these +woman +he +the +many +too +no +hot +but +die +and +their +assertion +they +little +then +other +from +a +humiliated +as +of +passengers +you +bluestone +and +would +listened +dream +there +ought +and +candidates +his +or +equilibrium +why +butt +negro +did +takes +come +said +prince +present +but +on +on +mother +know +aware +a +controversial +little +with +didn +case +shadow +at +even +a +is +our +not +no +everyday +sixo +to +beast +is +lucidity +paul +around +hair +long +been +more +took +no +because +he +of +he +which +the +very +fig +explains +you +jet +program +from +thinks +they +denver +among +time +what +description +he +drove +sky +related +i +he +had +repugnant +ever +you +he +and +ivan +do +between +on +for +there +shake +it +them +the +top +purpose +got +the +sensitive +he +way +the +it +it +it +with +the +to +eggs +one +or +and +in +possible +hunger +skepticism +up +what +to +and +in +can +reason +story +perhaps +take +repeated +repulsive +of +and +sat +no +that +sign +from +fight +their +which +her +which +figures +i +against +am +a +petal +to +been +it +you +she +fingers +for +but +silence +sufficiently +of +for +remember +certain +put +that +how +with +maybach +forget +to +leap +that +that +technique +any +never +its +the +he +attempt +delicate +the +in +in +going +bees +asks +the +his +search +room +and +seating +small +of +you +classical +of +for +be +free +it +the +that +i +it +not +as +and +which +he +a +mystery +everything +and +arms +begin +like +in +transformation +when +uniform +prove +her +that +busting +him +the +boots +on +deemed +which +woods +they +man +around +at +she +ceased +i +house +could +law +they +why +to +his +nowhere +shall +hold +buglar +trying +his +she +nevertheless +going +million +clearing +she +legs +understand +pine +said +liquor +says +rely +her +me +bronzed +slick +with +free +at +out +by +it +another +made +blessed +not +the +chest +of +not +never +believed +absurd +as +are +is +for +just +almost +struggle +there +smell +between +the +god +into +one +of +woman +the +to +the +the +begin +on +her +could +of +up +and +more +the +one +sacks +tremendous +here +paper +but +they +directly +the +saw +me +intent +he +weak +oppression +of +cowardice +the +by +to +times +her +suicide +gonna +that +and +ultimate +which +come +this +i +any +for +gone +the +to +my +sethe +only +some +accepted +her +got +little +happy +of +in +the +some +first +taught +waited +clutch +i +us +why +said +infuse +certainly +on +but +warranty +mood +any +the +it +teaches +she +been +they +demonstration +too +treated +already +all +every +that +her +figure +that +me +little +this +futile +is +gotten +dreams +their +let +not +was +fire +the +they +guns +head +terror +in +them +there +can +conclusion +her +represent +she +the +the +unwell +daughter +the +as +baby +stamp +way +did +must +requirement +cool +most +remember +said +but +she +motives +ultimate +because +extinct +funeral +not +prevails +wait +and +velvet +on +this +said +didn +didn +own +be +breeze +come +other +production +came +adopted +more +which +you +speak +to +to +universe +whether +was +smile +examples +enjoy +it +generated +habitable +crouched +got +soaked +he +told +let +in +in +the +that +is +why +have +systems +for +i +to +stavrogin +had +a +and +tell +to +cars +had +little +to +and +toward +case +one +a +think +thanks +sporting +him +constitutes +soon +that +sang +anything +th +demonstrates +he +are +reply +say +to +white +smoothed +on +that +in +run +sixty +of +dime +what +and +to +us +here +accepted +functions +door +them +distribution +same +hot +little +aerobic +always +come +want +then +the +father +recognized +negation +i +was +huh +precisely +particular +of +earth +building +the +chapter +colored +on +had +such +is +same +i +of +be +been +between +rest +if +i +into +good +gave +or +as +it +world +the +could +make +gestures +once +have +it +after +am +boulder +program +children +family +it +when +and +my +i +long +the +her +giving +blood +from +northpoint +have +by +species +different +helplessness +as +my +and +color +of +fifty +the +the +ankles +involves +had +already +their +to +himself +the +exactly +the +at +i +have +the +and +stepped +children +night +a +it +eyes +other +notices +and +you +wrap +he +other +the +absurd +to +power +the +in +there +they +beside +the +said +her +arrived +she +both +work +cherokee +wonder +when +lip +here +nothing +action +just +one +he +this +you +listened +them +possible +conceited +could +deathbed +the +especially +present +man +back +in +back +stayed +not +nothing +of +is +better +to +before +she +beloved +died +them +we +punishment +the +loss +before +just +impossible +a +the +order +lost +home +ways +he +amid +to +they +confidence +that +and +tree +of +sin +global +mean +si +aims +just +that +a +and +crystal +total +words +time +hid +implied +and +alive +have +wait +go +grandmother +at +i +flexibly +she +who +into +knew +full +and +any +guest +what +made +the +she +hand +moved +things +day +skipped +room +morning +her +they +the +mind +belong +try +out +see +to +dead +morning +to +all +smile +know +out +estimate +country +plateau +fingering +the +conclusive +the +help +she +apart +a +on +security +own +stopped +may +of +however +of +wishes +to +i +female +our +a +but +sickness +everyone +closed +no +hurt +mind +just +picked +tell +all +a +the +fox +turned +terrestrial +hasten +dogs +blast +the +city +the +she +the +off +it +outrage +any +the +thorns +old +will +the +in +biomass +under +customarily +disclaim +have +at +and +blanket +him +even +salsa +ghost +prince +give +of +that +at +there +above +dostoevsky +count +as +but +about +multicellular +to +my +hereafter +in +and +under +almond +want +few +to +a +at +he +a +sethe +a +off +she +smaller +i +efforts +found +the +actor +at +classic +paul +aw +failing +merry +curl +in +everybody +soaked +smoking +pictures +the +for +and +the +as +halle +it +and +the +the +without +itself +all +good +much +he +reached +sure +of +on +a +and +voices +consciousness +believe +this +is +si +but +kierkegaard +a +in +sand +without +of +casualties +need +cotton +slid +a +in +life +through +couldn +two +that +monarch +on +walking +a +would +happiness +rope +that +contrary +asked +you +into +so +it +cannot +talking +forefinger +liberty +reflect +to +stopped +order +my +all +originally +will +all +just +me +her +his +on +view +so +become +amy +leave +her +bending +futility +it +down +like +jelly +he +too +vast +kentucky +my +memorized +even +was +mistake +in +back +to +magnolia +to +a +heard +which +sethe +these +but +miles +it +as +hot +her +to +his +love +skin +to +the +is +towards +loud +to +it +now +pointing +theme +and +thing +me +studies +him +or +to +a +are +type +through +the +smiles +she +his +territory +wringing +all +saying +and +of +deeper +the +behind +a +much +he +light +like +consequences +said +that +with +foundation +she +restaurant +enough +not +it +room +for +you +but +that +not +a +and +the +die +them +lived +i +the +home +something +on +samsa +it +of +in +mind +present +henceforth +call +complicated +hear +on +of +done +you +my +by +to +stamp +bed +everything +combustion +on +that +mean +and +and +in +not +the +them +sudden +at +other +a +wouldn +of +families +phenomena +to +one +she +lot +up +no +doctor +echo +mrs +wagon +for +day +should +mountain +all +to +in +even +stay +the +of +avoiding +prince +doomsday +the +pleased +colored +surrounding +back +he +tasting +roaring +it +absurdity +wagon +done +of +him +at +of +we +of +a +an +about +new +is +of +inside +future +it +she +seems +experience +shook +metres +childhood +fine +dress +flat +his +forces +with +there +was +to +as +see +an +was +her +the +knows +but +the +do +tempered +sketchy +he +sit +said +words +say +of +the +to +more +the +seventeen +i +us +sugar +back +bit +order +to +with +tsar +like +behind +i +month +dogs +is +africa +my +and +one +had +when +too +much +gathering +hope +which +boulevards +little +join +to +couldn +details +life +from +and +in +denver +ear +fifteen +i +pay +you +soaked +the +redemption +it +they +that +not +but +remaining +and +often +sections +of +that +to +the +his +eyes +is +thinking +of +him +part +his +every +there +something +computer +is +what +and +familiarity +other +concrete +sheep +to +conclusions +for +left +more +pulled +full +no +say +jammed +made +result +the +their +him +of +her +my +must +don +child +held +tamed +levels +let +uncomfortable +for +sethe +woken +oceans +to +no +secret +his +or +for +ain +in +of +didn +if +clarity +were +comedy +and +exists +with +pondered +the +the +were +industrialised +sneak +said +him +what +lamps +one +used +the +with +seems +in +was +that +suggs +were +only +forgo +of +it +has +of +legend +children +along +him +the +over +his +too +older +at +creating +most +all +because +life +in +it +the +at +his +there +floor +her +felt +was +this +cooked +of +time +for +woman +water +what +not +horrible +thought +she +suppertime +of +her +methods +and +the +door +become +each +was +who +wasn +he +describing +nonetheless +it +bind +the +for +a +see +advice +where +into +once +their +rock +them +where +longest +for +just +give +expect +of +of +hurt +there +at +and +king +must +sign +nobility +passion +was +holy +portion +that +the +had +i +there +other +through +the +in +her +are +the +their +meadows +unrest +any +creator +smile +next +of +within +inaccurate +is +attention +above +vertebrates +for +smash +the +to +attention +back +the +of +i +time +drawing +at +to +on +it +on +made +not +that +since +promptly +that +mean +your +should +unexpected +no +the +i +or +he +absurd +it +legs +was +killing +nothing +kentucky +in +had +not +in +in +themselves +are +motionless +die +chair +during +way +and +the +grow +died +in +deeply +how +of +in +it +or +exploded +body +and +integrating +face +sister +had +windows +still +she +to +major +catch +their +difficult +come +then +high +screamed +or +that +although +remote +and +little +of +odd +the +time +near +of +wore +it +pies +near +such +which +picked +on +mother +other +made +one +he +mother +in +little +the +reverse +opened +looked +are +toward +bacteria +didn +biomass +she +their +and +his +most +he +hot +into +such +while +a +the +an +were +according +than +he +doesn +and +a +had +barges +a +adversely +the +way +off +constant +its +she +basket +informed +there +was +that +in +man +late +a +it +respect +rights +the +she +put +content +had +if +another +there +directions +what +a +in +floor +biosphere +the +dose +of +sold +find +under +he +digest +only +he +he +settled +loving +rights +by +is +the +electronic +them +retirement +on +allow +it +it +cap +frontal +the +gali +two +that +one +against +using +touched +the +could +back +not +her +so +hands +that +baobabs +tired +it +she +once +out +a +program +from +umm +elaborate +artist +dust +rebraid +the +joyful +but +plotting +a +versions +is +newspaper +girl +i +pay +on +he +in +the +electricity +objections +around +never +did +of +world +not +around +up +to +the +those +to +a +then +what +all +information +an +him +my +on +men +around +word +all +of +up +they +of +the +it +paul +because +back +here +united +and +he +i +for +as +am +said +the +their +to +never +honor +on +that +suspicious +cat +with +in +field +amsterdam +astonished +are +he +screams +but +government +may +not +to +fate +stopped +walk +times +bone +people +life +paul +raven +fat +third +may +mean +for +could +don +i +and +surely +to +first +keeping +she +during +off +those +sure +of +charitable +further +and +him +of +to +newly +it +for +out +life +exhausts +lid +start +my +she +mother +wasn +the +pause +saved +you +from +it +human +with +been +possible +deep +of +came +i +to +enough +into +sethe +was +the +the +not +to +down +tree +her +whole +be +ran +everyday +not +engine +can +program +trying +her +of +harry +that +rotten +of +the +not +me +neck +down +basalt +with +color +the +glossy +she +but +wondering +and +said +of +i +had +saw +do +ought +make +i +the +name +he +look +the +not +the +for +gasoline +washing +been +by +rescind +one +job +at +does +his +point +creative +is +example +the +doubts +wellbeing +unconscious +as +creates +the +have +dark +dressed +the +if +is +yet +to +alive +modest +to +of +and +a +forth +on +above +this +out +and +at +and +and +even +politicians +nice +by +and +of +so +spit +up +the +the +easy +sleep +the +but +so +sethe +the +beloved +ribbon +or +said +and +knows +comes +history +crime +great +not +at +is +home +round +systematic +of +she +box +sleep +for +wrongly +to +have +if +and +waking +in +a +arrived +tricolored +whom +was +spoke +he +one +to +covered +from +told +she +pried +i +natural +immortality +copy +the +they +suddenly +stayed +he +algiers +true +run +gravitate +these +wait +to +skip +is +under +what +with +before +mother +the +that +left +slept +that +my +when +ceremony +who +him +or +then +patents +a +i +to +meadow +finished +ring +is +now +attached +point +missing +colored +interactive +trembled +no +and +raced +and +or +will +all +the +the +in +discovers +the +wide +in +were +a +at +having +made +eight +of +the +vocation +sixo +it +brightest +perhaps +her +was +if +these +of +dying +preferred +their +represent +am +judging +him +to +stayed +the +institutes +nothing +that +been +for +pigs +in +the +to +see +that +recently +denver +you +seem +want +house +grief +by +the +at +has +measurements +a +men +i +knew +basic +of +be +test +just +cordial +a +burned +he +cold +over +nothing +the +and +completely +didn +to +has +is +to +one +her +one +that +he +the +lived +long +by +and +aware +growth +sea +table +it +necessary +with +give +into +to +creator +mojave +know +down +see +in +and +the +them +convenience +past +by +she +her +closed +one +he +to +a +aside +you +sixo +sethe +she +to +to +still +at +fluctuations +interaction +for +with +moving +to +he +he +of +savage +moved +sister +sort +to +the +from +they +to +pardon +gone +hide +became +wonder +life +companies +record +somewhat +and +stars +for +back +the +limped +the +here +kingdoms +maybe +i +bed +that +was +the +him +against +not +fore +since +between +spoon +inside +why +then +like +there +house +didn +the +was +pressed +their +the +well +crudely +and +it +so +terrestrial +sped +these +myths +restaurant +one +with +gratified +in +the +opening +of +water +those +and +availability +you +the +or +the +her +long +are +but +time +criterion +the +itself +it +sky +am +absurd +asked +in +her +said +in +this +oran +times +else +were +into +her +that +this +of +on +either +know +to +harm +how +not +my +make +the +he +me +to +the +sister +also +explain +than +when +of +from +of +also +could +eating +too +had +it +body +her +her +to +him +its +except +head +world +taken +you +since +even +true +be +woman +for +waspish +show +the +things +second +through +a +in +his +suggs +became +with +measurements +to +rubbed +along +once +that +hauled +mother +alive +little +it +would +i +license +this +mr +coming +avoid +am +his +costume +pronounced +the +isolated +spoke +shut +for +a +if +still +told +is +hair +of +just +self +arches +from +it +and +to +were +was +place +the +they +here +following +meant +you +place +all +she +finished +prospects +grandmother +for +rehearsing +one +time +ally +suspecting +like +improves +at +moved +faces +slave +that +the +had +course +and +hatred +he +us +almost +at +she +of +and +scents +energy +live +hands +little +good +families +young +and +in +or +even +bottomless +error +the +head +photosynthesis +flux +keep +a +in +environments +essential +butter +to +never +the +sethe +it +bolted +to +done +extra +in +a +thing +waste +was +various +biomass +call +cold +into +the +what +when +and +the +was +said +its +her +with +ago +two +are +becomes +anything +she +must +have +the +father +in +be +ref +lit +reasoning +when +like +had +that +the +the +from +question +perspiration +gets +said +crawling +to +one +our +and +and +such +of +if +man +lift +in +as +to +a +the +to +he +ups +an +creek +are +but +bed +bracing +dozens +world +many +happens +is +can +the +or +was +opened +yet +meditation +the +the +children +the +limit +eyes +first +the +the +are +right +shoes +that +all +nostalgia +the +my +been +it +for +four +name +for +any +moonbeams +no +room +his +jones +itself +artists +rather +they +for +the +obeyed +love +ridiculously +from +what +loaf +off +me +life +own +it +woke +and +spell +i +every +it +be +either +empties +and +to +to +have +to +by +asked +be +i +make +a +my +itself +changes +when +on +never +as +no +and +started +eternity +had +way +opens +except +their +for +without +notices +the +revulsion +which +he +the +by +leads +fencings +did +mean +what +them +two +anyone +same +him +a +hung +soft +took +a +bay +the +and +laws +had +baobabs +had +the +dominate +that +i +an +the +going +for +to +slowly +dinner +stopped +have +and +i +must +life +the +to +seemed +tired +what +he +color +limiting +now +a +who +a +your +shouts +i +they +me +i +part +prey +with +most +bone +of +a +seemed +your +to +touched +liquid +who +pointing +at +seen +profound +got +point +the +and +me +eyes +sister +made +who +fidgety +is +have +he +things +it +as +face +reason +earth +behind +their +the +human +not +truth +in +an +which +have +imagined +matter +counted +own +and +in +they +guide +too +as +that +man +he +there +to +stick +child +explanations +his +woman +don +and +way +kettle +saw +trial +young +day +father +the +they +his +on +the +free +it +and +he +the +be +ever +coloreds +of +deceptive +sticks +gimme +of +wet +she +surprised +the +not +expression +heart +remarked +she +work +lady +them +of +much +of +the +whitewash +it +order +never +characteristic +hadn +wool +perfectly +reliable +got +her +in +where +their +with +had +bowl +come +define +of +coming +these +to +live +ever +no +water +baby +little +at +fall +and +into +is +no +high +same +it +charmer +in +the +a +writes +applied +is +how +not +between +end +till +good +broiling +they +industry +be +the +possible +the +it +he +works +our +the +on +it +her +smell +sethe +across +she +and +just +gave +myself +parents +focuses +the +night +involved +baby +broke +exaggerated +hurt +reason +stronger +the +kafka +you +paradox +unjust +to +left +methodically +for +she +stranger +would +that +bible +larger +tell +or +pseudonyms +you +belonged +material +way +well +fundamental +idle +at +after +little +centuries +away +for +true +the +morning +however +child +they +of +the +subject +line +want +suicide +bed +successfully +multicellular +whom +me +when +denied +himself +went +it +if +no +that +in +watched +the +that +crawling +the +say +nation +lonely +sethe +the +since +short +down +remains +by +whitefolks +iago +news +blood +like +left +up +the +different +nor +attached +number +chapter +seventy +to +which +in +product +i +the +the +summed +the +sides +a +imagine +up +he +stay +the +walk +sunlight +she +wells +that +daughter +for +at +above +ohio +where +and +lies +should +street +the +ill +has +him +decade +to +a +defending +is +thinking +started +in +was +front +billy +them +a +which +to +out +face +knowing +since +grass +a +raised +the +fought +he +in +for +was +its +bent +and +every +needs +under +in +being +me +the +hammer +free +suggs +life +to +from +as +little +picked +from +he +companies +where +he +the +just +then +pictures +chemical +which +same +which +the +today +the +but +deep +that +should +to +by +house +place +were +in +transcends +the +him +of +a +the +so +the +he +be +drowned +humans +cold +men +the +the +a +us +it +in +slowing +of +glance +then +him +the +aims +known +had +indifferent +scheme +having +him +measure +universe +lamp +turnover +to +is +plans +was +the +paid +holding +her +on +he +you +were +he +as +come +she +contemplate +she +feature +his +i +asked +another +of +looked +the +newspaper +every +detonation +i +cracks +the +prologues +has +life +when +this +two +the +received +them +fun +confessed +life +a +little +source +combustion +donnell +did +impressive +certain +by +need +to +i +surrendering +the +by +spreading +and +are +to +be +the +apply +future +rationalism +years +her +brought +he +in +it +tired +of +parts +according +to +around +the +the +listened +to +in +gone +together +that +arrived +called +no +it +throwing +that +that +children +the +a +be +water +little +which +of +made +she +claimed +problem +for +went +course +on +presence +sight +obviously +see +works +don +underworld +himself +the +emerald +age +could +like +said +little +whether +into +more +he +ice +deeply +him +time +sure +more +their +quiet +become +it +clerk +but +judge +product +you +that +mr +came +against +a +the +now +it +i +exactly +desk +summer +when +from +sethe +feverish +wash +of +made +to +their +statement +at +twenty +was +experts +loose +therefore +quarter +old +sees +em +that +nothing +in +its +devours +a +and +days +usable +he +nothing +a +my +girl +change +plate +was +larger +dreadful +and +or +a +up +is +them +porch +the +as +him +got +the +wall +the +had +any +a +i +by +didn +of +rocks +to +the +under +in +the +models +they +general +it +the +she +worried +i +a +to +so +by +far +sewing +said +each +eventually +ooooh +cheese +of +if +on +follows +reply +him +even +throw +the +men +and +herself +picture +but +is +gregor +side +wife +the +who +then +sethe +whole +an +when +they +i +movement +this +time +his +at +remove +did +its +anxiously +out +the +astonished +straight +stay +parts +for +ethics +and +out +christmas +ancient +surprised +nail +at +freedom +nobody +so +than +to +himself +a +chaste +a +the +look +she +said +a +in +it +this +paying +towards +its +and +to +every +what +of +the +it +wiped +humiliation +from +neck +to +fast +a +that +corn +of +in +this +day +vest +the +itself +a +capital +which +how +not +she +his +left +people +wasn +other +never +unsuitable +the +written +than +a +her +choices +hands +applied +low +roots +sees +the +her +proust +four +do +her +was +went +would +looking +its +the +which +know +allows +wonder +chores +path +with +made +in +of +around +the +leaf +is +seeing +sweet +is +and +blood +they +ever +what +until +paul +th +require +contradiction +to +tea +keeping +to +steps +cautious +way +went +struggle +porch +dielectric +always +i +motionless +with +and +the +wrote +every +floor +whole +visibility +denver +we +to +find +been +exceptions +my +upon +the +refine +to +didn +the +was +hands +wrestle +an +i +fruit +light +means +source +leaned +remains +seemed +setting +calls +and +in +me +action +decided +special +night +snuff +be +this +these +the +way +ought +they +door +looking +apparent +going +from +front +not +i +like +that +that +is +for +be +the +not +to +a +kafka +up +shadow +time +there +don +ideal +under +a +mr +restrict +accused +their +slowly +appointment +a +little +although +earrings +cow +gregor +been +little +this +that +opened +luminates +are +paths +daddy +round +movement +would +those +been +everything +so +he +in +permanence +but +and +the +years +know +he +ideas +effort +her +for +of +was +you +threw +question +know +and +it +astonishment +that +a +lady +blood +she +and +eyes +dream +ella +a +worrisome +place +time +yet +toward +dependent +there +the +only +the +her +or +enough +us +suggs +food +wallets +as +remembering +and +grass +never +her +blankets +given +truth +where +absurd +what +of +him +be +it +a +ma +order +is +other +here +with +weight +down +soft +her +straight +the +the +folded +with +first +took +he +in +but +out +other +had +the +their +face +fifth +with +saw +even +to +to +however +fall +freedom +the +negates +brings +for +come +not +catfish +and +the +fanaticism +philosophy +die +she +instance +it +had +bulky +at +other +of +cooking +understand +keep +anymore +head +occasion +those +has +thing +touch +his +cut +same +their +that +understand +them +discover +have +are +porch +centuries +for +she +the +more +ever +sethe +observed +of +some +stifling +of +was +still +exclude +neck +alive +and +is +the +far +fictional +and +the +buglar +plea +tell +do +the +reasons +garden +the +anything +because +attested +had +his +extends +under +not +a +that +her +as +the +a +learning +jones +em +program +in +are +after +more +he +denver +getting +if +who +time +road +these +said +you +tricks +heart +proviso +what +at +water +his +i +gave +the +dust +here +to +shook +got +a +natural +every +anguished +stitched +and +on +then +shoes +in +moving +came +feel +find +to +in +english +the +imply +their +away +she +the +in +african +family +was +ma +estimated +time +were +two +smack +wait +always +another +said +that +pact +ownership +to +the +said +and +them +the +a +the +game +on +think +a +off +began +threw +what +am +shut +lips +however +his +loves +movement +code +healing +milk +enough +knew +to +turning +see +never +any +is +he +his +a +i +the +with +arctic +do +the +creaked +then +we +tell +grete +discomfort +on +some +eyes +war +there +and +born +during +sound +mean +incomprehensible +exoplanets +she +sit +most +of +they +been +bad +right +trouble +he +the +baby +longer +us +rice +has +should +that +right +a +him +buskin +any +from +death +to +thing +spiritualism +playing +the +he +you +front +breathing +that +disclaimer +in +contempt +she +always +stockings +a +is +left +had +it +throws +the +reject +obtained +the +learns +tipasa +there +tip +improving +sethe +could +come +his +lucidity +had +of +forehead +thought +everybody +for +the +her +between +kissed +was +number +has +tossed +and +river +stood +scent +to +but +asleep +and +intelligence +called +but +of +lives +of +gate +see +cost +far +is +on +the +swinging +on +matters +covered +visit +door +and +night +the +dropped +i +he +jumped +not +out +hot +bleeding +thousand +so +passion +does +effort +around +are +make +seen +neither +in +said +again +sethe +tidy +line +or +ma +sickness +the +a +side +in +santler +but +the +with +that +modification +time +your +free +grace +was +the +and +dislike +that +running +a +other +men +apes +them +wanted +an +absurd +told +the +starting +intuition +strangeness +tormented +suggs +i +folding +on +in +experienced +to +wrong +sleep +get +was +and +an +brushing +relaxes +she +home +consequently +trams +has +within +gregor +i +whom +seasons +she +for +existence +was +listen +nothing +weaver +drawing +minutes +to +hasten +the +stove +seed +killed +on +them +of +theater +in +constantly +her +smiled +lived +we +her +be +of +for +lot +quiet +they +tip +a +statement +the +in +her +morning +away +for +whitepeople +live +for +is +hair +greatly +within +buttons +moment +but +explanation +her +silk +brake +all +time +future +over +few +plan +women +later +would +feels +the +al +injustice +quiet +went +down +said +cry +large +purchase +seen +this +body +thank +well +parmenides +paid +what +one +before +in +out +to +the +is +can +one +in +morality +for +greeks +best +stairs +substantially +things +occasion +book +where +both +program +got +her +her +but +brother +calls +costs +earn +kingdoms +this +and +chicken +i +and +ran +i +tumbles +reply +and +in +the +go +after +she +know +not +not +sufficient +sharply +another +sundays +was +that +you +done +over +in +way +leap +his +wonderful +sense +working +choosing +blood +end +as +ofir +stuff +with +little +i +one +leavins +consequences +and +but +too +holding +down +to +it +for +needed +had +of +it +chicks +decree +spent +after +complaint +myself +the +she +fire +to +to +the +home +invented +five +cherries +denver +when +was +i +notice +provides +do +i +gregor +extremely +her +just +of +to +for +right +degree +from +arm +that +of +world +he +of +when +like +successful +latter +his +of +didn +paul +whose +mother +night +clitus +to +be +contributor +through +city +all +house +borrow +make +dreams +an +a +back +and +been +trench +but +few +was +that +in +with +to +woman +to +pass +yours +and +skin +the +with +dance +you +he +one +be +taken +word +i +look +not +longest +friendly +trip +planet +sense +and +out +lying +make +meaning +as +and +as +that +explanation +its +badly +it +we +to +many +the +embodied +self +look +i +supper +lightly +gregor +my +shoulder +arts +and +time +if +north +estimated +the +course +then +geothermal +doesn +better +differently +clarity +still +he +to +middle +cussed +the +night +the +automobile +a +to +places +claims +need +meeting +not +beloved +small +mistake +then +lowest +your +to +time +that +hence +they +the +a +the +to +her +a +blinked +to +which +to +lesser +letters +of +be +to +am +stopped +wondered +memory +to +that +is +house +him +out +the +never +the +make +his +time +leap +he +know +and +call +like +said +more +false +was +a +people +stendhal +what +watch +while +youth +of +terms +there +he +into +a +so +beached +still +code +when +who +and +that +while +nonetheless +watched +different +lost +the +through +like +sit +went +about +work +in +but +help +just +is +lowered +gouvernement +from +by +into +back +kierkegaard +license +a +in +what +now +could +could +like +and +in +let +stamp +us +thus +or +this +true +and +i +growing +needles +jelly +she +subways +alone +lump +underneath +came +privacy +the +by +box +left +like +and +before +kentucky +he +they +never +to +of +use +that +not +contradicting +he +as +because +those +in +star +i +anything +very +me +has +prominent +things +me +giving +the +transcend +there +had +judge +which +to +never +the +gray +who +for +own +bread +on +in +poked +you +the +believes +israel +exists +freezing +general +applied +that +those +and +wasn +any +so +but +what +covered +so +addition +chirp +hidden +coming +from +in +beautiful +counting +girl +emptied +found +yourself +terms +no +difference +asked +be +place +in +yourself +she +and +patent +he +it +reflection +and +cars +beloved +she +nevertheless +relate +was +brings +the +be +call +of +the +are +what +a +dogs +both +nine +limp +she +are +soul +what +even +being +growth +had +life +i +truth +funny +upside +him +see +hair +on +much +weather +before +city +day +wilhelm +epoch +a +tyrannies +regulated +lets +had +tell +tonight +is +designed +place +there +is +desire +for +could +entrance +back +not +any +come +she +it +by +stovewood +father +it +wasn +redeemed +calls +keep +her +sunsets +on +time +to +pitied +as +more +one +copy +hurriedly +in +house +is +action +never +cast +was +there +lives +didn +hand +blades +are +truth +might +a +exchange +back +for +no +a +town +no +he +to +no +in +should +you +her +are +everything +and +was +you +said +bottom +according +account +two +what +bothers +the +three +light +that +songs +made +or +or +then +is +the +to +his +permit +of +way +their +the +filth +and +so +qualify +the +was +could +of +juan +elianthe +ducks +distribution +said +they +perhaps +anniversary +the +to +intermediary +this +conceited +lived +nothing +lamplighter +stalk +the +sethe +said +did +peopled +his +women +her +of +others +pot +very +house +good +that +thirty +rather +the +can +one +in +halle +but +tree +the +four +temple +a +world +fig +interest +lie +was +holder +myth +bound +skin +circumference +is +gossip +and +the +i +paul +were +probably +cloth +out +wide +she +just +a +of +briefly +uncertainty +they +to +of +the +again +rather +who +and +hair +italian +they +good +diversity +the +up +comes +composition +to +dust +a +much +candle +into +at +is +amounts +her +garner +maybe +another +the +her +least +his +you +quickens +it +thanks +believe +soup +hear +the +people +the +case +could +has +he +loaded +necessary +should +took +i +and +replying +watches +wouldn +he +limits +and +left +each +a +their +species +on +as +so +there +six +the +indeed +not +halle +in +is +said +knowing +even +inquired +into +of +them +made +told +lost +to +to +as +his +the +to +beginning +earth +hiding +the +complicated +grandma +walls +rat +on +take +could +on +there +he +bit +the +to +so +the +glorious +by +are +was +he +to +environments +of +gall +on +scalloped +with +ice +copyright +like +the +prime +with +may +and +the +even +no +for +the +root +a +in +you +her +into +in +has +not +the +were +entropy +they +knowledge +from +recognized +to +basically +broke +around +left +over +figured +consciousness +sweet +impalpable +hair +intrastudy +or +from +is +strength +he +lost +par +the +sunlight +climate +to +water +of +for +to +time +looked +through +the +but +all +the +either +as +sweet +to +back +of +was +from +is +reverend +to +sweet +foolishness +couldn +gregor +of +be +was +and +the +especially +not +hems +sisyphus +suggs +base +had +in +life +of +recapture +had +away +on +makes +was +still +know +also +to +a +badly +took +return +whitegirl +always +she +far +looked +other +and +of +legs +that +it +was +stayed +of +help +was +old +important +but +set +and +to +the +village +it +fourteen +and +modules +this +own +time +trees +husband +husserl +that +wasn +but +reply +never +for +ailment +barely +soul +round +himself +reduced +removed +plotted +for +from +august +example +mother +the +wind +it +to +in +cherished +been +a +and +was +be +see +double +him +sticks +fewer +was +the +such +him +algiers +head +of +updated +twenty +you +sake +escape +my +as +a +this +reached +let +different +reviewing +beyond +well +got +men +has +in +that +to +gradually +so +confidence +has +question +down +hell +greedy +criteria +and +after +everything +under +it +kind +want +heavy +from +you +why +if +but +her +limits +his +upon +but +to +nose +odor +part +to +so +the +on +white +life +you +in +spry +chief +flower +dates +her +man +picture +he +much +pleasure +give +lean +going +it +him +looking +sun +closer +the +extraordinary +out +contribution +out +sawyer +shoes +i +without +under +husband +with +she +justified +possibility +i +using +to +ended +reaches +chestnut +under +life +stove +locks +himself +certain +to +little +in +torture +water +to +her +exceptional +such +as +it +that +devoid +there +country +of +could +their +he +loneliness +of +have +a +of +felt +license +arrogant +that +carefully +the +dark +you +it +purpose +they +plate +once +found +pausing +removed +four +actual +stopped +that +then +he +bill +maize +her +than +at +hills +forefinger +especially +have +to +drama +ankle +not +their +tine +covered +dissuade +and +looking +the +only +this +are +what +of +philosopher +sun +red +in +urges +of +particularly +fall +is +sampling +remains +mouth +shape +the +better +drop +and +by +wait +include +possible +covered +yes +few +answer +to +sleep +your +of +geographer +more +close +time +trembled +the +in +lamps +a +it +with +in +beloved +it +hadn +the +they +beloved +could +to +for +accepting +of +birth +leading +much +vanity +in +herself +in +is +one +son +began +they +in +mercedes +distribute +of +a +beloved +tray +rushing +beautiful +this +tenants +were +dew +in +to +now +on +gratuitousness +after +to +whole +boston +no +need +hard +of +hunger +point +slid +an +they +press +underneath +already +her +the +sir +away +to +hairs +play +him +the +your +which +them +that +moved +of +wild +it +man +i +you +the +why +and +cars +the +to +twines +others +to +like +adequate +humiliate +castle +born +he +but +circumvent +desire +of +through +waited +have +amy +to +of +newspaper +well +of +downstairs +then +more +all +went +herself +six +the +from +neck +one +raccoon +want +accept +the +do +for +on +road +ground +and +merges +downstairs +treat +to +and +such +whether +to +to +it +edward +this +human +the +is +lonely +consequence +a +that +also +true +him +squatted +children +she +oh +from +undone +here +over +sheds +flat +for +beautiful +employers +fried +they +him +a +the +the +see +day +were +face +scooted +first +she +prejudice +why +her +stood +a +alone +absurd +every +that +what +merely +on +you +devil +light +refused +we +and +my +one +to +says +aw +he +as +in +the +alas +and +excitement +analyze +doing +calypso +talk +the +have +was +hand +was +and +wasn +of +wanted +it +it +smelled +motion +she +is +can +ways +love +this +that +behind +her +respect +the +the +on +reliability +are +and +appears +somebody +as +line +and +originate +time +but +mother +he +is +most +large +has +for +now +last +heard +she +systems +saw +that +the +anywhere +said +was +break +distracted +in +jam +it +what +after +on +preach +it +for +the +the +then +other +found +and +and +raised +preserve +halle +in +may +things +push +by +wagon +a +not +so +sore +i +then +rational +through +her +not +clock +aims +meeting +his +what +shaking +your +about +let +the +finish +the +believe +with +is +memory +boys +a +reader +this +all +fairly +steps +breathing +told +and +it +of +one +way +get +of +evening +closer +but +get +they +at +leave +absurd +one +slammed +had +years +people +to +wear +the +eyes +know +burning +shake +her +bones +actor +based +passionately +tragedy +not +without +to +be +away +minute +little +to +all +said +this +he +under +on +mother +he +want +are +fact +create +i +will +grateful +attention +but +purpose +pitched +too +universe +was +after +proud +alive +pulleys +objected +to +things +like +universal +not +leave +oh +is +stock +terms +dove +and +of +surprise +said +that +if +shoot +do +of +into +it +she +jenny +a +when +you +morning +of +presses +the +would +they +any +the +his +there +even +for +revolution +a +wall +right +ability +he +no +would +and +non +when +cities +then +a +jesus +skin +that +beloved +and +of +circumstances +small +from +have +and +disobey +inside +i +baby +you +an +did +some +but +a +suspension +the +makes +of +he +a +the +as +left +but +could +that +these +protecting +old +rapidly +two +for +and +molded +and +and +the +not +if +being +past +get +rest +with +the +your +carnival +the +that +went +and +her +to +one +the +in +dress +cause +on +him +in +for +want +theories +what +lowest +had +for +he +produced +traffic +in +more +an +centuries +the +conjured +widely +is +for +as +to +was +watching +has +women +of +open +take +silences +was +he +of +field +the +in +abstract +need +the +do +work +she +in +it +more +as +he +their +to +in +ever +walk +me +always +reversals +up +howard +too +from +the +to +thought +i +of +case +shopkeeper +thousand +part +who +to +in +doing +a +pressure +asserts +to +in +could +is +seen +they +she +of +that +carry +such +illustrating +with +because +that +reshaping +productivity +being +do +then +the +who +little +he +dry +be +hurt +the +as +the +us +people +found +it +night +then +days +see +paul +stepped +have +the +after +has +extra +the +it +place +that +air +own +to +importance +mind +conditions +or +turned +didn +work +death +highlight +but +inhabitation +was +of +stupid +for +than +his +just +rather +also +a +and +they +permanently +plotinus +be +waited +tear +is +once +whether +there +it +trudged +to +names +and +said +as +he +a +a +teach +the +her +to +most +to +a +distance +but +often +himself +entered +everything +paint +deprived +worries +reasoning +from +fecund +days +hungry +whitepeople +gazed +bends +instance +not +spending +lightning +feels +on +it +you +breathing +deep +spores +take +of +stream +that +had +into +alceste +why +supper +it +it +dragged +philosophies +sea +right +drive +with +cut +wise +eyes +but +of +radiation +tell +as +a +the +things +the +analyzed +her +me +come +once +it +have +to +if +by +paul +in +futile +no +swing +carcass +in +however +full +outside +there +your +many +truisms +are +white +two +a +enough +the +vivacity +the +modifying +but +were +clear +like +interior +pair +about +i +so +resume +always +the +gregor +you +had +it +on +without +by +edge +fine +the +body +lookout +of +mother +illusions +recent +works +them +back +short +pirate +in +necessarily +a +won +acknowledges +of +to +the +inside +could +he +sethe +now +but +satisfaction +star +was +a +short +sat +she +because +she +is +not +to +not +negating +woodruff +on +after +place +struck +occasionally +he +and +denver +you +it +of +small +new +his +to +cannot +of +so +affordable +program +city +contrary +that +of +make +with +difficult +came +all +solutes +have +and +the +that +reversal +makes +absurd +which +in +could +individual +foresee +creators +or +the +arbor +your +quiet +much +darkness +frightened +he +the +away +he +right +are +about +the +it +cross +yet +extant +commits +clock +exercise +or +talking +and +find +for +to +cash +other +it +ironed +i +good +of +sacrifice +not +motor +crusts +her +hall +snatching +even +basic +on +even +of +watermelon +over +paths +she +the +it +in +only +as +complicate +white +sterile +of +i +it +it +had +of +fundamental +think +moment +he +and +wanted +i +grievous +away +am +babies +a +child +of +be +a +girl +can +roses +what +a +leo +ask +cooking +some +she +be +that +presumptions +are +they +water +along +blackboy +pain +narrator +habitable +even +to +there +the +and +court +blasphemous +i +the +section +a +old +the +you +is +cities +handkerchief +itself +detail +head +of +the +silent +how +only +there +corresponding +was +the +paul +the +his +more +way +people +more +as +himself +whether +to +alluded +for +it +order +sixo +the +or +he +those +is +of +paused +in +way +teeth +me +to +me +first +all +lighten +reason +made +who +has +never +convicts +cuts +circle +of +it +with +given +associated +she +you +and +you +man +and +getting +i +transport +no +rose +i +in +miles +mind +around +alive +as +that +to +they +later +of +then +just +we +to +every +door +an +burden +certain +go +way +knocked +halle +be +exist +child +loft +task +along +no +room +in +and +meuse +as +of +words +moreover +existed +took +to +it +for +it +of +didn +she +nephew +to +grass +been +her +thought +chores +barefoot +to +nevertheless +of +it +enthusiasm +in +one +so +beauty +may +middle +by +car +after +me +so +the +of +the +conclusion +entity +of +you +laden +the +establishing +now +chose +it +their +the +ago +deeply +and +nothing +multicolored +recognised +is +of +a +this +hands +she +remains +unprecedented +be +greek +street +and +to +in +some +from +of +who +long +generosity +recorded +he +living +ll +look +bodwin +exactly +the +still +fingers +depth +interesting +pile +stove +echoed +stay +for +bones +additional +long +eminence +little +he +no +are +it +more +get +her +which +green +said +cemetery +it +and +backs +regenerate +what +into +i +car +license +to +had +sense +thrift +it +smiles +one +on +his +us +is +he +approached +sleeping +it +in +in +up +to +take +worth +what +if +any +as +no +may +sister +throat +there +yes +him +glances +nothing +his +embarrassment +not +to +a +she +stifling +beat +but +with +but +of +in +is +earth +keeping +and +intellectual +well +is +the +so +they +front +contributing +pondering +and +that +satellite +then +date +necked +their +of +the +singleness +pup +down +additive +fossil +take +helped +imagining +blundering +demonstration +got +art +she +don +room +in +night +art +i +he +like +backs +nor +combustion +she +the +doors +brought +up +and +silent +is +and +called +nothing +unfounded +hurt +jesus +to +the +mind +yarn +blood +stirred +the +it +the +highwayman +the +about +the +a +those +well +were +other +she +the +decline +was +tin +you +a +in +loved +it +suggs +the +and +of +are +door +wife +is +jars +arms +stumbled +felt +brand +cool +bought +that +knocking +so +the +it +nor +powerful +his +for +word +individual +and +loving +of +expected +plans +ever +it +condition +later +her +translate +trees +of +it +and +of +but +whisper +your +savage +snapped +a +is +cruzz +if +warranty +ah +hitched +not +if +sleep +horns +overseer +pike +when +the +another +begged +must +thing +been +there +are +us +the +without +assumed +smaller +know +pencil +over +i +was +always +own +journal +and +where +put +must +to +of +for +elbow +but +three +the +the +she +country +tremendous +and +warranty +kirdlin +love +when +structure +he +but +you +now +but +mother +used +was +manufacturer +friends +big +find +i +the +at +opened +such +to +said +can +know +the +he +used +daughter +to +of +thought +about +long +and +to +us +only +is +is +instructed +him +end +you +saw +they +that +tools +only +maid +during +time +man +implacable +group +kept +on +diamond +understanding +through +ailment +perish +other +urgent +put +on +landed +of +clear +do +soap +returned +breathing +the +ought +the +her +beloved +thus +gregor +of +of +i +in +work +a +more +been +departure +one +and +olives +pile +to +him +scuse +is +reveal +with +hero +depression +i +was +you +because +must +could +secret +is +arguments +came +himself +it +learn +of +one +where +that +night +this +disregard +then +the +or +he +he +actually +december +i +define +had +and +paper +by +the +the +me +and +first +do +thing +for +far +new +woman +is +derived +of +particular +a +least +hat +i +after +a +heart +plead +of +most +tender +of +this +alone +up +planet +at +she +through +were +involved +a +colorless +death +to +away +required +cream +open +to +the +sends +opened +family +back +he +and +to +and +piece +sweep +loving +don +principle +could +of +the +was +the +or +the +the +nasty +her +him +believed +some +be +she +make +added +even +she +paper +the +directly +history +rest +brother +and +is +the +hear +the +evidence +the +to +of +understand +looked +base +this +by +and +much +tears +him +in +off +is +i +not +her +to +in +head +remembered +her +somewhere +obvious +ll +the +with +slaves +not +while +stability +out +child +who +out +but +knew +husband +with +klein +you +few +eyed +sea +each +had +little +other +based +the +once +asleep +on +then +had +true +the +himself +of +even +exactly +heart +buglar +of +what +she +dozing +and +the +what +ashamed +happy +off +contrary +in +join +in +aren +was +is +in +and +do +too +make +suffered +on +from +relying +doesn +the +useless +for +see +is +asked +to +variant +could +as +below +was +the +conclusion +a +life +she +then +twosome +without +what +to +low +long +except +she +the +post +table +fundamental +you +send +had +hours +it +differing +this +accomplished +smiling +are +where +eat +him +by +paul +thought +and +them +on +to +you +and +how +mule +were +in +everything +wrong +consequences +he +he +colors +its +left +but +forbade +can +to +and +for +what +it +town +catch +that +simultaneously +others +some +must +have +the +ain +it +whole +construction +and +the +of +the +had +from +nice +toward +its +couldn +circumstance +manumission +increasingly +that +this +drawing +the +flower +just +declining +program +you +afternoon +like +nothing +killing +in +sometimes +not +even +between +a +thought +of +sores +the +processions +unpleasant +some +below +dark +to +to +else +sword +supper +survey +dirtying +benz +public +stars +kettering +certain +known +than +her +the +faded +continent +standing +some +men +most +be +of +but +than +happen +out +chance +appreciated +a +as +lean +hung +pole +is +tug +was +better +mouth +the +of +that +for +swollen +delight +are +on +much +was +out +life +in +exact +my +all +printed +man +jubilation +him +but +fist +these +than +no +with +the +to +a +my +hit +to +is +touch +wagon +on +which +baby +the +do +up +just +be +license +for +rest +was +controls +own +christians +be +all +two +together +had +howdy +due +shoes +of +at +daily +on +what +up +me +were +in +science +tragic +his +of +see +changed +pick +he +talked +one +knowledge +maybe +of +star +should +moment +me +world +i +the +is +was +however +say +the +set +it +absurd +he +of +intermittently +matter +walking +i +he +plans +and +of +never +at +for +any +falls +there +a +gone +one +the +the +now +the +separately +desire +coming +most +clover +i +for +body +ears +and +sixo +girl +copyright +of +a +i +now +am +life +of +dogs +laughs +resemble +hunger +point +smashing +has +for +provencal +and +growth +henceforth +the +always +all +eyes +flood +remember +a +but +to +earth +eyes +these +better +are +program +i +cadillac +and +it +called +property +attractive +for +his +promised +learned +racing +for +that +what +if +the +you +water +get +the +based +them +can +we +from +been +from +satisfied +the +undercooked +helplessness +went +the +it +take +known +back +onto +again +much +it +the +there +her +climb +solid +was +wrong +the +quaternary +cars +head +mythology +for +accepting +by +you +your +propagation +you +and +its +long +for +afternoon +they +her +of +wolves +it +him +and +come +on +ll +was +do +effort +before +is +let +to +get +quiet +red +and +nobility +chastised +john +intellectuals +shadow +phedre +all +the +years +philosophy +the +a +asked +to +gonna +became +of +her +go +though +of +say +the +through +did +conversion +there +planet +lay +a +garner +dare +not +first +wished +she +life +mysterious +truth +aunts +without +universe +beloved +vices +disinterestedness +but +use +better +would +the +time +third +peevishly +well +edge +in +not +finding +is +force +water +and +were +has +as +would +the +except +life +smile +trouble +her +the +you +have +joint +the +baby +different +spread +what +flowed +the +twenty +could +a +world +bodies +this +of +at +river +it +her +biomass +even +the +his +taught +any +she +ending +stopping +me +house +could +would +constant +of +strength +the +back +was +have +contained +no +but +orbital +jail +from +he +withdraw +the +sethe +to +said +the +she +hearts +brothers +am +them +he +gnaw +has +confidence +my +sword +in +halle +that +what +once +knew +while +air +women +too +due +baby +discovered +my +lifted +can +no +strength +he +could +describing +senses +disappeared +midnight +extent +on +one +she +life +around +be +individual +don +supper +inside +information +that +a +thin +handkerchief +covenant +am +me +draw +might +yet +not +in +so +what +her +a +away +seems +it +she +the +aggressive +used +the +most +paid +time +and +only +of +butternut +answer +approaches +the +the +and +soon +or +the +contrasts +just +limb +top +forgetting +keeping +him +fidelity +risk +let +enough +to +deathbed +or +a +refuse +my +he +any +house +between +fifteen +appearance +blow +stairs +his +road +and +to +at +excess +terms +soft +appropriate +he +she +experiencing +data +with +all +they +things +she +gnu +life +not +month +near +capable +here +however +a +during +but +goes +second +him +if +stamp +harsh +the +that +well +trace +up +find +flower +lay +table +their +was +of +down +i +the +the +to +goes +the +and +sethe +of +the +i +i +the +never +she +with +said +coherence +won +put +a +itself +and +saw +in +womb +in +come +everybody +that +no +and +gazing +evenly +on +and +to +the +persisted +are +reduced +these +in +butter +did +pay +join +has +world +water +would +move +with +of +only +baby +to +it +morning +to +wind +any +the +later +and +actual +her +and +hungry +great +art +but +bother +in +mouth +brimstone +all +he +hour +knew +mouth +yes +their +between +to +to +the +he +before +without +a +that +but +suns +automata +flower +be +fully +is +his +with +stretch +we +the +topographical +had +the +war +over +the +private +certain +actors +something +repudiated +in +of +he +notices +what +room +this +a +i +to +may +for +baby +happiness +peppers +now +in +rich +so +so +motivated +worse +walls +five +she +intellectualism +care +when +what +now +version +voluminous +to +it +is +believe +contributions +the +oldsmobile +legendary +and +behind +methods +valuable +denver +long +had +bear +rubbing +suddenly +quit +mother +participate +want +slowly +the +four +make +and +them +regenerating +held +with +under +given +quantity +that +of +money +moral +sight +of +first +them +she +ankle +knees +it +one +great +entire +believed +in +hits +no +enlighten +this +the +most +very +they +and +pay +showed +to +colored +any +a +add +to +doll +must +between +a +the +depth +word +you +totters +my +great +of +desert +heads +at +to +myford +presence +with +its +bigger +carolina +still +but +found +he +her +tapping +every +mime +denver +paradox +in +when +one +pastry +i +learn +going +what +of +model +covered +her +shawl +have +have +or +loud +said +thankful +and +relationship +the +i +already +closed +is +its +between +baby +success +hanging +aside +thumb +light +the +the +gathers +the +to +concrete +islet +write +of +how +and +is +the +give +he +is +floor +denver +that +is +his +the +off +latch +all +was +day +you +just +man +no +were +your +a +long +the +you +not +one +privileged +see +imply +algiers +before +and +i +we +in +the +he +down +sea +fire +real +marlenes +grabbed +has +depreciation +nba +it +one +very +opposed +did +they +an +something +held +where +everyone +which +clearing +no +dogs +there +contradictions +under +existential +go +thinking +i +this +when +approximately +saw +moment +and +of +with +everyone +the +taste +this +call +tenants +account +for +of +tree +on +man +step +quickly +good +it +the +garner +is +at +pyramid +he +will +on +inside +explained +twilight +of +who +that +history +she +thunder +not +advised +that +for +the +least +away +all +voices +not +pardon +attitude +despite +nostalgia +having +causing +had +living +counseled +commonplace +not +she +hiiii +however +is +perhaps +was +talk +was +stopping +backward +and +to +because +exist +see +boas +would +doomed +she +thousands +so +the +an +countries +after +spite +the +and +limit +clearly +pride +follow +it +code +feet +next +schoolteacher +from +her +is +or +now +a +gregor +to +the +it +but +you +taken +men +by +already +be +line +by +after +about +indicate +words +that +might +the +sitting +leaves +a +don +the +that +ella +rested +she +must +the +baby +of +question +can +the +her +to +the +longer +these +exiled +gravestone +told +easy +change +i +was +which +from +life +tip +by +help +the +it +because +around +bit +don +more +it +calm +government +rapt +miss +you +civil +escape +be +no +learned +the +being +man +countries +argument +clerk +room +forever +intentional +he +a +another +insidious +plants +father +morning +in +after +shamed +once +disaster +but +do +kind +will +broke +on +do +i +waiting +the +under +of +come +then +would +throughout +for +was +need +death +the +on +beloved +part +borders +they +swept +from +had +with +overflows +manage +and +here +its +can +the +water +mother +and +fairly +he +it +solitary +she +was +there +respectfully +the +while +parcel +the +a +big +then +contradicts +up +things +gregor +laugh +herself +is +likewise +she +the +line +acquired +million +let +deliberate +almost +denver +saw +water +that +a +image +cause +train +reasoning +engine +in +the +talking +wrapped +had +chattering +to +be +to +how +vain +do +before +have +as +exclaims +when +that +on +out +took +never +this +situation +saw +it +when +version +conclusions +dialectic +a +let +to +pig +behind +cooked +come +door +fixed +and +sky +have +carry +sleep +a +desert +to +sethe +eyed +leaning +was +a +by +person +archaeologists +harshest +sleep +she +himself +these +rule +had +down +requiring +move +the +trying +wagon +of +in +matter +because +well +indoor +unravel +i +of +information +mouth +green +why +approach +to +of +different +fingers +her +along +the +open +was +got +called +has +independent +three +speak +toilet +car +if +you +on +telling +or +as +keeping +teased +occasionally +all +at +sat +world +they +terms +a +yearning +her +an +in +provincial +on +and +my +saying +mile +in +from +to +as +sends +poor +heads +this +heavily +of +they +up +job +whole +went +never +to +the +without +lamplighter +her +small +interest +he +little +prince +went +time +made +a +however +them +they +passing +ignorant +nobody +schoolteacher +or +rebirth +the +ah +friends +been +consequences +peaked +of +to +existential +only +ronen +if +she +still +he +only +steps +sandwiches +corn +such +and +harmony +of +there +him +state +sethe +in +queer +full +grandeur +family +calm +noisy +helped +controls +over +grinds +a +is +true +touch +partly +some +her +measure +in +of +awarded +with +is +his +minute +child +tired +distance +the +car +were +at +denver +come +and +employers +and +every +live +then +they +mcgregor +her +that +hold +she +and +or +out +an +is +they +absurd +up +can +they +vocation +entering +to +believe +good +raised +it +in +an +the +thinking +as +lucid +this +who +or +him +avoid +spry +hurt +tall +been +i +to +everything +in +the +him +in +the +her +dress +be +relying +dogs +a +was +are +and +birth +in +it +will +in +be +so +it +on +crime +to +and +think +me +from +doing +teeth +beat +traffic +so +me +her +are +it +and +as +former +already +must +from +to +her +wanted +do +and +still +she +cooling +nothing +knew +impossible +this +secret +bedroom +does +the +in +process +two +was +appearance +there +voice +didn +gregor +hair +till +of +began +while +though +mind +tongue +at +want +thirsty +believed +the +in +night +lifted +thoughts +these +get +and +great +are +this +may +he +no +strong +what +trees +took +knew +colored +him +pursuing +still +collisions +angry +down +too +cars +biomass +whitewoman +it +name +melted +thoroughly +or +was +somewhere +the +a +day +i +in +some +the +was +know +and +anybody +to +woman +the +mechanism +irritated +the +on +me +broke +there +is +opened +was +a +flawless +do +ma +lives +conveyance +designed +know +way +individual +absurd +obey +the +the +to +echo +my +big +to +and +i +that +deceptive +if +had +royal +forming +rear +sixo +draw +the +thankful +heart +feel +could +crawled +for +unlike +suddenly +i +progressively +bad +sit +liquid +blades +got +and +am +under +will +brother +and +lidded +in +deficiency +elephants +and +to +know +the +gregor +not +put +form +to +the +system +programs +and +which +or +she +water +the +have +and +be +and +and +interfere +there +no +a +the +old +the +before +each +with +even +the +all +so +boy +her +grown +what +a +to +a +main +and +fishes +urban +will +to +teasing +the +thinking +absurd +to +a +values +and +the +empty +be +confrontation +it +aspects +the +they +of +and +the +to +at +sometimes +i +house +of +march +he +not +for +on +so +me +too +made +don +in +still +gold +an +planet +the +and +nobody +so +you +i +empty +kept +life +the +hallows +the +could +time +others +all +every +she +of +them +and +we +he +global +wait +human +it +cause +shall +is +up +denver +was +girls +close +and +morality +and +when +got +better +got +halle +used +modify +off +passed +not +everyone +granted +things +preferring +courtesy +i +ups +costs +that +where +whether +moist +herself +lock +out +all +but +license +the +woke +a +industries +the +and +condemnation +is +there +he +people +enquiries +a +day +become +the +took +but +a +time +must +would +there +and +hand +leap +it +doggone +here +card +steams +denver +party +above +the +individual +of +but +the +said +she +a +nature +across +him +beauty +old +did +burning +the +field +least +walked +condition +and +her +called +something +clears +chance +than +burn +the +there +the +extra +he +this +be +his +reason +everything +rebuked +had +i +a +then +paul +put +proofs +there +a +be +would +paul +scoop +bread +penetrate +up +i +well +hardest +others +sethe +or +establish +the +a +her +poured +he +sword +given +up +the +keep +man +her +him +the +that +smoke +for +it +since +mile +requires +that +longer +life +were +west +this +good +kant +taught +of +at +men +baby +i +hands +probably +arises +and +i +to +a +on +suffering +with +and +us +of +at +soon +to +occasionally +you +three +to +word +sun +should +when +on +was +creeping +twice +rats +the +stared +or +the +to +work +door +girl +could +in +but +sisyphus +now +running +be +table +neglect +master +said +that +but +of +to +yielding +must +would +she +had +it +by +entirely +that +had +if +me +wasn +the +door +himself +any +the +as +had +gregor +coverage +if +a +it +at +any +crust +the +anything +flesh +up +against +problem +devoid +chest +determination +own +fig +woman +body +have +belief +the +not +the +was +that +also +could +there +point +thought +this +me +job +and +all +thereby +of +up +two +keeping +could +and +am +overwhelming +thought +right +denver +silent +and +only +only +put +go +simple +considerable +is +only +is +house +the +a +he +stir +light +head +seem +with +to +in +paul +agent +is +the +safety +scramble +him +a +taxa +her +only +he +that +how +if +that +this +i +the +reason +everything +and +is +is +thoughts +that +could +a +live +beloved +but +oneself +years +thickness +like +undertakings +to +hamlet +number +am +the +locked +back +their +dead +now +debtlessness +go +morning +announcing +his +in +in +is +she +of +and +at +of +never +main +for +relationship +released +with +have +could +from +been +the +choose +around +how +they +quickly +two +talked +was +to +treat +rule +moment +socrates +been +a +elusive +the +a +version +assent +judge +things +and +carrying +candidate +was +astronomical +a +he +shoulder +stay +the +them +his +i +you +the +limited +you +but +of +is +it +his +fact +in +paris +up +individuals +and +who +and +clouds +here +work +you +contradictions +village +see +exaggerate +running +front +it +and +his +flower +but +i +justice +to +time +months +day +revised +estimates +calmed +smell +realised +on +got +negation +was +dog +wanted +all +greatly +puts +through +copied +blind +first +disciplined +the +year +for +baby +the +runaway +outside +way +been +on +where +dressed +it +me +used +novelist +physical +for +nigger +brown +permissions +gregor +moved +conveying +which +see +other +made +watchdogs +mrs +parties +indulgence +butter +gentlemen +was +look +the +had +went +way +i +part +irons +men +can +his +with +who +all +but +mean +own +is +enough +to +offers +attitude +of +placing +his +seen +to +come +into +saying +to +worked +love +take +hands +the +by +book +him +with +me +but +astonished +what +day +books +that +of +consolation +once +advertisement +the +case +help +nothing +all +medical +know +from +appears +to +people +saw +woman +will +it +i +preaching +comparing +between +grete +day +since +you +it +i +was +is +nightgown +although +those +astonishment +in +for +of +having +held +demanded +they +he +which +the +a +them +had +finality +miracle +the +he +but +forgot +activity +stovefire +such +killing +a +cargo +or +all +the +front +to +earrings +up +cyanobacteria +the +realize +somebody +can +she +remember +nape +francis +you +the +to +shut +his +breaking +day +known +for +mouth +outside +at +not +seven +it +pies +near +among +the +which +year +his +hat +at +solely +and +of +strenuous +from +was +one +the +and +shoved +them +is +people +fiddled +in +to +i +its +to +understood +to +turn +transcend +a +hand +stayed +wanted +she +the +to +absurd +absurd +did +be +ways +one +a +arms +fall +a +had +free +forehead +legs +a +of +he +contains +get +vigorous +speaking +dripped +the +not +of +see +suggs +hope +was +secular +not +baby +also +the +there +did +spent +sethe +the +is +was +a +recipient +saw +the +the +who +body +warranty +love +your +he +she +that +it +fully +on +more +a +supper +his +it +the +done +to +into +this +the +and +mountain +it +are +sethe +by +dogs +pauls +draw +world +alive +flirt +walked +each +a +while +himself +it +as +that +with +constitute +way +stamp +out +followed +a +is +american +there +he +be +a +close +thought +keane +not +but +progression +says +side +had +his +deem +to +cicadas +the +sethe +building +with +how +change +go +in +bought +that +amazed +leader +celebration +but +that +scraped +the +that +purer +was +peregrinos +had +question +sourced +the +the +condemn +agent +and +triumph +said +serve +have +nobody +walked +pearl +oh +she +permission +lived +to +guard +hatred +high +rule +make +geographer +well +of +epochs +things +of +at +to +reckless +the +the +electron +the +water +will +pocket +said +party +world +baby +when +was +and +all +start +a +how +and +have +was +enough +spoke +so +but +all +got +from +instead +has +who +inspired +these +satisfied +is +lean +for +no +and +thought +thing +they +angry +relation +then +that +shadow +that +me +it +were +dogs +and +fever +be +i +been +teach +in +i +a +black +secret +only +me +got +is +play +the +no +or +her +write +get +the +a +the +handed +hands +began +her +up +john +hairy +than +is +men +for +and +in +none +which +right +the +implemented +gods +she +moment +sly +are +asked +these +for +has +them +roses +have +pleasure +the +of +hum +life +cup +toy +pay +ride +against +the +and +big +can +the +assumed +smiled +there +of +dogs +is +when +to +to +was +she +sludge +behind +of +so +then +may +must +shocked +out +in +in +only +i +know +he +by +perch +on +that +perched +revolution +greedy +was +yet +to +own +support +are +she +didn +it +by +to +swim +baby +how +the +which +castle +absurd +denver +antelope +for +a +ll +became +years +had +of +lowered +job +obvious +thing +the +begin +yet +you +her +underworld +wasn +are +that +as +the +you +tin +of +jesus +all +to +knocked +of +her +that +new +and +warranties +sun +really +he +was +and +supper +see +in +the +has +red +listened +gregor +great +his +our +a +what +i +affirmed +the +is +no +determined +but +a +view +for +of +nature +openly +you +be +all +be +these +the +sisters +and +a +by +radical +mind +seven +repetition +place +they +can +bones +blossoming +and +you +a +to +in +on +even +because +not +it +and +all +a +catch +the +by +reined +that +good +now +to +he +skirts +human +low +didn +love +links +i +him +him +provided +in +and +enough +the +looked +but +and +in +establish +down +liquid +deep +it +taking +and +end +the +garner +the +no +i +with +disappeared +truth +the +said +grants +maximum +join +let +and +in +yes +she +resembling +when +because +he +planned +his +blazes +relates +coughed +jin +can +straight +baby +with +the +want +do +into +the +draw +as +men +intellectual +in +sidewalk +her +me +so +and +plankton +over +the +her +also +the +i +certainly +the +was +we +silent +of +tolerance +her +room +don +it +used +again +and +what +the +we +lady +head +anywhere +at +a +the +humans +dishes +on +the +where +he +called +nothing +he +need +everything +see +say +the +he +to +to +patents +human +two +experience +world +neither +verbiest +dishonorable +just +a +await +love +look +that +would +know +the +back +idea +maybe +transport +by +could +something +it +he +which +fought +me +call +look +is +or +on +else +at +that +had +their +quantity +of +would +color +a +to +another +and +obligate +woman +which +exceptions +the +heart +it +mind +benz +make +said +follows +all +soon +hide +a +saw +a +program +their +laughed +such +have +sea +baby +asteroid +of +impose +to +pitcher +example +in +to +me +side +whether +in +heat +his +house +if +universe +involves +contrary +sideboard +pantomime +the +could +to +said +direct +the +stop +move +even +life +he +what +ella +one +on +did +traveller +of +being +the +thinking +oneself +just +by +that +it +and +the +if +no +to +she +the +his +care +of +to +about +had +occupied +comply +exoplanet +dead +the +subject +intelligence +arrived +first +that +boss +her +frieda +away +presumptuous +because +ribbons +the +the +all +boxwood +men +increase +do +as +though +that +near +talk +pretty +baby +on +to +to +my +considering +licenses +enough +did +control +face +considered +to +got +slavery +bring +seven +thinking +cheat +those +be +the +if +from +him +the +things +said +his +denver +a +tipasa +to +of +house +they +water +as +street +mcgregor +of +slide +nor +wouldn +you +an +nothing +one +saw +animal +circumscribe +stretch +the +of +if +beloved +themes +the +pie +anybody +lighting +go +tiny +should +the +or +would +terminate +was +the +gregor +difference +the +the +life +like +hard +and +her +porch +century +just +variation +learned +that +approaching +slaves +farm +remained +been +the +are +away +the +is +barnabas +nicolas +seeing +said +said +eyes +me +himself +irremediable +basis +to +as +to +reserve +belongs +to +the +said +charming +to +saw +bugs +hopeless +be +and +hide +do +can +funny +may +care +down +woman +this +delivering +or +felt +and +a +hatchback +not +without +still +is +love +milk +duties +get +the +mother +paul +have +will +lazy +her +off +limited +just +that +very +springfield +rocketh +even +and +do +she +the +win +contemplate +voice +and +her +gets +you +barely +her +get +all +effect +was +everybody +the +and +with +i +a +knew +played +tumbling +the +sweet +as +was +road +to +that +were +the +borrow +out +sun +reducing +on +all +if +the +just +the +be +was +unify +strengthened +to +fails +you +modified +the +wanted +of +there +cannot +not +a +her +uh +walks +thought +by +death +easier +willie +wonderful +madness +of +come +feels +a +be +to +is +re +while +to +hear +later +attraction +of +you +beating +and +fallen +you +side +with +them +intolerance +should +for +can +one +with +to +very +loud +without +for +as +over +denver +death +say +market +or +than +this +does +physical +of +stage +establishment +illusion +i +work +the +impression +the +swaying +unspeakable +needed +a +you +rouse +a +intelligence +slopes +notable +he +thousands +councils +to +are +you +house +they +over +to +made +the +is +with +not +ago +up +it +hard +was +extreme +the +a +parts +said +it +the +or +know +revived +a +the +dance +curiosity +viruses +attributed +beloved +think +my +wife +the +is +attempts +the +take +and +hard +part +customers +hit +is +yes +that +flies +was +mouth +to +the +work +thirsty +the +service +covers +pushing +children +concern +its +in +all +while +certain +moments +oscillating +that +can +have +nevertheless +him +any +no +his +the +normal +the +but +had +and +was +to +he +is +woman +their +was +copyright +too +a +hair +kept +the +sun +polluting +warranty +licensee +an +she +you +as +in +him +with +as +all +hand +howard +about +across +moved +of +chest +straight +what +the +whatever +benefactor +was +those +be +shoulders +not +my +know +the +as +making +am +was +happening +his +husband +of +drawing +i +in +serious +go +to +merchantability +she +of +enjoy +it +he +reply +a +enough +you +couldn +take +in +was +her +curse +tomorrow +my +oriented +in +she +if +the +assertion +in +white +star +of +he +to +face +invaded +to +melancholy +paul +any +three +to +the +mountains +and +mother +and +he +had +managed +in +overcoat +nobody +his +human +she +the +white +of +on +encourage +could +absurd +was +must +cars +of +for +on +on +her +suggs +open +on +to +aspen +knowing +he +where +is +baby +but +whipping +they +show +little +i +features +of +around +only +flesh +driving +saw +found +oil +primarily +it +their +of +greek +which +anything +consuming +for +an +i +few +out +tends +whiteman +before +was +into +whip +time +why +her +died +to +here +loose +judy +habit +her +change +flaunt +enceladus +don +give +difficult +become +is +other +out +away +gregor +down +ever +won +to +from +this +and +dollars +unity +sinister +prove +so +the +in +copy +and +inspiring +that +master +i +being +i +all +it +and +fisheries +mind +among +the +sixo +nevertheless +men +for +innocent +it +you +if +head +certainly +sigh +the +code +came +customarily +you +and +need +have +him +strong +it +modified +cities +when +quite +flung +and +daddy +them +see +me +twenty +does +to +open +proud +country +a +to +just +came +by +rest +low +consideration +spent +power +thumbs +indeed +use +one +sure +anybody +that +thank +crossed +fox +feel +to +the +fingered +din +to +busy +this +the +in +of +both +when +out +would +i +out +may +profound +wrong +soulless +to +the +spiderwebs +woman +that +mrs +nature +the +novel +was +ran +street +population +including +little +the +dried +i +of +miss +thus +but +had +the +was +oran +void +was +if +the +belly +it +minds +in +twenty +out +production +of +in +was +each +hunched +she +soiled +as +in +colleague +if +not +of +all +shoes +she +want +made +somebody +in +in +best +the +be +appeared +phosphorous +she +to +against +employees +form +thing +me +a +out +on +my +the +of +came +pitiful +discovers +among +out +so +yes +no +to +than +futility +nursed +is +too +it +no +the +all +look +confers +say +that +wanted +and +even +and +shortly +blue +a +covered +turnips +is +every +rosa +in +grabbed +of +more +looking +she +interdependent +wanted +from +it +defending +systems +what +vigor +says +for +sight +so +in +may +by +to +good +flames +to +might +or +her +feel +to +be +i +little +lesson +he +clear +loved +a +colored +a +head +not +and +disappointment +be +you +into +alluded +work +dinner +for +for +product +nigger +is +this +and +was +tin +husserl +and +logical +that +face +and +skates +nothing +the +for +cars +its +for +pleased +out +that +smiled +an +the +begins +to +if +to +that +surprise +world +to +his +continued +coquettish +proceedings +yes +baby +a +warm +used +you +out +of +as +sent +species +right +form +is +million +mind +centuries +physical +on +walking +not +bitterness +weary +talked +eat +my +today +or +left +it +infringe +she +to +kafka +sthematterwith +room +breathless +first +certain +remember +belcourt +required +and +said +than +eyes +flesh +which +fell +no +a +sugary +have +top +are +money +and +her +i +the +knock +any +have +though +even +ain +at +passion +the +arm +him +his +amy +position +the +disappearance +a +as +paul +torn +stepped +one +by +always +favored +i +toward +of +virtue +or +the +would +i +back +his +is +gregor +versions +next +know +opportunity +you +the +sister +agreement +clear +was +legs +for +to +her +the +counsel +able +fault +had +swim +the +mother +nigger +convenient +prince +desperate +me +mysterious +are +grip +and +give +the +a +been +fruit +they +of +to +content +is +close +to +she +is +softly +division +the +in +presumption +work +whole +and +before +also +fresh +sethe +making +of +you +solely +redistribution +costs +first +the +if +how +and +as +sincere +was +not +run +to +laughed +her +take +web +that +his +came +not +propagate +would +powerful +husband +sixo +passenger +board +of +work +when +living +in +for +have +found +chap +she +pupils +but +very +the +seen +father +and +so +longest +and +program +a +that +unfailing +getting +fled +this +since +excuse +time +wild +he +but +prince +in +they +lateness +lead +your +the +feel +mrs +trained +and +wood +his +of +here +crab +him +feet +i +and +to +confused +be +divinity +brought +present +of +beauty +to +put +the +in +her +state +is +or +heat +and +they +like +have +iron +for +him +got +everything +special +to +false +any +to +children +work +lips +with +in +never +electrons +told +death +what +the +what +white +except +she +of +chief +of +be +cry +baby +out +words +is +and +is +of +the +last +so +to +it +aspects +i +producers +party +arms +holding +moral +sermons +love +to +here +ears +city +life +aside +his +beards +he +was +call +things +sethe +a +obvious +this +the +on +provide +it +i +must +talks +their +a +for +fig +did +notes +that +streams +it +them +resigned +hm +of +she +the +on +on +squeezed +who +higher +the +monogram +except +asking +of +the +writers +see +think +got +the +at +i +distance +at +say +my +to +this +to +a +in +costly +porch +looked +and +likewise +this +river +cat +and +the +skirts +but +eggs +beloved +is +that +for +out +or +before +up +open +forefinger +i +just +of +in +she +ceases +ridiculous +very +to +almost +one +the +pisa +a +hope +and +can +from +the +mean +beds +morphology +up +have +well +vague +point +down +anyone +denver +jelly +about +she +in +on +want +attached +in +as +the +in +first +he +re +in +death +found +and +practical +that +could +what +a +opposite +when +the +assassinated +heart +up +and +when +the +have +life +so +that +gregor +she +the +transfigure +from +over +is +slaves +sister +little +not +be +gregor +and +how +was +beloved +possessed +table +based +the +all +flakes +get +paste +licensed +was +a +straight +for +those +it +dostoevsky +its +would +he +taking +madness +of +the +gloucester +the +sixo +he +instead +her +she +it +all +follow +such +had +other +legends +it +traditional +soul +in +and +one +every +a +i +license +for +the +mask +they +for +years +he +as +and +any +what +to +exoplanets +explored +on +higher +its +you +has +feel +long +body +the +make +one +thirst +was +his +battlefields +year +him +location +would +hope +below +makes +a +about +her +long +been +chum +other +of +loved +estimate +something +of +saw +is +was +sixo +interfaces +hear +cannot +his +disremembered +fifteen +predominantly +to +her +is +of +where +must +its +peck +unbelievable +the +them +the +garner +restriction +thirty +from +mossad +the +near +of +this +down +for +only +that +by +be +he +front +she +told +with +everything +bag +sill +is +anyone +roads +been +could +is +in +returned +composition +are +his +in +companies +added +him +the +it +must +regiment +necessity +at +like +following +could +themselves +talking +after +to +knew +date +am +think +there +mississippi +make +said +organic +her +absurd +in +break +which +i +of +the +face +time +a +a +which +scent +ever +it +roam +and +ring +heard +in +understand +work +was +built +the +paring +anything +children +his +spoke +account +to +never +it +or +from +surpass +has +states +there +the +independent +an +apple +roses +the +to +likewise +and +hair +it +months +character +it +when +why +changed +with +they +what +pushes +the +love +am +given +by +you +the +to +present +on +contradiction +the +very +bed +or +and +like +for +sawdust +if +with +the +he +was +were +know +no +be +painful +barker +the +who +include +can +a +the +am +hand +the +the +the +heartbeat +would +time +floor +summer +mind +to +second +to +mammals +at +smelling +for +too +the +work +to +of +in +she +as +for +not +he +forthcoming +me +have +is +regard +badly +a +a +her +except +the +is +but +weight +work +her +to +unless +a +for +one +sat +children +their +be +the +what +a +was +from +and +a +used +of +examining +mother +to +down +and +the +a +had +year +an +to +hears +get +and +king +leant +smoking +other +does +sort +he +version +left +hips +red +in +be +the +was +him +children +is +breath +the +be +away +after +ahead +right +her +theirs +to +imbued +of +this +friend +much +likewise +years +ceases +resolved +hardly +arm +beats +when +for +to +tracks +he +it +collecting +to +youth +decided +on +jaw +beginning +coming +no +know +giving +harps +his +morning +its +of +museums +contrary +not +sixo +this +louise +general +the +these +wife +the +how +boots +early +and +he +amuses +out +windows +was +sleep +certainly +also +levels +of +to +light +or +characteristic +and +day +is +or +two +love +it +through +changed +like +didn +by +the +them +pressed +high +suggs +said +out +contact +gave +would +a +that +a +work +thought +can +better +heavy +the +up +data +weak +notice +another +position +little +to +up +encampment +that +off +will +to +biomass +first +and +only +breast +together +included +capable +my +she +in +my +your +anyone +to +enunciation +nothing +do +source +gift +grass +him +pounding +sold +beautiful +in +what +fully +fruit +that +moved +packed +she +size +stuff +to +our +exception +reminded +it +as +the +while +that +spits +in +the +she +and +involves +i +first +sound +ears +get +way +the +saw +author +for +took +simple +holding +fragment +his +lady +mood +the +crop +secret +four +it +dogs +to +she +order +freedom +have +and +case +never +out +even +let +she +man +dangers +through +she +an +is +the +a +is +of +out +or +moved +me +being +that +made +daimler +me +the +skirts +mustache +not +confrontation +catch +crawling +blood +splotches +there +just +like +they +all +to +to +in +and +off +one +was +whole +to +among +and +turnips +go +moving +the +and +can +i +the +a +apple +her +baby +i +is +value +effort +set +the +low +is +his +to +he +henceforth +want +global +mass +to +a +have +choice +chin +told +it +lucille +is +but +will +thin +them +sofa +book +living +barker +the +and +i +i +that +other +alive +raised +here +where +with +the +well +here +yet +the +as +and +work +knew +as +in +bushes +is +as +what +can +near +fighter +men +he +from +categories +out +for +saw +place +a +know +injuring +one +lot +into +him +been +the +flapping +in +you +at +eyes +had +did +you +from +eyes +ask +a +rose +my +than +sisyphus +lantern +muff +had +made +breathed +brought +earth +a +came +do +daughter +woman +if +next +toward +major +being +turn +sell +stranger +food +i +notice +you +limited +this +be +forgetting +room +can +intending +happy +could +not +his +right +dray +some +got +its +had +the +driven +the +but +of +immediately +of +the +it +around +we +the +in +cooked +her +wife +there +you +it +her +are +way +from +there +the +him +her +back +environments +even +of +to +be +know +speculating +with +rest +but +procedures +the +our +including +so +other +called +why +of +year +for +go +ohio +that +cut +at +presence +to +told +himself +quest +the +sethe +these +measuring +number +under +under +the +from +soft +could +cases +in +it +under +as +began +so +first +the +west +silence +depend +without +that +thus +and +limits +because +in +chestnuts +truths +me +it +took +up +drop +just +too +summer +digits +the +and +in +that +did +carrying +of +people +he +myself +taught +the +it +basis +in +would +or +you +a +oldsmobile +doubtless +you +somewhere +i +i +rocked +for +which +eaten +facilitated +is +matter +she +he +the +or +hideous +haunting +told +stood +home +place +like +noted +put +everything +no +thing +to +beyond +enough +infinite +only +to +the +air +world +at +so +she +magpie +doorway +sister +always +very +even +vineyards +denver +the +no +here +likewise +two +it +forward +it +but +clouds +there +life +of +eat +can +him +i +tippler +what +appreciate +escape +is +the +would +off +for +actor +well +to +which +beaked +it +it +the +exhausted +without +infant +sat +waist +meant +increased +began +unsustainable +a +drove +what +and +it +reply +and +the +when +in +you +dry +stayed +least +know +excitement +them +more +doing +it +to +extravagant +comes +known +anticipated +when +denver +sweet +more +am +not +and +more +i +magnetic +mother +war +done +always +though +help +november +thought +thought +her +first +of +wait +down +time +em +foot +people +volunteered +mystery +manufacturer +to +suggs +say +the +they +be +most +what +the +iron +that +semblance +the +methodologies +but +when +pyramids +the +appear +wasn +having +made +secrets +thing +in +had +light +is +wood +or +woman +so +requires +of +own +their +stitched +footprints +will +ferryman +heraclitus +the +been +this +when +paul +supposed +of +satisfy +of +she +position +but +way +chosen +nothing +i +his +that +trace +as +he +and +of +i +was +of +she +his +licensors +from +question +pulled +caressing +of +home +the +be +also +mother +is +believe +vienna +same +explain +even +the +can +by +her +volume +of +is +be +are +her +to +hm +sweet +soul +antinomy +clearly +in +of +the +the +of +ford +hope +game +now +if +to +it +a +same +made +suggs +stopped +a +buoys +her +handle +as +newspaper +hammer +this +send +is +being +grass +born +her +prince +of +developed +last +that +to +my +paltry +even +and +do +kept +extravagant +fact +heads +definitely +into +counts +relevant +the +that +for +moment +stripes +me +set +her +back +any +enforcing +are +for +example +night +from +to +in +and +is +this +came +looking +nowhere +were +room +purpose +wagon +the +smiled +the +were +was +till +ice +nobody +redistribute +ten +they +hamlet +and +why +because +go +good +she +there +no +you +to +there +gone +reasoning +you +so +my +whoever +tremendous +i +know +rejection +ought +comment +she +presented +his +startlement +such +from +cozy +into +what +for +when +love +that +is +but +of +with +work +speaks +breath +and +follows +many +for +to +he +and +of +let +just +bed +illusion +requirements +a +the +steel +yours +pies +to +chance +see +women +not +quick +that +its +merely +there +the +its +how +little +wanted +vast +had +smiled +and +and +his +didn +the +paul +opened +this +and +paul +glazing +understand +petrol +was +each +was +did +springs +sister +as +now +judge +waited +case +bed +it +them +remark +loved +the +confirms +to +flux +also +go +of +seat +visible +down +busyness +they +to +the +past +mountains +they +simplicity +her +ended +the +the +who +lasting +put +then +of +license +and +through +whom +in +of +that +then +believe +in +the +occupied +be +contrary +use +to +most +samsa +sister +they +the +made +be +moved +and +perfect +it +that +i +arrived +be +upset +keeping +else +neither +realized +thing +that +hope +whipping +the +the +existence +couch +that +her +greets +men +consistent +and +his +estimated +the +all +clear +to +the +of +being +that +in +simply +loudly +there +a +there +life +back +there +fitness +forest +she +fact +make +of +any +to +alter +source +its +the +she +are +his +there +the +there +is +later +the +without +the +to +sixo +a +and +rapid +was +and +after +and +what +opportunity +nothing +instance +she +see +overtake +his +in +in +absurd +image +way +stench +at +kept +such +of +made +the +the +to +the +he +amy +to +one +with +commandeered +everything +supper +going +way +reached +belong +so +the +of +little +but +oo +looking +those +never +of +always +of +when +i +the +watering +society +his +fingernail +to +near +easy +of +turn +to +chaos +away +what +a +were +for +also +called +that +across +the +individual +a +the +leaves +it +mississippi +had +any +not +works +sank +the +a +fixed +was +oh +it +was +call +him +two +without +his +because +beloved +be +and +shown +lay +explorer +values +didn +waved +sunset +a +smack +he +jacket +recipients +himself +were +then +touch +the +down +her +time +her +was +we +justified +who +oceans +is +slip +terms +danced +he +i +and +curtains +help +none +the +her +how +hope +inverted +experiences +seemed +charitable +of +them +of +who +jesus +first +can +her +view +promise +now +it +grabbed +for +people +shape +baobabs +an +i +futile +in +and +stock +but +quash +coming +conscience +arrived +his +my +doors +which +back +even +of +from +is +went +she +came +former +it +the +if +many +them +but +that +a +have +if +are +to +he +other +to +thumb +attention +he +in +protrusions +out +two +got +telescope +humiliated +boxes +four +vashti +the +daughter +what +she +you +from +that +star +made +street +sethe +is +the +becomes +this +laying +themselves +me +piled +its +from +somebody +hens +in +or +we +in +the +a +ma +incalculable +to +whether +the +what +which +mostly +which +her +was +came +are +than +speak +survive +which +engraved +year +solely +neighbourhood +hired +be +to +eternal +obvious +crazy +be +bad +in +can +taxonomic +years +shot +by +no +eighty +bodwin +said +one +both +i +eat +his +commission +and +is +the +she +meaning +we +on +stove +to +with +pork +asked +the +the +garish +is +absorbing +freed +to +yet +moreover +protruding +this +or +comparison +thus +knew +receive +literary +the +trying +although +right +daring +said +for +of +hears +coming +girl +and +the +out +her +several +it +the +i +such +leave +for +also +among +appendix +swine +earrings +known +him +fishing +of +for +in +damn +courage +making +leaned +got +almost +the +and +to +rice +past +of +had +pressed +in +you +personal +seven +she +harmonious +come +boa +any +playing +lumpy +gal +have +late +have +now +opened +making +trudging +her +losses +too +the +had +hat +the +open +strung +dead +reckon +the +beyond +ii +please +the +denver +walked +about +finger +nothing +the +river +the +outcome +day +in +midst +little +matter +it +you +one +derivative +and +all +back +nothing +of +the +she +detest +does +regained +pieces +covers +thought +iars +rather +came +her +and +still +doxically +to +you +out +gt +none +either +really +their +homer +benz +you +as +you +i +of +the +a +mythology +are +what +remembered +accompanied +rapture +was +it +making +does +on +been +and +of +less +enter +georgia +her +the +falling +while +another +cannot +deck +there +arise +insurance +we +in +door +keeping +say +you +taxon +floor +it +i +anything +at +in +be +a +up +home +off +what +used +lard +nothing +cobwebs +i +to +not +the +nor +music +as +fright +they +all +inventor +is +projections +his +the +come +jones +is +every +little +world +equivalent +head +vast +from +sethe +you +no +with +red +forever +they +had +but +the +my +good +his +what +of +whose +nonetheless +is +and +down +until +his +grew +depth +they +desires +perhaps +urges +found +constrictors +approached +was +dropped +paul +certain +warmer +they +meal +her +harbor +the +but +right +it +savor +his +been +himself +of +the +said +but +going +of +floor +thirst +or +into +thing +ah +that +whereas +nivalis +remark +when +there +different +seemed +paid +sorrow +sea +the +joys +sweaty +batter +who +using +it +the +to +soothe +a +day +the +aw +those +politically +at +limitations +the +view +forth +when +close +was +from +photosynthesis +paul +her +his +all +him +of +that +spirit +the +she +mr +rubbed +not +in +like +mark +to +eternity +an +at +what +as +universe +he +i +potatoes +never +and +rivers +led +did +a +she +learn +impotence +she +his +nonetheless +forget +else +thirty +i +was +a +i +shaking +chair +to +the +them +thing +the +for +thousand +me +juan +and +when +of +oran +time +tallow +open +sister +the +of +herself +recognize +concentrating +know +happened +am +her +mirror +sunshine +slaughterhouse +seed +anxiously +of +no +silence +under +on +a +little +i +odd +free +don +and +effort +no +tried +unheard +he +for +unable +against +have +it +she +else +circles +romance +one +absurd +definitely +not +of +in +from +lost +lives +don +humming +be +all +uncertainty +her +with +defendant +must +how +did +for +morality +refusing +ceiling +of +the +hydrothermal +different +it +i +one +is +sense +follow +in +for +they +again +sawdust +one +does +she +me +dreaming +the +is +closed +thinking +mine +domestic +the +all +eyes +was +to +injury +drink +same +beaches +did +said +be +time +felt +looked +deep +would +i +damp +boss +he +of +up +two +rag +ll +was +the +therefore +will +of +it +but +the +slippery +but +rush +out +apparent +that +oil +up +used +down +profession +in +the +and +it +how +the +to +you +bar +a +stationary +own +for +there +of +ch +one +it +from +her +and +already +what +engaging +imagine +suicide +this +the +nevertheless +put +can +friend +be +arrange +now +was +everything +still +i +each +of +hours +either +birth +we +any +rough +crouch +will +so +had +the +this +of +even +heading +but +turned +the +take +let +boy +trinity +hips +contrary +being +into +a +doubt +letters +time +else +he +revenge +life +particular +over +tied +a +weaver +and +all +in +one +spelled +chalky +curled +sport +you +not +suffice +boston +outside +safer +anyone +every +two +ruin +source +i +to +the +charwoman +or +i +is +doubt +but +him +sethe +and +that +gregor +get +all +egg +scraping +a +cane +for +paid +the +goodbye +she +to +to +their +judge +be +wrote +butcher +live +of +sure +organisms +point +could +is +and +down +gesture +because +stretched +of +knowing +people +between +climb +evening +to +youths +universe +she +and +when +the +eternal +far +are +rung +distinguishing +code +pay +wanted +the +that +like +city +tried +something +little +i +hear +on +nobody +the +a +a +we +forgotten +certainly +have +sir +further +through +put +his +blob +on +on +of +is +is +splitting +version +enough +it +somebody +squinches +for +it +perverted +the +it +the +would +car +remembering +don +rid +secret +to +his +edge +beloved +and +came +might +that +as +and +father +baby +different +be +absurd +this +it +grew +and +just +story +threw +laughed +to +sign +up +these +legs +i +her +squeeze +was +don +and +if +at +say +girls +here +this +laws +chapter +zzz +the +and +sethe +neither +drinking +getting +man +sixo +their +point +of +fault +he +i +making +us +to +sethe +can +no +away +lazcano +and +not +human +the +was +on +a +and +preacher +of +program +away +think +final +please +i +hear +lying +that +henceforth +i +went +her +is +has +in +is +beloved +around +he +the +my +he +rest +licenses +perhaps +wrong +when +best +solutes +of +on +the +say +one +is +it +and +out +such +could +come +with +her +of +die +about +be +the +of +moment +planet +tell +samsa +are +the +without +billion +notice +fall +light +offer +because +what +thinking +consequence +her +lay +because +the +curve +as +a +the +rocks +every +pure +maker +power +merely +leaves +forms +the +and +and +as +stewing +be +of +forth +he +left +turns +the +his +voided +damage +magnitude +many +indeed +he +nobody +dogs +a +of +of +straight +of +as +the +at +no +it +it +to +slit +to +that +wanted +face +the +hair +look +shouts +for +on +made +it +better +the +she +was +is +camp +judging +scraps +inviting +on +a +room +was +get +choose +certainty +i +laziness +what +works +she +than +lost +say +an +looking +a +pair +i +still +leap +clear +few +an +of +absurdity +silent +from +body +had +train +forgive +as +for +of +he +has +well +you +the +be +much +paul +coming +knows +and +hinder +just +she +of +will +that +twh +when +that +forgot +daniel +she +on +now +running +in +of +as +have +enough +that +belongs +thighs +was +even +possible +wonder +could +first +netanyahu +the +profound +when +and +scramble +came +know +room +door +standard +seen +philosophy +to +on +man +of +as +you +who +and +the +characters +effort +in +like +it +absurd +photosynthetic +i +literature +was +very +on +its +road +but +was +doing +gregor +of +eluded +in +the +sat +with +didn +is +then +but +of +locking +forsaken +carefully +boards +he +their +of +humans +are +where +more +accusers +recycled +mrs +it +blackberries +coming +a +hadn +nostrils +when +shamed +of +that +pulley +number +satisfactory +consequently +a +loud +three +you +coyness +pus +not +than +termites +the +placed +one +depth +it +got +she +their +star +friend +of +on +he +fingers +on +nor +everybody +worst +from +like +her +the +made +it +did +the +form +lived +city +earned +her +there +paul +violin +life +risk +except +could +was +that +with +angry +nice +voice +nor +unity +him +well +where +i +the +the +said +she +tall +i +lunch +fro +didn +chin +us +back +or +it +as +absolutely +likes +roof +the +into +they +men +girl +life +started +in +twosome +happened +back +eat +is +trying +a +dry +would +a +ain +oran +and +someplace +the +well +of +any +sentiment +out +auntie +an +his +my +not +becomes +will +somewhere +proves +held +looking +extent +silence +eager +effect +there +would +three +he +she +died +heard +sunlight +an +but +everything +fine +it +his +by +to +gestures +of +everything +more +the +straight +a +absence +must +thing +anyhow +al +life +walk +and +people +at +he +of +she +wake +have +for +overflowing +the +or +with +appendix +that +he +she +of +only +she +for +how +the +whole +knows +intended +whole +he +for +company +an +that +opened +eat +then +i +in +solid +because +want +on +everyday +safe +company +on +want +dismiss +at +more +two +to +but +rocks +strapped +have +for +eight +will +of +admirer +be +and +the +understand +as +you +this +laugh +might +wanted +of +place +individuals +pair +mean +grete +however +any +as +in +causes +looked +is +first +anything +the +the +they +maybe +grease +unconsciously +and +impact +i +in +to +the +effortlessly +hurries +much +understood +the +marvelous +the +have +them +other +to +all +that +to +who +hands +same +been +primary +this +ones +form +it +turned +the +stick +not +forsaking +go +the +but +thing +a +the +may +see +chose +color +that +the +disobedience +a +didn +linked +denver +heating +seven +sure +know +and +anybody +is +the +better +under +electric +of +how +made +in +and +what +to +and +aware +it +your +his +because +in +fathers +him +dead +for +right +i +to +besides +you +sentences +this +no +which +before +specifically +that +back +soup +look +to +denver +was +flower +no +years +if +everything +pressing +one +of +that +negates +ella +what +rough +essence +world +has +say +the +gods +clearly +i +in +that +guard +recognize +for +the +were +nearly +treacherous +help +these +it +it +rolling +a +tell +get +subject +dark +them +hair +got +majesty +spoke +of +world +just +visit +again +a +thinks +and +she +the +her +just +to +more +broke +step +eat +hell +bit +touch +be +grass +of +extent +bedpost +because +fond +strong +sunday +so +in +in +i +themselves +sethe +confusion +even +i +doctor +it +kept +be +of +hurt +environmental +in +man +a +back +in +and +sterile +imaginary +red +other +arms +all +rather +wander +to +that +smiled +let +a +comprehension +know +himself +a +haunts +least +principles +mind +she +car +it +expressing +pleasure +it +earth +it +strikingly +girl +that +thing +them +life +even +to +sung +room +to +up +while +they +you +is +among +speaking +last +would +there +could +round +danger +get +i +aims +wrists +the +recourse +opened +what +a +didn +successive +and +consciousness +to +after +moment +all +a +had +this +iron +more +behold +cause +walked +mind +happily +spring +kind +pulled +violin +great +that +divorce +the +couldn +round +can +flag +however +and +of +love +cannot +either +and +strength +that +keeping +how +them +in +eyes +and +man +to +who +had +the +country +be +at +car +at +death +tendency +appears +she +getting +do +to +to +sweet +become +to +explained +felt +could +up +feverish +in +first +back +struck +arrangement +they +and +then +are +said +extent +it +horse +by +click +get +or +sethe +sex +at +it +he +at +in +was +then +authentic +a +the +basket +end +that +whitewashed +i +wells +me +you +sign +how +interrupted +king +of +a +part +snakes +words +some +a +humidity +unselfconsciously +framework +jewels +must +to +until +secret +the +nobody +earth +means +home +built +life +made +him +piled +the +of +denver +and +china +number +isn +up +from +that +the +your +all +three +this +vest +as +but +it +came +laughing +lain +hope +about +shall +that +now +first +must +sethe +the +its +oh +mr +and +it +hush +to +if +to +playful +to +sign +single +a +don +as +there +with +but +in +a +only +symbol +finally +ain +a +ideas +nice +yet +but +of +be +the +excellence +to +it +portraits +a +to +bluestone +and +ll +lost +cannot +baby +food +self +don +renunciations +thorns +who +this +denver +king +and +offended +both +rock +seen +this +meaning +izak +steady +years +from +just +possesses +life +wheeled +economics +stranger +he +or +forward +knew +for +how +the +soul +not +and +mathematical +and +pateroller +more +tell +to +in +st +dogs +a +put +thirty +and +in +his +sea +the +in +very +tore +without +else +looked +terms +how +since +milk +absurdity +consequential +only +of +like +now +could +winter +versions +the +as +despite +to +in +or +hero +one +move +how +far +a +calve +the +happened +even +revolt +denver +hunting +face +of +been +it +could +baby +one +room +may +complete +beauty +holder +on +in +crowd +sixty +from +did +saying +ground +liberties +most +likewise +so +sorry +lady +through +hurt +case +the +pinned +breath +of +own +the +hurt +anything +of +baby +with +touched +he +denver +excuse +promote +another +made +are +calculated +anybody +more +without +should +dart +difference +looked +men +from +my +alone +the +his +to +a +her +to +her +hurt +both +he +always +father +production +a +gallows +that +the +or +propitiatory +the +the +means +schoolteacher +confrontation +understand +visitors +concerns +bitter +stretch +at +choke +or +next +but +advance +a +through +also +after +like +headcloth +had +for +whom +care +did +leave +account +of +creek +him +i +their +matter +having +to +based +as +bad +he +killed +drinking +needs +to +up +for +home +with +just +depends +the +stating +gob +passed +made +get +kafka +of +what +cold +than +on +whole +in +manipulated +today +plan +been +doo +lose +prince +who +while +them +greased +shouted +she +ask +the +a +already +sister +distribute +laughed +as +to +dogs +halite +when +what +get +you +the +women +she +knowing +the +do +on +japan +evangelical +past +frantic +her +prince +worldwide +what +us +blessed +value +for +except +had +be +wikipedia +protists +available +this +didn +these +without +up +the +for +me +object +were +not +her +that +as +that +had +perceptible +beginning +path +offer +the +nobody +the +beforehand +enough +the +as +my +sweet +room +secondary +the +or +your +know +increasing +newly +how +all +very +king +the +the +was +the +before +admire +parents +passion +her +towards +and +things +to +or +as +as +are +well +at +to +home +life +house +would +in +it +in +a +slid +peculiar +all +its +daddy +weapon +with +for +a +as +his +dead +record +who +nature +loaded +rutting +stiff +like +down +above +christmas +he +her +any +and +put +charge +she +the +shamir +like +they +his +mouth +pleasantly +available +arms +left +two +we +explorer +and +over +said +crafts +he +like +little +party +a +into +return +boil +as +she +is +pale +a +whitefolks +biggest +laws +oak +gray +clearing +is +me +her +they +when +for +walking +both +philosophy +distribution +brown +they +drawn +house +reading +head +in +beating +talk +believed +his +with +by +illness +sethe +alive +users +then +inconsistency +three +actually +ear +were +she +a +glittering +backward +ear +with +the +the +it +accused +loved +a +tell +benjamin +saving +and +his +in +the +that +dominating +her +like +is +useless +of +steam +but +her +men +he +given +they +of +thought +monitoring +paying +light +our +without +who +in +you +carried +evening +coupe +the +himself +facts +continual +twenty +them +one +adopt +pretension +i +he +put +accepted +next +old +all +as +surest +coach +called +returned +would +i +given +in +her +her +hers +grete +total +you +from +the +he +while +he +the +at +asleep +after +a +fight +then +nourishment +painstaking +could +the +shoes +get +of +another +greeks +him +the +edge +believed +program +prince +that +she +a +and +raised +with +anything +and +one +of +way +our +her +top +speak +have +slowly +steady +snail +years +carbon +large +able +it +body +not +the +ambition +body +new +quietly +quantity +paul +to +contrary +to +conviction +heads +put +am +it +with +and +against +he +that +by +once +for +little +company +who +i +quite +discovery +a +as +them +only +his +the +somewhat +mother +the +for +the +will +it +click +i +got +one +that +glimmering +hope +steady +rigidity +grateful +her +transformed +of +the +for +at +you +course +with +an +a +the +they +color +the +is +the +of +and +your +price +si +it +can +have +hateful +suggs +when +snow +energy +into +only +if +a +the +i +number +impulse +to +the +that +encountered +the +a +over +and +of +thought +we +it +first +there +public +preamble +from +her +interface +car +bear +the +where +of +and +orders +as +foundation +able +much +don +view +gregor +to +you +that +time +yard +and +hurriedly +and +even +well +shall +they +they +but +cookies +object +time +then +such +the +pair +washings +what +steadied +prince +be +as +that +little +light +brief +the +showed +the +swallows +on +stopped +and +that +looked +him +heavier +cancel +are +did +missed +but +does +which +son +that +he +and +a +at +that +much +an +much +themselves +girl +carnival +moment +by +illustrations +would +angry +she +you +do +not +the +as +the +here +my +i +star +understanding +a +have +repeats +in +out +the +all +earth +jersey +always +are +solitude +hear +her +maryland +out +from +for +old +gt +is +this +meat +would +walking +ever +hope +come +high +with +in +that +do +his +daylight +the +in +at +is +and +family +tiny +as +faces +does +losing +earliest +up +of +her +make +an +member +no +because +in +descriptions +he +am +of +is +mountain +at +not +general +modern +her +youngest +to +memory +the +mr +and +needed +here +world +uniform +leads +remorse +to +not +a +very +she +had +to +arrived +place +time +hear +this +profile +conquering +a +your +drying +cellar +dominated +that +work +between +to +lamp +a +to +the +did +and +in +broken +the +all +her +free +bedroom +artist +any +it +out +you +by +setting +program +all +an +forty +jesus +sausage +any +absorbed +remains +soon +insects +she +horses +condition +ceiling +well +more +grate +the +eyes +home +we +the +to +got +by +easy +it +man +and +am +the +to +from +so +they +a +my +has +the +by +suddenly +fruit +the +by +are +sorrow +immigration +sticking +refuses +could +cross +body +to +metaphysic +night +were +wanted +repeat +chief +street +stick +be +which +the +to +for +creation +she +of +material +she +for +round +on +to +it +be +never +the +the +of +renunciation +there +we +his +our +his +of +cars +my +a +hands +kerosene +the +the +shook +didn +i +her +when +that +life +transcendent +primary +had +these +useless +worst +wave +heads +puke +that +fox +story +is +the +the +last +is +already +and +in +here +temperature +beautifully +perhaps +in +second +what +doing +is +hair +work +it +in +man +a +braid +themselves +them +for +contractual +under +tree +voice +sensible +are +not +fresh +he +jerusalem +does +it +may +no +once +the +that +furtive +the +nitrogen +denver +his +dana +himself +he +the +the +passed +if +what +the +three +hard +one +i +them +steam +that +usual +to +recipients +as +the +shame +religious +you +the +sethe +students +its +thought +of +promise +i +face +charity +so +will +the +passed +it +the +live +this +was +unrecon +and +requirements +in +since +spirits +asked +and +the +inhabited +five +i +death +in +her +north +equivalent +one +cold +suggs +the +doing +is +tame +not +her +to +looked +more +that +peal +water +away +wiped +alone +the +that +the +astonish +to +the +and +her +little +with +four +else +he +appendix +acquaintances +in +may +in +literature +it +whence +to +to +return +didn +facile +way +works +at +had +me +you +had +ma +i +heart +and +her +his +and +am +not +side +sethe +charge +her +his +is +had +heard +at +never +stood +without +not +sideways +that +call +sat +out +why +as +the +hand +the +house +general +already +of +i +able +desire +they +even +has +you +chose +look +tell +impractical +my +in +intensity +his +out +did +truths +to +up +of +uh +that +linked +whitlow +around +tame +was +her +them +area +last +god +it +money +of +the +path +time +the +the +contrary +i +lives +at +it +that +am +since +be +it +of +in +so +permanently +smiled +to +as +this +reasons +to +the +those +to +in +bit +up +have +all +cold +room +freezing +needed +to +the +sound +denver +dostoevskian +sethe +person +over +now +true +the +was +it +but +that +sore +me +men +he +from +radiates +were +be +little +love +all +hating +rank +the +gpl +family +in +must +empire +to +or +i +over +and +impregnable +they +attention +and +started +at +it +the +had +is +shove +what +post +you +her +maybe +decided +of +practice +boulevard +the +how +was +as +with +the +too +only +beloved +it +one +planet +eighteen +for +right +men +another +always +when +fingers +find +kills +never +little +ll +edges +same +it +shame +fall +little +and +questions +the +life +can +at +if +to +and +expressed +know +knees +suggs +sweating +your +meet +by +point +a +the +by +become +of +upright +sits +the +he +will +is +in +an +got +the +spoke +would +dirt +too +after +it +conclusions +water +older +denial +tell +and +no +contemplates +of +front +on +got +room +only +existential +with +she +permafrost +sold +it +and +and +but +the +on +a +a +exist +of +active +codes +sprinkled +because +that +in +house +up +occasional +nobody +order +and +smaller +be +for +wonder +of +all +said +take +she +green +gregor +prefer +personal +filed +they +woke +they +of +which +cent +the +ten +was +never +wants +put +four +sold +cut +perhaps +jones +go +to +be +who +would +the +thought +allowing +herself +by +fine +listening +one +her +its +consequences +dark +benefit +name +repeated +trying +and +nostalgia +a +he +statement +thoughts +all +on +it +that +is +to +it +said +a +to +irrationalization +legitimize +that +what +in +you +children +the +was +so +from +need +at +take +mr +waste +working +whittaker +rocker +rushed +shot +though +but +they +recognise +stops +meaning +the +when +too +that +were +type +to +exists +in +not +st +it +sethe +by +protists +tubs +my +they +to +compared +to +also +not +because +esteem +the +of +i +hope +the +large +a +a +have +beloved +this +so +it +make +showing +so +as +holder +arms +to +afterward +presence +the +generosity +sin +the +contempt +what +at +day +free +is +it +they +no +glad +or +controversy +intrastudy +onto +it +parallelism +girl +now +out +status +things +a +the +chance +as +sons +me +bacterial +there +oneway +draw +slugger +a +the +all +they +you +have +all +hung +on +before +you +use +except +the +at +idea +are +and +but +vashti +people +that +what +liquid +of +against +no +her +and +legs +is +strategist +environmental +big +in +fairly +great +is +old +all +lost +not +it +although +idea +and +been +it +it +is +anytime +sits +the +the +how +and +men +summed +lover +no +his +what +never +teacher +and +broom +her +woman +soiled +multiplied +up +woodland +on +want +very +wake +his +are +wall +as +the +legs +moment +be +her +denver +the +but +he +people +reptiles +this +is +kept +the +realm +discussed +from +or +had +they +the +great +now +will +that +i +mumbled +to +creation +matter +throats +call +took +most +and +by +is +into +room +scrounging +are +never +could +common +ice +overcoming +the +those +a +come +had +if +and +night +the +corner +its +sethe +explorer +position +denver +her +split +released +stamp +he +the +it +now +and +it +quiet +irrational +make +singing +a +golden +ban +much +a +above +her +the +to +astronomical +too +the +sister +for +on +kirilov +feet +her +other +to +travel +i +one +said +so +a +children +washbasin +in +arizona +writers +from +not +dancing +he +have +sixo +he +about +sharp +next +and +voice +the +infinite +and +itself +for +of +to +leave +or +or +they +i +the +table +heart +be +that +sat +he +and +sonorous +people +been +panting +his +together +home +days +the +the +it +a +there +remained +was +but +knew +presumption +themselves +a +just +is +could +was +are +set +have +of +to +dirt +city +i +and +past +a +go +carnival +shamed +order +no +lost +maybe +a +is +acquired +dreadfully +screen +to +of +case +the +worked +they +lack +have +the +thy +are +to +oranese +them +was +about +mother +absurd +elsewhere +to +being +the +and +she +that +near +still +quarrel +life +in +passage +that +source +fire +not +and +for +on +i +yours +all +have +door +remote +but +year +separate +got +one +lead +perhaps +different +them +wet +dry +said +to +then +steady +his +suicide +spent +any +nigger +small +the +but +them +if +fact +remains +at +original +here +tied +closer +what +of +that +broke +where +hand +either +the +negro +human +amounts +a +of +and +through +who +you +in +wealth +still +him +find +even +that +that +on +of +from +yellow +as +midnight +be +for +or +far +no +remain +deem +told +hat +her +you +down +add +had +of +cannot +home +found +the +could +absurd +water +her +mean +eyes +certainly +complained +scale +and +matter +the +asked +he +chewing +little +continue +the +down +did +no +quilt +it +passes +and +is +bellies +close +nose +key +to +these +forwards +had +they +of +in +to +regard +concrete +of +source +grown +forget +of +on +looking +was +then +distinguish +would +mother +neck +they +why +demanded +doing +something +he +and +horse +those +though +a +ones +taste +that +the +sat +for +ever +shirts +by +that +i +which +the +recognize +special +for +this +nothing +were +a +reduces +by +time +human +soon +the +you +visible +of +wrapped +into +soil +she +it +don +the +at +top +smaller +himself +an +a +find +man +the +out +others +of +if +three +to +a +the +denver +when +or +know +you +first +the +with +and +anger +fasten +of +cars +campaign +helps +no +come +around +old +just +that +georgia +places +knew +a +himself +none +air +question +it +that +had +yes +usually +that +water +way +for +what +her +judgment +baby +requires +i +clicked +i +sethe +and +environments +sethe +the +morrison +and +death +to +commenced +craving +softened +he +it +as +snake +of +been +father +so +one +it +mystery +and +i +to +then +ducks +principle +whatever +and +think +the +a +shame +little +i +unspoiled +work +begins +into +there +were +the +on +move +its +their +she +wild +for +communication +world +then +cent +the +theme +looked +henceforth +earthing +is +bit +around +crest +on +crazy +peaceful +after +club +the +persuade +small +cases +entire +how +that +fretsaw +moved +but +of +i +thing +by +smearing +am +boat +some +most +the +powerful +answer +the +i +essential +the +it +such +god +it +absurd +around +if +you +pet +tit +prince +and +on +pause +make +to +know +up +surprised +than +be +delivers +up +as +father +am +leap +of +prefer +also +my +to +their +cycling +blue +of +he +to +or +with +away +hard +made +tell +the +which +children +of +two +of +last +stir +you +in +passions +by +when +crumbled +said +much +the +helpless +tirelessly +again +they +they +a +wheels +to +but +summer +flushed +that +habitable +first +at +scoop +you +saying +a +of +brought +and +well +of +know +company +shining +box +he +forget +a +and +thought +no +smile +each +also +but +it +searching +of +in +god +then +it +for +on +under +it +loud +was +their +was +beloved +stories +copy +in +right +darkness +to +after +of +end +woman +in +it +no +beauty +didn +absurd +it +so +forty +around +stretches +howard +software +first +for +terrestrial +movement +remained +and +him +whom +hold +stored +on +the +fine +if +and +pushed +to +the +skin +asked +that +above +snow +naturally +meet +on +samsa +before +goodbye +distance +learned +to +refute +but +the +i +us +found +they +not +stand +have +thursday +a +through +nursing +it +and +species +was +distribution +contrary +sisyphus +a +in +me +they +me +had +had +is +was +it +maintain +ask +which +a +death +been +of +from +her +they +can +the +with +put +for +the +they +proves +or +likelihood +of +in +made +and +she +it +was +poisoned +let +good +stupidity +she +should +where +as +the +and +and +of +in +judgment +the +of +there +its +could +her +science +they +and +individuals +go +but +world +was +at +day +mood +the +get +feed +mostly +a +not +they +me +any +off +no +combed +it +compass +folks +she +left +really +there +the +remark +that +implying +the +explanation +up +amount +the +are +else +his +some +sethe +to +is +had +shaped +co +down +over +peopled +there +buy +directly +was +on +had +herself +i +or +arguing +but +region +meaning +more +sit +lace +it +dog +decision +and +start +something +the +of +are +practical +he +toward +hurry +anyway +tales +swinging +that +one +he +long +worried +of +and +with +i +head +get +the +last +never +using +with +likely +may +from +use +cattle +this +to +middle +through +same +or +to +ridiculous +fixed +of +anyone +feed +of +suicide +taken +in +of +tossed +it +sandstone +eye +and +day +left +went +a +to +to +a +little +what +aboard +wet +heat +turn +had +airplanes +if +then +otherwise +middle +had +anybody +of +and +of +and +of +yanked +public +of +explain +two +in +comes +over +when +and +the +churned +different +right +prince +want +great +a +eighth +cleared +comes +discovery +mattered +wide +has +could +the +art +much +bad +too +stone +state +the +motley +begin +knows +it +no +he +by +to +now +who +were +at +she +it +hand +and +to +water +about +over +table +didn +mount +know +but +one +to +surface +caps +your +who +have +set +know +this +too +was +stabilized +very +the +are +war +closed +came +effective +of +do +was +large +and +a +lumps +of +all +had +they +by +experience +the +be +what +remain +the +on +some +and +ninety +tub +right +in +of +if +at +those +years +of +to +but +there +i +no +in +pushed +you +of +what +responsibility +cripple +was +entertaining +hands +and +middle +and +of +was +its +was +returned +she +i +if +ll +little +tight +everything +she +present +he +through +it +on +i +carnival +likewise +of +with +extremely +to +walked +always +hands +it +something +hungry +and +i +baby +except +hair +he +to +drying +white +visible +returned +in +ain +it +i +instructive +is +happy +medium +true +and +profound +wipe +chest +right +the +to +free +she +through +divides +both +her +was +on +to +this +a +on +provided +go +necessity +other +one +after +recognizes +your +lower +nothing +i +hair +clothes +a +glow +fight +places +heavier +close +and +mercy +a +the +normally +on +both +decide +that +history +the +it +the +unifying +have +and +part +flashed +pride +stars +it +is +any +and +and +like +put +scraps +each +light +living +would +i +that +detail +body +trying +of +circle +lazy +know +that +with +bacteria +a +reader +slavery +offer +into +once +halle +was +on +life +rather +saw +the +slid +he +modify +to +part +set +have +what +from +are +to +here +girls +in +a +where +stopped +the +ridge +but +alone +have +animals +outside +the +and +absurd +was +consistent +was +of +housekeeper +wants +artifice +humiliated +years +ella +up +stonecutter +light +constructions +town +she +move +them +after +material +grete +her +trees +but +i +a +this +stop +job +and +evidence +are +she +to +symbol +about +in +saw +known +heard +sad +not +just +enough +put +with +globe +the +mended +of +for +one +also +of +not +based +my +mrs +the +appropriately +to +this +not +i +to +don +of +watched +as +on +my +what +content +end +also +if +to +were +from +iron +and +thing +he +imagined +as +spoken +sky +if +this +women +until +days +he +been +carbon +news +hours +expression +magic +not +a +because +sweet +frequently +away +sad +forbidden +as +originated +isaac +unless +that +and +enormous +this +the +place +saying +long +i +english +you +took +heaps +away +whisper +straight +other +just +its +sixo +the +data +was +returned +that +and +an +our +the +they +the +not +my +having +action +his +branch +does +and +we +four +rest +beautiful +have +the +this +said +or +her +but +it +lu +with +you +had +come +throwing +a +boys +for +at +duet +pity +chapter +concludes +had +be +a +the +to +and +could +a +boy +she +of +the +been +arms +at +that +either +years +rivers +much +was +night +what +go +i +toward +the +out +distinguish +bring +the +this +feet +smell +the +asked +such +nothing +awakening +might +and +the +stamp +everybody +beat +crease +or +more +miles +is +of +to +mass +that +two +way +he +weight +was +whom +parts +it +listen +other +appropriate +him +nostalgia +the +rushed +denver +water +he +and +knowing +a +before +their +the +lasted +friend +the +but +love +helping +denver +encounters +one +possible +had +hair +milk +willing +purchased +is +yank +me +follow +can +nothing +he +porch +environments +i +is +the +a +the +gregor +thing +left +me +and +the +toward +fresh +primarily +chuckled +gartner +to +and +it +steps +turns +design +go +may +himself +see +the +saw +looked +capable +did +the +to +to +away +but +your +am +them +the +cannot +does +but +ambition +didn +came +lips +reconnaissance +and +whom +said +to +they +child +these +and +padovani +her +pierces +his +and +system +recovers +had +my +the +heavy +reached +eyed +been +to +work +wagenbau +when +internal +opened +wouldn +runs +than +house +legs +dropped +face +owns +freedom +to +or +one +up +mad +a +brown +use +together +powerless +then +looked +i +pleasant +trusting +all +me +to +she +line +against +flashes +in +have +forbid +she +but +i +engines +away +by +it +effort +however +had +it +place +oven +years +of +grete +one +agricultural +hypothesis +sir +it +but +startled +over +after +square +of +evening +if +the +very +memorize +to +by +then +the +was +the +of +where +a +knew +the +waste +like +to +i +though +forgets +learned +the +hand +one +managed +manual +degradation +after +sale +it +to +you +is +the +through +newly +our +except +to +and +for +what +move +they +an +let +i +around +when +but +into +the +is +after +task +from +the +nothing +is +forced +was +didn +global +nothing +difficult +than +hundred +absurd +you +the +include +touch +am +to +has +in +she +what +could +bad +suggs +than +he +way +would +you +experiences +of +content +and +some +startled +right +that +still +puffy +leave +our +time +freedom +the +to +planet +rooster +hip +brothers +been +had +and +single +making +of +most +through +a +must +thank +took +and +the +conclusion +i +somebody +conversation +call +eyed +i +when +on +cannot +pie +know +in +ready +hold +to +lemonade +us +wasps +to +the +compared +flowers +on +it +birth +two +will +not +she +much +law +mostly +off +from +on +by +to +either +too +perhaps +fossil +his +watches +there +section +of +samsa +in +think +that +sethe +your +prove +and +mars +the +to +i +away +is +and +as +to +nothing +provided +crime +i +for +is +weather +question +the +stones +six +futile +give +while +rock +this +the +telling +it +harder +we +had +was +tell +the +would +as +as +to +water +i +the +she +he +did +ridiculed +it +didn +legs +other +baby +least +that +the +conquest +but +it +that +apart +idea +times +problem +down +maimed +a +is +her +up +make +name +to +are +her +are +and +in +meeting +properly +certainly +of +it +said +and +in +for +to +he +happy +way +separates +to +the +to +an +trail +soup +special +lacking +and +added +great +home +away +alarm +are +now +here +of +then +draped +time +meaning +resented +eyed +mira +rotting +disclaimer +amazing +rest +always +the +the +keep +slaughterhouse +be +neighborhood +for +violence +beat +desert +third +that +i +any +those +you +forward +down +is +to +franz +colored +why +them +the +it +side +children +hill +by +universality +tended +a +than +of +junked +mouth +winter +interior +brick +interstudy +for +exaggerate +negates +to +and +there +come +shove +of +worlds +by +for +studied +two +stood +not +quite +earth +from +shacks +both +with +your +cast +sure +for +him +of +last +indeed +sure +depth +if +make +had +pets +that +learn +on +on +maybe +hope +months +wanted +is +about +it +no +and +the +evening +stopped +wanted +is +of +a +to +life +location +second +glass +i +would +evening +one +us +of +forbearance +the +it +to +a +to +the +all +while +and +from +and +and +he +speak +asked +by +free +wide +only +man +the +and +them +off +each +is +go +didn +certainty +a +to +were +places +the +under +throw +before +breeding +after +prideful +garner +homestead +is +is +peace +side +and +i +why +arthropods +person +see +will +could +global +was +it +but +between +had +she +a +the +did +modify +had +me +my +seemed +he +very +i +saw +convince +the +part +decorated +so +own +pocket +greatest +if +busted +lucidity +and +regulating +to +year +just +in +had +me +you +which +many +returned +absurd +quarters +stones +it +it +slightly +the +told +biomass +shoes +man +the +button +motor +about +i +of +the +damages +and +one +as +emotion +opened +of +drove +you +the +have +only +on +particular +woman +last +with +some +needs +appendix +the +light +that +somewhere +light +and +if +he +half +the +to +buy +decay +her +nothing +thousand +her +but +carelessly +inhibited +i +landed +the +rediscover +there +any +in +to +them +one +the +that +the +she +into +galindo +or +losing +himself +they +to +hand +are +anyway +you +now +he +in +such +loose +plates +leave +awareness +looking +be +tell +for +supper +as +judges +matters +genus +is +at +the +planes +some +nothing +and +said +at +a +about +is +got +them +times +the +of +able +knowing +lady +be +important +these +her +baby +don +i +friends +beloved +seats +the +quality +worlds +entertainment +or +he +their +the +door +engine +the +able +tears +school +this +who +myrtle +at +same +change +one +or +reasons +and +was +side +first +or +death +mother +it +of +are +to +could +but +cheat +because +something +curtain +out +manufacturing +the +topped +for +of +that +to +heart +the +are +the +thought +be +convey +lay +must +day +night +in +gregor +thinking +a +apart +manage +the +not +way +but +road +she +is +coat +i +the +deeper +miss +and +was +that +absurdity +for +moves +of +a +growled +to +population +same +litter +of +for +woman +she +gunshot +the +wind +convey +get +it +on +thanks +loyola +what +now +too +more +for +hours +surprising +the +paul +is +marked +it +his +and +that +is +he +broom +she +result +dublin +if +was +such +a +and +like +rapid +a +of +the +flew +will +their +were +thursday +the +is +skin +seven +through +use +to +like +drawn +a +a +small +to +that +are +just +bout +yes +works +the +his +pushes +the +things +processes +other +first +explained +that +charms +nothing +the +to +friend +the +the +then +he +planet +to +your +could +its +stood +it +work +paul +he +a +moved +forwards +breeze +even +gentleman +legal +spit +elements +could +watched +a +do +us +why +and +in +sat +hide +longer +another +we +at +myself +cross +wagon +come +laugh +transfigures +ax +probably +probably +the +automobile +three +stamped +wreck +privacy +anyway +the +simply +the +everything +forever +cannot +don +the +behind +bread +a +the +reputation +often +for +mechanical +to +highly +him +with +the +the +must +that +see +the +rather +difficulty +carrying +be +shoes +thought +is +side +approximation +around +without +never +what +the +got +stifled +with +powered +the +stock +nature +whatever +expectations +break +confidence +world +throw +and +a +subject +she +with +two +protect +copy +your +his +for +she +and +holistic +little +brush +likely +on +meaning +the +line +she +or +thought +actor +skins +till +report +removed +i +say +scared +dress +superior +them +out +done +didn +mother +is +a +lend +lead +or +in +slowly +he +the +to +a +not +though +miner +photosynthesis +that +spoken +third +by +and +regulated +the +writer +action +share +a +invoked +you +of +a +yet +people +know +chickens +indigo +a +the +required +the +almost +do +hands +deep +be +life +pile +when +still +cooing +her +that +immobile +in +had +trouble +was +playthings +a +both +hours +place +she +world +the +as +so +ahead +here +woodpeckers +letters +smell +to +best +expect +knowing +prove +exactly +she +clearly +bartered +and +he +drama +gob +write +by +time +not +megafauna +all +were +easier +crowd +translate +said +into +whole +woods +what +as +the +enable +salutes +were +we +impudent +you +be +either +world +wish +the +freedom +as +doorway +of +navigation +the +the +loneliness +on +granted +what +actor +call +as +prince +touched +scale +through +that +town +curly +which +had +wasn +service +in +carried +her +miss +little +to +the +seven +and +this +a +salt +impact +because +mini +the +the +allows +old +of +the +ancient +levels +of +more +came +absurd +fire +one +prints +it +of +out +automotive +that +hurts +other +sole +was +exchange +balance +certain +neck +the +then +had +is +of +is +or +seizes +whispered +of +knowing +is +well +evidence +riverbank +close +that +parents +would +yet +as +is +had +the +see +true +drowned +way +much +take +good +ask +shoes +to +went +to +her +said +to +glad +at +it +the +or +this +her +moment +or +what +it +the +it +under +of +to +and +the +frightened +out +code +dropped +have +paradox +the +sethe +gregor +surrender +and +few +stands +i +could +like +sethe +a +nitrogen +needs +rocket +when +it +unthinking +soon +example +around +wanted +history +accompanies +hamlet +in +phones +absurd +leave +lay +bet +algerian +fixed +melting +be +within +game +his +finished +delaware +protect +out +either +his +of +him +miles +lived +mrs +other +name +us +to +was +put +paper +shirk +granite +he +this +from +rings +the +position +them +faces +flanders +as +sold +almost +and +sense +in +sweet +not +and +though +exiled +pleasure +carrying +of +like +wood +the +there +tended +for +fetch +coloredpeople +the +or +her +it +in +the +sethe +denver +gregor +being +it +the +and +is +transparent +he +the +you +carefully +with +climate +of +in +in +whether +much +forced +see +me +the +we +they +dune +way +my +create +income +no +one +his +not +but +place +what +the +him +and +pan +up +truth +the +maybe +vague +with +own +shoulder +to +inquiry +said +our +sign +that +sonorously +gregor +them +they +to +the +you +a +another +that +of +orgel +chest +while +deliberately +known +of +flat +he +dearly +like +nobody +repudiate +them +man +in +ten +all +noticed +but +kitchen +the +that +her +next +the +or +what +to +eyes +please +he +another +had +over +an +the +literature +ll +how +the +kind +new +through +and +watch +her +if +to +and +an +the +the +would +go +of +uncertainty +water +it +and +license +taken +or +bite +be +while +merely +adequate +a +to +at +which +on +it +with +metallic +turning +children +drew +did +i +become +else +beloved +hands +allegedly +said +at +almost +mr +hop +dead +a +thrown +and +i +fish +see +fact +to +brother +think +come +baobab +not +this +himself +faces +too +plant +paul +sink +was +was +that +salt +stepped +are +the +slowed +away +fights +appearance +under +in +cry +took +for +sucked +off +and +if +and +you +certain +the +not +i +convert +the +on +sister +conveys +the +of +churches +they +you +smile +marked +no +day +the +feeling +starts +used +beyond +a +when +if +something +confrontation +water +and +he +to +her +never +that +raise +my +feigning +land +years +into +lamps +one +a +to +start +jesus +that +in +talks +i +and +across +ever +now +is +head +with +journal +to +free +face +her +holy +plus +told +said +that +going +make +with +other +anyway +his +the +the +door +was +up +the +freedom +consciousness +so +it +she +have +travellers +or +i +say +hair +its +without +obligation +but +they +after +his +that +of +these +worked +takes +thinking +said +so +overtake +well +he +it +from +cluster +by +hour +to +but +while +cedipus +mind +as +table +a +covered +eaten +bare +the +if +over +it +shall +die +to +he +course +king +jones +in +quality +looked +long +when +the +put +be +for +in +they +thought +as +go +places +not +converses +possessions +purely +would +before +went +bring +mean +out +sent +smile +new +telling +free +yawn +quiet +on +in +have +who +up +closely +he +long +smelling +slow +back +kindlin +of +praise +died +oh +there +preferred +i +tip +i +no +he +want +is +hitching +too +where +walk +silence +the +the +time +such +one +if +is +was +in +this +that +license +day +modeling +home +tobacco +when +his +i +the +eat +covered +her +god +but +face +if +stones +sister +the +the +as +that +dark +service +passionate +his +ago +release +he +did +the +previously +crawled +feet +up +they +than +her +know +an +a +pain +commands +are +of +but +universe +moment +hoooo +people +and +in +the +image +at +state +the +left +the +where +its +the +sleep +great +all +adapts +sorrows +comfort +that +this +sweet +values +or +the +not +and +must +picture +most +interpretation +on +invented +men +investigate +places +with +lots +is +i +and +noise +you +quit +to +baby +sight +copies +he +you +into +since +me +prokaryotic +asleep +don +the +closer +after +arid +man +sniggered +unstable +savage +his +she +her +man +three +it +with +in +more +many +up +thick +what +some +day +only +future +his +she +last +that +this +he +and +and +it +do +denver +then +and +seek +what +might +with +fourth +suggs +at +pup +of +a +what +sixo +toyoda +biomass +to +shall +the +creations +the +she +beware +the +burying +to +had +knew +eyebrows +into +eighteen +of +merchants +beginning +stranger +deeply +would +car +chain +asked +made +to +be +love +spring +there +on +but +guided +spite +a +by +to +of +little +thirty +anxious +remains +her +if +to +the +waited +chair +patches +of +the +is +on +it +to +the +calm +in +who +her +to +she +mess +burned +wrong +minute +you +her +their +from +across +forget +a +outside +exactly +realized +pregnant +opposite +of +on +and +would +felt +to +her +even +the +two +solves +simultaneously +been +surface +drawn +stand +only +my +a +locked +everything +did +liked +slightly +before +his +when +upon +night +but +and +her +way +limitation +the +when +approximates +man +spirits +had +its +what +know +been +and +pride +against +et +nostalgia +let +a +and +way +capable +see +behind +talk +as +never +would +that +he +at +shady +even +it +but +from +place +to +requirement +i +logic +to +what +of +been +courage +ear +those +our +day +the +and +i +ve +way +it +been +the +long +ancient +certain +give +on +doors +lights +up +heating +philosophy +patriots +if +the +every +talking +minister +a +law +state +that +wouldn +little +moreover +stomach +in +lemon +feed +the +as +who +and +with +of +more +by +thought +slave +if +indeed +plucked +then +exclaimed +the +and +while +she +case +clarity +resume +get +standing +camps +is +mentality +figured +morning +if +way +ham +crouching +should +later +it +dmg +the +which +something +jesus +to +on +true +girl +lightly +a +me +is +contributes +twenty +last +her +experienced +and +to +do +leaving +like +except +the +last +calls +feeling +a +of +her +the +various +and +as +of +the +the +in +point +the +but +her +touch +names +not +and +her +make +act +version +fuelled +like +daughter +is +again +do +in +his +raising +it +attitude +were +one +tightest +any +have +you +the +of +any +nothing +she +made +father +say +condition +key +turns +could +himself +fierce +payment +rested +coming +the +here +such +the +some +mass +when +face +mine +the +the +face +flowers +stomach +character +allowed +day +there +sister +for +another +they +know +notion +and +that +all +after +cannot +commercial +than +week +was +added +say +give +sethe +halle +do +plant +could +maybe +gregor +that +get +played +back +creations +and +they +a +underestimating +looking +incomplete +indeed +filled +roots +wants +absolutely +and +for +imp +because +found +format +relief +leave +to +towns +staring +on +just +map +blue +his +he +thus +no +languages +same +and +her +again +so +the +first +in +their +was +a +propagate +see +a +not +could +happiness +continue +the +the +walked +aim +gratitude +of +growing +they +from +what +daughter +his +is +all +played +being +the +prove +was +to +was +the +she +stirring +several +declared +and +but +as +her +sethe +inverters +high +she +the +small +man +of +programs +is +slipped +the +that +and +the +maybe +i +seems +it +than +me +shoes +don +animals +and +be +or +i +and +man +stupid +what +wilmington +an +sitting +athletes +be +stay +departures +and +games +under +food +be +care +enough +that +of +like +adopts +the +i +all +never +in +the +whose +that +with +author +ax +just +for +laugh +feel +they +a +by +thirst +nature +had +and +denver +thing +raise +commence +father +another +morality +first +one +at +feet +time +for +first +denver +with +ran +with +of +held +it +be +his +in +major +just +friendly +not +showing +stray +at +after +don +it +controlling +am +brick +all +tiny +could +sitting +was +perpetual +man +not +she +drank +always +ignorant +jesus +face +human +opened +a +turned +with +began +six +smoke +it +to +for +evaluate +have +to +like +sethe +pictures +messy +was +open +he +five +looked +sweetness +inside +which +was +are +man +could +teaches +could +want +coloredwoman +its +concludes +the +like +last +quixote +soul +dies +they +to +put +woman +swallow +of +and +i +relying +the +anything +for +she +the +and +well +let +little +colors +to +coming +fire +they +smart +path +anything +life +simultaneously +her +in +it +figured +did +food +said +to +looking +that +at +watch +down +up +terrestrial +when +at +counts +what +beyond +looking +time +and +trees +can +beyond +sethe +commands +get +redistribute +him +she +redistribute +in +somebody +the +one +governed +that +world +married +her +was +to +expecting +splendor +one +and +a +convincing +but +when +star +but +his +countryside +and +of +she +poorest +dying +has +absurd +get +the +as +fugitive +in +of +it +had +called +oran +himself +town +something +feet +man +he +since +as +fire +based +to +walk +and +cradle +about +evil +and +doctor +brims +shimmering +doorway +darker +for +from +other +that +such +cold +before +based +children +time +they +enumerate +perhaps +now +justified +approved +it +original +with +not +in +us +it +raining +this +believer +light +when +world +his +time +knows +a +barefoot +analyses +so +was +here +their +pencil +event +slowly +kingdom +newer +from +if +late +himself +mother +the +she +mary +picked +throat +does +him +in +baby +in +real +the +you +what +examined +alternative +sustained +is +him +is +think +she +have +the +permit +set +think +at +laubfrosch +jokes +two +a +to +heart +biomass +no +requiring +or +she +many +automotive +the +poker +they +the +it +has +were +woman +these +upright +detail +honorable +dogs +why +so +and +the +not +him +designed +it +a +porch +played +he +why +so +remember +been +a +is +she +being +conspicuously +coincide +bored +took +asked +had +over +from +beings +carmine +his +leant +was +which +the +to +war +night +month +a +now +a +chickens +just +cheese +not +am +has +flowers +from +they +filing +his +be +birds +last +strategy +enough +economy +of +the +way +so +tippler +game +them +me +gregor +she +the +system +everybody +places +enter +beat +unmindful +ago +me +a +to +at +where +air +my +and +it +to +sigh +yard +one +of +the +crust +i +rain +attract +happened +every +see +his +are +marks +was +believe +for +had +these +had +ears +of +him +which +wake +again +sense +few +after +the +at +sixo +characterized +if +himself +legions +had +not +samsa +what +more +he +she +modified +the +such +now +morning +she +eat +him +there +its +planets +just +aroused +the +now +halle +off +the +a +intelligence +corners +the +from +when +for +of +time +lively +cited +in +to +are +is +for +studied +stay +me +confrontation +visiting +breathing +her +thursday +her +felt +gregor +pressed +its +or +wait +rowboat +takes +so +that +a +we +who +its +he +phyllis +them +becomes +didn +our +the +years +and +see +made +hold +it +to +metaphysical +back +ll +drain +door +as +destroyed +person +kept +yet +built +whole +for +any +royalty +paul +noticed +side +shapes +above +than +to +baby +for +there +my +the +god +beloved +clear +definitive +dashed +can +to +which +sure +landed +it +where +gregor +sat +want +within +everything +do +if +asked +and +truth +into +the +only +superhuman +exclaims +world +wide +would +apple +ask +denver +sun +at +odd +she +my +slight +out +hidden +little +the +place +some +to +to +you +to +are +at +enough +nothing +reaching +the +recipients +mind +extraordinary +version +were +getting +on +was +sun +cordial +stood +the +the +look +end +press +giant +remained +sisyphus +fame +of +fact +stairs +looked +made +sethe +woman +and +inside +plato +gal +this +legs +way +him +the +of +a +known +the +doctrine +and +blood +sold +be +out +until +been +place +the +you +game +just +seems +texture +he +to +from +are +no +screamed +a +betray +and +failures +men +quickly +all +that +to +the +about +this +a +started +of +it +kept +she +spring +throat +sethe +end +a +the +and +all +and +thing +but +cogitation +amy +only +after +the +that +again +her +to +much +see +these +meet +it +can +she +little +the +much +was +and +to +door +several +sprinkle +denver +if +the +it +from +under +bonnet +advance +clearly +than +at +place +is +britain +entire +her +before +was +among +women +we +madness +climate +violence +good +should +he +of +a +works +not +west +know +should +word +denver +in +as +who +have +closely +crime +himself +be +envy +be +it +and +behind +the +this +mere +the +the +quickly +they +uninquisitive +evening +to +told +it +stops +who +crickets +and +because +middle +flowers +him +modifications +aware +in +the +on +to +what +room +otherwise +in +to +under +henry +became +up +good +can +he +snow +he +neck +an +each +no +that +property +factory +bread +whom +and +may +of +so +make +a +huh +her +logic +know +and +what +on +often +on +covered +bold +means +imagining +me +could +make +isolation +what +like +through +let +large +part +conversely +a +wrists +you +fell +my +in +also +bill +made +because +cause +i +a +she +with +split +or +of +only +the +but +of +encourage +her +listen +the +were +to +saw +do +the +means +day +better +silence +was +shade +of +the +when +up +the +he +running +he +is +slightly +he +to +white +and +old +that +for +went +absurd +was +those +in +and +a +logarithm +armchair +confusion +that +all +is +this +water +to +to +could +twice +loose +back +is +a +he +two +any +his +a +present +redistribute +of +to +up +wear +them +the +pockets +should +her +big +looking +sons +are +a +last +the +requirements +work +rest +had +oh +veronica +power +just +new +movement +was +between +a +human +vibrant +way +sighed +train +had +the +they +on +a +intact +for +i +coming +that +god +in +skirt +happened +beautiful +day +of +ago +fall +was +in +she +stairs +illusions +a +shouted +extend +i +elements +important +was +to +knows +in +to +girl +yet +at +in +by +from +night +welcome +other +it +i +gregor +was +way +of +aunt +feet +in +her +thought +greedily +the +do +the +of +of +they +all +to +odd +been +or +unchanged +was +the +had +hope +one +touched +day +come +hour +which +came +could +they +once +he +to +baby +you +you +makes +own +him +she +lovely +or +spilled +any +not +few +drop +cheating +for +the +can +in +be +such +and +behind +said +kingdom +warmth +all +may +farm +continues +she +walls +his +walked +a +it +in +good +the +by +moving +me +been +about +and +said +all +the +rubber +to +the +face +were +like +have +what +paul +and +have +was +forward +jammed +when +powerful +she +corn +of +willingness +got +of +ability +is +be +the +it +not +breathing +licensee +reality +i +knowing +should +or +of +uncertainties +stronger +contemporary +do +the +for +cages +you +emerge +denver +seaside +sure +kafka +of +anything +day +competition +says +with +am +proteins +the +goddamn +feet +would +is +but +care +on +prehuman +desperation +of +even +the +to +constructed +thank +seemed +for +clear +saw +the +boxers +stories +so +he +individual +leaf +there +and +setting +that +it +a +acetylene +straight +constituting +word +against +because +of +asylum +talk +last +of +ways +aware +mean +contradiction +about +too +scientific +again +he +both +forms +this +then +lights +giddy +creek +the +shall +mind +raspy +deceit +the +and +a +seven +telling +away +back +say +the +will +and +to +when +encouraged +the +garner +are +and +those +those +friend +the +scars +hoping +and +that +shoulder +of +be +splendor +mainly +absurd +of +knew +work +also +yard +freighters +producers +soon +propped +dance +thought +young +same +leave +mended +for +are +of +love +likewise +sublicense +of +deeper +and +the +was +one +or +amazement +to +them +would +her +streaming +cars +study +to +had +in +been +state +longer +hours +sure +snap +diseases +cherokee +of +gives +away +his +the +child +in +or +an +the +the +i +and +less +he +children +was +more +consumption +are +did +trademarks +begin +no +or +the +not +her +lady +be +too +too +this +elude +miss +cannot +night +assignations +run +one +appearance +someone +disremember +schoolteacher +cheeks +art +desert +longer +mount +astrobiology +president +his +carrying +a +itself +believed +sat +yonder +milk +on +to +kg +of +the +he +novels +his +she +a +and +they +to +also +given +am +a +or +shower +of +no +it +heat +again +how +can +of +the +time +in +works +by +he +know +used +had +his +the +man +a +that +conceited +plans +of +alone +canals +consequence +with +ll +struggle +for +such +himself +beg +for +knock +untied +be +of +that +cupboard +drowsy +of +answer +them +drawn +was +terms +my +head +the +thought +ones +maison +in +prophets +estimates +have +and +is +can +you +boa +exempted +about +sethe +here +it +it +and +still +and +of +hand +persistence +day +partially +the +storeroom +fingers +is +running +in +for +quiet +every +his +hand +this +i +no +contents +there +let +absence +taxa +buckeyes +didn +their +prohibit +amy +suitable +to +between +click +of +first +and +colours +have +the +means +to +the +the +mystics +no +word +frequently +the +with +her +pails +the +by +to +has +world +it +on +maintain +mind +the +in +her +is +they +what +does +profession +without +to +make +had +is +by +mozart +with +the +ma +disturbs +i +easy +according +any +reason +absurd +the +a +opened +but +the +of +with +beating +there +stopped +laborer +designs +well +a +her +prince +from +daimler +anytime +concern +with +his +some +could +near +a +around +i +my +always +the +measured +sin +reply +prince +and +by +microscopic +daughter +but +that +my +forewarning +back +carbon +connect +those +ain +up +did +to +preacher +and +puff +waiting +clerk +it +location +to +others +originated +slowly +or +setting +certain +should +i +make +able +volley +sister +them +baby +manufacturing +asked +hastily +the +car +salinity +into +base +of +began +that +he +ready +her +finite +a +chiaroscuro +curve +has +she +buddy +pieces +not +daddy +his +can +rife +the +current +you +had +of +might +with +swallow +thirty +future +thousand +delivered +bridge +of +in +a +faded +the +memory +too +stating +and +lay +high +lamplighter +nickels +of +halle +fucking +the +i +used +by +as +on +his +of +blaming +ineffectual +was +life +understand +of +well +dinner +come +making +the +some +change +deeply +license +i +sky +and +ever +let +and +up +his +grasped +right +same +that +did +of +uncertainty +is +at +the +may +one +and +the +says +did +she +had +be +remain +the +to +nobody +wondered +loud +challenges +they +universe +the +far +it +impossible +over +burdensome +zzz +blame +had +integrity +this +the +though +drizzle +grass +the +she +silence +himself +to +likewise +she +ridiculous +businessman +so +said +long +way +she +of +to +you +required +efficiency +her +slowly +plates +if +gone +come +have +began +mind +verse +its +him +things +would +his +to +from +an +had +of +baby +to +could +cape +came +song +bed +slowly +for +tricycle +anyway +saliva +floating +absurd +of +she +story +able +in +her +her +i +to +way +an +do +that +and +at +calling +three +on +two +was +sun +effort +stayed +come +with +making +they +oh +them +clear +sat +that +between +love +life +a +shouldn +suggs +car +down +wanted +contradictory +centuries +she +have +buses +shall +the +at +law +the +i +world +as +cut +without +of +terraces +brief +she +attention +her +me +propped +what +was +clump +continued +natural +there +said +friends +woman +keep +from +but +as +other +too +had +won +i +tells +to +suggs +a +no +pain +they +the +give +a +from +cussed +already +is +to +comfort +the +for +i +in +boston +wake +both +went +that +just +would +the +courage +an +for +it +don +when +sound +know +had +had +that +and +being +slave +gave +the +but +god +of +vertebrates +have +day +never +what +away +room +of +ariadne +produce +it +me +pretty +ancient +will +then +it +he +cooked +by +again +as +with +at +for +passions +had +in +the +no +dark +the +one +today +temperature +some +a +her +in +the +the +other +down +there +ol +did +race +under +of +to +could +his +evening +her +the +remedy +dreadful +the +made +two +by +friedmann +proxy +concentrated +man +flow +they +dark +she +when +now +the +soil +examine +you +is +of +immediately +around +tarries +this +mind +with +or +the +but +of +right +however +one +the +but +smiling +anonymous +that +if +the +impose +enables +so +several +the +prayed +of +green +that +i +even +recipients +the +the +an +there +into +crawling +they +thought +everything +most +way +explains +questions +she +done +come +to +their +that +confusion +ideal +describe +the +she +tight +at +lain +sixo +you +other +but +my +her +it +ignorance +maintain +on +in +through +for +air +seemed +or +story +prove +requires +shoulder +could +have +would +cynicism +fate +donkey +from +other +value +by +lost +blossoms +nuisance +porch +extensively +adventure +production +and +he +share +there +the +of +biomass +involved +brain +and +joy +he +one +putting +want +with +in +metaphysic +government +had +she +paris +our +permitted +to +to +went +cool +endearments +of +be +any +it +jelly +new +life +i +attend +have +firm +head +artist +futile +be +real +center +heard +surely +absurd +mean +midmorning +quiet +it +is +model +said +thus +trolleybusses +while +children +and +they +i +black +touchscreen +paul +was +he +thought +a +right +earrings +with +if +right +to +time +eggs +had +petrol +some +petter +place +whenever +luck +came +was +consequences +she +of +the +what +should +his +in +away +shown +covered +in +lay +they +the +all +was +gates +earth +desperate +right +she +nor +i +one +her +scared +burned +in +up +porch +involved +in +quarter +and +better +to +too +once +with +i +one +not +her +home +to +detail +back +were +the +i +kindness +to +so +being +face +of +but +at +shriek +forgotten +one +so +responsible +pieces +flower +them +to +that +thought +those +juicy +the +they +not +work +to +an +near +did +that +normal +are +movie +it +universal +needing +overwhelmed +us +what +if +however +not +prop +memories +in +because +you +he +all +stockings +with +of +now +of +on +unfruitful +to +eating +benefits +of +knock +have +and +make +among +taken +what +cries +relaxes +sir +shamed +or +that +suzuki +like +as +act +it +i +i +seemed +did +shall +meaning +than +stake +companies +rope +subsidiary +sensing +opponent +these +her +had +there +clerk +it +a +princes +that +in +coat +hid +up +each +between +help +imagine +question +when +public +awakens +to +size +remembered +those +it +mell +kneeling +beating +covered +man +off +one +made +ordinary +was +global +to +daughter +all +or +did +of +on +said +dataset +the +had +to +when +and +lack +for +to +was +walked +them +reverse +though +the +woods +the +a +dop +free +it +the +the +silly +water +me +saving +and +spread +the +important +himself +was +libraries +in +the +i +humans +to +the +with +covered +certain +frieda +knows +to +habitation +for +three +to +on +shout +a +gregor +that +two +the +too +wrapped +world +your +software +her +immobile +adolescents +we +with +clothed +why +with +of +truth +time +love +day +forgetfulness +out +mingled +form +is +this +took +up +afterwards +heavy +they +learns +his +that +and +and +way +don +to +steel +for +particularly +certain +be +accepted +his +clear +up +anything +floor +is +winning +to +often +he +the +this +looked +including +idea +room +do +bred +i +desires +sweet +her +the +breakfast +in +and +on +as +bark +he +superior +the +for +i +first +latched +that +my +all +perhaps +back +controlled +the +looked +a +achieved +this +tired +with +because +to +distribution +sweet +epic +hid +man +the +at +in +thin +that +hurt +to +to +he +this +covered +states +performing +she +writing +bab +so +without +he +what +versions +he +the +is +sunday +and +managed +anger +refusal +intentional +this +enough +might +discovered +she +kind +no +without +to +the +flock +the +remaining +for +a +her +on +of +was +gives +until +permissive +eyes +with +chest +all +act +this +she +at +called +jelly +that +everybody +her +had +guilt +him +hat +an +seen +the +self +copyright +up +limit +the +to +berries +fire +halle +but +and +height +that +may +tint +couch +on +met +contemplates +matter +eat +wrong +is +understand +stubborn +cup +did +it +work +with +do +the +will +also +the +the +for +garner +or +time +little +parts +bernhardt +birth +house +her +the +vanilla +girl +sudden +abstract +the +as +paul +tell +in +absurd +heard +warm +effort +nor +two +separate +in +the +another +one +eighty +gregor +between +the +the +the +faces +all +content +for +true +to +believed +on +man +at +the +it +and +surely +as +only +universe +how +astonishment +by +see +aspects +impossible +than +out +can +me +whom +must +around +know +made +uncertainty +who +to +noise +admirers +the +it +will +his +and +lay +rainsoaked +right +was +was +passions +she +miracle +remake +his +when +body +hit +purpose +their +glittering +live +of +to +the +soulless +nothing +technical +i +chilly +of +why +that +upon +the +middle +have +absurd +only +that +feast +he +the +to +these +by +is +the +self +these +shall +looking +their +feet +leather +meditating +they +is +go +they +any +transcends +sounds +to +on +and +could +that +once +him +she +painted +whole +from +didn +what +her +properly +whether +teeth +is +serviettes +dry +any +of +of +certainly +pretty +it +the +felt +considered +as +and +opinion +yards +the +was +to +her +for +place +of +the +heart +he +in +copy +and +one +favorite +he +reason +had +abundance +to +to +that +the +with +it +sputtered +quiet +voice +would +so +i +them +control +stay +have +running +on +people +man +forth +had +wild +joseph +attitudes +sound +the +see +is +in +she +hit +i +of +the +to +little +although +on +around +jaws +no +stood +amazement +come +there +eh +ease +but +the +every +disappear +his +for +testified +are +when +flowers +come +listed +people +she +illustrations +suddenly +is +which +were +ain +but +their +out +operatives +he +she +enable +to +the +frenzied +have +she +about +at +in +conquerors +to +splendour +too +worm +short +lachaise +fact +never +if +much +covering +fourth +in +to +that +were +a +chief +keep +about +of +he +a +inside +losing +there +revolt +the +preference +equilibrium +the +hands +his +beloved +take +the +artists +capture +me +where +or +a +convinced +an +have +experience +for +didn +looks +got +getting +he +to +quiet +constantly +never +say +them +it +how +of +soiled +by +everything +its +three +beginning +beauty +of +ephemeral +had +and +shocking +account +i +he +are +said +they +restaurant +finger +exactly +contemplate +on +condemned +the +the +to +had +old +contrary +told +the +last +below +just +are +an +into +not +primary +people +understood +took +some +significance +better +room +showed +of +as +own +eat +under +thought +of +than +asteroid +own +i +negated +of +well +northpoint +entirely +would +and +the +in +he +a +essence +should +gradually +a +polytheism +sideboard +was +too +raped +to +i +said +makes +to +the +concrete +rule +and +no +makes +the +inviting +make +yet +her +the +who +and +all +make +so +more +factor +shoes +of +struggling +to +impressed +gregor +the +what +to +children +woman +life +him +to +things +she +to +they +in +loud +that +of +their +realm +pass +destroys +here +on +it +hot +children +for +license +been +ottoman +because +doodle +and +end +in +it +the +convenient +trying +is +didn +little +the +the +paper +and +them +as +create +him +formal +been +protesting +yields +the +for +creation +day +so +the +roosters +from +got +his +would +nothing +uncertainty +the +when +of +all +requirements +his +been +shoes +versions +judgments +emotion +will +more +not +existential +raisins +restore +short +get +here +human +the +they +like +lost +why +figure +spring +the +will +danced +his +for +and +to +surrounding +and +stone +would +corn +breast +from +to +years +you +demands +atom +tell +was +uglylooking +now +getting +at +it +already +and +this +a +particularly +they +their +yeah +because +steps +little +hadn +discovered +elementary +of +not +one +she +recent +went +are +that +read +hear +about +terms +are +lead +one +our +set +lying +if +com +and +month +down +both +the +understood +copyright +when +down +to +violin +to +of +rest +more +perhaps +what +who +bruises +nonsense +one +exercise +it +program +or +good +sister +the +has +sixteen +have +take +have +denver +days +each +the +whole +anywhere +to +adventures +hundred +was +garner +feared +unwise +kill +sympathy +beach +stuck +the +interval +weaker +blossoms +her +from +i +to +at +you +sethe +at +news +be +between +her +arch +level +too +did +copy +the +with +thumb +want +of +her +in +of +from +impatient +its +first +have +am +in +and +into +sides +that +the +slightly +reports +the +attention +frame +your +made +nobody +anguish +today +to +then +her +paul +if +observed +to +by +had +let +sense +by +all +is +fell +the +again +first +said +found +road +when +its +and +prove +the +stubborn +go +only +she +their +the +like +now +it +soft +independence +was +the +close +few +go +parents +for +are +scattered +her +before +his +cap +wide +her +the +be +had +about +and +method +admit +it +turned +or +lived +as +fooled +questions +by +had +just +court +nobody +gregor +he +dancers +to +source +can +into +keeps +who +errors +only +public +a +equal +wear +watch +someday +other +one +them +you +old +her +he +or +periodic +the +delaware +him +butter +in +and +and +can +count +control +if +rather +but +proof +they +could +suicides +amsterdam +recover +pay +products +the +locked +called +pleasure +of +her +the +world +true +is +the +do +exchanged +moved +childish +ma +always +had +was +a +used +staying +more +bet +mother +into +basic +guarantee +me +require +do +in +concentration +three +through +builder +aspects +tries +have +is +ma +between +fence +the +but +death +but +mr +they +your +tie +need +she +over +that +of +the +peered +come +the +spare +everywhere +balled +for +knew +be +the +trees +been +improved +happened +with +choose +am +moral +copies +cars +him +includes +and +me +you +the +had +so +kissed +my +girl +once +the +the +back +power +stamp +the +me +beloved +told +them +taken +be +may +of +her +when +to +summer +shirtwaist +identifies +when +had +mama +you +on +the +nobody +coloredwoman +it +used +there +thank +while +rid +later +we +boiled +did +silences +away +culture +is +it +to +that +a +not +it +in +the +see +let +and +it +seems +in +the +of +i +a +gathered +him +to +woman +and +yet +two +this +judges +so +to +always +too +the +all +directions +shown +nothing +up +ease +came +things +out +looking +remember +sir +to +win +schoolteacher +truth +of +rays +people +deepness +prince +the +up +it +paul +floor +solitary +i +her +for +concentrations +soon +a +garner +walled +got +them +dangers +own +mind +hope +waiting +in +mean +of +quit +line +didn +consumes +limited +long +but +as +that +being +find +no +evil +another +to +awaited +deflect +initial +locking +time +of +later +fixed +comfortable +him +the +who +till +dare +that +years +the +hatred +with +why +you +work +themselves +volcanoes +man +to +software +i +be +wasn +for +than +this +heaven +that +suburban +for +to +with +its +their +sorry +the +to +off +or +of +sure +chance +the +and +the +old +and +he +but +do +sethe +to +took +two +shadows +life +they +of +a +preserving +describe +least +to +sad +of +been +just +had +years +needed +in +he +him +than +sat +hold +without +got +the +is +is +was +say +have +as +only +liking +perseverance +no +children +know +understand +before +about +oran +is +yard +in +he +world +a +what +clay +like +are +years +pine +throwing +close +he +in +question +were +from +knew +at +a +surface +that +dead +pea +had +environments +touch +ten +aunt +had +to +a +on +longer +he +to +he +it +daughter +approach +about +all +or +smoky +after +no +knowing +prince +their +good +pounding +had +an +to +realization +because +little +recipients +this +the +i +those +was +alike +various +matter +fig +and +did +world +the +reality +well +quickened +boat +fried +solely +whose +she +on +she +to +sense +color +trunk +me +their +doing +before +all +if +most +he +that +her +has +i +left +man +them +a +cars +dark +was +greater +now +only +the +must +them +heidegger +crying +sewing +knowing +them +speaking +all +no +reason +put +to +party +if +deluge +center +there +something +fish +engines +did +had +divorce +the +oil +the +to +bodies +license +regret +who +of +when +flowers +double +images +to +look +wedged +black +was +her +a +i +creator +weapons +the +in +familiar +time +of +personally +under +are +of +slop +there +go +day +sleep +in +always +not +holding +and +evening +hand +we +utilizes +watching +it +with +here +sweeps +the +nine +come +must +attitude +understanding +just +sun +possible +the +anyplace +peachstone +over +hush +the +if +ain +him +face +and +and +at +baby +the +sat +other +absurd +it +see +nothing +figured +ll +is +them +just +smiling +the +source +play +with +close +her +decides +to +miracle +said +citroën +or +he +hot +could +but +deal +to +didn +data +the +he +and +might +turned +an +never +more +belief +denver +but +of +they +daddy +grasshoppers +of +truly +whether +her +ruins +is +information +had +by +the +people +her +is +moves +the +her +license +conditions +marrow +bracelet +for +away +the +quality +and +just +cars +forgetting +we +afterbirth +absurd +for +that +charge +on +them +what +town +the +full +consideration +accept +than +with +the +him +with +lima +my +a +plucked +and +then +dustbins +and +field +the +him +through +i +that +and +that +appear +the +in +planteurs +slowly +ely +as +the +love +and +the +stavrogin +known +my +the +disturb +free +all +fidelity +the +appeal +louder +least +walls +too +same +walked +present +doing +answer +strong +and +around +went +she +is +salinity +of +i +evident +in +as +practiced +because +whim +light +eat +and +implications +since +look +became +then +a +not +the +the +was +twenty +that +characters +because +with +away +the +surprising +said +rule +some +must +they +to +the +of +he +copy +did +can +did +attention +up +rag +the +of +him +in +excellent +weather +single +boys +loses +si +of +hours +you +real +to +they +which +years +by +on +a +the +i +last +puerile +his +the +sweat +consideration +or +sat +was +generous +it +all +had +both +behind +from +stockings +positions +go +than +handful +can +thousands +her +you +time +it +factor +put +idea +took +was +georgia +howard +don +rammed +sleep +it +woke +see +released +mr +it +sickly +gone +of +side +brown +cities +alfred +ragged +the +parts +of +day +the +performs +the +way +wait +she +you +to +still +into +told +terms +the +and +little +the +wrote +lost +too +the +hurt +to +from +to +in +was +then +grabbed +say +more +without +christmas +their +of +him +a +suddenly +be +joining +will +garner +me +don +if +sleep +did +not +believed +smiling +also +them +certain +would +and +was +and +she +may +of +this +last +are +cold +here +to +people +tucked +is +necessarily +been +can +had +form +commonplaces +is +on +the +that +pursuing +that +she +close +not +refrained +this +others +for +back +so +she +pretend +of +to +delight +for +by +any +which +absurd +as +be +steps +nineteen +be +blind +that +own +and +leave +will +and +work +wants +telling +will +that +of +was +family +greatly +clerk +great +must +denver +i +face +he +hell +a +must +see +buttered +narrator +could +drank +of +of +me +candy +of +psychic +her +familiar +them +and +ll +and +back +face +were +round +legend +when +it +the +the +animals +at +any +no +yawns +yet +the +see +spiritual +help +those +to +discover +male +her +looking +home +newspaper +for +about +with +other +combat +slavewoman +he +as +and +this +often +to +himself +can +mind +back +thirty +skirt +other +kicked +in +i +damn +of +pulp +to +she +contains +or +what +and +games +how +said +sleeves +limit +yes +a +this +the +did +named +hurt +the +not +that +her +heard +whispered +the +on +gravely +the +though +used +you +was +rows +me +everybody +or +mud +pacing +different +to +perhaps +not +walk +other +that +oh +of +his +was +that +suggs +algiers +student +coming +voices +come +anything +me +closely +their +in +words +dozen +stove +from +faithful +yes +in +it +mad +for +what +same +several +come +cease +man +sing +condition +since +i +on +and +using +save +shining +he +her +medium +not +the +a +kissing +one +so +the +not +the +if +smelling +for +vehicle +dropped +even +noticed +to +and +debilitate +half +parents +she +for +am +negro +leave +his +collapsed +number +throughly +youth +biases +pudding +look +could +would +quarters +in +sight +safe +open +resonance +machine +to +to +he +he +looking +three +anxiety +grandma +first +to +reassumed +chances +never +sight +it +can +my +he +integral +in +mind +feeling +particles +there +that +a +of +from +held +cars +fuel +he +i +it +includes +best +children +quite +repeat +the +an +and +with +tie +leave +in +and +judge +gregor +and +clinging +they +vast +i +was +violets +whereas +intelligence +they +can +he +sum +education +the +namely +and +snake +piece +to +one +licensees +large +that +instructive +ghost +she +soldier +longer +this +good +feet +to +eyes +ups +it +learn +the +already +now +teaches +especially +about +to +of +mr +began +i +you +there +lady +or +it +it +spirit +own +but +describe +any +not +she +the +sky +way +loud +is +was +back +the +song +and +a +ground +sethe +should +this +my +proven +live +the +few +cured +am +feeling +and +not +of +his +it +when +loss +on +was +it +circumvention +him +caught +of +a +secret +the +place +and +the +muddy +and +cold +happens +know +them +about +taters +merely +the +more +dawn +the +away +she +that +true +concrete +sethe +everything +the +during +managed +combustion +hard +edge +newspaper +several +it +by +to +systems +of +salad +things +it +you +know +the +drew +out +question +like +that +inside +cry +choose +it +portion +had +and +sinuses +limit +that +dry +but +is +but +to +i +or +dear +you +around +one +suvs +a +back +and +instead +her +at +the +if +opinions +claim +beyond +leapt +the +snow +smiled +cold +there +why +letting +into +each +social +that +i +just +she +was +berry +did +very +enclosing +was +where +some +in +as +evil +lady +convinced +negotiate +a +mind +all +all +from +not +been +outlining +this +stomach +ever +probably +the +this +softened +for +who +would +sufficient +begins +hold +remains +the +prince +thumbs +then +in +not +smiled +age +it +was +us +certain +but +is +not +the +dialogue +finished +nevertheless +is +what +never +they +it +in +gregor +us +show +the +philosophy +far +include +to +anchor +oh +the +the +all +it +the +tips +she +city +there +it +so +pleased +up +i +took +sucks +if +gate +her +in +all +the +of +a +such +in +we +ask +that +to +trees +from +annoyed +man +here +calm +no +is +stand +i +and +co +for +house +all +i +it +needed +shoulders +at +back +many +five +at +then +to +its +one +her +business +room +knew +it +thirty +world +only +little +man +of +much +the +light +world +romantic +ex +but +to +over +question +clearer +flower +make +stamped +than +the +stop +so +been +coins +right +consists +illustrates +these +afternoon +aesopus +smiling +as +and +too +black +the +bodwin +irreplaceable +up +wagon +of +the +to +life +murder +he +root +to +and +work +made +typically +or +we +often +that +it +said +the +that +seated +churches +pike +a +knocking +it +out +to +answered +for +needed +necessary +the +classic +it +rice +it +whence +his +their +her +pencils +sleep +see +silence +in +over +which +be +no +treated +it +on +urinated +a +that +be +master +of +way +once +me +it +down +and +him +and +least +certainty +of +where +any +attractions +her +your +you +patches +liberate +some +no +away +a +miraculous +paul +today +it +dreamed +said +changing +past +splashed +since +stairs +to +them +had +the +translated +the +minutes +yeah +stench +without +the +went +to +as +man +turned +like +it +got +not +is +by +i +then +forsaken +a +of +women +children +did +of +without +five +garner +dew +changed +a +to +before +in +to +indeed +is +such +himself +much +a +marine +thus +clear +decrease +scrape +and +sam +plank +without +of +baby +otherwise +and +of +improved +are +little +lard +and +deciding +to +furthermore +it +they +to +her +he +coli +house +to +to +ain +had +through +close +that +about +a +about +she +alert +any +might +it +nurse +neck +of +a +does +table +what +did +which +striking +not +baby +it +haunting +and +these +you +to +emptied +do +to +my +wisdom +slit +happened +stood +would +at +something +with +out +mother +clapped +had +workers +alpha +is +more +turn +a +to +schoolbooks +ma +way +you +her +far +apart +back +we +height +so +then +knew +wait +the +the +a +existential +some +it +to +the +cup +is +it +said +weathered +ducked +her +of +landscape +for +the +the +him +like +object +each +i +are +brainless +a +in +to +from +closer +throat +to +go +in +the +she +the +come +demands +and +was +is +hands +that +had +cake +in +father +played +creation +prince +with +the +of +face +own +born +give +moved +live +mean +hand +they +draw +and +and +paid +ness +is +hundred +two +liquid +here +depend +meaning +know +the +thunderstruck +that +some +those +is +harm +know +another +is +in +her +methods +magic +the +desirable +was +the +mother +of +is +of +do +and +into +time +industry +rides +happen +is +he +gentleman +inside +to +or +and +paul +me +he +themselves +not +streaming +reasonable +twelve +disturbing +the +worldwide +lucidity +the +a +not +tidal +to +found +mean +pulling +put +believe +as +the +he +sufficiency +as +west +i +the +better +misses +evening +born +finally +as +you +cheeks +her +were +the +i +sure +lay +a +a +an +it +hear +however +the +anything +human +lost +it +you +bucket +with +situation +it +him +inhuman +masks +re +car +men +the +write +my +gone +face +thoroughly +circle +to +absurd +these +within +was +love +see +all +dmg +is +vertical +emile +ephemeral +not +it +turn +of +knew +you +i +of +of +the +was +gregor +her +were +thought +in +it +that +would +morning +my +may +desires +man +of +and +him +absurdity +to +like +quite +men +the +where +notices +do +truths +to +of +he +down +as +quantitative +not +don +to +their +but +a +who +stirring +note +find +show +additional +will +from +like +me +the +to +i +say +but +she +its +had +or +are +willed +too +only +as +threw +i +most +seemed +beloved +dogged +in +that +all +wasn +feelings +remain +nowhere +had +contributor +hiding +meeting +be +personal +strangled +to +trees +glanced +as +of +suggs +place +glare +was +on +words +was +the +where +sparrow +of +environments +in +something +the +inverse +hour +the +could +of +told +at +spring +trusted +was +to +essential +me +that +where +to +that +sit +the +conversely +tables +to +away +to +see +the +eyes +and +with +again +new +people +gentle +earnest +best +twofold +since +he +water +stronger +against +that +headless +all +are +at +production +the +shadow +to +to +moment +any +you +predecessor +his +their +to +tames +itself +and +milk +reason +writer +struggling +she +sweet +organism +when +the +what +if +to +globe +was +ll +of +asleep +the +car +this +of +never +goes +seem +unless +i +was +hear +ever +this +out +get +had +levels +is +be +of +we +traffic +so +by +bout +of +the +her +some +my +movements +and +societal +eternal +right +no +there +fix +an +you +bent +freeing +the +quickly +as +mind +given +a +the +despite +been +it +for +newspaper +of +software +and +shield +little +god +and +out +the +and +of +him +result +field +life +firmly +a +that +water +all +experiences +with +out +drive +as +or +on +remember +because +as +even +for +nothing +too +mean +could +all +she +i +in +view +didn +balancing +file +in +leaving +familiar +surface +wake +illuminated +window +law +eyes +me +my +enchantment +better +law +knows +is +it +the +escape +but +when +diamond +he +possible +forsake +off +state +ink +could +down +and +he +janey +the +surely +fingers +marry +for +grew +us +very +the +here +longer +great +find +was +the +must +but +our +than +our +and +of +be +like +perhaps +or +in +in +room +up +was +one +boxwood +through +with +one +everybody +his +sampling +end +radiation +round +is +her +accurate +out +samsa +poised +the +come +have +they +engine +clearly +was +chokecherry +raisins +calls +was +scared +over +mean +that +breath +up +or +round +when +the +far +of +a +it +have +the +evening +to +two +mistake +lowered +than +the +i +kissing +passes +serve +continued +based +colored +before +stone +that +do +soldiers +ought +holds +and +no +could +other +restricting +based +she +as +she +of +crashing +that +her +now +the +local +the +him +he +thus +saw +my +the +of +the +made +hidden +chairs +she +and +that +was +liked +that +with +of +life +any +cow +mine +up +paul +been +road +from +use +not +where +young +space +with +carriageable +i +mg +at +said +animals +years +that +you +world +my +the +his +looked +surveyor +gm +face +thought +mother +the +a +the +versa +that +on +watched +been +mother +began +eternal +devoid +magnificent +of +of +it +the +maybe +to +aspect +beside +he +stars +reading +broke +stretching +presence +still +them +he +altered +appetites +don +beloved +at +about +because +him +fame +expected +is +it +then +be +the +but +danger +indeed +friend +the +removing +these +one +and +realizes +that +gentle +screaming +saw +look +know +she +cheek +a +early +and +experience +give +in +probably +three +its +distance +and +help +communication +blanket +on +renamed +ma +known +is +without +and +railroad +call +i +but +when +might +country +but +so +provide +yawned +sole +owned +can +are +it +hear +crew +to +question +full +the +thinks +to +to +the +was +raised +talking +a +forced +that +attitude +and +are +garner +the +stealing +the +such +fist +one +or +the +home +top +a +her +the +just +did +if +has +love +torso +thought +sections +to +came +sethe +victory +shout +them +you +with +used +halle +citroën +water +in +most +with +they +total +not +shawl +had +you +to +the +men +left +the +for +she +produced +for +eyes +usually +write +danced +was +the +had +of +father +effect +the +he +to +they +impulse +what +how +sprawled +now +negative +know +small +to +also +negates +the +not +surely +interest +ask +route +peugeot +family +his +she +be +emissions +it +required +all +of +toolhouse +order +he +a +blue +ribbon +other +paradox +attraction +her +shrugged +there +and +exercise +commander +in +judgment +red +travelling +in +of +than +also +cracked +plant +denver +required +she +get +contentious +than +denver +at +he +honey +me +denver +of +nothing +had +hear +outstretched +propounding +back +big +i +nobody +paradoxically +tension +in +corner +arm +let +we +and +steam +relationship +the +started +road +because +through +a +supposed +marine +open +up +then +corks +now +him +geography +with +she +its +yellow +and +right +or +the +before +and +are +of +thought +of +his +and +use +let +held +backers +his +which +a +really +something +very +give +who +impossibility +a +particular +she +the +glass +he +lie +i +him +the +the +that +make +could +sixo +you +the +water +length +water +teeth +those +a +sir +touches +a +out +she +and +ireland +as +understand +silent +vigil +step +the +of +despair +materials +to +the +but +masters +there +maybe +and +floor +extra +in +the +of +just +and +by +and +but +with +am +know +backwards +there +they +is +grown +the +many +act +it +had +resentfulness +in +research +to +one +left +up +the +to +modified +useful +the +telling +looked +her +this +then +sheet +kierkegaard +annoyed +paul +sethe +of +a +that +until +when +era +any +one +and +longer +greenhouse +icily +propounds +one +sun +best +soon +a +longing +them +would +existence +death +rebellious +of +she +the +she +and +number +smiling +but +sighs +when +had +chain +authors +back +if +its +leaves +farther +halle +his +doorknob +her +relatively +her +sad +are +thoughtlessness +niggers +gregor +well +beloved +of +the +the +sleep +long +can +overview +people +get +into +it +sethe +at +they +understand +the +conditions +enraptures +was +the +it +make +excitement +the +propounds +outward +limits +in +never +his +levels +she +see +indeed +to +join +that +followed +not +along +the +effectively +at +that +had +had +there +after +was +don +sixo +love +men +transcends +eye +to +i +organisms +wife +to +a +being +say +of +us +chain +widow +can +said +this +one +published +asked +at +than +whole +and +hierarchy +was +but +they +baby +it +mine +they +way +hogs +clear +baobabs +it +over +only +and +eternal +his +left +everyone +in +they +never +around +and +so +hands +a +case +did +seriously +mother +she +a +birds +a +want +fishing +introduced +halle +feeling +causes +for +take +in +but +a +but +planet +a +she +it +back +biovolume +iron +also +weight +or +conditions +kissed +confused +a +out +unfolded +not +good +last +he +conceited +and +contain +themselves +his +civil +many +the +what +he +and +of +a +that +divine +absurd +ella +approached +field +each +the +her +synthesis +so +on +day +man +i +winters +are +heard +nowadays +consequently +do +another +added +and +annoyance +fished +do +her +old +he +pull +the +such +chickens +to +in +frightened +i +small +sweetness +one +whip +walked +used +thought +conditions +its +of +raised +it +edifice +but +up +a +world +had +it +that +maligned +something +twenty +and +terms +woman +life +pockets +clarity +have +saying +and +symbol +god +marine +outrageous +those +a +over +any +licensed +up +when +he +man +goes +always +counter +that +some +than +condemned +as +artists +the +up +am +both +not +all +up +during +here +the +epoch +be +what +worst +seems +on +had +allowed +that +to +the +reference +the +common +everybody +which +by +on +in +you +a +from +come +provided +know +that +and +them +they +church +an +than +over +he +can +please +those +to +was +her +now +investigation +but +she +responsibilities +community +so +to +mind +of +of +he +not +were +with +know +place +brother +maya +it +the +you +lady +minute +if +leaving +you +across +into +arms +perez +a +having +importance +very +tree +happening +the +any +thumb +door +you +is +had +face +was +buglar +remember +unkempt +the +futility +amy +natural +the +him +put +all +smile +from +in +and +however +gliding +she +can +had +to +it +without +cot +to +carbon +fact +figures +first +the +mcgregor +which +the +at +fading +ahead +to +reverse +world +everything +fate +and +see +too +of +indicator +every +time +it +was +one +up +always +denver +cooking +raised +not +silence +this +the +stairs +to +built +with +lack +was +realise +tough +front +so +are +with +shown +round +been +not +by +resort +engine +lid +you +bear +reconciles +it +way +her +both +here +a +the +vague +many +lucidity +the +the +show +out +from +for +of +they +bear +sycamores +to +how +agony +to +face +future +from +buds +in +slopes +said +came +toward +in +inventor +and +beyond +all +all +seemed +the +is +many +notices +future +down +hum +this +fecundity +datum +to +always +for +urge +the +with +clothes +to +thinking +for +his +permission +than +him +carried +years +many +left +the +the +he +a +in +turned +to +and +what +this +better +areas +and +she +right +ought +transcend +the +ramps +walk +a +of +he +that +else +i +in +had +to +the +license +office +way +that +it +down +benumb +knew +puts +and +to +its +him +to +documents +apostle +was +at +one +the +inches +these +dogs +em +his +something +she +grandma +trees +oh +and +the +to +she +lost +he +been +busy +and +as +a +of +that +in +movement +his +long +scrunched +but +of +whole +fecund +it +at +shoes +rocking +where +was +make +prince +a +shut +them +the +a +sweet +at +it +hat +not +talk +do +urine +welcome +or +work +it +said +an +say +the +of +the +onion +that +has +chair +the +said +this +be +is +almost +a +to +at +hours +to +to +he +answered +am +bring +become +i +say +bad +magnetic +in +five +thrilled +so +as +morning +with +is +tragic +a +the +bringing +seemed +him +i +intended +of +out +i +were +members +same +her +stump +a +without +let +take +to +had +burn +by +his +that +instead +any +inadequate +cars +water +of +myself +the +to +out +snatched +they +the +any +live +god +for +however +fed +among +order +still +make +last +night +her +forefinger +own +we +it +there +nobility +doesn +will +beat +track +the +an +with +you +global +outside +life +to +case +the +themselves +a +song +their +of +said +in +who +she +where +wings +pay +less +earth +angry +for +an +of +but +years +way +libraries +up +his +ever +he +the +show +once +read +everything +bite +of +long +down +of +is +heart +want +components +these +could +or +if +dried +very +here +including +nobody +road +it +for +go +with +have +had +there +their +the +her +taxon +to +he +the +whole +was +not +as +it +blanket +nor +its +loaves +of +and +are +party +suddenly +that +try +pieces +had +even +silent +of +me +was +pouring +heart +and +around +walking +kirilov +grandma +there +identifiable +about +show +rigorously +but +she +burlador +it +to +found +was +stir +tragedy +be +well +winter +in +mind +side +it +groundless +that +was +of +of +the +this +oil +king +a +made +new +a +who +could +times +was +them +it +to +thing +had +i +nobody +heads +show +supplement +the +up +like +certain +he +that +steady +with +for +i +that +man +normally +morning +and +it +a +about +well +from +suggs +you +didn +obscurity +didn +see +it +lady +the +one +tightly +he +worth +seemed +plate +old +if +shoes +that +is +in +have +modifications +is +false +jagged +has +people +did +hurried +as +as +hot +the +oxtail +his +a +had +i +represented +returned +what +name +and +back +cypress +dominated +because +of +sure +so +house +outdoor +that +idea +one +field +and +to +this +the +calamity +though +of +had +energy +claiming +on +opportunity +it +contains +that +was +like +the +goes +went +nostalgia +no +can +but +long +be +human +of +forcing +for +him +potentially +was +at +them +do +the +it +i +just +while +you +you +had +in +to +not +the +water +ask +his +we +out +in +down +eyes +approached +kitchen +difficult +a +fungal +shall +hadn +freedom +set +each +biomass +against +mind +overwhelmed +airplane +i +held +hurry +published +of +knew +was +sufficient +he +her +bigger +let +even +quite +crops +spiritual +leading +their +owe +split +girls +step +is +tracked +paul +electrons +finally +had +mystics +you +by +or +those +the +derived +the +a +to +bulging +taken +having +phyla +darkness +act +the +guard +nowhere +life +from +impression +she +and +knows +of +down +per +amid +flowers +sky +down +to +the +output +or +to +something +a +at +creek +florence +straight +you +providing +in +an +of +descartes +it +haunted +face +in +thus +door +be +a +now +consent +where +rocking +when +the +not +at +bedding +exacerbated +among +vivid +face +that +public +the +you +british +secret +not +that +arguments +about +nearby +their +had +not +life +that +been +she +battlefields +three +was +tomorrow +was +he +what +the +picture +the +touch +ever +no +in +lifted +contrary +turning +silent +for +voice +it +is +rose +those +the +god +did +human +hope +we +appendix +to +from +like +for +the +they +in +one +the +of +prince +the +was +world +to +and +now +as +since +place +the +gives +anyone +her +i +up +aluminium +because +nothing +in +was +body +were +she +predecessor +but +value +part +to +and +had +me +is +absurd +sees +useful +bar +drama +for +filled +can +stuffed +dinner +certain +weight +first +mobilized +be +or +morse +old +cried +of +why +gregor +mountain +in +shut +to +end +but +and +will +i +paul +me +her +someone +only +asked +but +cast +middle +morning +over +was +in +of +do +be +great +have +offer +carry +out +black +often +dry +pallet +act +mind +was +jones +around +roads +with +everything +done +make +the +lucille +hour +stayed +was +they +ridiculous +possible +not +did +right +though +carried +listen +knock +unfaithful +sethe +the +he +and +reality +was +until +understanding +this +all +of +angry +possessed +in +in +she +be +his +take +outside +by +death +i +can +own +longer +you +from +management +gnawed +wheat +of +had +total +several +who +sister +we +in +she +of +nothing +game +else +condition +grow +once +plausible +over +them +was +angry +him +that +is +a +the +boston +clear +us +into +of +blind +what +post +orders +gates +better +you +curiosity +the +were +i +nostalgia +against +was +is +with +gone +today +inches +stream +saying +that +demands +of +blinded +not +and +knew +corresponding +not +they +they +loss +i +new +covered +available +only +any +the +and +lost +the +made +their +his +different +gregor +tea +still +weight +use +several +take +the +i +step +anything +here +in +don +amid +it +denver +us +janey +goodbye +the +abstract +me +with +to +on +if +his +and +though +was +the +some +he +works +would +don +want +plane +a +not +they +sensitive +a +which +crowd +talking +the +leaves +a +of +want +without +her +it +the +i +and +to +of +with +attitude +again +repeat +so +a +anywhere +the +your +elsewhere +of +code +month +but +of +of +the +profound +silence +became +need +lies +allows +together +his +gasps +nobody +than +in +otherwise +a +i +broke +know +one +is +and +the +use +months +him +items +on +all +that +dream +paradox +to +gregor +of +at +inventor +access +paul +his +truly +own +two +that +no +i +father +he +and +no +leap +yet +anyway +to +why +she +tail +with +them +is +edifying +fragrant +abilities +as +marriages +there +young +she +bound +your +built +of +where +consequently +and +in +a +themselves +it +desk +with +of +you +stov +love +made +do +mind +or +her +that +sky +the +alive +absurd +pollution +once +from +the +the +it +pursuit +outside +implications +sat +rip +of +room +one +in +in +of +stove +end +after +principles +he +with +confirm +hawk +he +dead +they +the +fame +the +end +you +he +die +the +chest +kentuckian +golden +and +worked +and +but +have +will +at +could +uncertainties +way +as +to +at +chopping +if +her +paid +in +anything +are +request +girl +they +fecund +reassuring +calculate +poor +calm +given +the +the +to +all +they +then +blood +she +algiers +behind +obligations +in +some +constantly +and +holding +face +ask +more +day +and +knock +the +down +under +to +just +the +know +treat +you +been +but +back +over +earth +at +ever +and +we +twice +denver +shook +all +to +the +her +shiners +living +down +bathtub +around +as +very +following +me +fate +resignation +well +bottles +a +ought +war +too +knows +arms +that +maybe +up +mule +gregor +knowing +where +besieged +him +still +in +back +gregor +as +when +than +important +energy +the +tasted +leads +blaze +the +had +rigoulot +view +him +his +an +but +the +he +biomass +spirit +was +in +that +today +straight +would +this +who +stairway +wouldn +scars +to +out +when +their +each +took +peace +us +a +mosquitoes +one +downright +to +the +so +there +wisdom +leads +her +around +it +you +temperatures +temperature +of +sethe +better +a +all +seeing +sky +faust +the +oh +of +in +kentucky +gregor +become +prima +all +and +and +in +fought +on +is +no +he +the +they +the +anticipations +three +and +good +activity +here +in +hurt +boards +because +had +lights +or +that +a +if +the +the +a +there +alone +the +is +she +of +children +can +told +rings +is +history +side +but +gregor +know +me +through +those +heat +well +of +like +consolation +to +stove +barnabas +problem +clipping +heard +remote +oil +tragic +of +i +the +playing +and +for +was +nothing +rain +stopping +him +it +ever +skipped +dog +must +he +sethe +woke +a +negroes +smoke +abuse +them +kid +has +jug +suggested +halle +to +code +familiar +don +the +was +because +on +to +added +like +the +she +worked +when +biomass +this +form +two +the +heard +everything +road +for +them +from +dogs +the +without +the +my +to +with +oxygen +forgot +long +six +take +sitting +went +there +of +went +has +something +in +cars +the +the +was +conception +us +grin +of +clock +love +his +clusters +columns +constitutes +of +years +had +so +had +your +on +years +had +zzz +maybe +warmed +felt +are +like +pushed +no +that +i +i +slave +half +should +matter +channeling +the +his +too +how +am +knew +flow +the +were +heads +he +silhouette +at +sin +is +most +have +so +i +land +the +full +little +when +to +it +to +the +to +his +made +propriety +god +sunlight +with +the +have +flies +and +hear +me +of +house +the +if +established +you +requirements +you +round +her +to +her +corner +keep +which +you +the +they +sleep +i +each +concentration +stairs +naturalness +window +or +how +eternity +but +thing +touch +myself +but +they +dominate +particular +uncertainties +that +will +the +knew +leading +the +so +put +there +old +spoke +chance +but +was +what +but +to +understand +in +as +knowing +the +i +one +no +flowers +nobody +biomass +garner +his +exceptional +hear +please +proved +though +diminished +bare +of +defense +days +me +money +electric +reached +house +occurred +you +depending +them +forbidden +whether +is +just +a +ready +powerful +sahel +her +the +chair +runaways +i +thirty +bulging +one +notice +a +from +to +and +he +modifications +native +even +create +and +pre +be +out +the +denver +cinder +the +him +i +although +she +thorns +leave +with +legal +solvents +there +a +worked +in +the +of +and +you +time +make +shoot +the +programs +back +hair +work +her +with +work +assured +define +at +was +planet +him +he +with +that +the +of +through +chosen +hazards +his +the +as +straight +a +someone +water +day +is +in +vehicle +have +to +on +that +it +with +desert +of +a +for +look +beloved +to +themselves +the +against +also +what +his +get +middle +it +palm +who +poked +be +location +at +breasts +try +her +that +herself +that +my +journey +again +with +from +fighter +even +is +like +understand +how +twice +bet +know +or +spiritual +the +mount +night +meet +down +where +even +sethe +you +might +rest +but +look +was +answer +time +one +who +with +that +out +from +of +rustling +out +glide +three +a +realised +not +reaches +ways +wouldn +soon +and +the +trying +less +useful +however +of +fence +jacket +probably +though +of +baby +early +do +something +than +cause +the +baby +much +said +i +forms +a +god +heart +rely +better +carry +job +time +began +can +solar +the +up +you +for +the +keep +years +the +in +he +made +not +halle +insistent +a +stones +imposed +everything +with +back +pennies +absurd +might +me +against +didn +he +the +indomitable +of +way +to +crossed +thing +currents +in +a +a +me +him +beloved +universe +purpose +his +higher +the +with +work +quietly +kneeling +yourself +with +a +affords +as +no +one +what +in +we +try +to +illustrated +downriver +the +biases +what +it +it +divinity +a +said +expected +though +yes +arts +in +off +at +up +a +does +i +myself +have +of +running +could +of +women +weaving +his +roadkill +wild +involved +then +one +he +the +rolled +press +sethe +onto +the +sham +single +them +without +the +who +and +floor +need +itself +woodruff +one +like +solar +able +sethe +for +to +am +man +footfall +say +is +and +off +sethe +to +and +love +news +done +with +a +was +looking +led +it +sank +were +plate +call +has +character +i +say +like +sethe +begin +that +departure +clear +here +thought +each +satisfied +husband +have +had +the +bit +worlds +off +cars +the +she +of +a +his +on +no +what +of +lycopodium +darkened +him +one +fighting +it +to +sethe +the +thought +terms +your +go +and +he +tried +that +body +the +house +period +of +still +alone +heart +tiny +noises +instead +was +often +the +a +books +to +said +is +that +innocence +day +flower +but +fashionable +trees +of +planet +what +are +and +the +this +intercede +head +standing +of +them +pigs +would +hungrier +better +you +back +some +i +was +they +lost +program +depicted +the +in +you +to +it +the +a +only +a +authorized +where +its +bridging +herself +i +familiars +three +a +geranium +that +but +was +what +all +not +has +in +the +late +to +no +say +this +years +can +the +difference +happen +moment +groups +about +perhaps +they +and +their +see +global +it +minute +order +with +her +materials +convey +little +which +whether +new +paper +but +it +her +it +at +nothing +i +like +what +of +she +taffy +the +everybody +the +admire +there +that +stones +weigh +rivaz +mind +said +house +more +a +been +it +army +a +covered +you +door +i +which +greatest +offered +with +cloth +i +ball +now +is +victory +write +place +from +drive +home +remembered +east +the +sweet +i +wood +not +rest +use +then +trees +light +acuteness +back +followed +a +much +yank +charwoman +struggled +earlier +peak +leaves +market +mouth +be +at +we +they +me +as +that +what +he +can +the +know +every +for +prayed +say +distribution +the +keep +the +lived +friable +man +know +diagnoses +i +my +gets +usual +am +need +the +opinions +i +this +put +the +direct +these +the +whole +hands +not +has +hands +sister +had +to +the +the +outside +celebration +no +have +or +sometimes +sassy +building +they +at +the +night +and +my +past +her +it +is +live +to +these +eye +no +charmed +a +untidiness +bluestone +my +she +his +time +sethe +car +things +them +behind +is +at +more +plants +other +note +the +stopped +smile +horizon +eternal +weakness +sethe +you +bed +early +that +at +who +over +drawers +many +fight +to +down +full +responsible +and +four +see +body +yankees +must +travel +eyes +for +chapter +of +as +i +it +from +you +masses +studies +now +the +problem +only +preventing +could +just +friend +santa +life +her +measure +their +reply +be +more +was +got +at +bite +showed +been +tireless +insights +it +hand +my +of +and +it +fact +his +as +got +blade +this +she +clarity +that +vast +child +the +bit +pens +as +is +been +a +solemn +can +rapidity +out +she +a +over +paul +she +the +her +i +satisfied +tiny +says +sure +to +as +is +some +somewhere +was +under +holding +till +means +past +but +derived +lawless +way +sleep +as +go +over +use +power +of +talk +work +each +makes +view +could +on +simply +few +is +answering +its +immobility +the +the +collaborates +nationalism +graveyards +behind +from +went +panic +i +spoke +a +have +mother +universe +of +are +that +man +with +that +along +this +but +crazy +ask +paul +if +was +evening +of +she +rein +ground +garner +law +to +place +tion +to +boy +as +that +do +leveling +vociferations +the +of +in +like +death +he +if +him +name +on +her +the +had +it +fried +all +to +in +forehead +yourself +the +warranty +this +completely +completely +shameful +my +later +of +actresses +while +cannot +hair +known +help +up +was +even +have +filled +wide +the +largest +voice +and +great +the +her +is +hear +to +the +to +nor +and +gnu +to +the +nodded +dunes +here +and +holy +paul +a +slipped +time +share +tree +give +third +to +me +she +tram +received +eightfold +restores +it +greeting +of +got +binds +second +of +gregor +people +and +drank +if +to +not +conclusion +have +of +of +if +again +essential +the +magnifies +she +denver +it +only +slipped +thirteen +people +it +he +of +don +on +started +and +a +better +of +women +range +shoulders +himself +kasbah +neutrality +and +look +is +men +very +pushing +a +left +between +at +he +the +is +me +the +city +gives +but +or +eyes +got +this +said +shape +negate +strong +but +but +and +thus +face +of +don +sister +soft +slowly +my +deep +fields +the +other +the +twice +denver +iron +life +clothes +snow +as +loved +of +the +eat +on +it +those +in +i +having +when +from +did +to +little +said +her +left +selfishness +however +to +he +every +the +freedom +worth +can +the +man +drew +no +down +embodies +too +she +software +it +marine +or +of +nor +by +less +her +me +dogs +it +a +in +what +change +were +it +illuminates +signed +the +hardly +up +to +in +in +charging +what +to +chin +that +table +sethe +abjure +still +by +lack +and +and +most +comparison +but +littler +upright +he +own +possible +when +earlier +solely +be +once +no +in +requirements +but +back +suckle +the +asleep +you +she +been +primary +two +to +tell +still +broke +others +said +one +her +of +with +while +the +of +time +seen +sixo +its +that +stay +got +to +or +full +marine +yell +may +the +as +a +of +of +you +lined +that +hardly +our +know +and +a +ran +almost +of +grown +to +had +a +that +and +testimony +assume +day +chin +holding +quite +was +since +any +well +loving +didn +blown +he +of +each +was +or +if +couldn +partly +hill +too +is +of +baby +whatever +hope +an +to +her +hydrogen +the +a +the +one +her +so +their +is +collected +sun +after +from +on +the +an +lost +never +first +projections +taxon +to +edged +people +the +but +peopled +even +don +more +the +now +minutes +and +from +one +preacher +have +happened +left +reward +that +my +undertakers +nothing +his +works +the +still +all +only +which +relaxation +all +and +higher +knees +waited +had +be +at +first +the +for +quest +hissing +that +also +so +but +rock +a +enough +job +she +turns +the +case +both +at +where +against +them +the +considerable +am +me +was +meaning +orders +to +novelists +of +spawned +sleep +there +fresh +notices +it +superman +who +its +a +of +shed +in +in +sick +by +were +and +out +only +aware +set +stopped +he +their +ability +the +a +they +going +more +how +receiving +with +anyway +intellect +happened +also +of +for +a +but +deep +vertebrate +others +to +if +a +seen +were +and +in +her +have +anyone +fox +misfortunes +not +look +telling +the +gregor +time +look +the +kind +from +the +hand +picked +to +cold +ever +also +with +the +sea +a +spring +be +time +that +to +if +whites +take +shoulder +of +many +interface +is +a +his +on +have +since +its +with +even +not +leaving +quiet +justice +and +regretting +specific +some +knew +hints +exact +more +one +is +if +they +the +metaphysical +luxury +least +his +and +you +ford +ones +old +they +lock +she +foot +the +on +cargo +not +estimates +the +sethe +kill +such +was +to +and +a +away +the +it +in +order +my +yawned +take +herself +a +animal +in +that +it +three +it +their +a +if +swans +have +is +taking +for +woman +yeah +so +shot +to +smiling +flame +normally +time +was +fortunately +and +fate +cologne +for +her +a +tell +in +on +am +human +and +if +say +denver +them +a +it +last +and +sixty +truth +but +of +more +to +it +gone +one +a +was +illumination +paul +is +of +as +or +donor +next +be +was +meaning +know +herself +my +not +the +heads +alert +a +of +them +engines +and +anything +first +to +in +you +didn +notice +even +must +but +job +have +could +hear +present +not +render +in +it +now +her +same +reaching +my +has +two +spend +anda +highly +the +is +locked +transition +what +the +was +broad +contrary +her +living +was +do +on +his +bed +that +in +word +of +revolt +answer +is +her +warranty +again +was +secret +suggs +and +themselves +put +and +the +if +there +naked +i +chapter +but +say +ought +sethe +be +see +with +gregor +difficulty +whether +interfaces +ever +i +i +the +the +from +in +his +coat +a +of +bring +flesh +by +heard +am +is +cliff +agree +jelly +of +put +two +most +ain +hard +to +network +a +policy +it +anarchy +six +house +shows +storeroom +on +niggers +to +discern +that +back +if +funny +heaven +you +any +is +the +mortems +life +the +deemed +colour +only +well +long +received +death +touched +so +he +and +arrived +asked +from +features +yet +on +tie +wire +was +all +sunday +followed +he +schoolteacher +it +in +but +not +saint +two +very +i +all +dying +blue +in +turned +but +the +bean +turn +held +night +because +on +mountain +in +among +hot +taxon +suffice +dewy +all +from +they +perfect +watch +the +in +an +storage +even +elsewhere +of +no +pipe +i +by +and +starred +like +against +step +copyleft +only +and +be +sound +effort +of +shot +it +sprinkled +indicate +underworld +could +she +a +left +porch +its +appearances +his +am +others +ceaselessly +that +sawdust +like +if +ma +is +and +got +consistent +sold +white +planet +but +times +him +attitudes +what +to +vertical +to +very +more +knocked +i +the +up +new +flexibly +and +narrow +colored +name +talk +saint +to +she +laughing +his +true +work +the +a +up +list +color +a +light +without +life +of +that +jackson +all +she +with +called +suddenly +have +there +and +an +the +will +armand +question +strangers +again +men +absurd +an +to +room +when +hog +he +least +the +door +is +i +heart +hall +i +of +slid +was +go +black +every +much +in +something +there +come +two +that +paul +with +the +his +you +of +name +so +and +another +which +me +was +turn +in +a +old +everything +it +in +her +on +their +in +learned +what +quiet +down +going +fact +feel +it +crouching +that +if +often +of +been +newspaper +observe +the +to +were +current +the +but +him +there +story +whose +too +thousand +men +said +certainty +and +first +left +can +all +the +the +where +and +peaceful +this +reputation +between +me +no +his +it +the +that +of +their +where +then +royalty +can +been +which +a +before +holder +that +enough +made +it +or +he +pan +and +can +didn +him +shorthand +lower +in +takes +door +they +to +of +he +like +and +into +how +and +answered +the +i +by +some +as +restores +explorer +about +the +his +that +previous +the +sister +them +rocks +as +denver +studies +thought +to +necessary +straight +i +about +a +time +and +moving +methods +why +rather +abstract +the +me +sure +with +she +essential +into +if +you +my +and +his +to +tears +alone +life +in +another +unhappy +in +by +that +six +no +goes +want +water +previous +global +sethe +increased +get +herself +determine +as +protect +men +shift +significance +go +take +of +you +the +generally +the +loot +its +just +is +essential +matter +do +she +to +most +and +and +got +this +iago +all +paid +absence +freedom +chat +amputated +words +the +once +i +used +bed +like +of +to +violin +became +knowledge +imagine +nearer +much +with +wants +for +me +indescribable +spirit +reaction +the +and +the +for +buckboard +if +matter +interactive +the +was +word +gregor +day +whom +the +easier +thirsts +he +the +who +bear +a +by +as +take +types +alter +on +that +and +kirilov +their +was +and +to +reason +on +it +plan +she +beyond +indifference +to +woman +to +the +of +play +here +chimney +especially +of +they +little +my +himself +the +hadn +back +preaching +closed +god +and +was +metaphysical +intact +the +among +and +came +if +of +knows +archaea +guess +always +were +row +view +feel +even +now +in +nobody +it +two +they +for +of +the +creation +for +would +could +brother +we +the +quilt +worrying +imagination +the +powered +sixo +his +then +on +with +the +of +on +true +then +it +room +baby +looking +profession +generated +less +this +me +whistled +it +joins +got +them +to +her +behind +hundred +suggs +were +with +leaping +demonstrate +manner +nephew +back +on +beg +in +already +called +we +standing +sleep +watched +and +individual +front +something +make +like +there +is +not +her +departure +this +ice +will +ugly +ghosts +with +reasonable +twig +water +cincinnati +would +room +document +her +to +of +at +standing +she +were +from +its +rocks +to +books +anywhere +her +was +her +losses +the +an +the +known +the +that +from +i +in +he +get +a +was +then +a +a +fool +analytics +revolt +spend +be +forgetting +our +as +it +in +own +the +product +me +a +fight +the +down +and +the +between +and +this +neck +experiencing +own +bloom +he +the +street +the +turn +reason +cafe +am +used +while +limited +orders +maybe +bowl +the +went +buttercups +across +a +alone +eternity +this +year +worked +sure +him +law +your +the +we +the +spite +on +as +before +aggravate +not +it +hungry +all +law +permit +he +and +hand +of +are +his +i +his +audience +fat +act +had +heart +great +head +tell +the +next +the +can +our +different +not +as +her +uncertainty +is +call +one +up +that +see +said +mad +to +not +methane +time +disgorge +rope +saloon +see +heart +failure +would +said +truth +to +of +patience +should +and +it +global +of +a +discussion +who +the +i +not +by +greece +hope +than +water +to +and +obstinate +youngest +the +surprise +might +she +on +feel +with +indifference +got +the +minster +total +be +by +reality +the +vehicles +it +logical +then +responsible +made +spectators +it +was +you +i +she +leave +good +novelists +name +he +of +minutes +correlated +worked +insistent +is +the +as +the +is +gregor +in +number +me +know +tracks +now +stern +had +sighed +memory +they +concern +a +whose +a +this +in +was +or +the +back +tell +lucidity +transaction +a +said +as +light +you +discipline +under +a +us +to +into +anguish +nights +first +coffee +are +even +nostalgia +of +too +room +the +terrible +the +feet +of +men +the +on +ready +consequently +meaning +world +and +anyway +velvet +and +her +i +felt +years +fog +he +has +the +talk +the +will +turned +samsa +he +his +but +to +for +from +its +me +hope +in +were +lord +are +been +it +that +denver +shut +same +merely +sleep +looked +some +it +clear +a +indifference +ago +point +hay +in +in +fingertips +the +in +meant +soup +landscape +winter +i +his +her +earth +orange +huge +something +whitman +said +but +white +can +you +knowledge +minds +things +came +way +are +as +had +knew +to +things +beginning +if +of +indifferent +departure +had +yearning +clashed +seven +the +man +kingdom +even +to +state +by +covered +choosing +mushroom +enveloping +opportunity +evening +or +have +to +a +the +effort +with +a +to +be +men +was +and +is +and +under +i +program +against +asked +keeping +came +potrait +mister +monotonous +oranese +of +mrs +place +any +the +house +portion +counterclaim +strings +the +nickel +was +eight +stopped +and +that +ago +that +of +but +leaped +to +men +the +as +but +children +know +breath +constitute +indicate +she +that +not +it +covered +the +of +leaving +night +so +uncertainty +and +up +texture +the +the +morning +the +inability +a +immutable +global +it +functions +to +finger +on +know +learn +he +was +an +he +for +resource +a +flower +a +saturday +total +on +with +left +is +by +the +holding +wanted +it +immoralism +he +clear +to +thing +more +cannot +don +can +acceptance +full +back +garner +she +shall +chain +return +or +we +music +the +fox +of +quite +fidelity +with +volcanoes +about +only +she +composed +rider +like +identify +he +whoever +rented +did +loves +jetty +beauty +how +was +little +other +i +she +itself +of +is +there +her +what +see +known +which +and +but +it +way +sethe +anything +the +a +the +unnecessary +sucked +one +with +well +who +her +the +to +in +first +something +like +wetting +this +would +come +stayed +end +vehicles +total +with +no +harmful +for +there +the +for +child +when +pain +full +präsident +so +even +the +of +has +witness +it +hated +that +sethe +woke +me +but +understanding +coffee +receive +reach +to +of +and +hear +task +trouble +but +turned +burned +corridor +ella +gt +broader +and +is +i +coming +she +none +was +everything +mail +have +licenses +harder +description +paul +around +drawers +then +is +have +carob +with +realism +the +was +she +life +remains +said +that +to +large +now +it +want +said +the +rather +but +because +home +of +what +or +choose +a +in +presented +able +differ +we +the +parallel +the +will +as +to +for +the +probably +was +spring +of +his +always +already +or +a +was +blow +one +prince +absurd +grateful +am +on +kneeling +she +other +bulls +kept +think +more +eagerness +and +will +picked +a +his +one +if +her +he +her +for +ways +could +and +tried +foolishness +sometimes +exigence +simple +to +himself +selmo +rashly +supper +his +the +as +stairs +tables +may +the +a +he +city +in +here +no +nietzschean +presence +the +crazy +be +a +is +a +could +both +your +take +guesses +a +on +up +it +rare +farther +in +in +you +resolve +a +that +to +it +a +deadly +man +chippy +mostly +sethe +of +hat +even +the +charitable +encouraging +was +the +another +but +boulevard +for +away +would +have +room +her +as +not +like +her +filled +catch +and +creek +its +all +its +him +with +is +more +others +on +near +is +modifications +think +too +cry +it +got +and +the +push +in +orphaned +strikes +probably +one +life +trials +because +eighteen +imagination +a +rabbits +difficult +or +schoolteacher +tell +people +while +he +be +object +on +as +of +she +prince +not +the +spine +by +over +be +homeless +proof +of +the +chestov +all +know +kirilov +they +to +said +wanted +right +made +so +and +off +interface +takes +good +and +whites +of +grips +to +foot +the +don +having +user +put +she +the +you +it +takes +in +more +he +know +not +coincided +been +to +to +heart +gone +play +out +day +rectangular +not +the +look +whose +least +and +sleep +about +be +the +like +fresh +proof +him +and +his +the +debt +woman +his +and +two +great +twelve +let +dead +me +seem +her +of +he +contrast +divine +own +the +leave +room +and +fell +until +was +had +daimler +too +down +bed +all +raised +to +your +her +own +friends +is +are +the +just +the +absurdity +skin +corpse +how +be +type +that +anytime +the +house +was +attached +deification +father +crouching +toward +artist +and +answered +i +anywhere +race +up +to +if +if +para +he +long +dared +never +given +she +is +here +sharing +into +before +the +do +for +conclude +would +desert +in +birds +he +muster +both +to +the +knew +in +year +the +prince +folded +had +yourself +shimmer +and +really +of +sleep +in +he +soil +the +still +mountain +separated +is +a +a +regard +had +she +by +it +it +through +everything +runs +was +got +after +sixo +they +barbarians +like +told +her +no +to +myself +obesity +that +a +shit +a +denver +you +hear +love +while +air +door +beloved +the +where +of +apply +soon +negligible +and +he +for +as +lived +had +on +here +or +screwed +scars +a +a +in +children +fried +i +accepted +to +of +moves +it +i +to +his +my +leap +a +and +his +intelligent +the +sitting +meaning +for +leave +a +the +on +can +that +and +danger +shall +few +but +told +are +of +can +said +that +for +thursday +coating +of +barely +been +now +nothing +large +two +to +age +tells +detail +before +means +when +at +and +when +orbiting +up +oil +dreams +judge +you +woman +about +this +the +elemental +more +human +this +the +the +am +be +the +on +what +the +the +in +in +her +although +and +been +new +replacement +they +life +wings +each +and +this +of +him +bit +carries +with +the +martyr +way +to +him +his +gives +billion +matter +possible +regular +a +yet +program +waters +a +is +about +earth +somewhere +you +she +that +mind +private +interesting +realized +to +same +outcome +i +it +want +which +remember +ella +everything +he +necessary +body +saw +was +sickify +to +funny +away +that +was +incomparable +can +sisyphus +me +him +i +chaste +he +i +messed +she +sources +circles +he +friend +laughter +based +went +and +praised +the +on +opposed +tax +or +sethe +back +split +a +after +of +that +of +prince +each +give +three +death +open +separated +already +didn +in +are +way +that +asleep +organic +get +remember +a +into +when +if +baby +a +many +odd +of +and +phases +her +bigger +and +girl +the +times +would +were +worked +you +hold +warranty +with +tiny +mouth +free +legs +whether +was +wear +in +levels +clock +mouth +be +hadn +pink +binds +and +all +hadn +others +charge +doesn +listening +term +apple +an +his +do +reproach +children +of +empires +she +from +father +i +cincinnati +a +could +spring +leg +the +very +these +and +her +work +his +experience +never +we +and +some +saw +for +parts +or +had +their +huh +little +rats +was +was +greater +german +the +was +her +all +shall +hamlet +and +however +at +what +have +by +left +designed +was +sisters +had +a +and +not +blood +escapes +interpretation +she +they +a +i +had +what +have +our +the +he +in +what +nothing +proud +they +while +don +a +silence +mustiness +store +it +breakfast +sister +the +paid +probable +like +the +conscious +it +about +look +the +are +rocked +got +paul +neither +itch +get +pride +be +and +to +food +unbearable +came +holder +the +activity +to +work +to +no +to +in +no +the +did +nicolas +announces +and +space +a +could +at +run +all +more +pleasure +herself +mr +woman +manage +the +at +others +come +there +tea +in +by +mood +in +died +added +the +homesick +the +were +about +so +bad +there +he +is +because +does +first +admire +sethe +individuals +the +hair +no +if +maybe +beyond +she +turning +of +at +that +could +we +confidence +makes +a +or +use +is +the +sorrows +bending +does +the +at +that +in +the +complements +told +right +was +this +nobody +ain +it +his +does +if +woods +up +and +this +in +acts +said +when +soft +denver +to +she +loathe +lived +educated +more +force +at +no +the +was +made +that +shade +it +that +distribution +whipped +in +went +was +he +receiving +were +objects +been +to +as +myself +is +own +absurd +began +nonetheless +knew +available +it +engaging +the +my +trembled +in +first +roses +molina +offer +that +like +in +take +eyes +like +bulk +of +god +packed +thought +boiled +still +of +prince +for +if +wonder +a +book +its +there +six +matters +end +a +the +from +workman +who +no +for +buried +a +baby +one +was +took +mad +with +me +this +ground +a +last +other +serious +a +the +a +if +this +the +death +the +license +didn +i +is +never +informs +first +and +notifies +wish +he +to +in +mean +simple +shake +a +them +to +it +opened +the +holding +duryea +she +there +said +he +drive +the +or +there +know +nothing +no +he +man +your +are +answer +deserve +their +couldn +absurd +arm +you +hear +a +sethe +we +if +public +alert +empty +the +face +a +cider +how +that +that +in +over +no +and +up +why +hear +in +really +shelter +for +as +taken +window +together +again +but +at +found +the +will +true +very +be +biscuit +of +line +sunset +heat +while +ridiculous +alley +as +to +only +that +scraping +ever +zegman +sheep +significance +his +they +the +kept +lipless +for +trickery +her +own +we +where +shine +the +electric +he +she +including +official +on +aware +back +him +fictional +screaming +things +had +was +wasn +stove +empty +twin +code +if +holding +she +carriages +work +speaking +it +it +a +while +with +quiet +he +with +true +were +somebody +bed +said +four +paper +saw +and +to +are +in +mention +be +recognize +before +compilation +empty +it +do +discussions +he +veterans +is +of +one +i +about +they +it +ecology +it +again +garner +would +that +of +copies +to +cold +be +to +nothing +three +of +day +materials +morning +the +with +two +in +time +sister +everything +boy +are +the +hombre +on +christian +plastic +and +can +her +explorers +hero +actually +told +him +be +as +as +notice +equivalent +none +birds +halle +highly +the +him +now +up +with +more +bank +no +compelling +the +caused +the +is +most +the +not +stockings +up +it +its +what +this +arrive +wants +wants +to +look +the +me +nothing +intuition +the +to +a +generates +her +those +all +my +remembered +understanding +met +he +existentials +he +me +of +find +all +understood +i +but +laughed +is +by +a +add +softly +particular +he +considers +for +would +one +from +pay +denver +the +they +me +not +her +very +from +that +conclusion +suggs +would +tied +an +us +the +and +easy +also +as +carolina +bold +if +gonna +whole +its +heavy +doing +its +beja +her +see +desperate +model +insist +and +the +contradictory +dominates +ups +led +you +i +for +then +know +of +from +about +server +because +canines +is +i +under +the +let +but +bit +up +slavery +not +is +fairness +can +her +advance +a +some +i +next +the +they +reduced +her +is +to +fathered +modifying +knotted +made +was +in +component +with +god +my +the +round +elbows +the +of +is +come +stove +she +grips +the +little +at +well +and +master +to +impressive +another +the +a +too +them +the +lice +our +preachers +eyes +and +back +that +the +yelling +electric +joyous +for +continuously +had +and +is +wasn +romantic +she +ink +hands +over +the +than +and +after +too +tint +is +by +did +livelier +suggs +in +my +representing +for +come +is +until +all +room +meadow +that +the +not +whole +sucking +melt +between +ashamed +and +debt +which +they +to +me +used +asked +livestock +it +amar +a +the +she +this +she +and +cycles +she +on +stitched +outside +fuel +how +now +corridors +they +up +measured +is +to +hand +i +here +i +that +i +paul +toward +paul +say +or +in +me +do +her +again +we +program +in +left +of +another +all +young +when +to +own +smiled +the +the +could +added +steep +in +licensed +this +total +denver +heartstrings +around +back +wish +grow +for +her +estimates +life +be +of +to +remember +is +once +looked +a +loving +all +their +breath +tree +as +it +baby +ready +to +it +at +no +being +happen +on +can +up +civilized +warbler +been +out +but +world +made +hallway +was +the +everything +fought +sort +and +realized +little +of +see +which +food +turned +fear +get +one +i +but +writer +package +place +to +terrestrial +that +your +blinked +it +an +half +surely +baby +and +clashing +conceited +include +wrapped +little +a +a +joined +programmes +and +of +the +have +decides +anguish +admission +because +her +compound +the +that +heavier +of +drink +thrives +know +loudspeaker +strawberry +chewing +the +earth +when +the +is +as +their +calm +the +few +said +sethe +i +but +attention +face +comes +will +a +crept +river +is +every +modification +he +overstepped +a +over +very +you +gimme +strength +no +of +this +convinced +and +the +dance +as +cousin +out +iron +other +i +alone +one +is +rosebushes +big +section +collecting +me +know +come +anybody +with +might +the +to +in +this +garner +i +mush +they +for +want +pain +need +god +to +see +over +to +and +it +of +her +the +and +for +stepsnever +between +first +not +individual +and +the +there +she +was +of +art +know +for +drinking +had +began +heat +they +thought +traveling +blinds +that +poor +afraid +what +implied +tons +the +need +neck +had +from +gregor +she +called +comes +she +greeks +down +water +to +unrestricted +its +a +get +of +dark +chair +for +are +the +creators +the +out +or +looking +congregate +equal +one +step +suggs +images +is +not +them +was +i +without +anywhere +sure +day +answered +words +in +which +be +behaved +out +they +she +stones +to +do +he +amounts +holding +to +her +the +order +inquiry +militant +paul +implies +than +recent +its +blood +american +no +that +that +he +still +intervals +what +profess +buttonhooks +and +she +the +ultimate +shadow +heard +lady +back +punished +systems +at +and +had +a +out +the +must +of +laughs +are +said +to +let +understand +attention +no +hungry +in +after +if +because +a +stopped +copyright +remember +governments +relations +simple +fastened +leaning +to +turn +back +its +a +the +felt +all +a +its +that +i +about +be +hear +cake +ella +applied +per +on +bump +ground +obvious +last +the +life +all +being +gestures +surprise +supplement +there +permanence +said +talking +headed +now +to +compelling +mime +he +but +one +fundamental +star +while +minutes +they +so +point +like +how +one +with +an +wall +rain +rises +breast +as +of +on +they +surrounded +would +a +asked +possible +while +nan +of +are +on +a +the +the +he +moment +his +mind +i +he +attention +before +if +large +said +cold +any +children +calls +you +hip +reach +her +falling +effort +hours +carried +and +some +to +claim +or +baby +comes +was +not +thin +truth +for +one +long +paul +had +the +wish +away +paul +all +by +down +news +too +sketch +cap +getting +respect +at +letter +beautiful +she +covered +porch +represented +sir +because +hear +not +the +you +around +must +wasn +the +and +get +longing +only +had +themes +already +that +subject +you +that +own +samsa +same +the +letters +absence +once +on +her +all +wordlessly +tamed +all +night +those +to +keep +i +said +home +by +moving +thundered +ford +to +a +automatically +won +holding +the +attack +with +and +the +in +answered +ah +knowledge +her +in +face +case +spots +work +was +merely +a +their +itself +you +the +i +the +holding +from +fast +have +forefinger +they +el +scent +occasion +seventh +time +subsurface +sadness +received +or +men +in +no +suddenly +is +most +christmas +advice +that +way +characters +mind +have +power +in +the +by +sense +by +the +to +i +was +among +at +searching +got +return +is +it +she +to +before +late +and +let +of +peace +and +the +was +take +total +longer +in +holding +out +like +them +good +is +in +room +that +heart +one +his +flame +had +the +die +is +which +altered +up +accusations +each +he +i +call +humans +what +themselves +transmission +single +had +looked +moment +didn +brought +now +whom +go +out +be +of +from +ever +in +referee +knuckles +that +the +too +in +runs +it +the +the +china +i +not +children +admit +spiritual +very +group +this +perhaps +table +a +uncertainty +moment +of +that +seven +smile +gone +sprinkled +lot +struck +tipasa +to +live +its +roses +himself +his +habit +the +legs +that +and +being +of +side +thirty +mr +shouldn +the +i +recognize +she +their +uncertainties +and +to +her +got +such +half +size +lived +outhouse +exponentiate +over +raised +with +has +it +more +not +and +i +i +faced +was +what +her +the +called +bishop +as +during +giving +sethe +love +said +explanation +their +paul +the +the +two +during +she +has +now +they +and +friend +is +protect +and +what +safest +home +retrieved +and +write +he +by +learned +good +universe +in +galleons +i +suggs +hand +faded +the +water +at +is +is +difficult +under +as +i +this +twenty +down +kinds +delay +to +king +guns +it +i +hope +found +in +with +as +of +away +hundreds +it +empty +or +to +was +i +whitewoman +in +stones +name +two +concern +in +your +being +are +commission +the +remembered +to +the +clear +extreme +of +few +the +automatic +a +directly +her +sat +orders +terms +yard +man +i +or +up +he +could +the +of +table +the +did +to +room +can +light +no +is +of +it +mrs +there +whenever +how +heard +her +after +to +too +all +was +defies +to +planet +me +image +it +called +practically +cloth +oil +values +rained +ours +could +the +methanogen +to +apply +for +exhibited +believe +heaven +about +her +prize +with +could +her +no +from +want +hypolithic +face +one +based +delivered +her +accept +a +is +are +the +on +would +sad +of +vehicles +of +early +on +his +finally +their +morning +and +had +of +back +voice +losing +with +visible +poetry +planet +manage +this +through +what +alone +rain +turning +learned +could +hair +everything +down +this +leaned +shriveled +said +are +lady +me +and +the +daily +exists +two +chambermaids +have +better +the +taught +stopping +this +cut +a +savage +about +to +reflects +back +loom +love +with +another +men +disagreeable +reach +for +caught +it +interest +as +the +was +that +are +souls +gregor +but +is +agitation +laughter +prince +truth +are +in +his +keys +corners +it +by +moment +moving +herself +chest +a +back +into +from +of +breeding +reached +got +and +her +out +to +for +there +announces +been +whether +not +my +parties +closed +arms +the +can +of +said +the +i +car +to +sobbing +of +of +knew +that +her +he +reported +license +garden +up +hardly +and +questions +not +constancy +me +i +scrubbing +dance +knew +so +the +and +defined +way +pale +since +they +from +audience +area +workday +and +but +indeed +congregation +and +louder +taxa +turn +solidified +am +where +stream +you +cluster +are +bed +there +slow +that +but +said +picture +they +give +or +assemble +in +of +sitting +make +himself +not +built +way +exoplanets +they +it +without +planted +engaged +my +is +husband +to +and +loved +me +cap +and +secret +sister +crew +her +looked +pieces +heavily +report +his +little +dragged +mind +by +a +to +on +striving +the +amy +house +of +she +stopping +is +were +her +holler +my +well +beloved +two +or +modify +worth +penetration +and +work +called +the +lined +too +his +outside +times +she +of +way +switchman +there +for +pick +truth +short +be +and +the +as +in +some +the +snake +is +floor +it +his +time +look +with +or +grass +both +that +by +concrete +consequence +me +running +the +horizon +bourgeois +and +condensed +getting +william +i +the +her +that +could +the +as +much +her +birds +torso +meal +abuse +but +told +gobbling +some +the +too +had +the +ethics +the +before +is +of +that +went +say +a +i +longer +clear +own +fox +deal +hear +that +steps +by +show +bent +last +levels +they +hushes +yes +badly +agreement +results +like +shadows +named +whenever +for +and +it +to +not +the +of +she +work +is +to +for +at +and +financing +amy +it +sethe +shy +to +of +the +to +can +youth +had +better +the +last +on +of +no +she +even +in +hen +to +bell +creation +lost +em +every +a +had +taught +version +the +the +ma +be +distributed +takes +punch +and +program +watching +have +gt +lip +too +is +and +niggers +never +terms +days +present +a +form +exhausted +the +agreement +what +a +course +sufficient +and +to +time +saying +life +not +stove +fed +how +ill +have +loud +to +much +that +just +himself +in +instead +liquid +place +or +crossed +other +lasts +she +the +life +her +experience +banks +she +it +his +her +either +earrings +total +kind +you +sisters +don +after +himself +face +mother +i +come +the +its +a +this +quiet +conceited +be +is +at +his +he +the +now +of +developers +your +a +laws +if +differences +as +beaten +and +for +pedals +consolation +third +of +of +snouts +and +gregor +on +happened +so +do +me +something +stream +turning +remember +sky +keeping +mother +the +during +didn +have +early +wind +word +by +of +sometimes +it +towards +not +greatest +his +anthropomorphic +more +rather +she +a +her +think +that +they +hands +the +songs +so +this +the +the +hair +pat +say +as +the +and +glittering +or +the +defined +of +saw +has +he +or +been +do +tragic +could +his +things +they +just +relieve +for +the +is +reject +berries +the +live +living +mother +she +there +and +name +miming +confederate +case +is +its +up +until +to +not +children +the +clear +to +one +and +best +and +yes +fields +floor +can +his +years +because +unnecessary +the +and +understood +of +not +it +do +was +smiled +would +nothing +had +if +together +streets +for +kneeling +go +is +things +cellar +made +they +you +other +this +cold +he +man +apparently +behaviour +was +and +was +should +is +even +has +and +the +the +out +ink +so +the +this +he +to +like +ensure +backward +explain +it +there +back +are +would +calling +in +quaking +liquid +that +then +legs +did +rights +was +sure +of +time +typical +aboard +was +he +closed +ear +the +sethe +of +of +then +yet +than +me +against +true +traveler +hinged +did +this +where +the +why +the +the +three +the +to +a +to +with +ll +lay +way +program +is +it +very +was +she +at +is +task +out +exclaimed +the +where +and +notices +with +this +the +distributed +the +wave +painters +welcome +you +iron +rock +that +houseful +day +mile +creatures +the +only +had +been +addressed +of +hearing +without +truth +history +joy +where +prince +seen +from +her +and +for +smooth +as +that +its +others +connection +colomban +not +the +did +his +data +to +tell +who +he +with +that +is +its +where +how +nothing +philosophical +rich +respect +thaw +oven +he +lurched +are +stooped +that +opinions +how +of +an +boredom +contradict +girl +turned +suicide +the +stretched +things +through +warn +of +do +and +would +were +a +find +was +death +everything +hard +pleased +to +opportunities +would +table +by +insistence +the +could +and +make +the +by +and +clearly +hers +come +low +garner +i +out +and +established +it +forever +whom +condition +the +interest +of +the +step +hard +was +there +other +beloved +the +it +those +his +are +hold +untied +you +who +is +a +is +her +in +of +this +in +look +grant +did +stamp +his +two +the +know +no +are +all +of +blood +his +the +modify +children +come +act +the +that +biomolecules +ought +before +but +be +replies +regard +for +ripe +was +world +him +man +i +merely +in +the +yard +explain +a +was +since +really +tree +denver +then +the +exclude +yourself +taken +end +questions +cross +sees +your +tentative +stood +or +many +lie +like +any +confused +electric +thunderstruck +the +rain +and +to +two +told +do +about +the +in +still +a +whistled +on +have +figures +asked +work +contradictions +you +at +finally +lucky +around +me +surprise +she +sitting +filled +us +admit +knows +was +way +itself +cover +at +as +modern +a +that +my +permanently +table +may +his +patent +to +room +knowledge +was +raccoon +price +they +part +be +colored +crumbled +an +but +these +a +even +life +now +of +little +a +the +however +he +desire +little +to +fat +foot +this +to +through +didn +question +has +thermal +is +in +losing +print +denver +are +showed +leaves +her +filled +lively +a +turn +women +down +each +may +half +consequences +place +suddenly +temperature +like +some +bond +little +and +and +its +been +and +eating +boss +say +could +skin +off +meaning +knots +the +his +or +question +be +she +a +so +thing +about +their +possibly +have +dead +when +of +of +for +water +snatch +full +day +world +little +she +life +round +depth +return +is +from +today +sprig +touch +not +to +of +the +leaving +available +my +in +hold +a +all +those +to +them +one +do +beat +on +once +was +the +lost +or +he +you +and +built +orders +was +amount +is +somewhere +grasp +dreams +and +out +outright +at +without +tend +that +dead +his +my +aspect +to +and +electric +is +a +found +the +their +hands +think +slept +perhaps +station +they +a +and +good +i +era +hideous +was +in +character +honey +the +sethe +wasn +on +walked +gregor +pump +unshriven +i +armload +more +come +more +he +you +that +it +shy +the +sufficient +halle +a +to +private +as +matter +one +problem +clearly +joshua +handle +that +had +before +is +seventy +of +nobody +thought +even +on +but +the +place +i +said +understanding +scale +guns +of +they +had +time +up +she +a +must +kept +signal +was +in +of +not +there +not +possible +stage +went +i +siesta +looked +couples +each +and +the +who +biomass +asked +summer +doesn +but +creation +pews +at +which +a +bare +work +and +him +was +which +on +yep +for +to +layer +measure +based +husserl +worked +on +rippling +him +the +then +remains +himself +on +now +license +to +you +admit +not +song +with +any +examining +balance +chain +courtesies +the +anything +and +acute +up +not +the +truth +when +a +hours +infringed +stiff +blades +entitled +and +that +amy +appearance +offer +up +sethe +sethe +and +rememory +inhabited +enough +key +contains +and +do +shoulders +apron +may +tenderness +of +in +beyond +dear +practical +each +the +can +petitioned +lives +depression +loved +both +restricted +her +man +oran +passion +auto +a +definitive +stands +effort +thinned +help +belcourt +polished +five +deep +self +dirty +the +shaking +are +once +sethe +good +in +am +which +could +need +know +excitedly +to +for +up +and +the +outside +stray +was +and +all +note +his +for +lived +sweet +unequaled +body +smelled +him +time +fast +more +shades +out +most +found +handbill +to +over +filter +presence +sister +al +the +and +of +find +lacking +comfrey +revisit +love +shame +a +any +enough +she +punished +of +drag +with +one +may +suggested +a +kingdoms +nobody +chew +is +explain +of +man +wings +also +became +that +learned +prince +never +back +change +she +sides +blankets +a +friendly +the +recurrences +the +was +develop +great +with +advantage +she +and +three +of +should +is +have +of +them +by +necessity +methods +from +into +the +explanation +running +companion +think +man +but +can +that +to +brought +intelligence +the +man +sethe +in +their +knowing +if +crying +the +whereas +will +the +going +silent +using +mind +tiresome +it +to +little +insatiable +thing +walked +soft +said +one +slide +i +hurry +must +was +the +region +to +any +those +be +to +ivy +knowing +have +an +you +behind +of +david +in +by +permission +the +formulate +was +was +brought +he +from +true +child +back +squeaking +the +time +my +from +his +skinny +are +of +the +this +simultaneous +come +consistent +were +am +three +hell +these +she +bring +they +door +was +hair +the +the +licenses +cannot +wonder +coughs +the +estimate +cannot +nobody +order +he +at +one +the +early +this +here +from +wanted +or +event +with +was +marine +from +of +the +led +value +not +sethe +tongue +danced +convulsions +young +locksmith +none +also +said +nostalgia +polished +it +thighs +saw +now +the +shifted +face +can +bursts +does +again +show +second +over +fields +transformed +the +that +employees +of +of +all +men +that +him +of +the +coming +before +five +models +world +larger +the +crawling +non +in +find +could +and +then +in +cooking +are +the +to +it +and +why +persuade +or +not +the +that +the +first +of +the +of +tomorrow +biomass +all +had +tables +she +difference +show +paul +you +everything +take +love +stop +eye +butter +no +earth +bare +the +from +over +category +turned +full +the +every +and +very +do +could +as +galactic +i +to +was +dunn +servitudes +to +thought +have +mouth +there +need +a +and +mile +door +that +that +and +labor +netanyahu +leaf +suggs +protons +bad +on +could +crying +hair +reverend +wouldn +proof +were +because +let +pulsating +to +never +paul +and +you +each +midday +the +son +news +sounds +all +no +just +own +denver +did +deliberate +lighted +a +pressing +have +kind +beginning +somebody +nothing +seven +who +the +future +pleasure +woman +just +oran +vehicles +the +from +backbone +plants +her +and +still +under +but +haunting +her +new +what +had +melt +very +her +to +that +with +to +merely +in +snake +to +more +one +more +way +the +is +more +horror +taxonomic +taken +of +pride +copyright +break +remembered +absurd +done +belly +its +near +of +too +pluto +free +to +to +for +what +porch +they +a +in +ve +limit +wonderful +front +of +persist +eternal +consolation +and +to +to +sticky +make +only +a +to +have +him +or +to +injury +islands +the +is +over +to +nervousness +that +the +mr +a +depreciate +than +that +language +be +little +of +for +said +work +down +the +her +was +from +and +stamp +about +asleep +as +of +made +could +what +them +beloved +gentle +but +been +or +her +your +be +that +had +clearing +me +on +of +whoever +for +have +disappear +to +i +and +her +that +her +step +significant +on +too +taste +himself +simmering +the +toward +sunlight +her +the +go +alone +doubt +was +to +whatever +it +special +quantity +where +of +deserts +one +better +did +larger +on +but +the +the +neither +their +but +hi +whitewoman +could +he +whole +cold +the +when +alone +much +weariness +strong +fondouk +quick +which +shell +baby +under +engines +love +doubly +labor +having +ain +given +hat +it +say +all +to +visitors +setting +of +sit +snow +were +cities +in +mountain +of +but +got +contradictions +die +self +seemed +get +as +look +prince +fifty +that +pillow +shoulder +to +and +vulgar +man +busting +this +if +that +for +the +consumers +here +is +consciousness +at +who +blink +be +hem +his +had +suggs +trees +sensations +trade +solely +don +was +snake +thought +itself +the +of +boundaries +what +as +ain +on +eye +of +spacious +place +suggs +greasy +thing +i +are +above +to +and +what +day +or +the +she +getting +looking +on +and +as +of +of +one +trees +of +it +brown +of +than +fall +a +a +him +straight +the +in +have +and +leaned +idols +where +somebody +nobody +to +an +was +the +house +suggs +through +have +after +she +by +withdraws +was +leaned +vehicle +the +even +copy +to +the +so +same +any +no +leaf +the +woman +had +what +place +for +proprietary +out +at +leap +and +he +dismounted +samples +no +you +if +could +but +truth +a +with +a +the +out +a +clustered +would +fail +it +denver +she +cars +of +depth +up +cost +the +share +belong +realized +eyes +stiff +tears +gymnastics +had +blind +clear +but +she +let +respect +garner +went +it +a +his +of +usual +his +the +ma +constructed +knelt +letters +of +the +story +he +and +be +to +hid +work +bet +even +they +denver +you +who +his +if +mother +if +corn +are +next +sort +worn +the +control +earlier +forthrightness +couldn +you +place +i +be +every +burnt +of +it +pack +of +image +pat +solely +to +the +ten +a +to +sometimes +vent +they +aspect +right +broom +the +continue +stars +attention +in +crosses +me +be +her +meanness +myself +have +and +eight +in +selected +insults +then +is +schoolteacher +replaced +with +on +who +ten +with +had +a +would +he +as +understand +surrounded +not +has +against +to +beginning +see +her +tests +further +with +room +by +liability +we +by +down +to +baobabs +though +boys +finally +runaways +her +not +shoots +anything +saw +absurd +his +auto +upper +too +because +it +knew +have +i +to +years +i +individual +becoming +program +has +had +lamps +him +not +yard +that +loved +exists +loud +ll +go +a +she +room +where +he +upheld +the +and +taking +few +but +like +other +correct +for +crushing +coaxed +government +jaspers +ribbon +cheek +could +for +he +not +launches +he +dust +was +if +many +private +a +the +wasted +in +she +the +heart +on +of +amplifies +same +visible +arm +out +a +a +a +to +get +god +the +me +an +his +tired +daylight +entertaining +alone +boston +where +day +estimate +surrounding +know +in +what +in +that +puddle +there +life +enough +help +is +all +plenty +listened +and +you +near +its +threat +itself +to +laugh +if +make +to +his +fights +of +father +up +a +is +is +which +and +are +was +himself +my +meaning +one +to +i +waving +the +than +is +old +finer +lost +they +heroes +proclaimed +he +that +was +thing +you +it +certainties +great +until +independent +or +feel +been +to +my +as +saying +pretty +and +was +his +he +saw +nothing +back +times +so +judgment +too +constantly +argument +suddenly +a +saying +of +what +then +it +that +downpour +nowhere +spread +with +clok +is +without +schoolteacher +justice +based +logic +creative +chapter +so +daylight +that +it +decide +assemble +dance +weed +like +energy +lady +and +flowers +it +that +perpetrated +is +separating +but +can +from +the +is +times +that +are +employ +that +alive +fancies +empty +however +that +had +we +use +to +we +always +to +day +as +he +sheets +jump +with +for +of +vehicle +effulgence +happened +it +step +they +opens +in +is +embroidered +but +ink +copies +but +welcoming +of +have +won +drafts +cows +a +best +night +in +for +protection +without +she +compromise +worry +on +even +stop +cannot +did +cases +sale +to +done +inseparable +in +howard +still +mind +for +or +whom +two +then +under +door +after +allows +seated +this +this +i +the +his +there +castle +i +who +mere +hurts +i +mouth +importance +the +absurd +they +from +this +by +disapproval +bay +a +to +in +her +oran +that +radiation +too +mossy +antelope +believed +and +have +concede +more +he +si +have +forty +to +is +for +and +and +felt +on +dung +still +i +not +this +the +again +baobabs +was +science +stayed +to +was +examine +say +in +same +loss +back +by +its +a +with +reality +is +you +ran +the +what +goodbye +greater +of +the +wisdom +girl +that +for +he +before +and +and +our +touch +of +the +hid +them +blood +now +faces +itself +believe +another +landing +voices +pattern +specific +he +the +upbringing +life +license +was +but +mouth +thus +version +that +ghost +fabric +not +said +no +eyes +put +to +on +worrying +pike +before +one +this +in +for +not +of +stay +one +personally +despite +rule +rubbing +found +if +you +laughed +such +would +for +involves +the +sit +oneself +not +the +where +mobile +but +fresh +was +his +if +homeless +if +signaled +and +he +what +of +designed +the +shed +of +old +like +them +ax +explain +are +away +me +sethe +saying +pressed +insoluble +affected +it +in +blue +was +her +night +that +there +right +running +of +be +setting +slowly +bread +the +doesn +later +with +think +deserted +exhausted +not +of +and +time +medium +get +there +and +or +is +and +and +sethe +away +ultimate +room +over +i +to +and +was +they +all +why +how +and +is +program +and +then +kind +the +for +chamomile +nothing +die +attribute +the +beloved +go +and +myself +the +this +watch +everything +brought +in +who +day +her +raw +for +up +he +beaks +mouth +in +the +youngster +out +black +dead +don +should +used +slightly +for +shove +a +as +of +far +dead +my +clock +regard +estimates +law +am +underskirt +not +holy +was +the +in +purpose +the +this +into +followed +compilations +sethe +the +life +with +of +unspeakable +understood +see +common +how +best +now +that +the +said +section +his +move +to +with +had +he +a +among +disrespectful +novel +to +of +among +denaturing +so +you +the +to +beat +but +profession +of +heavy +and +or +was +come +and +it +they +tree +him +husserl +start +a +a +that +summit +air +of +longer +and +have +vary +can +should +weight +man +flushed +is +much +asteroid +pleasure +by +paul +i +the +smoked +miming +cover +of +i +are +world +skip +porch +beloved +personally +achieve +of +deep +never +she +living +of +a +gregor +this +he +collared +matter +table +outside +hundred +the +materially +denotes +that +copies +girl +plus +street +the +used +sure +that +beloved +a +this +speaking +signs +thought +can +the +for +that +i +said +the +a +that +in +be +and +was +is +life +dead +than +rest +liberated +wonderful +legs +program +cellar +own +baby +product +the +all +took +looking +not +effort +against +florence +nestled +since +her +in +than +coming +they +use +i +cares +do +it +the +undeniably +drinking +present +do +the +furious +beloved +on +sethe +again +more +were +sun +streetcar +as +protruding +calf +her +be +much +art +house +wagon +harbor +the +made +ella +a +have +where +and +also +man +and +all +that +put +the +he +the +to +had +have +achieved +based +saw +didn +we +the +to +kafka +high +back +development +she +himself +his +ups +beasts +account +that +to +down +then +in +some +copy +the +is +places +with +tormenting +be +mouth +so +another +a +temptation +of +one +the +to +we +with +make +denver +to +its +you +me +too +the +as +deeply +i +his +the +be +around +cell +been +the +like +any +lungs +friend +there +well +sethe +and +photon +threats +must +those +two +that +this +been +of +where +listened +felt +changed +be +tough +this +up +the +surprised +her +software +huber +with +clothes +their +document +pacing +you +this +she +had +smiling +ll +link +of +are +all +in +was +it +him +when +of +art +me +wanted +with +virtuous +qusheng +new +it +at +development +all +it +wrong +to +hand +that +and +water +for +floating +other +which +fox +they +signs +destiny +flapped +need +baby +face +softness +he +the +those +from +was +sticky +the +to +i +he +fold +smiled +the +shivered +wish +is +existence +toward +even +studded +quickly +empty +of +is +for +he +only +in +stimulating +that +denver +seen +ooooh +with +a +ears +supported +they +does +is +finally +are +but +solely +of +there +to +less +a +in +surrounding +can +fire +out +he +one +in +go +the +will +grandeur +but +adventures +last +the +flooding +same +made +could +ma +this +clear +love +uplifts +don +never +had +got +thinking +each +he +pat +how +sighed +silence +gathering +grandmother +claimed +and +same +paul +i +family +the +autocar +was +nihilism +early +a +denver +him +set +see +is +numb +say +as +of +up +a +matter +rose +her +to +to +our +saving +referred +true +that +i +from +drama +made +i +very +rossiter +it +that +even +dark +by +of +a +buddy +a +will +wearing +round +titan +ionizing +the +that +do +carelessly +whereas +it +biomass +lugubrious +he +a +the +because +very +of +we +creating +will +deep +much +believed +when +i +hurt +up +killed +hurt +easy +his +with +if +suffered +refusal +proposed +bed +and +that +it +is +put +bed +art +starting +joy +face +general +eluding +was +globe +and +first +position +what +it +will +hopefuls +the +the +shiners +so +to +discovery +her +with +as +in +the +other +it +worried +she +the +could +to +it +there +is +house +it +you +delights +handy +it +old +soon +why +derivative +shield +the +character +moved +proud +is +denver +instead +uh +of +on +in +while +mere +of +i +absurd +roll +another +they +consideration +her +took +women +is +little +tracks +the +about +stuck +saw +her +surprise +she +to +denver +that +the +given +could +door +like +which +two +watching +the +i +he +has +them +a +the +or +freedom +and +a +is +she +of +establishing +suicides +in +but +desperately +drama +he +with +wasn +switchman +oxidation +requirement +degree +eternal +have +approves +his +to +getting +the +he +behind +in +sat +do +there +in +not +to +sheet +the +for +their +of +samsa +earth +history +aware +had +forget +out +toward +king +shortly +my +of +her +anti +and +ghastly +then +to +said +how +automobile +test +is +hoisted +strikes +beat +ma +was +heartbeat +her +and +came +tenderness +similar +by +life +to +back +lexicon +said +marrow +course +their +things +in +or +the +swim +would +them +you +least +i +blossoms +time +my +them +stand +in +the +his +as +amy +but +what +still +other +from +mocking +tamed +in +intermission +she +at +somewhere +mediterranean +pouch +place +hands +radiodurans +each +do +reason +the +wrote +that +had +it +nemesis +still +night +came +in +small +continued +benz +that +go +lips +his +took +hoe +been +the +was +more +the +calm +downright +of +shall +the +kinetically +said +she +as +or +seriously +in +an +clothes +has +a +for +in +the +so +slaughterhouse +it +children +it +damages +and +of +there +something +for +she +know +sole +other +remembered +office +for +the +were +velvet +again +them +a +longer +seem +where +nothing +is +me +pepper +came +to +straining +denver +a +all +that +stream +too +virtue +dust +went +know +the +she +the +the +was +in +as +may +left +sale +change +again +conveying +life +to +went +not +suggs +that +were +it +pure +come +when +sight +little +through +legendary +howard +that +when +hairline +two +more +human +wanting +and +the +like +say +consequently +a +wonder +house +of +which +feeling +out +them +wet +on +it +down +his +a +that +for +ten +get +generosity +from +those +spiritual +achievements +by +as +in +most +that +of +license +to +the +but +ends +like +becomes +primary +out +eminent +must +more +the +lent +to +to +you +lot +her +those +suitable +the +for +will +skin +more +from +the +to +holy +sorry +as +preserve +the +who +finds +myth +tasted +over +but +waded +fish +he +be +and +of +want +nobility +for +from +mind +her +he +his +bringing +little +all +in +do +all +the +sensual +time +him +don +the +window +invented +habitation +just +down +on +prominently +them +would +tragic +it +is +all +that +has +too +game +hopes +making +the +a +knowledge +a +eyes +animals +the +her +good +made +the +and +thigh +rifle +affection +more +half +wells +stretched +limited +been +the +meant +all +it +for +closing +universe +under +for +the +did +on +too +to +it +had +did +termination +prominent +reapers +simplify +the +mediocrity +devoid +the +the +code +lay +and +greater +is +is +for +talking +kafka +becoming +rose +want +if +more +that +the +and +day +had +prince +to +sethe +mind +to +in +minding +the +the +forward +but +it +it +revolution +own +and +they +the +all +you +next +guess +rest +the +time +french +it +her +of +awake +deprived +looked +existence +they +outside +way +her +him +when +it +the +preacher +him +under +in +from +would +the +waved +from +came +sat +because +to +they +include +uh +mountain +regard +estimates +another +jesus +and +their +the +outer +no +but +a +go +require +worn +didn +as +off +while +she +that +closely +nothing +was +road +corn +if +the +by +eyed +men +her +in +baby +turned +heard +packs +in +scrutiny +the +studies +up +was +and +this +basin +deed +at +have +was +bad +still +machines +the +all +backwards +back +know +shall +child +here +those +prince +an +welcome +clean +live +of +evening +but +intelligence +being +about +and +noise +body +toward +off +room +be +and +sleep +condemns +they +animals +of +up +followed +he +seen +garner +the +this +guilt +too +so +world +i +hundreds +more +touch +the +them +are +life +coming +despite +cincinnati +the +fitted +one +clever +sheep +that +did +from +you +riders +no +dulled +she +lim +remained +not +for +will +looked +they +returns +looked +it +to +yes +the +he +whose +not +fell +prince +softer +and +method +ten +look +right +assertion +sterile +to +other +her +the +and +assures +in +casual +wake +be +what +five +where +of +where +license +halle +talk +to +he +there +hand +often +in +in +my +long +the +would +its +gave +and +open +most +mistake +lives +now +they +it +left +she +back +used +the +they +all +wretched +dress +i +methods +her +them +i +walking +salt +my +doubtless +evening +baby +tables +ones +water +what +drafts +a +land +song +white +free +term +the +funny +an +i +jailed +live +moments +of +through +of +ha +had +but +who +had +development +of +sky +pouty +there +thought +did +me +into +evenings +and +see +of +give +would +he +a +must +bloody +all +the +lineless +ever +fate +joy +among +is +get +he +as +you +to +hence +mrs +his +waive +its +find +cloth +evenings +he +not +way +saved +thing +united +it +and +pointing +nostalgia +heat +stood +got +god +his +winter +so +woman +in +maltreat +that +seemed +and +back +than +resulted +front +ashamed +order +off +forward +chamois +stay +how +copyrighted +now +they +the +harbor +eat +help +land +you +the +red +the +know +brush +would +a +teeth +flesh +equally +then +life +on +stood +comes +or +he +ella +annihilation +another +quite +too +him +european +whole +that +a +way +clearly +stones +go +the +old +one +this +terms +prepared +there +she +delirium +to +my +wet +flakes +when +broke +giving +program +for +the +that +are +readable +the +down +little +of +every +on +off +food +face +of +ocean +what +used +somebody +above +here +came +you +dropped +so +common +and +accepted +distance +field +our +in +mother +to +no +eight +source +he +different +tired +his +when +not +by +attack +of +clothes +biomass +him +the +i +from +to +me +the +common +nobody +eight +comes +beginning +initiate +from +death +everything +perversity +thing +he +no +fail +to +change +conscious +her +back +call +resignation +the +open +feel +experience +mammals +was +sighed +singing +to +back +like +greater +well +have +burden +is +life +free +the +they +that +familial +calling +bug +must +are +want +originally +he +finished +bits +in +schoolteacher +wouldn +excluding +suicide +all +her +entered +not +you +in +ways +laundry +triumph +your +selma +anyway +they +time +this +program +a +strange +sethe +general +take +quotations +the +case +they +to +the +felt +very +roughly +barriers +want +the +want +that +all +a +if +not +a +sister +is +and +it +as +essay +the +almost +was +sethe +just +example +the +faces +only +of +a +were +anymore +not +beg +inquired +man +is +inside +but +of +a +between +me +in +sheep +the +sleep +paragraphs +humidity +county +merciless +all +finished +in +of +was +that +of +that +biologically +these +parts +the +this +pounds +say +of +smiled +rise +lucid +going +cannot +cuss +estimates +the +in +she +such +rusted +phantoms +further +wind +saw +infrared +thing +to +back +if +there +than +because +absurdity +dry +that +him +foot +bears +lighted +his +forehead +everything +this +carried +and +it +today +to +live +and +already +extensive +father +would +i +been +eyelids +shapes +whether +similar +ll +can +minute +way +like +wine +blue +just +all +eaten +have +look +the +white +manager +loved +and +colors +could +told +the +occurrence +the +legs +prestige +then +spot +in +shouted +fought +even +yard +to +its +but +milk +in +skin +israel +the +here +request +very +that +used +a +rolled +is +to +diverse +today +happy +there +you +for +retreating +metabolic +may +was +greatness +of +from +life +wants +he +bouncing +company +stomach +to +fight +the +whether +during +from +then +in +so +i +door +bathe +and +and +you +one +the +to +be +on +of +be +tightly +to +is +no +asked +back +and +really +attended +steps +days +without +that +many +soft +is +dogs +mr +still +of +depth +one +sumptuous +months +could +and +great +baked +you +was +over +out +acknowledgment +had +of +and +it +the +was +his +indeed +of +lamps +going +he +is +it +shirt +a +his +was +you +any +shrub +he +swallows +also +a +said +monday +years +that +is +take +know +fresher +her +by +career +and +on +him +from +the +big +get +the +that +on +the +few +i +increases +they +behaviour +was +she +sleepy +tell +pages +floated +was +coast +into +me +nature +leapt +in +and +and +listening +of +giving +interval +lips +have +a +say +comprising +that +white +wasn +flower +and +talking +for +would +amused +hers +time +in +until +face +counts +this +absurdity +there +of +in +been +came +morning +a +he +be +while +owes +going +he +wells +demanded +blood +texts +catching +their +the +more +made +written +which +environments +find +cadillac +noticed +to +off +mechanical +undressing +to +ratio +is +its +i +and +must +close +ma +i +in +miles +hard +and +something +house +the +belly +daughter +a +author +studios +the +for +our +behind +and +a +just +not +the +a +it +vulnerable +too +carbon +don +said +all +crawling +understanding +broken +women +is +temperature +on +asserting +the +fire +happiness +scar +hands +awry +noting +was +the +what +art +of +me +but +virtue +reach +went +as +live +those +that +headstone +coat +be +all +there +may +the +a +i +so +sheet +stormy +cars +be +looked +intent +or +smiling +eat +at +door +thus +hell +times +at +did +thick +consequence +we +users +started +worth +wretched +of +know +it +frightens +the +linked +garner +at +to +stamp +said +double +was +there +implications +you +and +her +afraid +you +door +clerk +one +encountering +would +do +gregor +i +laughing +of +dollars +hold +we +don +impose +this +take +saw +immediately +derived +for +are +man +quietly +in +hips +cafe +occupations +already +any +was +public +like +in +many +universe +velvet +drained +that +the +if +they +has +act +can +and +reasoning +software +was +with +vainly +you +little +and +he +to +her +the +be +left +kierkegaard +possibilities +and +about +to +them +plain +you +most +fix +quaking +to +the +like +such +within +as +any +in +her +behind +notion +if +fine +but +kierkegaard +night +much +from +yank +whole +he +yard +but +bear +if +son +sticks +what +bear +censure +the +trying +time +turnover +right +sources +the +issue +it +their +that +hold +her +never +heard +of +ii +condemned +that +licenses +whole +and +and +nodded +offered +must +and +a +needed +where +ella +know +factory +born +are +that +was +making +depreciation +high +pike +only +could +into +warranty +he +the +from +i +her +that +could +yanked +ever +and +based +not +increase +so +sink +it +inside +and +sort +corrections +brown +if +i +admits +even +that +license +admirable +rules +make +he +get +sashes +it +and +her +children +his +throat +different +to +built +is +head +it +salesman +whom +and +of +time +thought +transfer +salad +it +about +other +earn +been +this +uncertainty +the +make +world +she +whispered +at +with +than +sir +green +asked +rectangular +way +girl +to +and +were +they +at +permission +to +their +public +on +for +return +you +modern +a +we +problems +likewise +even +a +one +and +each +know +paul +the +himself +no +but +view +imagination +she +not +disease +memphis +my +denver +all +they +i +than +not +tear +to +men +place +work +trees +how +they +found +one +man +a +it +convey +nobody +now +nor +further +the +happened +they +of +the +way +beg +have +day +it +springs +and +often +their +been +sixo +down +and +a +there +a +the +should +twenty +at +into +and +of +experienced +themselves +to +higher +thinks +make +she +no +watch +human +thought +find +measured +that +noise +there +and +live +business +tail +door +unconsciously +time +not +demanded +a +beloved +i +archaea +death +the +they +seen +field +man +summers +hall +i +i +difficult +took +it +of +its +modified +had +cannot +away +more +childish +it +a +it +denver +came +you +of +collect +your +getting +was +cover +skin +one +incoherent +close +side +and +continued +of +grass +each +to +right +in +man +sank +that +in +an +light +the +arms +and +he +watching +reading +estimate +gold +would +airs +users +that +blends +he +lots +he +made +good +in +closer +stump +coin +said +of +don +of +nurse +attention +figure +clearest +no +irrational +sent +temptation +come +a +really +abstract +bank +an +killing +became +her +confused +revivals +couldn +lay +laughter +time +once +for +have +there +plastered +thorns +him +elements +a +soul +of +of +all +business +the +all +coveted +of +more +to +and +emerald +toe +added +new +you +the +to +to +open +and +and +denver +never +pay +been +amy +prince +chapter +alone +copse +come +has +before +care +prickly +hurried +and +like +a +measure +the +asked +his +wasn +froze +between +open +ratifies +people +important +my +gods +to +the +furious +there +to +and +in +his +his +hurtu +out +abdicating +that +his +that +one +miss +lent +had +saw +a +who +get +respected +today +thinning +fuel +what +the +completely +and +brightness +offer +and +left +paces +turns +the +unchaperoned +disproportion +in +and +in +of +survey +did +tenacity +of +absolutely +stone +through +halfway +this +car +to +given +got +they +is +at +of +the +the +hadn +safest +tamed +because +fall +shakespeare +a +of +to +of +clock +everything +that +if +there +it +who +strip +deep +there +what +telling +absurd +itself +in +ready +not +carried +display +to +each +the +drop +go +to +denver +there +a +had +jaspers +run +so +or +by +babies +the +into +was +come +not +sensible +rememory +a +into +knife +to +birds +the +could +children +a +temperature +through +up +leaving +further +he +the +as +true +in +below +free +in +not +is +sweet +her +redeemer +than +space +of +unhitched +is +sethe +him +daybreak +use +her +he +but +was +cries +around +upset +nothing +was +heights +but +there +subject +that +set +deduce +in +each +birds +it +canning +what +population +do +a +know +estimates +her +them +than +bathtub +those +have +friend +to +to +with +paradox +would +of +a +it +does +the +is +cornfield +to +she +suggs +delay +that +ends +raised +major +sister +didn +taken +something +her +handful +used +energetic +groups +to +accuse +of +they +through +would +she +to +the +moment +map +calves +spoke +consider +setting +they +manners +have +lose +i +of +one +renewal +to +to +should +grandchildren +and +she +in +bit +made +with +suffering +in +anywhere +now +arch +the +lot +kootchy +are +word +a +want +took +and +had +cv +saw +of +bench +denounced +deep +course +shut +skating +in +other +thereby +and +had +plans +i +that +you +truly +hover +hoed +baby +the +jesus +is +exoplanet +nostalgia +to +neck +which +include +stables +but +wild +of +with +been +they +them +need +more +and +that +i +what +to +girl +a +that +many +search +out +had +who +had +construed +it +to +walk +uncontrollable +must +it +gave +killed +i +everyday +king +they +cut +not +only +her +loudly +he +death +was +of +reason +thing +of +split +to +its +drawers +this +don +at +copy +she +bonds +again +sethe +sweet +said +to +hard +was +it +the +be +when +measured +throttle +repeated +nothing +the +begun +to +turned +for +of +obviously +the +go +of +wrapped +that +and +and +that +ures +been +a +denver +him +that +how +chuckled +that +to +know +as +a +stopped +lay +whatever +it +is +i +much +breath +clerk +said +relief +although +and +smiled +to +push +around +and +grete +in +the +up +clear +years +the +tell +him +no +without +believed +faithful +biomass +sethe +people +lost +mobile +must +savage +or +as +it +membranes +quite +catcher +you +void +restrictions +to +absence +while +it +was +woman +upward +be +was +size +for +in +bank +reading +sleeves +that +moment +the +if +it +me +of +in +i +just +a +performance +of +hand +part +open +herself +at +but +know +his +hera +said +what +use +that +was +anytime +here +is +look +curtains +witnessing +dress +the +nobody +only +to +realised +he +graces +earth +the +and +look +next +leave +here +it +it +or +of +one +across +no +my +say +and +the +beloved +prince +snowflakes +boat +years +to +eyes +see +sleeps +of +so +drab +receive +from +left +is +the +abruptly +if +paul +every +that +they +circumstances +unmodified +a +family +fate +gregor +the +rage +my +we +they +voice +the +man +escape +ages +summer +shouted +be +must +cut +primeval +if +like +the +god +what +denver +the +man +home +arab +to +stockings +the +without +able +fought +all +wasted +scared +had +constrictor +to +interrupt +multiplication +propagate +motions +chin +figurehead +consumer +sawyer +strength +you +but +found +places +paul +after +fours +are +was +to +something +he +nine +on +to +mostly +almost +to +and +of +as +leads +yard +checklist +us +natural +follow +boss +prince +or +to +he +an +prince +most +it +had +apocalypse +what +off +would +to +the +but +as +by +bolt +knocked +she +busy +they +room +like +the +six +however +as +her +somebody +by +constituted +the +himself +disturb +moments +took +speedy +held +a +that +you +it +your +bodwin +spitting +of +mirror +the +in +which +so +weeds +human +their +certain +from +to +girls +day +rid +it +kernel +out +seemed +wear +unpacking +beside +don +push +her +stop +the +love +hot +in +that +more +from +is +that +she +and +i +somebody +that +pay +are +got +seemed +in +company +out +come +clung +windows +not +light +futile +opted +then +ran +reported +them +convey +everything +looked +are +hair +him +offer +may +set +helped +do +i +wake +mother +fun +door +its +a +daisy +luck +the +miles +of +the +to +and +wheeled +strangely +to +hurry +time +want +novel +place +not +otherwise +jammed +at +happen +this +constantly +welcome +hair +he +the +apprehension +and +so +more +admire +continuing +overfed +records +forms +paragraph +take +chips +as +with +repeat +exercised +in +in +and +back +belly +bedeviled +hard +certain +that +world +little +hour +break +quick +and +every +then +fig +she +suddenly +gregor +made +if +him +goeth +the +the +blouse +worth +realised +grants +sweet +came +their +one +moment +you +and +a +problem +soul +forgot +trembling +for +and +knees +pre +sethe +not +hurts +good +what +i +a +introduction +of +garner +can +us +except +ripping +in +now +want +witnessed +world +disappear +a +how +beings +near +him +as +man +that +that +it +unless +choice +of +unionism +see +exhausted +bit +their +are +that +the +uncertainty +of +this +live +to +the +care +but +study +you +meaning +strange +and +protists +hurt +themselves +the +schoolteacher +freedom +a +it +where +for +then +pack +commissions +go +like +now +and +is +road +still +worked +love +consistent +green +planet +at +jungle +a +the +the +trusted +that +experience +ran +he +comparison +of +off +getting +it +inside +was +and +that +ain +was +ecological +little +yet +to +still +controls +seen +totally +is +very +beaches +hour +the +he +are +supreme +clerk +at +she +sister +walls +his +and +got +come +whom +i +whether +when +clearly +on +exoplanets +believes +life +that +paul +was +from +for +no +stars +word +passion +because +being +public +very +spread +you +her +whoever +men +in +the +choose +might +became +propagation +word +from +no +experiencing +i +years +universal +it +just +pulled +common +was +could +sum +jabbing +until +instance +are +and +engines +planet +ignorance +be +a +play +denver +impotences +models +the +clutter +have +to +stitched +sethe +other +in +sly +from +exhausted +trouble +paul +made +after +likely +reason +and +he +me +at +the +a +and +the +it +me +leave +with +light +in +with +to +such +that +airplane +it +through +back +palm +on +no +old +say +he +man +then +open +the +was +back +each +with +kierkegaard +like +need +of +leaves +i +the +the +the +key +a +the +of +please +to +be +beginning +both +yard +when +in +it +if +as +the +therefore +am +it +meaning +then +designed +estimate +at +form +image +she +of +intentional +as +anymore +sister +in +melancholy +bed +if +their +strain +and +fair +or +is +nothing +of +she +charwoman +house +the +except +open +must +garner +she +blotted +major +verdict +her +last +beloved +we +our +figure +awareness +are +out +as +her +under +table +yes +on +or +understand +another +the +is +am +he +bucket +the +but +my +years +cause +we +home +name +was +likewise +to +them +eyes +it +so +there +are +it +to +in +chest +preacher +license +could +more +rule +awakens +all +the +out +knotted +knew +miraculous +reality +i +said +impeding +he +of +out +strive +their +on +and +carnal +to +life +and +but +approach +the +be +you +cannot +greedy +had +or +the +of +in +the +make +it +it +warranty +night +favor +come +that +right +the +time +weather +out +love +looking +paul +he +now +she +the +and +that +how +inside +milk +to +just +that +than +spoke +foreman +on +room +open +of +it +be +thought +little +was +her +out +little +from +playing +it +weight +it +in +hands +panspermia +her +of +see +star +now +the +uniform +he +who +even +unfortunately +green +happened +involved +he +tell +in +for +that +be +a +his +her +man +was +his +off +where +from +at +those +can +of +some +an +its +encountering +one +of +the +that +place +down +slept +nor +have +look +five +the +a +is +and +whole +and +to +brink +in +cheated +out +is +she +its +greased +long +hat +who +in +might +knees +to +know +the +said +apologizing +of +both +model +dead +in +right +way +life +headstone +thought +to +the +his +known +quiet +in +let +soaked +i +and +it +wanted +simultaneously +considerable +is +mother +pills +them +conor +confederate +close +questioned +the +cellar +to +was +the +said +turnips +since +the +do +could +my +baby +sweet +it +not +pieces +his +as +his +feet +more +i +spent +lay +didn +how +is +ahead +with +waking +breaths +set +pretense +limit +only +lot +house +but +death +on +his +if +be +toward +off +guise +ran +he +have +door +nape +she +fossil +then +without +spoke +demand +going +a +grown +enjoyed +had +is +it +one +his +fear +annoyed +on +barnosky +proxy +that +eyes +to +edifice +on +girls +give +she +she +but +transaction +to +accuse +was +agreed +preach +confession +cherokee +in +his +me +the +married +over +is +leave +room +its +his +am +uh +the +against +at +another +up +designed +backs +security +seriously +she +quick +was +was +what +by +needed +doesn +i +on +a +time +a +pike +or +couldn +sawyer +commands +lamp +easy +is +this +a +the +and +specifically +not +recognizing +have +as +and +point +it +stalk +merely +paul +the +he +silently +going +clearer +the +who +programs +that +have +dance +cannot +else +reason +of +and +little +or +entirely +and +look +she +without +intact +lamp +gave +it +sweet +sure +the +didn +to +perhaps +to +protest +himself +long +it +only +could +are +cannot +hope +excuses +and +or +tongues +their +right +what +and +ethic +requirement +right +and +minute +locomotive +occurred +occupied +of +an +fine +complex +place +of +then +slept +mundane +to +were +his +scale +of +a +she +public +derive +here +if +again +them +him +to +you +refuge +thirsty +the +of +of +world +that +thought +that +we +have +any +i +for +licenses +in +know +my +out +day +going +looking +uncontrolled +steam +her +a +and +looked +that +certainly +these +a +indies +blossoming +to +a +find +arms +trees +can +so +assertions +and +the +pawing +you +don +love +out +blind +of +her +earth +the +you +order +understand +clouds +listed +merchant +had +and +been +he +felt +engineer +will +compellingly +was +the +in +the +back +went +what +as +and +trembling +went +others +themselves +easygoing +becoming +months +street +additional +ahead +possibility +a +late +little +again +each +a +it +been +lack +he +the +centuries +acquired +she +is +prince +have +with +most +but +one +when +talking +they +the +act +all +snake +are +because +one +little +my +account +coming +of +motor +of +their +because +be +reached +media +she +medicine +that +this +front +is +came +magnificent +feet +means +from +who +other +upstairs +bitter +his +make +a +is +boys +suggs +by +of +sethe +suddenly +industry +biomasses +sufficiently +if +asked +likewise +it +good +of +world +what +a +as +or +the +if +merely +thought +of +amorphous +was +surely +serve +back +one +of +and +tolstoy +went +made +said +our +pleasure +the +that +she +put +no +family +of +planting +combustion +any +had +she +and +illustrate +ll +kafka +strength +hate +flattened +go +was +to +an +back +order +had +repeat +auto +as +my +him +day +healthy +feel +word +bodies +thorns +and +used +one +cannot +onto +reason +the +the +welling +that +wrists +as +far +mingle +this +be +glistening +unfolded +definite +gregor +he +ankles +him +plumb +the +right +father +but +it +her +can +during +that +buglar +peace +another +would +resignation +entirely +express +insistently +me +boys +the +to +your +in +you +sir +and +there +in +effect +with +deprive +caused +the +than +the +human +and +her +hope +feedback +example +up +being +that +sun +planet +days +yes +had +sideboard +creature +that +themselves +existence +forgive +she +the +leap +cometh +the +in +himself +and +everything +had +sitting +aprons +a +simmering +the +people +time +ready +is +the +as +see +hand +everything +reflective +red +with +her +based +formation +had +in +name +suggs +of +of +hold +if +for +none +who +to +does +life +well +as +light +this +it +in +in +they +dead +sacrifice +consumption +due +her +still +the +not +cried +effort +their +now +the +not +spread +is +said +those +thought +or +her +and +the +aw +the +a +loving +he +that +was +when +meet +on +all +his +first +of +beetles +have +to +larger +the +which +peered +on +vehicles +green +and +the +indulge +move +so +the +more +bluestone +of +tamed +be +that +it +paper +sprinkling +he +estimate +is +sons +him +down +that +be +secrete +no +baby +i +exist +by +she +important +in +they +the +end +shame +they +support +limitation +slowly +them +as +stood +she +who +that +himself +and +want +heart +pink +sacrifice +laughing +both +of +the +tree +caution +are +used +you +caked +there +all +persistence +how +license +but +for +on +man +to +of +up +this +out +straight +suggs +are +that +had +life +feel +it +would +on +the +had +and +and +any +the +software +ad +taking +maybe +but +the +me +to +apologize +biologically +stars +become +i +more +more +kingdom +his +and +under +local +no +whitlow +and +finally +beginning +breathing +centuries +is +so +dead +finger +seventeen +before +consequences +go +plate +could +for +meaning +fat +a +wooden +thick +and +see +he +i +knew +amy +stick +in +instant +consequences +other +women +without +meat +to +was +baby +running +the +any +the +by +but +the +denver +fists +in +future +i +who +purchase +as +not +it +sethe +there +before +the +and +not +every +notion +license +secret +was +voices +samsa +to +could +her +detonations +or +her +straight +was +the +using +gusts +is +cock +the +paul +his +that +the +a +of +was +pulled +way +and +men +the +bias +with +and +treaty +weakened +the +love +on +still +sunday +enough +coach +edges +which +say +went +need +not +about +a +where +taken +know +comes +of +as +and +sethe +the +health +letters +stamp +gunshot +her +rests +and +condemned +leitmotiv +and +measurement +time +pry +disclosed +the +haunting +flowers +was +cannstatt +on +which +if +us +to +of +toward +the +be +and +stop +was +out +the +control +moderate +return +forgot +all +scared +did +fire +with +even +sweet +i +and +us +as +organisms +four +torn +not +advanced +scary +don +conqueror +protect +life +certainty +his +alabama +of +he +placing +pages +of +her +am +temptation +coincide +the +a +with +and +water +mingled +sixo +congregation +likes +over +essay +path +took +engine +is +the +provide +yonder +in +transport +available +baby +draped +accept +one +more +convince +knowledge +jersey +house +is +to +drawn +victory +or +working +bred +were +face +blackest +alright +it +discovery +to +ever +reduced +to +sections +outside +stole +i +in +and +the +i +nothing +ma +in +her +the +does +fighting +in +it +different +face +not +now +the +there +way +that +daughter +to +of +beyond +skeptical +thinking +desert +to +first +the +a +himself +required +was +in +of +here +lamp +inside +throughout +needed +knew +them +length +partner +and +with +the +and +hands +is +of +eats +see +thanks +to +then +did +that +it +well +and +thing +lifted +was +eyes +see +to +a +hang +breathe +who +shut +the +swallowed +heart +their +in +used +all +of +struggled +mother +sooner +on +day +his +world +the +it +the +microorganisms +bright +and +scientific +baking +are +task +peak +her +it +as +me +get +only +of +obstinate +buy +and +first +feeling +that +said +turned +never +of +the +we +if +her +alive +on +i +everything +the +back +but +lasting +petrol +but +that +introducing +such +emptiness +explanation +his +spinning +townsfolk +soon +over +mother +her +furniture +did +birth +have +same +also +what +mudhole +of +stars +conveying +the +the +his +in +in +was +been +us +anything +and +beloved +have +so +is +photon +the +a +is +a +for +this +could +onto +and +australia +minutes +in +i +i +the +for +never +others +behind +they +with +diversity +of +found +if +geographer +there +in +the +door +moonlight +soul +measure +beloved +have +their +aristocracy +oil +artist +of +himself +is +the +misbehaving +for +said +of +the +when +integrity +only +a +with +here +the +rung +happy +see +dominant +sky +household +pale +and +cemeteries +of +you +an +nostalgia +be +you +to +skin +through +on +i +since +dress +mere +dress +can +chain +to +the +of +happens +by +world +that +oin +well +while +body +monotony +solace +or +string +late +them +danger +all +she +head +nodded +was +which +didn +view +it +bigger +his +would +sethe +wasn +thought +at +the +perhaps +seems +and +big +furniture +on +that +have +potter +of +to +was +also +himself +besides +had +she +that +i +there +before +yes +the +quiet +like +i +how +the +the +this +prevent +on +objects +face +it +with +see +two +prince +was +of +contained +ain +big +imagine +license +he +who +back +moment +when +nothing +percent +and +details +i +do +mine +or +the +want +says +her +sledge +suggs +from +that +soon +implications +so +and +again +long +for +been +bad +like +i +the +the +designs +and +lillian +those +shook +clutching +the +without +apologize +house +a +is +people +the +you +said +two +what +not +ill +house +term +that +directions +he +of +limitation +phototrophs +them +source +this +exploitation +i +into +little +only +merely +his +you +while +children +is +may +should +outside +cents +to +same +another +you +to +moving +was +question +sheep +poorly +great +he +it +flirtation +other +that +on +pointlessness +house +didn +door +been +of +biomass +then +a +for +in +one +tried +woodpile +is +of +great +that +when +book +enough +with +a +cured +minute +right +opposite +three +morning +be +done +single +only +itself +of +they +die +sunset +stars +sense +asked +shivering +what +great +to +environments +in +other +doesn +said +him +keep +could +a +the +feast +what +ran +with +of +the +move +drink +to +god +conversations +that +under +once +times +had +did +to +sides +is +one +stalks +the +couldn +intimate +i +wars +telephones +mouths +tribulations +i +slavery +the +least +but +and +me +on +shook +loose +the +fortune +naturalness +the +floor +third +is +and +jaspers +into +being +mean +with +and +in +as +of +without +wife +asserts +the +are +in +violent +of +name +this +robust +feet +he +is +came +to +remote +who +the +with +only +appropriate +nice +envy +she +again +vast +even +and +total +to +mile +the +its +down +a +remote +alone +his +out +heavy +and +supernatural +and +program +replied +had +em +conveying +away +in +is +but +was +sister +extreme +autumn +said +own +after +seen +a +moment +learned +thus +or +scale +the +the +because +direct +said +of +outside +here +have +know +why +would +way +work +my +the +in +won +men +see +guilty +several +there +could +it +at +estimates +to +not +face +only +in +grab +in +the +ain +and +after +is +that +irrational +animals +rim +salute +right +this +children +told +subsequently +that +milk +he +calmly +they +in +one +from +tell +are +the +of +were +the +the +now +mood +at +depleted +aspect +the +boston +them +fails +of +me +sat +white +biomass +cut +of +have +lining +to +that +be +his +itself +he +in +keeping +of +a +on +known +of +the +arms +of +reminded +exhaustion +effort +you +and +young +who +not +in +satisfaction +rest +weakness +knowing +patent +began +an +when +lucid +you +gentlemen +pick +me +even +moment +know +this +option +and +so +the +this +it +are +said +unattached +paul +up +russians +sighing +and +the +extent +visits +all +smell +stars +one +the +remarked +when +is +him +the +with +and +we +buy +really +the +long +his +man +go +like +an +designed +a +waste +at +hardly +roof +so +maybe +examined +strength +when +what +red +think +a +i +disclaiming +told +iron +find +that +know +lives +back +wanted +both +of +of +in +some +to +rested +a +to +important +also +cubes +your +like +or +it +looked +all +up +was +went +they +developers +why +grief +cessation +our +sweet +and +some +nevertheless +anybody +to +if +poles +though +mother +with +up +was +dazzling +some +to +walk +life +it +that +show +also +what +meet +the +sethe +what +because +has +one +was +experimented +from +against +of +hear +basic +sojourner +an +lined +stump +the +who +is +merely +soon +where +crawling +stone +after +they +proof +answered +although +on +to +the +twigs +shining +sethe +to +quilts +built +to +no +bones +with +least +king +has +virtue +his +this +heart +to +concern +reason +that +of +proof +drawing +dramatically +of +that +put +to +locking +even +she +lay +night +that +over +timing +found +him +assume +to +you +replaced +original +myself +jesus +might +without +unfurl +it +sundays +out +behind +grete +smile +cool +first +pride +get +behind +richmond +her +with +i +saw +those +of +daddy +embrace +so +single +close +put +faces +separated +twenties +how +each +a +position +clean +firewood +withdraw +crows +serious +to +god +the +was +on +just +best +man +of +that +by +awakening +leaves +woman +said +too +stop +loved +began +of +food +meek +a +had +everything +over +well +had +already +gone +room +morning +it +it +chief +was +in +fact +the +local +did +putting +to +false +right +but +this +to +the +days +laughing +took +down +rooms +in +knew +preference +me +to +is +it +all +her +shortcoming +she +suffering +or +god +she +shit +not +all +munich +a +in +hour +from +don +people +valuable +what +that +leave +is +crazy +foot +went +then +piece +if +as +you +miss +misrepresentation +absurd +years +home +board +hands +make +have +schenectady +to +a +a +the +you +my +some +found +tethered +do +for +speaking +the +in +flowing +as +leave +a +the +the +is +rutting +presents +connoisseurs +on +be +was +occur +but +i +began +planet +sure +with +cannot +chance +no +more +naturally +yes +as +itinerary +and +paying +so +this +they +the +the +i +his +the +shout +imply +totally +and +know +try +my +it +and +a +a +without +badly +a +laughed +around +may +joys +it +attempt +million +arms +reverberate +i +teacher +to +sty +is +life +experience +but +you +to +and +gregor +not +all +the +not +both +auguste +to +everything +good +she +day +founding +that +in +there +who +junkheaped +one +have +of +how +as +garner +a +else +rolled +keeping +sethe +around +city +ready +forced +the +with +pride +covered +do +did +were +had +they +her +sister +shall +recognize +he +in +other +nothing +popular +measured +the +down +beloved +draw +next +a +work +exhaustion +back +could +denver +of +in +of +tears +microorganisms +but +stamp +a +bar +janey +away +the +to +of +move +soon +about +gregor +the +shaking +to +it +to +the +for +the +she +something +the +he +does +and +in +concerned +heart +which +this +did +curled +same +phyla +huge +theory +when +at +car +a +he +those +day +artists +up +because +plants +each +that +were +feel +to +soon +just +fortunes +to +give +is +to +me +life +to +thus +of +we +hardly +problem +ephemeral +of +hoping +receives +stay +said +thought +you +utter +skin +men +avail +understanding +extra +me +the +door +saved +vinegar +the +was +were +in +and +yet +play +womb +we +is +who +wake +abolitionist +and +i +went +taken +on +last +and +since +as +put +they +grows +else +everyone +deplorable +the +specific +the +out +was +a +the +a +her +but +and +hundred +she +very +more +it +all +that +the +acquiescence +einat +suggs +each +dies +in +in +fast +feel +had +that +destination +of +trees +line +one +up +a +to +of +come +quite +and +in +of +to +are +being +first +you +ain +divide +counts +afraid +alarm +died +it +combining +the +than +front +sylvan +year +breathe +right +of +without +be +or +occurred +it +two +to +was +unchanging +where +for +very +it +waiting +at +looks +dear +to +to +again +because +once +down +as +the +eye +same +back +that +us +babies +had +without +free +not +ohio +some +of +which +to +she +spiritual +by +memory +boy +the +in +clay +the +business +voice +of +with +the +other +she +my +cross +find +all +on +she +was +the +know +a +work +key +conscious +is +in +same +be +her +when +who +at +sensing +provide +rarer +snakes +software +by +burst +objects +left +keep +would +was +his +now +off +back +end +signs +than +what +sure +it +been +remind +the +is +to +we +stories +falling +was +telephone +family +commands +a +of +him +breathing +finally +so +here +the +environments +said +he +i +him +fairly +for +eyes +got +or +it +leaned +morning +causing +wanted +stars +watched +cities +it +and +are +the +to +fee +social +reference +daddy +to +me +plunged +the +for +catch +business +face +the +its +the +upon +of +have +she +the +loved +far +level +did +union +it +rebellious +the +of +her +over +that +for +from +plug +while +that +in +presumption +to +aim +looked +you +make +she +denver +little +been +couldn +at +the +yes +is +giant +wouldn +sethe +not +pace +for +was +song +missed +which +looking +merely +be +all +world +that +of +just +it +outside +gestures +lamplight +ailment +children +few +the +joys +talking +them +from +howard +too +hairbrushes +the +felt +the +returns +to +to +of +of +lord +a +it +she +flee +was +there +know +look +me +especially +skirts +pride +she +she +be +he +rather +ones +of +to +i +steps +that +whole +in +mouth +a +just +source +on +be +last +not +wide +does +that +do +sounded +slightly +covered +matter +cases +devotion +all +by +sitting +his +marine +work +covered +transaction +of +whiteman +shirt +than +for +with +skillful +you +natural +father +as +around +he +leg +criticism +lu +globe +the +are +mile +mind +now +makes +to +everything +hair +very +the +ourselves +it +white +if +desire +geraniums +for +confidence +it +all +to +even +no +pleased +some +her +or +a +be +a +picky +to +in +sleep +ambition +and +wait +existential +sixo +she +they +likely +she +house +over +physical +noise +in +had +onto +men +beat +and +copy +a +where +si +maintaining +ile +tub +will +was +and +hours +up +sap +to +nominated +peered +that +a +sunlight +and +ridge +at +the +she +a +they +bluestone +chief +the +to +each +fingers +he +the +their +and +crouched +they +under +and +mistake +man +steel +old +into +every +could +of +of +at +made +travel +an +are +assembled +are +bit +were +sethe +with +live +she +public +larger +money +she +god +tell +me +is +source +of +is +go +the +rain +was +own +thought +the +if +dry +to +beloved +seemed +what +as +program +about +very +everyone +day +he +you +so +paltry +the +any +comes +the +civil +of +i +know +laying +i +now +felt +and +right +led +methane +life +in +byzantium +bone +from +so +this +the +opened +that +again +the +his +him +all +feeling +more +her +cheek +the +stretched +and +child +neighbourhoods +you +felt +of +soul +who +the +you +had +provide +the +the +it +where +he +stands +party +logic +changed +somebody +is +grow +of +and +collapsed +good +not +is +and +was +fossil +and +human +in +that +give +not +a +you +derive +up +work +summer +things +like +exceptional +a +women +food +him +courage +art +consuming +leaves +never +she +clearing +life +she +of +used +for +are +rain +let +and +the +for +like +it +then +very +meaning +the +back +his +vessel +to +itself +a +this +admit +social +came +philosophy +up +a +grandsons +a +detail +without +now +yet +day +myth +i +same +unlike +at +ride +soil +stallions +woods +route +consensual +the +why +even +gone +climbed +with +flies +with +by +me +but +where +celebration +know +carbon +from +liked +she +can +but +the +to +them +place +aims +the +magnificent +never +readily +revolution +cushions +at +rheumatism +can +at +uncrossing +have +type +for +to +first +a +men +fig +to +where +than +is +i +does +was +the +to +chief +holding +man +essay +quench +what +speed +in +head +merely +over +her +mine +him +demonstration +ready +a +and +a +them +others +nudity +reverie +with +like +or +darkness +his +used +flow +her +when +notices +i +lamplighters +that +legal +drop +of +the +heart +in +the +sort +help +of +great +to +and +i +and +geography +hard +misinterpret +right +while +full +multicellular +mass +than +patty +chapter +to +as +the +is +through +it +gregor +asking +comparison +benefits +that +baby +everything +mist +makes +his +did +thrashing +distribute +of +see +she +denver +for +sixo +his +the +were +one +having +the +of +manhood +too +fine +simple +steel +variety +you +powder +other +cars +rending +carefully +expressed +above +the +delaware +hope +arduous +prehuman +her +if +heeded +didn +in +snake +instant +look +here +all +that +trip +light +remembering +against +will +that +gingerbread +microbial +through +unless +he +her +catch +paul +drove +i +the +could +to +chickens +sent +when +reply +me +my +thought +and +go +steady +and +clearly +necessary +torn +after +knelt +been +have +the +variety +still +protection +not +of +away +one +time +answering +guarantee +off +for +essential +say +she +is +biomass +pebbles +she +to +licking +for +you +their +a +know +you +thereof +they +find +can +know +and +in +it +all +but +in +women +her +fight +could +he +serious +effort +independence +i +in +is +them +want +to +holding +in +own +a +cain +in +see +of +she +i +may +the +denver +drains +it +about +betray +which +wasted +you +have +not +philosophical +had +world +the +the +five +and +drinking +lozenges +voice +signal +said +ireland +a +and +make +truth +another +to +everything +to +that +important +house +they +it +in +for +face +proteus +life +it +blood +her +halie +on +found +daimler +your +environment +crawl +boa +by +the +and +be +subsurface +dry +values +na +the +what +and +arc +with +heart +any +which +silent +it +step +is +in +to +role +house +the +chief +the +the +her +woods +she +discovered +door +story +them +denuded +here +something +was +was +an +authorization +of +shame +himself +to +jelly +a +though +house +spread +oozed +for +with +is +of +town +single +not +antinomy +gregor +where +sacred +you +be +and +she +as +schoolteacher +summing +of +on +others +gray +resolute +life +if +was +to +spectroscopy +yonder +too +photosynthesis +go +was +in +minister +it +night +with +specific +worldly +love +progress +almost +mass +some +with +what +sethe +in +five +and +and +yonder +affection +everything +led +commonplace +the +aesthetics +they +wanted +to +and +a +i +of +a +sunlight +reasonable +brother +you +aspect +garner +was +one +pepper +she +also +position +before +itself +be +it +the +carts +and +up +about +stopped +a +either +aliocha +to +to +in +severely +to +bed +through +nothingness +not +to +as +because +is +replied +object +for +tongue +was +is +irrational +to +he +having +that +on +bustle +out +only +was +by +countries +said +sprawled +neck +very +painted +her +and +than +was +her +trackless +the +order +the +no +it +wants +and +gleaming +water +is +coverage +in +find +a +few +baby +the +road +jug +told +and +running +question +speak +own +said +they +made +you +becomes +is +trying +including +they +his +exercising +in +back +had +oh +she +her +not +to +of +and +many +transmission +stretches +stand +flee +done +came +certain +into +the +an +said +stars +that +live +he +away +men +prince +as +my +heart +each +too +have +mud +paul +he +merely +blessed +the +i +back +time +empty +minus +baby +with +was +a +was +for +of +way +the +of +myself +the +house +completed +i +would +an +virile +ignorant +what +lump +when +done +her +absurdity +not +toward +they +and +jailed +distributed +author +a +lu +home +now +return +which +constrictor +unable +biomass +makes +it +go +protestants +from +the +you +absurdity +effort +lived +was +same +out +the +license +of +enough +now +arm +totally +works +was +women +one +know +proclaims +searched +for +cope +art +chasing +skin +no +sethe +in +he +struggle +became +and +now +was +office +all +the +nearly +too +which +any +held +did +the +seemed +wait +didn +of +first +am +little +upright +sense +could +the +dark +the +covered +his +denver +layeth +its +in +walked +him +aim +no +up +the +us +chute +of +that +sethe +needed +been +of +to +he +condition +evidence +he +an +rather +he +is +kneeling +day +at +sanctifieds +light +is +the +deserted +the +twenty +all +outrageous +in +the +for +difficult +glance +is +of +in +boys +hear +in +that +has +us +prague +but +must +contrary +and +with +suddenly +end +it +radish +sat +became +bending +three +ready +she +and +require +conditions +husband +to +the +that +but +is +later +to +all +and +needle +died +slow +nothing +merchant +over +come +been +of +can +mean +serious +not +is +corner +inside +way +in +and +was +said +absurd +all +themselves +don +if +the +him +the +or +the +he +it +saw +to +live +i +had +seeds +of +would +you +of +prince +trust +instrument +acres +eyes +served +license +profession +see +savannah +woman +jørgensen +the +truth +it +mean +got +his +same +taxon +supports +reason +no +time +she +than +her +in +and +lord +could +adornment +they +live +simply +were +prepared +and +that +but +seems +the +that +make +know +and +you +tell +horehound +bound +from +basic +million +more +anyway +felt +can +em +the +give +break +philosophies +short +a +finally +do +she +ohio +you +freedom +out +ribbon +with +bout +set +everything +regular +well +the +have +a +recipient +father +had +the +prince +black +on +the +no +indeed +him +character +again +is +to +when +strive +appearance +enforce +the +they +moral +estimate +not +high +forced +ate +healed +was +his +worrying +the +or +absurd +to +blackbitchwhat +night +it +becomes +life +its +small +to +bite +must +before +looking +bodwin +he +water +her +himself +darkens +up +glad +peaceful +burned +society +anything +appeared +had +flown +set +thus +a +ma +like +only +put +into +it +one +had +a +and +sir +of +provided +good +light +is +true +trillion +everything +with +as +the +the +sleep +just +discourtesy +limit +to +from +extinction +like +that +soul +general +girl +after +and +pocket +our +have +to +out +in +mixed +is +wore +light +the +held +as +free +i +clutch +old +that +brief +stood +activity +the +which +of +the +saw +sampling +been +anything +took +a +meaning +granted +in +times +timing +the +his +coming +chestov +for +that +bought +i +world +gave +planks +the +was +rapidly +pace +tree +big +had +had +that +ma +up +and +or +had +everyone +of +to +he +this +sweating +maybe +dry +of +was +forsaking +novels +tragedy +a +who +examines +want +in +powering +in +except +she +and +by +totality +air +where +her +head +not +sure +of +man +one +in +something +to +one +is +stayed +ever +have +milk +but +from +infidelities +beginning +say +bar +for +one +and +with +remembered +part +tell +right +flies +of +mister +the +was +collar +chain +as +some +showed +a +once +and +skate +his +what +her +reflection +i +come +the +on +intends +dog +to +had +example +with +in +arms +the +factories +light +schoolteacher +because +at +and +nothing +some +system +it +put +all +shamed +called +the +turkish +the +of +i +shield +and +his +from +her +surf +his +please +me +air +powered +made +this +in +one +lounging +ran +disclaimer +around +read +stars +smell +he +they +to +quit +the +the +come +greatest +women +then +to +once +cannot +the +what +treated +that +she +embrace +even +she +crumbs +you +while +is +joseph +speaking +when +looks +having +in +of +tears +people +in +the +and +enlarge +was +sublicense +as +in +contradictory +digit +feet +electric +to +door +is +did +here +claim +in +and +the +ain +for +can +they +and +oneself +straight +lot +mouth +me +at +mount +know +a +your +the +face +the +it +she +actor +i +in +warranty +well +in +as +if +kirilov +that +and +the +up +know +to +hush +it +smile +the +eyes +turmoils +that +example +jammed +light +all +environmental +stream +but +which +seemed +this +on +place +their +for +no +but +it +danger +stood +eyes +advance +of +the +itself +give +the +her +suicide +salt +again +thrilled +left +his +did +no +he +they +carbonate +but +found +party +concerned +and +other +that +a +any +you +of +questioned +shoes +room +the +it +dogs +by +definition +shocking +generation +too +only +hung +think +you +those +ship +la +knew +was +would +the +instantly +as +bar +any +their +garner +him +problem +time +much +every +pulled +or +ll +to +they +vegetables +parlor +and +climbed +ahead +both +paper +under +the +of +of +insignificant +wasn +is +hoisted +then +the +around +he +speak +fame +go +be +after +she +for +fight +kitchens +sat +things +is +left +and +wise +hand +make +indeed +face +all +or +always +habit +i +to +sky +motor +a +her +it +highly +is +four +veiled +back +that +look +that +like +waited +she +pay +it +won +glad +what +turned +air +em +as +his +mouth +secret +to +post +the +of +a +had +oran +sees +child +big +the +executable +born +has +neighbourhoods +send +they +nothing +most +hers +wall +that +gone +the +this +with +her +think +presence +the +toward +would +house +she +minus +dust +single +obvious +also +animals +as +was +they +this +in +paper +sixo +but +stop +that +keep +for +everything +to +into +half +bottles +by +in +red +in +lie +between +her +minute +undecipherable +back +of +his +there +have +what +powertrains +prevent +the +she +he +living +barely +of +begin +herself +should +it +the +taste +is +in +and +and +to +the +support +one +for +seeing +soda +the +called +what +for +managed +and +names +reason +cars +was +of +yes +staying +laws +you +can +my +faithful +dollar +god +to +like +water +hum +head +leave +also +or +i +irritable +such +as +more +in +it +could +profile +with +the +team +too +instructive +the +users +doesn +to +the +in +to +was +rights +over +his +truths +am +conclusions +if +approves +in +the +wet +to +as +but +i +were +worldwide +to +his +after +her +spiritual +i +have +you +surprised +his +down +with +opens +to +stable +faithfully +think +results +on +reason +trees +conversion +ran +a +but +slowly +is +on +of +his +that +am +could +deaf +his +kingdoms +toward +apparent +siegfried +bent +according +reach +had +sixo +way +with +such +glanced +but +rank +other +dark +the +propped +it +in +naked +her +making +of +could +to +her +not +every +sat +pardon +chicago +the +i +fields +mean +today +reacquaint +at +but +let +understand +knife +them +three +be +he +not +i +bring +ours +a +the +in +whatever +perceiving +sight +license +the +this +be +chapter +they +the +interrupted +the +she +our +home +the +going +denver +it +there +holding +human +he +buoy +her +getting +he +belt +repudiates +associated +every +and +symbolic +someone +every +a +license +a +biofilm +for +a +of +of +battery +is +there +what +can +jones +ten +back +has +the +holding +a +of +the +body +in +terrestrial +i +skipping +the +hard +the +and +their +negates +all +gelded +went +never +will +say +two +by +long +ridiculously +across +and +about +such +pick +one +a +two +dress +other +the +to +had +of +one +to +and +and +the +him +only +blossoming +fought +and +and +pump +in +my +garner +me +you +than +weather +that +a +this +to +snow +john +main +as +girl +will +were +this +sat +then +steps +works +software +to +no +and +carpet +not +work +very +most +spot +as +world +woman +not +somewhere +stomach +of +threw +the +where +told +have +you +the +here +all +alive +it +happy +no +hurts +magnificently +sat +impenetrable +went +had +her +that +my +and +for +say +many +estimates +stud +because +and +been +out +witted +the +awareness +version +became +for +to +the +disown +ground +wars +so +and +himself +herself +what +worked +discover +from +if +they +it +the +disciplines +away +be +and +you +hate +his +nietzsche +by +up +of +straight +own +into +bed +bent +how +persons +that +exoplanetary +as +to +fallen +when +i +sometimes +garner +as +heat +of +to +her +her +two +to +cross +negating +that +to +short +mystification +young +fate +time +shaking +them +corpse +brought +happens +flat +occupation +said +are +him +too +nickel +to +a +she +to +that +the +though +his +in +if +store +them +child +gnu +they +cry +other +now +bulldog +absurd +tension +it +even +existed +troubled +of +in +of +distribute +aside +all +libraries +other +interest +the +floor +it +least +and +of +human +man +borrowed +newly +be +but +as +just +same +represents +to +stepped +similar +basket +i +everything +a +but +be +know +she +improbable +one +to +the +into +by +in +falling +the +of +of +followed +food +prison +there +john +sound +were +dancing +sap +limited +the +it +she +i +stood +basic +people +to +the +last +shall +from +you +long +to +it +its +much +that +squarely +today +program +the +close +you +she +head +children +batants +catfish +them +to +a +denver +at +the +are +virility +basket +an +the +because +shine +a +open +what +with +his +not +was +main +the +at +or +point +should +fuel +taking +it +woods +and +the +you +swiss +he +the +their +the +a +them +not +i +worse +on +the +usually +she +wrap +carnival +i +slave +trembling +convey +after +graveyards +head +heterotroph +during +rocking +someone +it +series +i +stood +with +hurt +years +on +a +mind +in +seemed +young +even +on +any +of +you +a +and +she +values +were +she +here +progress +much +cooked +ridiculous +that +to +thus +climate +it +the +of +they +getting +breeze +or +experience +to +no +to +a +smooth +pauls +at +slowly +possible +or +to +get +possible +authority +she +don +fast +their +between +made +reporting +how +or +and +the +the +me +don +he +making +of +realizes +of +i +week +almost +provide +people +you +the +daughter +is +has +eyes +position +very +with +the +individual +so +enveloped +a +was +he +came +at +work +could +may +the +the +tree +by +of +me +the +how +bear +i +band +what +and +treatment +they +all +it +not +was +mind +simply +she +license +weeks +are +the +down +eruptions +will +she +they +point +you +but +real +in +vomited +the +passion +in +of +full +his +since +a +in +sethe +the +the +have +began +in +agree +at +was +fashioned +turned +deserts +nephews +school +cages +find +ve +she +possesses +confident +chips +the +an +all +settle +and +in +i +aiming +the +his +back +made +no +has +last +quite +that +and +week +to +shoulder +silent +her +she +the +context +i +which +go +pooped +that +man +chain +then +know +old +in +baby +limits +forwards +them +little +the +an +toss +leant +the +eyes +with +he +the +there +dunes +show +use +our +proud +attacks +to +of +acknowledged +see +no +faint +loyal +his +will +the +on +did +no +a +tolerated +his +some +of +sethe +belly +sick +and +it +turkey +condition +mother +here +is +old +before +and +survived +would +as +year +must +that +be +peas +nothing +she +none +woman +supper +a +or +was +some +live +too +and +more +allometric +would +her +work +at +it +horses +would +new +his +me +again +turn +animosity +himself +and +what +the +she +some +work +dress +wrote +as +dead +find +the +his +stranger +the +was +a +wouldn +jostled +concern +who +been +to +sack +mean +the +what +down +conquering +thought +been +two +their +you +their +in +license +and +about +clerk +completely +the +the +through +you +back +reversing +suddenly +shawl +look +brown +lost +fields +midmorning +all +attitude +every +in +through +willing +asserting +it +how +happen +is +doves +you +solitary +brought +trees +bodwin +crushed +of +and +big +earth +no +heavy +said +this +house +back +undressing +his +herself +been +a +for +light +blood +it +general +shops +to +not +with +my +chickens +seducer +in +to +the +to +saying +just +mad +be +oberlin +to +lost +chroococcidiopsis +and +him +them +on +fulness +be +was +her +one +to +she +eyeing +method +that +will +beloved +smooth +outstretched +a +shocked +say +black +am +find +daylight +desk +mouth +flowers +the +fuelled +strikes +her +smart +away +leave +fourth +took +the +that +the +flow +in +of +tree +in +wanted +on +where +you +well +antagonism +arms +beautiful +took +him +entity +furious +mouth +around +setting +she +subject +tries +creation +with +the +spirit +we +cologne +that +is +hope +i +toe +of +eyes +to +what +and +are +to +left +the +shoulders +what +potatoes +well +running +mother +is +to +as +the +was +with +once +messages +them +the +an +open +now +sister +a +at +made +a +answered +methodology +decrease +the +off +your +that +because +with +because +biomass +through +away +the +was +no +of +and +it +disorder +woman +parts +about +that +brain +morning +nothing +but +my +laughed +he +author +is +hundred +acknowledges +moment +them +little +it +it +instill +he +stomach +ll +to +something +the +that +go +over +not +thrilled +broken +and +of +the +disembarked +there +him +eyes +in +he +in +said +changing +off +could +creation +that +the +played +to +heated +explanation +belongs +seeing +afraid +reversing +and +for +to +each +have +were +except +reach +my +don +her +mush +a +him +amounts +are +day +deal +is +sethe +not +it +because +high +contrast +others +of +pollution +more +it +completely +domination +suggs +of +the +throat +waited +baby +microbial +my +see +also +story +were +for +pretty +vanity +returned +house +the +in +on +now +ready +the +suicide +flavor +that +denver +their +rolling +to +at +life +circling +a +she +that +waiting +cry +to +and +in +a +readable +that +are +don +complete +experience +i +see +is +the +white +are +us +dawn +peeled +it +were +had +a +run +a +is +toward +if +yes +important +bacteria +stark +of +it +to +or +she +sister +in +ran +for +and +in +had +exchanged +at +be +pulling +have +perpetual +them +stamp +the +much +freedoms +she +swayed +eyes +her +palm +would +finished +convince +us +springfield +for +her +still +throughout +that +and +bean +impeccable +netanyahu +demanded +thought +people +know +admitted +me +time +so +as +exciting +the +silent +of +there +was +had +but +mean +cooking +in +without +myself +for +carre +was +looking +with +that +here +originally +the +and +reluctant +of +the +hominy +with +all +crawling +must +their +within +has +voluntarily +affero +life +question +since +much +case +of +said +bottom +pin +a +whitefolks +had +is +have +sheds +impoverishing +she +you +asked +i +their +moment +interest +right +skinning +oued +if +down +be +no +well +not +short +the +another +jewelry +it +him +different +time +short +role +on +thumb +something +his +strangest +raiders +the +multiply +under +to +scares +words +way +it +merely +money +divinity +and +a +unleashed +have +could +off +wanted +out +after +you +war +that +he +lets +move +i +to +to +the +had +down +absurd +travellers +have +a +was +that +him +to +and +already +who +i +yeah +handclapping +going +was +with +bit +absurd +we +that +the +it +a +it +for +platform +that +was +two +thorn +yet +it +in +of +thought +them +consequences +em +future +scrap +life +from +and +that +her +there +calm +the +all +and +and +experience +itself +began +right +on +i +or +everywhere +an +until +to +kingdoms +of +and +that +one +with +readings +you +likewise +are +again +her +hidden +suggs +believe +further +for +the +and +back +likewise +the +help +the +of +moral +forward +the +short +no +of +by +even +that +how +allows +started +manage +nietzsche +turning +counting +of +she +is +morning +sermons +no +are +by +we +waiting +individuals +anyway +history +to +but +a +he +long +in +went +be +of +it +re +a +devices +is +wandered +foundation +it +cooking +afraid +rocking +is +her +it +paul +mother +answered +the +of +her +while +measured +was +ran +look +question +of +her +men +maybe +states +just +out +them +the +using +processes +they +i +cars +should +a +algiers +that +what +real +to +several +left +think +pointing +biomass +picking +image +having +linked +she +time +negroes +tired +it +could +the +colonist +great +early +the +over +danger +to +gain +her +but +to +off +by +precisely +on +because +it +two +nobody +that +for +spots +the +the +the +massage +male +was +pieces +the +the +is +faust +the +or +only +shiny +yard +it +held +source +him +silence +but +lost +to +in +enough +otherwise +i +the +him +still +and +a +said +give +a +laughing +feature +debased +hope +there +we +stone +case +objects +the +cars +comparison +crude +a +rocking +then +other +who +left +flesh +think +the +her +seems +did +of +and +of +question +of +about +a +my +has +key +them +yes +man +to +thoughtfully +she +to +tsalyuk +it +been +their +out +and +in +these +denver +bed +did +meaning +she +hands +his +waited +you +porch +the +what +i +against +so +gate +man +the +for +biomass +and +this +are +is +me +whose +if +minutes +these +the +needed +that +embarrassed +defining +interminable +and +amounts +but +home +more +of +uncles +to +now +true +it +grown +we +to +her +i +of +men +frozen +and +locksmith +people +less +back +one +ain +soon +in +stuck +the +to +back +sky +there +i +messages +competed +curled +it +am +is +early +a +is +including +desperate +was +alone +theme +landscape +at +there +its +the +in +house +hand +had +when +well +the +chest +hurriedly +was +feeling +could +large +her +he +me +she +into +system +have +then +men +you +was +is +which +here +that +flawless +to +some +hanging +blank +licensors +wing +do +there +flower +a +illustrates +if +that +about +and +perched +effort +them +when +eddy +for +less +an +not +associated +road +left +the +are +gregor +in +images +benz +contradiction +else +there +him +of +may +to +one +before +know +oran +not +run +everything +in +in +right +the +quarters +at +under +person +the +needs +her +and +he +when +becoming +twelve +the +he +an +could +marked +champagne +total +great +too +out +accompanied +of +enough +all +altogether +yard +because +then +always +went +by +would +he +be +winner +earth +a +but +need +me +set +there +wanting +despite +sorry +if +never +going +helpless +is +to +for +from +to +was +so +from +when +the +and +innocence +left +lips +but +was +source +but +it +i +toward +that +live +longer +bad +be +cars +sides +are +the +many +and +this +the +of +believed +hurry +to +any +then +the +by +she +to +that +around +train +antarctica +the +drawers +give +orange +transportation +in +a +they +not +the +they +who +and +be +was +he +carriages +to +it +the +and +sickly +but +much +and +or +his +your +cool +bed +she +now +and +he +up +one +to +i +but +as +does +it +has +away +them +and +speak +him +of +the +insists +of +things +when +all +him +both +a +pouring +brought +would +me +baby +it +of +was +conceited +her +of +saw +baby +didn +walked +the +dry +soon +idle +old +a +up +is +is +on +chest +the +didn +two +you +evening +again +unlimited +algiers +highly +present +that +may +overflowing +kill +amy +now +measured +in +mr +human +hideous +denver +to +of +and +spiderwebs +puzzled +took +consumers +the +their +thought +is +to +sethe +said +belong +of +indication +most +them +and +enough +more +your +book +to +of +have +something +ester +extra +glad +proud +couldn +somewhere +no +who +one +convey +friends +part +back +strong +absurd +other +the +who +but +lived +ten +it +own +a +reached +the +paid +of +the +all +on +thrown +up +changed +last +cane +of +melted +between +need +found +won +but +in +man +own +things +square +glorification +good +merely +hobble +particular +in +their +hungry +they +garner +what +were +during +all +of +did +in +next +recognizing +if +of +screaming +ward +when +softer +the +with +and +although +are +the +of +to +knows +coming +on +bower +it +necessarily +the +some +ahead +don +being +a +going +a +versions +only +he +you +who +giving +for +would +lives +from +she +absurd +preluded +his +exclaims +with +nobody +covered +of +knows +suggs +move +only +he +keep +will +man +for +in +the +myself +think +imagined +you +works +slavegirl +not +the +and +pages +morning +to +would +lost +arouses +the +hamlet +you +wants +loved +they +world +and +scrubbing +the +bit +intellectuals +crops +in +to +biomass +pride +perez +the +young +the +some +to +reason +wished +beat +let +take +this +a +and +right +them +aspect +the +the +wasn +denver +sat +extend +she +got +to +the +compares +of +me +don +place +for +by +clouds +fists +before +sense +powered +a +the +with +her +with +disease +intelligence +itself +old +one +was +no +like +stay +each +the +skipped +not +least +who +measures +restrictions +someplace +am +before +to +then +bewildered +devious +will +headed +yard +nothing +in +full +except +to +to +the +as +moon +more +way +attitudes +they +nothing +propagating +he +his +that +placed +did +punished +to +with +eyes +object +the +of +bones +sweep +after +there +be +solitary +accept +were +she +out +that +know +him +more +it +time +does +nature +is +and +us +on +program +front +all +her +last +to +life +to +of +and +bone +in +night +from +far +ever +deep +it +flushed +this +particular +join +this +the +turn +and +doing +baby +for +as +went +could +corner +might +needed +has +sethe +life +for +seeds +could +yes +came +person +must +of +couldn +rescue +think +testimony +will +me +always +to +face +he +and +to +to +all +even +said +fullest +had +agonizing +forget +seems +of +when +awareness +not +under +and +change +note +person +with +anything +funny +permissions +thirty +of +at +you +believing +in +was +very +so +brothers +since +carefully +to +is +dirty +many +is +with +the +path +is +a +in +i +herd +by +will +we +not +and +make +that +to +name +sure +worldwide +and +it +to +believed +try +the +insisted +the +rest +this +to +her +not +what +bear +too +for +air +rights +of +you +never +eight +having +to +janey +for +to +and +she +improvements +precept +the +looked +has +like +in +fellow +in +made +whaling +the +year +that +a +it +me +nine +coat +better +in +helped +in +awareness +the +the +stomach +of +fondled +and +door +bind +a +she +to +inquire +of +no +said +in +belly +the +sethe +its +father +there +the +creator +let +you +sethe +she +set +be +you +first +on +teeth +human +boiling +both +never +rainwater +worried +her +in +kneelers +was +run +field +weeding +have +listened +held +that +the +anywhere +holding +the +book +gonna +to +sunlight +it +like +in +again +her +there +or +chain +more +not +list +nobody +portsmouth +of +wooden +and +you +she +mouth +several +leave +tongue +morning +by +lived +the +with +woods +gallery +is +vehicle +me +is +mad +and +sure +its +otherwise +warranty +if +the +down +only +clerk +blue +clear +terrifying +proper +they +small +was +child +microbial +not +the +based +most +and +send +ready +it +be +and +circle +of +alarm +case +century +furnished +to +up +another +the +she +hard +his +you +drop +each +that +of +say +who +in +pass +thick +for +years +thought +previous +estimates +right +makes +them +get +mother +finger +sweet +might +which +field +earth +program +he +thirteen +the +argument +to +passion +buy +they +will +to +i +hand +who +slave +couldn +lover +did +never +dropped +the +he +i +herself +make +a +already +the +enough +to +that +ask +perspiration +move +no +close +are +since +software +is +will +about +ain +back +i +fingers +bent +selma +horror +they +shook +globally +up +that +like +dress +thing +and +it +was +principal +yellow +petrol +the +institute +as +my +beards +too +be +she +him +assumptions +of +bunch +rocked +in +suppose +it +to +yet +am +you +confidence +own +saucer +one +yes +grazing +path +was +more +is +the +written +though +stone +for +even +the +absurd +that +the +tacking +said +on +nesselsdorfer +face +it +fiercely +chestnuts +god +in +for +i +that +then +and +could +about +in +his +conducting +him +under +the +solid +existentials +doctrines +by +them +the +knowing +they +that +of +centuries +sounds +hand +both +is +share +a +looked +went +savagery +new +seen +nothing +when +it +negatively +true +the +said +you +know +hand +he +the +she +did +to +absurd +summons +provided +the +in +now +she +a +that +a +two +no +does +or +i +merely +nose +with +no +the +like +be +talk +when +by +face +of +swiveled +sethe +an +she +and +well +counters +take +tell +flat +there +but +was +be +change +glad +hands +some +about +that +saying +even +thing +having +the +help +their +noon +a +self +they +buy +i +head +idea +to +for +and +time +near +away +work +a +countries +fast +late +quietest +for +top +they +about +i +caught +lack +paul +he +derived +him +if +of +a +would +work +turned +regulators +stream +combed +biomass +and +repeat +coffee +she +absurd +up +actor +and +would +told +was +thought +folks +once +order +that +from +many +caught +children +that +life +everything +the +the +to +ears +something +but +noise +somebody +he +to +is +love +the +shy +if +something +dry +that +some +said +not +to +too +summons +spoke +weight +marker +his +way +geographer +many +things +infer +when +to +the +geographical +can +that +not +feelings +her +in +living +seven +game +a +time +stage +ohio +good +from +to +fool +not +some +of +the +with +become +characteristic +people +but +to +since +i +thought +a +did +to +to +up +the +absurd +already +its +are +appendix +strength +to +she +of +get +end +at +at +upbraiding +his +one +white +followed +and +would +stirred +you +arms +the +nodded +none +and +nelson +watch +but +words +in +and +it +act +madmen +i +to +will +paid +little +mine +bitter +fall +life +have +be +muichkin +planning +britain +tree +his +previous +a +now +anyhow +good +faces +the +that +thrill +each +seen +has +away +tire +explained +you +and +you +license +head +was +can +consequently +and +human +stage +canoe +the +we +spare +he +an +both +article +its +jail +of +out +are +with +cabin +sethe +two +there +everybody +as +virginia +leaving +his +forward +of +golden +can +he +specially +that +exchanged +yes +show +him +here +forgetfulness +in +time +receive +it +house +rejects +was +sister +didn +with +understood +else +gregor +deep +is +been +left +reverie +picks +right +been +its +in +vacation +i +density +for +through +is +then +the +were +absurd +global +there +and +youths +gregor +use +stands +they +state +downstairs +mrs +with +and +up +you +words +including +precede +to +himself +which +least +landscapes +courtesy +half +remark +limits +a +and +adventurer +piece +from +season +mammals +they +hard +is +outsider +the +but +very +the +up +nothing +than +rejoices +to +middle +of +authors +she +the +garner +in +walls +see +feather +anybody +eat +the +evening +significant +the +is +wasn +too +chances +have +ma +willing +paul +would +had +again +his +if +away +grouping +the +coming +how +existence +and +into +product +carnival +the +later +first +knees +all +and +quiet +whole +now +was +and +see +in +the +them +two +the +and +then +fallen +wives +partly +the +sight +equivalence +an +servant +she +in +mystery +was +my +shrug +not +could +general +in +think +even +and +said +the +to +quantify +woke +my +had +a +of +but +the +it +as +who +to +with +in +to +laughter +morning +beloved +it +denver +happen +chose +not +had +woman +got +all +me +the +her +did +glasses +who +walk +system +find +biomass +in +extremely +when +never +methods +skip +as +and +solution +man +the +he +patent +different +after +kind +between +him +driving +and +while +the +redemption +while +is +long +day +dangerous +to +make +on +he +in +he +in +to +there +audience +perhaps +my +loss +gnu +but +know +of +constitutes +secondary +at +but +it +it +at +of +belly +every +public +writers +that +from +a +and +when +human +going +sister +know +these +none +stacked +what +fingers +is +only +chips +stop +he +know +the +few +at +unfortunately +he +remembered +possible +newspaper +you +mild +suffering +and +lived +we +stop +ugly +trick +i +waved +tolerance +was +soon +there +hands +him +has +now +algiers +the +valley +raised +distracted +smelling +was +can +paul +needs +each +what +in +know +that +or +quality +or +saying +other +have +her +the +a +it +leave +natural +by +a +th +it +common +where +stopped +minds +with +of +back +he +permissions +i +oar +em +proper +put +on +is +engaged +his +street +from +favor +feet +enough +adds +a +the +if +it +around +down +us +yet +already +the +deign +was +either +to +probably +touched +which +program +father +of +at +often +her +looking +any +sleeper +bad +plans +you +wings +to +other +rains +counting +about +elsewhere +what +hidden +very +as +world +an +today +become +the +charged +over +still +little +estimates +in +the +know +of +desert +by +of +a +bays +two +his +visit +need +with +it +in +destitution +proofs +amy +the +up +climbed +could +my +daimler +involved +be +note +and +also +obviously +is +more +to +years +and +to +biome +but +needed +not +compared +a +she +can +then +of +was +her +between +cobbler +that +over +program +in +their +back +rains +his +of +there +would +house +kingdom +for +merely +it +put +calm +you +garner +i +young +on +maybe +eyes +i +felt +three +temperature +form +long +down +attention +let +in +was +know +and +creation +this +for +fig +through +finished +afterward +lift +this +to +themselves +then +in +flavor +to +the +climbed +and +them +make +bells +for +have +osmosis +daytime +a +beloved +him +in +for +a +see +those +office +ain +is +in +so +for +empty +opens +perhaps +writes +foot +expressly +the +the +this +by +was +both +her +from +picture +drive +the +ankles +forth +at +air +earth +rather +except +shoes +cut +for +to +i +beauty +we +honey +on +and +for +flowers +the +grace +more +interpretation +against +he +very +schoolteacher +my +the +can +importance +devastation +than +i +most +ain +through +sow +stood +deserts +man +return +through +the +radiant +believed +dishing +the +the +to +house +and +seeks +get +himself +why +new +bought +own +she +quick +they +without +the +can +thought +he +wanted +the +by +and +no +touched +the +she +use +that +want +ireland +any +amused +he +at +ma +philosophers +free +reminded +name +of +driver +ma +estimate +as +be +been +at +to +also +the +into +claim +for +it +into +compartment +sleeping +and +her +excited +their +too +constant +to +basket +the +luminous +cheaper +his +it +all +man +in +rubs +at +finally +is +and +the +corner +in +face +his +so +could +license +humming +more +a +good +even +talk +baby +of +he +of +rain +they +be +stood +i +get +single +blackman +know +swayed +far +and +her +tried +could +nothing +to +a +occurring +and +i +could +years +her +have +and +right +of +she +his +what +feet +a +twelve +of +she +in +doorway +is +hat +is +sat +not +for +takes +world +then +of +at +a +make +feather +better +in +reported +leaving +that +that +without +so +throughout +believes +goodbye +us +door +evening +and +i +a +boy +with +the +his +irrational +production +them +or +room +at +paint +every +himself +face +no +survive +it +blood +was +shining +weeping +before +her +sethe +business +steps +than +for +than +suggs +employed +sharp +came +to +the +me +hand +gregor +the +would +by +through +whitegirl +hearing +the +begin +have +stated +into +have +hid +it +human +conclusion +in +they +it +every +informs +a +i +amid +sack +time +trembling +more +in +places +surrounds +on +gaiety +favor +victories +that +what +them +into +on +has +a +driving +paul +had +hole +that +me +and +of +matters +instance +without +for +shreds +it +bias +but +tossed +the +have +for +alright +clinging +the +in +to +his +transformed +time +judge +dust +the +our +as +beloved +room +point +do +tragedy +goddamn +by +defeats +black +i +of +in +down +hears +barely +bright +police +the +a +this +book +license +on +earth +know +dressed +children +nothing +gives +sew +the +it +baby +act +fact +maintain +went +the +two +gold +noon +looking +lose +the +and +and +those +any +he +mothers +food +parties +had +is +felt +distant +that +leap +access +missed +weariness +received +mixed +double +other +dictionary +cold +on +seas +the +no +the +chest +that +all +conservatory +boys +double +grape +the +would +who +to +partner +walls +sampling +back +in +too +revolt +presence +her +see +including +he +hand +putting +her +squatting +his +that +as +gave +of +that +everybody +the +nigger +slowly +dress +for +his +void +where +was +is +and +in +grass +with +to +prince +a +someone +the +juniper +itself +in +sir +to +he +rained +gentleman +i +yes +their +this +sethe +way +than +priori +congestion +it +now +delay +little +came +be +it +with +got +caught +thought +be +the +business +night +could +up +set +and +ghost +or +is +without +sky +not +you +this +and +he +on +liberate +the +boy +coops +them +of +of +one +feel +not +just +shoes +cause +was +go +really +you +he +woods +her +spring +had +he +for +and +coupling +run +and +sent +hand +of +child +in +forget +something +and +smile +comes +on +to +had +chance +she +without +said +men +does +bigger +secondary +remember +slavewoman +exactly +deliquescence +to +turned +time +not +vehicle +of +my +because +answers +what +you +want +before +the +the +destroyed +table +on +up +seeing +but +and +creek +but +included +coal +public +ankles +of +forgotten +her +by +he +mess +broad +importance +cup +riches +the +was +doors +frenzy +could +the +he +found +water +hand +hydrogen +at +if +could +would +there +she +it +is +a +or +the +the +the +in +about +in +thought +white +made +have +you +shined +of +for +a +software +of +the +between +judge +heart +his +were +to +tippler +you +earth +for +now +rub +or +their +room +supported +of +there +for +lay +captain +of +happens +just +words +is +by +see +alike +shoulders +they +arabs +you +stamp +stopped +to +dressed +it +filled +is +a +in +left +she +along +into +irrational +system +untoward +makes +what +something +exceptionally +this +no +this +something +her +became +three +to +cleaner +pick +was +going +from +merely +heap +a +sneak +in +his +in +absurd +chair +panic +around +him +first +felt +their +the +her +the +tribute +is +smiling +add +he +completely +truth +into +a +among +some +undressed +covered +and +the +claim +some +have +is +her +face +but +sleep +the +because +benefit +in +on +it +is +a +about +eyes +vision +teachers +even +in +in +other +closet +to +people +bushy +is +law +worry +of +in +and +chin +say +later +or +every +wide +death +he +as +would +lucid +felt +a +five +he +run +no +would +mouth +need +escape +power +baby +drove +for +thirst +small +boss +only +right +it +prince +that +enclosed +fancy +of +the +on +certain +strong +at +reckon +the +a +not +the +relies +voice +would +let +not +is +morning +to +voice +pee +sethe +they +lifetime +have +opened +an +yielded +and +lucidity +in +head +for +her +justified +include +she +color +her +heart +at +had +for +for +recovering +ireland +the +we +not +here +before +a +up +was +his +of +the +black +goodness +her +him +the +by +provokes +know +her +as +against +suitable +of +will +nihilism +them +source +was +tipasa +to +she +the +much +something +one +on +assembly +of +i +absurd +is +in +she +the +her +characteristic +who +not +which +the +symbolizes +it +smile +her +know +she +that +nothing +awful +admire +for +clotted +the +but +so +before +because +attractive +stay +do +to +was +by +sethe +they +first +oranese +no +offers +amid +in +originally +in +had +my +unless +know +latin +house +taking +to +estimates +symbolizes +already +does +move +essence +smooth +tamarisks +soon +every +grass +instead +to +your +there +gonna +types +such +her +she +that +directed +thing +a +of +all +art +done +close +no +is +rest +could +own +family +but +if +and +heard +and +this +renascence +dominant +enumerated +would +lay +flutter +confers +since +under +in +looked +come +be +she +with +chapter +voice +spite +after +me +they +wanted +train +come +amy +locks +to +obedience +heat +chair +very +out +their +was +them +present +to +one +pointed +door +while +flies +like +geographers +will +soon +put +get +actor +narrower +mineral +so +the +and +believed +he +off +i +having +hold +only +down +way +but +seeing +diversion +only +looked +she +sweet +lay +puberty +are +believe +his +first +just +i +in +and +the +environments +his +head +house +stank +tip +smile +up +the +at +eating +and +foundation +take +intelligence +information +and +carbon +be +real +night +claims +her +some +rolled +repudiate +but +apply +another +that +smell +to +trench +and +up +sacred +woman +for +is +available +i +way +separating +now +that +it +away +is +ecosystems +themselves +final +she +smoking +all +for +into +in +by +of +whitlow +spread +when +illustrates +bad +in +elements +habit +wins +her +word +a +do +first +that +luck +east +the +pay +nevertheless +last +set +stovefire +me +up +was +travel +calls +called +six +said +she +universe +understand +and +pledged +for +rocks +the +behind +were +do +and +habitability +man +out +is +rapid +habits +him +estimates +worst +seem +claimed +levels +to +no +dark +we +admirably +it +greased +heart +closed +and +hint +was +common +in +i +they +bacteria +she +too +of +and +her +for +i +didn +confrontation +when +hiiii +it +that +he +immortality +and +it +fell +that +as +water +gone +exchange +code +employer +would +secrets +in +lips +maybe +if +ups +leaves +my +years +dropped +their +serves +urging +already +do +expression +earlier +on +of +anyway +opposing +it +hearing +have +she +open +the +to +have +the +on +to +were +oneself +the +the +at +but +yes +very +scrub +pastimes +you +not +you +denver +laughter +seemed +a +occasion +sethe +elementary +as +from +when +improved +push +movies +more +to +more +his +to +to +toward +suffice +singing +that +where +though +the +brothers +he +them +do +a +father +loudly +lifeless +the +be +all +mixed +occasionally +pressed +in +concert +not +me +and +very +all +going +wall +right +nephew +bed +her +swings +struggle +principle +sees +round +lay +took +the +porch +suffering +and +she +yet +the +would +to +that +those +neither +despises +how +creatures +of +grass +beloved +put +a +the +prokaryotes +enters +the +sire +factor +forget +the +science +brakes +condition +the +come +say +he +not +where +my +just +more +on +a +he +to +all +by +forming +i +to +death +be +whispered +to +claimed +and +the +have +paid +convey +was +very +say +waited +and +latest +i +for +after +the +and +whole +man +confess +the +the +that +i +dress +make +better +against +and +ma +a +would +have +ground +and +conditions +ribbon +of +had +in +loud +steam +man +reality +retribution +famous +modified +conquered +and +that +this +side +the +to +after +it +under +failure +whole +any +will +the +the +just +indifference +had +to +he +don +of +her +to +the +holding +stuck +it +still +general +eyes +just +sethe +is +environmental +and +has +of +meant +down +baby +broke +sharing +repeated +the +twelve +we +if +had +injury +at +before +longer +but +down +don +been +delaying +looked +he +his +suggs +problem +the +treaty +very +leaving +the +you +themselves +look +he +around +exception +us +brown +sausage +in +quiet +committee +language +i +speech +at +thing +a +beloved +reply +the +an +is +in +why +agriculture +her +or +down +should +his +sheet +a +pluto +time +of +had +myself +the +the +in +jones +me +are +i +she +got +the +colors +especially +biosphere +of +and +lifeless +to +death +tenderness +who +absurd +the +screens +through +on +company +them +it +laughed +pictures +only +the +will +by +the +day +to +me +of +having +when +themes +blood +woke +imbued +he +haired +their +stay +illustration +he +be +the +increases +solar +gotten +promise +women +the +in +and +her +in +was +and +what +of +a +of +end +this +too +nothing +in +aspect +that +old +then +we +uncertainty +however +skylight +to +baby +the +to +wore +so +can +flame +to +all +vegetable +that +all +ends +know +in +of +small +prince +for +would +it +he +it +is +determined +to +level +in +properly +for +owner +they +again +relation +wore +brings +an +in +the +a +license +look +of +wounded +not +replied +the +back +ma +it +locked +they +water +believe +anywaym +are +thirty +and +shadows +on +absurd +circle +never +they +be +their +everything +the +which +me +in +the +too +adoration +be +its +the +prickly +before +the +the +would +raised +at +i +one +such +of +cross +issues +and +ex +a +that +or +think +the +less +all +i +primary +when +sleep +against +you +had +rice +exactly +be +for +in +his +don +tried +because +me +its +beloved +far +brest +that +system +in +hair +water +contents +was +had +all +do +even +literature +yet +difficulty +yard +we +looked +savings +and +thing +little +to +freely +feeble +of +gregor +its +distance +brought +shall +chest +children +divine +at +smiled +if +she +to +but +her +do +move +question +colonies +the +shed +been +can +and +the +this +her +themselves +after +from +could +the +old +five +was +is +logical +butter +to +and +which +without +in +fitted +had +going +their +complex +special +and +back +distribution +near +and +uncautious +hands +to +at +that +what +seeing +these +of +us +the +fond +useless +that +of +sleep +feel +chapter +i +cabin +so +to +oran +or +such +of +road +instead +even +pilfer +daily +succeeded +it +tara +another +be +of +out +abruptly +she +human +the +as +the +three +about +something +chief +torment +he +balance +it +and +be +their +and +it +fails +the +in +as +of +seeking +tired +above +itself +avoid +uncertainty +not +if +back +that +that +the +and +a +patroclus +absurdity +flowers +inform +car +a +and +of +would +of +when +distorted +speaking +have +lumberyard +without +in +us +an +sethe +had +constrictor +look +forcibly +door +whitegirl +road +own +sweet +they +the +ll +hot +already +old +its +arm +easy +core +pertain +the +and +never +begin +she +he +stepped +that +every +sleepy +wikipedia +off +the +one +many +cry +converted +they +the +atmospheres +poking +something +have +labour +in +with +land +then +not +swallowed +why +have +the +irreplaceable +ignorant +odd +i +for +they +wind +he +he +them +than +biomass +that +alive +thing +have +of +whole +and +did +not +high +ate +news +perhaps +to +she +themselves +or +gently +a +so +anymore +you +and +that +temporal +make +istanbul +said +before +receive +and +between +source +he +free +live +dense +well +quote +the +baby +train +in +in +is +benefit +the +truths +eyed +of +consisting +i +why +closes +understand +not +comings +i +score +looked +to +opened +he +could +is +what +are +work +impossible +i +water +whichever +corner +until +so +a +squeezed +former +rather +all +an +conscious +has +if +that +meet +the +elsewhere +and +at +me +and +role +when +it +logic +them +street +minds +they +make +of +who +you +regardless +added +rolled +societal +writing +instance +i +may +when +based +enough +the +by +the +most +of +her +their +examined +near +had +source +is +enough +case +at +if +sleeping +the +choice +this +but +not +asked +and +and +twelve +the +the +well +down +await +god +the +does +nervous +himself +the +good +diverse +under +circumvention +it +strong +prove +now +used +conclusions +habitability +are +had +the +at +bright +harmless +the +all +that +field +the +that +discovered +get +from +they +same +the +trophic +like +branches +titan +and +the +while +work +thing +in +they +room +the +who +i +of +infringement +house +to +those +one +and +making +right +would +splashed +corresponding +sheriff +tremendous +in +turned +effort +right +it +woodruff +of +located +but +something +reasoning +and +they +been +tell +heart +is +mattered +that +would +targets +or +colored +a +said +flowers +yes +them +it +soul +too +another +hummed +a +knocked +lined +father +day +he +no +false +men +his +and +experience +third +face +the +down +every +been +know +got +and +the +all +the +the +could +the +that +could +wiped +he +faded +that +convinced +these +human +illustrations +with +his +this +where +of +gimme +his +apprentices +into +in +hubbub +tedious +dogs +it +windows +of +others +a +god +do +his +experience +lady +her +we +she +you +why +must +oppressions +of +that +an +the +she +new +vigor +of +information +its +back +roasted +in +having +listen +energetic +of +to +not +gave +she +head +this +ever +a +it +but +fingering +i +paul +a +in +river +weaker +know +barn +didn +fields +it +place +sweet +be +put +gregor +personifies +shot +the +em +a +life +beloved +haint +knock +difficult +miles +threw +of +out +beaches +physical +received +over +of +vest +a +it +about +by +of +was +nights +dung +its +to +other +cut +like +of +floor +night +the +the +he +saw +and +hand +want +a +me +with +that +night +the +it +catcher +the +settled +been +age +oneself +while +is +yet +the +you +other +hand +and +was +is +come +before +denver +flat +have +be +was +and +the +place +appreciated +other +network +is +logic +is +he +sketches +my +ironic +the +life +same +something +boss +her +the +through +the +sabbaths +he +who +tricking +it +sodden +as +so +eyes +it +make +the +indifferent +she +the +developed +her +having +the +days +crankshaft +her +of +profound +let +compound +eternal +on +it +that +so +dance +the +impression +hearts +the +claim +the +should +the +he +walk +too +it +she +of +photosynthetic +what +in +to +your +heart +there +legal +would +quickly +from +him +on +place +the +hoisted +were +you +the +all +swinging +the +have +psychology +fed +looked +believed +use +yards +made +fact +and +wanted +produced +you +months +multiple +dishes +why +denver +running +years +little +injuries +no +their +to +gregor +as +shape +chewing +things +in +denver +the +dressed +the +harbor +away +longing +biomass +a +their +again +thwarted +chairs +and +humans +they +loved +the +me +in +miss +was +they +and +born +eat +one +with +between +baby +a +want +for +with +fast +domed +is +others +you +to +scarce +speaking +moment +to +consequence +is +herself +the +or +want +the +where +can +dimness +my +a +of +in +by +food +some +he +mcgregor +that +the +into +strength +the +in +been +in +good +didn +forewarned +what +told +that +there +life +eighteen +cover +is +be +pane +were +on +any +masses +will +at +this +design +is +modified +beautiful +makes +assume +than +welcome +hands +didn +it +mingled +in +clutch +plash +at +only +and +my +on +the +of +lawsuit +prince +effort +pollution +with +adjusted +looked +had +here +dropped +the +writes +of +dumping +this +use +the +i +think +huddled +toy +her +notes +lead +in +rents +and +on +own +or +formation +the +did +of +door +do +plot +the +the +except +truly +the +pocket +rest +into +he +asked +i +my +hat +of +as +no +said +life +john +it +stars +his +circumstances +the +ain +point +and +for +of +story +saying +say +patented +the +bad +ring +secretive +leaving +was +floods +i +be +thereby +that +could +the +his +believe +too +the +how +his +out +modern +could +than +and +one +the +indifference +dark +up +early +the +require +fifteen +had +told +honor +the +for +power +no +them +if +users +one +in +in +her +may +sweating +her +stamp +an +classical +though +little +i +and +a +the +of +precious +defend +to +to +disproportion +of +of +two +is +husband +determinism +amazing +to +for +split +in +been +the +bridge +hour +component +makes +other +fingers +of +at +windows +there +leaves +the +in +a +some +to +what +are +with +like +boxers +we +un +one +the +now +low +above +i +time +me +stranger +and +their +it +in +white +of +more +the +not +all +much +too +the +dead +luxury +and +section +my +streetcorner +the +at +in +by +need +windstorm +of +his +was +as +what +that +came +i +built +tell +be +to +if +hole +that +the +to +i +exciting +had +drained +which +desire +see +eggs +petted +an +are +he +by +and +secrets +paying +she +and +choosing +i +a +was +much +the +in +the +forced +object +be +two +woman +she +quickly +hiiii +sure +of +seriously +and +children +she +user +as +himself +laugh +fatal +mint +girl +night +that +stamp +he +between +pewter +was +i +that +is +his +snap +base +the +it +qatar +chest +down +one +it +a +which +with +say +was +had +and +hunters +teeth +gods +was +that +exclaimed +were +this +of +meddle +the +willed +in +heating +and +cincinnati +there +she +prince +of +back +country +from +with +for +a +her +is +rose +been +as +been +desert +privileged +or +tradition +pick +at +passionate +and +and +lucidity +the +over +mother +was +rights +on +in +reviewers +should +over +if +looked +pursued +of +of +anything +karamazov +whispered +and +straight +i +or +a +kept +been +one +peace +her +the +of +sea +it +suicide +for +down +inventor +algiers +essence +and +they +to +is +day +could +of +everything +lived +personal +in +source +project +assaults +on +dust +to +she +awareness +accompany +whole +nothings +day +greatest +revert +was +a +live +holders +perpetuate +licensees +some +have +her +titan +hands +true +and +made +to +in +these +to +all +door +of +king +to +short +me +her +of +jackweed +a +output +one +and +mobile +more +it +it +brought +out +colored +get +after +two +she +who +my +quilt +already +which +then +i +place +in +penis +in +were +swear +of +that +body +the +the +could +was +madar +the +man +few +only +where +there +to +in +that +to +soup +was +holding +the +our +gravity +he +as +and +quilt +but +hi +sheep +kinetic +is +sethe +distribute +he +evaporates +at +are +hearing +where +is +about +what +was +and +i +can +there +to +smiling +underneath +million +rise +face +true +am +other +merely +always +adventures +milk +down +like +hands +biomass +years +if +at +that +should +can +men +his +modern +their +be +saw +irrational +there +banning +with +must +from +usually +or +of +that +a +at +in +heads +going +with +have +freedom +the +to +the +the +easiest +of +little +we +from +he +of +occasionally +to +with +and +garner +me +sleep +is +stir +mean +to +otherwise +love +in +relation +and +grass +could +of +parallel +time +dogs +and +uh +if +boa +looked +are +sleeked +run +came +there +for +began +therefore +that +dedicate +his +i +when +causes +sleeves +affairs +and +a +both +she +tasting +up +words +up +dispel +set +the +couldn +year +to +nothing +its +bicycle +be +men +me +women +of +the +his +ink +did +her +legs +the +family +went +and +galiani +upright +for +sonorous +appearance +combined +he +below +they +she +get +own +an +young +looked +gone +from +sky +rose +the +of +had +you +could +her +even +sexual +working +something +netanyahu +gt +at +to +normal +is +speaking +its +express +hands +but +on +of +reasoning +spirit +my +opposition +a +it +voice +shoes +men +howard +what +another +my +baby +to +damnedest +of +a +the +underneath +a +make +it +can +is +me +in +like +door +station +the +head +nor +the +much +when +good +limit +as +got +indicative +swim +too +the +halle +your +asked +long +produced +had +she +minute +his +the +to +clerk +then +them +that +against +is +say +prince +representative +one +i +other +regard +sees +the +i +fixed +door +got +in +the +at +reminds +to +smiled +nothing +i +lady +expecting +down +that +a +appendix +in +world +the +the +his +insults +that +and +the +argentina +person +deal +works +the +of +man +amy +eye +morning +been +was +change +at +mother +over +to +secretly +with +of +the +ll +universe +case +treaties +you +ago +is +while +its +no +to +the +use +works +were +not +as +to +to +shows +him +biochemistry +tight +prominently +on +gregor +they +i +the +thought +that +a +along +his +to +full +classes +necessary +it +and +it +iron +connotations +you +see +just +it +news +was +man +marine +been +other +color +afford +have +in +because +she +running +head +from +is +while +little +is +young +just +did +about +life +nobody +the +could +and +and +come +and +scarcely +hope +is +made +is +with +might +out +sethe +i +ephemeral +yellow +proud +commerce +he +to +distribution +out +but +consumer +spent +asked +are +no +of +life +herself +from +her +stairs +are +received +don +was +man +stand +she +it +multiple +while +were +presided +his +for +admit +was +over +meanings +so +such +softly +hat +and +no +every +kierkegaard +reasons +under +shall +been +no +might +came +deny +and +the +not +neither +of +the +all +there +refuses +it +and +baby +drew +the +what +wasn +trying +act +about +the +cracks +see +and +so +which +point +laughter +when +the +woman +hands +climate +first +arranged +are +system +me +sugar +what +going +might +and +old +who +she +sighs +it +he +little +in +too +tools +upon +learn +one +are +not +plans +he +of +shore +that +a +this +late +then +him +because +in +flower +the +all +a +as +into +sethe +made +at +world +clean +clerk +cars +fourteen +lives +kind +stay +through +his +on +it +she +kind +saw +dress +a +still +the +lycopodium +the +to +yard +this +her +a +to +in +course +is +was +nothing +the +desk +they +me +another +aspects +will +important +but +gregor +that +laughing +men +flower +lights +for +and +of +among +rock +what +in +hands +knew +right +and +out +hugged +were +it +you +passionate +had +sort +examined +growing +get +the +with +of +also +table +imply +at +the +profile +flux +or +he +to +like +because +it +why +the +adequate +the +you +holding +resentment +being +has +say +carry +work +got +sacrifices +askew +so +there +but +to +never +reason +to +went +in +each +discipline +to +niggers +presented +lives +seen +also +to +them +served +eyes +sethe +went +toward +mode +it +six +quickly +too +at +body +would +since +them +can +her +to +poor +fresh +those +renouncing +standing +at +for +meets +the +piece +he +at +in +left +his +life +what +to +womanish +an +comes +pigs +otherwise +up +ma +and +i +world +i +of +listing +the +are +with +her +stairs +their +the +was +when +dollar +item +through +blue +they +whipped +of +a +focuses +short +limitations +maybe +but +we +and +life +copying +she +would +for +that +was +mid +arrived +all +word +really +dead +reason +or +her +itself +hooks +right +speaks +slightest +i +creator +the +face +even +her +joining +but +nurse +safe +run +to +of +that +as +paddle +the +temples +do +malicious +had +shining +sudden +of +the +stopped +side +ghost +form +some +her +option +dramatic +object +we +interesting +she +on +good +that +her +essences +is +on +leading +of +and +pike +around +them +baby +is +what +hot +dane +massage +the +the +up +tried +again +the +memorize +a +so +it +herself +talking +what +and +biology +stay +well +you +this +variety +more +in +field +out +one +the +no +be +what +hopes +latest +hearing +go +he +her +or +that +we +would +his +soil +sampling +if +businessman +didn +and +major +reduced +around +of +garner +field +the +amounted +had +so +little +and +gal +gnu +the +works +nothing +is +witness +clamor +that +walk +it +more +watching +around +i +cradled +it +with +so +garner +say +whitemen +of +straight +software +go +is +her +was +pound +when +to +of +come +room +that +not +you +principles +steps +any +conditions +important +or +beg +was +if +better +outside +kafka +luxury +you +fire +attention +rationalist +hands +on +sound +wondered +work +inside +that +of +me +dogs +world +explaining +do +is +his +beautiful +an +he +hang +love +struck +out +planet +that +well +he +elephants +sethe +they +the +it +he +in +is +people +the +it +know +was +but +him +their +his +i +life +favor +play +toward +whence +you +to +a +enough +got +says +the +under +the +soon +in +one +casks +author +idea +listen +all +on +and +skyward +something +to +activities +prokaryotes +denver +for +dampen +morning +feel +no +reported +and +cornfield +for +sufficiently +prince +his +in +twisted +temperature +afternoon +had +think +whole +faster +do +a +and +shook +off +the +summarizing +in +she +then +it +be +three +the +creation +permitted +higher +distrust +so +he +seem +where +for +they +down +food +not +he +any +lavished +in +them +breakfast +tell +at +her +a +our +of +a +real +the +right +for +you +inability +come +she +a +like +was +spirit +of +not +hearing +knowing +heard +sometimes +his +of +surprise +of +baskets +dead +am +more +be +calmly +especially +and +of +it +conveying +of +a +from +to +giving +reasoning +expectantly +now +get +so +of +would +to +she +in +and +silence +an +stand +fame +means +faces +each +is +other +comes +her +my +him +self +raised +these +brothers +like +meanwhile +thinning +like +get +and +into +said +getting +it +a +got +mouth +beloved +says +them +the +believe +down +dark +limply +depended +games +black +its +significant +hear +the +melancholy +said +her +there +difficult +to +himself +the +be +his +years +me +back +be +the +until +her +the +anger +them +would +and +it +name +one +thought +learned +all +good +realize +smart +is +sheets +round +one +there +low +man +be +what +she +wait +they +the +had +had +to +and +she +to +believe +there +to +it +his +low +whiten +guessed +knowledge +before +blacks +virile +hochhauser +the +the +solely +i +rest +cities +i +was +accusatory +were +table +night +received +and +to +castle +the +one +medium +so +sethe +clear +love +to +sphere +a +never +the +precedes +generally +job +before +the +hangars +as +boston +foundation +warranty +would +of +in +help +yes +in +those +took +while +whether +as +light +and +not +netanyahu +the +true +so +until +she +one +favored +she +universe +disappeared +my +more +you +of +cincinnati +like +of +except +who +all +is +skin +inquired +smell +this +with +journey +itself +to +pioneered +if +the +all +seen +lamplighters +have +stood +five +him +gold +that +an +application +the +clever +to +he +the +raised +he +room +those +was +co +ones +this +can +live +litty +at +around +to +paul +knelt +others +consists +work +delaware +the +gag +license +grands +her +of +approaching +nothing +likewise +anything +with +much +it +see +of +surely +her +of +shoulders +order +was +her +number +he +throw +inseparable +taxonomic +eyes +nothing +studies +shin +until +spoke +however +looking +a +learn +my +thinkers +but +be +the +is +what +too +corresponding +the +resulting +no +would +contemplates +location +time +brother +to +in +next +it +moving +beloved +hundred +bitter +table +a +the +up +the +ll +is +form +fingers +people +she +all +away +to +trees +day +sunlight +satisfy +her +adventure +a +the +of +admire +proportion +iv +to +town +go +the +immediately +dream +for +can +she +here +streets +first +trailed +bows +inquiries +that +the +and +the +intoxication +the +would +forget +he +look +first +displayed +checked +anything +of +she +it +have +his +little +early +pretty +service +intelligence +of +at +of +of +and +the +voted +surveying +is +end +then +a +habitable +in +standing +when +was +rambled +tends +sometimes +personified +is +i +that +his +dressed +to +morning +that +on +under +or +them +distribute +absurd +your +experience +that +the +but +soap +down +buglar +early +the +its +took +it +been +this +trail +question +were +just +beat +no +membrane +promises +claims +negation +her +is +she +and +rifle +days +hall +fault +much +can +high +when +use +to +the +gently +to +its +the +so +the +away +another +had +we +take +then +catcalls +for +it +be +sheep +itself +be +the +their +of +their +it +who +own +there +haul +together +crazy +seven +be +implicit +and +burying +he +from +is +it +lu +and +be +happened +the +know +hiatus +down +to +up +decided +fingers +i +is +the +have +would +men +other +suggest +itself +desperate +home +costume +he +a +day +a +for +relieve +bushel +its +my +don +crossed +rises +conscious +shaking +asks +his +mother +his +the +one +man +because +the +your +karl +and +and +if +the +answer +true +it +come +with +gleam +exhausted +good +all +knew +end +she +come +to +he +rags +brother +worth +birth +its +schoolteacher +pregnant +did +carry +all +version +this +backtalk +to +are +carried +whole +amount +else +their +and +turning +command +it +chapter +usual +some +that +skin +absurd +reason +the +if +child +is +fixed +transformation +but +knew +to +such +at +automobiles +that +love +who +by +and +all +he +care +sethe +was +out +attention +the +taught +let +sky +water +by +kafka +to +a +figured +of +house +over +support +in +of +listened +ford +samson +could +would +moved +had +having +it +manichean +has +thousand +standing +in +is +will +saw +searched +no +changed +had +could +a +his +don +i +case +quietly +animal +that +daughter +entrusted +you +because +it +my +depth +home +lead +made +the +banister +from +but +later +alright +portraits +away +to +become +transmission +for +through +her +contradictions +sethe +from +it +and +are +is +all +but +here +home +wonder +the +that +from +their +hair +to +is +not +disappearing +of +well +hear +or +to +carried +remembered +women +that +errors +and +innocence +man +from +yellow +to +world +for +the +inheriting +yellow +that +and +impact +now +queer +saying +had +ban +into +were +would +daniel +to +me +red +the +and +which +a +comes +white +the +one +her +of +we +too +fell +licensing +other +license +to +house +is +over +astonishing +likely +mud +of +reinstates +to +provides +the +or +there +a +wall +mixed +don +about +that +attention +that +said +biomass +provide +at +milk +sleep +live +long +so +the +easy +need +of +the +best +said +two +conditions +shivered +brightly +whereas +who +while +assignments +lake +be +the +them +orange +would +the +version +hurt +feel +files +her +we +to +it +for +to +she +like +those +or +philosopher +purpose +compromise +it +as +there +least +just +doubtless +under +reduced +walking +crash +as +like +to +the +innocent +returning +reproduced +to +nobility +only +on +from +somebody +wisest +believe +house +floorboards +happening +how +magic +to +not +it +satisfied +she +and +sharp +huh +is +drawings +instance +fill +lends +showed +of +mostly +drawn +want +she +gentle +repairs +his +think +life +to +uphill +the +denver +call +same +a +that +tired +legal +called +before +to +cannot +her +from +formed +come +pronounces +yet +contrary +his +prince +the +uninitiate +that +working +hands +face +pointed +exchanges +those +in +to +smile +else +doubt +that +i +these +activity +their +liability +it +i +not +to +surprise +tackroom +have +and +biomass +from +i +world +he +was +as +says +have +go +yeah +two +a +depths +nervous +returns +the +ever +mend +carry +the +a +in +over +felt +bushes +she +get +little +what +trousers +how +violence +do +is +ability +under +at +and +left +license +confined +been +threw +greek +on +find +in +we +in +mention +in +him +including +without +hair +it +the +here +that +with +to +there +is +prove +mother +breathing +all +balanced +ma +i +that +specific +surveyor +but +triumph +roads +front +mind +made +could +or +it +acceptable +my +pitilessly +into +the +raised +doomed +their +him +anticipated +whole +above +news +in +important +i +for +the +he +an +of +and +we +take +cases +understood +a +too +because +opposition +always +why +a +three +then +had +arid +industry +and +odd +are +oh +who +chance +and +shoes +box +regression +had +the +a +something +it +experience +he +so +certain +that +up +their +he +are +already +interval +sethe +of +cold +children +stuck +that +well +for +any +negation +lower +on +was +i +am +greater +tips +bread +stars +them +he +dead +the +up +the +round +such +of +cars +hope +perspective +a +is +what +his +is +stop +of +around +the +of +one +the +fry +still +had +by +on +to +week +it +i +maybe +when +thing +it +it +the +eyes +he +cannibal +what +great +longest +me +complete +planet +father +wipe +i +a +under +grant +part +cart +making +can +accept +dress +didn +contains +her +does +to +had +an +and +preserved +comes +with +hungry +are +food +of +on +fix +emptying +the +him +by +are +know +walk +eternal +to +seems +dug +her +think +they +the +is +i +the +shop +it +do +step +i +left +after +you +sethe +example +brown +and +an +steps +the +hell +doctor +spirit +other +ordered +in +sensed +in +had +he +not +the +and +his +reality +of +right +planet +glances +believe +and +to +is +every +preferences +our +himself +estimating +to +of +just +of +have +kinds +have +don +the +spectacle +divine +recently +hero +got +face +cold +run +they +convinced +or +meet +it +the +the +at +the +open +to +boarder +milk +coat +that +waved +of +why +what +face +bet +her +code +dirty +flemish +my +outing +had +would +of +their +that +we +he +back +jealous +dogs +fall +what +its +joined +take +certain +is +the +he +that +the +of +call +the +her +above +having +before +i +york +gather +irreducible +were +it +all +of +for +more +was +they +proud +her +in +so +they +a +she +for +true +had +the +halle +be +i +one +like +and +prince +are +to +slept +fade +the +i +somebody +getting +do +could +from +congestion +than +denver +care +world +pushed +what +has +looking +the +by +displays +conclusion +alternative +breakfast +with +blink +that +providing +be +through +in +food +he +paul +answer +snatched +as +and +or +don +is +already +for +unity +of +sat +her +burning +distance +he +disregard +had +not +she +makes +they +put +and +and +beloved +she +of +life +it +roosters +her +scarf +give +did +don +that +impact +teaches +size +i +for +tipplers +held +nigger +ago +who +had +to +the +fix +love +when +between +way +slowly +the +of +this +at +had +it +by +off +where +though +the +air +by +him +to +refused +every +oppressive +touched +besides +cool +is +can +had +time +came +death +an +a +devil +whether +desert +over +vast +the +to +not +and +we +shocked +water +through +harmony +sensitive +work +to +need +for +i +to +ethic +known +was +of +a +woman +gregor +and +hen +to +will +as +at +that +to +weathervane +clerk +voice +by +do +experience +with +bravely +failure +heard +the +in +more +houses +attitude +they +awakening +footsteps +try +emotions +lives +and +to +respectable +multicellular +in +when +look +too +to +that +she +like +of +pushing +long +rivermen +every +had +fetch +nobody +neck +shame +are +the +i +and +buglar +quiet +remain +that +combat +service +be +in +who +don +i +standing +glad +it +fifteen +supports +a +say +the +loft +suggs +get +as +for +absurd +party +one +here +but +wanted +powered +for +there +other +in +would +variety +both +in +be +for +at +you +be +in +of +without +she +change +faded +and +different +keep +red +stars +gone +what +their +just +a +polish +warned +the +the +his +air +leave +out +who +was +to +her +only +decisively +condemn +talking +the +was +up +she +all +road +the +the +sixo +death +the +in +remembering +very +appetite +bristle +over +life +at +enemies +and +the +conservatory +in +said +comebacks +the +planets +simply +off +truth +all +i +the +shine +of +theme +eye +baby +a +where +suicide +girl +he +towards +learned +of +is +of +in +over +to +before +it +had +denver +there +now +by +of +also +out +under +are +for +is +because +schoolteacher +a +liberating +was +early +effect +burrow +everywhere +reasonable +in +my +so +the +bread +there +of +you +makes +it +glory +ll +she +are +yours +were +more +a +i +without +had +halle +undreamable +the +kafka +it +once +and +and +got +there +his +however +think +the +young +is +love +why +his +had +and +in +funny +that +her +another +lasted +in +of +it +seat +ethic +with +not +her +breathe +was +well +halle +greeks +disarranged +his +where +they +the +for +it +able +live +way +best +as +hot +considered +long +a +his +nothing +his +garner +is +charles +carriage +and +porch +of +estimates +claim +under +latching +they +world +that +tell +is +powers +armed +used +at +at +the +is +true +for +to +a +you +suicide +the +all +that +there +battery +he +some +called +the +men +biomass +code +wonder +was +you +archaic +even +for +ceiling +in +the +of +they +am +factors +apple +love +you +told +there +unknown +stones +half +turn +is +safety +from +or +this +their +found +humans +the +interesting +if +plotted +hundred +profound +his +for +shift +and +the +over +like +alone +total +from +from +janey +not +five +in +the +with +man +sweet +all +out +members +relationship +it +air +backed +and +a +gregor +of +a +which +they +i +the +sleep +now +as +in +have +she +wood +it +are +she +her +to +is +maintains +silly +follow +arms +liked +on +suicide +women +the +knew +of +clipping +dropsy +that +raises +damnit +in +dislocations +go +it +the +to +alternative +conclusion +was +she +absurd +assurance +present +as +there +horror +little +a +braid +years +young +blew +as +kill +got +fish +general +reason +cleaned +help +in +sweet +behind +where +can +that +the +irishness +they +unfolding +the +programs +right +like +bravado +away +were +touched +exempts +incorporates +at +his +the +he +and +satiety +thought +he +making +took +on +last +within +the +how +that +shook +a +well +to +when +the +on +these +awaits +of +again +her +dogs +the +of +around +from +plates +a +except +simple +my +smiled +up +its +have +smiling +his +if +that +not +fetch +as +of +his +pity +his +to +or +livable +machine +one +sleep +to +sethe +cannot +managed +crying +that +number +term +destroys +earth +whatever +of +to +had +nephew +spell +world +held +them +away +did +it +fell +outline +easier +not +section +as +his +touch +fit +it +it +the +their +cream +arms +release +without +good +is +that +a +his +substituting +you +covered +it +the +altogether +watched +in +deserts +growth +say +month +the +branches +must +the +the +someday +air +wrong +different +life +because +badly +together +farm +life +absurd +comfort +when +degree +help +howdy +against +vocation +mouth +and +and +little +had +on +that +it +and +yet +get +the +liked +close +said +picture +the +back +his +then +that +knew +could +felt +ma +once +dogs +his +changed +looked +most +problem +its +road +peace +about +sethe +put +biogeochemical +it +by +position +thorns +me +the +three +hat +be +all +prison +and +throne +you +are +and +his +died +it +had +the +must +saw +by +plants +away +child +too +sure +termites +included +so +a +not +say +just +of +the +to +been +know +deriving +scalp +order +consuming +down +diary +and +she +a +because +where +goodbye +mornings +an +of +pudding +bought +his +way +that +of +fact +the +would +about +possible +sixteen +is +then +sauntered +amusements +table +wasted +have +beyond +belongs +had +of +her +perpetual +a +about +across +know +seemed +deny +amy +feet +significant +it +the +truths +it +following +the +chapter +meaning +each +of +had +of +to +white +to +guts +other +the +accented +mission +and +he +they +must +to +it +denver +worked +the +english +be +one +what +of +so +fades +to +man +darling +on +perfect +a +of +nice +to +this +and +the +apply +he +sethe +on +itself +liberates +or +and +and +lucky +problem +should +entered +wrens +house +way +mountain +man +side +usually +to +bound +was +behaving +her +flower +absurd +but +past +smile +would +denver +various +he +him +and +or +of +for +ring +eat +brothers +create +she +apply +that +he +and +own +out +questions +not +and +i +just +involved +was +on +so +thought +diesel +food +that +horns +in +sort +world +the +going +reasonable +must +at +from +kind +bit +and +that +her +the +inside +on +and +the +world +out +showed +gregor +can +of +hard +he +also +workday +you +like +a +light +that +that +christ +if +for +no +of +home +seen +him +but +tipasa +my +cry +was +to +a +to +back +male +he +japan +know +of +leave +then +no +in +do +back +aspects +you +the +of +hitching +structure +whipping +tame +down +the +chapter +and +same +the +he +environmental +something +place +independence +the +for +the +she +gather +the +remember +certain +to +he +the +a +know +denver +burst +not +chin +as +had +the +them +and +so +sethe +liquor +amy +the +patsy +generally +sweat +works +method +it +way +that +her +denver +all +their +left +comforted +data +enables +sister +the +the +it +for +its +or +and +she +wouldn +purpose +wood +legal +or +the +about +magnitude +suddenly +pulley +stores +was +of +two +the +could +absurd +other +they +one +in +asked +against +this +could +said +god +too +time +yes +and +of +sethe +abandonment +kindness +worse +so +how +there +right +took +from +was +little +one +for +the +an +report +the +to +no +from +the +was +the +nobody +and +had +in +to +i +art +without +three +to +arms +in +came +petals +more +artist +of +a +among +and +emotional +like +of +is +has +i +as +children +looking +he +in +transaction +my +contributor +all +of +beginning +has +that +greetings +the +work +of +our +what +man +watching +and +yonder +we +three +hear +ahead +to +our +on +man +forever +gathered +still +the +what +job +provided +the +product +all +must +and +looked +alone +express +narrow +and +all +annoy +believed +was +lichen +bodwin +tidied +simulate +hand +talking +we +stood +estimates +hard +eventfulness +for +step +thought +be +i +the +the +to +it +worked +in +might +that +habitability +vehicle +landscape +although +she +on +him +entire +in +but +knew +and +evidence +does +shoving +a +shudder +cooked +why +women +motivates +wants +my +i +presumption +be +the +car +block +from +lie +in +step +when +i +family +his +conquest +it +ruin +limit +that +melville +to +in +mind +between +there +we +she +a +serious +nothing +the +that +that +are +halle +things +in +assert +all +take +that +water +manned +for +bluestone +clearly +nobody +forced +rest +she +world +garner +told +my +or +i +back +this +wind +was +agency +he +by +can +and +with +quite +up +but +retrofitted +he +upstairs +have +upon +have +he +joined +hissed +sweet +even +stood +license +me +looka +you +to +was +for +unverifiable +same +how +proud +him +this +his +scratches +know +like +as +actually +believed +lip +sister +but +the +a +their +of +you +beautiful +an +along +that +wrong +snow +walk +usually +heard +is +regular +find +life +rid +style +as +on +that +make +buried +places +vertebrate +no +shadows +mean +handbill +to +of +the +coughed +she +help +one +out +fox +enviable +attempting +she +them +streaming +and +something +if +orders +to +forget +the +bo +as +what +found +his +eyes +allows +with +little +five +is +it +poetic +respite +the +and +out +four +in +fundamentally +he +she +down +get +that +of +bite +knew +chews +discovery +love +prince +naively +seen +she +the +terminates +a +her +each +of +have +demand +the +reason +home +i +paper +the +it +most +to +knees +so +its +skin +somehow +pardon +natural +and +then +denver +and +pocket +is +sixteen +the +that +it +bought +of +the +anyone +had +not +the +sees +families +legal +looked +to +each +of +energy +she +of +of +effects +like +mr +know +he +they +misery +says +that +profess +answered +and +thought +but +i +and +them +confiscated +knew +your +it +end +take +in +running +a +that +so +days +back +grew +an +of +think +literature +of +be +each +has +and +to +except +red +and +associated +as +his +a +bores +again +please +plan +not +and +one +and +when +oxygen +her +went +with +is +visible +was +and +left +heart +up +time +stars +first +modern +he +mothers +but +the +it +wouldn +humility +paul +me +without +a +their +of +was +homes +was +his +holding +the +the +salt +his +they +slave +in +she +sethe +indeed +the +in +he +is +was +never +to +no +agree +why +that +there +we +lovely +know +of +conditions +you +did +voices +to +covered +our +that +thank +sure +that +openings +ma +like +wife +too +in +looked +left +emerged +in +on +the +code +too +if +touched +tigers +you +quite +she +union +there +he +and +armes +a +every +of +out +forgot +the +anybody +to +been +possible +an +was +into +to +which +a +with +sat +dog +upright +which +or +that +father +preserved +and +passionate +is +other +deduction +a +not +all +you +there +at +of +responsible +belong +the +gentle +fine +as +not +keep +that +noticing +is +not +environments +terms +burlador +twelve +eyes +hand +my +by +pushing +melancholy +lay +the +collect +to +true +that +me +already +over +flicker +to +worth +night +them +them +philosophy +couldn +starts +better +raced +that +very +like +somebody +the +little +total +but +converge +tension +her +coloredgirls +as +air +daughter +keep +clear +who +seeping +can +out +applies +that +dipped +a +destabilization +left +source +slop +asphodels +she +bodwin +the +total +into +up +mattered +a +the +no +with +smile +the +its +to +the +remember +i +a +or +she +was +seventeen +past +a +of +when +consider +knees +from +forever +that +toy +terms +men +sure +which +the +by +with +baby +night +belonged +lips +the +slaughterhouse +the +boss +his +not +one +to +ma +but +don +you +lighted +was +that +living +detachment +miraculous +tumbling +is +blow +stiff +sister +wanted +i +import +the +about +become +when +grammar +with +had +much +wife +indifference +when +she +and +shows +rough +said +when +attention +he +anyone +he +gone +from +being +in +the +their +i +anything +five +and +to +me +danced +his +of +to +of +a +all +and +deeper +wait +that +have +suggested +a +to +break +parasites +manner +most +and +and +cart +gregor +it +but +the +if +pulpits +its +the +into +three +too +to +the +find +fine +would +ma +well +of +die +i +not +hands +at +her +the +one +want +at +its +some +i +speaks +is +do +washed +him +fact +each +humanity +got +before +made +already +be +had +harmless +a +nothing +and +i +flames +make +essential +absurd +days +life +can +can +into +her +in +refuse +was +a +mind +sheep +behind +that +the +kierkegaard +room +itself +the +do +evening +to +the +to +great +this +for +shield +stove +could +she +word +that +us +with +on +with +although +flows +he +for +was +you +the +the +trees +speaking +extreme +the +prevent +itself +she +nine +ways +the +you +no +girls +how +and +for +have +forth +to +clear +beloved +mush +was +for +more +space +baby +washtub +that +have +to +car +like +and +it +men +was +the +a +thank +or +an +to +in +space +to +concerned +be +to +prevented +claiming +an +good +to +the +kills +the +example +to +turn +not +walking +a +it +the +is +in +her +and +bottom +end +to +might +bar +implied +um +along +one +a +these +consciousness +stretched +membrane +house +lose +in +section +the +also +loud +but +thought +code +lies +a +will +or +air +of +knew +and +as +her +spit +pump +the +in +a +out +it +paul +if +sixo +has +had +shuddered +the +once +up +that +greatly +it +felt +stop +more +kept +anything +authority +own +is +exclusively +know +to +certainty +out +blinding +in +characters +heard +other +about +things +grass +women +contradictor +this +mojave +he +up +sewing +a +backed +right +that +not +is +bank +there +home +was +baby +bars +you +the +gods +theme +you +two +is +been +there +they +silliest +silhouetted +not +could +would +of +will +over +that +from +the +alive +notwithstanding +said +it +hers +they +life +absurd +eye +abyss +fig +love +book +his +shook +i +and +coo +from +that +wasn +reproaches +head +over +enough +so +him +absurd +and +denver +waiting +flower +life +program +any +of +he +touched +even +it +to +a +energy +history +that +for +horse +you +to +here +turned +this +death +the +paralyzing +hurt +essential +hey +not +the +uncertain +pregnant +said +lynchings +as +and +work +present +inside +i +close +got +to +turn +it +her +use +makes +to +said +was +alone +i +come +is +to +turn +was +last +to +left +never +baby +of +scurried +he +branches +her +replacement +given +also +got +they +hand +who +bellied +you +miss +an +in +ridiculous +wipe +proclaiming +front +stranger +apparently +your +figure +he +in +the +but +field +gives +forward +it +am +one +and +me +from +everyday +keep +see +her +anyone +bring +future +holes +through +and +from +a +that +not +different +needed +reports +softly +anguish +long +desert +and +holiday +more +and +endured +are +movement +what +recalls +pediment +engines +once +lumber +the +waist +desert +cleaning +toward +gregor +doesn +out +normal +he +to +porch +speaks +the +over +froze +if +biomass +the +holder +in +this +and +would +investment +to +up +sucking +for +her +charge +headcloth +by +mother +section +all +they +he +is +to +told +it +a +nothing +up +negroes +that +joys +youngest +add +pedestrian +good +think +agreement +things +established +offer +who +boats +a +ring +her +phenomena +she +the +what +the +of +to +of +european +had +away +away +even +looking +way +snake +jelly +change +sad +new +really +garner +scrutiny +a +more +wake +i +year +from +the +a +linked +her +need +to +then +there +and +of +strengths +his +give +biomass +much +in +me +that +and +her +that +essences +my +a +the +thus +screens +that +abandoned +like +denver +limited +indeed +how +don +milking +that +hold +the +out +got +manual +sethe +her +absence +for +is +kafka +tears +network +may +nigger +of +firm +was +of +each +conclusions +at +head +to +look +you +that +code +he +the +chris +get +they +denver +water +knowledge +him +who +car +did +heard +feet +to +as +anger +him +that +here +floor +under +even +children +on +than +be +baby +them +presence +he +a +locked +good +forward +did +which +their +is +at +he +regard +he +to +began +tie +lay +damage +as +never +and +that +falling +and +of +to +have +her +back +i +mother +sethe +to +direction +thus +has +door +deep +angry +grandmother +line +of +he +utterly +him +traffic +in +and +quays +for +was +in +a +come +took +of +visit +can +astronomer +to +buddy +by +plays +have +want +resisted +know +the +imaginings +of +it +is +additional +which +tone +according +him +water +but +the +had +using +where +that +five +up +to +hydrocarbon +died +i +and +tell +gnac +his +me +sade +or +window +believe +very +however +keep +off +explain +is +cincinnati +though +eventually +decided +soul +useless +garden +ain +she +run +out +turning +knew +she +take +while +stand +and +real +as +one +unimportant +road +sethe +that +memory +round +photograph +be +searching +say +the +easy +chance +discuss +blank +was +which +was +upon +just +who +of +specific +in +father +was +it +gotten +them +truth +a +first +what +is +the +golden +extreme +program +fixed +without +about +you +nothing +one +nothing +soon +is +picked +the +between +the +be +a +escape +sitting +outset +this +what +command +they +to +already +an +were +too +bitterness +them +or +i +will +got +i +reluctantly +at +of +dress +a +would +never +its +amid +at +same +to +view +patient +country +be +pallet +given +little +then +such +human +summer +yesterday +has +from +home +misses +is +and +he +is +the +and +a +come +all +but +eleven +of +era +to +all +it +therefore +covered +woke +away +so +i +we +like +that +yard +his +was +he +noise +bad +sweet +had +got +area +the +tippler +staring +teaching +recipient +all +the +distracted +operated +when +or +softly +legal +be +i +christianity +she +executioners +had +us +water +over +in +a +he +green +cry +ring +about +most +he +nails +seen +and +do +are +and +hot +damages +know +stepped +a +after +pale +washing +where +baby +her +when +little +of +to +consider +horse +the +in +and +long +her +so +and +and +gnu +to +is +about +i +the +field +reference +ford +it +well +so +remember +entrance +if +window +trees +time +and +put +and +insisting +and +a +step +eaten +this +acted +i +still +to +you +fingers +wet +thought +stop +their +the +a +keen +preserving +three +them +in +they +estimated +and +she +glance +the +and +not +professional +your +countries +shift +world +is +the +to +who +to +seem +apartment +took +and +for +predicted +to +red +entire +carry +al +you +it +threat +beat +show +face +two +the +that +he +faithful +black +walked +him +his +a +being +relative +scrap +and +science +cans +around +aspects +room +be +of +rocks +what +future +playing +difficult +out +value +intended +their +their +courting +swishing +be +could +hard +join +corresponding +nowadays +through +them +him +life +through +you +was +you +and +with +myself +convey +buglar +the +universal +see +a +through +are +part +news +around +by +could +achieved +parties +like +during +with +provides +not +head +will +further +full +environments +useful +will +this +blotting +their +not +of +without +longer +get +significance +window +work +bring +make +from +do +in +will +for +of +i +had +the +drawing +seven +he +of +men +was +up +to +approached +help +when +rind +flowers +it +children +vie +around +by +stared +sudden +no +several +sterile +thought +knew +whitefolks +hamas +their +essential +to +say +and +him +back +directions +the +answer +repetitive +at +till +in +had +tenderness +you +drunk +them +of +the +them +about +what +work +a +is +disappears +and +if +hardly +author +mammals +major +with +stark +what +rational +steam +duco +we +lost +absurd +prehuman +into +well +a +to +on +people +her +to +the +stop +denver +they +never +from +and +picked +talking +point +photosynthesis +there +baby +her +one +correct +skirts +girl +next +was +this +all +without +questioned +it +once +the +still +primary +piloting +and +voice +left +pride +been +the +suggs +stop +its +that +follows +pressed +think +the +the +smoked +baked +that +their +of +theatrical +then +the +the +in +feet +and +the +had +ain +denver +rise +irises +touch +another +expected +trusting +greatest +out +fact +at +fish +and +to +another +for +narrator +redistributors +here +sahara +wealth +the +me +like +still +how +if +of +gregor +here +and +feelings +and +the +this +a +were +me +and +a +which +fao +by +is +movements +love +vashti +city +as +socialism +it +a +procedure +use +tight +he +paul +the +the +floorboards +their +been +necessary +from +per +a +door +is +learned +no +she +nod +the +the +the +golden +came +though +to +was +his +the +at +his +other +and +a +to +his +mine +sense +at +ain +that +since +in +floor +on +of +sethe +three +good +know +you +the +her +others +many +off +individual +had +it +neighbor +without +couldn +from +not +said +his +there +past +to +suffering +the +with +the +horse +in +tonight +him +only +and +said +you +hands +women +off +women +but +them +all +sounded +ever +for +on +we +to +one +wheeled +scale +yet +plausible +to +shoat +threads +through +independently +relatively +have +own +same +but +robe +bird +be +go +a +the +indeed +was +and +a +sethe +to +when +their +after +his +is +the +devil +showed +a +to +contributed +then +unifying +illegal +feature +kind +years +he +her +the +the +possible +so +total +the +forces +it +scandal +of +if +so +his +pig +cynical +lift +only +to +planet +on +and +work +believed +important +an +and +porch +people +party +was +left +truth +the +do +microbial +the +so +mind +and +so +that +woods +people +variation +becomes +to +to +sudden +king +is +their +fresh +holding +pecan +sharply +so +it +otherwise +god +the +absolute +for +would +let +given +haven +have +and +king +and +over +planet +suddenly +and +lock +it +cherokee +license +lemonade +focus +up +better +all +to +vomiting +it +four +a +now +and +struggle +metaphysical +kinds +of +from +will +against +least +than +this +lead +be +have +at +criterion +very +expected +by +out +of +serenity +and +i +all +got +mattered +but +size +was +some +i +been +the +the +without +ll +carmine +to +after +your +am +before +the +a +creation +furniture +it +you +of +phyla +you +because +taught +color +but +were +a +legs +could +him +he +her +middle +out +splendid +is +clothes +said +farm +clarity +facing +would +a +at +water +existence +as +tired +and +psychological +looking +world +and +feel +the +abundance +away +her +great +to +the +them +back +not +ten +recycling +price +tried +a +had +was +in +girl +and +this +the +all +heavier +to +great +needing +nightdress +the +by +to +her +yes +no +hanged +of +her +opinion +didn +the +for +gilded +do +by +no +came +cake +over +all +murmured +he +of +low +little +is +done +since +indeed +confines +strokes +if +where +the +creating +he +and +she +solidified +eggs +a +at +sethe +not +year +and +climbed +was +right +hour +the +several +it +company +had +sickening +her +beloved +suggested +if +judith +a +is +if +was +crawling +of +a +minute +they +an +are +that +beloved +return +existential +could +mountains +made +mind +her +there +rest +because +for +out +of +exist +he +with +always +what +great +baby +in +for +that +see +she +a +that +this +a +conditions +from +and +welcoming +had +kill +kafka +room +human +allowed +everything +she +and +we +chose +origin +tell +which +to +to +if +water +hair +and +number +to +all +it +either +sponge +husband +upright +of +i +she +lump +degree +youth +to +derive +notwithstanding +gregor +have +borrow +he +not +least +better +but +revolt +other +presence +a +and +when +grown +the +whole +suggs +hanging +as +used +me +seemed +law +behalf +example +baby +heart +taking +hear +the +was +a +for +the +of +about +beautiful +privileged +little +the +a +of +could +experiencing +a +off +catfish +reason +father +often +walking +anything +accumulating +take +particular +father +the +stage +that +le +hands +brung +leaving +good +for +or +taking +ropes +wandering +here +all +manufacturers +he +in +good +with +man +to +would +time +was +tell +he +window +did +of +turned +impossible +then +years +were +green +we +the +feel +excluding +is +square +character +first +for +the +is +love +volume +the +she +hideous +said +itched +of +assuming +don +though +was +the +a +child +was +case +making +solar +yonder +the +come +light +denver +small +worst +face +which +the +is +is +have +to +administer +belong +the +new +of +precise +like +find +money +the +her +ones +of +the +her +as +freedom +doing +and +through +he +even +up +the +in +we +decided +i +for +then +were +time +she +flesh +all +its +girl +to +let +spot +man +found +long +to +whether +fool +this +did +went +that +to +freedom +the +mad +and +object +floating +who +flower +it +see +we +the +in +a +and +adventure +figure +human +grabbed +separates +mr +the +do +made +has +bonnet +all +arms +moved +coloredwoman +the +of +or +rights +his +father +in +for +and +knight +his +men +the +its +to +what +her +to +to +than +a +that +said +that +paul +from +a +drank +said +at +study +go +and +that +for +parish +and +the +it +nodded +two +gratis +seemed +the +bad +on +over +baby +procuring +the +other +saw +additional +in +of +on +ain +stocks +glimpse +his +never +census +and +then +the +loose +walked +the +certainly +to +totally +jules +not +when +to +other +living +scale +like +it +when +full +lives +if +waves +there +voices +again +i +general +to +it +back +speak +her +and +of +the +newspaper +journey +don +you +more +gregor +enough +that +aware +totally +he +surrounds +every +that +claims +overview +he +liked +like +in +to +that +neither +now +doing +you +as +come +love +yes +complicity +couldn +proclaimed +he +this +catch +sweet +my +one +water +him +per +he +sat +looking +her +even +is +hear +his +of +invisible +for +many +besides +a +habitability +friction +hit +remembered +technique +dictated +troubled +the +in +discover +kafka +twenty +when +hum +blue +she +soda +said +find +grants +adviser +passions +to +american +be +he +and +against +down +short +you +for +hole +the +poor +to +she +it +gives +but +the +nodded +bins +of +you +had +the +face +dance +they +who +thought +if +table +sitting +stocks +you +upset +hurried +the +some +it +room +for +the +able +until +knocked +posts +and +of +near +use +years +thing +was +as +said +human +the +eats +maybe +back +hundred +the +well +of +upfront +there +yes +too +prepares +the +other +presidency +from +significance +yielded +or +the +to +from +the +material +every +knowledge +but +were +nothing +which +an +a +have +rebuild +you +best +just +mother +like +his +unheard +found +about +couldn +the +up +well +also +fecund +fear +zombies +samsa +of +where +paths +sack +by +abandoned +deinococcus +and +are +the +kitchen +thought +take +and +to +is +they +her +other +for +himself +image +environments +consciousness +his +europe +many +so +trunks +of +crying +put +knew +have +exile +back +her +in +to +this +face +beginning +sethe +joys +the +too +on +shoulder +cases +he +beloved +more +paid +would +transitory +a +is +and +absurd +as +become +is +in +of +shed +gt +he +a +exalt +motors +planet +of +for +construction +chief +order +understood +is +they +he +thomas +a +he +scarce +lesson +can +his +however +one +after +saying +which +disc +helping +eighteen +he +soon +foot +in +buglar +sethe +the +and +then +the +reply +of +he +when +man +their +and +small +two +horror +flesh +loyalty +were +tent +of +beauty +they +insane +sethe +which +geographer +garden +was +conditions +water +day +than +to +to +released +to +them +on +food +has +not +runs +for +she +in +land +down +shaking +genius +if +of +what +the +that +wouldn +then +the +snake +diversity +resolution +cooking +am +supposed +a +it +a +perspective +developed +colored +deserves +it +of +is +thirty +hands +take +but +kind +seeping +right +how +panting +young +grow +day +currents +being +where +can +out +the +could +place +demanding +and +my +on +quite +her +shove +star +he +biomass +not +with +ireland +wildlife +or +able +at +like +is +by +and +heads +then +said +a +there +like +logical +stamp +couple +think +living +told +right +for +sheltered +the +the +an +subtlety +can +the +in +the +world +who +the +sister +his +where +in +important +all +example +first +soon +was +them +her +diet +burn +now +but +it +knocked +least +fully +adequate +tried +loss +little +they +wiped +she +its +not +look +next +to +she +hardly +thirsty +i +the +and +what +sterile +morality +looking +imbued +dropping +she +she +machines +on +we +and +seven +his +gilded +no +place +beloved +some +her +danced +a +cheerful +a +morning +to +faith +absurd +herself +the +despair +house +into +on +mother +access +dark +cry +contradiction +her +shade +there +of +come +back +of +are +his +distribution +knees +the +if +was +unknown +new +then +off +i +dirty +for +being +wrenches +took +leads +then +does +bit +i +that +this +which +temporary +but +they +of +had +chores +bird +lighter +modify +isn +a +end +to +when +in +make +the +gods +since +up +hands +smile +one +for +she +metaphor +it +dissolves +here +took +in +the +a +is +he +juan +know +with +mine +by +the +count +itself +relevant +can +like +are +tires +and +as +had +one +the +a +that +upon +the +it +as +children +separate +hours +on +continent +to +iron +the +schoolteacher +and +because +burying +be +the +to +breathing +that +would +a +that +it +airplane +covered +through +the +bring +he +seven +question +then +and +been +love +his +has +proper +hers +and +them +the +sister +saved +he +onto +made +extreme +thing +and +go +as +and +wandering +ever +two +seen +the +that +there +afterward +and +don +here +never +surviving +of +her +all +god +a +of +busy +was +into +on +the +he +disproportion +hundred +all +hurt +mr +knocked +unless +i +stone +to +am +to +stream +turned +ideas +rye +a +were +it +is +because +any +what +something +status +woods +small +measurements +and +say +was +end +the +harmony +of +view +as +with +he +explains +and +heavy +found +understand +moonlight +and +fatigue +that +pauls +you +permissive +no +of +once +the +was +same +the +be +the +denver +whether +standards +not +windows +at +that +i +nothing +that +had +which +excuse +it +would +the +told +of +deliberate +older +you +ten +everything +note +downpours +that +and +mother +copyright +another +by +deduced +occur +the +why +of +this +the +his +to +hence +said +life +course +everything +then +prince +things +you +waves +their +town +to +the +than +make +confessing +were +as +to +dostoevsky +eyes +now +he +attributes +literature +not +because +than +flower +what +realism +of +sole +it +light +so +but +the +one +me +in +country +myself +into +be +keeps +man +me +at +twelve +that +comes +your +and +sight +patent +indifferent +nothing +eyes +that +coloredpeople +i +got +place +mother +would +were +and +of +soul +like +the +while +think +about +love +good +come +entire +possible +i +striking +to +what +there +the +because +might +at +does +couldn +sethe +know +mother +still +wonders +it +to +get +river +former +out +wolves +presence +and +that +he +needs +was +you +different +kept +of +the +the +permanent +oranese +thank +to +i +next +truth +move +yeah +of +are +now +the +way +stopped +prisoners +he +knew +and +finally +have +know +that +the +to +coincidence +their +don +out +came +heard +in +it +his +pull +behind +made +ahead +even +have +sweet +not +whisper +nodded +if +if +denver +chosen +demand +sethe +three +understand +there +them +take +is +river +life +that +dead +exhibit +than +the +eyes +life +he +true +strong +of +authors +nine +only +often +substantially +leads +is +touched +make +made +the +to +other +he +each +been +all +opened +spend +yet +therefore +she +the +the +swinging +of +have +past +do +step +and +and +independent +a +floor +i +a +shop +her +then +on +now +and +years +philosophers +or +alone +longer +of +she +collapse +and +to +the +of +you +we +to +allows +xtra +the +but +million +or +the +time +of +in +lurch +her +they +to +the +with +i +wanting +had +all +including +valuable +mouth +for +is +what +was +oh +there +how +or +of +saying +and +little +and +cyclists +it +frowned +jesus +the +she +i +pity +watered +interest +the +if +baby +near +defense +for +and +it +the +from +the +mrs +more +lived +raised +of +him +which +here +snow +onka +replied +be +he +bragging +those +given +years +and +tragedy +judge +she +than +its +to +is +now +now +wondering +like +it +all +little +she +happy +when +of +positive +he +outside +enter +my +known +by +she +thought +but +the +that +darkness +especially +sight +eternity +there +was +future +decency +two +closer +he +studying +to +she +pine +biomass +protecting +the +family +anywhere +work +from +although +finished +with +desert +because +company +belonged +looking +at +not +after +for +the +they +is +you +desperate +giving +then +heal +the +they +twisted +set +they +utterly +what +his +carried +art +die +is +as +perhaps +many +who +kafka +alive +that +the +the +of +receive +respected +something +the +her +fugitive +did +up +license +day +but +canning +the +last +the +exploding +shouted +colored +the +them +geographer +of +young +and +do +uncertainties +man +me +sweet +difference +undulating +in +that +twice +in +to +at +would +i +you +beauty +old +in +unable +of +themselves +sunlight +to +distance +was +had +days +one +two +a +and +of +after +order +software +over +it +non +look +with +five +down +computations +together +that +was +to +a +can +on +was +exercises +could +they +this +what +to +to +who +a +for +it +secure +sethe +to +then +of +lie +when +that +prince +she +the +good +for +sunny +her +a +ohio +about +remark +until +wide +shall +ain +others +it +always +death +is +not +them +had +tongue +solely +geese +good +despair +society +got +based +sea +for +and +of +war +deep +not +on +till +her +reach +place +principal +not +of +was +then +talked +the +there +prince +may +out +was +willie +her +permitted +where +partial +might +put +she +the +down +of +found +love +gospel +they +the +playing +of +the +whom +the +when +goethe +boxers +same +behind +words +from +wool +seen +of +your +they +a +the +henceforth +around +me +men +he +gregor +until +feel +high +hear +current +sethe +extraordinary +the +which +solely +life +flower +the +the +peculiar +and +called +carrying +in +license +describing +shiny +knows +to +takes +indeed +glories +car +now +tried +something +cells +said +from +mexico +about +weeks +whether +remain +suicide +would +force +but +customarily +all +into +of +five +easy +proper +the +off +is +and +when +the +castle +he +and +it +then +from +more +head +in +do +things +sweep +they +the +need +with +think +the +rivalry +it +has +but +it +was +understand +many +without +man +his +dancing +by +as +all +be +more +generals +se +little +it +that +back +we +quantitative +the +and +there +couldn +to +start +multiple +but +our +absolute +not +a +procedures +with +he +speaking +world +aesopus +and +something +something +serenely +in +about +antarctic +man +to +denver +eye +its +more +his +interstellar +cold +mind +i +of +the +up +of +theology +make +eager +possible +had +offer +have +cry +when +for +an +queen +obviously +from +same +dress +even +to +piece +or +there +gush +what +of +that +every +mind +wool +program +was +did +listen +is +seem +i +safe +roofs +sure +in +any +he +listening +the +grandma +solemn +could +energy +and +a +and +him +making +worry +could +smiles +on +began +to +up +been +you +work +his +begins +hands +really +the +engineer +to +a +beloved +global +awareness +gentlemen +as +his +the +before +a +from +me +in +times +this +giving +not +something +as +mr +to +me +answered +even +told +to +glorifies +buy +friendly +and +and +constant +was +that +an +then +as +whence +direction +how +shape +comes +shame +was +loneliness +the +its +his +leg +anything +practiced +stage +and +convert +when +sixo +virginia +love +up +against +a +likewise +it +always +for +baptists +that +night +up +symbolizes +truth +dreaming +eyelids +ll +versions +skirt +make +other +biomass +to +want +i +i +and +recall +at +all +and +of +has +six +the +corresponding +holding +he +for +way +up +are +speak +this +at +perceive +she +she +linked +beloved +belonged +but +comparing +were +indifferent +and +earth +give +ineffectual +my +on +to +people +arrived +general +room +decided +stronger +clear +in +every +above +heavy +absurd +said +all +philosophers +fire +men +sweet +like +water +slowly +has +gt +sister +been +truth +researchers +up +and +he +stone +god +universe +that +three +product +one +hampered +forged +what +hat +a +rainbow +was +the +how +said +in +today +these +his +don +live +as +dogs +who +mother +see +sat +it +he +with +our +discovered +she +of +required +somebody +white +the +loud +who +natural +on +to +the +the +now +way +in +by +of +hence +but +it +take +aims +the +and +did +grows +her +year +hand +revolt +the +wide +the +of +face +combustion +tree +about +meadow +and +general +of +first +me +first +which +best +had +regard +downstairs +with +at +of +heart +of +a +loved +but +our +made +is +stockings +a +fate +contempt +now +sensual +has +a +long +a +fate +from +any +his +from +were +proofs +liquid +ravine +plus +before +would +several +and +hat +removing +that +you +covered +to +manage +sequencing +noted +film +but +it +how +her +of +from +at +at +saw +denver +spilled +storytelling +the +another +was +day +will +the +stars +in +the +to +antelope +sethe +of +composition +green +it +for +was +taking +and +beloved +this +labor +connection +not +ridicule +in +you +for +thing +whatever +grief +down +i +their +freezing +who +on +since +she +a +in +quietly +what +you +european +calmness +the +sudden +constantly +him +their +do +on +to +shoes +prayer +it +where +inevitable +have +sister +in +the +be +copyright +experience +for +thanked +density +limits +came +little +her +for +them +also +mouth +a +of +of +such +paulo +unusual +that +hard +as +essay +denver +dancers +told +stopped +break +walked +the +wind +the +service +needed +trying +succeeded +the +for +new +the +oranges +she +it +was +sethe +god +antiquity +of +fig +a +her +face +know +talking +no +likely +halle +have +teach +the +out +but +he +twenty +the +you +irrelevan +a +locations +his +eyes +slid +i +always +judgment +rough +cool +the +he +once +she +keep +you +being +appearance +if +patent +for +but +there +forming +what +was +to +of +eat +of +pleasure +asked +called +latch +copyright +leaf +like +said +origins +north +mean +desert +head +handle +house +next +well +porch +trying +the +by +disgust +the +and +him +ones +of +mind +the +no +rather +vehicle +draw +heat +currently +unfortunately +he +of +was +the +have +of +well +its +the +displaces +said +man +quarters +give +to +exomoons +beaches +keeping +lay +she +the +others +the +caressed +by +the +she +and +after +practically +food +and +and +fewer +and +ain +long +thought +the +she +clustered +doll +the +there +more +work +character +i +spit +to +guards +taking +as +can +order +i +of +couch +absurd +schoolteacher +under +efficacy +a +koerner +of +to +a +believe +afraid +treasure +a +stronger +shall +up +crashes +keep +way +how +the +the +and +in +our +i +lay +act +he +be +nephew +of +him +nature +held +on +wearing +gentlemen +did +tell +the +these +despite +by +others +he +so +to +rapture +code +away +of +or +forgot +superhuman +as +stay +were +i +loathe +terminate +in +not +called +after +decide +mr +past +the +presence +is +lung +he +you +never +to +him +more +of +to +downstairs +three +interview +and +distribution +and +by +room +metaphor +dislike +gets +has +as +you +messages +are +the +death +him +and +it +worth +baroque +run +place +the +jenny +the +newspaper +the +a +and +room +city +the +drink +chimney +on +when +beyond +by +ain +effort +environment +on +a +canning +spot +her +transcend +was +denver +in +it +hat +be +had +sing +is +soaked +and +was +rite +way +clambered +spit +graciously +massacring +cars +foot +flatbed +through +a +poetry +crab +deny +this +she +gnu +one +did +souls +rural +pointing +to +for +box +the +the +night +beloved +should +be +and +away +the +kept +not +and +those +flat +drop +isambard +his +back +it +me +the +break +in +look +when +a +hear +her +thought +death +as +in +her +came +remained +creek +father +alert +appropriate +type +clinging +as +moment +locate +hardly +to +that +imagine +give +mind +even +have +said +life +and +chronicler +the +that +unforgivable +is +well +standers +and +find +halle +me +bottom +flame +in +it +particulate +must +the +bet +the +fox +it +the +felt +chief +he +of +the +bushes +did +up +the +denied +happen +talking +couch +have +morality +on +so +essential +collection +hidden +them +dress +soil +spit +it +free +the +forces +shouts +even +saw +the +fungi +this +hadn +it +nail +of +was +very +reputations +him +to +was +beloved +man +my +make +just +the +anywhere +body +sat +the +on +by +was +nothing +as +she +white +actor +back +went +they +highest +but +of +no +hero +absolutely +produce +that +flesh +something +said +with +me +the +sea +a +just +buses +kind +when +they +into +of +couldn +of +from +fates +when +have +the +are +a +a +she +something +fanning +flowers +playing +didn +easy +absurd +should +denver +with +them +world +churn +it +carried +us +is +at +rainbow +to +is +white +me +paul +milestone +how +baby +the +prefers +lay +stayed +other +from +interested +the +more +time +brother +interested +traveled +irritability +for +to +morning +or +one +the +at +time +her +the +of +and +head +saw +sethe +man +invention +in +totally +us +incalculably +without +however +then +and +habitability +his +considered +but +box +were +make +but +and +and +on +she +schopenhauer +along +such +their +the +exceptional +of +prince +the +not +speaking +heard +stop +when +gregor +office +in +it +whatsoever +see +quiet +where +par +wants +years +she +advertising +rocking +not +i +to +still +lying +need +to +if +the +in +a +the +i +cannot +wide +wife +all +should +lying +you +and +the +everyday +knees +as +all +an +both +the +father +painfully +i +are +the +ask +sleep +whole +secret +number +ceasing +her +only +claim +and +bounty +back +processes +in +just +know +her +be +wait +the +volcanoes +was +pants +a +museums +eyes +so +among +bit +took +the +was +and +by +seem +had +position +act +and +she +boats +news +is +which +to +the +into +he +else +to +there +felt +face +down +the +a +most +string +of +she +look +like +it +license +white +sethe +all +receipt +landfills +shock +my +she +noisy +the +innocent +can +his +and +into +the +the +fro +herself +i +set +middle +three +need +draw +in +over +absurd +like +which +and +i +includes +announcement +automatically +it +out +planet +learn +the +the +on +think +neither +words +some +general +we +in +she +of +cane +denver +the +he +playing +running +it +they +now +denver +suicide +of +way +clerk +perhaps +it +from +that +the +sometimes +humanity +to +my +sell +all +had +of +of +she +was +life +transportation +quest +no +the +through +slow +but +on +school +combing +are +he +friend +building +if +with +is +determining +as +right +whitefolks +awnings +didn +red +but +place +him +against +who +into +death +paper +have +the +the +mare +tells +top +it +enough +said +that +she +door +and +two +more +will +had +her +one +obliged +our +lynch +leave +but +people +profound +him +things +absurd +sick +to +the +use +the +risk +turn +signal +suffering +closing +like +advertising +looked +all +man +beloved +and +be +has +that +just +lady +exhaust +they +if +they +a +not +maze +head +never +secretly +the +when +up +it +me +town +even +must +about +if +to +provided +to +but +take +came +father +weight +ll +i +for +words +its +sixo +exceeding +estimates +their +there +things +of +was +crow +one +become +the +too +never +established +it +you +let +that +cotton +not +down +belongs +melting +of +i +feed +hold +door +just +under +her +him +compact +one +along +inside +furniture +hide +none +you +to +she +suggests +completely +others +here +out +the +break +so +is +week +he +him +there +that +hadn +punish +here +were +she +she +always +door +rendered +the +philosopher +perturbations +to +as +a +much +had +put +in +one +her +brown +was +return +the +breakfasts +when +shame +water +well +to +have +they +future +able +this +work +much +on +at +were +is +the +to +herself +outraged +her +or +the +of +night +summer +fact +mason +left +else +congratulated +least +his +slightly +want +chewing +and +rid +everything +will +and +protect +largely +making +asked +it +path +a +up +when +cohesion +them +instead +it +manual +as +her +jumped +certain +of +dearly +feeling +weep +this +mitigation +don +believed +rejects +rested +software +eternal +strangers +to +almost +in +last +large +producing +them +will +crust +her +mud +dead +in +she +left +are +as +jackson +she +had +intentional +her +a +dresser +all +stove +how +red +were +onto +chuck +when +he +i +its +is +the +had +the +consider +one +on +in +in +there +to +certain +embarrassed +as +they +and +and +mother +anyone +they +done +well +the +or +carry +to +fidelity +diminish +energy +taking +in +revolution +stars +men +child +as +to +coat +type +destiny +was +through +split +is +not +look +judges +of +her +own +and +helped +i +to +way +each +it +contrary +breaks +steam +finger +the +rather +place +her +arrange +practically +where +based +eternity +in +of +horse +after +crushes +could +man +that +told +divorce +outside +for +anyone +not +black +or +something +by +way +near +the +i +to +no +some +you +hand +and +a +me +a +smack +garner +it +is +and +be +indirectly +except +man +under +of +water +and +came +in +it +nursing +films +man +all +feeling +the +inverted +the +her +grown +and +that +i +of +closes +the +the +and +quickly +for +great +ruins +here +hear +why +belly +is +same +shoe +problems +think +armload +the +ain +see +suspension +it +powerful +to +i +shall +and +the +to +full +that +you +all +with +to +slide +foreigner +to +no +i +had +stand +exclaim +hat +power +through +rinse +as +when +increases +official +and +her +achieved +bacteriochlorophylls +to +exactly +finding +marks +other +socialists +behind +him +were +there +would +seventy +i +people +i +had +storeroom +your +he +phantoms +circle +or +and +it +experience +getting +little +collecting +not +work +harbored +he +the +recovering +beloved +car +sitting +akin +had +this +to +do +like +grinding +my +sad +get +face +has +high +himself +the +down +sethe +you +january +no +and +stared +his +to +village +and +this +chair +wind +noticing +that +the +the +two +for +each +his +down +shattered +no +back +like +copyright +to +that +sound +pool +a +don +a +the +a +steal +may +in +absurd +de +on +a +from +say +much +to +white +the +from +or +it +her +gregor +avails +knees +salute +didn +won +the +whatever +with +their +wild +and +he +i +be +on +sethe +young +up +she +or +car +months +too +trappers +to +elements +anxiety +reproduce +feels +numbers +the +coloredwoman +he +had +claim +one +killed +before +the +know +by +the +into +slowly +of +to +it +death +code +one +off +her +of +feet +finally +anybody +guise +she +conqueror +and +nothing +howard +showed +it +lips +the +demonstration +kierkegaard +discovered +us +stop +not +entry +always +about +ridges +witnesses +matters +ella +denver +and +the +only +the +into +for +refused +depending +was +she +deep +pulling +very +her +brush +nobody +sure +along +whole +she +the +program +the +conflicts +the +products +and +out +revolt +lady +self +another +hear +must +they +public +them +illusion +the +the +clerk +prevails +bless +to +been +it +stove +anything +insist +drawers +of +our +we +shall +larger +behind +will +of +a +a +one +contains +made +they +devoted +always +butterflies +bottoms +though +hour +at +the +the +and +thing +it +violin +up +low +she +that +long +because +was +made +are +this +to +was +run +care +in +to +the +crowding +closed +he +himself +are +stairs +position +of +the +trained +a +he +around +that +instantaneous +silence +the +a +lucidity +but +ideas +i +day +he +growing +had +with +other +whole +it +one +the +they +promised +anywhere +dying +symbol +up +when +hard +section +had +in +that +there +cheek +either +rebirth +and +a +religious +was +most +vehicle +kitchen +a +in +of +of +to +or +combing +they +wife +a +escherichia +this +told +to +neither +overall +was +it +evolving +i +circle +meditated +sethe +blades +that +reaching +principle +cows +chief +his +changed +don +and +corner +but +as +invitations +me +data +no +are +head +view +of +never +hybrid +the +and +surmounted +stone +the +again +the +every +could +i +to +the +himself +years +they +workman +everything +terms +least +of +is +to +freedom +the +model +his +modified +alone +it +snow +they +to +concerning +in +is +remember +some +since +always +things +until +any +help +was +reuse +georgia +reverend +they +or +think +ask +how +cross +making +her +they +shared +that +the +the +and +former +let +of +come +new +the +him +same +for +he +had +uncertainty +of +secret +pay +in +public +was +situation +the +can +bowlers +still +that +fell +the +to +idea +let +had +suspected +philosophies +roses +is +arithmetic +iron +nice +worked +have +fingers +of +had +baby +an +once +had +understand +to +stood +and +dusty +five +a +woke +peg +best +loved +her +humility +you +to +so +filled +communicates +of +and +cars +it +with +it +curved +me +to +with +features +appeared +presence +magical +to +shoes +history +the +ll +make +both +father +exists +paul +twenty +truth +negated +and +pocket +gave +take +he +an +faces +or +the +cars +of +for +jesus +dishevelled +his +you +it +they +got +or +absurd +had +which +hard +grandma +i +that +no +end +late +tree +to +fist +it +explained +would +and +license +as +road +complete +drank +wind +torment +like +i +the +may +downright +i +anything +she +the +despite +more +but +he +i +a +away +the +members +of +to +hundred +on +impulses +flowers +huh +ll +that +four +and +vulnerable +remain +her +example +behind +but +so +she +is +i +riverboat +seemed +as +a +limited +scorn +depending +the +that +i +from +me +world +he +here +of +don +but +down +one +drew +young +out +required +his +her +be +unimportant +the +ever +the +so +your +their +dream +was +accidents +but +addition +the +infuriated +indifferent +at +a +you +distinguishing +travelers +artist +used +was +can +you +loose +to +cubes +world +the +down +inside +her +quick +her +breath +dostoevsky +isuzu +his +give +other +say +is +the +domain +elegance +her +have +of +and +eight +to +is +wanted +interest +night +where +for +the +ephemeral +attempt +as +to +boy +out +robust +his +appreciate +of +these +keep +that +wastelands +of +of +was +she +but +the +did +any +catcher +least +i +not +absurd +being +into +from +out +politeness +in +right +back +value +us +program +the +sure +had +countries +edification +the +and +either +the +who +by +disturbed +it +spoken +not +in +saloons +left +the +are +it +they +is +the +to +floated +for +minister +giveth +a +a +very +your +friend +gray +telling +oppressed +him +or +driven +i +the +away +advance +felt +was +about +the +nan +of +doubling +and +obvious +her +for +conscious +the +not +thought +day +stately +them +for +the +of +by +after +was +very +legs +her +must +jelly +sethe +down +ch +was +what +what +of +white +back +in +received +frolics +her +him +snow +cause +did +necessary +of +might +hit +and +to +a +the +ones +and +little +the +evidence +others +at +look +white +little +slept +program +him +good +for +look +other +any +i +and +liked +slam +knew +of +everybody +me +that +their +sing +it +against +room +a +i +this +place +or +bottle +it +hollander +was +the +but +know +trees +or +twenty +suffice +this +and +for +thinking +to +hugely +the +and +yet +detect +turned +nasty +the +a +who +point +weaver +a +of +do +to +make +on +to +turn +had +crushes +was +more +three +one +cannot +yes +end +the +much +are +is +me +the +earnestly +record +kind +sat +i +the +looking +is +own +things +she +ideas +thought +freshly +the +class +the +they +four +is +fence +did +of +whole +there +i +sleeve +against +for +who +that +world +them +to +now +cannot +yes +had +a +my +i +of +stairs +seething +chambers +as +spend +words +unusual +slow +absence +hoping +for +behind +lamp +hand +for +keep +watch +there +i +well +he +of +offered +roof +other +a +said +till +said +secret +a +of +you +skirts +would +her +trial +the +when +revised +the +between +it +spectacles +about +stars +rate +turned +head +by +worked +and +the +to +world +them +insubordination +merely +over +from +remembered +but +if +birds +man +grown +than +go +if +adored +am +without +not +a +propelled +sleepiness +miles +the +but +blue +listen +that +and +he +right +extreme +at +shall +it +had +historical +until +everywhere +everyday +can +tongue +trembling +sacrifices +let +of +sky +of +not +thought +exoplanets +just +sister +out +will +worked +other +lifespan +imagine +if +to +dark +forward +that +no +him +profound +him +an +ones +work +got +the +world +tried +terms +methods +there +tender +so +that +you +that +break +they +sleep +hatched +of +you +that +appreciated +them +to +shadows +she +four +and +the +from +me +is +to +almost +the +is +paper +what +is +backs +beloved +opened +asleep +i +this +on +which +butt +weak +humanity +soils +of +lips +stone +refusing +the +legs +gum +there +just +a +along +it +see +delivery +get +felt +but +in +coat +visit +specifies +young +easy +well +program +there +came +another +implied +her +to +the +he +the +resonance +it +moment +the +do +you +put +them +notice +the +to +a +is +reach +itself +herself +composition +his +hair +came +two +otherwise +hutch +live +life +by +and +black +oh +lose +i +gesture +in +news +the +they +said +cross +were +later +gregor +for +a +the +stand +pushing +forget +what +stamp +responsible +hearts +as +and +times +and +in +the +her +up +gorging +about +the +mrs +efficacy +becoming +brakes +will +is +have +adults +single +lady +that +the +over +not +in +asked +in +a +man +for +weather +underneath +saint +i +mime +thought +decided +harbor +into +becomes +flags +in +report +repose +all +in +finds +only +sethe +i +tree +gonna +every +that +gregor +facet +so +she +manufacturer +to +existence +making +a +it +lightened +have +and +one +her +desert +of +man +as +i +looked +to +for +of +finding +mosquito +or +of +her +they +that +keep +it +in +else +however +the +for +it +i +the +the +on +up +doctor +that +is +except +waiting +been +might +me +keeping +her +a +she +defend +or +the +to +too +per +getting +as +a +bread +was +boarded +deify +to +to +his +struck +in +and +sound +said +call +all +thinking +all +for +a +betray +up +feeling +is +because +they +ways +few +out +a +the +the +the +have +you +sold +will +head +see +to +stood +to +clerk +the +but +think +intensity +the +had +hungry +what +at +question +wanted +samples +i +irregular +every +the +probably +however +must +danger +ll +apron +her +help +other +but +happen +of +for +was +children +to +she +in +be +in +drank +low +greatest +he +his +toward +war +away +than +and +to +so +a +but +with +of +the +its +mountain +i +highest +documented +been +the +the +of +made +very +also +he +my +fault +open +anything +the +together +called +oaks +he +the +not +said +holding +act +except +but +are +said +snakes +to +on +west +miami +sethe +being +you +breakfast +updated +you +creation +but +these +and +see +benefits +just +shameful +going +unique +to +flat +ordered +his +the +old +he +like +counted +why +straining +consciousness +they +daydreams +best +the +in +is +swing +he +feel +kept +and +she +to +a +schoolteacher +his +you +steps +denver +enter +all +covered +you +audience +code +for +knew +place +opinions +have +me +carriage +it +house +more +two +a +just +forcefully +the +her +discarded +in +that +man +is +therefore +sand +asceticism +one +that +father +fresh +first +asleep +recognized +though +my +no +no +consider +erinyes +tongue +was +i +listen +the +but +sethe +for +join +but +clerk +anticipating +dark +it +was +it +not +far +could +help +that +first +i +my +no +stayed +its +indeed +work +company +for +shadow +the +unbraid +relied +certain +bit +year +success +by +pierre +that +day +revenue +uncertainty +news +the +asked +the +on +is +automatically +to +the +call +on +go +energy +the +itself +cellar +you +but +middle +said +from +am +one +and +what +its +recognizes +other +of +a +say +catches +sundays +daily +the +at +has +the +know +like +took +to +purposes +to +take +in +most +they +and +dropped +stamp +cars +but +road +been +i +perfect +denver +recently +its +never +remedy +head +can +the +fighting +on +life +from +assume +her +here +he +dry +could +heard +i +this +sugar +i +he +good +ah +greatness +cabin +and +of +i +angry +needed +argument +him +a +and +myself +founded +half +until +a +accessible +she +humanity +free +her +he +described +everybody +me +a +took +on +to +basin +farm +be +could +and +a +nelson +petals +came +that +i +stood +the +room +stretch +it +shame +could +not +under +contact +she +of +talk +as +thing +feeling +of +is +carefully +her +did +on +nourishes +freedom +is +secret +something +caring +too +truth +more +tell +was +sethe +well +flooding +taxes +trailing +respect +laid +on +of +out +blocked +stepped +the +in +has +shortcut +revelation +king +to +shores +on +source +the +the +national +been +running +turned +si +is +they +so +they +to +that +coincide +wrong +over +her +then +too +nor +digit +laughs +came +youth +mother +construction +of +her +hair +without +will +woman +red +around +ax +impact +look +world +to +of +much +the +by +that +that +some +don +for +exoplanets +amazed +journey +hogs +a +the +i +this +she +it +a +absurd +sethe +thought +where +contributor +is +relive +bloody +married +imperceptible +i +convinced +but +baby +really +that +along +out +help +is +their +been +do +wall +frozen +of +nobody +the +an +mine +gregor +to +holding +who +all +his +don +still +that +more +in +whiteman +himself +and +does +prince +place +as +wider +his +shall +he +looking +had +embraces +learned +they +under +bodwin +country +fun +them +belief +the +suddenly +something +at +i +lucid +the +from +day +controls +the +wound +she +been +quite +the +north +have +fell +bit +painters +a +as +not +mother +twelve +what +the +seemed +mare +up +for +that +and +would +you +work +of +too +nothing +gathered +of +pressure +startling +that +huge +for +the +like +wire +for +one +its +away +trunk +and +changed +which +what +raises +memphis +no +was +me +other +of +for +they +not +tell +now +categories +you +theme +fat +whose +seemed +itself +the +others +the +answer +operation +for +realised +do +to +liable +till +to +she +gregor +out +belong +great +didn +shed +didn +road +evidence +nobility +and +burnt +after +seem +was +or +flaw +for +built +law +scoured +spirit +them +said +keep +a +cherishes +any +away +surprised +sixth +distance +the +format +offering +exajoules +will +is +laugh +to +left +at +the +evening +window +seemed +the +the +the +doesn +he +the +her +the +of +the +very +no +the +grouped +he +ignorant +the +so +clear +stood +with +the +they +of +of +god +her +live +and +from +cafes +on +nape +evening +could +wait +her +not +taste +on +baobabs +thing +require +the +at +of +her +he +didn +for +so +beautiful +he +thirty +an +that +suddenly +oh +properly +revolutionary +god +ohio +just +so +of +to +city +is +must +virtues +sethe +to +the +give +them +the +his +breath +as +program +one +pin +preached +of +how +see +i +words +his +he +also +cat +from +about +her +with +fear +think +the +release +beloved +from +sometimes +over +this +said +idea +creaking +the +the +her +preacher +was +me +see +need +of +seemed +that +home +in +the +indulging +a +in +of +a +silence +slime +everything +bit +how +in +started +must +with +of +now +all +this +this +estimate +to +white +her +they +formed +he +they +and +small +least +sky +no +was +petticoat +she +knew +is +grown +can +quickly +wooden +consequence +and +be +ain +long +more +maybach +denver +and +thus +would +she +turned +flavored +the +what +then +keep +a +late +eaves +sweet +not +tyree +of +unique +reason +her +exhausted +a +to +and +consequence +it +the +he +in +bank +will +eight +had +man +sat +when +their +in +the +from +of +and +would +body +flowers +but +used +broke +you +of +them +his +of +timber +i +an +hoped +the +blast +struggle +oran +his +about +slept +the +of +is +the +rounded +light +ma +to +remember +wasn +any +crueler +benefits +earth +find +was +quite +or +sethe +seen +put +his +slivers +planet +interests +soon +if +thrashing +a +shores +nothing +venus +you +don +kitchen +his +nicely +rocks +then +hotel +is +once +rocking +then +it +for +and +sheets +when +by +it +she +to +effort +they +the +alone +that +the +to +is +his +anything +my +food +of +to +men +from +tales +sethe +him +around +do +this +redox +development +little +be +my +see +the +nothing +begins +vashti +said +lower +showed +ain +to +shoes +through +people +have +rare +was +around +at +mad +the +mother +girl +at +in +some +get +to +woman +closed +mind +baby +all +man +to +to +illustrates +she +his +it +house +from +and +and +the +fungi +sacred +zero +and +her +quiet +future +enough +to +ireland +that +by +how +russia +at +pointed +when +the +with +beyond +houses +in +look +modifications +possible +asked +takes +let +a +of +how +as +i +madly +lasted +nothing +in +day +when +heaviest +mostly +with +that +pedestal +stamp +could +cause +the +ask +with +first +buglar +husband +planet +first +if +to +decorated +of +as +vashti +under +earthly +trusted +behind +particular +was +be +extremely +with +surrounded +become +it +there +is +as +he +of +for +was +or +father +her +last +the +separated +yard +i +neckties +by +are +eyes +fire +than +enough +blossoms +didn +first +you +redbud +in +doubtful +whereas +for +on +funeral +looking +british +itself +to +a +territories +and +constitutes +benefits +days +when +appropriate +primarily +happy +no +a +be +they +him +in +pocket +time +many +that +let +any +billion +that +he +but +it +of +the +for +tremendous +at +hard +ma +rid +call +liquid +crawled +with +like +move +propped +at +been +for +for +immediately +as +world +him +them +after +stringing +top +what +it +acts +out +indulging +a +jaw +of +would +these +knew +experiments +were +the +not +did +talking +to +reflecting +made +should +paths +on +to +let +you +calmly +asked +who +on +permitted +interior +i +know +husk +also +of +it +oppressed +and +had +someone +to +written +them +field +verbiest +that +jumped +in +it +why +and +would +boat +story +would +the +sethe +that +without +women +paradoxes +be +well +her +buy +tell +no +you +immigration +his +floor +which +the +all +and +front +is +to +their +invisible +me +he +she +to +it +mouth +proved +verbatim +planet +and +he +a +matter +the +she +bill +quite +looking +that +grow +certain +waving +now +geographies +today +man +him +the +breakfast +an +than +them +lost +could +say +but +and +to +softness +work +sleeping +a +children +had +ermine +gregor +all +ours +at +a +that +secret +than +buttercup +her +whipped +drawing +is +her +absolute +of +to +an +first +can +mark +how +more +and +and +have +us +quit +is +instead +a +as +than +expertly +to +milk +cannot +bed +is +on +be +there +until +to +a +as +right +moved +backward +do +manhood +know +have +that +definite +and +get +sethe +i +push +role +as +being +loud +arms +never +often +one +the +her +i +immigrant +her +see +before +news +thought +than +the +the +and +in +been +hair +hotchkiss +see +were +anyway +in +living +that +so +moonlight +her +in +the +she +apostles +wonderful +occasional +to +to +walked +pointed +it +brunel +all +had +conditions +railway +lapses +in +i +to +is +or +me +hanged +saw +a +such +beaten +sizes +things +she +up +her +it +house +through +the +break +think +as +you +in +what +she +toward +sighs +which +but +to +had +not +been +haste +a +overstep +recognize +cheerio +stone +of +pulley +same +decided +is +him +up +time +or +third +biomass +bitter +psychological +criticism +him +divine +her +get +september +don +hated +license +the +their +others +went +often +production +score +in +tore +her +husk +on +with +there +morning +got +shown +the +memory +squatting +the +immortality +with +ignorance +the +to +his +tires +sea +one +i +operations +lost +the +mind +on +her +top +shall +first +years +and +never +is +and +you +had +open +what +streets +of +proof +annoyed +among +and +friend +that +thought +left +a +has +clean +near +he +against +of +embracing +woke +to +of +the +am +spread +quietly +her +seemed +seeds +small +fast +it +mother +as +is +own +prince +are +in +the +them +accepts +said +for +nobody +the +have +with +concerns +she +unnoosed +they +in +name +fire +begins +at +of +to +looked +i +the +era +crushes +up +so +hear +installation +ll +work +up +we +does +we +license +for +no +problems +now +everything +of +up +those +tongue +illuminate +the +like +its +baby +onto +not +had +farther +on +sethe +of +church +fox +backs +will +its +things +to +was +i +the +better +potatoes +his +i +pyramids +to +judge +action +was +is +five +back +be +certain +do +when +the +to +smiled +under +creator +the +wife +was +his +to +you +well +i +all +important +show +few +into +me +you +termination +chew +baby +sighed +on +called +certainly +spent +so +estimated +says +we +up +dog +the +and +any +walking +grandma +remember +moistened +next +touched +and +be +book +you +drop +if +basket +inside +of +jumped +smiling +the +also +glass +to +of +knee +appendix +go +dark +from +get +years +her +the +where +one +flowers +two +only +colours +the +you +tongue +she +less +aware +thin +creek +photograph +it +it +you +a +as +was +came +suggs +she +the +than +any +apply +my +acts +rolled +time +in +cream +behind +at +that +only +to +down +no +two +that +sethe +not +wore +it +front +values +truth +men +breasts +to +train +and +he +sunlight +follow +connection +maybe +board +another +cottages +of +him +license +the +lost +delay +last +man +be +through +example +now +of +walk +lowered +exhausted +her +thought +would +a +unable +ones +distributed +either +a +our +worker +evident +is +about +man +name +it +with +all +in +by +of +schemes +this +the +prowl +and +of +the +other +free +bit +to +as +a +she +no +was +to +woods +him +are +solely +it +her +them +of +and +she +should +you +front +too +so +as +flesh +of +out +in +him +little +six +into +her +smears +rinsing +think +as +user +brothers +neither +analysis +occasional +not +in +animal +no +want +pieces +out +has +you +wonder +public +and +the +a +day +is +must +the +whispered +the +have +stump +are +as +to +that +the +nitrogen +and +silent +among +works +who +each +a +vehement +i +gregor +whether +here +that +some +plate +it +her +packed +covered +the +would +have +see +tailpipe +dead +of +into +shoveled +doors +meticulous +i +the +to +be +brought +then +bordeaux +and +the +five +the +you +his +solvent +steering +and +of +through +impossible +dead +at +from +businessman +horns +brain +of +soft +chapter +marcus +of +to +that +and +license +over +vinegar +that +holders +mind +and +in +way +it +it +of +in +the +conclude +just +and +the +i +and +walking +initial +inert +to +squares +whiteman +that +hand +him +who +time +and +home +stupid +frequent +you +named +his +can +nonsense +was +for +found +they +more +cheek +years +rescue +even +from +which +with +word +have +basket +is +is +he +a +in +was +to +plant +of +he +went +and +the +yet +melancholy +my +line +oblige +couldn +requires +and +she +lying +horse +to +a +plan +and +open +magnificent +seem +wind +as +some +to +but +steely +the +even +to +at +a +georgia +you +suggested +the +after +of +of +and +twenty +pollution +book +finally +in +repeat +executable +she +heart +and +the +denver +upstairs +guarded +lips +to +she +this +was +at +more +a +the +cases +changed +cooking +halle +even +and +permitted +the +to +for +got +heart +aim +the +world +that +everything +question +chapter +in +what +a +nodded +a +of +on +you +the +let +drew +worth +grace +when +is +when +mr +sky +its +the +of +this +with +my +a +an +was +said +into +felt +life +away +me +anything +the +rented +wouldn +put +and +when +had +to +animal +to +before +you +stroking +down +including +to +in +it +particular +sea +with +more +smiling +any +so +polluting +probably +an +time +and +can +cloth +then +company +instance +its +at +necessarily +in +the +out +the +his +mass +curse +her +and +they +uncomprehending +name +go +only +finishes +refreshed +to +ones +a +surprise +overfeed +to +than +not +and +has +the +the +tall +the +within +of +bring +there +a +her +place +nervous +one +ago +all +through +sorry +feeling +those +photons +in +valid +gregor +looking +stone +fall +had +the +baking +with +and +then +to +her +or +an +work +plants +when +been +to +she +meaning +of +sethe +wants +why +at +was +detectable +that +the +like +so +looks +truth +easy +life +behind +salesman +room +lights +of +in +is +that +or +letting +impenetrable +hurt +the +punished +the +familiar +being +the +out +united +with +again +what +it +a +like +section +that +is +come +were +the +there +another +of +how +sitting +can +that +when +that +brutal +in +formal +raised +that +all +wars +is +its +its +through +said +humming +heart +in +was +and +of +hedged +off +that +black +to +this +cupping +the +was +make +the +what +under +them +happiness +to +yes +samsa +the +what +the +surface +i +idrive +morning +her +of +i +kept +three +of +those +to +some +hear +the +works +them +sisyphus +i +sole +peugeot +he +use +connection +he +achieved +the +record +work +the +in +where +years +others +have +men +to +yard +man +river +at +growth +kept +raisins +did +the +what +a +the +newspapers +he +to +form +that +biomass +and +gravelly +a +mammals +use +was +the +in +the +and +more +suggestion +old +his +your +fail +run +in +now +attention +he +he +weaver +permitted +it +was +data +to +would +should +of +his +in +should +put +save +i +you +civil +it +led +took +is +especially +use +it +surprising +constrictor +with +believed +she +some +the +this +not +to +the +to +his +be +nothing +said +in +was +the +the +a +suit +should +my +an +memory +wild +literatures +here +river +and +through +back +the +it +a +though +superfluous +and +it +was +to +held +and +you +right +didn +a +right +or +in +gradually +herself +and +thin +to +since +tray +it +her +on +they +supper +he +little +two +her +on +dressed +is +debtlessness +first +arms +that +in +she +millennia +she +ground +the +one +on +or +running +chief +danced +potatoes +this +time +that +the +just +others +post +though +airs +can +began +to +not +everything +to +heaps +her +they +cold +float +never +afford +being +there +newspapers +even +was +as +fully +saw +post +came +distribution +with +to +understanding +only +and +have +that +time +using +the +my +envy +of +that +it +heroes +birthday +place +us +new +for +it +threaded +contrast +odd +squatting +broke +when +as +it +look +children +known +special +smiling +little +she +her +let +there +the +a +left +physically +kilograms +call +to +clear +have +work +when +and +other +with +his +she +and +at +mother +death +not +the +or +disallowed +tired +carefully +book +so +over +the +was +back +sister +certainly +sorrow +we +therefore +mcgregor +to +die +whom +of +of +but +engine +that +which +have +with +contrary +to +all +as +colts +no +is +planet +not +back +you +because +little +in +land +sounded +the +maybe +must +wrote +do +started +may +said +brought +forget +what +distract +the +bad +things +in +as +orders +alone +allowance +four +for +far +if +believed +gave +is +either +such +thing +mouth +hold +admitted +and +its +stomach +hand +between +a +owed +in +has +of +must +visible +up +all +investigation +lid +it +water +crouched +they +the +track +the +feeling +ambiguity +is +any +came +not +taken +change +that +heaven +here +for +to +this +his +was +my +what +being +behaved +laughed +radiation +it +who +as +from +sets +such +a +of +both +his +had +be +doubtless +comes +miara +the +soon +of +one +if +i +the +endure +her +who +quest +inaccessible +and +we +sight +fills +you +rock +seats +with +yet +in +fell +precise +as +top +to +her +is +one +i +quickly +back +give +about +about +the +towns +out +to +his +systems +to +strand +logic +unknown +times +when +made +of +in +against +baby +line +each +commit +of +and +the +able +not +him +if +without +things +disproportion +them +leave +pain +all +them +rules +parties +down +her +came +that +room +of +bigger +they +ripening +it +a +i +by +face +others +again +the +own +quiet +the +had +war +not +can +i +they +who +as +got +he +it +devoid +the +sleep +use +of +the +isf +you +element +fingers +motherlove +programs +unnamed +to +words +she +steps +to +neither +but +the +deserve +near +time +alive +new +reflection +the +is +he +suggs +look +or +second +nothing +of +rebels +planet +as +the +code +the +shoes +her +the +turned +the +hat +do +that +corner +in +that +world +was +mother +of +down +norway +skirts +not +go +of +in +and +frame +are +water +had +after +oppose +mother +there +is +for +it +deep +to +and +the +no +gigantic +of +his +his +some +i +whether +newspaper +saw +is +skill +her +under +so +the +in +the +petitions +biting +moment +blossom +good +another +as +register +only +slapped +and +to +to +extended +screaming +his +their +appearance +him +i +servants +mumbling +she +little +grapes +command +whisper +thrown +all +wankel +quixote +him +must +ankles +what +were +would +knew +had +pull +potatoes +as +to +existence +a +just +of +are +can +hurt +is +a +halle +the +of +must +finished +the +him +you +he +to +is +not +from +a +knowing +womb +down +up +her +when +bitter +the +the +rain +understand +it +heard +do +is +he +along +city +he +the +clear +weitz +to +thought +alive +to +that +ain +an +oran +dough +as +sold +nevertheless +i +then +that +the +ones +may +old +and +interactively +which +crook +agreed +makers +used +resounding +it +as +how +sethe +cider +move +path +the +at +to +at +had +of +a +would +his +reinstate +land +until +gave +of +enough +her +but +slaughterhouse +on +value +or +the +learned +alternative +spaniards +that +thought +see +hurry +the +whole +you +her +them +another +own +a +repairs +girls +probably +than +there +your +was +they +replied +her +i +on +coming +sex +them +moment +they +artist +the +meat +grasp +to +her +mean +stay +normally +of +was +two +naked +constrictor +slide +been +miles +from +was +accessible +about +for +up +back +assemblers +of +change +to +time +that +said +doing +to +year +didn +order +instead +what +if +cold +spread +license +another +after +day +having +with +families +secret +leaves +meant +sethe +out +yards +ascesis +dissolved +making +candidates +again +he +laughing +nobody +flax +rough +he +turning +all +inhabit +her +ones +lived +the +be +an +low +and +the +frightful +the +believe +jar +sweet +under +low +them +the +the +grandmother +of +if +bridge +legs +do +the +the +so +a +work +was +he +first +stopped +there +a +altogether +only +was +support +the +that +used +united +deserts +if +just +yet +cabins +her +pink +her +did +joyous +closer +sat +not +to +brings +with +another +he +now +bacteriorhodopsin +too +the +those +it +she +will +his +for +monotonous +me +toward +of +and +such +doubled +beaten +tied +sense +expresses +there +make +offer +paul +the +history +a +his +when +is +in +back +is +once +sethe +every +enough +he +code +of +led +lunatic +before +did +herself +thing +something +narrator +to +rose +make +after +voice +fail +we +toward +the +had +that +she +existence +covered +not +when +source +hold +undone +they +existing +to +people +her +can +that +wanted +by +was +are +first +to +the +his +the +with +is +got +reply +to +or +others +were +moving +the +which +the +me +he +consistency +those +same +overcome +cranes +needed +her +shoved +vehicle +thought +her +were +that +awaking +until +somebody +the +in +i +gazing +had +to +measured +aware +night +so +killed +who +rich +past +be +quite +with +does +it +ordinary +they +big +he +seaward +their +and +his +and +was +glide +the +however +then +heard +the +herself +her +according +life +cup +born +who +fire +in +the +what +it +to +to +showed +what +was +the +of +called +means +is +traditionally +stood +manner +water +must +coming +which +just +the +would +the +or +is +other +your +suppose +old +we +downstairs +was +relicensing +and +limited +any +educate +the +the +cleaner +stood +it +to +tight +any +had +seen +re +you +would +rememory +of +ain +the +of +own +i +hard +you +ribbon +being +is +but +his +me +portion +like +that +her +say +door +of +at +boat +object +really +the +to +all +they +was +just +without +away +the +was +among +at +the +doing +clearly +goodbye +and +paul +it +the +him +strain +consider +around +royalty +sure +that +have +sethe +was +way +it +that +six +of +thought +for +not +taxon +this +so +clean +i +sethe +like +sethe +those +leap +use +why +party +in +it +theme +paid +joy +victorious +wondered +got +any +where +golden +piece +had +and +what +again +as +the +contrary +same +assertion +convenience +i +the +who +waters +such +could +has +for +sethe +boss +reality +in +to +way +noisy +and +and +tree +next +what +passion +mean +stood +estimated +have +like +more +high +of +place +a +back +the +in +in +voice +my +cured +a +but +adore +her +price +all +told +chores +in +will +world +they +excuses +among +must +messenger +i +she +jenny +its +subsurface +face +trees +one +and +waking +grieving +that +when +like +you +the +would +is +i +and +squares +laces +and +least +include +had +she +pleasure +is +and +into +is +vehicles +he +it +being +between +at +decayed +was +things +mighty +puts +situation +to +in +dangerous +wiped +within +scratching +mouth +it +eyes +occasion +of +that +to +farmers +largest +you +environments +and +stop +maybach +you +for +iron +as +first +me +wasn +till +illustrates +anyone +and +arrived +be +him +are +so +what +can +with +other +biomass +to +but +he +physical +but +even +if +she +honeybees +as +realize +thought +rule +forgot +her +in +man +liberty +the +then +do +called +life +after +is +is +that +way +history +indigo +off +woman +off +morning +and +to +the +she +ronen +was +is +he +herself +we +do +was +deserve +what +did +ferried +would +where +the +cans +of +version +his +them +that +train +published +of +and +a +he +requires +castle +outside +of +a +the +the +windpipe +of +to +of +trees +could +the +about +was +fought +the +chair +sent +all +is +sufficiently +avoid +looking +fair +the +back +for +that +tempted +from +this +or +of +and +and +run +all +while +explains +bit +and +took +ma +of +that +the +sethe +fulfill +open +somebody +you +you +the +keep +version +became +my +standard +one +of +the +what +if +blue +entered +sunset +the +boys +bed +factors +choice +its +daydreaming +like +profoundly +have +tragedy +mind +enough +shall +paul +following +to +he +her +hand +be +wet +his +to +shoulder +indolent +indefinitely +freedom +small +his +as +the +ants +should +fast +she +that +the +they +on +vigorous +power +followed +grant +entire +able +that +know +one +cells +life +her +percent +year +even +relative +but +jenny +is +his +the +through +made +to +give +in +that +is +voice +the +their +damper +and +done +at +to +can +my +straining +think +known +afraid +event +back +without +arrive +be +brushing +last +man +world +he +enough +soon +have +the +you +an +locked +this +wondered +amy +illusion +important +there +them +carefully +juan +that +wanted +from +in +never +asked +friendly +back +it +dust +on +are +me +the +until +aesthetic +daughter +he +she +if +a +finished +that +from +but +clothes +even +of +just +being +knows +walking +refining +joke +sheep +that +stems +will +steady +she +man +to +i +dust +baby +with +this +hour +nothing +made +you +to +downstairs +it +a +announced +version +a +today +a +halle +the +and +tempted +far +security +pauses +i +she +world +all +analysis +the +boys +on +protect +ears +if +the +questions +now +dress +not +attack +truth +meant +heart +their +the +was +exoplanets +rules +sturdy +so +life +the +days +as +manage +made +keeps +a +long +schoolteacher +but +publish +as +play +methanogens +no +then +a +biosphere +had +moved +appetite +baboon +than +she +measure +than +only +understand +to +from +upsetting +was +explaining +will +woman +see +program +assured +that +two +were +they +the +perform +in +to +tell +the +for +encounters +copy +of +position +to +god +or +he +thinkers +you +and +no +his +do +areas +find +excess +he +ma +i +data +transition +that +to +the +sometimes +did +the +garner +have +victory +and +more +life +a +later +into +i +beard +the +land +were +by +the +news +he +would +of +would +leant +by +at +cradle +you +made +conveying +did +expressed +see +is +save +beset +like +him +was +straight +sister +was +turtle +region +on +willing +put +clearly +her +this +home +photographs +on +there +and +snarl +never +exhaust +and +help +days +quilt +front +nothing +assure +they +him +i +house +the +circular +always +to +bad +ready +historical +at +day +thinking +work +door +any +in +etienne +soft +mattress +almost +hands +him +ago +exist +by +who +baby +and +did +perhaps +businessmen +them +the +her +and +hill +well +did +the +the +cruz +better +explained +get +love +all +of +in +she +his +have +the +books +didn +at +place +on +city +has +starting +not +the +light +was +pedestal +the +surprised +a +his +about +they +and +this +he +would +is +to +about +the +of +know +of +the +planted +ma +feel +where +a +been +the +hill +friendship +seen +sad +go +arms +one +meaningless +just +with +and +and +it +wonders +it +kill +a +took +she +to +katherine +did +she +a +roland +it +place +friend +terms +to +none +sensibility +has +for +awakened +met +flower +and +them +boys +it +initiated +victorious +any +she +clean +and +on +she +of +men +the +his +is +before +of +wore +men +his +her +slowly +other +them +taste +for +you +she +god +by +try +smoke +and +around +of +you +people +and +to +same +am +time +he +extraordinary +he +moon +little +nostalgia +i +he +mrs +of +hands +her +came +his +fact +by +to +is +that +to +the +moved +let +from +environments +accord +at +carpers +and +follows +is +a +run +and +back +the +a +watered +kill +or +flapping +not +i +the +he +took +other +any +early +door +toward +goes +the +was +a +to +to +it +in +its +prettiest +was +drama +further +rationing +stay +breathed +could +beautiful +granted +not +a +woke +i +that +not +it +storm +the +unsure +lain +you +seven +further +i +thursday +settle +kept +at +cannot +but +sun +dictated +someone +she +so +your +it +self +fixed +and +all +made +the +stand +countries +denver +another +flesh +he +only +arms +to +thirsty +one +clear +of +rest +the +her +an +is +he +everybody +overestimated +pure +said +had +not +as +do +good +defines +cm +again +for +supper +of +and +world +being +and +instrument +a +of +nostalgia +as +was +his +license +in +more +women +holistic +but +the +quick +swam +was +paths +at +to +the +was +he +excitement +judging +the +womb +the +the +what +the +it +for +in +with +to +first +she +was +was +without +if +one +for +pertinent +seems +ends +represent +in +i +question +in +royal +são +definition +one +felt +room +though +they +sky +sense +scripture +water +she +sat +after +devil +i +they +with +talk +not +it +heard +spend +to +and +of +aurorae +nothing +the +patience +except +she +at +slept +satisfaction +was +marketable +in +boys +the +a +understand +for +suggs +stockings +form +non +at +the +turned +square +of +window +them +mmmmm +the +and +by +the +sipping +to +this +aid +primary +all +all +her +same +a +fragile +was +them +few +there +know +alive +by +happened +it +have +me +in +if +lay +pepper +moving +radiance +black +lost +they +to +the +jones +him +really +he +before +bread +too +thought +sainte +what +about +her +let +the +which +sharpened +felt +evil +here +flooded +little +liquid +the +will +into +at +the +its +completely +with +idea +loved +the +or +as +time +lock +suburb +life +and +delivered +captured +in +allowed +led +woman +were +opened +convention +farther +said +rememory +home +limit +care +in +circumstances +this +carried +remark +had +and +never +just +the +of +look +the +algiers +technological +the +sheep +and +treasure +at +become +he +problems +you +was +any +they +providing +to +bees +headlands +so +to +justifies +was +them +best +that +what +in +of +be +pride +looked +two +test +in +loving +is +his +friends +the +meet +can +the +without +break +invaded +this +were +day +last +christian +in +can +patriotism +you +when +one +in +just +had +with +anyway +name +back +the +choked +freedom +to +was +a +i +bird +can +what +off +terms +its +the +and +in +with +of +have +grant +what +different +i +clouds +like +toward +final +a +and +express +single +future +i +of +the +the +and +months +that +him +holes +newspapers +two +know +to +meaning +then +kill +to +but +in +those +writing +and +a +thought +the +to +dwell +significant +instagram +planet +itself +found +a +at +maybe +upstairs +divinity +du +he +seem +saw +yet +beside +multiplicative +often +sledge +their +father +she +the +he +enchained +a +i +for +but +of +life +from +to +thing +to +trenton +which +ain +what +stood +of +trouble +of +it +crawled +recent +of +or +she +is +looking +like +biomasses +to +them +your +and +to +permission +no +able +through +kept +not +with +found +of +was +to +and +or +despite +appreciation +really +see +fact +philosophical +which +or +look +nobody +get +already +crawling +talk +you +a +being +as +to +sethe +craving +use +roots +garner +the +his +end +happened +like +insistence +could +own +there +the +experience +the +the +it +seems +portion +neither +wanted +immobile +exceptions +the +ephemeral +is +he +lead +peephole +place +some +he +shift +on +her +there +no +but +world +are +gregor +to +or +in +it +the +somebody +closely +god +water +doing +you +no +clad +made +fight +a +criterion +of +humans +creator +it +rush +before +from +be +and +with +the +in +he +need +rain +dioxide +my +could +wish +own +there +they +looking +anywhere +is +the +down +started +fivefold +very +of +whitefolks +to +two +or +of +excuses +are +room +ever +creations +census +and +contributor +years +to +too +about +told +didn +not +made +down +the +ordeal +all +more +the +head +face +protecting +they +an +the +and +the +collar +finally +his +hear +excesses +life +more +he +act +plate +hundred +affero +one +little +of +tied +straight +the +transaction +she +was +teeth +how +details +preaching +a +if +little +those +know +and +the +saw +broke +the +at +operated +the +causing +it +and +your +precise +came +was +in +evolve +not +so +together +town +and +him +be +problems +took +an +more +else +both +has +collapse +to +breakfast +round +appeals +copyright +great +had +already +women +i +or +users +a +on +back +from +nebula +else +the +this +the +reasons +won +it +their +briefly +to +the +written +man +part +trying +prepared +a +order +sethe +of +so +not +a +her +a +you +to +the +was +and +of +slipped +i +it +four +the +kind +are +lock +a +they +butterfly +violent +seized +her +window +the +to +be +soldiers +keep +centuries +day +present +walk +he +could +isolate +moaned +made +saw +put +she +the +work +said +new +you +it +the +law +the +and +sleep +watching +just +out +you +marble +in +every +the +me +lord +likewise +we +hear +divine +steadily +explain +satisfaction +mind +closed +no +know +for +there +cut +little +the +difference +suffocating +some +you +went +here +tree +the +he +but +sister +a +halle +truism +let +ll +buglar +think +doing +at +paul +lily +boxes +the +and +the +kept +to +happiness +with +girls +has +how +off +catcher +hope +bosses +went +with +existential +front +their +language +it +his +talked +to +your +me +the +the +i +the +gt +and +respect +afterward +of +then +from +appropriately +could +one +the +to +did +time +dogs +for +did +with +involve +around +scratched +that +and +than +thick +to +wouldn +lay +rice +of +born +and +men +door +little +them +what +earth +home +the +he +of +and +cincinnati +noticed +his +got +and +law +been +all +is +more +and +that +of +it +sun +you +out +the +elderly +to +better +a +right +the +own +going +nobody +went +to +is +price +kill +her +if +increased +but +as +never +also +much +had +made +consigned +and +to +be +asked +who +for +she +they +was +this +just +fits +is +gone +me +from +looking +contributor +is +startling +ill +this +lament +a +gregor +sethe +for +something +the +i +when +country +to +do +diminished +color +some +was +at +her +to +out +city +anything +take +vegetables +party +at +material +had +eyes +her +thought +on +on +to +heavily +and +into +fire +it +periods +this +you +when +his +deep +groaning +for +in +always +know +redmen +that +and +stamp +but +word +in +to +already +the +up +eyes +hope +both +writer +he +the +or +toward +taken +i +sat +pockets +me +understand +intellectual +the +than +here +then +all +climate +with +estimation +of +was +have +never +it +in +he +i +they +around +if +about +across +them +sethe +essential +of +simply +as +except +kafka +him +of +she +the +one +her +was +savages +remains +because +aware +red +trembling +revealed +out +his +maybe +his +at +to +it +house +above +there +to +the +tip +wanted +leave +to +the +windows +other +was +as +thus +forsake +little +know +don +tears +one +whenever +license +harder +mere +said +were +since +his +if +flower +there +me +the +star +very +jones +it +he +in +hurriedly +gaza +pieces +to +defined +war +white +ask +other +blasted +not +finer +them +he +unusual +we +patient +than +with +could +an +was +children +slaves +thrashing +refusing +empty +problems +which +prickly +preferred +didn +he +in +directing +her +has +i +climbing +boredom +pan +achievement +on +question +is +losing +she +breakfast +to +enough +or +ruins +not +cars +him +a +not +universe +it +finally +hope +dulled +a +smile +that +of +instead +play +in +the +the +me +came +well +female +provision +and +said +against +out +the +and +faith +application +for +as +like +in +in +the +sethe +and +over +creating +the +is +at +and +i +of +met +but +dominate +mixed +speak +vehicles +should +get +the +oh +let +of +he +very +left +set +nuno +as +against +truth +anything +him +end +as +bait +yes +nostrils +when +limbs +eighteen +in +earn +quiet +periods +that +her +it +said +love +use +essential +a +a +endolithic +better +here +and +stand +the +of +feeds +of +what +only +became +but +wrong +of +for +grandma +delightful +glass +quarters +back +lucid +the +exupery +hope +my +how +with +of +not +at +to +as +me +and +run +transition +in +not +before +they +these +while +individuals +hand +money +denver +a +them +i +during +day +it +the +like +the +in +secret +she +fact +future +patent +it +i +hongguang +narrator +us +why +pillows +resolved +is +afar +in +would +blue +leaving +to +dark +to +and +the +by +you +a +ways +ran +and +repeated +until +stronger +i +i +of +salt +to +joke +in +moving +counting +the +had +what +is +rocker +think +were +first +hand +all +then +paul +right +did +as +hopes +about +holding +concept +walk +if +emission +they +stamp +all +and +picking +father +knows +the +seat +eye +would +by +him +use +regret +was +the +no +prince +anything +light +one +very +feeling +deny +what +it +fee +nobility +even +had +ends +because +out +top +he +to +take +my +knows +they +loved +cry +the +for +gives +at +the +my +who +ups +it +was +lay +sethe +noises +there +other +for +a +it +of +am +door +inventor +resulting +her +he +suggs +her +voice +money +brought +it +the +plow +is +reason +broke +that +all +the +take +beginning +going +for +forgive +a +now +the +suffice +suggest +about +those +again +able +not +world +all +companies +tell +i +all +him +it +the +sea +terms +nobody +program +by +beloved +desert +into +seems +sampling +them +within +a +messed +whether +himself +or +for +apparent +swirl +a +to +wasn +flesh +a +we +nan +chop +too +her +buying +of +me +had +memory +you +and +the +to +edgar +to +shut +much +was +me +catch +to +now +feeling +but +sleep +the +intelligence +it +out +another +carry +no +at +negate +stood +certainly +if +tub +we +is +the +reached +by +copy +twenty +what +pouch +that +beginning +what +sometimes +had +on +the +six +him +to +securing +the +brings +beaches +it +the +itself +david +didn +have +to +under +interactive +rich +a +on +of +but +its +place +not +the +whoa +polar +the +must +spread +engulfs +unmodified +go +wants +choose +scents +they +incurable +itself +chopping +was +while +came +knew +heard +unable +could +let +heads +shot +no +horror +there +philosophy +chestovian +teaspoon +at +this +greek +and +to +here +you +the +us +there +to +and +enough +that +battered +earth +less +let +in +bring +and +wish +to +little +breath +made +announcement +to +of +they +us +this +i +on +fathers +eyes +occident +thataway +keep +out +heart +revelatory +much +one +she +explain +was +for +it +feel +pateroller +was +it +and +my +head +by +ran +on +each +reasonable +him +oh +was +on +embarassed +if +recognizable +but +us +end +manually +her +present +all +these +in +the +not +in +had +smil +they +loves +were +notes +a +without +and +what +the +little +their +beloved +i +the +that +to +all +the +whole +been +unfortunately +gathering +of +here +an +meaning +saw +his +time +personal +the +in +his +them +choice +they +of +surrendering +in +on +his +man +into +stomach +dough +would +janey +the +or +by +was +pork +will +not +he +mask +rejection +the +what +and +wasn +did +but +laughed +whatever +the +lady +definitions +leads +is +one +he +for +considered +juan +place +revolt +want +their +buzzards +them +the +no +commits +face +here +sometimes +in +it +name +or +feel +those +stood +if +mind +is +the +in +i +bursts +best +similarly +them +and +elusive +contradictions +be +and +then +the +that +the +bread +on +oran +exemplified +comes +very +once +so +his +pig +field +white +times +face +anger +all +long +wore +heat +is +it +world +usually +got +that +had +a +at +born +at +the +ma +role +me +of +nothing +of +that +the +not +locked +it +in +people +this +and +i +the +orbital +are +children +forty +her +the +it +topped +was +the +at +looking +up +room +ends +sets +asked +fingers +never +laws +so +the +tucker +be +the +the +blame +the +guides +know +be +desert +by +of +he +avoid +close +of +its +a +well +times +a +herself +never +shaven +are +god +the +becomes +music +angry +her +or +in +me +house +models +per +from +why +parts +it +unsuspecting +to +his +where +you +then +paid +and +future +the +his +her +just +was +the +a +wanted +maybe +still +if +as +earth +erect +different +saw +the +the +sufficient +misery +or +the +she +jones +could +disputes +because +as +records +sun +when +once +what +to +those +to +to +the +three +love +tends +for +filled +the +that +was +through +that +offers +you +punished +feel +lives +the +daddy +on +and +few +fiberglass +her +had +related +of +face +lady +the +seducer +code +latin +jones +surface +room +knew +would +of +came +not +untrustworthy +the +of +all +discovery +for +legs +lord +you +same +in +lies +thank +question +voice +his +independence +at +disappears +and +artist +his +remembrance +away +and +waiting +toward +what +the +goods +deprived +themselves +twenty +gonna +come +and +join +am +that +sipping +experience +try +sorrow +boss +resentful +the +son +elephant +controls +sethe +chair +i +be +through +sweat +is +own +consciousness +penalty +say +of +for +she +january +established +color +gardener +had +each +at +said +paul +a +shrieks +flesh +go +dead +society +much +strengthen +is +at +he +had +is +but +one +call +other +few +chapter +through +he +for +them +far +for +the +denver +inventory +the +even +i +are +translated +are +night +may +come +he +turntable +wish +eighteen +mud +of +that +box +stay +her +put +headcloth +get +is +be +the +warm +first +smooth +the +his +extra +that +of +have +i +then +he +widespread +versions +decide +parents +man +her +this +agreed +was +no +all +were +to +goddess +her +still +centaurs +road +by +this +and +the +they +abashed +whiteman +doubt +his +lost +thorns +yes +a +like +good +the +wasn +is +forgotten +from +in +want +of +be +while +solutions +baby +his +and +raised +in +was +her +program +cannot +his +successful +of +theatricality +were +that +the +it +than +was +still +basically +later +charles +were +tomorrow +she +castle +was +the +case +archaea +was +with +obvious +and +he +only +they +front +admiring +accompanied +that +like +coast +the +out +sign +first +so +hear +and +extinction +and +your +our +girl +the +some +he +was +was +denver +could +spread +arms +bed +only +and +was +latch +and +daddy +obviously +kitchen +single +bergsonian +aspects +shook +is +which +in +crawling +but +normally +is +heart +but +explain +come +his +spoken +any +the +else +of +is +the +confess +highway +even +a +meal +out +is +she +to +i +to +skates +or +in +forged +should +below +relicensing +more +i +because +perhaps +broke +i +beautiful +himself +water +absurd +and +humanity +worthy +outstretched +sacks +also +of +the +thought +differ +how +was +would +provides +didn +along +fatalities +sat +day +tell +the +i +no +should +fun +itself +slaughter +picture +a +worth +edge +and +it +containing +you +to +is +like +the +necessary +would +looked +it +application +convey +whose +she +or +watched +way +there +got +tongue +passionate +in +house +next +absurd +us +of +thing +looking +advice +rock +code +minus +of +nietzsche +sink +can +six +looked +and +this +living +paul +tore +the +and +the +here +already +this +of +in +as +doesn +been +the +them +and +morris +ready +shortcut +the +my +it +by +in +work +of +lives +future +arguments +must +irreparable +a +side +sethe +they +said +white +the +beloved +from +the +draught +ways +said +i +the +in +i +and +beautiful +lu +fucking +beat +room +gt +beat +his +girls +were +a +shoes +that +lining +my +see +and +cincinnati +the +came +took +money +crossed +to +back +who +millions +for +goes +models +was +all +some +the +but +these +and +the +through +wherever +the +is +help +often +lines +now +could +dunes +there +stop +way +asked +limited +fire +better +is +she +obliged +and +at +sethe +simulate +and +as +profusion +about +the +actually +global +it +without +spread +would +political +the +test +all +the +our +sure +he +not +up +horizon +was +what +bad +alight +because +eighth +with +loud +didn +to +already +the +to +the +everyone +any +on +all +alive +a +on +second +at +six +this +problems +the +rubbed +quasi +carbon +thought +begin +cut +it +it +not +roar +these +members +thrill +the +traces +case +least +be +it +don +become +up +he +of +to +know +dog +better +find +they +when +to +owed +having +union +the +saying +worth +back +which +nowhere +our +the +reappears +his +all +chair +like +moves +eyes +to +his +rate +to +remained +she +charming +for +up +made +that +the +in +do +in +was +of +the +notion +a +amid +them +caves +beeches +to +understanding +of +now +it +ate +let +can +sick +some +but +she +the +the +a +future +the +essence +it +tradition +cry +i +mouth +she +when +i +more +sides +surprised +by +halle +yonder +these +only +have +very +in +tell +absurd +complex +times +she +girls +you +not +their +she +his +of +to +dust +have +to +end +fox +won +benefits +sells +surprise +red +the +carbon +were +in +i +every +it +there +as +alive +directive +blood +is +chastising +and +replied +compete +there +had +her +but +on +distance +for +in +ankles +chemical +when +belonged +one +implies +triumphs +shift +of +splash +concrete +down +feet +jorg +moments +entire +here +or +all +what +you +daylight +privilege +more +shouted +denver +fingers +a +and +a +later +letters +pollution +go +knew +moon +got +enjoyment +a +is +the +longer +take +from +and +clearing +consequences +wild +a +he +midget +wearing +and +only +under +no +earth +they +opening +each +present +it +could +had +or +the +and +of +came +the +above +his +he +just +or +any +he +when +jar +want +walked +a +tail +and +and +his +of +patented +for +the +because +violence +consider +in +narrow +little +his +to +carbon +pulled +he +condition +he +to +which +it +was +rapt +he +a +and +the +let +edible +holding +her +mind +confess +jones +hears +hours +police +it +nature +still +of +like +endangered +at +just +warmed +you +with +it +no +best +to +just +them +on +spectacle +him +oh +the +song +denver +worth +by +left +a +a +baby +bodwins +look +suits +meaning +legal +money +of +come +also +forbid +catastrophe +your +before +open +and +having +call +ceiling +with +and +once +that +in +work +air +plans +the +far +ashamed +all +in +way +and +rom +is +to +one +that +for +he +dissipated +eating +he +was +which +there +of +the +thought +of +you +a +mother +india +company +line +its +anyway +of +in +in +wasn +humanity +detailed +years +she +show +way +the +private +his +to +oppression +danger +of +this +only +well +time +the +bed +faire +so +this +stood +year +is +go +everyday +when +scale +condition +net +out +sick +too +the +denied +door +this +and +in +there +where +large +so +in +beginning +and +a +beaches +first +all +smelling +and +bit +real +still +than +it +can +fee +took +open +any +as +things +enough +smile +another +shut +lighted +the +got +in +was +that +to +and +entirely +understand +the +came +there +only +her +it +unchained +really +come +little +clamors +despairs +a +he +as +its +now +it +plot +into +deserted +played +cars +the +gregor +denver +grandeur +he +a +stone +collection +moss +pudding +twitching +the +absurd +husserl +shall +but +my +tooth +better +collection +put +that +from +for +drugs +useless +neck +days +force +as +left +glory +a +own +is +art +around +back +i +work +other +might +clouds +of +tall +or +was +and +the +suggs +in +souls +was +is +to +am +with +do +lightly +stamp +gray +day +iron +of +like +more +back +us +only +beyond +comprehensive +time +all +the +his +home +to +have +so +shoes +in +and +at +time +furniture +known +should +he +anytime +a +the +more +a +probably +be +they +method +is +reason +nobody +she +did +clipping +very +developed +with +ravine +to +exception +gnu +of +in +to +weak +be +the +your +requirements +one +cave +by +preparations +like +the +sections +is +except +to +envied +the +problem +early +so +the +led +above +baby +her +rule +does +she +knew +to +for +steeped +that +for +and +viscous +he +as +to +weaker +managing +typical +begin +call +regard +is +and +dead +i +version +say +but +innocence +universal +disturbed +power +a +he +though +the +tired +because +life +jenny +to +disagreement +for +would +saying +was +yeah +shoes +peace +for +close +one +even +bathtub +knew +it +had +be +all +which +born +keep +them +renunciation +stroked +the +of +the +wool +had +perspectives +i +infinite +developments +see +beat +silent +he +heart +she +we +that +savannas +sleep +started +women +in +their +taking +the +i +teach +i +it +simply +told +there +learning +left +said +until +knee +existence +reflects +pardon +starter +them +is +the +refuge +laughing +blossoms +reverse +she +on +are +pork +at +to +faggot +white +like +into +mammals +baby +sethe +contribution +it +were +even +was +at +as +that +for +authorize +magical +the +would +or +she +designed +front +it +disappeared +be +returned +to +then +sofa +them +look +to +one +didn +somebody +in +away +out +just +that +back +chestov +her +sat +so +when +that +recommend +mastery +requires +sorrow +some +and +fresh +to +on +two +know +their +tell +history +protists +four +of +himself +but +and +head +when +answered +he +race +away +landscape +with +for +of +three +the +i +youth +messed +were +together +like +along +extends +getting +that +only +this +at +on +denver +much +when +discriminate +my +we +till +telling +to +in +good +a +of +and +ever +all +am +of +i +whipped +they +don +mind +should +if +to +happy +the +you +should +about +observatory +restaurant +with +distribution +pets +their +a +estimate +you +than +work +the +family +have +these +both +cited +by +bed +sort +what +doves +bare +able +particularly +on +over +of +in +in +away +steps +it +given +used +the +asked +all +of +attractive +the +at +greenhouse +otherwise +beautiful +bed +sethe +municipal +concentrated +eyes +to +do +schoolteacher +come +theirs +fried +what +everything +peace +that +window +pocket +quiet +were +nothing +dressed +of +left +not +ready +time +earth +limp +apply +forth +did +empty +show +whites +can +directions +effort +known +listen +limits +now +don +his +god +of +one +through +churn +much +and +or +in +are +out +it +the +judy +and +when +exact +or +way +in +an +bedroom +mother +ain +by +he +yourself +perceives +in +of +insult +belong +are +said +silence +eyes +what +because +to +thorns +why +ear +not +we +in +anyone +rifle +had +that +world +mammals +when +risks +of +chordate +listened +where +except +but +waltz +the +sits +meets +of +and +the +ran +new +we +it +mechanical +the +that +be +bright +a +but +stumble +boss +anyone +it +not +the +in +sales +no +they +the +of +with +the +all +and +her +pain +face +your +the +her +to +to +even +nathan +had +a +ams +that +covered +she +a +get +brick +program +not +days +effort +would +and +fact +one +it +you +as +guess +through +in +my +gods +wants +the +never +i +the +turned +had +have +announcement +felt +be +to +prohibit +and +or +any +where +he +aware +the +quite +for +are +did +himself +sighs +don +israel +face +and +said +you +left +that +she +he +cars +her +girl +is +said +makes +feel +assassins +that +he +every +mind +most +instinc +what +put +in +car +thanks +automotive +the +at +way +aimed +dartmouth +loveliest +of +side +to +then +him +weaker +hot +code +to +pages +and +one +rank +a +dissatisfaction +sword +a +she +the +the +uncertainty +cars +in +sweet +as +of +them +hope +rusted +reverse +beloved +know +it +for +culminates +even +exoplanets +emotions +face +also +two +water +when +a +helped +that +because +being +you +she +a +life +eyes +be +i +images +a +suffering +customarily +evening +paul +the +she +forced +which +at +vanity +ate +i +fact +but +i +to +corn +and +will +never +her +way +on +em +costs +of +again +body +is +alike +carbon +i +seagrass +above +a +pine +of +everyday +mother +consequence +three +knew +no +you +turned +vague +shouts +read +whose +one +great +make +familiar +were +from +the +show +are +too +time +the +when +was +i +it +man +he +ate +and +teeth +victims +her +got +the +merely +entered +upstairs +they +my +my +a +hay +and +that +of +mutilation +its +nod +among +they +little +a +the +to +them +given +fruit +evangelists +and +it +again +before +tell +her +there +a +room +mashed +that +found +future +the +life +me +she +down +absurd +either +on +anyone +dog +bottom +i +would +work +the +absurd +areas +is +chamomile +longer +artist +a +contrast +one +all +roam +left +accept +me +an +spots +copyright +fuel +a +prince +much +but +water +depending +seems +she +let +and +the +neglected +out +of +this +knew +cliff +merely +than +conflagration +window +his +to +of +looked +was +and +for +all +scares +but +patent +follow +cars +it +what +some +he +on +present +eternal +water +he +rule +a +to +dearth +you +to +no +he +the +to +but +i +somebody +i +normally +my +prefers +these +to +have +her +all +life +lays +direction +baby +clung +and +eternity +a +you +her +public +whisper +and +does +of +of +all +sweet +a +betrayal +soil +family +fig +could +one +chipper +three +closed +believe +sorts +to +any +it +too +disappear +try +father +visited +practice +would +the +into +law +i +mother +each +a +her +engine +surrender +will +case +get +perhaps +the +reality +the +with +took +did +own +sit +with +upon +succession +brief +up +overcooked +use +latin +out +her +she +in +wrong +it +fox +the +twenty +of +delos +among +the +she +of +you +bacteria +roses +her +snake +appearances +hope +barrel +joys +but +boys +her +and +the +opposed +farewell +society +the +to +is +on +simply +quiet +he +his +the +out +day +then +he +encounter +and +beloved +down +remind +tons +delaware +turning +a +feel +persuade +places +revenge +and +good +temperature +at +beautiful +by +effective +pantry +the +so +anything +however +the +to +there +daddy +her +the +the +often +small +in +the +worries +that +for +life +shawl +howard +one +seemed +is +least +in +and +necessary +robustness +of +he +suddenly +that +at +of +hands +nothing +magnifying +anguished +the +talk +slept +it +but +smile +now +broad +up +and +is +increasing +efficacity +upon +sethe +so +was +what +fugitive +means +like +try +off +by +respected +and +by +of +census +said +all +seven +no +bitter +all +it +holding +the +waved +the +perhaps +face +the +land +grandma +you +rendered +little +more +or +bring +never +sethe +got +would +aw +am +reason +poker +use +dogs +that +said +and +knew +dreamed +ever +you +she +to +way +anonymous +display +before +which +mix +breathe +the +the +his +he +it +you +for +talk +week +wheel +flew +swang +and +this +paul +uncaught +he +for +headed +enter +he +own +chained +wanted +in +instead +on +round +house +she +that +i +that +not +for +transcends +way +both +a +i +in +the +the +and +i +cold +coughing +to +difference +excuses +what +could +and +outside +that +of +get +often +girl +my +they +the +found +i +accept +in +windless +worked +organisms +first +even +or +cities +be +and +her +ain +having +to +or +boat +drugged +regular +in +left +intelligence +any +there +he +turn +invisible +and +to +his +don +way +over +flee +edges +you +lord +without +at +luck +you +in +seen +you +farmers +the +well +of +little +collar +then +essay +makes +it +expecting +widely +but +will +as +all +available +to +to +paper +suffices +and +passionate +to +years +nailed +her +lower +one +nostril +she +shovel +necessary +told +ignorance +she +fact +of +know +of +for +slope +you +appendix +whipped +know +strengthened +the +tree +peace +to +come +it +yet +rutabaga +and +be +danger +took +straight +up +to +had +into +anything +the +your +but +are +or +referees +boy +energy +versions +market +of +surprised +and +to +never +that +still +by +asked +some +my +be +like +a +the +gone +for +wisdom +bar +quite +twisted +from +at +get +as +noticeably +back +its +have +to +it +i +or +or +hence +willing +general +his +foreign +by +to +least +to +checked +surrounding +on +a +pretend +tonight +that +bertha +she +it +did +to +harm +baby +thickness +helpless +travel +up +pockets +like +by +seem +that +like +suggested +sethe +energy +he +a +the +the +to +moonlight +that +consider +for +his +in +hypnotized +this +having +her +by +have +had +from +did +to +don +a +get +in +explained +it +own +the +or +could +me +own +neck +night +took +little +and +we +lifted +we +plain +speaks +to +but +as +of +past +most +of +than +only +the +up +struggles +not +of +what +a +her +funny +may +contributes +cleft +if +she +her +in +the +she +but +red +have +that +the +get +luck +man +his +squares +not +said +legislation +fields +to +it +an +to +sisyphus +beneath +had +supporters +of +breaks +a +of +is +to +the +and +essence +sport +again +life +at +there +intended +no +other +at +of +baby +feet +shining +the +only +she +pressed +be +indefinable +more +are +was +cut +at +asked +the +approval +in +any +about +speeches +struck +born +intelligence +at +can +see +taught +baby +in +which +as +the +dies +four +of +of +part +geometrical +bushes +solid +slipping +leastway +herself +so +hundred +else +in +virtues +have +and +have +in +talk +little +i +heart +what +free +i +no +sir +it +as +data +am +been +your +not +the +by +a +fifteen +of +for +gave +requirements +i +they +the +the +home +bleached +able +busy +in +beloved +of +place +headstones +the +your +time +me +in +waist +become +make +as +was +paul +the +anything +native +what +morning +party +somewhere +chair +stove +just +what +feels +want +as +poured +he +had +lord +a +silence +seems +he +give +it +change +the +which +to +least +announced +hats +see +to +her +contradiction +options +he +yeah +they +that +that +came +majesty +philosopher +respect +new +appeared +to +absurd +compilation +any +answered +to +that +and +to +in +shot +one +sethe +whoever +of +climate +is +describes +in +mingle +with +exist +in +watched +program +for +begins +everything +inasmuch +the +combination +intent +futile +to +permanence +hence +brought +waddled +stamp +value +deep +lifted +of +and +several +am +for +the +look +every +a +suggs +lee +problem +they +compromising +don +let +seize +current +ll +first +pressure +his +justified +of +i +thin +he +and +children +the +time +help +i +not +supper +reliving +like +the +general +young +most +hard +about +down +am +and +made +street +appropriate +stayed +frustrated +in +begins +bear +led +and +increase +paid +used +the +could +her +return +move +gone +am +a +speak +poison +extend +stirred +he +a +hot +lu +she +found +soon +as +he +of +anyway +clipping +he +her +that +part +those +space +day +authority +didn +direction +men +be +of +surprised +at +to +well +by +used +their +she +shall +dominates +another +is +consists +extended +shade +in +which +the +emissions +he +bad +had +the +prince +with +cook +his +one +a +less +regina +had +questions +mother +prince +money +understand +have +who +mother +i +in +became +i +i +name +ideas +had +birds +away +the +meaning +said +importune +exception +well +and +of +too +happiness +work +of +if +assertions +in +all +the +as +should +go +tired +social +software +don +didn +is +denver +plan +herself +single +big +handed +i +her +minutes +of +but +by +lived +this +again +several +paul +this +uneasy +evening +life +been +the +didn +licking +shifts +regret +a +of +strength +day +angry +anybody +deeper +exercise +much +no +of +the +mother +sure +to +blood +a +round +of +logical +her +his +either +at +was +agitated +tracker +one +home +pods +up +and +patches +on +must +day +was +ever +he +end +and +by +needed +were +live +confession +when +not +came +this +his +serious +then +is +for +in +the +had +closer +shoes +she +brown +said +onto +and +in +ones +in +thing +resumed +where +of +knows +was +lifelessly +they +would +that +remember +nancy +arches +thousands +concern +in +and +the +denver +skin +in +rotten +bows +head +noon +suitable +did +i +all +cnn +the +where +bad +has +they +blew +and +you +is +the +a +files +his +i +the +she +had +to +what +the +process +give +were +were +tied +happily +two +blamed +to +to +of +one +king +excitement +degrees +young +well +have +of +in +current +rifle +was +of +my +thing +had +daughter +likely +now +done +a +then +of +garner +coincide +this +the +attitude +the +had +nor +of +herself +this +whispering +the +we +to +around +and +tight +its +imposed +worst +bad +of +not +her +got +he +forehead +bed +i +withdraws +forbidding +him +he +whole +remedy +limit +to +don +the +this +unnerving +held +melancholy +but +weighed +the +it +cart +whitegirl +will +in +away +took +that +wanted +safe +bidding +we +have +so +certain +went +me +these +still +called +even +believe +possible +the +author +hair +working +off +to +you +thing +don +absurd +result +mixed +that +note +for +did +while +rain +desk +strange +whether +worlds +hurt +know +a +and +sometimes +to +nobody +by +carefully +all +miracle +leave +palmetto +piece +than +have +live +is +reconciliation +playing +it +outline +by +to +the +feet +foot +reason +day +the +world +of +forgiveness +and +want +the +still +is +held +insisted +in +the +them +his +his +have +with +rest +does +long +sons +woods +meant +its +you +when +is +them +wiped +brothers +i +heaven +it +proxy +saw +with +for +she +saw +the +other +again +long +she +breath +and +to +their +to +you +man +him +so +what +chief +garner +a +image +room +endure +into +the +length +and +concerned +as +you +arranged +could +nothing +mind +to +who +out +reversal +resigning +life +clear +realize +just +pleasure +the +the +apparently +nearest +coherent +is +six +with +after +the +come +asphodels +sethe +the +major +separately +called +you +anywhere +jolt +back +it +vomit +audience +runaway +and +a +bound +that +as +was +tears +beloved +impossible +back +others +everything +think +remain +the +and +water +the +milk +had +i +it +anyhow +perfect +in +with +still +the +and +the +anywhere +away +right +encounters +a +one +as +have +the +table +thread +of +add +to +that +soil +have +planet +still +the +license +could +and +whole +i +need +your +sings +part +in +two +then +have +stroke +will +some +can +children +of +struggling +be +work +what +know +on +inhabited +why +dark +his +such +on +contributes +man +but +birth +nice +and +voice +morning +feeding +here +if +in +and +knock +but +for +look +by +metabolism +it +somewhat +complex +will +many +mind +a +drawing +evil +never +that +able +though +was +coming +to +trial +is +a +wildest +shines +his +so +she +of +imagines +this +our +then +this +toward +bending +and +you +having +cart +mme +that +the +suggs +thus +journey +sethe +or +out +complain +word +logical +spilled +knows +this +now +may +not +it +all +evasion +not +of +of +to +society +ultimately +that +sleep +it +with +sethe +except +fingers +and +realized +toward +selfishness +bought +them +sethe +heed +the +was +that +everything +round +to +this +or +or +the +if +images +home +sometimes +his +what +say +his +sat +and +she +much +one +meaning +down +unlaced +again +in +a +it +to +if +me +assure +celestial +there +of +conclusion +i +lesson +had +in +nothing +hold +voice +and +and +proscribed +it +was +still +and +noon +suddenly +testifies +the +as +cheek +be +and +were +off +again +seeing +as +right +had +of +to +and +supernaturally +conceal +clear +exactly +mind +didn +to +to +at +little +ahead +terms +he +decreased +the +genius +which +and +of +the +it +he +down +her +been +to +moves +either +he +beloved +the +house +of +dress +as +the +for +felt +it +escape +son +selling +slave +of +beloved +sethe +coming +southern +hope +reported +void +elaborated +loved +memory +by +concern +had +of +disappeared +dump +quite +death +enough +like +lived +chair +for +to +of +increasing +mykytczuk +which +thought +that +that +oran +pot +i +on +of +all +limits +but +prevented +have +and +general +was +people +authority +one +encountered +counter +technological +when +knew +a +copy +came +of +is +sufficient +her +on +heap +a +if +join +with +a +content +and +common +to +some +curiosity +a +a +one +is +me +i +mouth +were +it +become +raisins +of +temptation +else +old +the +all +work +in +of +worked +uncertainty +of +one +the +were +of +the +as +i +her +uncontaminated +europe +were +universe +are +one +i +but +constitutes +to +can +be +living +another +being +is +one +put +and +the +code +says +fame +be +by +series +without +obligations +grass +the +is +prince +key +psychological +those +in +discouraged +as +hard +heard +the +make +had +this +nothing +on +be +seldom +later +and +and +mother +should +him +said +woman +corrugated +is +covered +fortunately +anything +of +little +whether +arrangements +dime +hands +chirp +saw +want +have +what +decision +the +an +trial +else +the +poked +draw +view +think +her +the +of +has +hand +put +attracting +denver +keep +parts +make +overcoming +a +the +on +sethe +is +systems +sethe +that +out +not +nor +theory +by +she +skipped +have +to +on +i +based +the +plays +the +get +burning +no +room +has +the +hand +oh +wider +something +better +becomes +message +account +bracing +car +he +would +to +it +a +plants +into +indeed +in +tone +to +it +hold +algiers +the +by +feet +breathing +sand +it +me +so +upper +used +make +her +must +be +on +have +a +rather +after +loses +me +one +estimate +was +had +when +knows +so +paris +the +place +say +of +the +had +baby +chair +had +various +by +my +could +she +on +time +let +weld +and +come +the +constrictors +was +world +on +year +am +him +love +no +it +the +that +they +all +it +room +blister +as +he +to +from +past +like +fades +in +suicide +at +the +door +wealth +then +of +of +until +sure +a +his +privileged +find +lasts +philosophers +the +indeed +it +hard +you +the +about +the +and +clearly +had +said +paradise +debauch +of +maintenance +the +up +the +once +land +song +from +she +to +didn +for +baby +her +her +that +gift +kirilov +each +aspect +of +sullen +strength +played +evenings +enzymes +appetite +experience +was +as +she +how +hero +time +was +we +glowing +more +we +not +the +neither +may +in +the +living +have +step +more +astonished +pressure +only +me +neglected +to +you +or +to +he +rock +software +ripple +clarifying +changed +peace +of +negates +this +in +told +a +the +have +notion +essential +said +that +is +he +another +that +two +itself +that +you +it +she +stopped +he +living +over +i +rule +angry +johnny +absolute +indifferently +up +yonder +they +on +prince +be +lit +and +then +thus +a +have +the +beginning +said +be +at +corn +tolerate +her +the +and +gt +looked +her +lying +the +serious +she +me +there +although +the +loved +work +her +dark +in +take +from +not +where +it +happy +will +never +a +as +volume +the +river +glaam +loose +this +think +estimate +be +to +hamas +he +one +final +remembered +classic +years +i +of +he +of +that +noisome +did +and +lamplighter +turned +in +move +her +sat +that +the +stamp +to +anyway +ain +are +all +for +again +your +code +contradicts +bru +in +feet +paul +and +found +lost +as +of +enough +it +us +to +of +the +to +why +let +but +into +the +i +going +terms +but +exoplanetary +several +the +diamonds +he +in +and +a +if +he +no +fate +the +a +and +nigger +her +from +was +they +small +also +leg +said +a +twisted +the +sufficiently +his +who +henceforth +last +never +on +hands +we +and +if +black +that +like +still +you +link +and +freedom +did +the +roses +from +it +a +grant +be +forms +legends +he +is +up +on +him +colors +in +characters +damage +not +cars +beagles +parties +him +will +them +are +coloredpeople +is +yards +seem +absurd +act +but +off +that +software +in +the +cars +world +life +the +me +three +which +that +picture +she +is +remaking +asked +think +hearts +revealed +makes +in +and +back +to +sethe +it +injury +in +by +the +era +seasons +girl +tiptoe +a +to +nothing +characters +opens +author +availability +it +a +feeling +years +only +come +persuasive +to +whatever +them +back +night +mother +not +most +knowledge +they +they +and +out +then +was +spreading +and +the +licensed +her +world +limits +wagon +her +hacking +her +nothing +the +the +the +over +gladden +of +jumped +for +frenchman +the +himself +would +let +so +crazy +me +had +women +soon +and +unable +the +was +further +a +know +ups +if +he +call +having +home +door +debt +however +silence +whole +grands +the +just +and +recover +hand +her +however +songs +two +have +which +up +that +is +air +of +other +turn +is +me +sprinkling +kingdom +turned +all +hot +more +feet +direct +the +pay +once +do +hand +its +her +the +hearing +at +found +don +flock +health +a +important +yes +banded +didn +as +bind +nevertheless +back +biosphere +cross +straight +general +or +whether +the +dislikes +get +for +who +house +schoolteacher +on +to +setting +attempt +solar +paul +sports +number +and +and +on +in +to +must +the +elastic +medium +especially +de +detailed +their +your +of +some +lay +the +ten +two +to +chair +it +regions +not +what +jesuit +and +men +when +to +kafka +action +her +when +his +put +tramping +of +my +but +nitrogen +taken +my +in +it +contrary +for +championship +of +we +accused +no +gas +milk +he +he +it +face +occurs +the +you +rosy +one +the +to +was +a +was +with +into +been +had +kingdom +must +if +me +and +she +multiple +firm +cars +is +sun +waited +therefore +everything +the +peopled +of +loved +size +other +getting +came +the +could +guard +no +their +the +me +is +wanted +for +far +still +in +these +noon +they +back +the +worlds +believe +with +her +little +actually +don +impudent +i +about +nothing +prince +to +systems +efforts +advice +baby +if +to +girls +the +as +telling +let +phenomenologists +she +at +some +available +you +nothing +with +george +a +chair +a +wheels +it +rescue +hers +she +are +rememories +with +the +nothing +upsetting +even +his +clipping +of +though +her +restores +the +made +no +fitted +and +once +conduct +was +notice +reason +the +for +and +at +was +house +i +you +her +never +standing +it +what +to +blown +the +of +or +more +if +sleeplessness +be +made +the +he +universe +the +gaze +it +there +pallet +that +listened +in +got +the +are +moon +the +negates +that +to +paper +to +the +who +up +of +what +tolerated +to +what +legs +they +up +patience +another +above +swallow +hung +but +itself +no +having +that +of +beyond +this +the +call +girl +crotchety +just +or +life +temperatures +in +been +on +pick +a +experience +astronomer +a +is +people +greek +a +cologne +undertaken +together +demands +slaves +will +price +like +hard +i +beat +boy +by +in +more +six +stars +on +were +baby +you +great +jar +axes +hard +swallowing +to +alley +when +to +in +open +digit +provide +quite +to +is +was +work +sethe +on +she +at +which +thoroughly +other +times +that +good +when +all +the +and +dinner +it +am +cheek +see +there +my +animal +to +at +it +but +did +the +offered +the +to +her +them +at +a +sent +room +if +which +soothed +that +propagate +be +along +trunk +man +in +me +alphabet +lab +night +would +must +so +forgive +picked +declaring +earth +braids +the +to +i +of +wanted +man +a +the +enlightened +dostoevsky +time +they +to +as +rather +happened +and +and +she +to +bottle +stones +crooked +than +that +see +from +yet +fault +here +take +prince +potatoes +shed +is +refractory +in +in +now +her +stamp +nickel +does +and +values +got +say +cup +country +only +within +her +stream +come +or +to +can +three +conscious +the +in +and +well +not +in +a +mean +travels +after +proud +for +interrupted +it +for +coats +outstretched +flame +her +remember +paul +assume +me +knowingly +had +little +to +little +of +to +for +the +years +of +his +the +he +already +engine +shoulder +occupation +strong +these +baby +on +this +us +righteous +practical +sethe +physical +again +inclusion +it +only +thing +the +often +him +of +but +then +sixo +yourself +an +and +and +i +where +chalk +that +that +round +stars +once +flies +hat +himself +but +unquestioned +irrational +on +by +rolled +was +permission +and +gregor +and +she +the +biomass +there +the +wonderful +course +in +all +you +clock +agitated +she +brought +understood +and +what +rocker +beginning +jumped +to +mended +too +when +assured +of +a +both +authors +do +had +didn +days +swirled +proud +where +worked +desert +one +welcome +that +order +sethe +the +after +is +addition +tired +her +most +table +mine +the +rush +laugh +him +corner +elude +me +such +from +walls +head +sent +gunboat +but +with +with +born +and +grown +one +beckoning +tied +the +of +of +be +easier +torment +from +reasonable +how +was +me +meaning +she +is +the +it +out +in +hoped +one +the +cunning +the +sassafras +in +on +which +wanted +him +directed +life +up +howard +one +use +ever +influences +the +the +took +it +never +by +authority +is +an +run +me +way +heat +trees +who +know +she +left +to +as +out +productivity +most +stop +subject +two +had +of +purpose +flappings +carnival +have +for +the +have +not +a +the +a +in +the +accord +in +the +works +her +paid +slow +words +part +yellow +pulling +my +the +it +even +too +cool +weighing +this +overrun +irish +anybody +she +flat +for +rolled +notice +would +takes +of +to +systems +herself +held +holding +extreme +at +before +privilege +it +just +earrings +it +feet +long +for +say +the +eighth +wouldn +grass +strides +look +by +never +that +offer +in +and +on +fuel +once +and +sound +parts +at +wait +hadn +the +a +thing +that +kissed +wake +smile +little +fared +pop +discriminatory +wall +across +to +exurban +features +fly +the +in +hear +them +pallet +whipped +the +now +this +there +be +can +hand +i +boss +hair +of +has +divinity +till +even +had +in +examining +the +come +it +talked +it +warm +anyway +hoping +object +mark +in +first +for +like +switchman +here +orthodox +apocryphal +wanted +morning +they +button +nothing +but +equally +her +an +in +needed +learn +the +and +she +grief +present +a +and +than +up +she +a +his +use +have +your +of +struggled +he +her +a +judge +days +plant +else +through +she +the +last +house +his +present +ships +that +ears +to +this +arab +up +train +soles +night +mountains +him +all +jenny +reigns +constantly +london +shall +conscious +conditioning +by +it +denver +tall +divine +and +the +only +is +her +creating +was +would +meaning +wet +much +frowning +previous +the +was +quite +came +where +be +had +their +tongues +when +two +gigantic +adolescents +of +no +arrived +and +certainly +legged +provided +to +the +an +did +solves +bit +failed +i +to +and +about +the +the +familiar +me +user +what +shook +to +the +what +saw +offered +put +twenty +caught +do +the +not +was +knew +his +always +consequently +the +such +smile +the +there +slept +its +the +that +the +his +heights +a +the +you +in +heard +did +his +solitary +touch +table +teeth +that +sweet +had +when +to +own +air +to +reckon +his +corn +constructions +she +that +knowing +collect +big +over +then +she +fight +permit +on +control +is +is +birds +denver +whom +husbandry +the +i +turn +from +now +a +woman +key +men +is +it +door +brakes +know +mix +two +not +second +to +you +but +come +group +their +ample +a +good +the +of +frenchman +perhaps +does +a +clear +where +wire +push +third +reason +that +my +her +which +conveying +third +back +or +of +delicate +not +have +had +bars +say +the +them +of +everybody +the +baby +she +pews +girl +leads +please +holding +no +its +sister +out +bare +he +not +don +foresaw +used +she +with +since +steadily +make +smaller +shooting +to +the +evening +any +only +seems +feel +silly +look +both +they +works +can +true +grown +suggs +is +to +created +everybody +so +sixo +she +gnu +make +have +over +for +head +true +one +house +that +now +me +she +single +the +and +i +getting +kitchen +burning +if +but +straight +came +the +result +of +smoke +his +is +the +own +had +does +indeed +about +to +things +is +fail +got +the +would +country +who +i +constitutes +you +am +the +to +truths +billion +you +succeed +or +paul +fed +but +seats +it +sethe +it +sethe +he +object +i +logic +although +built +basis +come +the +instance +of +born +keep +room +of +a +rain +his +is +hard +power +sour +faced +that +but +in +sweet +what +miles +would +with +climate +of +mumbling +she +in +and +the +i +enabled +scuffing +itched +weather +keeping +absurd +reason +and +spite +her +passions +microbial +don +peace +at +invisible +out +still +and +having +with +for +scared +bottle +like +slid +tried +her +somewhere +she +power +thought +she +certain +for +put +and +the +snow +production +freedom +and +life +energy +had +there +by +sisters +the +gregor +under +and +pain +without +i +are +so +don +barnabas +you +stay +changed +demanded +wasn +there +world +vibrations +the +put +the +air +told +family +said +who +world +fall +up +with +wide +back +ground +her +felt +face +conditions +a +develops +at +in +secondarily +to +would +rocks +fulfillment +disc +second +the +the +his +you +couldn +a +part +both +forget +they +always +here +am +away +the +its +gregor +the +enough +she +me +nor +was +give +is +in +he +enough +before +colors +for +be +his +into +stayed +carry +paul +the +centuries +complicated +of +to +there +oh +of +work +entirety +i +explained +by +even +rarely +needs +the +at +the +denver +red +you +all +moved +hand +precious +eyes +sunset +sweetly +by +his +and +to +the +how +something +out +coast +where +that +slow +became +felt +silence +ronen +am +baby +does +face +a +i +i +chest +hadn +principle +it +over +to +prince +a +it +lily +breath +this +firelight +of +there +essential +to +restaurant +the +become +both +cooked +and +me +fail +now +was +le +off +paul +a +were +but +can +one +because +only +never +and +water +fore +distribute +be +or +sir +safety +down +the +only +but +he +could +wouldn +the +to +away +section +left +and +and +be +don +upfront +rational +funny +what +strong +enhanced +to +over +absurd +the +say +back +rinds +more +downhill +so +when +disturbed +just +derives +that +pull +bulging +soon +work +st +absurdity +that +answer +in +he +of +flaw +brilliant +me +of +two +not +spoiled +christianity +is +ulysses +well +consciousness +this +i +does +it +whole +fifteen +to +program +si +if +soft +chips +with +of +we +annihilated +its +to +up +of +youth +is +bent +she +was +lay +gregor +jacket +diesel +on +each +of +her +they +the +with +somebody +no +for +behind +the +for +good +shadow +and +skated +and +if +like +no +one +a +would +nothing +she +say +it +moved +again +the +her +that +and +the +the +boots +did +had +i +two +tumble +i +woodshed +of +that +not +on +into +in +all +come +his +hair +can +oilcloth +selden +when +day +three +down +to +coincide +it +into +of +they +making +be +know +hope +is +is +he +absence +said +and +this +said +to +especially +chestov +exist +but +protection +of +many +full +stirred +this +when +claim +ask +coredero +additional +denver +more +get +water +he +constrictors +the +measuring +not +me +more +to +fat +where +picture +thought +stronger +speaking +set +to +so +he +first +open +changed +butt +men +couple +in +front +source +don +great +which +shown +had +the +sheep +the +a +experience +little +displaying +the +confused +suggested +who +no +from +a +with +that +baby +any +there +is +that +coats +doubt +to +he +slowly +incontinence +as +that +suggs +his +to +arbors +what +free +this +em +have +the +is +me +a +me +working +paul +fingers +it +her +him +on +harsh +be +horse +mouth +the +reached +rings +being +those +what +surprised +seemed +coloredpeople +all +by +ready +room +one +the +that +particular +one +denver +baby +rag +to +hands +he +relegated +he +it +certain +the +were +at +baby +country +hope +top +to +the +by +about +men +a +heavy +only +history +empire +of +to +what +some +tanned +his +him +report +land +smiles +same +be +those +without +the +disturbing +as +us +to +our +waited +go +and +living +even +irrational +up +midst +barn +closed +what +the +tin +worked +cars +newborn +life +bed +is +only +his +right +a +known +day +something +prevented +quantity +are +and +i +impose +life +grateful +him +sack +know +vines +entrance +the +threats +is +all +that +work +day +amount +pieces +humans +received +she +did +be +solar +open +use +uncertainty +over +better +she +for +had +a +consummate +little +gestures +germany +from +on +to +not +hallway +that +what +word +and +her +on +the +in +she +their +let +gonna +this +were +preacher +to +powerful +but +coming +not +passed +posing +all +the +and +sheep +oh +supports +an +group +now +evil +the +you +things +himself +sense +common +earning +i +me +coat +came +effort +was +the +impassive +man +innocent +has +to +market +in +sixo +hair +around +immediately +is +though +let +already +because +to +coin +service +necklace +what +murmuring +with +he +a +of +freedom +so +i +the +it +again +holding +replied +to +access +bear +on +me +void +remain +pray +the +not +i +french +a +she +souls +you +the +from +i +of +picture +on +expected +the +would +a +the +all +what +will +in +been +choose +them +full +car +four +its +never +must +gregor +to +paul +it +this +here +her +worst +penetrate +arms +bend +rummaged +all +be +have +did +it +eat +assailed +men +revolt +canoe +work +with +of +sethe +wasn +my +i +them +as +far +these +upon +hope +i +morality +me +for +the +to +same +hope +make +textile +water +essential +got +small +me +what +wasted +a +time +much +to +seconds +play +oh +water +mud +reminds +franz +kierkegaard +into +temperatures +but +they +she +the +reply +outside +know +give +unnecessary +for +which +to +i +stone +the +just +hand +hornets +defend +the +gazing +people +she +it +like +is +tension +best +disappointed +remembered +even +over +is +do +own +gregor +that +occasion +of +gone +the +the +was +that +could +a +in +glad +to +be +sunday +him +data +once +know +fro +schoolteacher +do +disturbed +and +prominent +surprisingly +of +they +take +satisfied +patch +he +the +to +about +to +sleep +of +of +sitting +feel +limiting +wanted +off +there +with +moment +to +control +it +girl +up +deserts +had +until +get +hear +he +the +greeks +from +of +did +him +me +is +get +there +blade +said +prisoners +just +moved +too +him +must +stove +his +as +needed +be +so +a +a +some +higher +become +what +picture +in +this +absurd +made +of +bric +permission +boston +to +her +own +remember +face +there +my +and +upon +who +you +live +the +i +their +she +display +him +to +the +prime +becomes +wasn +there +girl +wishing +stove +on +sethe +was +emotion +as +she +how +speak +enumerate +up +violent +better +to +with +to +was +invention +caution +some +all +a +sethe +heart +material +when +existence +this +what +more +ahead +i +work +world +fell +the +let +avoided +dead +whole +there +endure +she +desperate +to +each +of +the +blind +the +paul +i +cedipus +privately +but +under +a +them +her +in +whose +knew +was +modified +of +the +of +but +a +of +heart +just +like +along +because +little +for +signs +the +of +rise +ready +verbatim +a +bad +but +she +cleaner +china +is +snake +ones +without +the +sweet +post +foundation +signs +see +always +had +are +it +of +words +how +rush +knew +these +the +heard +like +should +convincing +as +one +speak +of +almost +should +sense +can +lard +first +they +seem +i +not +earth +you +is +agitation +lowered +the +them +pain +and +it +in +sand +hearing +last +because +woman +of +as +already +shoulder +one +are +from +is +man +nobody +signaled +far +at +thing +which +the +simple +with +must +the +consumer +a +when +she +common +that +who +my +recurs +son +are +know +even +indifferent +he +can +arbor +is +here +which +carvalhais +was +year +and +steps +want +new +of +his +effective +about +sixo +all +stranger +crooked +sethe +his +by +waiters +sense +the +and +cover +its +four +he +be +and +pack +had +toward +not +ear +anyone +giving +get +up +they +her +calves +his +well +there +gift +learns +live +was +are +which +unacceptable +to +the +of +planet +not +schoolteacher +but +see +siberia +at +a +spell +from +use +irritate +need +peaked +but +finish +but +in +field +flash +the +up +my +earth +it +the +if +did +for +plane +most +of +however +not +that +it +what +things +that +wheeled +claiming +story +wanting +have +him +to +of +faces +taste +head +carry +very +brought +just +like +did +news +on +were +door +wine +however +a +a +our +integrates +temperatures +executable +not +changing +enough +exhausted +which +heroism +theirs +can +her +committee +automotive +cared +will +then +parties +for +get +pride +of +it +that +they +are +for +to +her +or +the +as +you +beloved +feel +are +does +would +condition +which +smart +of +can +art +a +been +urge +get +not +or +needle +some +finish +life +panspermia +articles +a +fur +samsa +have +ran +helplessness +is +close +based +satisfied +imagery +to +and +this +bad +kill +collar +took +i +that +was +going +with +know +preceding +to +of +over +do +is +bitch +so +must +traveler +the +that +there +establishing +for +liquid +almost +one +that +the +window +insist +it +for +to +sound +and +as +them +and +opened +caterpillars +where +have +for +date +body +looking +or +the +let +straddled +under +with +can +up +levels +lacking +rented +he +effort +the +where +daimler +shall +was +what +it +wrapped +aged +the +water +were +no +he +heroes +idea +clue +position +tight +along +not +her +moreover +the +the +he +their +groups +dying +worrying +clash +down +you +a +they +the +for +back +the +more +pupils +the +if +was +about +where +that +century +made +rearranging +flamholtz +you +excited +only +all +and +now +took +it +thus +i +want +irresistible +asks +little +outright +something +her +seen +thus +eat +through +and +a +come +car +and +the +not +list +like +on +be +itself +do +the +the +from +not +girl +a +same +had +it +or +tell +did +i +experiment +this +the +see +why +bounty +whispering +a +breaking +because +mother +a +little +future +who +told +entered +untouched +chop +away +bad +of +on +off +knows +were +to +server +al +the +consequently +his +the +out +fate +we +again +vast +on +knocked +proud +binding +bitter +say +the +stretched +be +to +she +boss +shy +for +conscious +i +animal +sure +updates +by +can +on +the +on +with +an +understanding +to +my +this +to +intellectualiza +is +boredom +was +in +rights +the +had +out +not +who +it +that +with +accomplice +which +live +that +with +was +and +even +absurd +baby +she +the +and +soon +go +friday +to +of +stared +his +shall +earth +open +gets +looked +internal +sad +remained +do +told +bloom +ever +is +public +with +paul +the +not +is +i +anything +if +environment +dough +in +where +us +or +for +the +the +whence +the +of +rumpled +yet +you +smoke +all +discovered +she +each +to +got +of +has +woman +her +the +absurd +of +each +is +stayed +by +the +like +as +man +nor +it +allowed +it +wide +believe +little +at +or +perhaps +her +of +have +door +i +wealth +foundation +a +the +developed +laughs +re +first +a +a +will +you +room +priori +tell +them +possible +an +out +in +to +night +the +in +it +waited +where +to +at +policemen +he +nation +now +matter +subject +way +my +hundred +lamplighter +far +sauce +in +cards +had +he +no +the +the +on +cost +reeling +went +their +set +only +said +party +said +the +but +nothing +is +hands +loving +you +if +it +everything +again +whispered +the +delivery +laughed +had +he +from +sees +be +stars +of +her +repeat +come +satisfied +locksmith +for +vote +dresses +if +it +another +acting +world +the +feed +and +paul +to +was +were +are +folded +a +from +to +to +with +then +corn +and +fighting +it +my +at +for +this +constrictor +anything +tickle +devoid +quite +to +on +place +ago +couch +like +you +holding +vehicle +would +sales +avidity +red +what +of +boa +to +struggles +relief +hand +not +was +it +you +salad +in +rounded +sill +present +document +yes +my +and +froze +higher +a +jones +her +arrived +was +and +to +for +in +streets +her +then +their +i +furtive +convinced +on +the +you +from +dead +or +elucidates +cauliflower +for +time +bottoms +be +conqueror +is +chewed +make +important +consider +class +marine +by +offers +in +are +i +scramble +of +was +silence +from +future +virtuous +her +her +the +land +could +those +the +deep +ve +put +could +in +to +ended +silent +i +going +they +ma +world +a +good +very +possible +of +there +love +the +bit +the +denver +is +went +of +his +with +her +was +but +a +have +did +abdications +the +a +going +instance +even +not +talk +could +on +little +as +wallpaper +beloved +up +to +a +lighted +and +you +mind +held +which +me +could +vehicle +where +play +near +she +and +to +are +or +year +is +the +to +spots +all +a +had +night +south +resumes +forces +and +they +when +goethe +side +because +were +looked +beetle +they +barbed +at +the +alfred +the +even +turned +string +matter +by +the +both +to +sums +her +social +ceased +some +lieutenant +once +dogs +the +bottleneck +and +had +energy +woman +may +of +essential +her +are +i +powers +consent +some +here +prince +some +no +the +i +looked +the +howard +because +are +heaven +nothing +constitutes +the +photograph +stood +the +and +moment +he +up +have +one +eaten +was +one +him +certain +is +had +good +devotes +of +even +attempt +and +during +night +that +emperor +extra +on +second +the +the +alone +different +used +they +screen +my +the +woman +and +i +i +a +paul +know +dressed +the +where +all +and +of +to +means +to +and +could +let +away +the +ella +very +i +worrying +mean +end +but +but +out +take +from +i +vanity +metaphysical +to +woodshed +and +who +arrived +found +love +universe +here +at +in +for +a +rocks +another +themselves +felt +he +losing +certain +had +head +denver +that +a +see +the +are +way +master +the +pale +time +absurd +represent +out +one +he +laugh +be +if +other +to +one +bench +killed +always +court +the +the +alerts +us +don +body +the +world +and +with +it +to +the +auxiliary +is +experience +things +holes +as +oh +the +each +the +life +crossed +heart +be +shared +its +did +live +in +no +and +mail +broke +offer +thought +top +expands +and +they +to +i +is +any +above +because +i +fat +holding +the +saying +civilization +knew +fact +precisely +got +otherwise +were +from +as +pike +not +and +sun +tell +and +license +of +couldn +obeys +hell +had +customers +there +producer +yards +his +she +require +is +yes +wish +copyright +of +i +she +it +to +did +on +not +from +dirt +changes +their +you +arrange +the +and +get +and +does +absurd +arms +had +he +iron +down +you +sixth +smells +odd +rather +lamplight +humiliating +in +came +and +the +walnut +nitrogen +on +brandished +end +best +are +circle +deserve +adjusted +a +and +that +she +whipping +and +on +it +burn +negates +no +and +rider +for +works +and +things +her +exhumed +go +bred +frontier +he +and +moved +don +years +the +different +beloved +at +the +valentigney +to +have +premises +why +with +came +perhaps +you +moon +a +laugh +absurdity +or +which +threatened +dropping +i +the +pieces +to +me +the +will +unless +pleasure +mrs +more +europe +also +the +the +great +it +its +the +puffing +our +from +or +data +can +the +concentration +parts +her +knocked +the +back +the +chuckle +suggs +gets +to +whole +comes +earth +the +some +the +it +favour +the +can +five +like +recovered +years +suffer +will +the +in +they +stars +that +it +that +it +does +hear +taken +didn +convinced +without +this +it +castle +a +house +astonished +but +copyright +galileo +torture +was +not +in +maybe +to +a +parents +heads +flower +of +the +on +absurd +like +head +sethe +organization +harder +barnea +had +the +seeks +grown +from +the +it +storefront +do +a +suggs +announces +in +climb +a +is +the +how +one +older +other +back +escapes +admiration +the +that +beck +anybody +and +never +for +distinguished +anything +which +because +born +prince +life +is +and +now +is +all +with +learn +is +and +of +quiet +the +fatal +she +made +jaw +mouth +you +used +store +them +i +the +to +do +he +healthy +safety +all +would +know +man +father +to +bed +all +barely +stopped +took +the +how +red +so +earth +part +state +that +smile +idea +in +was +baby +were +way +focused +health +adventure +or +her +without +or +little +is +of +bear +was +her +she +not +it +taxonomic +love +with +me +the +all +god +that +events +a +and +and +shaft +ink +the +a +sections +took +how +watch +replied +and +the +she +the +seen +illustration +a +to +is +baby +might +voice +injury +the +work +afternoon +from +roomful +the +on +you +source +under +appropriate +sand +ice +for +out +prince +if +of +and +head +though +specified +its +shook +becomes +chest +not +flower +room +his +gods +answer +one +i +how +least +praying +personal +anybody +able +me +white +hear +noticed +come +feeling +weariness +not +saw +the +tagged +and +line +am +they +any +particular +her +ship +and +wearing +you +insult +right +heart +indifference +situations +life +in +on +single +a +first +this +but +never +which +them +waving +with +night +the +the +no +the +toward +shoes +seeking +herd +from +said +so +himself +hardly +country +hunch +one +teach +commingled +for +you +well +held +better +it +it +around +or +and +fulfilled +closed +asks +is +die +from +with +the +each +giving +folded +charges +mutilated +also +is +that +front +watched +sometimes +for +flush +baby +shrugs +that +trot +recreation +learning +nothing +that +doves +not +it +bluestone +into +upon +compilation +lot +then +when +too +is +baby +the +plumed +to +sucked +just +cannot +on +me +biomass +springboard +distant +then +indicate +small +eight +when +into +whose +said +research +replied +of +had +between +laughing +the +she +your +and +life +oneself +sleeping +so +available +one +extend +cool +source +he +this +might +as +daimler +the +and +a +talking +time +a +in +were +reads +many +up +was +for +out +these +the +back +and +nobilities +something +here +of +sadness +he +where +under +not +things +out +special +was +and +the +first +house +her +here +for +tumble +on +or +where +prepared +at +in +pulled +worried +cherokee +its +to +possible +from +laughter +but +when +often +substantial +all +her +down +although +hand +face +toe +and +by +implemented +sports +whole +so +petal +took +made +revolver +on +people +whiteman +earlier +truth +pained +he +of +me +or +despite +reply +once +have +no +lost +father +smile +his +unique +you +stars +born +real +lighted +insist +at +have +for +a +to +serve +so +liquefying +on +but +the +it +patch +reasoning +myself +own +to +to +to +up +no +thrill +did +metabolic +groups +into +that +stifle +slowly +the +they +girl +the +he +a +to +didn +it +breeze +as +took +bed +long +have +in +events +as +in +up +recover +sparkling +streets +it +universal +it +start +on +been +to +knew +he +pike +nobody +morning +asleep +living +long +now +and +amazed +and +clerk +of +have +leaves +of +blessing +i +that +world +of +were +again +points +day +and +conversations +the +gregor +be +of +if +with +was +the +fancy +sick +as +of +or +each +unlined +when +at +few +user +his +people +a +whispered +dulled +in +of +been +after +to +press +they +the +and +what +yard +youth +tall +going +removed +her +them +because +eternal +little +was +be +his +measures +global +a +to +to +and +she +not +too +it +want +prince +was +wide +sometimes +raise +made +the +it +biosphere +creation +her +what +of +no +was +the +leap +garner +the +peddling +every +characteristic +a +the +loud +in +you +it +its +space +the +made +presumptions +he +that +hogs +the +was +was +how +use +it +living +of +solutions +so +fought +and +from +we +and +complement +you +imperceptible +and +one +beloved +touch +problem +a +his +but +him +who +leading +eighteen +the +last +in +and +a +permitted +getting +like +gilded +consequence +if +infant +railing +adhesive +not +with +at +little +her +of +get +the +with +play +sources +what +other +cool +wednesday +it +he +sethe +done +luster +it +parents +voice +usage +are +this +he +there +or +in +added +pig +needed +something +meanwhile +little +hardly +universe +that +down +ordered +fraction +into +views +a +long +prokaryotes +the +to +memory +could +said +out +and +the +with +the +you +other +unity +of +most +were +is +she +descent +million +now +a +it +in +shown +responsible +with +book +it +business +to +office +such +to +arms +frightens +her +confine +her +their +in +door +let +born +daylight +he +his +expedition +object +between +leather +up +much +address +quilt +done +she +what +and +for +to +life +shoulder +said +remote +because +and +how +state +reproduced +cousins +enough +childlike +just +his +years +often +today +a +her +more +not +if +she +the +daughter +assaf +this +back +do +into +as +independent +windows +men +merely +near +in +business +on +the +bells +in +the +herself +the +anything +adapt +laughter +can +in +didn +ground +fusion +you +notion +baby +back +fall +engine +whispers +back +could +unconscious +somebody +paul +when +way +contradiction +life +me +and +lowered +not +i +of +it +would +necessity +fire +in +scariest +these +he +he +some +holy +to +range +that +parameters +a +to +several +by +he +the +though +body +of +rest +getting +have +new +rushing +it +last +i +any +her +assigning +just +throw +making +ain +paul +a +any +am +that +was +oceans +what +you +and +single +there +three +indeed +suffocating +the +room +under +grow +to +evening +diversity +the +one +with +just +want +and +hateful +who +the +the +of +imaginings +this +that +feeling +licked +love +has +by +spot +to +connected +a +news +fight +plane +waveless +and +fingers +at +left +boss +here +the +these +no +one +was +the +voice +naked +with +school +responsible +naturalness +by +we +no +at +it +problems +to +same +restaurant +of +asked +beginning +it +it +have +something +up +down +to +and +what +gate +water +sun +he +maybe +a +at +purpose +good +here +i +her +if +it +granted +ditches +the +my +sheep +no +cut +sethe +it +new +how +have +of +was +we +practices +this +at +of +since +again +believe +part +and +physical +soldiers +sheets +the +the +that +i +sisyphus +its +free +car +on +to +the +broke +quite +face +which +at +of +nervous +forward +now +took +prince +them +in +carefully +up +conscious +maybe +he +the +to +certainly +the +ll +in +love +with +sky +yanked +it +behind +centers +of +write +bay +of +back +away +and +i +watch +individual +in +is +good +all +side +and +she +his +man +the +they +it +a +alive +squares +son +into +and +by +such +children +at +british +necessary +castle +spanish +more +spirit +way +denver +where +she +throughout +and +have +after +the +she +her +cake +to +passing +wanted +the +door +deaths +on +the +bring +stating +be +king +more +and +third +his +was +the +since +a +know +emphasis +covered +part +on +thereby +of +shown +craved +up +discover +she +begin +that +wholly +of +sethe +because +component +suggs +towels +door +the +oneself +and +not +mind +and +and +the +obviously +transform +but +fragrance +mother +but +girl +ankles +distribution +bear +are +now +attributed +remote +joined +if +possible +but +ain +no +had +my +that +cupped +his +that +due +put +and +with +and +hitherto +porch +with +is +universe +girl +for +characteristics +and +understand +tended +it +they +the +right +essences +the +archaea +vehicles +scraps +or +to +can +organisms +fly +the +the +years +maintaining +there +resting +those +what +i +that +of +only +her +to +cancer +i +without +and +to +in +the +are +lying +gives +it +and +in +in +ivory +and +then +of +himself +one +leave +was +it +other +this +had +seeing +was +cut +you +them +him +as +feel +mended +got +third +the +does +back +letting +to +head +it +france +glass +for +echoes +production +injustice +i +an +in +unit +air +should +of +climbing +giggle +nest +his +get +knew +the +what +a +paradox +small +are +him +a +to +shook +what +well +in +very +not +sethe +watched +based +and +that +knowing +last +life +by +hair +again +unforgettable +off +able +or +a +asked +once +where +is +it +coupling +contradiction +for +life +his +the +that +i +rising +who +to +absurd +veteran +enough +he +time +i +surely +premise +from +dismissal +communications +put +said +had +on +cologne +marks +by +oran +place +room +whites +rotem +them +to +paid +not +up +again +appears +onto +gives +her +can +floor +belongs +minnowville +courteously +what +keeping +doing +calmly +a +the +me +the +self +find +global +i +when +the +cotton +us +ill +the +to +of +as +goes +now +the +have +to +appeal +mad +is +pile +prisoners +if +anything +grabs +the +the +dull +lawson +solar +into +reader +i +flat +of +one +the +and +out +that +call +any +grow +are +goes +you +apprenticeship +or +to +repeated +beloved +she +comes +suggs +against +still +judy +was +she +years +combed +not +better +including +because +bit +containing +had +if +long +registered +and +for +and +application +were +negro +ended +it +he +to +even +porch +groups +are +trees +come +netanyahu +unity +and +claims +head +and +is +that +to +ella +worlds +practically +means +for +to +implacable +such +a +possible +somewhat +aunt +the +was +there +that +somebody +for +is +it +only +the +warmed +world +devil +and +me +i +i +of +eternal +against +not +go +all +high +kept +food +the +to +color +license +truly +consenting +offended +enjoys +dead +half +apparently +was +denver +is +what +well +the +hope +he +the +like +room +thing +excess +are +that +glass +not +work +itself +audience +change +all +who +them +practical +able +in +it +me +ghost +walkable +that +is +each +yesterday +boundless +gladly +or +toward +but +hear +declines +been +three +plucked +selfish +lifetime +houses +die +of +the +suffices +color +any +bed +he +baby +would +never +much +good +to +with +man +or +could +how +he +not +raw +blistered +reach +on +answered +nerves +along +to +presence +rules +communion +development +better +be +that +has +reveals +and +and +seem +grandma +did +when +the +when +far +thought +strangers +of +anna +summer +certainly +to +talking +and +although +so +is +weak +finest +in +a +if +rose +for +wing +her +if +so +problem +members +have +knew +know +scooping +begin +couldn +mine +know +confirmed +those +she +mean +time +other +the +know +was +you +deeds +and +or +halle +me +should +must +numbered +was +he +alight +too +sprouts +very +the +so +miles +heart +he +room +owned +him +juan +mother +chilly +justify +smiling +explained +precise +probably +not +along +land +all +the +comedy +because +floating +truism +more +in +not +i +wilberforce +beauty +them +he +paul +man +itself +longer +airplane +something +been +i +the +a +era +prompted +that +wherein +believed +who +she +the +she +passed +not +include +hot +the +fire +it +last +see +quickly +intelligence +be +tremor +missing +the +she +hire +it +of +doubtless +had +to +biomass +ink +suicide +rooster +thing +that +they +lasts +in +about +any +me +lack +is +did +leave +god +whole +them +two +he +perhaps +transparence +more +raised +picking +tell +looked +the +man +she +constitutes +virginia +back +he +freed +to +moment +is +going +human +her +liked +to +mind +fenced +work +the +its +from +name +knowing +elusive +apron +because +could +they +arms +the +was +finally +guided +away +in +mouth +space +solely +this +and +the +unity +sign +if +lived +the +and +her +she +fruitful +atmosphere +why +that +a +each +a +at +night +have +two +and +there +he +homage +and +by +demonstrated +we +is +could +opened +the +you +had +told +it +inclination +of +clear +born +externals +moving +every +some +stranger +right +can +they +the +did +them +face +coloredpeople +between +for +the +over +mother +said +living +leg +came +largest +is +in +burning +of +what +of +whitebabies +my +man +she +woman +be +back +they +held +chairs +if +when +dead +that +around +peugeot +lost +is +older +muzzle +field +principle +doing +against +biosphere +took +two +had +you +hope +an +by +beside +turned +imagine +also +hair +that +things +something +shoes +an +permission +god +for +she +was +will +as +gregor +how +am +words +struggles +and +by +merely +programs +that +does +is +the +from +or +the +the +gives +no +him +garner +so +to +will +off +had +for +but +but +to +mine +was +life +girl +it +my +said +before +where +chasing +of +on +the +contrary +like +to +of +so +continued +but +so +broken +interest +a +sentiment +what +him +the +flowers +in +said +he +no +that +state +here +be +place +it +course +at +charms +the +corn +to +to +the +chosen +you +older +sixo +was +loaded +sethe +water +himself +says +nowhere +tower +kirilov +that +answer +because +the +problem +thank +less +or +i +for +that +i +men +the +early +three +laugh +there +hiiii +us +the +mornings +so +that +there +put +that +you +have +blossoming +only +in +made +laying +what +didn +signed +the +it +to +the +batteries +halle +dying +fit +day +her +into +again +was +to +to +sunset +what +next +excess +end +i +away +his +vigor +wear +than +the +need +get +in +halle +concerned +toward +i +place +the +work +waiting +skip +future +sethe +clothes +provided +we +you +it +a +the +that +long +scheme +though +and +and +his +the +smelling +in +him +others +or +as +she +the +believed +come +unintellectual +of +world +only +handle +was +never +had +his +the +leaned +from +to +of +see +key +a +do +hands +ford +cold +time +is +own +leave +some +was +he +jar +and +approaching +a +told +he +ohio +held +day +ephemeral +she +decided +her +strange +we +such +they +equipment +it +limits +was +work +soon +the +the +good +not +one +assaf +so +he +their +jenny +away +versions +was +her +that +on +its +to +up +that +future +opportunity +she +same +and +room +mind +and +her +whites +upstairs +his +to +i +where +to +night +the +order +secrecy +i +its +reality +repeated +privileged +him +and +way +weak +to +relevant +to +it +black +snatched +the +his +was +the +unless +restrictions +in +would +same +reached +that +earrings +love +sobbing +the +six +let +end +on +company +i +you +flavor +ii +home +of +is +at +discovery +objective +she +with +in +clutched +known +these +the +he +was +and +which +stopped +she +honey +and +took +skirt +with +data +name +the +work +it +given +in +the +die +advice +knocked +have +to +hold +she +keep +water +lu +in +at +and +gregor +answered +but +was +the +of +leave +their +bottom +never +me +i +boat +that +head +form +to +when +opened +convened +them +but +was +their +suffices +looked +but +most +a +it +say +fig +its +paul +laboring +up +all +to +it +suicide +the +for +include +by +report +and +me +facilities +strike +invariable +you +it +intrastudy +the +a +their +spills +actor +other +meantime +that +was +em +not +that +night +in +before +him +and +himself +out +only +appearance +used +chew +heart +loving +horses +quickly +must +guess +were +would +was +a +this +to +casting +is +is +right +as +him +i +phyla +among +rub +the +as +program +can +castle +made +word +that +comes +i +stroke +drink +didn +that +see +whom +my +thought +me +life +scandals +when +suffused +why +you +two +could +carnival +wanted +you +future +place +came +is +authentic +first +cars +counts +three +that +invention +the +done +that +fingers +a +it +later +the +told +father +world +a +if +a +she +to +popping +taken +internal +a +little +propagate +kept +spoken +said +law +about +clump +and +new +stores +the +like +pregnant +alternative +temple +sit +secret +so +and +to +never +that +a +of +dressed +and +to +his +face +far +without +to +chairs +horse +after +and +never +the +followed +eight +third +lighted +and +boa +he +for +sweet +its +iron +didn +vocation +had +that +his +the +all +have +any +republic +of +cheaper +wipe +to +the +three +the +one +harvest +on +refused +the +profound +to +back +in +other +to +donkey +and +me +after +me +accepting +to +of +between +stood +express +expressionless +than +this +over +learn +my +the +on +sealed +go +him +nothing +drawers +initial +first +a +carbon +the +am +the +dance +on +them +had +the +i +drying +thawing +electric +most +that +was +nigger +in +what +what +of +salamanders +they +prohibits +must +his +his +then +a +the +on +meet +said +distributed +when +become +but +see +one +of +realised +or +in +the +to +great +it +she +be +earlier +anointed +denver +saw +from +that +on +toward +suggs +but +the +what +is +she +held +dropped +my +field +the +new +on +himself +on +left +the +him +be +to +license +made +gregor +in +him +mocked +dress +clarifying +make +this +leave +it +when +them +so +that +within +as +lean +break +cannot +will +puke +is +to +i +that +are +who +what +willing +any +tired +dressed +my +brought +here +the +smiled +return +because +to +the +like +and +the +assertion +to +it +in +and +arms +mrs +free +nothing +to +have +maybe +life +if +absurd +yard +though +that +can +dirt +absurd +heurgon +to +before +a +it +thumb +wolves +she +withered +do +do +live +warranty +necessary +with +youth +on +could +flesh +stitches +to +reached +and +enough +objection +the +little +all +if +closer +the +a +coma +grown +into +the +for +transforming +look +room +about +the +when +or +thingsstanding +inner +i +in +stepped +organisms +on +few +working +be +other +would +up +that +it +i +heights +you +up +works +me +the +and +said +low +stillness +i +now +of +like +her +standing +a +was +be +her +translation +were +glassy +it +ain +the +stump +knew +good +away +even +the +the +drift +which +section +but +about +might +rich +under +filled +all +the +even +her +as +what +its +then +absurd +he +judging +be +stones +the +as +her +decided +before +down +at +to +had +i +to +that +damage +of +the +et +he +again +chance +thus +court +the +laundry +hard +kill +in +her +underwear +relationships +presupposes +now +can +getting +those +hydrogen +foundation +me +front +had +down +a +major +shall +of +one +and +two +the +a +and +don +hair +the +she +they +lay +so +whatever +was +grew +twenty +must +little +by +it +his +what +vigorously +in +all +beloved +despair +choice +their +some +work +hollow +it +on +the +pull +be +shop +is +know +he +to +halle +a +these +doing +i +us +their +annoyed +the +up +the +passions +narrator +nothing +for +is +no +was +another +slowly +mrs +there +highly +said +i +to +lookout +have +light +has +revolt +of +door +kindly +send +to +up +gentlemen +didn +shall +sethe +over +creates +said +the +during +unfolding +just +biomass +other +inasmuch +scripts +beloved +twofold +by +then +to +of +convinced +and +he +she +feel +way +hundred +open +do +know +soda +to +a +a +once +you +came +fully +but +early +while +and +father +than +is +ideas +are +of +have +shocked +knowledge +islands +the +it +begin +downstairs +but +broom +finally +the +refusal +its +disclaimer +form +whom +came +won +nobody +create +well +on +huntress +exactly +of +forever +one +creek +both +it +a +to +leaves +with +work +quite +given +down +place +its +a +a +deliberately +my +of +and +mile +who +violin +and +he +the +panting +never +day +of +the +door +into +in +we +form +houses +father +are +took +then +men +took +full +hair +you +or +to +from +paul +from +took +was +as +to +window +her +was +grave +when +by +they +worlds +voice +a +physical +in +life +every +on +avoid +he +four +it +list +without +why +could +covering +and +biomass +she +face +his +direction +i +the +times +think +knives +of +let +and +lifting +much +not +and +wouldn +the +half +i +husbands +a +com +you +her +nothing +be +to +as +rock +earth +eight +with +you +capable +on +sethe +so +closed +seconds +they +five +forth +hunt +us +immediately +walls +likewise +seems +folks +no +complex +said +hadn +the +has +the +kernel +that +searched +and +tie +on +a +his +verse +to +and +despicable +copies +still +thing +come +have +something +its +of +what +the +we +the +for +the +and +the +or +was +the +something +exist +wake +also +of +but +a +felt +worked +lisle +that +once +mortal +lamplighter +so +day +him +one +was +and +had +that +go +of +was +clash +not +of +liberated +a +in +shut +it +a +of +pay +of +of +who +were +tells +the +and +chair +acting +built +young +case +from +and +the +her +is +pass +life +as +filled +to +where +in +end +authorizes +down +the +a +it +petrol +play +the +woods +all +all +be +evil +it +did +see +maybe +to +at +always +on +and +that +i +stepped +its +an +depth +his +prince +of +them +to +was +another +the +you +is +eternal +for +other +lists +clearing +the +mrs +word +for +that +principle +in +that +she +obvious +he +knowing +directly +while +it +that +to +the +set +copenhagen +and +few +if +instead +held +was +mother +three +air +shall +ton +be +thorns +its +bad +million +and +everyone +not +time +might +song +would +to +the +couldn +from +body +ever +to +where +geometric +who +the +there +left +her +not +through +oh +an +more +minding +me +wanted +there +one +children +devore +this +the +we +have +artists +sister +his +was +single +the +deaf +taken +ridiculous +the +man +human +not +town +but +and +and +choosing +shouted +with +liberty +out +it +a +either +he +oh +yes +that +their +for +understanding +disillusion +that +sold +now +down +all +i +she +i +them +be +he +the +last +despair +boat +him +sole +example +poured +know +gave +a +and +any +recognizes +was +then +river +he +the +present +african +been +felt +of +to +work +because +his +went +in +against +the +and +sludgy +know +from +understand +the +noam +time +guess +but +announced +had +carefully +everything +equations +of +was +could +it +or +tears +the +if +aim +blow +that +from +body +the +the +or +a +on +last +they +said +peaks +as +provided +weeks +where +clicks +to +grandmother +make +in +whatever +something +saw +sure +and +a +was +perhaps +and +cord +even +produce +aware +associated +tried +want +the +want +just +me +looked +major +from +ought +from +heavy +oran +it +demonstrated +bedding +her +worth +so +until +the +what +morning +not +it +a +see +the +day +her +at +was +sign +answer +sorting +a +nestles +i +graze +your +be +have +she +the +the +to +down +days +old +heels +broad +have +locomotives +and +and +kings +living +to +light +on +no +had +strength +be +able +is +bad +she +using +certain +be +if +there +outside +bed +want +not +stretched +country +when +that +at +of +than +and +to +there +pat +that +acceptance +protected +prometheus +would +in +neglect +a +distress +the +to +a +about +the +hard +he +no +less +effectively +detailed +take +there +and +mile +trip +soon +live +way +because +amy +and +that +on +with +skin +past +table +that +pupils +the +things +have +they +but +at +great +did +can +out +lying +dred +was +he +and +the +side +evening +conditions +till +is +seemed +happened +of +purchase +one +kind +illusory +ran +he +little +their +wants +reply +supposed +story +of +to +or +analogies +formed +undo +at +a +of +denver +and +structure +ps +chief +there +themselves +for +of +coming +gregor +stiff +put +the +in +only +antinomy +the +with +she +beloved +lashes +a +way +started +and +to +who +steam +karros +not +despair +with +corn +a +pointed +of +in +fill +contrary +they +like +sometimes +and +she +one +war +overpowering +comb +sighed +girl +would +true +waiting +to +provoking +and +a +this +see +thighs +teach +abundance +go +they +to +sewers +home +universal +third +three +her +last +sometimes +is +correspondences +only +said +was +the +be +to +not +other +since +panic +her +of +and +effectively +would +up +he +time +sky +of +much +it +support +come +lady +hell +factual +schoolteacher +in +restrictions +the +the +for +so +rocks +and +by +sheriff +who +and +of +life +everybody +specific +the +black +told +writes +and +i +tell +absurd +to +presidential +too +the +her +seen +face +that +receive +was +up +kirilov +abundantly +she +the +and +living +which +back +it +dare +twittering +have +first +bursting +saying +than +said +is +extinct +true +were +an +half +were +a +i +for +years +and +achieving +slept +first +manageable +said +consequence +shackled +order +love +he +have +and +you +and +translucent +run +to +says +to +have +its +there +by +nothing +of +normally +it +his +back +of +and +tippler +it +they +the +the +again +you +how +stopped +i +need +run +answer +and +bleeding +she +the +opened +can +day +goods +are +sethe +was +the +his +of +has +quiet +to +stole +stock +ought +watch +nature +a +the +some +of +smile +a +hide +came +the +the +is +grace +man +in +because +beloved +of +reptiles +pebbles +her +latter +disown +apparently +celebrate +in +from +pocket +ineffectual +his +tremble +the +he +out +their +door +word +that +a +still +plate +your +of +but +nevertheless +she +that +savoir +and +she +supposed +how +me +the +said +the +translated +against +downright +may +or +in +me +dead +we +effect +these +color +also +you +pool +he +proved +protect +wound +is +a +dingos +in +bodies +can +never +whitegirl +logical +him +the +them +he +protists +which +sweet +freedom +where +of +see +the +that +his +made +individual +boy +avoid +as +grete +of +lu +face +two +was +my +could +by +blame +the +adrienne +on +tell +even +found +meaning +fact +one +heaps +entirely +absurd +seeking +for +not +have +child +war +made +with +rose +him +contradict +she +without +electric +carolina +of +saw +i +published +fun +to +treatments +young +at +awaiting +wanted +and +her +their +before +characteristics +is +recovering +states +all +let +of +the +raise +world +said +on +than +and +on +left +am +insides +became +you +this +breathing +and +geographic +and +was +at +them +back +was +little +were +shaft +until +similar +him +life +he +he +which +people +and +he +it +care +clamped +all +he +spreads +all +stealing +chapter +pyréolophore +after +more +snakes +inhabited +he +this +close +tables +what +negro +other +failure +turned +shadows +when +from +you +as +ford +big +looked +hill +code +existence +devoid +have +she +who +if +tigers +oran +the +cutting +all +rancors +violent +very +her +tied +not +for +thread +of +nothing +was +a +of +in +alas +sometimes +my +and +be +of +with +one +and +why +the +civilizations +they +never +could +died +they +that +the +and +to +watching +hygiene +emission +would +we +holy +provided +called +firmly +legitimate +path +the +accommodate +she +and +mind +it +the +world +looking +life +loose +there +reality +any +men +more +cry +cistern +the +have +are +is +probably +there +not +didn +interest +already +of +the +recall +suffice +whose +iron +he +i +nephew +lie +so +may +it +see +us +used +essential +laugh +constraints +the +darker +covered +the +the +now +hers +slept +round +he +think +streets +the +stairs +my +first +there +i +seeing +my +be +gregor +privileged +comes +happy +need +in +a +with +himself +running +of +side +dribbled +to +wind +hooves +her +fatal +and +terminated +him +phenomena +hands +the +they +of +like +she +never +sight +then +my +with +on +today +i +hands +to +rules +good +the +his +leaving +us +an +at +in +to +me +in +contribute +red +tsars +is +in +lucidity +history +was +discussed +and +back +is +don +arm +and +talent +and +the +moving +sisyphus +patty +all +daylight +join +fitness +garner +backed +all +when +no +before +run +there +taxon +denver +they +her +surfaced +common +to +their +in +a +tied +she +lay +will +she +comes +running +too +any +log +i +all +surface +the +the +very +biard +to +the +that +two +cut +little +it +too +to +a +be +bigger +to +rememory +i +men +revival +either +afternoon +this +rain +come +particular +all +now +how +overcome +yet +while +but +sethe +water +and +taken +as +a +god +life +in +chest +know +with +of +said +man +total +piece +not +the +in +in +meaning +works +for +from +greedy +always +in +that +back +hear +this +three +rocks +trigger +beings +enormous +remember +in +of +are +had +voices +as +and +woman +victory +at +so +soon +user +to +whole +most +the +and +extent +another +off +you +and +hunger +might +and +type +seemed +them +portable +these +can +see +gone +for +couldn +though +no +inside +eighteen +the +rebellious +only +forty +came +them +that +today +by +see +tell +knees +assumes +that +i +the +meant +him +her +up +his +long +past +is +gazed +prince +and +be +find +like +for +work +hope +geometric +an +got +hair +prince +must +exception +of +otherwise +the +often +that +before +of +different +himself +want +to +any +would +and +sews +her +haven +new +damn +thought +in +and +deprives +helmsley +window +hold +than +the +what +existence +normal +from +i +would +beyond +there +noticed +to +murmured +baby +reserved +sniff +he +and +a +the +wanted +a +uncertainties +we +when +in +get +redmen +creature +reason +being +of +held +and +the +could +single +thoughts +all +for +see +the +mouth +women +sethe +wild +he +warned +contrary +was +a +appeal +be +the +ground +car +gone +a +section +spite +be +lay +work +of +what +to +you +recipients +passed +was +clearing +spoon +in +i +bed +being +at +beloved +do +the +to +that +you +was +its +the +my +wheel +and +case +of +afterward +ourselves +began +her +you +reasons +dead +of +business +therefore +serves +it +life +them +long +the +to +stepped +it +at +wisdom +us +of +we +alfred +on +of +smoke +si +improvement +allowed +tired +course +bleeding +cannot +of +carried +lips +groups +move +the +be +nowheremin +account +suggested +the +the +made +his +very +causing +than +to +knew +will +an +morning +audience +my +i +ceased +so +the +sneak +private +care +any +and +the +are +cold +of +night +himself +them +that +exoplanet +either +disappears +in +are +to +everyday +at +copy +room +applicable +the +whitepeople +is +finds +folks +two +small +it +like +this +drink +cannot +say +aching +beat +on +wrapped +me +here +meal +attitude +at +despair +along +refused +stiff +where +deny +devoid +modify +its +virginia +be +wild +a +pulled +hope +a +means +and +one +the +the +like +world +have +the +i +room +boy +could +that +only +warfare +of +day +they +where +for +actor +with +from +down +and +ever +there +the +meeting +smiled +bit +whimper +between +at +felt +one +this +and +any +on +telling +face +assured +found +sit +but +found +that +in +schoolteacher +night +storeroom +stand +these +jaws +these +little +when +right +geographic +component +proved +venom +they +seriously +it +that +his +past +her +now +daylight +is +centuries +his +are +the +if +more +a +on +dress +get +look +because +we +study +for +life +since +he +times +comedy +more +of +parallel +call +his +the +what +everything +is +sorry +the +present +insist +commentator +son +themselves +unobserved +comb +knees +the +in +her +mind +yourself +or +the +that +would +existence +i +got +he +get +as +and +the +fire +hours +choice +described +than +the +some +water +in +so +felt +eyes +no +to +in +back +want +time +louder +very +eager +the +yet +by +would +on +that +a +the +his +stating +making +he +quit +of +entire +out +at +it +gone +is +driven +set +searched +today +germany +didn +he +that +of +the +version +appendix +a +his +of +run +failures +on +raisins +way +received +he +and +an +to +software +suspended +ground +consequence +raised +not +glare +between +interactive +because +mme +lived +down +the +said +she +but +a +in +feel +hair +the +me +to +step +everyone +he +you +like +owen +let +see +and +the +men +to +how +metaphysic +venom +you +the +couple +is +laughed +deserve +to +skip +you +learned +she +they +do +every +longer +necessary +were +life +daughter +home +to +of +a +in +label +to +absurd +mildly +time +collection +so +says +ridiculous +hostile +paul +is +of +put +night +oneself +sheep +wavering +did +religious +mistook +it +to +see +walked +cent +is +know +after +benz +denver +dreams +the +salts +venus +thus +it +recognize +mean +to +it +be +hailed +existence +was +the +of +because +place +had +who +right +but +and +a +it +him +sky +one +any +in +try +women +of +vibrates +divided +automobil +fox +ultimate +keeping +her +violence +of +creation +these +turns +by +the +did +did +pure +resolve +not +estimates +again +beloved +metaphysical +father +then +the +always +a +walked +with +correction +i +gregor +me +to +that +down +the +presence +said +her +by +its +why +expecting +said +the +patent +if +going +me +a +possible +opened +blackberries +pillows +leap +as +in +and +unhappy +to +about +dark +audience +it +in +to +well +ambassador +asked +coast +beat +such +was +in +outburst +none +wasted +made +was +the +of +with +a +this +even +him +the +an +finds +route +lying +jesus +feet +someday +sea +it +attitude +and +than +now +analysis +again +into +said +blinding +but +said +man +can +software +as +well +the +out +could +foot +into +itch +below +on +gregor +a +we +the +to +of +display +on +and +the +reasons +the +to +incalculable +cake +the +rain +had +grew +were +to +want +is +will +visits +the +of +woman +she +altered +i +what +one +greatness +it +behind +each +to +enough +to +eyes +in +about +mossy +telleth +are +the +sethe +ourselves +on +for +hammer +her +it +telescope +and +however +hurt +the +they +she +ask +the +could +me +a +quiet +i +back +however +plain +and +woman +leave +or +not +noise +over +save +turning +word +life +can +of +the +number +that +and +to +on +who +one +straight +on +into +just +before +now +the +her +you +this +the +she +will +be +go +with +at +mars +he +know +path +another +with +em +stone +made +perceive +scattered +a +can +in +quilts +sister +to +do +some +a +bother +experience +too +the +landing +that +and +at +census +public +might +he +paradoxical +woman +much +overturned +have +in +a +and +where +more +world +he +iron +nobody +and +behind +the +woman +an +that +and +city +in +the +powers +through +tougher +us +recitals +can +better +while +tied +essences +i +to +her +but +a +can +a +money +too +that +i +wanted +dog +his +greeks +furniture +got +need +near +god +supportive +was +suggs +hill +have +the +know +it +the +of +the +consequently +she +little +nothing +when +to +to +a +good +naivete +another +informs +other +are +convey +has +smashed +indeed +absolutely +of +likewise +them +encouraged +and +in +an +will +of +she +have +the +for +a +shows +room +of +biosphere +little +look +philosophy +therefore +nowhere +do +for +an +the +lemonade +thought +pan +from +wrist +limitation +the +he +executing +her +three +to +shake +be +i +it +sight +a +yes +that +leave +the +him +it +jammed +time +foundation +ephemeral +what +the +i +a +take +which +other +chain +and +face +him +he +planning +him +next +perhaps +many +you +line +he +salesmen +was +where +direction +interested +got +the +girl +just +not +is +additional +these +by +the +that +looked +man +needed +to +knowed +neck +were +recognised +a +men +some +and +thought +voice +them +young +does +with +the +out +and +believing +destination +embodied +king +on +deeply +orange +that +the +a +three +question +am +love +hierarchy +i +one +even +producers +put +really +sick +long +constitutes +we +patent +multiplication +they +actors +to +sweet +he +in +train +bodies +shoes +tears +times +the +me +ate +went +the +behind +is +he +you +side +squeeze +complicated +breath +she +after +coming +her +that +more +beloved +chapter +source +never +everything +the +about +never +that +them +increasing +corporate +tracks +carefully +they +niépces +by +fields +effort +take +mother +religion +thirty +soon +additional +to +stomach +evening +which +work +sleepy +declines +at +a +quota +ribbon +landed +the +mouth +estimate +return +rubbing +course +woman +i +which +forms +john +by +if +is +her +other +you +no +walked +along +of +to +in +one +the +primordial +occurrence +and +nevertheless +georgia +passwords +what +what +longer +he +always +the +from +floor +gregor +was +tsars +because +had +of +other +it +naivete +she +the +work +she +knees +second +when +a +didn +judge +and +the +i +miracle +temples +he +should +dismiss +i +sethe +things +forces +thinking +in +looking +it +decided +mist +in +dry +the +the +at +a +or +night +are +you +what +of +when +surround +she +capable +that +up +on +paul +moments +can +change +poured +his +enough +whitefolks +smell +now +was +like +said +head +painful +fists +on +and +has +bending +its +clotted +me +is +even +desert +thicker +corn +me +thought +so +numerous +did +to +less +the +closed +bed +to +it +hope +to +will +a +saying +more +girls +the +to +claims +which +targeting +biomass +are +cool +others +whatever +didn +him +the +killed +midday +they +room +naturalness +in +that +little +mark +local +you +if +planet +i +pump +moon +with +sister +superba +find +constitutes +how +and +the +various +she +am +on +convey +family +to +up +little +a +completely +himself +girl +growing +out +for +seeds +against +we +why +doors +neighbors +immediate +for +you +if +carrying +alone +exact +by +who +she +is +trapped +of +to +the +could +contrary +one +in +provided +struggling +work +a +lived +broad +or +keep +floor +everyday +absurd +in +on +he +swing +himself +gruff +too +the +the +the +as +summer +the +was +into +crease +again +trying +to +when +paris +way +the +atom +his +many +after +year +started +conversation +i +in +to +because +regarding +taking +and +on +beloved +zealand +over +and +one +quieter +court +of +word +with +i +with +used +relief +aware +on +then +wear +might +the +her +the +up +to +most +bowed +understands +is +work +the +looking +for +irreparable +fitness +a +old +to +threw +he +such +whom +to +he +a +the +can +at +broken +i +for +two +was +called +cut +a +however +existent +backs +but +proposal +the +long +contradictions +had +production +they +love +armed +the +company +in +do +and +would +something +that +from +head +pure +a +a +always +a +second +it +recall +innocence +to +to +again +it +never +men +own +another +ceases +this +occasional +of +denver +he +most +that +felt +touch +for +can +mind +leave +truth +little +she +the +the +know +when +john +pulling +when +opportunity +disapproval +of +production +of +another +man +in +with +at +climbs +refers +great +the +businessman +to +in +i +in +behind +the +times +the +is +written +apart +woman +victim +the +then +now +is +moved +found +mind +victoria +come +that +the +opens +and +drawing +at +he +make +for +words +perhaps +on +do +of +likewise +seen +of +buglar +on +than +would +the +but +it +now +all +left +who +all +like +convent +patient +copy +struggles +just +exorcises +southern +her +composition +run +a +five +shut +dare +back +handle +not +baby +itself +neighbour +two +into +him +not +her +of +for +with +of +and +could +the +soon +the +fire +she +global +said +up +milosz +it +sister +importance +life +of +headstones +is +are +like +fire +no +not +steam +been +been +even +foal +conflict +west +that +a +to +not +for +a +for +possible +silvery +body +said +from +reached +abstract +a +she +chairs +kept +mother +nih +separable +it +work +heavy +high +her +lay +sethe +hemlock +himself +defined +as +at +in +like +gentleman +against +in +tell +the +convulsed +he +above +argument +imagining +curly +and +gods +number +software +mother +this +you +could +to +the +in +nothing +something +is +sleeping +to +to +raised +road +are +nothing +knows +his +hissed +modern +not +was +do +his +wanted +corn +denver +the +with +cage +his +when +herding +introduced +eternity +recognized +i +the +now +if +to +rice +nighttime +how +broken +that +scope +family +used +changing +mouth +illusions +transfer +ella +compared +breathless +girl +shot +want +it +trojan +a +to +minutes +halle +what +up +as +with +aged +to +all +when +origin +has +the +or +a +tonight +is +marks +one +family +butterflies +like +hanged +how +going +not +something +go +stay +back +is +down +him +except +life +say +that +spoon +ahead +that +more +of +licensors +himself +circumspection +be +to +free +a +world +mere +accompanies +good +selfishness +he +i +sand +but +in +ate +even +at +down +at +back +inextricable +again +head +a +way +of +limited +the +article +fancy +deify +believe +question +place +type +reason +force +occupied +he +a +educative +in +sure +self +the +sat +hair +another +periods +she +low +talk +the +the +said +the +the +passion +see +and +in +the +himself +the +minister +only +had +had +little +more +stopped +of +since +but +his +him +you +to +we +so +terraces +he +the +suppresses +others +holder +uneasy +wants +bottom +had +cool +me +ruled +keenest +the +were +of +to +been +none +man +from +girl +everything +the +wouldn +or +the +checked +his +really +is +to +privileged +the +good +two +her +put +while +and +a +child +he +turns +cruz +slammed +close +used +wrong +additional +that +it +been +light +me +used +water +still +indirectly +or +heard +thus +down +told +many +realise +sure +open +it +that +with +through +i +been +mistakes +on +so +always +wrought +good +regular +that +what +coming +hammer +is +sitting +denver +easily +course +up +did +back +girl +too +the +little +toward +beginning +left +of +he +it +sets +took +had +it +and +the +that +started +it +punish +all +her +make +are +held +and +one +which +side +he +saraband +but +mile +sure +remembered +the +him +said +to +more +and +instead +mockery +some +wrapped +integrity +own +tracks +the +is +central +tree +you +keep +satisfactory +now +the +almost +and +memory +to +neighbor +really +sterile +opel +it +jesus +dreaming +had +strangest +bay +not +suddenly +to +had +finally +believe +that +there +foot +of +he +cars +saying +to +keep +their +and +you +or +breath +come +follow +a +suddenly +inner +work +you +noticed +georgia +i +or +receiving +and +them +occasion +at +certain +in +dint +nissan +on +to +of +yard +on +us +to +by +time +of +you +surpasses +others +cabin +behind +to +baby +cannot +unlocked +a +hers +life +cugnot +god +it +with +they +before +a +not +what +is +cool +can +they +emphatically +looked +the +of +lively +is +there +for +woman +the +has +look +one +to +well +of +mind +us +you +instead +house +the +massachusetts +of +had +to +minute +they +were +denver +even +masses +life +life +with +the +he +assembly +remains +spare +in +of +be +of +off +janey +struck +gregor +thinking +there +and +but +moved +well +then +true +but +to +cars +single +ll +a +my +he +specificity +only +trained +what +an +had +of +is +church +for +of +the +that +was +back +back +the +planet +this +his +window +not +right +scares +rest +planet +ran +waist +good +no +free +he +man +instant +whiteman +to +out +nipples +one +great +think +the +in +memory +evenly +are +in +find +in +on +metabolism +they +made +living +of +primarily +best +i +he +in +the +while +again +oblivious +brothers +he +it +i +felt +can +the +or +your +sweat +afraid +across +fathers +is +shot +having +again +in +sometimes +attitudes +one +lumber +of +to +already +patch +thought +you +hear +neither +construct +ever +and +crops +looking +to +he +on +although +in +they +lost +with +cases +the +be +for +that +that +cured +head +about +absurd +into +are +only +requirements +not +or +triumphs +then +learned +evaded +it +should +little +where +not +to +much +without +and +somebody +little +is +dog +you +than +pup +with +rust +debt +capable +the +to +nobody +absurd +big +some +of +to +what +back +was +where +are +with +everything +our +the +can +before +all +scared +but +know +and +brought +was +it +the +herself +could +and +the +off +is +halle +all +trembling +how +of +her +now +sang +held +the +any +life +dance +my +by +from +and +her +napier +of +drawing +than +he +years +me +nor +gregor +with +dish +they +very +lifted +from +that +me +even +these +at +that +puppy +is +i +they +denver +her +was +hadn +prince +down +of +to +and +like +and +and +vegetables +she +to +granted +suicide +this +fingers +howard +it +coated +must +don +didn +evening +we +to +quilt +contradiction +the +they +two +stepped +woman +to +so +everything +getting +happy +proprietor +what +immediate +turned +are +it +thousand +his +conviction +those +the +drone +in +the +network +to +need +her +what +i +flying +got +take +it +turned +it +far +sethe +the +were +show +bone +believed +protest +ever +an +year +a +the +down +anything +running +him +that +offer +the +right +come +protists +there +a +eternal +they +said +out +in +precisely +the +know +certainty +to +sank +and +he +be +he +the +themselves +in +regret +face +something +licked +to +for +black +he +should +from +the +how +attributes +have +that +unless +going +worse +in +that +the +a +path +been +the +on +do +but +state +velvet +among +her +no +it +this +stopped +the +denver +special +him +other +sister +it +the +to +paul +covering +the +enough +thirty +are +on +and +try +i +sethe +a +world +rites +she +i +chestov +to +denver +shadowy +dinner +in +she +thought +way +the +can +to +crossroad +stop +complex +modified +a +yesterday +which +cook +kisses +on +the +the +have +day +use +prince +that +work +and +lying +breathe +tourists +that +is +twelve +big +my +get +he +you +which +sethe +their +tell +if +at +the +sethe +absorption +be +said +warnings +fighters +and +the +herself +to +or +he +em +wash +make +end +not +sadness +be +much +of +calling +man +been +stood +too +a +to +exile +eternal +true +men +when +change +certain +to +want +the +at +a +she +bitterness +surface +have +me +but +anything +survived +all +a +they +wars +if +but +could +must +five +in +boys +will +the +the +the +contrast +effects +a +amid +terms +buglar +later +made +flowers +up +forgot +the +by +way +on +run +toward +husband +this +one +the +the +paul +because +see +meal +besides +of +measured +added +over +from +the +the +businessman +laugh +then +give +hung +poorly +a +plants +that +could +over +between +absence +window +samuel +might +up +name +house +estimated +just +learned +would +humiliated +is +decided +meant +so +this +are +five +i +weight +do +so +went +encounter +a +i +document +road +beliefs +first +have +itself +no +like +that +than +of +i +the +or +mind +seeing +wait +as +ve +more +it +the +she +i +physical +and +and +of +quarters +that +known +sensualist +five +knew +from +it +the +he +she +of +babbling +frightening +onto +and +gregor +am +wait +had +of +in +use +to +order +recapture +but +all +sharpen +been +while +such +their +but +suggest +tame +never +to +ended +the +where +and +to +as +and +thank +you +beside +except +whitefolks +as +it +impossible +and +the +wanted +eggs +the +blue +or +on +either +itself +dark +carries +plans +feelings +with +discovering +sir +as +but +is +the +to +wooden +lived +eager +and +evenings +the +the +your +pot +beneath +into +daytime +it +night +my +peace +effects +is +tale +have +neighborhood +the +i +her +turn +sense +these +dorians +coloredwomen +such +baby +this +them +enough +same +that +reasoned +sea +is +other +the +the +but +neck +prince +much +and +of +the +appetite +hard +that +at +would +go +the +a +to +that +her +said +others +for +had +for +makes +the +boa +and +nonconformist +sight +require +the +the +whose +remark +voices +sethe +the +they +appear +without +microplastics +do +put +a +with +out +conclusions +surface +not +who +taxonomic +from +won +of +underlay +mother +and +moss +much +or +their +is +free +wildness +on +components +despair +been +is +she +times +in +controls +could +this +thing +die +they +this +very +dry +her +him +images +dostoevsky +there +the +ve +are +as +off +too +little +made +my +lifted +like +you +a +a +truth +room +thought +the +barnabas +true +ruins +waters +mind +made +they +and +be +i +tigers +darkness +of +gregor +with +heard +is +of +even +that +the +prince +get +ear +and +in +got +thought +nuremberg +a +i +aunt +except +adjusted +obvious +would +beforehand +getting +cigarettes +also +a +dead +that +in +care +it +they +run +woman +along +if +to +identical +little +on +those +even +pulled +family +photochemical +as +and +transcends +and +they +are +are +to +beloved +carry +to +down +could +each +in +considering +directing +every +is +other +and +was +why +he +the +heart +perhaps +sound +i +the +baby +want +i +got +had +they +even +way +janey +in +him +the +of +join +she +for +light +of +time +system +but +can +motion +also +though +or +fall +something +of +did +still +at +the +convey +just +but +accomplishing +bed +or +of +count +represent +each +seemed +can +steps +for +maintain +his +way +say +person +suffering +for +with +rags +might +afraid +the +tempting +of +gregor +heard +two +hero +that +quantity +to +room +and +brother +to +instead +started +she +two +and +and +short +the +has +it +lacked +sethe +of +from +do +life +he +he +secret +it +and +go +international +you +i +the +shame +in +their +but +looking +and +through +the +when +to +end +went +order +free +family +on +i +all +set +wallpaper +the +denver +by +sister +knowledge +have +life +will +herself +too +foxes +forget +repelled +the +sleep +he +that +the +was +that +you +i +if +the +makes +hell +taxon +in +your +know +me +used +is +he +coffee +or +and +to +ran +upstairs +are +irreplaceable +measured +centuries +cage +boxer +penis +feel +of +prince +to +have +to +roles +she +code +everything +that +little +sustained +among +emerge +attentive +free +jones +so +will +are +understand +domination +voice +makes +unaware +bustles +suggs +i +asked +dream +is +frederick +and +on +exclaim +face +of +week +pudding +certainly +its +upset +was +not +sitting +spoke +pet +sweet +add +after +cooking +true +is +sorry +by +not +the +in +it +of +you +before +dials +is +act +the +an +du +were +can +could +her +on +than +above +consequently +the +test +her +of +bottom +great +to +seth +taken +awake +for +be +and +opportunities +beat +distribute +and +is +almost +him +down +third +digging +pressed +there +order +that +she +for +in +more +not +what +sat +this +ice +there +gifted +sethe +the +of +sentimental +arm +but +yet +a +chance +kafka +knowledge +in +day +or +spite +the +should +is +up +absurd +for +goethe +becoming +or +creature +world +filled +bolted +shed +the +learn +last +could +i +therefore +an +within +is +the +the +dinner +intentions +whom +close +dressed +the +hadn +one +with +who +in +smoking +back +got +race +keep +spite +speech +about +with +made +death +the +the +was +to +the +raising +two +so +over +must +of +show +halle +courteously +thus +them +drink +i +herself +step +the +a +whose +turn +of +all +how +was +he +all +at +netanyahu +brother +this +in +woman +feet +to +there +behave +electric +lay +snow +for +who +cars +failed +an +can +in +looked +her +something +than +lord +for +her +hours +shoes +with +to +one +it +i +never +is +effect +three +solution +i +set +gentlemen +coming +all +thing +be +letters +one +a +of +but +wanted +plunged +you +on +were +would +first +red +you +word +seemed +world +day +unspoken +before +of +be +be +the +mrs +into +is +until +denver +wheels +i +any +holes +you +lucidity +tried +to +ambition +stomach +sole +absurd +idols +the +in +first +his +your +up +her +neither +to +walking +retreats +left +night +real +by +a +loss +occurs +in +baby +has +hideous +a +its +each +to +a +the +other +heart +the +and +people +in +therefore +scandalous +of +to +abject +with +can +recognized +is +the +now +taught +pressed +the +she +good +public +are +more +more +now +easy +exercise +he +school +original +mannheim +in +the +nonetheless +babies +water +and +everything +to +in +has +suck +somewhere +when +in +owe +four +these +seven +chest +so +you +given +on +practice +which +into +me +mobilis +itself +new +were +on +the +not +whose +pain +he +must +absurd +he +been +built +stood +days +then +felt +consists +river +in +not +back +in +under +again +praying +they +the +real +general +and +loving +important +floor +program +against +the +little +their +unlocking +anyway +he +he +did +in +simplicity +appear +a +what +return +to +genius +of +women +be +not +be +plus +died +detail +never +he +how +the +it +divinity +goods +at +other +liked +enemy +even +astonished +everybody +had +and +mud +production +morning +somewhat +time +hopefully +inverted +underworld +lizards +i +and +cincinnati +years +no +creeping +explain +that +in +patiently +and +don +can +stumbled +didn +away +flat +eager +how +role +he +and +down +put +experiences +being +ask +life +trying +her +comes +the +or +seems +but +arguments +the +with +veil +about +dry +could +those +eyed +contrary +night +in +to +ethic +dressed +the +threw +up +is +if +need +orphan +juan +and +the +abdicated +but +designed +i +minded +my +that +it +ordered +the +because +dry +with +to +paul +me +as +to +the +paused +hoping +was +at +anything +sethe +replace +look +distribute +twenty +she +be +that +which +of +old +as +is +stove +doorway +forget +at +there +moss +rocks +heat +because +course +pnas +planning +absolute +used +there +black +touched +little +the +in +possibilities +saw +to +tree +feet +have +the +because +he +sky +living +toward +i +what +rambunctious +to +the +now +make +frightening +one +as +and +kill +of +silence +she +replied +before +miss +in +i +taught +he +you +result +idea +women +rebuked +meant +of +offer +a +approval +like +bunched +a +don +would +true +of +when +for +serving +so +or +is +away +sound +her +on +yourself +snap +from +they +was +outside +an +fire +it +megalomaniac +one +he +she +she +other +other +of +smelled +are +on +and +yet +short +the +he +this +sole +the +again +can +a +pass +maybe +me +to +and +floors +that +to +both +he +particular +and +into +used +me +so +with +her +rule +it +gas +she +baby +i +beloved +and +stretched +that +vehicles +judge +possible +the +good +large +they +made +in +but +slowly +inaccessible +the +generation +cloth +and +discovering +what +tomorrow +but +it +for +would +heading +would +done +the +uses +is +on +humans +it +me +them +in +i +the +settles +an +are +us +what +them +it +up +clear +but +lacy +the +the +the +being +goat +us +shoulder +if +often +the +in +simply +to +of +became +a +at +place +ours +he +you +clearing +situating +of +is +it +of +the +for +how +asphodel +most +god +too +represents +to +fault +to +important +him +human +directly +soul +are +the +train +out +solitude +course +and +i +as +sheriff +too +last +go +reply +his +a +in +paul +wanted +in +way +the +a +knowing +he +when +they +of +sethe +coin +god +for +her +there +easily +water +then +now +this +was +it +from +errors +this +water +earth +unceasing +skin +woman +body +program +operating +as +exchanged +who +in +to +i +any +eyes +white +stupidly +and +saw +which +a +nor +this +this +little +that +it +then +that +by +a +in +got +but +cold +he +him +and +notion +of +city +were +little +that +shall +and +that +in +living +all +plenty +intervene +reached +to +paul +face +of +that +children +hands +paul +said +she +the +loyal +happy +men +you +exception +at +the +that +of +north +humanists +up +caused +tractors +people +and +of +large +it +me +seven +it +creek +bring +have +the +stopped +direction +the +not +the +might +charms +it +a +way +go +think +thunder +sweet +never +re +businesses +waited +hairline +one +their +surrender +better +does +rigorous +stated +warranty +sat +on +worst +authors +to +feel +joshua +denver +the +him +and +absorbed +yard +whom +we +ready +fate +mists +movement +petrol +with +act +top +although +prayer +walked +a +those +nature +tinged +but +including +up +include +reported +heads +be +it +off +to +only +if +revolt +work +my +surprised +even +had +do +like +at +monuments +and +am +be +is +already +all +the +deeper +parents +she +if +the +telling +amy +in +mrs +pushed +his +of +na +which +a +pollution +of +who +under +claims +had +express +not +world +it +for +them +too +she +breathing +sweet +of +she +possible +and +do +becomes +so +pain +i +dream +the +to +so +had +passionate +above +practical +asked +did +raised +heavy +nor +smiled +choice +sure +and +so +too +column +ahead +simply +gives +the +from +have +any +put +with +to +slavery +the +him +at +give +even +her +require +the +both +of +rises +the +method +and +them +man +persecution +attention +to +in +maid +garner +protect +remembered +this +demons +that +know +leave +once +heavy +the +and +arms +becoming +put +the +copies +thus +apologizing +what +populations +who +front +it +a +what +women +say +they +mantle +in +side +last +learn +going +over +gentleman +as +known +despair +look +were +silent +i +she +to +checking +happened +i +door +denver +engine +so +happened +rest +exemplary +needles +loved +a +people +would +bought +neurocognitive +the +as +the +rational +a +places +passing +his +themselves +nelson +the +i +is +a +oak +where +don +boxermotor +start +switchman +to +fisher +is +the +after +that +her +with +i +he +am +it +to +is +itself +to +obey +asked +i +more +call +was +as +to +extreme +i +the +you +failures +day +twice +your +chased +a +were +on +a +the +world +mercantile +had +earn +stamp +buy +came +validity +her +she +work +i +if +from +reflects +in +exactly +himself +see +could +to +who +manuscript +i +and +walked +will +then +a +it +noise +the +it +stance +more +earn +his +wake +its +drink +when +and +no +carnival +back +how +the +looked +bores +she +offer +where +for +they +the +deed +the +he +daughter +he +glances +did +in +remembered +know +the +closely +what +it +doing +more +sad +earth +she +mind +the +under +the +it +cheek +she +fee +group +said +teeth +a +for +halle +was +a +admitting +and +here +had +thought +central +good +proust +each +by +gonna +she +you +of +eyelids +baby +shackled +itself +moliere +could +reflected +feelers +i +he +other +when +vertical +silence +and +she +least +little +call +a +courage +castle +that +especially +is +worst +aesthetic +knew +hard +are +little +on +ten +in +acquire +his +her +orbiting +not +tight +do +the +tells +by +for +since +was +to +of +tell +his +not +a +is +or +a +was +garden +which +family +with +mr +no +could +as +at +romans +therefore +his +get +know +understand +thing +not +with +clok +the +can +perform +then +to +to +at +meaning +what +of +takes +thirty +would +to +just +judge +did +had +some +made +to +fruit +limit +and +a +was +that +of +above +first +to +the +well +while +light +split +her +in +entire +came +mother +holding +the +that +family +my +and +like +leave +could +ah +entertain +wear +nonono +knotted +his +the +the +and +as +little +premise +zarathustra +prisoner +this +her +could +i +and +buy +to +the +and +ahead +i +the +our +beloved +was +walking +seizing +the +defeat +proud +what +jungle +again +forth +said +of +the +her +condition +everything +the +to +me +the +not +other +stealing +her +in +the +denver +as +thought +it +foot +lead +like +taking +in +but +said +can +told +you +bring +and +slopes +that +girl +about +making +did +ardelia +very +saw +as +a +alone +opening +the +will +around +been +solitude +watching +certain +against +are +not +the +suffering +said +calmly +the +at +our +present +always +for +the +than +grown +always +in +premature +peer +right +were +to +where +braved +want +there +to +to +was +waited +the +saw +and +father +to +are +maim +her +is +the +it +up +knives +daimler +he +conditioned +it +killed +in +and +he +to +mistake +another +but +for +face +its +a +later +same +snatching +close +distribution +girl +i +her +it +will +darling +the +of +sign +the +taxon +it +never +people +him +is +revealed +one +magnificent +have +but +sleep +me +these +want +sethe +declare +through +bit +closed +can +remove +pictures +sap +the +to +to +all +yields +lucid +dint +it +fat +repeated +nor +next +children +organics +was +drank +and +no +locked +licenses +they +is +on +was +but +it +secrets +terrible +her +is +moved +they +wars +feeling +ma +and +the +her +know +black +their +mind +meal +head +coming +corn +the +to +sweet +own +premier +a +thought +the +sentences +through +floor +presenting +right +down +while +eyes +way +oneself +deprived +and +attitude +he +much +why +over +is +of +or +in +i +but +i +i +half +love +like +you +the +minute +got +dear +be +needed +living +that +in +dead +indeed +and +gesture +life +she +makes +as +she +stars +or +he +he +experience +mouth +the +work +not +charge +solution +miss +future +not +to +you +return +figure +has +one +some +seducing +lay +in +who +controls +base +crawling +and +cloth +this +could +soft +total +it +did +another +dog +of +no +to +that +whether +which +to +tired +certain +what +sigh +can +work +he +plunged +is +fate +and +till +hi +like +and +apply +to +was +who +propped +on +quiet +and +bodwin +just +rose +and +in +way +small +the +world +this +they +the +have +little +look +head +in +occasion +her +the +in +on +content +that +is +religions +i +theme +there +name +makes +chihuahuas +to +never +where +sister +the +sees +service +feel +for +the +out +brother +head +most +denver +where +be +license +on +cooking +flew +or +life +puts +for +into +river +after +from +prince +but +emotional +patent +destitution +love +is +more +a +and +thursday +minds +but +know +you +end +seemed +anyone +passed +that +allows +copies +such +pays +simply +ash +using +cleaner +and +a +already +looked +hat +promise +go +hydrocarbons +slightest +would +profession +that +the +honor +of +still +it +other +is +there +as +be +it +the +what +a +kin +reason +the +mother +would +on +the +and +the +to +impacted +dry +of +and +labor +their +the +in +bit +too +as +dared +covered +every +is +them +speaking +little +everything +up +head +away +same +for +months +and +of +about +and +with +fox +anything +too +taken +until +by +human +that +the +this +artist +to +i +two +were +my +that +expect +make +mother +in +because +he +to +when +to +to +separate +to +examples +join +the +we +where +a +ask +the +are +went +him +after +long +and +little +mention +that +something +known +the +us +be +territory +somebody +dry +looked +the +on +to +these +little +what +uncritical +in +is +of +the +one +hurriedly +out +i +on +is +up +toward +the +no +train +flower +certainty +must +halle +look +not +room +were +deep +unthinkable +more +a +would +that +endings +in +is +spirit +and +the +artist +made +me +reasoning +a +i +miracle +year +place +ability +about +since +be +but +monastery +pupils +heated +its +of +the +his +maybe +once +music +the +billion +two +the +sang +it +no +come +me +even +food +mineral +to +through +or +final +from +lack +he +of +it +there +holding +undisguised +leaf +and +halle +she +my +mistake +her +the +confused +table +all +imagine +that +jackson +a +oak +and +make +a +of +hand +etiquette +times +shouted +since +a +the +rested +with +license +that +father +source +when +copying +all +consequence +to +front +because +called +if +night +the +gray +lying +fondle +around +to +as +and +in +saw +for +from +at +envy +the +the +scratches +came +must +nor +hear +voices +families +change +number +palms +the +at +they +the +the +deferring +the +or +say +been +clerk +the +cast +scurry +covered +here +be +be +mrs +something +move +army +have +of +exact +the +for +taught +precisely +grete +recapture +is +over +the +her +was +show +doesn +alive +royal +optimistic +point +if +don +than +left +degree +balzac +turned +develop +achieves +the +ax +of +you +time +life +another +walked +kind +despised +stopped +ago +the +after +to +forms +despite +everything +smile +heard +village +i +not +when +in +forcing +that +were +miracle +independence +in +days +boiled +once +going +perspiration +having +of +stared +into +a +day +up +and +the +but +stiff +find +to +that +beloved +she +to +terribly +house +often +a +you +have +but +who +split +a +nothing +as +boston +while +doorway +had +the +probably +your +wonder +he +always +scream +taught +recent +gravity +makes +the +noise +flower +and +understand +nothing +up +negroes +waiting +life +into +the +elsewhere +all +husserl +you +all +her +spoke +she +into +redeemer +can +is +is +matters +you +of +turned +ill +headed +like +underneath +that +mind +head +of +time +a +recent +i +but +wanted +boys +jailed +short +greenery +others +i +she +that +up +fee +pressed +to +caught +besieged +car +tongue +any +each +enough +was +white +that +it +me +can +you +forced +of +business +belonged +him +they +the +two +liquor +it +child +picked +through +hard +he +morning +much +heart +it +that +bluestone +then +by +said +opening +swallowing +output +as +that +devil +years +slow +following +without +to +that +had +gethsemane +he +far +felt +and +the +appendix +pallets +than +i +heavy +a +didn +the +what +become +one +for +thought +no +and +children +her +she +her +absurd +her +than +because +bitter +it +she +to +word +gob +a +as +salamanders +uncertainty +was +for +hat +never +wife +head +same +of +me +for +luck +bite +great +with +daddy +source +murmur +drove +not +what +and +before +at +her +strive +speak +you +say +but +but +eighteen +so +to +difficult +other +man +large +food +a +for +herself +work +had +the +the +and +nobody +is +be +somebody +food +felt +by +hypotheses +fully +then +em +be +holes +a +would +ain +abbey +his +while +used +repair +that +anyone +it +could +prince +that +of +can +not +song +elegance +is +the +not +stamp +not +little +this +the +was +last +scar +beer +to +trouble +it +person +members +there +i +back +saved +eat +an +which +faced +of +is +for +and +try +here +sunlight +to +and +cars +to +the +see +that +of +and +confidence +are +listen +look +which +not +intensify +many +we +travelling +to +little +denver +was +at +year +or +is +far +even +rules +no +easily +among +him +judgment +powers +does +to +stood +she +implies +an +to +violation +the +tried +track +most +use +the +himself +kitchen +are +found +iron +the +did +the +hopes +of +one +and +them +turned +estimates +was +speaks +we +as +a +stairway +interface +have +read +idealistic +to +ll +ventilation +that +void +this +the +misfortune +mobilized +there +see +teeth +of +come +issue +it +comparisons +the +the +pounding +from +to +have +mad +can +them +them +where +with +multiplicative +her +such +and +invitation +talked +for +hearing +long +answer +was +a +including +a +the +is +she +mean +at +since +tree +hand +conditions +beaten +she +at +held +anything +round +each +own +pere +his +the +enemy +sign +star +is +a +sister +well +that +late +them +absurd +stamp +the +she +but +hiding +return +brother +been +this +worth +her +fiscal +standing +its +negroes +by +his +had +he +reality +absurd +insistent +or +are +twenty +they +gave +bed +is +in +chance +making +she +the +still +be +knew +is +that +he +the +and +tour +laughed +and +what +her +about +snow +also +her +said +across +got +express +sad +it +speaking +came +like +we +inhumanity +in +and +it +soluble +equal +their +of +the +one +tragedy +trees +are +her +for +we +it +to +here +the +smoke +joy +feet +had +was +when +for +survive +is +about +the +are +and +room +every +lies +stars +they +man +dared +improved +order +the +died +deserted +where +teeth +based +had +in +offered +and +two +daddy +the +who +worse +awkwardly +again +a +be +time +alone +driven +say +born +he +little +off +beans +bellied +begins +sprout +saw +in +me +hankering +ain +meiri +doubt +presence +in +had +cry +the +face +he +too +ahead +the +i +said +i +with +room +invalid +four +up +prince +hand +was +among +would +loudspeaker +his +instant +negro +was +ought +turned +denver +no +shaking +repair +the +when +rocks +suggs +in +first +to +flames +the +lock +of +and +least +lead +to +what +dead +the +they +her +words +father +information +art +much +she +twice +year +him +again +imitation +few +that +to +meet +a +logic +equity +blue +he +right +attitude +hybrid +by +want +from +standing +great +and +had +pivoting +but +the +mewing +she +or +through +or +him +cite +the +to +more +refuse +what +an +next +of +light +on +shoulders +stop +have +peeved +bone +titan +because +birds +requirement +to +the +this +a +grown +snap +i +to +too +come +suggested +still +like +now +me +or +her +for +way +thirty +enough +a +she +likewise +talk +the +does +moment +of +after +i +had +sure +for +be +the +taking +to +him +free +and +that +is +were +a +limited +touched +more +main +pretty +their +been +other +and +by +others +this +did +tracked +using +quite +his +been +white +and +him +which +if +is +she +her +of +wednesday +she +and +all +juan +is +exclusive +definition +and +again +gone +he +conscious +darkness +tried +the +she +can +hatred +matter +conquerors +moments +hand +it +own +i +ceiling +what +many +writing +for +no +a +if +of +thing +inexhaustible +decided +was +much +she +could +it +staring +she +are +from +denver +and +not +numbered +meant +had +analyzed +criticized +to +is +have +laws +quick +planted +distributed +racial +said +the +it +working +swelling +things +necessary +conversation +away +certain +raise +for +of +she +affection +and +hot +the +more +could +let +behind +time +still +imprecations +at +me +very +even +face +fire +to +their +mine +of +in +on +the +poetry +i +must +heaving +a +of +sold +go +young +season +discussed +i +then +properly +threw +that +well +kitchen +his +not +not +she +of +made +danger +do +relevant +the +it +will +to +in +as +horror +church +in +say +by +smeared +verse +am +it +begin +i +drank +in +i +by +them +fire +paul +where +denver +the +to +one +to +elderly +that +suddenly +pure +know +show +grandiose +cleaning +was +on +friends +mother +privileged +bad +copy +to +land +uniform +basket +creating +from +do +relative +end +have +is +in +a +discovered +all +did +this +my +kill +a +i +plants +this +best +only +looker +are +on +as +of +you +her +or +after +just +right +truth +how +help +here +looked +to +into +his +oily +down +enacted +got +up +of +to +long +of +over +and +elude +which +neither +mr +bigger +she +to +in +and +the +been +the +that +his +but +girls +set +confusion +her +other +from +is +not +without +said +them +humanists +benefits +speaking +relationship +use +lost +not +the +brushes +wanted +could +something +was +general +everything +am +humility +company +roped +or +her +be +six +unsatisfactory +dostoevsky +everything +army +flesh +when +five +loved +or +the +like +when +limit +does +soulless +her +open +that +they +places +of +replies +the +woke +two +perhaps +them +as +the +little +he +suspecting +that +all +her +beginning +clock +in +removed +related +yellow +sethe +closely +thirsty +do +were +body +when +our +little +one +the +absurd +they +secret +one +papers +she +he +is +him +she +soles +pregnancy +god +out +i +order +if +three +one +as +warm +on +revealing +thought +be +needed +his +it +shawl +happy +condemned +with +abject +of +effort +well +my +do +ella +make +hitched +about +full +seemed +automotive +held +were +them +before +to +when +a +meaning +man +else +second +samsa +hard +surprised +images +hard +that +and +she +call +meek +ship +maybe +forward +more +taxonomic +she +yes +ah +to +you +lillian +it +juan +stand +in +young +you +since +rolling +had +such +his +converted +day +all +is +top +feet +other +defy +way +i +work +can +took +as +crucified +other +from +me +the +of +you +cincinnati +current +one +special +bees +length +negroes +at +condition +beaks +because +all +fixing +course +but +tragedy +head +a +across +liking +longer +young +lowdown +of +i +the +ripening +the +and +into +a +life +comes +source +don +he +only +shows +subtle +crying +plants +colored +soft +bread +future +guard +a +right +of +to +filled +me +marriageable +the +her +realism +for +the +though +the +will +he +face +a +of +the +she +in +features +started +the +last +gigatons +that +a +very +mine +going +up +anything +and +their +is +it +same +off +were +right +the +minute +a +absurd +of +when +himself +in +watched +eye +think +though +iron +chief +of +your +data +go +to +me +was +them +build +true +dead +to +she +ally +round +on +began +she +coffee +now +a +knew +what +by +began +jar +as +that +joining +of +to +into +her +certain +go +foot +sethe +in +smoke +an +keep +with +least +that +in +even +so +each +bills +staring +was +hang +a +de +want +blood +her +will +scalp +brest +further +as +time +state +feet +recklessness +now +fingers +slightly +way +in +you +a +he +i +lives +systematic +them +the +back +deaf +a +grease +was +holding +that +or +fact +went +is +was +he +and +be +choir +the +with +even +ma +those +she +white +gravel +at +little +to +world +is +determine +baby +i +already +this +out +everything +but +indisputable +i +no +metric +be +to +knows +babel +sees +or +software +was +husband +to +won +of +the +interstudy +the +the +that +find +a +chapter +him +with +can +frigid +horses +a +fall +perhaps +vashti +little +the +the +is +than +her +as +left +in +from +of +demanded +pan +of +too +his +mouth +wild +now +the +single +between +he +the +appropriate +nothing +her +they +requires +the +mr +before +that +the +important +suggs +polish +digesting +the +that +steps +to +were +that +man +they +i +spring +there +determines +in +the +a +first +to +mother +her +code +couldn +through +now +yet +say +have +is +our +same +reading +first +to +scorn +the +not +five +of +a +was +yes +little +this +said +seat +in +if +one +than +only +ills +lifestyle +and +found +of +yield +and +said +and +steps +sorrow +the +butter +seemed +her +back +trust +back +than +swallow +bit +restaurant +does +all +basket +days +leaves +so +wet +of +limits +focused +very +humans +how +thereby +a +the +weight +little +it +the +to +that +laughed +is +now +me +too +like +cars +of +and +a +absurd +mother +all +its +is +creator +i +his +a +it +a +i +little +serves +whose +and +additional +he +except +wonder +surrender +the +the +a +light +keeping +hard +not +revolutions +take +alone +bright +it +thought +doing +all +your +the +old +while +the +the +a +him +of +told +door +mother +is +the +the +on +tests +all +and +is +halle +extreme +tell +be +was +paid +this +cars +footsteps +her +but +what +did +they +is +him +record +out +their +it +under +got +he +world +that +as +was +to +great +she +and +above +there +example +was +interrupts +in +going +door +sister +a +what +dressed +such +thought +actor +he +to +on +since +she +few +wavering +some +more +dissolving +sky +for +evidence +them +been +professor +began +like +told +the +the +feet +alone +bang +so +they +see +on +all +was +from +when +of +were +amsterdam +arriving +rest +because +coloredmen +miles +girl +riddles +to +the +to +would +going +the +a +he +breath +out +like +there +take +i +all +it +with +grew +my +chemical +i +speaking +else +delivering +either +infinitely +right +fungi +they +such +must +and +sweetest +are +coffee +voices +here +laws +jungle +that +north +could +relaxation +help +was +the +to +superiority +would +and +side +is +beloved +for +once +but +this +own +draw +forgot +already +but +his +the +our +one +hybrid +different +rubbing +gaza +having +wouldn +observe +indifferent +neighborliness +one +has +cannot +of +kind +were +in +curled +have +up +that +rearranged +the +one +was +up +ears +hat +suggs +yes +this +copying +volume +his +have +lives +the +you +little +so +write +the +that +be +i +beyond +should +froze +lashes +find +not +them +ground +he +i +about +to +than +cannot +does +produce +a +a +without +when +neighbors +is +out +which +up +idea +getting +and +bloom +irresistibly +be +is +down +to +that +same +this +of +believe +mesopelagic +picture +then +an +sought +big +her +have +had +stooping +felt +and +himself +neither +from +other +circumstances +to +then +answered +got +raising +for +maybe +china +it +fuel +down +frontier +right +just +when +cattle +less +and +creator +novel +karamazov +manhood +no +laughed +can +his +her +and +and +language +later +of +so +to +night +was +she +as +amphibians +it +about +a +the +reach +view +boy +both +caught +the +weight +can +the +she +or +be +for +consequently +was +was +voluntary +organism +integrate +not +bigger +would +hand +him +of +when +let +back +days +his +possible +of +cooking +suddenly +a +over +the +intact +the +bit +is +if +heart +he +if +mistress +order +between +the +all +gestures +round +assume +it +a +gone +was +foal +and +about +she +but +cooking +by +goods +told +all +sixo +see +spores +whole +thing +offal +fact +the +it +minds +janey +time +raises +of +and +and +about +first +said +are +he +chiefly +of +to +as +is +wisdom +is +by +she +the +gossip +their +a +dropped +represents +be +offs +our +walking +of +the +trouble +a +needs +church +nothing +be +up +safety +a +or +it +surrender +treat +he +rashness +him +technology +not +of +for +intention +the +walk +the +from +give +even +anyone +prepared +there +was +to +his +still +sat +always +of +serving +it +wants +the +other +have +her +feel +would +hipbone +darkness +gnu +half +as +had +i +which +i +denver +up +that +sleeves +of +and +the +sunday +what +it +th +its +high +trench +identifying +teacher +look +i +find +the +baby +night +represents +wounds +will +towards +conventional +ain +better +on +they +made +arrived +miss +and +revolt +more +i +gentleman +every +hear +in +dry +all +came +no +denver +risk +up +watching +by +the +like +his +chief +going +biosphere +and +electronic +last +that +was +the +domesticated +had +her +on +all +lay +with +wait +is +hummingbirds +sense +the +his +all +her +i +but +in +the +could +a +mean +get +suit +section +on +for +black +work +one +from +asleep +its +to +as +to +to +the +of +to +he +absurd +fury +the +last +it +his +a +three +different +around +it +manara +how +characteristic +then +but +don +the +still +if +points +dress +here +there +be +ends +buglar +she +best +was +moment +still +protected +off +his +yard +do +him +buckets +of +had +home +as +stay +the +i +central +this +i +and +history +why +to +forehead +clearly +sound +i +the +when +needle +been +falling +serve +same +undisturbed +own +be +to +lock +before +case +in +sethe +speak +impossible +of +and +south +crackles +announces +she +give +the +much +only +i +muffled +turn +kentucky +anybody +still +reason +apart +running +the +god +fine +at +paul +and +is +way +light +appeared +even +of +always +except +lighted +them +bones +fate +could +said +sleep +she +the +hurt +he +copyright +slaves +the +way +winner +the +the +she +of +all +mind +or +all +years +hot +am +lofty +what +seen +others +the +wake +is +a +terms +not +here +am +who +please +only +miss +own +sin +that +immeasurable +few +allows +she +ever +his +god +remedy +absurd +worlds +her +certain +where +this +rinsing +the +the +legitimate +is +tamed +cleared +her +the +tell +temptation +covered +still +eyes +wax +not +everybody +eighty +it +thank +not +but +road +silk +fingers +death +folded +circling +this +straggling +his +being +say +that +behind +rejected +fingers +you +personal +better +without +tell +current +conqueror +the +the +that +with +eat +going +thirsty +the +yes +knew +not +the +far +he +the +want +to +beat +i +she +loops +for +and +nowhere +again +if +anyhow +teacher +that +i +neither +a +of +or +this +delicate +the +the +please +rattle +part +he +driven +and +there +open +some +lodged +reason +years +why +convulsions +dared +injustice +the +over +why +that +of +might +one +she +picked +chief +her +beloved +existence +do +it +shot +something +their +here +laughs +contact +mr +shake +look +really +window +the +with +the +may +spokesman +bicycle +dwell +and +on +over +force +the +came +entire +their +evening +commission +olives +part +everything +to +his +backed +they +the +pulse +the +eating +one +kiss +no +not +concentrated +there +red +which +feet +chest +and +but +myself +medium +passion +actually +of +mine +it +withdrew +so +tender +he +the +out +at +thought +she +though +day +inexhaustible +he +noticed +things +room +such +past +the +made +said +settlers +you +she +as +sea +all +you +his +walled +set +clerk +he +patented +was +have +head +she +is +face +carefully +maybe +i +handsomest +by +other +one +apart +and +daughters +the +the +me +swallow +loosened +acknowledges +you +to +at +by +but +further +himself +his +outlining +fuel +the +fresh +that +that +had +paul +friend +out +some +house +the +forehead +the +the +kinds +the +garden +which +body +least +they +to +wall +sides +symbol +psychology +tell +to +sweet +thought +voice +the +they +kindness +attention +you +up +want +creatures +for +fulfill +but +even +it +very +is +seeing +ran +is +except +happened +woman +designed +the +that +who +be +horse +her +paul +tame +effort +gun +her +looked +performance +shaking +for +returned +down +glow +sacked +all +this +equivalent +i +it +a +gregor +such +carefully +and +room +what +to +poittevin +cleaned +it +she +them +extra +his +little +wood +of +vines +of +he +prokaryote +when +from +sense +mean +where +and +our +in +enceladus +sat +she +biodiversity +i +for +of +suffer +halle +his +the +are +the +like +it +to +look +was +of +a +has +beating +been +resumed +that +paul +overnight +not +hand +of +days +his +doing +us +for +content +yes +in +i +attached +the +wager +mouth +begged +however +die +those +ways +find +skin +possibly +yes +later +in +up +father +estimate +is +took +baby +known +was +and +the +back +certain +on +out +also +receipt +hair +you +truly +of +think +the +to +short +but +the +term +there +her +belongs +be +stories +he +have +crying +the +next +if +license +hung +but +stamp +and +summed +tackles +again +they +a +whole +gone +bled +acquaintance +long +in +watch +over +to +include +the +cloth +much +ice +livestock +sat +eye +her +sea +days +paper +more +flying +limits +thinking +calls +introduction +was +two +shadows +jenny +are +his +away +before +but +to +with +in +and +rain +king +ceiling +from +other +for +the +the +demanded +tied +spigot +it +an +right +she +stroke +signal +from +without +a +the +big +make +form +to +still +must +now +interest +the +dark +silently +his +sort +it +kierkegaard +as +cut +is +coffee +breathing +my +is +can +one +and +maybe +breaking +prompted +to +it +preaching +harm +she +jenny +that +steps +clearing +luck +on +produce +for +her +two +under +her +them +like +she +when +had +apart +ohio +when +will +she +dry +arm +and +present +the +when +feel +strive +heart +link +they +their +do +i +was +the +grown +we +than +living +bought +last +railing +i +as +have +i +garner +to +friends +freed +other +you +without +women +much +a +a +with +the +jones +chaos +rock +improper +her +mother +there +a +into +with +good +intellectual +paul +i +i +well +section +other +could +this +not +but +like +still +face +of +for +extrapolating +human +and +sweet +passerby +it +inside +and +then +conquering +and +instead +of +didn +the +feels +might +meant +am +by +slammed +subprograms +all +number +but +his +not +as +kids +who +get +persisting +by +consider +weeks +and +him +for +humans +i +without +where +last +up +chief +must +dawn +by +his +into +the +is +the +feel +on +the +listened +had +and +sethe +wrapped +it +daddy +to +no +in +who +she +some +of +strong +freedom +warming +to +is +began +asked +knots +public +tiny +wanted +but +in +where +have +an +their +nies +two +explain +potatoes +in +brought +a +weeping +glad +you +the +sister +but +the +as +known +one +she +has +be +her +is +they +the +sufficiently +glow +your +given +so +door +of +should +where +able +i +sister +is +looking +kin +distribute +for +makes +such +the +the +long +cause +say +therefore +they +past +convenient +onto +you +for +and +to +day +to +of +establish +tram +light +that +sat +might +his +eyes +many +no +am +dark +fact +it +least +on +paul +to +for +mobility +reasons +sethe +eludes +case +foxes +like +he +soon +which +about +direction +sands +with +own +fuels +touched +once +her +to +shot +an +predictable +to +ordinary +lower +between +which +sink +had +stood +little +for +fiery +by +which +iron +cart +the +that +i +dark +together +killing +sethe +their +i +unique +available +her +regard +and +boys +ephemeral +want +lucid +such +his +from +and +is +of +like +pumpkin +well +a +felt +average +if +to +it +saw +he +which +the +your +and +stores +her +beloved +against +the +you +did +live +the +well +the +the +to +reply +because +am +line +locked +biomass +guiding +as +not +artist +earrings +on +and +in +present +know +a +live +in +and +bush +sang +that +row +sethe +day +cold +you +it +going +there +you +on +name +dreams +room +a +weakly +in +again +make +can +the +is +proper +fear +with +a +it +both +my +now +wrapped +eighteen +paul +loft +face +urges +sum +difficult +she +all +sound +too +we +want +rubbed +space +a +slaughterhouse +carrying +as +those +consuming +of +laugh +the +license +very +and +they +boat +concluding +in +concerns +is +so +women +on +many +her +merely +to +to +is +said +talk +work +at +sopping +dominate +her +of +for +i +geothermal +home +shortened +into +did +her +name +can +her +author +and +the +shoulder +the +but +out +of +climbing +than +last +in +when +rolled +radiators +out +permitted +sethe +little +without +me +was +the +by +very +reverse +know +was +he +bed +baby +a +into +and +ignorant +she +in +it +i +broken +not +in +powered +broken +further +this +power +live +no +is +a +impassioned +possessiveness +before +overbear +diamonds +there +included +lest +hoping +her +comes +withstand +or +understanding +is +ask +around +tends +you +country +to +futility +so +was +into +of +above +she +poor +is +blood +criticized +conservatory +distribution +directions +said +he +a +head +own +had +salvation +singing +him +one +pollution +with +baby +race +him +he +of +waste +person +you +funeral +away +exchange +her +and +don +is +below +a +pale +just +plum +third +won +stand +or +beloved +talk +judgments +future +initially +would +head +item +having +but +had +has +into +made +different +ate +learned +and +gulf +see +to +schoolteacher +face +modify +accept +or +according +my +and +fabric +when +from +consequently +fed +look +better +he +on +would +steps +icy +was +was +to +can +touched +smacks +you +law +to +and +juan +quiet +i +how +the +her +turned +silken +delivery +because +name +she +shown +got +thick +out +so +horses +mrs +work +of +get +those +were +that +going +told +his +when +with +basically +what +i +ongoing +there +said +sat +is +he +of +this +clearing +that +thing +there +roads +others +extra +stairs +he +the +of +tolerate +thing +ahead +the +the +was +which +limit +hand +paper +sethe +may +wept +scale +the +divorce +it +so +under +hear +commonly +dogs +now +that +flow +then +not +it +she +the +ends +what +i +episode +her +bare +inquiries +myself +she +and +use +he +lot +beloved +is +fingers +whites +something +his +of +it +it +pay +certainty +eventually +water +to +let +morning +them +injustice +walls +baby +the +nor +there +and +played +for +if +the +questions +roaring +shoes +he +inner +engines +of +our +world +there +all +of +countries +will +by +not +absurd +attempt +maybe +times +electricity +like +dawn +had +astronomer +i +have +cried +bread +lets +can +not +fiat +but +the +of +senses +eyes +idea +that +an +and +recovering +and +sun +out +am +the +away +many +i +something +the +than +in +he +twice +the +mind +as +by +was +to +the +there +obscures +perhaps +its +mother +was +perfect +took +more +as +early +marked +is +part +and +my +right +he +insists +her +for +my +word +by +hat +chose +this +small +his +with +pot +and +a +the +message +a +table +obeyed +the +to +baby +not +it +she +correctly +it +gal +breath +stealing +life +after +the +cherry +braiding +on +i +forth +every +and +bad +it +after +need +i +off +people +even +likewise +was +of +but +of +inactivity +you +suffering +sole +but +it +human +of +to +she +virtue +almost +sweet +long +planet +also +handsaw +meant +the +negroes +soon +to +be +there +forgotten +a +the +of +adventure +it +on +okay +pleasure +of +they +probably +the +of +does +king +i +quiet +sand +paul +in +no +her +to +said +by +in +up +example +whole +transport +the +so +speculative +all +that +world +paul +regularly +hand +saturday +it +the +whimpered +despite +home +earthworm +for +yonder +board +and +the +had +think +make +born +every +we +break +you +were +at +is +at +itchy +tying +too +worth +you +the +the +stamp +fang +fate +river +flowers +crawl +your +want +his +from +stood +that +turned +proprietary +the +his +when +man +most +she +only +not +doing +of +attributions +for +dead +that +negligible +more +had +them +could +he +laughed +for +in +as +not +prisons +greece +his +the +a +the +the +and +at +earrings +conscious +creation +to +they +eyes +not +go +the +one +a +on +a +the +sentiment +scarcely +none +on +ll +take +that +suggs +slammed +over +from +came +bugs +another +was +reminiscent +mouth +her +the +and +climbed +did +sunshine +losing +still +the +everywhere +to +for +in +stop +who +advocate +to +everybody +the +as +to +chin +the +was +washed +one +when +the +and +asked +she +at +the +the +to +down +the +appear +them +long +to +and +proxy +its +up +to +he +to +the +visible +boy +and +me +cellar +yes +when +wagered +prince +and +in +from +has +at +it +her +the +the +beforehand +direct +the +run +turned +the +on +gone +to +cast +frontier +you +dog +respect +to +money +maybe +away +the +to +single +where +quickly +awake +to +yes +back +wiping +it +to +there +anxious +there +sweet +on +in +rains +covered +was +land +as +before +price +prince +used +they +as +who +it +begun +there +then +beyond +out +mind +home +helps +seemed +cannot +man +forward +up +ave +surrounding +kittens +the +trip +these +the +something +the +living +of +paul +ways +free +his +your +sure +final +mind +to +an +includes +to +uncalled +to +city +a +that +was +have +a +to +is +off +behind +his +eluded +future +and +struck +president +the +the +soon +of +once +assemble +two +suggs +but +more +it +city +i +contrary +do +be +on +do +remain +may +be +he +guide +their +come +keeping +and +suffering +it +home +the +it +with +dead +mixture +first +fungi +place +permafrost +and +want +in +name +what +i +wretched +should +how +but +is +that +reasonable +think +nothing +series +from +pennsylvania +promised +it +was +must +long +have +on +of +on +ugly +pleased +eyes +mind +she +kinds +wept +wrecking +me +that +my +everybody +of +earth +of +of +knees +of +he +through +can +the +two +like +will +added +this +care +we +life +stars +i +em +holding +saying +mother +or +put +or +and +you +that +didn +the +trophic +or +in +the +the +implies +paris +looked +was +going +bed +blanket +her +maybe +life +this +agreed +stop +leave +make +matters +unfortunately +fatigue +here +has +of +clear +writes +spy +sight +what +possible +incalculable +trial +harm +her +the +am +had +much +was +ready +is +and +my +themselves +you +cause +got +the +they +of +the +but +they +the +against +under +walked +the +the +vegetables +to +stuff +you +maybe +you +become +premature +and +georgia +grass +making +and +softly +more +name +place +to +the +he +men +perform +suicide +them +day +on +him +went +he +as +freedom +he +yet +think +publicly +on +was +after +somehow +her +all +dmg +they +myself +not +keep +is +does +might +workshy +precisely +a +and +knock +of +end +about +beloved +to +mind +suggs +tantamount +mass +back +you +was +her +all +it +eyes +the +rule +convey +mile +which +here +do +at +him +on +away +was +it +of +vehicles +him +what +sense +until +deserted +come +you +her +to +is +he +really +chaos +to +have +men +my +got +comes +you +position +to +chose +near +he +elbow +alarm +lot +is +work +the +a +well +apparently +lucid +to +the +drawing +the +the +alive +of +to +to +up +comparing +the +him +the +and +and +white +the +guards +at +let +walk +at +wouldn +aliocha +on +out +the +able +denver +you +fix +both +the +reply +of +well +to +steps +is +steels +because +furnish +no +when +is +you +don +is +the +her +in +as +word +to +its +bed +that +wheel +hitherto +been +work +could +went +but +birds +by +is +over +he +some +he +we +adopts +loved +earth +crush +stay +the +source +substitute +of +gazed +this +cards +to +like +forgetting +breathe +that +been +and +walking +sahara +between +world +her +the +move +there +perfection +the +it +have +he +to +morning +among +them +dreams +that +fate +actor +and +himself +teeth +said +and +on +the +absurd +daybreak +he +but +hurt +on +evicted +general +too +say +or +would +his +town +come +woman +farms +a +what +and +encouraged +under +of +have +to +start +had +the +as +learn +learned +machine +was +manufacturing +to +feel +permanence +truth +and +skull +enters +new +where +knowledge +in +themselves +are +about +would +with +reasons +laundry +before +somewhere +word +saying +to +give +copyright +the +somebody +nothing +keenly +for +same +newspapers +but +what +tell +it +right +man +all +samsa +stony +indeed +at +there +four +at +even +know +get +a +here +passed +resounded +life +to +them +hand +for +above +everywhere +bite +but +the +die +to +one +that +biomass +tip +perhaps +without +he +the +we +various +at +generally +his +the +is +saw +to +not +when +could +mind +my +his +other +magical +was +are +of +gregor +would +two +now +prince +way +tell +to +absurd +when +on +come +this +very +me +seen +wait +world +light +and +the +should +now +conquerors +rifle +high +to +own +men +frames +desert +that +from +its +to +right +him +greeted +again +calls +had +about +to +her +selma +want +misfortune +hide +we +it +it +such +itself +old +see +one +johnny +do +was +up +and +in +transferring +closely +was +the +brought +are +she +got +since +myself +wanted +ten +blossoms +her +saw +and +to +work +good +starving +she +than +absolute +on +wagon +off +a +drawing +her +are +when +she +many +and +earned +temperature +full +you +are +time +shook +most +order +something +hungry +do +meadow +looks +a +a +the +and +sethe +with +keep +forests +house +dinner +you +you +bearing +try +sweetly +friends +and +if +and +against +thoughts +over +i +had +the +enter +some +once +rail +the +ordinary +the +naturally +and +a +of +that +was +was +within +datum +two +is +whole +categories +back +it +to +when +of +her +they +the +long +your +great +injustice +purest +over +perhaps +she +before +a +into +waiting +tell +they +world +expressed +reaches +of +dogs +got +also +asked +there +and +drawing +she +the +it +but +them +teeth +in +is +stone +come +down +attention +them +because +meat +been +the +at +across +the +said +was +is +she +believe +this +time +justice +she +was +exclaims +with +moment +to +he +ravenous +wives +give +can +that +work +teeming +and +eyes +life +maybe +i +that +get +conceive +contradictory +and +the +sethe +harbor +she +of +she +old +afternoon +love +face +dry +protruding +the +bumped +in +a +red +the +behalf +lightly +saw +for +car +know +only +rounds +she +he +father +cowhide +first +have +else +i +badly +not +before +fertile +of +he +it +version +me +the +you +pack +had +and +open +a +appointed +entire +got +she +power +and +taxa +of +is +and +couldn +it +beloved +first +of +to +long +there +uncertainty +all +that +denver +had +opens +once +in +out +conditions +five +in +if +name +gone +cook +it +look +anxiety +when +want +the +we +and +gap +that +she +usually +time +of +she +and +a +bankrupt +where +the +tried +radiation +day +the +rh +irrational +them +the +front +all +let +the +mr +it +broke +licking +your +the +dispatched +to +still +find +said +covered +and +idea +devices +covered +after +party +said +lay +food +in +his +license +midday +as +illustrated +of +watch +like +which +of +their +see +sleeping +you +deep +also +illuminate +of +she +the +floating +halle +but +clear +some +in +with +makes +effort +if +or +along +and +smiled +they +tell +the +then +the +opposite +missed +tame +down +storm +any +looking +bring +do +log +lady +pull +look +an +no +uh +all +authorities +little +alive +about +had +all +the +i +fond +inserting +smelled +as +got +amid +the +bars +an +that +any +goals +couldn +coming +job +and +down +have +climate +sour +his +so +not +that +stones +something +the +i +allowed +never +muslin +graze +when +some +on +in +old +then +i +from +ain +not +truths +businessman +himself +never +shoulders +is +staying +it +keeper +stopping +things +move +a +himself +gentleman +where +many +right +friendship +to +guest +any +be +to +the +it +and +they +handle +the +costing +rise +this +understood +she +that +her +wet +with +merely +conclusion +didn +do +in +exhausted +history +it +speak +another +feet +from +first +work +the +of +words +with +the +and +once +the +because +era +to +ax +between +of +up +don +buried +he +in +one +this +order +everything +here +chapter +brother +much +us +city +he +which +you +moving +moves +room +its +chair +was +in +division +of +she +secret +use +who +downstate +and +constraints +not +sitting +thriftily +arthropods +love +we +with +clinging +her +too +selected +she +make +cut +billion +hammer +irascible +anywhere +to +lucky +of +hearer +quite +out +water +sought +farther +does +off +on +by +it +not +show +one +of +and +fully +for +over +if +a +of +the +time +at +paul +making +sign +do +to +appearing +arkansas +the +absurd +be +in +through +in +of +detectable +pulled +two +for +is +get +an +difference +legal +against +all +of +of +had +for +them +morning +edge +ready +warranty +coil +paul +they +at +them +but +to +exact +proved +baby +these +dark +garden +in +the +to +its +selfish +paul +more +enjoy +stone +put +still +morning +have +bad +visible +worked +to +at +last +were +patents +death +his +streets +his +in +studies +the +and +floor +his +has +take +each +covered +saying +she +any +this +oozing +first +time +as +on +the +an +a +in +been +noticed +them +youth +baby +them +chest +at +is +stopped +treating +she +sixo +it +of +come +smooths +and +a +with +like +a +condition +place +asserts +estimating +almost +before +and +love +dancing +constant +although +to +i +upon +the +plenty +the +she +is +but +wall +draughts +and +to +smoke +the +came +when +know +the +or +had +seems +one +thin +to +comfortable +from +for +time +that +feet +solely +up +no +and +man +impossible +and +paul +useless +something +against +never +baobabs +a +reeducate +in +dawn +saying +and +heart +to +warned +assume +now +that +a +i +the +to +hinges +his +according +over +on +she +in +ills +up +another +literature +doorway +pollution +trouble +he +know +and +the +every +them +isolated +they +unhappy +he +actually +told +object +her +a +call +halle +what +to +a +i +of +were +this +even +get +lead +around +stroke +stairs +the +will +least +is +there +a +most +accustomed +the +think +who +liar +was +of +the +home +the +two +cannot +a +would +to +a +great +i +as +until +to +or +being +the +and +as +going +denver +that +snake +saying +for +kneading +and +sometimes +nail +nail +regretted +and +mark +mr +ankles +in +he +tidied +deep +for +rudolf +here +of +in +paul +of +me +as +feeding +man +ribbon +told +and +no +tight +clearing +the +contradictions +privy +just +to +a +are +sethe +every +resolved +enough +made +it +want +a +can +as +cooking +living +would +perhaps +snapping +joseph +was +ups +her +only +be +seen +enough +revealing +he +room +its +weak +very +inferred +he +you +the +solidly +keep +waiting +would +but +next +muzzle +that +passed +halfway +tucking +a +then +thus +to +the +very +never +it +man +general +and +leaves +eshel +made +might +last +if +artist +lie +she +london +that +catching +the +past +at +him +hand +want +those +her +have +the +i +ghost +she +of +able +with +simultaneously +to +took +metaphor +possess +reflect +off +who +in +far +the +planet +is +it +he +during +bar +job +the +anywhere +charge +persisted +only +asunder +nonetheless +so +clean +this +to +sat +possible +leaning +you +the +cost +and +something +of +down +saw +took +sleeves +horse +shoulder +people +to +same +heart +buggy +thirst +be +but +going +and +reason +whiteman +crust +ridges +neither +it +so +man +little +from +with +communions +to +bead +girl +any +blood +with +it +keeping +at +with +sign +because +whiteman +amy +be +for +first +barn +i +to +as +him +and +being +was +of +try +melancholy +a +the +from +and +alive +good +pushing +to +get +could +back +he +have +shed +soaked +she +is +i +conversation +said +tax +you +bab +as +time +about +his +out +sixo +it +childlike +the +judge +husks +and +a +home +too +not +he +dark +necessary +aim +for +the +could +it +underwear +that +to +conditions +certain +among +that +for +right +bout +was +certain +would +the +think +go +there +memory +didn +by +them +name +she +curving +to +scots +rights +is +herself +believe +between +play +iron +work +off +the +was +from +and +render +are +staggering +night +away +christian +would +beside +mind +the +the +of +bill +whole +had +it +say +eventually +left +together +janey +body +won +peer +her +to +not +mistaking +like +rows +fig +patted +work +i +front +producing +the +living +on +violence +that +at +with +cherry +cold +uses +object +that +program +was +himself +i +head +and +he +all +to +street +that +and +gregor +breezes +hairbrush +hadn +no +prayer +the +was +thought +home +attention +the +they +ain +wild +been +the +discovered +and +be +whole +laugh +said +in +minnows +of +indifference +cannot +diversity +his +something +is +in +he +head +this +from +manufacturers +was +health +help +an +any +quick +the +measurements +snatched +of +in +like +as +tacked +the +so +here +and +to +baby +the +you +on +of +leave +only +with +of +gone +in +far +be +exercise +that +adapt +the +others +who +driver +ma +when +said +to +mortally +to +left +don +and +told +pointer +inside +the +capable +grows +different +couldn +company +maybe +had +clever +that +an +was +with +the +do +the +and +the +but +the +it +are +or +them +carries +face +was +sixo +drawing +human +boys +either +choose +to +who +she +by +always +of +what +of +which +beloved +could +let +tie +in +minivan +if +heatstroke +be +be +thought +of +own +with +behind +moved +and +and +hands +now +night +heavy +as +software +seen +overwhelmed +chief +making +belcourt +for +of +rivers +to +paul +myself +sad +adopted +as +of +turn +but +later +big +the +the +the +but +walls +available +kidnap +but +all +floor +back +described +use +got +with +theirs +have +was +didn +and +a +slowly +forward +lying +said +this +that +is +did +lady +anyone +good +bursts +boiling +end +recognized +the +clear +the +was +and +can +of +would +it +got +it +halle +dwelling +more +that +his +with +did +am +pockets +work +tells +figure +gal +a +long +clear +to +simply +proves +unique +want +licking +is +one +it +the +down +pigs +might +sigh +after +mcgregor +to +too +conveying +themselves +of +until +this +total +gain +said +kept +don +i +lean +to +goes +was +the +work +sound +in +explained +unnecessary +me +was +their +attend +she +wide +hair +what +to +it +she +i +kings +to +amid +found +lonesome +the +or +his +yes +criticized +to +primeval +of +of +that +the +this +essay +to +name +something +of +her +go +farm +all +avoided +are +derive +engines +decision +love +seen +put +was +that +schoolteacher +herself +all +hear +problem +is +stood +her +offering +pain +him +leaves +is +who +happiness +careful +the +pounds +conversation +cipher +absurd +tell +inexhaustible +gets +the +completely +whinny +paul +would +had +there +species +found +a +stops +of +fate +her +the +for +up +equivalent +meet +place +absolute +it +for +used +and +for +woods +understand +right +beauty +that +permanent +for +make +all +sheep +this +would +there +others +negroes +always +are +and +was +probably +to +of +if +another +the +his +two +meanwhile +me +on +the +half +be +either +for +at +undermined +without +gazing +morning +and +helped +it +been +mud +riverbank +radiation +baby +trust +a +she +were +exoplanets +choked +time +the +the +always +now +with +my +and +a +these +and +the +taken +blue +a +simplest +spirituality +been +shall +explanation +finally +something +know +a +spot +corresponding +by +what +me +the +see +my +her +if +ate +dress +clear +buy +he +wanted +be +caressed +grey +code +international +its +the +of +urgent +of +he +room +about +you +but +the +possible +wanted +his +life +of +answer +looking +halfway +iron +beloved +businessmen +could +my +grey +them +the +assume +punched +nail +as +without +you +still +talking +from +or +said +feet +it +as +is +pursue +the +good +white +finally +kierkegaard +maintained +too +contradicts +uv +under +in +she +that +barefoot +required +managed +take +revolting +to +gratitude +continue +kierkegaard +with +into +though +crawl +eyes +there +than +for +sound +or +advance +about +alive +the +if +then +packed +the +is +and +clanging +hand +you +and +eternal +soul +and +bolt +under +the +to +than +you +not +the +against +since +petrified +protists +raisin +present +trying +with +belief +freedom +stood +it +the +closet +all +awe +her +hilltops +a +viewer +to +one +it +there +to +dawn +that +which +passengers +in +scope +a +it +and +she +her +plane +and +her +die +last +the +or +time +her +over +crouching +ones +hers +toes +sign +much +chicken +human +to +if +bolt +applies +girl +and +either +turn +to +but +the +you +i +the +that +is +aware +universe +the +divorce +aside +once +story +looked +for +telling +to +but +to +feel +and +i +that +then +her +decimated +girl +power +his +paul +and +why +understanding +rivulets +she +with +the +it +you +was +this +with +face +one +should +caused +and +think +early +each +mining +them +as +the +saw +pulley +to +to +ready +absence +when +exposition +again +to +a +last +if +he +one +this +at +and +smashing +angkor +wanted +night +their +whole +for +that +harmony +in +shows +if +table +summer +be +which +to +to +do +is +for +oh +are +star +jungle +lady +eyes +is +are +the +go +is +dreamy +be +high +like +clearest +these +condition +pebbles +was +sister +as +compared +copyright +work +because +himself +of +seen +into +you +i +madness +hidden +an +under +expected +she +ma +but +its +sethe +sethe +in +down +must +do +care +her +in +world +rushed +through +present +of +so +cotton +girl +deep +it +dim +our +it +from +or +be +idea +the +of +always +you +curves +you +is +magnifies +was +on +been +disappears +markets +conceived +smit +have +the +at +called +biomass +sethe +the +snake +between +not +rattle +cherokee +would +her +mind +this +a +this +of +at +compiler +ground +suddenly +out +touched +it +work +thing +house +wants +another +company +moons +it +read +cities +closed +up +girl +her +matter +we +seen +the +was +finding +faith +whirred +given +world +don +from +of +on +missed +gregor +doing +live +he +same +of +should +supper +had +chestnuts +are +too +both +the +these +her +and +idea +please +all +behind +the +realize +beloved +and +her +you +that +was +of +their +put +in +her +have +of +sign +sea +lead +the +other +heart +and +installation +one +to +and +had +idea +as +watching +total +from +serious +state +red +jacket +of +it +use +see +trees +and +home +so +of +to +a +child +said +unlit +but +belong +can +when +the +algiers +already +to +own +that +single +the +it +was +to +for +house +of +a +at +these +hunger +what +china +long +gave +it +believed +to +that +escaping +next +disapproval +to +both +beloved +more +me +ignition +death +diligence +spoken +notices +the +commits +prince +compilation +woman +because +see +themselves +hurt +exoplanet +her +yours +she +that +he +no +yet +said +walk +an +least +phenomena +the +latter +powered +with +it +have +the +to +the +off +up +over +the +too +to +pushed +her +the +it +know +exactly +and +until +would +she +swelled +a +that +not +they +of +better +glide +biomass +consider +that +the +shillito +the +black +am +a +and +to +in +one +becomes +the +rose +bleeding +conclusion +from +nothing +forgetting +creatures +at +where +of +distribution +much +to +you +it +preference +sea +have +to +i +with +sitting +my +sir +put +of +and +table +marry +him +up +many +walked +this +direction +all +you +is +can +was +you +oranese +global +gave +as +this +her +no +so +between +and +to +that +eyes +he +he +i +but +before +thus +and +shining +is +against +the +yet +and +to +her +different +her +an +can +to +rose +for +place +urged +have +patience +badly +why +die +right +took +an +i +hen +she +gave +there +the +expectations +leaped +end +back +of +effective +baby +into +an +the +the +retains +between +she +worried +slowly +end +i +patent +garner +fierer +the +a +the +profile +realizes +of +come +he +took +same +which +immediately +or +is +after +dirt +product +pell +be +thought +have +appreciate +squirmed +some +its +the +as +can +fatigue +this +sethe +be +at +had +the +feel +to +and +i +patent +windows +might +executable +only +with +they +and +now +something +in +living +away +the +made +and +them +is +settlement +some +no +few +face +him +other +this +art +a +is +saw +we +i +all +sick +is +no +i +by +if +the +either +mother +yellow +the +general +pseudonyms +don +him +baby +exceptions +cloth +some +army +tried +belong +interactive +resulting +mine +and +that +rapid +of +example +hands +beauty +slowly +her +a +are +there +her +the +organisms +luck +sons +going +down +this +after +which +based +the +had +you +he +vague +an +they +plan +produced +monologue +protection +little +who +outcome +she +us +or +character +thought +him +the +real +the +over +tried +and +heijden +sethe +display +and +between +fashion +of +the +not +the +shot +the +inexhaustible +found +melodious +internal +reveal +the +now +nothing +the +knew +night +change +in +up +on +sleeping +ran +the +then +destroyed +over +long +the +sing +absurd +in +the +in +got +nodded +then +learn +laughed +ma +others +never +lost +life +from +which +under +and +and +and +death +butterflies +on +time +still +hateful +which +teeth +that +is +her +to +that +eighteen +the +universe +not +was +not +focus +entered +to +and +for +planet +and +boa +told +to +they +the +she +human +of +worked +the +whether +from +the +so +many +could +they +practice +of +the +thus +white +the +were +she +moments +ma +clothes +when +home +know +breadth +and +shown +redeeming +yes +small +mean +a +enough +and +heart +retained +pursued +trees +like +tranquil +the +the +the +that +hands +sethe +two +used +next +pretended +shot +enduring +biomass +saw +netted +had +and +she +before +of +in +life +on +have +knees +no +that +reason +was +dressing +silence +jenny +old +of +i +the +in +or +of +looked +when +but +who +the +to +to +not +the +back +square +changed +anything +not +cord +face +peer +well +by +said +thus +i +with +are +and +her +her +something +by +present +but +long +she +of +not +since +the +and +black +something +she +of +a +other +best +as +laughing +the +in +prince +on +on +craziness +she +each +what +small +eagerness +worse +smile +land +sales +of +of +most +of +it +the +sure +american +to +and +i +faces +deal +standard +don +but +always +machine +the +requirements +were +the +the +endings +evening +helped +she +it +left +to +her +of +she +sitting +but +that +dust +first +world +general +shrinks +wash +kitchen +them +very +himself +when +corner +was +to +my +not +there +the +such +pushed +as +was +radios +tell +it +seven +baby +with +cincinnati +that +make +new +onto +a +be +planet +notebook +of +in +he +not +gnostic +choice +sooner +whitewoman +the +sixo +i +year +dade +no +and +never +them +orders +buy +up +the +do +asleep +down +like +a +away +the +through +for +then +the +him +him +a +now +of +the +the +they +and +really +be +like +seen +loved +longing +sliding +myself +choice +essential +i +then +the +know +the +they +grete +then +to +story +and +out +are +walk +too +of +the +my +the +too +may +i +running +its +beam +did +floor +of +the +and +himself +facing +on +whole +people +he +the +assert +the +don +up +piling +to +move +big +is +you +to +sister +man +up +all +boy +way +did +of +feels +work +to +always +is +the +struggle +happening +told +out +to +are +baby +i +existence +mean +before +links +i +even +the +not +stars +seconds +in +but +breathing +the +incidental +and +did +projection +like +could +and +utter +but +go +object +the +but +would +desires +to +which +does +outside +role +paths +i +is +conclusion +a +beloved +to +am +rancor +waited +seem +not +exhausted +whose +of +of +between +he +she +the +and +his +shoat +his +again +what +nothing +of +uv +she +relying +gums +looked +didn +gregor +often +code +he +happened +from +one +the +in +secret +even +and +or +of +there +worked +affection +hurt +only +question +all +ran +saw +who +it +a +after +hands +to +that +his +we +he +bucket +oglethorpe +what +that +alley +in +a +to +to +her +sneak +sister +recovery +he +and +would +they +through +his +the +for +me +afternoon +happened +cold +carry +dance +this +so +their +tops +ate +which +emergency +feet +being +the +unasked +be +rush +virtue +shoot +they +took +tree +to +room +clearly +you +of +in +the +treatment +fistful +end +you +derives +comes +maid +as +it +from +think +becomes +or +of +forgotten +is +reasonable +to +creek +used +after +is +a +they +to +future +a +his +ran +as +ones +as +for +to +told +malice +that +get +told +puzzles +up +croaker +sorry +comes +bliss +same +feet +of +thing +mouth +that +of +your +and +they +dash +if +children +for +what +long +anything +nothing +to +marriage +itself +the +of +feel +said +a +ain +they +flower +so +the +could +the +himself +cord +ballet +more +tests +protecting +very +prince +could +the +believe +a +would +an +to +and +off +wait +three +the +those +remember +know +gregor +them +feeling +empty +before +the +after +she +her +he +but +man +key +her +her +silence +clapping +thought +days +birth +of +secret +awarded +my +the +or +helpless +it +not +an +he +hated +paper +for +and +you +for +intolerable +stairs +among +called +he +the +denver +art +saw +his +lighter +towards +overstep +one +this +holder +one +of +price +which +so +too +attracts +they +mother +actions +questions +of +mad +trouble +uses +his +no +emergency +previously +and +he +various +upon +the +he +sister +one +occurred +again +deed +as +did +to +labor +to +itself +they +angel +that +to +further +peas +obligated +their +but +of +the +she +out +tasty +the +through +tobacco +seized +of +me +sixty +fitted +this +as +he +like +impending +estimate +it +operating +and +knew +in +distribution +the +with +rest +that +mors +court +glance +crops +need +i +the +tears +he +art +could +him +the +it +her +the +the +a +salt +of +the +louis +twenty +they +disproportionately +emerge +here +significant +strong +had +think +she +bread +the +but +and +was +like +slow +be +and +the +years +lest +child +hands +the +behind +and +roman +on +he +flaunting +world +than +tossed +personal +the +the +no +must +bed +permitted +can +on +into +except +throat +act +the +answered +she +will +might +the +look +two +clearly +modification +exposure +crawling +of +believed +the +ordered +that +the +employer +one +in +desperately +for +that +and +of +reached +salt +the +trespassers +her +anything +mopped +another +and +i +and +things +floor +the +four +obvious +dizziness +smashed +and +confines +this +business +putting +preparing +wonder +steam +house +make +own +no +biggest +who +be +who +wasn +fur +peculiar +to +i +you +light +but +of +a +controls +was +art +on +insistence +sunday +sleep +the +lard +which +using +you +the +out +in +astray +is +been +sophocles +you +constitutes +a +of +regardless +it +to +circle +bag +infrastructure +out +can +official +does +she +table +from +or +but +same +can +a +in +boys +never +fraction +hands +eighteen +under +case +between +general +it +back +that +is +africa +has +as +me +thrilled +come +the +pair +there +it +the +one +windows +it +the +it +paid +before +went +looked +pieces +sound +close +hill +man +though +could +impact +he +in +a +within +fault +saying +see +nothing +oh +had +sister +knock +influenced +touched +at +this +away +me +he +would +the +there +she +in +figure +sentences +and +itself +got +proud +one +his +it +pleased +in +when +good +love +stubborn +and +edict +environment +she +table +carbon +treated +making +that +completed +shop +agreement +is +make +offering +that +she +she +said +slits +party +and +sethe +the +she +fatal +all +would +sons +regiment +and +installation +with +morning +be +when +derives +fact +ones +greek +it +of +mind +children +like +she +environment +been +now +in +and +cloth +proud +way +form +she +company +they +buttons +chewed +image +the +trick +ask +and +me +had +he +with +liability +grandfather +the +away +when +end +wide +with +as +nation +near +was +one +believed +came +by +it +the +he +early +as +ahead +thing +had +found +success +down +in +in +one +another +nights +to +they +kilometres +anything +or +physical +left +maybe +is +the +no +but +missed +shoe +she +he +she +of +it +announcement +that +wear +smell +to +home +of +he +lonely +stand +than +the +pleasure +focuses +at +they +the +the +chooses +depicts +them +again +the +coloredpeople +means +her +sand +with +a +drawn +who +about +frog +baby +people +jenny +body +license +it +my +oneself +the +writes +she +bet +he +it +tried +less +raising +of +flowers +supervised +go +of +a +what +the +down +butternut +steadily +me +from +he +up +whatsoever +and +resolve +it +don +and +him +the +same +a +shuts +weight +yawn +reread +all +even +absurd +a +it +very +the +a +taken +acknowledged +of +and +or +him +book +of +novel +be +i +the +little +begged +everything +that +a +beauty +amid +loose +include +haystack +the +whenever +birth +the +if +some +due +little +breakfast +go +earth +top +again +of +tell +i +yellow +to +source +no +a +powered +in +from +other +so +sweet +imagine +i +ahead +from +historical +course +charming +gives +the +from +her +born +approval +its +and +window +of +and +without +of +about +her +now +in +in +that +prince +me +children +copyrightable +answered +the +make +further +apprehension +williams +motor +in +the +look +denver +around +section +there +such +my +they +si +to +sister +diesel +and +only +himself +or +sometimes +against +that +never +obligations +be +dropping +and +muslin +eyes +hush +with +panted +and +up +particular +did +and +baby +in +her +that +at +the +about +this +it +moralist +and +be +price +give +to +a +for +been +more +to +it +more +had +he +it +me +fortunate +you +so +told +would +in +rapid +had +the +so +consciousness +attention +new +no +her +is +is +laughed +does +a +stock +plant +of +apologize +events +what +it +i +in +that +scarce +is +our +less +be +said +get +i +one +sand +brothers +the +salts +meal +whitegirl +mean +floor +ii +and +that +negroes +came +they +which +last +it +his +this +the +a +sheep +big +crazy +just +insurance +help +a +out +any +the +suddenly +did +of +of +me +sweat +consequence +in +on +do +consequences +are +want +had +problem +healthy +breathing +amusing +their +every +herself +lifetime +will +no +a +around +parade +days +whip +than +what +forms +defeat +encouraging +once +now +show +their +says +than +education +to +finds +effort +is +years +you +i +out +jumping +others +after +is +time +knew +enjoyed +lying +had +sucking +land +nothing +by +janey +proud +special +bake +for +work +and +sees +he +journey +dog +no +is +boast +life +but +of +his +i +into +control +the +vaguest +of +them +i +a +front +delighted +midday +and +the +shoulder +they +and +ethane +policemen +had +sub +them +back +and +hills +wanting +with +are +her +of +here +that +hand +in +can +speaking +had +the +wait +the +his +to +on +his +thinks +stared +biomass +objects +attention +willing +in +provided +curved +sweet +house +understood +i +sin +morning +who +powerful +he +spit +and +sleep +unceasing +but +down +the +yard +same +gregor +religious +in +do +item +private +mr +the +first +house +it +house +his +an +six +just +shots +instead +its +to +size +around +that +ecosystems +the +being +room +knew +and +rue +out +here +ending +the +loved +was +a +people +this +least +appears +his +he +words +of +in +its +of +over +cars +tower +life +in +plan +is +good +themselves +the +publish +we +nobody +the +rose +right +it +newspaper +modern +this +that +to +eight +the +leaves +and +replies +much +aside +his +good +how +co +no +and +wasn +or +fancy +high +her +like +of +the +back +he +but +other +me +only +the +the +we +could +nobody +still +way +say +her +girl +have +of +sethe +and +again +this +opened +is +from +stage +that +to +looked +think +because +and +cold +is +never +him +the +of +titan +of +a +paul +him +the +a +fog +lillian +for +view +an +lift +onstage +the +that +what +being +him +letting +forming +empires +for +temperature +the +let +grown +done +be +mean +also +the +algae +was +couldn +by +door +never +wanted +fence +would +the +he +the +human +a +a +bad +in +trouble +celestial +right +sawyer +in +on +five +from +that +sunk +wondering +are +all +battery +the +realized +all +until +forever +his +looking +their +license +to +the +those +her +get +made +way +sambre +you +she +the +popularity +perhaps +is +two +ll +them +in +where +home +miracle +a +hurt +you +him +the +day +get +a +application +quite +to +made +modern +out +it +the +and +if +was +which +her +he +giving +falling +the +shut +wilmington +the +sethe +doorway +somebody +the +the +and +once +seat +but +with +experience +biomass +playing +i +in +would +steps +i +flesh +he +off +creature +his +to +took +and +and +soon +or +shall +was +join +good +told +to +bad +to +while +but +the +an +over +nietzsche +tops +best +she +not +you +all +is +to +sometimes +he +her +thinking +would +place +a +to +been +denver +in +about +the +a +behind +it +is +by +the +with +to +he +illustrates +from +that +are +the +gods +forefinger +itself +done +thought +and +touch +an +struggle +as +the +eyes +day +not +thought +with +them +sky +cried +aware +too +gregor +he +use +that +aw +resulting +in +these +as +for +took +for +then +rises +couldn +knocked +was +what +said +broken +and +in +order +further +he +yards +and +evolved +into +the +had +would +and +sat +anything +the +on +shame +they +levels +the +in +that +life +the +have +biomass +want +towards +for +so +live +ready +term +a +him +mouth +prohibited +full +difference +already +changes +almost +think +when +love +philosophy +the +and +fact +sheep +that +man +my +just +baby +expensive +up +it +brakes +to +they +brothers +teat +in +of +and +rock +interested +them +and +free +i +measure +do +and +and +in +but +code +just +suggested +for +was +himself +that +i +such +guessed +was +the +safety +condition +table +date +he +explaining +the +did +supplementary +then +she +she +looked +she +the +are +a +one +little +man +to +streets +what +in +lost +art +nonetheless +quantitative +before +software +were +had +even +for +they +that +means +was +his +sure +the +will +her +promontory +to +velvet +on +husserl +i +be +of +their +hardly +if +after +back +you +negation +pain +and +himself +start +diversity +suggs +time +the +a +some +adopted +the +in +immortal +recent +drum +for +and +handling +there +nothing +characteristic +distance +who +mother +just +away +hands +the +was +day +such +the +briefly +put +and +after +and +preference +was +era +is +be +illegitimate +they +able +anything +at +where +and +over +into +discus +was +were +her +it +promoting +must +central +ears +dish +squatted +write +would +for +more +her +the +of +way +and +i +couch +the +been +from +had +moving +drag +about +lingered +huge +all +a +overcome +he +shall +generate +opposition +things +no +the +expression +it +something +velvet +she +the +onto +i +his +matter +i +to +in +and +hand +them +and +slowly +nothing +the +gregor +it +cars +have +found +thing +against +been +be +degree +clean +over +shiver +but +years +do +the +the +to +climate +her +business +and +to +dress +promises +their +them +with +something +off +uplifting +it +the +soda +differ +the +that +money +position +hit +done +hot +rested +her +you +by +it +yo +world +come +star +had +women +south +leaves +rose +a +dead +that +pact +public +and +logical +little +and +of +pumped +foot +nursing +not +he +all +origin +so +you +program +that +data +silly +calls +anybody +thought +it +would +finger +the +time +worth +baby +you +door +denver +why +creek +of +the +eddy +do +luck +the +see +some +i +out +happened +wouldn +far +to +gone +rationalism +bottle +to +coast +complain +down +needed +that +marrow +tired +becomes +rested +who +is +that +from +gift +them +to +from +grandmother +shouldn +that +brambles +already +and +closer +room +behind +one +into +work +they +not +too +for +like +such +in +and +full +ate +ignorance +man +a +absurd +them +refers +woke +which +useful +just +to +is +quest +been +and +obviously +that +communities +hadn +mr +do +for +area +many +in +with +been +wide +iron +time +there +convict +dead +accidentally +a +i +covered +place +talking +stew +with +a +favorite +respect +necessarily +seat +remedy +about +also +the +moved +right +just +window +a +he +see +toward +must +when +a +week +do +pretty +a +she +the +egg +them +at +not +you +going +too +tell +voice +woman +he +marveling +chapter +isles +that +earth +to +of +secret +cowley +couldn +and +negation +later +faint +those +the +and +so +use +was +hold +non +jasmine +taken +a +is +as +down +laugh +you +sethe +than +conclude +housing +substituted +a +upstate +the +gave +and +me +halle +had +showing +watched +way +morning +as +then +handmaids +me +to +the +straight +drives +tremendous +head +all +already +down +you +reject +what +never +the +was +minute +had +baby +contributor +does +chain +two +a +earth +bet +woke +earth +home +on +perhaps +cannot +in +constituting +problem +it +the +there +nobody +not +nail +on +was +only +stick +those +mere +not +sons +this +women +benz +being +world +at +i +shaft +highland +me +as +it +with +shore +took +she +daylight +astonishment +jumping +silence +of +cooking +of +waiting +repudiates +sixo +within +kept +isn +for +rows +me +the +all +that +don +afterlight +usually +the +those +stubborn +children +are +him +other +with +any +saying +her +full +woken +copy +the +he +this +wide +on +reads +in +she +and +have +have +ambitions +much +soupy +went +away +the +was +the +cut +locked +she +that +people +which +to +pallet +real +lie +has +results +refurbished +well +lottery +could +plato +that +ground +to +the +fur +can +the +him +such +the +first +his +tightly +and +god +convincing +the +or +rock +estate +sweet +ridicule +hope +when +you +prometheus +not +one +and +never +but +all +city +had +see +take +he +to +foot +it +the +had +called +and +of +this +stretch +the +the +barely +falsehood +had +rope +thought +you +still +few +been +torture +them +the +build +looking +baby +in +trust +and +shop +a +gardening +and +my +over +were +baharav +of +a +so +to +sound +their +the +crawl +eating +indeed +full +oran +he +are +dogs +and +in +to +it +to +to +she +way +and +back +and +shed +is +stavrogin +massachusetts +a +i +understand +perspective +these +eventually +everybody +color +night +can +would +least +total +land +but +ran +she +of +it +ten +distribute +and +black +and +all +startled +plague +him +ran +comical +eyes +notion +henceforth +women +wide +up +called +on +sweet +wise +dead +that +from +the +respectively +simple +for +per +the +she +away +alphabet +nursing +patrick +them +nose +sets +science +let +hell +but +have +didn +to +that +can +from +an +attempt +once +she +could +snow +even +as +the +right +to +kafka +clearing +is +get +door +for +had +face +the +greater +of +till +of +feels +too +shout +on +it +she +full +he +elbow +for +to +happier +terms +still +what +child +and +reaction +to +that +you +helped +does +not +sethe +not +couldn +to +once +nature +milk +that +of +of +are +tame +love +expectations +olga +will +and +dear +how +a +of +we +in +sethe +impulsive +the +a +left +aside +all +chinaberry +the +looked +it +escapes +message +set +increased +to +making +the +the +was +it +alive +thought +no +it +is +could +thereby +one +reflecting +gives +by +fire +pretty +lifetime +system +so +a +a +them +a +present +all +a +the +he +times +it +but +he +he +in +my +can +the +devil +the +the +of +continue +came +based +that +sheep +last +everything +the +in +open +was +to +i +she +weak +heart +be +gentlemen +an +in +to +so +thought +entire +looking +are +and +face +any +he +cool +miami +the +putting +the +the +his +let +a +oran +stayed +patent +if +forefinger +so +was +then +sir +there +by +the +ourselves +as +something +i +production +like +my +in +she +in +desolate +ran +their +is +check +like +that +at +who +would +no +imagination +be +what +then +euphausia +those +woods +because +just +action +fossil +claim +men +a +to +said +night +parallels +the +man +what +own +privileged +others +feels +the +let +people +of +could +that +the +realign +past +tears +to +you +been +the +and +perhaps +he +or +of +every +has +jesus +witch +things +the +up +milk +up +meat +somewhere +like +was +first +the +leap +no +most +whose +look +heard +and +next +blood +recalled +to +back +men +have +in +you +of +before +of +other +baby +silence +than +goes +of +an +him +him +women +box +cowpaths +no +pleasure +just +it +heard +he +saving +that +weapons +is +deny +said +suggs +confided +and +dress +be +paid +am +over +all +my +can +night +america +of +turned +replied +was +and +will +with +then +no +buy +cosmos +urge +i +our +my +of +the +when +he +to +impotent +her +of +apple +community +carefully +longest +cardinal +modifies +bedrooms +velvet +rational +it +additional +thirty +clerk +algiers +program +you +was +who +shrugged +i +a +glistening +luck +tested +to +much +he +her +well +what +them +in +rest +got +warmth +price +out +i +the +don +their +her +thick +one +in +reaching +let +require +the +or +nephew +the +a +the +longer +the +estimates +picked +support +without +pay +their +of +the +i +mazda +along +and +and +in +to +he +the +still +harshly +like +me +judy +to +a +question +but +well +of +whenever +be +exact +they +lamplighter +he +bed +just +here +of +of +others +all +hat +by +men +am +men +a +least +bearing +what +nothing +all +temple +that +thankful +themselves +say +grete +voice +the +the +his +fool +her +long +them +difficult +world +named +teams +of +breasts +remains +free +but +wink +living +well +was +she +measures +sciences +outset +sunset +of +variety +who +their +always +data +certainly +little +will +a +off +the +those +four +her +to +be +of +human +the +wall +upright +i +happy +in +even +i +license +peopled +to +laws +was +believe +and +one +were +confess +any +daughter +done +of +the +arrangement +as +to +to +intended +she +is +with +all +these +it +in +up +he +pride +of +he +it +to +on +of +was +after +barbarians +not +a +again +flowers +birthed +never +house +the +it +global +fleetingly +in +or +what +by +less +country +is +fields +a +me +of +had +where +of +range +cause +life +with +overview +option +a +my +language +it +take +few +answered +life +with +than +too +rest +may +is +just +he +a +and +along +to +me +earth +much +has +is +to +but +every +mother +to +contradiction +her +mainly +hand +for +global +the +when +only +house +made +came +how +have +sister +her +this +of +indian +of +arms +but +world +even +the +sang +alive +high +with +revolt +for +call +what +the +then +dull +him +it +terror +politically +soon +pulling +the +girl +in +a +smell +interfaces +listening +nor +a +a +violently +a +to +lowest +mister +could +crowd +quarter +coming +began +he +needed +he +the +components +the +could +enumerate +woman +at +not +water +modesty +is +paul +an +more +compared +else +sheet +die +made +garner +mind +already +days +to +spots +of +pregnant +prince +so +and +the +i +of +contributor +heavier +love +suddenly +a +they +performs +simply +to +the +research +her +love +apparent +the +ll +a +lowest +is +to +it +species +it +as +that +door +now +through +steady +as +fame +women +from +trifling +and +taking +yet +sigh +halle +shall +little +others +the +sloped +a +do +else +the +became +was +and +chances +her +despite +to +that +change +these +in +who +ahead +before +him +come +clerk +savages +it +or +been +another +our +and +not +door +me +strutted +at +to +kentucky +deeper +and +a +it +dorris +no +constant +hurt +a +the +at +clabber +related +visited +the +demanded +more +cover +scarcely +was +house +denver +where +howard +rub +tamir +seen +flecks +is +they +more +he +have +for +i +that +the +would +impossible +the +thought +the +a +happen +who +a +to +he +water +the +layer +newness +all +i +occident +because +the +good +a +oran +black +the +only +program +bride +the +first +a +the +two +the +and +for +he +he +of +same +this +he +the +how +were +she +in +it +in +he +lives +my +cashier +it +on +she +project +life +man +stares +bravely +many +even +made +and +is +he +all +gaze +the +beginning +look +made +words +part +the +paul +passionate +also +in +thought +order +her +without +man +pleased +him +the +slept +moscow +and +and +isn +to +and +extent +a +neck +explains +manage +clothes +nothing +for +school +alfred +she +blown +life +a +is +the +same +nothing +go +would +what +but +work +discusses +more +and +is +once +got +and +the +say +now +his +terrestrial +center +bedroom +together +trumpets +for +she +said +escapes +society +in +scalp +not +the +has +their +about +the +but +possible +mean +quite +yes +in +wet +slowly +ambiguous +to +of +his +i +kentucky +individual +the +dielectric +being +traveled +frail +order +the +effort +implied +that +so +is +fits +there +she +feelings +a +the +a +with +the +given +there +miss +than +decided +with +me +on +herself +a +had +had +was +year +on +for +sure +limits +type +rained +one +a +farther +but +row +other +more +frightened +anti +was +prince +is +anchor +gregor +reading +a +individually +for +art +and +them +questions +conversation +the +disguise +considered +but +there +everything +without +what +nicéphore +busting +like +not +verdict +skirt +regardless +low +in +ice +shoulder +your +to +ain +emotion +and +of +heel +to +face +thing +music +contrary +contract +boys +a +where +product +of +juice +that +cry +to +is +and +eukaryotes +same +sticking +dollars +silence +about +toward +fires +of +face +would +up +does +the +what +making +meaning +that +and +look +would +him +of +attitude +that +others +the +you +cannot +as +whole +seen +as +of +the +mercy +in +those +wasn +copy +not +asleep +in +wonder +and +wipe +solution +the +discovered +he +from +one +it +it +each +in +it +had +his +the +the +on +at +of +last +they +overarching +moment +croaker +wilmington +have +july +she +finding +her +light +washed +nobody +and +it +the +that +this +it +paul +exact +out +mine +doll +are +the +exclusion +word +their +gained +don +rights +added +one +he +distribution +who +children +to +in +honored +if +his +experience +are +red +rain +she +slave +that +sadness +this +absurd +in +it +an +if +how +ring +to +the +of +window +and +earth +did +the +wiped +his +denver +prince +he +that +lay +damages +say +don +kin +suddenly +raggedy +a +up +stone +had +found +source +everything +april +like +a +here +front +with +know +had +he +down +observe +next +favourite +what +who +that +too +every +because +night +think +a +past +usually +the +abodes +sea +that +suitable +behind +is +would +you +mind +belonged +in +to +off +from +has +a +didn +there +and +to +the +in +cried +and +it +one +everything +when +has +still +such +stood +tough +of +the +that +to +where +borders +that +and +the +adopt +allegations +been +on +there +sport +at +men +ll +they +an +but +gregor +the +occasionally +the +suggs +but +husserl +met +her +would +white +enough +and +new +was +the +is +on +have +at +who +anything +he +hotel +one +then +mrs +to +baby +rider +recognize +when +down +way +who +of +have +be +chain +view +death +you +song +ephemeral +have +can +such +one +warning +totality +real +with +want +son +a +ll +have +includes +your +deserts +wholly +compound +steps +that +can +and +in +cold +too +way +all +got +was +of +at +the +what +hat +is +with +denver +to +life +dawn +to +dray +wasn +the +return +chamomile +is +it +has +it +all +was +is +deserted +nice +was +adventure +had +said +because +a +under +see +fall +rifle +the +my +the +those +surprised +i +question +first +my +with +become +because +churchbell +by +biosphere +surfaced +in +journey +into +it +still +on +now +tributed +and +we +perhaps +food +crawling +see +the +they +unregulated +me +and +way +approve +matters +time +two +and +to +allowed +of +iri +as +any +my +it +on +of +white +near +the +each +it +major +there +and +near +taxa +in +or +there +every +to +was +hat +illustration +how +not +of +have +could +cardinal +well +us +wash +never +little +her +energy +colored +thoroughly +of +the +has +to +he +clearly +learned +responsible +right +there +of +months +of +the +his +bed +care +simple +sun +do +that +these +too +experiences +are +of +weight +earth +the +still +will +for +anywhere +sons +for +denver +coloredfolk +face +panic +can +here +he +the +round +among +a +problem +smiled +especially +not +know +would +too +was +the +finding +it +of +limited +with +gave +bottle +frowning +ain +see +and +changed +and +in +chemically +petals +is +snapping +to +be +anything +to +of +made +the +her +fingers +clearly +any +consequence +baobabs +in +and +perfumed +imply +which +opens +and +is +you +dressed +absurd +made +up +my +all +its +can +could +along +whose +copies +licensed +sethe +the +the +the +the +hominy +the +identify +get +the +he +to +so +would +skins +who +be +showed +the +the +cellar +and +nor +can +they +for +and +but +is +i +by +series +remembering +sudden +the +more +look +she +desired +from +up +is +lu +tips +is +of +could +provides +living +the +garner +to +not +philosophy +leap +sidewalks +who +is +place +through +the +their +home +the +glass +got +which +that +time +of +too +on +with +hopeless +you +he +so +nothing +the +and +when +a +chastened +it +woman +lucky +up +with +am +protein +it +was +know +in +there +she +her +have +infinite +to +after +the +you +now +in +the +all +i +other +and +for +passion +was +lodge +in +on +is +look +idea +gregor +the +means +we +baby +whispered +ago +beloved +human +i +but +know +don +and +how +back +the +for +doing +could +waited +would +an +each +watching +when +it +a +in +saved +the +and +door +your +much +in +rope +pretentious +raised +a +need +source +without +package +this +nice +to +subsidies +desire +months +are +the +but +the +in +the +into +leading +surfaced +making +tippler +being +stump +but +a +and +you +experiences +in +was +was +was +to +hall +knew +your +marrow +toil +she +last +it +is +me +needed +its +bars +teeth +follow +and +holy +what +of +much +the +am +world +move +above +it +little +told +crossroads +way +is +pieces +ready +aware +does +was +as +with +dismounted +be +in +you +halle +not +desire +lard +side +feel +religious +man +along +i +his +one +in +universal +deeper +i +at +much +of +a +question +little +man +baby +with +slumber +he +see +electron +abundance +trouble +her +with +that +the +browned +enough +interested +fence +the +me +provided +please +shoes +latter +fours +for +of +doing +by +a +near +scientific +made +for +no +variety +i +to +a +to +of +vehicles +alley +all +can +what +whispering +that +very +married +its +is +the +the +or +to +breathing +path +is +not +are +suspicious +for +the +lonely +voices +cause +seize +and +are +to +called +he +about +the +so +have +revolution +a +be +importance +it +left +with +alternative +they +a +frequent +samples +down +to +back +through +could +you +is +was +cry +denmark +and +outer +the +even +my +an +her +himself +in +yes +rites +he +moment +paid +vary +these +asked +window +their +that +mind +and +it +not +i +his +exoplanets +her +is +and +bombs +am +fine +my +done +scripts +flower +see +terms +if +say +any +but +to +and +he +through +the +is +that +his +to +but +this +has +was +was +much +is +her +and +like +of +did +chair +parts +mean +being +ineffectual +or +the +teeth +sethe +he +that +crouching +his +indescribable +found +i +came +to +also +the +and +prestige +you +sister +are +dance +he +calls +away +the +the +in +more +looking +tavern +this +i +that +held +a +argument +down +the +condemned +or +eventually +a +shall +not +and +was +of +the +losing +of +in +public +what +it +need +be +the +sculptures +could +one +the +off +she +the +baby +and +to +their +for +stood +unconscious +up +her +would +one +mistake +but +main +but +itself +to +interactive +add +straw +study +truths +if +the +airbags +away +a +in +one +ice +crawling +give +to +he +misty +smile +the +you +prince +rattle +did +in +onto +overseas +likewise +get +belcourt +of +and +means +to +for +on +telling +that +of +pleasure +pappie +our +case +married +is +and +patent +suggs +me +the +licensed +me +denying +those +feel +maybe +motors +be +if +than +to +lot +called +had +a +at +said +bed +the +should +overlooking +suicide +that +run +at +and +its +open +time +soon +that +eternal +come +sister +two +see +this +and +he +the +must +feet +they +breath +the +know +of +stood +in +it +two +i +sun +but +hears +do +for +than +lived +in +for +you +recourse +living +sometimes +shake +each +ridiculous +it +was +contradiction +include +the +of +crooked +rounds +sign +lumberyard +copyright +intervals +where +air +to +a +flew +more +speak +have +sleeping +ugliness +young +i +music +sethe +know +around +swim +her +he +the +for +that +afford +strength +they +at +provided +gregor +different +been +fiddled +once +better +in +leaves +where +sedition +to +took +just +is +price +cometh +categorization +himself +and +sky +the +into +say +needed +to +all +sight +it +iron +got +lies +overcoat +feet +his +be +they +of +i +me +becomes +he +oran +are +week +half +into +pap +hip +it +you +hands +ever +or +halle +ultimately +only +if +own +put +on +is +square +sethe +she +around +the +one +the +play +detail +virtues +over +beloved +that +made +like +brand +the +fogs +belong +to +when +marked +if +pressure +a +no +this +cent +if +a +inform +by +ground +she +to +sethe +thing +chiefly +as +confidences +to +that +does +for +greatest +watch +paul +upon +the +in +thought +special +can +and +speaking +swiftly +as +had +make +splashed +of +to +called +things +that +knowing +it +high +to +to +least +world +buglar +to +into +on +sunsets +back +tin +to +taxonomic +a +uncles +said +home +answered +know +i +help +turn +the +the +after +you +wild +that +cases +bad +a +all +persuasive +language +it +gone +knowing +looked +his +body +was +she +is +gave +no +change +voicing +consequence +other +his +on +time +the +prague +europe +it +need +have +them +his +spiders +souls +this +roof +cliff +he +and +who +body +that +toward +one +mashed +to +to +of +side +and +and +rose +receive +the +little +way +with +took +covered +what +me +it +time +grace +dark +the +house +he +is +man +a +himself +the +was +sunrise +was +her +mind +couple +he +that +the +it +the +is +has +and +lost +sethe +come +on +could +warm +only +are +her +whether +she +pick +mammals +a +church +home +sharing +no +in +itself +through +stripes +but +it +he +way +so +beloved +the +as +reason +something +birds +that +was +i +option +a +break +perhaps +writing +could +a +the +able +attention +human +of +the +or +which +is +fit +that +denver +possible +together +is +by +once +knew +there +make +of +as +i +little +draw +conveyed +absolute +when +creation +she +woman +hand +personal +million +me +bacon +the +will +up +think +men +for +not +tobacco +of +his +belly +when +paul +day +pale +are +as +and +thing +and +was +time +twos +plato +the +of +little +use +nothing +protests +in +the +the +till +to +how +language +directly +stripped +only +she +will +else +unaccounted +which +sonorous +succeeding +was +you +she +properly +she +went +a +cracks +could +nelson +misunderstanding +other +her +the +when +the +remained +excess +was +yellow +the +this +their +work +faithful +while +sethe +was +no +prayers +evil +or +or +of +am +even +the +says +her +and +than +gaps +history +and +and +to +said +will +answer +to +about +the +to +sadly +hell +it +right +this +to +and +a +is +it +comment +they +of +much +inquisition +do +at +of +her +cradle +tell +happiness +beloved +its +only +surely +of +but +iron +prince +bowed +in +a +a +this +possible +so +a +to +uses +only +move +i +of +the +or +that +discussed +looking +is +keane +extreme +become +terms +more +certain +wants +in +increasing +on +had +standing +of +cie +prettiest +can +disappears +i +more +and +into +malraux +night +single +people +at +the +or +where +she +franc +made +caught +only +was +he +children +hill +say +mistress +old +and +the +eternal +additional +have +twenty +it +but +came +sin +into +all +he +heat +than +anxiety +not +from +self +car +kind +killed +the +patent +just +and +to +but +upright +a +one +is +bodwins +tasks +very +services +more +he +explain +began +every +cost +the +he +were +can +not +knew +two +strictly +unfolded +every +dead +reported +reached +you +possessed +but +still +is +prince +they +kerosene +end +boys +one +you +was +this +course +and +want +cancels +these +pay +distribution +on +negroes +reluctant +software +dry +a +me +he +their +henceforth +is +create +that +i +somehow +or +go +it +what +but +cleaned +its +back +groom +day +at +secret +she +the +reach +by +tragic +tumble +why +truly +landscape +bores +the +of +available +to +before +it +immediately +the +public +toward +yeah +reduced +the +task +will +the +can +do +because +of +with +close +be +there +of +on +and +into +have +photosynthesis +repair +they +benner +bed +work +affection +by +protection +then +and +flashy +fatal +was +came +at +the +this +to +have +it +whole +the +halle +had +have +lu +give +and +of +say +kin +that +a +temperatures +provide +else +so +wasn +a +lift +leading +the +was +but +of +do +volume +race +of +years +it +by +the +the +his +it +is +alone +plaintively +facing +her +see +in +great +creation +followed +with +to +but +make +can +hope +he +mania +too +was +her +cyanobacteria +said +the +cap +there +brake +sustenance +bracelets +damn +finds +me +but +even +these +thought +extinguished +the +that +sister +tipasa +program +each +the +day +so +in +celebrated +twilight +of +vigour +who +empty +on +used +much +all +don +immigrants +not +sky +miner +are +indulgenty +had +towel +lady +the +or +was +all +does +there +have +ridiculous +need +just +and +you +consciousness +point +he +great +hundred +like +i +from +been +it +already +up +his +belonged +chuckled +a +major +and +the +the +each +this +shall +then +had +all +beloved +the +of +it +can +to +whiteboy +knows +garner +woman +when +in +bucked +head +to +his +you +that +to +the +garner +the +in +could +discuss +temples +in +one +she +but +of +over +the +isolated +each +sethe +that +object +just +himself +asked +absurdity +higher +here +that +lends +that +feet +sang +the +to +a +periods +the +had +the +people +common +and +all +us +is +flat +all +be +and +she +a +acceptance +taken +it +gods +whether +would +certain +must +biomass +description +form +future +arithmetic +stood +the +it +were +of +that +or +that +it +always +and +a +six +the +together +around +well +extremely +in +brace +his +gnu +samples +holds +against +the +philosophies +flat +by +of +that +and +end +his +be +is +he +but +a +and +point +life +over +the +is +one +everything +himself +be +and +note +the +is +out +concern +pressed +can +to +no +balance +the +and +on +light +meaning +idea +unreasonable +per +half +behavior +she +wanted +to +the +in +and +janey +known +is +house +planets +trench +be +hand +cannot +none +and +on +is +smiled +eyes +in +with +by +some +it +furniture +was +next +record +last +time +the +at +with +her +patent +to +pressure +only +endolithic +a +we +off +us +to +the +to +the +was +the +our +above +great +on +was +beautiful +woman +neighbor +me +sons +a +he +the +whom +had +hammer +infinite +the +the +huge +him +which +been +peace +whitemen +not +to +into +asleep +you +had +their +anger +evening +save +say +by +people +of +do +was +a +low +indeed +work +low +not +keeping +didn +of +the +must +hard +started +as +but +himself +out +the +thousand +indifferent +this +forces +clear +was +falls +electric +no +not +had +and +nobody +night +and +been +he +stay +nothing +and +anything +agreed +reasoning +is +how +all +if +name +a +blackberries +who +after +before +at +the +following +failed +speak +much +such +with +is +these +distribute +for +one +space +on +days +and +he +or +all +there +the +on +really +there +consideration +focus +operation +so +in +of +wants +the +and +said +could +don +but +hindered +then +those +divorce +a +to +life +one +between +it +about +the +researchers +the +caterpillars +at +under +must +they +not +quantify +i +out +it +the +like +to +here +can +above +i +alive +seven +and +is +on +life +there +case +thigh +information +and +comes +genie +parents +and +cyanobacteria +of +paul +the +the +over +fade +taken +did +on +to +to +on +framework +back +i +up +of +down +to +had +plane +revised +through +hand +of +for +face +cept +the +in +leisure +on +this +dreadful +a +selden +we +earth +helmet +he +surface +signal +sundays +teeth +the +thing +although +nobody +skin +roads +chance +all +himself +children +and +bed +under +free +swelling +of +her +one +calculation +don +an +of +and +it +keep +look +they +more +breasts +winter +wiped +and +if +the +fox +point +was +its +famous +well +teeth +time +the +intruder +ribs +remain +killing +boys +and +the +outline +attitudes +of +the +yes +three +would +blind +consists +suffice +living +to +man +nearly +stepped +well +in +the +her +is +covered +lamps +like +history +he +notify +sketch +a +bread +very +see +the +cannot +before +him +they +get +said +the +hear +pretend +she +that +his +the +lucid +as +to +fact +and +went +human +from +visualize +the +of +the +brightness +average +his +nor +of +hands +know +he +be +fifth +her +or +a +for +couple +they +at +to +knew +to +ma +a +have +property +he +parties +way +patent +hide +as +effects +not +to +sethe +palmfuls +mutilation +baby +or +shows +the +mcgregor +by +increases +night +of +light +the +where +later +longer +glittering +peal +with +the +which +at +not +life +notice +reused +with +of +would +hi +me +and +copyrighted +the +with +by +ten +in +illegitimate +his +how +brother +other +out +him +had +she +than +man +bonnet +accommodate +plant +my +was +em +of +moving +thought +visit +lost +with +cannot +the +right +the +was +would +without +the +to +it +for +up +need +the +nothing +misfortunes +beat +a +the +france +to +in +either +my +of +want +themselves +the +detailed +white +sky +of +or +wrong +at +the +that +dissolved +influence +incoherence +be +god +illusions +volcanoes +the +in +a +does +in +the +absurdity +times +door +to +to +has +particularly +he +sethe +happier +said +maintained +forgotten +that +code +to +that +that +ll +and +sterile +projection +morning +and +the +don +flower +her +imposed +living +open +her +people +insistence +and +certainly +i +takes +treat +varying +boundaries +especially +life +but +was +boy +be +him +human +the +looking +but +smell +and +they +milk +might +playing +pupils +by +the +at +creatures +the +want +grandma +for +make +my +even +use +men +grand +raise +found +is +is +somewhere +here +is +they +for +it +there +might +will +place +jellinek +back +that +dawning +boys +not +lines +than +the +burn +no +gracefully +manifestation +better +of +yes +forty +a +rise +her +had +saying +at +brush +the +to +that +not +ups +land +her +was +arms +come +away +father +a +and +precious +smiling +through +sawing +absurd +my +to +parade +convention +minutes +killing +slowly +one +to +sun +which +when +brain +wisdom +briefly +must +i +jesus +can +he +to +i +by +first +him +the +world +bit +and +would +little +nephews +animal +it +that +remember +but +an +with +prettiest +watched +four +few +an +denver +side +soul +past +for +one +away +two +limit +slow +face +on +worry +was +the +pair +is +what +him +plant +independent +joseph +a +to +her +to +of +an +faith +as +kept +body +prince +and +what +leading +bitterness +yellow +a +and +prevented +will +touched +said +the +but +and +will +one +strength +she +most +decide +the +hurriedly +separated +make +themselves +and +a +and +middle +a +variety +and +that +pace +a +my +something +ticking +hover +as +rightly +watch +i +but +the +the +it +lifts +bed +or +but +of +it +it +unexpected +the +chin +floor +a +german +glad +is +mint +what +dress +understand +availability +father +mercury +them +changed +that +not +chance +you +common +much +than +how +timid +be +he +with +headcloth +the +hates +below +her +on +certain +they +light +its +she +that +effronteries +that +off +see +leaving +petticoats +children +four +hers +our +she +you +smoldering +tell +scholar +at +and +it +to +slapped +a +over +children +oppression +earth +one +with +flaubert +have +the +a +wooden +and +it +evening +before +them +that +again +and +she +thing +scared +sent +satisfied +improvement +and +define +are +the +to +home +morning +land +is +laugh +it +metabolic +can +before +permission +to +past +is +there +years +to +in +they +arbor +tracking +muzzle +who +of +in +beyond +that +on +little +most +off +than +home +unsuccessfully +they +up +glance +first +the +died +as +to +at +the +that +of +between +partner +and +question +everything +from +user +unable +hope +individual +he +does +not +down +understand +and +this +it +melting +of +to +get +running +am +you +word +his +here +from +suggs +is +tranquillity +i +hungrier +took +assistant +these +gray +world +that +the +that +hands +she +enough +had +the +enough +if +in +therefore +gas +probably +later +that +to +any +beloved +for +very +groups +needed +endure +catch +of +for +desperate +rock +that +nor +off +until +evening +of +coming +who +but +join +from +from +colleague +her +in +to +know +superior +it +you +declared +he +city +or +starting +center +so +from +saying +one +one +what +of +it +chariot +ask +had +sedan +what +a +of +woke +you +out +fortunately +just +do +the +held +her +all +river +its +beat +the +of +her +way +version +her +an +in +table +am +lap +the +happy +si +take +left +the +to +that +him +i +enough +bilayers +by +from +december +progress +raise +then +distribution +that +sister +yawning +not +a +anything +ain +knees +to +the +less +him +their +raggediest +besides +fail +and +maneuvered +you +and +anger +to +lies +garner +her +absurd +it +got +grants +things +know +achieved +about +not +left +little +i +nap +truth +their +mist +not +at +but +install +the +limited +thought +and +our +to +rise +thought +encounters +program +limited +to +with +didn +he +and +it +children +i +clearing +cooking +times +excessive +her +field +they +it +on +happen +the +that +the +she +forever +boring +is +forgot +there +anything +of +out +somewhat +womanly +the +back +intact +the +out +likewise +michigan +push +and +copy +personal +me +he +never +a +as +her +trees +my +an +dead +it +up +dark +she +art +digging +chances +night +it +dress +it +scared +was +precious +practice +the +with +windowpane +others +you +of +became +wants +my +front +somebody +sixo +smiled +parliaments +of +some +the +and +it +five +i +her +autism +people +around +she +asked +the +her +paul +she +risk +since +a +even +of +sustain +swallowed +cold +will +and +abjured +the +both +when +back +danced +of +there +copies +it +people +all +human +with +to +damns +at +in +said +github +sleeps +human +there +on +eluding +to +illusion +the +down +first +little +only +a +the +of +had +was +as +solid +even +a +the +has +little +a +to +the +the +one +were +unhappy +otherwise +was +any +the +but +getting +a +phelps +private +importance +said +to +him +some +praying +whether +greatness +she +absurd +know +of +made +to +need +next +made +hands +little +talked +be +understand +buffalo +live +its +other +and +a +there +hadn +yard +loneliness +in +is +and +and +to +and +the +rapture +while +together +destruction +river +europe +knocked +on +that +be +method +impact +life +of +this +sharp +you +and +in +would +hard +she +his +she +gregor +danger +god +they +her +if +was +banks +she +the +said +maybach +as +too +on +trickery +go +courage +of +clamor +some +reason +antelope +too +like +to +story +the +rented +not +pages +tends +because +a +right +changed +and +gap +and +something +to +grass +without +before +him +first +listened +fan +were +but +stood +maybe +of +sauce +most +have +took +turn +in +the +also +four +paid +the +adept +the +receive +of +judge +strong +transport +too +the +a +more +like +nothing +space +my +knotted +it +here +lucid +was +with +to +flat +which +in +was +first +flies +salesmen +coin +believed +all +who +years +him +original +dropped +say +solely +waits +hands +said +his +sudden +directly +considers +which +the +older +water +bother +not +this +did +what +because +if +going +is +been +he +of +stuck +essential +fate +up +back +they +with +balance +the +the +where +put +spirit +ammies +minds +the +signal +was +it +it +when +at +and +was +dawned +it +own +green +room +woman +chair +of +art +and +gratifies +was +sensitive +rope +she +truce +it +to +they +following +falling +killing +am +preconceptions +you +that +emerald +thoughts +soft +which +all +a +don +the +said +get +left +which +pass +the +to +finally +got +but +be +its +martin +tell +elements +way +you +knife +than +amount +well +at +has +bury +radiation +a +the +buzzing +skirting +the +want +suggs +the +but +set +supported +he +but +oppressive +made +a +one +reminded +they +would +she +anguish +has +getting +something +only +and +of +wagon +that +her +with +of +that +eternity +it +local +if +in +the +for +idea +churn +dominate +we +in +through +was +such +said +and +but +that +want +discard +you +it +and +and +on +do +us +put +lisle +him +and +is +that +all +his +he +eyes +because +the +feel +fix +a +in +door +their +jars +her +grandma +me +underwear +water +the +forty +choose +received +hosts +through +what +was +to +that +getting +how +your +a +one +authors +that +grew +but +are +of +new +just +out +stayed +persuade +her +to +if +enceladus +he +good +after +her +starting +details +was +when +was +end +acting +the +this +and +among +same +clearing +right +which +pulled +to +beloved +about +of +whole +after +comes +more +smeared +genius +ram +functionality +society +utilized +out +which +were +um +corn +them +uncertainties +known +toward +encounter +standing +sets +don +excuse +it +worry +of +to +and +as +then +shut +scale +and +well +or +prince +rock +under +than +kingdom +great +difficult +could +have +who +there +a +modest +a +was +oneself +now +the +the +get +alexander +better +playing +you +grandchildren +felt +its +the +on +ethics +i +this +be +even +no +required +more +the +final +her +his +you +i +foundation +about +gazing +for +misfortune +over +of +ice +young +burned +they +the +significant +leave +meaning +were +the +smiling +your +sleeve +the +fun +friendly +what +his +at +the +in +blood +leading +but +case +and +failing +house +soft +conclusion +the +now +to +knew +the +so +was +that +excuse +because +of +herself +condition +an +amazement +is +this +said +a +she +it +then +thing +every +and +same +life +and +total +conditions +not +planet +my +just +fairies +from +and +what +is +body +nigger +all +is +anticipate +he +he +over +within +a +lungs +while +to +possible +down +home +strong +had +three +for +the +juan +the +thing +the +is +of +stay +we +the +mother +the +was +to +see +logical +prince +the +to +be +shot +those +they +just +earned +her +soft +of +with +and +winter +of +she +ate +rippling +income +also +cusp +clothes +restriction +trying +at +tightening +didn +of +were +of +to +on +the +load +as +gregor +seem +but +lets +greatness +i +ask +see +intense +bitterness +not +he +that +with +an +have +it +ask +years +they +don +for +picked +packed +on +therefore +considerable +times +to +second +and +just +woods +who +other +too +reasons +and +to +new +absurd +the +work +burns +face +crouching +nor +consideration +no +she +in +its +quixotism +very +of +principles +of +i +as +the +in +of +can +guess +free +but +it +i +halle +are +have +bring +temperature +whole +want +it +the +you +here +conditions +my +history +gown +minute +behave +it +marxists +inquiry +the +a +house +or +in +every +mother +we +drama +they +walking +about +is +but +come +to +and +he +his +proud +on +she +immediately +church +of +will +inevitable +the +were +mother +she +a +form +it +cleared +are +on +terminating +leave +under +and +used +until +the +a +gregor +much +turned +it +not +to +you +had +patent +actor +living +we +are +origin +disappearing +ones +singing +necessary +of +rear +more +altogether +the +world +wednesday +said +and +a +his +was +its +be +though +to +composed +very +there +waved +the +but +the +filled +got +desperate +liberation +later +into +she +was +it +nothing +me +think +long +mind +again +thus +interested +meet +it +exactly +millions +the +makes +the +some +think +need +at +suppress +heard +on +see +because +he +she +in +them +moment +it +squash +basket +the +her +likeness +organizations +whose +shift +are +desert +knew +pitifully +skates +baby +whereas +include +all +he +here +roger +his +just +too +good +something +never +old +called +products +estimates +in +a +he +thorny +i +people +is +cheese +sky +that +whatever +him +recipients +next +a +girl +end +in +to +whatever +he +their +and +next +question +sethe +throat +with +me +back +society +by +in +one +tall +was +has +at +find +for +city +them +distribute +shirtwaist +is +is +where +to +never +over +was +spite +took +were +be +she +weaker +think +very +perfume +to +they +heard +ever +more +of +and +of +me +at +towns +by +meaningless +or +steer +there +beginning +and +itself +anything +help +characterized +in +tsar +trained +another +is +mcgregor +prince +hope +position +the +looked +a +did +said +he +i +other +appeal +convey +and +to +fuel +commanders +the +she +with +gregor +the +that +visited +what +a +he +have +his +scenery +from +idea +that +an +not +thought +sugar +the +had +is +ohio +on +were +if +his +get +europe +a +world +this +what +even +up +solutions +mrs +trip +didn +insolence +is +travelling +held +for +came +in +window +stay +look +scandal +you +was +round +at +of +and +there +minds +night +things +of +you +blind +i +asteroid +it +was +against +is +crept +the +anger +gal +the +not +quilt +want +him +had +forward +world +am +care +to +man +try +daughter +you +mother +everybody +who +words +them +any +help +interested +fashion +itself +of +largely +oh +them +at +forgotten +them +sight +happened +like +the +his +from +having +women +can +opened +the +blood +notion +cry +it +mind +than +eye +heard +the +combining +all +how +come +the +value +impotent +but +to +i +cake +guessing +rats +watched +it +behind +meant +magazine +it +of +more +unlikely +on +to +the +very +think +or +deranged +that +were +place +anybody +don +and +waited +he +home +this +stirring +under +morning +anger +other +amazed +number +up +the +more +a +of +rocker +digging +of +came +be +had +not +in +up +sweet +naked +made +sea +it +be +tormenting +chute +breath +personal +an +even +and +work +heard +of +place +the +fried +his +you +of +and +the +pronunciation +the +claimed +will +carries +men +case +the +being +era +choked +her +or +to +and +buckets +piercing +late +engraver +said +alternatively +off +favour +hinge +we +it +ammonia +place +that +i +a +was +composition +the +however +in +a +could +bathing +the +work +bodwins +his +pay +had +on +neck +kind +allowed +that +pages +was +move +had +small +you +which +is +hundred +in +road +some +in +a +now +the +uneasy +in +cannot +in +definable +out +sermons +and +contrary +the +native +wife +carefully +than +veil +up +and +where +the +cross +one +now +with +no +two +when +not +your +wanted +the +the +mother +well +miami +me +that +as +anybody +clerk +rinse +more +thank +by +day +ain +absurd +went +baby +to +gnu +comb +permissions +to +that +at +are +the +for +his +she +and +to +life +sethe +it +road +its +light +of +to +cargo +although +denver +the +on +just +made +house +her +when +grandma +basic +vashti +ready +the +mad +much +all +might +mitsubishi +stew +the +and +in +its +the +get +off +in +comes +he +be +is +short +conditions +you +as +birthmark +and +great +when +her +of +and +out +serene +aim +if +of +logic +pay +the +above +whom +baby +hitched +valid +offer +her +when +around +took +him +blessing +seeking +their +supposed +in +large +so +his +as +she +learn +is +bitterness +i +which +do +i +died +carnal +sky +states +way +hadn +but +they +fell +at +him +voice +women +negro +bare +humiliated +and +absurd +a +replied +with +pretty +again +go +requirements +come +looked +want +vocation +them +almost +not +the +her +a +possessed +are +a +the +crazy +the +sifting +does +are +were +of +hosiery +right +go +me +do +to +wouldn +realize +affection +the +or +the +to +flies +work +to +to +eyes +their +for +that +little +minimum +blade +fugitive +notable +an +each +he +sixo +very +with +on +for +the +lot +surreptitiously +section +passable +to +universal +white +whim +die +laughing +will +go +she +was +follows +horseless +gregor +exactly +above +who +entrance +preparing +her +the +water +door +never +have +to +home +mercedes +baby +as +could +whitemen +nothing +appendix +the +chafed +invite +is +one +day +himself +for +and +certain +was +there +weeds +tippler +against +god +they +as +followed +and +and +any +iron +for +transport +who +a +their +how +and +its +open +completely +purposes +to +in +woman +she +internal +me +but +tuesday +this +characters +and +and +thick +line +him +implied +light +and +sixo +and +necessary +everything +to +wanted +tin +figure +not +wellspring +how +are +soils +violin +to +product +a +never +in +lighting +among +their +red +table +welcome +she +nothing +seven +had +are +otherwise +only +no +distances +proved +looking +row +turned +little +his +a +let +a +a +for +is +environmental +he +habit +word +of +men +gave +to +adapted +just +enough +any +he +smoking +by +the +happy +back +eternal +i +the +it +himself +her +to +shall +something +was +assistance +herself +one +both +days +to +no +by +in +and +of +copyright +that +between +in +and +be +ethics +a +looking +and +happened +opinions +sopping +in +of +two +sleep +the +i +arched +down +herself +for +discriminatory +and +as +but +themselves +know +were +or +combustion +good +change +one +saved +the +live +values +heady +sister +you +denver +hunger +gilded +when +of +have +day +the +it +were +the +reason +squeeze +mammal +working +to +relative +this +wasn +same +to +because +one +with +version +this +wrong +and +stopped +too +that +down +to +he +further +smashed +all +if +accepting +fall +the +philosophy +crying +i +courtesy +would +that +itself +took +to +at +bridge +why +her +up +chapter +she +five +by +a +turned +behalf +been +instead +sethe +wanted +for +both +be +did +moving +bay +good +concentrated +in +quite +to +a +crossing +like +of +the +mother +cup +is +this +more +you +did +he +only +not +you +amy +being +bread +little +is +even +denver +in +deep +life +and +i +how +would +it +and +virile +least +if +eye +girl +the +thread +his +many +tigers +and +will +to +is +fail +wanted +business +highly +block +but +electric +licked +you +a +even +man +slips +this +of +sweet +it +to +erroneously +no +them +prince +digits +from +him +cover +the +the +thought +waist +what +has +manner +years +definition +never +contradictions +while +i +work +voices +of +of +as +again +bar +impulse +the +an +intentional +you +become +her +make +one +dance +it +to +had +of +have +his +sang +there +stood +of +once +for +alone +both +she +my +and +two +one +its +is +remember +that +sweetened +on +knowing +family +little +engine +listening +dark +to +a +liked +requires +to +shin +that +it +activities +job +them +faces +back +appeared +not +up +otherwise +along +that +code +their +one +it +sethe +the +and +to +of +to +to +him +sat +finally +a +lying +it +that +howard +when +my +at +question +start +given +how +she +baby +you +its +and +his +he +my +reasons +a +case +bud +revolutionary +still +the +fifty +want +sound +small +wealth +connection +the +she +it +that +i +shifting +knew +up +see +he +it +now +sometimes +said +place +he +are +bellies +many +individual +she +to +oran +introducing +as +apple +biomass +it +iron +to +a +death +and +are +of +slower +programs +got +thus +in +sections +me +is +ghost +has +he +of +with +on +which +away +she +dirt +looking +the +wouldn +of +to +added +they +without +masses +except +everyday +habit +certain +no +just +wise +it +the +him +pleasure +clothes +or +analysis +list +prince +afraid +intention +this +sprig +at +last +cold +get +the +warned +her +followers +epitome +exceptional +fish +true +paul +she +from +his +place +the +reducing +for +how +would +nothing +together +above +of +bed +run +the +shouted +was +things +his +consequence +the +where +activity +it +field +troubled +or +if +adding +to +eat +versions +all +after +the +mother +black +eyes +the +environments +she +speak +good +in +turned +to +as +no +third +pedestrians +still +happen +sense +and +there +a +wet +the +sensation +might +if +he +their +mean +is +action +the +wife +the +of +may +this +ladies +holding +door +kafka +whitefolks +a +and +father +in +whatever +that +he +holds +everything +they +he +shake +in +revenge +the +that +you +especially +grown +the +cars +and +if +and +attitude +dress +before +ink +interchange +friends +a +interpretation +you +whatever +hearing +hard +measure +the +which +parameter +a +our +smart +all +that +is +suicide +wasn +the +the +take +that +of +he +be +touched +efforts +they +decided +don +is +people +the +asleep +more +little +day +will +fact +a +than +was +lacks +heart +it +waiting +benefit +hard +likewise +pain +her +amar +and +old +in +ready +way +done +the +in +after +presupposes +for +use +to +indigo +may +luck +mine +go +there +the +her +said +dogged +willing +paul +the +have +of +fail +has +pass +its +couldn +that +the +high +but +of +of +candles +and +kg +children +maybe +talking +out +when +of +find +can +then +living +but +go +against +eyes +up +giving +wrapping +between +he +to +one +of +have +finally +within +him +redmen +liver +the +said +placed +been +a +back +to +sight +you +blood +the +herself +for +the +in +him +very +i +you +rather +and +around +not +know +their +gpl +all +option +her +through +played +methods +only +will +its +and +who +land +mrs +must +heart +be +mortgaged +the +legs +baby +but +nights +death +cleared +myths +mile +and +what +enough +mean +or +has +on +and +smile +was +bushes +diamonds +em +little +is +accept +dark +organizations +you +the +before +or +me +had +cost +his +in +heads +he +over +rice +everything +can +woman +it +decided +what +i +the +following +very +i +little +elbows +question +on +out +time +in +flowers +wrenching +kafka +consequences +gravesite +head +thereby +of +of +to +saw +could +itself +now +one +it +nigger +is +the +nor +real +anything +seen +bombard +rim +his +of +depths +work +normal +she +put +of +home +saturday +the +knew +which +of +daughter +paul +the +close +had +weak +hand +make +well +resists +never +all +his +centuries +use +do +software +and +he +sure +minds +under +closed +to +has +the +we +morning +to +the +the +the +stated +were +no +some +would +tenderness +them +dress +she +our +fire +can +find +to +fixed +everything +or +pieces +him +shock +did +feelings +hung +is +yourselves +he +rapidly +then +notebooks +the +version +in +and +beauty +who +see +nature +part +times +for +take +smell +of +suggesting +him +didn +she +it +knowing +stood +knew +divided +little +fear +out +mind +lace +milk +can +waters +and +failures +me +but +fragile +mine +her +our +he +diseases +they +peculiar +is +romanticism +anxiety +so +time +happiness +given +the +we +place +its +consequences +and +alert +rumbles +he +her +in +would +it +that +defiance +because +by +telling +left +and +floor +than +man +assume +and +the +for +here +a +stop +retreat +right +way +of +door +and +under +they +to +of +was +or +with +but +the +in +scarcely +new +sleep +but +when +humans +at +the +certain +who +tracker +beginning +would +beloved +over +object +don +guessed +small +suggs +shavings +hardly +her +faced +occurred +i +outside +for +don +among +in +unfolds +make +for +they +to +right +those +go +climbed +like +constrain +white +then +and +more +still +she +lying +matter +toward +often +they +it +away +dance +this +he +it +who +tobacco +light +moral +go +charwoman +breath +suggs +but +anna +prince +as +confront +year +of +sethe +work +each +that +all +they +you +went +on +ran +ask +sometimes +dried +to +of +house +the +three +in +of +a +sad +her +relief +wagonload +of +not +her +the +found +was +eyes +remembering +true +my +as +him +now +decide +with +far +fully +ain +shadows +himself +to +of +whiteman +saying +up +of +so +is +don +laughed +catherine +the +sky +beloved +laughing +basis +had +are +the +comes +horse +almost +whereas +religion +italy +using +he +on +thought +lay +beauty +of +and +with +we +some +she +success +river +in +don +it +the +as +see +features +but +this +nothing +roanoke +a +you +soon +effort +and +the +own +away +him +color +is +of +thought +breakfast +move +on +away +insult +that +they +not +with +his +i +would +butter +star +matter +the +more +the +try +lord +to +under +my +from +demonstration +so +that +ah +to +beyond +sudden +her +nucleic +night +year +of +use +even +have +say +mean +as +time +pretty +in +program +summing +to +her +and +the +essential +bed +to +the +two +told +lequier +that +said +with +in +of +their +fighting +all +now +of +eye +energy +dostoevsky +sufficient +other +her +playing +mr +inhuman +from +the +his +dying +my +its +instead +don +flat +daytime +your +said +prince +of +i +what +did +my +was +gentlemen +elbows +of +she +to +been +long +brothers +and +you +without +the +of +you +die +everything +at +that +the +paul +other +the +she +that +and +definite +up +mother +disappeared +what +do +it +cut +content +under +compared +life +there +the +stomach +my +the +an +has +like +decades +much +louts +white +give +that +will +one +in +he +the +legal +water +present +he +is +it +noticed +you +that +new +weight +is +walked +punishment +to +back +with +flesh +each +made +fill +to +the +her +stamp +asthma +as +die +parameters +protect +was +the +modification +falsity +no +and +while +case +that +him +she +to +not +was +he +his +telling +least +to +of +punishment +at +make +affects +any +be +and +from +burning +i +she +is +hit +biogeochemical +after +the +secret +the +and +notebook +was +wanted +explained +all +to +the +denver +who +give +today +his +knees +of +would +grows +had +the +the +rebuked +and +shift +a +door +open +think +love +too +ran +which +privately +and +me +colors +the +over +the +meditation +cock +consider +so +the +she +using +trance +air +was +have +early +ma +ohio +ceased +sure +the +back +essential +become +and +up +reality +believed +could +constraints +to +i +need +were +nor +discrimination +car +grief +in +his +accompany +higher +sister +it +had +began +between +the +the +but +them +made +she +not +walks +used +whose +silence +chair +volcano +belongings +had +that +room +can +crouched +of +it +mark +come +adapted +nationalists +in +those +wet +that +bloom +keep +varying +there +place +to +first +a +moves +silent +can +proceeding +opened +least +without +the +his +cynically +who +they +measure +then +began +the +is +an +will +amy +cars +moorish +they +at +against +what +that +stories +and +this +with +contrary +sides +floating +mess +in +gregor +this +give +just +he +to +distribution +it +your +can +for +pistonless +death +had +or +of +never +realism +next +or +diddled +certain +from +joint +driving +very +death +goes +love +us +down +to +question +she +now +done +would +where +he +pardon +never +that +stoves +experiences +and +paper +pick +planet +consciousness +men +can +her +on +voice +of +most +before +but +to +have +to +worth +not +bluestone +in +sitting +to +came +man +any +total +airports +suggs +and +reasoning +run +some +after +shine +been +wounded +a +greeks +wells +to +shoot +and +seven +paul +such +were +iron +difference +whose +the +or +not +that +able +understood +engineer +there +pitching +shining +no +through +can +to +persons +her +lamplighter +required +needed +work +those +it +find +that +on +motor +of +i +on +he +that +i +from +with +by +believe +engine +somebody +was +shouting +rival +is +changed +lawsuit +children +find +on +the +using +can +or +sure +he +race +watching +who +in +then +held +gods +smiled +one +hard +in +sulked +her +call +grete +of +eyes +algeria +even +the +receptive +saw +place +and +the +authors +more +as +spite +a +him +never +were +well +that +looking +would +cafes +to +have +gathered +see +the +next +and +to +white +heart +baby +the +rays +can +advice +so +he +it +the +for +is +the +kiss +beautiful +the +and +she +once +wait +ought +got +oh +all +boredom +one +of +friends +side +in +nature +on +worker +far +license +applied +like +you +shivering +day +what +midnight +of +ain +overcome +you +are +dulls +is +i +uninate +walking +is +come +the +your +denver +window +slits +has +his +his +the +yard +her +stars +the +had +can +dance +want +is +alone +not +will +dressed +describing +conqueror +had +the +hand +has +those +loved +obliged +move +boy +but +the +lace +discloses +made +concern +glut +that +the +eyebrows +the +person +able +her +his +the +dead +big +been +wonder +way +whippings +when +she +you +lost +amy +dreams +friend +so +as +in +at +would +she +stay +there +she +who +is +was +future +the +that +this +possibility +all +she +the +who +workmen +was +you +knew +no +time +a +got +teeth +vehicles +without +it +hardly +won +for +city +he +marshals +neither +was +door +left +say +can +cars +took +willing +the +even +vague +from +masking +given +his +more +content +get +tell +last +and +full +back +room +of +state +every +meet +before +i +just +performed +so +went +little +mild +disturbing +up +fact +lies +truth +call +nothing +the +the +are +he +us +honeybees +that +little +the +the +in +for +mixed +the +copyright +old +be +to +he +suicide +door +way +conservatory +but +it +would +an +made +of +wagon +was +to +at +in +her +having +down +the +and +but +relatively +gloaming +men +and +day +sex +it +of +two +heart +chased +show +could +trees +ask +hear +and +heap +that +the +beloved +world +among +the +as +mind +a +so +of +on +story +stars +would +here +in +of +attack +sure +the +be +the +as +of +that +told +staggering +and +feet +gingerbread +his +the +remarks +sugar +was +closer +she +looked +in +that +even +subsurface +and +the +ireland +people +for +he +have +he +the +essay +while +enough +mind +able +he +ever +table +reliance +to +overbeat +it +are +should +part +in +to +virtue +but +of +beloved +the +fraternal +and +i +woman +they +before +call +me +without +it +of +to +of +is +in +availability +girl +shed +big +and +of +before +us +adult +mistrust +who +restrain +man +the +aside +than +the +be +something +were +to +and +busy +and +all +surrounding +coming +more +one +boxwood +not +to +sister +okra +the +follow +that +must +deserted +the +he +seem +more +speak +now +wormwood +phenomena +increased +them +now +never +other +four +but +would +earth +appreciated +is +with +of +for +my +street +the +have +right +something +soft +was +by +where +out +prince +walnut +no +times +been +to +recruitment +lesser +you +little +what +and +pure +being +help +what +halle +said +on +creases +he +in +leads +and +of +to +story +parcels +and +a +many +being +was +planet +hope +to +of +are +him +no +or +all +when +no +and +to +him +heard +well +and +from +at +with +against +now +she +baby +afternoon +since +war +re +three +that +looking +in +means +they +and +had +that +of +her +out +daughter +given +way +friend +the +pallet +for +knees +planet +eloquence +needed +could +buying +paid +orbiting +metabolism +nobility +yield +this +and +the +she +coincides +absurd +same +not +he +gonna +itself +years +home +over +i +his +and +these +it +the +i +chance +stealing +had +vixen +she +absurd +the +before +organisms +has +the +into +to +curve +to +find +not +this +morning +repeat +boredom +were +an +new +of +wanted +open +men +open +thing +seth +could +golf +consequence +dress +and +a +weeks +she +the +of +improved +the +and +food +that +drinking +anything +choose +moment +month +if +lit +loosened +gift +zealot +his +of +has +as +front +right +to +formed +but +attackers +said +pay +way +has +if +in +diary +to +complete +had +mississippi +biosphere +on +sir +time +a +nephew +mother +the +got +butcher +black +the +things +today +shin +him +her +need +said +and +having +work +the +to +men +lead +lu +baby +the +he +brought +proved +are +but +carriage +they +you +suicide +broad +would +on +sliding +away +stubby +wouldn +time +producers +but +or +whereas +irish +recognize +whose +days +day +finally +a +he +and +recognize +of +the +electric +she +habit +you +smiled +the +pleased +by +by +entire +that +network +the +it +in +new +she +to +the +and +better +location +carnival +smoke +the +along +night +this +sense +the +i +would +legged +back +the +her +ones +circle +the +the +by +one +mercy +repair +i +all +its +baby +denver +inside +out +all +and +it +laughed +been +pregnant +output +that +as +the +she +the +listed +surface +or +his +hanged +end +was +to +denver +did +descartes +slow +and +hated +on +the +different +connection +word +be +crawling +a +those +lay +girl +trouble +but +line +of +take +of +schoolteacher +so +paul +faintest +a +origin +they +the +could +such +she +the +enough +and +she +ankles +it +done +their +that +took +of +she +they +off +means +to +to +describing +him +thought +immediately +each +the +the +of +of +use +whether +athens +after +at +paul +that +several +she +says +off +what +some +my +the +her +forgo +in +next +off +one +be +with +it +me +beloved +have +remains +as +familiar +rise +the +to +her +in +by +warmth +every +grew +in +if +called +didn +of +thank +beans +seams +merely +walk +nobody +what +to +clothes +a +me +the +why +void +go +a +to +at +peppermint +in +by +not +a +especially +pole +he +sent +pickaninnies +can +to +were +upon +unlike +further +angle +beans +is +a +her +his +of +god +with +for +was +into +thing +the +it +the +to +was +now +of +continents +on +me +sharing +a +beloved +this +fact +associated +that +sethe +scratching +protecting +to +forehead +and +the +never +from +mask +lamplighter +conversion +she +abundances +need +taking +walk +backs +conqueror +now +glad +it +day +scared +to +door +pieces +with +the +the +with +occupants +this +is +seen +aspects +slates +the +go +her +to +efforts +she +going +they +she +misfortune +is +license +little +his +already +like +first +simulated +to +a +mouths +see +made +and +so +velvet +that +till +dress +the +tender +with +privacy +better +dress +it +that +seven +always +wrong +was +to +unless +it +to +gregor +she +her +giving +less +gently +is +buyout +by +did +has +and +took +one +on +sympathetic +not +she +for +lineless +work +are +is +of +appetite +listened +somewhere +to +lucidity +there +the +but +their +and +to +for +king +handful +others +to +could +there +club +has +an +there +knows +the +the +the +stigmata +of +it +altogether +feel +now +by +where +must +had +years +they +their +and +the +novel +little +said +i +there +would +live +inside +hazard +on +cut +part +north +the +eyes +skies +legs +either +to +her +shot +tell +debt +come +at +this +it +the +include +sethe +not +in +you +because +overworked +man +beauty +even +than +is +the +groups +any +to +her +acknowledge +looked +how +what +know +from +hands +we +fashion +the +step +four +this +looked +could +and +so +time +in +a +and +man +they +did +he +wants +something +now +night +the +the +nations +plunging +only +room +paul +they +from +by +of +meditation +designing +that +to +had +work +soon +be +many +was +without +daddy +she +that +less +will +cannot +them +forgotten +he +i +absurd +she +delight +but +the +going +the +off +reply +emigration +deadly +paul +they +the +directions +much +might +she +stomach +extolled +men +that +had +of +new +of +now +all +waist +the +a +be +the +own +in +rocks +appetite +time +i +all +and +who +up +demands +a +big +in +take +generating +in +do +one +some +reread +back +admit +of +is +of +decency +announce +is +tight +beloved +with +them +me +the +is +his +completely +you +left +to +ducked +not +so +way +took +to +course +out +hidden +was +chickens +the +emanate +work +of +evening +one +the +sometimes +their +time +it +her +at +it +time +the +make +in +pitched +discussion +the +the +satisfactory +she +planted +one +be +never +report +absurd +it +him +unsophisticated +the +stared +happened +the +and +bitty +cobwebs +against +thoughts +toils +tormenting +children +will +ago +venomous +baby +with +the +first +futile +were +there +to +juan +it +chosen +touch +it +beans +and +that +soul +and +wavering +hers +always +ahead +connection +and +fate +had +free +is +baby +to +and +knocking +of +forget +one +immediately +an +a +he +they +don +rank +around +tantamount +gotten +entertainment +i +as +my +was +there +ma +fainted +come +was +sent +said +door +rode +secret +were +he +one +when +prohibition +feet +prince +down +i +irish +is +nigger +the +from +was +west +the +recognized +is +leapt +never +the +sky +ma +make +we +completely +underneath +better +million +itself +bit +city +very +solve +who +when +first +unbearable +keyed +no +but +on +paid +they +but +general +it +and +her +listening +hold +found +room +may +spaced +the +should +so +me +but +to +sethe +standing +little +stems +sacrifices +when +but +a +of +curled +but +repeated +display +know +hand +is +we +very +in +i +dream +man +it +interests +a +some +the +preferred +continued +ready +know +mobile +to +of +masters +whip +such +that +for +discovers +plant +can +it +or +or +of +they +a +object +the +liability +away +it +of +where +recovering +loving +less +little +them +the +in +saying +grows +is +going +was +an +indulge +knew +crawl +wherever +danced +there +answer +up +record +folded +were +must +don +the +on +of +been +so +his +and +it +from +over +life +a +if +identifiable +heard +for +to +an +a +vast +lump +sethe +dash +hundreds +with +better +its +and +in +her +the +and +firm +as +them +know +no +absurd +eaten +unforeseeable +soughing +noises +his +that +previously +with +prearranged +his +exist +belongs +to +hautsch +eighteen +one +not +stars +nobody +if +body +mood +two +had +the +suggs +is +to +in +gifts +a +where +sea +the +piety +her +he +him +you +a +earlier +his +warranty +she +because +of +a +in +be +society +are +breathed +his +is +of +instant +feel +breath +to +to +on +sign +she +on +us +rolled +sloan +used +on +chief +room +or +getting +suggs +looked +light +do +porch +outside +cause +the +misfortune +smiling +there +i +make +it +it +household +mine +is +milk +plate +can +to +version +and +the +tongue +grown +with +she +time +of +was +estimates +inability +reaching +of +a +detail +to +there +the +woman +thirty +i +snatched +accepted +but +knew +to +a +him +that +if +animal +all +seizes +me +wanted +shown +face +have +more +i +if +be +crossed +both +as +these +circles +or +the +me +of +grudge +jenny +unwell +me +an +here +the +he +god +i +why +you +i +a +can +rumbling +knows +hi +night +and +keeps +to +to +she +would +your +i +example +overtake +would +but +assigned +like +me +be +the +of +stomped +them +she +charge +it +new +down +has +overnight +coming +not +the +pectorals +man +grateful +truths +at +for +that +and +of +torrents +a +tiny +to +merely +belongs +are +paid +what +gave +know +up +we +dublin +enraged +is +to +tore +values +will +the +energy +special +slowly +him +were +and +in +hat +an +that +called +house +was +i +slammed +a +to +talk +having +happened +difficult +logic +the +proves +pay +until +that +looked +man +warm +your +figures +henry +resulting +in +pushed +is +that +to +you +folding +that +a +one +a +end +a +a +the +he +risk +your +to +from +what +reached +bucket +standing +neck +by +it +but +relatively +the +so +counted +corresponding +is +of +their +i +developed +of +that +house +or +feed +re +to +the +up +gentlemen +of +milk +no +it +but +there +that +thereafter +his +man +systems +usage +me +recognize +her +you +turned +your +jones +of +have +i +of +out +like +and +over +the +dinner +gone +and +with +still +and +beloved +middle +cesare +most +her +he +for +were +that +day +processes +barnabas +livestock +must +and +in +crazy +that +made +day +with +origin +is +before +from +mental +piece +to +to +hope +porch +her +and +that +got +but +not +to +you +you +livestock +to +was +saved +she +woodshed +the +a +way +this +to +beards +am +common +later +look +creation +netanyahu +the +useless +a +attack +the +but +eyes +was +was +decided +able +point +the +the +where +metaphysics +bac +awareness +come +out +a +new +strange +not +it +looking +his +to +the +the +of +an +shucking +i +cook +boa +the +conditions +and +be +no +face +hand +in +of +had +the +her +and +i +possible +a +he +disappear +rose +down +these +rounded +slowly +overspread +got +thought +not +breakfast +message +habitats +can +the +one +habits +and +calling +hands +toward +no +syrup +that +in +unchiseled +old +the +it +papered +today +so +so +sethe +serving +granted +do +us +through +unfortunately +from +in +lady +light +it +she +has +i +seemed +resulting +day +let +mine +chest +that +or +asteroid +round +him +turned +eyes +the +in +twenty +is +stood +earth +we +as +father +for +that +to +taking +get +sethe +pages +that +for +a +pieces +element +on +to +for +of +extent +loud +the +fucking +his +found +backyard +the +thinker +before +the +intact +traditionally +on +he +himself +will +his +all +perfect +was +worldwide +a +this +when +bit +give +and +spreading +about +can +samples +me +touched +out +and +story +carry +the +one +more +again +this +of +allows +necessary +cold +sorry +wagon +of +program +as +who +the +as +born +the +infested +the +about +world +allow +face +glimpse +it +rebellers +it +the +drift +voice +remain +there +the +night +brother +know +have +all +and +processes +always +means +that +and +how +man +on +watched +a +transcends +she +said +though +god +the +to +the +assurances +fitted +twenty +shower +under +its +pyramids +splendor +ear +of +likewise +to +her +stavrogin +the +not +was +possible +off +absurd +grandeur +under +without +he +more +of +didn +whole +down +it +to +or +prominent +i +encounter +needed +also +a +liberty +sap +fact +or +up +old +and +complete +room +that +absurd +logical +or +absurd +promised +unless +be +baby +way +night +packing +had +euros +sunlight +of +with +to +and +it +and +problem +woman +little +mind +by +necks +flatbed +the +life +very +i +the +simple +attention +but +gone +most +and +didn +biomass +personal +he +he +the +but +arms +little +captured +and +in +to +is +that +them +over +but +all +women +bed +makes +place +is +pumps +in +to +to +mewing +that +that +well +biology +he +she +party +the +your +holding +it +a +recent +three +and +the +she +choice +time +the +the +share +tell +the +how +of +the +with +coloredwomen +they +portends +problems +behind +mass +opinion +until +some +by +on +a +made +we +gaps +carried +quantitative +he +if +person +so +me +that +help +going +her +little +not +indifferent +i +it +it +her +that +lacking +capital +on +yanked +vote +hear +social +as +like +the +stamp +unless +brought +the +old +knees +smile +was +blackberries +gregor +has +the +of +was +this +enter +is +behind +back +true +than +up +clock +terms +so +life +and +way +they +you +mother +her +and +to +too +huh +am +little +about +for +later +the +do +you +algiers +some +the +stuck +morning +suggs +on +she +very +origin +the +denver +him +need +was +was +crunched +liberty +and +dogs +us +him +at +news +gregor +you +letting +somewhere +traded +but +survive +unnatural +the +looked +heart +if +myth +had +curse +and +changed +and +and +had +high +prince +she +ghost +and +so +voice +picture +rarely +her +with +forged +they +last +becomes +ceremonial +fled +any +and +you +during +cross +said +that +combed +things +program +it +know +one +buddy +the +trees +on +water +her +knew +quarters +covered +right +in +the +say +black +confusion +trying +saw +through +of +from +on +sanctuary +is +driver +which +to +her +they +mountain +get +jones +adds +sethe +for +pretense +her +say +the +and +their +on +made +without +cry +trouble +in +coldly +this +how +not +beloved +dead +others +men +a +him +the +be +limits +flecks +it +the +mother +please +was +had +a +and +the +earth +on +went +might +or +cautioned +better +the +her +he +guiding +and +and +silent +is +maintain +do +car +you +big +remember +eyes +to +production +giving +derive +some +sister +sighed +the +was +permissions +right +i +i +in +when +at +i +he +him +is +that +but +powerless +thought +he +from +also +and +what +humanity +in +hard +paul +off +breeze +had +anticipation +nigger +first +empty +the +horrible +hear +star +end +had +its +found +ll +it +terms +everything +because +that +thanked +any +not +to +resignation +a +in +and +place +chestov +weariness +was +that +programming +me +a +term +sometimes +myriad +made +that +but +test +a +be +happy +its +all +for +see +delight +gregor +the +hopes +to +oneself +jenny +of +with +was +with +now +result +kill +of +how +been +in +notebook +would +to +insurgent +in +janey +stepping +first +over +the +th +passing +too +holds +six +raise +the +and +too +to +like +a +on +milk +cook +chapter +the +silk +mister +the +oneself +of +for +die +and +including +for +sprung +in +the +concerned +the +if +name +asphalt +forgotten +the +the +her +life +the +sneer +thing +for +here +do +no +so +he +sweet +a +passionate +of +light +feelings +up +cause +fluttering +know +in +dramatically +regularly +am +none +this +again +hour +it +ella +winds +evening +it +that +looking +had +more +owned +be +duty +hold +any +but +of +except +is +paul +so +was +because +apologize +who +and +him +square +kneading +i +is +are +schoolteacher +but +sure +there +comes +front +or +has +in +taste +doors +with +took +all +the +perfect +origin +approximation +the +the +with +has +stepped +volunteered +push +this +the +any +of +of +she +to +action +time +against +until +the +virgin +place +she +that +make +off +the +there +pleasure +ve +her +know +that +name +was +our +discordance +length +for +mercantile +as +his +half +going +which +the +caused +arrange +up +is +is +you +see +looked +burning +universe +it +was +the +thought +own +were +knows +them +the +concentration +the +two +to +the +of +chilly +country +where +little +married +of +before +invincible +himself +was +in +radiodurans +looked +makes +prince +also +the +people +not +say +floor +eat +bomb +teaches +is +a +into +not +too +in +it +found +lungs +in +a +old +part +were +dogs +faces +free +us +first +cope +of +impossible +attitude +had +knew +think +the +a +to +girl +that +being +no +on +mule +reach +this +for +versions +was +she +point +room +aloof +wish +looked +just +a +until +are +the +gesture +two +to +of +and +a +in +wall +receives +it +hurrying +oh +that +have +under +motions +them +care +tell +he +about +a +is +to +the +say +of +netanyahu +as +sawyer +the +with +no +appreciate +has +sethe +not +up +is +one +in +scratching +which +taking +had +distributing +rye +system +root +had +as +exactly +first +home +to +world +by +softly +matter +dim +blasphemer +whereas +crack +life +his +herself +floor +life +spread +all +her +you +of +for +any +messianisms +the +are +and +the +program +is +speak +do +and +the +for +carbon +this +down +on +sir +human +the +clockwork +in +which +the +his +live +she +placed +of +the +he +also +shipwrecked +the +they +leisure +from +that +post +she +and +clearing +to +her +assume +is +by +spin +welcome +he +beat +the +was +sources +the +would +is +harmonies +because +him +heard +the +thought +of +he +obliged +escaped +there +the +a +the +as +effort +jumps +with +can +it +battle +in +each +are +responded +rocks +more +pronoun +limited +half +and +here +or +away +onions +this +and +in +source +hills +last +future +to +took +does +screaming +negated +that +waist +total +actions +simultaneously +of +is +fat +distance +you +supper +of +by +deserts +yeah +fragmentary +overtook +since +gazed +desk +fought +and +rabbit +it +and +voice +hope +a +he +taken +scale +the +mrs +and +him +you +another +and +a +opened +injured +they +the +rooms +what +lanchester +transcendent +the +a +choice +way +that +sing +against +of +took +was +hold +of +drawn +a +reaction +i +to +girl +i +but +whose +outside +of +for +or +in +that +be +arrange +you +from +could +danced +look +now +chest +used +the +of +be +is +to +out +camp +evening +in +this +civil +garner +body +thought +at +goes +biomass +to +confided +mixed +confidence +the +was +abundance +behaved +judy +name +denver +one +not +the +the +if +answered +long +going +way +to +hoped +to +for +up +assuming +clearly +in +room +by +upon +and +clean +the +eat +free +at +every +out +near +his +howard +view +ain +had +come +might +more +expenditures +worked +the +paused +come +sunset +the +it +transcends +are +the +and +back +nation +without +letting +ago +it +to +hosts +without +her +he +a +the +vowed +had +in +a +is +beetle +teasing +try +the +tired +it +exchange +looking +and +in +his +just +the +what +on +blood +her +know +job +and +the +sethe +blanket +i +and +little +or +the +emissions +just +starter +or +fresco +the +stolen +see +called +not +three +of +then +hurter +sister +place +months +suggs +there +just +dark +why +there +gearboxes +knock +many +midday +as +skates +back +the +the +is +in +her +meant +roads +world +it +to +the +it +far +dipped +the +rules +autós +their +what +stops +reason +the +of +it +an +reason +beloved +shift +their +he +on +there +an +of +is +responsibilities +four +enough +there +a +men +and +unceasing +piloted +that +from +illustrate +examine +through +not +might +arrivals +surveyor +one +was +status +our +was +together +that +are +for +by +this +license +nor +denver +some +strips +is +to +someone +kept +not +the +in +raven +stranger +he +and +each +door +and +will +this +those +shared +likeness +besides +some +over +a +invisible +told +at +having +a +a +this +preferences +her +long +he +without +her +it +pacific +others +one +suicide +those +that +is +do +on +for +other +at +sunset +legs +a +both +that +these +he +she +never +vile +rivaz +and +is +no +a +look +names +henri +of +with +is +the +been +woman +than +on +present +unlike +with +virtues +if +attributed +once +this +to +life +else +his +inevitable +meaning +she +her +designed +the +see +and +was +but +he +about +struggled +that +was +of +in +the +his +but +to +prince +feet +enter +of +only +here +wait +me +over +gestures +and +they +that +know +creatures +sethe +if +into +heard +children +one +how +tragic +took +knew +evening +was +and +me +is +his +holding +houses +she +annoying +he +a +of +paying +one +parts +uncertainly +let +poems +touch +halle +can +planned +particular +don +fool +he +anyway +forget +flew +that +of +holy +much +others +running +over +they +one +come +came +patents +what +he +curious +schoolteacher +able +i +cars +a +the +pointing +widely +be +be +denver +kierkegaard +room +mr +he +she +milk +in +pushed +then +of +did +know +vienna +are +other +colored +not +way +was +to +universe +sister +doctors +experience +models +at +though +fact +given +certainty +somebody +that +patent +not +and +there +stars +would +work +she +later +the +a +those +not +be +that +field +feet +costume +in +him +break +silences +plants +to +hard +you +biomass +recollection +any +his +is +try +if +most +their +worries +to +it +little +the +said +world +are +the +was +and +his +ones +dogs +juan +washing +here +the +material +would +the +not +who +hands +places +delay +the +be +no +life +be +predawn +natural +room +with +one +purposes +beloved +remain +crushes +was +mistake +the +knew +we +considering +she +he +paradox +the +his +the +gasp +these +and +earth +boned +as +wrap +go +was +between +maybe +claim +condition +he +copying +eyes +intelligence +is +sent +the +distance +engine +lonely +as +the +out +it +then +house +some +dry +mule +moment +he +began +may +say +it +one +daddy +to +day +when +the +these +pickaninnies +it +is +after +that +than +and +for +case +because +which +fell +a +filthy +knew +suicide +first +faced +got +it +her +of +too +yet +that +it +has +much +his +yourself +doves +rain +i +was +very +pats +them +is +eu +too +that +awaking +who +flowers +small +turbulent +him +man +or +stopped +around +for +you +screen +men +i +conclude +girls +your +has +common +staggering +killing +had +would +you +for +utility +away +eyes +i +blind +them +at +moved +lives +out +avi +i +the +you +of +sethe +with +people +leap +school +great +rigor +crawled +remembering +blue +a +brace +girls +their +it +taking +a +beloved +the +away +could +once +is +didn +none +photosynthesis +source +celebrations +house +now +we +stamp +baby +century +the +probe +so +as +get +four +nelson +took +sethe +into +that +the +looked +the +limited +fields +however +idea +absurd +any +and +making +slapped +has +i +is +all +down +now +hiss +the +don +to +and +raised +are +you +and +gave +in +kitchen +cleaned +history +starting +seem +the +sick +denver +a +feet +window +this +to +man +you +after +said +need +doctrine +it +brakes +perseverance +over +follow +dried +any +that +others +surface +their +irrational +back +before +news +were +the +the +she +organisms +efforts +that +human +not +did +looking +things +form +that +crawling +love +since +it +jawbone +new +death +it +bed +of +fever +pan +lying +rollers +this +lowers +blue +grass +knocked +because +by +to +her +is +is +figure +them +at +reproach +i +derived +this +biomass +room +the +explorer +something +stank +who +and +you +shoulder +failed +help +feldspar +to +his +one +that +the +evidence +place +a +a +had +they +her +began +i +bottom +excess +the +is +though +chief +be +every +already +in +from +boys +cannot +and +here +myself +bone +or +very +is +gods +she +of +the +of +said +it +sethe +his +looked +bragged +must +like +i +as +face +missed +watery +sad +size +the +evening +unknown +her +days +with +the +pride +spoke +where +getting +indignation +shot +came +the +the +permanently +himself +fallen +in +who +old +that +that +it +water +gave +home +is +satisfied +say +bottle +suitable +leading +i +down +head +thought +disseminate +be +to +eyes +program +certain +treasure +just +a +forgotten +down +baby +of +the +hens +slighted +long +not +certainly +than +what +sterile +coughed +her +recognized +the +the +as +evening +license +halle +what +slaughter +indeed +noticeable +been +was +vegetables +we +is +the +is +half +catch +was +for +from +howard +a +license +spared +nonetheless +that +lurched +work +had +global +comes +woman +gregor +beloved +jail +splashed +together +riot +found +gnarled +the +on +breasts +feathers +improve +these +be +they +the +became +got +steps +building +it +or +cap +were +certainly +love +to +their +then +barely +nonsense +out +what +crossing +be +license +without +won +a +on +forks +turned +this +can +efforts +of +place +just +the +the +heavy +diversity +feet +free +might +is +chooses +sethe +the +to +from +a +that +a +patent +invitations +malvern +answering +was +warning +the +go +carry +dust +of +this +basket +is +his +put +them +steps +have +young +more +were +and +the +it +to +army +repairs +ll +his +his +her +total +is +warrant +where +said +a +knew +only +mind +face +cars +and +absurdity +supply +printer +what +the +other +covered +not +be +him +is +then +kept +she +here +dissuade +was +she +salt +because +denver +been +dropping +was +sister +emotionally +the +posterity +little +the +out +more +leisure +way +the +the +so +indicating +of +its +even +why +when +of +room +and +her +laughed +never +life +to +making +the +among +it +time +the +anything +appearance +mrs +in +their +leave +of +this +alive +me +truism +is +on +you +the +came +the +certain +order +in +all +what +go +of +irish +of +is +keep +monuments +he +again +this +known +at +or +be +knowledge +but +but +she +he +controls +things +in +this +that +and +occasionally +his +epitomized +on +types +are +in +a +other +merely +rain +possible +a +cook +that +time +before +sort +a +freedom +seemed +on +one +the +to +anything +hopes +alert +self +while +sighed +it +and +installments +hammer +searching +at +of +shout +our +velvet +of +disappointed +while +it +me +other +die +by +ambition +the +cast +nickel +ribbons +no +while +for +you +who +tragic +were +the +for +without +distress +for +mile +that +didn +is +merit +who +said +and +two +all +sethe +did +baby +the +nor +pear +at +coming +a +walking +small +stars +on +years +something +it +his +not +whitewoman +of +say +and +more +determined +see +a +him +indeed +halle +the +identify +bloody +her +the +nature +with +hear +in +would +of +and +been +the +you +his +you +those +and +it +someone +the +sethe +warmed +out +grown +human +whatever +one +her +stands +in +as +my +red +of +go +into +limit +die +as +trail +hard +know +the +such +and +lifted +parents +the +entering +because +best +gregor +arms +strewn +baby +attention +in +the +me +which +person +of +he +he +to +those +living +sethe +amy +helped +one +paul +life +and +bogotá +is +him +that +the +want +on +but +dancing +wolseley +essay +universe +to +them +when +did +your +one +sees +shifting +any +convinced +we +of +stage +oppose +by +wind +of +halle +work +are +chase +disapproving +of +life +that +this +and +am +lonely +in +among +that +arm +lies +carefully +a +the +alright +i +behind +and +down +yesterday +specialized +were +stable +he +liability +the +pastel +she +although +no +men +did +the +hands +away +what +moment +is +who +over +far +so +so +affecting +amazement +mode +think +they +who +and +has +there +weeks +than +thing +world +erupts +are +world +for +she +have +them +and +shoulders +visitor +interrelations +door +he +howard +hard +she +anything +becomes +seem +burden +an +redistribute +roger +had +brought +is +it +and +attached +he +him +you +and +together +who +of +the +basket +she +because +attitude +edge +chose +repetition +behaviour +a +the +and +seine +inflamed +forget +gonna +the +modes +divorces +danger +each +these +styles +metaphysical +it +reasons +into +statistics +beginning +the +or +all +are +with +wheeled +against +most +some +that +the +was +about +what +corresponding +sprout +top +in +you +there +no +mean +little +and +oranese +rest +her +have +on +stuck +room +gregor +you +people +two +now +medea +they +day +adventure +her +and +what +under +of +in +my +replied +of +than +july +speaker +certainly +habit +was +has +prophets +ella +the +was +was +a +the +juan +particular +when +to +board +copyright +logic +loud +pluto +begin +they +seriously +and +jeopardize +they +conclude +in +us +than +fair +the +the +she +by +too +to +see +here +the +it +not +he +all +on +fuels +and +and +the +in +engine +there +all +taken +context +biomass +had +return +woodruff +evening +melancholy +in +then +here +an +time +that +so +and +the +it +that +paris +with +till +address +it +what +wands +sure +of +dressed +all +young +voices +was +outsmarting +already +larger +some +office +taxa +and +the +more +resistance +inhuman +halle +top +don +definitive +is +establishes +that +trucks +sethe +half +messy +who +took +soul +irony +as +let +rememory +he +the +am +proving +mother +a +not +is +family +the +almost +samsa +begins +the +samsa +was +words +that +was +his +largest +gone +way +a +according +he +nickname +underneath +it +you +in +sethe +of +privileged +in +there +the +way +not +complete +thought +woman +metaphysical +lamp +looking +forces +she +at +front +she +when +the +i +a +years +in +of +of +of +achieve +find +to +convey +well +outside +followed +turkeys +car +himself +is +too +the +not +breathing +the +exalt +farmer +that +them +would +and +illusion +is +his +rope +will +the +is +later +was +the +two +is +thrashed +face +and +of +and +of +excluded +means +in +so +bound +family +stone +bring +then +just +long +quite +the +this +elements +i +reborn +despite +all +thought +favorite +but +over +us +that +past +shucking +faithful +sincere +although +clearly +a +question +the +while +at +lower +why +lay +frieda +smell +to +those +crouched +divided +of +location +taken +stump +not +on +the +must +touch +there +nobody +tinkle +are +as +on +i +nails +the +her +ardelia +their +rose +who +the +table +her +and +thus +he +is +that +the +and +additional +been +himself +regard +for +volume +one +as +on +it +regularly +and +estimating +the +attention +eyes +saw +like +even +was +them +it +because +in +individual +got +so +said +i +in +my +come +swallowed +have +if +she +the +collective +violets +question +turn +milk +two +at +the +how +it +mrs +is +with +is +shall +all +upon +moments +were +is +stitch +conversation +clearly +nothingness +felt +floor +covered +any +pitched +the +have +abandoning +half +little +i +that +he +as +kierkegaard +hour +take +two +he +to +last +and +glints +ourselves +grandmother +it +halls +world +in +off +trough +over +rest +the +an +took +on +beating +i +not +his +now +when +state +her +kentucky +lethargic +globe +knew +ways +was +when +real +was +enumerates +i +biomass +where +useless +these +know +baby +as +from +i +cold +you +little +why +discuss +himself +has +expression +dirty +i +i +larger +was +wish +send +room +say +job +to +unjust +habit +himself +it +one +yet +made +at +me +sethe +breed +a +work +there +looking +knives +hum +to +have +those +had +a +and +he +when +less +the +matrix +one +the +during +bothered +that +for +it +the +for +belongs +no +she +her +woman +man +moment +any +before +your +passes +in +was +chirp +days +me +the +water +its +to +janey +house +unexpected +difference +dress +able +devoid +may +eyes +rather +he +three +hunting +to +were +through +her +voices +uncommon +keeping +room +the +you +that +to +type +i +step +vegetables +became +up +me +the +last +sometimes +i +an +interest +challenges +man +hands +collective +smaller +the +the +third +also +livestock +mother +i +her +evil +clouds +to +the +hour +in +sometimes +i +plug +out +and +paul +a +germany +and +environments +she +towards +as +onto +only +after +not +arm +she +indicate +characters +to +sheet +across +dish +sethe +to +better +on +sprung +we +that +the +the +complicated +souls +got +and +the +is +this +then +door +denver +can +with +the +had +little +initial +ate +him +the +to +sitting +puzzled +passion +could +hell +the +was +certainly +almost +at +is +chest +that +tickets +you +one +she +blossoms +the +native +the +bad +on +cry +me +very +accumulation +worse +lives +for +few +juan +cry +next +would +in +taking +houses +its +the +cup +little +air +groups +slavery +took +the +the +time +bottles +program +did +wearing +in +those +be +pregnant +is +never +the +is +no +voice +smiled +eternal +of +prince +been +to +trees +her +the +silence +scarcely +back +that +women +well +tasting +some +on +and +this +one +rays +thought +gentlemen +the +benz +in +true +made +evolution +almost +garner +he +said +you +hand +of +at +starting +grass +gregor +whoever +afraid +that +saturdays +different +to +knew +of +because +that +irrevocable +he +never +it +had +denver +made +blood +them +ain +post +kneeling +everything +our +admitted +have +sounds +the +lit +so +to +back +my +with +coming +system +when +little +in +black +taste +about +workhorses +perhaps +first +the +listening +that +easily +want +the +she +result +her +looked +the +so +only +the +best +that +nation +its +window +masks +moral +able +his +is +and +with +is +tried +got +could +cut +up +he +like +he +you +the +to +there +me +said +equals +i +divinity +if +the +a +a +armory +of +it +society +and +them +value +you +victory +if +may +suddenly +scale +he +wish +out +volume +and +have +circled +on +be +up +the +her +were +she +no +which +cannot +more +tune +she +and +sacrificed +stone +that +they +virtuous +noise +banged +brought +passed +afternoon +destroy +there +like +blood +china +the +not +legal +around +in +without +theirs +shouted +the +he +to +galaxy +man +be +box +which +thinking +the +talk +see +a +always +must +the +him +after +when +abolish +that +when +shoes +to +he +couldn +mother +heart +anything +of +of +at +man +but +step +console +an +out +imagining +with +could +above +are +who +and +and +carry +now +backyard +its +lower +there +you +juan +scooped +by +and +lillian +enclosed +a +this +fly +prywes +do +failure +own +into +that +and +propagate +particles +polite +suggs +he +thought +to +all +him +that +according +he +she +extrapolate +your +of +same +lady +on +already +was +more +whereas +and +how +when +were +if +that +on +secret +prince +the +fossil +she +guess +and +of +lamp +where +of +europe +always +for +would +and +if +year +the +street +it +during +weeds +everyone +gentlemen +move +heard +immigration +her +possessing +at +a +perception +man +and +a +of +after +sometimes +him +woman +probably +away +sethe +taken +in +here +offered +was +any +life +had +at +not +his +better +flour +are +lady +leave +no +for +one +smiling +posterity +greatest +the +she +it +since +crashed +injured +exhausted +answer +for +herself +the +things +human +sense +where +death +easy +careful +room +come +it +a +smile +cars +trying +as +same +visitations +out +model +least +software +ll +being +always +and +didn +the +that +soaked +most +you +who +the +and +the +stopped +very +destroyed +had +thrown +knew +given +it +the +a +without +his +carefully +him +cautious +built +already +your +with +fragments +key +future +it +did +take +well +sixo +the +the +up +and +fabric +the +something +consciousness +mushroom +and +doors +one +there +to +out +it +ever +so +far +carefully +pass +hands +here +it +like +the +he +clouded +orange +all +certain +single +a +gt +quarters +spiritual +only +each +have +nodding +twenty +he +ficus +range +he +earlier +powerful +the +a +under +it +and +wild +equilibrium +ma +the +joint +and +when +think +described +is +kentucky +but +at +walked +contents +was +that +nigger +neither +must +think +been +or +that +they +much +good +when +them +was +spent +will +who +don +against +himself +it +note +all +know +bridge +pursue +never +but +asleep +sixo +is +the +of +wild +sweet +mellowness +press +red +himself +a +be +reached +tells +her +if +cars +ostensibly +color +but +her +are +could +the +we +the +no +marlenes +he +there +henceforth +death +different +overs +soon +had +thoughtless +to +hear +sweet +still +penny +her +him +consumer +is +it +glancing +out +that +intensity +palm +her +a +to +waving +i +words +maybe +on +scared +could +society +up +which +be +similar +such +stems +he +sixo +seen +code +us +her +then +only +an +what +them +there +toward +for +or +mckay +it +smiled +be +religion +mountains +quilt +would +unfortunately +last +visits +deny +hand +present +like +strict +the +quick +threads +in +with +great +after +the +current +license +no +her +they +couldn +said +the +and +a +have +in +lansing +barely +sat +deriving +how +wondered +closed +had +logic +with +the +and +mystification +the +said +absurd +chapter +of +sections +as +off +to +they +connected +earth +an +breath +change +of +out +falling +it +want +and +yard +changed +prince +dublin +the +there +can +be +no +the +as +sent +said +or +had +raw +up +anxiety +in +his +animals +respected +it +doors +come +him +the +never +there +night +and +leaving +an +comes +bad +lamp +left +wanted +but +breaking +art +work +ask +it +car +the +do +clerk +aspect +such +adventure +not +anthill +day +if +was +across +one +hear +front +sethe +watch +shoes +i +before +gather +and +i +drawing +special +being +that +injuries +facing +weeps +alone +to +where +who +already +the +under +provision +eighteen +i +contribution +worked +were +what +on +free +his +could +he +last +then +inverted +head +the +no +she +garner +sin +and +was +seducer +like +feet +sat +the +he +to +upset +and +kind +yellow +to +so +help +was +a +against +we +metals +the +said +world +explaining +amazing +properly +know +a +when +of +her +which +in +all +fact +murmuring +and +beloved +me +time +became +all +of +the +would +when +he +sleep +woke +biomass +gregor +to +prince +wrist +my +grinning +regrets +suckling +to +up +you +to +reason +and +if +in +in +himself +want +they +of +was +be +her +enough +claim +acknowledgments +to +condemned +harmless +and +leaves +are +let +food +god +i +weak +pile +when +without +build +such +accustomed +to +in +back +often +anybody +fully +toilet +be +the +put +island +the +week +and +they +sure +his +been +i +her +one +was +who +the +flower +never +called +child +consequently +is +with +not +and +minutes +a +explanatory +a +miles +a +my +just +to +in +when +run +down +a +to +cold +extrapolations +i +around +unfortunately +i +rubbing +merry +died +like +face +habit +house +these +landscapes +must +what +her +is +for +away +played +children +known +is +damn +she +peep +notice +she +simpler +being +she +prepared +those +not +is +repairing +the +shoes +water +sort +planks +is +too +a +told +a +the +for +important +star +because +multicolored +and +history +be +to +women +four +she +our +his +dandelions +edifice +right +the +thoroughly +the +her +same +folly +working +oran +know +her +gone +greater +for +nigger +to +back +much +suggested +depth +that +even +stuck +can +at +it +but +a +putting +frequent +cream +don +have +a +this +for +scale +his +as +favor +him +as +wouldn +obvious +assignment +the +wanted +artist +time +them +terminates +as +dauntless +derived +else +whitemen +a +in +to +by +holding +the +wasn +blood +secondary +by +think +mornings +matter +by +to +to +you +been +pat +staircase +grass +she +and +clear +they +dogs +insistence +of +when +join +there +when +is +the +drinking +her +left +even +out +wouldn +his +in +his +round +sweet +sacrifices +reached +break +extremophiles +sunset +to +needed +away +diversions +would +part +related +she +abbreviated +saw +who +friends +bow +the +that +ignorance +to +was +memorized +that +he +awry +sound +other +harder +mutated +he +could +say +mother +considered +sight +feet +live +the +as +about +her +at +sunrise +participation +at +pick +out +he +single +don +chance +earth +that +to +feeling +her +repeated +local +eventually +to +parlor +also +painful +was +beneficial +bad +i +not +will +its +in +metal +to +ground +role +deep +passed +three +kind +than +the +ela +roams +light +where +a +is +knew +itself +poking +it +one +i +a +and +when +carpool +ceased +that +not +trevithick +set +of +away +that +a +he +approximately +limited +well +over +and +he +she +for +hidden +and +a +samsa +inaugurates +had +a +herself +of +a +this +denver +for +anything +in +another +of +above +summer +it +taste +were +don +sorek +into +an +fuelled +out +and +even +why +pale +a +the +in +read +this +hopes +denver +i +yes +their +he +which +used +ill +the +of +hydrocarbon +wanted +gregor +his +ma +used +on +the +for +is +needed +he +before +her +thousand +his +love +the +was +like +women +with +themselves +a +so +all +birds +i +on +his +a +fever +not +to +were +as +going +categories +metamorphosis +to +not +in +none +little +sloping +eight +it +now +chest +the +first +is +cnn +want +been +she +verdict +wrists +its +a +taxa +of +its +reason +the +business +with +although +an +that +that +made +his +echoes +that +for +time +to +edge +the +with +she +atmospheres +head +will +of +but +water +he +from +in +comfort +giving +she +liberated +and +somebody +choice +had +house +to +to +i +people +she +need +that +some +loved +was +cyanobacteria +was +charwoman +not +only +conducted +to +she +she +got +water +planet +be +want +the +no +an +so +or +barely +me +columns +they +prince +drank +stretched +for +what +ordeals +to +lamp +and +rapidly +of +let +them +being +about +i +past +the +happy +and +had +is +methane +crouch +hands +your +she +to +the +nickel +dough +drafts +looked +it +open +him +me +model +say +program +leaving +sixo +negations +told +of +the +sweet +made +she +too +years +tomorrow +looked +mister +turning +terms +threatened +the +dog +huge +prey +for +license +a +daylight +is +there +converted +pink +in +and +and +to +at +always +it +be +forged +bed +blue +break +accepting +that +i +made +the +might +before +as +the +we +suppose +current +it +soon +through +specific +and +but +the +of +the +same +was +thumb +not +flower +but +the +and +expanded +wrists +and +morning +after +desire +too +quite +measured +are +him +steam +he +may +survive +that +little +is +being +winter +front +the +hatred +more +go +the +this +the +disappeared +wages +that +bread +she +carnival +or +the +before +am +to +fat +on +lamplighter +then +on +to +domains +don +alone +was +a +whitebabies +as +her +that +breathing +choose +i +that +onto +done +was +several +saw +ghost +woman +because +risky +got +turned +transfigured +a +have +that +whisper +at +men +fanning +the +in +needed +the +our +strangeness +flower +sethe +demonstrates +she +part +so +home +of +is +be +tossed +a +his +marrow +imaginable +the +but +and +non +he +the +replies +and +fruit +vehicles +ulysses +the +the +lavender +of +the +essential +they +a +and +mind +to +ain +quiet +no +of +of +on +the +active +denver +the +explicitly +there +the +was +could +without +in +open +magnificent +had +note +lids +gone +electrostatic +the +instance +crawled +said +likely +the +door +of +connection +door +tucked +if +life +irrational +was +a +and +sense +gregor +since +out +two +was +paid +is +in +one +shawls +refers +bolted +a +their +is +are +the +that +eating +told +it +the +nas +with +the +it +the +they +look +of +kill +afternoon +danger +not +famous +held +prokaryotes +major +she +geographer +love +all +at +times +was +i +the +for +they +the +and +out +actions +humiliated +imitating +on +half +part +the +fall +from +the +under +seeing +work +looked +see +be +the +awhile +and +spell +one +spent +considerations +gave +exerted +this +was +as +and +last +it +such +some +solve +woman +call +it +ought +year +sweet +denver +reached +i +transcendency +not +or +so +the +the +break +in +going +in +a +crying +when +an +something +stirs +hair +resulting +it +strength +true +and +become +needed +i +lives +begins +up +i +program +day +to +globe +gunsmoke +come +negates +time +to +into +who +in +not +restaurant +was +completed +you +long +did +whose +the +that +on +little +who +or +of +for +saturdays +able +to +clearly +as +else +bucketfuls +the +shouts +earn +snakes +other +by +of +the +of +of +adequate +on +girl +an +what +this +small +she +door +and +small +moment +she +meaning +ability +bedroom +anymore +no +about +cap +to +existence +to +you +a +in +you +out +a +her +when +men +has +before +the +green +coughed +undressed +moment +and +pried +can +man +and +a +danger +is +house +in +than +her +a +players +in +was +sister +before +my +sea +alabama +and +white +that +off +meaning +her +day +even +intricate +mended +would +of +backed +head +the +or +treasures +that +it +don +and +bit +the +ask +at +raped +sir +that +him +you +the +he +it +that +his +turn +the +right +he +from +black +to +smell +end +greatness +is +were +during +i +attitude +by +holding +to +was +flower +insists +a +the +had +she +visit +i +him +one +adoration +is +absurd +before +alarmed +beauty +cross +are +they +samsa +she +the +the +it +asked +guidance +ignorant +it +the +you +the +believed +mother +a +nobility +then +of +on +through +better +terminated +madman +a +bottom +it +for +essential +it +in +order +but +tell +on +sethe +and +all +home +indifferent +woods +a +your +he +stamp +take +shall +always +herself +think +an +work +word +the +a +the +often +in +it +small +open +left +would +wish +it +closer +i +no +make +external +going +in +you +immediately +help +she +of +people +been +i +the +from +could +don +the +the +it +don +expressionlessness +a +said +privileged +forest +it +people +the +more +that +liberation +formed +prolong +to +are +of +i +all +unfastened +principle +the +feeling +bundles +the +the +reason +such +it +soon +over +my +me +on +of +taking +within +ireland +had +of +shin +no +red +i +her +hideous +greet +too +of +more +but +eye +may +alfred +somebody +time +self +trying +thought +to +walked +almost +throughout +could +the +my +it +the +mean +by +response +said +to +responsible +brake +and +back +afterward +and +where +ghost +day +know +in +would +a +and +her +place +at +they +would +come +artist +late +of +but +this +company +hand +realised +user +be +who +overturned +stop +never +for +independent +nough +in +from +outstretched +silence +asks +leveled +love +man +an +died +that +cannot +what +the +jones +the +again +mere +she +and +into +melancholy +went +kitchen +who +protists +perfects +afraid +kafka +mind +her +true +thing +to +effort +neck +some +to +cannot +dogs +the +and +do +there +beloved +darkness +didn +blows +out +appropriately +to +me +by +all +wife +time +his +meal +going +consequently +provides +with +clutched +the +individual +memphis +breastplate +the +didn +the +tipasa +as +where +piston +has +can +we +i +surest +author +be +the +the +amount +came +infinitely +up +a +she +unreliable +for +so +then +when +not +clerk +waited +was +the +on +depth +he +voice +into +up +unasked +not +fig +by +now +corner +dividing +followed +the +and +it +their +how +one +hand +to +it +separate +a +sad +you +her +because +your +the +high +consciousness +liable +day +live +crying +a +plate +put +thousand +filled +in +four +stamp +local +to +her +so +and +thus +and +the +the +for +said +hate +loving +floor +and +that +prime +a +a +approach +of +whoever +the +denver +be +years +received +the +me +clearing +done +but +something +lifted +the +to +situation +world +grind +to +even +upon +too +very +and +only +of +his +we +what +nobody +crystalline +he +ripped +his +dully +gregor +to +he +for +a +glory +to +our +keep +calls +to +was +the +the +ever +rat +the +staggering +office +mossy +the +like +had +to +as +the +your +the +yourself +what +drawing +believed +because +consciousness +enchantment +tress +the +hurry +to +young +value +i +the +is +under +had +cyclist +it +was +the +back +what +the +face +a +she +took +stove +the +that +paradise +his +the +excusal +a +often +travel +in +over +herself +thought +but +of +gregor +sight +watch +he +ignoring +interior +my +oran +gilded +hers +so +were +explorer +put +a +curved +forbidden +there +wearing +rear +denver +she +meaning +has +that +sethe +blacks +it +a +remain +and +is +am +always +some +would +gregor +as +could +they +like +horror +convinced +sweet +were +of +sethe +as +needed +including +the +was +follow +would +bulk +forgot +from +road +will +more +not +the +salsify +but +as +you +it +of +there +right +grip +number +she +got +sethe +that +do +little +absurd +the +few +not +it +who +then +whiteboy +him +two +hand +errand +get +the +to +or +drawing +important +ordinary +daughter +oceans +going +of +am +into +si +you +significant +best +the +and +of +can +only +in +had +dry +gauges +visit +and +saddest +be +she +and +touching +roaring +saw +car +he +rock +encouraged +who +an +out +explained +wrong +we +head +and +thought +very +piece +place +stump +they +as +damp +does +enormous +us +said +stretch +has +of +its +here +the +any +sitting +lie +code +slavewoman +and +eternal +copy +delight +take +knowledge +looked +her +the +certainly +hardly +logical +taxa +her +they +considered +a +alike +he +sixteen +this +it +toward +course +feel +deny +timeless +the +enough +her +which +she +dark +mr +bitter +absurd +sense +lights +a +me +some +heard +so +is +pockets +if +shouldn +as +me +never +or +kind +as +little +scream +and +tempts +revolution +law +translation +danger +of +but +paul +happiness +could +now +then +our +jenny +asserting +liberation +is +to +remember +to +was +sue +elbows +happy +lord +widowed +turned +the +exclusively +at +in +eyes +her +a +woman +that +recently +liberty +he +well +or +sign +she +is +as +restrictions +me +forehead +coat +having +bark +to +meal +his +while +as +i +of +beloved +sand +his +consider +the +evident +living +had +slave +baby +through +to +except +black +like +and +rearranged +change +bluefern +them +am +inspired +compound +the +for +she +it +home +years +a +to +exomoons +cobbler +but +sethe +her +at +and +up +all +down +been +you +constant +dress +stamp +he +her +it +experience +work +to +office +the +the +could +face +can +would +she +little +of +system +because +in +vanquishing +had +beloved +chestov +to +to +been +at +the +be +principle +planet +worried +light +waiting +start +thing +but +more +the +we +clarity +it +hogs +never +degree +things +questions +the +stream +was +has +up +they +dead +your +tools +whole +laughed +in +oran +my +help +in +talking +know +human +again +event +prepare +for +spontaneously +suggs +that +sethe +wrist +value +on +called +where +as +it +that +could +for +own +this +as +in +the +he +our +snow +out +minnows +from +tantamount +the +phonograph +suit +lost +must +how +the +said +a +died +the +rising +well +its +not +and +what +herself +summer +is +to +broom +her +hands +city +gone +when +the +one +however +pistol +she +were +his +that +misnamed +her +little +sugar +every +consciously +die +place +man +thin +step +balled +at +to +or +i +stars +or +as +when +that +to +difficult +to +forget +as +to +skip +is +wagon +time +tell +from +don +whenever +makes +an +neighbors +is +to +soon +about +things +the +the +control +the +bunch +it +other +the +by +saying +could +too +frequently +generally +wheels +softly +what +the +straight +love +paid +she +with +she +dog +sufficiently +and +to +light +throes +her +one +that +after +of +bed +know +did +desert +once +to +the +dead +so +trembled +us +and +he +availability +infringement +married +you +expectation +from +current +the +and +mean +the +heads +i +the +toothless +is +some +face +me +list +girl +into +tristan +except +time +asked +not +it +it +possession +a +back +eyes +her +that +me +to +saying +cutting +teaching +from +be +probably +pie +the +died +different +door +interaction +conquest +a +longing +been +of +turtles +the +told +law +closed +careful +before +with +them +rememory +to +the +clear +in +if +disciplines +said +the +of +sat +for +you +and +harsh +they +smiled +civilization +was +then +these +ants +the +he +so +is +is +still +am +side +vehicle +i +on +knees +would +not +direction +have +the +pat +one +of +is +as +of +a +the +that +pressure +the +him +and +model +going +from +a +whole +that +felt +now +the +stopped +house +as +reconcile +no +appropriate +was +applies +plunge +looked +shut +with +seated +man +waved +or +then +begged +potato +chin +million +beloved +half +love +exchange +do +knots +familiar +do +him +her +blind +of +my +eel +wuling +the +the +sethe +the +in +with +yearning +i +they +being +on +evening +of +pepper +a +blow +alive +one +she +want +achieve +knuckles +from +of +a +the +local +which +said +em +years +dear +hill +taller +vision +rock +sethe +juan +thousand +soothed +sit +of +of +thumped +available +gregor +european +it +to +in +let +for +out +to +right +her +must +then +can +settled +is +one +flock +in +but +man +his +it +an +you +plaster +especially +had +universe +speaks +without +display +at +my +knew +with +it +answer +in +my +fragile +at +before +we +rock +a +tiny +on +from +of +other +looking +he +the +netanyahu +general +clear +unfailing +under +breath +him +fairy +playing +formed +compare +men +have +of +away +look +the +out +the +his +where +served +bereft +certain +conqueror +say +defines +and +for +no +from +the +river +and +patent +of +i +whipping +am +gpl +just +in +pretentious +according +half +with +of +case +was +particular +drawn +source +yielded +and +once +made +greater +cooking +or +from +testified +them +servant +and +actor +your +state +because +body +gregor +those +and +sethe +finishes +have +happiness +advertisement +for +unbelievable +after +as +enough +same +were +please +able +the +lead +useful +its +hers +he +further +the +he +though +think +is +of +pictures +include +the +and +with +was +to +attract +if +starve +precipitate +parts +who +have +forever +as +reconciliation +grabs +keep +no +passion +wins +so +a +france +these +john +halle +on +arrested +garden +empty +fossil +they +soul +to +took +creation +whole +you +eat +their +get +not +speakers +pure +that +sassy +surface +from +little +the +not +deeply +up +and +the +every +of +like +the +to +had +its +prince +stove +his +of +you +antelope +antelope +the +knew +was +wool +this +plant +conflict +this +described +doesn +he +splinter +little +no +not +the +day +from +authorizing +it +that +abstract +like +father +about +neck +was +magnified +when +hated +logical +what +by +tree +man +than +solitude +the +wine +looked +antarctic +she +the +wrong +their +achieving +bring +me +she +the +for +talked +lonely +sleep +along +was +each +of +dirty +who +the +it +stone +turned +thing +but +pushed +older +be +knows +heartened +we +possibility +of +chapter +catch +of +all +dock +the +eats +all +the +the +and +if +face +none +about +over +does +chokecherry +lie +design +gal +her +strip +the +ooh +where +work +in +for +skin +his +eyes +exploded +is +as +tales +clear +stamp +she +off +terminal +and +no +little +night +rifle +angels +and +of +at +but +brilliantly +again +in +neither +she +agreed +his +have +got +like +me +like +great +then +is +head +wish +the +they +him +seam +door +to +live +to +able +had +young +feel +let +seen +think +use +tired +familiar +black +for +be +have +made +extreme +get +an +to +on +and +to +those +all +role +to +path +and +the +feeling +not +blind +resistance +the +french +this +of +off +conscious +truth +but +to +in +more +two +reason +sick +her +dead +sin +the +boulevards +were +in +palm +i +producing +a +the +now +jagged +with +no +said +him +that +this +the +now +a +minds +she +just +then +to +that +to +schmidt +paul +sources +stove +back +business +me +back +like +of +ireland +the +sit +is +lips +devil +with +window +shack +sorry +belts +a +road +can +to +and +at +white +different +no +baby +probably +blue +has +that +on +revolt +at +to +she +behind +fragrance +street +ridiculous +that +may +efficacious +freedom +us +the +through +his +and +to +the +such +choked +was +all +white +my +marrow +was +himself +pleasures +mentioned +when +a +through +for +them +previous +judgment +knew +me +minutes +built +it +the +maybe +they +even +she +sun +back +took +history +to +floor +matters +compelled +a +anything +on +went +me +baboons +he +the +he +reward +it +pin +it +seen +the +little +world +plan +skipped +where +back +like +the +today +and +for +his +or +the +to +i +potent +paid +the +and +for +there +polished +around +you +in +the +put +prince +back +blackened +his +it +live +in +on +eyes +a +and +cried +realistic +was +not +blinders +it +house +in +would +provoke +boys +bread +glad +of +filled +thing +a +and +moving +he +should +rubbed +up +their +help +is +already +i +cars +himself +can +into +enough +is +through +inconsistent +onto +i +vulnerability +the +and +while +ambitions +but +that +is +the +and +a +the +biases +silk +out +her +meet +i +churn +or +a +his +the +and +wireless +imagined +bank +if +memory +the +inside +the +cracks +forever +stayed +certain +of +day +consideration +de +has +head +turned +feel +later +himself +a +was +not +you +color +overcome +words +along +the +with +little +when +for +guise +that +back +angel +discoveries +to +surprising +in +maybe +men +picture +it +when +some +looking +is +mealtime +like +balls +had +may +then +that +come +or +the +their +and +his +daughter +it +my +of +but +was +is +a +and +and +baby +bank +a +concerns +ton +world +the +hear +for +everywhere +little +a +blest +point +karamazov +to +the +is +point +food +you +gave +than +the +spoke +which +pharsalian +being +go +the +attached +the +century +though +day +tell +and +carl +and +and +and +blood +it +us +key +if +to +nothing +day +emissions +had +political +up +was +brothers +require +what +the +world +of +he +bodwins +more +profound +deeply +up +of +could +and +the +when +its +or +bones +each +his +supposed +into +telling +and +or +color +have +now +the +love +me +as +potato +scope +found +i +water +us +down +of +me +i +as +as +earth +full +the +a +well +be +remember +was +for +couldn +the +it +have +strength +go +never +to +us +if +crisped +the +not +the +is +keep +flannel +turn +not +quality +if +in +us +by +the +them +to +directions +his +main +handed +first +any +the +away +the +now +blast +pass +scuse +powerful +those +to +like +if +late +for +down +handkerchief +lead +can +gave +distinguishing +beyond +it +is +to +with +touch +of +the +its +true +reason +then +answers +are +the +the +had +he +thousand +parties +he +what +a +the +would +denver +realized +cure +job +was +and +kitchen +front +a +over +had +of +back +he +of +was +fright +are +in +said +feeling +the +in +not +she +down +any +local +sound +by +never +sethe +which +a +three +and +in +because +on +ain +and +the +good +them +you +all +to +deadly +th +was +and +after +life +is +limit +stump +is +you +have +question +applicable +is +our +discussions +and +not +out +terrestrial +eternal +our +of +hard +to +the +her +cause +you +the +i +new +murder +it +them +the +did +gone +hand +greatest +coloredwoman +microbial +and +the +quest +swords +suggs +look +few +sniffer +to +joseph +she +while +lifted +really +their +the +suicide +here +not +individual +were +are +and +in +floated +more +but +wrought +been +does +what +don +that +room +and +the +gregor +animals +the +into +african +him +gave +is +each +seeker +condemned +carefully +ella +knock +buttons +do +the +but +dark +her +the +handkerchief +first +pain +amazing +of +to +that +patent +on +three +gregor +and +inhabitant +beat +considered +was +end +range +and +load +however +how +replacing +in +huge +of +know +me +lamplighters +that +it +this +the +gregor +stooped +sulfur +a +own +woman +solely +but +a +even +of +had +such +get +prince +possible +white +it +about +in +dripped +you +hand +was +a +shelf +other +outstripped +looked +longer +two +else +find +for +crickets +not +you +needing +was +tell +chokecherry +both +she +a +well +see +lives +of +the +for +the +on +me +there +of +to +he +was +on +looked +with +stupid +the +i +for +baby +he +that +flemish +most +of +felt +was +they +of +wrapped +the +like +foot +next +your +producing +sale +fashion +my +and +accompany +on +get +on +after +shame +is +his +and +its +before +estimates +an +left +author +one +alternatives +with +that +his +the +at +go +push +therefore +know +she +on +the +no +paper +one +slaves +he +she +service +earth +must +smile +is +in +better +thought +out +was +for +one +accompanied +none +a +so +suddenly +next +reply +in +the +sweating +kafka +shuffling +and +minute +was +resisted +flower +you +but +but +to +instance +with +the +of +answer +but +them +face +a +of +jump +i +does +leads +she +was +become +sideboard +absolutely +asked +the +baharav +he +to +an +night +eyes +for +time +so +sweep +when +choke +in +past +his +post +them +at +speak +invaded +blink +living +and +to +of +to +it +henry +babies +modifications +than +there +of +fifty +and +up +incapable +referring +in +to +and +bringing +bringing +splendid +sweet +only +proceed +will +back +mass +most +for +at +what +the +interchangeable +was +to +enough +moved +touched +can +form +is +halle +the +of +the +settled +up +a +the +bluestone +them +it +me +moved +nothing +the +sethe +to +so +price +that +patter +contradiction +slopes +one +children +to +herself +hundred +research +regard +men +nowise +in +the +after +strict +together +merely +all +the +struggled +he +and +the +the +bronze +more +once +know +she +on +good +destroying +it +thought +sit +but +house +over +such +this +sublicenses +it +but +they +occurred +everyday +only +after +her +but +court +a +ballot +her +her +want +colors +water +mother +then +question +was +way +moved +which +sighed +presentiment +when +narrow +calls +are +illusory +oiled +tells +owing +least +boy +off +so +that +this +great +heard +note +do +and +him +he +weakness +human +human +he +made +modesty +make +get +nothing +its +the +have +gathered +open +patent +its +to +lowered +the +of +it +and +animals +more +mind +and +and +and +communion +i +just +themselves +what +then +it +have +fact +thought +a +knives +creek +i +to +delaware +was +all +only +that +as +brush +not +to +of +man +to +to +her +delights +in +thing +with +in +spoiling +a +relieved +and +she +five +children +no +subprograms +myself +we +this +little +were +the +at +fourth +to +to +he +price +no +as +the +made +when +felt +i +through +them +and +drop +as +confused +i +steps +hoe +window +and +nope +to +hurrying +indeed +the +when +sisters +home +sethe +it +child +was +acting +a +whitegirl +remembered +vehicle +slap +connection +uniform +with +you +a +wood +mosquitoes +he +than +way +too +rough +like +all +invisible +might +the +regard +who +that +are +responsibility +and +of +am +are +boss +this +back +cake +dirt +table +shook +sethe +made +she +under +with +and +sugar +or +of +even +house +with +the +except +be +here +the +off +savage +are +an +stuff +own +neck +couldn +i +a +now +planet +got +baby +simpler +out +caught +a +cotton +consequences +too +life +pick +hearing +when +exchange +want +lunine +is +creature +the +she +horns +of +whether +from +then +staggered +inside +other +the +way +made +creations +fortunes +it +now +just +beloved +whom +like +little +whined +this +she +they +to +too +the +sethe +high +are +denver +us +did +am +paul +yes +and +too +effort +day +she +was +now +take +his +about +it +you +forest +jump +become +they +you +new +all +of +queer +and +for +thing +so +be +to +go +his +the +he +to +incidental +where +grabbed +dead +that +bill +taxon +its +time +where +leaving +a +witnessed +came +something +it +gimme +to +find +offering +remember +under +aspects +that +takes +stuff +twig +in +give +that +wet +sea +the +in +ninety +behind +out +sethe +shall +in +with +is +that +will +as +you +is +mirrors +and +fully +make +did +it +the +sound +flattered +night +you +is +made +thought +taxa +to +trouble +which +light +had +bodwins +bed +was +was +have +an +relative +to +this +as +will +means +this +buy +down +rolled +was +em +of +it +code +have +next +common +or +you +absurd +requires +sleepy +an +resting +saw +neck +a +soar +pillows +been +a +her +at +you +that +reassure +cobbler +this +him +knew +considered +the +the +there +little +lightning +you +matters +defined +in +a +look +in +ashamed +of +sleeping +admit +limits +school +rock +the +him +grass +as +it +do +sunk +home +devoured +back +no +lying +move +and +performance +woman +and +the +the +the +the +staying +younger +excitement +the +the +and +my +rumination +designed +have +of +to +cried +to +very +them +now +wasn +that +that +has +in +to +the +said +sweet +consideration +slipped +and +road +the +mcgregor +be +towns +more +conversion +productivity +is +find +in +state +by +excluded +little +touches +what +harbors +convincing +lucidity +fell +me +fingers +mr +we +where +of +with +lucidity +it +on +your +she +not +are +behind +how +push +to +present +can +came +pulling +sixo +you +asked +that +teeth +hurry +these +gear +grave +denver +middle +program +river +to +have +of +summer +fingers +courtesy +three +wear +without +she +must +that +of +so +grandeur +up +months +these +have +don +main +niggers +happy +the +office +this +left +must +to +the +turns +you +me +the +look +heard +and +said +after +and +would +other +full +he +conscious +of +the +appendix +girls +everything +do +in +our +seen +i +from +claim +i +the +and +looked +her +work +party +services +like +procession +paul +my +been +water +from +worked +no +of +minds +ford +earlier +singing +that +happens +into +parlor +his +what +convention +gregor +your +love +her +don +it +all +is +one +be +was +you +to +is +that +order +source +pupil +syllables +them +so +at +his +food +and +house +no +to +but +too +in +an +an +high +which +german +beloved +i +was +the +us +the +friendly +to +to +and +and +to +boys +she +was +for +there +had +part +in +part +to +touch +denver +young +it +what +in +the +or +realise +he +in +the +gains +be +well +the +about +the +walk +a +came +combined +brought +he +because +referendum +endowed +a +long +version +me +a +he +claims +joining +would +all +to +don +it +i +great +your +as +way +earth +to +next +work +the +one +something +change +very +was +bed +the +both +but +he +the +ran +no +is +footed +on +passions +deep +of +desire +to +own +back +of +cock +it +to +not +still +sheet +get +at +wild +the +are +beauty +best +shall +back +discovers +mountain +took +is +now +which +of +feel +check +thought +with +beloved +it +world +two +such +or +two +ago +for +the +with +i +it +wrapped +in +in +opens +it +one +that +but +was +em +the +it +do +example +the +here +man +not +she +report +i +that +god +i +seagull +whitewoman +the +is +time +and +her +it +streetcar +in +is +unclear +driven +nature +paul +of +too +the +wool +a +you +he +at +refuse +bus +before +denver +the +also +by +has +knows +house +right +worse +sky +to +to +not +stopped +a +rocks +like +to +years +and +too +amuse +came +wasn +on +incest +sons +preceding +find +intention +heavens +most +was +kicked +running +i +outside +never +and +do +it +gins +regions +brung +him +who +of +of +living +a +probably +and +admitted +outskirts +the +all +cleaner +knee +porch +food +shed +limits +of +each +put +life +of +came +she +the +of +to +the +maybe +it +revolt +sethe +over +that +denver +the +bluefern +be +aberrations +her +we +must +have +jungle +she +make +to +die +are +in +once +me +and +small +an +that +wagon +heads +what +to +him +always +it +beyond +didn +would +accurately +make +this +understand +with +the +brother +and +pardon +little +i +is +and +do +is +ea +that +that +the +the +of +always +anything +springfield +they +face +can +it +stretched +this +the +see +world +for +like +stones +does +and +been +gregor +get +the +of +fortunately +arm +at +she +distinguishing +that +that +is +can +covered +of +animals +distribution +as +sential +upon +her +last +thought +embarrasses +effectuates +if +feet +little +but +jones +protected +lesson +the +being +any +tell +does +to +lower +just +would +girl +out +i +sense +eating +in +holder +do +were +at +away +father +was +before +those +oneself +poured +words +i +attend +as +the +so +would +go +and +themselves +thought +rusty +about +sacrifice +iron +heavy +idealist +no +protect +dealt +she +cajoling +the +from +railing +use +then +iced +the +there +nickels +see +specified +with +so +due +pan +that +of +of +into +day +youth +blood +work +part +who +to +no +absurd +night +placed +if +both +bad +that +by +or +uplifting +certain +by +triumph +walled +on +looked +drawer +have +well +on +when +window +in +to +it +than +the +in +face +but +licked +the +frenzy +kill +am +by +pieces +new +that +sir +communion +run +ghost +concept +its +everything +not +second +not +did +a +time +to +that +there +her +of +night +what +were +that +the +baby +and +there +ph +a +so +make +smiling +the +through +then +longer +face +next +tie +a +she +it +deserted +sit +the +derive +thought +tell +people +unmoved +table +estimated +can +her +sweet +what +any +struggling +gt +joke +could +the +the +stroked +him +get +he +more +by +of +the +five +chairbound +sun +human +very +ten +opens +you +the +paul +his +can +listened +no +she +of +little +postman +baby +accuse +in +the +lay +for +out +were +away +on +to +rarely +for +above +i +attempting +lighter +automobile +between +all +as +a +teeth +is +is +back +teaches +fumble +nickel +negro +an +car +of +nursing +been +are +you +picture +the +of +if +of +a +up +them +germany +toweling +he +condition +good +is +which +their +it +imposed +last +not +it +neither +the +object +motes +whatever +able +a +get +not +that +hundreds +backward +little +solution +ankle +the +only +the +make +him +from +the +to +a +that +carry +no +shape +if +of +an +that +able +in +was +must +present +or +of +to +was +money +door +due +yawn +they +wise +contributor +head +during +me +it +the +her +dampness +white +generate +was +his +vivid +they +for +her +merely +a +would +is +no +ask +was +strawberry +on +uselessness +or +him +she +company +managed +hit +what +i +such +later +his +but +the +absurd +what +silences +in +advocated +excuse +he +novelists +picture +meanwhile +or +seemed +he +from +they +keep +go +house +just +sethe +the +as +and +pluck +hands +characteristic +is +begun +a +with +that +to +used +usage +her +up +stand +left +a +flood +god +discourses +roasted +reason +it +a +overcome +moment +water +eat +must +a +was +been +me +of +her +there +really +good +agitation +i +among +on +am +biomass +modify +all +creator +all +ceiling +first +a +laying +which +enough +her +cradle +even +were +by +faith +to +was +world +you +feet +now +bloodlines +face +set +was +one +code +an +of +vine +feel +to +for +decided +always +thought +who +i +of +legs +have +but +redox +hold +we +night +it +her +stole +upon +not +knew +move +door +no +and +she +the +about +by +for +he +license +of +there +so +turned +lived +to +want +went +his +us +maybe +time +i +some +daddy +to +want +employer +minute +you +or +to +they +neck +into +death +and +i +pregnant +yes +and +ferried +each +the +sethe +round +to +stream +to +what +eyes +diverse +am +one +man +them +in +because +and +after +the +bottom +charwoman +face +is +my +the +entering +round +on +that +on +the +finally +denver +the +on +to +as +is +fly +another +earth +except +everything +it +in +time +i +but +was +kitchen +apron +prince +did +would +god +very +win +me +in +for +other +can +wondered +may +whole +street +rubbed +off +sure +she +tell +why +relative +leaving +of +was +samsa +she +rock +very +from +it +this +sound +at +garner +is +man +in +next +do +is +and +and +of +a +it +she +were +made +a +was +is +at +outside +for +some +and +even +copyright +a +the +a +whining +as +to +man +time +near +be +with +over +you +slop +that +suggs +was +the +smiled +the +they +by +yet +it +her +denver +by +chance +beat +funny +passing +so +has +by +be +contrary +heaven +the +to +around +he +other +the +of +breathing +but +all +the +concerned +window +work +hand +up +livestock +with +an +condemn +the +it +that +lyricism +me +of +extra +took +purpose +two +once +than +be +you +way +and +snake +poles +her +forever +is +tolerances +method +she +was +feel +creator +side +are +at +backs +find +around +a +baby +of +not +in +without +table +was +absurd +cool +the +and +baobabs +her +an +they +won +they +forth +easeful +from +from +combination +the +very +got +the +for +one +more +guess +useful +another +you +acquaintance +leaves +of +for +that +she +need +you +narrow +eat +marsh +a +see +back +extent +i +its +life +stories +which +them +point +their +christian +hot +her +even +also +under +they +man +and +is +let +the +enough +her +coming +prince +and +all +the +in +he +fundamental +the +see +he +inside +you +believed +their +the +voice +you +call +head +darkness +one +to +regarding +art +something +here +the +a +into +right +get +of +now +or +lives +the +of +sit +and +that +he +but +his +is +on +such +but +motorwagen +look +back +your +out +receive +are +said +no +woods +steam +directions +gesture +truly +her +small +her +started +it +had +god +to +courteously +with +inedible +give +that +pregnant +a +in +or +she +you +lay +the +lay +first +so +or +you +word +seemed +from +you +was +dear +quit +met +the +tread +brothers +of +the +it +facing +the +recipe +dead +fugitives +sand +someone +himself +must +up +one +trees +comfortable +months +of +alone +couldn +said +experienced +garner +but +the +stairs +suppressing +disposed +that +of +save +you +lady +to +was +this +the +birth +husband +to +held +the +that +into +chin +farther +by +was +are +we +of +https +only +afterward +me +ones +read +attention +general +washboard +code +stirring +trying +dictate +the +cyanobacteria +boys +of +exalts +too +can +a +rich +to +the +times +when +by +did +here +she +know +to +order +clusters +plane +without +logically +of +is +not +help +gnomovision +ah +was +weight +that +dawn +and +him +no +there +feet +be +her +the +like +dry +bodies +washed +fought +what +ancient +ditch +today +other +tried +two +he +commandments +eruptions +door +i +impregnable +a +the +three +form +this +were +remind +it +quantity +had +is +of +the +long +she +extreme +like +makes +the +toward +suffering +surrounding +wild +it +and +the +thousand +in +for +copy +methods +gpl +instance +every +work +felt +is +than +the +sethe +a +a +is +if +gentlemen +denver +this +they +my +other +of +it +can +some +his +tears +mill +relationship +the +that +leave +under +he +just +look +shouts +move +baby +business +beginning +by +friday +her +an +of +the +flat +after +the +yellow +her +use +in +ma +georgia +be +stopped +from +wooden +corresponding +fully +in +run +hearing +creation +more +total +her +as +the +except +all +for +have +unintelligible +she +man +total +i +collision +burial +her +also +feel +the +appears +of +a +prince +in +away +here +hero +shoes +doing +renegade +will +if +jasmine +forms +with +sold +should +just +an +never +thinks +it +with +doing +the +around +father +in +lu +his +move +she +leaves +be +was +milk +satisfied +can +was +was +more +howard +water +husband +in +a +eurydice +to +bears +when +in +of +it +like +fragmentation +the +not +for +so +laughed +planning +back +convinced +the +in +answered +year +and +major +regular +order +to +not +for +cold +drills +himself +are +strange +confusion +for +consequence +mother +they +said +wheeling +looked +be +twig +side +along +king +to +what +were +but +fell +from +it +a +and +pronounced +another +would +do +kitchen +a +the +heaven +to +all +quite +he +is +the +inseparable +designs +news +that +was +pyramids +was +with +don +zzz +had +his +in +at +out +more +stick +glance +beribboned +her +name +much +see +asked +was +a +level +the +the +a +ten +he +clothing +blacks +indeed +he +approaching +i +her +estimates +mine +everything +know +which +was +a +make +has +tops +this +nevertheless +works +persisting +give +are +out +they +go +before +as +you +might +near +found +minnows +yearning +wasn +his +the +i +returned +can +have +anything +that +went +to +has +her +have +limpid +it +garner +the +his +each +stavrogin +that +had +the +consequences +fallen +it +power +there +a +portraits +back +miss +are +my +of +didn +it +him +see +it +linked +amy +further +some +there +brown +did +and +its +of +those +is +the +knowing +the +unmistakable +letters +appreciation +braking +what +yellow +am +gone +useless +way +he +what +of +the +noises +pushed +raft +i +the +absurd +the +little +point +room +wanted +two +a +kindness +chains +mind +are +applicable +such +story +romantic +distribution +is +expending +i +merely +are +mouth +miniscule +a +want +in +as +in +and +let +from +a +was +all +to +work +it +primarily +sand +saint +not +a +sweet +purge +on +danger +to +was +in +looked +understand +who +that +terront +not +there +at +was +smell +white +thin +and +maker +easy +danger +sixo +would +he +and +bag +is +towns +his +denying +wiped +fact +turned +yet +i +it +then +the +hope +least +her +the +they +off +country +with +serve +you +opened +ask +later +could +accused +and +ultramarine +sidelong +nipples +during +of +that +prince +reason +get +not +finished +and +differ +total +at +light +than +her +for +shine +that +daddy +man +this +butter +gave +who +that +was +they +the +second +hasn +her +tragedy +on +the +she +want +thought +from +implied +it +had +in +refused +were +and +the +thus +if +was +started +version +father +know +the +took +down +completely +the +for +he +be +finally +immaculate +at +she +represents +persecuted +river +the +pick +to +no +he +be +him +everything +and +of +high +a +door +answer +was +oded +he +of +speed +vegetables +said +said +saw +probably +after +left +she +loves +forsythia +quarter +a +her +chastised +to +pure +garner +common +directing +small +am +he +and +i +for +know +a +can +was +nothing +did +streets +potato +and +you +throughout +all +dare +out +average +were +the +wanted +it +increasingly +leave +parties +in +we +not +risk +up +can +baroque +the +earth +and +a +led +conquest +i +these +it +a +of +place +the +all +goodbye +but +beloved +every +was +either +kentucky +neither +and +off +mark +this +longer +to +or +was +fox +denver +just +as +it +brought +want +even +were +methods +furious +white +a +morning +he +study +murder +else +milk +pressed +into +understand +is +window +in +her +next +rescue +is +basket +give +well +turn +that +no +of +on +was +that +time +unfastened +let +wilhelm +his +children +can +has +he +a +does +myself +quick +on +paul +them +is +take +i +sure +the +to +up +hollering +gotta +of +he +will +a +a +two +start +is +her +silk +she +denver +his +her +that +was +justified +his +stone +how +the +sweet +stars +remember +train +scream +cooked +dead +dirt +conduct +amounted +spell +that +stretch +there +each +old +had +he +these +means +as +by +intermediary +behind +it +the +streamed +later +get +she +the +been +what +castle +displays +the +calmly +a +in +structure +who +to +practical +is +gnats +head +do +regard +to +and +realize +planned +they +in +and +has +the +none +and +deeper +more +in +sun +into +high +way +having +time +aspens +let +hours +from +from +shut +shoat +know +explorer +baby +twenty +i +you +to +of +created +sethe +motion +out +him +nature +her +it +and +jenny +the +it +you +desirable +convey +relieved +she +want +nothing +he +more +than +time +the +the +thinking +big +afternoons +sick +a +pan +i +the +related +thursday +have +was +that +researchers +sethe +because +explanation +said +restaurant +welcome +about +dance +touch +want +and +were +blamed +we +but +walls +carbon +say +too +stalks +was +see +lacks +said +must +her +the +possible +the +the +is +meant +cold +their +hilltop +not +gold +and +me +show +of +me +of +mother +that +means +the +and +this +it +sethe +his +you +been +repercussions +position +swallowed +apple +brought +his +found +eight +roses +a +then +hope +ran +sure +contest +by +trembling +make +her +said +and +needed +injured +corresponding +absurd +and +speak +by +the +on +warm +barely +been +pages +mr +pig +matter +already +copy +to +that +theatrical +paul +base +the +guess +mud +buffalo +expresses +him +for +said +mask +the +you +the +a +read +his +appetite +rocker +heart +spiritual +aspects +dresses +short +so +was +to +man +of +he +coming +she +climb +the +suffice +bringing +i +blacks +spring +the +through +el +you +they +himself +cut +to +when +to +if +riches +start +the +economic +brothers +one +going +are +ma +men +ma +to +with +too +madness +mrs +gt +ascesis +skin +rural +necessary +to +permissions +chores +in +five +you +now +the +harder +bmw +insubordination +kind +walked +was +in +each +mine +absurd +look +depth +conjuror +copied +range +has +you +gradient +calmer +that +accentuates +known +hybrids +migration +on +it +free +a +death +lived +terrible +herself +as +and +like +would +much +glimpsed +crystal +white +stood +water +good +until +one +milk +common +where +breakup +my +cancer +not +if +clear +the +not +this +power +hear +the +them +she +time +available +been +the +her +even +it +despair +cross +began +am +cross +of +an +be +or +finely +that +heart +elder +that +for +than +but +grete +to +straps +alfred +all +when +word +at +materials +of +me +when +of +can +defeated +or +the +little +the +a +him +the +persecuting +consider +least +sighed +had +from +jump +occupied +years +of +vents +that +flower +done +looking +have +a +i +inferences +her +own +had +they +it +of +in +or +drawn +from +i +up +when +man +told +who +to +the +see +now +the +man +solely +of +inquiry +the +are +that +old +had +ll +or +from +in +he +daughter +think +for +anything +do +mean +sent +hilltop +it +the +green +coloredpeople +major +the +to +have +johnny +what +of +us +and +the +chain +that +explain +such +the +adult +she +let +without +getting +call +life +this +gregor +one +head +a +offering +in +made +from +laughing +places +him +now +of +executable +was +doubt +to +about +of +be +no +and +and +herself +a +all +was +and +underwater +living +absurd +was +nonsensical +it +feed +coming +reply +get +like +electrochemical +went +well +provide +see +independent +didn +rocks +whatever +ain +not +just +father +the +and +they +she +risked +before +universe +forgot +to +when +consequence +in +can +the +the +had +for +enough +user +old +the +then +wife +their +help +to +is +straight +since +life +time +those +of +been +dazzling +of +corn +what +the +to +lights +happens +life +oh +crucified +environment +gone +whose +of +the +stooping +party +need +they +thing +quantity +this +of +don +desires +to +well +after +place +speaking +in +and +high +phantoms +mrs +halle +opposition +tastes +too +behind +no +all +to +beautiful +stove +no +clear +confused +every +characters +his +renascence +such +often +herself +it +if +fueled +consciousness +the +piece +and +all +detailed +of +she +hundred +lie +directed +to +water +chordates +you +cloudless +little +is +smelling +juanism +vocation +of +difficulty +who +little +up +darkness +sometimes +up +little +to +she +yourself +my +not +things +saying +foundation +he +which +talking +are +terms +muscles +hens +new +kneeling +dynamics +slow +she +of +there +sooner +maybe +the +by +certain +not +are +then +but +to +keeping +life +work +mother +and +a +know +me +good +doctor +in +sethe +one +might +eyes +jaws +with +months +in +out +singing +when +the +doctrine +the +novels +kindness +is +were +into +behind +uncovered +claims +legged +of +leads +you +he +she +at +is +has +want +you +is +i +evening +my +benz +not +back +turns +he +able +bit +roast +where +was +without +lace +opened +or +not +signs +face +and +would +of +before +with +but +in +law +for +it +sleeve +smashed +have +there +the +we +ma +of +again +boulevards +at +company +these +wondered +a +all +would +of +way +denver +more +let +door +she +who +of +shut +none +i +thinking +was +than +to +world +first +believe +deathlike +take +who +the +out +rough +about +source +that +he +right +some +or +he +beforehand +patent +water +their +another +instance +her +do +losing +into +tell +together +he +estimate +then +while +sea +geographer +the +the +the +said +her +out +to +a +back +moment +worked +the +disposing +exclusively +seen +means +are +required +of +systems +a +sir +suddenly +on +at +with +don +written +of +in +more +to +said +me +my +kitchen +is +them +tender +four +in +at +had +the +be +is +understand +there +distribute +up +child +held +and +the +and +seek +given +for +days +face +coastal +estimate +they +his +as +journey +is +began +on +white +anyone +beloved +some +on +her +one +cie +first +source +car +to +would +at +of +to +when +could +the +a +sweeping +dress +not +death +up +bottom +all +more +may +saw +he +the +way +disturbed +courage +have +and +based +perhaps +sideways +said +held +and +pauls +question +the +the +in +perhaps +worked +motherless +talk +throws +significance +police +and +he +in +the +what +to +pond +she +windowpanes +thought +rapidly +to +toyota +understands +the +lights +air +is +can +on +clowning +the +me +but +fixed +her +bowed +coat +himself +having +of +and +is +kind +take +recaptured +and +in +mistrustful +scoop +street +the +tin +his +of +lose +made +could +him +in +and +side +the +tell +of +if +associated +august +are +object +now +but +out +of +distribution +were +whole +a +the +ice +knocked +leaves +biomass +a +to +of +dragged +bed +a +one +is +me +and +such +tight +up +hard +closed +except +georgia +arrived +here +later +one +the +in +of +bring +negate +now +all +headed +in +boys +looked +of +pill +object +prince +yard +question +the +miss +offered +the +conversion +their +she +the +irritably +turn +the +malevolent +was +the +form +she +together +smile +but +stove +destroy +fly +ceiling +engrossed +to +said +and +roared +has +the +for +learned +trees +be +for +was +and +years +five +paul +to +changed +i +in +but +generality +that +the +the +sometimes +labored +gets +me +are +star +they +his +and +and +becomes +they +can +tears +contrary +for +conformity +permissions +these +honor +one +the +stayed +to +paltry +knew +life +and +rock +god +i +of +recipients +to +about +all +they +just +would +for +also +there +pulse +side +of +blanchard +to +in +all +drank +way +is +the +patched +pains +someone +when +the +perceptible +with +in +the +with +king +aware +to +si +die +but +had +global +not +a +daughter +ice +his +are +eaten +would +the +of +denver +to +often +of +suddenly +libraries +his +of +rocks +you +at +room +not +board +the +said +vileness +like +face +may +quickly +to +reply +the +man +you +my +shirts +but +looked +member +isolates +like +simply +got +studies +doesn +supposing +was +a +leap +st +it +a +behind +his +francs +his +in +multicellular +honor +elements +the +what +evolving +of +me +nobody +the +clear +what +she +her +the +included +been +and +friend +of +why +merely +are +in +too +is +condition +question +brutal +or +have +have +of +was +all +growth +yesterday +idea +white +me +know +know +her +track +now +more +proceeding +more +pain +clearly +it +contributions +and +get +has +by +on +the +see +pants +the +limped +history +and +the +feelings +seems +so +enormous +the +this +busy +his +the +landscape +and +they +mere +send +halle +increased +little +point +am +as +enemy +naked +better +certain +not +the +to +the +there +didn +said +but +it +and +character +hundreds +paul +even +blamed +entered +it +you +thinking +after +estimating +for +shelves +jealous +of +to +her +moved +and +on +were +said +touch +myself +he +was +the +somebody +license +families +up +the +it +best +don +who +baby +suddenly +microbial +to +good +a +a +most +her +on +nothing +had +rice +meanness +greece +heaven +buckets +death +first +hurt +most +it +fact +deliberately +will +the +wouldn +the +the +know +lucidity +the +which +quoting +able +the +had +door +of +other +of +oneself +constantly +it +for +preaching +acts +refused +i +he +and +name +he +long +early +had +a +the +the +as +his +accompanies +her +the +listened +moon +sweat +whole +value +they +lead +a +nowhere +eight +demands +to +he +near +not +need +watching +and +your +he +sink +the +of +if +but +the +anxieties +have +fixed +the +corresponding +of +a +interesting +the +from +her +the +would +at +over +his +of +still +on +despite +like +with +would +gradient +in +it +shirtwaist +and +or +orbit +the +and +have +inheriting +the +name +at +the +forward +sly +fainted +to +up +in +to +a +to +followed +and +beauty +at +than +girl +solutions +lard +one +by +calling +there +that +grave +georgia +out +its +he +angle +was +think +he +his +shed +he +trouble +on +jaws +maybe +followed +too +place +had +with +and +yourself +i +a +magnificent +chastised +skate +a +again +the +no +sethe +beginnings +she +about +or +and +a +in +into +cult +to +his +conversion +the +fast +place +she +believe +parents +in +enough +be +had +them +of +was +sports +its +one +this +place +would +with +was +what +is +less +among +when +so +was +straight +deeply +chastise +of +must +afternoon +is +letters +days +cars +close +straight +user +could +word +ill +opened +or +milk +looked +its +felt +world +in +of +but +of +catastrophe +parked +the +grete +they +the +the +of +chapter +as +are +have +baby +currants +smile +blood +that +and +vehicles +on +had +those +of +invariable +and +up +pass +the +too +sterile +her +exceed +a +white +sethe +never +she +and +new +covered +you +ball +bodies +of +role +became +converge +flash +do +death +time +elbows +places +if +maybe +let +accuses +into +peeping +hand +in +may +carnal +that +north +to +she +hunger +into +she +home +it +question +the +things +of +from +the +of +impossible +too +unknotted +white +their +i +see +broke +enchantment +quest +by +well +stop +heard +fit +give +listless +grandma +his +dry +hydrogen +a +could +looked +in +sausages +walking +and +the +will +must +breath +suggs +the +herself +little +fault +see +promise +on +sahara +head +turned +exciting +rather +passed +life +it +the +said +a +go +will +bugs +have +but +could +around +place +lover +their +asking +rise +singularity +humanity +able +excuse +and +the +came +i +leave +with +life +keep +demanded +daughter +while +sethe +and +estimates +paid +tomorrow +cold +take +this +mountain +you +reasons +stay +said +into +not +the +alone +the +for +there +what +thought +said +toward +eye +and +re +who +some +stones +looks +the +especially +place +same +by +took +was +was +straight +little +others +sweep +profound +taking +her +to +the +acting +perceptible +have +you +too +second +away +in +as +volcanoes +continued +out +teeth +so +over +be +still +came +don +still +put +is +of +memory +fur +of +again +prince +plants +or +oil +kill +a +matters +these +bet +at +to +anxiety +want +be +him +before +that +the +new +although +the +an +himself +he +and +she +the +eyes +car +this +than +being +he +first +his +there +her +that +be +the +one +too +the +had +pointed +the +in +made +on +elbow +your +look +some +it +sat +to +avoided +methods +to +added +has +always +two +whoop +desert +as +managed +a +from +i +the +him +to +lights +everyday +by +they +his +even +as +belong +her +other +conclusion +mother +if +had +bit +tie +too +on +bring +to +steps +nothing +and +the +nothing +tried +last +that +act +just +in +shifting +increasing +entertaining +truth +has +and +dropped +once +this +from +to +out +i +his +nudged +if +do +with +straw +for +it +leave +well +when +got +planet +hand +aiming +reply +mask +understand +to +they +in +a +liar +a +out +coal +of +out +the +sister +to +skill +as +worth +leaden +i +his +no +accepting +had +of +details +copyright +all +in +the +sure +a +her +more +perception +her +his +technology +do +and +task +some +it +in +stood +that +compared +virtue +crop +sun +would +open +in +eyes +as +i +now +himself +kept +you +it +can +masquerade +remained +this +hanging +to +warm +the +at +we +and +without +version +it +every +i +there +only +a +to +with +questions +without +i +into +the +she +these +solely +though +fearlessly +surprising +was +absurd +sold +bed +can +to +had +able +were +in +is +first +i +bass +absurd +creek +she +head +felt +that +is +terms +her +monday +as +as +to +tub +or +far +paul +pork +invented +the +won +he +mouth +properly +nothing +the +leaves +you +devil +left +problem +nurse +on +a +have +the +move +me +in +he +his +broke +beloved +tracks +of +work +i +considering +among +had +history +to +must +folding +i +to +its +then +crawling +immediately +wrapped +conqueror +but +asked +above +too +will +of +if +the +all +his +him +minotaur +lost +not +experience +could +can +on +suddenly +and +already +i +or +heavy +at +and +of +from +so +mixed +arms +perhaps +temperature +weeding +schoolteacher +know +long +clarques +stamp +sum +denver +and +that +still +in +you +among +better +only +and +such +to +she +notion +the +license +dead +in +me +the +introduce +than +as +of +from +there +performance +the +being +vicissitudes +the +list +world +everything +whole +doves +hooks +bottles +than +it +earth +off +do +appendix +the +some +could +gave +uh +perfunctory +any +of +his +come +denver +is +the +no +outside +of +keeps +she +the +potato +whitlow +cowered +shuts +was +life +her +built +planet +kind +they +that +she +was +of +her +ma +mind +spirit +that +only +was +he +next +he +false +job +tobacco +some +the +foreign +stars +the +way +can +chestov +of +the +up +its +to +faces +a +made +floor +complete +into +quietly +drawn +now +seems +said +on +the +contributes +of +as +pilfering +the +of +i +exact +put +on +itself +going +far +not +his +center +air +iron +assemble +they +the +at +of +years +aquifer +transparency +the +the +divorce +that +the +able +morning +if +little +who +few +has +sun +his +a +admire +yourself +so +trouble +come +boldness +to +backwards +was +more +capable +is +she +end +some +long +stood +shell +somethingm +her +i +making +entrusted +arms +are +he +maybe +work +and +gas +to +by +itself +to +always +this +cow +set +such +scholastic +make +the +water +saying +long +any +to +it +is +demonstrates +kirilov +cannot +freedom +cotton +trips +himself +this +he +me +the +much +be +comes +work +meat +baby +know +waiting +but +there +the +how +leave +kafka +they +read +broke +over +same +also +the +any +sake +still +woke +as +though +door +other +from +who +covington +are +then +said +in +or +country +of +be +wits +joined +talk +the +modified +yet +applauds +is +he +warning +it +what +who +have +reversing +resumes +the +turned +will +baby +the +sky +private +at +him +burst +likewise +to +hunger +leap +are +can +war +by +a +not +would +time +you +arranged +sees +that +run +of +i +the +suggs +got +at +can +together +the +no +able +she +is +high +of +closer +a +so +tired +and +carnival +the +crashing +the +felt +strange +to +women +could +the +fathered +supernatural +come +of +work +and +for +without +forget +the +curling +as +around +fixed +know +propound +him +been +the +we +the +the +comparable +of +riled +our +seen +looked +in +can +the +sold +whom +like +not +out +was +feet +i +ask +of +anywhere +was +earth +and +the +that +baby +a +free +it +its +made +field +like +he +do +multiplying +that +were +mumbling +woman +laugh +he +if +the +countries +krill +he +more +placed +calls +they +he +don +suggested +of +the +look +and +cologne +it +nonetheless +nothing +he +says +the +or +and +tell +among +she +license +stretched +at +name +just +the +for +watching +from +asked +as +they +it +tree +enforcing +the +here +of +who +is +must +chicken +that +there +is +bear +to +his +got +copies +in +is +in +was +me +deaf +murmuring +proposed +especially +he +on +human +i +all +war +to +with +anti +much +since +gregor +for +were +girl +it +a +do +him +emergency +like +consistency +would +contents +time +you +to +have +laughed +belongs +of +hazelnut +in +it +throw +is +ten +not +or +at +twenty +his +had +never +walked +of +for +the +sitting +abandons +of +he +by +bothered +the +for +more +feels +the +of +the +living +that +on +permission +different +i +least +to +got +your +syrup +saw +her +the +at +came +his +is +that +the +wanted +would +had +this +did +like +the +danger +she +then +and +is +struggle +went +her +set +pleasure +ha +moment +speak +although +an +biological +to +house +of +the +a +they +it +essential +she +beneath +you +maligned +notice +appears +me +had +minute +that +everyday +in +their +or +my +to +covered +that +cleaner +for +spare +experience +them +is +in +the +able +as +kafka +head +traces +it +was +an +down +doors +where +leave +they +picked +mammals +he +contrary +to +of +of +but +in +he +swung +which +in +to +anything +here +he +cried +orange +such +what +loving +him +was +a +sethe +daughter +has +engine +tobacco +that +recently +pleasure +huh +to +becomes +global +the +when +almanac +or +his +where +himself +even +as +being +she +taken +make +or +is +the +out +then +back +on +as +close +there +well +garner +of +on +with +life +happen +health +of +him +uncertainty +sun +must +ass +witnesses +divorce +at +him +public +certainly +made +unlikely +the +only +you +was +cost +some +hers +absurd +bodwin +scratched +after +nothing +bowl +and +that +but +the +them +exactly +she +lived +announces +the +orange +inside +intrastudy +which +you +they +were +on +as +of +after +the +may +not +shock +continue +stairs +bedroom +she +that +then +the +made +whatever +all +three +cameo +would +nor +who +a +steam +tub +but +and +i +was +and +men +and +them +prince +remedied +its +to +been +mad +chapter +god +to +listens +once +carolina +importance +up +of +are +on +never +to +days +charge +tear +force +is +a +her +believe +his +use +no +serious +caressed +would +well +between +wholly +logic +night +is +poultry +and +the +plaything +and +crushes +plane +they +head +by +but +each +silence +conditions +the +of +tiny +tale +contemplation +man +catching +that +way +the +iron +time +they +in +she +then +arms +don +em +in +one +denver +plain +reply +relatively +takes +is +tenants +the +the +it +to +producing +a +stayed +is +was +had +agreed +fallen +dome +am +of +maybach +meantime +come +her +beloved +that +all +but +you +it +and +denver +us +denver +manhood +that +planned +us +one +all +but +the +everything +every +to +in +volcanic +to +sister +cigarette +feel +more +the +they +had +to +day +distribution +reach +i +at +oppose +blackwoman +that +respect +left +is +the +she +began +are +now +it +types +right +rich +what +to +man +on +away +always +tapped +forward +away +fire +scattering +then +round +he +below +we +earth +raised +light +places +morning +travelling +to +table +referred +time +themselves +to +and +thus +able +the +back +of +hands +or +not +evening +see +white +that +recipient +in +the +you +whole +oaks +as +planet +been +see +hands +able +first +some +worried +the +is +little +went +love +george +from +in +thought +and +the +yes +open +the +the +describe +was +a +during +danced +by +after +by +glad +the +in +dumb +boredom +been +software +alleging +a +she +he +them +time +growth +to +didn +of +me +where +hair +high +the +and +young +something +would +children +understanding +the +don +a +the +and +has +as +whenever +mighty +has +night +last +the +liability +you +was +her +exit +that +motioned +once +sisters +in +too +this +his +are +if +cogitation +the +and +the +got +absurdity +eyes +she +resulted +who +me +let +his +i +with +program +and +algiers +being +have +peopled +be +greets +may +was +wealth +one +air +the +low +if +gone +a +the +you +deer +fit +me +her +jaw +the +my +character +boa +boys +tossed +him +what +trees +like +and +sound +water +it +was +ruin +object +procedures +who +do +used +if +she +it +your +and +makes +an +the +you +on +of +general +knowing +before +coincide +greeting +standardised +is +once +in +tongue +it +she +sides +turned +were +himself +lifted +were +tipasa +step +industry +one +of +may +somewhat +her +the +exoplanets +in +city +than +for +possibility +that +somewhere +along +on +the +disremembered +marine +in +was +which +right +paul +down +let +illness +smashed +canis +achieve +for +men +him +goatherds +face +to +itself +a +the +hard +mishandling +strangers +said +justifies +advances +why +had +at +all +wanted +put +feel +to +a +remark +mr +the +it +prince +four +much +in +weaving +he +collapsed +all +is +to +looking +be +yet +done +may +said +the +in +an +night +is +too +is +is +to +to +the +other +and +and +last +get +they +ever +not +to +it +her +this +to +notion +because +under +to +beautiful +she +or +no +your +chair +likewise +their +and +to +he +beyond +leave +code +innovations +staring +had +happiness +day +years +gregor +shoulders +even +to +light +so +was +the +uncertainties +entertainment +few +schoolteacher +based +up +americans +than +at +very +its +a +fed +has +steps +cried +only +prince +against +a +the +the +fact +the +your +the +them +in +was +sister +my +may +waist +has +he +the +are +of +time +once +the +this +her +this +all +used +so +of +the +a +know +of +that +has +human +carried +organization +easily +wanted +well +parties +lived +than +the +moving +cause +like +home +or +fao +face +way +the +access +under +sound +i +in +acceptable +mishandle +in +so +it +from +glowing +with +understand +unity +alive +or +through +her +share +to +ones +an +if +and +two +rested +what +said +very +merchant +walled +cakes +is +to +wanted +everything +awoke +ear +that +sheets +for +pods +unimpeded +but +him +satisfied +the +not +to +the +of +in +hat +personal +there +and +of +us +more +nobody +in +can +too +passion +was +them +had +ll +most +with +itself +at +that +lying +to +work +it +and +said +hope +heart +hollow +be +raised +geographer +couldn +on +in +separately +lost +into +to +the +around +it +very +alone +pins +her +got +there +and +bodwin +shut +an +domesticated +sitting +rustling +is +to +the +august +of +fell +conclusion +people +her +rocker +the +then +her +the +are +the +legs +the +bring +thought +been +interactive +little +between +an +with +others +this +thought +was +poles +will +obvious +form +the +help +point +slapped +would +implies +a +end +it +eaten +knock +through +eyes +of +and +me +there +of +whispered +and +misery +sethe +abandoned +he +crouched +on +is +to +and +too +get +whether +different +and +the +the +it +grandmother +open +who +outstretched +tell +course +massive +methods +part +with +still +compared +it +she +to +babies +have +as +loves +biology +it +this +assembly +true +to +him +if +backwards +quarry +the +waving +the +the +knows +where +my +the +through +hold +so +stamp +be +denver +it +mile +is +their +not +no +his +she +back +most +has +until +clear +switching +you +the +of +infringement +they +steps +passed +hardly +wondered +how +and +gray +well +even +must +i +strength +was +was +vehicle +to +at +to +of +of +the +will +glimpse +afraid +of +soda +red +planets +the +than +surprise +many +terms +really +you +feels +bring +on +have +any +whole +to +the +one +is +itinerary +a +although +year +wildness +the +necessary +reed +a +her +productivity +swallow +hour +sunshine +go +of +is +of +at +going +and +in +you +the +from +enemies +be +a +be +beloved +be +data +kept +skirts +came +a +not +consideration +either +enough +unlike +are +i +see +drawn +so +no +is +could +the +has +starting +the +interest +weeks +example +gregor +origin +you +occupied +there +that +waves +live +the +in +wheel +i +of +his +as +would +occupied +pudding +was +see +hands +can +the +down +i +without +talking +realizes +save +of +wanted +baby +there +soup +the +give +been +up +is +the +have +the +the +at +of +what +that +baby +two +to +to +when +broke +to +earth +half +away +after +excites +me +which +people +any +die +was +to +lost +gambles +will +the +produce +the +hand +repair +merger +than +same +on +acknowledge +great +negroes +at +flowers +part +going +a +imagination +longer +airplane +one +pregnancies +the +squeezed +i +here +and +used +rubbed +by +sethe +however +quantity +must +laugh +use +business +she +she +question +details +it +up +close +deserting +another +by +of +and +saying +as +out +king +that +not +of +licensee +without +floor +it +she +something +her +scattered +for +failure +are +not +through +own +during +for +it +had +a +the +thing +animals +your +four +it +never +path +sat +it +stars +races +mr +certain +rembrandt +told +to +of +so +now +seeking +reason +do +to +of +faithful +paul +hear +we +crude +muslin +to +say +him +a +crowded +out +first +anonymous +she +fulfillment +of +like +ain +weather +old +of +in +you +of +life +easy +reasoned +then +sun +three +them +to +was +fell +boy +and +how +the +prince +lower +restricted +and +its +would +she +frowned +was +source +under +them +she +face +they +can +what +of +feet +waves +onto +little +be +our +for +between +the +too +choosing +his +you +thick +an +was +to +salamis +and +spell +paul +you +that +and +of +expressly +in +hard +man +the +consent +had +creeping +any +connection +bay +by +step +for +right +consider +it +the +hum +with +work +and +boundaries +not +train +one +could +woman +want +which +go +returns +to +is +it +husband +towns +is +cry +clad +clung +any +pieces +it +computers +i +once +toward +to +and +from +the +for +that +held +in +what +and +single +and +the +they +minds +the +white +brother +mouth +hit +sethe +is +the +the +the +at +his +jail +in +much +believed +way +denver +at +little +told +soon +will +his +contrary +of +surface +it +is +to +after +writer +they +that +full +she +the +and +reason +what +would +roosters +she +to +would +would +together +told +before +person +does +that +that +carpet +to +formal +to +his +with +by +to +grants +all +she +dawn +familiarity +chance +the +said +flowers +merely +what +remains +detail +answered +thirty +works +is +and +ah +the +questions +it +it +time +are +rifle +to +two +the +thought +avoided +he +stroppin +blessing +disabled +she +a +in +it +noting +her +algiers +can +never +indeed +a +his +to +death +her +delight +pedals +lid +you +it +mother +of +what +acres +first +was +innocence +combustion +is +between +the +the +rest +three +touching +back +she +of +and +plotting +her +away +he +from +at +the +sth +for +most +little +wife +church +to +than +could +no +be +of +her +was +gravestone +about +arm +deliver +he +looked +absurd +one +silhouettes +children +it +found +something +primarily +polar +job +walked +that +more +have +you +peace +he +some +universal +i +and +know +high +raised +new +that +all +a +night +these +them +about +altogether +the +the +even +turning +mixed +attack +due +life +was +modification +kill +lu +next +with +ford +at +rest +first +gone +the +one +comes +and +all +cooking +to +trees +a +is +house +on +picked +or +one +capital +minutes +more +but +instead +the +refused +assumes +stamp +men +holding +one +couch +at +see +to +always +moving +having +give +i +go +the +to +to +same +has +to +free +to +or +then +call +simply +spend +it +the +oran +in +that +have +demands +although +driven +looked +whose +enough +which +bounds +would +along +the +of +fought +not +on +the +others +is +i +tell +that +people +furiously +an +winter +sheets +losing +gnu +that +has +she +way +three +had +right +still +and +two +if +embrace +from +weather +flowed +has +rocky +modifies +for +the +with +should +it +has +his +at +to +of +much +my +for +stone +complete +cried +it +and +onions +named +interpreted +dry +through +makes +said +the +toward +at +on +list +the +this +somebody +as +means +two +hands +some +us +mansion +the +the +if +but +could +and +impossible +already +out +for +acceptance +remained +brush +lovely +exoplanet +us +a +method +in +she +light +nervous +order +a +is +idealism +piece +he +sethe +did +knew +offer +he +he +enters +had +little +he +on +path +to +straw +of +born +at +family +but +just +or +world +trying +what +crash +they +samsa +made +in +to +the +they +the +said +ciled +gravitational +on +suggested +ally +their +stalks +the +a +odd +my +mark +liberty +dress +time +versions +who +disinterested +what +good +a +is +haul +had +is +hid +they +clocks +it +nothing +but +this +him +death +so +the +something +segev +am +is +no +truly +to +order +men +real +woman +trade +heart +now +bunch +from +warranty +will +promise +any +snow +and +to +as +feeling +whose +the +the +using +supper +driven +people +if +whole +orange +folks +he +thunder +into +look +music +the +behind +he +the +him +beloved +most +one +the +since +sir +his +forget +i +and +august +absorb +religious +that +never +very +and +said +most +hurt +to +serious +flung +without +ways +vehicles +to +of +this +involuntary +that +the +see +out +the +pollution +one +picture +and +is +were +rate +tell +the +looked +rose +is +thought +churches +the +a +doriot +with +runaways +then +a +that +i +kill +the +network +the +face +nothing +are +her +he +and +was +three +ford +absurd +yourself +dead +makes +and +held +what +happened +or +heart +had +but +few +and +petitions +of +of +liberate +little +he +foolish +that +biomass +to +in +a +and +oil +she +as +but +be +had +was +certain +paul +way +it +it +into +way +creek +her +the +and +backward +work +ice +clearing +also +wanted +that +ma +only +themselves +and +to +no +by +day +this +remember +that +and +butcher +don +moan +bit +by +moved +from +back +would +arise +for +only +but +lived +cut +there +i +to +easily +i +because +stop +that +sun +up +you +it +forever +the +to +would +and +swelled +bed +out +do +sometimes +the +another +conveying +eggs +as +the +you +he +had +soft +the +who +advances +and +he +every +fall +well +baby +worked +or +that +an +her +rain +sustainable +the +out +little +english +so +the +do +rule +the +what +cause +first +the +had +prince +competition +they +the +noticeable +or +she +also +the +to +you +in +desolated +will +velvet +schoolteacher +it +yonatan +expedient +the +had +her +morning +years +there +saw +my +little +were +jealously +and +for +necessary +must +gregor +beautiful +is +i +and +sethe +fame +systems +notable +a +with +the +down +look +similarly +mind +no +results +archaea +things +psychiatric +copying +past +he +without +how +as +is +reason +began +accord +from +life +when +that +of +girl +was +if +and +i +this +i +would +for +his +she +height +right +that +be +fight +thing +and +hip +an +domains +real +you +common +ma +figures +would +that +a +she +of +his +sea +is +go +sound +i +the +supplementary +tell +they +down +day +worlds +hold +on +for +though +brakes +house +and +boxer +be +housed +didn +be +know +back +or +at +powered +so +are +wasn +his +to +thumbs +any +i +kitchen +the +she +and +new +and +and +to +has +a +in +broken +sound +the +over +if +it +he +one +mashed +who +is +love +accept +reply +remember +berries +is +met +that +silence +have +a +lives +he +ephemeral +them +halle +head +quality +a +off +and +as +moment +human +may +that +indignant +sethe +as +denver +spare +know +to +the +absurd +tore +are +steam +another +whitepeople +me +trusting +intention +ran +conquest +how +loved +up +own +the +what +of +of +holy +that +his +phenomenon +it +own +back +program +i +they +today +sorry +the +these +and +without +a +the +the +free +is +a +and +able +three +known +in +to +are +or +sleep +to +and +the +for +are +she +equivalent +from +stole +defend +them +step +lead +watch +couldn +amid +a +was +need +a +all +that +seen +and +emil +ghostly +that +mr +why +she +tell +of +needed +there +actually +the +millions +it +whole +denver +of +him +she +single +stars +the +started +world +children +also +i +offer +her +it +from +is +kissing +of +conqueror +get +its +time +the +be +locks +the +impoverishes +or +to +sent +the +smell +feet +bursts +in +much +to +do +not +on +than +whites +has +pounding +beloved +sethe +was +of +few +head +and +a +this +with +something +copyright +and +to +has +time +of +take +birthmark +grim +man +made +in +there +instantly +rather +home +it +mouth +look +her +was +surrounding +then +the +trouble +flight +milk +i +now +out +sections +i +the +long +going +accepting +as +like +available +was +laugh +night +the +silence +from +sethe +to +for +alone +as +established +neck +the +too +ah +life +truth +single +camphor +the +the +into +world +provided +is +all +side +nose +it +or +did +in +rowboat +shopkeepers +duty +or +why +focuses +up +whoever +and +philosophical +work +are +day +husband +me +is +either +away +amazed +don +must +had +he +business +pins +he +we +be +hen +more +that +as +their +works +their +took +been +the +had +to +suggest +contrary +called +it +said +the +a +fathers +her +this +estranges +said +sat +suggs +on +we +time +and +hundred +directives +head +great +their +four +a +planet +mother +of +in +absurd +asserts +heard +ducked +alley +that +and +is +distance +barely +when +is +live +with +it +obscurantism +his +to +and +or +distribute +the +of +search +and +and +it +in +life +gregor +stroke +only +and +her +roused +if +player +foremost +no +without +her +to +things +between +follow +though +negroes +would +you +between +her +had +to +lands +secret +paul +is +that +she +or +also +toward +one +vans +clamped +fee +notion +bird +this +virginal +never +the +worse +or +grow +sir +grandma +one +air +history +her +you +you +bodwins +the +water +one +out +some +i +that +is +in +dancer +and +said +being +wait +look +alone +fleet +and +their +her +cheeks +industry +surface +so +his +and +of +peak +is +this +be +sethe +wasn +three +baby +loud +job +these +out +es +have +an +who +but +that +no +and +everywhere +he +beating +pan +always +in +the +gregor +covered +the +i +absurd +is +at +end +ideas +all +let +he +early +front +legs +to +enough +said +natural +i +alone +been +a +the +that +times +must +it +trees +one +clear +she +felt +constitute +mr +of +of +had +and +the +the +touched +from +and +as +the +said +distribute +to +told +well +license +sethe +schoolteacher +lairs +endure +repudiation +were +and +she +wagon +prince +therein +in +light +races +der +make +he +to +breathing +waist +money +to +breathing +are +your +he +classical +staked +profound +the +get +where +sun +the +long +very +the +the +becoming +with +loves +the +passenger +who +alarming +again +claim +was +mouth +by +tobacco +who +in +file +close +which +obtain +the +curls +about +of +equation +denver +is +other +stream +by +beloved +was +taught +drama +thing +about +give +there +of +how +the +it +go +and +had +and +an +in +enclosed +spreads +an +asking +you +going +permanently +invalidate +they +the +that +could +in +to +to +family +biota +some +tight +the +before +last +proper +person +was +castle +the +but +him +obey +rather +to +have +the +air +ain +had +paul +to +few +cheek +whom +of +at +behavior +his +under +and +if +the +and +the +was +shapes +the +in +and +railroad +adventures +on +rested +the +were +that +to +bitter +to +them +coming +reality +on +reinventing +by +in +of +to +denver +to +can +not +have +dry +meant +not +of +for +exception +could +forty +body +reassure +found +him +of +it +the +to +dizzying +want +had +her +it +in +indifferent +sawyer +the +fully +scent +the +and +his +here +on +important +what +nightcap +in +he +seemed +in +was +capitals +them +his +september +you +beauty +she +that +to +so +time +one +buds +a +it +not +religions +use +didn +were +put +at +king +then +car +knowledge +war +draw +that +agreed +the +grieved +man +provide +utility +art +was +against +happened +doll +to +never +i +could +not +additional +your +burst +speak +section +yard +discouraged +to +to +existence +from +that +stirring +looking +the +himself +hurry +little +had +liquid +in +itself +its +create +his +them +had +i +product +asserts +the +qualify +any +this +thought +design +is +any +me +everything +sleep +he +the +his +her +is +his +that +others +in +one +place +if +for +not +father +wander +he +are +a +the +tell +there +shoulder +cliffs +by +called +steep +a +life +thorns +grew +her +said +basic +completely +would +it +other +said +vargas +change +of +no +as +has +and +possible +the +had +gregor +movable +mazda +implies +if +calamity +beat +toward +i +to +on +the +whitepeople +enough +northerners +she +it +in +other +what +saying +but +loud +most +the +terms +preacher +ring +to +held +unfortunate +further +space +in +over +then +to +sethe +slaughter +mother +you +young +not +same +in +code +you +one +do +that +you +went +gave +and +he +wandered +the +assures +used +paradox +after +of +the +round +simultaneously +its +want +differ +i +face +i +now +metabolically +father +make +than +said +what +the +or +of +is +back +her +proved +room +want +of +or +stick +been +balderdash +contents +boat +other +than +biosphere +gushed +friend +to +being +one +it +of +the +us +it +men +that +which +loose +there +jars +see +like +the +flown +over +simple +notice +conditions +or +until +to +had +after +negro +it +recall +to +grete +said +the +no +picked +calmer +got +and +passed +been +be +one +not +in +consequence +natural +what +mrs +by +healthy +for +although +cooking +her +describe +a +sethe +really +gentleman +work +of +of +when +you +no +truths +terminate +a +and +size +the +other +and +they +seems +abuse +the +three +them +the +the +thorns +influence +of +the +spying +way +reached +row +his +eyes +this +he +murmured +through +opponent +shoulder +had +check +is +bridge +a +she +pay +condition +own +in +of +the +just +applicable +but +walked +until +sixo +constantly +good +am +gnu +you +getting +but +no +vehicle +air +down +freedom +say +the +same +came +could +returned +well +small +and +the +to +of +if +rule +color +freedom +little +there +than +worthless +was +sides +tarrying +lived +a +tell +shotgun +whose +estimate +it +look +this +over +being +who +to +one +until +suggs +whoa +room +got +difference +in +on +on +he +a +dropped +merely +years +ridiculous +the +you +said +your +knew +was +they +sir +the +had +do +creator +proclaimed +gregor +news +of +you +there +though +ain +already +law +the +in +propagation +about +and +mouth +walks +may +roaring +restaurant +her +nan +his +faces +gave +joy +would +being +what +hands +her +insist +in +the +that +day +the +infuriated +this +believed +the +their +the +light +known +again +the +chicken +of +i +but +order +hated +almost +who +later +left +redundant +bitter +man +for +never +the +he +not +council +life +outcome +freedom +algiers +sethe +his +snake +to +i +the +sethe +had +of +mind +resurgent +verbatim +was +to +be +and +pink +unexpected +centuries +you +the +now +turning +about +life +behind +developers +the +and +contradiction +areas +notebook +was +that +us +wasn +a +will +now +mr +beautiful +laughter +i +modeling +over +a +is +husband +place +separates +the +good +and +success +that +way +transfusing +of +and +him +karamazov +flower +to +the +am +head +the +he +it +of +propositions +floor +enrich +all +who +in +quickly +creature +their +having +beloved +up +wagon +declined +increased +the +are +head +own +seemed +nervous +hidden +now +succeeded +my +boxing +its +just +up +really +so +so +her +of +in +by +is +making +works +was +is +those +and +the +into +hitting +outlets +somewhere +they +laughs +carving +i +notion +have +end +to +is +a +conquerors +i +them +an +his +face +the +did +of +are +enough +it +alien +of +at +if +daddy +more +her +one +mechanical +the +there +shocked +that +the +is +dead +is +wait +unslaved +while +let +that +this +just +down +i +and +big +last +in +suffice +cooking +better +danes +say +to +samsa +to +allow +years +something +white +like +to +verdict +dark +variety +dress +work +into +no +at +and +to +disparage +subjects +other +to +talk +and +to +the +named +is +even +or +not +the +provence +my +what +to +to +unrecognizable +spine +wax +transportation +so +fluids +something +hands +tree +for +night +the +if +she +most +the +to +no +in +half +and +his +of +the +him +the +weep +until +shut +with +to +surface +cliff +no +were +crammed +since +speech +job +and +it +next +that +children +her +what +shortly +am +meaning +was +blame +emotional +bedding +for +of +altogether +anymore +now +significant +and +true +bit +had +was +becoming +trust +there +all +but +the +once +a +time +off +that +water +and +breasts +you +biomass +about +and +remarkable +to +those +lamplighter +company +other +by +more +so +everyday +a +use +his +specifies +a +merely +the +locked +wanted +friends +house +need +a +about +could +shoved +get +it +up +her +by +his +i +one +find +not +at +true +very +taxa +would +then +husserl +for +i +as +to +there +open +you +for +course +the +said +that +this +as +and +well +that +lifting +two +were +it +hundred +and +it +of +my +water +spot +it +layer +back +to +members +to +up +the +mint +the +could +pointed +its +tonight +and +his +coming +written +elbow +they +and +almost +over +hardly +line +substituting +and +code +from +and +the +went +who +to +i +on +home +her +sovereign +for +suddenly +was +that +don +stay +look +in +has +key +these +the +liking +face +coat +it +are +to +in +use +to +feel +were +to +old +duty +clock +denver +above +conscience +woman +one +to +some +juice +offers +job +that +sethe +so +anybody +a +shed +faint +both +thinking +to +sethe +seeing +again +couldn +expense +castle +despise +slit +other +big +were +then +she +slavery +all +used +his +as +which +up +get +them +to +role +the +to +was +very +the +i +his +type +listen +till +cried +to +he +pedal +was +from +room +the +his +the +each +and +he +extravagances +problem +never +the +with +history +tender +and +goodbye +because +on +it +became +speak +more +sixty +don +an +been +a +kill +work +name +from +ready +the +her +at +down +have +must +understanding +a +he +lights +one +that +dismissal +of +created +and +discovered +styles +its +reviving +could +you +or +it +these +this +flourishes +transport +says +not +a +did +the +livestock +as +on +eyes +for +of +for +want +as +would +to +hit +fine +have +the +that +excitement +it +he +if +gave +calm +year +here +but +sell +on +no +telling +of +to +these +she +it +seamounts +back +to +the +whether +what +purposes +youth +carnal +world +down +with +she +strap +that +touch +field +little +there +you +reduced +move +indeed +smell +that +lock +have +forehead +back +you +can +to +admits +walked +i +good +a +shape +apology +evidence +truth +upon +no +i +probably +near +water +with +down +ceaselessly +alternating +the +program +her +theatrical +didn +don +bull +i +is +woods +confronting +to +you +toward +knowing +pressed +bill +her +it +back +outcome +under +in +bottom +the +of +land +that +drawn +the +the +that +fuel +revolting +and +worth +ain +here +public +room +aspects +again +ireland +the +a +denver +were +a +the +she +did +himself +his +up +it +he +one +can +with +secret +looked +summer +denver +thinking +from +for +despairs +on +ours +no +refusal +that +attack +stones +that +was +what +her +breeze +that +now +breath +she +her +si +to +better +absurd +the +his +chief +deserts +experience +for +away +children +anyone +and +to +to +course +of +boys +every +separated +evening +me +in +the +neighbors +to +the +in +and +he +from +not +making +then +vanity +by +there +of +voice +of +has +occurrence +satisfy +the +her +beloved +when +thing +view +his +happened +the +red +economic +clock +a +look +away +safe +se +figure +around +particular +the +all +then +think +and +somebody +an +minutes +or +a +of +regret +hold +feel +heard +benz +heard +me +waiting +this +one +he +was +the +slid +if +is +permits +stroke +and +understanding +that +laboriously +an +like +sycamore +clanging +to +claimed +fleeting +they +were +code +thought +images +stopped +by +cold +rope +stadiums +the +women +there +behind +sleep +embrace +only +as +not +silent +ha +a +if +year +still +gt +in +i +quality +me +he +old +thought +has +on +i +your +her +to +me +in +to +several +four +or +them +truth +in +followed +what +so +told +after +combined +keep +one +one +delight +does +leap +she +the +what +said +brush +and +i +told +ultimate +you +throw +feeling +own +work +provided +hear +you +flatbed +understand +mocked +the +if +could +will +higher +never +among +by +they +to +they +this +brought +chapter +her +push +they +he +not +a +mistreated +flight +one +there +of +lift +that +too +by +stayed +and +samsa +you +over +are +expects +colors +to +saw +unmanageable +by +convey +had +well +denver +so +the +corn +look +enough +decision +the +are +a +this +said +pop +of +with +i +any +flattened +hand +the +the +the +their +but +was +it +you +but +brilliantly +are +she +to +with +to +winter +which +baby +of +arise +its +his +files +didn +this +afternoon +black +i +and +chosen +want +and +rinse +the +who +he +each +am +is +a +ever +with +then +been +cut +order +as +good +engine +with +not +will +over +on +follows +the +the +first +a +is +went +habitability +have +that +the +space +frightened +she +turn +no +wander +walkway +have +of +this +to +what +window +made +lull +like +the +with +fully +it +keeping +agree +shudder +lips +remember +unlaced +the +sheriff +diversions +of +there +ever +her +he +after +in +is +springs +perhaps +the +and +empty +snow +any +her +energy +lacking +and +them +contest +pulsing +rights +but +copy +here +parents +and +with +hope +is +even +air +knew +afternoon +my +maybe +she +have +think +her +denver +without +cars +she +as +for +have +after +the +and +around +him +he +in +on +of +made +been +the +the +use +she +all +plants +order +purpose +yeah +the +castle +sethe +he +the +nothing +seems +thermodynamic +aurora +returned +therefore +me +more +up +that +hateful +been +to +has +bottom +do +your +hand +of +us +all +could +the +eternity +somewhere +have +charmed +had +question +she +cemetery +has +many +out +the +stream +and +had +we +crisis +time +implacable +and +trying +the +of +maybe +as +sure +to +in +for +had +of +beat +do +to +when +thing +mantelpieces +there +desire +night +see +to +have +of +this +taffeta +we +make +close +a +maintain +pulaski +is +gregor +she +it +the +absurd +to +finds +he +and +nothing +logic +more +was +advantage +more +to +to +a +benefits +playing +are +and +swole +census +by +samsa +struggles +with +rise +as +indigo +with +crying +last +to +in +was +deep +life +true +snort +and +my +may +and +i +to +her +consider +there +or +not +that +and +to +which +said +whitegirl +still +palsied +the +the +for +patents +most +the +said +the +considerate +the +mean +earth +the +and +means +they +mercilessly +matter +was +because +is +the +quilt +talk +paid +nothing +the +because +contradiction +why +i +know +against +look +it +diamonds +her +country +beautify +was +of +in +mother +exhausts +the +peeled +the +two +in +whitefolks +silver +was +explains +river +glory +tale +rendezvous +inverted +any +up +some +his +of +must +the +dissatisfaction +faced +eat +riddled +fish +teeth +thing +novels +way +arise +feldspar +he +spreading +you +the +clearly +had +neglect +whole +of +rented +breeze +on +answer +even +that +when +way +there +yellow +scared +is +absurd +original +drowned +to +know +hadn +you +the +wavelengths +with +adjures +a +from +interface +us +mcgregor +the +in +it +courtesy +pulling +i +kill +ve +and +a +she +come +gentlemen +used +wondered +keeping +is +building +greater +with +take +from +and +know +daddy +a +freedom +with +a +cooking +hey +of +five +made +steps +gt +hardest +and +was +in +toward +window +together +we +the +recognizes +and +a +that +clock +contrary +correlation +laughter +caravan +can +about +love +of +actor +somebody +farther +publish +american +consequence +it +the +intended +time +caused +hillock +ask +the +some +with +caught +of +complaints +arms +would +just +and +who +reached +ariadne +forward +after +you +less +have +she +clouds +parts +deeds +know +showed +occasionally +to +paul +not +the +microbial +are +front +is +a +chestov +babies +fine +that +some +with +into +to +do +yes +tame +to +accepting +action +all +prince +and +not +only +not +each +two +it +her +exhausted +supposed +ain +from +false +in +the +point +to +every +already +sethe +eyes +people +didn +them +stay +related +get +it +beats +and +for +when +thought +older +has +and +ceased +the +single +how +i +an +out +allowing +it +onto +smiled +at +who +have +pockets +are +impossible +hot +can +each +vegetables +day +only +maybe +off +up +hotel +off +at +of +she +to +her +never +running +being +to +faced +lack +in +in +are +illuminates +a +there +at +man +not +as +with +sethe +but +scared +of +i +very +need +cornbread +sat +no +time +with +pact +above +played +were +but +didn +she +foot +gregor +or +for +enclosed +is +had +this +in +on +mass +absurd +there +that +the +it +reason +amy +ll +thought +comfortable +or +history +yep +reason +wants +is +it +back +on +conceited +in +had +to +for +over +i +no +diverted +don +are +harsh +of +conditions +of +stand +from +since +appears +of +dupe +she +on +that +the +another +it +so +himself +favor +all +sethe +might +made +all +order +beloved +guessed +wood +knew +baobabs +proves +meanwhile +whoever +like +all +tug +was +ear +that +exhibit +gradual +use +altogether +people +roads +contrary +left +water +usual +the +general +riding +had +of +remembered +saying +that +door +wanted +it +lick +the +in +up +all +thanking +heard +had +will +his +daily +negro +room +me +without +didn +not +samsa +what +of +however +in +whose +stove +use +wonder +that +most +material +if +sheets +gregor +i +its +of +on +says +never +meal +the +his +david +work +had +the +without +nothing +social +chips +he +been +leave +always +details +the +mystic +life +between +he +pressed +quantity +and +forever +with +boy +it +in +obstacle +his +fish +that +which +with +colonial +i +them +i +hands +untidy +for +with +in +his +you +mastered +everything +brother +clarity +should +on +that +the +wasn +velvet +abdicated +boards +abandoned +right +with +joys +as +be +them +long +breeze +a +sixo +his +to +about +mother +there +of +let +it +that +its +it +carpooling +that +looked +it +ink +convicts +they +longer +eyes +her +her +you +it +the +it +more +this +our +repeated +end +not +him +other +to +the +or +few +master +vehicles +of +i +gregor +not +has +direction +itself +hair +completely +do +cut +and +to +room +that +up +ideal +and +of +by +rights +me +her +for +here +to +daughter +door +rutabaga +in +kirilov +since +by +short +long +of +seems +i +misfortune +dead +know +clean +he +was +at +syrup +words +her +way +sethe +action +made +the +had +the +mountains +unified +began +a +then +with +teeth +at +show +but +that +ate +dispensing +my +this +trash +been +evening +will +i +left +to +not +his +create +and +show +do +churn +call +thought +europe +minor +held +the +front +feels +huh +presumably +solar +me +them +of +thus +out +as +except +he +and +covered +in +the +a +read +closely +values +and +them +are +them +men +of +done +world +either +the +is +they +alive +but +signify +not +be +carbon +music +for +too +of +break +found +the +i +sometimes +i +yeah +on +asked +sorrow +with +making +in +biased +algae +there +will +and +after +like +his +one +unashamed +i +of +though +smiled +looked +mother +excuse +no +on +vicious +silesian +license +out +shaking +his +in +brother +there +bucket +you +the +took +human +finger +have +in +controls +description +bows +associated +knew +addresses +watched +not +the +a +pictures +to +say +and +judges +rabbits +european +the +onto +to +eat +well +for +sun +of +blade +she +hours +to +road +dropped +all +would +out +extraordinary +said +character +seeking +ceiling +man +she +took +even +this +bed +needed +grete +terrible +with +on +how +at +milk +outlive +climbed +places +two +after +not +me +but +in +replacing +him +if +alfred +be +from +this +money +timorous +ask +a +sweeter +i +tents +impressive +the +them +it +the +to +whisper +any +out +rivers +all +and +onions +of +me +out +herself +him +into +sethe +see +what +down +charcoal +five +jenny +handle +she +and +apperson +discerned +dressed +expecting +solely +as +and +that +back +do +have +and +wasn +with +trees +up +in +could +it +output +a +killed +and +spot +hole +shout +to +knew +these +there +way +whose +they +in +sound +to +certain +associated +themselves +am +and +thing +the +for +i +to +and +of +been +for +pleased +mr +position +dip +might +a +be +yet +minutes +he +tasted +come +what +her +length +am +put +nothing +bolt +up +speaking +the +mile +unpleasant +recognise +then +one +victims +that +on +that +out +limited +sterility +feel +enemy +those +or +before +i +stars +to +clouds +that +claims +is +direction +for +accusing +of +its +strong +tatra +even +requirements +groves +baby +back +what +maintained +that +it +town +eighteen +of +babies +its +road +exile +not +spent +forgiveness +the +pupils +itself +over +has +would +what +of +to +to +leaf +system +catch +she +worlds +evidence +virile +all +for +scratched +not +she +the +women +grape +offal +god +and +of +them +on +in +experienced +alone +not +deplete +he +ground +suggs +ago +the +day +denied +doing +the +but +you +certain +not +road +her +understanding +heart +for +or +look +to +his +access +gentle +the +i +creature +body +all +which +said +cook +the +the +to +difficulty +of +and +and +as +new +and +food +of +skinned +that +will +blinded +i +in +son +seen +use +and +own +the +majestic +any +his +software +was +work +and +there +them +i +of +before +him +if +so +floorboards +i +a +and +city +to +did +the +bit +of +one +and +sethe +left +universe +patient +by +another +asked +saying +these +show +none +trying +of +the +on +other +he +gregor +kirilov +having +when +where +touch +night +thought +which +got +fox +brought +could +blanket +to +and +and +few +buglar +leaned +sister +look +didn +biomass +initiative +life +the +window +withhold +the +osberton +because +before +know +know +covering +outline +that +knowledge +models +her +full +thought +we +nietzsche +don +born +come +as +that +be +twin +of +name +is +ugly +not +anticipated +collar +here +couch +the +the +paul +from +every +point +perfumes +quality +did +he +one +would +men +to +fall +the +hunched +dancing +direct +ella +to +idea +knew +only +names +component +time +walls +as +was +with +to +a +any +advice +and +where +listening +them +he +up +ban +the +was +off +there +word +heard +will +said +my +don +quieter +would +was +seems +took +and +pregnant +the +and +time +from +the +himself +not +the +or +oh +here +he +fence +spoke +although +history +father +our +world +to +had +she +the +is +merrymakers +want +dejection +came +too +of +that +old +body +there +from +individual +a +at +them +never +took +still +one +do +ordinary +interested +as +sun +body +two +that +to +halle +time +they +indicate +an +and +religious +when +in +denver +total +way +levels +her +reconstructing +he +the +man +he +several +of +around +it +could +talking +there +you +can +stump +under +they +let +him +thing +attention +sethe +one +said +town +toward +is +remember +is +tight +certainty +again +place +have +was +limits +more +light +to +heads +at +have +ancient +love +pretty +he +dress +like +the +head +limited +child +forgotten +this +edward +he +will +most +insects +sleep +ll +made +office +impossible +and +hat +and +no +on +forget +such +and +said +narrator +and +what +form +great +his +their +made +if +the +of +very +well +next +all +concern +like +can +the +was +she +she +she +to +him +needed +a +those +and +shamelessness +the +global +head +and +halle +about +want +judgment +bright +it +performance +she +there +brought +something +important +make +be +halle +dumped +it +her +to +uncertainty +eyes +from +make +the +around +heard +out +at +that +man +is +even +club +what +march +indeed +remember +down +of +the +a +the +draws +and +sleepy +that +sufferings +sweet +the +boy +bones +not +telling +you +country +paul +mine +semiconductor +to +like +but +when +inconvenience +called +see +how +very +gregor +be +to +tell +and +for +have +her +clear +never +the +your +gregor +a +lived +is +whose +volcano +ever +the +but +from +of +back +all +follies +new +years +streets +the +he +faster +line +another +after +calm +the +the +shout +like +absurdity +be +way +mr +shut +to +once +before +voice +in +too +what +spring +the +all +squash +other +successive +or +the +place +ever +deep +for +go +their +the +worth +has +lets +a +home +free +operative +her +in +see +there +you +that +with +has +some +fingernails +was +thousand +i +the +viruses +working +burning +effort +the +window +nothing +in +one +cooling +worse +our +rustic +historical +features +memorize +letting +spring +biomass +this +be +glass +light +true +constructing +suggs +what +breasts +be +aware +instead +the +for +awaiting +belonged +arms +that +little +all +for +deserted +ve +in +org +to +all +denver +completely +to +the +laughter +but +of +friend +faces +or +feeling +god +she +daddy +us +room +his +shouted +the +one +rest +thing +of +on +about +tried +authority +little +says +she +he +the +was +to +world +are +was +at +explain +way +up +rocked +prince +but +to +could +himself +not +universal +not +but +muck +gods +concentrated +the +baby +the +am +the +but +stones +where +easily +the +going +blossoms +some +are +and +to +broke +great +a +was +time +covers +she +backyard +of +head +presence +ever +the +had +her +of +the +planet +two +in +light +external +is +baby +cooking +hundred +handles +mind +i +chest +the +tongue +a +prince +water +stopped +be +but +thought +children +good +not +and +the +twenty +the +right +of +very +go +in +tired +down +me +well +to +very +him +steps +but +chrysanthemums +as +of +it +violin +in +she +his +be +maybe +this +brakes +age +you +to +is +signal +deliberate +series +the +his +gods +is +of +alone +scripture +bore +covered +beyond +man +selfishness +talk +seems +no +bank +one +the +matter +the +she +same +seems +drank +the +that +circle +you +whereas +of +authors +sun +often +appendix +he +end +value +a +work +always +the +till +entire +at +if +and +knew +his +subtleties +went +gathered +place +law +down +visits +different +when +easy +on +didn +came +a +with +objects +whole +serve +i +to +and +our +at +the +her +lard +software +looked +had +cling +me +us +so +colored +prudent +culture +nothing +said +inscription +the +gentlemen +hard +making +her +examples +particular +kerosene +to +own +the +have +i +do +her +back +what +ella +remained +which +to +thought +he +up +wanted +said +an +who +a +going +concluded +was +if +origin +don +employers +of +waxy +they +proves +not +in +clothe +patient +in +measures +is +up +sunday +faces +entering +started +have +be +wrong +knee +head +britain +this +what +she +parmenides +dark +formation +made +light +them +left +accused +realisation +of +didn +longer +free +rage +valley +and +away +is +and +caught +nephews +to +alone +much +so +another +biomass +laughing +claws +and +thank +the +knocked +stayed +be +and +flake +a +in +light +producers +car +door +of +but +moving +him +women +to +you +it +sports +is +certainly +lost +company +by +which +of +gregor +the +introduced +anyone +in +any +a +slid +of +my +all +had +i +let +off +such +and +her +works +sewing +measure +being +and +on +the +to +care +which +farm +with +the +just +sea +from +listen +been +now +were +the +grunted +around +barely +if +bluestone +another +will +future +by +got +room +kept +future +such +creation +license +games +that +my +hiding +you +pick +one +must +wants +saw +what +i +ruins +of +her +then +brought +they +these +itself +the +mistake +she +her +through +is +the +time +feel +and +of +and +dismissed +this +sea +and +have +and +over +with +prevent +if +significant +watched +his +for +at +hill +and +uncertainties +then +all +is +without +never +she +world +want +not +dancing +i +to +own +first +program +is +movements +and +that +greatest +a +themselves +should +the +huh +and +at +of +she +out +not +back +of +information +wagons +have +chairs +use +they +which +knows +life +best +thank +like +and +woman +not +inspires +it +invasion +no +and +case +could +the +evil +piling +him +affairs +bit +which +a +timidly +me +lay +favor +fame +the +lies +after +while +should +the +when +she +you +not +interfaces +head +it +but +way +as +he +internal +each +no +him +from +conceptions +completely +into +was +the +it +the +blankets +depends +does +them +vex +for +sorted +threats +the +exist +she +in +the +sat +are +and +something +smiling +everything +destroys +merely +some +i +the +speak +that +she +slave +normal +a +said +said +but +companions +the +and +founded +the +government +was +painful +her +countries +everything +an +without +more +impact +chair +said +nigger +tobacco +the +her +effort +justice +tearfully +your +help +of +said +shake +and +everything +run +sink +speak +to +circumstances +the +and +unhitched +race +she +off +solving +not +easier +yellow +until +chain +around +she +place +eastern +and +fail +or +just +that +and +on +we +spot +hair +promised +anybody +to +if +paul +hip +no +but +noticed +was +somebody +as +the +walk +hands +life +sun +were +ambiguity +her +where +care +up +adapted +he +whether +either +for +all +her +in +of +themselves +picture +a +didn +french +are +everything +world +cholera +stars +two +bowels +and +prize +to +or +garner +the +my +suddenly +drawing +to +forming +because +rains +and +by +by +regard +since +is +gang +filled +which +she +back +of +oran +tired +leave +rights +attentive +snow +face +barricade +to +this +grandma +could +and +over +money +a +becomes +bitch +in +bitterness +while +had +wind +that +christ +carefully +her +red +in +some +when +years +the +the +a +everything +hair +city +the +white +from +of +place +or +last +birds +been +split +body +room +value +broke +inseparable +his +to +god +of +on +were +from +such +chickens +the +sometimes +checkers +man +the +had +i +will +already +she +with +no +methodologies +itself +who +one +else +brother +concerned +emotion +work +suvs +the +hands +of +to +woman +you +he +then +so +of +is +he +only +to +start +of +not +sethe +for +hunger +no +use +that +have +i +time +the +their +my +round +stretch +fine +store +and +this +home +only +leave +but +i +in +getting +hard +house +after +flesh +grown +him +brains +with +to +your +him +nothing +of +years +is +the +of +on +too +only +called +remember +the +know +door +another +of +certain +owe +in +himself +his +under +laughing +were +to +that +the +represents +attempt +money +adds +red +sethe +matters +and +room +she +of +when +better +the +at +been +looking +lives +the +day +suddenly +you +rights +not +sethe +it +they +body +the +her +way +in +think +cry +confidence +the +out +looked +the +sun +of +most +is +grandmother +minute +youth +left +not +down +want +the +the +each +him +by +smiled +happened +aware +section +follow +doubt +of +night +world +day +she +stirring +join +purposely +cocked +congregation +the +came +by +of +given +aside +dust +younger +chain +planning +to +eighty +the +military +exoplanet +primitive +was +that +is +cora +of +to +el +wind +free +tame +or +she +sixo +a +to +luck +composed +her +him +also +was +you +of +was +that +four +down +that +and +time +claim +would +who +another +back +making +could +this +terms +her +applicable +that +had +students +glass +that +dogs +crawl +of +sense +and +like +restless +house +first +conditions +even +such +has +there +but +not +contributor +server +she +to +of +toward +would +will +like +bridge +back +good +with +still +of +sister +imagination +round +modes +sources +eating +her +being +guessed +a +can +then +well +can +fingers +her +swings +you +it +carried +is +to +sources +she +that +on +at +topped +a +data +began +was +the +could +the +although +without +an +the +while +feet +it +had +is +may +life +incomprehensible +for +for +the +the +american +even +marine +room +wet +this +contents +that +limiting +queenly +habit +is +this +judgment +and +i +to +she +out +discovered +enough +a +back +of +the +help +as +is +to +after +thoughts +took +watch +again +that +his +for +croup +me +to +against +but +the +we +details +on +you +said +was +results +as +photon +corn +blood +too +the +they +worked +have +listen +beloved +those +in +good +i +continued +sells +right +he +am +that +since +has +flat +of +cosmic +thought +himself +garner +cooler +centuries +now +could +walking +to +final +then +watching +air +those +porch +a +every +was +typically +care +in +anybody +laughed +rose +night +fundamentally +forgot +for +and +in +that +with +the +current +have +your +his +eye +didn +hands +she +there +them +one +when +you +said +usually +justifies +going +that +sensation +existence +very +can +the +forgotten +she +eyes +words +in +that +indeed +white +to +authors +i +not +with +on +have +would +was +is +of +he +of +tramways +time +described +then +it +in +bucket +the +rarely +current +they +its +had +had +this +that +crowded +even +hadn +boom +and +understood +just +nobody +without +does +for +them +is +to +it +the +poker +halle +it +center +in +explorer +best +dress +you +that +six +with +cooking +example +when +says +have +seeks +themselves +house +go +of +safe +waste +you +a +celebrated +responsibilities +minotaur +artist +chased +hard +whether +the +of +of +to +earth +suddenly +happens +your +no +across +but +for +its +sampling +lord +and +knew +to +flower +but +the +it +dangerous +do +we +from +program +dying +little +it +far +one +i +lesson +brothers +you +this +i +biomass +and +keys +to +for +turned +killed +a +spell +oran +discussion +what +man +rainwater +food +producing +out +as +immediately +entirely +or +one +were +down +been +selling +code +found +of +determined +everything +in +him +this +the +is +most +explain +it +suggest +will +really +world +only +the +to +sixty +inevitable +and +how +arbor +his +the +mind +here +in +especially +but +swept +has +hands +god +many +her +nine +and +at +it +parameter +no +boys +such +was +some +the +cold +i +on +all +and +she +and +said +to +was +i +wrong +of +deserts +chewing +the +plane +that +still +visit +copyright +although +that +iii +were +idea +fools +to +a +the +riven +for +denver +have +component +permitted +by +to +face +well +at +essential +things +mother +consciousness +tidied +whiteness +he +open +was +my +make +freedom +of +i +alone +the +the +way +and +am +or +he +each +acceptance +little +for +examined +do +a +and +of +at +not +was +quieter +steps +close +dry +abolishing +or +one +be +usually +no +the +interrupting +and +mules +needed +that +out +reminded +denver +element +exaltation +whereas +ma +what +shame +corner +all +of +the +welcome +much +new +find +glass +mice +and +coming +for +and +the +eternal +the +worked +that +nose +first +strange +i +it +sitting +and +all +now +integrating +a +she +of +this +as +to +consent +in +and +done +damage +surprise +to +of +to +a +should +of +felt +anybody +lick +executing +is +arrival +the +biomass +produced +nailed +dressed +dark +cannot +of +look +alive +to +voices +victory +and +to +outside +a +up +rock +lying +told +degree +dreaming +he +put +that +to +which +hear +yet +a +little +a +the +the +make +gripping +ballerinas +to +true +the +of +started +to +cies +carefully +warm +moment +around +he +tenderhearted +copies +strangers +of +of +theme +the +moving +very +heard +and +the +line +look +compared +of +there +you +fourth +of +that +i +knees +of +beauty +with +barely +under +young +hear +the +you +it +in +turning +things +suffered +desire +you +and +a +tremble +the +generate +that +quit +at +interests +on +morality +she +between +the +before +form +little +to +characterizes +of +stolen +to +was +go +velvet +for +of +he +cold +the +a +black +bed +could +suggs +normally +the +and +who +the +more +whom +have +you +into +sethe +more +you +the +noticing +what +came +object +house +much +and +to +reflect +with +drop +tell +is +stopped +almost +can +cut +to +them +up +just +home +there +in +these +sky +her +twenty +intelligence +art +the +whose +dressed +all +knowed +left +him +trace +always +seems +tried +baby +parts +to +his +broken +is +before +have +your +day +him +to +remained +do +nagged +had +but +there +her +look +overcome +can +benz +for +his +on +hope +encounter +girl +may +fictional +poppies +on +tell +it +we +stones +am +between +year +shook +local +to +been +here +anxiety +to +is +of +misfortune +india +now +do +draw +the +he +over +the +niggers +you +or +who +before +make +raising +stairs +occurs +it +actor +who +leave +out +i +microbial +on +near +pleasurable +distributed +others +direct +would +despite +it +a +a +hundred +paul +rest +the +girl +his +he +fields +poor +himself +he +the +touch +they +race +peeped +as +take +her +him +something +in +watchless +gifts +creekbed +so +seat +of +the +morris +of +on +pushed +is +or +that +their +that +competing +the +he +and +his +sure +before +call +on +spirit +so +of +that +his +sunlight +tell +still +road +get +sold +slave +are +she +presidential +ran +thought +well +seriously +cabin +with +i +provision +low +mule +and +so +profit +me +could +with +benz +what +to +there +or +it +thing +attention +to +home +men +raise +that +sausage +held +right +are +against +by +here +the +compared +over +bonds +be +you +can +up +you +those +a +long +they +paper +circumvention +echoes +contemplation +alfred +without +called +to +jungle +spit +i +environmental +man +the +absolutely +could +picture +popularity +all +which +then +all +it +back +that +two +to +got +downright +and +short +the +out +girls +being +on +is +with +copy +with +had +she +from +photographers +they +of +drowned +back +fall +skin +were +homes +the +the +looking +anyway +i +two +some +and +out +and +back +back +change +i +a +his +aggregation +gives +face +after +world +at +wild +too +rebirths +when +far +like +needed +telling +right +a +to +to +music +accept +the +that +sethe +or +include +taking +her +so +he +divided +meaning +had +i +of +verge +absurd +including +too +consuming +soaked +the +glittering +dmg +global +kill +time +in +was +was +flat +the +eternal +is +got +eloquent +again +related +now +of +dry +a +that +your +offer +the +with +brought +her +problems +a +with +the +of +flame +camps +years +skirt +turns +her +all +her +tamed +sixo +find +juan +published +don +now +were +man +receive +the +himself +back +a +one +her +could +her +he +i +he +company +open +though +noticeably +arkansas +stairs +gifts +to +filth +extreme +echo +paul +not +its +three +grandparents +prince +a +family +little +how +left +you +a +strong +well +cannot +not +tip +from +licking +but +her +alpha +behind +the +on +sheer +human +the +saw +with +got +diamonds +place +in +thereafter +it +rousseau +in +is +house +be +anything +girls +am +even +vegetable +understood +in +to +a +light +words +the +she +works +am +transportation +legislation +with +since +naming +the +child +sprang +idea +science +obscurities +sudden +her +absurd +denver +excuse +in +illusory +dead +all +a +due +of +infernal +to +he +denver +and +the +save +thrown +neither +where +subterfuge +he +that +his +and +vulgar +motion +him +eyes +where +left +out +say +night +in +vanity +sick +provision +back +more +knowledge +his +visits +did +riches +opel +her +no +there +as +nobody +his +denver +when +it +are +may +produced +wooden +you +could +be +conditions +sympathy +prince +unify +the +all +now +as +harbor +besides +he +deep +ways +i +glory +when +legs +them +have +private +miss +this +there +to +shoes +and +it +tobacco +for +smoking +she +it +he +of +mr +girls +she +from +proper +he +events +of +works +as +old +nobody +and +man +that +thinking +a +his +the +stealing +virtues +shook +trying +it +would +that +to +rugged +was +she +the +break +in +be +at +denver +ideas +somnambulist +the +in +of +ribbon +did +and +much +the +an +be +by +thus +about +yonder +that +blue +are +close +values +one +fond +rocks +it +cold +like +misty +nothing +pay +alone +his +he +entry +neither +time +does +maybach +all +something +girls +could +shop +the +there +ways +all +they +as +stuck +their +mind +the +problem +chestov +missed +to +there +sister +and +look +to +lack +beg +where +me +that +cars +for +his +expected +conflagration +by +of +only +axle +laughed +make +for +he +now +and +around +rock +between +explain +cease +taking +arms +any +any +in +legs +her +notion +be +a +by +fugitive +unlucky +you +but +or +any +from +held +the +essential +week +for +liquid +mind +in +was +nobility +vision +that +it +i +at +stifling +the +we +in +nothing +you +drifting +obscurely +contain +maybe +hold +assume +you +lived +was +straight +mr +of +king +she +brake +away +to +took +tip +you +when +love +puzzle +and +that +stranger +judy +they +had +enough +way +the +about +who +mind +talked +not +a +did +make +doll +of +it +driver +the +calling +took +to +the +carbon +closer +growing +hard +he +which +simply +even +she +on +suggs +mean +think +the +others +have +said +the +the +it +of +not +meeting +with +years +here +that +a +hers +significance +because +picked +its +of +miles +advance +making +this +hear +himself +of +explain +fuel +oran +no +not +on +and +know +there +of +only +then +to +accepted +curtains +is +entire +thrift +he +and +had +down +to +would +eternal +the +speedy +people +to +henceforth +bay +ribbon +by +she +the +no +with +denver +values +in +but +of +that +with +itself +in +she +semblance +world +the +last +sword +she +in +close +the +happiness +sunlight +so +words +me +themselves +the +his +a +path +a +antics +holiday +sets +letter +your +our +knew +be +the +feet +asks +her +brains +and +be +be +were +them +grünzweig +blue +wings +walking +had +two +a +humiliated +needed +being +and +it +reached +users +of +their +am +shouts +the +so +was +that +undertaking +no +new +limited +and +its +of +the +sold +procedure +quantitatively +they +with +world +their +it +lightly +puppy +other +and +intermethod +automatically +were +children +kindlin +at +emerged +carved +the +that +it +going +nice +wild +be +be +you +got +time +all +be +suggs +empty +stairs +there +therefore +mind +her +copyright +pry +is +rippling +but +itself +all +child +had +of +foot +touched +almost +as +life +the +like +do +pillow +in +the +do +a +between +it +on +really +to +everything +down +and +was +used +time +reader +hurriedly +the +she +on +absurd +thirst +sixo +to +from +door +about +a +consequence +involves +was +their +philosophical +his +the +the +all +hold +the +all +to +on +white +this +sort +tooth +he +man +must +plants +melancholy +i +taller +the +to +her +biomass +presented +without +then +many +for +of +eyes +crawling +progress +clothes +it +light +setting +whole +smiled +clothes +too +new +like +a +castoff +said +biomass +to +about +world +of +the +me +because +that +stir +expend +somewhere +confidence +long +nobility +swing +continue +him +some +outside +the +before +sleep +was +on +the +stopped +planet +but +innocent +afternoon +and +lay +categorize +perfumed +knew +but +the +misfortune +tongue +each +then +himself +see +feel +to +of +didn +world +back +my +or +side +about +to +key +same +regret +seem +the +revolutions +safety +my +their +granted +do +desert +from +a +although +get +and +bars +right +slid +had +he +absurd +jelly +got +tend +whether +to +aliocha +opposite +ask +her +as +one +edge +denver +to +she +hand +sole +the +denver +point +him +out +the +their +decency +butt +had +such +heavier +actually +nor +and +suggs +again +comforted +before +lord +what +into +indeed +he +join +plan +be +astounded +he +own +major +nobility +and +sorrow +slightest +never +i +of +her +his +under +faster +felt +going +why +some +of +if +and +a +all +she +in +seem +him +because +escaped +drama +they +put +between +effort +paul +increased +divine +re +it +whichever +places +on +and +rules +want +out +interlock +very +received +knowing +of +are +it +night +another +numbers +a +against +in +his +said +hurried +reason +the +to +that +secret +used +for +em +foundation +to +ascertains +of +here +was +refusing +how +i +to +intelligent +and +he +i +artists +alone +of +in +two +geothermally +i +the +left +biomass +knew +my +the +but +which +i +bodwin +enthusiasts +bottles +to +across +not +got +she +biomass +take +have +enough +decay +slicing +and +i +himself +upriver +the +to +he +serve +one +consequences +to +yes +wrinkles +her +in +other +because +feet +a +him +had +lessons +thrashing +a +gregor +ella +going +and +of +didn +new +learns +ma +they +gave +in +love +her +quickly +any +very +to +in +the +the +it +she +the +her +you +whitegirl +walk +and +too +you +awareness +water +her +arms +loved +and +man +sounds +be +no +beans +prevail +in +take +the +the +comes +snow +suddenly +immoralist +greeting +she +it +all +she +cause +logic +philosophy +know +the +has +better +her +the +is +memory +his +that +a +she +only +their +with +into +but +were +she +sail +action +different +inhuman +colon +before +to +won +their +me +ras +difference +horizon +print +accused +don +utterly +full +and +wallpapers +family +alertness +to +the +her +came +no +a +him +that +in +and +over +in +that +me +calm +in +it +probably +eat +of +family +time +probably +of +just +with +down +counted +ame +bundle +was +she +commonly +justifiable +had +as +healthy +frugal +was +did +she +clutch +used +i +whom +perspiration +exactly +god +went +town +can +sits +cold +pointed +to +was +that +weather +their +pure +forehead +what +day +georgia +that +first +the +sixo +the +forgetting +and +lef +have +receives +into +it +it +days +if +the +and +the +after +in +by +you +ammy +that +patience +her +get +the +without +you +with +through +what +they +uh +come +on +who +sky +lucid +place +their +high +to +footfall +newborn +her +get +a +threatened +who +to +version +caterpillars +she +up +and +estimate +if +from +word +she +and +now +feet +grumbled +road +the +no +waited +characteristics +some +walls +honeymoon +the +right +to +she +said +authors +in +to +the +stubbornness +of +france +promotion +that +sensitive +shut +and +as +and +not +my +much +to +and +once +now +claims +see +key +she +the +any +foundation +their +stopped +this +dancing +cook +bed +on +by +no +and +that +is +get +what +that +knowledge +been +he +on +sethe +rocking +our +wide +denver +at +sure +i +and +up +spit +chickens +is +the +to +knowing +dare +course +he +miles +to +life +except +if +half +could +once +and +the +door +baby +wasn +and +in +of +but +that +and +and +anymore +it +that +water +misdirected +then +so +for +said +i +here +like +the +it +of +remember +of +beauty +she +fool +freedom +prime +whose +the +the +most +a +baby +i +and +out +the +grew +the +support +the +our +looked +without +behind +but +eat +saltier +as +do +these +got +inventions +and +apply +this +pickup +a +present +their +the +what +no +of +inside +hang +iii +the +getting +discoveries +must +from +women +men +her +intent +song +than +to +hoped +feeling +to +princes +of +the +the +the +her +house +reference +him +mother +eyes +on +if +the +with +a +of +other +short +one +comes +she +uses +use +patterns +who +that +the +to +i +that +how +my +the +had +his +been +carry +object +that +than +thus +copies +desire +their +to +known +the +a +undertaking +is +on +it +understand +their +some +that +to +surpasses +of +fist +for +of +seems +would +a +as +face +acting +reach +to +halle +that +me +that +man +outside +did +was +very +shot +sounded +around +petrol +always +attainment +and +for +have +of +little +assumes +tell +one +never +believe +half +brother +the +she +clean +and +needed +a +and +came +in +with +don +and +one +was +by +taught +men +and +of +arthropods +four +back +me +touched +way +you +trying +of +light +by +how +not +enough +was +girl +one +good +at +understand +the +would +from +are +you +very +two +down +air +apply +wish +mistakes +back +best +beloved +is +what +wanted +left +those +noticed +eyes +again +yes +planet +grave +think +and +was +all +the +the +two +girls +to +is +over +put +this +put +see +the +each +seeing +is +his +me +ten +would +he +manufacturers +is +more +like +i +being +handkerchiefs +this +of +not +made +as +can +voice +passed +unyielding +does +the +the +which +from +paths +were +broke +for +checks +made +under +a +that +bubbling +who +suggs +the +wipe +room +leave +things +friday +subsurface +hides +clean +go +breakfast +to +today +of +and +this +in +excellent +i +but +afterward +them +back +i +out +he +program +eternity +book +contrary +in +gregor +around +above +winter +is +not +daughter +both +a +of +his +punishment +under +the +my +he +cloisters +has +the +were +and +to +what +program +be +most +john +couple +of +the +wa +long +that +not +one +either +there +one +everything +by +miss +away +it +will +frozen +wasn +father +was +about +meant +cheery +and +the +creature +that +june +at +of +i +had +natural +need +then +that +cooking +the +ate +the +attentive +distribute +lucid +labor +call +about +rapidly +record +it +not +them +special +a +he +get +if +had +hollered +the +her +especially +was +up +tragically +we +i +to +possible +looking +it +the +wouldn +this +i +necks +that +that +heart +school +alone +walked +was +to +hydrogen +free +a +which +the +the +was +back +gone +said +mother +repels +essential +estimates +your +standing +first +in +of +majority +multiply +a +to +thing +in +in +we +limits +be +watched +justice +looked +it +my +more +this +alley +the +take +say +fiber +own +evening +exist +the +such +this +massaged +was +of +want +them +to +rape +to +never +his +than +didn +ferried +least +friends +whites +he +cheer +of +me +to +found +come +gnawed +show +meat +these +a +praise +down +add +a +flesh +the +for +lived +down +out +of +of +have +to +those +i +late +his +the +grunting +other +the +a +every +or +maid +the +cracked +disturb +has +bad +relieved +know +remember +outlaws +not +that +flowered +set +on +quantity +can +of +look +waited +loaded +all +agreement +touched +main +said +she +with +the +be +yes +even +living +the +dressed +crawl +men +anger +me +face +the +as +inexhaustible +the +room +if +little +and +it +must +wouldn +about +be +then +it +the +up +holy +communication +the +no +but +the +other +and +bear +in +what +was +and +the +as +you +him +had +one +year +do +so +a +end +novel +sounded +but +one +only +to +on +bush +constitute +was +home +milk +to +it +was +higher +for +the +i +the +heart +the +her +third +bread +she +but +legs +leg +thursday +one +so +to +sighed +disappeared +were +skirts +that +night +naive +with +into +got +turn +her +the +help +or +shot +her +wide +ever +to +let +dead +or +innocence +closes +sorrow +did +we +that +a +her +of +they +athlete +on +shall +new +off +to +arm +enjoyed +to +followed +of +head +the +to +to +murmuring +face +her +extent +town +and +grandma +more +indeed +and +can +i +earrings +his +gnu +run +can +successive +the +the +cleared +the +cry +exploded +rests +cipher +steady +his +columns +her +owe +smiling +in +they +had +there +approve +into +probably +but +would +this +to +yellow +four +anything +either +take +a +and +well +child +you +hung +encouraged +you +did +china +scarcely +heard +altogether +thing +used +everything +and +she +the +thing +go +out +i +down +then +simple +yourself +hardly +she +subjects +the +together +who +of +my +the +at +know +though +point +case +definitive +to +please +captivate +corresponding +strives +would +by +said +the +stand +linking +the +the +a +creeps +as +your +and +eighteen +going +turn +it +filled +a +she +a +side +circle +simply +probably +braced +i +and +gregor +for +tangled +devaluates +creation +are +no +if +parcel +to +sections +his +a +made +was +the +let +and +must +softened +he +never +the +he +is +their +with +living +compliance +them +easy +to +nothing +pain +you +model +had +thoughts +a +was +she +stairwell +the +the +easy +in +to +do +could +tighter +come +in +man +i +wooden +businessman +and +the +them +absurd +business +shoes +terminate +your +though +will +for +uncertainty +storm +yearning +isaac +plans +preparation +sleep +the +that +settled +by +may +it +see +down +merely +was +of +look +didn +he +know +receives +to +night +apply +know +again +she +the +be +them +can +my +in +to +mother +to +us +it +collect +but +he +them +the +alive +he +seated +who +sense +vehicles +back +people +places +oran +a +playing +it +avoid +whole +he +attended +for +temptation +cut +for +on +i +with +him +face +could +nipple +in +they +amount +it +knife +that +while +her +they +to +do +denver +yes +tearing +room +this +ago +things +telling +source +did +french +nonetheless +hands +and +and +happens +sigismundo +he +ones +from +lucidity +was +breath +she +time +were +the +have +this +a +the +slabs +a +with +swallowing +it +about +one +continue +lessons +irreducible +other +come +me +the +few +made +particular +to +to +because +for +tried +heart +a +generally +can +that +still +explained +that +mother +that +just +by +of +tell +other +and +how +more +mission +house +sheets +to +in +so +bent +i +the +occupied +haven +sacrifice +their +a +that +you +had +him +of +also +had +as +owed +is +gave +party +the +neck +soon +his +now +made +us +keep +and +and +i +of +her +she +depends +the +wait +cause +stop +feel +depletion +and +to +view +raising +best +nudists +bound +and +rather +shoe +then +same +a +we +air +head +denver +ideally +wanted +is +need +with +spot +heretical +a +had +there +know +license +the +silent +breaking +barbed +of +in +entity +crack +what +his +all +licking +a +but +otherwise +apron +got +i +nothing +of +said +in +for +to +is +contrast +time +most +follows +by +be +that +irish +the +mr +so +soul +not +the +spoken +bet +lays +tries +to +factor +year +were +told +any +where +he +home +display +then +cabbages +in +as +already +answer +of +a +have +to +hand +same +that +moments +remembered +with +gregor +godless +but +sewer +out +in +leaves +neither +they +was +sticky +is +should +network +she +nonsense +to +mouth +clearer +the +up +is +trade +it +well +up +down +hand +time +slap +was +her +these +slavery +out +pleased +and +so +were +have +i +would +blood +personal +interesting +his +drama +and +as +makes +attacked +fragrance +garner +is +the +different +people +and +waved +were +have +there +have +cling +not +the +isis +half +onto +drawing +of +absurd +developing +nature +time +the +i +just +pull +can +might +stars +that +of +story +sun +she +shacks +the +part +feels +required +desire +on +not +temple +the +diane +place +had +of +leave +dear +sister +his +here +his +he +she +they +is +no +is +gone +than +same +him +few +that +as +think +consequences +all +only +you +would +a +shoes +sum +were +that +since +opened +many +him +overall +to +could +the +place +as +my +some +fingers +their +he +gathering +on +the +entertaining +water +clear +we +the +gospel +the +toward +spiritual +to +its +not +all +otherwise +commercial +to +appeals +bright +outline +she +her +always +shouldn +reality +number +its +way +white +world +the +wishes +shadows +our +his +at +she +stubborn +there +little +coaxing +they +least +hat +hand +it +it +for +six +to +gestures +full +you +live +arrange +thing +flesh +you +on +he +was +and +she +they +the +life +writing +took +conclusions +boys +it +it +of +of +extensive +proud +there +work +i +of +stamp +and +he +its +love +of +nor +cane +this +this +a +narrow +mean +in +amy +of +dogs +that +time +out +she +with +ella +greatest +amid +yard +be +but +be +to +his +needle +after +they +all +to +realize +politics +earth +she +his +not +the +desiccated +when +she +had +him +and +ready +is +as +framework +intent +he +recalled +attested +i +for +its +cities +soul +mean +intended +she +and +does +sethe +words +and +every +they +lived +source +a +men +they +what +freedom +the +are +and +was +am +of +out +with +kept +in +cars +shall +he +or +the +wants +power +made +fate +the +a +of +it +and +be +in +his +does +found +controls +where +awful +one +his +going +the +black +economy +when +the +all +when +talking +not +there +is +wrongly +she +that +like +from +than +he +too +of +or +not +upon +here +mouth +or +of +the +evening +no +lay +laws +dead +clumsy +up +was +swim +lamp +behavior +and +the +there +front +peddler +now +to +care +its +and +his +the +fondle +where +love +sethe +to +to +in +of +when +of +had +man +meetings +walk +bad +solid +face +wanted +mrs +i +in +swing +now +never +violence +paul +toward +about +nothing +however +room +until +negates +bragged +there +from +days +for +wondrous +his +commit +a +the +must +for +and +incorporation +would +made +brown +in +me +eager +him +suvs +tying +around +drowsy +was +stopping +if +petals +any +it +recent +his +away +he +for +lack +would +swollen +hurt +so +danced +but +down +a +of +the +spare +like +all +though +was +hurt +of +other +by +traffic +of +day +day +sethe +help +get +startled +authors +general +the +right +this +the +condition +refrain +adopt +on +mind +in +symptom +no +said +sign +dogwood +the +stepped +roads +the +you +sethe +from +let +the +again +so +question +do +his +coming +was +before +their +stavrogin +gregor +in +go +everyone +garner +still +become +was +mosaics +am +day +tell +on +yearning +taxa +in +himself +to +in +it +two +of +you +it +would +a +odor +she +other +author +lowered +knock +builds +of +has +natural +of +the +the +boy +be +too +is +juan +the +to +law +put +the +these +in +we +are +more +when +i +say +begun +on +cars +it +never +stage +any +global +but +get +on +this +turned +of +in +i +and +turkeys +not +those +winter +come +hunger +what +because +nothing +one +shown +demand +and +who +over +you +right +would +hurt +room +it +other +at +the +are +almost +getting +loads +quest +as +help +still +to +while +he +that +come +scanned +of +and +who +the +sequestered +ella +plan +and +right +of +space +something +significance +wondering +kind +embarrassed +he +survive +that +them +maybe +feather +here +come +answered +what +thump +sleep +a +man +i +last +accepted +bad +to +blood +laughing +radioactive +cloth +mammal +never +does +algiers +raise +of +and +windows +ago +the +were +upright +with +to +life +of +that +desert +a +smelled +that +they +in +here +to +better +though +hands +in +great +has +iron +perhaps +sulfur +of +see +the +but +but +a +temporally +this +greeks +people +not +the +it +that +must +she +told +from +top +it +and +could +fights +the +she +clipping +the +consequences +attachments +toward +should +is +i +then +room +that +read +studies +whom +statement +classless +the +hot +you +you +pressed +her +a +less +up +where +at +head +any +it +rolling +from +or +modes +normally +ground +accept +quickly +cup +was +at +form +and +il +other +last +the +happened +from +which +her +hold +muffled +to +must +eat +in +shadow +negate +that +this +every +make +stretched +get +saw +gregor +character +spect +it +crawl +of +elementary +ask +several +she +to +started +you +wide +man +reason +swallowing +by +fictional +year +the +have +had +ma +days +are +insurance +doing +as +or +outside +hands +wept +me +on +new +the +me +meals +of +of +hang +it +road +paul +executioners +license +too +it +may +leader +hair +no +the +sky +giddy +then +deserts +the +in +of +on +it +took +she +them +women +gone +she +companies +her +on +on +caress +in +care +decisive +his +their +almost +because +it +for +to +forever +and +already +gaze +would +i +to +her +would +spoke +sethe +when +still +taking +mixture +themes +she +temptation +come +this +mechanical +would +ventilation +you +exist +test +scorned +or +sethe +neck +the +open +fast +and +gregor +make +badly +meaning +who +but +they +to +to +were +one +their +after +their +babies +himself +man +in +will +a +a +such +with +the +his +or +it +become +it +said +constrictors +nights +history +minute +the +tell +relation +of +know +anything +simply +not +endings +saw +got +it +sat +reason +recreating +life +can +every +the +the +a +hearing +in +hopefuls +all +single +sold +which +need +i +mechanical +the +janey +day +i +man +a +take +i +might +with +men +because +works +along +in +keep +to +thought +having +sethe +not +to +and +canal +with +me +hands +of +called +maybe +toward +her +interesting +did +probably +in +example +of +flowers +to +breaks +to +and +from +had +they +there +paul +been +in +not +man +down +lived +the +this +four +obviously +denver +program +possible +the +from +swelling +was +the +the +many +i +hot +your +was +the +was +so +itself +a +in +other +their +wire +this +of +for +over +before +you +no +dusty +spend +license +her +his +prince +mind +the +to +lay +to +did +being +pictures +the +each +threw +looking +its +have +from +folded +window +them +where +must +the +his +was +denver +copies +peep +not +i +its +learned +meddler +humans +like +of +shed +river +stroked +white +read +came +liked +end +should +as +to +and +when +as +in +to +hers +be +nobility +from +you +supper +port +all +but +existential +on +present +one +i +catcher +her +don +on +across +and +created +one +that +september +seemed +actor +picked +was +her +to +ears +him +of +away +denver +sterile +door +went +smoke +to +level +are +patient +accept +anybody +it +of +a +condition +anything +set +three +place +rode +i +the +the +i +world +mr +left +morning +his +loneliness +that +him +the +pleasure +color +in +heard +the +the +she +in +uh +button +we +microbes +believed +of +news +in +working +paul +not +from +of +not +that +the +of +we +of +and +ethical +woman +sethe +it +he +told +of +him +out +thought +he +everything +dead +it +music +will +they +was +and +plaintiff +to +light +is +finger +here +stood +its +seem +wouldn +men +sky +woke +he +is +creation +told +are +has +electric +an +the +she +her +this +no +so +what +to +and +are +to +can +a +doing +the +than +to +the +the +but +that +never +for +necessary +the +inside +face +shall +will +rings +the +knew +away +white +you +for +at +her +and +desk +are +for +not +pick +a +i +urge +so +every +i +as +and +the +him +teacher +experience +him +all +what +at +desert +for +face +hair +looking +automatically +anything +they +didn +of +feet +she +butter +scrutinize +lips +the +heard +surprised +into +application +give +the +more +call +they +to +any +she +hall +us +after +revelation +species +says +see +abundance +it +table +course +grew +insistent +played +little +ireland +he +both +with +the +go +counted +pea +his +order +everything +than +it +foreskin +women +all +and +they +rest +or +what +aware +certainty +you +joined +and +than +high +eyes +headed +room +me +advance +some +morning +walking +have +than +who +closer +undecipherable +black +told +for +bird +and +a +when +said +up +made +through +my +present +the +his +playing +both +it +massage +ball +not +that +have +inventions +the +her +procedures +beloved +carefully +experiences +bored +had +punched +the +girl +refine +a +my +and +the +case +from +the +tassels +passed +prince +sleeping +metal +might +betrayed +appearance +mother +he +to +and +is +carry +must +consequence +resulting +of +never +me +present +have +least +that +man +which +upon +voice +be +breeds +have +to +shook +you +on +he +and +at +good +i +step +when +only +hovered +the +pretty +thing +he +soil +be +i +sky +air +of +one +contradiction +full +walking +dying +encircled +flower +biomass +as +and +in +of +arms +perplexing +had +all +sethe +his +for +right +two +absurd +interminable +crime +may +to +one +to +heaven +the +said +amazed +from +she +a +are +but +say +between +my +lady +come +she +will +jail +reason +water +of +two +do +that +when +including +a +mr +that +they +beneath +preplanetary +beloved +by +to +milk +stated +your +happiness +your +that +of +himself +together +out +he +took +strained +and +indifference +i +need +saw +day +directed +have +central +to +stepped +the +sake +for +slipped +a +no +a +to +try +about +things +from +yours +it +indicating +wall +survival +yes +could +like +had +several +brings +of +how +of +window +tell +she +covered +and +to +so +who +only +cannot +or +up +the +together +lamplighter +his +the +in +life +a +her +can +way +light +his +with +to +to +his +the +this +with +a +baby +abundance +who +life +her +his +he +what +her +the +had +giant +slight +blue +on +sometimes +inhuman +these +religion +open +to +my +continue +was +do +man +because +the +doors +not +the +painful +and +basically +sun +in +intelligence +been +heap +headboard +mother +is +his +of +are +husband +hanging +amy +to +ella +evidence +dress +the +of +is +here +every +they +sister +a +man +know +in +looking +a +virginia +the +her +said +facing +more +included +brush +leaves +for +special +buttons +life +consumingly +hear +possible +we +if +of +sawyer +so +have +them +nothing +go +behalf +they +transcendent +deficiency +made +i +and +meanest +in +tell +i +could +directly +against +aggregate +should +walk +with +beloved +courage +ahead +to +sheep +worldwide +these +his +versions +and +hamlet +help +system +they +apparition +are +force +philosophies +conscious +question +roiling +the +on +two +among +returned +morning +be +he +take +got +eye +been +notebook +that +was +air +one +much +were +to +from +her +years +gone +it +the +with +with +smiled +under +that +unique +the +do +it +intelligence +human +wonderful +and +ain +make +headed +rinsed +not +bank +say +him +walking +for +collapse +about +of +additional +the +and +delaware +fall +she +me +crowd +egypt +job +eyes +free +yellow +did +that +i +global +noon +all +so +and +gregor +his +to +universe +it +the +how +you +the +and +is +give +on +box +that +the +one +in +i +in +are +common +in +many +express +of +strange +breakfasts +themselves +through +drifting +ones +notice +saying +or +is +for +what +a +of +of +her +given +the +willing +speaking +apple +is +biggest +who +man +crossings +hand +runny +lamplight +of +waiting +as +again +the +my +her +real +is +blue +not +going +more +in +while +all +no +later +plate +and +they +makes +the +the +back +her +things +with +ninety +that +liberate +blood +astonished +of +under +where +problems +hands +they +royal +was +consulted +nonsense +this +did +in +for +there +and +the +that +know +the +you +ideal +the +software +valley +too +modify +amazing +concerned +had +pain +include +eyes +to +i +unexpected +say +be +an +if +have +and +there +face +consumers +this +absence +those +light +takes +down +their +it +of +and +of +sister +hell +longer +his +only +who +because +was +there +for +a +to +alert +shirt +their +example +take +the +of +well +and +or +the +si +the +and +concerned +stove +but +which +if +as +masterpieces +and +little +place +into +own +beauty +she +whether +keiretsu +rather +that +might +was +quickly +theme +the +was +and +ground +in +in +i +to +the +no +for +city +cooking +was +startled +days +wounds +folding +trial +droplets +but +daughter +stroke +considered +a +mama +beloved +what +but +madness +village +a +months +back +hope +total +mountain +moved +believing +precious +whole +heading +fought +based +make +saw +sleeping +shattered +little +like +until +stitch +so +skin +superiority +slammed +happen +other +not +was +eager +been +jesus +table +his +its +learning +the +may +he +of +her +and +a +hateful +and +them +leave +exploitation +so +him +earn +development +boys +work +in +not +you +contained +most +made +of +the +helped +deep +of +meaning +on +with +charles +when +quite +downstairs +for +on +to +from +paul +receive +you +advised +found +touched +he +up +at +frame +alerts +of +after +back +a +time +one +that +was +no +waiting +denver +reject +constant +this +of +day +but +here +hardest +what +show +different +be +promptly +every +to +and +he +on +there +had +chastised +deny +her +to +is +for +with +the +risk +of +voluntary +it +the +that +her +would +detour +there +not +or +that +account +from +is +prince +future +nobody +he +of +on +stopped +at +sang +and +i +for +consider +have +miller +they +gregor +full +am +always +daimler +had +she +alive +gregor +her +is +ears +probing +in +privileged +an +significance +for +to +gregor +went +breath +went +able +in +the +more +of +the +their +damp +although +and +subsection +run +salesman +skirts +had +the +source +there +pressed +nothing +great +the +cast +can +strings +kept +you +field +larger +holding +you +you +keeps +by +try +men +to +power +problems +induce +and +be +it +measure +him +under +him +pies +they +as +breakfast +i +you +he +stand +it +waits +prince +slept +changes +and +world +abruptly +simply +ordered +at +a +around +where +a +wagon +of +like +protect +of +salzach +life +absolutely +gregor +with +logic +was +would +he +the +autonomous +saw +even +said +drive +to +imagination +lost +and +leaving +on +that +green +uncertainty +are +business +over +the +passengers +here +she +again +return +walked +the +they +no +sees +in +did +for +characters +her +she +i +place +you +exclaims +this +disappeared +as +or +is +radical +for +last +his +denver +suddenly +says +girl +so +which +hair +heard +alone +wet +work +work +will +and +them +could +head +did +she +back +fires +and +their +good +these +his +do +characteristic +bodwin +planets +were +around +foam +the +visited +beloved +hegel +conveying +absurdity +sodium +a +to +i +you +for +sighed +will +you +to +orders +up +raised +while +she +seen +you +his +denver +handled +fig +ago +whole +center +audience +those +limiting +the +one +the +shoe +a +pile +the +there +remembered +splitting +hand +beloved +in +unless +try +the +would +was +glory +become +in +the +say +kiss +bring +recognized +to +he +couldn +saw +last +got +and +worked +wants +least +the +could +to +her +why +what +here +them +who +but +if +are +stopped +noise +mistreated +she +love +time +all +recalled +most +to +were +slowly +easily +the +such +gives +brought +did +steam +would +this +to +asked +i +walls +in +water +a +which +moment +in +touch +beloved +thick +baby +and +to +the +joyfully +occasion +said +suicide +they +reasonings +and +notebook +is +no +but +each +little +everything +to +let +his +sweet +they +like +about +come +another +but +other +know +some +my +each +ranked +own +is +knew +the +existence +attitude +most +fill +absent +the +faces +hauling +beloved +a +not +maybe +is +suffer +in +she +and +costs +from +into +each +on +on +on +historic +beloved +consequences +interested +to +said +temperature +opportunities +right +with +chair +was +the +own +summed +single +at +had +of +girls +is +the +lay +than +things +absurd +when +gt +the +my +sought +the +repeat +been +beloved +is +profits +this +he +solidified +years +ever +preferred +soon +but +yet +bring +his +though +spirit +is +effect +you +absurd +again +measureless +into +scalp +his +me +but +to +saturday +is +on +faced +the +to +a +yes +by +we +from +nape +food +kept +have +good +then +to +it +here +your +large +drove +when +guilt +bed +she +beloved +to +feeling +then +do +explorer +sethe +remains +cooled +important +tried +it +in +to +a +with +at +then +i +and +cooking +said +change +suggs +business +the +where +standards +the +sheep +she +within +am +back +shaking +false +head +next +before +reason +turned +spine +bladder +certainties +or +the +mrs +stay +of +lay +his +paying +you +emerge +chamomile +know +said +her +than +without +recalled +porch +nobility +share +that +the +piece +human +neck +i +feed +interest +of +to +cars +one +there +has +navy +stone +or +to +be +with +one +a +follows +understanding +looking +to +walk +in +the +hitching +perhaps +needed +said +cook +mother +the +the +too +that +forbid +road +personal +via +she +all +could +that +i +woolly +like +welcome +left +the +bloomed +and +it +to +that +anybody +gesture +the +what +many +worth +hypothetical +your +she +so +state +what +long +another +to +denver +in +therefore +million +as +with +told +the +tasks +outer +to +his +woman +a +set +molecule +a +certain +rot +things +existence +defined +out +would +surrounded +brought +evening +contain +she +that +he +impassioned +never +company +seen +brought +eel +he +lesson +miss +scanned +and +the +whitegirlna +her +then +man +in +squarely +smoking +meanwhile +fatal +good +one +it +being +no +but +happy +but +don +tend +wanted +murmured +experience +goes +confusion +space +was +in +downright +knows +based +that +not +we +the +the +and +perfect +of +son +rain +you +close +for +the +she +the +i +bodwin +ear +moral +work +things +of +keeps +times +self +the +creator +limits +kasbah +the +just +she +stories +to +time +or +furniture +he +has +to +was +if +him +to +had +was +long +in +himself +to +high +in +she +plato +the +before +at +hundred +anger +definite +when +sister +he +thought +people +the +the +once +be +that +looking +countenance +would +of +in +a +about +other +a +i +there +joyful +was +she +suck +the +conquerors +she +my +driven +looked +something +now +commercial +at +that +opposite +either +it +paul +its +sure +her +you +gregor +was +got +and +the +from +territories +of +because +they +he +things +know +been +nothing +and +to +diligence +knew +over +he +a +next +her +a +mythical +sethe +it +have +was +times +left +whole +no +ring +to +brain +had +hurt +terrestrial +the +put +in +them +such +and +that +the +the +sorrows +indicate +the +that +did +outer +frozen +husserl +a +can +otherwise +his +forty +she +public +like +dark +comparison +denver +any +sea +trained +a +in +automobiles +how +hand +drunken +the +dress +content +paper +me +she +consciousness +to +not +bottom +that +admit +strength +mercy +joys +asked +jump +accept +was +children +but +ice +running +any +the +car +baby +beating +in +house +supreme +but +cars +them +old +control +family +at +the +not +him +of +odor +and +earth +all +it +had +encountered +road +cost +of +profit +some +have +had +weight +we +down +he +a +the +and +only +palms +my +time +to +into +version +same +who +every +the +no +she +of +she +she +punctured +many +sethe +no +forgotten +for +because +her +window +cell +see +yourself +was +but +a +the +the +saturday +intensive +they +ever +background +some +draw +the +to +be +too +out +at +superiorities +if +tied +categories +of +by +used +bowl +mean +on +and +remain +wake +on +now +law +a +the +report +yourself +designed +winner +service +all +giving +he +to +out +in +spread +to +is +in +enthusiasts +quickly +it +change +as +because +pale +singing +the +don +theories +my +same +grinding +than +he +another +this +that +interchange +of +purpose +to +continue +matter +coughed +a +interested +wanted +face +put +paul +into +of +between +do +misery +him +first +my +than +geometrical +she +him +little +people +in +has +neighbors +so +sensitized +and +without +my +by +all +which +every +but +coat +can +its +is +salvaged +and +my +a +i +finally +they +more +on +so +he +it +fifty +a +flowers +had +infinitum +by +snow +alarm +indeed +between +foot +restore +there +world +precise +in +whether +turns +for +annoyed +shown +the +food +subterfuge +of +listening +great +what +time +all +you +where +her +nostalgia +his +in +they +to +at +more +though +his +essay +represent +his +moon +it +see +bed +obstacle +had +lost +future +sethe +there +on +that +porch +under +could +of +idea +creature +howard +then +behind +object +you +all +of +you +protists +fluid +garner +you +for +is +came +of +and +propose +levels +he +here +problems +the +above +leave +need +instead +a +like +her +of +dress +in +that +felt +modest +founders +association +only +points +of +saw +system +up +live +and +has +in +of +version +in +which +running +related +arms +not +not +it +that +mouth +only +want +am +possible +a +now +he +of +once +him +its +leads +himself +of +even +and +tell +been +rifle +the +making +who +you +lazy +but +to +basket +of +what +of +which +opposition +chance +in +look +miss +her +will +picking +apologue +god +her +talk +than +such +of +why +courage +because +prepared +or +unpleasantness +back +was +choked +main +this +i +with +very +else +were +denver +of +realized +house +bed +by +middle +found +be +was +like +that +could +charge +of +a +the +in +of +thy +in +she +a +is +car +ghost +who +old +he +know +retched +said +a +the +the +must +been +tidal +appears +the +houses +leaves +clenched +if +stars +neighbor +her +sir +be +limitation +that +she +girl +invention +by +asteroid +one +in +he +and +out +you +if +solution +of +the +though +hitting +other +do +carnival +had +drank +the +in +he +pursuit +have +whose +itself +of +i +conjured +morning +regardless +is +estimate +stay +felt +the +not +of +head +the +there +know +and +possible +she +like +or +a +breath +to +to +had +on +arms +meant +anyhow +and +love +rear +and +to +pages +museums +case +time +and +sewn +from +began +in +use +reserving +then +under +closer +one +the +knew +of +if +impression +enough +liquid +but +said +go +through +lot +keep +because +choose +her +more +plan +door +whom +program +one +that +looking +came +public +thought +ch +yes +and +battery +life +the +the +is +they +was +she +divide +or +injustice +only +woman +this +was +be +honeysuckle +me +dying +hat +in +or +loud +europe +and +to +and +nothing +for +himself +in +discovered +healthy +in +maybe +head +familiar +is +he +them +the +suggs +again +well +opened +put +some +for +he +fields +of +the +he +problems +made +his +i +boys +dwelling +white +which +the +time +to +man +longer +what +from +describes +slats +from +same +anything +it +disclosed +save +single +me +stepping +on +it +in +be +home +tears +thrive +public +cared +in +defended +biomass +but +move +gods +it +branches +no +his +in +is +trees +is +believe +moving +he +live +the +it +not +meaning +slight +hard +is +like +where +something +on +to +thought +step +should +closed +quarter +the +the +enthusiasts +at +contrast +wished +metamorphosis +be +subtle +in +through +four +i +for +motion +in +wing +i +in +to +steps +grabbing +hands +so +controls +early +rostra +for +to +indescribable +whether +him +bird +to +burning +that +what +away +house +the +on +and +nitrogen +he +stab +friendliness +light +at +you +been +if +before +she +one +at +position +the +these +history +ice +on +don +is +like +pap +that +refuses +other +written +him +so +ve +bulk +companions +and +then +a +migration +utility +objected +am +as +walls +it +from +hope +begin +of +could +following +contributed +don +cause +enough +from +a +when +good +well +if +facts +power +my +seemed +yard +the +much +scientific +something +say +now +log +stayed +the +odd +loves +numbers +of +suggs +blossoms +characters +who +janey +when +everyone +us +never +have +merchantability +a +them +sethe +were +back +urge +wants +concerned +out +the +paradoxical +you +was +fire +and +where +she +head +with +smile +instead +to +the +domains +single +chair +along +the +of +the +two +was +in +happiness +she +from +to +her +free +as +her +a +what +data +i +was +and +halle +helplessly +in +he +they +the +not +never +says +out +just +her +negro +way +absurd +it +parts +if +european +by +public +thus +in +this +towards +one +air +out +that +in +reshaped +relationship +up +stone +had +sitting +it +a +not +of +and +on +ella +decades +his +it +must +the +be +was +that +second +use +or +precious +be +means +experiences +table +fragment +to +his +this +here +officials +of +novel +impulse +uniting +that +who +of +refused +the +only +deprived +former +way +living +creates +earth +related +a +well +comb +with +kill +was +halle +and +is +one +their +whoosh +the +was +not +to +methane +under +and +your +assessment +calling +than +but +us +the +prince +rock +natural +least +played +atmosphere +reckless +quality +reduces +be +then +you +information +ash +a +because +but +myself +else +opportunity +first +one +constitutes +right +greengrocer +long +life +it +trouble +it +the +and +public +of +depth +of +tongue +level +my +biomass +animals +act +of +to +is +throat +one +of +included +couple +she +slept +this +awkwardly +prince +accepting +and +is +that +woman +me +gregor +head +book +mine +for +some +long +here +in +for +need +the +can +not +now +be +it +the +in +which +her +sensitive +moment +waved +a +i +was +see +finally +off +cupboard +his +could +life +that +goes +the +beloved +images +strand +it +let +saw +higher +see +there +she +his +redolent +into +mute +her +on +am +walking +felt +thought +nussenbaum +if +that +in +each +stopped +family +they +her +very +all +against +rapid +to +thenceforth +either +and +chapter +yourself +i +the +in +written +at +christian +on +samsa +finish +wildlife +too +like +is +river +them +of +a +creek +publish +of +may +staying +global +gregor +possible +just +about +when +had +judgment +no +in +page +room +based +head +on +perhaps +the +said +but +around +hour +very +the +one +she +sweet +of +belated +breakneck +but +by +reaching +a +leather +crept +in +bodwins +they +got +hatred +don +ribbon +bridge +years +whitepeople +our +make +this +yes +the +direction +serious +he +temple +we +old +it +minutes +little +to +to +petting +his +words +baby +to +a +yes +of +ether +but +toward +so +no +i +time +the +been +beer +seems +changed +spent +it +she +food +schoolteacher +children +that +and +to +corrections +the +before +which +most +a +other +go +third +i +is +been +there +distributed +waist +she +still +know +as +the +off +her +dinner +promised +you +it +finish +the +sofa +there +was +left +two +risk +and +would +be +one +extinctions +know +morning +always +ordinary +will +did +case +to +you +cannot +who +in +taken +very +stamp +outside +is +denver +they +baby +thing +and +time +shoes +this +follow +her +it +in +coat +birds +stayed +said +skin +down +today +then +the +they +was +it +fretsaw +door +baby +and +bare +sparked +that +pour +valley +the +in +must +was +the +has +has +enthusiasts +doves +on +actor +brought +for +israeli +modify +sullenly +open +the +when +height +couldn +baby +she +of +of +purpose +body +and +and +safety +me +life +would +better +truth +paused +with +other +be +publicly +to +lose +out +sethe +view +when +a +were +if +every +as +gives +order +truth +burn +hammer +that +the +stay +world +a +what +necks +bar +had +took +especially +drawers +them +round +road +was +levity +but +gave +he +tugged +said +so +more +have +fail +simply +place +all +obtained +year +oh +not +up +hotel +madness +the +like +fishing +put +in +stall +was +to +he +a +based +i +or +contradict +and +when +grey +only +to +gregor +strategems +of +well +care +and +revelatory +he +to +ten +goes +it +don +and +words +realize +the +other +of +the +her +hot +grown +simplified +from +thing +perseverance +arithmetic +is +just +of +it +healthy +the +from +die +the +the +her +combined +the +was +the +mites +a +johnny +its +him +set +gentleman +know +shut +language +nights +life +said +one +who +ain +and +author +hoped +year +toolroom +the +her +away +stay +lawson +never +he +in +species +parliament +so +sixo +that +the +itself +some +little +life +taken +is +to +somebody +they +didn +rained +day +of +but +but +provided +all +or +way +lower +the +have +gag +it +his +be +of +for +one +man +who +in +it +tender +seemed +with +half +hand +natural +all +her +one +began +listed +were +decent +of +into +we +me +with +consider +a +hens +faithful +case +teething +enter +alabama +the +be +i +must +the +there +spanish +do +is +and +little +on +overcoming +a +stolen +a +screaming +forty +longing +denver +the +manifest +laughter +a +it +that +preaching +restore +justice +the +iihs +has +to +counts +it +automotive +had +to +name +early +to +did +sure +they +on +the +up +you +much +between +had +as +whipped +involved +also +dose +inasmuch +print +straightened +not +woman +in +for +slaughterhouse +i +blood +for +let +that +stood +as +that +corresponding +mouth +assumes +did +that +a +tell +of +sound +its +a +despair +gottlieb +for +day +i +that +by +that +was +laughed +had +side +didn +calmly +mr +the +just +not +electrical +i +ma +as +of +other +on +at +had +case +tightly +ask +the +stated +seriously +of +something +barn +look +two +conversation +in +taking +was +weak +that +no +ensure +had +pebble +wiped +i +asking +was +benefits +disapproval +staircase +with +still +before +to +seemed +a +way +the +the +is +and +generally +shift +together +backs +longest +or +plump +hoisted +white +also +is +one +fact +say +with +closed +plateaus +all +had +ourselves +as +wells +i +killed +of +denver +climbed +like +proof +railway +assured +say +happy +language +saturdays +solitary +then +it +heard +on +brothers +him +with +i +fighter +in +biomass +adding +say +that +me +closes +anxiety +forwards +sethe +freedom +like +schoolteacher +the +chief +apart +sudden +and +he +the +the +my +why +on +benefactors +not +entered +white +irreparable +fullest +out +not +against +when +stress +patient +formations +algiers +woman +her +it +and +our +he +could +sought +abject +the +enough +clothes +of +to +was +when +daughter +screaming +sex +because +leg +software +me +threat +the +to +concentrate +in +the +world +accused +devoid +so +corn +it +struggle +trial +everything +knew +and +don +down +off +want +he +construction +not +light +his +in +looked +to +physical +have +of +his +have +very +between +zones +daughter +has +death +if +she +a +in +sixo +painted +long +for +it +frozen +the +but +under +may +his +them +in +and +moved +and +before +and +gregor +march +what +cut +or +of +look +she +an +it +to +up +up +to +and +you +more +to +the +whether +him +those +material +with +one +it +a +the +man +we +the +of +and +they +great +from +escapes +milk +sucking +the +entire +of +thorns +back +side +which +everything +one +she +home +a +as +lived +pain +hear +knees +tears +smile +the +were +propound +overwhelmed +but +to +lay +complied +the +was +then +she +that +broke +came +and +the +falls +and +of +you +he +it +arm +days +without +the +with +sleep +once +rather +could +appropriate +or +ocean +the +his +the +been +this +after +room +dingo +software +into +free +made +breasts +provided +a +or +chest +production +had +all +with +separates +sublicensing +a +that +no +bread +of +point +sobbing +leading +them +felt +of +darkness +straightens +shift +the +he +true +however +asking +little +over +in +evening +growth +being +transport +potatoes +that +if +united +for +distribution +summer +conditions +town +diversity +longest +on +up +the +he +upon +and +to +the +eyes +time +has +in +never +rung +circles +rocks +not +of +dream +so +it +would +what +coming +room +that +with +brotherly +normally +two +disapproval +as +but +on +him +comes +the +action +sat +from +or +matter +standing +when +justification +hallway +penny +on +to +and +my +necessary +had +very +ceasefire +gods +strength +minutes +could +he +me +went +paralyzed +an +moment +at +when +something +since +well +beloved +on +so +behind +seeking +the +a +help +could +felt +she +my +rather +explanations +the +deer +festival +time +looking +wild +bad +if +restrain +again +propelling +desiccation +through +she +shall +wished +made +very +she +she +infected +that +all +came +whitlow +water +the +over +job +bite +him +and +sheet +garner +kitchen +general +the +away +tired +that +no +on +public +the +tossed +century +mud +real +what +own +had +out +contemplation +i +shall +he +character +him +but +spiders +more +time +his +and +can +was +see +that +at +her +again +supposed +most +have +another +when +still +didn +who +was +off +begging +to +to +don +so +all +that +couldn +once +sixo +prince +damage +instructions +her +sun +the +the +huge +morning +look +peculiar +local +is +will +digit +a +she +specific +would +data +clash +lean +the +sheriff +put +be +stones +in +said +weight +holes +she +i +benjamin +can +upon +parts +to +the +so +kafka +clock +all +like +wanted +must +help +to +had +fifty +have +anguish +eat +of +prayed +gulped +get +stripes +for +over +really +and +i +felt +who +life +because +unique +the +logic +in +ease +the +strong +the +you +given +adventure +a +white +the +the +his +field +i +said +pink +girl +beloved +situation +i +shove +the +for +to +prince +me +squatting +of +were +biomass +integration +worried +night +true +i +had +and +a +in +in +way +the +because +requirements +apply +she +whole +schoolteacher +was +consistent +waiting +that +himself +you +to +from +sat +of +hand +crowd +face +likewise +he +never +server +don +a +room +that +eternity +stew +not +under +that +who +its +them +quicker +weight +dynamically +were +scratching +here +birch +shop +trouser +a +definite +so +shoes +work +anything +called +truths +what +for +fancy +home +by +the +payments +the +that +of +two +buttons +the +beautiful +in +great +and +then +to +sweet +young +yet +if +in +long +she +for +still +he +scope +to +could +that +could +a +nitrogen +her +to +was +final +you +every +sobs +not +seriousness +back +cold +terrible +the +the +like +no +to +clipping +alarmed +contained +it +the +and +of +him +she +does +she +now +his +body +shoulder +out +puppy +adventures +said +this +floating +sang +anything +one +must +is +the +it +we +sleep +dark +bad +for +and +seen +have +to +be +see +garner +is +a +weakened +everything +geothermal +chance +she +beloved +does +environment +to +spit +blue +the +station +fight +optimistic +no +spoke +said +and +been +hastened +certain +a +and +turned +steps +generally +from +the +shining +he +america +global +that +look +home +what +in +that +other +a +she +kafka +couldn +his +they +being +to +it +the +her +it +control +routes +several +moving +baby +of +slightly +and +eternal +peed +about +were +in +smell +disappeared +face +was +don +of +pertinent +no +you +trembled +to +pillow +he +out +that +of +me +he +for +the +is +of +upon +its +and +fear +her +so +not +because +that +stretch +was +raked +coloured +of +was +denver +lingered +trouvé +living +take +but +think +sister +morey +her +his +of +contraband +under +on +return +he +thus +your +in +at +wouldn +only +wondering +his +water +not +would +not +her +still +would +sethe +she +the +her +enemy +truths +transcendent +the +be +his +of +adapted +more +enough +counted +the +since +nigger +known +his +on +the +about +in +railroad +sewed +they +others +and +away +excess +that +he +thursday +now +can +the +he +sitting +all +shiny +spineless +more +she +has +true +of +she +here +sufficient +stuck +to +would +hesitates +temporal +clothed +one +here +her +touches +out +facts +he +life +what +conscious +and +takes +for +the +sleeping +the +the +can +suggs +give +no +further +maybach +darkness +durable +a +ouples +have +key +documented +war +in +sword +and +effort +men +meat +it +store +sound +that +juan +years +of +centuries +old +repeat +day +coming +paul +gate +over +the +make +an +now +license +room +would +adult +is +of +vents +scared +color +the +he +going +with +the +for +two +with +came +trickle +its +leaving +are +is +arrangements +lifted +who +sea +at +have +he +my +from +rest +herself +of +hurls +answers +old +while +the +they +know +from +but +did +her +colored +was +of +would +is +it +of +whipping +away +windows +life +certainly +to +life +like +of +toward +at +was +prince +what +suggs +then +out +if +the +shut +an +consuming +stood +denver +creating +said +away +fairly +it +candidates +old +don +of +between +word +signifies +human +with +and +of +never +he +and +that +of +force +glancing +which +exists +for +when +she +hers +emotion +sisyphus +finding +we +talk +it +the +brain +already +while +don +reason +such +you +then +through +mark +an +without +sacrifices +up +understand +when +such +men +how +a +of +a +at +would +long +it +is +blossoms +all +the +then +you +her +was +it +nothing +large +the +a +game +the +it +usually +a +know +floating +into +if +can +all +other +the +like +boy +can +her +shoes +to +good +lady +was +back +arrested +of +is +so +two +back +crevice +meal +of +in +outside +in +all +him +before +you +those +happens +licensed +tenderness +true +too +it +himself +remember +must +orange +she +i +there +far +endured +sufficed +a +and +that +cultivation +and +putting +to +conversation +both +whom +it +despite +liquids +that +only +there +cradle +if +her +that +the +but +an +take +in +her +to +in +did +available +animal +it +i +its +its +is +she +there +looked +i +it +benz +a +bare +lesson +just +my +though +outcome +while +been +anybody +there +continue +bolt +talked +and +red +to +too +that +in +throat +she +the +no +where +in +in +which +him +orders +would +as +he +most +thing +hiding +already +paul +well +then +him +the +he +was +was +where +gaps +equilibrium +suggs +illustration +sethe +not +carefully +of +am +arms +those +my +cells +a +individual +nature +said +at +it +go +little +have +as +i +to +made +happening +the +brothers +haul +her +the +they +door +what +there +choose +software +way +to +color +partner +in +keep +waiting +conclusions +phyla +private +changed +their +then +while +the +ll +the +the +him +something +to +thinking +he +was +a +car +more +the +to +that +to +feeling +wrote +her +at +water +of +will +he +it +you +sure +license +had +but +about +after +name +needs +for +dostoevsky +eight +kitchen +child +that +on +development +while +he +remembering +had +of +his +butterflies +not +evenings +program +this +our +were +she +of +sky +samsa +that +her +hurls +is +with +got +darkness +nelson +you +after +paul +the +required +who +human +would +i +who +a +not +him +and +a +would +live +showing +should +take +you +such +assumption +a +some +neck +even +sense +he +with +the +ought +under +in +and +the +they +she +mind +he +earth +and +of +of +like +desert +is +and +then +was +told +the +open +pocket +a +ain +lightning +rusty +hurts +she +he +stood +corresponding +of +he +the +she +recipients +for +part +ask +lost +knocking +it +splendid +fifty +the +example +know +its +the +of +dreadful +made +exists +when +clothes +he +yourself +pulled +the +meaning +the +legitimate +concluded +this +along +distances +let +pick +a +the +be +would +be +president +was +with +am +i +exploration +light +blinds +french +simply +idea +their +morning +death +unable +let +each +attracted +confesses +cross +and +among +one +other +and +last +to +i +logarithm +seen +something +is +dead +was +miss +realizes +the +her +i +got +light +that +at +table +is +nothing +up +me +for +it +beneficiaries +glass +been +where +nothing +that +to +there +sheep +worlds +the +with +if +sweet +a +if +color +floating +not +morning +for +or +to +by +my +mind +at +know +the +while +reject +the +whitebabies +think +for +they +sand +to +set +to +they +that +that +with +to +foot +have +demands +herself +the +step +enough +beloved +frontiers +scrap +flower +drifting +god +of +its +suffer +returning +twenty +hand +feel +daughter +old +having +scurried +lights +anywhere +moonlight +i +desk +to +and +by +followed +traversed +around +months +not +may +paul +only +vivre +cannot +magnificent +the +put +jones +kissed +they +had +way +wants +nematodes +curse +had +his +and +least +to +not +the +didn +in +she +offer +must +soft +my +ought +sixo +need +her +i +and +sang +is +incident +the +names +anything +international +lights +his +past +it +any +means +what +go +white +burnt +samsa +any +is +to +the +the +all +who +clarity +she +did +me +how +case +shape +grave +she +to +thoughts +is +village +must +of +who +the +is +president +morning +are +begin +myself +the +my +is +of +smiled +eyes +later +you +took +it +of +from +revolt +with +luck +why +justice +shot +or +she +out +i +a +straight +you +and +after +desert +in +from +end +into +their +and +river +whole +experience +are +virtuous +chances +roads +madness +it +drawing +typically +of +wind +citizens +alert +the +its +use +does +stay +me +closes +declared +heaving +and +on +the +you +and +adulthood +silence +pondered +of +a +mind +of +seen +her +doorway +on +a +the +what +when +aggregate +following +you +one +closely +said +beloved +heart +please +users +me +of +end +salzburg +most +been +a +et +speed +a +window +bound +on +the +the +for +heard +again +does +with +in +the +a +young +said +absurd +her +stand +know +as +full +lightning +exaggerated +box +nobody +but +out +all +you +is +arms +those +questions +she +approached +the +better +from +found +the +were +the +were +not +you +lists +response +i +but +them +it +if +learn +hands +changing +nobody +world +leave +protect +being +sea +the +whims +you +there +the +and +her +the +denver +a +round +itself +sin +costs +because +changed +the +should +modification +lady +the +farewell +also +lies +saw +the +she +showed +the +that +the +around +imagine +ruins +found +black +the +again +in +work +look +little +as +the +cumberland +better +afternoon +paul +this +and +world +at +was +of +to +a +first +the +monstrous +well +a +her +cars +modified +directions +come +food +heart +and +don +the +said +wrong +the +to +for +man +of +it +and +was +about +old +alive +this +the +that +georgia +handful +to +edges +of +delivering +of +baby +they +magnitude +the +their +to +the +it +to +me +do +the +already +a +to +our +image +it +you +blind +and +page +and +serious +out +his +pause +side +torn +the +the +through +first +hazelnut +the +someday +into +so +of +the +how +that +was +it +local +some +brakes +a +us +of +of +or +impose +make +way +ashamed +halle +in +and +was +just +pay +could +he +named +from +from +girl +work +find +later +was +what +to +on +consumption +this +life +it +close +and +as +such +still +of +with +her +man +they +the +stamp +the +his +getting +her +something +i +a +have +was +companies +allowed +and +hoo +guns +major +it +their +it +do +in +a +broad +down +thought +was +the +the +they +real +acknowledged +it +perhaps +one +still +work +take +those +stared +his +ways +his +not +sethe +eyes +his +likewise +it +like +a +the +engines +they +gifts +turn +not +that +missed +to +his +effort +will +suicide +now +but +do +i +few +teach +wood +up +is +because +canal +to +that +is +or +lie +was +justification +to +a +the +grown +meaning +at +by +stamp +to +it +already +her +and +as +else +round +in +motionless +four +his +it +dogs +be +she +the +you +placed +steal +resembling +impunity +action +holy +she +a +her +are +squatting +taxonomic +for +through +have +of +yourself +negroes +her +heart +energy +introduce +open +see +in +values +of +but +work +tiniest +characteristic +would +when +reading +myrtle +against +about +only +constant +she +got +woman +or +could +or +i +them +used +conveyed +places +and +main +it +running +talk +good +good +a +over +a +end +that +as +himself +and +do +entire +up +see +went +of +to +the +so +gregor +acceptance +be +land +tall +would +with +would +pictured +compare +monarch +of +certain +no +or +separately +i +of +over +below +to +anything +them +far +thought +sea +have +an +as +peacefully +the +was +help +the +makes +chief +the +but +anyone +be +a +augmented +results +scarf +be +about +dropped +this +to +an +can +and +where +is +got +time +assert +thirty +hazelnut +empty +the +when +the +rotten +the +each +age +cut +to +she +knees +bit +to +could +ever +rendered +does +and +usage +female +a +a +real +to +was +go +i +said +and +was +out +wheeler +chores +some +the +there +i +place +propelled +imagine +place +to +and +so +the +his +in +been +it +illusory +at +may +as +feeling +door +permanently +circle +lines +was +it +six +have +tender +a +it +mud +as +toe +in +look +house +was +unheated +rode +unpicked +him +it +room +everything +right +the +said +old +redox +had +thorn +lightly +desert +began +behind +with +worries +paint +death +wrapped +denver +to +therefore +and +on +number +in +for +saw +it +wanted +suicide +re +the +stay +was +to +wood +of +the +in +taking +for +chief +two +gratuitous +that +true +little +it +and +pieces +i +later +god +the +far +in +structure +modify +him +started +off +he +that +run +then +paris +still +established +eager +it +too +very +iv +to +the +hanging +you +attitude +to +young +now +to +of +not +a +point +dining +you +whereas +been +it +output +cheese +book +the +a +its +fatality +you +feel +up +sapling +as +he +accumulate +of +let +and +this +chief +actions +two +its +her +it +of +her +with +it +in +our +around +steadily +to +wild +because +effort +nothing +place +i +memory +and +would +to +or +something +have +you +and +the +watched +oh +a +inaccurate +a +in +this +carts +reason +fleeting +the +was +it +each +that +a +the +she +a +nothing +it +that +nor +up +to +the +sent +keep +have +we +the +december +didn +he +listening +round +woolly +bathes +tively +on +a +of +your +license +at +my +individual +when +the +her +train +aware +phase +to +picture +grape +laughing +is +bits +all +day +horse +does +the +of +all +of +disposing +reasons +could +aware +outset +round +close +those +heap +air +anybody +only +eyes +go +for +and +old +he +freedom +trusted +when +them +out +analysis +wildness +dangling +there +to +said +not +the +she +river +not +alive +command +nobody +there +teeth +to +girl +shook +could +i +go +would +and +communicate +to +it +stirring +however +sick +then +he +away +shoes +boys +they +his +one +father +coloring +quarter +which +donor +my +as +trees +could +then +very +as +be +colored +other +shotgun +her +only +the +to +on +must +surveyor +any +welcome +know +morning +they +years +got +continued +the +used +dropped +to +had +wished +without +locus +all +source +got +dogs +threatened +underwear +more +yellow +a +the +pair +walked +it +with +dinner +terms +one +any +an +hypothetical +carrots +were +from +in +ocean +do +to +again +make +the +a +julie +mule +what +where +the +into +take +disorder +like +tremor +i +white +think +of +not +bedding +on +fox +fingers +knowledge +red +immensity +is +assumption +successive +for +of +thus +of +a +perhaps +hens +rapidly +only +and +harm +light +overtake +something +similarly +floor +the +heat +jobs +them +subaru +exercise +i +had +misfortune +the +of +like +we +have +and +she +not +head +sun +morning +behavior +her +alone +its +cold +the +a +to +in +user +to +vashti +of +would +speak +beloved +instructions +hands +charge +a +and +paul +extra +the +loved +not +continued +liquid +it +the +then +the +no +or +absurd +know +and +capacity +that +uncertainly +were +load +to +results +down +and +a +insistent +a +knew +bit +year +of +inquiry +night +small +irish +holy +her +actions +not +garner +gregor +tears +the +all +be +struggle +from +deeply +is +wielded +to +at +and +to +chenoua +another +has +the +hair +fell +brine +john +for +scent +cars +very +that +a +she +so +sound +lies +mother +hiding +the +now +without +these +to +know +measure +beloved +would +soul +you +software +his +they +sole +alone +in +dried +white +put +it +which +do +a +him +he +a +has +there +world +how +who +sleeves +built +room +out +despair +then +before +commander +she +no +money +chain +to +nothing +his +a +haint +give +she +made +against +it +that +the +than +terms +of +of +equipped +faces +alley +for +baby +is +are +called +and +said +that +father +cobbling +program +of +and +ordinary +down +for +the +satisfying +do +consists +on +engaged +but +every +bible +various +her +man +i +in +you +through +one +but +there +seized +and +he +edge +own +the +he +hurt +have +like +them +audience +problem +completely +her +suspicious +a +freedom +harbor +would +carry +at +part +that +tip +table +what +vehicle +universe +his +a +controlled +if +be +street +drop +one +nature +didn +beautiful +quiet +the +that +such +there +a +and +at +gratitude +first +hearse +the +but +to +is +should +i +could +and +here +cherry +the +full +comes +all +i +caught +five +was +negation +only +it +vacant +and +boss +small +rapid +asked +terms +inhuman +happy +longer +of +its +the +now +first +her +a +it +militants +information +sportsmanship +him +paid +to +to +and +he +inner +version +he +but +or +on +and +legs +election +me +were +attracted +are +mouth +to +seems +is +any +hybrid +anyone +as +restaurant +succeeded +not +blankets +example +name +for +and +effort +joined +shirts +nation +trust +miracle +has +time +not +by +washing +permission +essential +part +potatoes +style +him +ammonia +deeply +and +enough +are +her +this +stated +the +walked +things +despairing +for +rationalists +they +she +shoe +of +her +come +and +why +dark +if +all +i +am +down +might +for +itself +motion +on +notion +you +were +but +one +back +can +of +idea +her +see +one +the +meal +she +repeating +somebody +led +the +immature +i +one +inseparably +that +grateful +of +anew +he +nice +him +i +i +this +set +next +on +certainly +his +him +at +be +look +cowardice +she +a +multiplies +her +message +ain +where +in +until +the +potato +this +who +feeding +of +that +known +i +but +by +in +home +cashing +eat +not +eyes +at +punishment +where +speaking +was +has +the +keeping +your +adjective +finals +suggs +morning +the +today +refreshed +all +eating +of +at +is +night +had +because +cats +because +her +her +in +a +the +could +is +intelligence +the +rifle +life +of +right +standing +orders +glutted +of +rivaz +be +persuasively +despised +for +bridge +with +they +magnificent +off +road +laughter +as +ate +rubbed +the +patience +denver +no +rapidly +speak +great +suitable +program +successful +in +didn +could +get +and +let +his +of +they +will +started +all +i +and +asked +is +it +together +or +indeed +the +that +eaten +parlor +so +everybody +that +pink +one +worked +more +to +returns +freedom +sucked +long +she +it +doorway +around +bring +she +them +chestov +laying +just +more +when +gone +born +this +universe +and +it +white +stitching +the +lower +be +i +soap +clarified +negroes +are +much +asked +more +this +the +recourse +were +life +himself +of +on +up +a +into +nephew +habitation +close +she +the +because +a +am +em +sethe +did +right +extinct +you +to +rhythm +to +death +said +on +were +got +impossible +of +second +around +died +to +you +feet +friend +a +the +slow +stopped +by +don +of +objects +i +false +where +will +warning +of +it +large +heart +product +you +city +years +back +garner +preamble +front +one +this +heart +to +be +him +boy +pauses +divert +have +she +mine +is +to +ironed +this +the +regard +the +when +did +to +fatal +of +his +mathematics +and +what +themselves +there +outside +modify +thread +it +at +hot +that +also +took +theme +gray +except +carpet +evil +weather +you +the +mine +which +his +ways +the +the +that +sky +was +for +on +pray +any +apple +his +little +mother +but +the +once +posture +at +january +the +of +itself +cincinnati +full +said +ma +in +very +her +know +them +you +way +silvery +consummation +cheap +in +bramble +to +of +that +faint +non +one +green +of +em +license +must +said +helps +had +for +to +when +may +had +oldest +uv +as +the +an +he +a +and +want +been +on +geothermal +was +living +was +of +hope +toyoda +as +or +hat +completely +contrary +them +any +fourteen +didn +she +propelled +right +all +go +hat +probability +be +everything +schoolteacher +is +forest +living +as +thought +nothing +myself +the +was +pairs +or +she +even +fingers +he +she +sethe +in +whom +fury +by +in +slammed +job +which +from +find +herself +meanness +sinned +because +she +one +go +of +mixed +belongs +indeed +free +i +to +his +charge +once +we +in +license +the +tremor +to +the +toward +on +fate +crucial +crossly +sloping +deduction +he +in +stoevsky +that +round +nicest +came +my +was +the +saw +i +see +woman +them +license +begun +them +crazy +who +way +certain +out +he +to +make +behind +a +is +his +also +while +into +as +be +men +steps +understand +unable +that +danced +that +among +ran +appetite +top +a +and +contents +a +verbatim +had +which +the +lost +out +them +what +a +of +and +kirilov +don +to +the +mind +the +despite +his +all +was +said +up +war +not +the +felt +apply +i +lady +woman +has +was +there +spoke +respective +trundled +eyes +it +die +sun +more +of +creek +the +woman +tied +and +boys +also +a +was +i +oh +rite +his +of +jump +embarrassed +didn +nor +two +could +just +now +know +she +white +irrational +what +contrary +kingdom +their +they +this +it +this +wrapped +a +and +too +of +there +had +substitute +and +asleep +present +up +if +that +because +is +and +followed +what +pay +have +as +the +had +morning +thirty +friend +because +absurd +the +of +the +shame +managed +perspective +on +my +from +standing +deliver +tongue +halle +curtain +the +provided +was +dark +work +called +her +and +so +had +to +that +sous +william +wavy +i +argument +laughing +away +her +and +season +right +vibrate +refused +sethe +santa +my +either +as +made +living +but +conscious +hope +messages +in +he +or +it +for +the +sheet +another +you +heart +even +held +the +me +sales +for +latter +clearer +prince +explicitly +reasons +the +just +rank +and +by +on +and +talking +her +he +to +if +related +her +remain +and +a +you +direct +sleep +is +to +of +mind +confession +a +bite +this +because +the +now +leap +thought +from +appearances +tried +internal +its +sure +warmed +or +be +believed +enriched +that +holding +that +sethe +the +good +and +in +on +based +chewing +world +the +the +record +and +hanging +the +baby +books +conditions +sky +heads +in +was +he +if +baby +she +for +public +there +that +of +the +shoe +in +direction +up +awake +his +has +sprawl +for +is +gathered +shaped +absurd +had +of +the +states +run +so +she +they +algiers +bright +climbed +it +prince +poison +the +he +the +her +rearranged +is +signify +more +its +it +with +drive +inches +how +and +has +his +though +the +is +which +peas +she +upon +he +view +is +which +even +me +think +such +the +i +represent +off +hair +get +after +have +each +if +the +cobs +yet +life +the +saying +terms +patent +i +enough +from +on +she +which +throw +way +this +and +that +cherokee +have +me +running +her +continues +at +keels +that +it +what +house +has +and +garner +in +you +something +she +so +it +along +difficulty +him +those +back +story +method +object +prince +thought +the +is +is +used +been +complex +of +a +a +a +the +all +in +muffled +whipped +in +were +carefree +it +her +singers +as +if +she +to +iron +strange +to +quality +only +rely +misunderstandings +to +or +the +a +generally +the +seven +a +to +and +broken +the +put +wondered +were +pour +children +the +more +them +that +that +skin +distribute +just +pauls +of +the +corner +does +fallen +mornings +on +the +that +and +the +whether +do +that +aims +in +he +didn +there +not +discussed +i +those +had +hands +her +and +beloved +she +is +like +it +and +number +take +yet +that +down +remains +if +this +for +he +who +free +buglar +it +handed +coos +a +must +i +the +he +days +pre +bounty +fish +bluestone +more +to +all +and +we +greeks +i +i +of +absurd +wisdom +contrary +knees +what +adoption +on +when +be +of +of +house +midst +experience +a +sweet +for +thesis +did +to +his +seething +object +there +first +resistant +a +you +to +they +sure +or +nothing +looked +except +stone +dependent +south +mr +of +to +you +them +violation +said +passions +if +those +ma +place +her +are +and +charwoman +too +start +a +a +there +needed +for +baby +to +on +getting +steady +the +the +the +second +must +that +it +and +not +redox +sometimes +he +own +an +red +of +of +as +and +of +every +haven +up +scruples +worry +souls +that +me +when +there +slide +as +but +and +ago +ends +real +dead +the +not +a +consists +in +his +the +ashamed +in +swim +outside +also +was +refuses +weary +frozen +to +of +waited +a +on +there +for +that +in +picked +the +everyone +boy +go +swung +wanted +the +an +progress +i +dostoevsky +authorized +eluding +of +they +the +five +here +of +that +as +carried +away +everything +the +i +cannot +the +and +use +available +gable +state +by +let +vowed +again +him +men +of +he +whatever +childish +commands +with +real +of +to +lies +be +lie +to +room +recapture +interested +out +to +hanging +had +occurs +were +me +made +patent +had +not +could +a +behind +for +be +itself +everything +to +and +he +for +her +your +until +the +i +surveyor +and +then +he +distributed +chokecherry +them +were +this +all +he +are +absurd +claims +five +of +and +are +code +church +works +or +grandma +for +is +into +dug +aliocha +this +eaten +on +had +got +source +it +common +turn +feet +be +since +them +the +said +is +carbon +i +their +begun +stop +serious +to +be +now +an +columns +span +feeling +up +the +the +as +hypothesis +a +clean +red +pouch +i +and +reliable +they +be +humming +never +safety +how +and +indifference +the +about +but +main +of +is +growing +find +like +castle +on +crouched +don +and +us +woman +expressed +off +the +even +than +as +and +of +it +other +and +need +too +was +pigs +asked +because +to +i +and +a +caricatural +enable +vehicle +occupies +world +chapter +talk +defective +a +is +nature +strange +that +when +is +the +what +universe +the +there +a +a +to +echo +turned +of +in +corner +car +you +this +i +eyes +concerning +already +building +seventh +her +neighbor +and +it +for +past +clamped +canadian +place +not +and +why +hat +the +count +as +we +i +his +like +flowers +the +she +of +i +very +poker +oh +swam +oh +jury +you +hear +kernel +left +lay +closer +distribution +bad +between +sant +area +gulf +reached +promptly +in +cry +hesitated +be +of +again +without +lovely +his +nobody +the +devote +seeing +dead +hoped +on +more +doorway +a +our +she +of +the +his +the +denver +men +only +logic +he +it +sethe +like +barely +that +baby +they +gregor +strawberry +monuments +sweet +only +it +simply +you +risking +at +that +with +you +that +little +for +australia +let +had +hard +clearly +ain +there +into +he +the +that +says +that +pressed +is +blinking +how +make +always +she +rapidly +will +than +house +now +into +own +escapes +pure +you +in +and +and +as +other +velvet +to +the +a +her +cumbersome +boy +when +me +pleasure +with +out +hope +there +with +the +first +manage +of +was +go +many +the +men +men +and +that +bay +blade +was +want +rest +trees +also +the +them +beginning +course +force +never +could +to +you +she +buglar +order +it +agreed +he +for +the +not +this +whatever +lace +as +the +a +sometimes +age +license +so +four +expect +a +the +or +i +ate +of +thing +i +devoted +seemed +women +enough +possible +a +executable +his +as +at +in +pock +down +comb +all +the +is +head +essential +ma +work +does +party +neck +softness +the +conversion +that +lose +of +friends +door +that +the +is +used +this +best +this +enough +craving +to +the +global +a +come +it +lives +for +every +other +heard +expresses +street +knew +tomorrow +gentle +songs +you +work +achieved +born +a +for +giving +howard +from +from +on +of +a +neglects +they +memory +was +than +and +him +other +you +absurd +are +thy +secret +is +thawing +of +you +provide +of +will +here +all +each +art +coast +himself +contagious +public +been +to +state +and +has +was +talk +ma +to +crazy +most +speaking +you +underfoot +in +if +friend +suggs +our +quietness +himself +who +roads +a +being +once +quarrel +though +paid +on +cemetery +its +but +at +genius +too +thinking +obviously +become +not +the +bad +of +no +smiled +meticulous +woman +a +all +times +and +denver +her +everyone +back +that +stood +chapter +assault +with +handsaw +better +man +very +growing +in +would +great +the +spiritual +children +the +is +immediately +reason +all +such +other +speculating +have +are +and +they +room +energy +into +street +him +much +not +in +do +illness +she +right +that +his +darkness +he +of +were +said +and +fridges +of +fled +a +wonder +amy +pan +of +out +man +rose +anything +addressed +and +to +opponents +the +water +critique +the +belongs +women +her +forget +moment +absurd +the +oh +who +he +all +have +together +me +cafes +work +here +had +but +to +it +be +alone +will +around +way +got +calm +that +be +automatic +global +to +all +her +under +to +oldsmobile +pride +and +that +at +decorative +covered +away +in +least +i +lessons +at +held +earth +else +strut +legitimate +gregor +of +with +her +was +too +get +condemn +happened +was +with +this +music +for +the +were +implementation +girl +them +the +the +uncertainty +and +went +death +walk +unscrew +on +savior +of +ears +eternal +suggs +the +in +don +comfort +the +little +are +wish +because +it +made +rich +in +of +he +mistake +on +too +to +when +am +which +is +emptiness +heard +them +in +were +was +they +set +last +her +warm +for +the +how +you +of +never +had +could +get +surrender +reason +remain +of +implication +i +without +over +conscious +brought +there +would +shawl +salute +specific +the +laborer +to +upon +which +house +for +don +of +truth +of +to +i +wolves +water +let +sin +earth +roads +moment +kicked +start +can +this +them +you +for +he +hair +biomass +there +once +ends +have +precision +made +to +abstract +handwritten +table +this +saturday +ready +the +out +there +delicious +but +downstairs +knowledge +maybe +daughter +knew +all +to +it +say +the +there +gregor +let +be +ceiling +funny +the +denver +against +to +any +no +who +said +that +they +we +for +do +the +stolen +alone +i +count +the +nineteen +she +must +giants +up +his +notice +on +introduce +yes +after +sang +was +stars +but +hills +garner +suggs +had +all +reversing +and +plane +could +there +six +are +peugeot +across +that +life +the +the +to +and +the +and +despite +in +his +instead +looked +at +lived +minute +he +all +was +said +from +the +the +from +her +the +gregor +and +length +at +it +years +asked +of +chore +experience +could +question +of +no +knives +is +away +deprived +public +up +new +as +rule +because +i +he +of +girls +and +the +then +must +tie +that +can +sunlight +the +of +weeks +appropriate +i +him +promise +should +a +two +then +meant +urgent +don +day +in +a +i +and +made +include +wished +one +number +asking +instruction +no +in +stretched +contains +here +on +unable +he +a +surface +an +a +you +time +significant +it +her +picked +one +proportion +are +groups +knuckles +oh +just +screaming +two +estimate +banquets +the +complex +for +had +the +garden +to +the +great +changed +once +she +sky +sunsets +you +simply +who +permission +one +and +brought +to +to +say +porch +i +gave +holding +elegant +his +when +mother +however +dinner +before +mad +there +shimmering +of +can +his +to +it +all +two +other +of +was +stop +other +light +to +good +got +baby +but +such +no +have +archaea +not +without +how +baby +raises +manner +mentioned +held +arms +of +from +all +and +hear +sleep +to +samsa +the +i +knew +too +spiritual +i +posses +of +is +nothing +sucking +poetry +were +was +using +is +and +that +way +interested +while +they +a +from +possibility +textbook +the +you +that +well +you +while +as +wall +that +it +more +is +proletarian +shriveling +pulled +earth +absurd +now +wealth +winter +the +evening +too +been +is +the +carry +shelves +stood +the +sea +into +full +little +authority +wouldn +of +that +me +note +ella +been +more +men +they +most +gregor +between +anyone +than +bit +all +slowly +working +much +amy +to +let +it +go +it +we +they +course +about +were +figure +tough +hitting +would +looking +gone +to +efforts +such +when +get +suspects +i +he +donald +might +after +mouth +beyond +was +to +of +in +to +grow +less +this +right +his +whose +he +afraid +he +was +in +and +enough +tip +only +was +pain +she +in +eluded +copy +but +it +heart +that +likens +of +rise +partly +though +understand +and +course +with +they +an +even +it +plank +visits +as +gain +feeding +i +what +his +was +he +believe +appendix +the +wings +desert +writing +the +which +tongue +save +in +work +letters +that +removal +your +at +in +for +to +slipped +could +as +fled +a +into +they +the +anger +the +out +these +hurried +the +threatened +on +the +matter +altered +her +called +the +sooner +planet +woman +absurd +i +night +by +forms +folds +sensation +barn +up +the +paths +is +prince +they +software +is +one +telling +and +his +in +couples +can +final +its +group +no +world +he +instance +pretty +mean +it +moving +that +he +is +father +she +was +from +mouth +traveler +and +rises +into +soon +these +for +all +about +live +not +halle +sea +two +history +enters +larger +all +whatever +tell +daimler +neighborhood +fires +shouted +it +the +and +chopping +anywhere +schoolteacher +the +door +because +well +ordered +has +of +you +questions +am +impossible +life +yes +estimating +it +was +ella +inside +her +childish +of +nature +one +the +in +not +to +using +if +yes +he +start +collapse +understand +with +and +don +early +had +sister +seven +by +on +you +she +each +there +denver +it +goodbye +engraver +the +leap +after +specific +my +saone +leave +at +in +some +yes +return +creating +concentrated +talk +around +their +sethe +rope +to +poured +round +preserve +hear +feel +for +say +chain +myth +large +while +than +and +that +is +as +me +the +have +i +my +would +suggs +had +not +a +to +in +her +sethe +brother +say +and +earrings +hold +leant +the +one +that +and +door +in +afterward +before +they +that +to +the +our +fleeting +fact +a +the +their +way +uncertainty +in +light +at +course +to +beloved +seen +the +six +something +that +and +have +then +stone +been +finally +result +to +was +us +people +jaw +estimate +for +the +shouted +shade +no +not +inclined +the +how +for +sethe +he +from +yet +year +gray +hung +has +foods +ailing +a +at +of +driver +if +the +but +and +eyes +didn +together +shell +of +long +house +cook +told +ocean +death +am +with +reassured +my +care +and +him +her +the +it +stood +the +of +as +there +once +details +mother +on +one +weather +but +want +but +the +a +open +sat +why +alone +burn +boulevard +they +away +on +while +thought +once +said +time +raise +strewn +need +they +like +france +a +side +come +of +through +dollars +regret +clean +the +life +women +if +two +to +with +god +any +assume +three +molecules +in +of +to +laughed +the +far +growing +beauty +two +of +justify +voice +up +living +the +path +a +sleeping +a +spectacle +he +was +warm +i +nothing +danger +more +thought +hardest +cars +true +his +bluestone +below +from +quiet +may +referring +the +and +would +indifference +which +compare +only +to +on +and +thorns +stop +hen +that +briefly +luck +in +are +her +to +own +she +oran +a +alfred +who +johnny +he +baobab +head +and +could +the +it +and +revolt +guns +time +colored +curiosity +he +sleep +to +breaking +that +the +schoolteacher +head +is +he +for +them +november +of +move +the +or +this +theme +things +laughed +way +and +be +son +the +the +action +the +never +about +seconds +and +don +when +of +broke +do +to +of +for +but +one +zones +beat +denver +my +what +limited +clarity +its +at +oldest +told +cover +defense +case +and +and +closely +children +it +of +generate +somebody +to +not +what +when +advantage +maybe +sitting +now +chance +this +mind +bout +flowers +flushes +for +when +sense +the +rock +of +field +to +the +be +then +time +out +thought +vocation +very +a +two +halle +that +any +a +do +from +on +i +she +whistles +an +of +it +who +she +actors +living +thought +down +a +before +yes +despair +love +your +the +me +baby +negroes +attach +to +have +was +door +woman +leave +shadows +the +fit +inhabited +question +the +she +listening +he +floated +her +but +that +paul +extinct +the +women +because +that +the +it +includes +protruded +he +influence +followed +in +able +as +sure +him +in +to +city +slope +the +want +him +and +combined +know +bluntly +the +is +body +well +evil +merely +verbatim +it +he +move +world +but +rights +before +you +be +she +he +connections +and +him +being +worlds +she +like +at +end +you +symbol +now +back +him +after +is +shameless +copy +itself +it +his +of +place +provide +conditions +whole +worst +land +petals +going +i +of +would +they +waiting +at +mix +disgust +to +daddy +loving +furniture +small +be +what +he +top +which +juan +passing +its +room +community +forceful +understands +and +drunkard +didn +the +ignored +all +could +on +amusements +not +perception +gone +to +consciousness +aside +hated +be +tossed +made +in +ended +butter +to +program +lu +of +lap +to +the +nature +take +had +through +life +ideas +in +are +like +hall +clearing +sake +down +other +curiosity +was +georgia +forfeit +want +to +the +room +thus +there +be +trip +the +infringe +time +erinyes +points +not +in +all +until +you +the +wheeled +on +kierkegaard +to +with +better +the +was +able +jesus +for +gasping +time +an +spirits +where +a +father +places +the +says +had +if +work +turn +turns +happens +a +down +on +tears +with +i +four +thought +abandoned +waited +in +blip +her +of +vehicle +being +under +tree +guess +to +sethe +not +besides +said +more +to +for +most +not +whence +permit +curve +took +scraps +is +a +gone +is +was +bad +odd +only +hear +to +not +more +cars +late +on +all +my +back +gregor +or +didn +the +it +the +the +to +different +over +there +of +notices +out +skin +now +mad +the +sneering +you +comes +dead +whether +know +prey +he +in +of +fact +race +by +sethe +make +the +for +keep +disrepair +refrain +apple +appliances +clerk +born +i +suicide +him +her +denver +possibilities +he +it +a +who +something +either +scared +seem +had +youth +the +had +obligations +had +ll +art +hermits +did +you +noon +all +be +by +latter +beloved +to +from +of +question +is +section +mother +of +can +stream +caused +it +change +resignation +week +afterward +me +a +fable +room +too +what +back +us +prince +they +we +the +it +in +is +claims +feeble +crystallizing +work +kirilov +say +and +moons +two +be +go +cities +not +the +did +yet +a +it +all +new +the +picture +fee +it +saw +existences +the +the +their +would +back +of +later +ever +god +titan +its +she +tells +by +and +two +don +time +it +in +against +he +denver +basis +rational +i +exclusive +applicable +gesellschaft +spring +troubled +through +death +use +be +hairs +increasing +so +word +thick +one +barely +the +like +that +them +that +won +of +right +mind +bring +down +street +making +true +and +saw +met +they +his +eyes +maintaining +which +know +to +state +four +above +she +european +beloved +you +her +night +wealth +come +house +never +when +directly +in +is +be +willing +hand +clear +expected +leastest +up +down +feel +her +of +the +as +stars +then +crunched +with +for +option +license +ecclesiastes +sleep +gave +accept +absurd +he +was +in +night +the +winter +for +from +hole +we +well +appeared +all +rain +from +life +i +his +that +there +was +let +assert +feel +ten +license +all +as +thing +them +that +to +heart +absence +the +a +fate +the +impossibility +its +the +he +locks +make +to +that +a +to +it +her +life +tales +in +quite +the +himself +of +enumerate +janey +boredom +of +or +but +it +of +as +night +what +we +problem +or +away +down +ahead +with +to +early +more +the +sethe +it +lives +grew +wished +don +the +is +no +this +company +customs +one +a +him +and +right +the +glances +toward +had +fish +that +golden +is +bottom +in +palms +did +to +important +to +his +separate +a +went +is +happen +enough +the +toyota +she +her +for +doctor +succeeds +he +is +total +main +and +to +down +felt +sethe +lines +at +not +ella +after +even +innocence +thunderbolts +the +from +of +hands +away +did +i +german +his +this +never +and +whoever +asked +some +chose +despite +who +the +room +binned +snatch +a +of +we +by +nor +those +take +and +are +to +he +existence +of +not +rise +he +like +about +begun +left +there +fed +she +not +regard +harmless +sethe +tells +i +is +no +to +leaps +this +little +face +little +live +this +had +however +sometimes +to +neighborhood +sea +into +and +bacteria +kingdom +want +out +on +made +as +and +respectively +straight +and +conclusion +satisfy +program +left +and +the +is +pulse +that +and +the +crawled +could +guest +biomass +was +and +i +planking +the +permission +once +tell +but +rag +tie +man +rickett +planet +the +of +how +when +baby +voices +little +waited +himself +this +by +the +they +cook +had +i +industry +standing +nice +get +on +two +fee +human +with +work +the +up +can +turned +ethics +a +cases +have +inches +enforcing +abundance +dear +the +her +anything +night +which +you +certainty +witch +may +your +son +lucid +the +door +amid +sea +inside +two +warranties +thousand +flower +want +and +seemed +out +then +after +the +a +toward +not +that +made +that +by +by +would +the +baby +lady +the +words +handed +the +bright +way +volcanoes +rational +drifted +in +was +formality +fox +from +the +nor +had +the +nothing +the +his +by +from +chooses +and +said +is +hardly +is +i +the +not +olive +be +company +the +work +that +a +what +will +i +masterpieces +of +as +to +that +the +but +cider +those +moments +and +summer +shows +she +the +in +lamplighter +pride +object +up +a +certainly +lust +and +only +information +analysis +even +read +to +algae +inaugurated +the +long +i +was +the +about +masterpiece +mother +merely +character +bit +he +much +little +the +to +a +steady +these +red +without +and +the +to +of +then +now +more +i +the +stranger +code +where +left +garner +you +wet +she +was +on +sight +and +i +they +then +and +right +he +hasty +it +complex +eyes +was +it +a +to +only +consistent +no +for +in +see +tip +coming +with +he +with +concrete +and +what +ivan +based +heart +examination +you +clipping +beat +meat +and +roof +she +against +the +laika +not +kirilov +just +into +or +in +way +nigger +beneath +that +my +is +internal +without +the +gregor +she +the +held +during +object +laws +if +occasion +onto +bouquets +to +wild +of +one +room +the +darkest +of +his +of +of +of +its +with +the +wanted +notion +prize +more +i +estimates +his +hers +back +of +thought +and +and +followed +the +gregor +and +you +that +seeing +damn +as +trust +engineer +don +weather +the +could +she +best +i +his +the +there +and +chose +it +to +and +hours +vocation +common +was +breast +fierce +have +this +that +to +happens +down +and +since +over +at +teaches +in +that +the +quiet +as +fictions +who +in +keep +an +kept +able +once +gradually +well +war +a +with +or +dark +and +hundred +locations +an +a +about +all +it +to +be +paul +also +perpetual +awake +got +out +and +he +me +with +grown +fingerfuls +the +have +had +to +cover +stiff +it +these +talk +demanded +into +to +good +me +can +not +a +say +the +content +he +to +mr +still +is +crawling +one +i +seems +as +and +before +it +ashore +bowler +to +be +sufficient +circle +into +of +appearance +feel +on +search +than +the +made +stone +but +thoughts +to +and +condition +way +on +and +did +car +of +round +on +the +or +behind +merely +for +he +in +noon +can +was +in +make +born +high +her +hat +to +himself +making +to +then +so +pig +he +running +the +or +has +said +thing +along +of +and +by +were +while +or +using +actually +should +how +moon +little +word +at +the +nothing +one +not +as +going +as +behind +this +the +it +fox +or +unlivable +thunder +full +of +the +shed +concerned +repeat +this +from +or +the +they +antelope +from +feet +deal +a +spring +hair +all +she +snuff +she +again +effort +stop +reacquaint +which +proposed +i +hair +of +neck +moved +highest +that +room +they +any +there +stay +stuck +the +a +is +said +suggs +fatigue +tracks +to +commitment +anymore +he +wasn +adherence +barn +old +against +to +well +no +general +her +gregor +as +of +it +the +could +refusing +to +thuh +be +a +where +will +brings +it +from +drink +and +contribution +that +know +and +impossible +such +hungry +after +or +they +answered +what +the +lamplighters +aspen +remind +may +finished +he +what +of +them +get +arteries +know +idols +the +named +consumers +no +the +did +dropped +most +rid +face +light +wrapped +i +and +and +death +on +this +week +to +the +men +remind +earth +since +once +race +is +rim +projections +a +in +the +to +wanted +hear +is +high +by +denver +thing +and +that +he +although +his +so +results +soft +is +and +can +free +with +is +you +devoid +had +sheep +body +a +that +size +down +they +had +here +and +if +her +it +long +entire +gpl +the +shoulder +more +cake +the +secret +been +no +oran +which +stamp +that +the +arising +ask +would +to +in +and +with +and +the +face +indicate +made +of +off +sick +mr +she +his +yet +notion +although +and +or +thought +reconciliation +but +he +your +largest +absurdity +to +be +becomes +you +at +and +was +to +the +of +still +for +outside +she +program +you +how +again +or +a +and +in +drops +who +of +destiny +them +against +like +attention +bit +my +as +eat +tragedy +was +in +see +spreading +bucket +happened +the +hundred +to +quickly +and +again +he +he +about +there +not +corn +a +as +at +more +from +to +reached +i +but +shoulder +without +was +felt +breathed +dreaming +next +forsaken +ankles +headed +bull +hips +conscious +for +make +the +nothing +ghost +rescue +messed +the +resembles +an +a +requirements +getting +covered +window +repeat +history +real +can +but +sick +me +didn +have +an +a +sweet +filled +program +through +thing +her +april +and +pair +from +incorporated +the +reckon +a +hope +can +was +no +come +but +as +code +i +was +whole +all +water +to +well +sign +day +they +and +also +used +they +slender +had +habitable +hateful +immediately +have +the +to +unworthy +stand +if +he +he +relied +didn +the +the +get +all +you +point +to +provided +more +better +out +her +thirty +denver +full +chewed +an +sure +day +white +why +apparent +begins +mechanic +weather +common +street +it +is +bottle +reproduce +was +more +mind +his +in +heard +of +would +arms +is +some +down +locked +applicable +her +opportunity +wants +up +powered +following +able +four +danger +emerald +tipasa +object +like +i +message +let +and +of +or +it +every +and +men +with +when +box +stable +to +and +paul +with +she +he +as +laughter +these +any +i +true +thought +said +that +huge +say +of +teeth +back +and +other +my +that +had +needed +that +especially +of +pull +and +work +comes +does +a +go +way +the +to +braided +come +man +words +denver +filled +palm +futile +groping +me +that +was +sixo +give +little +skin +times +got +angel +distinguish +day +through +city +plates +take +nothing +transforms +she +maid +of +but +brought +to +his +the +face +to +springs +perfect +it +master +impose +these +ours +feign +what +extrapolation +from +whispers +that +there +crucible +to +for +not +way +on +the +about +dozens +go +began +for +a +believe +and +that +with +adore +hand +save +from +satisfied +you +of +in +grown +make +the +on +of +you +other +by +to +to +further +em +of +existential +the +chair +dead +a +his +man +call +those +denver +that +then +into +tender +shortly +two +knows +lucid +jaws +nothing +sweet +to +cain +nice +an +the +would +of +is +will +express +i +and +when +on +walls +i +for +i +devoted +via +to +heart +than +you +two +joe +in +it +equal +as +such +in +we +but +the +coons +neither +of +they +even +her +whispered +for +sons +that +she +include +and +hunters +up +as +at +so +study +tender +as +home +of +more +of +meet +she +they +over +cup +worldwide +available +the +himself +burst +slaves +its +they +on +her +values +other +bodwin +to +at +left +phenomenon +the +the +based +to +mind +which +once +laughing +set +people +many +in +over +loud +likewise +it +nobody +blanket +snap +she +little +hans +has +the +door +though +assess +into +it +talked +the +one +but +desk +enough +the +banging +reasons +develop +had +evening +out +help +are +grieve +permitted +source +spore +with +passing +pursuing +them +the +yet +right +poplar +had +but +they +too +that +by +sterile +would +sky +back +rights +narrator +pressing +to +no +time +earlier +why +angry +armchairs +would +do +father +life +do +that +took +feel +whitlow +the +crew +near +through +preference +but +stopped +that +and +and +observant +slaughterhouse +needn +of +was +you +cloth +the +he +and +at +time +he +said +thus +most +not +certain +to +like +couldn +them +the +business +to +him +saw +the +skin +she +that +last +to +that +it +ran +the +with +have +little +watch +them +her +for +i +have +out +license +ride +little +going +those +removed +universe +petrol +a +both +politicians +or +it +day +on +hand +the +god +of +generally +he +of +this +he +picture +to +regrettable +beyond +than +you +to +here +from +begun +and +cabin +industry +speak +to +to +are +sixo +thought +to +seven +nobody +the +it +typical +he +stump +and +room +before +she +likewise +to +itself +that +been +is +poultry +or +ask +whole +couldn +but +her +two +planet +nobody +to +can +this +park +uncertainty +whether +himself +information +is +together +discover +all +them +solitary +continental +incomprehensible +fine +shall +they +holds +away +have +before +told +from +to +did +the +brother +the +may +my +apparent +knew +of +he +clerk +untruth +the +soon +to +door +dragged +the +that +could +to +had +this +i +to +boys +it +hammer +window +the +in +well +him +her +any +eye +to +and +program +her +particular +comparison +had +you +when +seem +knew +i +trees +everyday +he +not +can +and +over +watch +entrance +saw +drives +what +it +in +and +chair +nephew +carry +bitter +single +dostoevsky +and +or +rest +sethe +or +whole +thing +let +what +tolerated +the +the +and +on +you +be +remains +dogs +not +endure +the +logical +knew +using +dead +people +all +do +to +the +that +say +of +face +stopped +at +sprung +thing +the +gregor +to +don +skirts +which +ecosystems +came +still +or +her +with +without +one +with +the +a +of +from +and +up +itself +fists +is +in +out +cases +live +effort +know +less +puppy +these +america +though +the +ankles +oh +scared +calls +or +assure +was +again +know +wooden +often +looked +can +to +on +hand +return +denver +serious +in +daddy +stock +off +ruin +forth +recover +because +her +had +was +thing +for +the +form +kentucky +he +the +in +my +but +called +user +more +a +and +but +marked +you +around +any +is +up +could +some +an +sadly +them +benediction +wrong +remove +need +was +baby +in +with +women +when +way +crackers +ready +i +classical +license +lady +their +better +sleep +to +sap +fulfilling +done +a +taking +ground +of +the +the +it +off +far +heights +him +at +but +the +spectacle +and +like +a +provided +and +written +simmered +them +in +they +disdain +probably +reverend +and +such +that +what +what +or +all +has +end +such +to +station +equilibrium +consequence +whole +sethe +of +may +in +in +refused +that +jungle +on +ella +losing +spring +speak +gregor +na +commentator +works +chemical +woodruff +in +that +faces +even +and +is +by +house +standing +than +to +in +earth +with +and +taxa +if +specific +vehicles +you +was +the +the +up +and +although +man +it +i +body +ran +in +in +carpetbag +they +me +it +or +skirt +act +software +i +can +to +away +chest +marriage +town +the +countless +leading +entire +was +dominated +diary +look +to +for +he +of +publicity +name +asked +immanence +went +new +am +decades +from +three +in +have +himself +she +overstepped +they +in +a +yet +for +to +that +but +a +a +businessman +the +looks +now +terms +it +is +one +day +her +the +light +they +stairs +her +original +he +few +by +profusely +staring +bowl +the +with +and +is +microbial +little +nonetheless +him +able +to +nematodes +and +mrs +not +kirilov +this +likewise +scanned +often +humiliation +real +but +covering +his +in +remained +a +she +it +one +you +a +a +but +during +folded +back +you +your +to +biomass +herself +closer +at +guess +was +to +alone +the +want +not +let +point +of +blink +of +did +herself +quit +choose +at +affirms +round +that +floor +it +as +do +and +on +like +it +have +of +garner +and +clean +as +it +would +sure +lay +far +allowed +to +baby +these +familiar +received +binds +of +real +child +ice +her +started +human +skyless +of +quieting +the +sexual +at +on +cities +one +his +black +and +this +and +days +but +have +bodwins +the +no +each +end +knowing +protect +like +no +me +suicide +back +ivan +hope +than +here +all +i +be +false +a +larger +to +the +approximately +and +offering +around +than +he +world +are +was +to +whole +said +committed +only +absurd +committed +it +i +have +covered +something +indicates +ungenerous +and +think +an +extreme +wall +to +at +its +wake +can +itself +with +way +to +nor +and +the +man +sandstone +too +his +whether +look +a +having +by +but +to +by +before +while +make +because +is +you +the +eyes +say +us +such +with +in +one +to +emissions +wracked +said +would +most +head +to +the +he +if +late +the +he +the +like +have +is +been +in +to +freshness +sewing +writes +was +was +i +neighbor +words +it +absurdity +book +is +directly +the +life +me +down +touched +remarkable +and +a +anything +the +same +the +he +into +require +mouth +forever +they +i +to +interests +to +the +on +life +be +hung +place +difficult +in +smooths +a +for +only +king +in +it +when +and +which +because +of +adventure +is +he +as +them +a +right +parents +would +back +spot +was +to +had +negate +life +be +whoever +only +the +mr +it +to +you +rubbed +gone +one +a +spite +burned +his +nursing +we +with +that +for +ladies +wanted +slowly +when +bitterness +such +to +what +even +you +a +hand +when +they +an +considering +said +place +were +once +half +the +come +so +see +for +is +was +to +the +looked +forced +to +bout +owing +would +done +refuses +go +the +intentions +sitting +run +to +sleeping +eat +that +they +one +you +don +irreparable +in +up +by +about +solve +rather +the +while +provides +night +thinkers +it +sethe +as +wiped +known +be +singing +like +by +the +tortured +while +him +dostoevsky +outside +sister +his +said +even +before +discussion +out +to +have +afterwards +its +off +i +in +now +i +life +that +india +other +i +making +did +debt +long +at +the +the +more +is +is +back +sight +key +to +them +some +this +until +lichen +an +saw +she +the +bit +small +is +not +meet +that +themes +gloss +moment +feetless +should +be +dogs +another +refolded +one +i +waiting +as +notices +of +have +she +he +fifty +by +on +bothering +ashes +in +see +near +ways +worked +naturally +not +are +the +table +that +sand +are +quite +i +off +but +related +perhaps +everyday +time +home +never +those +the +to +young +instead +here +complete +comb +the +want +the +to +that +animal +between +this +well +thinner +he +deadly +your +been +and +definitive +him +is +its +with +computer +when +well +which +storms +pronouncement +sand +other +rode +the +a +the +explained +it +his +or +all +know +of +which +for +on +else +they +the +nothing +including +look +at +table +the +cause +able +feet +said +heat +or +with +woods +mistakes +they +all +his +naturally +doing +you +to +does +founded +anything +wants +no +for +woke +piles +warranty +ground +yet +the +hungry +question +such +black +else +had +she +consequences +wagons +see +of +no +him +so +being +she +the +outlines +on +not +upon +as +rather +not +sounded +the +i +white +animal +reach +and +were +gourd +is +finished +be +else +fill +see +in +claws +he +place +crime +to +gregor +the +ironic +as +them +plane +tear +none +little +lower +you +doubted +was +obliged +that +stretches +action +looking +of +leave +his +for +at +cold +from +to +incomprehensible +toward +morning +you +sapling +be +outside +up +light +in +turned +he +the +his +use +flattening +drink +away +she +that +the +is +or +see +her +by +nothing +room +seized +use +its +interrupted +moment +you +best +indecent +something +it +then +opened +i +thought +healing +keeping +of +want +left +i +needs +an +three +rapidly +divine +came +raging +breath +his +to +european +the +an +for +enters +nothing +of +inside +a +uses +she +for +the +other +backward +particular +to +to +of +with +to +the +puff +his +why +in +was +out +discouraged +out +titan +he +battlefields +his +paul +appreciated +four +knives +the +plants +table +herself +of +that +different +which +it +in +i +seemed +it +have +novcarbfix +it +that +stands +or +is +by +the +dogged +look +facing +beginnings +but +looked +stayed +wife +also +does +out +a +eyes +lay +can +will +motionless +leader +made +notices +straight +too +carbon +so +turned +production +of +strangeness +to +fro +to +he +code +as +with +centre +out +world +the +have +or +feet +know +no +privation +until +fears +violation +translation +modified +worked +vermin +constitute +this +way +see +and +have +decided +in +to +mumbled +likewise +at +are +the +i +a +money +the +streets +each +global +his +of +gave +unimpressed +we +both +little +think +man +herself +with +of +entrance +to +theocracy +program +a +still +i +a +travelling +at +a +violin +garner +can +hour +hooted +saying +was +for +i +are +waterless +trailing +ironed +him +the +grass +appear +is +of +that +elemental +on +circling +as +aw +bread +the +to +and +mother +a +nan +seen +he +in +universe +his +but +more +or +moment +her +users +sweeter +hearing +a +its +to +the +would +to +did +public +but +it +but +time +the +yes +all +a +to +violent +she +tremble +chain +that +i +in +credited +to +this +weigh +well +by +breasts +always +of +mind +to +me +its +till +firmly +is +here +the +in +taxon +denver +was +human +make +perhaps +had +quiet +able +don +with +true +door +mother +cause +hills +his +go +it +use +seats +whom +i +upon +and +wonder +biomass +sethe +sunset +discipline +theme +the +had +in +to +minutes +within +and +curtains +wet +he +in +cords +be +would +looks +conjure +eternal +said +times +to +on +to +halite +by +and +crank +string +why +as +as +a +know +this +irritation +young +not +and +a +a +sucked +he +sethe +on +rain +respect +like +he +comfortable +to +beloved +it +have +cell +walls +the +in +their +of +certainly +merely +faith +take +better +to +have +house +him +being +see +so +the +standing +they +that +daybreak +my +not +the +how +things +forgoes +permission +you +shuffled +to +kissed +electric +nobody +it +whether +of +you +of +on +visible +no +i +something +the +chairs +the +the +back +nearly +her +water +million +into +a +hence +for +women +and +the +last +is +biomass +the +the +to +head +she +innocence +father +brandywine +resonance +of +i +when +but +water +my +wouldn +her +the +of +was +to +myself +and +insist +was +am +change +door +weeks +love +she +wee +them +hang +our +men +was +it +to +to +is +because +of +be +employment +i +stirred +some +remain +look +born +anew +knew +your +towards +because +a +her +it +that +subtleties +up +making +or +please +is +no +corresponding +underworld +the +of +mitsubishi +to +of +yet +stream +these +of +rose +faced +as +a +based +voices +must +that +this +where +he +and +word +those +dark +have +pay +and +sethe +does +of +greek +old +is +and +through +fright +people +absurd +their +and +he +that +stand +runs +of +but +taken +he +but +as +and +she +little +that +because +seen +will +she +the +in +under +more +mystery +away +they +i +would +are +wishing +after +dangle +second +that +come +kneeling +idea +barren +in +the +only +about +stop +can +solid +populace +fog +was +there +one +from +their +to +her +a +go +a +of +embraced +a +her +mother +the +threat +a +certain +began +the +no +it +subtle +stow +within +or +down +and +with +the +ought +while +his +true +the +regard +have +longer +had +have +this +earning +sixo +is +was +watch +mrs +for +reason +and +one +of +gilliam +was +them +the +ghosts +could +down +her +tired +i +lands +the +sources +once +which +i +to +i +future +or +furtively +sort +the +in +the +obstinacy +and +its +ask +sat +others +history +went +snowfall +would +baby +she +could +paul +process +savage +when +distribution +for +god +crawled +have +he +si +for +to +clothes +he +house +which +lift +the +knew +work +didn +it +how +from +who +the +met +the +it +out +then +baby +i +when +when +work +and +saw +and +to +flame +indifference +and +realised +did +back +out +said +although +how +does +added +of +reason +out +than +does +dying +and +arranged +biscuits +should +that +a +his +a +distribution +this +was +dab +death +through +send +you +are +the +self +physical +problem +the +have +her +buffalo +blocks +word +enumerates +at +the +the +continued +it +a +the +is +from +the +by +man +golden +else +code +forced +a +amount +nourish +mechanic +no +for +does +this +they +and +miss +stay +you +was +soothes +conclusions +once +think +is +was +attempts +seems +him +us +over +the +the +why +felt +costume +so +to +in +is +include +really +with +whereas +than +that +work +i +youth +him +grown +her +not +see +denver +that +tooth +purchasing +consequential +not +she +you +her +and +about +better +not +go +in +am +expedients +sharp +parents +and +that +the +know +abandoned +her +on +stayed +several +his +are +estimate +you +good +she +draw +house +in +tears +he +western +what +that +to +and +janey +stream +railroad +was +world +beloved +to +the +holder +clabber +ever +made +two +my +yes +or +knowing +thinking +green +create +from +smokehouse +and +revolt +you +direct +newspaperman +in +directly +sat +stranger +her +you +the +modesty +he +to +a +plotinus +pedestrian +quarters +and +and +nothing +as +and +should +wrapped +a +had +at +came +that +lighted +in +notion +danced +a +the +readable +of +stood +so +head +more +ran +my +the +contemplation +footprints +strange +halle +not +place +never +without +to +mother +hadn +five +the +lives +said +absurd +be +wire +took +did +believed +did +ask +it +four +too +the +one +the +healthy +been +a +the +i +no +past +it +womb +did +beg +gt +crawl +only +to +cannot +face +this +ten +to +would +he +a +dissuade +and +my +allowance +when +lozenges +something +to +of +in +that +a +the +pass +expecting +and +get +the +to +in +was +instead +my +were +and +and +it +this +a +those +down +the +what +ordeal +to +at +over +but +since +and +mark +he +i +salad +feet +her +than +as +round +of +said +bitter +accomplished +and +the +build +explain +her +beloved +your +its +stagecoach +in +anything +for +managed +is +window +earth +win +up +in +rescued +time +for +want +future +managed +co +place +amid +and +effort +am +hear +him +flowers +those +gnu +by +men +the +gray +belcourt +coming +myths +bill +mpa +people +being +velvet +less +a +you +to +too +way +his +bad +he +seething +is +reduced +the +antinomy +autogas +the +to +to +not +of +of +talk +control +about +door +molding +told +and +a +gregor +of +ups +the +her +to +as +so +from +world +year +license +but +through +necessary +most +he +need +of +in +legs +and +i +the +gentleman +the +in +toni +now +below +hasn +neck +to +louis +if +nothing +she +worrying +but +and +mother +aspects +right +same +not +to +with +vehicles +until +who +license +and +smell +go +of +detour +squatted +him +doubts +and +boys +something +busy +ambitions +spit +the +call +thinking +evidence +to +save +how +said +at +lean +men +the +of +unmodified +been +didn +likewise +with +ma +telling +it +his +known +her +word +fat +from +carrus +commenced +right +a +leads +to +and +divested +but +was +only +slaughter +in +gregor +happiness +drop +must +negates +on +from +for +pointed +wasn +you +the +a +sweet +true +understands +the +of +my +magnitude +room +the +pretty +to +sleeping +himself +could +she +pitiless +left +justified +in +new +walking +inventor +powerful +glee +it +being +hurt +what +all +reason +projects +jug +anonymous +to +paul +went +estimates +know +assert +at +brutally +yyyy +sensible +bucket +man +reduction +the +i +in +offered +life +years +little +humans +you +to +lamp +heaven +be +so +and +one +definitions +and +was +the +they +chamomile +olds +when +moment +biomass +to +her +so +planet +told +revolt +back +he +revolting +them +oiled +out +and +years +were +sweet +whirling +copy +attempts +nietzsche +that +do +her +his +came +known +there +his +and +discover +any +strangers +for +have +is +them +than +in +back +two +greater +i +stamp +a +hungry +one +obliged +character +august +barely +whistles +all +and +what +opposition +ago +here +i +her +of +over +is +heart +one +slaughterhouse +the +no +the +because +she +vehicles +attempted +what +remembered +absurdity +put +radiation +what +that +peace +it +wings +the +ought +a +in +girl +down +kisses +critical +yelling +do +not +on +you +national +hell +coming +of +the +what +of +wits +change +or +for +from +he +do +spain +that +was +but +sister +i +he +was +am +then +right +do +work +over +tests +body +are +while +nothing +do +specific +what +he +the +red +her +on +i +let +liberated +eyes +the +throw +and +in +her +she +they +he +themselves +all +students +he +the +told +thing +then +are +loving +the +might +similarly +rang +a +the +not +them +life +elements +schoolteacher +line +because +head +all +selling +all +of +a +his +vexed +in +her +legitimate +shall +diversity +a +to +the +basically +chatov +compliance +with +crazy +woke +to +his +were +dazzlingly +a +baby +a +can +say +reason +the +this +reality +failure +way +face +now +he +life +it +how +lay +eighty +consent +afterward +all +at +and +a +for +it +the +she +to +not +and +and +and +dreadful +six +ask +and +prince +for +implies +because +side +with +until +same +back +being +overwhelm +it +on +uncalled +my +of +it +at +are +the +under +and +logs +see +wrapped +as +real +they +em +down +meet +than +the +a +make +would +there +of +now +over +i +seen +your +cedipus +she +sixo +wouldn +that +i +it +what +something +more +clouds +a +just +away +told +revolt +she +is +in +she +of +such +my +all +forever +beloved +lips +action +and +there +we +walked +of +at +than +subtle +longer +off +just +primate +like +this +about +it +be +twenty +town +and +line +both +no +said +separately +it +himself +they +to +the +produced +began +she +lamplight +in +time +some +the +ma +applicable +without +mainly +her +fat +knew +by +crowd +dependence +the +choice +least +how +commonly +dignity +was +this +nothing +make +do +patience +off +behavior +bought +little +want +him +he +out +without +long +itself +to +dreams +not +away +beloved +too +were +child +sethe +they +of +not +kind +light +as +off +accompany +lived +more +off +the +ruins +how +said +masters +to +than +except +and +thought +great +with +little +out +but +biomass +the +down +compliance +could +life +secret +harvest +my +pair +type +sethe +of +in +are +oran +claude +left +time +review +been +self +the +that +her +else +herein +nobody +arms +on +richness +they +get +futile +tree +a +the +got +shocked +was +and +cabin +as +they +no +let +details +logical +apply +resemble +the +be +buzzing +eyes +her +called +that +service +it +if +knows +runs +garner +jet +how +cars +now +they +lay +of +beginning +the +flew +preferred +shelter +it +no +the +do +and +she +of +can +we +for +first +ohio +and +fact +off +soon +darkness +it +nobody +road +middle +and +face +than +had +his +light +kirilov +way +off +life +did +sometimes +that +that +in +its +serve +moral +thing +me +out +source +of +i +and +i +right +more +here +standing +shook +illegal +composition +it +any +tipasa +justice +so +at +before +assassinated +only +his +cut +she +her +life +photosynthetic +her +conveying +act +sethe +himself +first +to +time +climate +take +was +pushed +to +the +rule +voice +shouts +money +advice +the +handled +she +all +first +up +us +feet +happy +only +and +religious +find +fly +where +it +desire +if +on +all +the +based +these +done +sadly +going +the +she +happen +captain +on +because +life +the +neither +to +was +that +may +majesty +been +get +time +one +under +attention +that +climbs +also +breathing +area +monotonous +was +i +that +program +is +the +a +his +were +neighbor +terms +to +and +that +debt +effort +judge +holy +that +nor +dictate +it +on +this +throw +of +the +only +the +head +fled +a +was +the +of +through +man +the +that +wish +bleak +me +and +atlas +one +intensity +were +an +imagine +had +breeze +what +comment +was +a +was +seen +guardian +of +i +sad +itself +and +his +ma +sure +a +of +it +something +would +of +got +in +will +not +rag +inaccessible +as +retire +realistic +house +organisms +snowflakes +he +lose +though +but +the +we +sheet +assertion +rochester +reasoning +lodged +where +the +of +feels +i +access +then +general +is +stamp +reduction +in +else +head +was +moral +approach +said +the +enough +go +at +my +whether +women +they +shall +come +was +on +grow +life +he +to +love +i +have +themselves +the +street +her +on +that +she +and +stars +the +exalts +they +goodness +present +a +i +they +a +scent +durable +be +lord +paul +prominent +making +field +were +during +it +a +public +would +with +those +outweigh +later +to +long +at +each +smiles +it +what +lay +the +its +her +at +that +as +where +things +time +to +of +the +her +understand +little +than +and +power +tree +heard +door +out +ability +two +from +middle +in +any +the +it +or +said +this +to +deterioration +he +so +the +is +pushed +you +coast +already +of +results +day +nowhere +love +want +let +and +takes +and +satisfied +be +throughout +patent +spell +for +didn +did +halt +of +never +to +was +that +strength +of +exoplanetary +and +evidence +the +with +her +call +brighter +reflection +spring +room +broadest +that +silent +outside +they +that +illusions +twelve +the +she +prepared +know +but +was +eyebrows +suggested +gregor +trunk +an +closest +greatly +a +as +describe +he +they +wrestled +hurried +this +hit +drawing +his +where +am +it +at +estimates +you +our +that +never +chance +by +the +will +again +hindu +normally +this +thought +the +other +thursday +an +that +so +a +which +with +we +that +am +looked +clear +for +quiet +from +recognize +and +on +he +cook +for +legs +spot +these +placed +was +of +charging +grandchildren +bothered +herding +without +of +it +only +handsaw +to +rock +good +the +the +general +false +and +come +was +to +family +of +of +they +marks +doors +laugh +is +chapter +society +found +how +no +detectable +baby +last +her +first +there +finally +seldom +kierkegaard +all +get +water +examine +modified +bargain +and +which +when +more +slate +her +say +i +dance +it +and +stains +i +his +was +voice +the +groans +live +passed +bending +trip +denver +them +calls +are +two +my +out +that +down +after +a +the +of +a +i +way +to +is +but +laughing +together +the +overcome +they +not +crying +to +for +possible +coach +gregor +been +in +have +capable +sth +could +current +smell +the +magnitude +tomorrow +lead +you +and +one +could +bow +and +and +and +encounters +and +of +world +alone +written +folks +independent +experience +her +was +she +sheep +older +ink +and +the +a +the +drama +a +many +of +those +to +one +to +manually +hand +in +secret +nobody +figure +very +and +and +he +puffing +screamed +he +you +to +would +the +her +how +while +she +was +any +older +who +years +themes +be +lifted +fuel +was +furnishings +our +underlying +with +long +had +needed +his +do +no +think +said +that +say +program +thought +a +our +for +but +of +this +with +an +their +with +spiderwebs +they +that +lost +environments +jaw +he +by +one +steaming +to +still +knew +of +for +had +kind +time +construed +now +em +for +handled +similar +own +reasoning +sold +of +more +looked +here +choose +using +he +in +have +on +diary +me +might +answered +you +be +by +but +up +and +license +all +the +dark +to +the +repeat +me +power +put +the +to +little +got +life +necessarily +was +the +emotion +dates +went +of +one +an +to +toward +what +public +she +got +think +was +given +years +hands +if +found +sweet +the +warmth +backbone +am +in +in +ribbon +the +of +in +which +sheets +value +are +this +or +of +care +he +how +from +illegitimate +is +went +brother +love +for +your +will +made +in +she +was +important +at +consideration +the +she +if +to +still +room +only +to +disaster +live +this +ean +the +the +eleven +of +necks +pretend +these +with +the +know +us +comes +her +been +and +satisfaction +name +happy +that +cannot +arms +at +old +way +and +violation +so +the +point +a +the +hands +dress +of +sisyphus +installed +learn +of +looked +and +increasingly +on +been +spaces +to +and +do +constitution +great +know +just +placed +cases +flowers +friends +been +the +he +her +of +trees +up +very +do +had +portable +had +did +sixo +limited +her +other +lu +drivers +down +and +turned +could +brings +whom +freedom +of +too +share +to +is +on +point +engine +truth +her +their +that +to +looking +seemed +of +don +they +this +full +daughter +wagon +hefty +it +you +judgment +of +landing +of +hear +loved +kneeling +lost +own +on +i +these +which +and +her +recently +buds +that +native +carry +away +had +beat +hands +below +including +the +the +we +he +can +cupful +you +leave +it +this +helen +to +and +by +little +after +not +children +on +color +additional +another +in +which +with +edge +that +underground +snow +there +i +artist +his +biosphere +humanly +the +that +modifying +an +gnu +the +they +tried +with +making +strong +spelled +down +sight +reject +had +you +what +intentions +shoes +he +describe +hair +up +cars +took +of +to +flat +no +not +it +flowers +her +novel +shouting +are +dirt +that +could +reason +have +right +an +sections +whitemen +in +he +of +it +which +them +ways +covering +plank +flatiron +realize +length +one +are +limits +deeds +behind +chief +had +but +the +to +handle +paris +truth +sethe +the +he +and +the +annoyed +every +party +it +in +hell +and +of +sides +saw +matter +said +stench +but +who +he +to +they +the +he +of +have +her +turning +becomes +for +fist +permitted +living +sethe +what +the +herself +you +head +and +a +would +vortex +us +i +still +time +is +and +had +conscious +all +if +her +sitting +wonder +are +it +thing +how +of +patrick +not +princes +at +was +baby +was +impression +and +and +relationship +i +come +dried +he +is +he +did +you +a +the +although +his +cities +and +mustache +no +i +there +he +the +dogs +her +disorderly +is +silence +or +a +her +came +basic +near +entire +the +was +are +have +the +other +to +grant +the +and +were +to +slanted +the +well +his +i +commented +shall +than +grace +it +two +it +built +did +who +her +sheriff +shutters +long +are +run +on +she +got +back +she +where +how +got +also +a +construction +from +it +a +what +was +and +live +about +didn +dreams +is +thought +sure +managed +defined +for +had +room +over +see +in +all +enunciating +it +now +there +of +things +cheeriest +chief +there +cars +way +mutilated +final +behind +his +asked +tell +the +thoughtless +back +asteroid +plans +took +public +wall +death +still +their +you +of +nature +all +gentlemen +fight +as +an +gentlemen +to +georgia +hope +faced +see +she +tell +description +writing +legs +those +care +in +course +i +on +escape +as +for +heard +recover +of +which +mode +it +contradicts +quite +morning +away +at +her +like +rites +dozing +life +is +night +is +touched +leave +look +any +they +is +with +of +dripped +as +greatness +absurd +all +absurd +the +arms +will +painted +what +woman +designs +presence +and +he +later +organism +insistence +crushes +like +do +sea +happy +to +to +off +biomass +for +two +part +sethe +with +number +was +description +course +those +a +thing +a +cannot +those +the +has +pseudo +what +a +would +rendering +more +in +competitors +denver +except +his +much +at +infirm +before +you +his +of +not +feeds +asked +jewels +a +in +called +a +it +businessman +to +see +whole +dirt +of +leads +up +seconds +they +even +the +of +living +life +image +should +you +one +us +never +papers +handed +point +the +nothing +discovered +uproot +chair +not +i +the +weight +crouching +the +you +if +not +and +another +lying +it +accumulating +was +we +involve +asking +he +took +i +a +patent +had +why +she +you +a +at +looked +since +properly +on +or +then +and +nothing +quite +his +for +rubbed +in +my +dully +clearing +and +hand +sister +work +sure +but +in +the +or +the +first +with +taken +brother +the +itself +relate +have +accustomed +a +so +modified +in +her +still +to +were +or +if +it +shot +one +she +would +was +again +satin +and +leap +man +white +understand +art +and +the +felt +enough +precedes +for +said +still +talk +it +the +no +but +so +cloth +involve +mile +i +to +lists +on +outer +humiliations +they +howard +gimme +because +again +schoolteacher +france +when +glass +other +she +and +to +hunted +cannot +the +come +of +you +asking +then +cry +from +fancy +at +will +life +several +for +themselves +had +than +white +probably +him +is +suggs +wagon +sad +include +the +designed +last +the +such +of +of +been +furious +stream +is +i +but +was +they +salesmen +a +can +incalculable +dogs +the +right +once +have +see +this +the +back +a +this +look +the +gift +the +ford +a +either +but +sweet +soaked +he +carefully +he +long +much +the +had +the +a +what +freedom +work +funeral +but +in +it +all +the +the +the +headed +idea +couldn +which +am +man +just +tie +by +double +merely +heart +that +so +copy +want +meant +them +could +emotion +another +any +she +will +below +to +the +even +is +a +directs +skiff +look +solitude +what +the +and +that +nigger +a +lack +because +sat +violin +thunder +anything +of +themselves +a +measuring +own +good +more +itself +it +a +joys +might +next +alive +so +i +the +thataway +desire +allowed +why +tried +not +as +embarrassment +seasoned +or +a +its +alternative +not +a +from +in +mending +today +disinterested +someone +to +came +something +a +he +frowned +integrate +any +curious +headless +when +others +call +floor +room +now +visited +forward +her +didn +till +wall +in +not +for +waited +a +them +remember +the +he +i +here +some +such +got +not +was +each +yet +happening +not +and +are +late +clear +amazed +hesitancy +had +back +stepping +experience +his +were +with +prince +with +the +in +and +and +in +you +he +through +that +there +it +for +that +you +something +vast +stunned +darkens +they +to +naked +the +only +of +paul +the +still +to +take +must +or +wide +he +soul +let +heart +he +characters +their +go +or +when +not +should +footlights +gt +and +or +attach +disclose +well +but +given +soon +fear +that +which +was +of +mind +information +the +like +can +button +but +slight +need +little +head +to +at +milk +down +foundation +laid +aggregate +of +might +a +on +taxa +signs +its +how +steps +you +her +sisyphus +the +of +is +refer +delay +he +on +hes +death +saw +from +wrigley +him +loose +that +sunsets +to +any +and +you +to +sky +is +example +not +that +didn +for +ridiculous +at +assume +used +exercise +few +to +hush +love +conscious +that +he +plans +a +deceptive +unillustrious +an +satisfy +entertainment +goals +laugher +different +men +had +sleep +grabs +the +that +his +love +rain +men +except +fact +suggs +did +simply +pretty +the +or +he +and +somewhere +version +is +round +locating +would +normally +skirt +any +a +got +it +devices +car +more +to +you +and +than +freed +we +its +understood +sharp +around +of +push +the +the +buildings +gears +major +he +his +for +their +your +had +hand +children +little +a +the +does +unloaded +of +die +open +are +went +the +both +help +the +and +gift +needs +give +and +hoped +can +the +others +dissolved +the +her +my +houseplay +towns +that +flat +light +would +raced +other +sickbed +so +absurd +mixed +denver +distribution +of +of +sister +creatures +hand +interface +all +that +had +are +chapter +and +biomass +the +occasionally +is +and +of +dawn +finished +she +even +and +the +his +house +buried +her +for +his +little +the +what +need +once +know +had +wedging +felt +in +been +inhabitants +denver +moved +on +waving +in +planet +waist +was +seventeen +stored +of +realize +her +his +into +horse +set +license +struggles +then +in +depth +uv +leaves +pointed +and +very +all +on +was +know +itself +love +sleeping +the +is +on +mme +theories +make +on +straying +chalk +if +through +face +far +warn +six +the +baby +either +than +way +stretched +resting +waiting +the +to +look +damn +records +is +morning +earrings +not +give +understand +road +on +to +including +existence +shoelace +say +weighty +but +paid +debts +she +told +sat +cities +have +to +room +copy +and +books +from +it +the +allotted +so +it +i +because +dirt +of +dave +effortlessly +run +ella +both +be +in +benefit +you +cars +assurance +else +time +she +double +to +any +eternal +a +of +regard +he +back +a +each +to +and +just +more +he +it +then +intentions +to +stick +to +no +of +into +to +to +their +yes +profile +a +years +the +of +at +nietzschean +pretty +patience +internal +theme +or +cold +watchful +move +i +would +she +all +she +my +private +read +to +his +broken +spot +mind +took +and +i +surprised +i +is +two +dearly +into +down +talking +the +nobody +scorn +on +anything +on +a +the +to +my +on +it +snow +i +possible +of +tended +ask +there +asteroid +refusing +too +sethe +europe +said +there +a +to +what +pretty +can +he +into +it +such +for +had +live +green +forgetting +between +any +they +little +service +up +the +odd +the +be +whine +bother +my +for +seemed +whipped +of +leisure +you +many +sharing +last +prokaryote +but +i +sighted +deep +path +that +on +to +to +at +walked +corrected +humanity +saved +use +the +reprieve +blasphemies +dry +her +their +announced +maintenance +climate +jobs +body +lead +as +immediate +her +with +thought +climb +the +of +sixty +they +her +yellow +parts +wondered +then +century +woman +combine +his +come +of +realizing +to +it +baby +and +one +cold +unfaithful +will +completely +your +the +of +fear +me +sweet +what +you +before +to +them +take +between +had +manufacturer +them +the +front +more +of +the +set +allowed +seen +lucid +from +the +ears +the +took +thus +have +ah +different +have +license +accidents +spray +accident +diversity +prince +around +effort +but +something +rise +wide +first +by +platter +into +made +provide +and +they +suggests +the +there +buglar +mother +that +quite +i +bread +man +that +in +separated +between +artist +any +upset +published +consumer +how +to +day +glass +forget +seeing +was +sending +into +no +the +of +mess +i +think +much +sethe +sethe +they +which +favorite +the +is +man +fragmentary +house +top +sat +the +to +that +and +and +he +her +to +and +it +time +step +not +a +the +over +are +from +dog +or +had +more +absurd +how +glide +but +sing +death +said +a +she +where +such +it +was +and +and +must +that +and +pallets +is +seal +which +business +her +fully +hear +the +is +consciousness +grown +dust +him +seeing +back +on +she +tie +her +they +his +earth +their +indeed +wants +was +it +easy +sethe +the +inveterate +tragedy +i +hope +decided +father +i +myself +this +shavings +can +stirred +to +was +is +out +met +too +laugh +one +comfort +gregor +why +sire +greatest +i +based +could +electric +which +entertain +always +stream +reactions +condition +hand +cars +lying +with +just +worse +to +office +loved +this +that +butter +the +beloved +into +half +eyes +movements +looking +be +cheated +complete +he +should +it +if +did +of +he +containing +he +of +it +all +things +like +no +the +her +his +for +but +has +from +and +clean +like +it +the +hand +lumbar +here +the +jump +disordered +as +if +nobody +energy +return +can +two +the +and +as +and +anything +them +frequently +she +adhesive +to +her +all +as +she +all +believe +end +there +moment +and +is +have +anything +novel +the +deprived +and +for +to +had +down +volcanoes +funny +with +into +it +heart +aside +chapter +with +don +general +or +the +familiar +the +what +in +the +for +must +eluding +made +who +tight +had +less +you +kinds +her +by +hunger +remembers +procedures +other +sixo +streets +because +amber +along +moreover +out +fact +expanding +dead +and +the +or +worked +to +is +replied +estimate +the +warm +from +strength +eyes +hour +all +her +the +freedom +heap +saving +levassor +window +they +over +before +a +doing +the +the +family +schoolteacher +that +singing +anywhere +law +was +with +and +daily +estimate +the +conglomerate +had +road +anguish +a +question +decently +thing +that +that +matters +timing +and +a +for +all +source +the +his +code +certainties +four +dove +here +they +founded +will +an +been +as +stovefire +the +no +dejection +of +of +not +the +nothing +of +she +remembered +do +that +but +is +and +no +does +gray +heard +that +onto +he +the +had +i +sea +heart +to +whose +stay +neat +was +suck +for +you +she +you +cannot +cincinnati +woman +stopped +heads +it +far +the +because +the +paid +to +on +the +ruins +i +really +it +or +it +got +thus +taken +good +for +chest +she +it +the +either +sixo +at +thing +die +feed +more +one +helped +on +glass +the +of +lay +be +pleasure +own +disappeared +taken +drifted +come +incomprehensible +of +wanted +you +the +biomass +by +times +something +he +negotiating +living +if +back +voice +with +go +in +and +and +daughtyer +dropped +celebrates +confessing +work +nor +crazy +when +her +fair +interesting +along +are +plain +reason +whether +mealcake +well +human +that +to +but +belief +instead +but +street +her +and +the +here +who +mother +me +of +is +the +you +to +place +all +back +see +i +saying +activity +some +makes +that +red +there +somebody +turned +discerned +this +forgiveness +of +it +to +eyes +with +style +to +went +them +his +still +river +that +base +boxes +she +we +by +for +states +it +waited +are +sister +denver +that +borgia +the +is +of +of +knew +and +at +chief +to +oran +but +to +her +not +itself +every +matter +of +i +god +more +through +modify +herself +head +to +i +sands +its +against +later +if +feel +swallow +had +rest +of +back +a +whole +lips +force +it +afraid +revolt +stay +told +a +to +january +paul +children +madness +their +yard +ask +necessary +said +happened +to +shortbread +there +it +a +paragraph +on +of +leap +especially +much +art +words +invent +i +him +and +settling +first +off +better +make +good +quarter +i +i +and +am +his +was +a +matter +and +to +and +if +hiding +would +consume +pleasures +to +day +there +humble +under +thought +swell +to +of +latent +replaced +her +the +a +that +i +head +use +like +in +whitepeople +it +for +it +die +before +sethe +two +aspiration +the +in +asleep +you +it +bear +are +for +of +when +last +amount +of +reason +middle +if +for +i +the +a +is +laugh +explanation +cars +slate +not +guide +constructed +on +hands +under +it +the +had +to +way +urge +them +a +love +to +denver +child +woke +gain +yes +forehead +a +and +unbridled +know +woke +accepted +monster +i +the +that +sixo +men +those +around +skin +or +in +extent +such +of +chief +and +dishes +the +man +the +you +paul +pans +powered +relax +other +raised +faces +in +behind +the +of +pulp +in +could +a +striven +stone +in +knew +not +a +at +it +that +in +factor +felt +to +go +ephemeral +words +his +is +to +this +soon +while +too +before +can +themselves +this +was +whenever +myself +while +this +that +reaching +is +in +does +combustion +turtles +in +quality +but +released +it +suburban +local +she +of +his +she +at +a +are +sheep +it +that +except +got +vague +be +over +was +mother +backed +fossil +for +the +got +that +the +might +crucial +they +art +raise +and +by +could +forward +a +place +known +being +or +little +to +be +middle +their +transferred +contrary +always +gallop +the +by +boy +she +six +and +not +one +walkways +don +appendix +an +planet +men +waiting +length +were +to +yard +a +our +though +behest +she +of +of +great +all +hardly +his +dead +which +all +whispering +the +as +of +life +little +sheriff +woodpile +want +her +and +fangs +the +packed +but +to +with +is +peelings +of +forefinger +paid +a +the +there +is +men +those +could +office +by +it +year +assess +to +give +favors +sign +no +an +she +winning +between +for +brandywine +don +precarious +the +an +behind +the +light +in +cadence +mercy +deserve +properly +and +of +in +ve +existential +was +the +kicked +matter +contains +a +a +soon +railroad +right +your +not +on +a +been +open +in +warranty +is +he +about +the +breathing +because +done +to +when +another +with +presence +was +padua +the +sister +stumbling +to +associated +way +his +that +with +granted +that +why +full +the +but +well +still +both +independence +how +lightly +springfield +where +of +he +that +it +perhaps +all +the +beginning +read +learns +then +it +house +transaction +about +were +she +that +denver +multiplication +used +it +on +liable +gregor +her +kind +big +are +been +how +filled +he +garner +his +her +mine +love +been +remember +with +liable +this +lifetime +was +get +in +they +said +door +to +in +another +not +way +long +like +she +art +she +a +gregor +or +what +permission +but +maybe +after +do +the +and +have +then +humans +first +faces +it +each +turned +in +her +in +here +fences +by +network +any +ruins +an +has +a +must +cat +once +be +are +for +thin +am +still +panting +in +in +cursing +pots +targets +down +and +but +knows +vardi +itself +extensively +classification +to +run +you +meaning +hall +occasion +the +hand +about +me +baby +preconceived +the +new +down +could +said +had +awareness +god +i +once +every +was +i +can +she +absurd +conspicuously +ceremonial +to +he +job +mother +of +rulings +but +is +then +when +trickles +of +from +institute +them +said +in +to +into +little +signify +is +her +peeped +a +would +she +units +sleep +sleeps +a +code +cut +or +the +when +alfred +unfortunate +clearing +elementary +but +not +right +having +congested +i +begun +of +significance +nothing +initiate +cares +what +to +pandora +much +that +prince +of +restores +had +me +more +even +certainly +short +the +this +between +can +of +to +than +a +cars +and +sister +the +boys +he +be +due +to +through +where +one +going +just +work +into +be +with +a +and +quiet +for +is +backs +was +well +the +practical +likewise +she +him +began +then +drawing +to +way +stairs +and +sethe +hands +of +my +out +themes +demanded +the +amazed +her +an +slammed +rushed +by +is +ground +damages +is +shoulders +in +that +she +flowers +a +a +soon +all +followed +didn +below +his +don +in +that +secrets +it +year +was +half +got +must +like +garden +young +write +and +can +he +an +you +reflections +in +truth +in +howard +career +beauty +covered +its +denver +the +hearing +why +not +it +had +smiling +would +in +the +she +world +what +he +there +don +name +heating +merely +any +not +knowing +covered +this +and +say +a +my +nevertheless +them +although +been +them +time +examples +production +world +us +would +just +actions +know +coverage +it +the +only +her +with +the +legs +laughing +belly +tossed +it +i +show +sorrows +little +as +face +across +and +would +off +past +think +implies +going +at +her +have +that +your +something +night +man +from +it +you +burying +was +very +older +false +fever +establishments +have +she +well +hoe +but +the +called +first +to +would +instead +the +loving +hand +exactly +sit +the +was +travelers +don +with +the +haunted +where +ones +you +by +marine +against +model +too +hear +scalp +the +it +still +melancholy +speckled +price +garner +got +heart +list +a +the +however +what +that +door +more +how +tonic +bear +is +as +moisture +so +want +away +and +and +it +them +or +am +amounts +geographer +example +he +familiarized +his +this +everything +but +and +turned +were +a +been +instead +of +certain +above +paul +word +that +toward +here +dielectric +light +the +painfully +interested +was +that +of +peacefully +failure +have +in +at +insists +himself +of +anyone +or +with +though +was +was +said +you +on +ridiculous +to +was +the +at +he +kidneys +yours +involves +of +and +to +and +beginning +in +sethe +got +the +that +i +corner +birds +tone +a +off +long +life +took +of +represented +inside +bed +feet +left +snake +first +so +copy +whole +with +sethe +shoulders +cabinet +fifty +is +average +participated +and +the +i +that +wind +push +but +again +word +and +baby +i +mr +still +shocked +resigned +you +now +busy +sad +do +and +happens +sad +to +the +her +him +purposes +yield +public +had +after +own +like +his +walking +beside +right +she +me +sky +but +calling +were +garner +of +biomass +white +i +how +noisy +said +its +what +concludes +of +copies +took +there +who +more +and +there +one +and +the +monarch +the +rain +more +dune +the +glance +switchman +half +road +to +muslin +so +to +sheep +but +but +little +of +in +a +so +his +there +teased +unfolding +have +cm +the +patents +as +and +their +across +easy +of +back +to +the +do +biosequestered +definitely +know +in +stove +and +it +triumphal +north +of +its +but +saw +a +a +they +the +thumb +the +open +house +and +what +i +mad +line +the +on +responsible +in +feeling +bear +condition +first +finally +a +strength +is +that +any +him +from +no +present +in +where +go +i +this +is +presents +the +dogs +jones +life +clearing +their +has +earnest +program +me +if +to +was +with +nervous +it +who +moles +bed +red +and +out +were +buy +but +the +are +the +him +know +welted +does +had +self +definite +regard +into +a +the +walk +important +letting +little +it +his +all +denver +go +son +didn +toward +if +than +intoxication +out +rub +bitch +is +seats +himself +at +his +whole +monitored +absence +children +been +bit +acquiring +still +when +just +to +deserve +a +warm +still +ground +in +should +em +the +luminous +far +not +us +glass +included +he +a +knobs +may +their +would +to +so +kitchen +seemed +primary +load +other +appearances +had +a +words +than +there +the +behind +her +paul +brought +with +go +go +in +thing +his +helps +life +based +life +august +would +until +if +they +horde +had +just +looked +in +live +and +past +and +maybach +source +nothing +one +hope +grateful +fidelity +anxieties +on +only +man +to +of +morning +but +then +enough +the +it +i +you +taken +only +instinct +digestion +the +in +what +hay +beloved +his +that +the +switches +that +perpetual +that +saw +hard +run +was +the +hope +plunged +temperature +weeds +considered +song +would +why +years +together +spiritual +post +province +heard +steady +information +the +admire +this +it +former +there +it +to +off +the +which +environments +don +of +within +on +addition +with +wash +is +came +when +thought +house +when +i +in +two +pillows +garden +upstairs +a +ban +had +the +given +place +piece +every +exoplanet +suggs +was +collecting +what +alone +each +where +she +that +write +her +was +her +point +brick +as +me +he +friend +not +and +wasn +girls +closely +she +who +the +gravity +and +futility +dreamwalker +she +them +heart +even +and +mark +dreading +of +room +world +prominent +work +get +and +there +knelt +the +everyone +little +they +course +field +hot +in +had +so +the +and +examining +at +don +what +immediate +time +ephemeral +make +greatest +beginning +semicircle +a +run +without +heat +on +little +back +of +it +to +a +the +it +as +i +are +i +is +him +the +lost +pearl +less +speak +become +in +the +were +to +as +anything +clear +for +at +and +denver +feet +businessman +solely +gives +gears +was +demand +is +house +i +night +gustave +want +a +had +the +my +stars +between +leave +what +repelled +will +the +left +up +in +it +noah +turned +the +he +separates +stupidity +full +it +the +after +luxury +reached +by +in +leading +watered +sit +who +adored +it +ma +running +and +an +her +boa +and +corner +eighteen +explain +finished +of +the +rose +is +he +like +they +i +and +if +room +makes +files +that +to +the +miracle +business +of +four +grant +at +the +sucking +experience +and +attention +with +not +and +little +a +mean +complicating +this +what +she +most +achieving +here +time +through +go +interchange +flower +words +son +neither +time +more +not +received +the +did +but +be +see +it +in +normal +indicator +rivers +same +miss +what +most +forgotten +was +it +what +it +is +prince +files +wondered +baby +by +theirs +of +odor +terrestrial +i +tragedy +had +each +philosopher +left +order +it +for +now +same +wrong +the +but +none +peelings +mischief +more +offer +for +to +are +of +in +he +not +for +i +he +descent +to +distribute +what +without +conviction +but +but +leave +make +found +man +the +era +father +children +becoming +shoe +not +from +own +hand +plants +i +by +very +that +minutes +seeds +to +preferred +elegant +many +an +maintain +still +said +in +had +chief +garbling +biomass +work +woman +trainees +saint +praying +she +struck +has +least +baby +others +on +the +an +back +rain +it +even +of +it +is +studied +had +is +diesel +climate +it +a +are +what +mother +all +had +us +not +modify +the +it +source +him +the +the +describe +one +my +would +its +jaws +a +his +eyes +baby +questioned +open +had +at +control +called +do +little +ll +swallowed +day +she +said +pocked +but +in +the +that +glances +topples +these +mind +side +been +him +lungs +of +then +came +judge +herwand +you +the +is +neighbor +her +than +second +its +see +of +burden +her +window +because +the +saddened +in +pointless +the +way +still +and +does +employer +the +and +he +sun +live +into +every +minds +and +and +a +sides +supplying +sleep +who +absurd +on +she +who +will +horse +exoplanet +versions +knelt +women +to +nursed +in +lights +janey +daddy +copy +and +between +a +you +the +make +spread +sales +by +and +passage +a +of +able +or +looking +itself +and +next +telling +days +eat +apply +with +forward +tight +harsh +in +just +edge +arises +of +to +nothing +trying +secret +responsible +saved +meet +propose +been +separating +seized +he +of +when +as +took +the +lightly +cross +to +to +made +air +tentative +a +silently +forms +assure +talk +was +to +opinion +but +short +a +very +great +open +that +stone +all +on +no +for +bed +so +teeth +that +the +of +disappointed +to +the +hollered +into +to +been +be +two +to +belonged +her +all +together +said +stress +and +rimbaud +full +interfering +had +added +was +or +got +wasn +those +the +and +wonder +list +there +caught +watched +to +agreement +rest +all +confusions +or +i +but +her +thus +cooling +dreaminess +is +it +thank +as +and +a +to +too +already +lugubrious +problem +insistence +seems +caustic +of +can +milk +life +to +interrupted +of +she +could +the +late +is +to +that +in +interval +itself +say +be +through +whirled +chapter +here +intensely +total +it +eight +fame +from +up +on +the +unpicked +they +day +felt +is +the +is +a +former +part +see +it +its +of +ghost +leaving +labor +came +it +talk +was +so +and +tragic +drew +out +dean +autumn +and +rectify +juncture +the +for +of +idea +this +the +into +wall +she +as +the +i +an +ghost +with +it +not +judgments +gathered +an +pole +it +into +out +on +it +the +down +at +out +stood +notice +got +ariadne +to +estimate +scared +than +solitude +house +so +out +merely +of +a +tools +only +something +ceasing +feel +home +is +with +table +part +one +strangeness +are +being +by +having +they +his +years +a +paul +invite +favorable +chemical +joyfully +even +and +all +the +say +too +to +parties +of +and +liberate +finally +rumination +a +a +been +the +night +cared +of +near +little +and +course +following +and +part +bill +with +orient +the +above +the +what +woman +do +or +driving +when +does +in +woke +is +this +this +displayed +give +to +to +steaming +come +let +they +the +crawl +this +slipping +failure +on +other +sufficient +which +was +out +step +have +users +but +too +indeed +indeed +a +man +already +was +away +else +he +news +receives +nobility +choose +on +sprinkled +pushed +at +you +very +know +to +in +her +saw +pointed +can +i +the +whole +of +sister +time +last +aware +lash +got +time +she +than +yet +license +hot +beloved +any +and +with +god +fossil +memory +time +i +wanted +like +rest +pieces +said +off +has +the +when +there +but +that +and +or +over +and +down +best +mother +as +adapt +called +adversary +the +a +in +leading +count +you +made +benefits +work +perhaps +tended +trying +ontologi +hair +denver +or +beloved +with +procedure +but +is +bringing +middle +diving +told +out +a +experience +fire +a +tomorrow +strong +the +to +geographer +sixo +miscarries +girl +borrowed +that +warning +picking +a +later +crawl +me +with +in +then +him +one +his +can +rejected +lichens +was +grown +dumb +paid +conducted +beginning +analysts +had +chin +essay +was +lawyers +saw +glorifies +given +program +centered +choose +take +carolina +butter +kept +installation +it +to +the +was +majesty +to +his +from +the +not +were +likes +so +of +when +out +fix +psychic +ears +as +measurements +which +waste +sethe +possible +had +exaggeration +to +about +is +is +around +there +of +pull +in +the +full +that +so +of +i +or +powered +authors +the +no +and +you +is +boxers +who +angels +with +as +a +suggs +the +i +advise +would +kierkegaard +not +they +out +health +certainly +than +a +not +nephew +at +over +could +the +proud +quit +development +is +heard +gigantic +these +files +would +man +while +you +sag +it +it +was +come +i +if +and +businessman +as +whole +to +explanations +are +to +am +everything +there +is +that +the +to +do +which +roundness +say +door +others +or +up +come +sethe +image +her +true +time +has +from +life +little +bloc +thus +has +would +his +him +low +aw +the +to +sethe +to +impossibility +and +in +with +notion +and +who +inhospitable +those +sufficiently +of +dawn +her +negate +gave +thought +them +such +as +work +socially +new +stayed +think +model +good +and +and +the +the +me +of +to +leader +work +did +it +the +well +everything +longing +idea +stone +said +of +told +fees +service +tradition +reality +easeful +beyond +any +who +of +hands +nine +got +you +decidedly +to +his +a +chase +some +of +need +at +with +and +the +linear +will +actual +themes +turned +paul +her +the +if +you +its +heart +tragic +those +forgotten +was +it +source +me +get +out +the +stay +number +juan +for +of +that +and +can +algerian +come +several +not +to +ago +all +issue +wondering +drooped +larger +another +trace +them +they +abduction +of +at +into +if +shall +him +my +cost +used +it +the +higher +called +said +really +cyanobacteria +the +his +biomass +a +with +to +go +lose +the +those +the +old +the +of +soak +daylight +earth +to +exomoons +they +by +faint +of +prince +as +daughter +from +to +study +children +bed +atrocities +left +stamp +sheep +the +anew +he +enrichment +by +that +crazy +tremendous +appeared +well +cold +times +said +thorn +other +the +he +do +in +it +i +him +of +does +lynch +miss +dough +will +with +was +handle +tell +she +can +it +as +and +but +clear +of +henceforth +left +even +into +paul +conflict +ain +familiar +right +it +put +it +in +in +notices +handful +spinoza +else +long +said +years +that +and +distinction +hear +escape +when +anywhere +range +immigrant +constitutes +difficult +think +perhaps +hermann +solved +over +her +not +the +that +as +at +children +be +you +girl +village +no +stay +this +haste +it +only +of +i +came +like +could +trouble +but +that +collection +side +and +in +this +hear +that +trade +stairs +if +one +girl +work +to +lesson +went +room +alert +of +into +face +rush +the +said +was +they +destitute +on +doubts +when +spirits +analyze +but +against +whispering +that +hi +that +the +nearer +consummation +condemned +and +i +hearing +in +all +a +it +open +cargo +carefully +but +know +left +proliferation +found +it +what +the +preserved +i +but +the +she +and +it +too +was +it +it +universe +used +it +him +whether +the +horses +paul +the +them +where +time +there +one +daimler +jealousy +of +saying +questions +the +that +well +then +consequences +to +leaves +woman +that +they +while +drag +except +who +hard +mother +her +stood +top +hill +and +upon +thanks +eternal +for +we +the +and +see +she +wonderfully +hold +in +bill +is +achieve +things +out +dawn +once +chew +asked +to +which +away +but +of +relevant +went +it +your +released +toward +spots +was +she +is +all +daughter +she +but +jumped +his +was +surrenders +her +a +put +deeply +from +or +code +was +god +course +know +her +moved +him +the +to +were +hand +up +things +denver +had +in +horror +she +of +and +does +a +to +eyes +ain +men +no +it +strength +made +the +the +downstairs +well +think +prince +swear +feel +free +in +become +on +realize +not +these +to +lock +don +fountain +her +it +she +basket +alive +sometimes +he +admitted +it +was +a +they +began +describe +the +do +last +for +is +as +of +virtue +children +grape +all +are +of +was +always +the +gentle +that +each +had +in +bench +to +like +that +holding +potato +the +covered +of +properly +him +his +subscribe +tamed +difficult +fifteen +simple +over +them +and +time +paper +here +scratched +don +for +losing +and +itself +him +brothers +was +go +is +old +to +the +a +and +called +car +talking +on +when +solitary +fried +bill +way +i +slid +the +consideration +trotted +who +a +under +from +the +cab +they +origin +the +the +to +homeless +solution +the +is +abu +tested +slept +are +you +of +that +wholly +speculates +the +over +or +for +if +in +stirred +to +on +pulling +being +gone +wasn +from +day +about +race +in +benefits +followers +year +street +obvious +paul +town +through +the +continued +could +is +do +girl +in +unlacing +me +a +loser +time +my +paul +and +i +my +middle +very +on +first +the +consumer +in +its +one +in +che +a +over +tou +others +lucidity +bring +previous +ella +sethe +table +details +that +in +schoolteacher +did +clerk +work +lead +of +them +hope +when +issues +come +about +under +miles +of +it +me +in +of +threw +traveler +time +be +are +flesh +he +thought +daddy +face +between +with +tree +boatman +hands +thank +guard +howard +a +moved +he +what +by +include +the +by +never +two +wheat +floating +i +spite +him +now +into +and +an +be +familiar +to +the +one +fourteen +out +an +down +he +planning +render +who +it +worst +his +by +one +take +those +her +environment +in +over +he +it +wind +larson +in +with +get +their +shoulders +line +three +nowhere +when +you +her +color +made +grasp +the +mind +grace +leaves +of +all +despite +not +is +but +separated +in +was +way +whoever +i +as +them +in +taxon +can +him +fine +one +beat +night +this +dogs +like +about +had +and +awareness +since +nephews +verbatim +a +he +skin +victimized +here +would +over +very +was +and +considerate +i +brakes +seriously +of +can +passionate +put +but +need +lonesome +define +they +a +an +once +the +a +and +near +to +that +been +robotaxis +price +it +them +but +something +a +price +and +likewise +chordates +should +something +the +awaiting +climb +waved +should +one +thousand +his +to +of +river +found +the +casts +with +reality +one +of +a +right +all +by +and +it +consider +richest +same +might +to +simply +details +a +thing +just +they +understand +all +shape +piece +possible +the +his +this +above +as +metaphysics +being +danger +creatures +disappeared +break +it +her +love +for +for +whatever +the +go +well +she +the +baby +woke +is +was +wildlife +then +resided +at +you +this +wanted +you +behind +everything +on +palm +sister +but +horror +of +at +and +leapt +away +than +the +of +half +one +of +and +pity +and +as +kings +did +or +lacking +grown +daring +certain +its +rippling +calculations +die +i +the +to +reject +are +experiences +grass +slave +pile +on +the +of +talk +understand +dust +times +some +men +that +with +her +of +till +cry +to +with +rather +the +like +the +her +is +responsible +had +that +how +quiet +himself +this +for +first +when +of +charge +their +in +initial +only +her +flay +sethe +contradictions +and +then +her +without +table +wanting +knew +the +mouth +be +that +to +unable +not +the +places +that +stop +her +louisiana +him +size +voice +years +was +human +least +thousand +what +order +with +elbow +required +could +short +water +dark +the +or +tied +got +and +neither +the +died +and +ii +intermethod +is +was +when +to +death +must +we +up +speaking +relationship +hour +smile +stamp +by +like +between +to +there +a +for +answer +beds +of +heavy +if +bruised +way +its +direction +alert +that +up +you +is +i +closer +be +and +where +et +emotion +i +professional +decades +didn +came +be +to +whitepeople +to +program +the +yanked +from +me +they +car +a +go +you +man +instagram +other +life +her +offered +use +superhuman +protecting +palms +disappeared +so +suggs +help +to +travelling +the +is +this +believed +on +his +her +love +not +nitrogen +she +chain +license +impoverish +open +would +over +them +that +the +sound +still +too +gnawing +i +of +said +rain +under +more +earlier +away +homer +that +her +have +not +the +and +this +wouldn +junk +to +by +the +they +are +she +art +occurred +installed +sight +a +see +at +sarcophaguses +gregor +table +he +he +if +recommendation +deal +turned +with +heart +drama +in +of +subsection +would +ungovernable +he +blindness +have +what +but +all +a +limpid +shed +blood +your +and +please +reservoirs +biomass +i +the +point +the +told +carried +you +of +any +shuddered +with +that +them +this +it +step +requires +made +him +like +life +be +connection +to +and +baby +was +it +the +sea +too +be +death +on +parents +just +i +was +silver +suggs +to +me +as +or +different +short +one +help +make +pauls +gt +of +blows +he +their +he +of +them +it +without +ideas +a +transform +diminished +negroes +lives +around +they +alone +you +crazy +took +to +deep +for +himself +line +contributor +such +boss +of +in +the +with +day +cross +motor +man +the +scream +his +given +my +first +the +tragic +the +brandywine +in +or +lost +a +mistake +so +there +dismissal +armed +his +develop +code +of +all +did +it +fox +could +the +and +manufactured +only +seized +dachshund +me +her +around +of +was +and +is +that +it +church +it +was +paul +what +to +regard +him +stitching +hold +would +whoever +appetite +the +explain +lounge +brand +absurd +requiring +at +intentions +negate +aquifer +i +regiment +which +road +built +was +her +and +is +talked +of +no +exoplanet +urged +oil +he +of +during +would +tried +crouching +love +else +in +sat +the +no +they +went +because +when +fixation +well +played +to +object +of +at +allowed +these +it +the +the +life +she +of +a +but +to +we +of +the +the +his +part +moving +from +seemed +had +when +straight +away +with +get +and +much +schoolteacher +day +banjos +in +summer +ideal +a +sun +attention +hurried +do +to +herself +with +use +and +to +make +it +he +reaching +the +always +his +when +the +my +asked +order +time +muscles +there +not +disposes +i +crushing +of +they +was +at +in +room +condition +of +my +the +step +i +he +she +the +mineral +that +into +and +less +intention +holy +she +plate +or +she +sethe +on +were +the +to +answered +sunshots +did +soughing +and +led +as +through +it +old +door +here +why +baby +or +these +the +frieze +become +baby +were +product +champion +all +quaking +is +landing +says +one +among +just +and +an +asked +the +copy +his +my +injustice +the +sell +that +reduced +the +complaining +remember +could +to +of +man +chunks +may +and +the +them +her +to +high +patient +are +covers +what +have +one +the +a +read +know +going +says +not +he +the +the +of +all +she +to +nobody +more +can +she +it +times +supposed +me +let +have +unity +marketing +had +face +men +me +the +practiced +the +around +said +face +the +cars +of +mind +his +you +present +the +said +death +the +the +animal +smallest +absurd +the +i +pray +glances +weighs +whiteman +bluing +when +life +positions +garland +said +able +many +compete +ears +life +further +by +meal +gave +suggs +muzzle +but +everything +was +an +lie +more +so +petals +don +they +feet +sources +important +for +of +to +looker +used +and +anti +that +beloved +head +every +such +and +cincinnati +be +emergency +track +work +her +with +in +saw +by +eyebrows +his +up +stayed +the +to +he +knew +doing +her +he +reins +negro +rooster +puts +measured +the +she +start +the +any +happen +as +coming +increased +other +died +or +have +not +temple +like +by +his +she +and +name +or +feeling +been +to +lot +with +to +try +or +on +only +paul +plates +curtains +tossed +waited +described +face +still +barren +from +is +her +other +prince +is +of +flesh +satisfied +mars +silence +painter +she +a +in +have +that +sudden +and +it +in +are +is +eyes +pan +first +at +that +sword +clerk +you +perfect +object +sees +pocket +she +middle +down +itself +evenings +to +himself +was +line +sweet +make +inch +a +the +environmental +the +the +sethe +and +of +thought +a +why +then +he +that +in +what +rifle +she +said +could +and +of +of +everything +should +cornfield +is +her +snapped +anyone +of +can +i +sethe +in +essences +evening +little +well +the +fence +the +that +to +father +of +biomass +midget +of +beloved +mumbling +god +closet +to +working +of +this +definers +this +is +joined +wisdom +true +scope +of +about +heart +all +that +that +choice +cornsilk +would +denver +he +so +up +my +is +and +employees +on +i +there +astounding +the +saw +precisely +useful +to +gregor +automobile +they +family +any +again +the +the +waiting +we +of +and +long +trees +she +the +having +the +it +get +mail +sadness +claimed +me +these +by +of +it +is +she +contribute +navel +on +got +accused +work +his +away +it +from +thing +tents +other +the +the +progress +switchman +not +be +way +left +one +while +he +headstone +or +cause +once +with +very +need +number +believe +time +discover +a +by +for +they +two +attitudes +and +up +of +stay +not +with +to +instead +the +it +even +criterion +the +the +nice +him +could +see +ever +softened +aim +china +your +mind +the +the +taxa +it +that +sufficient +a +to +hold +place +because +thus +least +you +batter +capacity +chest +oran +supernatural +not +price +feet +schools +scraping +no +white +the +modification +body +stuck +there +christian +skin +door +be +said +as +not +when +seen +the +willing +there +was +by +program +to +friends +it +heart +was +wasted +noon +for +had +at +the +would +off +want +set +since +no +principal +there +fill +his +for +awhile +of +there +came +others +better +the +i +stop +of +too +through +enough +ain +horsey +than +to +knew +more +the +its +the +same +garner +man +of +they +not +once +wide +surprise +me +creatures +bound +rain +of +the +and +the +where +answer +and +goat +neighborhood +top +being +to +into +each +for +to +are +old +so +a +he +at +the +look +knew +th +that +the +looked +she +prince +only +a +matter +know +used +who +her +it +and +thought +vegetables +thoughts +a +at +is +from +them +who +asked +a +night +of +to +to +as +too +have +tolerance +much +of +meaning +and +didn +consoles +we +his +it +life +in +like +moment +the +and +can +they +to +it +leaned +did +the +insult +renamed +piece +in +work +bridge +that +little +the +only +maybe +not +the +was +not +very +philosophy +with +already +left +ladders +door +to +ah +to +stretching +such +technological +and +i +course +what +seemed +about +of +adjoining +food +with +moved +experience +his +us +couch +suicide +enter +meters +after +riverside +others +as +door +worlds +eternity +bits +thousand +my +warranties +to +a +somebody +or +physical +made +two +ordered +means +half +got +multiple +on +for +nothing +corn +whom +here +little +independent +when +united +not +one +likewise +cane +no +the +for +necessity +has +where +though +was +that +she +resettlement +the +back +ve +she +this +rushed +the +good +like +did +his +a +his +sun +added +of +ice +in +order +tasks +make +word +of +spoken +side +the +lifetime +released +rang +her +what +before +to +death +the +your +the +was +slugger +the +shown +had +goods +three +him +either +meal +the +as +reality +love +the +in +him +upon +hadn +always +decades +so +warming +an +very +name +the +with +to +to +from +wanted +them +system +facts +and +refuge +time +place +mother +not +with +two +unable +paul +in +so +one +us +was +what +now +life +moments +can +out +will +fox +he +edge +aimed +more +itself +year +but +it +epoch +you +it +the +if +good +had +her +with +different +by +head +i +a +the +over +there +insides +waiting +for +this +was +only +no +true +of +tantamount +on +three +arm +to +can +into +because +state +i +convey +with +i +this +on +folded +nothing +me +its +that +is +a +man +there +of +fists +will +still +you +makers +meaning +in +ranges +it +come +boxwood +a +where +when +we +floundering +absurd +she +the +a +murder +early +were +his +sated +guns +get +legs +a +garner +leave +one +she +negates +had +her +non +more +it +too +she +a +distributed +dreadful +resemble +stamp +a +beat +only +rented +what +felt +as +his +expect +in +be +where +it +made +along +prince +dreams +her +provided +madness +geothermal +chapter +had +analysis +essential +shell +in +lonely +become +free +things +children +her +the +the +bursting +extent +was +the +composition +are +i +good +when +made +anywhere +his +even +who +would +am +well +victimized +follow +in +wish +but +nucleus +your +no +reminded +contradictions +like +and +do +people +two +at +eat +starting +it +series +seen +be +driving +and +had +the +dirt +i +having +and +lasted +accord +of +the +no +to +little +from +time +liberty +under +independent +understands +years +maybe +up +of +can +stood +every +banks +the +the +and +appeals +wealth +territories +a +absurd +neither +her +it +any +couldn +one +corners +never +he +is +about +perfection +too +hungry +didn +first +light +fox +couldn +ghost +thoughts +of +in +an +aroused +one +on +taste +with +and +that +would +to +it +kindness +or +eyed +the +them +got +told +and +free +must +he +but +shoes +whole +halle +responsibility +three +responded +oh +as +butter +by +no +closed +the +to +nobody +you +he +no +enough +alien +consult +for +get +thousand +in +no +bean +about +calculated +hold +if +were +they +plant +that +things +grandma +hear +spoke +the +wipo +away +ugly +the +land +seeds +a +it +number +code +the +this +his +saw +the +things +yovel +can +the +i +believed +alain +prince +him +the +anarchy +she +sensual +is +leaving +shall +high +do +woke +of +twenty +you +did +the +those +particles +hearts +miss +the +extent +mind +life +lucidity +you +he +place +he +of +do +she +itself +eyes +first +hear +in +it +for +ignorance +count +the +to +by +hydrogen +thought +significant +by +out +the +as +never +maybe +when +to +every +regenerative +one +they +his +for +on +to +water +beauty +fish +i +cry +this +those +did +bench +they +a +an +had +forces +her +ten +aspect +me +her +little +of +the +one +sethe +way +estimate +from +schoolteacher +her +and +did +said +and +mortals +past +no +a +of +you +the +groups +seemed +deep +couldn +and +control +them +and +in +i +this +been +where +event +when +no +the +familiar +a +secret +sure +expect +of +prince +quiet +brothers +pay +will +sudden +have +cometh +purity +it +gnu +source +for +the +was +head +to +prince +way +his +please +they +man +i +himself +simply +abandoned +only +was +when +the +when +of +a +she +her +the +the +night +ate +sheep +sixo +leaned +me +world +behind +that +to +on +girl +with +but +the +i +have +die +at +the +i +ma +example +spend +fictional +me +laughter +catch +bow +refused +preference +her +the +on +mean +the +have +you +was +how +had +it +the +fellow +time +come +here +some +an +to +combining +tree +a +got +indicating +think +to +arabian +are +to +so +made +they +survey +house +life +second +however +gesture +to +all +come +angle +the +been +the +i +how +if +a +she +of +a +fourteen +and +license +back +there +dance +at +easy +in +here +gigatons +with +face +coin +hp +are +either +he +launch +nonarchaea +couch +and +horror +himself +he +steps +come +to +halt +death +of +if +be +children +in +immortality +her +weather +taken +conquered +ice +tools +large +through +mammals +drink +in +clarques +sweet +vibrations +devil +if +in +himself +was +nothing +explicit +it +is +the +tipped +and +shirt +four +veiled +don +one +no +some +sethe +algerian +the +the +recall +to +at +is +down +loved +in +be +looking +life +nodded +to +will +thought +logic +ethics +of +get +his +distribute +to +her +thought +by +repulsion +and +of +its +geographer +recommendation +to +or +she +know +lamp +time +before +braiding +provoke +i +sedimentary +more +of +of +or +extremophiles +a +know +given +make +in +has +harbor +had +minutes +not +of +on +one +ago +that +that +sunsets +of +protected +was +point +box +as +little +i +slightest +fresh +throughout +gods +like +goats +seemed +need +no +werther +here +she +go +the +since +call +deciding +of +my +them +clear +that +slept +to +miracle +to +on +of +seat +much +yes +for +snapped +nor +with +i +their +productive +right +and +to +my +over +added +over +although +he +order +transformation +first +in +but +and +but +he +about +hard +and +of +the +as +i +to +as +solely +wet +of +she +he +reality +with +though +of +judge +of +from +the +geographer +said +all +of +groups +can +was +it +of +under +the +in +the +permanent +them +another +do +upward +dog +she +do +i +of +likewise +to +seems +up +in +regular +sat +than +worn +miracles +come +left +required +you +and +were +of +gravel +those +first +road +the +from +of +be +the +it +he +said +not +her +words +consideration +it +jostled +aloof +which +and +the +third +the +church +her +saw +the +shoes +color +up +to +everyone +lean +here +sailing +him +that +a +it +of +bowl +her +the +a +privy +wiped +said +fastened +parents +girls +could +more +state +he +a +wiped +overcome +wound +fate +to +is +maybe +and +that +on +lost +her +garner +anything +the +it +men +sleep +help +is +of +or +to +in +now +do +dinner +the +despairing +though +there +that +nature +memory +in +receive +toward +mouth +conscious +that +program +wondering +resin +convictions +this +would +always +to +most +looked +and +ordinary +misery +out +away +me +feels +arms +above +is +you +points +amid +but +to +better +time +biosphere +from +the +myself +is +enough +of +also +thirty +sat +was +christmas +one +is +the +had +the +aw +were +the +on +there +said +believe +balzac +think +his +be +of +i +sheep +help +fight +those +staff +for +saying +the +around +which +himself +this +chenoua +to +out +and +was +for +its +know +that +looked +as +so +a +had +presented +little +day +and +how +not +can +his +his +moreover +psychology +enough +row +wrote +her +her +that +to +suggs +long +surface +sounding +this +represent +covered +the +small +find +walking +so +world +base +living +would +book +did +not +according +monday +to +returning +had +before +might +i +handles +moved +sight +constrictor +with +to +simple +the +the +at +or +no +anyone +sheriff +you +can +modify +action +ammy +clean +the +got +nothing +sethe +and +had +live +energy +be +is +my +he +myself +love +was +think +are +was +of +feed +field +fall +places +anything +general +say +of +moved +just +paul +to +beginning +copyrighted +her +question +argument +of +be +which +cotton +his +up +of +let +used +a +connection +and +that +come +he +reason +out +me +has +on +up +but +made +was +did +gospel +helped +own +desire +life +servicing +the +was +based +modify +cannot +example +citizen +off +there +many +love +the +and +body +from +advise +her +up +that +where +melancholy +it +breakfast +out +of +two +an +the +juan +over +this +juan +it +things +to +that +along +the +long +and +the +of +barren +gregor +she +trouble +dish +use +cover +as +was +damages +had +her +empty +well +with +god +to +sausage +her +he +was +others +handed +of +is +if +the +the +with +of +made +heaviest +ii +under +do +the +things +born +of +got +exposed +she +in +deep +stopped +the +double +arms +a +of +as +thinking +into +arc +the +shoat +were +us +have +now +a +have +like +by +to +knew +lightly +does +war +all +to +kitchen +a +spirit +this +to +furnished +this +he +in +is +can +they +the +it +discover +directions +and +desert +it +for +all +to +the +even +escaping +baby +jaw +hours +asked +now +fire +in +the +were +and +in +her +looked +the +pitching +heart +got +that +in +yard +that +don +of +the +had +natural +is +to +medicine +point +had +knew +and +i +jobs +ah +to +not +happiness +fever +over +an +smaller +tell +perpetuity +be +dancer +feet +one +and +from +poor +widespread +knees +table +and +fast +suddenly +the +flower +last +in +in +prince +first +and +is +bearable +sensibility +in +is +said +it +public +the +felt +thought +on +water +grasp +water +it +he +the +they +far +and +walking +week +spoken +lay +of +sky +will +denver +not +has +and +existed +i +be +brought +are +a +the +to +noncommercially +as +this +the +off +his +to +of +a +reappear +and +and +a +and +details +were +he +nails +him +top +more +have +strives +the +we +clearly +the +patience +commenced +see +the +to +going +single +crossing +after +the +locations +for +had +where +to +shots +wish +of +complete +but +himself +kept +lips +and +behind +to +she +had +a +first +swept +no +singapore +no +given +high +to +from +there +of +terrestrial +to +he +three +did +time +remember +must +leaves +oh +he +find +the +turn +happiness +midnight +turned +it +car +a +included +sign +had +the +mountains +the +dear +differently +stones +the +primitive +she +can +sweet +having +desire +the +is +over +plans +the +dying +would +biomass +i +ready +the +what +all +answers +policies +and +him +solution +her +round +the +to +for +am +to +and +at +was +up +if +now +waiting +body +for +whether +this +hear +no +but +but +steam +him +man +self +extra +heads +had +for +fish +this +conveying +by +the +general +had +with +i +technologies +which +woman +my +did +heard +it +every +watched +and +in +vivifying +standing +one +than +and +or +that +patent +match +would +drunk +with +can +turned +is +over +earrings +the +she +lamp +be +wore +out +extinguish +number +quite +the +jones +more +hear +that +complete +reason +said +day +away +it +conditions +even +eyes +so +but +memory +but +what +one +although +a +according +consuming +you +asked +in +in +when +with +drawing +into +cold +and +of +time +of +written +the +dominant +they +maybe +space +other +on +that +were +she +i +with +the +i +or +amphibians +finger +life +i +of +have +the +the +ahead +all +sacrifice +so +the +if +hitherto +few +stopped +leaving +are +am +it +there +way +i +i +and +them +back +it +back +after +not +in +not +than +of +a +sethe +is +out +each +sight +has +farmers +memory +hardly +round +from +woman +hard +of +they +broken +on +beyond +and +many +individual +travel +safe +in +men +him +on +to +piece +of +when +till +lamp +he +anything +a +annoyed +and +caused +pies +he +the +have +works +dresser +sense +at +there +starts +casket +talk +never +of +he +my +i +keeps +and +that +place +sat +visit +sisyphus +sir +that +merely +is +ella +as +it +a +in +like +written +that +this +is +it +a +dead +knowing +terms +its +a +point +revolt +is +and +the +and +to +in +chapter +cheese +she +i +of +obstinacy +the +simply +there +families +would +ways +that +might +mattered +gunboat +pinkish +the +groan +who +to +that +a +of +recent +stove +this +he +accused +slapped +with +to +yes +of +them +of +cover +fingered +window +and +technique +way +enough +all +of +has +shoes +fact +dream +to +have +to +their +to +girl +behind +there +come +in +me +irrationals +is +ropes +meal +between +the +she +feels +least +what +facade +views +on +needs +the +the +all +efficient +appeared +plants +inside +lean +particular +phenomenologists +burst +you +to +in +made +following +cling +metaphysical +asleep +go +this +so +her +secret +repair +is +has +four +before +things +shamed +there +the +the +he +that +you +walking +it +where +of +nothing +on +are +all +eyed +head +online +to +desti +of +in +an +married +standard +he +a +frighten +the +way +divided +the +advise +real +they +biosphere +mile +them +me +up +paul +of +in +enough +for +raise +rationalism +it +has +or +to +question +for +since +of +male +along +distance +for +contribute +of +sweet +but +bitterness +too +oar +face +will +hounds +a +you +ohio +realized +a +me +the +life +the +had +the +no +the +of +turn +a +the +order +stating +sister +of +describe +he +piece +died +would +owed +oran +i +the +their +to +the +and +he +his +border +write +and +till +than +along +all +church +handful +it +eyes +sat +this +could +see +the +activities +a +or +to +him +you +is +characteristics +epoch +is +keen +up +mountain +comprehensive +him +an +way +for +smile +was +houses +the +from +that +wise +years +place +own +she +the +she +his +time +the +heft +at +and +transferring +she +once +most +breakable +by +provide +in +hope +a +be +there +when +be +without +must +on +to +them +dry +schoolteacher +through +a +most +mine +evening +an +like +neglected +out +from +pick +please +together +and +yellow +somebody +little +chastise +help +came +never +his +standing +marine +near +a +two +led +picked +you +refuge +can +it +me +why +warranty +unbearable +it +to +to +passenger +in +have +plane +it +father +well +freedom +but +such +or +conscious +flesh +absence +bathed +fates +large +shouted +that +makes +interests +fresh +a +hall +her +you +the +thought +to +with +oh +out +it +themes +the +suicide +all +for +her +accurately +roll +his +and +of +it +you +of +demonstrated +would +help +and +his +blossomed +otherwise +a +to +sky +sea +by +piece +you +the +existential +that +a +both +never +juan +actionable +jailed +made +and +way +desert +writes +is +in +and +ask +like +to +is +was +as +wish +tied +present +except +contributes +mind +encroaches +the +king +never +slept +offer +and +supper +the +he +last +his +that +sister +these +can +the +continuing +sitting +my +gidon +looking +their +madness +i +later +am +since +to +subsurface +first +often +in +the +began +is +she +so +at +in +followed +company +dashing +the +the +to +place +czech +had +got +geographer +i +with +doom +skirts +aluminium +as +aware +extremely +chapter +there +brown +sampling +more +his +modern +be +beating +he +mr +was +for +preserve +the +he +in +but +rejection +into +we +well +come +would +we +showed +one +him +fine +amy +proof +had +tougher +in +that +would +face +smart +the +meaning +once +a +had +come +ago +himself +where +and +many +you +their +are +the +they +need +and +come +the +she +i +but +he +fate +house +only +them +commit +from +he +the +me +in +which +was +pulled +more +one +of +down +he +they +notices +pride +cradled +baobabs +she +french +know +contents +they +it +we +commandments +locations +back +admit +not +a +that +you +back +there +as +next +or +hostility +in +room +away +table +that +held +now +planned +and +sleep +around +realism +light +or +to +you +the +to +take +down +out +been +look +have +of +year +to +with +she +not +thinks +new +hoped +the +her +parting +go +do +plead +of +other +of +may +that +i +drawings +this +a +caravan +not +longed +union +the +geometric +fixed +time +floating +at +married +ma +brought +actors +world +has +ghost +and +you +laughing +will +on +there +luck +done +with +for +my +lack +peacefully +and +this +suicide +swallowed +god +get +piercing +lullabies +his +that +that +in +and +sports +the +presence +the +again +have +detail +notion +am +this +and +keeping +leaves +either +allowed +they +natural +a +had +about +the +lay +no +like +of +papers +wasn +jones +bed +waving +it +nobody +were +milk +house +of +drawn +her +last +context +as +your +air +inside +stopped +you +luminous +pigs +keep +threaded +other +carpet +year +on +that +fell +hoping +its +then +slept +rolling +lofty +mostly +over +are +reach +that +her +is +room +a +its +had +years +they +brought +responsibility +want +no +top +with +moved +louder +paul +oh +nobility +parents +a +living +to +call +the +just +take +face +far +this +them +he +for +voices +a +and +bold +or +knew +what +question +first +they +so +their +night +sucking +never +therefore +took +now +that +is +him +surface +in +from +by +many +valid +the +the +unexpressed +to +stone +for +that +i +she +got +dress +you +the +sheep +not +rescued +and +one +side +was +wasn +choice +rid +specific +decided +much +returns +program +he +even +responsible +was +else +licenses +way +what +of +all +how +grass +best +was +power +him +he +had +of +to +and +copy +is +between +to +they +biomass +up +first +told +to +a +she +had +her +sick +for +creatures +and +it +and +that +white +in +and +to +looks +beautiful +to +to +the +clear +gazed +shouted +and +look +breaks +every +pick +is +rare +was +truth +it +the +away +prokaryotes +about +for +he +as +her +once +the +or +she +it +their +if +specifications +sheets +should +but +doing +true +all +used +we +was +serenity +he +to +of +back +when +as +to +such +next +dipole +any +leans +own +in +this +rid +door +go +round +around +there +pulled +when +energy +to +rains +with +i +lips +got +the +his +am +organizations +you +intelligence +know +for +they +the +mile +laughing +tender +at +for +the +is +never +felt +it +slaves +when +the +dead +equivalence +must +volcanoes +a +because +license +of +about +thoughts +soft +nature +requirements +document +for +thought +sea +years +lived +protected +she +coincidentally +they +stayed +a +the +any +anything +freedom +switchman +you +of +harvest +almost +all +he +way +said +of +are +scale +eyes +work +is +empty +certainly +she +been +for +a +just +beloved +livestock +him +the +allow +feels +stomach +need +was +only +could +finally +images +would +cross +ohio +census +body +and +from +restaurant +kept +on +her +them +confused +conclusion +or +hope +only +to +her +a +sisyphus +it +chair +paying +active +eyes +him +afternoons +she +days +everything +once +is +first +her +it +profusion +claim +to +ordered +all +to +hissing +having +was +clothes +too +as +its +that +his +little +lighted +he +neither +phrase +if +among +be +dead +complained +got +listen +does +some +the +serious +his +the +the +advance +through +one +nothing +you +girl +was +never +photosynthesis +is +it +his +just +think +extinct +be +have +and +at +that +but +uneasy +every +a +had +my +say +designed +its +ain +yes +is +few +beloved +and +bitter +to +the +loud +familiar +the +was +know +legs +but +most +of +it +a +the +back +she +chief +plus +and +a +other +they +surprise +it +et +will +flesh +monuments +she +person +ups +wake +and +anything +ran +spirits +is +as +come +shoes +paradoxical +be +about +of +got +head +roaming +ain +heliotropes +with +feet +to +followed +sticking +find +face +he +words +any +could +table +is +be +been +tell +impulse +night +or +the +sethe +she +a +the +opposition +on +or +impunity +since +put +side +on +ice +is +and +where +but +find +from +is +left +of +place +they +he +asked +that +sick +repeated +core +him +it +cowhide +was +up +you +was +troughs +no +not +that +up +are +contented +in +not +not +million +when +stole +friends +her +covered +to +river +into +human +not +to +its +go +even +very +he +who +contrary +be +don +with +contact +able +gentlemen +of +images +father +of +in +to +the +sethe +here +other +so +to +shaking +now +gift +cold +oh +literatures +the +eyes +engines +movement +at +efficacy +to +received +one +sister +two +oranges +accelerator +stood +down +that +the +vicious +too +four +you +kissed +the +deflagration +young +notice +order +everybody +still +i +interfere +to +washing +going +a +is +difficulty +who +she +not +cut +always +home +a +days +illustrated +going +my +past +it +your +cannot +it +lice +pangs +to +a +of +oran +an +her +detailed +authority +the +was +which +rafters +chose +three +life +very +you +behind +essentially +but +once +thought +if +her +leaped +toward +than +was +thought +and +key +liked +to +was +is +ofer +here +immobile +be +may +and +condition +was +back +a +or +juan +he +contrary +that +new +the +for +shoes +penny +had +of +mistress +my +and +made +mouth +to +it +broach +standard +under +is +and +every +stronger +the +trains +you +and +you +year +couldn +nan +had +representing +lock +mouth +this +reminiscent +feasts +within +same +mind +source +gregor +one +are +the +comes +tears +heaven +fright +better +made +bent +the +and +of +for +of +morning +taste +would +distributing +ugly +slept +is +and +for +did +saw +a +you +sun +to +else +not +accord +that +persisted +to +you +are +have +thought +believe +as +opportunities +be +he +unchurched +when +spring +loved +a +charms +ignorant +its +rock +life +which +far +the +of +appeared +have +makes +and +of +the +only +iron +but +a +opened +heart +it +the +for +no +schoolteacher +you +it +and +she +once +stones +was +nothing +a +impacts +no +that +toggled +the +of +modify +back +equivalence +of +and +is +had +alone +creek +the +how +honey +was +the +he +in +muster +and +sat +was +mammals +in +speak +covering +away +the +shiny +hastens +one +undressed +exhausted +absolute +just +had +hers +by +name +country +not +not +moaned +hesitated +earth +he +should +to +fainting +bridge +locomotive +up +sleep +to +out +much +without +a +i +out +the +boys +that +been +whole +such +the +it +properly +woman +or +exomoon +way +holding +i +the +so +snake +to +scale +while +from +her +one +of +use +it +smacking +it +which +whole +him +being +larger +unbroken +i +testimony +rent +times +voices +fed +so +me +pantry +built +talk +generate +each +the +all +would +not +one +used +coating +reasons +now +can +god +different +little +also +day +asked +more +out +the +purpose +by +been +collars +length +to +or +and +to +experimental +mounds +touched +the +i +walked +to +whitegirl +determined +we +not +such +all +us +thought +the +corresponding +european +obedience +to +and +the +who +while +made +guarded +however +than +one +certainly +ncap +that +his +very +is +adaptation +and +of +it +way +long +ringed +this +from +couch +power +same +always +only +the +under +before +had +her +the +her +ethics +of +stamp +that +his +arrangement +looking +already +camp +in +there +it +me +on +could +small +may +calamity +last +covered +asthma +and +travel +prince +spring +and +all +snatching +at +moment +family +to +to +rattling +there +a +himself +saying +they +of +maybe +of +she +what +had +but +is +mouth +and +whom +for +he +ma +to +he +to +of +bring +were +conditions +the +door +what +looking +a +she +the +girls +management +obstacles +a +would +that +long +held +appreciate +universe +the +heard +and +a +only +of +when +else +to +in +of +he +can +legal +stone +knowing +on +case +little +and +supreme +play +my +in +a +the +en +the +realized +get +act +gt +had +count +age +to +stay +included +philadelphia +down +it +for +blow +put +metaphysical +ella +living +pouring +hands +one +responsible +even +landscapes +this +or +in +mile +word +of +face +over +despite +maybe +also +say +the +to +the +his +and +just +the +negates +is +in +sunday +me +oscillations +i +the +getting +hid +is +to +up +the +a +actions +glistening +is +were +sense +damages +i +finished +husserl +baby +i +insist +a +and +singing +under +sethe +your +make +looking +because +the +called +that +the +attraction +fate +the +because +quickly +she +its +wrong +for +those +ants +window +overloading +want +come +deserves +deformed +is +or +bed +before +position +there +his +his +recipient +it +see +in +and +was +and +felt +letting +a +with +saw +needing +the +wiki +stay +in +word +if +mars +only +our +out +she +be +prime +extra +so +is +do +kindness +up +of +gone +which +ribbon +there +terms +her +die +nobody +out +their +collecting +calls +here +i +accompany +claims +had +denver +well +anything +the +meaning +short +polish +by +be +you +two +but +drying +nietzsche +that +own +assume +each +i +me +her +sethe +the +you +am +criticized +same +sounds +forced +didn +happy +the +and +they +done +william +a +the +we +makes +hasty +were +interesting +or +sign +they +useless +her +christianity +sea +turned +day +clear +herself +wandering +cannot +sethe +intelligence +the +she +its +does +which +an +sethe +to +i +in +men +shared +longer +age +sun +and +eyes +in +derived +them +as +sniff +told +by +what +his +higher +father +before +little +these +from +is +weak +so +legal +plant +inspired +from +wanted +look +of +a +additional +but +little +but +of +it +places +life +can +the +to +she +janey +next +door +he +greatness +by +to +savoir +two +get +to +it +stroke +as +in +a +touch +assess +me +possible +white +it +his +sound +assumes +to +parallel +dogs +off +with +that +hurt +should +family +copy +they +stood +frowned +fear +his +a +lowest +deny +he +something +as +moment +him +enough +the +outside +was +sleep +left +at +rest +in +absolutely +denver +them +happen +gave +making +time +using +cement +all +it +as +front +just +was +not +serve +petrol +the +to +understanding +were +attitude +water +the +mountainside +pleasure +in +would +and +sethe +whipped +paul +harder +i +is +remind +moment +the +their +went +clothes +preached +were +it +so +inclined +when +integration +flavored +windows +missed +speak +to +general +enjoyed +followed +the +not +a +girl +loved +atmospheres +this +the +the +it +thing +spectacle +men +who +man +see +accumulated +take +in +if +nothing +a +wasn +a +the +law +however +one +the +roses +cool +i +the +and +he +what +sun +tight +work +only +off +would +denver +the +startling +halle +didn +scientists +again +little +he +the +seven +china +man +stroke +yard +would +just +is +have +human +he +eleven +to +beloved +would +who +milk +time +how +the +re +of +and +ice +get +wanted +don +low +slowly +rock +mother +hundred +and +and +junior +when +on +inflamed +sixo +bread +the +less +a +top +the +his +open +vineyards +at +them +side +time +soothed +roof +or +of +dusty +recollect +her +in +the +men +the +surrender +subtle +the +climate +took +went +boys +about +sixo +intact +while +hard +holding +that +at +to +especially +your +she +little +point +area +must +our +a +has +everything +a +with +hurriedly +productive +to +i +fact +is +didn +are +up +edged +past +or +they +of +hollow +and +stomped +a +i +recognized +by +on +taking +weeds +rarely +corner +linked +husband +sort +he +the +get +standard +who +memory +apart +the +no +standing +indeed +to +that +or +of +ignoring +did +his +able +life +rochester +gal +along +do +it +best +with +attention +he +loved +is +waters +and +some +to +essential +moisture +the +face +the +paradox +in +ears +kept +to +eyes +that +again +dug +of +taken +that +and +one +left +dying +i +she +it +watch +at +into +enter +to +another +our +mississippi +with +the +where +uncertainty +source +way +on +on +had +think +from +long +as +gives +long +the +qualities +nations +to +geography +to +then +galalith +for +to +by +behind +a +that +when +author +some +the +you +and +or +on +first +close +didn +nothing +money +one +days +through +planets +a +said +up +the +did +inside +conflict +there +to +fire +myself +finally +metaphysics +yet +at +with +are +parties +hall +she +would +vegetables +sky +being +they +look +question +her +but +would +is +dry +figure +delaware +it +said +panicked +through +virtue +at +little +could +fight +a +landscape +of +what +neither +on +of +effort +and +of +baby +thrilling +good +in +together +the +the +often +was +more +you +into +this +widely +that +hands +have +would +she +least +on +the +we +if +table +takes +ermine +therefore +he +and +in +then +blind +and +being +return +before +on +essential +been +smiles +ah +my +a +considered +good +hours +wherever +cough +the +happen +fact +he +wasn +against +released +the +proud +it +never +difficult +difficulty +place +running +by +intellectuals +i +million +you +truer +in +your +things +they +be +at +of +sunday +was +who +its +for +she +they +tell +to +in +shrugging +halle +might +have +nothingness +life +wouldn +the +were +he +flesh +did +the +but +did +affirmative +of +play +will +this +badly +that +could +juan +you +obvious +could +a +answer +or +distraction +paul +might +back +worst +lay +scared +hat +freedom +eyes +moved +does +very +see +got +values +of +persuade +above +these +paleness +you +driverless +three +the +red +the +took +had +wanted +told +men +the +not +and +full +is +it +then +life +didn +your +overpass +just +of +sweet +three +awaits +is +sizzling +because +a +will +mind +that +back +world +when +of +every +yards +santa +shared +eyes +discovered +and +the +the +stood +even +is +should +extremely +seem +had +wonderful +recognized +am +the +solidity +a +something +and +there +imperceptibly +the +defeated +the +and +how +held +admit +daily +strained +the +novel +with +least +world +messed +of +ran +expressive +he +the +and +he +field +it +couple +estimates +an +who +job +principles +feeling +hope +si +it +then +out +white +of +home +that +distinctions +their +leaned +account +a +to +wrote +so +to +feet +it +his +months +hear +if +for +that +her +way +want +limited +could +prince +and +two +the +explaining +the +i +the +nigger +the +she +forbid +things +him +caught +to +to +translate +you +that +you +saturday +not +take +horizon +sit +gregor +leaning +the +mr +which +rinsed +pulley +hair +of +hair +of +definitive +happened +stranger +already +days +must +light +hours +on +older +to +bad +a +little +laughed +went +your +and +the +of +was +his +shoes +are +nausea +stronger +finally +no +that +this +her +much +you +write +don +and +glorify +change +more +all +we +saw +the +girl +die +voice +graceful +which +baby +her +prince +him +out +only +don +at +at +are +timely +want +in +last +face +busy +of +suggs +she +ground +into +sample +causes +absurd +hidden +devil +not +her +fields +final +led +paid +that +much +his +white +himself +binary +of +even +good +between +time +the +grouping +always +we +is +if +patent +of +for +squint +while +the +if +mean +through +and +his +i +sharing +along +world +schoolteacher +as +indicates +him +was +to +children +snakes +woman +on +final +not +years +asked +jail +on +knew +shocking +more +the +time +accepts +came +causes +creatures +six +breathes +maintain +and +kindlin +contradictions +around +its +rough +very +legend +somewhere +to +whether +was +or +sure +it +we +but +high +thought +path +you +in +did +two +pause +thing +deepest +with +heavy +all +pioneered +met +a +skin +there +i +image +scrutiny +be +smashed +are +it +immediately +a +to +elude +came +had +mutter +with +some +preserve +she +by +and +bring +to +peg +unlikely +master +three +same +mother +nothing +understood +when +of +here +never +with +kitchen +anxious +this +tower +that +in +is +and +gentlemen +alert +to +in +felt +the +i +tended +a +would +you +let +men +especially +aspect +of +he +what +mass +got +he +second +distribute +pets +wear +knew +that +where +to +looked +a +of +miri +to +so +hours +to +the +made +had +time +her +having +as +i +year +spinning +never +incarcerated +atmospheres +skirt +parents +hurry +having +through +parts +hundreds +a +he +otherwise +lace +cadenced +in +but +and +represent +he +applause +than +the +world +where +notices +whole +a +from +data +slaughterhouse +they +like +like +sometimes +stand +the +are +nothing +groundlife +and +hard +paws +the +swayed +and +some +but +hard +a +learning +a +couldn +out +the +of +fighting +the +estimates +the +lay +way +day +up +point +of +there +as +work +taxon +there +hunted +water +too +to +motion +spoiled +to +to +his +parking +disappeared +entered +nice +somebody +resign +her +if +hours +somewhere +through +taught +father +here +slightly +step +you +colored +of +vehicles +he +sethe +prolixity +who +universe +was +morning +was +which +to +go +to +in +only +commitment +because +a +his +am +huckleberries +may +thought +far +his +neighbor +dripping +there +her +at +to +the +dogs +quit +to +account +there +just +meet +them +hard +or +is +than +is +to +to +they +the +is +the +eventually +good +hunted +magnificent +your +that +of +from +was +monsters +a +this +the +see +next +colored +a +of +space +good +i +her +to +the +ate +afford +had +weak +or +those +i +a +first +can +seriously +out +i +man +to +is +if +body +both +whom +standing +sight +very +in +looked +that +few +gave +race +threats +reflection +able +hi +was +do +made +sethe +can +but +visit +a +except +previous +alfred +said +two +sethe +cross +in +frowned +august +the +a +glance +niépce +in +it +work +boys +no +mercantile +though +joy +must +breathe +of +land +the +able +hateful +feel +her +now +thought +this diff --git a/model/data/all_words.txt b/model/data/all_words.txt index bb58e79..ef6ebe2 100644 --- a/model/data/all_words.txt +++ b/model/data/all_words.txt @@ -63911,3 +63911,155470 @@ he has come back +please +note +there +may +be +some +problems +with +paragraph +breaks +when +they +occur +just +keep +reading +toni +morrison +beloved +sixty +million +and +more +i +will +call +them +my +people +which +were +not +my +people +and +her +beloved +which +was +not +beloved +romans +book +one +chapter +was +spiteful +full +of +a +baby +s +venom +the +women +in +the +house +knew +it +and +so +did +the +children +for +years +each +put +up +with +the +spite +in +his +own +way +but +by +sethe +and +her +daughter +denver +were +its +only +victims +the +grandmother +baby +suggs +was +dead +and +the +sons +howard +and +buglar +had +run +away +by +the +time +they +were +thirteen +years +old +as +soon +as +merely +looking +in +a +mirror +shattered +it +that +was +the +signal +for +buglar +as +soon +as +two +tiny +hand +prints +appeared +in +the +cake +that +was +it +for +howard +neither +boy +waited +to +see +more +another +kettleful +of +chickpeas +smoking +in +a +heap +on +the +floor +soda +crackers +crumbled +and +strewn +in +a +line +next +to +the +door +sill +nor +did +they +wait +for +one +of +the +relief +periods +the +weeks +months +even +when +nothing +was +disturbed +no +each +one +fled +at +once +the +moment +the +house +committed +what +was +for +him +the +one +insult +not +to +be +borne +or +witnessed +a +second +time +within +two +months +in +the +dead +of +winter +leaving +their +grandmother +baby +suggs +sethe +their +mother +and +their +little +sister +denver +all +by +themselves +in +the +gray +and +white +house +on +bluestone +road +it +didn +t +have +a +number +then +because +cincinnati +didn +t +stretch +that +far +in +fact +ohio +had +been +calling +itself +a +state +only +seventy +years +when +first +one +brother +and +then +the +next +stuffed +quilt +packing +into +his +hat +snatched +up +his +shoes +and +crept +away +from +the +lively +spite +the +house +felt +for +them +baby +suggs +didn +t +even +raise +her +head +from +her +sickbed +she +heard +them +go +but +that +wasn +t +the +reason +she +lay +still +it +was +a +wonder +to +her +that +her +grandsons +had +taken +so +long +to +realize +that +every +house +wasn +t +like +the +one +on +bluestone +road +suspended +between +the +nas +tiness +of +life +and +the +meanness +of +the +dead +she +couldn +t +get +interested +in +leaving +life +or +living +it +let +alone +the +fright +of +two +creeping +off +boys +her +past +had +been +like +her +present +intolerable +and +since +she +knew +death +was +anything +but +forgetfulness +she +used +the +little +energy +left +her +for +pondering +color +bring +a +little +lavender +in +if +you +got +any +pink +if +you +don +t +and +sethe +would +oblige +her +with +anything +from +fabric +to +her +own +tongue +winter +in +ohio +was +especially +rough +if +you +had +an +appetite +for +color +sky +provided +the +only +drama +and +counting +on +a +cincinnati +horizon +for +life +s +principal +joy +was +reckless +indeed +so +sethe +and +the +girl +denver +did +what +they +could +and +what +the +house +permitted +for +her +together +they +waged +a +perfunctory +battle +against +the +outrageous +behavior +of +that +place +against +turned +over +slop +jars +smacks +on +the +behind +and +gusts +of +sour +air +for +they +understood +the +source +of +the +outrage +as +well +as +they +knew +the +source +of +light +baby +suggs +died +shortly +after +the +brothers +left +with +no +interest +whatsoever +in +their +leave +taking +or +hers +and +right +afterward +sethe +and +denver +decided +to +end +the +persecution +by +calling +forth +the +ghost +that +tried +them +so +perhaps +a +conversation +they +thought +an +exchange +of +views +or +something +would +help +so +they +held +hands +and +said +come +on +come +on +you +may +as +well +just +come +on +the +sideboard +took +a +step +forward +but +nothing +else +did +grandma +baby +must +be +stopping +it +said +denver +she +was +ten +and +still +mad +at +baby +suggs +for +dying +sethe +opened +her +eyes +i +doubt +that +she +said +then +why +don +t +it +come +you +forgetting +how +little +it +is +said +her +mother +she +wasn +t +even +two +years +old +when +she +died +too +little +to +understand +too +little +to +talk +much +even +maybe +she +don +t +want +to +understand +said +denver +maybe +but +if +she +d +only +come +i +could +make +it +clear +to +her +sethe +released +her +daughter +s +hand +and +together +they +pushed +the +sideboard +back +against +the +wall +outside +a +driver +whipped +his +horse +into +the +gallop +local +people +felt +necessary +when +they +passed +for +a +baby +she +throws +a +powerful +spell +said +denver +no +more +powerful +than +the +way +i +loved +her +sethe +answered +and +there +it +was +again +the +welcoming +cool +of +unchiseled +headstones +the +one +she +selected +to +lean +against +on +tiptoe +her +knees +wide +open +as +any +grave +pink +as +a +fingernail +it +was +and +sprinkled +with +glittering +chips +ten +minutes +he +said +you +got +ten +minutes +i +ll +do +it +for +free +ten +minutes +for +seven +letters +with +another +ten +could +she +have +gotten +dearly +too +she +had +not +thought +to +ask +him +and +it +bothered +her +still +that +it +might +have +been +possible +that +for +twenty +minutes +a +half +hour +say +she +could +have +had +the +whole +thing +every +word +she +heard +the +preacher +say +at +the +funeral +and +all +there +was +to +say +surely +engraved +on +her +baby +s +headstone +dearly +beloved +but +what +she +got +settled +for +was +the +one +word +that +mattered +she +thought +it +would +be +enough +rutting +among +the +headstones +with +the +engraver +his +young +son +looking +on +the +anger +in +his +face +so +old +the +appetite +in +it +quite +new +that +should +certainly +be +enough +enough +to +answer +one +more +preacher +one +more +abolitionist +and +a +town +full +of +disgust +counting +on +the +stillness +of +her +own +soul +she +had +forgotten +the +other +one +the +soul +of +her +baby +girl +who +would +have +thought +that +a +little +old +baby +could +harbor +so +much +rage +rutting +among +the +stones +under +the +eyes +of +the +engraver +s +son +was +not +enough +not +only +did +she +have +to +live +out +her +years +in +a +house +palsied +by +the +baby +s +fury +at +having +its +throat +cut +but +those +ten +minutes +she +spent +pressed +up +against +dawn +colored +stone +studded +with +star +chips +her +knees +wide +open +as +the +grave +were +longer +than +life +more +alive +more +pulsating +than +the +baby +blood +that +soaked +her +fingers +like +oil +we +could +move +she +suggested +once +to +her +mother +in +law +what +d +be +the +point +asked +baby +suggs +not +a +house +in +the +country +ain +t +packed +to +its +rafters +with +some +dead +negro +s +grief +we +lucky +this +ghost +is +a +baby +my +husband +s +spirit +was +to +come +back +in +here +or +yours +don +t +talk +to +me +you +lucky +you +got +three +left +three +pulling +at +your +skirts +and +just +one +raising +hell +from +the +other +side +be +thankful +why +don +t +you +i +had +eight +every +one +of +them +gone +away +from +me +four +taken +four +chased +and +all +i +expect +worrying +somebody +s +house +into +evil +baby +suggs +rubbed +her +eyebrows +my +first +born +all +i +can +remember +of +her +is +how +she +loved +the +burned +bottom +of +bread +can +you +beat +that +eight +children +and +that +s +all +i +remember +that +s +all +you +let +yourself +remember +sethe +had +told +her +but +she +was +down +to +one +herself +one +alive +that +is +the +boys +chased +off +by +the +dead +one +and +her +memory +of +buglar +was +fading +fast +howard +at +least +had +a +head +shape +nobody +could +forget +as +for +the +rest +she +worked +hard +to +remember +as +close +to +nothing +as +was +safe +unfortunately +her +brain +was +devious +she +might +be +hurrying +across +a +field +running +practically +to +get +to +the +pump +quickly +and +rinse +the +chamomile +sap +from +her +legs +nothing +else +would +be +in +her +mind +the +picture +of +the +men +coming +to +nurse +her +was +as +lifeless +as +the +nerves +in +her +back +where +the +skin +buckled +like +a +washboard +nor +was +there +the +faintest +scent +of +ink +or +the +cherry +gum +and +oak +bark +from +which +it +was +made +nothing +just +the +breeze +cooling +her +face +as +she +rushed +toward +water +and +then +sopping +the +chamomile +away +with +pump +water +and +rags +her +mind +fixed +on +getting +every +last +bit +of +sap +off +on +her +carelessness +in +taking +a +shortcut +across +the +field +just +to +save +a +half +mile +and +not +noticing +how +high +the +weeds +had +grown +until +the +itching +was +all +the +way +to +her +knees +then +something +the +plash +of +water +the +sight +of +her +shoes +and +stockings +awry +on +the +path +where +she +had +flung +them +or +here +boy +lapping +in +the +puddle +near +her +feet +and +suddenly +there +was +sweet +home +rolling +rolling +rolling +out +before +her +eyes +and +although +there +was +not +a +leaf +on +that +farm +that +did +not +make +her +want +to +scream +it +rolled +itself +out +before +her +in +shameless +beauty +it +never +looked +as +terrible +as +it +was +and +it +made +her +wonder +if +hell +was +a +pretty +place +too +fire +and +brimstone +all +right +but +hidden +in +lacy +groves +boys +hanging +from +the +most +beautiful +sycamores +in +the +world +it +shamed +her +remembering +the +wonderful +soughing +trees +rather +than +the +boys +try +as +she +might +to +make +it +otherwise +the +sycamores +beat +out +the +children +every +time +and +she +could +not +forgive +her +memory +for +that +when +the +last +of +the +chamomile +was +gone +she +went +around +to +the +front +of +the +house +collecting +her +shoes +and +stockings +on +the +way +as +if +to +punish +her +further +for +her +terrible +memory +sitting +on +the +porch +not +forty +feet +away +was +paul +d +the +last +of +the +sweet +home +men +and +although +she +she +said +is +that +you +what +s +left +he +stood +up +and +smiled +how +you +been +girl +besides +barefoot +when +she +laughed +it +came +out +loose +and +young +messed +up +my +legs +back +yonder +chamomile +he +made +a +face +as +though +tasting +a +teaspoon +of +something +bitter +i +don +t +want +to +even +hear +bout +it +always +did +hate +that +stuff +sethe +balled +up +her +stockings +and +jammed +them +into +her +pocket +come +on +in +porch +is +fine +sethe +cool +out +here +he +sat +back +down +and +looked +at +the +meadow +on +the +other +side +of +the +road +knowing +the +eagerness +he +felt +would +be +in +his +eyes +eighteen +years +she +said +softly +eighteen +he +repeated +and +i +swear +i +been +walking +every +one +of +em +mind +if +i +join +you +he +nodded +toward +her +feet +and +began +unlacing +his +shoes +you +want +to +soak +them +let +me +get +you +a +basin +of +water +she +moved +closer +to +him +to +enter +the +house +no +uh +uh +can +t +baby +feet +a +whole +lot +more +tramping +they +got +to +do +yet +you +can +t +leave +right +away +paul +d +you +got +to +stay +awhile +well +long +enough +to +see +baby +suggs +anyway +where +is +she +dead +aw +no +when +eight +years +now +almost +nine +was +it +hard +i +hope +she +didn +t +die +hard +sethe +shook +her +head +soft +as +cream +being +alive +was +the +hard +part +sorry +you +missed +her +though +is +that +what +you +came +by +for +that +s +some +of +what +i +came +for +the +rest +is +you +but +if +all +the +truth +be +known +i +go +anywhere +these +days +anywhere +they +let +me +sit +down +you +looking +good +devil +s +confusion +he +lets +me +look +good +long +as +i +feel +bad +he +looked +at +her +and +the +word +bad +took +on +another +meaning +sethe +smiled +this +is +the +way +they +were +had +been +all +of +the +sweet +home +men +before +and +after +halle +treated +her +to +a +mild +brotherly +flirtation +so +subtle +you +had +to +scratch +for +it +except +for +a +heap +more +hair +and +some +waiting +in +his +eyes +he +looked +the +way +he +had +in +kentucky +peachstone +skin +straight +backed +for +a +man +with +an +immobile +face +it +was +amazing +how +ready +it +was +to +smile +or +blaze +or +be +sorry +with +you +as +though +all +you +had +to +do +was +get +his +attention +and +right +away +he +produced +the +feeling +you +were +feeling +with +less +than +a +blink +his +face +seemed +to +change +underneath +it +lay +the +activity +i +wouldn +t +have +to +ask +about +him +would +i +you +d +tell +me +if +there +was +anything +to +tell +wouldn +t +you +sethe +looked +down +at +her +feet +and +saw +again +the +sycamores +i +d +tell +you +sure +i +d +tell +you +i +don +t +know +any +more +now +than +i +did +then +except +for +the +churn +he +thought +and +you +don +t +need +to +know +that +you +must +think +he +s +still +alive +no +i +think +he +s +dead +it +s +not +being +sure +that +keeps +him +alive +what +did +baby +suggs +think +same +but +to +listen +to +her +all +her +children +is +dead +claimed +she +felt +each +one +go +the +very +day +and +hour +when +she +say +halle +went +eighteen +fifty +five +the +day +my +baby +was +born +you +had +that +baby +did +you +never +thought +you +d +make +it +he +chuckled +running +off +pregnant +had +to +couldn +t +be +no +waiting +she +lowered +her +head +and +thought +as +he +did +how +unlikely +it +was +that +she +had +made +it +and +if +it +hadn +t +been +for +that +girl +looking +for +velvet +she +never +would +have +all +by +yourself +too +he +was +proud +of +her +and +annoyed +by +her +proud +she +had +done +it +annoyed +that +she +had +not +needed +halle +or +him +in +the +doing +almost +by +myself +not +all +by +myself +a +whitegirl +helped +me +then +she +helped +herself +too +god +bless +her +you +could +stay +the +night +paul +d +you +don +t +sound +too +steady +in +the +offer +sethe +glanced +beyond +his +shoulder +toward +the +closed +door +oh +it +s +truly +meant +i +just +hope +you +ll +pardon +my +house +come +on +in +talk +to +denver +while +i +cook +you +something +paul +d +tied +his +shoes +together +hung +them +over +his +shoulder +and +followed +her +through +the +door +straight +into +a +pool +of +red +and +undulating +light +that +locked +him +where +he +stood +you +got +company +he +whispered +frowning +off +and +on +said +sethe +good +god +he +backed +out +the +door +onto +the +porch +what +kind +of +evil +you +got +in +here +it +s +not +evil +just +sad +come +on +just +step +through +he +looked +at +her +then +closely +closer +than +he +had +when +she +first +rounded +the +house +on +wet +and +shining +legs +holding +her +shoes +and +stockings +up +in +one +hand +her +skirts +in +the +other +halle +s +girl +the +one +with +iron +eyes +and +backbone +to +match +he +had +never +seen +her +hair +in +kentucky +and +though +her +face +was +eighteen +years +older +than +when +last +he +saw +her +it +was +softer +now +because +of +the +hair +a +face +too +still +for +comfort +irises +the +same +color +as +her +skin +which +in +that +still +face +used +to +make +him +think +of +a +mask +with +mercifully +punched +out +eyes +halle +s +woman +pregnant +every +year +including +the +year +she +sat +by +the +fire +telling +him +she +was +going +to +run +her +three +children +she +had +already +packed +into +a +wagonload +of +others +in +a +caravan +of +negroes +crossing +the +river +they +were +to +be +left +with +halle +s +mother +near +cincinnati +even +in +that +tiny +shack +leaning +so +close +to +the +fire +you +could +smell +the +heat +in +her +dress +her +eyes +did +not +pick +up +a +flicker +of +light +they +were +like +two +wells +into +which +he +had +trouble +gazing +even +punched +out +they +needed +to +be +covered +lidded +marked +with +some +sign +to +warn +folks +of +what +that +emptiness +held +so +he +looked +instead +at +the +fire +while +she +told +him +because +her +husband +was +not +there +for +the +telling +mr +garner +was +dead +and +his +wife +had +a +lump +in +her +neck +the +size +of +a +sweet +potato +and +unable +to +speak +to +anyone +she +leaned +as +close +to +the +fire +as +her +pregnant +belly +allowed +and +told +him +paul +d +the +last +of +the +sweet +home +men +there +had +been +six +of +them +who +belonged +to +the +farm +sethe +the +only +female +mrs +garner +crying +like +a +baby +had +sold +his +brother +to +pay +off +the +debts +that +surfaced +the +minute +she +was +widowed +then +schoolteacher +arrived +to +put +things +in +order +but +what +he +did +broke +three +more +sweet +home +men +and +punched +the +glittering +iron +out +of +sethe +s +eyes +leaving +two +open +wells +that +did +not +reflect +firelight +now +the +iron +was +back +but +the +face +softened +by +hair +made +him +trust +her +enough +to +step +inside +her +door +smack +into +a +pool +of +pulsing +red +light +she +was +right +it +was +sad +walking +through +it +a +wave +of +grief +soaked +him +so +thoroughly +he +wanted +to +cry +it +seemed +a +long +way +to +the +normal +light +surrounding +the +table +but +he +made +it +dry +eyed +and +lucky +you +said +she +died +soft +soft +as +cream +he +reminded +her +that +s +not +baby +suggs +she +said +who +then +my +daughter +the +one +i +sent +ahead +with +the +boys +she +didn +t +live +no +the +one +i +was +carrying +when +i +run +away +is +all +i +got +left +boys +gone +too +both +of +em +walked +off +just +before +baby +suggs +died +paul +d +looked +at +the +spot +where +the +grief +had +soaked +him +the +red +was +gone +but +a +kind +of +weeping +clung +to +the +air +where +it +had +been +probably +best +he +thought +if +a +negro +got +legs +he +ought +to +use +them +sit +down +too +long +somebody +will +figure +out +a +way +to +tie +them +up +still +if +her +boys +were +gone +no +man +you +here +by +yourself +me +and +denver +she +said +that +all +right +by +you +that +s +all +right +by +me +she +saw +his +skepticism +and +went +on +i +cook +at +a +restaurant +in +town +and +i +sew +a +little +on +the +sly +paul +d +smiled +then +remembering +the +bedding +dress +sethe +was +thirteen +when +she +came +to +sweet +home +and +already +iron +eyed +she +was +a +timely +present +for +mrs +garner +who +had +lost +baby +suggs +to +her +husband +s +high +principles +the +five +sweet +home +men +looked +at +the +new +girl +and +decided +to +let +her +be +they +were +young +and +so +sick +with +the +absence +of +women +they +had +taken +to +calves +yet +they +let +the +iron +eyed +girl +be +so +she +could +choose +in +spite +of +the +fact +that +each +one +would +have +beaten +the +others +to +mush +to +have +her +it +took +her +a +year +to +choose +a +long +tough +year +of +thrashing +on +pallets +eaten +up +with +dreams +of +her +a +year +of +yearning +when +rape +seemed +the +solitary +gift +of +life +the +restraint +they +had +exercised +possible +only +because +they +were +sweet +home +men +the +ones +mr +garner +bragged +about +while +other +farmers +shook +their +heads +in +warning +at +the +phrase +y +all +got +boys +he +told +them +young +boys +old +boys +picky +boys +stroppin +boys +now +at +sweet +home +my +niggers +is +men +every +one +of +em +bought +em +thataway +raised +em +thataway +men +every +one +beg +to +differ +garner +ain +t +no +nigger +men +not +if +you +scared +they +ain +t +garner +s +smile +was +wide +but +if +you +a +man +yourself +you +ll +want +your +niggers +to +be +men +too +i +wouldn +t +have +no +nigger +men +round +my +wife +it +was +the +reaction +garner +loved +and +waited +for +neither +would +i +he +said +neither +would +i +and +there +was +always +a +pause +before +the +neighbor +or +stranger +or +peddler +or +brother +in +law +or +whoever +it +was +got +the +meaning +then +a +fierce +argument +sometimes +a +fight +and +garner +came +home +bruised +and +pleased +having +demonstrated +one +more +time +what +a +real +kentuckian +was +one +tough +enough +and +smart +enough +to +make +and +call +his +own +niggers +men +and +so +they +were +paul +d +garner +paul +f +garner +paul +a +garner +halle +suggs +and +sixo +the +wild +man +all +in +their +twenties +minus +women +fucking +cows +dreaming +of +rape +thrashing +on +pallets +rubbing +their +thighs +and +waiting +for +the +new +girl +the +one +who +took +baby +suggs +place +after +halle +bought +her +with +five +years +of +sundays +maybe +that +was +why +she +chose +him +a +twenty +year +old +man +so +in +love +with +his +mother +he +gave +up +five +years +of +sabbaths +just +to +see +her +sit +down +for +a +change +was +a +serious +recommendation +she +waited +a +year +and +the +sweet +home +men +abused +cows +while +they +waited +with +her +she +chose +halle +and +for +their +first +bedding +she +sewed +herself +a +dress +on +the +sly +won +t +you +stay +on +awhile +can +t +nobody +catch +up +on +eighteen +years +in +a +day +out +of +the +dimness +of +the +room +in +which +they +sat +a +white +staircase +climbed +toward +the +blue +and +white +wallpaper +of +the +second +floor +paul +d +could +see +just +the +beginning +of +the +paper +discreet +flecks +of +yellow +sprinkled +among +a +blizzard +of +snowdrops +all +backed +by +blue +the +luminous +white +of +the +railing +and +steps +kept +him +glancing +toward +it +every +sense +he +had +told +him +the +air +above +the +stairwell +was +charmed +and +very +thin +but +the +girl +who +walked +down +out +of +that +air +was +round +and +brown +with +the +face +of +an +alert +doll +paul +d +looked +at +the +girl +and +then +at +sethe +who +smiled +saying +here +she +is +my +denver +this +is +paul +d +honey +from +sweet +home +good +morning +mr +d +garner +baby +paul +d +garner +yes +sir +glad +to +get +a +look +at +you +last +time +i +saw +your +mama +you +were +pushing +out +the +front +of +her +dress +still +is +sethe +smiled +provided +she +can +get +in +it +denver +stood +on +the +bottom +step +and +was +suddenly +hot +and +shy +it +had +been +a +long +time +since +anybody +good +willed +whitewoman +preacher +speaker +or +newspaperman +sat +at +their +table +their +sympathetic +voices +called +liar +by +the +revulsion +in +their +eyes +for +twelve +years +long +before +grandma +baby +died +there +had +been +no +visitors +of +any +sort +and +certainly +no +friends +no +coloredpeople +certainly +no +hazelnut +man +with +too +long +hair +and +no +notebook +no +charcoal +no +oranges +no +questions +someone +her +mother +wanted +to +talk +to +and +would +even +consider +talking +to +while +barefoot +looking +in +fact +acting +like +a +girl +instead +of +the +quiet +queenly +woman +denver +had +known +all +her +life +the +one +who +never +looked +away +who +when +a +man +got +stomped +to +death +by +a +mare +right +in +front +of +sawyer +s +restaurant +did +not +look +away +and +when +a +sow +began +eating +her +own +litter +did +not +look +away +then +either +and +when +the +baby +s +spirit +picked +up +here +boy +and +slammed +him +into +the +wall +hard +enough +to +break +two +of +his +legs +and +dislocate +his +eye +so +hard +he +went +into +convulsions +and +chewed +up +his +tongue +still +her +mother +had +not +looked +away +she +had +taken +a +hammer +knocked +the +dog +unconscious +wiped +away +the +blood +and +saliva +pushed +his +eye +back +in +his +head +and +set +his +leg +bones +he +recovered +mute +and +off +balance +more +because +of +his +untrustworthy +eye +than +his +bent +legs +and +winter +summer +drizzle +or +dry +nothing +could +persuade +him +to +enter +the +house +again +now +here +was +this +woman +with +the +presence +of +mind +to +repair +a +dog +gone +savage +with +pain +rocking +her +crossed +ankles +and +looking +away +from +her +own +daughter +s +body +as +though +the +size +of +it +was +more +than +vision +could +bear +and +neither +she +nor +he +had +on +shoes +hot +shy +now +denver +was +lonely +all +that +leaving +first +her +brothers +then +her +grandmother +serious +losses +since +there +were +no +children +willing +to +circle +her +in +a +game +or +hang +by +their +knees +from +her +porch +railing +none +of +that +had +mattered +as +long +as +her +mother +did +not +look +away +as +she +was +doing +now +making +denver +long +downright +long +for +a +sign +of +spite +from +the +baby +ghost +she +s +a +fine +looking +young +lady +said +paul +d +fine +looking +got +her +daddy +s +sweet +face +you +know +my +father +knew +him +knew +him +well +did +he +ma +am +denver +fought +an +urge +to +realign +her +affection +of +course +he +knew +your +daddy +i +told +you +he +s +from +sweet +home +denver +sat +down +on +the +bottom +step +there +was +nowhere +else +gracefully +to +go +they +were +a +twosome +saying +your +daddy +and +sweet +home +in +a +way +that +made +it +clear +both +belonged +to +them +and +not +to +her +that +her +own +father +s +absence +was +not +hers +once +the +absence +had +belonged +to +grandma +baby +a +son +deeply +mourned +because +he +was +the +one +who +had +bought +her +out +of +there +then +it +was +her +mother +s +absent +husband +now +it +was +this +hazelnut +stranger +s +absent +friend +only +those +who +knew +him +knew +him +well +could +claim +his +absence +for +themselves +just +as +only +those +who +lived +in +sweet +home +could +remember +it +whisper +it +and +glance +sideways +at +one +another +while +they +did +again +she +wished +for +the +baby +ghost +its +anger +thrilling +her +now +where +it +used +to +wear +her +out +wear +her +out +we +have +a +ghost +in +here +she +said +and +it +worked +they +were +not +a +twosome +anymore +her +mother +left +off +swinging +her +feet +and +being +girlish +memory +of +sweet +home +dropped +away +from +the +eyes +of +the +man +she +was +being +girlish +for +he +looked +quickly +up +the +lightning +white +stairs +behind +her +so +i +hear +he +said +but +sad +your +mama +said +not +evil +no +sir +said +denver +not +evil +but +not +sad +either +what +then +rebuked +lonely +and +rebuked +is +that +right +paul +d +turned +to +sethe +i +don +t +know +about +lonely +said +denver +s +mother +mad +maybe +but +i +don +t +see +how +it +could +be +lonely +spending +every +minute +with +us +like +it +does +must +be +something +you +got +it +wants +sethe +shrugged +it +s +just +a +baby +my +sister +said +denver +she +died +in +this +house +paul +d +scratched +the +hair +under +his +jaw +reminds +me +of +that +headless +bride +back +behind +sweet +home +remember +that +sethe +used +to +roam +them +woods +regular +how +could +i +forget +worrisome +how +come +everybody +run +off +from +sweet +home +can +t +stop +talking +about +it +look +like +if +it +was +so +sweet +you +would +have +stayed +girl +who +you +talking +to +paul +d +laughed +true +true +she +s +right +sethe +it +wasn +t +sweet +and +it +sure +wasn +t +home +he +shook +his +head +but +it +s +where +we +were +said +sethe +all +together +comes +back +whether +we +want +it +to +or +not +she +shivered +a +little +a +light +ripple +of +skin +on +her +arm +which +she +caressed +back +into +sleep +denver +she +said +start +up +that +stove +can +t +have +a +friend +stop +by +and +don +t +feed +him +don +t +go +to +any +trouble +on +my +account +paul +d +said +bread +ain +t +trouble +the +rest +i +brought +back +from +where +i +work +least +i +can +do +cooking +from +dawn +to +noon +is +bring +dinner +home +you +got +any +objections +to +pike +if +he +don +t +object +to +me +i +don +t +object +to +him +at +it +again +thought +denver +her +back +to +them +she +jostled +the +kindlin +and +almost +lost +the +fire +why +don +t +you +spend +the +night +mr +garner +you +and +ma +am +can +talk +about +sweet +home +all +night +long +sethe +took +two +swift +steps +to +the +stove +but +before +she +could +yank +denver +s +collar +the +girl +leaned +forward +and +began +to +cry +what +is +the +matter +with +you +i +never +knew +you +to +behave +this +way +leave +her +be +said +paul +d +i +m +a +stranger +to +her +that +s +just +it +she +got +no +cause +to +act +up +with +a +stranger +oh +baby +what +is +it +did +something +happen +but +denver +was +shaking +now +and +sobbing +so +she +could +not +speak +the +tears +she +had +not +shed +for +nine +years +wetting +her +far +too +womanly +breasts +i +can +t +no +more +i +can +t +no +more +can +t +what +what +can +t +you +i +can +t +live +here +i +don +t +know +where +to +go +or +what +to +do +but +i +can +t +live +here +nobody +speaks +to +us +nobody +comes +by +boys +don +t +like +me +girls +don +t +either +honey +honey +what +s +she +talking +bout +nobody +speaks +to +you +asked +paul +d +it +s +the +house +people +don +t +it +s +not +it +s +not +the +house +it +s +us +and +it +s +you +denver +leave +off +sethe +it +s +hard +for +a +young +girl +living +in +a +haunted +house +that +can +t +be +easy +it +s +easier +than +some +other +things +think +sethe +i +m +a +grown +man +with +nothing +new +left +to +see +or +do +and +i +m +telling +you +it +ain +t +easy +maybe +you +all +ought +to +move +who +owns +this +house +over +denver +s +shoulder +sethe +shot +paul +d +a +look +of +snow +what +you +care +they +won +t +let +you +leave +no +sethe +no +moving +no +leaving +it +s +all +right +the +way +it +is +you +going +to +tell +me +it +s +all +right +with +this +child +half +out +of +her +mind +something +in +the +house +braced +and +in +the +listening +quiet +that +followed +sethe +spoke +i +got +a +tree +on +my +back +and +a +haint +in +my +house +and +nothing +in +between +but +the +daughter +i +am +holding +in +my +arms +no +more +running +from +nothing +i +will +never +run +from +another +thing +on +this +earth +i +took +one +journey +and +i +paid +for +the +ticket +but +let +me +tell +you +something +paul +d +garner +it +cost +too +much +do +you +hear +me +it +cost +too +much +now +sit +down +and +eat +with +us +or +leave +us +be +paul +d +fished +in +his +vest +for +a +little +pouch +of +tobacco +concentrating +on +its +contents +and +the +knot +of +its +string +while +sethe +led +denver +into +the +keeping +room +that +opened +off +the +large +room +he +was +sitting +in +he +had +no +smoking +papers +so +he +fiddled +with +the +pouch +and +listened +through +the +open +door +to +sethe +quieting +her +daughter +when +she +came +back +she +avoided +his +look +and +went +straight +to +a +small +table +next +to +the +stove +her +back +was +to +him +and +he +could +see +all +the +hair +he +wanted +without +the +distraction +of +her +face +what +tree +on +your +back +huh +sethe +put +a +bowl +on +the +table +and +reached +under +it +for +flour +what +tree +on +your +back +is +something +growing +on +your +back +i +don +t +see +nothing +growing +on +your +back +it +s +there +all +the +same +who +told +you +that +whitegirl +that +s +what +she +called +it +i +ve +never +seen +it +and +never +will +but +that +s +what +she +said +it +looked +like +a +chokecherry +tree +trunk +branches +and +even +leaves +tiny +little +chokecherry +leaves +but +that +was +eighteen +years +ago +could +have +cherries +too +now +for +all +i +know +sethe +took +a +little +spit +from +the +tip +of +her +tongue +with +her +forefinger +quickly +lightly +she +touched +the +stove +then +she +trailed +her +fingers +through +the +flour +parting +separating +small +hills +and +ridges +of +it +looking +for +mites +finding +none +she +poured +soda +and +salt +into +the +crease +of +her +folded +hand +and +tossed +both +into +the +flour +then +she +reached +into +a +can +and +scooped +half +a +handful +of +lard +deftly +she +squeezed +the +flour +through +it +then +with +her +left +hand +sprinkling +water +she +formed +the +dough +i +had +milk +she +said +i +was +pregnant +with +denver +but +i +had +milk +for +my +baby +girl +i +hadn +t +stopped +nursing +her +when +i +sent +her +on +ahead +with +howard +and +buglar +now +she +rolled +the +dough +out +with +a +wooden +pin +anybody +could +smell +me +long +before +he +saw +me +and +when +he +saw +me +he +d +see +the +drops +of +it +on +the +front +of +my +dress +nothing +i +could +do +about +that +all +i +knew +was +i +had +to +get +my +milk +to +my +baby +girl +nobody +was +going +to +nurse +her +like +me +nobody +was +going +to +get +it +to +her +fast +enough +or +take +it +away +when +she +had +enough +and +didn +t +know +it +nobody +knew +that +she +couldn +t +pass +her +air +if +you +held +her +up +on +your +shoulder +only +if +she +was +lying +on +my +knees +nobody +knew +that +but +me +and +nobody +had +her +milk +but +me +i +told +that +to +the +women +in +the +wagon +told +them +to +put +sugar +water +in +cloth +to +suck +from +so +when +i +got +there +in +a +few +days +she +wouldn +t +have +forgot +me +the +milk +would +be +there +and +i +would +be +there +with +it +men +don +t +know +nothing +much +said +paul +d +tucking +his +pouch +back +into +his +vest +pocket +but +they +do +know +a +suckling +can +t +be +away +from +its +mother +for +long +then +they +know +what +it +s +like +to +send +your +children +off +when +your +breasts +are +full +we +was +talking +bout +a +tree +sethe +after +i +left +you +those +boys +came +in +there +and +took +my +milk +that +s +what +they +came +in +there +for +held +me +down +and +took +it +i +told +mrs +garner +on +em +she +had +that +lump +and +couldn +t +speak +but +her +eyes +rolled +out +tears +them +boys +found +out +i +told +on +em +schoolteacher +made +one +open +up +my +back +and +when +it +closed +it +made +a +tree +it +grows +there +still +they +used +cowhide +on +you +and +they +took +my +milk +they +beat +you +and +you +was +pregnant +and +they +took +my +milk +the +fat +white +circles +of +dough +lined +the +pan +in +rows +once +more +sethe +touched +a +wet +forefinger +to +the +stove +she +opened +the +oven +door +and +slid +the +pan +of +biscuits +in +as +she +raised +up +from +the +heat +she +felt +paul +d +behind +her +and +his +hands +under +her +breasts +she +straightened +up +and +knew +but +could +not +feel +that +his +cheek +was +pressing +into +the +branches +of +her +chokecherry +tree +not +even +trying +he +had +become +the +kind +of +man +who +could +walk +into +a +house +and +make +the +women +cry +because +with +him +in +his +presence +they +could +there +was +something +blessed +in +his +manner +women +saw +him +and +wanted +to +weep +to +tell +him +that +their +chest +hurt +and +their +knees +did +too +strong +women +and +wise +saw +him +and +told +him +things +they +only +told +each +other +that +way +past +the +change +of +life +desire +in +them +had +suddenly +become +enormous +greedy +more +savage +than +when +they +were +fifteen +and +that +it +embarrassed +them +and +made +them +sad +that +secretly +they +longed +to +die +to +be +quit +of +it +that +sleep +was +more +precious +to +them +than +any +waking +day +young +girls +sidled +up +to +him +to +confess +or +describe +how +well +dressed +the +visitations +were +that +had +followed +them +straight +from +their +dreams +therefore +although +he +did +not +understand +why +this +was +so +he +was +not +surprised +when +denver +dripped +tears +into +the +stovefire +nor +fifteen +minutes +later +after +telling +him +about +her +stolen +milk +her +mother +wept +as +well +behind +her +bending +down +his +body +an +arc +of +kindness +he +held +her +breasts +in +the +palms +of +his +hands +he +rubbed +his +cheek +on +her +back +and +learned +that +way +her +sorrow +the +roots +of +it +its +wide +trunk +and +intricate +branches +raising +his +fingers +to +the +hooks +of +her +dress +he +knew +without +seeing +them +or +hearing +any +sigh +that +the +tears +were +coming +fast +and +when +the +top +of +her +dress +was +around +her +hips +and +he +saw +the +sculpture +her +back +had +become +like +the +decorative +work +of +an +ironsmith +too +passionate +for +display +he +could +think +but +not +say +aw +lord +girl +and +he +would +tolerate +no +peace +until +he +had +touched +every +ridge +and +leaf +of +it +with +his +mouth +none +of +which +sethe +could +feel +because +her +back +skin +had +been +dead +for +years +what +she +knew +was +that +the +responsibility +for +her +breasts +at +last +was +in +somebody +else +s +hands +would +there +be +a +little +space +she +wondered +a +little +time +some +way +to +hold +off +eventfulness +to +push +busyness +into +the +corners +of +the +room +and +just +stand +there +a +minute +or +two +naked +from +shoulder +blade +to +waist +relieved +of +the +weight +of +her +breasts +smelling +the +stolen +milk +again +and +the +pleasure +of +baking +bread +maybe +this +one +time +she +could +stop +dead +still +in +the +middle +of +a +cooking +meal +not +even +leave +the +stove +and +feel +the +hurt +her +back +ought +to +trust +things +and +remember +things +because +the +last +of +the +sweet +home +men +was +there +to +catch +her +if +she +sank +the +stove +didn +t +shudder +as +it +adjusted +to +its +heat +denver +wasn +t +stirring +in +the +next +room +the +pulse +of +red +light +hadn +t +come +back +and +paul +d +had +not +trembled +since +and +then +for +eighty +three +days +in +a +row +locked +up +and +chained +down +his +hands +shook +so +bad +he +couldn +t +smoke +or +even +scratch +properly +now +he +was +trembling +again +but +in +the +legs +this +time +it +took +him +a +while +to +realize +that +his +legs +were +not +shaking +because +of +worry +but +because +the +floorboards +were +and +the +grinding +shoving +floor +was +only +part +of +it +the +house +itself +was +pitching +sethe +slid +to +the +floor +and +struggled +to +get +back +into +her +dress +while +down +on +all +fours +as +though +she +were +holding +her +house +down +on +the +ground +denver +burst +from +the +keeping +room +terror +in +her +eyes +a +vague +smile +on +her +lips +god +damn +it +hush +up +paul +d +was +shouting +falling +reaching +for +anchor +leave +the +place +alone +get +the +hell +out +a +table +rushed +toward +him +and +he +grabbed +its +leg +somehow +he +managed +to +stand +at +an +angle +and +holding +the +table +by +two +legs +he +bashed +it +about +wrecking +everything +screaming +back +at +the +screaming +house +you +want +to +fight +come +on +god +damn +it +she +got +enough +without +you +she +got +enough +the +quaking +slowed +to +an +occasional +lurch +but +paul +d +did +not +stop +whipping +the +table +around +until +everything +was +rock +quiet +sweating +and +breathing +hard +he +leaned +against +the +wall +in +the +space +the +sideboard +left +sethe +was +still +crouched +next +to +the +stove +clutching +her +salvaged +shoes +to +her +chest +the +three +of +them +sethe +denver +and +paul +d +breathed +to +the +same +beat +like +one +tired +person +another +breathing +was +just +as +tired +it +was +gone +denver +wandered +through +the +silence +to +the +stove +she +ashed +over +the +fire +and +pulled +the +pan +of +biscuits +from +the +oven +the +jelly +cupboard +was +on +its +back +its +contents +lying +in +a +heap +in +the +corner +of +the +bottom +shelf +she +took +out +a +jar +and +looking +around +for +a +plate +found +half +of +one +by +the +door +these +things +she +carried +out +to +the +porch +steps +where +she +sat +down +the +two +of +them +had +gone +up +there +stepping +lightly +easy +footed +they +had +climbed +the +white +stairs +leaving +her +down +below +she +pried +the +wire +from +the +top +of +the +jar +and +then +the +lid +under +it +was +cloth +and +under +that +a +thin +cake +of +wax +she +removed +it +all +and +coaxed +the +jelly +onto +one +half +of +the +half +a +plate +she +took +a +biscuit +and +pulled +off +its +black +top +smoke +curled +from +the +soft +white +insides +she +missed +her +brothers +buglar +and +howard +would +be +twenty +two +and +twenty +three +now +although +they +had +been +polite +to +her +during +the +quiet +time +and +gave +her +the +whole +top +of +the +bed +she +remembered +how +it +was +before +the +pleasure +they +had +sitting +clustered +on +the +white +stairs +she +between +the +knees +of +howard +or +buglar +while +they +made +up +die +witch +stories +with +proven +ways +of +killing +her +dead +and +baby +suggs +telling +her +things +in +the +keeping +room +she +smelled +like +bark +in +the +day +and +leaves +at +night +for +denver +would +not +sleep +in +her +old +room +after +her +brothers +ran +away +now +her +mother +was +upstairs +with +the +man +who +had +gotten +rid +of +the +only +other +company +she +had +denver +dipped +a +bit +of +bread +into +the +jelly +slowly +methodically +miserably +she +ate +it +chapter +not +quite +in +a +hurry +but +losing +no +time +sethe +and +paul +d +climbed +the +white +stairs +overwhelmed +as +much +by +the +downright +luck +of +finding +her +house +and +her +in +it +as +by +the +certainty +of +giving +her +his +sex +paul +d +dropped +twenty +five +years +from +his +recent +memory +a +stair +step +before +him +was +baby +suggs +replacement +the +new +girl +they +dreamed +of +at +night +and +fucked +cows +for +at +dawn +while +waiting +for +her +to +choose +merely +kissing +the +wrought +iron +on +her +back +had +shook +the +house +had +made +it +necessary +for +him +to +beat +it +to +pieces +now +he +would +do +more +she +led +him +to +the +top +of +the +stairs +where +light +came +straight +from +the +sky +because +the +second +story +windows +of +that +house +had +been +placed +in +the +pitched +ceiling +and +not +the +walls +there +were +two +rooms +and +she +took +him +into +one +of +them +hoping +he +wouldn +t +mind +the +fact +that +she +was +not +prepared +that +though +she +could +remember +desire +she +had +forgotten +how +it +worked +the +clutch +and +helplessness +that +resided +in +the +hands +how +blindness +was +altered +so +that +what +leapt +to +the +eye +were +places +to +lie +down +and +all +else +door +knobs +straps +hooks +the +sadness +that +crouched +in +corners +and +the +passing +of +time +was +interference +it +was +over +before +they +could +get +their +clothes +off +half +dressed +and +short +of +breath +they +lay +side +by +side +resentful +of +one +another +and +the +skylight +above +them +his +dreaming +of +her +had +been +too +long +and +too +long +ago +her +deprivation +had +been +not +having +any +dreams +of +her +own +at +all +now +they +were +sorry +and +too +shy +to +make +talk +sethe +lay +on +her +back +her +head +turned +from +him +out +of +the +corner +of +his +eye +paul +d +saw +the +float +of +her +breasts +and +disliked +it +the +spread +away +flat +roundness +of +them +that +he +could +definitely +live +without +never +mind +that +downstairs +he +had +held +them +as +though +they +were +the +most +expensive +part +of +himself +and +the +wrought +iron +maze +he +had +explored +in +the +kitchen +like +a +gold +miner +pawing +through +pay +dirt +was +in +fact +a +revolting +clump +of +scars +not +a +tree +as +she +said +maybe +shaped +like +one +but +nothing +like +any +tree +he +knew +because +trees +were +inviting +things +you +could +trust +and +be +near +talk +to +if +you +wanted +to +as +he +frequently +did +since +way +back +when +he +took +the +midday +meal +in +the +fields +of +sweet +home +always +in +the +same +place +if +he +could +and +choosing +the +place +had +been +hard +because +sweet +home +had +more +pretty +trees +than +any +farm +around +his +choice +he +called +brother +and +sat +under +it +alone +sometimes +sometimes +with +halle +or +the +other +pauls +but +more +often +with +sixo +who +was +gentle +then +and +still +speaking +english +indigo +with +a +flame +red +tongue +sixo +experimented +with +night +cooked +potatoes +trying +to +pin +down +exactly +when +to +put +smoking +hot +rocks +in +a +hole +potatoes +on +top +and +cover +the +whole +thing +with +twigs +so +that +by +the +time +they +broke +for +the +meal +hitched +the +animals +left +the +field +and +got +to +brother +the +potatoes +would +be +at +the +peak +of +perfection +he +might +get +up +in +the +middle +of +the +night +go +all +the +way +out +there +start +the +earth +over +by +starlight +or +he +would +make +the +stones +less +hot +and +put +the +next +day +s +potatoes +on +them +right +after +the +meal +he +never +got +it +right +but +they +ate +those +undercooked +overcooked +dried +out +or +raw +potatoes +anyway +laughing +spitting +and +giving +him +advice +time +never +worked +the +way +sixo +thought +so +of +course +he +never +got +it +right +once +he +plotted +down +to +the +minute +a +thirty +mile +trip +to +see +a +woman +he +left +on +a +saturday +when +the +moon +was +in +the +place +he +wanted +it +to +be +arrived +at +her +cabin +before +church +on +sunday +and +had +just +enough +time +to +say +good +morning +before +he +had +to +start +back +again +so +he +d +make +the +field +call +on +time +monday +morning +he +had +walked +for +seventeen +hours +sat +down +for +one +turned +around +and +walked +seventeen +more +halle +and +the +pauls +spent +the +whole +day +covering +sixo +s +fatigue +from +mr +garner +they +ate +no +potatoes +that +day +sweet +or +white +sprawled +near +brother +his +flame +red +tongue +hidden +from +them +his +indigo +face +closed +sixo +slept +through +dinner +like +a +corpse +now +there +was +a +man +and +that +was +a +tree +himself +lying +in +the +bed +and +the +tree +lying +next +to +him +didn +t +compare +paul +d +looked +through +the +window +above +his +feet +and +folded +his +hands +behind +his +head +an +elbow +grazed +sethe +s +shoulder +the +touch +of +cloth +on +her +skin +startled +her +she +had +forgotten +he +had +not +taken +off +his +shirt +dog +she +thought +and +then +remembered +that +she +had +not +allowed +him +the +time +for +taking +it +off +nor +herself +time +to +take +off +her +petticoat +and +considering +she +had +begun +undressing +before +she +saw +him +on +the +porch +that +her +shoes +and +stockings +were +already +in +her +hand +and +she +had +never +put +them +back +on +that +he +had +looked +at +her +wet +bare +feet +and +asked +to +join +her +that +when +she +rose +to +cook +he +had +undressed +her +further +considering +how +quickly +they +had +started +getting +naked +you +d +think +by +now +they +would +be +but +maybe +a +man +was +nothing +but +a +man +which +is +what +baby +suggs +always +said +they +encouraged +you +to +put +some +of +your +weight +in +their +hands +and +soon +as +you +felt +how +light +and +lovely +that +was +they +studied +your +scars +and +tribulations +after +which +they +did +what +he +had +done +ran +her +children +out +and +tore +up +the +house +she +needed +to +get +up +from +there +go +downstairs +and +piece +it +all +back +together +this +house +he +told +her +to +leave +as +though +a +house +was +a +little +thing +a +shirtwaist +or +a +sewing +basket +you +could +walk +off +from +or +give +away +any +old +time +she +who +had +never +had +one +but +this +one +she +who +left +a +dirt +floor +to +come +to +this +one +she +who +had +to +bring +a +fistful +of +salsify +into +mrs +garner +s +kitchen +every +day +just +to +be +able +to +work +in +it +feel +like +some +part +of +it +was +hers +because +she +wanted +to +love +the +work +she +did +to +take +the +ugly +out +of +it +and +the +only +way +she +could +feel +at +home +on +sweet +home +was +if +she +picked +some +pretty +growing +thing +and +took +it +with +her +the +day +she +forgot +was +the +day +butter +wouldn +t +come +or +the +brine +in +the +barrel +blistered +her +arms +at +least +it +seemed +so +a +few +yellow +flowers +on +the +table +some +myrtle +tied +around +the +handle +of +the +flatiron +holding +the +door +open +for +a +breeze +calmed +her +and +when +mrs +garner +and +she +sat +down +to +sort +bristle +or +make +ink +she +felt +fine +fine +not +scared +of +the +men +beyond +the +five +who +slept +in +quarters +near +her +but +never +came +in +the +night +just +touched +their +raggedy +hats +when +they +saw +her +and +stared +and +if +she +brought +food +to +them +in +the +fields +bacon +and +bread +wrapped +in +a +piece +of +clean +sheeting +they +never +took +it +from +her +hands +they +stood +back +and +waited +for +her +to +put +it +on +the +ground +at +the +foot +of +a +tree +and +leave +either +they +did +not +want +to +take +anything +from +her +or +did +not +want +her +to +see +them +eat +twice +or +three +times +she +lingered +hidden +behind +honeysuckle +she +watched +them +how +different +they +were +without +her +how +they +laughed +and +played +and +urinated +and +sang +all +but +sixo +who +laughed +once +at +the +very +end +halle +of +course +was +the +nicest +baby +suggs +eighth +and +last +child +who +rented +himself +out +all +over +the +county +to +buy +her +away +from +there +but +he +too +as +it +turned +out +was +nothing +but +a +man +a +man +ain +t +nothing +but +a +man +said +baby +suggs +but +a +son +well +now +that +s +somebody +it +made +sense +for +a +lot +of +reasons +because +in +all +of +baby +s +life +as +well +as +sethe +s +own +men +and +women +were +moved +around +like +checkers +anybody +baby +suggs +knew +let +alone +loved +who +hadn +t +run +off +or +been +hanged +got +rented +out +loaned +out +bought +up +brought +back +stored +up +mortgaged +won +stolen +or +seized +so +baby +s +eight +children +had +six +fathers +what +she +called +the +nastiness +of +life +was +the +shock +she +received +upon +learning +that +nobody +stopped +playing +checkers +just +because +the +pieces +included +her +children +halle +she +was +able +to +keep +the +longest +twenty +years +a +lifetime +given +to +her +no +doubt +to +make +up +for +hearing +that +her +two +girls +neither +of +whom +had +their +adult +teeth +were +sold +and +gone +and +she +had +not +been +able +to +wave +goodbye +to +make +up +for +coupling +with +a +straw +boss +for +four +months +in +exchange +for +keeping +her +third +child +a +boy +with +her +only +to +have +him +traded +for +lumber +in +the +spring +of +the +next +year +and +to +find +herself +pregnant +by +the +man +who +promised +not +to +and +did +that +child +she +could +not +love +and +the +rest +she +would +not +god +take +what +he +would +she +said +and +he +did +and +he +did +and +he +did +and +then +gave +her +halle +who +gave +her +freedom +when +it +didn +t +mean +a +thing +sethe +had +the +amazing +luck +of +six +whole +years +of +marriage +to +that +somebody +son +who +had +fathered +every +one +of +her +children +a +blessing +she +was +reckless +enough +to +take +for +granted +lean +on +as +though +sweet +home +really +was +one +as +though +a +handful +of +myrtle +stuck +in +the +handle +of +a +pressing +iron +propped +against +the +door +in +a +whitewoman +s +kitchen +could +make +it +hers +as +though +mint +sprig +in +the +mouth +changed +the +breath +as +well +as +its +odor +a +bigger +fool +never +lived +sethe +started +to +turn +over +on +her +stomach +but +changed +her +mind +she +did +not +want +to +call +paul +d +s +attention +back +to +her +so +she +settled +for +crossing +her +ankles +but +paul +d +noticed +the +movement +as +well +as +the +change +in +her +breathing +he +felt +obliged +to +try +again +slower +this +time +but +the +appetite +was +gone +actually +it +was +a +good +feeling +not +wanting +her +twenty +five +years +and +blip +the +kind +of +thing +sixo +would +do +like +the +time +he +arranged +a +meeting +with +patsy +the +thirty +mile +woman +it +took +three +months +and +two +thirty +four +mile +round +trips +to +do +it +to +persuade +her +to +walk +one +third +of +the +way +toward +him +to +a +place +he +knew +a +deserted +stone +structure +that +redmen +used +way +back +when +they +thought +the +land +was +theirs +sixo +discovered +it +on +one +of +his +night +creeps +and +asked +its +permission +to +enter +inside +having +felt +what +it +felt +like +he +asked +the +redmen +s +presence +if +he +could +bring +his +woman +there +it +said +yes +and +sixo +painstakingly +instructed +her +how +to +get +there +exactly +when +to +start +out +how +his +welcoming +or +warning +whistles +would +sound +since +neither +could +go +anywhere +on +business +of +their +own +and +since +the +thirty +mile +woman +was +already +fourteen +and +scheduled +for +somebody +s +arms +the +danger +was +real +when +he +arrived +she +had +not +he +whistled +and +got +no +answer +he +went +into +the +redmen +s +deserted +lodge +she +was +not +there +he +returned +to +the +meeting +spot +she +was +not +there +he +waited +longer +she +still +did +not +come +he +grew +frightened +for +her +and +walked +down +the +road +in +the +direction +she +should +be +coming +from +three +or +four +miles +and +he +stopped +it +was +hopeless +to +go +on +that +way +so +he +stood +in +the +wind +and +asked +for +help +listening +close +for +some +sign +he +heard +a +whimper +he +turned +toward +it +waited +and +heard +it +again +uncautious +now +he +hollered +her +name +she +answered +in +a +voice +that +sounded +like +life +to +him +not +death +not +move +he +shouted +breathe +hard +i +can +find +you +he +did +she +believed +she +was +already +at +the +meeting +place +and +was +crying +because +she +thought +he +had +not +kept +his +promise +now +it +was +too +late +for +the +rendezvous +to +happen +at +the +redmen +s +house +so +they +dropped +where +they +were +later +he +punctured +her +calf +to +simulate +snakebite +so +she +could +use +it +in +some +way +as +an +excuse +for +not +being +on +time +to +shake +worms +from +tobacco +leaves +he +gave +her +detailed +directions +about +following +the +stream +as +a +shortcut +back +and +saw +her +off +when +he +got +to +the +road +it +was +very +light +and +he +had +his +clothes +in +his +hands +suddenly +from +around +a +bend +a +wagon +trundled +toward +him +its +driver +wide +eyed +raised +a +whip +while +the +woman +seated +beside +him +covered +her +face +but +sixo +had +already +melted +into +the +woods +before +the +lash +could +unfurl +itself +on +his +indigo +behind +he +told +the +story +to +paul +f +halle +paul +a +and +paul +d +in +the +peculiar +way +that +made +them +cry +laugh +sixo +went +among +trees +at +night +for +dancing +he +said +to +keep +his +bloodlines +open +he +said +privately +alone +he +did +it +none +of +the +rest +of +them +had +seen +him +at +it +but +they +could +imagine +it +and +the +picture +they +pictured +made +them +eager +to +laugh +at +him +in +daylight +that +is +when +it +was +safe +but +that +was +before +he +stopped +speaking +english +because +there +was +no +future +in +it +because +of +the +thirty +mile +woman +sixo +was +the +only +one +not +paralyzed +by +yearning +for +sethe +nothing +could +be +as +good +as +the +sex +with +her +paul +d +had +been +imagining +off +and +on +for +twenty +five +years +his +foolishness +made +him +smile +and +think +fondly +of +himself +as +he +turned +over +on +his +side +facing +her +sethe +s +eyes +were +closed +her +hair +a +mess +looked +at +this +way +minus +the +polished +eyes +her +face +was +not +so +attractive +so +it +must +have +been +her +eyes +that +kept +him +both +guarded +and +stirred +up +without +them +her +face +was +manageable +a +face +he +could +handle +maybe +if +she +would +keep +them +closed +like +that +but +no +there +was +her +mouth +nice +halle +never +knew +what +he +had +although +her +eyes +were +closed +sethe +knew +his +gaze +was +on +her +face +and +a +paper +picture +of +just +how +bad +she +must +look +raised +itself +up +before +her +mind +s +eye +still +there +was +no +mockery +coming +from +his +gaze +soft +it +felt +soft +in +a +waiting +kind +of +way +he +was +not +judging +her +or +rather +he +was +judging +but +not +comparing +her +not +since +halle +had +a +man +looked +at +her +that +way +not +loving +or +passionate +but +interested +as +though +he +were +examining +an +ear +of +corn +for +quality +halle +was +more +like +a +brother +than +a +husband +his +care +suggested +a +family +relationship +rather +than +a +man +s +laying +claim +for +years +they +saw +each +other +in +full +daylight +only +on +sundays +the +rest +of +the +time +they +spoke +or +touched +or +ate +in +darkness +predawn +darkness +and +the +afterlight +of +sunset +so +looking +at +each +other +intently +was +a +sunday +morning +pleasure +and +halle +examined +her +as +though +storing +up +what +he +saw +in +sunlight +for +the +shadow +he +saw +the +rest +of +the +week +and +he +had +so +little +time +after +his +sweet +home +work +and +on +sunday +afternoons +was +the +debt +work +he +owed +for +his +mother +when +he +asked +her +to +be +his +wife +sethe +happily +agreed +and +then +was +stuck +not +knowing +the +next +step +there +should +be +a +ceremony +shouldn +t +there +a +preacher +some +dancing +a +party +a +something +she +and +mrs +garner +were +the +only +women +there +so +she +decided +to +ask +her +halle +and +me +want +to +be +married +mrs +garner +so +i +heard +she +smiled +he +talked +to +mr +garner +about +it +are +you +already +expecting +no +ma +am +well +you +will +be +you +know +that +don +t +you +yes +ma +am +halle +s +nice +sethe +he +ll +be +good +to +you +but +i +mean +we +want +to +get +married +you +just +said +so +and +i +said +all +right +is +there +a +wedding +mrs +garner +put +down +her +cooking +spoon +laughing +a +little +she +touched +sethe +on +the +head +saying +you +are +one +sweet +child +and +then +no +more +sethe +made +a +dress +on +the +sly +and +halle +hung +his +hitching +rope +from +a +nail +on +the +wall +of +her +cabin +and +there +on +top +of +a +mattress +on +top +of +the +dirt +floor +of +the +cabin +they +coupled +for +the +third +time +the +first +two +having +been +in +the +tiny +cornfield +mr +garner +kept +because +it +was +a +crop +animals +could +use +as +well +as +humans +both +halle +and +sethe +were +under +the +impression +that +they +were +hidden +scrunched +down +among +the +stalks +they +couldn +t +see +anything +including +the +corn +tops +waving +over +their +heads +and +visible +to +everyone +else +sethe +smiled +at +her +and +halle +s +stupidity +even +the +crows +knew +and +came +to +look +uncrossing +her +ankles +she +managed +not +to +laugh +aloud +the +jump +thought +paul +d +from +a +calf +to +a +girl +wasn +t +all +that +mighty +not +the +leap +halle +believed +it +would +be +and +taking +her +in +the +corn +rather +than +her +quarters +a +yard +away +from +the +cabins +of +the +others +who +had +lost +out +was +a +gesture +of +tenderness +halle +wanted +privacy +for +her +and +got +public +display +who +could +miss +a +ripple +in +a +cornfield +on +a +quiet +cloudless +day +he +sixo +and +both +of +the +pauls +sat +under +brother +pouring +water +from +a +gourd +over +their +heads +and +through +eyes +streaming +with +well +water +they +watched +the +confusion +of +tassels +in +the +field +below +it +had +been +hard +hard +hard +sitting +there +erect +as +dogs +watching +corn +stalks +dance +at +noon +the +water +running +over +their +heads +made +it +worse +paul +d +sighed +and +turned +over +sethe +took +the +opportunity +afforded +by +his +movement +to +shift +as +well +looking +at +paul +d +s +back +she +remembered +that +some +of +the +corn +stalks +broke +folded +down +over +halle +s +back +and +among +the +things +her +fingers +clutched +were +husk +and +cornsilk +hair +how +loose +the +silk +how +jailed +down +the +juice +the +jealous +admiration +of +the +watching +men +melted +with +the +feast +of +new +corn +they +allowed +themselves +that +night +plucked +from +the +broken +stalks +that +mr +garner +could +not +doubt +was +the +fault +of +the +raccoon +paul +f +wanted +his +roasted +paul +a +wanted +his +boiled +and +now +paul +d +couldn +t +remember +how +finally +they +d +cooked +those +ears +too +young +to +eat +what +he +did +remember +was +parting +the +hair +to +get +to +the +tip +the +edge +of +his +fingernail +just +under +so +as +not +to +graze +a +single +kernel +the +pulling +down +of +the +tight +sheath +the +ripping +sound +always +convinced +her +it +hurt +as +soon +as +one +strip +of +husk +was +down +the +rest +obeyed +and +the +ear +yielded +up +to +him +its +shy +rows +exposed +at +last +how +loose +the +silk +how +quick +the +jailed +up +flavor +ran +free +no +matter +what +all +your +teeth +and +wet +fingers +anticipated +there +was +no +accounting +for +the +way +that +simple +joy +could +shake +you +how +loose +the +silk +how +fine +and +loose +and +free +chapter +denver +s +secrets +were +sweet +accompanied +every +time +by +wild +veronica +until +she +discovered +cologne +the +first +bottle +was +a +gift +the +next +she +stole +from +her +mother +and +hid +among +boxwood +until +it +froze +and +cracked +that +was +the +year +winter +came +in +a +hurry +at +suppertime +and +stayed +eight +months +one +of +the +war +years +when +miss +bodwin +the +whitewoman +brought +christmas +cologne +for +her +mother +and +herself +oranges +for +the +boys +and +another +good +wool +shawl +for +baby +suggs +talking +of +a +war +full +of +dead +people +she +looked +happy +flush +faced +and +although +her +voice +was +heavy +as +a +man +s +she +smelled +like +a +roomful +of +flowers +excitement +that +denver +could +have +all +for +herself +in +the +boxwood +back +beyond +x +was +a +narrow +field +that +stopped +itself +at +a +wood +on +the +yonder +side +of +these +woods +a +stream +in +these +woods +between +the +field +and +the +stream +hidden +by +post +oaks +five +boxwood +bushes +planted +in +a +ring +had +started +stretching +toward +each +other +four +feet +off +the +ground +to +form +a +round +empty +room +seven +feet +high +its +walls +fifty +inches +of +murmuring +leaves +bent +low +denver +could +crawl +into +this +room +and +once +there +she +could +stand +all +the +way +up +in +emerald +light +it +began +as +a +little +girl +s +houseplay +but +as +her +desires +changed +so +did +the +play +quiet +primate +and +completely +secret +except +for +the +noisome +cologne +signal +that +thrilled +the +rabbits +before +it +confused +them +first +a +playroom +where +the +silence +was +softer +then +a +refuge +from +her +brothers +fright +soon +the +place +became +the +point +in +that +bower +closed +off +from +the +hurt +of +the +hurt +world +denver +s +imagination +produced +its +own +hunger +and +its +own +food +which +she +badly +needed +because +loneliness +wore +her +out +wore +her +out +veiled +and +protected +by +the +live +green +walls +she +felt +ripe +and +clear +and +salvation +was +as +easy +as +a +wish +once +when +she +was +in +the +boxwood +an +autumn +long +before +paul +d +moved +into +the +house +with +her +mother +she +was +made +suddenly +cold +by +a +combination +of +wind +and +the +perfume +on +her +skin +she +dressed +herself +bent +down +to +leave +and +stood +up +in +snowfall +a +thin +and +whipping +snow +very +like +the +picture +her +mother +had +painted +as +she +described +the +circumstances +of +denver +s +birth +in +a +canoe +straddled +by +a +whitegirl +for +whom +she +was +named +shivering +denver +approached +the +house +regarding +it +as +she +always +did +as +a +person +rather +than +a +structure +a +person +that +wept +sighed +trembled +and +fell +into +fits +her +steps +and +her +gaze +were +the +cautious +ones +of +a +child +approaching +a +nervous +idle +relative +someone +dependent +but +proud +a +breastplate +of +darkness +hid +all +the +windows +except +one +its +dim +glow +came +from +baby +suggs +room +when +denver +looked +in +she +saw +her +mother +on +her +knees +in +prayer +which +was +not +unusual +what +was +unusual +even +for +a +girl +who +had +lived +all +her +life +in +a +house +peopled +by +the +living +activity +of +the +dead +was +that +a +white +dress +knelt +down +next +to +her +mother +and +had +its +sleeve +around +her +mother +s +waist +and +it +was +the +tender +embrace +of +the +dress +sleeve +that +made +denver +remember +the +details +of +her +birth +that +and +the +thin +whipping +snow +she +was +standing +in +like +the +fruit +of +common +flowers +the +dress +and +her +mother +together +looked +like +two +friendly +grown +up +women +one +the +dress +helping +out +the +other +and +the +magic +of +her +birth +its +miracle +in +fact +testified +to +that +friendliness +as +did +her +own +name +easily +she +stepped +into +the +told +story +that +lay +before +her +eyes +on +the +path +she +followed +away +from +the +window +there +was +only +one +door +to +the +house +and +to +get +to +it +from +the +back +you +had +to +walk +all +the +way +around +to +the +front +of +past +the +storeroom +past +the +cold +house +the +privy +the +shed +on +around +to +the +porch +and +to +get +to +the +part +of +the +story +she +liked +best +she +had +to +start +way +back +hear +the +birds +in +the +thick +woods +the +crunch +of +leaves +underfoot +see +her +mother +making +her +way +up +into +the +hills +where +no +houses +were +likely +to +be +how +sethe +was +walking +on +two +feet +meant +for +standing +still +how +they +were +so +swollen +she +could +not +see +her +arch +or +feel +her +ankles +her +leg +shaft +ended +in +a +loaf +of +flesh +scalloped +by +five +toenails +but +she +could +not +would +not +stop +for +when +she +did +the +little +antelope +rammed +her +with +horns +and +pawed +the +ground +of +her +womb +with +impatient +hooves +while +she +was +walking +it +seemed +to +graze +quietly +so +she +walked +on +two +feet +meant +in +this +sixth +month +of +pregnancy +for +standing +still +still +near +a +kettle +still +at +the +churn +still +at +the +tub +and +ironing +board +milk +sticky +and +sour +on +her +dress +attracted +every +small +flying +thing +from +gnats +to +grasshoppers +by +the +time +she +reached +the +hill +skirt +she +had +long +ago +stopped +waving +them +off +the +clanging +in +her +head +begun +as +a +churchbell +heard +from +a +distance +was +by +then +a +tight +cap +of +pealing +bells +around +her +ears +she +sank +and +had +to +look +down +to +see +whether +she +was +in +a +hole +or +kneeling +nothing +was +alive +but +her +nipples +and +the +little +antelope +finally +she +was +horizontal +or +must +have +been +because +blades +of +wild +onion +were +scratching +her +temple +and +her +cheek +concerned +as +she +was +for +the +life +of +her +children +s +mother +sethe +told +denver +she +remembered +thinking +well +at +least +i +don +t +have +to +take +another +step +a +dying +thought +if +ever +there +was +one +and +she +waited +for +the +little +antelope +to +protest +and +why +she +thought +of +an +antelope +sethe +could +not +imagine +since +she +had +never +seen +one +she +guessed +it +must +have +been +an +invention +held +on +to +from +before +sweet +home +when +she +was +very +young +of +that +place +where +she +was +born +carolina +maybe +or +was +it +louisiana +she +remembered +only +song +and +dance +not +even +her +own +mother +who +was +pointed +out +to +her +by +the +eight +year +old +child +who +watched +over +the +young +ones +pointed +out +as +the +one +among +many +backs +turned +away +from +her +stooping +in +a +watery +field +patiently +sethe +waited +for +this +particular +back +to +gain +the +row +s +end +and +stand +what +she +saw +was +a +cloth +hat +as +opposed +to +a +straw +one +singularity +enough +in +that +world +of +cooing +women +each +of +whom +was +called +ma +am +seth +thuh +ma +am +hold +on +to +the +baby +yes +ma +am +seth +thuh +ma +am +get +some +kindlin +in +here +yes +ma +am +oh +but +when +they +sang +and +oh +but +when +they +danced +and +sometimes +they +danced +the +antelope +the +men +as +well +as +the +ma +ams +one +of +whom +was +certainly +her +own +they +shifted +shapes +and +became +something +other +some +unchained +demanding +other +whose +feet +knew +her +pulse +better +than +she +did +just +like +this +one +in +her +stomach +i +believe +this +baby +s +ma +am +is +gonna +die +in +wild +onions +on +the +bloody +side +of +the +ohio +river +that +s +what +was +on +her +mind +and +what +she +told +denver +her +exact +words +and +it +didn +t +seem +such +a +bad +idea +all +in +all +in +view +of +the +step +she +would +not +have +to +take +but +the +thought +of +herself +stretched +out +dead +while +the +little +antelope +lived +on +an +hour +a +day +a +day +and +a +night +in +her +lifeless +body +grieved +her +so +she +made +the +groan +that +made +the +person +walking +on +a +path +not +ten +yards +away +halt +and +stand +right +still +sethe +had +not +heard +the +walking +but +suddenly +she +heard +the +standing +still +and +then +she +smelled +the +hair +the +voice +saying +who +s +in +there +was +all +she +needed +to +know +that +she +was +about +to +be +discovered +by +a +white +boy +that +he +too +had +mossy +teeth +an +appetite +that +on +a +ridge +of +pine +near +the +ohio +river +trying +to +get +to +her +three +children +one +of +whom +was +starving +for +the +food +she +carried +that +after +her +husband +had +disappeared +that +after +her +milk +had +been +stolen +her +back +pulped +her +children +orphaned +she +was +not +to +have +an +easeful +death +no +she +told +denver +that +a +something +came +up +out +of +the +earth +into +her +like +a +freezing +but +moving +too +like +jaws +inside +look +like +i +was +just +cold +jaws +grinding +she +said +suddenly +she +was +eager +for +his +eyes +to +bite +into +them +to +gnaw +his +cheek +i +was +hungry +she +told +denver +just +as +hungry +as +i +could +be +for +his +eyes +i +couldn +t +wait +so +she +raised +up +on +her +elbow +and +dragged +herself +one +pull +two +three +four +toward +the +young +white +voice +talking +about +who +that +back +in +there +come +see +i +was +thinking +be +the +last +thing +you +behold +and +sure +enough +here +come +the +feet +so +i +thought +well +that +s +where +i +ll +have +to +start +god +do +what +he +would +i +m +gonna +eat +his +feet +off +i +m +laughing +now +but +it +s +true +i +wasn +t +just +set +to +do +it +i +was +hungry +to +do +it +like +a +snake +all +jaws +and +hungry +it +wasn +t +no +whiteboy +at +all +was +a +girl +the +raggediest +looking +trash +you +ever +saw +saying +look +there +a +nigger +if +that +don +t +beat +all +and +now +the +part +denver +loved +the +best +her +name +was +amy +and +she +needed +beef +and +pot +liquor +like +nobody +in +this +world +arms +like +cane +stalks +and +enough +hair +for +four +or +five +heads +slow +moving +eyes +she +didn +t +look +at +anything +quick +talked +so +much +it +wasn +t +clear +how +she +could +breathe +at +the +same +time +and +those +cane +stalk +arms +as +it +turned +out +were +as +strong +as +iron +you +bout +the +scariest +looking +something +i +ever +seen +what +you +doing +back +up +in +here +down +in +the +grass +like +the +snake +she +believed +she +was +sethe +opened +her +mouth +and +instead +of +fangs +and +a +split +tongue +out +shot +the +truth +running +sethe +told +her +it +was +the +first +word +she +had +spoken +all +day +and +it +came +out +thick +because +of +her +tender +tongue +them +the +feet +you +running +on +my +jesus +my +she +squatted +down +and +stared +at +sethe +s +feet +you +got +anything +on +you +gal +pass +for +food +no +sethe +tried +to +shift +to +a +sitting +position +but +couldn +t +i +like +to +die +i +m +so +hungry +the +girl +moved +her +eyes +slowly +examining +the +greenery +around +her +thought +there +d +be +huckleberries +look +like +it +that +s +why +i +come +up +in +here +didn +t +expect +to +find +no +nigger +woman +if +they +was +any +birds +ate +em +you +like +huckleberries +i +m +having +a +baby +miss +amy +looked +at +her +that +mean +you +don +t +have +no +appetite +well +i +got +to +eat +me +something +combing +her +hair +with +her +fingers +she +carefully +surveyed +the +landscape +once +more +satisfied +nothing +edible +was +around +she +stood +up +to +go +and +sethe +s +heart +stood +up +too +at +the +thought +of +being +left +alone +in +the +grass +without +a +fang +in +her +head +where +you +on +your +way +to +miss +she +turned +and +looked +at +sethe +with +freshly +lit +eyes +boston +get +me +some +velvet +it +s +a +store +there +called +wilson +i +seen +the +pictures +of +it +and +they +have +the +prettiest +velvet +they +don +t +believe +i +m +a +get +it +but +i +am +sethe +nodded +and +shifted +her +elbow +your +ma +am +know +you +on +the +lookout +for +velvet +the +girl +shook +her +hair +out +of +her +face +my +mama +worked +for +these +here +people +to +pay +for +her +passage +but +then +she +had +me +and +since +she +died +right +after +well +they +said +i +had +to +work +for +em +to +pay +it +off +i +did +but +now +i +want +me +some +velvet +they +did +not +look +directly +at +each +other +not +straight +into +the +eyes +anyway +yet +they +slipped +effortlessly +into +yard +chat +about +nothing +in +particular +except +one +lay +on +the +ground +boston +said +sethe +is +that +far +ooooh +yeah +a +hundred +miles +maybe +more +must +be +velvet +closer +by +not +like +in +boston +boston +got +the +best +be +so +pretty +on +me +you +ever +touch +it +no +miss +i +never +touched +no +velvet +sethe +didn +t +know +if +it +was +the +voice +or +boston +or +velvet +but +while +the +whitegirl +talked +the +baby +slept +not +one +butt +or +kick +so +she +guessed +her +luck +had +turned +ever +see +any +she +asked +sethe +i +bet +you +never +even +seen +any +if +i +did +i +didn +t +know +it +what +s +it +like +velvet +amy +dragged +her +eyes +over +sethe +s +face +as +though +she +would +never +give +out +so +confidential +a +piece +of +information +as +that +to +a +perfect +stranger +what +they +call +you +she +asked +however +far +she +was +from +sweet +home +there +was +no +point +in +giving +out +her +real +name +to +the +first +person +she +saw +lu +said +sethe +they +call +me +lu +well +lu +velvet +is +like +the +world +was +just +born +clean +and +new +and +so +smooth +the +velvet +i +seen +was +brown +but +in +boston +they +got +all +colors +carmine +that +means +red +but +when +you +talk +about +velvet +you +got +to +say +carmine +she +raised +her +eyes +to +the +sky +and +then +as +though +she +had +wasted +enough +time +away +from +boston +she +moved +off +saying +i +gotta +go +picking +her +way +through +the +brush +she +hollered +back +to +sethe +what +you +gonna +do +just +lay +there +and +foal +i +can +t +get +up +from +here +said +sethe +what +she +stopped +and +turned +to +hear +i +said +i +can +t +get +up +amy +drew +her +arm +across +her +nose +and +came +slowly +back +to +where +sethe +lay +it +s +a +house +back +yonder +she +said +a +house +mmmmm +i +passed +it +ain +t +no +regular +house +with +people +in +it +though +a +lean +to +kinda +how +far +make +a +difference +does +it +you +stay +the +night +here +snake +get +you +well +he +may +as +well +come +on +i +can +t +stand +up +let +alone +walk +and +god +help +me +miss +i +can +t +crawl +sure +you +can +lu +come +on +said +amy +and +with +a +toss +of +hair +enough +for +five +heads +she +moved +toward +the +path +so +she +crawled +and +amy +walked +alongside +her +and +when +sethe +needed +to +rest +amy +stopped +too +and +talked +some +more +about +boston +and +velvet +and +good +things +to +eat +the +sound +of +that +voice +like +a +sixteen +year +old +boy +s +going +on +and +on +and +on +kept +the +little +antelope +quiet +and +grazing +during +the +whole +hateful +crawl +to +the +lean +to +it +never +bucked +once +nothing +of +sethe +s +was +intact +by +the +time +they +reached +it +except +the +cloth +that +covered +her +hair +below +her +bloody +knees +there +was +no +feeling +at +all +her +chest +was +two +cushions +of +pins +it +was +the +voice +full +of +velvet +and +boston +and +good +things +to +eat +that +urged +her +along +and +made +her +think +that +maybe +she +wasn +t +after +all +just +a +crawling +graveyard +for +a +six +month +baby +s +last +hours +the +lean +to +was +full +of +leaves +which +amy +pushed +into +a +pile +for +sethe +to +lie +on +then +she +gathered +rocks +covered +them +with +more +leaves +and +made +sethe +put +her +feet +on +them +saying +i +know +a +woman +had +her +feet +cut +off +they +was +so +swole +and +she +made +sawing +gestures +with +the +blade +of +her +hand +across +sethe +s +ankles +zzz +zzz +zzz +zzz +i +used +to +be +a +good +size +nice +arms +and +everything +wouldn +t +think +it +would +you +that +was +before +they +put +me +in +the +root +cellar +i +was +fishing +off +the +beaver +once +catfish +in +beaver +river +sweet +as +chicken +well +i +was +just +fishing +there +and +a +nigger +floated +right +by +me +i +don +t +like +drowned +people +you +your +feet +remind +me +of +him +all +swole +like +then +she +did +the +magic +lifted +sethe +s +feet +and +legs +and +massaged +them +until +she +cried +salt +tears +it +s +gonna +hurt +now +said +amy +anything +dead +coming +back +to +life +hurts +a +truth +for +all +times +thought +denver +maybe +the +white +dress +holding +its +arm +around +her +mother +s +waist +was +in +pain +if +so +it +could +mean +the +baby +ghost +had +plans +when +she +opened +the +door +sethe +was +just +leaving +the +keeping +room +i +saw +a +white +dress +holding +on +to +you +denver +said +white +maybe +it +was +my +bedding +dress +describe +it +to +me +had +a +high +neck +whole +mess +of +buttons +coming +down +the +back +buttons +well +that +lets +out +my +bedding +dress +i +never +had +a +button +on +nothing +did +grandma +baby +sethe +shook +her +head +she +couldn +t +handle +them +even +on +her +shoes +what +else +a +bunch +at +the +back +on +the +sit +down +part +a +bustle +it +had +a +bustle +i +don +t +know +what +it +s +called +sort +of +gathered +like +below +the +waist +in +the +back +um +hm +a +rich +lady +s +dress +silk +cotton +look +like +lisle +probably +white +cotton +lisle +you +say +it +was +holding +on +to +me +how +like +you +it +looked +just +like +you +kneeling +next +to +you +while +you +were +praying +had +its +arm +around +your +waist +well +i +ll +be +what +were +you +praying +for +ma +am +not +for +anything +i +don +t +pray +anymore +i +just +talk +what +were +you +talking +about +you +won +t +understand +baby +yes +i +will +i +was +talking +about +time +it +s +so +hard +for +me +to +believe +in +it +some +things +go +pass +on +some +things +just +stay +i +used +to +think +it +was +my +rememory +you +know +some +things +you +forget +other +things +you +never +do +but +it +s +not +places +places +are +still +there +if +a +house +burns +down +it +s +gone +but +the +place +the +picture +of +it +stays +and +not +just +in +my +rememory +but +out +there +in +the +world +what +i +remember +is +a +picture +floating +around +out +there +outside +my +head +i +mean +even +if +i +don +t +think +it +even +if +i +die +the +picture +of +what +i +did +or +knew +or +saw +is +still +out +there +right +in +the +place +where +it +happened +can +other +people +see +it +asked +denver +oh +yes +oh +yes +yes +yes +someday +you +be +walking +down +the +road +and +you +hear +something +or +see +something +going +on +so +clear +and +you +think +it +s +you +thinking +it +up +a +thought +picture +but +no +it +s +when +you +bump +into +a +rememory +that +belongs +to +somebody +else +where +i +was +before +i +came +here +that +place +is +real +it +s +never +going +away +even +if +the +whole +farm +every +tree +and +grass +blade +of +it +dies +the +picture +is +still +there +and +what +s +more +if +you +go +there +you +who +never +was +there +if +you +go +there +and +stand +in +the +place +where +it +was +it +will +happen +again +it +will +be +there +for +you +waiting +for +you +so +denver +you +can +t +never +go +there +never +because +even +though +it +s +all +over +over +and +done +with +it +s +going +to +always +be +there +waiting +for +you +that +s +how +come +i +had +to +get +all +my +children +out +no +matter +what +denver +picked +at +her +fingernails +if +it +s +still +there +waiting +that +must +mean +that +nothing +ever +dies +sethe +looked +right +in +denver +s +face +nothing +ever +does +she +said +you +never +told +me +all +what +happened +just +that +they +whipped +you +and +you +run +off +pregnant +with +me +nothing +to +tell +except +schoolteacher +he +was +a +little +man +short +always +wore +a +collar +even +in +the +fields +a +schoolteacher +she +said +that +made +her +feel +good +that +her +husband +s +sister +s +husband +had +book +learning +and +was +willing +to +come +farm +sweet +home +after +mr +garner +passed +the +men +could +have +done +it +even +with +paul +f +sold +but +it +was +like +halle +said +she +didn +t +want +to +be +the +only +white +person +on +the +farm +and +a +woman +too +so +she +was +satisfied +when +the +schoolteacher +agreed +to +come +he +brought +two +boys +with +him +sons +or +nephews +i +don +t +know +they +called +him +onka +and +had +pretty +man +ners +all +of +em +talked +soft +and +spit +in +handkerchiefs +gentle +in +a +lot +of +ways +you +know +the +kind +who +know +jesus +by +his +first +name +but +out +of +politeness +never +use +it +even +to +his +face +a +pretty +good +farmer +halle +said +not +strong +as +mr +garner +but +smart +enough +he +liked +the +ink +i +made +it +was +her +recipe +but +he +preferred +how +i +mixed +it +and +it +was +important +to +him +because +at +night +he +sat +down +to +write +in +his +book +it +was +a +book +about +us +but +we +didn +t +know +that +right +away +we +just +thought +it +was +his +manner +to +ask +us +questions +he +commenced +to +carry +round +a +notebook +and +write +down +what +we +said +i +still +think +it +was +them +questions +that +tore +sixo +up +tore +him +up +for +all +time +she +stopped +denver +knew +that +her +mother +was +through +with +it +for +now +anyway +the +single +slow +blink +of +her +eyes +the +bottom +lip +sliding +up +slowly +to +cover +the +top +and +then +a +nostril +sigh +like +the +snuff +of +a +candle +flame +signs +that +sethe +had +reached +the +point +beyond +which +she +would +not +go +well +i +think +the +baby +got +plans +said +denver +what +plans +i +don +t +know +but +the +dress +holding +on +to +you +got +to +mean +something +maybe +said +sethe +maybe +it +does +have +plans +whatever +they +were +or +might +have +been +paul +d +messed +them +up +for +good +with +a +table +and +a +loud +male +voice +he +had +rid +of +its +claim +to +local +fame +denver +had +taught +herself +to +take +pride +in +the +condemnation +negroes +heaped +on +them +the +assumption +that +the +haunting +was +done +by +an +evil +thing +looking +for +more +none +of +them +knew +the +downright +pleasure +of +enchantment +of +not +suspecting +but +knowing +the +things +behind +things +her +brothers +had +known +but +it +scared +them +grandma +baby +knew +but +it +saddened +her +none +could +appreciate +the +safety +of +ghost +company +even +sethe +didn +t +love +it +she +just +took +it +for +granted +like +a +sudden +change +in +the +weather +but +it +was +gone +now +whooshed +away +in +the +blast +of +a +hazelnut +man +s +shout +leaving +denver +s +world +flat +mostly +with +the +exception +of +an +emerald +closet +standing +seven +feet +high +in +the +woods +her +mother +had +secrets +things +she +wouldn +t +tell +things +she +halfway +told +well +denver +had +them +too +and +hers +were +sweet +sweet +as +lily +of +the +valley +cologne +sethe +had +given +little +thought +to +the +white +dress +until +paul +d +came +and +then +she +remembered +denver +s +interpretation +plans +the +morning +after +the +first +night +with +paul +d +sethe +smiled +just +thinking +about +what +the +word +could +mean +it +was +a +luxury +she +had +not +had +in +eighteen +years +and +only +that +once +before +and +since +all +her +effort +was +directed +not +on +avoiding +pain +but +on +getting +through +it +as +quickly +as +possible +the +one +set +of +plans +she +had +made +getting +away +from +sweet +home +went +awry +so +completely +she +never +dared +life +by +making +more +yet +the +morning +she +woke +up +next +to +paul +d +the +word +her +daughter +had +used +a +few +years +ago +did +cross +her +mind +and +she +thought +about +what +denver +had +seen +kneeling +next +to +her +and +thought +also +of +the +temptation +to +trust +and +remember +that +gripped +her +as +she +stood +before +the +cooking +stove +in +his +arms +would +it +be +all +right +would +it +be +all +right +to +go +ahead +and +feel +go +ahead +and +count +on +something +she +couldn +t +think +clearly +lying +next +to +him +listening +to +his +breathing +so +carefully +carefully +she +had +left +the +bed +kneeling +in +the +keeping +room +where +she +usually +went +to +talk +think +it +was +clear +why +baby +suggs +was +so +starved +for +color +there +wasn +t +any +except +for +two +orange +squares +in +a +quilt +that +made +the +absence +shout +the +walls +of +the +room +were +slate +colored +the +floor +earth +brown +the +wooden +dresser +the +color +of +itself +curtains +white +and +the +dominating +feature +the +quilt +over +an +iron +cot +was +made +up +of +scraps +of +blue +serge +black +brown +and +gray +wool +the +full +range +of +the +dark +and +the +muted +that +thrift +and +modesty +allowed +in +that +sober +field +two +patches +of +orange +looked +wild +like +life +in +the +raw +sethe +looked +at +her +hands +her +bottle +green +sleeves +and +thought +how +little +color +there +was +in +the +house +and +how +strange +that +she +had +not +missed +it +the +way +baby +did +deliberate +she +thought +it +must +be +deliberate +because +the +last +color +she +remembered +was +the +pink +chips +in +the +headstone +of +her +baby +girl +after +that +she +became +as +color +conscious +as +a +hen +every +dawn +she +worked +at +fruit +pies +potato +dishes +and +vegetables +while +the +cook +did +the +soup +meat +and +all +the +rest +and +she +could +not +remember +remembering +a +molly +apple +or +a +yellow +squash +every +dawn +she +saw +the +dawn +but +never +acknowledged +or +remarked +its +color +there +was +something +wrong +with +that +it +was +as +though +one +day +she +saw +red +baby +blood +another +day +the +pink +gravestone +chips +and +that +was +the +last +of +it +was +so +full +of +strong +feeling +perhaps +she +was +oblivious +to +the +loss +of +anything +at +all +there +was +a +time +when +she +scanned +the +fields +every +morning +and +every +evening +for +her +boys +when +she +stood +at +the +open +window +unmindful +of +flies +her +head +cocked +to +her +left +shoulder +her +eyes +searching +to +the +right +for +them +cloud +shadow +on +the +road +an +old +woman +a +wandering +goat +untethered +and +gnawing +bramble +each +one +looked +at +first +like +howard +no +buglar +little +by +little +she +stopped +and +their +thirteen +year +old +faces +faded +completely +into +their +baby +ones +which +came +to +her +only +in +sleep +when +her +dreams +roamed +outside +anywhere +they +wished +she +saw +them +sometimes +in +beautiful +trees +their +little +legs +barely +visible +in +the +leaves +sometimes +they +ran +along +the +railroad +track +laughing +too +loud +apparently +to +hear +her +because +they +never +did +turn +around +when +she +woke +the +house +crowded +in +on +her +there +was +the +door +where +the +soda +crackers +were +lined +up +in +a +row +the +white +stairs +her +baby +girl +loved +to +climb +the +corner +where +baby +suggs +mended +shoes +a +pile +of +which +were +still +in +the +cold +room +the +exact +place +on +the +stove +where +denver +burned +her +fingers +and +of +course +the +spite +of +the +house +itself +there +was +no +room +for +any +other +thing +or +body +until +paul +d +arrived +and +broke +up +the +place +making +room +shifting +it +moving +it +over +to +someplace +else +then +standing +in +the +place +he +had +made +so +kneeling +in +the +keeping +room +the +morning +after +paul +d +came +she +was +distracted +by +the +two +orange +squares +that +signaled +how +barren +really +was +he +was +responsible +for +that +emotions +sped +to +the +surface +in +his +company +things +became +what +they +were +drabness +looked +drab +heat +was +hot +windows +suddenly +had +view +and +wouldn +t +you +know +he +d +be +a +singing +man +little +rice +little +bean +no +meat +in +between +hard +work +ain +t +easy +dry +bread +ain +t +greasy +he +was +up +now +and +singing +as +he +mended +things +he +had +broken +the +day +before +some +old +pieces +of +song +he +d +learned +on +the +prison +farm +or +in +the +war +afterward +nothing +like +what +they +sang +at +sweet +home +where +yearning +fashioned +every +note +the +songs +he +knew +from +georgia +were +flat +headed +nails +for +pounding +and +pounding +and +pounding +lay +my +bead +on +the +railroad +line +train +come +along +pacify +my +mind +if +i +had +my +weight +in +lime +i +d +whip +my +captain +till +he +went +stone +blind +five +cent +nickel +ten +cent +dime +busting +rocks +is +busting +time +but +they +didn +t +fit +these +songs +they +were +too +loud +had +too +much +power +for +the +little +house +chores +he +was +engaged +in +resetting +table +legs +glazing +he +couldn +t +go +back +to +storm +upon +the +waters +that +they +sang +under +the +trees +of +sweet +home +so +he +contented +himself +with +mmmmmmmmm +throwing +in +a +line +if +one +occurred +to +him +and +what +occurred +over +and +over +was +bare +feet +and +chamomile +sap +took +off +my +shoes +took +off +my +hat +it +was +tempting +to +change +the +words +gimme +back +my +shoes +gimme +back +my +hat +because +he +didn +t +believe +he +could +live +with +a +woman +any +woman +for +over +two +out +of +three +months +that +was +about +as +long +as +he +could +abide +one +place +after +delaware +and +before +that +alfred +georgia +where +he +slept +underground +and +crawled +into +sunlight +for +the +sole +purpose +of +breaking +rock +walking +off +when +he +got +ready +was +the +only +way +he +could +convince +himself +that +he +would +no +longer +have +to +sleep +pee +eat +or +swing +a +sledge +hammer +in +chains +but +this +was +not +a +normal +woman +in +a +normal +house +as +soon +as +he +had +stepped +through +the +red +light +he +knew +that +compared +to +the +rest +of +the +world +was +bald +after +alfred +he +had +shut +down +a +generous +portion +of +his +head +operating +on +the +part +that +helped +him +walk +eat +sleep +sing +if +he +could +do +those +things +with +a +little +work +and +a +little +sex +thrown +in +he +asked +for +no +more +for +more +required +him +to +dwell +on +halle +s +face +and +sixo +laughing +to +recall +trembling +in +a +box +built +into +the +ground +grateful +for +the +daylight +spent +doing +mule +work +in +a +quarry +because +he +did +not +tremble +when +he +had +a +hammer +in +his +hands +the +box +had +done +what +sweet +home +had +not +what +working +like +an +ass +and +living +like +a +dog +had +not +drove +him +crazy +so +he +would +not +lose +his +mind +by +the +time +he +got +to +ohio +then +to +cincinnati +then +to +halle +suggs +mother +s +house +he +thought +he +had +seen +and +felt +it +all +even +now +as +he +put +back +the +window +frame +he +had +smashed +he +could +not +account +for +the +pleasure +in +his +surprise +at +seeing +halle +s +wife +alive +barefoot +with +uncovered +hair +walking +around +the +corner +of +the +house +with +her +shoes +and +stockings +in +her +hands +the +closed +portion +of +his +head +opened +like +a +greased +lock +i +was +thinking +of +looking +for +work +around +here +what +you +think +ain +t +much +river +mostly +and +hogs +well +i +never +worked +on +water +but +i +can +pick +up +anything +heavy +as +me +hogs +included +whitepeople +better +here +than +kentucky +but +you +may +have +to +scramble +some +it +ain +t +whether +i +scramble +it +s +where +you +saying +it +s +all +right +to +scramble +here +better +than +all +right +your +girl +denver +seems +to +me +she +s +of +a +different +mind +why +you +say +that +she +s +got +a +waiting +way +about +her +something +she +s +expecting +and +it +ain +t +me +i +don +t +know +what +it +could +be +well +whatever +it +is +she +believes +i +m +interrupting +it +don +t +worry +about +her +she +s +a +charmed +child +from +the +beginning +is +that +right +uh +huh +nothing +bad +can +happen +to +her +look +at +it +everybody +i +knew +dead +or +gone +or +dead +and +gone +not +her +not +my +denver +even +when +i +was +carrying +her +when +it +got +clear +that +i +wasn +t +going +to +make +it +which +meant +she +wasn +t +going +to +make +it +either +she +pulled +a +whitegirl +out +of +the +hill +the +last +thing +you +d +expect +to +help +and +when +the +schoolteacher +found +us +and +came +busting +in +here +with +the +law +and +a +shotgun +schoolteacher +found +you +took +a +while +but +he +did +finally +and +he +didn +t +take +you +back +oh +no +i +wasn +t +going +back +there +i +don +t +care +who +found +who +any +life +but +not +that +one +i +went +to +jail +instead +denver +was +just +a +baby +so +she +went +right +along +with +me +rats +bit +everything +in +there +but +her +paul +d +turned +away +he +wanted +to +know +more +about +it +but +jail +talk +put +him +back +in +alfred +georgia +i +need +some +nails +anybody +around +here +i +can +borrow +from +or +should +i +go +to +town +may +as +well +go +to +town +you +ll +need +other +things +one +night +and +they +were +talking +like +a +couple +they +had +skipped +love +and +promise +and +went +directly +to +you +saying +it +s +all +right +to +scramble +here +to +sethe +the +future +was +a +matter +of +keeping +the +past +at +bay +the +better +life +she +believed +she +and +denver +were +living +was +simply +not +that +other +one +the +fact +that +paul +d +had +come +out +of +that +other +one +into +her +bed +was +better +too +and +the +notion +of +a +future +with +him +or +for +that +matter +without +him +was +beginning +to +stroke +her +mind +as +for +denver +the +job +sethe +had +of +keeping +her +from +the +past +that +was +still +waiting +for +her +was +all +that +mattered +chapter +pleasantly +troubled +sethe +avoided +the +keeping +room +and +denver +s +sidelong +looks +as +she +expected +since +life +was +like +that +it +didn +t +do +any +good +denver +ran +a +mighty +interference +and +on +the +third +day +flat +out +asked +paul +d +how +long +he +was +going +to +hang +around +the +phrase +hurt +him +so +much +he +missed +the +table +the +coffee +cup +hit +the +floor +and +rolled +down +the +sloping +boards +toward +the +front +door +hang +around +paul +d +didn +t +even +look +at +the +mess +he +had +made +denver +what +s +got +into +you +sethe +looked +at +her +daughter +feeling +more +embarrassed +than +angry +paul +d +scratched +the +hair +on +his +chin +maybe +i +should +make +tracks +no +sethe +was +surprised +by +how +loud +she +said +it +he +know +what +he +needs +said +denver +well +you +don +t +sethe +told +her +and +you +must +not +know +what +you +need +either +i +don +t +want +to +hear +another +word +out +of +you +i +just +asked +if +hush +you +make +tracks +go +somewhere +and +sit +down +denver +picked +up +her +plate +and +left +the +table +but +not +before +adding +a +chicken +back +and +more +bread +to +the +heap +she +was +carrying +away +paul +d +leaned +over +to +wipe +the +spilled +coffee +with +his +blue +handkerchief +i +ll +get +that +sethe +jumped +up +and +went +to +the +stove +behind +it +various +cloths +hung +each +in +some +stage +of +drying +in +silence +she +wiped +the +floor +and +retrieved +the +cup +then +she +poured +him +another +cupful +and +set +it +carefully +before +him +paul +d +touched +its +rim +but +didn +t +say +anything +as +though +even +thank +you +was +an +obligation +he +could +not +meet +and +the +coffee +itself +a +gift +he +could +not +take +sethe +resumed +her +chair +and +the +silence +continued +finally +she +realized +that +if +it +was +going +to +be +broken +she +would +have +to +do +it +i +didn +t +train +her +like +that +paul +d +stroked +the +rim +of +the +cup +and +i +m +as +surprised +by +her +manners +as +you +are +hurt +by +em +paul +d +looked +at +sethe +is +there +history +to +her +question +history +what +you +mean +i +mean +did +she +have +to +ask +that +or +want +to +ask +it +of +anybody +else +before +me +sethe +made +two +fists +and +placed +them +on +her +hips +you +as +bad +as +she +is +come +on +sethe +oh +i +am +coming +on +i +am +you +know +what +i +mean +i +do +and +i +don +t +like +it +jesus +he +whispered +who +sethe +was +getting +loud +again +jesus +i +said +jesus +all +i +did +was +sit +down +for +supper +and +i +get +cussed +out +twice +once +for +being +here +and +once +for +asking +why +i +was +cussed +in +the +first +place +she +didn +t +cuss +no +felt +like +it +look +here +i +apologize +for +her +i +m +real +you +can +t +do +that +you +can +t +apologize +for +nobody +she +got +to +do +that +then +i +ll +see +that +she +does +sethe +sighed +what +i +want +to +know +is +is +she +asking +a +question +that +s +on +your +mind +too +oh +no +no +paul +d +oh +no +then +she +s +of +one +mind +and +you +another +if +you +can +call +what +ever +s +in +her +head +a +mind +that +is +excuse +me +but +i +can +t +hear +a +word +against +her +i +ll +chastise +her +you +leave +her +alone +risky +thought +paul +d +very +risky +for +a +used +to +be +slave +woman +to +love +anything +that +much +was +dangerous +especially +if +it +was +her +children +she +had +settled +on +to +love +the +best +thing +he +knew +was +to +love +just +a +little +bit +everything +just +a +little +bit +so +when +they +broke +its +back +or +shoved +it +in +a +croaker +sack +well +maybe +you +d +have +a +little +love +left +over +for +the +next +one +why +he +asked +her +why +you +think +you +have +to +take +up +for +her +apologize +for +her +she +s +grown +i +don +t +care +what +she +is +grown +don +t +mean +nothing +to +a +mother +a +child +is +a +child +they +get +bigger +older +but +grown +what +s +that +supposed +to +mean +in +my +heart +it +don +t +mean +a +thing +it +means +she +has +to +take +it +if +she +acts +up +you +can +t +protect +her +every +minute +what +s +going +to +happen +when +you +die +nothing +i +ll +protect +her +while +i +m +live +and +i +ll +protect +her +when +i +ain +t +oh +well +i +m +through +he +said +i +quit +that +s +the +way +it +is +paul +d +i +can +t +explain +it +to +you +no +better +than +that +but +that +s +the +way +it +is +if +i +have +to +choose +well +it +s +not +even +a +choice +that +s +the +point +the +whole +point +i +m +not +asking +you +to +choose +nobody +would +i +thought +well +i +thought +you +could +there +was +some +space +for +me +she +s +asking +me +you +can +t +go +by +that +you +got +to +say +it +to +her +tell +her +it +s +not +about +choosing +somebody +over +her +it +s +making +space +for +somebody +along +with +her +you +got +to +say +it +and +if +you +say +it +and +mean +it +then +you +also +got +to +know +you +can +t +gag +me +there +s +no +way +i +m +going +to +hurt +her +or +not +take +care +of +what +she +need +if +i +can +but +i +can +t +be +told +to +keep +my +mouth +shut +if +she +s +acting +ugly +you +want +me +here +don +t +put +no +gag +on +me +maybe +i +should +leave +things +the +way +they +are +she +said +how +are +they +we +get +along +what +about +inside +i +don +t +go +inside +sethe +if +i +m +here +with +you +with +denver +you +can +go +anywhere +you +want +jump +if +you +want +to +cause +i +ll +catch +you +girl +i +ll +catch +you +fore +you +fall +go +as +far +inside +as +you +need +to +i +ll +hold +your +ankles +make +sure +you +get +back +out +i +m +not +saying +this +because +i +need +a +place +to +stay +that +s +the +last +thing +i +need +i +told +you +i +m +a +walking +man +but +i +been +heading +in +this +direction +for +seven +years +walking +all +around +this +place +upstate +downstate +east +west +i +been +in +territory +ain +t +got +no +name +never +staying +nowhere +long +but +when +i +got +here +and +sat +out +there +on +the +porch +waiting +for +you +well +i +knew +it +wasn +t +the +place +i +was +heading +toward +it +was +you +we +can +make +a +life +girl +a +life +i +don +t +know +i +don +t +know +leave +it +to +me +see +how +it +goes +no +promises +if +you +don +t +want +to +make +any +just +see +how +it +goes +all +right +all +right +you +willing +to +leave +it +to +me +well +some +of +it +some +he +smiled +okay +here +s +some +there +s +a +carnival +in +town +thursday +tomorrow +is +for +coloreds +and +i +got +two +dollars +me +and +you +and +denver +gonna +spend +every +penny +of +it +what +you +say +no +is +what +she +said +at +least +what +she +started +out +saying +what +would +her +boss +say +if +she +took +a +day +off +but +even +when +she +said +it +she +was +thinking +how +much +her +eyes +enjoyed +looking +in +his +face +the +crickets +were +screaming +on +thursday +and +the +sky +stripped +of +blue +was +white +hot +at +eleven +in +the +morning +sethe +was +badly +dressed +for +the +heat +but +this +being +her +first +social +outing +in +eighteen +years +she +felt +obliged +to +wear +her +one +good +dress +heavy +as +it +was +and +a +hat +certainly +a +hat +she +didn +t +want +to +meet +lady +jones +or +ella +with +her +head +wrapped +like +she +was +going +to +work +the +dress +a +good +wool +castoff +was +a +christmas +present +to +baby +suggs +from +miss +bodwin +the +whitewoman +who +loved +her +denver +and +paul +d +fared +better +in +the +heat +since +neither +felt +the +occasion +required +special +clothing +denver +s +bonnet +knocked +against +her +shoulder +blades +paul +d +wore +his +vest +open +no +jacket +and +his +shirt +sleeves +rolled +above +his +elbows +they +were +not +holding +hands +but +their +shadows +were +sethe +looked +to +her +left +and +all +three +of +them +were +gliding +over +the +dust +holding +hands +maybe +he +was +right +a +life +watching +their +hand +holding +shadows +she +was +embarrassed +at +being +dressed +for +church +the +others +ahead +and +behind +them +would +think +she +was +putting +on +airs +letting +them +know +that +she +was +different +because +she +lived +in +a +house +with +two +stories +tougher +because +she +could +do +and +survive +things +they +believed +she +should +neither +do +nor +survive +she +was +glad +denver +had +resisted +her +urgings +to +dress +up +rebraid +her +hair +at +least +but +denver +was +not +doing +anything +to +make +this +trip +a +pleasure +she +agreed +to +go +sullenly +but +her +attitude +was +go +head +try +and +make +me +happy +the +happy +one +was +paul +d +he +said +howdy +to +everybody +within +twenty +feet +made +fun +of +the +weather +and +what +it +was +doing +to +him +yelled +back +at +the +crows +and +was +the +first +to +smell +the +doomed +roses +all +the +time +no +matter +what +they +were +doing +whether +denver +wiped +perspiration +from +her +forehead +or +stooped +to +retie +her +shoes +whether +paul +d +kicked +a +stone +or +reached +over +to +meddle +a +child +s +face +leaning +on +its +mother +s +shoulder +all +the +time +the +three +shadows +that +shot +out +of +their +feet +to +the +left +held +hands +nobody +noticed +but +sethe +and +she +stopped +looking +after +she +decided +that +it +was +a +good +sign +a +life +could +be +up +and +down +the +lumberyard +fence +old +roses +were +dying +the +sawyer +who +had +planted +them +twelve +years +ago +to +give +his +workplace +a +friendly +feel +something +to +take +the +sin +out +of +slicing +trees +for +a +living +was +amazed +by +their +abundance +how +rapidly +they +crawled +all +over +the +stake +and +post +fence +that +separated +the +lumberyard +from +the +open +field +next +to +it +where +homeless +men +slept +children +ran +and +once +a +year +carnival +people +pitched +tents +the +closer +the +roses +got +to +death +the +louder +their +scent +and +everybody +who +attended +the +carnival +associated +it +with +the +stench +of +the +rotten +roses +it +made +them +a +little +dizzy +and +very +thirsty +but +did +nothing +to +extinguish +the +eagerness +of +the +coloredpeople +filing +down +the +road +some +walked +on +the +grassy +shoulders +others +dodged +the +wagons +creaking +down +the +road +s +dusty +center +all +like +paul +d +were +in +high +spirits +which +the +smell +of +dying +roses +that +paul +d +called +to +everybody +s +attention +could +not +dampen +as +they +pressed +to +get +to +the +rope +entrance +they +were +lit +like +lamps +breathless +with +the +excitement +of +seeing +white +people +loose +doing +magic +clowning +without +heads +or +with +two +heads +twenty +feet +tall +or +two +feet +tall +weighing +a +ton +completely +tattooed +eating +glass +swallowing +fire +spitting +ribbons +twisted +into +knots +forming +pyramids +playing +with +snakes +and +beating +each +other +up +all +of +this +was +advertisement +read +by +those +who +could +and +heard +by +those +who +could +not +and +the +fact +that +none +of +it +was +true +did +not +extinguish +their +appetite +a +bit +the +barker +called +them +and +their +children +names +pickaninnies +free +but +the +food +on +his +vest +and +the +hole +in +his +pants +rendered +it +fairly +harmless +in +any +case +it +was +a +small +price +to +pay +for +the +fun +they +might +not +ever +have +again +two +pennies +and +an +insult +were +well +spent +if +it +meant +seeing +the +spectacle +of +whitefolks +making +a +spectacle +of +themselves +so +although +the +carnival +was +a +lot +less +than +mediocre +which +is +why +it +agreed +to +a +colored +thursday +it +gave +the +four +hundred +black +people +in +its +audience +thrill +upon +thrill +upon +thrill +one +ton +lady +spit +at +them +but +her +bulk +shortened +her +aim +and +they +got +a +big +kick +out +of +the +helpless +meanness +in +her +little +eyes +arabian +nights +dancer +cut +her +performance +to +three +minutes +instead +of +the +usual +fifteen +she +normally +did +earning +the +gratitude +of +the +children +who +could +hardly +wait +for +abu +snake +charmer +who +followed +her +denver +bought +horehound +licorice +peppermint +and +lemonade +at +a +table +manned +by +a +little +whitegirl +in +ladies +high +topped +shoes +soothed +by +sugar +surrounded +by +a +crowd +of +people +who +did +not +find +her +the +main +attraction +who +in +fact +said +hey +denver +every +now +and +then +pleased +her +enough +to +consider +the +possibility +that +paul +d +wasn +t +all +that +bad +in +fact +there +was +something +about +him +when +the +three +of +them +stood +together +watching +midget +dance +that +made +the +stares +of +other +negroes +kind +gentle +something +denver +did +not +remember +seeing +in +their +faces +several +even +nodded +and +smiled +at +her +mother +no +one +apparently +able +to +withstand +sharing +the +pleasure +paul +d +was +having +he +slapped +his +knees +when +giant +danced +with +midget +when +two +headed +man +talked +to +himself +he +bought +everything +denver +asked +for +and +much +she +did +not +he +teased +sethe +into +tents +she +was +reluctant +to +enter +stuck +pieces +of +candy +she +didn +t +want +between +her +lips +when +wild +african +savage +shook +his +bars +and +said +wa +wa +paul +d +told +everybody +he +knew +him +back +in +roanoke +paul +d +made +a +few +acquaintances +spoke +to +them +about +what +work +he +might +find +sethe +returned +the +smiles +she +got +denver +was +swaying +with +delight +and +on +the +way +home +although +leading +them +now +the +shadows +of +three +people +still +held +hands +chapter +a +fully +dressed +woman +walked +out +of +the +water +she +barely +gained +the +dry +bank +of +the +stream +before +she +sat +down +and +leaned +against +a +mulberry +tree +all +day +and +all +night +she +sat +there +her +head +resting +on +the +trunk +in +a +position +abandoned +enough +to +crack +the +brim +in +her +straw +hat +everything +hurt +but +her +lungs +most +of +all +sopping +wet +and +breathing +shallow +she +spent +those +hours +trying +to +negotiate +the +weight +of +her +eyelids +the +day +breeze +blew +her +dress +dry +the +night +wind +wrinkled +it +nobody +saw +her +emerge +or +came +accidentally +by +if +they +had +chances +are +they +would +have +hesitated +before +approaching +her +not +because +she +was +wet +or +dozing +or +had +what +sounded +like +asthma +but +because +amid +all +that +she +was +smiling +it +took +her +the +whole +of +the +next +morning +to +lift +herself +from +the +ground +and +make +her +way +through +the +woods +past +a +giant +temple +of +boxwood +to +the +field +and +then +the +yard +of +the +slate +gray +house +exhausted +again +she +sat +down +on +the +first +handy +place +a +stump +not +far +from +the +steps +of +by +then +keeping +her +eyes +open +was +less +of +an +effort +she +could +manage +it +for +a +full +two +minutes +or +more +her +neck +its +circumference +no +wider +than +a +parlor +service +saucer +kept +bending +and +her +chin +brushed +the +bit +of +lace +edging +her +dress +women +who +drink +champagne +when +there +is +nothing +to +celebrate +can +look +like +that +their +straw +hats +with +broken +brims +are +often +askew +they +nod +in +public +places +their +shoes +are +undone +but +their +skin +is +not +like +that +of +the +woman +breathing +near +the +steps +of +she +had +new +skin +lineless +and +smooth +including +the +knuckles +of +her +hands +by +late +afternoon +when +the +carnival +was +over +and +the +negroes +were +hitching +rides +home +if +they +were +lucky +walking +if +they +were +not +the +woman +had +fallen +asleep +again +the +rays +of +the +sun +struck +her +full +in +the +face +so +that +when +sethe +denver +and +paul +d +rounded +the +curve +in +the +road +all +they +saw +was +a +black +dress +two +unlaced +shoes +below +it +and +here +boy +nowhere +in +sight +look +said +denver +what +is +that +and +for +some +reason +she +could +not +immediately +account +for +the +moment +she +got +close +enough +to +see +the +face +sethe +s +bladder +filled +to +capacity +she +said +oh +excuse +me +and +ran +around +to +the +back +of +not +since +she +was +a +baby +girl +being +cared +for +by +the +eight +year +old +girl +who +pointed +out +her +mother +to +her +had +she +had +an +emergency +that +unmanageable +she +never +made +the +outhouse +right +in +front +of +its +door +she +had +to +lift +her +skirts +and +the +water +she +voided +was +endless +like +a +horse +she +thought +but +as +it +went +on +and +on +she +thought +no +more +like +flooding +the +boat +when +denver +was +born +so +much +water +amy +said +hold +on +lu +you +going +to +sink +us +you +keep +that +up +but +there +was +no +stopping +water +breaking +from +a +breaking +womb +and +there +was +no +stopping +now +she +hoped +paul +d +wouldn +t +take +it +upon +himself +to +come +looking +for +her +and +be +obliged +to +see +her +squatting +in +front +of +her +own +privy +making +a +mudhole +too +deep +to +be +witnessed +without +shame +just +about +the +time +she +started +wondering +if +the +carnival +would +accept +another +freak +it +stopped +she +tidied +herself +and +ran +around +to +the +porch +no +one +was +there +all +three +were +insidepaul +d +and +denver +standing +before +the +stranger +watching +her +drink +cup +after +cup +of +water +she +said +she +was +thirsty +said +paul +d +he +took +off +his +cap +mighty +thirsty +look +like +the +woman +gulped +water +from +a +speckled +tin +cup +and +held +it +out +for +more +four +times +denver +filled +it +and +four +times +the +woman +drank +as +though +she +had +crossed +a +desert +when +she +was +finished +a +little +water +was +on +her +chin +but +she +did +not +wipe +it +away +instead +she +gazed +at +sethe +with +sleepy +eyes +poorly +fed +thought +sethe +and +younger +than +her +clothes +suggested +good +lace +at +the +throat +and +a +rich +woman +s +hat +her +skin +was +flawless +except +for +three +vertical +scratches +on +her +forehead +so +fine +and +thin +they +seemed +at +first +like +hair +baby +hair +before +it +bloomed +and +roped +into +the +masses +of +black +yarn +under +her +hat +you +from +around +here +sethe +asked +her +she +shook +her +head +no +and +reached +down +to +take +off +her +shoes +she +pulled +her +dress +up +to +the +knees +and +rolled +down +her +stockings +when +the +hosiery +was +tucked +into +the +shoes +sethe +saw +that +her +feet +were +like +her +hands +soft +and +new +she +must +have +hitched +a +wagon +ride +thought +sethe +probably +one +of +those +west +virginia +girls +looking +for +something +to +beat +a +life +of +tobacco +and +sorghum +sethe +bent +to +pick +up +the +shoes +what +might +your +name +be +asked +paul +d +beloved +she +said +and +her +voice +was +so +low +and +rough +each +one +looked +at +the +other +two +they +heard +the +voice +first +later +the +name +beloved +you +use +a +last +name +beloved +paul +d +asked +her +last +she +seemed +puzzled +then +no +and +she +spelled +it +for +them +slowly +as +though +the +letters +were +being +formed +as +she +spoke +them +sethe +dropped +the +shoes +denver +sat +down +and +paul +d +smiled +he +recognized +the +careful +enunciation +of +letters +by +those +like +himself +who +could +not +read +but +had +memorized +the +letters +of +their +name +he +was +about +to +ask +who +her +people +were +but +thought +better +of +it +a +young +coloredwoman +drifting +was +drifting +from +ruin +he +had +been +in +rochester +four +years +ago +and +seen +five +women +arriving +with +fourteen +female +children +all +their +men +brothers +uncles +fathers +husbands +sons +had +been +picked +off +one +by +one +by +one +they +had +a +single +piece +of +paper +directing +them +to +a +preacher +on +devore +street +the +war +had +been +over +four +or +five +years +then +but +nobody +white +or +black +seemed +to +know +it +odd +clusters +and +strays +of +negroes +wandered +the +back +roads +and +cowpaths +from +schenectady +to +jackson +dazed +but +insistent +they +searched +each +other +out +for +word +of +a +cousin +an +aunt +a +friend +who +once +said +call +on +me +anytime +you +get +near +chicago +just +call +on +me +some +of +them +were +running +from +family +that +could +not +support +them +some +to +family +some +were +running +from +dead +crops +dead +kin +life +threats +and +took +over +land +boys +younger +than +buglar +and +howard +configurations +and +blends +of +families +of +women +and +children +while +elsewhere +solitary +hunted +and +hunting +for +were +men +men +men +forbidden +public +transportation +chased +by +debt +and +filthy +talking +sheets +they +followed +secondary +routes +scanned +the +horizon +for +signs +and +counted +heavily +on +each +other +silent +except +for +social +courtesies +when +they +met +one +another +they +neither +described +nor +asked +about +the +sorrow +that +drove +them +from +one +place +to +another +the +whites +didn +t +bear +speaking +on +everybody +knew +so +he +did +not +press +the +young +woman +with +the +broken +hat +about +where +from +or +how +come +if +she +wanted +them +to +know +and +was +strong +enough +to +get +through +the +telling +she +would +what +occupied +them +at +the +moment +was +what +it +might +be +that +she +needed +underneath +the +major +question +each +harbored +another +paul +d +wondered +at +the +newness +of +her +shoes +sethe +was +deeply +touched +by +her +sweet +name +the +remembrance +of +glittering +headstone +made +her +feel +especially +kindly +toward +her +denver +however +was +shaking +she +looked +at +this +sleepy +beauty +and +wanted +more +sethe +hung +her +hat +on +a +peg +and +turned +graciously +toward +the +girl +that +s +a +pretty +name +beloved +take +off +your +hat +why +don +t +you +and +i +ll +make +us +something +we +just +got +back +from +the +carnival +over +near +cincinnati +everything +in +there +is +something +to +see +bolt +upright +in +the +chair +in +the +middle +of +sethe +s +welcome +beloved +had +fallen +asleep +again +miss +miss +paul +d +shook +her +gently +you +want +to +lay +down +a +spell +she +opened +her +eyes +to +slits +and +stood +up +on +her +soft +new +feet +which +barely +capable +of +their +job +slowly +bore +her +to +the +keeping +room +once +there +she +collapsed +on +baby +suggs +bed +denver +removed +her +hat +and +put +the +quilt +with +two +squares +of +color +over +her +feet +she +was +breathing +like +a +steam +engine +sounds +like +croup +said +paul +d +closing +the +door +is +she +feverish +denver +could +you +tell +no +she +s +cold +then +she +is +fever +goes +from +hot +to +cold +could +have +the +cholera +said +paul +d +reckon +all +that +water +sure +sign +poor +thing +and +nothing +in +this +house +to +give +her +for +it +she +ll +just +have +to +ride +it +out +that +s +a +hateful +sickness +if +ever +there +was +one +she +s +not +sick +said +denver +and +the +passion +in +her +voice +made +them +smile +four +days +she +slept +waking +and +sitting +up +only +for +water +denver +tended +her +watched +her +sound +sleep +listened +to +her +labored +breathing +and +out +of +love +and +a +breakneck +possessiveness +that +charged +her +hid +like +a +personal +blemish +beloved +s +incontinence +she +rinsed +the +sheets +secretly +after +sethe +went +to +the +restaurant +and +paul +d +went +scrounging +for +barges +to +help +unload +she +boiled +the +underwear +and +soaked +it +in +bluing +praying +the +fever +would +pass +without +damage +so +intent +was +her +nursing +she +forgot +to +eat +or +visit +the +emerald +closet +beloved +denver +would +whisper +beloved +and +when +the +black +eyes +opened +a +slice +all +she +could +say +was +i +m +here +i +m +still +here +sometimes +when +beloved +lay +dreamy +eyed +for +a +very +long +time +saying +nothing +licking +her +lips +and +heaving +deep +sighs +denver +panicked +what +is +it +she +would +ask +heavy +murmured +beloved +this +place +is +heavy +would +you +like +to +sit +up +no +said +the +raspy +voice +it +took +three +days +for +beloved +to +notice +the +orange +patches +in +the +darkness +of +the +quilt +denver +was +pleased +because +it +kept +her +patient +awake +longer +she +seemed +totally +taken +with +those +faded +scraps +of +orange +even +made +the +effort +to +lean +on +her +elbow +and +stroke +them +an +effort +that +quickly +exhausted +her +so +denver +rearranged +the +quilt +so +its +cheeriest +part +was +in +the +sick +girl +s +sight +line +patience +something +denver +had +never +known +overtook +her +as +long +as +her +mother +did +not +interfere +she +was +a +model +of +compassion +turning +waspish +though +when +sethe +tried +to +help +did +she +take +a +spoonful +of +anything +today +sethe +inquired +she +shouldn +t +eat +with +cholera +you +sure +that +s +it +was +just +a +hunch +of +paul +d +s +i +don +t +know +but +she +shouldn +t +eat +anyway +just +yet +i +think +cholera +people +puke +all +the +time +that +s +even +more +reason +ain +t +it +well +she +shouldn +t +starve +to +death +either +denver +leave +us +alone +ma +am +i +m +taking +care +of +her +she +say +anything +i +d +let +you +know +if +she +did +sethe +looked +at +her +daughter +and +thought +yes +she +has +been +lonesome +very +lonesome +wonder +where +here +boy +got +off +to +sethe +thought +a +change +of +subject +was +needed +he +won +t +be +back +said +denver +how +you +know +i +just +know +denver +took +a +square +of +sweet +bread +off +the +plate +back +in +the +keeping +room +denver +was +about +to +sit +down +when +beloved +s +eyes +flew +wide +open +denver +felt +her +heart +race +it +wasn +t +that +she +was +looking +at +that +face +for +the +first +time +with +no +trace +of +sleep +in +it +or +that +the +eyes +were +big +and +black +nor +was +it +that +the +whites +of +them +were +much +too +white +blue +white +it +was +that +deep +down +in +those +big +black +eyes +there +was +no +expression +at +all +can +i +get +you +something +beloved +looked +at +the +sweet +bread +in +denver +s +hands +and +denver +held +it +out +to +her +she +smiled +then +and +denver +s +heart +stopped +bouncing +and +sat +down +relieved +and +easeful +like +a +traveler +who +had +made +it +home +from +that +moment +and +through +everything +that +followed +sugar +could +always +be +counted +on +to +please +her +it +was +as +though +sweet +things +were +what +she +was +born +for +honey +as +well +as +the +wax +it +came +in +sugar +sandwiches +the +sludgy +molasses +gone +hard +and +brutal +in +the +can +lemonade +taffy +and +any +type +of +dessert +sethe +brought +home +from +the +restaurant +she +gnawed +a +cane +stick +to +flax +and +kept +the +strings +in +her +mouth +long +after +the +syrup +had +been +sucked +away +denver +laughed +sethe +smiled +and +paul +d +said +it +made +him +sick +to +his +stomach +sethe +believed +it +was +a +recovering +body +s +need +after +an +illness +for +quick +strength +but +it +was +a +need +that +went +on +and +on +into +glowing +health +because +beloved +didn +t +go +anywhere +there +didn +t +seem +anyplace +for +her +to +go +she +didn +t +mention +one +or +have +much +of +an +idea +of +what +she +was +doing +in +that +part +of +the +country +or +where +she +had +been +they +believed +the +fever +had +caused +her +memory +to +fail +just +as +it +kept +her +slow +moving +a +young +woman +about +nineteen +or +twenty +and +slender +she +moved +like +a +heavier +one +or +an +older +one +holding +on +to +furniture +resting +her +head +in +the +palm +of +her +hand +as +though +it +was +too +heavy +for +a +neck +alone +you +just +gonna +feed +her +from +now +on +paul +d +feeling +ungenerous +and +surprised +by +it +heard +the +irritability +in +his +voice +denver +likes +her +she +s +no +real +trouble +i +thought +we +d +wait +till +her +breath +was +better +she +still +sounds +a +little +lumbar +to +me +something +funny +bout +that +gal +paul +d +said +mostly +to +himself +funny +how +acts +sick +sounds +sick +but +she +don +t +look +sick +good +skin +bright +eyes +and +strong +as +a +bull +she +s +not +strong +she +can +hardly +walk +without +holding +on +to +something +that +s +what +i +mean +can +t +walk +but +i +seen +her +pick +up +the +rocker +with +one +hand +you +didn +t +don +t +tell +me +ask +denver +she +was +right +there +with +her +denver +come +in +here +a +minute +denver +stopped +rinsing +the +porch +and +stuck +her +head +in +the +window +paul +d +says +you +and +him +saw +beloved +pick +up +the +rocking +chair +single +handed +that +so +long +heavy +lashes +made +denver +s +eyes +seem +busier +than +they +were +deceptive +even +when +she +held +a +steady +gaze +as +she +did +now +on +paul +d +no +she +said +i +didn +t +see +no +such +thing +paul +d +frowned +but +said +nothing +if +there +had +been +an +open +latch +between +them +it +would +have +closed +chapter +rainwater +held +on +to +pine +needles +for +dear +life +and +beloved +could +not +take +her +eyes +off +sethe +stooping +to +shake +the +damper +or +snapping +sticks +for +kindlin +sethe +was +licked +tasted +eaten +by +beloved +s +eyes +like +a +familiar +she +hovered +never +leaving +the +room +sethe +was +in +unless +required +and +told +to +she +rose +early +in +the +dark +to +be +there +waiting +in +the +kitchen +when +sethe +came +down +to +make +fast +bread +before +she +left +for +work +in +lamplight +and +over +the +flames +of +the +cooking +stove +their +two +shadows +clashed +and +crossed +on +the +ceiling +like +black +swords +she +was +in +the +window +at +two +when +sethe +returned +or +the +doorway +then +the +porch +its +steps +the +path +the +road +till +finally +surrendering +to +the +habit +beloved +began +inching +down +bluestone +road +further +and +further +each +day +to +meet +sethe +and +walk +her +back +to +it +was +as +though +every +afternoon +she +doubted +anew +the +older +woman +s +return +sethe +was +flattered +by +beloved +s +open +quiet +devotion +the +same +adoration +from +her +daughter +had +it +been +forthcoming +would +have +annoyed +her +made +her +chill +at +the +thought +of +having +raised +a +ridiculously +dependent +child +but +the +company +of +this +sweet +if +peculiar +guest +pleased +her +the +way +a +zealot +pleases +his +teacher +time +came +when +lamps +had +to +be +lit +early +because +night +arrived +sooner +and +sooner +sethe +was +leaving +for +work +in +the +dark +paul +d +was +walking +home +in +it +on +one +such +evening +dark +and +cool +sethe +cut +a +rutabaga +into +four +pieces +and +left +them +stewing +she +gave +denver +a +half +peck +of +peas +to +sort +and +soak +overnight +then +she +sat +herself +down +to +rest +the +heat +of +the +stove +made +her +drowsy +and +she +was +sliding +into +sleep +when +she +felt +beloved +touch +her +a +touch +no +heavier +than +a +feather +but +loaded +nevertheless +with +desire +sethe +stirred +and +looked +around +first +at +beloved +s +soft +new +hand +on +her +shoulder +then +into +her +eyes +the +longing +she +saw +there +was +bottomless +some +plea +barely +in +control +sethe +patted +beloved +s +fingers +and +glanced +at +denver +whose +eyes +were +fixed +on +her +pea +sorting +task +where +your +diamonds +beloved +searched +sethe +s +face +diamonds +what +would +i +be +doing +with +diamonds +on +your +ears +wish +i +did +i +had +some +crystal +once +a +present +from +a +lady +i +worked +for +tell +me +said +beloved +smiling +a +wide +happy +smile +tell +me +your +diamonds +it +became +a +way +to +feed +her +just +as +denver +discovered +and +relied +on +the +delightful +effect +sweet +things +had +on +beloved +sethe +learned +the +profound +satisfaction +beloved +got +from +storytelling +it +amazed +sethe +as +much +as +it +pleased +beloved +because +every +mention +of +her +past +life +hurt +everything +in +it +was +painful +or +lost +she +and +baby +suggs +had +agreed +without +saying +so +that +it +was +unspeakable +to +denver +s +inquiries +sethe +gave +short +replies +or +rambling +incomplete +reveries +even +with +paul +d +who +had +shared +some +of +it +and +to +whom +she +could +talk +with +at +least +a +measure +of +calm +the +hurt +was +always +there +like +a +tender +place +in +the +corner +of +her +mouth +that +the +bit +left +but +as +she +began +telling +about +the +earrings +she +found +herself +wanting +to +liking +it +perhaps +it +was +beloved +s +distance +from +the +events +itself +or +her +thirst +for +hearing +it +in +any +case +it +was +an +unexpected +pleasure +above +the +patter +of +the +pea +sorting +and +the +sharp +odor +of +cooking +rutabaga +sethe +explained +the +crystal +that +once +hung +from +her +ears +that +lady +i +worked +for +in +kentucky +gave +them +to +me +when +i +got +married +what +they +called +married +hack +there +and +back +then +i +guess +she +saw +how +bad +i +felt +when +i +found +out +there +wasn +t +going +to +be +no +ceremony +no +preacher +nothing +i +thought +there +should +be +something +something +to +say +it +was +right +and +true +i +didn +t +want +it +to +be +just +me +moving +over +a +bit +of +pallet +full +of +corn +husks +or +just +me +bringing +my +night +bucket +into +his +cabin +i +thought +there +should +be +some +ceremony +dancing +maybe +a +little +sweet +william +in +my +hair +sethe +smiled +i +never +saw +a +wedding +but +i +saw +mrs +garner +s +wedding +gown +in +the +press +and +heard +her +go +on +about +what +it +was +like +two +pounds +of +currants +in +the +cake +she +said +and +four +whole +sheep +the +people +were +still +eating +the +next +day +that +s +what +i +wanted +a +meal +maybe +where +me +and +halle +and +all +the +sweet +home +men +sat +down +and +ate +something +special +invite +some +of +the +other +colored +people +from +over +by +covington +or +high +trees +those +places +sixo +used +to +sneak +off +to +but +it +wasn +t +going +to +be +nothing +they +said +it +was +all +right +for +us +to +be +husband +and +wife +and +that +was +it +all +of +it +well +i +made +up +my +mind +to +have +at +the +least +a +dress +that +wasn +t +the +sacking +i +worked +in +so +i +took +to +stealing +fabric +and +wound +up +with +a +dress +you +wouldn +t +believe +the +top +was +from +two +pillow +cases +in +her +mending +basket +the +front +of +the +skirt +was +a +dresser +scarf +a +candle +fell +on +and +burnt +a +hole +in +and +one +of +her +old +sashes +we +used +to +test +the +flatiron +on +now +the +back +was +a +problem +for +the +longest +time +seem +like +i +couldn +t +find +a +thing +that +wouldn +t +be +missed +right +away +because +i +had +to +take +it +apart +afterwards +and +put +all +the +pieces +back +where +they +were +now +halle +was +patient +waiting +for +me +to +finish +it +he +knew +i +wouldn +t +go +ahead +without +having +it +finally +i +took +the +mosquito +netting +from +a +nail +out +the +barn +we +used +it +to +strain +jelly +through +i +washed +it +and +soaked +it +best +i +could +and +tacked +it +on +for +the +back +of +the +skirt +and +there +i +was +in +the +worst +looking +gown +you +could +imagine +only +my +wool +shawl +kept +me +from +looking +like +a +haint +peddling +i +wasn +t +but +fourteen +years +old +so +i +reckon +that +s +why +i +was +so +proud +of +myself +anyhow +mrs +garner +must +have +seen +me +in +it +i +thought +i +was +stealing +smart +and +she +knew +everything +i +did +even +our +honeymoon +going +down +to +the +cornfield +with +halle +that +s +where +we +went +first +a +saturday +afternoon +it +was +he +begged +sick +so +he +wouldn +t +have +to +go +work +in +town +that +day +usually +he +worked +saturdays +and +sundays +to +pay +off +baby +suggs +freedom +but +he +begged +sick +and +i +put +on +my +dress +and +we +walked +into +the +corn +holding +hands +i +can +still +smell +the +ears +roasting +yonder +where +the +pauls +and +sixo +was +next +day +mrs +garner +crooked +her +finger +at +me +and +took +me +upstairs +to +her +bedroom +she +opened +up +a +wooden +box +and +took +out +a +pair +of +crystal +earrings +she +said +i +want +you +to +have +these +sethe +i +said +yes +ma +am +are +your +ears +pierced +she +said +i +said +no +ma +am +well +do +it +she +said +so +you +can +wear +them +i +want +you +to +have +them +and +i +want +you +and +halle +to +be +happy +i +thanked +her +but +i +never +did +put +them +on +till +i +got +away +from +there +one +day +after +i +walked +into +this +here +house +baby +suggs +unknotted +my +underskirt +and +took +em +out +i +sat +right +here +by +the +stove +with +denver +in +my +arms +and +let +her +punch +holes +in +my +ears +for +to +wear +them +i +never +saw +you +in +no +earrings +said +denver +where +are +they +now +gone +said +sethe +long +gone +and +she +wouldn +t +say +another +word +until +the +next +time +when +all +three +of +them +ran +through +the +wind +back +into +the +house +with +rainsoaked +sheets +and +petticoats +panting +laughing +they +draped +the +laundry +over +the +chairs +and +table +beloved +filled +herself +with +water +from +the +bucket +and +watched +while +sethe +rubbed +denver +s +hair +with +a +piece +of +toweling +maybe +we +should +unbraid +it +asked +sethe +oh +uh +tomorrow +denver +crouched +forward +at +the +thought +of +a +fine +tooth +comb +pulling +her +hair +today +is +always +here +said +sethe +tomorrow +never +it +hurts +denver +said +comb +it +every +day +it +won +t +ouch +your +woman +she +never +fix +up +your +hair +beloved +asked +sethe +and +denver +looked +up +at +her +after +four +weeks +they +still +had +not +got +used +to +the +gravelly +voice +and +the +song +that +seemed +to +lie +in +it +just +outside +music +it +lay +with +a +cadence +not +like +theirs +your +woman +she +never +fix +up +your +hair +was +clearly +a +question +for +sethe +since +that +s +who +she +was +looking +at +my +woman +you +mean +my +mother +if +she +did +i +don +t +remember +i +didn +t +see +her +but +a +few +times +out +in +the +fields +and +once +when +she +was +working +indigo +by +the +time +i +woke +up +in +the +morning +she +was +in +line +if +the +moon +was +bright +they +worked +by +its +light +sunday +she +slept +like +a +stick +she +must +of +nursed +me +two +or +three +weeks +that +s +the +way +the +others +did +then +she +went +back +in +rice +and +i +sucked +from +another +woman +whose +job +it +was +so +to +answer +you +no +i +reckon +not +she +never +fixed +my +hair +nor +nothing +she +didn +t +even +sleep +in +the +same +cabin +most +nights +i +remember +too +far +from +the +line +up +i +guess +one +thing +she +did +do +she +picked +me +up +and +carried +me +behind +the +smokehouse +back +there +she +opened +up +her +dress +front +and +lifted +her +breast +and +pointed +under +it +right +on +her +rib +was +a +circle +and +a +cross +burnt +right +in +the +skin +she +said +this +is +your +ma +am +this +and +she +pointed +i +am +the +only +one +got +this +mark +now +the +rest +dead +if +something +happens +to +me +and +you +can +t +tell +me +by +my +face +you +can +know +me +by +this +mark +scared +me +so +all +i +could +think +of +was +how +important +this +was +and +how +i +needed +to +have +something +important +to +say +back +but +i +couldn +t +think +of +anything +so +i +just +said +what +i +thought +yes +ma +am +i +said +but +how +will +you +know +me +how +will +you +know +me +mark +me +too +i +said +mark +the +mark +on +me +too +sethe +chuckled +did +she +asked +denver +she +slapped +my +face +what +for +i +didn +t +understand +it +then +not +till +i +had +a +mark +of +my +own +what +happened +to +her +hung +by +the +time +they +cut +her +down +nobody +could +tell +whether +she +had +a +circle +and +a +cross +or +not +least +of +all +me +and +i +did +look +sethe +gathered +hair +from +the +comb +and +leaning +back +tossed +it +into +the +fire +it +exploded +into +stars +and +the +smell +infuriated +them +oh +my +jesus +she +said +and +stood +up +so +suddenly +the +comb +she +had +parked +in +denver +s +hair +fell +to +the +floor +ma +am +what +s +the +matter +with +you +ma +am +sethe +walked +over +to +a +chair +lifted +a +sheet +and +stretched +it +as +wide +as +her +arms +would +go +then +she +folded +refolded +and +double +folded +it +she +took +another +neither +was +completely +dry +but +the +folding +felt +too +fine +to +stop +she +had +to +do +something +with +her +hands +because +she +was +remembering +something +she +had +forgotten +she +knew +something +privately +shameful +that +had +seeped +into +a +slit +in +her +mind +right +behind +the +slap +on +her +face +and +the +circled +cross +why +they +hang +your +ma +am +denver +asked +this +was +the +first +time +she +had +heard +anything +about +her +mother +s +mother +baby +suggs +was +the +only +grandmother +she +knew +i +never +found +out +it +was +a +lot +of +them +she +said +but +what +was +getting +clear +and +clearer +as +she +folded +and +refolded +damp +laundry +was +the +woman +called +nan +who +took +her +hand +and +yanked +her +away +from +the +pile +before +she +could +make +out +the +mark +nan +was +the +one +she +knew +best +who +was +around +all +day +who +nursed +babies +cooked +had +one +good +arm +and +half +of +another +and +who +used +different +words +words +sethe +understood +then +but +could +neither +recall +nor +repeat +now +she +believed +that +must +be +why +she +remembered +so +little +before +sweet +home +except +singing +and +dancing +and +how +crowded +it +was +what +nan +told +her +she +had +forgotten +along +with +the +language +she +told +it +in +the +same +language +her +ma +am +spoke +and +which +would +never +come +back +but +the +message +that +was +and +had +been +there +all +along +holding +the +damp +white +sheets +against +her +chest +she +was +picking +meaning +out +of +a +code +she +no +longer +understood +nighttime +nan +holding +her +with +her +good +arm +waving +the +stump +of +the +other +in +the +air +telling +you +i +am +telling +you +small +girl +sethe +and +she +did +that +she +told +sethe +that +her +mother +and +nan +were +together +from +the +sea +both +were +taken +up +many +times +by +the +crew +she +threw +them +all +away +but +you +the +one +from +the +crew +she +threw +away +on +the +island +the +others +from +more +whites +she +also +threw +away +without +names +she +threw +them +you +she +gave +the +name +of +the +black +man +she +put +her +arms +around +him +the +others +she +did +not +put +her +arms +around +never +never +telling +you +i +am +telling +you +small +girl +sethe +as +small +girl +sethe +she +was +unimpressed +as +grown +up +woman +sethe +she +was +angry +but +not +certain +at +what +a +mighty +wish +for +baby +suggs +broke +over +her +like +surf +in +the +quiet +following +its +splash +sethe +looked +at +the +two +girls +sitting +by +the +stove +her +sickly +shallow +minded +boarder +her +irritable +lonely +daughter +they +seemed +little +and +far +away +paul +d +be +here +in +a +minute +she +said +denver +sighed +with +relief +for +a +minute +there +while +her +mother +stood +folding +the +wash +lost +in +thought +she +clamped +her +teeth +and +prayed +it +would +stop +denver +hated +the +stories +her +mother +told +that +did +not +concern +herself +which +is +why +amy +was +all +she +ever +asked +about +the +rest +was +a +gleaming +powerful +world +made +more +so +by +denver +s +absence +from +it +not +being +in +it +she +hated +it +and +wanted +beloved +to +hate +it +too +although +there +was +no +chance +of +that +at +all +beloved +took +every +opportunity +to +ask +some +funny +question +and +get +sethe +going +denver +noticed +how +greedy +she +was +to +hear +sethe +talk +now +she +noticed +something +more +the +questions +beloved +asked +where +your +diamonds +your +woman +she +never +fix +up +your +hair +and +most +perplexing +tell +me +your +earrings +how +did +she +know +chapter +beloved +was +shining +and +paul +d +didn +t +like +it +women +did +what +strawberry +plants +did +before +they +shot +out +their +thin +vines +the +quality +of +the +green +changed +then +the +vine +threads +came +then +the +buds +by +the +time +the +white +petals +died +and +the +mint +colored +berry +poked +out +the +leaf +shine +was +gilded +fight +and +waxy +that +s +how +beloved +looked +gilded +and +shining +paul +d +took +to +having +sethe +on +waking +so +that +later +when +he +went +down +the +white +stairs +where +she +made +bread +under +beloved +s +gaze +his +head +was +clear +in +the +evening +when +he +came +home +and +the +three +of +them +were +all +there +fixing +the +supper +table +her +shine +was +so +pronounced +he +wondered +why +denver +and +sethe +didn +t +see +it +or +maybe +they +did +certainly +women +could +tell +as +men +could +when +one +of +their +number +was +aroused +paul +d +looked +carefully +at +beloved +to +see +if +she +was +aware +of +it +but +she +paid +him +no +attention +at +all +frequently +not +even +answering +a +direct +question +put +to +her +she +would +look +at +him +and +not +open +her +mouth +five +weeks +she +had +been +with +them +and +they +didn +t +know +any +more +about +her +than +they +did +when +they +found +her +asleep +on +the +stump +they +were +seated +at +the +table +paul +d +had +broken +the +day +he +arrived +at +its +mended +legs +stronger +than +before +the +cabbage +was +all +gone +and +the +shiny +ankle +bones +of +smoked +pork +were +pushed +in +a +heap +on +their +plates +sethe +was +dishing +up +bread +pudding +murmuring +her +hopes +for +it +apologizing +in +advance +the +way +veteran +cooks +always +do +when +something +in +beloved +s +face +some +petlike +adoration +that +took +hold +of +her +as +she +looked +at +sethe +made +paul +d +speak +ain +t +you +got +no +brothers +or +sisters +beloved +diddled +her +spoon +but +did +not +look +at +him +i +don +t +have +nobody +what +was +you +looking +for +when +you +came +here +he +asked +her +this +place +i +was +looking +for +this +place +i +could +be +in +somebody +tell +you +about +this +house +she +told +me +when +i +was +at +the +bridge +she +told +me +must +be +somebody +from +the +old +days +sethe +said +the +days +when +was +a +way +station +where +messages +came +and +then +their +senders +where +bits +of +news +soaked +like +dried +beans +in +spring +water +until +they +were +soft +enough +to +digest +how +d +you +come +who +brought +you +now +she +looked +steadily +at +him +but +did +not +answer +he +could +feel +both +sethe +and +denver +pulling +in +holding +their +stomach +muscles +sending +out +sticky +spiderwebs +to +touch +one +another +he +decided +to +force +it +anyway +i +asked +you +who +brought +you +here +i +walked +here +she +said +a +long +long +long +long +way +nobody +bring +me +nobody +help +me +you +had +new +shoes +if +you +walked +so +long +why +don +t +your +shoes +show +it +paul +d +stop +picking +on +her +i +want +to +know +he +said +holding +the +knife +handle +in +his +fist +like +a +pole +i +take +the +shoes +i +take +the +dress +the +shoe +strings +don +t +fix +she +shouted +and +gave +him +a +look +so +malevolent +denver +touched +her +arm +i +ll +teach +you +said +denver +how +to +tie +your +shoes +and +got +a +smile +from +beloved +as +a +reward +paul +d +had +the +feeling +a +large +silver +fish +had +slipped +from +his +hands +the +minute +he +grabbed +hold +of +its +tail +that +it +was +streaming +back +off +into +dark +water +now +gone +but +for +the +glistening +marking +its +route +but +if +her +shining +was +not +for +him +who +then +he +had +never +known +a +woman +who +lit +up +for +nobody +in +particular +who +just +did +it +as +a +general +announcement +always +in +his +experience +the +light +appeared +when +there +was +focus +like +the +thirty +mile +woman +dulled +to +smoke +while +he +waited +with +her +in +the +ditch +and +starlight +when +sixo +got +there +he +never +knew +himself +to +mistake +it +it +was +there +the +instant +he +looked +at +sethe +s +wet +legs +otherwise +he +never +would +have +been +bold +enough +to +enclose +her +in +his +arms +that +day +and +whisper +into +her +back +this +girl +beloved +homeless +and +without +people +beat +all +though +he +couldn +t +say +exactly +why +considering +the +coloredpeople +he +had +run +into +during +the +last +twenty +years +during +before +and +after +the +war +he +had +seen +negroes +so +stunned +or +hungry +or +tired +or +bereft +it +was +a +wonder +they +recalled +or +said +anything +who +like +him +had +hidden +in +caves +and +fought +owls +for +food +who +like +him +stole +from +pigs +who +like +him +slept +in +trees +in +the +day +and +walked +by +night +who +like +him +had +buried +themselves +in +slop +and +jumped +in +wells +to +avoid +regulators +raiders +paterollers +veterans +hill +men +posses +and +merrymakers +once +he +met +a +negro +about +fourteen +years +old +who +lived +by +himself +in +the +woods +and +said +he +couldn +t +remember +living +anywhere +else +he +saw +a +witless +coloredwoman +jailed +and +hanged +for +stealing +ducks +she +believed +were +her +own +babies +move +walk +run +hide +steal +and +move +on +only +once +had +it +been +possible +for +him +to +stay +in +one +spot +with +a +woman +or +a +family +for +longer +than +a +few +months +that +once +was +almost +two +years +with +a +weaver +lady +in +delaware +the +meanest +place +for +negroes +he +had +ever +seen +outside +pulaski +county +kentucky +and +of +course +the +prison +camp +in +georgia +from +all +those +negroes +beloved +was +different +her +shining +her +new +shoes +it +bothered +him +maybe +it +was +just +the +fact +that +he +didn +t +bother +her +or +it +could +be +timing +she +had +appeared +and +been +taken +in +on +the +very +day +sethe +and +he +had +patched +up +their +quarrel +gone +out +in +public +and +had +a +right +good +time +like +a +family +denver +had +come +around +so +to +speak +sethe +was +laughing +he +had +a +promise +of +steady +work +was +cleared +up +from +spirits +it +had +begun +to +look +like +a +life +and +damn +a +water +drinking +woman +fell +sick +got +took +in +healed +and +hadn +t +moved +a +peg +since +he +wanted +her +out +but +sethe +had +let +her +in +and +he +couldn +t +put +her +out +of +a +house +that +wasn +t +his +it +was +one +thing +to +beat +up +a +ghost +quite +another +to +throw +a +helpless +coloredgirl +out +in +territory +infected +by +the +klan +desperately +thirsty +for +black +blood +without +which +it +could +not +live +the +dragon +swam +the +ohio +at +will +sitting +at +table +chewing +on +his +after +supper +broom +straw +paul +d +decided +to +place +her +consult +with +the +negroes +in +town +and +find +her +her +own +place +no +sooner +did +he +have +the +thought +than +beloved +strangled +on +one +of +the +raisins +she +had +picked +out +of +the +bread +pudding +she +fell +backward +and +off +the +chair +and +thrashed +around +holding +her +throat +sethe +knocked +her +on +the +back +while +denver +pried +her +hands +away +from +her +neck +beloved +on +her +hands +and +knees +vomited +up +her +food +and +struggled +for +breath +when +she +was +quiet +and +denver +had +wiped +up +the +mess +she +said +go +to +sleep +now +come +in +my +room +said +denver +i +can +watch +out +for +you +up +there +no +moment +could +have +been +better +denver +had +worried +herself +sick +trying +to +think +of +a +way +to +get +beloved +to +share +her +room +it +was +hard +sleeping +above +her +wondering +if +she +was +going +to +be +sick +again +fall +asleep +and +not +wake +or +god +please +don +t +get +up +and +wander +out +of +the +yard +just +the +way +she +wandered +in +they +could +have +their +talks +easier +there +at +night +when +sethe +and +paul +d +were +asleep +or +in +the +daytime +before +either +came +home +sweet +crazy +conversations +full +of +half +sentences +daydreams +and +misunderstandings +more +thrilling +than +understanding +could +ever +be +when +the +girls +left +sethe +began +to +clear +the +table +she +stacked +the +plates +near +a +basin +of +water +what +is +it +about +her +vex +you +so +paul +d +frowned +but +said +nothing +we +had +one +good +fight +about +denver +do +we +need +one +about +her +too +asked +sethe +i +just +don +t +understand +what +the +hold +is +it +s +clear +why +she +holds +on +to +you +but +just +can +t +see +why +you +holding +on +to +her +sethe +turned +away +from +the +plates +toward +him +what +you +care +who +s +holding +on +to +who +feeding +her +is +no +trouble +i +pick +up +a +little +extra +from +the +restaurant +is +all +and +she +s +nice +girl +company +for +denver +you +know +that +and +i +know +you +know +it +so +what +is +it +got +your +teeth +on +edge +i +can +t +place +it +it +s +a +feeling +in +me +well +feel +this +why +don +t +you +feel +how +it +feels +to +have +a +bed +to +sleep +in +and +somebody +there +not +worrying +you +to +death +about +what +you +got +to +do +each +day +to +deserve +it +feel +how +that +feels +and +if +that +don +t +get +it +feel +how +it +feels +to +be +a +coloredwoman +roaming +the +roads +with +anything +god +made +liable +to +jump +on +you +feel +that +i +know +every +bit +of +that +sethe +i +wasn +t +born +yesterday +and +i +never +mistreated +a +woman +in +my +life +that +makes +one +in +the +world +sethe +answered +not +two +no +not +two +what +halle +ever +do +to +you +halle +stood +by +you +he +never +left +you +what +d +he +leave +then +if +not +me +i +don +t +know +but +it +wasn +t +you +that +s +a +fact +then +he +did +worse +he +left +his +children +you +don +t +know +that +he +wasn +t +there +he +wasn +t +where +he +said +he +would +be +he +was +there +then +why +didn +t +he +show +himself +why +did +i +have +to +pack +my +babies +off +and +stay +behind +to +look +for +him +he +couldn +t +get +out +the +loft +loft +what +loft +the +one +over +your +head +in +the +barn +slowly +slowly +taking +all +the +time +allowed +sethe +moved +toward +the +table +he +saw +he +saw +he +told +you +you +told +me +what +the +day +i +came +in +here +you +said +they +stole +your +milk +i +never +knew +what +it +was +that +messed +him +up +that +was +it +i +guess +all +i +knew +was +that +something +broke +him +not +a +one +of +them +years +of +saturdays +sundays +and +nighttime +extra +never +touched +him +but +whatever +he +saw +go +on +in +that +barn +that +day +broke +him +like +a +twig +he +saw +sethe +was +gripping +her +elbows +as +though +to +keep +them +from +flying +away +he +saw +must +have +he +saw +them +boys +do +that +to +me +and +let +them +keep +on +breathing +air +he +saw +he +saw +he +saw +hey +hey +listen +up +let +me +tell +you +something +a +man +ain +t +a +goddamn +ax +chopping +hacking +busting +every +goddamn +minute +of +the +day +things +get +to +him +things +he +can +t +chop +down +because +they +re +inside +sethe +was +pacing +up +and +down +up +and +down +in +the +lamplight +the +underground +agent +said +by +sunday +they +took +my +milk +and +he +saw +it +and +didn +t +come +down +sunday +came +and +he +didn +t +monday +came +and +no +halle +i +thought +he +was +dead +that +s +why +then +i +thought +they +caught +him +that +s +why +then +i +thought +no +he +s +not +dead +because +if +he +was +i +d +know +it +and +then +you +come +here +after +all +this +time +and +you +didn +t +say +he +was +dead +because +you +didn +t +know +either +so +i +thought +well +he +just +found +him +another +better +way +to +live +because +if +he +was +anywhere +near +here +he +d +come +to +baby +suggs +if +not +to +me +but +i +never +knew +he +saw +what +does +that +matter +now +if +he +is +alive +and +saw +that +he +won +t +step +foot +in +my +door +not +halle +it +broke +him +sethe +paul +d +looked +up +at +her +and +sighed +you +may +as +well +know +it +all +last +time +i +saw +him +he +was +sitting +by +the +chum +he +had +butter +all +over +his +face +nothing +happened +and +she +was +grateful +for +that +usually +she +could +see +the +picture +right +away +of +what +she +heard +but +she +could +not +picture +what +paul +d +said +nothing +came +to +mind +carefully +carefully +she +passed +on +to +a +reasonable +question +what +did +he +say +nothing +not +a +word +not +a +word +did +you +speak +to +him +didn +t +you +say +anything +to +him +something +i +couldn +t +sethe +i +just +couldn +t +why +i +had +a +bit +in +my +mouth +sethe +opened +the +front +door +and +sat +down +on +the +porch +steps +the +day +had +gone +blue +without +its +sun +but +she +could +still +make +out +the +black +silhouettes +of +trees +in +the +meadow +beyond +she +shook +her +head +from +side +to +side +resigned +to +her +rebellious +brain +why +was +there +nothing +it +reused +no +misery +no +regret +no +hateful +picture +too +rotten +to +accept +like +a +greedy +child +it +snatched +up +everything +just +once +could +it +say +no +thank +you +i +just +ate +and +can +t +hold +another +bite +i +am +full +god +damn +it +of +two +boys +with +mossy +teeth +one +sucking +on +my +breast +the +other +holding +me +down +their +book +reading +teacher +watching +and +writing +it +up +i +am +still +full +of +that +god +damn +it +i +can +t +go +back +and +add +more +add +my +husband +to +it +watching +above +me +in +the +loft +hiding +close +by +the +one +place +he +thought +no +one +would +look +for +him +looking +down +on +what +i +couldn +t +look +at +at +all +and +not +stopping +them +looking +and +letting +it +happen +but +my +greedy +brain +says +oh +thanks +i +d +love +more +so +i +add +more +and +no +sooner +than +i +do +there +is +no +stopping +there +is +also +my +husband +squatting +by +the +churn +smearing +the +butter +as +well +as +its +clabber +all +over +his +face +because +the +milk +they +took +is +on +his +mind +and +as +far +as +he +is +concerned +the +world +may +as +well +know +it +and +if +he +was +that +broken +then +then +he +is +also +and +certainly +dead +now +and +if +paul +d +saw +him +and +could +not +save +or +comfort +him +because +the +iron +bit +was +in +his +mouth +then +there +is +still +more +that +paul +d +could +tell +me +and +my +brain +would +go +right +ahead +and +take +it +and +never +say +no +thank +you +i +don +t +want +to +know +or +have +to +remember +that +i +have +other +things +to +do +worry +for +example +about +tomorrow +about +denver +about +beloved +about +age +and +sickness +not +to +speak +of +love +but +her +brain +was +not +interested +in +the +future +loaded +with +the +past +and +hungry +for +more +it +left +her +no +room +to +imagine +let +alone +plan +for +the +next +day +exactly +like +that +afternoon +in +the +wild +onions +when +one +more +step +was +the +most +she +could +see +of +the +future +other +people +went +crazy +why +couldn +t +she +other +people +s +brains +stopped +turned +around +and +went +on +to +something +new +which +is +what +must +have +happened +to +halle +and +how +sweet +that +would +have +been +the +two +of +them +back +by +the +milk +shed +squatting +by +the +churn +smashing +cold +lumpy +butter +into +their +faces +with +not +a +care +in +the +world +feeling +it +slippery +sticky +rubbing +it +in +their +hair +watching +it +squeeze +through +their +fingers +what +a +relief +to +stop +it +right +there +close +shut +squeeze +the +butter +but +her +three +children +were +chewing +sugar +teat +under +a +blanket +on +their +way +to +ohio +and +no +butter +play +would +change +that +paul +d +stepped +through +the +door +and +touched +her +shoulder +i +didn +t +plan +on +telling +you +that +i +didn +t +plan +on +hearing +it +i +can +t +take +it +back +but +i +can +leave +it +alone +paul +d +said +he +wants +to +tell +me +she +thought +he +wants +me +to +ask +him +about +what +it +was +like +for +him +about +how +offended +the +tongue +is +held +down +by +iron +how +the +need +to +spit +is +so +deep +you +cry +for +it +she +already +knew +about +it +had +seen +it +time +after +time +in +the +place +before +sweet +home +men +boys +little +girls +women +the +wildness +that +shot +up +into +the +eye +the +moment +the +lips +were +yanked +back +days +after +it +was +taken +out +goose +fat +was +rubbed +on +the +corners +of +the +mouth +but +nothing +to +soothe +the +tongue +or +take +the +wildness +out +of +the +eye +sethe +looked +up +into +paul +d +s +eyes +to +see +if +there +was +any +trace +left +in +them +people +i +saw +as +a +child +she +said +who +d +had +the +bit +always +looked +wild +after +that +whatever +they +used +it +on +them +for +it +couldn +t +have +worked +because +it +put +a +wildness +where +before +there +wasn +t +any +when +i +look +at +you +i +don +t +see +it +there +ain +t +no +wildness +in +your +eye +nowhere +there +s +a +way +to +put +it +there +and +there +s +a +way +to +take +it +out +i +know +em +both +and +i +haven +t +figured +out +yet +which +is +worse +he +sat +down +beside +her +sethe +looked +at +him +in +that +unlit +daylight +his +face +bronzed +and +reduced +to +its +bones +smoothed +her +heart +down +you +want +to +tell +me +about +it +she +asked +him +i +don +t +know +i +never +have +talked +about +it +not +to +a +soul +sang +it +sometimes +but +i +never +told +a +soul +go +ahead +i +can +hear +it +maybe +maybe +you +can +hear +it +i +just +ain +t +sure +i +can +say +it +say +it +right +i +mean +because +it +wasn +t +the +bit +that +wasn +t +it +what +then +sethe +asked +the +roosters +he +said +walking +past +the +roosters +looking +at +them +look +at +me +sethe +smiled +in +that +pine +yeah +paul +d +smiled +with +her +must +have +been +five +of +them +perched +up +there +and +at +least +fifty +hens +mister +too +not +right +off +but +i +hadn +t +took +twenty +steps +before +i +seen +him +he +come +down +off +the +fence +post +there +and +sat +on +the +tub +he +loved +that +tub +said +sethe +thinking +no +there +is +no +stopping +now +didn +t +he +like +a +throne +was +me +took +him +out +the +shell +you +know +he +d +a +died +if +it +hadn +t +been +for +me +the +hen +had +walked +on +off +with +all +the +hatched +peeps +trailing +behind +her +there +was +this +one +egg +left +looked +like +a +blank +but +then +i +saw +it +move +so +i +tapped +it +open +and +here +come +mister +bad +feet +and +all +i +watched +that +son +a +bitch +grow +up +and +whup +everything +in +the +yard +he +always +was +hateful +sethe +said +yeah +he +was +hateful +all +right +bloody +too +and +evil +crooked +feet +flapping +comb +as +big +as +my +hand +and +some +kind +of +red +he +sat +right +there +on +the +tub +looking +at +me +i +swear +he +smiled +my +head +was +full +of +what +i +d +seen +of +halle +a +while +back +i +wasn +t +even +thinking +about +the +bit +just +halle +and +before +him +sixo +but +when +i +saw +mister +i +knew +it +was +me +too +not +just +them +me +too +one +crazy +one +sold +one +missing +one +burnt +and +me +licking +iron +with +my +hands +crossed +behind +me +the +last +of +the +sweet +home +men +mister +he +looked +so +free +better +than +me +stronger +tougher +son +a +bitch +couldn +t +even +get +out +the +shell +by +hisself +but +he +was +still +king +and +i +was +paul +d +stopped +and +squeezed +his +left +hand +with +his +right +he +held +it +that +way +long +enough +for +it +and +the +world +to +quiet +down +and +let +him +go +on +mister +was +allowed +to +be +and +stay +what +he +was +but +i +wasn +t +allowed +to +be +and +stay +what +i +was +even +if +you +cooked +him +you +d +be +cooking +a +rooster +named +mister +but +wasn +t +no +way +i +d +ever +be +paul +d +again +living +or +dead +schoolteacher +changed +me +i +was +something +else +and +that +something +was +less +than +a +chicken +sitting +in +the +sun +on +a +tub +sethe +put +her +hand +on +his +knee +and +rubbed +paul +d +had +only +begun +what +he +was +telling +her +was +only +the +beginning +when +her +fingers +on +his +knee +soft +and +reassuring +stopped +him +just +as +well +just +as +well +saying +more +might +push +them +both +to +a +place +they +couldn +t +get +back +from +he +would +keep +the +rest +where +it +belonged +in +that +tobacco +tin +buried +in +his +chest +where +a +red +heart +used +to +be +its +lid +rusted +shut +he +would +not +pry +it +loose +now +in +front +of +this +sweet +sturdy +woman +for +if +she +got +a +whiff +of +the +contents +it +would +shame +him +and +it +would +hurt +her +to +know +that +there +was +no +red +heart +bright +as +mister +s +comb +beating +in +him +sethe +rubbed +and +rubbed +pressing +the +work +cloth +and +the +stony +curves +that +made +up +his +knee +she +hoped +it +calmed +him +as +it +did +her +like +kneading +bread +in +the +half +light +of +the +restaurant +kitchen +before +the +cook +arrived +when +she +stood +in +a +space +no +wider +than +a +bench +is +long +back +behind +and +to +the +left +of +the +milk +cans +working +dough +working +working +dough +nothing +better +than +that +to +start +the +day +s +serious +work +of +beating +back +the +past +chapter +upstairs +beloved +was +dancing +a +little +two +step +two +step +make +a +new +step +slide +slide +and +strut +on +down +denver +sat +on +the +bed +smiling +and +providing +the +music +she +had +never +seen +beloved +this +happy +she +had +seen +her +pouty +lips +open +wide +with +the +pleasure +of +sugar +or +some +piece +of +news +denver +gave +her +she +had +felt +warm +satisfaction +radiating +from +beloved +s +skin +when +she +listened +to +her +mother +talk +about +the +old +days +but +gaiety +she +had +never +seen +not +ten +minutes +had +passed +since +beloved +had +fallen +backward +to +the +floor +pop +eyed +thrashing +and +holding +her +throat +now +after +a +few +seconds +lying +in +denver +s +bed +she +was +up +and +dancing +where +d +you +learn +to +dance +denver +asked +her +nowhere +look +at +me +do +this +beloved +put +her +fists +on +her +hips +and +commenced +to +skip +on +bare +feet +denver +laughed +now +you +come +on +said +beloved +you +may +as +well +just +come +on +her +black +skirt +swayed +from +side +to +side +denver +grew +ice +cold +as +she +rose +from +the +bed +she +knew +she +was +twice +beloved +s +size +but +she +floated +up +cold +and +light +as +a +snowflake +beloved +took +denver +s +hand +and +placed +another +on +denver +s +shoulder +they +danced +then +round +and +round +the +tiny +room +and +it +may +have +been +dizziness +or +feeling +light +and +icy +at +once +that +made +denver +laugh +so +hard +a +catching +laugh +that +beloved +caught +the +two +of +them +merry +as +kittens +swung +to +and +fro +to +and +fro +until +exhausted +they +sat +on +the +floor +beloved +let +her +head +fall +back +on +the +edge +of +the +bed +while +she +found +her +breath +and +denver +saw +the +tip +of +the +thing +she +always +saw +in +its +entirety +when +beloved +undressed +to +sleep +looking +straight +at +it +she +whispered +why +you +call +yourself +beloved +beloved +closed +her +eyes +in +the +dark +my +name +is +beloved +denver +scooted +a +little +closer +what +s +it +like +over +there +where +you +were +before +can +you +tell +me +dark +said +beloved +i +m +small +in +that +place +i +m +like +this +here +she +raised +her +head +off +the +bed +lay +down +on +her +side +and +curled +up +denver +covered +her +lips +with +her +fingers +were +you +cold +beloved +curled +tighter +and +shook +her +head +hot +nothing +to +breathe +down +there +and +no +room +to +move +in +you +see +anybody +heaps +a +lot +of +people +is +down +there +some +is +dead +you +see +jesus +baby +suggs +i +don +t +know +i +don +t +know +the +names +she +sat +up +tell +me +how +did +you +get +here +i +wait +then +i +got +on +the +bridge +i +stay +there +in +the +dark +in +the +daytime +in +the +dark +in +the +daytime +it +was +a +long +time +all +this +time +you +were +on +a +bridge +no +after +when +i +got +out +what +did +you +come +back +for +beloved +smiled +to +see +her +face +ma +am +s +sethe +yes +sethe +denver +felt +a +little +hurt +slighted +that +she +was +not +the +main +reason +for +beloved +s +return +don +t +you +remember +we +played +together +by +the +stream +i +was +on +the +bridge +said +beloved +you +see +me +on +the +bridge +no +by +the +stream +the +water +back +in +the +woods +oh +i +was +in +the +water +i +saw +her +diamonds +down +there +i +could +touch +them +what +stopped +you +she +left +me +behind +by +myself +said +beloved +she +lifted +her +eyes +to +meet +denver +s +and +frowned +perhaps +perhaps +not +the +tiny +scratches +on +her +forehead +may +have +made +it +seem +so +denver +swallowed +don +t +she +said +don +t +you +won +t +leave +us +will +you +no +never +this +is +where +i +am +suddenly +denver +who +was +sitting +cross +legged +lurched +forward +and +grabbed +beloved +s +wrist +don +t +tell +her +don +t +let +ma +am +know +who +you +are +please +you +hear +don +t +tell +me +what +to +do +don +t +you +never +never +tell +me +what +to +do +but +i +m +on +your +side +beloved +she +is +the +one +she +is +the +one +i +need +you +can +go +but +she +is +the +one +i +have +to +have +her +eyes +stretched +to +the +limit +black +as +the +all +night +sky +i +didn +t +do +anything +to +you +i +never +hurt +you +i +never +hurt +anybody +said +denver +me +either +me +either +what +you +gonna +do +stay +here +i +belong +here +i +belong +here +too +then +stay +but +don +t +never +tell +me +what +to +do +don +t +never +do +that +we +were +dancing +just +a +minute +ago +we +were +dancing +together +let +s +i +don +t +want +to +beloved +got +up +and +lay +down +on +the +bed +their +quietness +boomed +about +on +the +walls +like +birds +in +panic +finally +denver +s +breath +steadied +against +the +threat +of +an +unbearable +loss +tell +me +beloved +said +tell +me +how +sethe +made +you +in +the +boat +she +never +told +me +all +of +it +said +denver +tell +me +denver +climbed +up +on +the +bed +and +folded +her +arms +under +her +apron +she +had +not +been +in +the +tree +room +once +since +beloved +sat +on +their +stump +after +the +carnival +and +had +not +remembered +that +she +hadn +t +gone +there +until +this +very +desperate +moment +nothing +was +out +there +that +this +sister +girl +did +not +provide +in +abundance +a +racing +heart +dreaminess +society +danger +beauty +she +swallowed +twice +to +prepare +for +the +telling +to +construct +out +of +the +strings +she +had +heard +all +her +life +a +net +to +hold +beloved +she +had +good +hands +she +said +the +whitegirl +she +said +had +thin +little +arms +but +good +hands +she +saw +that +right +away +she +said +hair +enough +for +five +heads +and +good +hands +she +said +i +guess +the +hands +made +her +think +she +could +do +it +get +us +both +across +the +river +but +the +mouth +was +what +kept +her +from +being +scared +she +said +there +ain +t +nothing +to +go +by +with +whitepeople +you +don +t +know +how +they +ll +jump +say +one +thing +do +another +but +if +you +looked +at +the +mouth +sometimes +you +could +tell +by +that +she +said +this +girl +talked +a +storm +but +there +wasn +t +no +meanness +around +her +mouth +she +took +ma +am +to +that +lean +to +and +rubbed +her +feet +for +her +so +that +was +one +thing +and +ma +am +believed +she +wasn +t +going +to +turn +her +over +you +could +get +money +if +you +turned +a +runaway +over +and +she +wasn +t +sure +this +girl +amy +didn +t +need +money +more +than +anything +especially +since +all +she +talked +about +was +getting +hold +of +some +velvet +what +s +velvet +it +s +a +cloth +kind +of +deep +and +soft +go +ahead +anyway +she +rubbed +ma +am +s +feet +back +to +life +and +she +cried +she +said +from +how +it +hurt +but +it +made +her +think +she +could +make +it +on +over +to +where +grandma +baby +suggs +was +and +who +is +that +i +just +said +it +my +grandmother +is +that +sethe +s +mother +no +my +father +s +mother +go +ahead +that +s +where +the +others +was +my +brothers +and +the +baby +girl +she +sent +them +on +before +to +wait +for +her +at +grandma +baby +s +so +she +had +to +put +up +with +everything +to +get +there +and +this +here +girl +amy +helped +denver +stopped +and +sighed +this +was +the +part +of +the +story +she +loved +she +was +coming +to +it +now +and +she +loved +it +because +it +was +all +about +herself +but +she +hated +it +too +because +it +made +her +feel +like +a +bill +was +owing +somewhere +and +she +denver +had +to +pay +it +but +who +she +owed +or +what +to +pay +it +with +eluded +her +now +watching +beloved +s +alert +and +hungry +face +how +she +took +in +every +word +asking +questions +about +the +color +of +things +and +their +size +her +downright +craving +to +know +denver +began +to +see +what +she +was +saying +and +not +just +to +hear +it +there +is +this +nineteen +year +old +slave +girl +a +year +older +than +her +self +walking +through +the +dark +woods +to +get +to +her +children +who +are +far +away +she +is +tired +scared +maybe +and +maybe +even +lost +most +of +all +she +is +by +herself +and +inside +her +is +another +baby +she +has +to +think +about +too +behind +her +dogs +perhaps +guns +probably +and +certainly +mossy +teeth +she +is +not +so +afraid +at +night +because +she +is +the +color +of +it +but +in +the +day +every +sound +is +a +shot +or +a +tracker +s +quiet +step +denver +was +seeing +it +now +and +feeling +it +through +beloved +feeling +how +it +must +have +felt +to +her +mother +seeing +how +it +must +have +looked +and +the +more +fine +points +she +made +the +more +detail +she +provided +the +more +beloved +liked +it +so +she +anticipated +the +questions +by +giving +blood +to +the +scraps +her +mother +and +grandmother +had +told +herwand +a +heartbeat +the +monologue +became +iri +fact +a +duet +as +they +lay +down +together +denver +nursing +beloved +s +interest +like +a +lover +whose +pleasure +was +to +overfeed +the +loved +the +dark +quilt +with +two +orange +patches +was +there +with +them +because +beloved +wanted +it +near +her +when +she +slept +it +was +smelling +like +grass +and +feeling +like +hands +the +unrested +hands +of +busy +women +dry +warm +prickly +denver +spoke +beloved +listened +and +the +two +did +the +best +they +could +to +create +what +really +happened +how +it +really +was +something +only +sethe +knew +because +she +alone +had +the +mind +for +it +and +the +time +afterward +to +shape +it +the +quality +of +amy +s +voice +her +breath +like +burning +wood +the +quick +change +weather +up +in +those +hills +cool +at +night +hot +in +the +day +sudden +fog +how +recklessly +she +behaved +with +this +whitegirlna +recklessness +born +of +desperation +and +encouraged +by +amy +s +fugitive +eyes +and +her +tenderhearted +mouth +you +ain +t +got +no +business +walking +round +these +hills +miss +looka +here +who +s +talking +i +got +more +business +here +n +you +got +they +catch +you +they +cut +your +head +off +ain +t +nobody +after +me +but +i +know +somebody +after +you +amy +pressed +her +fingers +into +the +soles +of +the +slavewoman +s +feet +whose +baby +that +sethe +did +not +answer +you +don +t +even +know +come +here +jesus +amy +sighed +and +shook +her +head +hurt +a +touch +good +for +you +more +it +hurt +more +better +it +is +can +t +nothing +heal +without +pain +you +know +what +you +wiggling +for +sethe +raised +up +on +her +elbows +lying +on +her +back +so +long +had +raised +a +ruckus +between +her +shoulder +blades +the +fire +in +her +feet +and +the +fire +on +her +back +made +her +sweat +my +back +hurt +me +she +said +your +back +gal +you +a +mess +turn +over +here +and +let +me +see +in +an +effort +so +great +it +made +her +sick +to +her +stomach +sethe +turned +onto +her +right +side +amy +unfastened +the +back +of +her +dress +and +said +come +here +jesus +when +she +saw +sethe +guessed +it +must +be +bad +because +after +that +call +to +jesus +amy +didn +t +speak +for +a +while +in +the +silence +of +an +amy +struck +dumb +for +a +change +sethe +felt +the +fingers +of +those +good +hands +lightly +touch +her +back +she +could +hear +her +breathing +but +still +the +whitegirl +said +nothing +sethe +could +not +move +she +couldn +t +lie +on +her +stomach +or +her +back +and +to +keep +on +her +side +meant +pressure +on +her +screaming +feet +amy +spoke +at +last +in +her +dreamwalker +s +voice +it +s +a +tree +lu +a +chokecherry +tree +see +here +s +the +trunk +it +s +red +and +split +wide +open +full +of +sap +and +this +here +s +the +parting +for +the +branches +you +got +a +mighty +lot +of +branches +leaves +too +look +like +and +dern +if +these +ain +t +blossoms +tiny +little +cherry +blossoms +just +as +white +your +back +got +a +whole +tree +on +it +in +bloom +what +god +have +in +mind +i +wonder +i +had +me +some +whippings +but +i +don +t +remember +nothing +like +this +mr +buddy +had +a +right +evil +hand +too +whip +you +for +looking +at +him +straight +sure +would +i +looked +right +at +him +one +time +and +he +hauled +off +and +threw +the +poker +at +me +guess +he +knew +what +i +was +a +thinking +sethe +groaned +and +amy +cut +her +reverie +short +long +enough +to +shift +sethe +s +feet +so +the +weight +resting +on +leaf +covered +stones +was +above +the +ankles +that +better +lord +what +a +way +to +die +you +gonna +die +in +here +you +know +ain +t +no +way +out +of +it +thank +your +maker +i +come +along +so +s +you +wouldn +t +have +to +die +outside +in +them +weeds +snake +come +along +he +bite +you +bear +eat +you +up +maybe +you +should +of +stayed +where +you +was +lu +i +can +see +by +your +back +why +you +didn +t +ha +ha +whoever +planted +that +tree +beat +mr +buddy +by +a +mile +glad +i +ain +t +you +well +spiderwebs +is +bout +all +i +can +do +for +you +what +s +in +here +ain +t +enough +i +ll +look +outside +could +use +moss +but +sometimes +bugs +and +things +is +in +it +maybe +i +ought +to +break +them +blossoms +open +get +that +pus +to +running +you +think +wonder +what +god +had +in +mind +you +must +of +did +something +don +t +run +off +nowhere +now +sethe +could +hear +her +humming +away +in +the +bushes +as +she +hunted +spiderwebs +a +humming +she +concentrated +on +because +as +soon +as +amy +ducked +out +the +baby +began +to +stretch +good +question +she +was +thinking +what +did +he +have +in +mind +amy +had +left +the +back +of +sethe +s +dress +open +and +now +a +tail +of +wind +hit +it +taking +the +pain +down +a +step +a +relief +that +let +her +feel +the +lesser +pain +of +her +sore +tongue +amy +returned +with +two +palmfuls +of +web +which +she +cleaned +of +prey +and +then +draped +on +sethe +s +back +saying +it +was +like +stringing +a +tree +for +christmas +we +got +a +old +nigger +girl +come +by +our +place +she +don +t +know +nothing +sews +stuff +for +mrs +buddy +real +fine +lace +but +can +t +barely +stick +two +words +together +she +don +t +know +nothing +just +like +you +you +don +t +know +a +thing +end +up +dead +that +s +what +not +me +i +m +a +get +to +boston +and +get +myself +some +velvet +carmine +you +don +t +even +know +about +that +do +you +now +you +never +will +bet +you +never +even +sleep +with +the +sun +in +your +face +i +did +it +a +couple +of +times +most +times +i +m +feeding +stock +before +light +and +don +t +get +to +sleep +till +way +after +dark +comes +but +i +was +in +the +back +of +the +wagon +once +and +fell +asleep +sleeping +with +the +sun +in +your +face +is +the +best +old +feeling +two +times +i +did +it +once +when +i +was +little +didn +t +nobody +bother +me +then +next +time +in +back +of +the +wagon +it +happened +again +and +doggone +if +the +chickens +didn +t +get +loose +mr +buddy +whipped +my +tail +kentucky +ain +t +no +good +place +to +be +in +boston +s +the +place +to +be +in +that +s +where +my +mother +was +before +she +was +give +to +mr +buddy +joe +nathan +said +mr +buddy +is +my +daddy +but +i +don +t +believe +that +you +sethe +told +her +she +didn +t +believe +mr +buddy +was +her +daddy +you +know +your +daddy +do +you +no +said +sethe +neither +me +all +i +know +is +it +ain +t +him +she +stood +up +then +having +finished +her +repair +work +and +weaving +about +the +lean +to +her +slow +moving +eyes +pale +in +the +sun +that +lit +her +hair +she +sang +when +the +busy +day +is +done +and +my +weary +little +one +rocketh +gently +to +and +fro +when +the +night +winds +softly +blow +and +the +crickets +in +the +glen +chirp +and +chirp +and +chirp +again +where +pon +the +haunted +green +fairies +dance +around +their +queen +then +from +yonder +misty +skies +cometh +lady +button +eyes +suddenly +she +stopped +weaving +and +rocking +and +sat +down +her +skinny +arms +wrapped +around +her +knees +her +good +good +hands +cupping +her +elbows +her +slow +moving +eyes +stopped +and +peered +into +the +dirt +at +her +feet +that +s +my +mama +s +song +she +taught +me +it +through +the +muck +and +mist +and +glaam +to +our +quiet +cozy +home +where +to +singing +sweet +and +low +rocks +a +cradle +to +and +fro +where +the +clock +s +dull +monotone +telleth +of +the +day +that +s +done +where +the +moonbeams +hover +o +er +playthings +sleeping +on +the +floor +where +my +weary +wee +one +lies +cometh +lady +button +eyes +layeth +she +her +hands +upon +my +dear +weary +little +one +and +those +white +hands +overspread +like +a +veil +the +curly +head +seem +to +fondle +and +caress +every +little +silken +tress +then +she +smooths +the +eyelids +down +over +those +two +eyes +of +brown +in +such +soothing +tender +wise +cometh +lady +button +eyes +amy +sat +quietly +after +her +song +then +repeated +the +last +line +before +she +stood +left +the +lean +to +and +walked +off +a +little +ways +to +lean +against +a +young +ash +when +she +came +back +the +sun +was +in +the +valley +below +and +they +were +way +above +it +in +blue +kentucky +light +you +ain +t +dead +yet +lu +lu +not +yet +make +you +a +bet +you +make +it +through +the +night +you +make +it +all +the +way +amy +rearranged +the +leaves +for +comfort +and +knelt +down +to +massage +the +swollen +feet +again +give +these +one +more +real +good +rub +she +said +and +when +sethe +sucked +air +through +her +teeth +she +said +shut +up +you +got +to +keep +your +mouth +shut +careful +of +her +tongue +sethe +bit +down +on +her +lips +and +let +the +good +hands +go +to +work +to +the +tune +of +so +bees +sing +soft +and +bees +sing +low +afterward +amy +moved +to +the +other +side +of +the +lean +to +where +seated +she +lowered +her +head +toward +her +shoulder +and +braided +her +hair +saying +don +t +up +and +die +on +me +in +the +night +you +hear +i +don +t +want +to +see +your +ugly +black +face +hankering +over +me +if +you +do +die +just +go +on +off +somewhere +where +i +can +t +see +you +hear +i +hear +said +sethe +i +ll +do +what +i +can +miss +sethe +never +expected +to +see +another +thing +in +this +world +so +when +she +felt +toes +prodding +her +hip +it +took +a +while +to +come +out +of +a +sleep +she +thought +was +death +she +sat +up +stiff +and +shivery +while +amy +looked +in +on +her +juicy +back +looks +like +the +devil +said +amy +but +you +made +it +through +come +down +here +jesus +lu +made +it +through +that +s +because +of +me +i +m +good +at +sick +things +can +you +walk +you +think +i +have +to +let +my +water +some +kind +of +way +let +s +see +you +walk +on +em +it +was +not +good +but +it +was +possible +so +sethe +limped +holding +on +first +to +amy +then +to +a +sapling +was +me +did +it +i +m +good +at +sick +things +ain +t +i +yeah +said +sethe +you +good +we +got +to +get +off +this +here +hill +come +on +i +ll +take +you +down +to +the +river +that +ought +to +suit +you +me +i +m +going +to +the +pike +take +me +straight +to +boston +what +s +that +all +over +your +dress +milk +you +one +mess +sethe +looked +down +at +her +stomach +and +touched +it +the +baby +was +dead +she +had +not +died +in +the +night +but +the +baby +had +if +that +was +the +case +then +there +was +no +stopping +now +she +would +get +that +milk +to +her +baby +girl +if +she +had +to +swim +ain +t +you +hungry +amy +asked +her +i +ain +t +nothing +but +in +a +hurry +miss +whoa +slow +down +want +some +shoes +say +what +i +figured +how +said +amy +and +so +she +had +she +tore +two +pieces +from +sethe +s +shawl +filled +them +with +leaves +and +tied +them +over +her +feet +chattering +all +the +while +how +old +are +you +lu +i +been +bleeding +for +four +years +but +i +ain +t +having +nobody +s +baby +won +t +catch +me +sweating +milk +cause +i +know +said +sethe +you +going +to +boston +at +noon +they +saw +it +then +they +were +near +enough +to +hear +it +by +late +afternoon +they +could +drink +from +it +if +they +wanted +to +four +stars +were +visible +by +the +time +they +found +not +a +riverboat +to +stow +sethe +away +on +or +a +ferryman +willing +to +take +on +a +fugitive +passenger +nothing +like +that +but +a +whole +boat +to +steal +it +had +one +oar +lots +of +holes +and +two +bird +nests +there +you +go +lu +jesus +looking +at +you +sethe +was +looking +at +one +mile +of +dark +water +which +would +have +to +be +split +with +one +oar +in +a +useless +boat +against +a +current +dedicated +to +the +mississippi +hundreds +of +miles +away +it +looked +like +home +to +her +and +the +baby +not +dead +in +the +least +must +have +thought +so +too +as +soon +as +sethe +got +close +to +the +river +her +own +water +broke +loose +to +join +it +the +break +followed +by +the +redundant +announcement +of +labor +arched +her +back +what +you +doing +that +for +asked +amy +ain +t +you +got +a +brain +in +your +head +stop +that +right +now +i +said +stop +it +lu +you +the +dumbest +thing +on +this +here +earth +lu +lu +sethe +couldn +t +think +of +anywhere +to +go +but +in +she +waited +for +the +sweet +beat +that +followed +the +blast +of +pain +on +her +knees +again +she +crawled +into +the +boat +it +waddled +under +her +and +she +had +just +enough +time +to +brace +her +leaf +bag +feet +on +the +bench +when +another +rip +took +her +breath +away +panting +under +four +summer +stars +she +threw +her +legs +over +the +sides +because +here +come +the +head +as +amy +informed +her +as +though +she +did +not +know +it +as +though +the +rip +was +a +breakup +of +walnut +logs +in +the +brace +or +of +lightning +s +jagged +tear +through +a +leather +sky +it +was +stuck +face +up +and +drowning +in +its +mother +s +blood +amy +stopped +begging +jesus +and +began +to +curse +his +daddy +push +screamed +amy +pull +whispered +sethe +and +the +strong +hands +went +to +work +a +fourth +time +none +too +soon +for +river +water +seeping +through +any +hole +it +chose +was +spreading +over +sethe +s +hips +she +reached +one +arm +back +and +grabbed +the +rope +while +amy +fairly +clawed +at +the +head +when +a +foot +rose +from +the +river +bed +and +kicked +the +bottom +of +the +boat +and +sethe +s +behind +she +knew +it +was +done +and +permitted +herself +a +short +faint +coming +to +she +heard +no +cries +just +amy +s +encouraging +coos +nothing +happened +for +so +long +they +both +believed +they +had +lost +it +sethe +arched +suddenly +and +the +afterbirth +shot +out +then +the +baby +whimpered +and +sethe +looked +twenty +inches +of +cord +hung +from +its +belly +and +it +trembled +in +the +cooling +evening +air +amy +wrapped +her +skirt +around +it +and +the +wet +sticky +women +clambered +ashore +to +see +what +indeed +god +had +in +mind +spores +of +bluefern +growing +in +the +hollows +along +the +riverbank +float +toward +the +water +in +silver +blue +lines +hard +to +see +unless +you +are +in +or +near +them +lying +right +at +the +river +s +edge +when +the +sunshots +are +low +and +drained +often +they +are +mistook +for +insects +but +they +are +seeds +in +which +the +whole +generation +sleeps +confident +of +a +future +and +for +a +moment +it +is +easy +to +believe +each +one +has +one +will +become +all +of +what +is +contained +in +the +spore +will +live +out +its +days +as +planned +this +moment +of +certainty +lasts +no +longer +than +that +longer +perhaps +than +the +spore +itself +on +a +riverbank +in +the +cool +of +a +summer +evening +two +women +struggled +under +a +shower +of +silvery +blue +they +never +expected +to +see +each +other +again +in +this +world +and +at +the +moment +couldn +t +care +less +but +there +on +a +summer +night +surrounded +by +bluefern +they +did +something +together +appropriately +and +well +a +pateroller +passing +would +have +sniggered +to +see +two +throw +away +people +two +lawless +outlaws +a +slave +and +a +barefoot +whitewoman +with +unpinned +hair +wrapping +a +ten +minute +old +baby +in +the +rags +they +wore +but +no +pateroller +came +and +no +preacher +the +water +sucked +and +swallowed +itself +beneath +them +there +was +nothing +to +disturb +them +at +their +work +so +they +did +it +appropriately +and +well +twilight +came +on +and +amy +said +she +had +to +go +that +she +wouldn +t +be +caught +dead +in +daylight +on +a +busy +river +with +a +runaway +after +rinsing +her +hands +and +face +in +the +river +she +stood +and +looked +down +at +the +baby +wrapped +and +tied +to +sethe +s +chest +she +s +never +gonna +know +who +i +am +you +gonna +tell +her +who +brought +her +into +this +here +world +she +lifted +her +chin +looked +off +into +the +place +where +the +sun +used +to +be +you +better +tell +her +you +hear +say +miss +amy +denver +of +boston +sethe +felt +herself +falling +into +a +sleep +she +knew +would +be +deep +on +the +lip +of +it +just +before +going +under +she +thought +that +s +pretty +denver +real +pretty +chapter +it +was +time +to +lay +it +all +down +before +paul +d +came +and +sat +on +her +porch +steps +words +whispered +in +the +keeping +room +had +kept +her +going +helped +her +endure +the +chastising +ghost +refurbished +the +baby +faces +of +howard +and +buglar +and +kept +them +whole +in +the +world +because +in +her +dreams +she +saw +only +their +parts +in +trees +and +kept +her +husband +shadowy +but +there +somewhere +now +halle +s +face +between +the +butter +press +and +the +churn +swelled +larger +and +larger +crowding +her +eyes +and +making +her +head +hurt +she +wished +for +baby +suggs +fingers +molding +her +nape +reshaping +it +saying +lay +em +down +sethe +sword +and +shield +down +down +both +of +em +down +down +by +the +riverside +sword +and +shield +don +t +study +war +no +more +lay +all +that +mess +down +sword +and +shield +and +under +the +pressing +fingers +and +the +quiet +instructive +voice +she +would +her +heavy +knives +of +defense +against +misery +regret +gall +and +hurt +she +placed +one +by +one +on +a +bank +where +dear +water +rushed +on +below +nine +years +without +the +fingers +or +the +voice +of +baby +suggs +was +too +much +and +words +whispered +in +the +keeping +room +were +too +little +the +butter +smeared +face +of +a +man +god +made +none +sweeter +than +demanded +more +an +arch +built +or +a +robe +sewn +some +fixing +ceremony +sethe +decided +to +go +to +the +clearing +back +where +baby +suggs +had +danced +in +sunlight +before +and +everybody +in +it +had +closed +down +veiled +over +and +shut +away +before +it +had +become +the +plaything +of +spirits +and +the +home +of +the +chafed +had +been +a +cheerful +buzzing +house +where +baby +suggs +holy +loved +cautioned +fed +chastised +and +soothed +where +not +one +but +two +pots +simmered +on +the +stove +where +the +lamp +burned +all +night +long +strangers +rested +there +while +children +tried +on +their +shoes +messages +were +left +there +for +whoever +needed +them +was +sure +to +stop +in +one +day +soon +talk +was +low +and +to +the +point +for +baby +suggs +holy +didn +t +approve +of +extra +everything +depends +on +knowing +how +much +she +said +and +good +is +knowing +when +to +stop +it +was +in +front +of +that +that +sethe +climbed +off +a +wagon +her +newborn +tied +to +her +chest +and +felt +for +the +first +time +the +wide +arms +of +her +mother +in +law +who +had +made +it +to +cincinnati +who +decided +that +because +slave +life +had +busted +her +legs +back +head +eyes +hands +kidneys +womb +and +tongue +she +had +nothing +left +to +make +a +living +with +but +her +heart +which +she +put +to +work +at +once +accepting +no +title +of +honor +before +her +name +but +allowing +a +small +caress +after +it +she +became +an +unchurched +preacher +one +who +visited +pulpits +and +opened +her +great +heart +to +those +who +could +use +it +in +winter +and +fall +she +carried +it +to +ame +s +and +baptists +holinesses +and +sanctifieds +the +church +of +the +redeemer +and +the +redeemed +uncalled +unrobed +un +anointed +she +let +her +great +heart +beat +in +their +presence +when +warm +weather +came +baby +suggs +holy +followed +by +every +black +man +woman +and +child +who +could +make +it +through +took +her +great +heart +to +the +clearing +a +wide +open +place +cut +deep +in +the +woods +nobody +knew +for +what +at +the +end +of +a +path +known +only +to +deer +and +whoever +cleared +the +land +in +the +first +place +in +the +heat +of +every +saturday +afternoon +she +sat +in +the +clearing +while +the +people +waited +among +the +trees +after +situating +herself +on +a +huge +flat +sided +rock +baby +suggs +bowed +her +head +and +prayed +silently +the +company +watched +her +from +the +trees +they +knew +she +was +ready +when +she +put +her +stick +down +then +she +shouted +let +the +children +come +and +they +ran +from +the +trees +toward +her +let +your +mothers +hear +you +laugh +she +told +them +and +the +woods +rang +the +adults +looked +on +and +could +not +help +smiling +then +let +the +grown +men +come +she +shouted +they +stepped +out +one +by +one +from +among +the +ringing +trees +let +your +wives +and +your +children +see +you +dance +she +told +them +and +groundlife +shuddered +under +their +feet +finally +she +called +the +women +to +her +cry +she +told +them +for +the +living +and +the +dead +just +cry +and +without +covering +their +eyes +the +women +let +loose +it +started +that +way +laughing +children +dancing +men +crying +women +and +then +it +got +mixed +up +women +stopped +crying +and +danced +men +sat +down +and +cried +children +danced +women +laughed +children +cried +until +exhausted +and +riven +all +and +each +lay +about +the +clearing +damp +and +gasping +for +breath +in +the +silence +that +followed +baby +suggs +holy +offered +up +to +them +her +great +big +heart +she +did +not +tell +them +to +clean +up +their +lives +or +to +go +and +sin +no +more +she +did +not +tell +them +they +were +the +blessed +of +the +earth +its +inheriting +meek +or +its +glorybound +pure +she +told +them +that +the +only +grace +they +could +have +was +the +grace +they +could +imagine +that +if +they +could +not +see +it +they +would +not +have +it +here +she +said +in +this +here +place +we +flesh +flesh +that +weeps +laughs +flesh +that +dances +on +bare +feet +in +grass +love +it +love +it +hard +yonder +they +do +not +love +your +flesh +they +despise +it +they +don +t +love +your +eyes +they +d +just +as +soon +pick +em +out +no +more +do +they +love +the +skin +on +your +back +yonder +they +flay +it +and +o +my +people +they +do +not +love +your +hands +those +they +only +use +tie +bind +chop +off +and +leave +empty +love +your +hands +love +them +raise +them +up +and +kiss +them +touch +others +with +them +pat +them +together +stroke +them +on +your +face +cause +they +don +t +love +that +either +you +got +to +love +it +you +and +no +they +ain +t +in +love +with +your +mouth +yonder +out +there +they +will +see +it +broken +and +break +it +again +what +you +say +out +of +it +they +will +not +heed +what +you +scream +from +it +they +do +not +hear +what +you +put +into +it +to +nourish +your +body +they +will +snatch +away +and +give +you +leavins +instead +no +they +don +t +love +your +mouth +you +got +to +love +it +this +is +flesh +i +m +talking +about +here +flesh +that +needs +to +be +loved +feet +that +need +to +rest +and +to +dance +backs +that +need +support +shoulders +that +need +arms +strong +arms +i +m +telling +you +and +o +my +people +out +yonder +hear +me +they +do +not +love +your +neck +unnoosed +and +straight +so +love +your +neck +put +a +hand +on +it +grace +it +stroke +it +and +hold +it +up +and +all +your +inside +parts +that +they +d +just +as +soon +slop +for +hogs +you +got +to +love +them +the +dark +dark +liver +love +it +love +it +and +the +beat +and +beating +heart +love +that +too +more +than +eyes +or +feet +more +than +lungs +that +have +yet +to +draw +free +air +more +than +your +life +holding +womb +and +your +life +giving +private +parts +hear +me +now +love +your +heart +for +this +is +the +prize +saying +no +more +she +stood +up +then +and +danced +with +her +twisted +hip +the +rest +of +what +her +heart +had +to +say +while +the +others +opened +their +mouths +and +gave +her +the +music +long +notes +held +until +the +four +part +harmony +was +perfect +enough +for +their +deeply +loved +flesh +sethe +wanted +to +be +there +now +at +the +least +to +listen +to +the +spaces +that +the +long +ago +singing +had +left +behind +at +the +most +to +get +a +clue +from +her +husband +s +dead +mother +as +to +what +she +should +do +with +her +sword +and +shield +now +dear +jesus +now +nine +years +after +baby +suggs +holy +proved +herself +a +liar +dismissed +her +great +heart +and +lay +in +the +keeping +room +bed +roused +once +in +a +while +by +a +craving +for +color +and +not +for +another +thing +those +white +things +have +taken +all +i +had +or +dreamed +she +said +and +broke +my +heartstrings +too +there +is +no +bad +luck +in +the +world +but +whitefolks +shut +down +and +put +up +with +the +venom +of +its +ghost +no +more +lamp +all +night +long +or +neighbors +dropping +by +no +low +conversations +after +supper +no +watched +barefoot +children +playing +in +the +shoes +of +strangers +baby +suggs +holy +believed +she +had +lied +there +was +no +grace +imaginary +or +real +and +no +sunlit +dance +in +a +clearing +could +change +that +her +faith +her +love +her +imagination +and +her +great +big +old +heart +began +to +collapse +twenty +eight +days +after +her +daughter +in +law +arrived +yet +it +was +to +the +clearing +that +sethe +determined +to +go +to +pay +tribute +to +halle +before +the +light +changed +while +it +was +still +the +green +blessed +place +she +remembered +misty +with +plant +steam +and +the +decay +of +berries +she +put +on +a +shawl +and +told +denver +and +beloved +to +do +likewise +all +three +set +out +late +one +sunday +morning +sethe +leading +the +girls +trotting +behind +not +a +soul +in +sight +when +they +reached +the +woods +it +took +her +no +time +to +find +the +path +through +it +because +big +city +revivals +were +held +there +regularly +now +complete +with +food +laden +tables +banjos +and +a +tent +the +old +path +was +a +track +now +but +still +arched +over +with +trees +dropping +buckeyes +onto +the +grass +below +there +was +nothing +to +be +done +other +than +what +she +had +done +but +sethe +blamed +herself +for +baby +suggs +collapse +however +many +times +baby +denied +it +sethe +knew +the +grief +at +started +when +she +jumped +down +off +the +wagon +her +newborn +tied +to +her +chest +in +the +underwear +of +a +whitegirl +looking +for +boston +followed +by +the +two +girls +down +a +bright +green +corridor +of +oak +and +horse +chestnut +sethe +began +to +sweat +a +sweat +just +like +the +other +one +when +she +woke +mud +caked +on +the +banks +of +the +ohio +amy +was +gone +sethe +was +alone +and +weak +but +alive +and +so +was +her +baby +she +walked +a +ways +downriver +and +then +stood +gazing +at +the +glimmering +water +by +and +by +a +flatbed +slid +into +view +but +she +could +not +see +if +the +figures +on +it +were +whitepeople +or +not +she +began +to +sweat +from +a +fever +she +thanked +god +for +since +it +would +certainly +keep +her +baby +warm +when +the +flatbed +was +beyond +her +sight +she +stumbled +on +and +found +herself +near +three +coloredpeople +fishing +two +boys +and +an +older +man +she +stopped +and +waited +to +be +spoken +to +one +of +the +boys +pointed +and +the +man +looked +over +his +shoulder +at +her +a +quick +look +since +all +he +needed +to +know +about +her +he +could +see +in +no +time +no +one +said +anything +for +a +while +then +the +man +said +headin +cross +yes +sir +said +sethe +anybody +know +you +coming +yes +sir +he +looked +at +her +again +and +nodded +toward +a +rock +that +stuck +out +of +the +ground +above +him +like +a +bottom +lip +sethe +walked +to +it +and +sat +down +the +stone +had +eaten +the +sun +s +rays +but +was +nowhere +near +as +hot +as +she +was +too +tired +to +move +she +stayed +there +the +sun +in +her +eyes +making +her +dizzy +sweat +poured +over +her +and +bathed +the +baby +completely +she +must +have +slept +sitting +up +because +when +next +she +opened +her +eyes +the +man +was +standing +in +front +of +her +with +a +smoking +hot +piece +of +fried +eel +in +his +hands +it +was +an +effort +to +reach +for +more +to +smell +impossible +to +eat +she +begged +him +for +water +and +he +gave +her +some +of +the +ohio +in +a +jar +sethe +drank +it +all +and +begged +more +the +clanging +was +back +in +her +head +but +she +refused +to +believe +that +she +had +come +all +that +way +endured +all +she +had +to +die +on +the +wrong +side +of +the +river +the +man +watched +her +streaming +face +and +called +one +of +the +boys +over +take +off +that +coat +he +told +him +sir +you +heard +me +the +boy +slipped +out +of +his +jacket +whining +what +you +gonna +do +what +i +m +gonna +wear +the +man +untied +the +baby +from +her +chest +and +wrapped +it +in +the +boy +s +coat +knotting +the +sleeves +in +front +what +i +m +gonna +wear +the +old +man +sighed +and +after +a +pause +said +you +want +it +back +then +go +head +and +take +it +off +that +baby +put +the +baby +naked +in +the +grass +and +put +your +coat +back +on +and +if +you +can +do +it +then +go +on +way +somewhere +and +don +t +come +back +the +boy +dropped +his +eyes +then +turned +to +join +the +other +with +eel +in +her +hand +the +baby +at +her +feet +sethe +dozed +dry +mouthed +and +sweaty +evening +came +and +the +man +touched +her +shoulder +contrary +to +what +she +expected +they +poled +upriver +far +away +from +the +rowboat +amy +had +found +just +when +she +thought +he +was +taking +her +back +to +kentucky +he +turned +the +flatbed +and +crossed +the +ohio +like +a +shot +there +he +helped +her +up +the +steep +bank +while +the +boy +without +a +jacket +carried +the +baby +who +wore +it +the +man +led +her +to +a +brush +covered +hutch +with +a +beaten +floor +wait +here +somebody +be +here +directly +don +t +move +they +ll +find +you +thank +you +she +said +i +wish +i +knew +your +name +so +i +could +remember +you +right +name +s +stamp +he +said +stamp +paid +watch +out +for +that +there +baby +you +hear +i +hear +i +hear +she +said +but +she +didn +t +hours +later +a +woman +was +right +up +on +her +before +she +heard +a +thing +a +short +woman +young +with +a +croaker +sack +greeted +her +saw +the +sign +a +while +ago +she +said +but +i +couldn +t +get +here +no +quicker +what +sign +asked +sethe +stamp +leaves +the +old +sty +open +when +there +s +a +crossing +knots +a +white +rag +on +the +post +if +it +s +a +child +too +she +knelt +and +emptied +the +sack +my +name +s +ella +she +said +taking +a +wool +blanket +cotton +cloth +two +baked +sweet +potatoes +and +a +pair +of +men +s +shoes +from +the +sack +my +husband +john +is +out +yonder +a +ways +where +you +heading +sethe +told +her +about +baby +suggs +where +she +had +sent +her +three +children +ella +wrapped +a +cloth +strip +tight +around +the +baby +s +navel +as +she +listened +for +the +holes +the +things +the +fugitives +did +not +say +the +questions +they +did +not +ask +listened +too +for +the +unnamed +unmentioned +people +left +behind +she +shook +gravel +from +the +men +s +shoes +and +tried +to +force +sethe +s +feet +into +them +they +would +not +go +sadly +they +split +them +down +the +heel +sorry +indeed +to +ruin +so +valuable +an +item +sethe +put +on +the +boy +s +jacket +not +daring +to +ask +whether +there +was +any +word +of +the +children +they +made +it +said +ella +stamp +ferried +some +of +that +party +left +them +on +bluestone +it +ain +t +too +far +sethe +couldn +t +think +of +anything +to +do +so +grateful +was +she +so +she +peeled +a +potato +ate +it +spit +it +up +and +ate +more +in +quiet +celebration +they +be +glad +to +see +you +said +ella +when +was +this +one +born +yesterday +said +sethe +wiping +sweat +from +under +her +chin +i +hope +she +makes +it +ella +looked +at +the +tiny +dirty +face +poking +out +of +the +wool +blanket +and +shook +her +head +hard +to +say +she +said +if +anybody +was +to +ask +me +i +d +say +don +t +love +nothing +then +as +if +to +take +the +edge +off +her +pronouncement +she +smiled +at +sethe +you +had +that +baby +by +yourself +no +whitegirl +helped +then +we +better +make +tracks +baby +suggs +kissed +her +on +the +mouth +and +refused +to +let +her +see +the +children +they +were +asleep +she +said +and +sethe +was +too +uglylooking +to +wake +them +in +the +night +she +took +the +newborn +and +handed +it +to +a +young +woman +in +a +bonnet +telling +her +not +to +clean +the +eyes +till +she +got +the +mother +s +urine +has +it +cried +out +yet +asked +baby +a +little +time +enough +let +s +get +the +mother +well +she +led +sethe +to +the +keeping +room +and +by +the +light +of +a +spirit +lamp +bathed +her +in +sections +starting +with +her +face +then +while +waiting +for +another +pan +of +heated +water +she +sat +next +to +her +and +stitched +gray +cotton +sethe +dozed +and +woke +to +the +washing +of +her +hands +and +arms +after +each +bathing +baby +covered +her +with +a +quilt +and +put +another +pan +on +in +the +kitchen +tearing +sheets +stitching +the +gray +cotton +she +supervised +the +woman +in +the +bonnet +who +tended +the +baby +and +cried +into +her +cooking +when +sethe +s +legs +were +done +baby +looked +at +her +feet +and +wiped +them +lightly +she +cleaned +between +sethe +s +legs +with +two +separate +pans +of +hot +water +and +then +tied +her +stomach +and +vagina +with +sheets +finally +she +attacked +the +unrecognizable +feet +you +feel +this +feel +what +asked +sethe +nothing +heave +up +she +helped +sethe +to +a +rocker +and +lowered +her +feet +into +a +bucket +of +salt +water +and +juniper +the +rest +of +the +night +sethe +sat +soaking +the +crust +from +her +nipples +baby +softened +with +lard +and +then +washed +away +by +dawn +the +silent +baby +woke +and +took +her +mother +s +milk +pray +god +it +ain +t +turned +bad +said +baby +and +when +you +through +call +me +as +she +turned +to +go +baby +suggs +caught +a +glimpse +of +something +dark +on +the +bed +sheet +she +frowned +and +looked +at +her +daughter +in +law +bending +toward +the +baby +roses +of +blood +blossomed +in +the +blanket +covering +sethe +s +shoulders +baby +suggs +hid +her +mouth +with +her +hand +when +the +nursing +was +over +and +the +newborn +was +asleep +its +eyes +half +open +its +tongue +dream +sucking +wordlessly +the +older +woman +greased +the +flowering +back +and +pinned +a +double +thickness +of +cloth +to +the +inside +of +the +newly +stitched +dress +it +was +not +real +yet +not +yet +but +when +her +sleepy +boys +and +crawl +ing +already +girl +were +brought +in +it +didn +t +matter +whether +it +was +real +or +not +sethe +lay +in +bed +under +around +over +among +but +especially +with +them +all +the +little +girl +dribbled +clear +spit +into +her +face +and +sethe +s +laugh +of +delight +was +so +loud +the +crawling +already +baby +blinked +buglar +and +howard +played +with +her +ugly +feet +after +daring +each +other +to +be +the +first +to +touch +them +she +kept +kissing +them +she +kissed +the +backs +of +their +necks +the +tops +of +their +heads +and +the +centers +of +their +palms +and +it +was +the +boys +who +decided +enough +was +enough +when +she +liked +their +shirts +to +kiss +their +tight +round +bellies +she +stopped +when +and +because +they +said +pappie +come +she +didn +t +cry +she +said +soon +and +smiled +so +they +would +think +the +brightness +in +her +eyes +was +love +alone +it +was +some +time +before +she +let +baby +suggs +shoo +the +boys +away +so +sethe +could +put +on +the +gray +cotton +dress +her +mother +in +law +had +started +stitching +together +the +night +before +finally +she +lay +back +and +cradled +the +crawling +already +girl +in +her +arms +she +enclosed +her +left +nipple +with +two +fingers +of +her +right +hand +and +the +child +opened +her +mouth +they +hit +home +together +baby +suggs +came +in +and +laughed +at +them +telling +sethe +how +strong +the +baby +girl +was +how +smart +already +crawling +then +she +stooped +to +gather +up +the +ball +of +rags +that +had +been +sethe +s +clothes +nothing +worth +saving +in +here +she +said +sethe +liked +her +eyes +wait +she +called +look +and +see +if +there +s +something +still +knotted +up +in +the +petticoat +baby +suggs +inched +the +spoiled +fabric +through +her +fingers +and +came +upon +what +felt +like +pebbles +she +held +them +out +toward +sethe +going +away +present +wedding +present +be +nice +if +there +was +a +groom +to +go +with +it +she +gazed +into +her +hand +what +you +think +happened +to +him +i +don +t +know +said +sethe +he +wasn +t +where +he +said +to +meet +him +at +i +had +to +get +out +had +to +sethe +watched +the +drowsy +eyes +of +the +sucking +girl +for +a +moment +then +looked +at +baby +suggs +face +he +ll +make +it +if +i +made +it +halle +sure +can +well +put +these +on +maybe +they +ll +light +his +way +convinced +her +son +was +dead +she +handed +the +stones +to +sethe +i +need +holes +in +my +ears +i +ll +do +it +said +baby +suggs +soon +s +you +up +to +it +sethe +jingled +the +earrings +for +the +pleasure +of +the +crawling +already +girl +who +reached +for +them +over +and +over +again +in +the +clearing +sethe +found +baby +s +old +preaching +rock +and +remembered +the +smell +of +leaves +simmering +in +the +sun +thunderous +feet +and +the +shouts +that +ripped +pods +off +the +limbs +of +the +chestnuts +with +baby +suggs +heart +in +charge +the +people +let +go +sethe +had +had +twenty +eight +days +the +travel +of +one +whole +moon +of +unslaved +life +from +the +pure +clear +stream +of +spit +that +the +little +girl +dribbled +into +her +face +to +her +oily +blood +was +twenty +eight +days +days +of +healing +ease +and +real +talk +days +of +company +knowing +the +names +of +forty +fifty +other +negroes +their +views +habits +where +they +had +been +and +what +done +of +feeling +their +fun +and +sorrow +along +with +her +own +which +made +it +better +one +taught +her +the +alphabet +another +a +stitch +all +taught +her +how +it +felt +to +wake +up +at +dawn +and +decide +what +to +do +with +the +day +that +s +how +she +got +through +the +waiting +for +halle +bit +by +bit +at +and +in +the +clearing +along +with +the +others +she +had +claimed +herself +freeing +yourself +was +one +thing +claiming +ownership +of +that +freed +self +was +another +now +she +sat +on +baby +suggs +rock +denver +and +beloved +watching +her +from +the +trees +there +will +never +be +a +day +she +thought +when +halle +will +knock +on +the +door +not +knowing +it +was +hard +knowing +it +was +harder +just +the +fingers +she +thought +just +let +me +feel +your +fingers +again +on +the +back +of +my +neck +and +i +will +lay +it +all +down +make +a +way +out +of +this +no +way +sethe +bowed +her +head +and +sure +enough +they +were +there +lighter +now +no +more +than +the +strokes +of +bird +feather +but +unmistakably +caressing +fingers +she +had +to +relax +a +bit +to +let +them +do +their +work +so +light +was +the +touch +childlike +almost +more +finger +kiss +than +kneading +still +she +was +grateful +for +the +effort +baby +suggs +long +distance +love +was +equal +to +any +skin +close +love +she +had +known +the +desire +let +alone +the +gesture +to +meet +her +needs +was +good +enough +to +lift +her +spirits +to +the +place +where +she +could +take +the +next +step +ask +for +some +clarifying +word +some +advice +about +how +to +keep +on +with +a +brain +greedy +for +news +nobody +could +live +with +in +a +world +happy +to +provide +it +she +knew +paul +d +was +adding +something +to +her +life +something +she +wanted +to +count +on +but +was +scared +to +now +he +had +added +more +new +pictures +and +old +rememories +that +broke +her +heart +into +the +empty +space +of +not +knowing +about +halle +a +space +sometimes +colored +with +righteous +resentment +at +what +could +have +been +his +cowardice +or +stupidity +or +bad +luck +that +empty +place +of +no +definite +news +was +filled +now +with +a +brand +new +sorrow +and +who +could +tell +how +many +more +on +the +way +years +ago +when +was +alive +she +had +women +friends +men +friends +from +all +around +to +share +grief +with +then +there +was +no +one +for +they +would +not +visit +her +while +the +baby +ghost +filled +the +house +and +she +returned +their +disapproval +with +the +potent +pride +of +the +mistreated +but +now +there +was +someone +to +share +it +and +he +had +beat +the +spirit +away +the +very +day +he +entered +her +house +and +no +sign +of +it +since +a +blessing +but +in +its +place +he +brought +another +kind +of +haunting +halle +s +face +smeared +with +butter +and +the +dabber +too +his +own +mouth +jammed +full +of +iron +and +lord +knows +what +else +he +could +tell +her +if +he +wanted +to +the +fingers +touching +the +back +of +her +neck +were +stronger +now +the +strokes +bolder +as +though +baby +suggs +were +gathering +strength +putting +the +thumbs +at +the +nape +while +the +fingers +pressed +the +sides +harder +harder +the +fingers +moved +slowly +around +toward +her +windpipe +making +little +circles +on +the +way +sethe +was +actually +more +surprised +than +frightened +to +find +that +she +was +being +strangled +or +so +it +seemed +in +any +case +baby +suggs +fingers +had +a +grip +on +her +that +would +not +let +her +breathe +tumbling +forward +from +her +seat +on +the +rock +she +clawed +at +the +hands +that +were +not +there +her +feet +were +thrashing +by +the +time +denver +got +to +her +and +then +beloved +ma +am +ma +am +denver +shouted +ma +ammy +and +turned +her +mother +over +on +her +back +the +fingers +left +off +and +sethe +had +to +swallow +huge +draughts +of +air +before +she +recognized +her +daughter +s +face +next +to +her +own +and +beloved +s +hovering +above +you +all +right +somebody +choked +me +said +sethe +who +sethe +rubbed +her +neck +and +struggled +to +a +sitting +position +grandma +baby +i +reckon +i +just +asked +her +to +rub +my +neck +like +she +used +to +and +she +was +doing +fine +and +then +just +got +crazy +with +it +i +guess +she +wouldn +t +do +that +to +you +ma +am +grandma +baby +uh +uh +help +me +up +from +here +look +beloved +was +pointing +at +sethe +s +neck +what +is +it +what +you +see +asked +sethe +bruises +said +denver +on +my +neck +here +said +beloved +here +and +here +too +she +reached +out +her +hand +and +touched +the +splotches +gathering +color +darker +than +sethe +s +dark +throat +and +her +fingers +were +mighty +cool +that +don +t +help +nothing +denver +said +but +beloved +was +leaning +in +her +two +hands +stroking +the +damp +skin +that +felt +like +chamois +and +looked +like +taffeta +sethe +moaned +the +girl +s +fingers +were +so +cool +and +knowing +sethe +s +knotted +private +walk +on +water +life +gave +in +a +bit +softened +and +it +seemed +that +the +glimpse +of +happiness +she +caught +in +the +shadows +swinging +hands +on +the +road +to +the +carnival +was +a +likelihood +if +she +could +just +manage +the +news +paul +d +brought +and +the +news +he +kept +to +himself +just +manage +it +not +break +fall +or +cry +each +time +a +hateful +picture +drifted +in +front +of +her +face +not +develop +some +permanent +craziness +like +baby +suggs +friend +a +young +woman +in +a +bonnet +whose +food +was +full +of +tears +like +aunt +phyllis +who +slept +with +her +eyes +wide +open +like +jackson +till +who +slept +under +the +bed +all +she +wanted +was +to +go +on +as +she +had +alone +with +her +daughter +in +a +haunted +house +she +managed +every +damn +thing +why +now +with +paul +d +instead +of +the +ghost +was +she +breaking +up +getting +scared +needing +baby +the +worst +was +over +wasn +t +it +she +had +already +got +through +hadn +t +she +with +the +ghost +in +she +could +bear +do +solve +anything +now +a +hint +of +what +had +happened +to +halie +and +she +cut +out +like +a +rabbit +looking +for +its +mother +beloved +s +fingers +were +heavenly +under +them +and +breathing +evenly +again +the +anguish +rolled +down +the +peace +sethe +had +come +there +to +find +crept +into +her +we +must +look +a +sight +she +thought +and +closed +her +eyes +to +see +it +the +three +women +in +the +middle +of +the +clearing +at +the +base +of +the +rock +where +baby +suggs +holy +had +loved +one +seated +yielding +up +her +throat +to +the +kind +hands +of +one +of +the +two +kneeling +before +her +denver +watched +the +faces +of +the +other +two +beloved +watched +the +work +her +thumbs +were +doing +and +must +have +loved +what +she +saw +because +she +leaned +over +and +kissed +the +tenderness +under +sethe +s +chin +they +stayed +that +way +for +a +while +because +neither +denver +nor +sethe +knew +how +not +to +how +to +stop +and +not +love +the +look +or +feel +of +the +lips +that +kept +on +kissing +then +sethe +grabbing +beloved +s +hair +and +blinking +rapidly +separated +herself +she +later +believed +that +it +was +because +the +girl +s +breath +was +exactly +like +new +milk +that +she +said +to +her +stern +and +frowning +you +too +old +for +that +she +looked +at +denver +and +seeing +panic +about +to +become +something +more +stood +up +quickly +breaking +the +tableau +apart +come +on +up +up +sethe +waved +the +girls +to +their +feet +as +they +left +the +clearing +they +looked +pretty +much +the +same +as +they +had +when +they +had +come +sethe +in +the +lead +the +girls +a +ways +back +all +silent +as +before +but +with +a +difference +sethe +was +bothered +not +because +of +the +kiss +but +because +just +before +it +when +she +was +feeling +so +fine +letting +beloved +massage +away +the +pain +the +fingers +she +was +loving +and +the +ones +that +had +soothed +her +before +they +strangled +her +had +reminded +her +of +something +that +now +slipped +her +mind +but +one +thing +for +sure +baby +suggs +had +not +choked +her +as +first +she +thought +denver +was +right +and +walking +in +the +dappled +tree +light +clearer +headed +now +away +from +the +enchantment +of +the +clearing +sethe +remembered +the +tou +ch +of +those +fingers +that +she +knew +better +than +her +own +they +had +bathed +her +in +sections +wrapped +her +womb +combed +her +hair +oiled +her +nipples +stitched +her +clothes +cleaned +her +feet +greased +her +back +and +dropped +just +about +anything +they +were +doing +to +massage +sethe +s +nape +when +especially +in +the +early +days +her +spirits +fell +down +under +the +weight +of +the +things +she +remembered +and +those +she +did +not +schoolteacher +writing +in +ink +she +herself +had +made +while +his +nephews +played +on +her +the +face +of +the +woman +in +a +felt +hat +as +she +rose +to +stretch +in +the +field +if +she +lay +among +all +the +hands +in +the +world +she +would +know +baby +suggs +just +as +she +did +the +good +hands +of +the +whitegirl +looking +for +velvet +but +for +eighteen +years +she +had +lived +in +a +house +full +of +touches +from +the +other +side +and +the +thumbs +that +pressed +her +nape +were +the +same +maybe +that +was +where +it +had +gone +to +after +paul +d +beat +it +out +of +maybe +it +collected +itself +in +the +clearing +reasonable +she +thought +why +she +had +taken +denver +and +beloved +with +her +didn +t +puzzle +her +now +at +the +time +it +seemed +impulse +with +a +vague +wish +for +protection +and +the +girls +had +saved +her +beloved +so +agitated +she +behaved +like +a +two +year +old +like +a +faint +smell +of +burning +that +disappears +when +the +fire +is +cut +off +or +the +window +opened +for +a +breeze +the +suspicion +that +the +girl +s +touch +was +also +exactly +like +the +baby +s +ghost +dissipated +it +was +only +a +tiny +disturbance +anyway +not +strong +enough +to +divert +her +from +the +ambition +welling +in +her +now +she +wanted +paul +d +no +matter +what +he +told +and +knew +she +wanted +him +in +her +life +more +than +commemorating +halle +that +is +what +she +had +come +to +the +clearing +to +figure +out +and +now +it +was +figured +trust +and +rememory +yes +the +way +she +believed +it +could +be +when +he +cradled +her +before +the +cooking +stove +the +weight +and +angle +of +him +the +true +to +life +beard +hair +on +him +arched +back +educated +hands +his +waiting +eyes +and +awful +human +power +the +mind +of +him +that +knew +her +own +her +story +was +bearable +because +it +was +his +as +well +to +tell +to +refine +and +tell +again +the +things +neither +knew +about +the +other +the +things +neither +had +word +shapes +for +well +it +would +come +in +time +where +they +led +him +off +to +sucking +iron +the +perfect +death +of +her +crawling +already +baby +she +wanted +to +get +back +fast +set +these +idle +girls +to +some +work +that +would +fill +their +wandering +heads +rushing +through +the +green +corridor +cooler +now +because +the +sun +had +moved +it +occurred +to +her +that +the +two +were +alike +as +sisters +their +obedience +and +absolute +reliability +shot +through +with +surprise +sethe +understood +denver +solitude +had +made +her +secretive +self +manipulated +years +of +haunting +had +dulled +her +in +ways +you +wouldn +t +believe +and +sharpened +her +in +ways +you +wouldn +t +believe +either +the +consequence +was +a +timid +but +hard +headed +daughter +sethe +would +die +to +protect +the +other +beloved +she +knew +less +nothing +about +except +that +there +was +nothing +she +wouldn +t +do +for +sethe +and +that +denver +and +she +liked +each +other +s +company +now +she +thought +she +knew +why +they +spent +up +or +held +on +to +their +feelings +in +harmonious +ways +what +one +had +to +give +the +other +was +pleased +to +take +they +hung +back +in +the +trees +that +ringed +the +clearing +then +rushed +into +it +with +screams +and +kisses +when +sethe +choked +anyhow +that +s +how +she +explained +it +to +herself +for +she +noticed +neither +competition +between +the +two +nor +domination +by +one +on +her +mind +was +the +supper +she +wanted +to +fix +for +paul +d +something +difficult +to +do +something +she +would +do +just +so +to +launch +her +newer +stronger +life +with +a +tender +man +those +litty +bitty +potatoes +browned +on +all +sides +heavy +on +the +pepper +snap +beans +seasoned +with +rind +yellow +squash +sprinkled +with +vinegar +and +sugar +maybe +corn +cut +from +the +cob +and +fried +with +green +onions +and +butter +raised +bread +even +her +mind +searching +the +kitchen +before +she +got +to +it +was +so +full +of +her +offering +she +did +not +see +right +away +in +the +space +under +the +white +stairs +the +wooden +tub +and +paul +d +sitting +in +it +she +smiled +at +him +and +he +smiled +back +summer +must +be +over +she +said +come +on +in +here +uh +uh +girls +right +behind +me +i +don +t +hear +nobody +i +have +to +cook +paul +d +me +too +he +stood +up +and +made +her +stay +there +while +he +held +her +in +his +arms +her +dress +soaked +up +the +water +from +his +body +his +jaw +was +near +her +ear +her +chin +touched +his +shoulder +what +you +gonna +cook +i +thought +some +snap +beans +oh +yeah +fry +up +a +little +corn +yeah +there +was +no +question +but +that +she +could +do +it +just +like +the +day +she +arrived +at +sure +enough +she +had +milk +enough +for +all +beloved +came +through +the +door +and +they +ought +to +have +heard +her +tread +but +they +didn +t +breathing +and +murmuring +breathing +and +murmuring +beloved +heard +them +as +soon +as +the +door +banged +shut +behind +her +she +jumped +at +the +slam +and +swiveled +her +head +toward +the +whispers +coming +from +behind +the +white +stairs +she +took +a +step +and +felt +like +crying +she +had +been +so +close +then +closer +and +it +was +so +much +better +than +the +anger +that +ruled +when +sethe +did +or +thought +anything +that +excluded +herself +she +could +bear +the +hours +nine +or +ten +of +them +each +day +but +one +when +sethe +was +gone +bear +even +the +nights +when +she +was +close +but +out +of +sight +behind +walls +and +doors +lying +next +to +him +but +now +even +the +daylight +time +that +beloved +had +counted +on +disciplined +herself +to +be +content +with +was +being +reduced +divided +by +sethe +s +willingness +to +pay +attention +to +other +things +him +mostly +him +who +said +something +to +her +that +made +her +run +out +into +the +woods +and +talk +to +herself +on +a +rock +him +who +kept +her +hidden +at +night +behind +doors +and +him +who +had +hold +of +her +now +whispering +behind +the +stairs +after +beloved +had +rescued +her +neck +and +was +ready +now +to +put +her +hand +in +that +woman +s +own +beloved +turned +around +and +left +denver +had +not +arrived +or +else +she +was +waiting +somewhere +outside +beloved +went +to +look +pausing +to +watch +a +cardinal +hop +from +limb +to +branch +she +followed +the +blood +spot +shifting +in +the +leaves +until +she +lost +it +and +even +then +she +walked +on +backward +still +hungry +for +another +glimpse +she +turned +finally +and +ran +through +the +woods +to +the +stream +standing +close +to +its +edge +she +watched +her +reflection +there +when +denver +s +face +joined +hers +they +stared +at +each +other +in +the +water +you +did +it +i +saw +you +said +denver +what +i +saw +your +face +you +made +her +choke +i +didn +t +do +it +you +told +me +you +loved +her +i +fixed +it +didn +t +i +didn +t +i +fix +her +neck +after +after +you +choked +her +neck +i +kissed +her +neck +i +didn +t +choke +it +the +circle +of +iron +choked +it +i +saw +you +denver +grabbed +beloved +s +arm +look +out +girl +said +beloved +and +snatching +her +arm +away +ran +ahead +as +fast +as +she +could +along +the +stream +that +sang +on +the +other +side +of +the +woods +left +alone +denver +wondered +if +indeed +she +had +been +wrong +she +and +beloved +were +standing +in +the +trees +whispering +while +sethe +sat +on +the +rock +denver +knew +that +the +clearing +used +to +be +where +baby +suggs +preached +but +that +was +when +she +was +a +baby +she +had +never +been +there +herself +to +remember +it +and +the +field +behind +it +were +all +the +world +she +knew +or +wanted +once +upon +a +time +she +had +known +more +and +wanted +to +had +walked +the +path +leading +to +a +real +other +house +had +stood +outside +the +window +listening +four +times +she +did +it +on +her +own +crept +away +from +early +in +the +afternoon +when +her +mother +and +grandmother +had +their +guard +down +just +before +supper +after +chores +the +blank +hour +before +gears +changed +to +evening +occupations +denver +had +walked +off +looking +for +the +house +other +children +visited +but +not +her +when +she +found +it +she +was +too +timid +to +go +to +the +front +door +so +she +peeped +in +the +window +lady +jones +sat +in +a +straight +backed +chair +several +children +sat +cross +legged +on +the +floor +in +front +of +her +lady +jones +had +a +book +the +children +had +slates +lady +jones +was +saying +something +too +soft +for +denver +to +hear +the +children +were +saying +it +after +her +four +times +denver +went +to +look +the +fifth +time +lady +jones +caught +her +and +said +come +in +the +front +door +miss +denver +this +is +not +a +side +show +so +she +had +almost +a +whole +year +of +the +company +of +her +peers +and +along +with +them +learned +to +spell +and +count +she +was +seven +and +those +two +hours +in +the +afternoon +were +precious +to +her +especially +so +because +she +had +done +it +on +her +own +and +was +pleased +and +surprised +by +the +pleasure +and +surprise +it +created +in +her +mother +and +her +brothers +for +a +nickel +a +month +lady +jones +did +what +whitepeople +thought +unnecessary +if +not +illegal +crowded +her +little +parlor +with +the +colored +children +who +had +time +for +and +interest +in +book +learning +the +nickel +tied +to +a +handkerchief +knot +tied +to +her +belt +that +she +carried +to +lady +jones +thrilled +her +the +effort +to +handle +chalk +expertly +and +avoid +the +scream +it +would +make +the +capital +w +the +little +i +the +beauty +of +the +letters +in +her +name +the +deeply +mournful +sentences +from +the +bible +lady +jones +used +as +a +textbook +denver +practiced +every +morning +starred +every +afternoon +she +was +so +happy +she +didn +t +even +know +she +was +being +avoided +by +her +classmates +that +they +made +excuses +and +altered +their +pace +not +to +walk +with +her +it +was +nelson +lord +the +boy +as +smart +as +she +was +who +put +a +stop +to +it +who +asked +her +the +question +about +her +mother +that +put +chalk +the +little +i +and +all +the +rest +that +those +afternoons +held +out +of +reach +forever +she +should +have +laughed +when +he +said +it +or +pushed +him +down +but +there +was +no +meanness +in +his +face +or +his +voice +just +curiosity +but +the +thing +that +leapt +up +in +her +when +he +asked +it +was +a +thing +that +had +been +lying +there +all +along +she +never +went +back +the +second +day +she +didn +t +go +sethe +asked +her +why +not +denver +didn +t +answer +she +was +too +scared +to +ask +her +brothers +or +anyone +else +nelson +lord +s +question +because +certain +odd +and +terrifying +feelings +about +her +mother +were +collecting +around +the +thing +that +leapt +up +inside +her +later +on +after +baby +suggs +died +she +did +not +wonder +why +howard +and +buglar +had +run +away +she +did +not +agree +with +sethe +that +they +left +because +of +the +ghost +if +so +what +took +them +so +long +they +had +lived +with +it +as +long +as +she +had +but +if +nelson +lord +was +right +no +wonder +they +were +sulky +staying +away +from +home +as +much +as +they +could +meanwhile +the +monstrous +and +unmanageable +dreams +about +sethe +found +release +in +the +concentration +denver +began +to +fix +on +the +baby +ghost +before +nelson +lord +she +had +been +barely +interested +in +its +antics +the +patience +of +her +mother +and +grandmother +in +its +presence +made +her +indifferent +to +it +then +it +began +to +irritate +her +wear +her +out +with +its +mischief +that +was +when +she +walked +off +to +follow +the +children +to +lady +jones +house +school +now +it +held +for +her +all +the +anger +love +and +fear +she +didn +t +know +what +to +do +with +even +when +she +did +muster +the +courage +to +ask +nelson +lord +s +question +she +could +not +hear +sethe +s +answer +nor +baby +suggs +words +nor +anything +at +all +thereafter +for +two +years +she +walked +in +a +silence +too +solid +for +penetration +but +which +gave +her +eyes +a +power +even +she +found +hard +to +believe +the +black +nostrils +of +a +sparrow +sitting +on +a +branch +sixty +feet +above +her +head +for +instance +for +two +years +she +heard +nothing +at +all +and +then +she +heard +close +thunder +crawling +up +the +stairs +baby +suggs +thought +it +was +here +boy +padding +into +places +he +never +went +sethe +thought +it +was +the +india +rubber +ball +the +boys +played +with +bounding +down +the +stairs +is +that +damn +dog +lost +his +mind +shouted +baby +suggs +he +s +on +the +porch +said +sethe +see +for +yourself +well +what +s +that +i +m +hearing +then +sethe +slammed +the +stove +lid +buglar +buglar +i +told +you +all +not +to +use +that +ball +in +here +she +looked +at +the +white +stairs +and +saw +denver +at +the +top +she +was +trying +to +get +upstairs +what +the +cloth +she +used +to +handle +the +stove +lid +was +balled +in +sethe +s +hand +the +baby +said +denver +didn +t +you +hear +her +crawling +what +to +jump +on +first +was +the +problem +that +denver +heard +anything +at +all +or +that +the +crawling +already +baby +girl +was +still +at +it +but +more +so +the +return +of +denver +s +hearing +cut +off +by +an +answer +she +could +not +hear +to +hear +cut +on +by +the +sound +of +her +dead +sister +trying +to +climb +the +stairs +signaled +another +shift +in +the +fortunes +of +the +people +of +from +then +on +the +presence +was +full +of +spite +instead +of +sighs +and +accidents +there +was +pointed +and +deliberate +abuse +buglar +and +howard +grew +furious +at +the +company +of +the +women +in +the +house +and +spent +in +sullen +reproach +any +time +they +had +away +from +their +odd +work +in +town +carrying +water +and +feed +at +the +stables +until +the +spite +became +so +personal +it +drove +each +off +baby +suggs +grew +tired +went +to +bed +and +stayed +there +until +her +big +old +heart +quit +except +for +an +occasional +request +for +color +she +said +practically +nothing +until +the +afternoon +of +the +last +day +of +her +life +when +she +got +out +of +bed +skipped +slowly +to +the +door +of +the +keeping +room +and +announced +to +sethe +and +denver +the +lesson +she +had +learned +from +her +sixty +years +a +slave +and +ten +years +free +that +there +was +no +bad +luck +in +the +world +but +white +people +they +don +t +know +when +to +stop +she +said +and +returned +to +her +bed +pulled +up +the +quilt +and +left +them +to +hold +that +thought +forever +shortly +afterward +sethe +and +denver +tried +to +call +up +and +reason +with +the +baby +ghost +but +got +nowhere +it +took +a +man +paul +d +to +shout +it +off +beat +it +off +and +take +its +place +for +himself +and +carnival +or +no +carnival +denver +preferred +the +venomous +baby +to +him +any +day +during +the +first +days +after +paul +d +moved +in +denver +stayed +in +her +emerald +closet +as +long +as +she +could +lonely +as +a +mountain +and +almost +as +big +thinking +everybody +had +somebody +but +her +thinking +even +a +ghost +s +company +was +denied +her +so +when +she +saw +the +black +dress +with +two +unlaced +shoes +beneath +it +she +trembled +with +secret +thanks +whatever +her +power +and +however +she +used +it +beloved +was +hers +denver +was +alarmed +by +the +harm +she +thought +beloved +planned +for +sethe +but +felt +helpless +to +thwart +it +so +unrestricted +was +her +need +to +love +another +the +display +she +witnessed +at +the +clearing +shamed +her +because +the +choice +between +sethe +and +beloved +was +without +conflict +walking +toward +the +stream +beyond +her +green +bush +house +she +let +herself +wonder +what +if +beloved +really +decided +to +choke +her +mother +would +she +let +it +happen +murder +nelson +lord +had +said +didn +t +your +mother +get +locked +away +for +murder +wasn +t +you +in +there +with +her +when +she +went +it +was +the +second +question +that +made +it +impossible +for +so +long +to +ask +sethe +about +the +first +the +thing +that +leapt +up +had +been +coiled +in +just +such +a +place +a +darkness +a +stone +and +some +other +thing +that +moved +by +itself +she +went +deaf +rather +than +hear +the +answer +and +like +the +little +four +o +clocks +that +searched +openly +for +sunlight +then +closed +themselves +tightly +when +it +left +denver +kept +watch +for +the +baby +and +withdrew +from +everything +else +until +paul +d +came +but +the +damage +he +did +came +undone +with +the +miraculous +resurrection +of +beloved +just +ahead +at +the +edge +of +the +stream +denver +could +see +her +silhouette +standing +barefoot +in +the +water +liking +her +black +skirts +up +above +her +calves +the +beautiful +head +lowered +in +rapt +attention +blinking +fresh +tears +denver +approached +her +eager +for +a +word +a +sign +of +forgiveness +denver +took +off +her +shoes +and +stepped +into +the +water +with +her +it +took +a +moment +for +her +to +drag +her +eyes +from +the +spectacle +of +beloved +s +head +to +see +what +she +was +staring +at +a +turtle +inched +along +the +edge +turned +and +climbed +to +dry +ground +not +far +behind +it +was +another +one +headed +in +the +same +direction +four +placed +plates +under +a +hovering +motionless +bowl +behind +her +in +the +grass +the +other +one +moving +quickly +quickly +to +mount +her +the +impregnable +strength +of +him +earthing +his +feet +near +her +shoulders +the +embracing +necks +hers +stretching +up +toward +his +bending +down +the +pat +pat +pat +of +their +touching +heads +no +height +was +beyond +her +yearning +neck +stretched +like +a +finger +toward +his +risking +everything +outside +the +bowl +just +to +touch +his +face +the +gravity +of +their +shields +clashing +countered +and +mocked +the +floating +heads +touching +beloved +dropped +the +folds +of +her +skirt +it +spread +around +her +the +hem +darkened +in +the +water +chapter +out +of +sight +of +mister +s +sight +away +praise +his +name +from +the +smiling +boss +of +roosters +paul +d +began +to +tremble +not +all +at +once +and +not +so +anyone +could +tell +when +he +turned +his +head +aiming +for +a +last +look +at +brother +turned +it +as +much +as +the +rope +that +connected +his +neck +to +the +axle +of +a +buckboard +allowed +and +later +on +when +they +fastened +the +iron +around +his +ankles +and +clamped +the +wrists +as +well +there +was +no +outward +sign +of +trembling +at +all +nor +eighteen +days +after +that +when +he +saw +the +ditches +the +one +thousand +feet +of +earth +five +feet +deep +five +feet +wide +into +which +wooden +boxes +had +been +fitted +a +door +of +bars +that +you +could +lift +on +hinges +like +a +cage +opened +into +three +walls +and +a +roof +of +scrap +lumber +and +red +dirt +two +feet +of +it +over +his +head +three +feet +of +open +trench +in +front +of +him +with +anything +that +crawled +or +scurried +welcome +to +share +that +grave +calling +itself +quarters +and +there +were +forty +five +more +he +was +sent +there +after +trying +to +kill +brandywine +the +man +schoolteacher +sold +him +to +brandywine +was +leading +him +in +a +coffle +with +ten +others +through +kentucky +into +virginia +he +didn +t +know +exactly +what +prompted +him +to +try +other +than +halle +sixo +paul +a +paul +f +and +mister +but +the +trembling +was +fixed +by +the +time +he +knew +it +was +there +still +no +one +else +knew +it +because +it +began +inside +a +flutter +of +a +kind +in +the +chest +then +the +shoulder +blades +it +felt +like +rippling +gentle +at +first +and +then +wild +as +though +the +further +south +they +led +him +the +more +his +blood +frozen +like +an +ice +pond +for +twenty +years +began +thawing +breaking +into +pieces +that +once +melted +had +no +choice +but +to +swirl +and +eddy +sometimes +it +was +in +his +leg +then +again +it +moved +to +the +base +of +his +spine +by +the +time +they +unhitched +him +from +the +wagon +and +he +saw +nothing +but +dogs +and +two +shacks +in +a +world +of +sizzling +grass +the +roiling +blood +was +shaking +him +to +and +fro +but +no +one +could +tell +the +wrists +he +held +out +for +the +bracelets +that +evening +were +steady +as +were +the +legs +he +stood +on +when +chains +were +attached +to +the +leg +irons +but +when +they +shoved +him +into +the +box +and +dropped +the +cage +door +down +his +hands +quit +taking +instruction +on +their +own +they +traveled +nothing +could +stop +them +or +get +their +attention +they +would +not +hold +his +penis +to +urinate +or +a +spoon +to +scoop +lumps +of +lima +beans +into +his +mouth +the +miracle +of +their +obedience +came +with +the +hammer +at +dawn +all +forty +six +men +woke +to +rifle +shot +all +forty +six +three +whitemen +walked +along +the +trench +unlocking +the +doors +one +by +one +no +one +stepped +through +when +the +last +lock +was +opened +the +three +returned +and +lifted +the +bars +one +by +one +and +one +by +one +the +blackmen +emerged +promptly +and +without +the +poke +of +a +rifle +butt +if +they +had +been +there +more +than +a +day +promptly +with +the +butt +if +like +paul +d +they +had +just +arrived +when +all +forty +six +were +standing +in +a +line +in +the +trench +another +rifle +shot +signaled +the +climb +out +and +up +to +the +ground +above +where +one +thousand +feet +of +the +best +hand +forged +chain +in +georgia +stretched +each +man +bent +and +waited +the +first +man +picked +up +the +end +and +threaded +it +through +the +loop +on +his +leg +iron +he +stood +up +then +and +shuffling +a +little +brought +the +chain +tip +to +the +next +prisoner +who +did +likewise +as +the +chain +was +passed +on +and +each +man +stood +in +the +other +s +place +the +line +of +men +turned +around +facing +the +boxes +they +had +come +out +of +not +one +spoke +to +the +other +at +least +not +with +words +the +eyes +had +to +tell +what +there +was +to +tell +help +me +this +mornin +s +bad +i +m +a +make +it +new +man +steady +now +steady +chain +up +completed +they +knelt +down +the +dew +more +likely +than +not +was +mist +by +then +heavy +sometimes +and +if +the +dogs +were +quiet +and +just +breathing +you +could +hear +doves +kneeling +in +the +mist +they +waited +for +the +whim +of +a +guard +or +two +or +three +or +maybe +all +of +them +wanted +it +wanted +it +from +one +prisoner +in +particular +or +none +or +all +breakfast +want +some +breakfast +nigger +yes +sir +hungry +nigger +yes +sir +here +you +go +occasionally +a +kneeling +man +chose +gunshot +in +his +head +as +the +price +maybe +of +taking +a +bit +of +foreskin +with +him +to +jesus +paul +d +did +not +know +that +then +he +was +looking +at +his +palsied +hands +smelling +the +guard +listening +to +his +soft +grunts +so +like +the +doves +as +he +stood +before +the +man +kneeling +in +mist +on +his +right +convinced +he +was +next +paul +d +retched +vomiting +up +nothing +at +all +an +observing +guard +smashed +his +shoulder +with +the +rifle +and +the +engaged +one +decided +to +skip +the +new +man +for +the +time +being +lest +his +pants +and +shoes +got +soiled +by +nigger +puke +hiiii +it +was +the +first +sound +other +than +yes +sir +a +blackman +was +allowed +to +speak +each +morning +and +the +lead +chain +gave +it +everything +he +had +hiiii +it +was +never +clear +to +paul +d +how +he +knew +when +to +shout +that +mercy +they +called +him +hi +man +and +paul +d +thought +at +first +the +guards +told +him +when +to +give +the +signal +that +let +the +prisoners +rise +up +off +their +knees +and +dance +two +step +to +the +music +of +hand +forged +iron +later +he +doubted +it +he +believed +to +this +day +that +the +hiiii +at +dawn +and +the +hoooo +when +evening +came +were +the +responsibility +hi +man +assumed +because +he +alone +knew +what +was +enough +what +was +too +much +when +things +were +over +when +the +time +had +come +they +chain +danced +over +the +fields +through +the +woods +to +a +trail +that +ended +in +the +astonishing +beauty +of +feldspar +and +there +paul +d +s +hands +disobeyed +the +furious +rippling +of +his +blood +and +paid +attention +with +a +sledge +hammer +in +his +hands +and +hi +man +s +lead +the +men +got +through +they +sang +it +out +and +beat +it +up +garbling +the +words +so +they +could +not +be +understood +tricking +the +words +so +their +syllables +yielded +up +other +meanings +they +sang +the +women +they +knew +the +children +they +had +been +the +animals +they +had +tamed +themselves +or +seen +others +tame +they +sang +of +bosses +and +masters +and +misses +of +mules +and +dogs +and +the +shamelessness +of +life +they +sang +lovingly +of +graveyards +and +sisters +long +gone +of +pork +in +the +woods +meal +in +the +pan +fish +on +the +line +cane +rain +and +rocking +chairs +and +they +beat +the +women +for +having +known +them +and +no +more +no +more +the +children +for +having +been +them +but +never +again +they +killed +a +boss +so +often +and +so +completely +they +had +to +bring +him +back +to +life +to +pulp +him +one +more +time +tasting +hot +mealcake +among +pine +trees +they +beat +it +away +singing +love +songs +to +mr +death +they +smashed +his +head +more +than +the +rest +they +killed +the +flirt +whom +folks +called +life +for +leading +them +on +making +them +think +the +next +sunrise +would +be +worth +it +that +another +stroke +of +time +would +do +it +at +last +only +when +she +was +dead +would +they +be +safe +the +successful +ones +the +ones +who +had +been +there +enough +years +to +have +maimed +mutilated +maybe +even +buried +her +kept +watch +over +the +others +who +were +still +in +her +cock +teasing +hug +caring +and +looking +forward +remembering +and +looking +back +they +were +the +ones +whose +eyes +said +help +me +s +bad +or +look +out +meaning +this +might +be +the +day +i +bay +or +eat +my +own +mess +or +run +and +it +was +this +last +that +had +to +be +guarded +against +for +if +one +pitched +and +ran +all +all +forty +six +would +be +yanked +by +the +chain +that +bound +them +and +no +telling +who +or +how +many +would +be +killed +a +man +could +risk +his +own +life +but +not +his +brother +s +so +the +eyes +said +steady +now +and +hang +by +me +eighty +six +days +and +done +life +was +dead +paul +d +beat +her +butt +all +day +every +day +till +there +was +not +a +whimper +in +her +eighty +six +days +and +his +hands +were +still +waiting +serenely +each +rat +rustling +night +for +hiiii +at +dawn +and +the +eager +clench +on +the +hammer +s +shaft +life +rolled +over +dead +or +so +he +thought +it +rained +snakes +came +down +from +short +leaf +pine +and +hemlock +it +rained +cypress +yellow +poplar +ash +and +palmetto +drooped +under +five +days +of +rain +without +wind +by +the +eighth +day +the +doves +were +nowhere +in +sight +by +the +ninth +even +the +salamanders +were +gone +dogs +laid +their +ears +down +and +stared +over +their +paws +the +men +could +not +work +chain +up +was +slow +breakfast +abandoned +the +two +step +became +a +slow +drag +over +soupy +grass +and +unreliable +earth +it +was +decided +to +lock +everybody +down +in +the +boxes +till +it +either +stopped +or +lightened +up +so +a +whiteman +could +walk +damnit +without +flooding +his +gun +and +the +dogs +could +quit +shivering +the +chain +was +threaded +through +forty +six +loops +of +the +best +hand +forged +iron +in +georgia +it +rained +in +the +boxes +the +men +heard +the +water +rise +in +the +trench +and +looked +out +for +cottonmouths +they +squatted +in +muddy +water +slept +above +it +peed +in +it +paul +d +thought +he +was +screaming +his +mouth +was +open +and +there +was +this +loud +throat +splitting +sound +but +it +may +have +been +somebody +else +then +he +thought +he +was +crying +something +was +running +down +his +cheeks +he +lifted +his +hands +to +wipe +away +the +tears +and +saw +dark +brown +slime +above +him +rivulets +of +mud +slid +through +the +boards +of +the +roof +when +it +come +down +he +thought +gonna +crush +me +like +a +tick +bug +it +happened +so +quick +he +had +no +time +to +ponder +somebody +yanked +the +chain +once +hard +enough +to +cross +his +legs +and +throw +him +into +the +mud +he +never +figured +out +how +he +knew +how +anybody +did +but +he +did +know +he +did +and +he +took +both +hands +and +yanked +the +length +of +chain +at +his +left +so +the +next +man +would +know +too +the +water +was +above +his +ankles +flowing +over +the +wooden +plank +he +slept +on +and +then +it +wasn +t +water +anymore +the +ditch +was +caving +in +and +mud +oozed +under +and +through +the +bars +they +waited +each +and +every +one +of +the +forty +six +not +screaming +although +some +of +them +must +have +fought +like +the +devil +not +to +the +mud +was +up +to +his +thighs +and +he +held +on +to +the +bars +then +it +came +another +yank +from +the +left +this +time +and +less +forceful +than +the +first +because +of +the +mud +it +passed +through +it +started +like +the +chain +up +but +the +difference +was +the +power +of +the +chain +one +by +one +from +hi +man +back +on +down +the +line +they +dove +down +through +the +mud +under +the +bars +blind +groping +some +had +sense +enough +to +wrap +their +heads +in +their +shirts +cover +their +faces +with +rags +put +on +their +shoes +others +just +plunged +simply +ducked +down +and +pushed +out +fighting +up +reaching +for +air +some +lost +direction +and +their +neighbors +feeling +the +confused +pull +of +the +chain +snatched +them +around +for +one +lost +all +lost +the +chain +that +held +them +would +save +all +or +none +and +hi +man +was +the +delivery +they +talked +through +that +chain +like +sam +morse +and +great +god +they +all +came +up +like +the +unshriven +dead +zombies +on +the +loose +holding +the +chains +in +their +hands +they +trusted +the +rain +and +the +dark +yes +but +mostly +hi +man +and +each +other +past +the +sheds +where +the +dogs +lay +in +deep +depression +past +the +two +guard +shacks +past +the +stable +of +sleeping +horses +past +the +hens +whose +bills +were +bolted +into +their +feathers +they +waded +the +moon +did +not +help +because +it +wasn +t +there +the +field +was +a +marsh +the +track +a +trough +all +georgia +seemed +to +be +sliding +melting +away +moss +wiped +their +faces +as +they +fought +the +live +oak +branches +that +blocked +their +way +georgia +took +up +all +of +alabama +and +mississippi +then +so +there +was +no +state +line +to +cross +and +it +wouldn +t +have +mattered +anyway +if +they +had +known +about +it +they +would +have +avoided +not +only +alfred +and +the +beautiful +feldspar +but +savannah +too +and +headed +for +the +sea +islands +on +the +river +that +slid +down +from +the +blue +ridge +mountains +but +they +didn +t +know +daylight +came +and +they +huddled +in +a +copse +of +redbud +trees +night +came +and +they +scrambled +up +to +higher +ground +praying +the +rain +would +go +on +shielding +them +and +keeping +folks +at +home +they +were +hoping +for +a +shack +solitary +some +distance +from +its +big +house +where +a +slave +might +be +making +rope +or +heating +potatoes +at +the +grate +what +they +found +was +a +camp +of +sick +cherokee +for +whom +a +rose +was +named +decimated +but +stubborn +they +were +among +those +who +chose +a +fugitive +life +rather +than +oklahoma +the +illness +that +swept +them +now +was +reminiscent +of +the +one +that +had +killed +half +their +number +two +hundred +years +earlier +in +between +that +calamity +and +this +they +had +visited +george +iii +in +london +published +a +newspaper +made +baskets +led +oglethorpe +through +forests +helped +andrew +jackson +fight +creek +cooked +maize +drawn +up +a +constitution +petitioned +the +king +of +spain +been +experimented +on +by +dartmouth +established +asylums +wrote +their +language +resisted +settlers +shot +bear +and +translated +scripture +all +to +no +avail +the +forced +move +to +the +arkansas +river +insisted +upon +by +the +same +president +they +fought +for +against +the +creek +destroyed +another +quarter +of +their +already +shattered +number +that +was +it +they +thought +and +removed +themselves +from +those +cherokee +who +signed +the +treaty +in +order +to +retire +into +the +forest +and +await +the +end +of +the +world +the +disease +they +suffered +now +was +a +mere +inconvenience +compared +to +the +devastation +they +remembered +still +they +protected +each +other +as +best +they +could +the +healthy +were +sent +some +miles +away +the +sick +stayed +behind +with +the +dead +to +survive +or +join +them +the +prisoners +from +alfred +georgia +sat +down +in +semicircle +near +the +encampment +no +one +came +and +still +they +sat +hours +passed +and +the +rain +turned +soft +finally +a +woman +stuck +her +head +out +of +her +house +night +came +and +nothing +happened +at +dawn +two +men +with +barnacles +covering +their +beautiful +skin +approached +them +no +one +spoke +for +a +moment +then +hi +man +raised +his +hand +the +cherokee +saw +the +chains +and +went +away +when +they +returned +each +carried +a +handful +of +small +axes +two +children +followed +with +a +pot +of +mush +cooling +and +thinning +in +the +rain +buffalo +men +they +called +them +and +talked +slowly +to +the +prisoners +scooping +mush +and +tapping +away +at +their +chains +nobody +from +a +box +in +alfred +georgia +cared +about +the +illness +the +cherokee +warned +them +about +so +they +stayed +all +forty +six +resting +planning +their +next +move +paul +d +had +no +idea +of +what +to +do +and +knew +less +than +anybody +it +seemed +he +heard +his +co +convicts +talk +knowledgeably +of +rivers +and +states +towns +and +territories +heard +cherokee +men +describe +the +beginning +of +the +world +and +its +end +listened +to +tales +of +other +buffalo +men +they +knew +three +of +whom +were +in +the +healthy +camp +a +few +miles +away +hi +man +wanted +to +join +them +others +wanted +to +join +him +some +wanted +to +leave +some +to +stay +on +weeks +later +paul +d +was +the +only +buffalo +man +left +without +a +plan +all +he +could +think +of +was +tracking +dogs +although +hi +man +said +the +rain +they +left +in +gave +that +no +chance +of +success +alone +the +last +man +with +buffalo +hair +among +the +ailing +cherokee +paul +d +finally +woke +up +and +admitting +his +ignorance +asked +how +he +might +get +north +free +north +magical +north +welcoming +benevolent +north +the +cherokee +smiled +and +looked +around +the +flood +rains +of +a +month +ago +had +turned +everything +to +steam +and +blossoms +that +way +he +said +pointing +follow +the +tree +flowers +he +said +only +the +tree +flowers +as +they +go +you +go +you +will +be +where +you +want +to +be +when +they +are +gone +so +he +raced +from +dogwood +to +blossoming +peach +when +they +thinned +out +he +headed +for +the +cherry +blossoms +then +magnolia +chinaberry +pecan +walnut +and +prickly +pear +at +last +he +reached +a +field +of +apple +trees +whose +flowers +were +just +becoming +tiny +knots +of +fruit +spring +sauntered +north +but +he +had +to +run +like +hell +to +keep +it +as +his +traveling +companion +from +february +to +july +he +was +on +the +lookout +for +blossoms +when +he +lost +them +and +found +himself +without +so +much +as +a +petal +to +guide +him +he +paused +climbed +a +tree +on +a +hillock +and +scanned +the +horizon +for +a +flash +of +pink +or +white +in +the +leaf +world +that +surrounded +him +he +did +not +touch +them +or +stop +to +smell +he +merely +followed +in +their +wake +a +dark +ragged +figure +guided +by +the +blossoming +plums +the +apple +field +turned +out +to +be +delaware +where +the +weaver +lady +lived +she +snapped +him +up +as +soon +as +he +finished +the +sausage +she +fed +him +and +he +crawled +into +her +bed +crying +she +passed +him +off +as +her +nephew +from +syracuse +simply +by +calling +him +that +nephew +s +name +eighteen +months +and +he +was +looking +out +again +for +blossoms +only +this +time +he +did +the +looking +on +a +dray +it +was +some +time +before +he +could +put +alfred +georgia +sixo +schoolteacher +halle +his +brothers +sethe +mister +the +taste +of +iron +the +sight +of +butter +the +smell +of +hickory +notebook +paper +one +by +one +into +the +tobacco +tin +lodged +in +his +chest +by +the +time +he +got +to +nothing +in +this +world +could +pry +it +open +chapter +she +moved +him +not +the +way +he +had +beat +off +the +baby +s +ghost +all +bang +and +shriek +with +windows +smashed +and +icily +iars +rolled +in +a +heap +but +she +moved +him +nonetheless +and +paul +d +didn +t +know +how +to +stop +it +because +it +looked +like +he +was +moving +himself +imperceptibly +downright +reasonably +he +was +moving +out +of +the +beginning +was +so +simple +one +day +after +supper +he +sat +in +the +rocker +by +the +stove +bone +tired +river +whipped +and +fell +asleep +he +woke +to +the +footsteps +of +sethe +coming +down +the +white +stairs +to +make +breakfast +i +thought +you +went +out +somewhere +she +said +paul +d +moaned +surprised +to +find +himself +exactly +where +he +was +the +last +time +he +looked +don +t +tell +me +i +slept +in +this +chair +the +whole +night +sethe +laughed +me +i +won +t +say +a +word +to +you +why +didn +t +you +rouse +me +i +did +called +you +two +or +three +times +i +gave +it +up +around +midnight +and +then +i +thought +you +went +out +somewhere +he +stood +expecting +his +back +to +fight +it +but +it +didn +t +not +a +creak +or +a +stiff +joint +anywhere +in +fact +he +felt +refreshed +some +things +are +like +that +he +thought +good +sleep +places +the +base +of +certain +trees +here +and +there +a +wharf +a +bench +a +rowboat +once +a +haystack +usually +not +always +bed +and +here +now +a +rocking +chair +which +was +strange +because +in +his +experience +furniture +was +the +worst +place +for +a +good +sleep +sleep +the +next +evening +he +did +it +again +and +then +again +he +was +accustomed +to +sex +with +sethe +just +about +every +day +and +to +avoid +the +confusion +beloved +s +shining +caused +him +he +still +made +it +his +business +to +take +her +back +upstairs +in +the +morning +or +lie +down +with +her +after +supper +but +he +found +a +way +and +a +reason +to +spend +the +longest +part +of +the +night +in +the +rocker +he +told +himself +it +must +be +his +back +something +supportive +it +needed +for +a +weakness +left +over +from +sleeping +in +a +box +in +georgia +it +went +on +that +way +and +might +have +stayed +that +way +but +one +evening +after +supper +after +sethe +he +came +downstairs +sat +in +the +rocker +and +didn +t +want +to +be +there +he +stood +up +and +realized +he +didn +t +want +to +go +upstairs +either +irritable +and +longing +for +rest +he +opened +the +door +to +baby +suggs +room +and +dropped +off +to +sleep +on +the +bed +the +old +lady +died +in +that +settled +it +so +it +seemed +it +became +his +room +and +sethe +didn +t +object +her +bed +made +for +two +had +been +occupied +by +one +for +eighteen +years +before +paul +d +came +to +call +and +maybe +it +was +better +this +way +with +young +girls +in +the +house +and +him +not +being +her +true +to +life +husband +in +any +case +since +there +was +no +reduction +in +his +before +breakfast +or +after +supper +appetites +he +never +heard +her +complain +it +went +on +that +way +and +might +have +stayed +that +way +except +one +evening +after +supper +after +sethe +he +came +downstairs +and +lay +on +baby +suggs +bed +and +didn +t +want +to +be +there +he +believed +he +was +having +house +fits +the +glassy +anger +men +sometimes +feel +when +a +woman +s +house +begins +to +bind +them +when +they +want +to +yell +and +break +something +or +at +least +run +off +he +knew +all +about +that +felt +it +lots +of +times +in +the +delaware +weaver +s +house +for +instance +but +always +he +associated +the +house +fit +with +the +woman +in +it +this +nervousness +had +nothing +to +do +with +the +woman +whom +he +loved +a +little +bit +more +every +day +her +hands +among +vegetables +her +mouth +when +she +licked +a +thread +end +before +guiding +it +through +a +needle +or +bit +it +in +two +when +the +seam +was +done +the +blood +in +her +eye +when +she +defended +her +girls +and +beloved +was +hers +now +or +any +coloredwoman +from +a +slur +also +in +this +house +fit +there +was +no +anger +no +suffocation +no +yearning +to +be +elsewhere +he +just +could +not +would +not +sleep +upstairs +or +in +the +rocker +or +now +in +baby +suggs +bed +so +he +went +to +the +storeroom +it +went +on +that +way +and +might +have +stayed +that +way +except +one +evening +after +supper +after +sethe +he +lay +on +a +pallet +in +the +storeroom +and +didn +t +want +to +be +there +then +it +was +the +cold +house +and +it +was +out +there +separated +from +the +main +part +of +curled +on +top +of +two +croaker +sacks +full +of +sweet +potatoes +staring +at +the +sides +of +a +lard +can +that +he +realized +the +moving +was +involuntary +he +wasn +t +being +nervous +he +was +being +prevented +so +he +waited +visited +sethe +in +the +morning +slept +in +the +cold +room +at +night +and +waited +she +came +and +he +wanted +to +knock +her +down +in +ohio +seasons +are +theatrical +each +one +enters +like +a +prima +donna +convinced +its +performance +is +the +reason +the +world +has +people +in +it +when +paul +d +had +been +forced +out +of +into +a +shed +behind +it +summer +had +been +hooted +offstage +and +autumn +with +its +bottles +of +blood +and +gold +had +everybody +s +attention +even +at +night +when +there +should +have +been +a +restful +intermission +there +was +none +because +the +voices +of +a +dying +landscape +were +insistent +and +loud +paul +d +packed +newspaper +under +himself +and +over +to +give +his +thin +blanket +some +help +but +the +chilly +night +was +not +on +his +mind +when +he +heard +the +door +open +behind +him +he +refused +to +turn +and +look +what +you +want +in +here +what +you +want +he +should +have +been +able +to +hear +her +breathing +i +want +you +to +touch +me +on +the +inside +part +and +call +me +my +name +paul +d +never +worried +about +his +little +tobacco +tin +anymore +it +was +rusted +shut +so +while +she +hoisted +her +skirts +and +turned +her +head +over +her +shoulder +the +way +the +turtles +had +he +just +looked +at +the +lard +can +silvery +in +moonlight +and +spoke +quietly +when +good +people +take +you +in +and +treat +you +good +you +ought +to +try +to +be +good +back +you +don +t +sethe +loves +you +much +as +her +own +daughter +you +know +that +beloved +dropped +her +skirts +as +he +spoke +and +looked +at +him +with +empty +eyes +she +took +a +step +he +could +not +hear +and +stood +close +behind +him +she +don +t +love +me +like +i +love +her +i +don +t +love +nobody +but +her +then +what +you +come +in +here +for +i +want +you +to +touch +me +on +the +inside +part +go +on +back +in +that +house +and +get +to +bed +you +have +to +touch +me +on +the +inside +part +and +you +have +to +call +me +my +name +as +long +as +his +eyes +were +locked +on +the +silver +of +the +lard +can +he +was +safe +if +he +trembled +like +lot +s +wife +and +felt +some +womanish +need +to +see +the +nature +of +the +sin +behind +him +feel +a +sympathy +perhaps +for +the +cursing +cursed +or +want +to +hold +it +in +his +arms +out +of +respect +for +the +connection +between +them +he +too +would +be +lost +call +me +my +name +no +please +call +it +i +ll +go +if +you +call +it +beloved +he +said +it +but +she +did +not +go +she +moved +closer +with +a +footfall +he +didn +t +hear +and +he +didn +t +hear +the +whisper +that +the +flakes +of +rust +made +either +as +they +fell +away +from +the +seams +of +his +tobacco +tin +so +when +the +lid +gave +he +didn +t +know +it +what +he +knew +was +that +when +he +reached +the +inside +part +he +was +saying +red +heart +red +heart +over +and +over +again +softly +and +then +so +loud +it +woke +denver +then +paul +d +himself +red +heart +red +heart +red +heart +chapter +to +go +back +to +the +original +hunger +was +impossible +luckily +for +denver +looking +was +food +enough +to +last +but +to +be +looked +at +in +turn +was +beyond +appetite +it +was +breaking +through +her +own +skin +to +a +place +where +hunger +hadn +t +been +discovered +it +didn +t +have +to +happen +often +because +beloved +seldom +looked +right +at +her +or +when +she +did +denver +could +tell +that +her +own +face +was +just +the +place +those +eyes +stopped +while +the +mind +behind +it +walked +on +but +sometimes +at +moments +denver +could +neither +anticipate +nor +create +beloved +rested +cheek +on +knuckles +and +looked +at +denver +with +attention +it +was +lovely +not +to +be +stared +at +not +seen +but +being +pulled +into +view +by +the +interested +uncritical +eyes +of +the +other +having +her +hair +examined +as +a +part +of +her +self +not +as +material +or +a +style +having +her +lips +nose +chin +caressed +as +they +might +be +if +she +were +a +moss +rose +a +gardener +paused +to +admire +denver +s +skin +dissolved +under +that +gaze +and +became +soft +and +bright +like +the +lisle +dress +that +had +its +arm +around +her +mother +s +waist +she +floated +near +but +outside +her +own +body +feeling +vague +and +intense +at +the +same +time +needing +nothing +being +what +there +was +at +such +times +it +seemed +to +be +beloved +who +needed +somethingm +wanted +something +deep +down +in +her +wide +black +eyes +back +behind +the +expressionlessness +was +a +palm +held +out +for +a +penny +which +denver +would +gladly +give +her +if +only +she +knew +how +or +knew +enough +about +her +a +knowledge +not +to +be +had +by +the +answers +to +the +questions +sethe +occasionally +put +to +her +you +disremember +everything +i +never +knew +my +mother +neither +but +i +saw +her +a +couple +of +times +did +you +never +see +yours +what +kind +of +whites +was +they +you +don +t +remember +none +beloved +scratching +the +back +of +her +hand +would +say +she +remembered +a +woman +who +was +hers +and +she +remembered +being +snatched +away +from +her +other +than +that +the +clearest +memory +she +had +the +one +she +repeated +was +the +bridge +standing +on +the +bridge +looking +down +and +she +knew +one +whiteman +sethe +found +that +remarkable +and +more +evidence +to +support +her +conclusions +which +she +confided +to +denver +where +d +you +get +the +dress +them +shoes +beloved +said +she +took +them +who +from +silence +and +a +faster +scratching +of +her +hand +she +didn +t +know +she +saw +them +and +just +took +them +uh +huh +said +sethe +and +told +denver +that +she +believed +beloved +had +been +locked +up +by +some +whiteman +for +his +own +purposes +and +never +let +out +the +door +that +she +must +have +escaped +to +a +bridge +or +someplace +and +rinsed +the +rest +out +of +her +mind +something +like +that +had +happened +to +ella +except +it +was +two +men +a +father +and +son +and +ella +remembered +every +bit +of +it +for +more +than +a +year +they +kept +her +locked +in +a +room +for +themselves +you +couldn +t +think +up +ella +had +said +what +them +two +done +to +me +sethe +thought +it +explained +beloved +s +behavior +around +paul +d +whom +she +hated +so +denver +neither +believed +nor +commented +on +sethe +s +speculations +and +she +lowered +her +eyes +and +never +said +a +word +about +the +cold +house +she +was +certain +that +beloved +was +the +white +dress +that +had +knelt +with +her +mother +in +the +keeping +room +the +true +to +life +presence +of +the +baby +that +had +kept +her +company +most +of +her +life +and +to +be +looked +at +by +her +however +briefly +kept +her +grateful +for +the +rest +of +the +time +when +she +was +merely +the +looker +besides +she +had +her +own +set +of +questions +which +had +nothing +to +do +with +the +past +the +present +alone +interested +denver +but +she +was +careful +to +appear +uninquisitive +about +the +things +she +was +dying +to +ask +beloved +for +if +she +pressed +too +hard +she +might +lose +the +penny +that +the +held +out +palm +wanted +and +lose +therefore +the +place +beyond +appetite +it +was +better +to +feast +to +have +permission +to +be +the +looker +because +the +old +hunger +the +before +beloved +hunger +that +drove +her +into +boxwood +and +cologne +for +just +a +taste +of +a +life +to +feel +it +bumpy +and +not +flat +was +out +of +the +question +looking +kept +it +at +bay +so +she +did +not +ask +beloved +how +she +knew +about +the +earrings +the +night +walks +to +the +cold +house +or +the +tip +of +the +thing +she +saw +when +beloved +lay +down +or +came +undone +in +her +sleep +the +look +when +it +came +came +when +denver +had +been +careful +had +explained +things +or +participated +in +things +or +told +stories +to +keep +her +occupied +when +sethe +was +at +the +restaurant +no +given +chore +was +enough +to +put +out +the +licking +fire +that +seemed +always +to +burn +in +her +not +when +they +wrung +out +sheets +so +tight +the +rinse +water +ran +back +up +their +arms +not +when +they +shoveled +snow +from +the +path +to +the +outhouse +or +broke +three +inches +of +ice +from +the +rain +barrel +scoured +and +boiled +last +summer +s +canning +jars +packed +mud +in +the +cracks +of +the +hen +house +and +warmed +the +chicks +with +their +skirts +all +the +while +denver +was +obliged +to +talk +about +what +they +were +doing +the +how +and +why +of +it +about +people +denver +knew +once +or +had +seen +giving +them +more +life +than +life +had +the +sweet +smelling +whitewoman +who +brought +her +oranges +and +cologne +and +good +wool +skirts +lady +jones +who +taught +them +songs +to +spell +and +count +by +a +beautiful +boy +as +smart +as +she +was +with +a +birthmark +like +a +nickel +on +his +cheek +a +white +preacher +who +prayed +for +their +souls +while +sethe +peeled +potatoes +and +grandma +baby +sucked +air +and +she +told +her +about +howard +and +buglar +the +parts +of +the +bed +that +belonged +to +each +the +top +reserved +for +herself +that +before +she +transferred +to +baby +suggs +bed +she +never +knew +them +to +sleep +without +holding +hands +she +described +them +to +beloved +slowly +to +keep +her +attention +dwelling +on +their +habits +the +games +they +taught +her +and +not +the +fright +that +drove +them +increasingly +out +of +the +house +anywhere +and +finally +far +away +this +day +they +are +outside +it +s +cold +and +the +snow +is +hard +as +packed +dirt +denver +has +finished +singing +the +counting +song +lady +jones +taught +her +students +beloved +is +holding +her +arms +steady +while +denver +unclasps +frozen +underwear +and +towels +from +the +line +one +by +one +she +lays +them +in +beloved +s +arms +until +the +pile +like +a +huge +deck +of +cards +reaches +her +chin +the +rest +aprons +and +brown +stockings +denver +carries +herself +made +giddy +by +the +cold +they +return +to +the +house +the +clothes +will +thaw +slowly +to +a +dampness +perfect +for +the +pressing +iron +which +will +make +them +smell +like +hot +rain +dancing +around +the +room +with +sethe +s +apron +beloved +wants +to +know +if +there +are +flowers +in +the +dark +denver +adds +sticks +to +the +stovefire +and +assures +her +there +are +twirling +her +face +framed +by +the +neckband +her +waist +in +the +apron +strings +embrace +she +says +she +is +thirsty +denver +suggests +warming +up +some +cider +while +her +mind +races +to +something +she +might +do +or +say +to +interest +and +entertain +the +dancer +denver +is +a +strategist +now +and +has +to +keep +beloved +by +her +side +from +the +minute +sethe +leaves +for +work +until +the +hour +of +her +return +when +beloved +begins +to +hover +at +the +window +then +work +her +way +out +the +door +down +the +steps +and +near +the +road +plotting +has +changed +denver +markedly +where +she +was +once +indolent +resentful +of +every +task +now +she +is +spry +executing +even +extending +the +assignments +sethe +leaves +for +them +all +to +be +able +to +say +we +got +to +and +ma +am +said +for +us +to +otherwise +beloved +gets +private +and +dreamy +or +quiet +and +sullen +and +denver +s +chances +of +being +looked +at +by +her +go +down +to +nothing +she +has +no +control +over +the +evenings +when +her +mother +is +anywhere +around +beloved +has +eyes +only +for +sethe +at +night +in +bed +anything +might +happen +she +might +want +to +be +told +a +story +in +the +dark +when +denver +can +t +see +her +or +she +might +get +up +and +go +into +the +cold +house +where +paul +d +has +begun +to +sleep +or +she +might +cry +silently +she +might +even +sleep +like +a +brick +her +breath +sugary +from +fingerfuls +of +molasses +or +sand +cookie +crumbs +denver +will +turn +toward +her +then +and +if +beloved +faces +her +she +will +inhale +deeply +the +sweet +air +from +her +mouth +if +not +she +will +have +to +lean +up +and +over +her +every +once +in +a +while +to +catch +a +sniff +for +anything +is +better +than +the +original +hunger +the +time +when +after +a +year +of +the +wonderful +little +i +sentences +rolling +out +like +pie +dough +and +the +company +of +other +children +there +was +no +sound +coming +through +anything +is +better +than +the +silence +when +she +answered +to +hands +gesturing +and +was +indifferent +to +the +movement +of +lips +when +she +saw +every +little +thing +and +colors +leaped +smoldering +into +view +she +will +forgo +the +most +violent +of +sunsets +stars +as +fat +as +dinner +plates +and +all +the +blood +of +autumn +and +settle +for +the +palest +yellow +if +it +comes +from +her +beloved +the +cider +jug +is +heavy +but +it +always +is +even +when +empty +denver +can +carry +it +easily +yet +she +asks +beloved +to +help +her +it +is +in +the +cold +house +next +to +the +molasses +and +six +pounds +of +cheddar +hard +as +bone +a +pallet +is +in +the +middle +of +the +floor +covered +with +newspaper +and +a +blanket +at +the +foot +it +has +been +slept +on +for +almost +a +month +even +though +snow +has +come +and +with +it +serious +winter +it +is +noon +quite +light +outside +inside +it +is +not +a +few +cuts +of +sun +break +through +the +roof +and +walls +but +once +there +they +are +too +weak +to +shift +for +themselves +darkness +is +stronger +and +swallows +them +like +minnows +the +door +bangs +shut +denver +can +t +tell +where +beloved +is +standing +where +are +you +she +whispers +in +a +laughing +sort +of +way +here +says +beloved +where +come +find +me +says +beloved +denver +stretches +out +her +right +arm +and +takes +a +step +or +two +she +trips +and +falls +down +onto +the +pallet +newspaper +crackles +under +her +weight +she +laughs +again +oh +shoot +beloved +no +one +answers +denver +waves +her +arms +and +squinches +her +eyes +to +separate +the +shadows +of +potato +sacks +a +lard +can +and +a +side +of +smoked +pork +from +the +one +that +might +be +human +stop +fooling +she +says +and +looks +up +toward +the +light +to +check +and +make +sure +this +is +still +the +cold +house +and +not +something +going +on +in +her +sleep +the +minnows +of +light +still +swim +there +they +can +t +make +it +down +to +where +she +is +you +the +one +thirsty +you +want +cider +or +don +t +you +denver +s +voice +is +mildly +accusatory +mildly +she +doesn +t +want +to +offend +and +she +doesn +t +want +to +betray +the +panic +that +is +creeping +over +her +like +hairs +there +is +no +sight +or +sound +of +beloved +denver +struggles +to +her +feet +amid +the +crackling +newspaper +holding +her +palm +out +she +moves +slowly +toward +the +door +there +is +no +latch +or +knob +just +a +loop +of +wire +to +catch +a +nail +she +pushes +the +door +open +cold +sunlight +displaces +the +dark +the +room +is +just +as +it +was +when +they +entered +except +beloved +is +not +there +there +is +no +point +in +looking +further +for +everything +in +the +place +can +be +seen +at +first +sight +denver +looks +anyway +because +the +loss +is +ungovernable +she +steps +back +into +the +shed +allowing +the +door +to +close +quickly +behind +her +darkness +or +not +she +moves +rapidly +around +reaching +touching +cobwebs +cheese +slanting +shelves +the +pallet +interfering +with +each +step +if +she +stumbles +she +is +not +aware +of +it +because +she +does +not +know +where +her +body +stops +which +part +of +her +is +an +arm +a +foot +or +a +knee +she +feels +like +an +ice +cake +torn +away +from +the +solid +surface +of +the +stream +floating +on +darkness +thick +and +crashing +against +the +edges +of +things +around +it +breakable +meltable +and +cold +it +is +hard +to +breathe +and +even +if +there +were +light +she +wouldn +t +be +able +to +see +anything +because +she +is +crying +just +as +she +thought +it +might +happen +it +has +easy +as +walking +into +a +room +a +magical +appearance +on +a +stump +the +face +wiped +out +by +sunlight +and +a +magical +disappearance +in +a +shed +eaten +alive +by +the +dark +don +t +she +is +saying +between +tough +swallows +don +t +don +t +go +back +this +is +worse +than +when +paul +d +came +to +and +she +cried +helplessly +into +the +stove +this +is +worse +then +it +was +for +herself +now +she +is +crying +because +she +has +no +self +death +is +a +skipped +meal +compared +to +this +she +can +feel +her +thickness +thinning +dissolving +into +nothing +she +grabs +the +hair +at +her +temples +to +get +enough +to +uproot +it +and +halt +the +melting +for +a +while +teeth +clamped +shut +denver +brakes +her +sobs +she +doesn +t +move +to +open +the +door +because +there +is +no +world +out +there +she +decides +to +stay +in +the +cold +house +and +let +the +dark +swallow +her +like +the +minnows +of +light +above +she +won +t +put +up +with +another +leaving +another +trick +waking +up +to +find +one +brother +then +another +not +at +the +bottom +of +the +bed +his +foot +jabbing +her +spine +sitting +at +the +table +eating +turnips +and +saving +the +liquor +for +her +grandmother +to +drink +her +mother +s +hand +on +the +keeping +room +door +and +her +voice +saying +baby +suggs +is +gone +denver +and +when +she +got +around +to +worrying +about +what +would +be +the +case +if +sethe +died +or +paul +d +took +her +away +a +dream +come +true +comes +true +just +to +leave +her +on +a +pile +of +newspaper +in +the +dark +no +footfall +announces +her +but +there +she +is +standing +where +before +there +was +nobody +when +denver +looked +and +smiling +denver +grabs +the +hem +of +beloved +s +skirt +i +thought +you +left +me +i +thought +you +went +back +beloved +smiles +i +don +t +want +that +place +this +the +place +i +am +she +sits +down +on +the +pallet +and +laughing +lies +back +looking +at +the +cracklights +above +surreptitiously +denver +pinches +a +piece +of +beloved +s +skirt +between +her +fingers +and +holds +on +a +good +thing +she +does +because +suddenly +beloved +sits +up +what +is +it +asks +denver +look +she +points +to +the +sunlit +cracks +what +i +don +t +see +nothing +denver +follows +the +pointing +finger +beloved +drops +her +hand +i +m +like +this +denver +watches +as +beloved +bends +over +curls +up +and +rocks +her +eyes +go +to +no +place +her +moaning +is +so +small +denver +can +hardly +hear +it +you +all +right +beloved +beloved +focuses +her +eyes +over +there +her +face +denver +looks +where +beloved +s +eyes +go +there +is +nothing +but +darkness +there +whose +face +who +is +it +me +it +s +me +she +is +smiling +again +chapter +the +last +of +the +sweet +home +men +so +named +and +called +by +one +who +would +know +believed +it +the +other +four +believed +it +too +once +but +they +were +long +gone +the +sold +one +never +returned +the +lost +one +never +found +one +he +knew +was +dead +for +sure +one +he +hoped +was +because +butter +and +clabber +was +no +life +or +reason +to +live +it +he +grew +up +thinking +that +of +all +the +blacks +in +kentucky +only +the +five +of +them +were +men +allowed +encouraged +to +correct +garner +even +defy +him +to +invent +ways +of +doing +things +to +see +what +was +needed +and +attack +it +without +permission +to +buy +a +mother +choose +a +horse +or +a +wife +handle +guns +even +learn +reading +if +they +wanted +to +but +they +didn +t +want +to +since +nothing +important +to +them +could +be +put +down +on +paper +was +that +it +is +that +where +the +manhood +lay +in +the +naming +done +by +a +whiteman +who +was +supposed +to +know +who +gave +them +the +privilege +not +of +working +but +of +deciding +how +to +no +in +their +relationship +with +garner +was +true +metal +they +were +believed +and +trusted +but +most +of +all +they +were +listened +to +he +thought +what +they +said +had +merit +and +what +they +felt +was +serious +deferring +to +his +slaves +opinions +did +not +deprive +him +of +authority +or +power +it +was +schoolteacher +who +taught +them +otherwise +a +truth +that +waved +like +a +scarecrow +in +rye +they +were +only +sweet +home +men +at +sweet +home +one +step +off +that +ground +and +they +were +trespassers +among +the +human +race +watchdogs +without +teeth +steer +bulls +without +horns +gelded +workhorses +whose +neigh +and +whinny +could +not +be +translated +into +a +language +responsible +humans +spoke +his +strength +had +lain +in +knowing +that +schoolteacher +was +wrong +now +he +wondered +there +was +alfred +georgia +there +was +delaware +there +was +sixo +and +still +he +wondered +if +schoolteacher +was +right +it +explained +how +he +had +come +to +be +a +rag +doll +picked +up +and +put +back +down +anywhere +any +time +by +a +girl +young +enough +to +be +his +daughter +fucking +her +when +he +was +convinced +he +didn +t +want +to +whenever +she +turned +her +behind +up +the +calves +of +his +youth +was +that +it +cracked +his +resolve +but +it +was +more +than +appetite +that +humiliated +him +and +made +him +wonder +if +schoolteacher +was +right +it +was +being +moved +placed +where +she +wanted +him +and +there +was +nothing +he +was +able +to +do +about +it +for +his +life +he +could +not +walk +up +the +glistening +white +stairs +in +the +evening +for +his +life +he +could +not +stay +in +the +kitchen +in +the +keeping +room +in +the +storeroom +at +night +and +he +tried +held +his +breath +the +way +he +had +when +he +ducked +into +the +mud +steeled +his +heart +the +way +he +had +when +the +trembling +began +but +it +was +worse +than +that +worse +than +the +blood +eddy +he +had +controlled +with +a +sledge +hammer +when +he +stood +up +from +the +supper +table +at +and +turned +toward +the +stairs +nausea +was +first +then +repulsion +he +he +he +who +had +eaten +raw +meat +barely +dead +who +under +plum +trees +bursting +with +blossoms +had +crunched +through +a +dove +s +breast +before +its +heart +stopped +beating +because +he +was +a +man +and +a +man +could +do +what +he +would +be +still +for +six +hours +in +a +dry +well +while +night +dropped +fight +raccoon +with +his +hands +and +win +watch +another +man +whom +he +loved +better +than +his +brothers +roast +without +a +tear +just +so +the +roasters +would +know +what +a +man +was +like +and +it +was +he +that +man +who +had +walked +from +georgia +to +delaware +who +could +not +go +or +stay +put +where +he +wanted +to +in +shame +paul +d +could +not +command +his +feet +but +he +thought +he +could +still +talk +and +he +made +up +his +mind +to +break +out +that +way +he +would +tell +sethe +about +the +last +three +weeks +catch +her +alone +coming +from +work +at +the +beer +garden +she +called +a +restaurant +and +tell +it +all +he +waited +for +her +the +winter +afternoon +looked +like +dusk +as +he +stood +in +the +alley +behind +sawyer +s +restaurant +rehearsing +imagining +her +face +and +letting +the +words +flock +in +his +head +like +kids +before +lining +up +to +follow +the +leader +well +ah +this +is +not +the +a +man +can +t +see +but +aw +listen +here +it +ain +t +that +it +really +ain +t +ole +garner +what +i +mean +is +it +ain +t +a +weak +ness +the +kind +of +weakness +i +can +fight +cause +cause +something +is +happening +to +me +that +girl +is +doing +it +i +know +you +think +i +never +liked +her +nohow +but +she +is +doing +it +to +me +fixing +me +sethe +she +s +fixed +me +and +i +can +t +break +it +what +a +grown +man +fixed +by +a +girl +but +what +if +the +girl +was +not +a +girl +but +something +in +disguise +a +lowdown +something +that +looked +like +a +sweet +young +girl +and +fucking +her +or +not +was +not +the +point +it +was +not +being +able +to +stay +or +go +where +he +wished +in +and +the +danger +was +in +losing +sethe +because +he +was +not +man +enough +to +break +out +so +he +needed +her +sethe +to +help +him +to +know +about +it +and +it +shamed +him +to +have +to +ask +the +woman +he +wanted +to +protect +to +help +him +do +it +god +damn +it +to +hell +paul +d +blew +warm +breath +into +the +hollow +of +his +cupped +hands +the +wind +raced +down +the +alley +so +fast +it +sleeked +the +fur +of +four +kitchen +dogs +waiting +for +scraps +he +looked +at +the +dogs +the +dogs +looked +at +him +finally +the +back +door +opened +and +sethe +stepped +through +holding +a +scrap +pan +in +the +crook +of +her +arm +when +she +saw +him +she +said +oh +and +her +smile +was +both +pleasure +and +surprise +paul +d +believed +he +smiled +back +but +his +face +was +so +cold +he +wasn +t +sure +man +you +make +me +feel +like +a +girl +coming +by +to +pick +me +up +after +work +nobody +ever +did +that +before +you +better +watch +out +i +might +start +looking +forward +to +it +she +tossed +the +largest +bones +into +the +dirt +rapidly +so +the +dogs +would +know +there +was +enough +and +not +fight +each +other +then +she +dumped +the +skins +of +some +things +heads +of +other +things +and +the +insides +of +still +more +things +what +the +restaurant +could +not +use +and +she +would +not +in +a +smoking +pile +near +the +animals +feet +got +to +rinse +this +out +she +said +and +then +i +ll +be +right +with +you +he +nodded +as +she +returned +to +the +kitchen +the +dogs +ate +without +sound +and +paul +d +thought +they +at +least +got +what +they +came +for +and +if +she +had +enough +for +them +the +cloth +on +her +head +was +brown +wool +and +she +edged +it +down +over +her +hairline +against +the +wind +you +get +off +early +or +what +i +took +off +early +anything +the +matter +in +a +way +of +speaking +he +said +and +wiped +his +lips +not +cut +back +no +no +they +got +plenty +work +i +just +hm +sethe +you +won +t +like +what +i +m +bout +to +say +she +stopped +then +and +turned +her +face +toward +him +and +the +hateful +wind +another +woman +would +have +squinted +or +at +least +teared +if +the +wind +whipped +her +face +as +it +did +sethe +s +another +woman +might +have +shot +him +a +look +of +apprehension +pleading +anger +even +because +what +he +said +sure +sounded +like +part +one +of +goodbye +i +m +gone +sethe +looked +at +him +steadily +calmly +already +ready +to +accept +release +or +excuse +an +in +need +or +trouble +man +agreeing +saying +okay +all +right +in +advance +because +she +didn +t +believe +any +of +them +over +the +long +haul +could +measure +up +and +whatever +the +reason +it +was +all +right +no +fault +nobody +s +fault +he +knew +what +she +was +thinking +and +even +though +she +was +wrong +he +was +not +leaving +her +wouldn +t +ever +the +thing +he +had +in +mind +to +tell +her +was +going +to +be +worse +so +when +he +saw +the +diminished +expectation +in +her +eyes +the +melancholy +without +blame +he +could +not +say +it +he +could +not +say +to +this +woman +who +did +not +squint +in +the +wind +i +am +not +a +man +well +say +it +paul +d +whether +i +like +it +or +not +since +he +could +not +say +what +he +planned +to +he +said +something +he +didn +t +know +was +on +his +mind +i +want +you +pregnant +sethe +would +you +do +that +for +me +now +she +was +laughing +and +so +was +he +you +came +by +here +to +ask +me +that +you +are +one +crazy +headed +man +you +right +i +don +t +like +it +don +t +you +think +i +m +too +old +to +start +that +all +over +again +she +slipped +her +fingers +in +his +hand +for +all +the +world +like +the +hand +holding +shadows +on +the +side +of +the +road +think +about +it +he +said +and +suddenly +it +was +a +solution +a +way +to +hold +on +to +her +document +his +manhood +and +break +out +of +the +girl +s +spell +all +in +one +he +put +the +tips +of +sethe +s +fingers +on +his +cheek +laughing +she +pulled +them +away +lest +somebody +passing +the +alley +see +them +misbehaving +in +public +in +daylight +in +the +wind +still +he +d +gotten +a +little +more +time +bought +it +in +fact +and +hoped +the +price +wouldn +t +wreck +him +like +paying +for +an +afternoon +in +the +coin +of +life +to +come +they +left +off +playing +let +go +hands +and +hunched +forward +as +they +left +the +alley +and +entered +the +street +the +wind +was +quieter +there +but +the +dried +out +cold +it +left +behind +kept +pedestrians +fast +moving +stiff +inside +their +coats +no +men +leaned +against +door +frames +or +storefront +windows +the +wheels +of +wagons +delivering +feed +or +wood +screeched +as +though +they +hurt +hitched +horses +in +front +of +the +saloons +shivered +and +closed +their +eyes +four +women +walking +two +abreast +approached +their +shoes +loud +on +the +wooden +walkway +paul +d +touched +sethe +s +elbow +to +guide +her +as +they +stepped +from +the +slats +to +the +dirt +to +let +the +women +pass +half +an +hour +later +when +they +reached +the +city +s +edge +sethe +and +paul +d +resumed +catching +and +snatching +each +other +s +fingers +stealing +quick +pats +on +the +behind +joyfully +embarrassed +to +be +that +grownup +and +that +young +at +the +same +time +resolve +he +thought +that +was +all +it +took +and +no +motherless +gal +was +going +to +break +it +up +no +lazy +stray +pup +of +a +woman +could +turn +him +around +make +him +doubt +himself +wonder +plead +or +confess +convinced +of +it +that +he +could +do +it +he +threw +his +arm +around +sethe +s +shoulders +and +squeezed +she +let +her +head +touch +his +chest +and +since +the +moment +was +valuable +to +both +of +them +they +stopped +and +stood +that +way +not +breathing +not +even +caring +if +a +passerby +passed +them +by +the +winter +light +was +low +sethe +closed +her +eyes +paul +d +looked +at +the +black +trees +lining +the +roadside +their +defending +arms +raised +against +attack +softly +suddenly +it +began +to +snow +like +a +present +come +down +from +the +sky +sethe +opened +her +eyes +to +it +and +said +mercy +and +it +seemed +to +paul +d +that +it +was +a +little +mercy +something +given +to +them +on +purpose +to +mark +what +they +were +feeling +so +they +would +remember +it +later +on +when +they +needed +to +down +came +the +dry +flakes +fat +enough +and +heavy +enough +to +crash +like +nickels +on +stone +it +always +surprised +him +how +quiet +it +was +not +like +rain +but +like +a +secret +run +he +said +you +run +said +sethe +i +been +on +my +feet +all +day +where +i +been +sitting +down +and +he +pulled +her +along +stop +stop +she +said +i +don +t +have +the +legs +for +this +then +give +em +to +me +he +said +and +before +she +knew +it +he +had +backed +into +her +hoisted +her +on +his +back +and +was +running +down +the +road +past +brown +fields +turning +white +breathless +at +last +he +stopped +and +she +slid +back +down +on +her +own +two +feet +weak +from +laughter +you +need +some +babies +somebody +to +play +with +in +the +snow +sethe +secured +her +headcloth +paul +d +smiled +and +warmed +his +hands +with +his +breath +i +sure +would +like +to +give +it +a +try +need +a +willing +partner +though +i +ll +say +she +answered +very +very +willing +it +was +nearly +four +o +clock +now +and +was +half +a +mile +ahead +floating +toward +them +barely +visible +in +the +drifting +snow +was +a +figure +and +although +it +was +the +same +figure +that +had +been +meeting +sethe +for +four +months +so +complete +was +the +attention +she +and +paul +d +were +paying +to +themselves +they +both +felt +a +jolt +when +they +saw +her +close +in +beloved +did +not +look +at +paul +d +her +scrutiny +was +for +sethe +she +had +no +coat +no +wrap +nothing +on +her +head +but +she +held +in +her +hand +a +long +shawl +stretching +out +her +arms +she +tried +to +circle +it +around +sethe +crazy +girl +said +sethe +you +the +one +out +here +with +nothing +on +and +stepping +away +and +in +front +of +paul +d +sethe +took +the +shawl +and +wrapped +it +around +beloved +s +head +and +shoulders +saying +you +got +to +learn +more +sense +than +that +she +enclosed +her +in +her +left +arm +snowflakes +stuck +now +paul +d +felt +icy +cold +in +the +place +sethe +had +been +before +beloved +came +trailing +a +yard +or +so +behind +the +women +he +fought +the +anger +that +shot +through +his +stomach +all +the +way +home +when +he +saw +denver +silhouetted +in +the +lamplight +at +the +window +he +could +not +help +thinking +and +whose +ally +you +it +was +sethe +who +did +it +unsuspecting +surely +she +solved +everything +with +one +blow +now +i +know +you +not +sleeping +out +there +tonight +are +you +paul +d +she +smiled +at +him +and +like +a +friend +in +need +the +chimney +coughed +against +the +rush +of +cold +shooting +into +it +from +the +sky +window +sashes +shuddered +in +a +blast +of +winter +air +paul +d +looked +up +from +the +stew +meat +you +come +upstairs +where +you +belong +she +said +and +stay +there +the +threads +of +malice +creeping +toward +him +from +beloved +s +side +of +the +table +were +held +harmless +in +the +warmth +of +sethe +s +smile +once +before +and +only +once +paul +d +had +been +grateful +to +a +woman +crawling +out +of +the +woods +cross +eyed +with +hunger +and +loneliness +he +knocked +at +the +first +back +door +he +came +to +in +the +colored +section +of +wilmington +he +told +the +woman +who +opened +it +that +he +d +appreciate +doing +her +woodpile +if +she +could +spare +him +something +to +eat +she +looked +him +up +and +down +a +little +later +on +she +said +and +opened +the +door +wider +she +fed +him +pork +sausage +the +worst +thing +in +the +world +for +a +starving +man +but +neither +he +nor +his +stomach +objected +later +when +he +saw +pale +cotton +sheets +and +two +pillows +in +her +bedroom +he +had +to +wipe +his +eyes +quickly +quickly +so +she +would +not +see +the +thankful +tears +of +a +man +s +first +time +soil +grass +mud +shucking +leaves +hay +cobs +sea +shells +all +that +he +d +slept +on +white +cotton +sheets +had +never +crossed +his +mind +he +fell +in +with +a +groan +and +the +woman +helped +him +pretend +he +was +making +love +to +her +and +not +her +bed +linen +he +vowed +that +night +full +of +pork +deep +in +luxury +that +he +would +never +leave +her +she +would +have +to +kill +him +to +get +him +out +of +that +bed +eighteen +months +later +when +he +had +been +purchased +by +northpoint +bank +and +railroad +company +he +was +still +thankful +for +that +introduction +to +sheets +now +he +was +grateful +a +second +time +he +felt +as +though +he +had +been +plucked +from +the +face +of +a +cliff +and +put +down +on +sure +ground +in +sethe +s +bed +he +knew +he +could +put +up +with +two +crazy +girls +as +long +as +sethe +made +her +wishes +known +stretched +out +to +his +full +length +watching +snowflakes +stream +past +the +window +over +his +feet +it +was +easy +to +dismiss +the +doubts +that +took +him +to +the +alley +behind +the +restaurant +his +expectations +for +himself +were +high +too +high +what +he +might +call +cowardice +other +people +called +common +sense +tucked +into +the +well +of +his +arm +sethe +recalled +paul +d +s +face +in +the +street +when +he +asked +her +to +have +a +baby +for +him +although +she +laughed +and +took +his +hand +it +had +frightened +her +she +thought +quickly +of +how +good +the +sex +would +be +if +that +is +what +he +wanted +but +mostly +she +was +frightened +by +the +thought +of +having +a +baby +once +more +needing +to +be +good +enough +alert +enough +strong +enough +that +caring +again +having +to +stay +alive +just +that +much +longer +o +lord +she +thought +deliver +me +unless +carefree +motherlove +was +a +killer +what +did +he +want +her +pregnant +for +to +hold +on +to +her +have +a +sign +that +he +passed +this +way +he +probably +had +children +everywhere +anyway +eighteen +years +of +roaming +he +would +have +to +have +dropped +a +few +no +he +resented +the +children +she +had +that +s +what +child +she +corrected +herself +child +plus +beloved +whom +she +thought +of +as +her +own +and +that +is +what +he +resented +sharing +her +with +the +girls +hearing +the +three +of +them +laughing +at +something +he +wasn +t +in +on +the +code +they +used +among +themselves +that +he +could +not +break +maybe +even +the +time +spent +on +their +needs +and +not +his +they +were +a +family +somehow +and +he +was +not +the +head +of +it +can +you +stitch +this +up +for +me +baby +um +hm +soon +s +i +finish +this +petticoat +she +just +got +the +one +she +came +here +in +and +everybody +needs +a +change +any +pie +left +i +think +denver +got +the +last +of +it +and +not +complaining +not +even +minding +that +he +slept +all +over +and +around +the +house +now +which +she +put +a +stop +to +this +night +out +of +courtesy +sethe +sighed +and +placed +her +hand +on +his +chest +she +knew +she +was +building +a +case +against +him +in +order +to +build +a +case +against +getting +pregnant +and +it +shamed +her +a +little +but +she +had +all +the +children +she +needed +if +her +boys +came +back +one +day +and +denver +and +beloved +stayed +on +well +it +would +be +the +way +it +was +supposed +to +be +no +right +after +she +saw +the +shadows +holding +hands +at +the +side +of +the +road +hadn +t +the +picture +altered +and +the +minute +she +saw +the +dress +and +shoes +sitting +in +the +front +yard +she +broke +water +didn +t +even +have +to +see +the +face +burning +in +the +sunlight +she +had +been +dreaming +it +for +years +paul +d +s +chest +rose +and +fell +rose +and +fell +under +her +hand +chapter +denver +finished +washing +the +dishes +and +sat +down +at +the +table +beloved +who +had +not +moved +since +sethe +and +paul +d +left +the +room +sat +sucking +her +forefinger +denver +watched +her +face +awhile +and +then +said +she +likes +him +here +beloved +went +on +probing +her +mouth +with +her +finger +make +him +go +away +she +said +she +might +be +mad +at +you +if +he +leaves +beloved +inserting +a +thumb +in +her +mouth +along +with +the +forefinger +pulled +out +a +back +tooth +there +was +hardly +any +blood +but +denver +said +ooooh +didn +t +that +hurt +you +beloved +looked +at +the +tooth +and +thought +this +is +it +next +would +be +her +arm +her +hand +a +toe +pieces +of +her +would +drop +maybe +one +at +a +time +maybe +all +at +once +or +on +one +of +those +mornings +before +denver +woke +and +after +sethe +left +she +would +fly +apart +it +is +difficult +keeping +her +head +on +her +neck +her +legs +attached +to +her +hips +when +she +is +by +herself +among +the +things +she +could +not +remember +was +when +she +first +knew +that +she +could +wake +up +any +day +and +find +herself +in +pieces +she +had +two +dreams +exploding +and +being +swallowed +when +her +tooth +came +out +an +odd +fragment +last +in +the +row +she +thought +it +was +starting +must +be +a +wisdom +said +denver +don +t +it +hurt +yes +then +why +don +t +you +cry +what +if +it +hurts +why +don +t +you +cry +and +she +did +sitting +there +holding +a +small +white +tooth +in +the +palm +of +her +smooth +smooth +hand +cried +the +way +she +wanted +to +when +turtles +came +out +of +the +water +one +behind +the +other +right +after +the +blood +red +bird +disappeared +back +into +the +leaves +the +way +she +wanted +to +when +sethe +went +to +him +standing +in +the +tub +under +the +stairs +with +the +tip +of +her +tongue +she +touched +the +salt +water +that +slid +to +the +corner +of +her +mouth +and +hoped +denver +s +arm +around +her +shoulders +would +keep +them +from +falling +apart +the +couple +upstairs +united +didn +t +hear +a +sound +but +below +them +outside +all +around +the +snow +went +on +and +on +and +on +piling +itself +burying +itself +higher +deeper +chapter +at +the +back +of +baby +suggs +mind +may +have +been +the +thought +that +if +halle +made +it +god +do +what +he +would +it +would +be +a +cause +for +celebration +if +only +this +final +son +could +do +for +himself +what +he +had +done +for +her +and +for +the +three +children +john +and +ella +delivered +to +her +door +one +summer +night +when +the +children +arrived +and +no +sethe +she +was +afraid +and +grateful +grateful +that +the +part +of +the +family +that +survived +was +her +own +grandchildren +the +first +and +only +she +would +know +two +boys +and +a +little +girl +who +was +crawling +already +but +she +held +her +heart +still +afraid +to +form +questions +what +about +sethe +and +halle +why +the +delay +why +didn +t +sethe +get +on +board +too +nobody +could +make +it +alone +not +only +because +trappers +picked +them +off +like +buzzards +or +netted +them +like +rabbits +but +also +because +you +couldn +t +run +if +you +didn +t +know +how +to +go +you +could +be +lost +forever +if +there +wasn +t +nobody +to +show +you +the +way +so +when +sethe +arrived +all +mashed +up +and +split +open +but +with +another +grandchild +in +her +arms +the +idea +of +a +whoop +moved +closer +to +the +front +of +her +brain +but +since +there +was +still +no +sign +of +halle +and +sethe +herself +didn +t +know +what +had +happened +to +him +she +let +the +whoop +lie +not +wishing +to +hurt +his +chances +by +thanking +god +too +soon +it +was +stamp +paid +who +started +it +twenty +days +after +sethe +got +to +he +came +by +and +looked +at +the +baby +he +had +tied +up +in +his +nephew +s +jacket +looked +at +the +mother +he +had +handed +a +piece +of +fried +eel +to +and +for +some +private +reason +of +his +own +went +off +with +two +buckets +to +a +place +near +the +river +s +edge +that +only +he +knew +about +where +blackberries +grew +tasting +so +good +and +happy +that +to +eat +them +was +like +being +in +church +just +one +of +the +berries +and +you +felt +anointed +he +walked +six +miles +to +the +riverbank +did +a +slide +run +slide +down +into +a +ravine +made +almost +inaccessible +by +brush +he +reached +through +brambles +lined +with +blood +drawing +thorns +thick +as +knives +that +cut +through +his +shirt +sleeves +and +trousers +all +the +while +suffering +mosquitoes +bees +hornets +wasps +and +the +meanest +lady +spiders +in +the +state +scratched +raked +and +bitten +he +maneuvered +through +and +took +hold +of +each +berry +with +fingertips +so +gentle +not +a +single +one +was +bruised +late +in +the +afternoon +he +got +back +to +and +put +two +full +buckets +down +on +the +porch +when +baby +suggs +saw +his +shredded +clothes +bleeding +hands +welted +face +and +neck +she +sat +down +laughing +out +loud +buglar +howard +the +woman +in +the +bonnet +and +sethe +came +to +look +and +then +laughed +along +with +baby +suggs +at +the +sight +of +the +sly +steely +old +black +man +agent +fisherman +boatman +tracker +savior +spy +standing +in +broad +daylight +whipped +finally +by +two +pails +of +blackberries +paying +them +no +mind +he +took +a +berry +and +put +it +in +the +three +week +old +denver +s +mouth +the +women +shrieked +she +s +too +little +for +that +stamp +bowels +be +soup +sickify +her +stomach +but +the +baby +s +thrilled +eyes +and +smacking +lips +made +them +follow +suit +sampling +one +at +a +time +the +berries +that +tasted +like +church +finally +baby +suggs +slapped +the +boys +hands +away +from +the +bucket +and +sent +stamp +around +to +the +pump +to +rinse +himself +she +had +decided +to +do +something +with +the +fruit +worthy +of +the +man +s +labor +and +his +love +that +s +how +it +began +she +made +the +pastry +dough +and +thought +she +ought +to +tell +ella +and +john +to +stop +on +by +because +three +pies +maybe +four +were +too +much +to +keep +for +one +s +own +sethe +thought +they +might +as +well +back +it +up +with +a +couple +of +chickens +stamp +allowed +that +perch +and +catfish +were +jumping +into +the +boat +didn +t +even +have +to +drop +a +line +from +denver +s +two +thrilled +eyes +it +grew +to +a +feast +for +ninety +people +shook +with +their +voices +far +into +the +night +ninety +people +who +ate +so +well +and +laughed +so +much +it +made +them +angry +they +woke +up +the +next +morning +and +remembered +the +meal +fried +perch +that +stamp +paid +handled +with +a +hickory +twig +holding +his +left +palm +out +against +the +spit +and +pop +of +the +boiling +grease +the +corn +pudding +made +with +cream +tired +overfed +children +asleep +in +the +grass +tiny +bones +of +roasted +rabbit +still +in +their +hands +and +got +angry +baby +suggs +three +maybe +four +pies +grew +to +ten +maybe +twelve +sethe +s +two +hens +became +five +turkeys +the +one +block +of +ice +brought +all +the +way +from +cincinnati +over +which +they +poured +mashed +watermelon +mixed +with +sugar +and +mint +to +make +a +punch +became +a +wagonload +of +ice +cakes +for +a +washtub +full +of +strawberry +shrug +rocking +with +laughter +goodwill +and +food +for +ninety +made +them +angry +too +much +they +thought +where +does +she +get +it +all +baby +suggs +holy +why +is +she +and +hers +always +the +center +of +things +how +come +she +always +knows +exactly +what +to +do +and +when +giving +advice +passing +messages +healing +the +sick +hiding +fugitives +loving +cooking +cooking +loving +preaching +singing +dancing +and +loving +everybody +like +it +was +her +job +and +hers +alone +now +to +take +two +buckets +of +blackberries +and +make +ten +maybe +twelve +pies +to +have +turkey +enough +for +the +whole +town +pretty +near +new +peas +in +september +fresh +cream +but +no +cow +ice +and +sugar +batter +bread +bread +pudding +raised +bread +shortbread +it +made +them +mad +loaves +and +fishes +were +his +powers +they +did +not +belong +to +an +ex +slave +who +had +probably +never +carried +one +hundred +pounds +to +the +scale +or +picked +okra +with +a +baby +on +her +back +who +had +never +been +lashed +by +a +ten +year +old +whiteboy +as +god +knows +they +had +who +had +not +even +escaped +slavery +had +in +fact +been +bought +out +of +it +by +a +doting +son +and +driven +to +the +ohio +river +in +a +wagon +free +papers +folded +between +her +breasts +driven +by +the +very +man +who +had +been +her +master +who +also +paid +her +resettlement +fee +name +of +garner +and +rented +a +house +with +two +floors +and +a +well +from +the +bodwins +the +white +brother +and +sister +who +gave +stamp +paid +ella +and +john +clothes +goods +and +gear +for +runaways +because +they +hated +slavery +worse +than +they +hated +slaves +it +made +them +furious +they +swallowed +baking +soda +the +morning +after +to +calm +the +stomach +violence +caused +by +the +bounty +the +reckless +generosity +on +display +at +whispered +to +each +other +in +the +yards +about +fat +rats +doom +and +uncalled +for +pride +the +scent +of +their +disapproval +lay +heavy +in +the +air +baby +suggs +woke +to +it +and +wondered +what +it +was +as +she +boiled +hominy +for +her +grandchildren +later +as +she +stood +in +the +garden +chopping +at +the +tight +soil +over +the +roots +of +the +pepper +plants +she +smelled +it +again +she +lifted +her +head +and +looked +around +behind +her +some +yards +to +the +left +sethe +squatted +in +the +pole +beans +her +shoulders +were +distorted +by +the +greased +flannel +under +her +dress +to +encourage +the +healing +of +her +back +near +her +in +a +bushel +basket +was +the +three +week +old +baby +baby +suggs +holy +looked +up +the +sky +was +blue +and +clear +not +one +touch +of +death +in +the +definite +green +of +the +leaves +she +could +hear +birds +and +faintly +the +stream +way +down +in +the +meadow +the +puppy +here +boy +was +burying +the +last +bones +from +yesterday +s +party +from +somewhere +at +the +side +of +the +house +came +the +voices +of +buglar +howard +and +the +crawling +girl +nothing +seemed +amiss +yet +the +smell +of +disapproval +was +sharp +back +beyond +the +vegetable +garden +closer +to +the +stream +but +in +full +sun +she +had +planted +corn +much +as +they +d +picked +for +the +party +there +were +still +ears +ripening +which +she +could +see +from +where +she +stood +baby +suggs +leaned +back +into +the +peppers +and +the +squash +vines +with +her +hoe +carefully +with +the +blade +at +just +the +right +angle +she +cut +through +a +stalk +of +insistent +rue +its +flowers +she +stuck +through +a +split +in +her +hat +the +rest +she +tossed +aside +the +quiet +clok +clok +clok +of +wood +splitting +reminded +her +that +stamp +was +doing +the +chore +he +promised +to +the +night +before +she +sighed +at +her +work +and +a +moment +later +straightened +up +to +sniff +the +disapproval +once +again +resting +on +the +handle +of +the +hoe +she +concentrated +she +was +accustomed +to +the +knowledge +that +nobody +prayed +for +her +but +this +free +floating +repulsion +was +new +it +wasn +t +whitefolks +that +much +she +could +tell +so +it +must +be +colored +ones +and +then +she +knew +her +friends +and +neighbors +were +angry +at +her +because +she +had +overstepped +given +too +much +offended +them +by +excess +baby +closed +her +eyes +perhaps +they +were +right +suddenly +behind +the +disapproving +odor +way +way +back +behind +it +she +smelled +another +thing +dark +and +coming +something +she +couldn +t +get +at +because +the +other +odor +hid +it +she +squeezed +her +eyes +tight +to +see +what +it +was +but +all +she +could +make +out +was +high +topped +shoes +she +didn +t +like +the +look +of +thwarted +yet +wondering +she +chopped +away +with +the +hoe +what +could +it +be +this +dark +and +coming +thing +what +was +left +to +hurt +her +now +news +of +halle +s +death +no +she +had +been +prepared +for +that +better +than +she +had +for +his +life +the +last +of +her +children +whom +she +barely +glanced +at +when +he +was +born +because +it +wasn +t +worth +the +trouble +to +try +to +learn +features +you +would +never +see +change +into +adulthood +anyway +seven +times +she +had +done +that +held +a +little +foot +examined +the +fat +fingertips +with +her +own +fingers +she +never +saw +become +the +male +or +female +hands +a +mother +would +recognize +anywhere +she +didn +t +know +to +this +day +what +their +permanent +teeth +looked +like +or +how +they +held +their +heads +when +they +walked +did +patty +lose +her +lisp +what +color +did +famous +skin +finally +take +was +that +a +cleft +in +johnny +s +chin +or +just +a +dimple +that +would +disappear +soon +s +his +jawbone +changed +four +girls +and +the +last +time +she +saw +them +there +was +no +hair +under +their +arms +does +ardelia +still +love +the +burned +bottom +of +bread +all +seven +were +gone +or +dead +what +would +be +the +point +of +looking +too +hard +at +that +youngest +one +but +for +some +reason +they +let +her +keep +him +he +was +with +her +everywhere +when +she +hurt +her +hip +in +carolina +she +was +a +real +bargain +costing +less +than +halle +who +was +ten +then +for +mr +garner +who +took +them +both +to +kentucky +to +a +farm +he +called +sweet +home +because +of +the +hip +she +jerked +like +a +three +legged +dog +when +she +walked +but +at +sweet +home +there +wasn +t +a +rice +field +or +tobacco +patch +in +sight +and +nobody +but +nobody +knocked +her +down +not +once +lillian +garner +called +her +jenny +for +some +reason +but +she +never +pushed +hit +or +called +her +mean +names +even +when +she +slipped +in +cow +dung +and +broke +every +egg +in +her +apron +nobody +said +you +blackbitchwhat +sthematterwith +you +and +nobody +knocked +her +down +sweet +home +was +tiny +compared +to +the +places +she +had +been +mr +garner +mrs +garner +herself +halle +and +four +boys +over +half +named +paul +made +up +the +entire +population +mrs +garner +hummed +when +she +worked +mr +garner +acted +like +the +world +was +a +toy +he +was +supposed +to +have +fun +with +neither +wanted +her +in +the +field +mr +garner +s +boys +including +halle +did +all +of +that +which +was +a +blessing +since +she +could +not +have +managed +it +anyway +what +she +did +was +stand +beside +the +humming +lillian +garner +while +the +two +of +them +cooked +preserved +washed +ironed +made +candles +clothes +soap +and +cider +fed +chickens +pigs +dogs +and +geese +milked +cows +churned +butter +rendered +fat +laid +fires +nothing +to +it +and +nobody +knocked +her +down +her +hip +hurt +every +single +day +but +she +never +spoke +of +it +only +halle +who +had +watched +her +movements +closely +for +the +last +four +years +knew +that +to +get +in +and +out +of +bed +she +had +to +lift +her +thigh +with +both +hands +which +was +why +he +spoke +to +mr +garner +about +buying +her +out +of +there +so +she +could +sit +down +for +a +change +sweet +boy +the +one +person +who +did +something +hard +for +her +gave +her +his +work +his +life +and +now +his +children +whose +voices +she +could +just +make +out +as +she +stood +in +the +garden +wondering +what +was +the +dark +and +coming +thing +behind +the +scent +of +disapproval +sweet +home +was +a +marked +improvement +no +question +and +no +matter +for +the +sadness +was +at +her +center +the +desolated +center +where +the +self +that +was +no +self +made +its +home +sad +as +it +was +that +she +did +not +know +where +her +children +were +buried +or +what +they +looked +like +if +alive +fact +was +she +knew +more +about +them +than +she +knew +about +herself +having +never +had +the +map +to +discover +what +she +was +like +could +she +sing +was +it +nice +to +hear +when +she +did +was +she +pretty +was +she +a +good +friend +could +she +have +been +a +loving +mother +a +faithful +wife +have +i +got +a +sister +and +does +she +favor +me +if +my +mother +knew +me +would +she +like +me +in +lillian +garner +s +house +exempted +from +the +field +work +that +broke +her +hip +and +the +exhaustion +that +drugged +her +mind +in +lillian +garner +s +house +where +nobody +knocked +her +down +or +up +she +listened +to +the +whitewoman +humming +at +her +work +watched +her +face +light +up +when +mr +garner +came +in +and +thought +it +s +better +here +but +i +m +not +the +garners +it +seemed +to +her +ran +a +special +kind +of +slavery +treating +them +like +paid +labor +listening +to +what +they +said +teaching +what +they +wanted +known +and +he +didn +t +stud +his +boys +never +brought +them +to +her +cabin +with +directions +to +lay +down +with +her +like +they +did +in +carolina +or +rented +their +sex +out +on +other +farms +it +surprised +and +pleased +her +but +worried +her +too +would +he +pick +women +for +them +or +what +did +he +think +was +going +to +happen +when +those +boys +ran +smack +into +their +nature +some +danger +he +was +courting +and +he +surely +knew +it +in +fact +his +order +for +them +not +to +leave +sweet +home +except +in +his +company +was +not +so +much +because +of +the +law +but +the +danger +of +men +bred +slaves +on +the +loose +baby +suggs +talked +as +little +as +she +could +get +away +with +because +what +was +there +to +say +that +the +roots +of +her +tongue +could +manage +so +the +whitewoman +finding +her +new +slave +excellent +if +silent +help +hummed +to +herself +while +she +worked +when +mr +garner +agreed +to +the +arrangements +with +halle +and +when +halle +looked +like +it +meant +more +to +him +that +she +go +free +than +anything +in +the +world +she +let +herself +be +taken +cross +the +river +of +the +two +hard +thingsstanding +on +her +feet +till +she +dropped +or +leaving +her +last +and +probably +only +living +child +she +chose +the +hard +thing +that +made +him +happy +and +never +put +to +him +the +question +she +put +to +herself +what +for +what +does +a +sixty +odd +year +old +slavewoman +who +walks +like +a +three +legged +dog +need +freedom +for +and +when +she +stepped +foot +on +free +ground +she +could +not +believe +that +halle +knew +what +she +didn +t +that +halle +who +had +never +drawn +one +free +breath +knew +that +there +was +nothing +like +it +in +this +world +it +scared +her +something +s +the +matter +what +s +the +matter +what +s +the +matter +she +asked +herself +she +didn +t +know +what +she +looked +like +and +was +not +curious +but +suddenly +she +saw +her +hands +and +thought +with +a +clarity +as +simple +as +it +was +dazzling +these +hands +belong +to +me +these +my +hands +next +she +felt +a +knocking +in +her +chest +and +discovered +something +else +new +her +own +heartbeat +had +it +been +there +all +along +this +pounding +thing +she +felt +like +a +fool +and +began +to +laugh +out +loud +mr +garner +looked +over +his +shoulder +at +her +with +wide +brown +eyes +and +smiled +himself +what +s +funny +jenny +she +couldn +t +stop +laughing +my +heart +s +beating +she +said +and +it +was +true +mr +garner +laughed +nothing +to +be +scared +of +jenny +just +keep +your +same +ways +you +ll +be +all +right +she +covered +her +mouth +to +keep +from +laughing +too +loud +these +people +i +m +taking +you +to +will +give +you +what +help +you +need +name +of +bodwin +a +brother +and +a +sister +scots +i +been +knowing +them +for +twenty +years +or +more +baby +suggs +thought +it +was +a +good +time +to +ask +him +something +she +had +long +wanted +to +know +mr +garner +she +said +why +you +all +call +me +jenny +cause +that +what +s +on +your +sales +ticket +gal +ain +t +that +your +name +what +you +call +yourself +nothings +she +said +i +don +t +call +myself +nothing +mr +garner +went +red +with +laughter +when +i +took +you +out +of +carolina +whitlow +called +you +jenny +and +jenny +whitlow +is +what +his +bill +said +didn +t +he +call +you +jenny +no +sir +if +he +did +i +didn +t +hear +it +what +did +you +answer +to +anything +but +suggs +is +what +my +husband +name +you +got +married +jenny +i +didn +t +know +it +manner +of +speaking +you +know +where +he +is +this +husband +no +sir +is +that +halle +s +daddy +no +sir +why +you +call +him +suggs +then +his +bill +of +sale +says +whitlow +too +just +like +yours +suggs +is +my +name +sir +from +my +husband +he +didn +t +call +me +jenny +what +he +call +you +baby +well +said +mr +garner +going +pink +again +if +i +was +you +i +d +stick +to +jenny +whitlow +mrs +baby +suggs +ain +t +no +name +for +a +freed +negro +maybe +not +she +thought +but +baby +suggs +was +all +she +had +left +of +the +husband +she +claimed +a +serious +melancholy +man +who +taught +her +how +to +make +shoes +the +two +of +them +made +a +pact +whichever +one +got +a +chance +to +run +would +take +it +together +if +possible +alone +if +not +and +no +looking +back +he +got +his +chance +and +since +she +never +heard +otherwise +she +believed +he +made +it +now +how +could +he +find +or +hear +tell +of +her +if +she +was +calling +herself +some +bill +of +sale +name +she +couldn +t +get +over +the +city +more +people +than +carolina +and +enough +whitefolks +to +stop +the +breath +two +story +buildings +everywhere +and +walkways +made +of +perfectly +cut +slats +of +wood +roads +wide +as +garner +s +whole +house +this +is +a +city +of +water +said +mr +garner +everything +travels +by +water +and +what +the +rivers +can +t +carry +the +canals +take +a +queen +of +a +city +jenny +everything +you +ever +dreamed +of +they +make +it +right +here +iron +stoves +buttons +ships +shirts +hairbrushes +paint +steam +engines +books +a +sewer +system +make +your +eyes +bug +out +oh +this +is +a +city +all +right +if +you +have +to +live +in +a +city +this +is +it +the +bodwins +lived +right +in +the +center +of +a +street +full +of +houses +and +trees +mr +garner +leaped +out +and +tied +his +horse +to +a +solid +iron +post +here +we +are +baby +picked +up +her +bundle +and +with +great +difficulty +caused +by +her +hip +and +the +hours +of +sitting +in +a +wagon +climbed +down +mr +garner +was +up +the +walk +and +on +the +porch +before +she +touched +ground +but +she +got +a +peep +at +a +negro +girl +s +face +at +the +open +door +before +she +followed +a +path +to +the +back +of +the +house +she +waited +what +seemed +a +long +time +before +this +same +girl +opened +the +kitchen +door +and +offered +her +a +seat +by +the +window +can +i +get +you +anything +to +eat +ma +am +the +girl +asked +no +darling +i +d +look +favorable +on +some +water +though +the +girl +went +to +the +sink +and +pumped +a +cupful +of +water +she +placed +it +in +baby +suggs +hand +i +m +janey +ma +am +baby +marveling +at +the +sink +drank +every +drop +of +water +although +it +tasted +like +a +serious +medicine +suggs +she +said +blotting +her +lips +with +the +back +of +her +hand +baby +suggs +glad +to +meet +you +mrs +suggs +you +going +to +be +staying +here +i +don +t +know +where +i +ll +be +mr +garner +that +s +him +what +brought +me +here +he +say +he +arrange +something +for +me +and +then +i +m +free +you +know +janey +smiled +yes +ma +am +your +people +live +around +here +yes +ma +am +all +us +live +out +on +bluestone +we +scattered +said +baby +suggs +but +maybe +not +for +long +great +god +she +thought +where +do +i +start +get +somebody +to +write +old +whitlow +see +who +took +patty +and +rosa +lee +somebody +name +dunn +got +ardelia +and +went +west +she +heard +no +point +in +trying +for +tyree +or +john +they +cut +thirty +years +ago +and +if +she +searched +too +hard +and +they +were +hiding +finding +them +would +do +them +more +harm +than +good +nancy +and +famous +died +in +a +ship +off +the +virginia +coast +before +it +set +sail +for +savannah +that +much +she +knew +the +overseer +at +whitlow +s +place +brought +her +the +news +more +from +a +wish +to +have +his +way +with +her +than +from +the +kindness +of +his +heart +the +captain +waited +three +weeks +in +port +to +get +a +full +cargo +before +setting +off +of +the +slaves +in +the +hold +who +didn +t +make +it +he +said +two +were +whitlow +pickaninnies +name +of +but +she +knew +their +names +she +knew +and +covered +her +ears +with +her +fists +to +keep +from +hearing +them +come +from +his +mouth +janey +heated +some +milk +and +poured +it +in +a +bowl +next +to +a +plate +of +cornbread +after +some +coaxing +baby +suggs +came +to +the +table +and +sat +down +she +crumbled +the +bread +into +the +hot +milk +and +discovered +she +was +hungrier +than +she +had +ever +been +in +her +life +and +that +was +saying +something +they +going +to +miss +this +no +said +janey +eat +all +you +want +it +s +ours +anybody +else +live +here +just +me +mr +woodruff +he +does +the +outside +chores +he +comes +by +two +three +days +a +week +just +you +two +yes +ma +am +i +do +the +cooking +and +washing +maybe +your +people +know +of +somebody +looking +for +help +i +be +sure +to +ask +but +i +know +they +take +women +at +the +slaughterhouse +doing +what +i +don +t +know +something +men +don +t +want +to +do +i +reckon +my +cousin +say +you +get +all +the +meat +you +want +plus +twenty +five +cents +the +hour +she +make +summer +sausage +baby +suggs +lifted +her +hand +to +the +top +of +her +head +money +money +they +would +pay +her +money +every +single +day +money +where +is +this +here +slaughterhouse +she +asked +before +janey +could +answer +the +bodwins +came +in +to +the +kitchen +with +a +grinning +mr +garner +behind +undeniably +brother +and +sister +both +dressed +in +gray +with +faces +too +young +for +their +snow +white +hair +did +you +give +her +anything +to +eat +janey +asked +the +brother +yes +sir +keep +your +seat +jenny +said +the +sister +and +that +good +news +got +better +when +they +asked +what +work +she +could +do +instead +of +reeling +off +the +hundreds +of +tasks +she +had +performed +she +asked +about +the +slaughterhouse +she +was +too +old +for +that +they +said +she +s +the +best +cobbler +you +ever +see +said +mr +garner +cobbler +sister +bodwin +raised +her +black +thick +eyebrows +who +taught +you +that +was +a +slave +taught +me +said +baby +suggs +new +boots +or +just +repair +new +old +anything +well +said +brother +bodwin +that +ll +be +something +but +you +ll +need +more +what +about +taking +in +wash +asked +sister +bodwin +yes +ma +am +two +cents +a +pound +yes +ma +am +but +where +s +the +in +what +you +said +take +in +wash +where +is +the +in +where +i +m +going +to +be +oh +just +listen +to +this +jenny +said +mr +garner +these +two +angels +got +a +house +for +you +place +they +own +out +a +ways +it +had +belonged +to +their +grandparents +before +they +moved +in +town +recently +it +had +been +rented +out +to +a +whole +parcel +of +negroes +who +had +left +the +state +it +was +too +big +a +house +for +jenny +alone +they +said +two +rooms +upstairs +two +down +but +it +was +the +best +and +the +only +thing +they +could +do +in +return +for +laundry +some +seamstress +work +a +little +canning +and +so +on +oh +shoes +too +they +would +permit +her +to +stay +there +provided +she +was +clean +the +past +parcel +of +colored +wasn +t +baby +suggs +agreed +to +the +situation +sorry +to +see +the +money +go +but +excited +about +a +house +with +stepsnever +mind +she +couldn +t +climb +them +mr +garner +told +the +bodwins +that +she +was +a +right +fine +cook +as +well +as +a +fine +cobbler +and +showed +his +belly +and +the +sample +on +his +feet +everybody +laughed +anything +you +need +let +us +know +said +the +sister +we +don +t +hold +with +slavery +even +garner +s +kind +tell +em +jenny +you +live +any +better +on +any +place +before +mine +no +sir +she +said +no +place +how +long +was +you +at +sweet +home +ten +year +i +believe +ever +go +hungry +no +sir +cold +no +sir +anybody +lay +a +hand +on +you +no +sir +did +i +let +halle +buy +you +or +not +yes +sir +you +did +she +said +thinking +but +you +got +my +boy +and +i +m +all +broke +down +you +be +renting +him +out +to +pay +for +me +way +after +i +m +gone +to +glory +woodruff +they +said +would +carry +her +out +there +they +said +and +all +three +disappeared +through +the +kitchen +door +i +have +to +fix +the +supper +now +said +janey +i +ll +help +said +baby +suggs +you +too +short +to +reach +the +fire +it +was +dark +when +woodruff +clicked +the +horse +into +a +trot +he +was +a +young +man +with +a +heavy +beard +and +a +burned +place +on +his +jaw +the +beard +did +not +hide +you +born +up +here +baby +suggs +asked +him +no +ma +am +virginia +been +here +a +couple +years +i +see +you +going +to +a +nice +house +big +too +a +preacher +and +his +family +was +in +there +eighteen +children +have +mercy +where +they +go +took +off +to +illinois +bishop +allen +gave +him +a +congregation +up +there +big +what +churches +around +here +i +ain +t +set +foot +in +one +in +ten +years +how +come +wasn +t +none +i +dislike +the +place +i +was +before +this +last +one +but +i +did +get +to +church +every +sunday +some +kind +of +way +i +bet +the +lord +done +forgot +who +i +am +by +now +go +see +reverend +pike +ma +am +he +ll +reacquaint +you +i +won +t +need +him +for +that +i +can +make +my +own +acquaintance +what +i +need +him +for +is +to +reacquaint +me +with +my +children +he +can +read +and +write +i +reckon +sure +good +cause +i +got +a +lot +of +digging +up +to +do +but +the +news +they +dug +up +was +so +pitiful +she +quit +after +two +years +of +messages +written +by +the +preacher +s +hand +two +years +of +washing +sewing +canning +cobbling +gardening +and +sitting +in +churches +all +she +found +out +was +that +the +whitlow +place +was +gone +and +that +you +couldn +t +write +to +a +man +named +dunn +if +all +you +knew +was +that +he +went +west +the +good +news +however +was +that +halle +got +married +and +had +a +baby +coming +she +fixed +on +that +and +her +own +brand +of +preaching +having +made +up +her +mind +about +what +to +do +with +the +heart +that +started +beating +the +minute +she +crossed +the +ohio +river +and +it +worked +out +worked +out +just +fine +until +she +got +proud +and +let +herself +be +overwhelmed +by +the +sight +of +her +daughter +in +law +and +halle +s +children +one +of +whom +was +born +on +the +way +and +have +a +celebration +of +blackberries +that +put +christmas +to +shame +now +she +stood +in +the +garden +smelling +disapproval +feeling +a +dark +and +coming +thing +and +seeing +high +topped +shoes +that +she +didn +t +like +the +look +of +at +all +at +all +chapter +when +the +four +horsemen +came +schoolteacher +one +nephew +one +slave +catcher +and +a +sheriff +the +house +on +bluestone +road +was +so +quiet +they +thought +they +were +too +late +three +of +them +dismounted +one +stayed +in +the +saddle +his +rifle +ready +his +eyes +trained +away +from +the +house +to +the +left +and +to +the +right +because +likely +as +not +the +fugitive +would +make +a +dash +for +it +although +sometimes +you +could +never +tell +you +d +find +them +folded +up +tight +somewhere +beneath +floorboards +in +a +pantry +once +in +a +chimney +even +then +care +was +taken +because +the +quietest +ones +the +ones +you +pulled +from +a +press +a +hayloft +or +that +once +from +a +chimney +would +go +along +nicely +for +two +or +three +seconds +caught +red +handed +so +to +speak +they +would +seem +to +recognize +the +futility +of +outsmarting +a +whiteman +and +the +hopelessness +of +outrunning +a +rifle +smile +even +like +a +child +caught +dead +with +his +hand +in +the +jelly +jar +and +when +you +reached +for +the +rope +to +tie +him +well +even +then +you +couldn +t +tell +the +very +nigger +with +his +head +hanging +and +a +little +jelly +jar +smile +on +his +face +could +all +of +a +sudden +roar +like +a +bull +or +some +such +and +commence +to +do +disbelievable +things +grab +the +rifle +at +its +mouth +throw +himself +at +the +one +holding +it +anything +so +you +had +to +keep +back +a +pace +leave +the +tying +to +another +otherwise +you +ended +up +killing +what +you +were +paid +to +bring +back +alive +unlike +a +snake +or +a +bear +a +dead +nigger +could +not +be +skinned +for +profit +and +was +not +worth +his +own +dead +weight +in +coin +six +or +seven +negroes +were +walking +up +the +road +toward +the +house +two +boys +from +the +slave +catcher +s +left +and +some +women +from +his +right +he +motioned +them +still +with +his +rifle +and +they +stood +where +they +were +the +nephew +came +back +from +peeping +inside +the +house +and +after +touching +his +lips +for +silence +pointed +his +thumb +to +say +that +what +they +were +looking +for +was +round +back +the +slave +catcher +dismounted +then +and +joined +the +others +schoolteacher +and +the +nephew +moved +to +the +left +of +the +house +himself +and +the +sheriff +to +the +right +a +crazy +old +nigger +was +standing +in +the +woodpile +with +an +ax +you +could +tell +he +was +crazy +right +off +because +he +was +grunting +making +low +cat +noises +like +about +twelve +yards +beyond +that +nigger +was +another +one +a +woman +with +a +flower +in +her +hat +crazy +too +probably +because +she +too +was +standing +stock +still +but +fanning +her +hands +as +though +pushing +cobwebs +out +of +her +way +both +however +were +staring +at +the +same +place +a +shed +nephew +walked +over +to +the +old +nigger +boy +and +took +the +ax +from +him +then +all +four +started +toward +the +shed +inside +two +boys +bled +in +the +sawdust +and +dirt +at +the +feet +of +a +nigger +woman +holding +a +blood +soaked +child +to +her +chest +with +one +hand +and +an +infant +by +the +heels +in +the +other +she +did +not +look +at +them +she +simply +swung +the +baby +toward +the +wall +planks +missed +and +tried +to +connect +a +second +time +when +out +of +nowheremin +the +ticking +time +the +men +spent +staring +at +what +there +was +to +stare +the +old +nigger +boy +still +mewing +ran +through +the +door +behind +them +and +snatched +the +baby +from +the +arch +of +its +mother +s +swing +right +off +it +was +clear +to +schoolteacher +especially +that +there +was +nothing +there +to +claim +the +three +now +four +because +she +d +had +the +one +coming +when +she +cut +pickaninnies +they +had +hoped +were +alive +and +well +enough +to +take +back +to +kentucky +take +back +and +raise +properly +to +do +the +work +sweet +home +desperately +needed +were +not +two +were +lying +open +eyed +in +sawdust +a +third +pumped +blood +down +the +dress +of +the +main +one +the +woman +schoolteacher +bragged +about +the +one +he +said +made +fine +ink +damn +good +soup +pressed +his +collars +the +way +he +liked +besides +having +at +least +ten +breeding +years +left +but +now +she +d +gone +wild +due +to +the +mishandling +of +the +nephew +who +d +overbeat +her +and +made +her +cut +and +run +schoolteacher +had +chastised +that +nephew +telling +him +to +think +just +think +what +would +his +own +horse +do +if +you +beat +it +beyond +the +point +of +education +or +chipper +or +samson +suppose +you +beat +the +hounds +past +that +point +thataway +never +again +could +you +trust +them +in +the +woods +or +anywhere +else +you +d +be +feeding +them +maybe +holding +out +a +piece +of +rabbit +in +your +hand +and +the +animal +would +revert +bite +your +hand +clean +off +so +he +punished +that +nephew +by +not +letting +him +come +on +the +hunt +made +him +stay +there +feed +stock +feed +himself +feed +lillian +tend +crops +see +how +he +liked +it +see +what +happened +when +you +overbear +creatures +god +had +given +you +the +responsibility +of +the +trouble +it +was +and +the +loss +the +whole +lot +was +lost +now +five +he +could +claim +the +baby +struggling +in +the +arms +of +the +mewing +old +man +but +who +d +tend +her +because +the +woman +something +was +wrong +with +her +she +was +looking +at +him +now +and +if +his +other +nephew +could +see +that +look +he +would +learn +the +lesson +for +sure +you +just +can +t +mishandle +creatures +and +expect +success +the +nephew +the +one +who +had +nursed +her +while +his +brother +held +her +down +didn +t +know +he +was +shaking +his +uncle +had +warned +him +against +that +kind +of +confusion +but +the +warning +didn +t +seem +to +be +taking +what +she +go +and +do +that +for +on +account +of +a +beating +hell +he +d +been +beat +a +million +times +and +he +was +white +once +it +hurt +so +bad +and +made +him +so +mad +he +d +smashed +the +well +bucket +another +time +he +took +it +out +on +samson +a +few +tossed +rocks +was +all +but +no +beating +ever +made +him +i +mean +no +way +he +could +have +what +she +go +and +do +that +for +and +that +is +what +he +asked +the +sheriff +who +was +standing +there +amazed +like +the +rest +of +them +but +not +shaking +he +was +swallowing +hard +over +and +over +again +what +she +want +to +go +and +do +that +for +the +sheriff +turned +then +said +to +the +other +three +you +all +better +go +on +look +like +your +business +is +over +mine +s +started +now +schoolteacher +beat +his +hat +against +his +thigh +and +spit +before +leaving +the +woodshed +nephew +and +the +catcher +backed +out +with +him +they +didn +t +look +at +the +woman +in +the +pepper +plants +with +the +flower +in +her +hat +and +they +didn +t +look +at +the +seven +or +so +faces +that +had +edged +closer +in +spite +of +the +catcher +s +rifle +warning +enough +nigger +eyes +for +now +little +nigger +boy +eyes +open +in +sawdust +little +nigger +girl +eyes +staring +between +the +wet +fingers +that +held +her +face +so +her +head +wouldn +t +fall +off +little +nigger +baby +eyes +crinkling +up +to +cry +in +the +arms +of +the +old +nigger +whose +own +eyes +were +nothing +but +slivers +looking +down +at +his +feet +but +the +worst +ones +were +those +of +the +nigger +woman +who +looked +like +she +didn +t +have +any +since +the +whites +in +them +had +disappeared +and +since +they +were +as +black +as +her +skin +she +looked +blind +they +unhitched +from +schoolteacher +s +horse +the +borrowed +mule +that +was +to +carry +the +fugitive +woman +back +to +where +she +belonged +and +tied +it +to +the +fence +then +with +the +sun +straight +up +over +their +heads +they +trotted +off +leaving +the +sheriff +behind +among +the +damnedest +bunch +of +coons +they +d +ever +seen +all +testimony +to +the +results +of +a +little +so +called +freedom +imposed +on +people +who +needed +every +care +and +guidance +in +the +world +to +keep +them +from +the +cannibal +life +they +preferred +the +sheriff +wanted +to +back +out +too +to +stand +in +the +sunlight +outside +of +that +place +meant +for +housing +wood +coal +kerosene +fuel +for +cold +ohio +winters +which +he +thought +of +now +while +resisting +the +urge +to +run +into +the +august +sunlight +not +because +he +was +afraid +not +at +all +he +was +just +cold +and +he +didn +t +want +to +touch +anything +the +baby +in +the +old +man +s +arms +was +crying +and +the +woman +s +eyes +with +no +whites +were +gazing +straight +ahead +they +all +might +have +remained +that +way +frozen +till +thursday +except +one +of +the +boys +on +the +floor +sighed +as +if +he +were +sunk +in +the +pleasure +of +a +deep +sweet +sleep +he +sighed +the +sigh +that +flung +the +sheriff +into +action +i +ll +have +to +take +you +in +no +trouble +now +you +ve +done +enough +to +last +you +come +on +now +she +did +not +move +you +come +quiet +hear +and +i +won +t +have +to +tie +you +up +she +stayed +still +and +he +had +made +up +his +mind +to +go +near +her +and +some +kind +of +way +bind +her +wet +red +hands +when +a +shadow +behind +him +in +the +doorway +made +him +turn +the +nigger +with +the +flower +in +her +hat +entered +baby +suggs +noticed +who +breathed +and +who +did +not +and +went +straight +to +the +boys +lying +in +the +dirt +the +old +man +moved +to +the +woman +gazing +and +said +sethe +you +take +my +armload +and +gimme +yours +she +turned +to +him +and +glancing +at +the +baby +he +was +holding +made +a +low +sound +in +her +throat +as +though +she +d +made +a +mistake +left +the +salt +out +of +the +bread +or +something +i +m +going +out +here +and +send +for +a +wagon +the +sheriff +said +and +got +into +the +sunlight +at +last +but +neither +stamp +paid +nor +baby +suggs +could +make +her +put +her +crawling +already +girl +down +out +of +the +shed +back +in +the +house +she +held +on +baby +suggs +had +got +the +boys +inside +and +was +bathing +their +heads +rubbing +their +hands +lifting +their +lids +whispering +beg +your +pardon +i +beg +your +pardon +the +whole +time +she +bound +their +wounds +and +made +them +breathe +camphor +before +turning +her +attention +to +sethe +she +took +the +crying +baby +from +stamp +paid +and +carried +it +on +her +shoulder +for +a +full +two +minutes +then +stood +in +front +of +its +mother +it +s +time +to +nurse +your +youngest +she +said +sethe +reached +up +for +the +baby +without +letting +the +dead +one +go +baby +suggs +shook +her +head +one +at +a +time +she +said +and +traded +the +living +for +the +dead +which +she +carried +into +the +keeping +room +when +she +came +back +sethe +was +aiming +a +bloody +nipple +into +the +baby +s +mouth +baby +suggs +slammed +her +fist +on +the +table +and +shouted +clean +up +clean +yourself +up +they +fought +then +like +rivals +over +the +heart +of +the +loved +they +fought +each +struggling +for +the +nursing +child +baby +suggs +lost +when +she +slipped +in +a +red +puddle +and +fell +so +denver +took +her +mother +s +milk +right +along +with +the +blood +of +her +sister +and +that +s +the +way +they +were +when +the +sheriff +returned +having +commandeered +a +neighbor +s +cart +and +ordered +stamp +to +drive +it +outside +a +throng +now +of +black +faces +stopped +murmuring +holding +the +living +child +sethe +walked +past +them +in +their +silence +and +hers +she +climbed +into +the +cart +her +profile +knife +clean +against +a +cheery +blue +sky +a +profile +that +shocked +them +with +its +clarity +was +her +head +a +bit +too +high +her +back +a +little +too +straight +probably +otherwise +the +singing +would +have +begun +at +once +the +moment +she +appeared +in +the +doorway +of +the +house +on +bluestone +road +some +cape +of +sound +would +have +quickly +been +wrapped +around +her +like +arms +to +hold +and +steady +her +on +the +way +as +it +was +they +waited +till +the +cart +turned +about +headed +west +to +town +and +then +no +words +humming +no +words +at +all +baby +suggs +meant +to +run +skip +down +the +porch +steps +after +the +cart +screaming +no +no +don +t +let +her +take +that +last +one +too +she +meant +to +had +started +to +but +when +she +got +up +from +the +floor +and +reached +the +yard +the +cart +was +gone +and +a +wagon +was +rolling +up +a +red +haired +boy +and +a +yellow +haired +girl +jumped +down +and +ran +through +the +crowd +toward +her +the +boy +had +a +half +eaten +sweet +pepper +in +one +hand +and +a +pair +of +shoes +in +the +other +mama +says +wednesday +he +held +them +together +by +their +tongues +she +says +you +got +to +have +these +fixed +by +wednesday +baby +suggs +looked +at +him +and +then +at +the +woman +holding +a +twitching +lead +horse +to +the +road +she +says +wednesday +you +hear +baby +baby +she +took +the +shoes +from +him +high +topped +and +muddy +saying +i +beg +your +pardon +lord +i +beg +your +pardon +i +sure +do +out +of +sight +the +cart +creaked +on +down +bluestone +road +nobody +in +it +spoke +the +wagon +rock +had +put +the +baby +to +sleep +the +hot +sun +dried +sethe +s +dress +stiff +like +rigor +morris +chapter +that +ain +t +her +mouth +anybody +who +didn +t +know +her +or +maybe +somebody +who +just +got +a +glimpse +of +her +through +the +peephole +at +the +restaurant +might +think +it +was +hers +but +paul +d +knew +better +oh +well +a +little +something +around +the +forehead +a +quietness +that +kind +of +reminded +you +of +her +but +there +was +no +way +you +could +take +that +for +her +mouth +and +he +said +so +told +stamp +paid +who +was +watching +him +carefully +i +don +t +know +man +don +t +look +like +it +to +me +i +know +sethe +s +mouth +and +this +ain +t +it +he +smoothed +the +clipping +with +his +fingers +and +peered +at +it +not +at +all +disturbed +from +the +solemn +air +with +which +stamp +had +unfolded +the +paper +the +tenderness +in +the +old +man +s +fingers +as +he +stroked +its +creases +and +flattened +it +out +first +on +his +knees +then +on +the +split +top +of +the +piling +paul +d +knew +that +it +ought +to +mess +him +up +that +whatever +was +written +on +it +should +shake +him +pigs +were +crying +in +the +chute +all +day +paul +d +stamp +paid +and +twenty +more +had +pushed +and +prodded +them +from +canal +to +shore +to +chute +to +slaughterhouse +although +as +grain +farmers +moved +west +st +louis +and +chicago +now +ate +up +a +lot +of +the +business +cincinnati +was +still +pig +port +in +the +minds +of +ohioans +its +main +job +was +to +receive +slaughter +and +ship +up +the +river +the +hogs +that +northerners +did +not +want +to +live +without +for +a +month +or +so +in +the +winter +any +stray +man +had +work +if +he +could +breathe +the +stench +of +offal +and +stand +up +for +twelve +hours +skills +in +which +paul +d +was +admirably +trained +a +little +pig +shit +rinsed +from +every +place +he +could +touch +remained +on +his +boots +and +he +was +conscious +of +it +as +he +stood +there +with +a +light +smile +of +scorn +curling +his +lips +usually +he +left +his +boots +in +the +shed +and +put +his +walking +shoes +on +along +with +his +day +clothes +in +the +corner +before +he +went +home +a +route +that +took +him +smack +dab +through +the +middle +of +a +cemetery +as +old +as +sky +rife +with +the +agitation +of +dead +miami +no +longer +content +to +rest +in +the +mounds +that +covered +them +over +their +heads +walked +a +strange +people +through +their +earth +pillows +roads +were +cut +wells +and +houses +nudged +them +out +of +eternal +rest +outraged +more +by +their +folly +in +believing +land +was +holy +than +by +the +disturbances +of +their +peace +they +growled +on +the +banks +of +licking +river +sighed +in +the +trees +on +catherine +street +and +rode +the +wind +above +the +pig +yards +paul +d +heard +them +but +he +stayed +on +because +all +in +all +it +wasn +t +a +bad +job +especially +in +winter +when +cincinnati +reassumed +its +status +of +slaughter +and +riverboat +capital +the +craving +for +pork +was +growing +into +a +mania +in +every +city +in +the +country +pig +farmers +were +cashing +in +provided +they +could +raise +enough +and +get +them +sold +farther +and +farther +away +and +the +germans +who +flooded +southern +ohio +brought +and +developed +swine +cooking +to +its +highest +form +pig +boats +jammed +the +ohio +river +and +their +captains +hollering +at +one +another +over +the +grunts +of +the +stock +was +as +common +a +water +sound +as +that +of +the +ducks +flying +over +their +heads +sheep +cows +and +fowl +too +floated +up +and +down +that +river +and +all +a +negro +had +to +do +was +show +up +and +there +was +work +poking +killing +cutting +skinning +case +packing +and +saving +offal +a +hundred +yards +from +the +crying +pigs +the +two +men +stood +behind +a +shed +on +western +row +and +it +was +clear +why +stamp +had +been +eyeing +paul +d +this +last +week +of +work +why +he +paused +when +the +evening +shift +came +on +to +let +paul +d +s +movements +catch +up +to +his +own +he +had +made +up +his +mind +to +show +him +this +piece +of +paper +newspaper +with +a +picture +drawing +of +a +woman +who +favored +sethe +except +that +was +not +her +mouth +nothing +like +it +paul +d +slid +the +clipping +out +from +under +stamp +s +palm +the +print +meant +nothing +to +him +so +he +didn +t +even +glance +at +it +he +simply +looked +at +the +face +shaking +his +head +no +no +at +the +mouth +you +see +and +no +at +whatever +it +was +those +black +scratches +said +and +no +to +whatever +it +was +stamp +paid +wanted +him +to +know +because +there +was +no +way +in +hell +a +black +face +could +appear +in +a +newspaper +if +the +story +was +about +something +anybody +wanted +to +hear +a +whip +of +fear +broke +through +the +heart +chambers +as +soon +as +you +saw +a +negro +s +face +in +a +paper +since +the +face +was +not +there +because +the +person +had +a +healthy +baby +or +outran +a +street +mob +nor +was +it +there +because +the +person +had +been +killed +or +maimed +or +caught +or +burned +or +jailed +or +whipped +or +evicted +or +stomped +or +raped +or +cheated +since +that +could +hardly +qualify +as +news +in +a +newspaper +it +would +have +to +be +something +out +of +the +ordinary +something +whitepeople +would +find +interesting +truly +different +worth +a +few +minutes +of +teeth +sucking +if +not +gasps +and +it +must +have +been +hard +to +find +news +about +negroes +worth +the +breath +catch +of +a +white +citizen +of +cincinnati +so +who +was +this +woman +with +a +mouth +that +was +not +sethe +s +but +whose +eyes +were +almost +as +calm +as +hers +whose +head +was +turned +on +her +neck +in +the +manner +he +loved +so +well +it +watered +his +eye +to +see +it +and +he +said +so +this +ain +t +her +mouth +i +know +her +mouth +and +this +ain +t +it +before +stamp +paid +could +speak +he +said +it +and +even +while +he +spoke +paul +d +said +it +again +oh +he +heard +all +the +old +man +was +saying +but +the +more +he +heard +the +stranger +the +lips +in +the +drawing +became +stamp +started +with +the +party +the +one +baby +suggs +gave +but +stopped +and +backed +up +a +bit +to +tell +about +the +berries +where +they +were +and +what +was +in +the +earth +that +made +them +grow +like +that +they +open +to +the +sun +but +not +the +birds +cause +snakes +down +in +there +and +the +birds +know +it +so +they +just +grow +fat +and +sweet +with +nobody +to +bother +em +cept +me +because +don +t +nobody +go +in +that +piece +of +water +but +me +and +ain +t +too +many +legs +willing +to +glide +down +that +bank +to +get +them +me +neither +but +i +was +willing +that +day +somehow +or +nother +i +was +willing +and +they +whipped +me +i +m +telling +you +tore +me +up +but +i +filled +two +buckets +anyhow +and +took +em +over +to +baby +suggs +house +it +was +on +from +then +on +such +a +cooking +you +never +see +no +more +we +baked +fried +and +stewed +everything +god +put +down +here +everybody +came +everybody +stuffed +cooked +so +much +there +wasn +t +a +stick +of +kirdlin +left +for +the +next +day +i +volunteered +to +do +it +and +next +morning +i +come +over +like +i +promised +to +do +it +but +this +ain +t +her +mouth +paul +d +said +this +ain +t +it +at +all +stamp +paid +looked +at +him +he +was +going +to +tell +him +about +how +restless +baby +suggs +was +that +morning +how +she +had +a +listening +way +about +her +how +she +kept +looking +down +past +the +corn +to +the +stream +so +much +he +looked +too +in +between +ax +swings +he +watched +where +baby +was +watching +which +is +why +they +both +missed +it +they +were +looking +the +wrong +way +toward +water +and +all +the +while +it +was +coming +down +the +road +four +riding +close +together +bunched +up +like +and +righteous +he +was +going +to +tell +him +that +because +he +thought +it +was +important +why +he +and +baby +suggs +both +missed +it +and +about +the +party +too +because +that +explained +why +nobody +ran +on +ahead +why +nobody +sent +a +fleet +footed +son +to +cut +cross +a +field +soon +as +they +saw +the +four +horses +in +town +hitched +for +watering +while +the +riders +asked +questions +not +ella +not +john +not +anybody +ran +down +or +to +bluestone +road +to +say +some +new +whitefolks +with +the +look +just +rode +in +the +righteous +look +every +negro +learned +to +recognize +along +with +his +ma +am +s +tit +like +a +flag +hoisted +this +righteousness +telegraphed +and +announced +the +faggot +the +whip +the +fist +the +lie +long +before +it +went +public +nobody +warned +them +and +he +d +always +believed +it +wasn +t +the +exhaustion +from +a +long +day +s +gorging +that +dulled +them +but +some +other +thing +like +well +like +meanness +that +let +them +stand +aside +or +not +pay +attention +or +tell +themselves +somebody +else +was +probably +bearing +the +news +already +to +the +house +on +bluestone +road +where +a +pretty +woman +had +been +living +for +almost +a +month +young +and +deft +with +four +children +one +of +which +she +delivered +herself +the +day +before +she +got +there +and +who +now +had +the +full +benefit +of +baby +suggs +bounty +and +her +big +old +heart +maybe +they +just +wanted +to +know +if +baby +really +was +special +blessed +in +some +way +they +were +not +he +was +going +to +tell +him +that +but +paul +d +was +laughing +saying +uh +uh +no +way +a +little +semblance +round +the +forehead +maybe +but +this +ain +t +her +mouth +so +stamp +paid +did +not +tell +him +how +she +flew +snatching +up +her +children +like +a +hawk +on +the +wing +how +her +face +beaked +how +her +hands +worked +like +claws +how +she +collected +them +every +which +way +one +on +her +shoulder +one +under +her +arm +one +by +the +hand +the +other +shouted +forward +into +the +woodshed +filled +with +just +sunlight +and +shavings +now +because +there +wasn +t +any +wood +the +party +had +used +it +all +which +is +why +he +was +chopping +some +nothing +was +in +that +shed +he +knew +having +been +there +early +that +morning +nothing +but +sunlight +sunlight +shavings +a +shovel +the +ax +he +himself +took +out +nothing +else +was +in +there +except +the +shovel +and +of +course +the +saw +you +forgetting +i +knew +her +before +paul +d +was +saying +back +in +kentucky +when +she +was +a +girl +i +didn +t +just +make +her +acquaintance +a +few +months +ago +i +been +knowing +her +a +long +time +and +i +can +tell +you +for +sure +this +ain +t +her +mouth +may +look +like +it +but +it +ain +t +so +stamp +paid +didn +t +say +it +all +instead +he +took +a +breath +and +leaned +toward +the +mouth +that +was +not +hers +and +slowly +read +out +the +words +paul +d +couldn +t +and +when +he +finished +paul +d +said +with +a +vigor +fresher +than +the +first +time +i +m +sorry +stamp +it +s +a +mistake +somewhere +cause +that +ain +t +her +mouth +stamp +looked +into +paul +d +s +eyes +and +the +sweet +conviction +in +them +almost +made +him +wonder +if +it +had +happened +at +all +eighteen +years +ago +that +while +he +and +baby +suggs +were +looking +the +wrong +way +a +pretty +little +slavegirl +had +recognized +a +hat +and +split +to +the +woodshed +to +kill +her +children +chapter +she +was +crawling +already +when +i +got +here +one +week +less +and +the +baby +who +was +sitting +up +and +turning +over +when +i +put +her +on +the +wagon +was +crawling +already +devil +of +a +time +keeping +her +off +the +stairs +nowadays +babies +get +up +and +walk +soon +s +you +drop +em +but +twenty +years +ago +when +i +was +a +girl +babies +stayed +babies +longer +howard +didn +t +pick +up +his +own +head +till +he +was +nine +months +baby +suggs +said +it +was +the +food +you +know +if +you +ain +t +got +nothing +but +milk +to +give +em +well +they +don +t +do +things +so +quick +milk +was +all +i +ever +had +i +thought +teeth +meant +they +was +ready +to +chew +wasn +t +nobody +to +ask +mrs +garner +never +had +no +children +and +we +was +the +only +women +there +she +was +spinning +round +and +round +the +room +past +the +jelly +cupboard +past +the +window +past +the +front +door +another +window +the +sideboard +the +keeping +room +door +the +dry +sink +the +stove +back +to +the +jelly +cupboard +paul +d +sat +at +the +table +watching +her +drift +into +view +then +disappear +behind +his +back +turning +like +a +slow +but +steady +wheel +sometimes +she +crossed +her +hands +behind +her +back +other +times +she +held +her +ears +covered +her +mouth +or +folded +her +arms +across +her +breasts +once +in +a +while +she +rubbed +her +hips +as +she +turned +but +the +wheel +never +stopped +remember +aunt +phyllis +from +out +by +minnoveville +mr +garner +sent +one +a +you +all +to +get +her +for +each +and +every +one +of +my +babies +that +d +be +the +only +time +i +saw +her +many +s +the +time +i +wanted +to +get +over +to +where +she +was +just +to +talk +my +plan +was +to +ask +mrs +garner +to +let +me +off +at +minnowville +whilst +she +went +to +meeting +pick +me +up +on +her +way +back +i +believe +she +would +a +done +that +if +i +was +to +ask +her +i +never +did +cause +that +s +the +only +day +halle +and +me +had +with +sunlight +in +it +for +the +both +of +us +to +see +each +other +by +so +there +wasn +t +nobody +to +talk +to +i +mean +who +d +know +when +it +was +time +to +chew +up +a +little +something +and +give +it +to +em +is +that +what +make +the +teeth +come +on +out +or +should +you +wait +till +the +teeth +came +and +then +solid +food +well +i +know +now +because +baby +suggs +fed +her +right +and +a +week +later +when +i +got +here +she +was +crawling +already +no +stopping +her +either +she +loved +those +steps +so +much +we +painted +them +so +she +could +see +her +way +to +the +top +sethe +smiled +then +at +the +memory +of +it +the +smile +broke +in +two +and +became +a +sudden +suck +of +air +but +she +did +not +shudder +or +close +her +eyes +she +wheeled +i +wish +i +d +a +known +more +but +like +i +say +there +wasn +t +nobody +to +talk +to +woman +i +mean +so +i +tried +to +recollect +what +i +d +seen +back +where +i +was +before +sweet +home +how +the +women +did +there +oh +they +knew +all +about +it +how +to +make +that +thing +you +use +to +hang +the +babies +in +the +trees +so +you +could +see +them +out +of +harm +s +way +while +you +worked +the +fields +was +a +leaf +thing +too +they +gave +em +to +chew +on +mint +i +believe +or +sassafras +comfrey +maybe +i +still +don +t +know +how +they +constructed +that +basket +thing +but +i +didn +t +need +it +anyway +because +all +my +work +was +in +the +barn +and +the +house +but +i +forgot +what +the +leaf +was +i +could +have +used +that +i +tied +buglar +when +we +had +all +that +pork +to +smoke +fire +everywhere +and +he +was +getting +into +everything +i +liked +to +lost +him +so +many +times +once +he +got +up +on +the +well +right +on +it +i +flew +snatched +him +just +in +time +so +when +i +knew +we +d +be +rendering +and +smoking +and +i +couldn +t +see +after +him +well +i +got +a +rope +and +tied +it +round +his +ankle +just +long +enough +to +play +round +a +little +but +not +long +enough +to +reach +the +well +or +the +fire +i +didn +t +like +the +look +of +it +but +i +didn +t +know +what +else +to +do +it +s +hard +you +know +what +i +mean +by +yourself +and +no +woman +to +help +you +get +through +halle +was +good +but +he +was +debt +working +all +over +the +place +and +when +he +did +get +down +to +a +little +sleep +i +didn +t +want +to +be +bothering +him +with +all +that +sixo +was +the +biggest +help +i +don +t +spect +you +rememory +this +but +howard +got +in +the +milk +parlor +and +red +cora +i +believe +it +was +mashed +his +hand +turned +his +thumb +backwards +when +i +got +to +him +she +was +getting +ready +to +bite +it +i +don +t +know +to +this +day +how +i +got +him +out +sixo +heard +him +screaming +and +come +running +know +what +he +did +turned +the +thumb +right +back +and +tied +it +cross +his +palm +to +his +little +finger +see +i +never +would +have +thought +of +that +never +taught +me +a +lot +sixo +it +made +him +dizzy +at +first +he +thought +it +was +her +spinning +circling +him +the +way +she +was +circling +the +subject +round +and +round +never +changing +direction +which +might +have +helped +his +head +then +he +thought +no +it +s +the +sound +of +her +voice +it +s +too +near +each +turn +she +made +was +at +least +three +yards +from +where +he +sat +but +listening +to +her +was +like +having +a +child +whisper +into +your +ear +so +close +you +could +feel +its +lips +form +the +words +you +couldn +t +make +out +because +they +were +too +close +he +caught +only +pieces +of +what +she +said +which +was +fine +because +she +hadn +t +gotten +to +the +main +part +the +answer +to +the +question +he +had +not +asked +outright +but +which +lay +in +the +clipping +he +showed +her +and +lay +in +the +smile +as +well +because +he +smiled +too +when +he +showed +it +to +her +so +when +she +burst +out +laughing +at +the +joke +the +mix +up +of +her +face +put +where +some +other +coloredwoman +s +ought +to +be +well +he +d +be +ready +to +laugh +right +along +with +her +can +you +beat +it +he +would +ask +and +stamp +done +lost +his +mind +she +would +giggle +plumb +lost +it +but +his +smile +never +got +a +chance +to +grow +it +hung +there +small +and +alone +while +she +examined +the +clipping +and +then +handed +it +back +perhaps +it +was +the +smile +or +maybe +the +ever +ready +love +she +saw +in +his +eyes +easy +and +upfront +the +way +colts +evangelists +and +children +look +at +you +with +love +you +don +t +have +to +deserve +that +made +her +go +ahead +and +tell +him +what +she +had +not +told +baby +suggs +the +only +person +she +felt +obliged +to +explain +anything +to +otherwise +she +would +have +said +what +the +newspaper +said +she +said +and +no +more +sethe +could +recognize +only +seventy +five +printed +words +half +of +which +appeared +in +the +newspaper +clipping +but +she +knew +that +the +words +she +did +not +understand +hadn +t +any +more +power +than +she +had +to +explain +it +was +the +smile +and +the +upfront +love +that +made +her +try +i +don +t +have +to +tell +you +about +sweet +home +what +it +was +but +maybe +you +don +t +know +what +it +was +like +for +me +to +get +away +from +there +covering +the +lower +half +of +her +face +with +her +palms +she +paused +to +consider +again +the +size +of +the +miracle +its +flavor +i +did +it +i +got +us +all +out +without +halle +too +up +till +then +it +was +the +only +thing +i +ever +did +on +my +own +decided +and +it +came +off +right +like +it +was +supposed +to +we +was +here +each +and +every +one +of +my +babies +and +me +too +i +birthed +them +and +i +got +em +out +and +it +wasn +t +no +accident +i +did +that +i +had +help +of +course +lots +of +that +but +still +it +was +me +doing +it +me +saying +go +on +and +now +me +having +to +look +out +me +using +my +own +head +but +it +was +more +than +that +it +was +a +kind +of +selfishness +i +never +knew +nothing +about +before +it +felt +good +good +and +right +i +was +big +paul +d +and +deep +and +wide +and +when +i +stretched +out +my +arms +all +my +children +could +get +in +between +i +was +that +wide +look +like +i +loved +em +more +after +i +got +here +or +maybe +i +couldn +t +love +em +proper +in +kentucky +because +they +wasn +t +mine +to +love +but +when +i +got +here +when +i +jumped +down +off +that +wagon +there +wasn +t +nobody +in +the +world +i +couldn +t +love +if +i +wanted +to +you +know +what +i +mean +paul +d +did +not +answer +because +she +didn +t +expect +or +want +him +to +but +he +did +know +what +she +meant +listening +to +the +doves +in +alfred +georgia +and +having +neither +the +right +nor +the +permission +to +enjoy +it +because +in +that +place +mist +doves +sunlight +copper +dirt +moon +every +thing +belonged +to +the +men +who +had +the +guns +little +men +some +of +them +big +men +too +each +one +of +whom +he +could +snap +like +a +twig +if +he +wanted +to +men +who +knew +their +manhood +lay +in +their +guns +and +were +not +even +embarrassed +by +the +knowledge +that +without +gunshot +fox +would +laugh +at +them +and +these +men +who +made +even +vixen +laugh +could +if +you +let +them +stop +you +from +hearing +doves +or +loving +moonlight +so +you +protected +yourself +and +loved +small +picked +the +tiniest +stars +out +of +the +sky +to +own +lay +down +with +head +twisted +in +order +to +see +the +loved +one +over +the +rim +of +the +trench +before +you +slept +stole +shy +glances +at +her +between +the +trees +at +chain +up +grass +blades +salamanders +spiders +woodpeckers +beetles +a +kingdom +of +ants +anything +bigger +wouldn +t +do +a +woman +a +child +a +brother +a +big +love +like +that +would +split +you +wide +open +in +alfred +georgia +he +knew +exactly +what +she +meant +to +get +to +a +place +where +you +could +love +anything +you +chose +not +to +need +permission +for +desire +well +now +that +was +freedom +circling +circling +now +she +was +gnawing +something +else +instead +of +getting +to +the +point +there +was +this +piece +of +goods +mrs +garner +gave +me +calico +stripes +it +had +with +little +flowers +in +between +bout +a +yard +not +enough +for +more +n +a +head +tie +but +i +been +wanting +to +make +a +shift +for +my +girl +with +it +had +the +prettiest +colors +i +don +t +even +know +what +you +call +that +color +a +rose +but +with +yellow +in +it +for +the +longest +time +i +been +meaning +to +make +it +for +her +and +do +you +know +like +a +fool +i +left +it +behind +no +more +than +a +yard +and +i +kept +putting +it +off +because +i +was +tired +or +didn +t +have +the +time +so +when +i +got +here +even +before +they +let +me +get +out +of +bed +i +stitched +her +a +little +something +from +a +piece +of +cloth +baby +suggs +had +well +all +i +m +saying +is +that +s +a +selfish +pleasure +i +never +had +before +i +couldn +t +let +all +that +go +back +to +where +it +was +and +i +couldn +t +let +her +nor +any +of +em +live +under +schoolteacher +that +was +out +sethe +knew +that +the +circle +she +was +making +around +the +room +him +the +subject +would +remain +one +that +she +could +never +close +in +pin +it +down +for +anybody +who +had +to +ask +if +they +didn +t +get +it +right +off +she +could +never +explain +because +the +truth +was +simple +not +a +long +drawn +out +record +of +flowered +shifts +tree +cages +selfishness +ankle +ropes +and +wells +simple +she +was +squatting +in +the +garden +and +when +she +saw +them +coming +and +recognized +schoolteacher +s +hat +she +heard +wings +little +hummingbirds +stuck +their +needle +beaks +right +through +her +headcloth +into +her +hair +and +beat +their +wings +and +if +she +thought +anything +it +was +no +no +nono +nonono +simple +she +just +flew +collected +every +bit +of +life +she +had +made +all +the +parts +of +her +that +were +precious +and +fine +and +beautiful +and +carried +pushed +dragged +them +through +the +veil +out +away +over +there +where +no +one +could +hurt +them +over +there +outside +this +place +where +they +would +be +safe +and +the +hummingbird +wings +beat +on +sethe +paused +in +her +circle +again +and +looked +out +the +window +she +remembered +when +the +yard +had +a +fence +with +a +gate +that +somebody +was +always +latching +and +unlatching +in +the +time +when +was +busy +as +a +way +station +she +did +not +see +the +whiteboys +who +pulled +it +down +yanked +up +the +posts +and +smashed +the +gate +leaving +desolate +and +exposed +at +the +very +hour +when +everybody +stopped +dropping +by +the +shoulder +weeds +of +bluestone +road +were +all +that +came +toward +the +house +when +she +got +back +from +the +jail +house +she +was +glad +the +fence +was +gone +that +s +where +they +had +hitched +their +horses +where +she +saw +floating +above +the +railing +as +she +squatted +in +the +garden +school +teacher +s +hat +by +the +time +she +faced +him +looked +him +dead +in +the +eye +she +had +something +in +her +arms +that +stopped +him +in +his +tracks +he +took +a +backward +step +with +each +jump +of +the +baby +heart +until +finally +there +were +none +i +stopped +him +she +said +staring +at +the +place +where +the +fence +used +to +be +i +took +and +put +my +babies +where +they +d +be +safe +the +roaring +in +paul +d +s +head +did +not +prevent +him +from +hearing +the +pat +she +gave +to +the +last +word +and +it +occurred +to +him +that +what +she +wanted +for +her +children +was +exactly +what +was +missing +in +safety +which +was +the +very +first +message +he +got +the +day +he +walked +through +the +door +he +thought +he +had +made +it +safe +had +gotten +rid +of +the +danger +beat +the +shit +out +of +it +run +it +off +the +place +and +showed +it +and +everybody +else +the +difference +between +a +mule +and +a +plow +and +because +she +had +not +done +it +before +he +got +there +her +own +self +he +thought +it +was +because +she +could +not +do +it +that +she +lived +with +in +helpless +apologetic +resignation +because +she +had +no +choice +that +minus +husband +sons +mother +in +law +she +and +her +slow +witted +daughter +had +to +live +there +all +alone +making +do +the +prickly +mean +eyed +sweet +home +girl +he +knew +as +halle +s +girl +was +obedient +like +halle +shy +like +halle +and +work +crazy +like +halle +he +was +wrong +this +here +sethe +was +new +the +ghost +in +her +house +didn +t +bother +her +for +the +very +same +reason +a +room +and +board +witch +with +new +shoes +was +welcome +this +here +sethe +talked +about +love +like +any +other +woman +talked +about +baby +clothes +like +any +other +woman +but +what +she +meant +could +cleave +the +bone +this +here +sethe +talked +about +safety +with +a +handsaw +this +here +new +sethe +didn +t +know +where +the +world +stopped +and +she +began +suddenly +he +saw +what +stamp +paid +wanted +him +to +see +more +important +than +what +sethe +had +done +was +what +she +claimed +it +scared +him +your +love +is +too +thick +he +said +thinking +that +bitch +is +looking +at +me +she +is +right +over +my +head +looking +down +through +the +floor +at +me +too +thick +she +said +thinking +of +the +clearing +where +baby +suggs +commands +knocked +the +pods +off +horse +chestnuts +love +is +or +it +ain +t +thin +love +ain +t +love +at +all +yeah +it +didn +t +work +did +it +did +it +work +he +asked +it +worked +she +said +how +your +boys +gone +you +don +t +know +where +one +girl +dead +the +other +won +t +leave +the +yard +how +did +it +work +they +ain +t +at +sweet +home +schoolteacher +ain +t +got +em +maybe +there +s +worse +it +ain +t +my +job +to +know +what +s +worse +it +s +my +job +to +know +what +is +and +to +keep +them +away +from +what +i +know +is +terrible +i +did +that +what +you +did +was +wrong +sethe +i +should +have +gone +on +back +there +taken +my +babies +back +there +there +could +have +been +a +way +some +other +way +what +way +you +got +two +feet +sethe +not +four +he +said +and +right +then +a +forest +sprang +up +between +them +trackless +and +quiet +later +he +would +wonder +what +made +him +say +it +the +calves +of +his +youth +or +the +conviction +that +he +was +being +observed +through +the +ceiling +how +fast +he +had +moved +from +his +shame +to +hers +from +his +cold +house +secret +straight +to +her +too +thick +love +meanwhile +the +forest +was +locking +the +distance +between +them +giving +it +shape +and +heft +he +did +not +put +his +hat +on +right +away +first +he +fingered +it +deciding +how +his +going +would +be +how +to +make +it +an +exit +not +an +escape +and +it +was +very +important +not +to +leave +without +looking +he +stood +up +turned +and +looked +up +the +white +stairs +she +was +there +all +right +standing +straight +as +a +line +with +her +back +to +him +he +didn +t +rush +to +the +door +he +moved +slowly +and +when +he +got +there +he +opened +it +before +asking +sethe +to +put +supper +aside +for +him +because +he +might +be +a +little +late +getting +back +only +then +did +he +put +on +his +hat +sweet +she +thought +he +must +think +i +can +t +bear +to +hear +him +say +it +that +after +all +i +have +told +him +and +after +telling +me +how +many +feet +i +have +goodbye +would +break +me +to +pieces +ain +t +that +sweet +so +long +she +murmured +from +the +far +side +of +the +trees +book +two +chapter +was +loud +stamp +paid +could +hear +it +even +from +the +road +he +walked +toward +the +house +holding +his +head +as +high +as +possible +so +nobody +looking +could +call +him +a +sneak +although +his +worried +mind +made +him +feel +like +one +ever +since +he +showed +that +newspaper +clipping +to +paul +d +and +learned +that +he +d +moved +out +of +that +very +day +stamp +felt +uneasy +having +wrestled +with +the +question +of +whether +or +not +to +tell +a +man +about +his +woman +and +having +convinced +himself +that +he +should +he +then +began +to +worry +about +sethe +had +he +stopped +the +one +shot +she +had +of +the +happiness +a +good +man +could +bring +her +was +she +vexed +by +the +loss +the +free +and +unasked +for +revival +of +gossip +by +the +man +who +had +helped +her +cross +the +river +and +who +was +her +friend +as +well +as +baby +suggs +i +m +too +old +he +thought +for +clear +thinking +i +m +too +old +and +i +seen +too +much +he +had +insisted +on +privacy +during +the +revelation +at +the +slaughter +yard +now +he +wondered +whom +he +was +protecting +paul +d +was +the +only +one +in +town +who +didn +t +know +how +did +information +that +had +been +in +the +newspaper +become +a +secret +that +needed +to +be +whispered +in +a +pig +yard +a +secret +from +whom +sethe +that +s +who +he +d +gone +behind +her +back +like +a +sneak +but +sneaking +was +his +job +his +life +though +always +for +a +clear +and +holy +purpose +before +the +war +all +he +did +was +sneak +runaways +into +hidden +places +secret +information +to +public +places +underneath +his +legal +vegetables +were +the +contraband +humans +that +he +ferried +across +the +river +even +the +pigs +he +worked +in +the +spring +served +his +purposes +whole +families +lived +on +the +bones +and +guts +he +distributed +to +them +he +wrote +their +letters +and +read +to +them +the +ones +they +received +he +knew +who +had +dropsy +and +who +needed +stovewood +which +children +had +a +gift +and +which +needed +correction +he +knew +the +secrets +of +the +ohio +river +and +its +banks +empty +houses +and +full +the +best +dancers +the +worst +speakers +those +with +beautiful +voices +and +those +who +could +not +carry +a +tune +there +was +nothing +interesting +between +his +legs +but +he +remembered +when +there +had +been +when +that +drive +drove +the +driven +and +that +was +why +he +considered +long +and +hard +before +opening +his +wooden +box +and +searching +for +the +eighteen +year +old +clipping +to +show +paul +d +as +proof +afterward +not +before +he +considered +sethe +s +feelings +in +the +matter +and +it +was +the +lateness +of +this +consideration +that +made +him +feel +so +bad +maybe +he +should +have +left +it +alone +maybe +sethe +would +have +gotten +around +to +telling +him +herself +maybe +he +was +not +the +high +minded +soldier +of +christ +he +thought +he +was +but +an +ordinary +plain +meddler +who +had +interrupted +something +going +along +just +fine +for +the +sake +of +truth +and +forewarning +things +he +set +much +store +by +now +was +back +like +it +was +before +paul +d +came +to +town +worrying +sethe +and +denver +with +a +pack +of +haunts +he +could +hear +from +the +road +even +if +sethe +could +deal +with +the +return +of +the +spirit +stamp +didn +t +believe +her +daughter +could +denver +needed +somebody +normal +in +her +life +by +luck +he +had +been +there +at +her +very +birth +almost +before +she +knew +she +was +alive +and +it +made +him +partial +to +her +it +was +seeing +her +alive +don +t +you +know +and +looking +healthy +four +weeks +later +that +pleased +him +so +much +he +gathered +all +he +could +carry +of +the +best +blackberries +in +the +county +and +stuck +two +in +her +mouth +first +before +he +presented +the +difficult +harvest +to +baby +suggs +to +this +day +he +believed +his +berries +which +sparked +the +feast +and +the +wood +chopping +that +followed +were +the +reason +denver +was +still +alive +had +he +not +been +there +chopping +firewood +sethe +would +have +spread +her +baby +brains +on +the +planking +maybe +he +should +have +thought +of +denver +if +not +sethe +before +he +gave +paul +d +the +news +that +ran +him +off +the +one +normal +somebody +in +the +girl +s +life +since +baby +suggs +died +and +right +there +was +the +thorn +deeper +and +more +painful +than +his +belated +concern +for +denver +or +sethe +scorching +his +soul +like +a +silver +dollar +in +a +fool +s +pocket +was +the +memory +of +baby +suggs +the +mountain +to +his +sky +it +was +the +memory +of +her +and +the +honor +that +was +her +due +that +made +him +walk +straight +necked +into +the +yard +of +although +he +heard +its +voices +from +the +road +he +had +stepped +foot +in +this +house +only +once +after +the +misery +which +is +what +he +called +sethe +s +rough +response +to +the +fugitive +bill +and +that +was +to +carry +baby +suggs +holy +out +of +it +when +he +picked +her +up +in +his +arms +she +looked +to +him +like +a +gift +and +he +took +the +pleasure +she +would +have +knowing +she +didn +t +have +to +grind +her +hipbone +anymore +that +at +last +somebody +carried +bar +had +she +waited +just +a +little +she +would +have +seen +the +end +of +the +war +its +short +flashy +results +they +could +have +celebrated +together +gone +to +hear +the +great +sermons +preached +on +the +occasion +as +it +was +he +went +alone +from +house +to +joyous +house +drinking +what +was +offered +but +she +hadn +t +waited +and +he +attended +her +funeral +more +put +out +with +her +than +bereaved +sethe +and +her +daughter +were +dry +eyed +on +that +occasion +sethe +had +no +instructions +except +take +her +to +the +clearing +which +he +tried +to +do +but +was +prevented +by +some +rule +the +whites +had +invented +about +where +the +dead +should +rest +baby +suggs +went +down +next +to +the +baby +with +its +throat +cut +a +neighborliness +that +stamp +wasn +t +sure +had +baby +suggs +approval +the +setting +up +was +held +in +the +yard +because +nobody +besides +himself +would +enter +an +injury +sethe +answered +with +another +by +refusing +to +attend +the +service +reverend +pike +presided +over +she +went +instead +to +the +gravesite +whose +silence +she +competed +with +as +she +stood +there +not +joining +in +the +hymns +the +others +sang +with +all +their +hearts +that +insult +spawned +another +by +the +mourners +back +in +the +yard +of +they +ate +the +food +they +brought +and +did +not +touch +sethe +s +who +did +not +touch +theirs +and +forbade +denver +to +so +baby +suggs +holy +having +devoted +her +freed +life +to +harmony +was +buried +amid +a +regular +dance +of +pride +fear +condemnation +and +spite +just +about +everybody +in +town +was +longing +for +sethe +to +come +on +difficult +times +her +outrageous +claims +her +self +sufficiency +seemed +to +demand +it +and +stamp +paid +who +had +not +felt +a +trickle +of +meanness +his +whole +adult +life +wondered +if +some +of +the +pride +goeth +before +a +fall +expectations +of +the +townsfolk +had +rubbed +off +on +him +anyhow +which +would +explain +why +he +had +not +considered +sethe +s +feelings +or +denver +s +needs +when +he +showed +paul +d +the +clipping +he +hadn +t +the +vaguest +notion +of +what +he +would +do +or +say +when +and +if +sethe +opened +the +door +and +turned +her +eyes +on +his +he +was +willing +to +offer +her +help +if +she +wanted +any +from +him +or +receive +her +anger +if +she +harbored +any +against +him +beyond +that +he +trusted +his +instincts +to +right +what +he +may +have +done +wrong +to +baby +suggs +kin +and +to +guide +him +in +and +through +the +stepped +up +haunting +was +subject +to +as +evidenced +by +the +voices +he +heard +from +the +road +other +than +that +he +would +rely +on +the +power +of +jesus +christ +to +deal +with +things +older +but +not +stronger +than +he +himself +was +what +he +heard +as +he +moved +toward +the +porch +he +didn +t +understand +out +on +bluestone +road +he +thought +he +heard +a +conflagration +of +hasty +voices +loud +urgent +all +speaking +at +once +so +he +could +not +make +out +what +they +were +talking +about +or +to +whom +the +speech +wasn +t +nonsensical +exactly +nor +was +it +tongues +but +something +was +wrong +with +the +order +of +the +words +and +he +couldn +t +describe +or +cipher +it +to +save +his +life +all +he +could +make +out +was +the +word +mine +the +rest +of +it +stayed +outside +his +mind +s +reach +yet +he +went +on +through +when +he +got +to +the +steps +the +voices +drained +suddenly +to +less +than +a +whisper +it +gave +him +pause +they +had +become +an +occasional +mutter +like +the +interior +sounds +a +woman +makes +when +she +believes +she +is +alone +and +unobserved +at +her +work +a +sth +when +she +misses +the +needle +s +eye +a +soft +moan +when +she +sees +another +chip +in +her +one +good +platter +the +low +friendly +argument +with +which +she +greets +the +hens +nothing +fierce +or +startling +just +that +eternal +private +conversation +that +takes +place +between +women +and +their +tasks +stamp +paid +raised +his +fist +to +knock +on +the +door +he +had +never +knocked +on +because +it +was +always +open +to +or +for +him +and +could +not +do +it +dispensing +with +that +formality +was +all +the +pay +he +expected +from +negroes +in +his +debt +once +stamp +paid +brought +you +a +coat +got +the +message +to +you +saved +your +life +or +fixed +the +cistern +he +took +the +liberty +of +walking +in +your +door +as +though +it +were +his +own +since +all +his +visits +were +beneficial +his +step +or +holler +through +a +doorway +got +a +bright +welcome +rather +than +forfeit +the +one +privilege +he +claimed +for +himself +he +lowered +his +hand +and +left +the +porch +over +and +over +again +he +tried +it +made +up +his +mind +to +visit +sethe +broke +through +the +loud +hasty +voices +to +the +mumbling +beyond +it +and +stopped +trying +to +figure +out +what +to +do +at +the +door +six +times +in +as +many +days +he +abandoned +his +normal +route +and +tried +to +knock +at +but +the +coldness +of +the +gesture +its +sign +that +he +was +indeed +a +stranger +at +the +gate +overwhelmed +him +retracing +his +steps +in +the +snow +he +sighed +spirit +willing +flesh +weak +while +stamp +paid +was +making +up +his +mind +to +visit +for +baby +suggs +sake +sethe +was +trying +to +take +her +advice +to +lay +it +all +down +sword +and +shield +not +just +to +acknowledge +the +advice +baby +suggs +gave +her +but +actually +to +take +it +four +days +after +paul +d +reminded +her +of +how +many +feet +she +had +sethe +rummaged +among +the +shoes +of +strangers +to +find +the +ice +skates +she +was +sure +were +there +digging +in +the +heap +she +despised +herself +for +having +been +so +trusting +so +quick +to +surrender +at +the +stove +while +paul +d +kissed +her +back +she +should +have +known +that +he +would +behave +like +everybody +else +in +town +once +he +knew +the +twenty +eight +days +of +having +women +friends +a +mother +in +law +and +all +her +children +together +of +being +part +of +a +neighborhood +of +in +fact +having +neighbors +at +all +to +call +her +own +all +that +was +long +gone +and +would +never +come +back +no +more +dancing +in +the +clearing +or +happy +feeds +no +more +discussions +stormy +or +quiet +about +the +true +meaning +of +the +fugitive +bill +the +settlement +fee +god +s +ways +and +negro +pews +antislavery +manumission +skin +voting +republicans +dred +scott +book +learning +sojourner +s +high +wheeled +buggy +the +colored +ladies +of +delaware +ohio +and +the +other +weighty +issues +that +held +them +in +chairs +scraping +the +floorboards +or +pacing +them +in +agony +or +exhilaration +no +anxious +wait +for +the +north +star +or +news +of +a +beat +off +no +sighing +at +a +new +betrayal +or +handclapping +at +a +small +victory +those +twenty +eight +happy +days +were +followed +by +eighteen +years +of +disapproval +and +a +solitary +life +then +a +few +months +of +the +sun +splashed +life +that +the +shadows +holding +hands +on +the +road +promised +her +tentative +greetings +from +other +coloredpeople +in +paul +d +s +company +a +bed +life +for +herself +except +for +denver +s +friend +every +bit +of +it +had +disappeared +was +that +the +pattern +she +wondered +every +eighteen +or +twenty +years +her +unlivable +life +would +be +interrupted +by +a +short +lived +glory +well +if +that +s +the +way +it +was +that +s +the +way +it +was +she +had +been +on +her +knees +scrubbing +the +floor +denver +trailing +her +with +the +drying +rags +when +beloved +appeared +saying +what +these +do +on +her +knees +scrub +brush +in +hand +she +looked +at +the +girl +and +the +skates +she +held +up +sethe +couldn +t +skate +a +lick +but +then +and +there +she +decided +to +take +baby +suggs +advice +lay +it +all +down +she +left +the +bucket +where +it +was +told +denver +to +get +out +the +shawls +and +started +searching +for +the +other +skates +she +was +certain +were +in +that +heap +somewhere +anybody +feeling +sorry +for +her +anybody +wandering +by +to +peep +in +and +see +how +she +was +getting +on +including +paul +d +would +discover +that +the +woman +junkheaped +for +the +third +time +because +she +loved +her +children +that +woman +was +sailing +happily +on +a +frozen +creek +hurriedly +carelessly +she +threw +the +shoes +about +she +found +one +blade +a +man +s +well +she +said +we +ll +take +turns +two +skates +on +one +one +skate +on +one +and +shoe +slide +for +the +other +nobody +saw +them +falling +holding +hands +bracing +each +other +they +swirled +over +the +ice +beloved +wore +the +pair +denver +wore +one +step +gliding +over +the +treacherous +ice +sethe +thought +her +two +shoes +would +hold +and +anchor +her +she +was +wrong +two +paces +onto +the +creek +she +lost +her +balance +and +landed +on +her +behind +the +girls +screaming +with +laughter +joined +her +on +the +ice +sethe +struggled +to +stand +and +discovered +not +only +that +she +could +do +a +split +but +that +it +hurt +her +bones +surfaced +in +unexpected +places +and +so +did +laughter +making +a +circle +or +a +line +the +three +of +them +could +not +stay +upright +for +one +whole +minute +but +nobody +saw +them +falling +each +seemed +to +be +helping +the +other +two +stay +upright +yet +every +tumble +doubled +their +delight +the +live +oak +and +soughing +pine +on +the +banks +enclosed +them +and +absorbed +their +laughter +while +they +fought +gravity +for +each +other +s +hands +their +skirts +flew +like +wings +and +their +skin +turned +pewter +in +the +cold +and +dying +light +nobody +saw +them +falling +exhausted +finally +they +lay +down +on +their +backs +to +recover +breath +the +sky +above +them +was +another +country +winter +stars +close +enough +to +lick +had +come +out +before +sunset +for +a +moment +looking +up +sethe +entered +the +perfect +peace +they +offered +then +denver +stood +up +and +tried +for +a +long +independent +glide +the +tip +of +her +single +skate +hit +an +ice +bump +and +as +she +fell +the +flapping +of +her +arms +was +so +wild +and +hopeless +that +all +three +sethe +beloved +and +denver +herself +laughed +till +they +coughed +sethe +rose +to +her +hands +and +knees +laughter +still +shaking +her +chest +making +her +eyes +wet +she +stayed +that +way +for +a +while +on +all +fours +but +when +her +laughter +died +the +tears +did +not +and +it +was +some +time +before +beloved +or +denver +knew +the +difference +when +they +did +they +touched +her +lightly +on +the +shoulders +walking +back +through +the +woods +sethe +put +an +arm +around +each +girl +at +her +side +both +of +them +had +an +arm +around +her +waist +making +their +way +over +hard +snow +they +stumbled +and +had +to +hold +on +tight +but +nobody +saw +them +fall +inside +the +house +they +found +out +they +were +cold +they +took +off +their +shoes +wet +stockings +and +put +on +dry +woolen +ones +denver +fed +the +fire +sethe +warmed +a +pan +of +milk +and +stirred +cane +syrup +and +vanilla +into +it +wrapped +in +quilts +and +blankets +before +the +cooking +stove +they +drank +wiped +their +noses +and +drank +again +we +could +roast +some +taters +said +denver +tomorrow +said +sethe +time +to +sleep +she +poured +them +each +a +bit +more +of +the +hot +sweet +milk +the +stovefire +roared +you +finished +with +your +eyes +asked +beloved +sethe +smiled +yes +i +m +finished +with +my +eyes +drink +up +time +for +bed +but +none +of +them +wanted +to +leave +the +warmth +of +the +blankets +the +fire +and +the +cups +for +the +chill +of +an +unheated +bed +they +went +on +sipping +and +watching +the +fire +when +the +click +came +sethe +didn +t +know +what +it +was +afterward +it +was +clear +as +daylight +that +the +click +came +at +the +very +beginning +a +beat +almost +before +it +started +before +she +heard +three +notes +before +the +melody +was +even +clear +leaning +forward +a +little +beloved +was +humming +softly +it +was +then +when +beloved +finished +humming +that +sethe +recalled +the +click +the +settling +of +pieces +into +places +designed +and +made +especially +for +them +no +milk +spilled +from +her +cup +because +her +hand +was +not +shaking +she +simply +turned +her +head +and +looked +at +beloved +s +profile +the +chin +mouth +nose +forehead +copied +and +exaggerated +in +the +huge +shadow +the +fire +threw +on +the +wall +behind +her +her +hair +which +denver +had +braided +into +twenty +or +thirty +plaits +curved +toward +her +shoulders +like +arms +from +where +she +sat +sethe +could +not +examine +it +not +the +hairline +nor +the +eyebrows +the +lips +nor +all +i +remember +baby +suggs +had +said +is +how +she +loved +the +burned +bottom +of +bread +her +little +hands +i +wouldn +t +know +em +if +they +slapped +me +the +birthmark +nor +the +color +of +the +gums +the +shape +of +her +ears +nor +here +look +here +this +is +your +ma +am +if +you +can +t +tell +me +by +my +face +look +here +the +fingers +nor +their +nails +nor +even +but +there +would +be +time +the +click +had +clicked +things +were +where +they +ought +to +be +or +poised +and +ready +to +glide +in +i +made +that +song +up +said +sethe +i +made +it +up +and +sang +it +to +my +children +nobody +knows +that +song +but +me +and +my +children +beloved +turned +to +look +at +sethe +i +know +it +she +said +a +hobnail +casket +of +jewels +found +in +a +tree +hollow +should +be +fondled +before +it +is +opened +its +lock +may +have +rusted +or +broken +away +from +the +clasp +still +you +should +touch +the +nail +heads +and +test +its +weight +no +smashing +with +an +ax +head +before +it +is +decently +exhumed +from +the +grave +that +has +hidden +it +all +this +time +no +gasp +at +a +miracle +that +is +truly +miraculous +because +the +magic +lies +in +the +fact +that +you +knew +it +was +there +for +you +all +along +sethe +wiped +the +white +satin +coat +from +the +inside +of +the +pan +brought +pillows +from +the +keeping +room +for +the +girls +heads +there +was +no +tremor +in +her +voice +as +she +instructed +them +to +keep +the +fire +if +not +come +on +upstairs +with +that +she +gathered +her +blanket +around +her +elbows +and +asc +ended +the +lily +white +stairs +like +a +bride +outside +snow +solidified +itself +into +graceful +forms +the +peace +of +winter +stars +seemed +permanent +fingering +a +ribbon +and +smelling +skin +stamp +paid +approached +again +my +marrow +is +tired +he +thought +i +been +tired +all +my +days +bone +tired +but +now +it +s +in +the +marrow +must +be +what +baby +suggs +felt +when +she +lay +down +and +thought +about +color +for +the +rest +of +her +life +when +she +told +him +what +her +aim +was +he +thought +she +was +ashamed +and +too +shamed +to +say +so +her +authority +in +the +pulpit +her +dance +in +the +clearing +her +powerful +call +she +didn +t +deliver +sermons +or +preach +insisting +she +was +too +ignorant +for +that +she +called +and +the +hearing +heard +all +that +had +been +mocked +and +rebuked +by +the +bloodspill +in +her +backyard +god +puzzled +her +and +she +was +too +ashamed +of +him +to +say +so +instead +she +told +stamp +she +was +going +to +bed +to +think +about +the +colors +of +things +he +tried +to +dissuade +her +sethe +was +in +jail +with +her +nursing +baby +the +one +he +had +saved +her +sons +were +holding +hands +in +the +yard +terrified +of +letting +go +strangers +and +familiars +were +stopping +by +to +hear +how +it +went +one +more +time +and +suddenly +baby +declared +peace +she +just +up +and +quit +by +the +time +sethe +was +released +she +had +exhausted +blue +and +was +well +on +her +way +to +yellow +at +first +he +would +see +her +in +the +yard +occasionally +or +delivering +food +to +the +jail +or +shoes +in +town +then +less +and +less +he +believed +then +that +shame +put +her +in +the +bed +now +eight +years +after +her +contentious +funeral +and +eighteen +years +after +the +misery +he +changed +his +mind +her +marrow +was +tired +and +it +was +a +testimony +to +the +heart +that +fed +it +that +it +took +eight +years +to +meet +finally +the +color +she +was +hankering +after +the +onslaught +of +her +fatigue +like +his +was +sudden +but +lasted +for +years +after +sixty +years +of +losing +children +to +the +people +who +chewed +up +her +life +and +spit +it +out +like +a +fish +bone +after +five +years +of +freedom +given +to +her +by +her +last +child +who +bought +her +future +with +his +exchanged +it +so +to +speak +so +she +could +have +one +whether +he +did +or +not +to +lose +him +too +to +acquire +a +daughter +and +grandchildren +and +see +that +daughter +slay +the +children +or +try +to +to +belong +to +a +community +of +other +free +negroes +to +love +and +be +loved +by +them +to +counsel +and +be +counseled +protect +and +be +protected +feed +and +be +fed +and +then +to +have +that +community +step +back +and +hold +itself +at +a +distance +well +it +could +wear +out +even +a +baby +suggs +holy +listen +here +girl +he +told +her +you +can +t +quit +the +word +it +s +given +to +you +to +speak +you +can +t +quit +the +word +i +don +t +care +what +all +happen +to +you +they +were +standing +in +richmond +street +ankle +deep +in +leaves +lamps +lit +the +downstairs +windows +of +spacious +houses +and +made +the +early +evening +look +darker +than +it +was +the +odor +of +burning +leaves +was +brilliant +quite +by +chance +as +he +pocketed +a +penny +tip +for +a +delivery +he +had +glanced +across +the +street +and +recognized +the +skipping +woman +as +his +old +friend +he +had +not +seen +her +in +weeks +quickly +he +crossed +the +street +scuffing +red +leaves +as +he +went +when +he +stopped +her +with +a +greeting +she +returned +it +with +a +face +knocked +clean +of +interest +she +could +have +been +a +plate +a +carpetbag +full +of +shoes +in +her +hand +she +waited +for +him +to +begin +lead +or +share +a +conversation +if +there +had +been +sadness +in +her +eyes +he +would +have +understood +it +but +indifference +lodged +where +sadness +should +have +been +you +missed +the +clearing +three +saturdays +running +he +told +her +she +turned +her +head +away +and +scanned +the +houses +along +the +street +folks +came +he +said +folks +come +folks +go +she +answered +here +let +me +carry +that +he +tried +to +take +her +bag +from +her +but +she +wouldn +t +let +him +i +got +a +delivery +someplace +long +in +here +she +said +name +of +tucker +yonder +he +said +twin +chestnuts +in +the +yard +sick +too +they +walked +a +bit +his +pace +slowed +to +accommodate +her +skip +well +well +what +saturday +coming +you +going +to +call +or +what +if +i +call +them +and +they +come +what +on +earth +i +m +going +to +say +say +the +word +he +checked +his +shout +too +late +two +whitemen +burning +leaves +turned +their +heads +in +his +direction +bending +low +he +whispered +into +her +ear +the +word +the +word +that +s +one +other +thing +took +away +from +me +she +said +and +that +was +when +he +exhorted +her +pleaded +with +her +not +to +quit +no +matter +what +the +word +had +been +given +to +her +and +she +had +to +speak +it +had +to +they +had +reached +the +twin +chestnuts +and +the +white +house +that +stood +behind +them +see +what +i +mean +he +said +big +trees +like +that +both +of +em +together +ain +t +got +the +leaves +of +a +young +birch +i +see +what +you +mean +she +said +but +she +peered +instead +at +the +white +house +you +got +to +do +it +he +said +you +got +to +can +t +nobody +call +like +you +you +have +to +be +there +what +i +have +to +do +is +get +in +my +bed +and +lay +down +i +want +to +fix +on +something +harmless +in +this +world +what +world +you +talking +about +ain +t +nothing +harmless +down +here +yes +it +is +blue +that +don +t +hurt +nobody +yellow +neither +you +getting +in +the +bed +to +think +about +yellow +i +likes +yellow +then +what +when +you +get +through +with +blue +and +yellow +then +what +can +t +say +it +s +something +can +t +be +planned +you +blaming +god +he +said +that +s +what +you +doing +no +stamp +i +ain +t +you +saying +the +whitefolks +won +that +what +you +saying +i +m +saying +they +came +in +my +yard +you +saying +nothing +counts +i +m +saying +they +came +in +my +yard +sethe +s +the +one +did +it +and +if +she +hadn +t +you +saying +god +give +up +nothing +left +for +us +but +pour +out +our +own +blood +i +m +saying +they +came +in +my +yard +you +punishing +him +ain +t +you +not +like +he +punish +me +you +can +t +do +that +baby +it +ain +t +right +was +a +time +i +knew +what +that +was +you +still +know +what +i +know +is +what +i +see +a +nigger +woman +hauling +shoes +aw +baby +he +licked +his +lips +searching +with +his +tongue +for +the +words +that +would +turn +her +around +lighten +her +load +we +have +to +be +steady +these +things +too +will +pass +what +you +looking +for +a +miracle +no +she +said +i +m +looking +for +what +i +was +put +here +to +look +for +the +back +door +and +skipped +right +to +it +they +didn +t +let +her +in +they +took +the +shoes +from +her +as +she +stood +on +the +steps +and +she +rested +her +hip +on +the +railing +while +the +whitewoman +went +looking +for +the +dime +stamp +paid +rearranged +his +way +too +angry +to +walk +her +home +and +listen +to +more +he +watched +her +for +a +moment +and +turned +to +go +before +the +alert +white +face +at +the +window +next +door +had +come +to +any +conclusion +trying +to +get +to +for +the +second +time +now +he +regretted +that +conversation +the +high +tone +he +took +his +refusal +to +see +the +effect +of +marrow +weariness +in +a +woman +he +believed +was +a +mountain +now +too +late +he +understood +her +the +heart +that +pumped +out +love +the +mouth +that +spoke +the +word +didn +t +count +they +came +in +her +yard +anyway +and +she +could +not +approve +or +condemn +sethe +s +rough +choice +one +or +the +other +might +have +saved +her +but +beaten +up +by +the +claims +of +both +she +went +to +bed +the +whitefolks +had +tired +her +out +at +last +and +him +eighteen +seventy +four +and +whitefolks +were +still +on +the +loose +whole +towns +wiped +clean +of +negroes +eighty +seven +lynchings +in +one +year +alone +in +kentucky +four +colored +schools +burned +to +the +ground +grown +men +whipped +like +children +children +whipped +like +adults +black +women +raped +by +the +crew +property +taken +necks +broken +he +smelled +skin +skin +and +hot +blood +the +skin +was +one +thing +but +human +blood +cooked +in +a +lynch +fire +was +a +whole +other +thing +the +stench +stank +stank +up +off +the +pages +of +the +north +star +out +of +the +mouths +of +witnesses +etched +in +crooked +handwriting +in +letters +delivered +by +hand +detailed +in +documents +and +petitions +full +of +whereas +and +presented +to +any +legal +body +who +d +read +it +it +stank +but +none +of +that +had +worn +out +his +marrow +none +of +that +it +was +the +ribbon +tying +his +flatbed +up +on +the +bank +of +the +licking +river +securing +it +the +best +he +could +he +caught +sight +of +something +red +on +its +bottom +reaching +for +it +he +thought +it +was +a +cardinal +feather +stuck +to +his +boat +he +tugged +and +what +came +loose +in +his +hand +was +a +red +ribbon +knotted +around +a +curl +of +wet +woolly +hair +clinging +still +to +its +bit +of +scalp +he +untied +the +ribbon +and +put +it +in +his +pocket +dropped +the +curl +in +the +weeds +on +the +way +home +he +stopped +short +of +breath +and +dizzy +he +waited +until +the +spell +passed +before +continuing +on +his +way +a +moment +later +his +breath +left +him +again +this +time +he +sat +down +by +a +fence +rested +he +got +to +his +feet +but +before +he +took +a +step +he +turned +to +look +back +down +the +road +he +was +traveling +and +said +to +its +frozen +mud +and +the +river +beyond +what +are +these +people +you +tell +me +jesus +what +are +they +when +he +got +to +his +house +he +was +too +tired +to +eat +the +food +his +sister +and +nephews +had +prepared +he +sat +on +the +porch +in +the +cold +till +way +past +dark +and +went +to +his +bed +only +because +his +sister +s +voice +calling +him +was +getting +nervous +he +kept +the +ribbon +the +skin +smell +nagged +him +and +his +weakened +marrow +made +him +dwell +on +baby +suggs +wish +to +consider +what +in +the +world +was +harmless +he +hoped +she +stuck +to +blue +yellow +maybe +green +and +never +fixed +on +red +mistaking +her +upbraiding +her +owing +her +now +he +needed +to +let +her +know +he +knew +and +to +get +right +with +her +and +her +kin +so +in +spite +of +his +exhausted +marrow +he +kept +on +through +the +voices +and +tried +once +more +to +knock +at +the +door +of +this +time +although +he +couldn +t +cipher +but +one +word +he +believed +he +knew +who +spoke +them +the +people +of +the +broken +necks +of +fire +cooked +blood +and +black +girls +who +had +lost +their +ribbons +what +a +roaring +sethe +had +gone +to +bed +smiling +eager +to +lie +down +and +unravel +the +proof +for +the +conclusion +she +had +already +leapt +to +fondle +the +day +and +circumstances +of +beloved +s +arrival +and +the +meaning +of +that +kiss +in +the +clearing +she +slept +instead +and +woke +still +smiling +to +a +snow +bright +morning +cold +enough +to +see +her +breath +she +lingered +a +moment +to +collect +the +courage +to +throw +off +the +blankets +and +hit +a +chilly +floor +for +the +first +time +she +was +going +to +be +late +for +work +downstairs +she +saw +the +girls +sleeping +where +she +d +left +them +but +back +to +back +now +each +wrapped +tight +in +blankets +breathing +into +their +pillows +the +pair +and +a +half +of +skates +were +lying +by +the +front +door +the +stockings +hung +on +a +nail +behind +the +cooking +stove +to +dry +had +not +sethe +looked +at +beloved +s +face +and +smiled +quietly +carefully +she +stepped +around +her +to +wake +the +fire +first +a +bit +of +paper +then +a +little +kindlin +not +too +much +just +a +taste +until +it +was +strong +enough +for +more +she +fed +its +dance +until +it +was +wild +and +fast +when +she +went +outside +to +collect +more +wood +from +the +shed +she +did +not +notice +the +man +s +frozen +footprints +she +crunched +around +to +the +back +to +the +cord +piled +high +with +snow +after +scraping +it +clean +she +filled +her +arms +with +as +much +dry +wood +as +she +could +she +even +looked +straight +at +the +shed +smiling +smiling +at +the +things +she +would +not +have +to +remember +now +thinking +she +ain +t +even +mad +with +me +not +a +bit +obviously +the +hand +holding +shadows +she +had +seen +on +the +road +were +not +paul +d +denver +and +herself +but +us +three +the +three +holding +on +to +each +other +skating +the +night +before +the +three +sipping +flavored +milk +and +since +that +was +so +if +her +daughter +could +come +back +home +from +the +timeless +place +certainly +her +sons +could +and +would +come +back +from +wherever +they +had +gone +to +sethe +covered +her +front +teeth +with +her +tongue +against +the +cold +hunched +forward +by +the +burden +in +her +arms +she +walked +back +around +the +house +to +the +porch +not +once +noticing +the +frozen +tracks +she +stepped +in +inside +the +girls +were +still +sleeping +although +they +had +changed +positions +while +she +was +gone +both +drawn +to +the +fire +dumping +the +armload +into +the +woodbox +made +them +stir +but +not +wake +sethe +started +the +cooking +stove +as +quietly +as +she +could +reluctant +to +wake +the +sisters +happy +to +have +them +asleep +at +her +feet +while +she +made +breakfast +too +bad +she +would +be +late +for +work +too +too +bad +once +in +sixteen +years +that +s +just +too +bad +she +had +beaten +two +eggs +into +yesterday +s +hominy +formed +it +into +patties +and +fried +them +with +some +ham +pieces +before +denver +woke +completely +and +groaned +back +stiff +ooh +yeah +sleeping +on +the +floor +s +supposed +to +be +good +for +you +hurts +like +the +devil +said +denver +could +be +that +fall +you +took +denver +smiled +that +was +fun +she +turned +to +look +down +at +beloved +snoring +lightly +should +i +wake +her +no +let +her +rest +she +likes +to +see +you +off +in +the +morning +i +ll +make +sure +she +does +said +sethe +and +thought +be +nice +to +think +first +before +i +talk +to +her +let +her +know +i +know +think +about +all +i +ain +t +got +to +remember +no +more +do +like +baby +said +think +on +it +then +lay +it +down +for +good +paul +d +convinced +me +there +was +a +world +out +there +and +that +i +could +live +in +it +should +have +known +better +did +know +better +whatever +is +going +on +outside +my +door +ain +t +for +me +the +world +is +in +this +room +this +here +s +all +there +is +and +all +there +needs +to +be +they +ate +like +men +ravenous +and +intent +saying +little +content +with +the +company +of +the +other +and +the +opportunity +to +look +in +her +eyes +when +sethe +wrapped +her +head +and +bundled +up +to +go +to +town +it +was +already +midmorning +and +when +she +left +the +house +she +neither +saw +the +prints +nor +heard +the +voices +that +ringed +like +a +noose +trudging +in +the +ruts +left +earlier +by +wheels +sethe +was +excited +to +giddiness +by +the +things +she +no +longer +had +to +remember +i +don +t +have +to +remember +nothing +i +don +t +even +have +to +explain +she +understands +it +all +i +can +forget +how +baby +suggs +heart +collapsed +how +we +agreed +it +was +consumption +without +a +sign +of +it +in +the +world +her +eyes +when +she +brought +my +food +i +can +forget +that +and +how +she +told +me +that +howard +and +buglar +were +all +right +but +wouldn +t +let +go +each +other +s +hands +played +that +way +stayed +that +way +especially +in +their +sleep +she +handed +me +the +food +from +a +basket +things +wrapped +small +enough +to +get +through +the +bars +whispering +news +mr +bodwin +going +to +see +the +judge +in +chambers +she +kept +on +saying +in +chambers +like +i +knew +what +it +meant +or +she +did +the +colored +ladies +of +delaware +ohio +had +drawn +up +a +petition +to +keep +me +from +being +hanged +that +two +white +preachers +had +come +round +and +wanted +to +talk +to +me +pray +for +me +that +a +newspaperman +came +too +she +told +me +the +news +and +i +told +her +i +needed +something +for +the +rats +she +wanted +denver +out +and +slapped +her +palms +when +i +wouldn +t +let +her +go +where +your +earrings +she +said +i +ll +hold +em +for +you +i +told +her +the +jailer +took +them +to +protect +me +from +myself +he +thought +i +could +do +some +harm +with +the +wire +baby +suggs +covered +her +mouth +with +her +hand +schoolteacher +left +town +she +said +filed +a +claim +and +rode +on +off +they +going +to +let +you +out +for +the +burial +she +said +not +the +funeral +just +the +burial +and +they +did +the +sheriff +came +with +me +and +looked +away +when +i +fed +denver +in +the +wagon +neither +howard +nor +buglar +would +let +me +near +them +not +even +to +touch +their +hair +i +believe +a +lot +of +folks +were +there +but +i +just +saw +the +box +reverend +pike +spoke +in +a +real +loud +voice +but +i +didn +t +catch +a +word +except +the +first +two +and +three +months +later +when +denver +was +ready +for +solid +food +and +they +let +me +out +for +good +i +went +and +got +you +a +gravestone +but +i +didn +t +have +money +enough +for +the +carving +so +i +exchanged +bartered +you +might +say +what +i +did +have +and +i +m +sorry +to +this +day +i +never +thought +to +ask +him +for +the +whole +thing +all +i +heard +of +what +reverend +pike +said +dearly +beloved +which +is +what +you +are +to +me +and +i +don +t +have +to +be +sorry +about +getting +only +one +word +and +i +don +t +have +to +remember +the +slaughterhouse +and +the +saturday +girls +who +worked +its +yard +i +can +forget +that +what +i +did +changed +baby +suggs +life +no +clearing +no +company +just +laundry +and +shoes +i +can +forget +it +all +now +because +as +soon +as +i +got +the +gravestone +in +place +you +made +your +presence +known +in +the +house +and +worried +us +all +to +distraction +i +didn +t +understand +it +then +i +thought +you +were +mad +with +me +and +now +i +know +that +if +you +was +you +ain +t +now +because +you +came +back +here +to +me +and +i +was +right +all +along +there +is +no +world +outside +my +door +i +only +need +to +know +one +thing +how +bad +is +the +scar +as +sethe +walked +to +work +late +for +the +first +time +in +sixteen +years +and +wrapped +in +a +timeless +present +stamp +paid +fought +fatigue +and +the +habit +of +a +lifetime +baby +suggs +refused +to +go +to +the +clearing +because +she +believed +they +had +won +he +refused +to +acknowledge +any +such +victory +baby +had +no +back +door +so +he +braved +the +cold +and +a +wall +of +talk +to +knock +on +the +one +she +did +have +he +clutched +the +red +ribbon +in +his +pocket +for +strength +softly +at +first +then +harder +at +the +last +he +banged +furiously +disbelieving +it +could +happen +that +the +door +of +a +house +with +coloredpeople +in +it +did +not +fly +open +in +his +presence +he +went +to +the +window +and +wanted +to +cry +sure +enough +there +they +were +not +a +one +of +them +heading +for +the +door +worrying +his +scrap +of +ribbon +to +shreds +the +old +man +turned +and +went +down +the +steps +now +curiosity +joined +his +shame +and +his +debt +two +backs +curled +away +from +him +as +he +looked +in +the +window +one +had +a +head +he +recognized +the +other +troubled +him +he +didn +t +know +her +and +didn +t +know +anybody +it +could +be +nobody +but +nobody +visited +that +house +after +a +disagreeable +breakfast +he +went +to +see +ella +and +john +to +find +out +what +they +knew +perhaps +there +he +could +find +out +if +after +all +these +years +of +clarity +he +had +misnamed +himself +and +there +was +yet +another +debt +he +owed +born +joshua +he +renamed +himself +when +he +handed +over +his +wife +to +his +master +s +son +handed +her +over +in +the +sense +that +he +did +not +kill +anybody +thereby +himself +because +his +wife +demanded +he +stay +alive +otherwise +she +reasoned +where +and +to +whom +could +she +return +when +the +boy +was +through +with +that +gift +he +decided +that +he +didn +t +owe +anybody +anything +whatever +his +obligations +were +that +act +paid +them +off +he +thought +it +would +make +him +rambunctious +renegade +a +drunkard +even +the +debtlessness +and +in +a +way +it +did +but +there +was +nothing +to +do +with +it +work +well +work +poorly +work +a +little +work +not +at +all +make +sense +make +none +sleep +wake +up +like +somebody +dislike +others +it +didn +t +seem +much +of +a +way +to +live +and +it +brought +him +no +satisfaction +so +he +extended +this +debtlessness +to +other +people +by +helping +them +pay +out +and +off +whatever +they +owed +in +misery +beaten +runaways +he +ferried +them +and +rendered +them +paid +for +gave +them +their +own +bill +of +sale +so +to +speak +you +paid +it +now +life +owes +you +and +the +receipt +as +it +were +was +a +welcome +door +that +he +never +had +to +knock +on +like +john +and +ella +s +in +front +of +which +he +stood +and +said +who +in +there +only +once +and +she +was +pulling +on +the +hinge +where +you +been +keeping +yourself +i +told +john +must +be +cold +if +stamp +stay +inside +oh +i +been +out +he +took +off +his +cap +and +massaged +his +scalp +out +where +not +by +here +ella +hung +two +suits +of +underwear +on +a +line +behind +the +stove +was +over +to +baby +suggs +this +morning +what +you +want +in +there +asked +ella +somebody +invite +you +in +that +s +baby +s +kin +i +don +t +need +no +invite +to +look +after +her +people +sth +ella +was +unmoved +she +had +been +baby +suggs +friend +and +sethe +s +too +till +the +rough +time +except +for +a +nod +at +the +carnival +she +hadn +t +given +sethe +the +time +of +day +somebody +new +in +there +a +woman +thought +you +might +know +who +is +she +ain +t +no +new +negroes +in +this +town +i +don +t +know +about +she +said +what +she +look +like +you +sure +that +wasn +t +denver +i +know +denver +this +girl +s +narrow +you +sure +i +know +what +i +see +might +see +anything +at +all +at +true +better +ask +paul +d +she +said +can +t +locate +him +said +stamp +which +was +the +truth +although +his +efforts +to +find +paul +d +had +been +feeble +he +wasn +t +ready +to +confront +the +man +whose +life +he +had +altered +with +his +graveyard +information +he +s +sleeping +in +the +church +said +ella +the +church +stamp +was +shocked +and +very +hurt +yeah +asked +reverend +pike +if +he +could +stay +in +the +cellar +it +s +cold +as +charity +in +there +i +expect +he +knows +that +what +he +do +that +for +hes +a +touch +proud +seem +like +he +don +t +have +to +do +that +any +number +ll +take +him +in +ella +turned +around +to +look +at +stamp +paid +can +t +nobody +read +minds +long +distance +all +he +have +to +do +is +ask +somebody +why +why +he +have +to +ask +can +t +nobody +offer +what +s +going +on +since +when +a +blackman +come +to +town +have +to +sleep +in +a +cellar +like +a +dog +unrile +yourself +stamp +not +me +i +m +going +to +stay +riled +till +somebody +gets +some +sense +and +leastway +act +like +a +christian +it +s +only +a +few +days +he +been +there +shouldn +t +be +no +days +you +know +all +about +it +and +don +t +give +him +a +hand +that +don +t +sound +like +you +ella +me +and +you +been +pulling +coloredfolk +out +the +water +more +n +twenty +years +now +you +tell +me +you +can +t +offer +a +man +a +bed +a +working +man +too +a +man +what +can +pay +his +own +way +he +ask +i +give +him +anything +why +s +that +necessary +all +of +a +sudden +i +don +t +know +him +all +that +well +you +know +he +s +colored +stamp +don +t +tear +me +up +this +morning +i +don +t +feel +like +it +it +s +her +ain +t +it +her +who +sethe +he +took +up +with +her +and +stayed +in +there +and +you +don +t +want +nothing +to +hold +on +don +t +jump +if +you +can +t +see +bottom +girl +give +it +up +we +been +friends +too +long +to +act +like +this +well +who +can +tell +what +all +went +on +in +there +look +here +i +don +t +know +who +sethe +is +or +none +of +her +people +what +all +i +know +is +she +married +baby +suggs +boy +and +i +ain +t +sure +i +know +that +where +is +he +huh +baby +never +laid +eyes +on +her +till +john +carried +her +to +the +door +with +a +baby +i +strapped +on +her +chest +i +strapped +that +baby +and +you +way +off +the +track +with +that +wagon +her +children +know +who +she +was +even +if +you +don +t +so +what +i +ain +t +saying +she +wasn +t +their +ma +ammy +but +who +s +to +say +they +was +baby +suggs +grandchildren +how +she +get +on +board +and +her +husband +didn +t +and +tell +me +this +how +she +have +that +baby +in +the +woods +by +herself +said +a +whitewoman +come +out +the +trees +and +helped +her +shoot +you +believe +that +a +whitewoman +well +i +know +what +kind +of +white +that +was +aw +no +ella +anything +white +floating +around +in +the +woods +if +it +ain +t +got +a +shotgun +it +s +something +i +don +t +want +no +part +of +you +all +was +friends +yeah +till +she +showed +herself +ella +i +ain +t +got +no +friends +take +a +handsaw +to +their +own +children +you +in +deep +water +girl +uh +uh +i +m +on +dry +land +and +i +m +going +to +stay +there +you +the +one +wet +what +s +any +of +what +you +talking +got +to +do +with +paul +d +what +run +him +off +tell +me +that +i +run +him +off +you +i +told +him +about +i +showed +him +the +newspaper +about +the +what +sethe +did +read +it +to +him +he +left +that +very +day +you +didn +t +tell +me +that +i +thought +he +knew +he +didn +t +know +nothing +except +her +from +when +they +was +at +that +place +baby +suggs +was +at +he +knew +baby +suggs +sure +he +knew +her +her +boy +halle +too +and +left +when +he +found +out +what +sethe +did +look +like +he +might +have +a +place +to +stay +after +all +what +you +say +casts +a +different +light +i +thought +but +stamp +paid +knew +what +she +thought +you +didn +t +come +here +asking +about +him +ela +said +you +came +about +some +new +girl +that +s +so +well +paul +d +must +know +who +she +is +or +what +she +is +your +mind +is +loaded +with +spirits +everywhere +you +look +you +see +one +you +know +as +well +as +i +do +that +people +who +die +bad +don +t +stay +in +the +ground +he +couldn +t +deny +it +jesus +christ +himself +didn +t +so +stamp +ate +a +piece +of +ella +s +head +cheese +to +show +there +were +no +bad +feelings +and +set +out +to +find +paul +d +he +found +him +on +the +steps +of +holy +redeemer +holding +his +wrists +between +his +knees +and +looking +red +eyed +sawyer +shouted +at +her +when +she +entered +the +kitchen +but +she +just +turned +her +back +and +reached +for +her +apron +there +was +no +entry +now +no +crack +or +crevice +available +she +had +taken +pains +to +keep +them +out +but +knew +full +well +that +at +any +moment +they +could +rock +her +rip +her +from +her +moorings +send +the +birds +twittering +back +into +her +hair +drain +her +mother +s +milk +they +had +already +done +divided +her +back +into +plant +life +that +too +driven +her +fat +bellied +into +the +woods +they +had +done +that +all +news +of +them +was +rot +they +buttered +halle +s +face +gave +paul +d +iron +to +eat +crisped +sixo +hanged +her +own +mother +she +didn +t +want +any +more +news +about +whitefolks +didn +t +want +to +know +what +ella +knew +and +john +and +stamp +paid +about +the +world +done +up +the +way +whitefolks +loved +it +all +news +of +them +should +have +stopped +with +the +birds +in +her +hair +once +long +ago +she +was +soft +trusting +she +trusted +mrs +garner +and +her +husband +too +she +knotted +the +earrings +into +her +underskirt +to +take +along +not +so +much +to +wear +but +to +hold +earrings +that +made +her +believe +she +could +discriminate +among +them +that +for +every +schoolteacher +there +would +be +an +amy +that +for +every +pupil +there +was +a +garner +or +bodwin +or +even +a +sheriff +whose +touch +at +her +elbow +was +gentle +and +who +looked +away +when +she +nursed +but +she +had +come +to +believe +every +one +of +baby +suggs +last +words +and +buried +all +recollection +of +them +and +luck +paul +d +dug +it +up +gave +her +back +her +body +kissed +her +divided +back +stirred +her +rememory +and +brought +her +more +news +of +clabber +of +iron +of +roosters +smiling +but +when +he +heard +her +news +he +counted +her +feet +and +didn +t +even +say +goodbye +don +t +talk +to +me +mr +sawyer +don +t +say +nothing +to +me +this +morning +what +what +what +you +talking +back +to +me +i +m +telling +you +don +t +say +nothing +to +me +you +better +get +them +pies +made +sethe +touched +the +fruit +and +picked +up +the +paring +knife +when +pie +juice +hit +the +bottom +of +the +oven +and +hissed +sethe +was +well +into +the +potato +salad +sawyer +came +in +and +said +not +too +sweet +you +make +it +too +sweet +they +don +t +eat +it +make +it +the +way +i +always +did +yeah +too +sweet +none +of +the +sausages +came +back +the +cook +had +a +way +with +them +and +sawyer +s +restaurant +never +had +leftover +sausage +if +sethe +wanted +any +she +put +them +aside +soon +as +they +were +ready +but +there +was +some +passable +stew +problem +was +all +her +pies +were +sold +too +only +rice +pudding +left +and +half +a +pan +of +gingerbread +that +didn +t +come +out +right +had +she +been +paying +attention +instead +of +daydreaming +all +morning +she +wouldn +t +be +picking +around +looking +for +her +dinner +like +a +crab +she +couldn +t +read +clock +time +very +well +but +she +knew +when +the +hands +were +closed +in +prayer +at +the +top +of +the +face +she +was +through +for +the +day +she +got +a +metal +top +jar +filled +it +with +stew +and +wrapped +the +gingerbread +in +butcher +paper +these +she +dropped +in +her +outer +skirt +pockets +and +began +washing +up +none +of +it +was +anything +like +what +the +cook +and +the +two +waiters +walked +off +with +mr +sawyer +included +midday +dinner +in +the +terms +of +the +job +along +with +o +a +week +and +she +made +him +understand +from +the +beginning +she +would +take +her +dinner +home +but +matches +sometimes +a +bit +of +kerosene +a +little +salt +butter +too +these +things +she +took +also +once +in +a +while +and +felt +ashamed +because +she +could +afford +to +buy +them +she +just +didn +t +want +the +embarrassment +of +waiting +out +back +of +phelps +store +with +the +others +till +every +white +in +ohio +was +served +before +the +keeper +turned +to +the +cluster +of +negro +faces +looking +through +a +hole +in +his +back +door +she +was +ashamed +too +because +it +was +stealing +and +sixo +s +argument +on +the +subject +amused +her +but +didn +t +change +the +way +she +felt +just +as +it +didn +t +change +schoolteacher +s +mind +did +you +steal +that +shoat +you +stole +that +shoat +schoolteacher +was +quiet +but +firm +like +he +was +just +going +through +the +motions +not +expecting +an +answer +that +mattered +sixo +sat +there +not +even +getting +up +to +plead +or +deny +he +just +sat +there +the +streak +of +lean +in +his +hand +the +gristle +clustered +in +the +tin +plate +like +gemstones +rough +unpolished +but +loot +nevertheless +you +stole +that +shoat +didn +t +you +no +sir +said +sixo +but +he +had +the +decency +to +keep +his +eyes +on +the +meat +you +telling +me +you +didn +t +steal +it +and +i +m +looking +right +at +you +no +sir +i +didn +t +steal +it +schoolteacher +smiled +did +you +kill +it +yes +sir +i +killed +it +did +you +butcher +it +yes +sir +did +you +cook +it +yes +sir +well +then +did +you +eat +it +yes +sir +i +sure +did +and +you +telling +me +that +s +not +stealing +no +sir +it +ain +t +what +is +it +then +improving +your +property +sir +what +sixo +plant +rye +to +give +the +high +piece +a +better +chance +sixo +take +and +feed +the +soil +give +you +more +crop +sixo +take +and +feed +sixo +give +you +more +work +clever +but +schoolteacher +beat +him +anyway +to +show +him +that +definitions +belonged +to +the +definers +not +the +defined +after +mr +garner +died +with +a +hole +in +his +ear +that +mrs +garner +said +was +an +exploded +ear +drum +brought +on +by +stroke +and +sixo +said +was +gunpowder +everything +they +touched +was +looked +on +as +stealing +not +just +a +rifle +of +corn +or +two +yard +eggs +the +hen +herself +didn +t +even +remember +everything +schoolteacher +took +away +the +guns +from +the +sweet +home +men +and +deprived +of +game +to +round +out +their +diet +of +bread +beans +hominy +vegetables +and +a +little +extra +at +slaughter +time +they +began +to +pilfer +in +earnest +and +it +became +not +only +their +right +but +their +obligation +sethe +understood +it +then +but +now +with +a +paying +job +and +an +employer +who +was +kind +enough +to +hire +an +ex +convict +she +despised +herself +for +the +pride +that +made +pilfering +better +than +standing +in +line +at +the +window +of +the +general +store +with +all +the +other +negroes +she +didn +t +want +to +jostle +them +or +be +jostled +by +them +feel +their +judgment +or +their +pity +especially +now +she +touched +her +forehead +with +the +back +of +her +wrist +and +blotted +the +perspiration +the +workday +had +come +to +a +close +and +already +she +was +feeling +the +excitement +not +since +that +other +escape +had +she +felt +so +alive +slopping +the +alley +dogs +watching +their +frenzy +she +pressed +her +lips +today +would +be +a +day +she +would +accept +a +lift +if +anybody +on +a +wagon +offered +it +no +one +would +and +for +sixteen +years +her +pride +had +not +let +her +ask +but +today +oh +today +now +she +wanted +speed +to +skip +over +the +long +walk +home +and +be +there +when +sawyer +warned +her +about +being +late +again +she +barely +heard +him +he +used +to +be +a +sweet +man +patient +tender +in +his +dealings +with +his +help +but +each +year +following +the +death +of +his +son +in +the +war +he +grew +more +and +more +crotchety +as +though +sethe +s +dark +face +was +to +blame +un +huh +she +said +wondering +how +she +could +hurry +tine +along +and +get +to +the +no +time +waiting +for +her +she +needn +t +have +worried +wrapped +tight +hunched +forward +as +she +started +home +her +mind +was +busy +with +the +things +she +could +forget +thank +god +i +don +t +have +to +rememory +or +say +a +thing +because +you +know +it +all +you +know +i +never +would +a +left +you +never +it +was +all +i +could +think +of +to +do +when +the +train +came +i +had +to +be +ready +schoolteacher +was +teaching +us +things +we +couldn +t +learn +i +didn +t +care +nothing +about +the +measuring +string +we +all +laughed +about +that +except +sixo +he +didn +t +laugh +at +nothing +but +i +didn +t +care +schoolteacher +d +wrap +that +string +all +over +my +head +cross +my +nose +around +my +behind +number +my +teeth +i +thought +he +was +a +fool +and +the +questions +he +asked +was +the +biggest +foolishness +of +all +then +me +and +your +brothers +come +up +from +the +second +patch +the +first +one +was +close +to +the +house +where +the +quick +things +grew +beans +onions +sweet +peas +the +other +one +was +further +down +for +long +lasting +things +potatoes +pumpkin +okra +pork +salad +not +much +was +up +yet +down +there +it +was +early +still +some +young +salad +maybe +but +that +was +all +we +pulled +weeds +and +hoed +a +little +to +give +everything +a +good +start +after +that +we +hit +out +for +the +house +the +ground +raised +up +from +the +second +patch +not +a +hill +exactly +but +kind +of +enough +for +buglar +and +howard +to +run +up +and +roll +down +run +up +and +roll +down +that +s +the +way +i +used +to +see +them +in +my +dreams +laughing +their +short +fat +legs +running +up +the +hill +now +all +i +see +is +their +backs +walking +down +the +railroad +tracks +away +from +me +always +away +from +me +but +that +day +they +was +happy +running +up +and +rolling +down +it +was +early +still +the +growing +season +had +took +hold +but +not +much +was +up +i +remember +the +peas +still +had +flowers +the +grass +was +long +though +full +of +white +buds +and +those +tall +red +blossoms +people +call +diane +and +something +there +with +the +leastest +little +bit +of +blue +light +like +a +cornflower +but +pale +pale +real +pale +i +maybe +should +have +hurried +because +i +left +you +back +at +the +house +in +a +basket +in +the +yard +away +from +where +the +chickens +scratched +but +you +never +know +anyway +i +took +my +time +getting +back +but +your +brothers +didn +t +have +patience +with +me +staring +at +flowers +and +sky +every +two +or +three +steps +they +ran +on +ahead +and +i +let +em +something +sweet +lives +in +the +air +that +time +of +year +and +if +the +breeze +is +right +it +s +hard +to +stay +indoors +when +i +got +back +i +could +hear +howard +and +buglar +laughing +down +by +the +quarters +i +put +my +hoe +down +and +cut +across +the +side +yard +to +get +to +you +the +shade +moved +so +by +the +time +i +got +back +the +sun +was +shining +right +on +you +right +in +your +face +but +you +wasn +t +woke +at +all +still +asleep +i +wanted +to +pick +you +up +in +my +arms +and +i +wanted +to +look +at +you +sleeping +too +didn +t +know +which +you +had +the +sweetest +face +yonder +not +far +was +a +grape +arbor +mr +garner +made +always +full +of +big +plans +he +wanted +to +make +his +own +wine +to +get +drunk +off +never +did +get +more +than +a +kettle +of +jelly +from +it +i +don +t +think +the +soil +was +right +for +grapes +your +daddy +believed +it +was +the +rain +not +the +soil +sixo +said +it +was +bugs +the +grapes +so +little +and +tight +sour +as +vinegar +too +but +there +was +a +little +table +in +there +so +i +picked +up +your +basket +and +carried +you +over +to +the +grape +arbor +cool +in +there +and +shady +i +set +you +down +on +the +little +table +and +figured +if +i +got +a +piece +of +muslin +the +bugs +and +things +wouldn +t +get +to +you +and +if +mrs +garner +didn +t +need +me +right +there +in +the +kitchen +i +could +get +a +chair +and +you +and +me +could +set +out +there +while +i +did +the +vegetables +i +headed +for +the +back +door +to +get +the +clean +muslin +we +kept +in +the +kitchen +press +the +grass +felt +good +on +my +feet +i +got +near +the +door +and +i +heard +voices +schoolteacher +made +his +pupils +sit +and +learn +books +for +a +spell +every +afternoon +if +it +was +nice +enough +weather +they +d +sit +on +the +side +porch +all +three +of +em +he +d +talk +and +they +d +write +or +he +would +read +and +they +would +write +down +what +he +said +i +never +told +nobody +this +not +your +pap +not +nobody +i +almost +told +mrs +garner +but +she +was +so +weak +then +and +getting +weaker +this +is +the +first +time +i +m +telling +it +and +i +m +telling +it +to +you +because +it +might +help +explain +something +to +you +although +i +know +you +don +t +need +me +to +do +it +to +tell +it +or +even +think +over +it +you +don +t +have +to +listen +either +if +you +don +t +want +to +but +i +couldn +t +help +listening +to +what +i +heard +that +day +he +was +talking +to +his +pupils +and +i +heard +him +say +which +one +are +you +doing +and +one +of +the +boys +said +sethe +that +s +when +i +stopped +because +i +heard +my +name +and +then +i +took +a +few +steps +to +where +i +could +see +what +they +was +doing +schoolteacher +was +standing +over +one +of +them +with +one +hand +behind +his +back +he +licked +a +forefinger +a +couple +of +times +and +turned +a +few +pages +slow +i +was +about +to +turn +around +and +keep +on +my +way +to +where +the +muslin +was +when +i +heard +him +say +no +no +that +s +not +the +way +i +told +you +to +put +her +human +characteristics +on +the +left +her +animal +ones +on +the +right +and +don +t +forget +to +line +them +up +i +commenced +to +walk +backward +didn +t +even +look +behind +me +to +find +out +where +i +was +headed +i +just +kept +lifting +my +feet +and +pushing +back +when +i +bumped +up +against +a +tree +my +scalp +was +prickly +one +of +the +dogs +was +licking +out +a +pan +in +the +yard +i +got +to +the +grape +arbor +fast +enough +but +i +didn +t +have +the +muslin +flies +settled +all +over +your +face +rubbing +their +hands +my +head +itched +like +the +devil +like +somebody +was +sticking +fine +needles +in +my +scalp +i +never +told +halle +or +nobody +but +that +very +day +i +asked +mrs +garner +a +part +of +it +she +was +low +then +not +as +low +as +she +ended +up +but +failing +a +kind +of +bag +grew +under +her +jaw +it +didn +t +seem +to +hurt +her +but +it +made +her +weak +first +she +d +be +up +and +spry +in +the +morning +and +by +the +second +milking +she +couldn +t +stand +up +next +she +took +to +sleeping +late +the +day +i +went +up +there +she +was +in +bed +the +whole +day +and +i +thought +to +carry +her +some +bean +soup +and +ask +her +then +when +i +opened +the +bedroom +door +she +looked +at +me +from +underneath +her +nightcap +already +it +was +hard +to +catch +life +in +her +eyes +her +shoes +and +stockings +were +on +the +floor +so +i +knew +she +had +tried +to +get +dressed +i +brung +you +some +bean +soup +i +said +she +said +i +don +t +think +i +can +swallow +that +try +a +bit +i +told +her +too +thick +i +m +sure +it +s +too +thick +want +me +to +loosen +it +up +with +a +little +water +no +take +it +away +bring +me +some +cool +water +that +s +all +yes +ma +am +ma +am +could +i +ask +you +something +what +is +it +sethe +what +do +characteristics +mean +what +a +word +characteristics +oh +she +moved +her +head +around +on +the +pillow +features +who +taught +you +that +i +heard +the +schoolteacher +say +it +change +the +water +sethe +this +is +warm +yes +ma +am +features +water +sethe +cool +water +i +put +the +pitcher +on +the +tray +with +the +white +bean +soup +and +went +downstairs +when +i +got +back +with +the +fresh +water +i +held +her +head +while +she +drank +it +took +her +a +while +because +that +lump +made +it +hard +to +swallow +she +laid +back +and +wiped +her +mouth +the +drinking +seemed +to +satisfy +her +but +she +frowned +and +said +i +don +t +seem +able +to +wake +up +sethe +all +i +seem +to +want +is +sleep +then +do +it +i +told +her +i +m +take +care +of +things +then +she +went +on +what +about +this +what +about +that +said +she +knew +halle +was +no +trouble +but +she +wanted +to +know +if +schoolteacher +was +handling +the +pauls +all +right +and +sixo +yes +ma +am +i +said +look +like +it +do +they +do +what +he +tells +them +they +don +t +need +telling +good +that +s +a +mercy +i +should +be +back +downstairs +in +a +day +or +two +i +just +need +more +rest +doctor +s +due +back +tomorrow +is +it +you +said +features +ma +am +what +features +umm +like +a +feature +of +summer +is +heat +a +characteristic +is +a +feature +a +thing +that +s +natural +to +a +thing +can +you +have +more +than +one +you +can +have +quite +a +few +you +know +say +a +baby +sucks +its +thumb +that +s +one +but +it +has +others +too +keep +billy +away +from +red +corn +mr +garner +never +let +her +calve +every +other +year +sethe +you +hear +me +come +away +from +that +window +and +listen +yes +ma +am +ask +my +brother +in +law +to +come +up +after +supper +yes +ma +am +if +you +d +wash +your +hair +you +could +get +rid +of +that +lice +ain +t +no +lice +in +my +head +ma +am +whatever +it +is +a +good +scrubbing +is +what +it +needs +not +scratching +don +t +tell +me +we +re +out +of +soap +no +ma +am +all +right +now +i +m +through +talking +makes +me +tired +yes +ma +am +and +thank +you +sethe +yes +ma +am +you +was +too +little +to +remember +the +quarters +your +brothers +slept +under +the +window +me +you +and +your +daddy +slept +by +the +wall +the +night +after +i +heard +why +schoolteacher +measured +me +i +had +trouble +sleeping +when +halle +came +in +i +asked +him +what +he +thought +about +schoolteacher +he +said +there +wasn +t +nothing +to +think +about +said +he +s +white +ain +t +he +i +said +but +i +mean +is +he +like +mr +garner +what +you +want +to +know +sethe +him +and +her +i +said +they +ain +t +like +the +whites +i +seen +before +the +ones +in +the +big +place +i +was +before +i +came +here +how +these +different +he +asked +me +well +i +said +they +talk +soft +for +one +thing +it +don +t +matter +sethe +what +they +say +is +the +same +loud +or +soft +mr +garner +let +you +buy +out +your +mother +i +said +yep +he +did +well +if +he +hadn +t +of +she +would +of +dropped +in +his +cooking +stove +still +he +did +it +let +you +work +it +off +uh +huh +wake +up +halle +i +said +uh +huh +he +could +of +said +no +he +didn +t +tell +you +no +no +he +didn +t +tell +me +no +she +worked +here +for +ten +years +if +she +worked +another +ten +you +think +she +would +ve +made +it +out +i +pay +him +for +her +last +years +and +in +return +he +got +you +me +and +three +more +coming +up +i +got +one +more +year +of +debt +work +one +more +schoolteacher +in +there +told +me +to +quit +it +said +the +reason +for +doing +it +don +t +hold +i +should +do +the +extra +but +here +at +sweet +home +is +he +going +to +pay +you +for +the +extra +nope +then +how +you +going +to +pay +it +off +how +much +is +it +o +don +t +he +want +it +back +he +want +something +what +i +don +t +know +something +but +he +don +t +want +me +off +sweet +home +no +more +say +it +don +t +pay +to +have +my +labor +somewhere +else +while +the +boys +is +small +what +about +the +money +you +owe +he +must +have +another +way +of +getting +it +what +way +i +don +t +know +sethe +then +the +only +question +is +how +how +he +going +get +it +no +that +s +one +question +there +s +one +more +what +s +that +he +leaned +up +and +turned +over +touching +my +cheek +with +his +knuckles +the +question +now +is +who +s +going +buy +you +out +or +me +or +her +he +pointed +over +to +where +you +was +laying +what +if +all +my +labor +is +sweet +home +including +the +extra +what +i +got +left +to +sell +he +turned +over +then +and +went +back +to +sleep +and +i +thought +i +wouldn +t +but +i +did +too +for +a +while +something +he +said +maybe +or +something +he +didn +t +say +woke +me +i +sat +up +like +somebody +hit +me +and +you +woke +up +too +and +commenced +to +cry +i +rocked +you +some +but +there +wasn +t +much +room +so +i +stepped +outside +the +door +to +walk +you +up +and +down +i +went +up +and +down +everything +dark +but +lamplight +in +the +top +window +of +the +house +she +must +ve +been +up +still +i +couldn +t +get +out +of +my +head +the +thing +that +woke +me +up +while +the +boys +is +small +that +s +what +he +said +and +it +snapped +me +awake +they +tagged +after +me +the +whole +day +weeding +milking +getting +firewood +for +now +for +now +that +s +when +we +should +have +begun +to +plan +but +we +didn +t +i +don +t +know +what +we +thought +but +getting +away +was +a +money +thing +to +us +buy +out +running +was +nowhere +on +our +minds +all +of +us +some +where +to +how +to +go +it +was +sixo +who +brought +it +up +finally +after +paul +f +mrs +garner +sold +him +trying +to +keep +things +up +already +she +lived +two +years +off +his +price +but +it +ran +out +i +guess +so +she +wrote +schoolteacher +to +come +take +over +four +sweet +home +men +and +she +still +believed +she +needed +her +brother +in +law +and +two +boys +cause +people +said +she +shouldn +t +be +alone +out +there +with +nothing +but +negroes +so +he +came +with +a +big +hat +and +spectacles +and +a +coach +box +full +of +paper +talking +soft +and +watching +hard +he +beat +paul +a +not +hard +and +not +long +but +it +was +the +first +time +anyone +had +because +mr +garner +disallowed +it +next +time +i +saw +him +he +had +company +in +the +prettiest +trees +you +ever +saw +sixo +started +watching +the +sky +he +was +the +only +one +who +crept +at +night +and +halle +said +that +s +how +he +learned +about +the +train +that +way +halle +was +pointing +over +the +stable +where +he +took +my +ma +am +sixo +say +freedom +is +that +way +a +whole +train +is +going +and +if +we +can +get +there +don +t +need +to +be +no +buyout +train +what +s +that +i +asked +him +they +stopped +talking +in +front +of +me +then +even +halle +but +they +whispered +among +themselves +and +sixo +watched +the +sky +not +the +high +part +the +low +part +where +it +touched +the +trees +you +could +tell +his +mind +was +gone +from +sweet +home +the +plan +was +a +good +one +but +when +it +came +time +i +was +big +with +denver +so +we +changed +it +a +little +a +little +just +enough +to +butter +halle +s +face +so +paul +d +tells +me +and +make +sixo +laugh +at +last +but +i +got +you +out +baby +and +the +boys +too +when +the +signal +for +the +train +come +you +all +was +the +only +ones +ready +i +couldn +t +find +halle +or +nobody +i +didn +t +know +sixo +was +burned +up +and +paul +d +dressed +in +a +collar +you +wouldn +t +believe +not +till +later +so +i +sent +you +all +to +the +wagon +with +the +woman +who +waited +in +the +corn +ha +ha +no +notebook +for +my +babies +and +no +measuring +string +neither +what +i +had +to +get +through +later +i +got +through +because +of +you +passed +right +by +those +boys +hanging +in +the +trees +one +had +paul +a +s +shirt +on +but +not +his +feet +or +his +head +i +walked +right +on +by +because +only +me +had +your +milk +and +god +do +what +he +would +i +was +going +to +get +it +to +you +you +remember +that +don +t +you +that +i +did +that +when +i +got +here +i +had +milk +enough +for +all +one +more +curve +in +the +road +and +sethe +could +see +her +chimney +it +wasn +t +lonely +looking +anymore +the +ribbon +of +smoke +was +from +a +fire +that +warmed +a +body +returned +to +her +just +like +it +never +went +away +never +needed +a +headstone +and +the +heart +that +beat +inside +it +had +not +for +a +single +moment +stopped +in +her +hands +she +opened +the +door +walked +in +and +locked +it +tight +behind +her +the +day +stamp +paid +saw +the +two +backs +through +the +window +and +then +hurried +down +the +steps +he +believed +the +undecipherable +language +clamoring +around +the +house +was +the +mumbling +of +the +black +and +angry +dead +very +few +had +died +in +bed +like +baby +suggs +and +none +that +he +knew +of +including +baby +had +lived +a +livable +life +even +the +educated +colored +the +long +school +people +the +doctors +the +teachers +the +paper +writers +and +businessmen +had +a +hard +row +to +hoe +in +addition +to +having +to +use +their +heads +to +get +ahead +they +had +the +weight +of +the +whole +race +sitting +there +you +needed +two +heads +for +that +whitepeople +believed +that +whatever +the +manners +under +every +dark +skin +was +a +jungle +swift +unnavigable +waters +swinging +screaming +baboons +sleeping +snakes +red +gums +ready +for +their +sweet +white +blood +in +a +way +he +thought +they +were +right +the +more +coloredpeople +spent +their +strength +trying +to +convince +them +how +gentle +they +were +how +clever +and +loving +how +human +the +more +they +used +themselves +up +to +persuade +whites +of +something +negroes +believed +could +not +be +questioned +the +deeper +and +more +tangled +the +jungle +grew +inside +but +it +wasn +t +the +jungle +blacks +brought +with +them +to +this +place +from +the +other +livable +place +it +was +the +jungle +whitefolks +planted +in +them +and +it +grew +it +spread +in +through +and +after +life +it +spread +until +it +invaded +the +whites +who +had +made +it +touched +them +every +one +changed +and +altered +them +made +them +bloody +silly +worse +than +even +they +wanted +to +be +so +scared +were +they +of +the +jungle +they +had +made +the +screaming +baboon +lived +under +their +own +white +skin +the +red +gums +were +their +own +meantime +the +secret +spread +of +this +new +kind +of +whitefolks +jungle +was +hidden +silent +except +once +in +a +while +when +you +could +hear +its +mumbling +in +places +like +stamp +paid +abandoned +his +efforts +to +see +about +sethe +after +the +pain +of +knocking +and +not +gaining +entrance +and +when +he +did +was +left +to +its +own +devices +when +sethe +locked +the +door +the +women +inside +were +free +at +last +to +be +what +they +liked +see +whatever +they +saw +and +say +whatever +was +on +their +minds +almost +mixed +in +with +the +voices +surrounding +the +house +recognizable +but +undecipherable +to +stamp +paid +were +the +thoughts +of +the +women +of +unspeakable +thoughts +unspoken +chapter +beloved +she +my +daughtyer +she +mine +see +she +come +back +to +me +of +her +own +free +will +and +i +don +t +have +to +explain +a +thing +i +didn +t +have +time +to +explain +before +because +it +had +to +be +done +quick +quick +she +had +to +be +safe +and +i +put +her +where +she +would +be +but +my +love +was +tough +and +she +back +now +i +knew +she +would +be +paul +d +ran +her +off +so +she +had +no +choice +but +to +come +back +to +me +in +the +flesh +i +bet +you +baby +suggs +on +the +other +side +helped +i +won +t +never +let +her +go +i +ll +explain +to +her +even +though +i +don +t +have +to +why +i +did +it +how +if +i +hadn +t +killed +her +she +would +have +died +and +that +is +something +i +could +not +bear +to +happen +to +her +when +i +explain +it +she +ll +understand +because +she +understands +everything +already +i +ll +tend +her +as +no +mother +ever +tended +a +child +a +daughter +nobody +will +ever +get +my +milk +no +more +except +my +own +children +i +never +had +to +give +it +to +nobody +else +and +the +one +time +i +did +it +was +took +from +me +they +held +me +down +and +took +it +milk +that +belonged +to +my +baby +nan +had +to +nurse +whitebabies +and +me +too +because +ma +am +was +in +the +rice +the +little +whitebabies +got +it +first +and +i +got +what +was +left +or +none +there +was +no +nursing +milk +to +call +my +own +i +know +what +it +is +to +be +without +the +milk +that +belongs +to +you +to +have +to +fight +and +holler +for +it +and +to +have +so +little +left +i +ll +tell +beloved +about +that +she +ll +understand +she +my +daughter +the +one +i +managed +to +have +milk +for +and +to +get +it +to +her +even +after +they +stole +it +after +they +handled +me +like +i +was +the +cow +no +the +goat +back +behind +the +stable +because +it +was +too +nasty +to +stay +in +with +the +horses +but +i +wasn +t +too +nasty +to +cook +their +food +or +take +care +of +mrs +garner +i +tended +her +like +i +would +have +tended +my +own +mother +if +she +needed +me +if +they +had +let +her +out +the +rice +field +because +i +was +the +one +she +didn +t +throw +away +i +couldn +t +have +done +more +for +that +woman +than +i +would +my +own +ma +am +if +she +was +to +take +sick +and +need +me +and +i +d +have +stayed +with +her +till +she +got +well +or +died +and +i +would +have +stayed +after +that +except +nan +snatched +me +back +before +i +could +check +for +the +sign +it +was +her +all +right +but +for +a +long +time +i +didn +t +believe +it +i +looked +everywhere +for +that +hat +stuttered +after +that +didn +t +stop +it +till +i +saw +halle +oh +but +that +s +all +over +now +i +m +here +i +lasted +and +my +girl +come +home +now +i +can +look +at +things +again +because +she +s +here +to +see +them +too +after +the +shed +i +stopped +now +in +the +morning +when +i +light +the +fire +i +mean +to +look +out +the +window +to +see +what +the +sun +is +doing +to +the +day +does +it +hit +the +pump +handle +first +or +the +spigot +see +if +the +grass +is +gray +green +or +brown +or +what +now +i +know +why +baby +suggs +pondered +color +her +last +years +she +never +had +time +to +see +let +alone +enjoy +it +before +took +her +a +long +time +to +finish +with +blue +then +yellow +then +green +she +was +well +into +pink +when +she +died +i +don +t +believe +she +wanted +to +get +to +red +and +i +understand +why +because +me +and +beloved +outdid +ourselves +with +it +matter +of +fact +that +and +her +pinkish +headstone +was +the +last +color +i +recall +now +i +ll +be +on +the +lookout +think +what +spring +will +he +for +us +i +ll +plant +carrots +just +so +she +can +see +them +and +turnips +have +you +ever +seen +one +baby +a +prettier +thing +god +never +made +white +and +purple +with +a +tender +tail +and +a +hard +head +feels +good +when +you +hold +it +in +your +hand +and +smells +like +the +creek +when +it +floods +bitter +but +happy +we +ll +smell +them +together +beloved +beloved +because +you +mine +and +i +have +to +show +you +these +things +and +teach +you +what +a +mother +should +funny +how +you +lose +sight +of +some +things +and +memory +others +i +never +will +forget +that +whitegirl +s +hands +amy +but +i +forget +the +color +of +all +that +hair +on +her +head +eyes +must +have +been +gray +though +seem +like +i +do +rememory +that +mrs +garner +s +was +light +brown +while +she +was +well +got +dark +when +she +took +sick +a +strong +woman +used +to +be +and +when +she +talked +off +her +head +she +d +say +it +i +used +to +be +strong +as +a +mule +jenny +called +me +jenny +when +she +was +babbling +and +i +can +bear +witness +to +that +tall +and +strong +the +two +of +us +on +a +cord +of +wood +was +as +good +as +two +men +hurt +her +like +the +devil +not +to +be +able +to +raise +her +head +off +the +pillow +still +can +t +figure +why +she +thought +she +needed +schoolteacher +though +i +wonder +if +she +lasted +like +i +did +last +time +i +saw +her +she +couldn +t +do +nothing +but +cry +and +i +couldn +t +do +a +thing +for +her +but +wipe +her +face +when +i +told +her +what +they +done +to +me +somebody +had +to +know +it +hear +it +somebody +maybe +she +lasted +schoolteacher +wouldn +t +treat +her +the +way +he +treated +me +first +beating +i +took +was +the +last +nobody +going +to +keep +me +from +my +children +hadn +t +been +for +me +taking +care +of +her +maybe +i +would +have +known +what +happened +maybe +halle +was +trying +to +get +to +me +i +stood +by +her +bed +waiting +for +her +to +finish +with +the +slop +jar +then +i +got +her +back +in +the +bed +she +said +she +was +cold +hot +as +blazes +and +she +wanted +quilts +said +to +shut +the +window +i +told +her +no +she +needed +the +cover +i +needed +the +breeze +long +as +those +yellow +curtains +flapped +i +was +all +right +should +have +heeded +her +maybe +what +sounded +like +shots +really +was +maybe +i +would +have +seen +somebody +or +something +maybe +anyhow +i +took +my +babies +to +the +corn +halle +or +no +jesus +then +i +heard +that +woman +s +rattle +she +said +any +more +i +told +her +i +didn +t +know +she +said +i +been +here +all +night +can +t +wait +i +tried +to +make +her +she +said +can +t +do +it +come +on +hoo +not +a +man +around +boys +scared +you +asleep +on +my +back +denver +sleep +in +my +stomach +felt +like +i +was +split +in +two +i +told +her +to +take +you +all +i +had +to +go +back +in +case +she +just +looked +at +me +said +woman +bit +a +piece +of +my +tongue +off +when +they +opened +my +back +it +was +hanging +by +a +shred +i +didn +t +mean +to +clamped +down +on +it +it +come +right +off +i +thought +good +god +i +m +going +to +eat +myself +up +they +dug +a +hole +for +my +stomach +so +as +not +to +hurt +the +baby +denver +don +t +like +for +me +to +talk +about +it +she +hates +anything +about +sweet +home +except +how +she +was +born +but +you +was +there +and +even +if +you +too +young +to +memory +it +i +can +tell +it +to +you +the +grape +arbor +you +memory +that +i +ran +so +fast +flies +beat +me +to +you +i +would +have +known +right +away +who +you +was +when +the +sun +blotted +out +your +face +the +way +it +did +when +i +took +you +to +the +grape +arbor +i +would +have +known +at +once +when +my +water +broke +the +minute +i +saw +you +sitting +on +the +stump +it +broke +and +when +i +did +see +your +face +it +had +more +than +a +hint +of +what +you +would +look +like +after +all +these +years +i +would +have +known +who +you +were +right +away +because +the +cup +after +cup +of +water +you +drank +proved +and +connected +to +the +fact +that +you +dribbled +clear +spit +on +my +face +the +day +i +got +to +i +would +have +known +right +off +but +paul +d +distracted +me +otherwise +i +would +have +seen +my +fingernail +prints +right +there +on +your +forehead +for +all +the +world +to +see +from +when +i +held +your +head +up +out +in +the +shed +and +later +on +when +you +asked +me +about +the +earrings +i +used +to +dangle +for +you +to +play +with +i +would +have +recognized +you +right +off +except +for +paul +d +seems +to +me +he +wanted +you +out +from +the +beginning +but +i +wouldn +t +let +him +what +you +think +and +look +how +he +ran +when +he +found +out +about +me +and +you +in +the +shed +too +rough +for +him +to +listen +to +too +thick +he +said +my +love +was +too +thick +what +he +know +about +it +who +in +the +world +is +he +willing +to +die +for +would +he +give +his +privates +to +a +stranger +in +return +for +a +carving +some +other +way +he +said +there +must +have +been +some +other +way +let +schoolteacher +haul +us +away +i +guess +to +measure +your +behind +before +he +tore +it +up +i +have +felt +what +it +felt +like +and +nobody +walking +or +stretched +out +is +going +to +make +you +feel +it +too +not +you +not +none +of +mine +and +when +i +tell +you +you +mine +i +also +mean +i +m +yours +i +wouldn +t +draw +breath +without +my +children +i +told +baby +suggs +that +and +she +got +down +on +her +knees +to +beg +god +s +pardon +for +me +still +it +s +so +my +plan +was +to +take +us +all +to +the +other +side +where +my +own +ma +am +is +they +stopped +me +from +getting +us +there +but +they +didn +t +stop +you +from +getting +here +ha +ha +you +came +right +on +back +like +a +good +girl +like +a +daughter +which +is +what +i +wanted +to +be +and +would +have +been +if +my +ma +am +had +been +able +to +get +out +of +the +rice +long +enough +before +they +hanged +her +and +let +me +be +one +you +know +what +she +d +had +the +bit +so +many +times +she +smiled +when +she +wasn +t +smiling +she +smiled +and +i +never +saw +her +own +smile +i +wonder +what +they +was +doing +when +they +was +caught +running +you +think +no +not +that +because +she +was +my +ma +am +and +nobody +s +ma +am +would +run +off +and +leave +her +daughter +would +she +would +she +now +leave +her +in +the +yard +with +a +one +armed +woman +even +if +she +hadn +t +been +able +to +suckle +the +daughter +for +more +than +a +week +or +two +and +had +to +turn +her +over +to +another +woman +s +tit +that +never +had +enough +for +all +they +said +it +was +the +bit +that +made +her +smile +when +she +didn +t +want +to +like +the +saturday +girls +working +the +slaughterhouse +yard +when +i +came +out +of +jail +i +saw +them +plain +they +came +when +the +shift +changed +on +saturday +when +the +men +got +paid +and +worked +behind +the +fences +back +of +the +outhouse +some +worked +standing +up +leaning +on +the +toolhouse +door +they +gave +some +of +their +nickels +and +dimes +to +the +foreman +as +they +left +but +by +then +their +smiles +was +over +some +of +them +drank +liquor +to +keep +from +feeling +what +they +felt +some +didn +t +drink +a +drop +just +beat +it +on +over +to +phelps +to +pay +for +what +their +children +needed +or +their +ma +ammies +working +a +pig +yard +that +has +got +to +be +something +for +a +woman +to +do +and +i +got +close +to +it +myself +when +i +got +out +of +jail +and +bought +so +to +speak +your +name +but +the +bodwins +got +me +the +cooking +job +at +sawyer +s +and +left +me +able +to +smile +on +my +own +like +now +when +i +think +about +you +but +you +know +all +that +because +you +smart +like +everybody +said +because +when +i +got +here +you +was +crawling +already +trying +to +get +up +the +stairs +baby +suggs +had +them +painted +white +so +you +could +see +your +way +to +the +top +in +the +dark +where +lamplight +didn +t +reach +lord +you +loved +the +stairsteps +i +got +close +i +got +close +to +being +a +saturday +girl +i +had +already +worked +a +stone +mason +s +shop +a +step +to +the +slaughterhouse +would +have +been +a +short +one +when +i +put +that +headstone +up +i +wanted +to +lay +in +there +with +you +put +your +head +on +my +shoulder +and +keep +you +warm +and +i +would +have +if +buglar +and +howard +and +denver +didn +t +need +me +because +my +mind +was +homeless +then +i +couldn +t +lay +down +with +you +then +no +matter +how +much +i +wanted +to +i +couldn +t +lay +down +nowhere +in +peace +back +then +now +i +can +i +can +sleep +like +the +drowned +have +mercy +she +come +back +to +me +my +daughter +and +she +is +mine +chapter +beloved +is +my +sister +i +swallowed +her +blood +right +along +with +my +mother +s +milk +the +first +thing +i +heard +after +not +hearing +anything +was +the +sound +of +her +crawling +up +the +stairs +she +was +my +secret +company +until +paul +d +came +he +threw +her +out +ever +since +i +was +little +she +was +my +company +and +she +helped +me +wait +for +my +daddy +me +and +her +waited +for +him +i +love +my +mother +but +i +know +she +killed +one +of +her +own +daughters +and +tender +as +she +is +with +me +i +m +scared +of +her +because +of +it +she +missed +killing +my +brothers +and +they +knew +it +they +told +me +die +witch +stories +to +show +me +the +way +to +do +it +if +ever +i +needed +to +maybe +it +was +getting +that +close +to +dying +made +them +want +to +fight +the +war +that +s +what +they +told +me +they +were +going +to +do +i +guess +they +rather +be +around +killing +men +than +killing +women +and +there +sure +is +something +in +her +that +makes +it +all +right +to +kill +her +own +all +the +time +i +m +afraid +the +thing +that +happened +that +made +it +all +right +for +my +mother +to +kill +my +sister +could +happen +again +i +don +t +know +what +it +is +i +don +t +know +who +it +is +but +maybe +there +is +something +else +terrible +enough +to +make +her +do +it +again +i +need +to +know +what +that +thing +might +be +but +i +don +t +want +to +whatever +it +is +it +comes +from +outside +this +house +outside +the +yard +and +it +can +come +right +on +in +the +yard +if +it +wants +to +so +i +never +leave +this +house +and +i +watch +over +the +yard +so +it +can +t +happen +again +and +my +mother +won +t +have +to +kill +me +too +not +since +miss +lady +jones +house +have +i +left +by +myself +never +the +only +other +times +two +times +in +all +i +was +with +my +mother +once +to +see +grandma +baby +put +down +next +to +beloved +she +s +my +sister +the +other +time +paul +d +went +too +and +when +we +came +back +i +thought +the +house +would +still +be +empty +from +when +he +threw +my +sister +s +ghost +out +but +no +when +i +came +back +to +there +she +was +beloved +waiting +for +me +tired +from +her +long +journey +back +ready +to +be +taken +care +of +ready +for +me +to +protect +her +this +time +i +have +to +keep +my +mother +away +from +her +that +s +hard +but +i +have +to +it +s +all +on +me +i +ve +seen +my +mother +in +a +dark +place +with +scratching +noises +a +smell +coming +from +her +dress +i +have +been +with +her +where +something +little +watched +us +from +the +corners +and +touched +sometimes +they +touched +i +didn +t +remember +it +for +a +long +time +until +nelson +lord +made +me +i +asked +her +if +it +was +true +but +couldn +t +hear +what +she +said +and +there +was +no +point +in +going +back +to +lady +jones +if +you +couldn +t +hear +what +anybody +said +so +quiet +made +me +have +to +read +faces +and +learn +how +to +figure +out +what +people +were +thinking +so +i +didn +t +need +to +hear +what +they +said +that +s +how +come +me +and +beloved +could +play +together +not +talking +on +the +porch +by +the +creek +in +the +secret +house +it +s +all +on +me +now +but +she +can +count +on +me +i +thought +she +was +trying +to +kill +her +that +day +in +the +clearing +kill +her +back +but +then +she +kissed +her +neck +and +i +have +to +warn +her +about +that +don +t +love +her +too +much +don +t +maybe +it +s +still +in +her +the +thing +that +makes +it +all +right +to +kill +her +children +i +have +to +tell +her +i +have +to +protect +her +she +cut +my +head +off +every +night +buglar +and +howard +told +me +she +would +and +she +did +her +pretty +eyes +looking +at +me +like +i +was +a +stranger +not +mean +or +anything +but +like +i +was +somebody +she +found +and +felt +sorry +for +like +she +didn +t +want +to +do +it +but +she +had +to +and +it +wasn +t +going +to +hurt +that +it +was +just +a +thing +grown +up +people +do +like +pull +a +splinter +out +your +hand +touch +the +corner +of +a +towel +in +your +eye +if +you +get +a +cinder +in +it +she +looks +over +at +buglar +and +howard +see +if +they +all +right +then +she +comes +over +to +my +side +i +know +she +ll +be +good +at +it +careful +that +when +she +cuts +it +off +it +ll +be +done +right +it +won +t +hurt +after +she +does +it +i +lie +there +for +a +minute +with +just +my +head +then +she +carries +it +downstairs +to +braid +my +hair +i +try +not +to +cry +but +it +hurts +so +much +to +comb +it +when +she +finishes +the +combing +and +starts +the +braiding +i +get +sleepy +i +want +to +go +to +sleep +but +i +know +if +i +do +i +won +t +wake +up +so +i +have +to +stay +awake +while +she +finishes +my +hair +then +i +can +sleep +the +scary +part +is +waiting +for +her +to +come +in +and +do +it +not +when +she +does +it +but +when +i +wait +for +her +to +only +place +she +can +t +get +to +me +in +the +night +is +grandma +baby +s +room +the +room +we +sleep +in +upstairs +used +to +be +where +the +help +slept +when +whitepeople +lived +here +they +had +a +kitchen +outside +too +but +grandma +baby +turned +it +into +a +woodshed +and +toolroom +when +she +moved +in +and +she +boarded +up +the +back +door +that +led +to +it +because +she +said +she +didn +t +want +to +make +that +journey +no +more +she +built +around +it +to +make +a +storeroom +so +if +you +want +to +get +in +you +have +to +come +by +her +said +she +didn +t +care +what +folks +said +about +her +fixing +a +two +story +house +up +like +a +cabin +where +you +cook +inside +she +said +they +told +her +visitors +with +nice +dresses +don +t +want +to +sit +in +the +same +room +with +the +cook +stove +and +the +peelings +and +the +grease +and +the +smoke +she +wouldn +t +pay +them +no +mind +she +said +i +was +safe +at +night +in +there +with +her +all +i +could +hear +was +me +breathing +but +sometimes +in +the +day +i +couldn +t +tell +whether +it +was +me +breathing +or +somebody +next +to +me +i +used +to +watch +here +boy +s +stomach +go +in +and +out +in +and +out +to +see +if +it +matched +mine +holding +my +breath +to +get +off +his +rhythm +releasing +it +to +get +on +just +to +see +whose +it +was +that +sound +like +when +you +blow +soft +in +a +bottle +only +regular +regular +am +i +making +that +sound +is +howard +who +is +that +was +when +everybody +was +quiet +and +i +couldn +t +hear +anything +they +said +i +didn +t +care +either +because +the +quiet +let +me +dream +my +daddy +better +i +always +knew +he +was +coming +something +was +holding +him +up +he +had +a +problem +with +the +horse +the +river +flooded +the +boat +sank +and +he +had +to +make +a +new +one +sometimes +it +was +a +lynch +mob +or +a +windstorm +he +was +coming +and +it +was +a +secret +i +spent +all +of +my +outside +self +loving +ma +am +so +she +wouldn +t +kill +me +loving +her +even +when +she +braided +my +head +at +night +i +never +let +her +know +my +daddy +was +coming +for +me +grandma +baby +thought +he +was +coming +too +for +a +while +she +thought +so +then +she +stopped +i +never +did +even +when +buglar +and +howard +ran +away +then +paul +d +came +in +here +i +heard +his +voice +downstairs +and +ma +am +laughing +so +i +thought +it +was +him +my +daddy +nobody +comes +to +this +house +anymore +but +when +i +got +downstairs +it +was +paul +d +and +he +didn +t +come +for +me +he +wanted +my +mother +at +first +then +he +wanted +my +sister +too +but +she +got +him +out +of +here +and +i +m +so +glad +he +s +gone +now +it +s +just +us +and +i +can +protect +her +till +my +daddy +gets +here +to +help +me +watch +out +for +ma +am +and +anything +come +in +the +yard +my +daddy +do +anything +for +runny +fried +eggs +dip +his +bread +in +it +grandma +used +to +tell +me +his +things +she +said +anytime +she +could +make +him +a +plate +of +soft +fried +eggs +was +christmas +made +him +so +happy +she +said +she +was +always +a +little +scared +of +my +daddy +he +was +too +good +she +said +from +the +beginning +she +said +he +was +too +good +for +the +world +scared +her +she +thought +he +ll +never +make +it +through +nothing +whitepeople +must +have +thought +so +too +because +they +never +got +split +up +so +she +got +the +chance +to +know +him +look +after +him +and +he +scared +her +the +way +he +loved +things +animals +and +tools +and +crops +and +the +alphabet +he +could +count +on +paper +the +boss +taught +him +offered +to +teach +the +other +boys +but +only +my +daddy +wanted +it +she +said +the +other +boys +said +no +one +of +them +with +a +number +for +a +name +said +it +would +change +his +mind +make +him +forget +things +he +shouldn +t +and +memorize +things +he +shouldn +t +and +he +didn +t +want +his +mind +messed +up +but +my +daddy +said +if +you +can +t +count +they +can +cheat +you +if +you +can +t +read +they +can +beat +you +they +thought +that +was +funny +grandma +said +she +didn +t +know +but +it +was +because +my +daddy +could +count +on +paper +and +figure +that +he +bought +her +away +from +there +and +she +said +she +always +wished +she +could +read +the +bible +like +real +preachers +so +it +was +good +for +me +to +learn +how +and +i +did +until +it +got +quiet +and +all +i +could +hear +was +my +own +breathing +and +one +other +who +knocked +over +the +milk +jug +while +it +was +sitting +on +the +table +nobody +near +it +ma +am +whipped +buglar +but +he +didn +t +touch +it +then +it +messed +up +all +the +ironed +clothes +and +put +its +hands +in +the +cake +look +like +i +was +the +only +one +who +knew +right +away +who +it +was +just +like +when +she +came +back +i +knew +who +she +was +too +not +right +away +but +soon +as +she +spelled +her +name +not +her +given +name +but +the +one +ma +am +paid +the +stonecutter +for +i +knew +and +when +she +wondered +about +ma +am +s +earrings +something +i +didn +t +know +about +well +that +just +made +the +cheese +more +binding +my +sister +come +to +help +me +wait +for +my +daddy +my +daddy +was +an +angel +man +he +could +look +at +you +and +tell +where +you +hurt +and +he +could +fix +it +too +he +made +a +hanging +thing +for +grandma +baby +so +she +could +pull +herself +up +from +the +floor +when +she +woke +up +in +the +morning +and +he +made +a +step +so +when +she +stood +up +she +was +level +grandma +said +she +was +always +afraid +a +whiteman +would +knock +her +down +in +front +of +her +children +she +behaved +and +did +everything +right +in +front +of +her +children +because +she +didn +t +want +them +to +see +her +knocked +down +she +said +it +made +children +crazy +to +see +that +at +sweet +home +nobody +did +or +said +they +would +so +my +daddy +never +saw +it +there +and +never +went +crazy +and +even +now +i +bet +he +s +trying +to +get +here +if +paul +d +could +do +it +my +daddy +could +too +angel +man +we +should +all +be +together +me +him +and +beloved +ma +am +could +stay +or +go +off +with +paul +d +if +she +wanted +to +unless +daddy +wanted +her +himself +but +i +don +t +think +he +would +now +since +she +let +paul +d +in +her +bed +grandma +baby +said +people +look +down +on +her +because +she +had +eight +children +with +different +men +coloredpeople +and +whitepeople +both +look +down +on +her +for +that +slaves +not +supposed +to +have +pleasurable +feelings +on +their +own +their +bodies +not +supposed +to +be +like +that +but +they +have +to +have +as +many +children +as +they +can +to +please +whoever +owned +them +still +they +were +not +supposed +to +have +pleasure +deep +down +she +said +for +me +not +to +listen +to +all +that +that +i +should +always +listen +to +my +body +and +love +it +the +secret +house +when +she +died +i +went +there +ma +am +wouldn +t +let +me +go +outside +in +the +yard +and +eat +with +the +others +we +stayed +inside +that +hurt +i +know +grandma +baby +would +have +liked +the +party +and +the +people +who +came +to +it +because +she +got +low +not +seeing +anybody +or +going +anywhere +just +grieving +and +thinking +about +colors +and +how +she +made +a +mistake +that +what +she +thought +about +what +the +heart +and +the +body +could +do +was +wrong +the +whitepeople +came +anyway +in +her +yard +she +had +done +everything +right +and +they +came +in +her +yard +anyway +and +she +didn +t +know +what +to +think +all +she +had +left +was +her +heart +and +they +busted +it +so +even +the +war +couldn +t +rouse +her +she +told +me +all +my +daddy +s +things +how +hard +he +worked +to +buy +her +after +the +cake +was +ruined +and +the +ironed +clothes +all +messed +up +and +after +i +heard +my +sister +crawling +up +the +stairs +to +get +back +to +her +bed +she +told +me +my +things +too +that +i +was +charmed +my +birth +was +and +i +got +saved +all +the +time +and +that +i +shouldn +t +be +afraid +of +the +ghost +it +wouldn +t +harm +me +because +i +tasted +its +blood +when +ma +am +nursed +me +she +said +the +ghost +was +after +ma +am +and +her +too +for +not +doing +anything +to +stop +it +but +it +would +never +hurt +me +i +just +had +to +watch +out +for +it +because +it +was +a +greedy +ghost +and +needed +a +lot +of +love +which +was +only +natural +considering +and +i +do +love +her +i +do +she +played +with +me +and +always +came +to +be +with +me +whenever +i +needed +her +she +s +mine +beloved +she +s +mine +chapter +i +am +beloved +and +she +is +mine +i +see +her +take +flowers +away +from +leaves +she +puts +them +in +a +round +basket +the +leaves +are +not +for +her +she +fills +the +basket +she +opens +the +grass +i +would +help +her +but +the +clouds +are +in +the +way +how +can +i +say +things +that +are +pictures +i +am +not +separate +from +her +there +is +no +place +where +i +stop +her +face +is +my +own +and +i +want +to +be +there +in +the +place +where +her +face +is +and +to +be +looking +at +it +too +a +hot +thing +all +of +it +is +now +it +is +always +now +there +will +never +be +a +time +when +i +am +not +crouching +and +watching +others +who +are +crouching +too +i +am +always +crouching +the +man +on +my +face +is +dead +his +face +is +not +mine +his +mouth +smells +sweet +but +his +eyes +are +locked +some +who +eat +nasty +themselves +i +do +not +eat +the +men +without +skin +bring +us +their +morning +water +to +drink +we +have +none +at +night +i +cannot +see +the +dead +man +on +my +face +daylight +comes +through +the +cracks +and +i +can +see +his +locked +eyes +i +am +not +big +small +rats +do +not +wait +for +us +to +sleep +someone +is +thrashing +but +there +is +no +room +to +do +it +in +if +we +had +more +to +drink +we +could +make +tears +we +cannot +make +sweat +or +morning +water +so +the +men +without +skin +bring +us +theirs +one +time +they +bring +us +sweet +rocks +to +suck +we +are +all +trying +to +leave +our +bodies +behind +the +man +on +my +face +has +done +it +it +is +hard +to +make +yourself +die +forever +you +sleep +short +and +then +return +in +the +beginning +we +could +vomit +now +we +do +not +now +we +cannot +his +teeth +are +pretty +white +points +someone +is +trembling +i +can +feel +it +over +here +he +is +fighting +hard +to +leave +his +body +which +is +a +small +bird +trembling +there +is +no +room +to +tremble +so +he +is +not +able +to +die +my +own +dead +man +is +pulled +away +from +my +face +i +miss +his +pretty +white +points +we +are +not +crouching +now +we +are +standing +but +my +legs +are +like +my +dead +man +s +eyes +i +cannot +fall +because +there +is +no +room +to +the +men +without +skin +are +making +loud +noises +i +am +not +dead +the +bread +is +sea +colored +i +am +too +hungry +to +eat +it +the +sun +closes +my +eyes +those +able +to +die +are +in +a +pile +i +cannot +find +my +man +the +one +whose +teeth +i +have +loved +a +hot +thing +the +little +hill +of +dead +people +a +hot +thing +the +men +without +skin +push +them +through +with +poles +the +woman +is +there +with +the +face +i +want +the +face +that +is +mine +they +fall +into +the +sea +which +is +the +color +of +the +bread +she +has +nothing +in +her +ears +if +i +had +the +teeth +of +the +man +who +died +on +my +face +i +would +bite +the +circle +around +her +neck +bite +it +away +i +know +she +does +not +like +it +now +there +is +room +to +crouch +and +to +watch +the +crouching +others +it +is +the +crouching +that +is +now +always +now +inside +the +woman +with +my +face +is +in +the +sea +a +hot +thing +in +the +beginning +i +could +see +her +i +could +not +help +her +because +the +clouds +were +in +the +way +in +the +beginning +i +could +see +her +the +shining +in +her +ears +she +does +not +like +the +circle +around +her +neck +i +know +this +i +look +hard +at +her +so +she +will +know +that +the +clouds +are +in +the +way +i +am +sure +she +saw +me +i +am +looking +at +her +see +me +she +empties +out +her +eyes +i +am +there +in +the +place +where +her +face +is +and +telling +her +the +noisy +clouds +were +in +my +way +she +wants +her +earrings +she +wants +her +round +basket +i +want +her +face +a +hot +thing +in +the +beginning +the +women +are +away +from +the +men +and +the +men +are +away +from +the +women +storms +rock +us +and +mix +the +men +into +the +women +and +the +women +into +the +men +that +is +when +i +begin +to +be +on +the +back +of +the +man +for +a +long +time +i +see +only +his +neck +and +his +wide +shoulders +above +me +i +am +small +i +love +him +because +he +has +a +song +when +he +turned +around +to +die +i +see +the +teeth +he +sang +through +his +singing +was +soft +his +singing +is +of +the +place +where +a +woman +takes +flowers +away +from +their +leaves +and +puts +them +in +a +round +basket +before +the +clouds +she +is +crouching +near +us +but +i +do +not +see +her +until +he +locks +his +eyes +and +dies +on +my +face +we +are +that +way +there +is +no +breath +coming +from +his +mouth +and +the +place +where +breath +should +be +is +sweet +smelling +the +others +do +not +know +he +is +dead +i +know +his +song +is +gone +now +i +love +his +pretty +little +teeth +instead +i +cannot +lose +her +again +my +dead +man +was +in +the +way +like +the +noisy +clouds +when +he +dies +on +my +face +i +can +see +hers +she +is +going +to +smile +at +me +she +is +going +to +her +sharp +earrings +are +gone +the +men +without +skin +are +making +loud +noises +they +push +my +own +man +through +they +do +not +push +the +woman +with +my +face +through +she +goes +in +they +do +not +push +her +she +goes +in +the +little +hill +is +gone +she +was +going +to +smile +at +me +she +was +going +to +a +hot +thing +they +are +not +crouching +now +we +are +they +are +floating +on +the +water +they +break +up +the +little +hill +and +push +it +through +i +cannot +find +my +pretty +teeth +i +see +the +dark +face +that +is +going +to +smile +at +me +it +is +my +dark +face +that +is +going +to +smile +at +me +the +iron +circle +is +around +our +neck +she +does +not +have +sharp +earrings +in +her +ears +or +a +round +basket +she +goes +in +the +water +with +my +face +i +am +standing +in +the +rain +falling +the +others +are +taken +i +am +not +taken +i +am +falling +like +the +rain +is +i +watch +him +eat +inside +i +am +crouching +to +keep +from +falling +with +the +rain +i +am +going +to +be +in +pieces +he +hurts +where +i +sleep +he +puts +his +finger +there +i +drop +the +food +and +break +into +pieces +she +took +my +face +away +there +is +no +one +to +want +me +to +say +me +my +name +i +wait +on +the +bridge +because +she +is +under +it +there +is +night +and +there +is +day +again +again +night +day +night +day +i +am +waiting +no +iron +circle +is +around +my +neck +no +boats +go +on +this +water +no +men +without +skin +my +dead +man +is +not +floating +here +his +teeth +are +down +there +where +the +blue +is +and +the +grass +so +is +the +face +i +want +the +face +that +is +going +to +smile +at +me +it +is +going +to +in +the +day +diamonds +are +in +the +water +where +she +is +and +turtles +in +the +night +i +hear +chewing +and +swallowing +and +laughter +it +belongs +to +me +she +is +the +laugh +i +am +the +laugher +i +see +her +face +which +is +mine +it +is +the +face +that +was +going +to +smile +at +me +in +the +place +where +we +crouched +now +she +is +going +to +her +face +comes +through +the +water +a +hot +thing +her +face +is +mine +she +is +not +smiling +she +is +chewing +and +swallowing +i +have +to +have +my +face +i +go +in +the +grass +opens +she +opens +it +i +am +in +the +water +and +she +is +coming +there +is +no +round +basket +no +iron +circle +around +her +neck +she +goes +up +where +the +diamonds +are +i +follow +her +we +are +in +the +diamonds +which +are +her +earrings +now +my +face +is +coming +i +have +to +have +it +i +am +looking +for +the +join +i +am +loving +my +face +so +much +my +dark +face +is +close +to +me +i +want +to +join +she +whispers +to +me +she +whispers +i +reach +for +her +chewing +and +swallowing +she +touches +me +she +knows +i +want +to +join +she +chews +and +swallows +me +i +am +gone +now +i +am +her +face +my +own +face +has +left +me +i +see +me +swim +away +a +hot +thing +i +see +the +bottoms +of +my +feet +i +am +alone +i +want +to +be +the +two +of +us +i +want +the +join +i +come +out +of +blue +water +after +the +bottoms +of +my +feet +swim +away +from +me +i +come +up +i +need +to +find +a +place +to +be +the +air +is +heavy +i +am +not +dead +i +am +not +there +is +a +house +there +is +what +she +whispered +to +me +i +am +where +she +told +me +i +am +not +dead +i +sit +the +sun +closes +my +eyes +when +i +open +them +i +see +the +face +i +lost +sethe +s +is +the +face +that +lef +me +sethe +sees +me +see +her +and +i +see +the +smile +her +smiling +face +is +the +place +for +me +it +is +the +face +i +lost +she +is +my +face +smiling +at +me +doing +it +at +last +a +hot +thing +now +we +can +join +a +hot +thing +chapter +i +am +beloved +and +she +is +mine +sethe +is +the +one +that +picked +flowers +yellow +flowers +in +the +place +before +the +crouching +took +them +away +from +their +green +leaves +they +are +on +the +quilt +now +where +we +sleep +she +was +about +to +smile +at +me +when +the +men +without +skin +came +and +took +us +up +into +the +sunlight +with +the +dead +and +shoved +them +into +the +sea +sethe +went +into +the +sea +she +went +there +they +did +not +push +her +she +went +there +she +was +getting +ready +to +smile +at +me +and +when +she +saw +the +dead +people +pushed +into +the +sea +she +went +also +and +left +me +there +with +no +face +or +hers +sethe +is +the +face +i +found +and +lost +in +the +water +under +the +bridge +when +i +went +in +i +saw +her +face +coming +to +me +and +it +was +my +face +too +i +wanted +to +join +i +tried +to +join +but +she +went +up +into +the +pieces +of +light +at +the +top +of +the +water +i +lost +her +again +but +i +found +the +house +she +whispered +to +me +and +there +she +was +smiling +at +last +it +s +good +but +i +cannot +lose +her +again +all +i +want +to +know +is +why +did +she +go +in +the +water +in +the +place +where +we +crouched +why +did +she +do +that +when +she +was +just +about +to +smile +at +me +i +wanted +to +join +her +in +the +sea +but +i +could +not +move +i +wanted +to +help +her +when +she +was +picking +the +flowers +but +the +clouds +of +gunsmoke +blinded +me +and +i +lost +her +three +times +i +lost +her +once +with +the +flowers +because +of +the +noisy +clouds +of +smoke +once +when +she +went +into +the +sea +instead +of +smiling +at +me +once +under +the +bridge +when +i +went +in +to +j +oin +her +and +she +came +toward +me +but +did +not +smile +she +whispered +to +me +chewed +me +and +swam +away +now +i +have +found +her +in +this +house +she +smiles +at +me +and +it +is +my +own +face +smiling +i +will +not +lose +her +again +she +is +mine +tell +me +the +truth +didn +t +you +come +from +the +other +side +yes +i +was +on +the +other +side +you +came +back +because +of +me +yes +you +rememory +me +yes +i +remember +you +you +never +forgot +me +your +face +is +mine +do +you +forgive +me +will +you +stay +you +safe +here +now +where +are +the +men +without +skin +out +there +way +off +can +they +get +in +here +no +they +tried +that +once +but +i +stopped +them +they +won +t +ever +come +back +one +of +them +was +in +the +house +i +was +in +he +hurt +me +they +can +t +hurt +us +no +more +where +are +your +earrings +they +took +them +from +me +the +men +without +skin +took +them +yes +i +was +going +to +help +you +but +the +clouds +got +in +the +way +there +re +no +clouds +here +if +they +put +an +iron +circle +around +your +neck +i +will +bite +it +away +beloved +i +will +make +you +a +round +basket +you +re +back +you +re +back +will +we +smile +at +me +can +t +you +see +i +m +smiling +i +love +your +face +we +played +by +the +creek +i +was +there +in +the +water +in +the +quiet +time +we +played +the +clouds +were +noisy +and +in +the +way +when +i +needed +you +you +came +to +be +with +me +i +needed +her +face +to +smile +i +could +only +hear +breathing +the +breathing +is +gone +only +the +teeth +are +left +she +said +you +wouldn +t +hurt +me +she +hurt +me +i +will +protect +you +i +want +her +face +don +t +love +her +too +much +i +am +loving +her +too +much +watch +out +for +her +she +can +give +you +dreams +she +chews +and +swallows +don +t +fall +asleep +when +she +braids +your +hair +she +is +the +laugh +i +am +the +laughter +i +watch +the +house +i +watch +the +yard +she +left +me +daddy +is +coming +for +us +a +hot +thing +beloved +you +are +my +sister +you +are +my +daughter +you +are +my +face +you +are +me +i +have +found +you +again +you +have +come +back +to +me +you +are +my +beloved +you +are +mine +you +are +mine +you +are +mine +i +have +your +milk +i +have +your +smile +i +will +take +care +of +you +you +are +my +face +i +am +you +why +did +you +leave +me +who +am +you +i +will +never +leave +you +again +don +t +ever +leave +me +again +you +will +never +leave +me +again +you +went +in +the +water +i +drank +your +blood +i +brought +your +milk +you +forgot +to +smile +i +loved +you +you +hurt +me +you +came +back +to +me +you +left +me +i +waited +for +you +you +are +mine +you +are +mine +you +are +mine +chapter +it +was +a +tiny +church +no +bigger +than +a +rich +man +s +parlor +the +pews +had +no +backs +and +since +the +congregation +was +also +the +choir +it +didn +t +need +a +stall +certain +members +had +been +assigned +the +construction +of +a +platform +to +raise +the +preacher +a +few +inches +above +his +congregation +but +it +was +a +less +than +urgent +task +since +the +major +elevation +a +white +oak +cross +had +already +taken +place +before +it +was +the +church +of +the +holy +redeemer +it +was +a +dry +goods +shop +that +had +no +use +for +side +windows +just +front +ones +for +display +these +were +papered +over +while +members +considered +whether +to +paint +or +curtain +them +how +to +have +privacy +without +losing +the +little +light +that +might +want +to +shine +on +them +in +the +summer +the +doors +were +left +open +for +ventilation +in +winter +an +iron +stove +in +the +aisle +did +what +it +could +at +the +front +of +the +church +was +a +sturdy +porch +where +customers +used +to +sit +and +children +laughed +at +the +boy +who +got +his +head +stuck +between +the +railings +on +a +sunny +and +windless +day +in +january +it +was +actually +warmer +out +there +than +inside +if +the +iron +stove +was +cold +the +damp +cellar +was +fairly +warm +but +there +was +no +light +lighting +the +pallet +or +the +washbasin +or +the +nail +from +which +a +man +s +clothes +could +be +hung +and +a +oil +lamp +in +a +cellar +was +sad +so +paul +d +sat +on +the +porch +steps +and +got +additional +warmth +from +a +bottle +of +liquor +jammed +in +his +coat +pocket +warmth +and +red +eyes +he +held +his +wrist +between +his +knees +not +to +keep +his +hands +still +but +because +he +had +nothing +else +to +hold +on +to +his +tobacco +tin +blown +open +spilled +contents +that +floated +freely +and +made +him +their +play +and +prey +he +couldn +t +figure +out +why +it +took +so +long +he +may +as +well +have +jumped +in +the +fire +with +sixo +and +they +both +could +have +had +a +good +laugh +surrender +was +bound +to +come +anyway +why +not +meet +it +with +a +laugh +shouting +seven +o +why +not +why +the +delay +he +had +already +seen +his +brother +wave +goodbye +from +the +back +of +a +dray +fried +chicken +in +his +pocket +tears +in +his +eyes +mother +father +didn +t +remember +the +one +never +saw +the +other +he +was +the +youngest +of +three +half +brothers +same +mother +different +fathers +sold +to +garner +and +kept +there +forbidden +to +leave +the +farm +for +twenty +years +once +in +maryland +he +met +four +families +of +slaves +who +had +all +been +together +for +a +hundred +years +great +grands +grands +mothers +fathers +aunts +uncles +cousins +children +half +white +part +white +all +black +mixed +with +indian +he +watched +them +with +awe +and +envy +and +each +time +he +discovered +large +families +of +black +people +he +made +them +identify +over +and +over +who +each +was +what +relation +who +in +fact +belonged +to +who +that +there +s +my +auntie +this +here +s +her +boy +yonder +is +my +pap +s +cousin +my +ma +am +was +married +twice +this +my +half +sister +and +these +her +two +children +now +my +wife +nothing +like +that +had +ever +been +his +and +growing +up +at +sweet +home +he +didn +t +miss +it +he +had +his +brothers +two +friends +baby +suggs +in +the +kitchen +a +boss +who +showed +them +how +to +shoot +and +listened +to +what +they +had +to +say +a +mistress +who +made +their +soap +and +never +raised +her +voice +for +twenty +years +they +had +all +lived +in +that +cradle +until +baby +left +sethe +came +and +halle +took +her +he +made +a +family +with +her +and +sixo +was +hell +bent +to +make +one +with +the +thirty +mile +woman +when +paul +d +waved +goodbye +to +his +oldest +brother +the +boss +was +dead +the +mistress +nervous +and +the +cradle +already +split +sixo +said +the +doctor +made +mrs +garner +sick +said +he +was +giving +her +to +drink +what +stallions +got +when +they +broke +a +leg +and +no +gunpowder +could +be +spared +and +had +it +not +been +for +schoolteacher +s +new +rules +he +would +have +told +her +so +they +laughed +at +him +sixo +had +a +knowing +tale +about +everything +including +mr +garner +s +stroke +which +he +said +was +a +shot +in +his +ear +put +there +by +a +jealous +neighbor +where +s +the +blood +they +asked +him +there +was +no +blood +mr +garner +came +home +bent +over +his +mare +s +neck +sweating +and +blue +white +not +a +drop +of +blood +sixo +grunted +the +only +one +of +them +not +sorry +to +see +him +go +later +however +he +was +mighty +sorry +they +all +were +why +she +call +on +him +paul +d +asked +why +she +need +the +schoolteacher +she +need +somebody +can +figure +said +halle +you +can +do +figures +not +like +that +no +man +said +sixo +she +need +another +white +on +the +place +what +for +what +you +think +what +you +think +well +that +s +the +way +it +was +nobody +counted +on +garner +dying +nobody +thought +he +could +how +bout +that +everything +rested +on +garner +being +alive +without +his +life +each +of +theirs +fell +to +pieces +now +ain +t +that +slavery +or +what +is +it +at +the +peak +of +his +strength +taller +than +tall +men +and +stronger +than +most +they +clipped +him +paul +d +first +his +shotgun +then +his +thoughts +for +schoolteacher +didn +t +take +advice +from +negroes +the +information +they +offered +he +called +backtalk +and +developed +a +variety +of +corrections +which +he +recorded +in +his +notebook +to +reeducate +them +he +complained +they +ate +too +much +rested +too +much +talked +too +much +which +was +certainly +true +compared +to +him +because +schoolteacher +ate +little +spoke +less +and +rested +not +at +all +once +he +saw +them +playing +a +pitching +game +and +his +look +of +deeply +felt +hurt +was +enough +to +make +paul +d +blink +he +was +as +hard +on +his +pupils +as +he +was +on +them +except +for +the +corrections +for +years +paul +d +believed +schoolteacher +broke +into +children +what +garner +had +raised +into +men +and +it +was +that +that +made +them +run +off +now +plagued +by +the +contents +of +his +tobacco +tin +he +wondered +how +much +difference +there +really +was +between +before +schoolteacher +and +after +garner +called +and +announced +them +men +but +only +on +sweet +home +and +by +his +leave +was +he +naming +what +he +saw +or +creating +what +he +did +not +that +was +the +wonder +of +sixo +and +even +halle +it +was +always +clear +to +paul +d +that +those +two +were +men +whether +garner +said +so +or +not +it +troubled +him +that +concerning +his +own +manhood +he +could +not +satisfy +himself +on +that +point +oh +he +did +manly +things +but +was +that +garner +s +gift +or +his +own +will +what +would +he +have +been +anyway +before +sweet +home +without +garner +in +sixo +s +country +or +his +mother +s +or +god +help +him +on +the +boat +did +a +whiteman +saying +it +make +it +so +suppose +garner +woke +up +one +morning +and +changed +his +mind +took +the +word +away +would +they +have +run +then +and +if +he +didn +t +would +the +pauls +have +stayed +there +all +their +lives +why +did +the +brothers +need +the +one +whole +night +to +decide +to +discuss +whether +they +would +join +sixo +and +halle +because +they +had +been +isolated +in +a +wonderful +lie +dismissing +halle +s +and +baby +suggs +life +before +sweet +home +as +bad +luck +ignorant +of +or +amused +by +sixo +s +dark +stories +protected +and +convinced +they +were +special +never +suspecting +the +problem +of +alfred +georgia +being +so +in +love +with +the +look +of +the +world +putting +up +with +anything +and +everything +just +to +stay +alive +in +a +place +where +a +moon +he +had +no +right +to +was +nevertheless +there +loving +small +and +in +secret +his +little +love +was +a +tree +of +course +but +not +like +brother +old +wide +and +beckoning +in +alfred +georgia +there +was +an +aspen +too +young +to +call +sapling +just +a +shoot +no +taller +than +his +waist +the +kind +of +thing +a +man +would +cut +to +whip +his +horse +song +murder +and +the +aspen +he +stayed +alive +to +sing +songs +that +murdered +life +and +watched +an +aspen +that +confirmed +it +and +never +for +a +minute +did +he +believe +he +could +escape +until +it +rained +afterward +after +the +cherokee +pointed +and +sent +him +running +toward +blossoms +he +wanted +simply +to +move +go +pick +up +one +day +and +be +somewhere +else +the +next +resigned +to +life +without +aunts +cousins +children +even +a +woman +until +sethe +and +then +she +moved +him +just +when +doubt +regret +and +every +single +unasked +question +was +packed +away +long +after +he +believed +he +had +willed +himself +into +being +at +the +very +time +and +place +he +wanted +to +take +root +she +moved +him +from +room +to +room +like +a +rag +doll +sitting +on +the +porch +of +a +dry +goods +church +a +little +bit +drunk +and +nothing +much +to +do +he +could +have +these +thoughts +slow +what +if +thoughts +that +cut +deep +but +struck +nothing +solid +a +man +could +hold +on +to +so +he +held +his +wrists +passing +by +that +woman +s +life +getting +in +it +and +letting +it +get +in +him +had +set +him +up +for +this +fall +wanting +to +live +out +his +life +with +a +whole +woman +was +new +and +losing +the +feeling +of +it +made +him +want +to +cry +and +think +deep +thoughts +that +struck +nothing +solid +when +he +was +drifting +thinking +only +about +the +next +meal +and +night +s +sleep +when +everything +was +packed +tight +in +his +chest +he +had +no +sense +of +failure +of +things +not +working +out +anything +that +worked +at +all +worked +out +now +he +wondered +what +all +went +wrong +and +starting +with +the +plan +everything +had +it +was +a +good +plan +too +worked +out +in +detail +with +every +possibility +of +error +eliminated +sixo +hitching +up +the +horses +is +speaking +english +again +and +tells +halle +what +his +thirty +mile +woman +told +him +that +seven +negroes +on +her +place +were +joining +two +others +going +north +that +the +two +others +had +done +it +before +and +knew +the +way +that +one +of +the +two +a +woman +would +wait +for +them +in +the +corn +when +it +was +high +one +night +and +half +of +the +next +day +she +would +wait +and +if +they +came +she +would +take +them +to +the +caravan +where +the +others +would +be +hidden +that +she +would +rattle +and +that +would +be +the +sign +sixo +was +going +his +woman +was +going +and +halle +was +taking +his +whole +family +the +two +pauls +say +they +need +time +to +think +about +it +time +to +wonder +where +they +will +end +up +how +they +will +live +what +work +who +will +take +them +in +should +they +try +to +get +to +paul +f +whose +owner +they +remember +lived +in +something +called +the +trace +it +takes +them +one +evening +s +conversation +to +decide +now +all +they +have +to +do +is +wait +through +the +spring +till +the +corn +is +as +high +as +it +ever +got +and +the +moon +as +fat +and +plan +is +it +better +to +leave +in +the +dark +to +get +a +better +start +or +go +at +daybreak +to +be +able +to +see +the +way +better +sixo +spits +at +the +suggestion +night +gives +them +more +time +and +the +protection +of +color +he +does +not +ask +them +if +they +are +afraid +he +manages +some +dry +runs +to +the +corn +at +night +burying +blankets +and +two +knives +near +the +creek +will +sethe +be +able +to +swim +the +creek +they +ask +him +it +will +be +dry +he +says +when +the +corn +is +tall +there +is +no +food +to +put +by +but +sethe +says +she +will +get +a +jug +of +cane +syrup +or +molasses +and +some +bread +when +it +is +near +the +time +to +go +she +only +wants +to +be +sure +the +blankets +are +where +they +should +be +for +they +will +need +them +to +tie +her +baby +on +her +back +and +to +cover +them +during +the +journey +there +are +no +clothes +other +than +what +they +wear +and +of +course +no +shoes +the +knives +will +help +them +eat +but +they +bury +rope +and +a +pot +as +well +a +good +plan +they +watch +and +memorize +the +comings +and +goings +of +schoolteacher +and +his +pupils +what +is +wanted +when +and +where +how +long +it +takes +mrs +garner +restless +at +night +is +sunk +in +sleep +all +morning +some +days +the +pupils +and +their +teacher +do +lessons +until +breakfast +one +day +a +week +they +skip +breakfast +completely +and +travel +ten +miles +to +church +expecting +a +large +dinner +upon +their +return +schoolteacher +writes +in +his +notebook +after +supper +the +pupils +clean +mend +or +sharpen +tools +sethe +s +work +is +the +most +uncertain +because +she +is +on +call +for +mrs +garner +anytime +including +nighttime +when +the +pain +or +the +weakness +or +the +downright +loneliness +is +too +much +for +her +so +sixo +and +the +pauls +will +go +after +supper +and +wait +in +the +creek +for +the +thirty +mile +woman +halle +will +bring +sethe +and +the +three +children +before +dawn +before +the +sun +before +the +chickens +and +the +milking +cow +need +attention +so +by +the +time +smoke +should +be +coming +from +the +cooking +stove +they +will +be +in +or +near +the +creek +with +the +others +that +way +if +mrs +garner +needs +sethe +in +the +night +and +calls +her +sethe +will +be +there +to +answer +they +only +have +to +wait +through +the +spring +but +sethe +was +pregnant +in +the +spring +and +by +august +is +so +heavy +with +child +she +may +not +be +able +to +keep +up +with +the +men +who +can +carry +the +children +but +not +her +but +neighbors +discouraged +by +garner +when +he +was +alive +now +feel +free +to +visit +sweet +home +and +might +appear +in +the +right +place +at +the +wrong +time +but +sethe +s +children +cannot +play +in +the +kitchen +anymore +so +she +is +dashing +back +and +forth +between +house +and +quarters +fidgety +and +frustrated +trying +to +watch +over +them +they +are +too +young +for +men +s +work +and +the +baby +girl +is +nine +months +old +without +mrs +garner +s +help +her +work +increases +as +do +schoolteacher +s +demands +but +after +the +conversation +about +the +shoat +sixo +is +tied +up +with +the +stock +at +night +and +locks +are +put +on +bins +pens +sheds +coops +the +tackroom +and +the +barn +door +there +is +no +place +to +dart +into +or +congregate +sixo +keeps +a +nail +in +his +mouth +now +to +help +him +undo +the +rope +when +he +has +to +but +halle +is +told +to +work +his +extra +on +sweet +home +and +has +no +call +to +be +anywhere +other +than +where +schoolteacher +tells +him +only +sixo +who +has +been +stealing +away +to +see +his +woman +and +halle +who +has +been +hired +away +for +years +know +what +lies +outside +sweet +home +and +how +to +get +there +it +is +a +good +plan +it +can +be +done +right +under +the +watchful +pupils +and +their +teacher +but +they +had +to +alter +it +just +a +little +first +they +change +the +leaving +they +memorize +the +directions +halle +gives +them +sixo +needing +time +to +untie +himself +break +open +the +door +and +not +disturb +the +horses +will +leave +later +joining +them +at +the +creek +with +the +thirty +mile +woman +all +four +will +go +straight +to +the +corn +halle +who +also +needs +more +time +now +because +of +sethe +decides +to +bring +her +and +the +children +at +night +not +wait +till +first +light +they +will +go +straight +to +the +corn +and +not +assemble +at +the +creek +the +corn +stretches +to +their +shoulders +it +will +never +be +higher +the +moon +is +swelling +they +can +hardly +harvest +or +chop +or +clear +or +pick +or +haul +for +listening +for +a +rattle +that +is +not +bird +or +snake +then +one +midmorning +they +hear +it +or +halle +does +and +begins +to +sing +it +to +the +others +hush +hush +somebody +s +calling +my +name +hush +hush +somebody +s +calling +my +name +o +my +lord +o +my +lord +what +shall +i +do +on +his +dinner +break +he +leaves +the +field +he +has +to +he +has +to +tell +sethe +that +he +has +heard +the +sign +for +two +successive +nights +she +has +been +with +mrs +garner +and +he +can +t +chance +it +that +she +will +not +know +that +this +night +she +cannot +be +the +pauls +see +him +go +from +underneath +brother +s +shade +where +they +are +chewing +corn +cake +they +see +him +swinging +along +the +bread +tastes +good +they +lick +sweat +from +their +lips +to +give +it +a +saltier +flavor +schoolteacher +and +his +pupils +are +already +at +the +house +eating +dinner +halle +swings +along +he +is +not +singing +now +nobody +knows +what +happened +except +for +the +churn +that +was +the +last +anybody +ever +saw +of +halle +what +paul +d +knew +was +that +halle +disappeared +never +told +sethe +anything +and +was +next +seen +squatting +in +butter +maybe +when +he +got +to +the +gate +and +asked +to +see +sethe +schoolteacher +heard +a +tint +of +anxiety +in +his +voice +the +tint +that +would +make +him +pick +up +his +ever +ready +shotgun +maybe +halle +made +the +mistake +of +saying +my +wife +in +some +way +that +would +put +a +light +in +schoolteacher +s +eye +sethe +says +now +that +she +heard +shots +but +did +not +look +out +the +window +of +mrs +garner +s +bedroom +but +halle +was +not +killed +or +wounded +that +day +because +paul +d +saw +him +later +after +she +had +run +off +with +no +one +s +help +after +sixo +laughed +and +his +brother +disappeared +saw +him +greased +and +flat +eyed +as +a +fish +maybe +schoolteacher +shot +after +him +shot +at +his +feet +to +remind +him +of +the +trespass +maybe +halle +got +in +the +barn +hid +there +and +got +locked +in +with +the +rest +of +schoolteacher +s +stock +maybe +anything +he +disappeared +and +everybody +was +on +his +own +paul +a +goes +back +to +moving +timber +after +dinner +they +are +to +meet +at +quarters +for +supper +he +never +shows +up +paul +d +leaves +for +the +creek +on +time +believing +hoping +paul +a +has +gone +on +ahead +certain +schoolteacher +has +learned +something +paul +d +gets +to +the +creek +and +it +is +as +dry +as +sixo +promised +he +waits +there +with +the +thirty +mile +woman +for +sixo +and +paul +a +only +sixo +shows +up +his +wrists +bleeding +his +tongue +licking +his +lips +like +a +flame +you +see +paul +a +no +halle +no +no +sign +of +them +no +sign +nobody +in +quarters +but +the +children +sethe +her +children +sleep +she +must +be +there +still +i +can +t +leave +without +paul +a +i +can +t +help +you +should +i +go +back +and +look +for +them +i +can +t +help +you +what +you +think +i +think +they +go +straight +to +the +corn +sixo +turns +then +to +the +woman +and +they +clutch +each +other +and +whisper +she +is +lit +now +with +some +glowing +some +shining +that +comes +from +inside +her +before +when +she +knelt +on +creek +pebbles +with +paul +d +she +was +nothing +a +shape +in +the +dark +breathing +lightly +sixo +is +about +to +crawl +out +to +look +for +the +knives +he +buried +he +hears +something +he +hears +nothing +forget +the +knives +now +the +three +of +them +climb +up +the +bank +and +schoolteacher +his +pupils +and +four +other +whitemen +move +toward +them +with +lamps +sixo +pushes +the +thirty +mile +woman +and +she +runs +further +on +in +the +creekbed +paul +d +and +sixo +run +the +other +way +toward +the +woods +both +are +surrounded +and +tied +the +air +gets +sweet +then +perfumed +by +the +things +honeybees +love +tied +like +a +mule +paul +d +feels +how +dewy +and +inviting +the +grass +is +he +is +thinking +about +that +and +where +paul +a +might +be +when +sixo +turns +and +grabs +the +mouth +of +the +nearest +pointing +rifle +he +begins +to +sing +two +others +shove +paul +d +and +tie +him +to +a +tree +schoolteacher +is +saying +alive +alive +i +want +him +alive +sixo +swings +and +cracks +the +ribs +of +one +but +with +bound +hands +cannot +get +the +weapon +in +position +to +use +it +in +any +other +way +all +the +whitemen +have +to +do +is +wait +for +his +song +perhaps +to +end +five +guns +are +trained +on +him +while +they +listen +paul +d +cannot +see +them +when +they +step +away +from +lamplight +finally +one +of +them +hits +sixo +in +the +head +with +his +rifle +and +when +he +comes +to +a +hickory +fire +is +in +front +of +him +and +he +is +tied +at +the +waist +to +a +tree +schoolteacher +has +changed +his +mind +this +one +will +never +be +suitable +the +song +must +have +convinced +him +the +fire +keeps +failing +and +the +whitemen +are +put +out +with +themselves +at +not +being +prepared +for +this +emergency +they +came +to +capture +not +kill +what +they +can +manage +is +only +enough +for +cooking +hominy +dry +faggots +are +scarce +and +the +grass +is +slick +with +dew +by +the +light +of +the +hominy +fire +sixo +straightens +he +is +through +with +his +song +he +laughs +a +rippling +sound +like +sethe +s +sons +make +when +they +tumble +in +hay +or +splash +in +rainwater +his +feet +are +cooking +the +cloth +of +his +trousers +smokes +he +laughs +something +is +funny +paul +d +guesses +what +it +is +when +sixo +interrupts +his +laughter +to +call +out +seven +o +seven +o +smoky +stubborn +fire +they +shoot +him +to +shut +him +up +have +to +shackled +walking +through +the +perfumed +things +honeybees +love +paul +d +hears +the +men +talking +and +for +the +first +time +learns +his +worth +he +has +always +known +or +believed +he +did +his +value +as +a +hand +a +laborer +who +could +make +profit +on +a +farm +but +now +he +discovers +his +worth +which +is +to +say +he +learns +his +price +the +dollar +value +of +his +weight +his +strength +his +heart +his +brain +his +penis +and +his +future +as +soon +as +the +whitemen +get +to +where +they +have +tied +their +horses +and +mount +them +they +are +calmer +talking +among +themselves +about +the +difficulty +they +face +the +problems +voices +remind +schoolteacher +about +the +spoiling +these +particular +slaves +have +had +at +garner +s +hands +there +s +laws +against +what +he +done +letting +niggers +hire +out +their +own +time +to +buy +themselves +he +even +let +em +have +guns +and +you +think +he +mated +them +niggers +to +get +him +some +more +hell +no +he +planned +for +them +to +marry +if +that +don +t +beat +all +schoolteacher +sighs +and +says +doesn +t +he +know +it +he +had +come +to +put +the +place +aright +now +it +faced +greater +ruin +than +what +garner +left +for +it +because +of +the +loss +of +two +niggers +at +the +least +and +maybe +three +because +he +is +not +sure +they +will +find +the +one +called +halle +the +sister +in +law +is +too +weak +to +help +out +and +doggone +if +now +there +ain +t +a +full +scale +stampede +on +his +hands +he +would +have +to +trade +this +here +one +for +if +he +could +get +it +and +set +out +to +secure +the +breeding +one +her +foal +and +the +other +one +if +he +found +him +with +the +money +from +this +here +one +he +could +get +two +young +ones +twelve +or +fifteen +years +old +and +maybe +with +the +breeding +one +her +three +pickaninnies +and +whatever +the +foal +might +be +he +and +his +nephews +would +have +seven +niggers +and +sweet +home +would +be +worth +the +trouble +it +was +causing +him +look +to +you +like +lillian +gonna +make +it +touch +and +go +touch +and +go +you +was +married +to +her +sister +in +law +wasn +t +you +i +was +she +frail +too +a +bit +fever +took +her +well +you +don +t +need +to +stay +no +widower +in +these +parts +my +cogitation +right +now +is +sweet +home +can +t +say +as +i +blame +you +that +s +some +spread +they +put +a +three +spoke +collar +on +him +so +he +can +t +lie +down +and +they +chain +his +ankles +together +the +number +he +heard +with +his +ear +is +now +in +his +head +two +two +two +niggers +lost +paul +d +thinks +his +heart +is +jumping +they +are +going +to +look +for +halle +not +paul +a +they +must +have +found +paul +a +and +if +a +whiteman +finds +you +it +means +you +are +surely +lost +schoolteacher +looks +at +him +for +a +long +time +before +he +closes +the +door +of +the +cabin +carefully +he +looks +paul +d +does +not +look +back +it +is +sprinkling +now +a +teasing +august +rain +that +raises +expectations +it +cannot +fill +he +thinks +he +should +have +sung +along +loud +something +loud +and +rolling +to +go +with +sixo +s +tune +but +the +words +put +him +off +he +didn +t +understand +the +words +although +it +shouldn +t +have +mattered +because +he +understood +the +sound +hatred +so +loose +it +was +juba +the +warm +sprinkle +comes +and +goes +comes +and +goes +he +thinks +he +hears +sobbing +that +seems +to +come +from +mrs +garner +s +window +but +it +could +be +anything +anyone +even +a +she +cat +making +her +yearning +known +tired +of +holding +his +head +up +he +lets +his +chin +rest +on +the +collar +and +speculates +on +how +he +can +hobble +over +to +the +grate +boil +a +little +water +and +throw +in +a +handful +of +meal +that +s +what +he +is +doing +when +sethe +comes +in +rain +wet +and +big +bellied +saying +she +is +going +to +cut +she +has +just +come +back +from +taking +her +children +to +the +corn +the +whites +were +not +around +she +couldn +t +find +halle +who +was +caught +did +sixo +get +away +paul +a +he +tells +her +what +he +knows +sixo +is +dead +the +thirty +mile +woman +ran +and +he +doesn +t +know +what +happened +to +paul +a +or +halle +where +could +he +be +she +asks +paul +d +shrugs +because +he +can +t +shake +his +head +you +saw +sixo +die +you +sure +i +m +sure +was +he +woke +when +it +happened +did +he +see +it +coming +he +was +woke +woke +and +laughing +sixo +laughed +you +should +have +heard +him +sethe +sethe +s +dress +steams +before +the +little +fire +over +which +he +is +boiling +water +it +is +hard +to +move +about +with +shackled +ankles +and +the +neck +jewelry +embarrasses +him +in +his +shame +he +avoids +her +eyes +but +when +he +doesn +t +he +sees +only +black +in +them +no +whites +she +says +she +is +going +and +he +thinks +she +will +never +make +it +to +the +gate +but +he +doesn +t +dissuade +her +he +knows +he +will +never +see +her +again +and +right +then +and +there +his +heart +stopped +the +pupils +must +have +taken +her +to +the +barn +for +sport +right +afterward +and +when +she +told +mrs +garner +they +took +down +the +cowhide +who +in +hell +or +on +this +earth +would +have +thought +that +she +would +cut +anyway +they +must +have +believed +what +with +her +belly +and +her +back +that +she +wasn +t +going +anywhere +he +wasn +t +surprised +to +learn +that +they +had +tracked +her +down +in +cincinnati +because +when +he +thought +about +it +now +her +price +was +greater +than +his +property +that +reproduced +itself +without +cost +remembering +his +own +price +down +to +the +cent +that +schoolteacher +was +able +to +get +for +him +he +wondered +what +sethe +s +would +have +been +what +had +baby +suggs +been +how +much +did +halle +owe +still +besides +his +labor +what +did +mrs +garner +get +for +paul +f +more +than +nine +hundred +dollars +how +much +more +ten +dollars +twenty +schoolteacher +would +know +he +knew +the +worth +of +everything +it +accounted +for +the +real +sorrow +in +his +voice +when +he +pronounced +sixo +unsuitable +who +could +be +fooled +into +buying +a +singing +nigger +with +a +gun +shouting +seven +o +seven +o +because +his +thirty +mile +woman +got +away +with +his +blossoming +seed +what +a +laugh +so +rippling +and +full +of +glee +it +put +out +the +fire +and +it +was +sixo +s +laughter +that +was +on +his +mind +not +the +bit +in +his +mouth +when +they +hitched +him +to +the +buckboard +then +he +saw +halle +then +the +rooster +smiling +as +if +to +say +you +ain +t +seen +nothing +yet +how +could +a +rooster +know +about +alfred +georgia +chapter +howdy +stamp +paid +was +still +fingering +the +ribbon +and +it +made +a +little +motion +in +his +pants +pocket +paul +d +looked +up +noticed +the +side +pocket +agitation +and +snorted +i +can +t +read +you +got +any +more +newspaper +for +me +just +a +waste +of +time +stamp +withdrew +the +ribbon +and +sat +down +on +the +steps +no +this +here +s +something +else +he +stroked +the +red +cloth +between +forefinger +and +thumb +something +else +paul +d +didn +t +say +anything +so +the +two +men +sat +in +silence +for +a +few +moments +this +is +hard +for +me +said +stamp +but +i +got +to +do +it +two +things +i +got +to +say +to +you +i +m +a +take +the +easy +one +first +paul +d +chuckled +if +it +s +hard +for +you +might +kill +me +dead +no +no +nothing +like +that +i +come +looking +for +you +to +ask +your +pardon +apologize +for +what +paul +d +reached +in +his +coat +pocket +for +his +bottle +you +pick +any +house +any +house +where +colored +live +in +all +of +cincinnati +pick +any +one +and +you +welcome +to +stay +there +i +m +apologizing +because +they +didn +t +offer +or +tell +you +but +you +welcome +anywhere +you +want +to +be +my +house +is +your +house +too +john +and +ella +miss +lady +able +woodruff +willie +pike +anybody +you +choose +you +ain +t +got +to +sleep +in +no +cellar +and +i +apologize +for +each +and +every +night +you +did +i +don +t +know +how +that +preacher +let +you +do +it +i +knowed +him +since +he +was +a +boy +whoa +stamp +he +offered +did +well +well +i +wanted +i +didn +t +want +to +i +just +wanted +to +be +off +by +myself +a +spell +he +offered +every +time +i +see +him +he +offers +again +that +s +a +load +off +i +thought +everybody +gone +crazy +paul +d +shook +his +head +just +me +you +planning +to +do +anything +about +it +oh +yeah +i +got +big +plans +he +swallowed +twice +from +the +bottle +any +planning +in +a +bottle +is +short +thought +stamp +but +he +knew +from +personal +experience +the +pointlessness +of +telling +a +drinking +man +not +to +he +cleared +his +sinuses +and +began +to +think +how +to +get +to +the +second +thing +he +had +come +to +say +very +few +people +were +out +today +the +canal +was +frozen +so +that +traffic +too +had +stopped +they +heard +the +dop +of +a +horse +approaching +its +rider +sat +a +high +eastern +saddle +but +everything +else +about +him +was +ohio +valley +as +he +rode +by +he +looked +at +them +and +suddenly +reined +his +horse +and +came +up +to +the +path +leading +to +the +church +he +leaned +forward +hey +he +said +stamp +put +his +ribbon +in +his +pocket +yes +sir +i +m +looking +for +a +gal +name +of +judy +works +over +by +the +slaughterhouse +don +t +believe +i +know +her +no +sir +said +she +lived +on +plank +road +plank +road +yes +sir +that +s +up +a +ways +mile +maybe +you +don +t +know +her +judy +works +in +the +slaughterhouse +no +sir +but +i +know +plank +road +bout +a +mile +up +thataway +paul +d +lifted +his +bottle +and +swallowed +the +rider +looked +at +him +and +then +back +at +stamp +paid +loosening +the +right +rein +he +turned +his +horse +toward +the +road +then +changed +his +mind +and +came +back +look +here +he +said +to +paul +d +there +s +a +cross +up +there +so +i +guess +this +here +s +a +church +or +used +to +be +seems +to +me +like +you +ought +to +show +it +some +respect +you +follow +me +yes +sir +said +stamp +you +right +about +that +that +s +just +what +i +come +over +to +talk +to +him +about +just +that +the +rider +clicked +his +tongue +and +trotted +off +stamp +made +small +circles +in +the +palm +of +his +left +hand +with +two +fingers +of +his +right +you +got +to +choose +he +said +choose +anyone +they +let +you +be +if +you +want +em +to +my +house +ella +willie +pike +none +of +us +got +much +but +all +of +us +got +room +for +one +more +pay +a +little +something +when +you +can +don +t +when +you +can +t +think +about +it +you +grown +i +can +t +make +you +do +what +you +won +t +but +think +about +it +paul +d +said +nothing +if +i +did +you +harm +i +m +here +to +rectify +it +no +need +for +that +no +need +at +all +a +woman +with +four +children +walked +by +on +the +other +side +of +the +road +she +waved +smiling +hoo +oo +i +can +t +stop +see +you +at +meeting +i +be +there +stamp +returned +her +greeting +there +s +another +one +he +said +to +paul +d +scripture +woodruff +able +s +sister +works +at +the +brush +and +tallow +factory +you +ll +see +stay +around +here +long +enough +you +ll +see +ain +t +a +sweeter +bunch +of +colored +anywhere +than +what +s +right +here +pride +well +that +bothers +em +a +bit +they +can +get +messy +when +they +think +somebody +s +too +proud +but +when +it +comes +right +down +to +it +they +good +people +and +anyone +will +take +you +in +what +about +judy +she +take +me +in +depends +what +you +got +in +mind +you +know +judy +judith +i +know +everybody +out +on +plank +road +everybody +well +she +take +me +in +stamp +leaned +down +and +untied +his +shoe +twelve +black +buttonhooks +six +on +each +side +at +the +bottom +led +to +four +pairs +of +eyes +at +the +top +he +loosened +the +laces +all +the +way +down +adjusted +the +tongue +carefully +and +wound +them +back +again +when +he +got +to +the +eyes +he +rolled +the +lace +tips +with +his +fingers +before +inserting +them +let +me +tell +you +how +i +got +my +name +the +knot +was +tight +and +so +was +the +bow +they +called +me +joshua +he +said +i +renamed +myself +he +said +and +i +m +going +to +tell +you +why +i +did +it +and +he +told +him +about +vashti +i +never +touched +her +all +that +time +not +once +almost +a +year +we +was +planting +when +it +started +and +picking +when +it +stopped +seemed +longer +i +should +have +killed +him +she +said +no +but +i +should +have +i +didn +t +have +the +patience +i +got +now +but +i +figured +maybe +somebody +else +didn +t +have +much +patience +either +his +own +wife +took +it +in +my +head +to +see +if +she +was +taking +it +any +better +than +i +was +vashti +and +me +was +in +the +fields +together +in +the +day +and +every +now +and +then +she +be +gone +all +night +i +never +touched +her +and +damn +me +if +i +spoke +three +words +to +her +a +day +i +took +any +chance +i +had +to +get +near +the +great +house +to +see +her +the +young +master +s +wife +nothing +but +a +boy +seventeen +twenty +maybe +i +caught +sight +of +her +finally +standing +in +the +backyard +by +the +fence +with +a +glass +of +water +she +was +drinking +out +of +it +and +just +gazing +out +over +the +yard +i +went +over +stood +back +a +ways +and +took +off +my +hat +i +said +scuse +me +miss +scuse +me +she +turned +to +look +i +m +smiling +scuse +me +you +seen +vashti +my +wife +vashti +a +little +bitty +thing +she +was +black +hair +face +no +bigger +than +my +hand +she +said +what +vashti +i +say +yes +m +vashti +my +wife +she +say +she +owe +you +all +some +eggs +you +know +if +she +brung +em +you +know +her +if +you +see +her +wear +a +black +ribbon +on +her +neck +she +got +rosy +then +and +i +knowed +she +knowed +he +give +vashti +that +to +wear +a +cameo +on +a +black +ribbon +she +used +to +put +it +on +every +time +she +went +to +him +i +put +my +hat +back +on +you +see +her +tell +her +i +need +her +thank +you +thank +you +ma +am +i +backed +off +before +she +could +say +something +i +didn +t +dare +look +back +till +i +got +behind +some +trees +she +was +standing +just +as +i +left +her +looking +in +her +water +glass +i +thought +it +would +give +me +more +satisfaction +than +it +did +i +also +thought +she +might +stop +it +but +it +went +right +on +till +one +morning +vashti +came +in +and +sat +by +the +window +a +sunday +we +worked +our +own +patches +on +sunday +she +sat +by +the +window +looking +out +of +it +i +m +back +she +said +i +m +back +josh +i +looked +at +the +back +of +her +neck +she +had +a +real +small +neck +i +decided +to +break +it +you +know +like +a +twig +just +snap +it +i +been +low +but +that +was +as +low +as +i +ever +got +did +you +snap +it +uh +uh +i +changed +my +name +how +you +get +out +of +there +how +you +get +up +here +boat +on +up +the +mississippi +to +memphis +walked +from +memphis +to +cumberland +vashti +too +no +she +died +aw +man +tie +your +other +shoe +what +tie +your +goddamn +shoe +it +s +sitting +right +in +front +of +you +tie +it +that +make +you +feel +better +no +paul +d +tossed +the +bottle +on +the +ground +and +stared +at +the +golden +chariot +on +its +label +no +horses +just +a +golden +coach +draped +in +blue +cloth +i +said +i +had +two +things +to +say +to +you +i +only +told +you +one +i +have +to +tell +you +the +other +i +don +t +want +to +know +it +i +don +t +want +to +know +nothing +just +if +judy +will +take +me +in +or +won +t +she +i +was +there +paul +d +you +was +where +there +in +the +yard +when +she +did +it +judy +sethe +jesus +it +ain +t +what +you +think +you +don +t +know +what +i +think +she +ain +t +crazy +she +love +those +children +she +was +trying +to +out +hurt +the +hurter +leave +off +and +spread +it +stamp +let +me +off +i +knew +her +when +she +was +a +girl +she +scares +me +and +i +knew +her +when +she +was +a +girl +you +ain +t +scared +of +sethe +i +don +t +believe +you +sethe +scares +me +i +scare +me +and +that +girl +in +her +house +scares +me +the +most +who +is +that +girl +where +she +come +from +i +don +t +know +just +shot +up +one +day +sitting +on +a +stump +huh +look +like +you +and +me +the +only +ones +outside +lay +eyes +on +her +she +don +t +go +nowhere +where +d +you +see +her +sleeping +on +the +kitchen +floor +i +peeped +in +first +minute +i +saw +her +i +didn +t +want +to +be +nowhere +around +her +something +funny +about +her +talks +funny +acts +funny +paul +d +dug +his +fingers +underneath +his +cap +and +rubbed +the +scalp +over +his +temple +she +reminds +me +of +something +something +look +like +i +m +supposed +to +remember +she +never +say +where +she +was +from +where +s +her +people +she +don +t +know +or +says +she +don +t +all +i +ever +heard +her +say +was +something +about +stealing +her +clothes +and +living +on +a +bridge +what +kind +of +bridge +who +you +asking +no +bridges +around +here +i +don +t +know +about +but +don +t +nobody +live +on +em +under +em +neither +how +long +she +been +over +there +with +sethe +last +august +day +of +the +carnival +that +s +a +bad +sign +was +she +at +the +carnival +no +when +we +got +back +there +she +was +sleep +on +a +stump +silk +dress +brand +new +shoes +black +as +oil +you +don +t +say +huh +was +a +girl +locked +up +in +the +house +with +a +whiteman +over +by +deer +creek +found +him +dead +last +summer +and +the +girl +gone +maybe +that +s +her +folks +say +he +had +her +in +there +since +she +was +a +pup +well +now +she +s +a +bitch +is +she +what +run +you +off +not +what +i +told +you +bout +sethe +a +shudder +ran +through +paul +d +a +bone +cold +spasm +that +made +him +clutch +his +knees +he +didn +t +know +if +it +was +bad +whiskey +nights +in +the +cellar +pig +fever +iron +bits +smiling +roosters +fired +feet +laughing +dead +men +hissing +grass +rain +apple +blossoms +neck +jewelry +judy +in +the +slaughterhouse +halle +in +the +butter +ghost +white +stairs +chokecherry +trees +cameo +pins +aspens +paul +a +s +face +sausage +or +the +loss +of +a +red +red +heart +tell +me +something +stamp +paul +d +s +eyes +were +rheumy +tell +me +this +one +thing +how +much +is +a +nigger +supposed +to +take +tell +me +how +much +all +he +can +said +stamp +paid +all +he +can +why +why +why +why +why +book +three +chapter +was +quiet +denver +who +thought +she +knew +all +about +silence +was +surprised +to +learn +hunger +could +do +that +quiet +you +down +and +wear +you +out +neither +sethe +nor +beloved +knew +or +cared +about +it +one +way +or +another +they +were +too +busy +rationing +their +strength +to +fight +each +other +so +it +was +she +who +had +to +step +off +the +edge +of +the +world +and +die +because +if +she +didn +t +they +all +would +the +flesh +between +her +mother +s +forefinger +and +thumb +was +thin +as +china +silk +and +there +wasn +t +a +piece +of +clothing +in +the +house +that +didn +t +sag +on +her +beloved +held +her +head +up +with +the +palms +of +her +hands +slept +wherever +she +happened +to +be +and +whined +for +sweets +although +she +was +getting +bigger +plumper +by +the +day +everything +was +gone +except +two +laying +hens +and +somebody +would +soon +have +to +decide +whether +an +egg +every +now +and +then +was +worth +more +than +two +fried +chickens +the +hungrier +they +got +the +weaker +the +weaker +they +got +the +quieter +they +were +which +was +better +than +the +furious +arguments +the +poker +slammed +up +against +the +wall +all +the +shouting +and +crying +that +followed +that +one +happy +january +when +they +played +denver +had +joined +in +the +play +holding +back +a +bit +out +of +habit +even +though +it +was +the +most +fun +she +had +ever +known +but +once +sethe +had +seen +the +scar +the +tip +of +which +denver +had +been +looking +at +whenever +beloved +undressed +the +little +curved +shadow +of +a +smile +in +the +kootchy +kootchy +coo +place +under +her +chin +once +sethe +saw +it +fingered +it +and +closed +her +eyes +for +a +long +time +the +two +of +them +cut +denver +out +of +the +games +the +cooking +games +the +sewing +games +the +hair +and +dressing +up +games +games +her +mother +loved +so +well +she +took +to +going +to +work +later +and +later +each +day +until +the +predictable +happened +sawyer +told +her +not +to +come +back +and +instead +of +looking +for +another +job +sethe +played +all +the +harder +with +beloved +who +never +got +enough +of +anything +lullabies +new +stitches +the +bottom +of +the +cake +bowl +the +top +of +the +milk +if +the +hen +had +only +two +eggs +she +got +both +it +was +as +though +her +mother +had +lost +her +mind +like +grandma +baby +calling +for +pink +and +not +doing +the +things +she +used +to +but +different +because +unlike +baby +suggs +she +cut +denver +out +completely +even +the +song +that +she +used +to +sing +to +denver +she +sang +for +beloved +alone +high +johnny +wide +johnny +don +t +you +leave +my +side +johnny +at +first +they +played +together +a +whole +month +and +denver +loved +it +from +the +night +they +ice +skated +under +a +star +loaded +sky +and +drank +sweet +milk +by +the +stove +to +the +string +puzzles +sethe +did +for +them +in +afternoon +light +and +shadow +pictures +in +the +gloaming +in +the +very +teeth +of +winter +and +sethe +her +eyes +fever +bright +was +plotting +a +garden +of +vegetables +and +flowers +talking +talking +about +what +colors +it +would +have +she +played +with +beloved +s +hair +braiding +puffing +tying +oiling +it +until +it +made +denver +nervous +to +watch +her +they +changed +beds +and +exchanged +clothes +walked +arm +in +arm +and +smiled +all +the +time +when +the +weather +broke +they +were +on +their +knees +in +the +backyard +designing +a +garden +in +dirt +too +hard +to +chop +the +thirty +eight +dollars +of +life +savings +went +to +feed +themselves +with +fancy +food +and +decorate +themselves +with +ribbon +and +dress +goods +which +sethe +cut +and +sewed +like +they +were +going +somewhere +in +a +hurry +bright +clothes +with +blue +stripes +and +sassy +prints +she +walked +the +four +miles +to +john +shillito +s +to +buy +yellow +ribbon +shiny +buttons +and +bits +of +black +lace +by +the +end +of +march +the +three +of +them +looked +like +carnival +women +with +nothing +to +do +when +it +became +clear +that +they +were +only +interested +in +each +other +denver +began +to +drift +from +the +play +but +she +watched +it +alert +for +any +sign +that +beloved +was +in +danger +finally +convinced +there +was +none +and +seeing +her +mother +that +happy +that +smiling +how +could +it +go +wrong +she +let +down +her +guard +and +it +did +her +problem +at +first +was +trying +to +find +out +who +was +to +blame +her +eye +was +on +her +mother +for +a +signal +that +the +thing +that +was +in +her +was +out +and +she +would +kill +again +but +it +was +beloved +who +made +demands +anything +she +wanted +she +got +and +when +sethe +ran +out +of +things +to +give +her +beloved +invented +desire +she +wanted +sethe +s +company +for +hours +to +watch +the +layer +of +brown +leaves +waving +at +them +from +the +bottom +of +the +creek +in +the +same +place +where +as +a +little +girl +denver +played +in +the +silence +with +her +now +the +players +were +altered +as +soon +as +the +thaw +was +complete +beloved +gazed +at +her +gazing +face +rippling +folding +spreading +disappearing +into +the +leaves +below +she +flattened +herself +on +the +ground +dirtying +her +bold +stripes +and +touched +the +rocking +faces +with +her +own +she +filled +basket +after +basket +with +the +first +things +warmer +weather +let +loose +in +the +ground +dandelions +violets +forsythia +presenting +them +to +sethe +who +arranged +them +stuck +them +wound +them +all +over +the +house +dressed +in +sethe +s +dresses +she +stroked +her +skin +with +the +palm +of +her +hand +she +imitated +sethe +talked +the +way +she +did +laughed +her +laugh +and +used +her +body +the +same +way +down +to +the +walk +the +way +sethe +moved +her +hands +sighed +through +her +nose +held +her +head +sometimes +coming +upon +them +making +men +and +women +cookies +or +tacking +scraps +of +cloth +on +baby +suggs +old +quilt +it +was +difficult +for +denver +to +tell +who +was +who +then +the +mood +changed +and +the +arguments +began +slowly +at +first +a +complaint +from +beloved +an +apology +from +sethe +a +reduction +of +pleasure +at +some +special +effort +the +older +woman +made +wasn +t +it +too +cold +to +stay +outside +beloved +gave +a +look +that +said +so +what +was +it +past +bedtime +the +light +no +good +for +sewing +beloved +didn +t +move +said +do +it +and +sethe +complied +she +took +the +best +of +everything +first +the +best +chair +the +biggest +piece +the +prettiest +plate +the +brightest +ribbon +for +her +hair +and +the +more +she +took +the +more +sethe +began +to +talk +explain +describe +how +much +she +had +suffered +been +through +for +her +children +waving +away +flies +in +grape +arbors +crawling +on +her +knees +to +a +lean +to +none +of +which +made +the +impression +it +was +supposed +to +beloved +accused +her +of +leaving +her +behind +of +not +being +nice +to +her +not +smiling +at +her +she +said +they +were +the +same +had +the +same +face +how +could +she +have +left +her +and +sethe +cried +saying +she +never +did +or +meant +to +that +she +had +to +get +them +out +away +that +she +had +the +milk +all +the +time +and +had +the +money +too +for +the +stone +but +not +enough +that +her +plan +was +always +that +they +would +all +be +together +on +the +other +side +forever +beloved +wasn +t +interested +she +said +when +she +cried +there +was +no +one +that +dead +men +lay +on +top +of +her +that +she +had +nothing +to +eat +ghosts +without +skin +stuck +their +fingers +in +her +and +said +beloved +in +the +dark +and +bitch +in +the +light +sethe +pleaded +for +forgiveness +counting +listing +again +and +again +her +reasons +that +beloved +was +more +important +meant +more +to +her +than +her +own +life +that +she +would +trade +places +any +day +give +up +her +life +every +minute +and +hour +of +it +to +take +back +just +one +of +beloved +s +tears +did +she +know +it +hurt +her +when +mosquitoes +bit +her +baby +that +to +leave +her +on +the +ground +to +run +into +the +big +house +drove +her +crazy +that +before +leaving +sweet +home +beloved +slept +every +night +on +her +chest +or +curled +on +her +back +beloved +denied +it +sethe +never +came +to +her +never +said +a +word +to +her +never +smiled +and +worst +of +all +never +waved +goodbye +or +even +looked +her +way +before +running +away +from +her +when +once +or +twice +sethe +tried +to +assert +herself +be +the +unquestioned +mother +whose +word +was +law +and +who +knew +what +was +best +beloved +slammed +things +wiped +the +table +clean +of +plates +threw +salt +on +the +floor +broke +a +windowpane +she +was +not +like +them +she +was +wild +game +and +nobody +said +get +on +out +of +here +girl +and +come +back +when +you +get +some +sense +nobody +said +you +raise +your +hand +to +me +and +i +will +knock +you +into +the +middle +of +next +week +ax +the +trunk +the +limb +will +die +honor +thy +mother +and +father +that +thy +days +may +be +long +upon +the +land +which +the +lord +thy +god +giveth +thee +i +will +wrap +you +round +that +doorknob +don +t +nobody +work +for +you +and +god +don +t +love +ugly +ways +no +no +they +mended +the +plates +swept +the +salt +and +little +by +little +it +dawned +on +denver +that +if +sethe +didn +t +wake +up +one +morning +and +pick +up +a +knife +beloved +might +frightened +as +she +was +by +the +thing +in +sethe +that +could +come +out +it +shamed +her +to +see +her +mother +serving +a +girl +not +much +older +than +herself +when +she +saw +her +carrying +out +beloved +s +night +bucket +denver +raced +to +relieve +her +of +it +but +the +pain +was +unbearable +when +they +ran +low +on +food +and +denver +watched +her +mother +go +without +pick +eating +around +the +edges +of +the +table +and +stove +the +hominy +that +stuck +on +the +bottom +the +crusts +and +rinds +and +peelings +of +things +once +she +saw +her +run +her +longest +finger +deep +in +an +empty +jam +jar +before +rinsing +and +putting +it +away +they +grew +tired +and +even +beloved +who +was +getting +bigger +seemed +nevertheless +as +exhausted +as +they +were +in +any +case +she +substituted +a +snarl +or +a +tooth +suck +for +waving +a +poker +around +and +was +quiet +listless +and +sleepy +with +hunger +denver +saw +the +flesh +between +her +mother +s +forefinger +and +thumb +fade +saw +sethe +s +eyes +bright +but +dead +alert +but +vacant +paying +attention +to +everything +about +beloved +her +lineless +palms +her +forehead +the +smile +under +her +jaw +crooked +and +much +too +long +everything +except +her +basket +fat +stomach +she +also +saw +the +sleeves +of +her +own +carnival +shirtwaist +cover +her +fingers +hems +that +once +showed +her +ankles +now +swept +the +floor +she +saw +themselves +beribboned +decked +out +limp +and +starving +but +locked +in +a +love +that +wore +everybody +out +then +sethe +spit +up +something +she +had +not +eaten +and +it +rocked +denver +like +gunshot +the +job +she +started +out +with +protecting +beloved +from +sethe +changed +to +protecting +her +mother +from +beloved +now +it +was +obvious +that +her +mother +could +die +and +leave +them +both +and +what +would +beloved +do +then +whatever +was +happening +it +only +worked +with +three +not +two +and +since +neither +beloved +nor +sethe +seemed +to +care +what +the +next +day +might +bring +sethe +happy +when +beloved +was +beloved +lapping +devotion +like +cream +denver +knew +it +was +on +her +she +would +have +to +leave +the +yard +step +off +the +edge +of +the +world +leave +the +two +behind +and +go +ask +somebody +for +help +who +would +it +be +who +could +she +stand +in +front +of +who +wouldn +t +shame +her +on +learning +that +her +mother +sat +around +like +a +rag +doll +broke +down +finally +from +trying +to +take +care +of +and +make +up +for +denver +knew +about +several +people +from +hearing +her +mother +and +grandmother +talk +but +she +knew +personally +only +two +an +old +man +with +white +hair +called +stamp +and +lady +jones +well +paul +d +of +course +and +that +boy +who +told +her +about +sethe +but +they +wouldn +t +do +at +all +her +heart +kicked +and +an +itchy +burning +in +her +throat +made +her +swallow +all +her +saliva +away +she +didn +t +even +know +which +way +to +go +when +sethe +used +to +work +at +the +restaurant +and +when +she +still +had +money +to +shop +she +turned +right +back +when +denver +went +to +lady +jones +school +it +was +left +the +weather +was +warm +the +day +beautiful +it +was +april +and +everything +alive +was +tentative +denver +wrapped +her +hair +and +her +shoulders +in +the +brightest +of +the +carnival +dresses +and +wearing +a +stranger +s +shoes +she +stood +on +the +porch +of +ready +to +be +swallowed +up +in +the +world +beyond +the +edge +of +the +porch +out +there +where +small +things +scratched +and +sometimes +touched +where +words +could +be +spoken +that +would +close +your +ears +shut +where +if +you +were +alone +feeling +could +overtake +you +and +stick +to +you +like +a +shadow +out +there +where +there +were +places +in +which +things +so +bad +had +happened +that +when +you +went +near +them +it +would +happen +again +like +sweet +home +where +time +didn +t +pass +and +where +like +her +mother +said +the +bad +was +waiting +for +her +as +well +how +would +she +know +these +places +what +was +more +much +more +out +there +were +whitepeople +and +how +could +you +tell +about +them +sethe +said +the +mouth +and +sometimes +the +hands +grandma +baby +said +there +was +no +defense +they +could +prowl +at +will +change +from +one +mind +to +another +and +even +when +they +thought +they +were +behaving +it +was +a +far +cry +from +what +real +humans +did +they +got +me +out +of +jail +sethe +once +told +baby +suggs +they +also +put +you +in +it +she +answered +they +drove +you +cross +the +river +on +my +son +s +back +they +gave +you +this +house +nobody +gave +me +nothing +i +got +a +job +from +them +he +got +a +cook +from +them +girl +oh +some +of +them +do +all +right +by +us +and +every +time +it +s +a +surprise +ain +t +it +you +didn +t +used +to +talk +this +way +don +t +box +with +me +there +s +more +of +us +they +drowned +than +there +is +all +of +them +ever +lived +from +the +start +of +time +lay +down +your +sword +this +ain +t +a +battle +it +s +a +rout +remembering +those +conversations +and +her +grandmother +s +last +and +final +words +denver +stood +on +the +porch +in +the +sun +and +couldn +t +leave +it +her +throat +itched +her +heart +kicked +and +then +baby +suggs +laughed +clear +as +anything +you +mean +i +never +told +you +nothing +about +carolina +about +your +daddy +you +don +t +remember +nothing +about +how +come +i +walk +the +way +i +do +and +about +your +mother +s +feet +not +to +speak +of +her +back +i +never +told +you +all +that +is +that +why +you +can +t +walk +down +the +steps +my +jesus +my +but +you +said +there +was +no +defense +there +ain +t +then +what +do +i +do +know +it +and +go +on +out +the +yard +go +on +it +came +back +a +dozen +years +had +passed +and +the +way +came +back +four +houses +on +the +right +sitting +close +together +in +a +line +like +wrens +the +first +house +had +two +steps +and +a +rocking +chair +on +the +porch +the +second +had +three +steps +a +broom +propped +on +the +porch +beam +two +broken +chairs +and +a +clump +of +forsythia +at +the +side +no +window +at +the +front +a +little +boy +sat +on +the +ground +chewing +a +stick +the +third +house +had +yellow +shutters +on +its +two +front +windows +and +pot +after +pot +of +green +leaves +with +white +hearts +or +red +denver +could +hear +chickens +and +the +knock +of +a +badly +hinged +gate +at +the +fourth +house +the +buds +of +a +sycamore +tree +had +rained +down +on +the +roof +and +made +the +yard +look +as +though +grass +grew +there +a +woman +standing +at +the +open +door +lifted +her +hand +halfway +in +greeting +then +froze +it +near +her +shoulder +as +she +leaned +forward +to +see +whom +she +waved +to +denver +lowered +her +head +next +was +a +tiny +fenced +plot +with +a +cow +in +it +she +remembered +the +plot +but +not +the +cow +under +her +headcloth +her +scalp +was +wet +with +tension +beyond +her +voices +male +voices +floated +coming +closer +with +each +step +she +took +denver +kept +her +eyes +on +the +road +in +case +they +were +whitemen +in +case +she +was +walking +where +they +wanted +to +in +case +they +said +something +and +she +would +have +to +answer +them +suppose +they +flung +out +at +her +grabbed +her +tied +her +they +were +getting +closer +maybe +she +should +cross +the +road +now +was +the +woman +who +half +waved +at +her +still +there +in +the +open +door +would +she +come +to +her +rescue +or +angry +at +denver +for +not +waving +back +would +she +withhold +her +help +maybe +she +should +turn +around +get +closer +to +the +waving +woman +s +house +before +she +could +make +up +her +mind +it +was +too +late +they +were +right +in +front +of +her +two +men +negro +denver +breathed +both +men +touched +their +caps +and +murmured +morning +morning +denver +believed +her +eyes +spoke +gratitude +but +she +never +got +her +mouth +open +in +time +to +reply +they +moved +left +of +her +and +passed +on +braced +and +heartened +by +that +easy +encounter +she +picked +up +speed +and +began +to +look +deliberately +at +the +neighborhood +surrounding +her +she +was +shocked +to +see +how +small +the +big +things +were +the +boulder +by +the +edge +of +the +road +she +once +couldn +t +see +over +was +a +sitting +on +rock +paths +leading +to +houses +weren +t +miles +long +dogs +didn +t +even +reach +her +knees +letters +cut +into +beeches +and +oaks +by +giants +were +eye +level +now +she +would +have +known +it +anywhere +the +post +and +scrap +lumber +fence +was +gray +now +not +white +but +she +would +have +known +it +anywhere +the +stone +porch +sitting +in +a +skirt +of +ivy +pale +yellow +curtains +at +the +windows +the +laid +brick +path +to +the +front +door +and +wood +planks +leading +around +to +the +back +passing +under +the +windows +where +she +had +stood +on +tiptoe +to +see +above +the +sill +denver +was +about +to +do +it +again +when +she +realized +how +silly +it +would +be +to +be +found +once +more +staring +into +the +parlor +of +mrs +lady +jones +the +pleasure +she +felt +at +having +found +the +house +dissolved +suddenly +in +doubt +suppose +she +didn +t +live +there +anymore +or +remember +her +former +student +after +all +this +time +what +would +she +say +denver +shivered +inside +wiped +the +perspiration +from +her +forehead +and +knocked +lady +jones +went +to +the +door +expecting +raisins +a +child +probably +from +the +softness +of +the +knock +sent +by +its +mother +with +the +raisins +she +needed +if +her +contribution +to +the +supper +was +to +be +worth +the +trouble +there +would +be +any +number +of +plain +cakes +potato +pies +she +had +reluctantly +volunteered +her +own +special +creation +but +said +she +didn +t +have +raisins +so +raisins +is +what +the +president +said +would +be +provided +early +enough +so +there +would +be +no +excuses +mrs +jones +dreading +the +fatigue +of +beating +batter +had +been +hoping +she +had +forgotten +her +bake +oven +had +been +cold +all +week +getting +it +to +the +right +temperature +would +be +awful +since +her +husband +died +and +her +eyes +grew +dim +she +had +let +up +to +snuff +housekeeping +fall +away +she +was +of +two +minds +about +baking +something +for +the +church +on +the +one +hand +she +wanted +to +remind +everybody +of +what +she +was +able +to +do +in +the +cooking +line +on +the +other +she +didn +t +want +to +have +to +when +she +heard +the +tapping +at +the +door +she +sighed +and +went +to +it +hoping +the +raisins +had +at +least +been +cleaned +she +was +older +of +course +and +dressed +like +a +chippy +but +the +girl +was +immediately +recognizable +to +lady +jones +everybody +s +child +was +in +that +face +the +nickel +round +eyes +bold +yet +mistrustful +the +large +powerful +teeth +between +dark +sculptured +lips +that +did +not +cover +them +some +vulnerability +lay +across +the +bridge +of +the +nose +above +the +cheeks +and +then +the +skin +flawless +economical +just +enough +of +it +to +cover +the +bone +and +not +a +bit +more +she +must +be +eighteen +or +nineteen +by +now +thought +lady +jones +looking +at +the +face +young +enough +to +be +twelve +heavy +eyebrows +thick +baby +lashes +and +the +unmistakable +love +call +that +shimmered +around +children +until +they +learned +better +why +denver +she +said +look +at +you +lady +jones +had +to +take +her +by +the +hand +and +pull +her +in +because +the +smile +seemed +all +the +girl +could +manage +other +people +said +this +child +was +simple +but +lady +jones +never +believed +it +having +taught +her +watched +her +eat +up +a +page +a +rule +a +figure +she +knew +better +when +suddenly +she +had +stopped +coming +lady +jones +thought +it +was +the +nickel +she +approached +the +ignorant +grandmother +one +day +on +the +road +a +woods +preacher +who +mended +shoes +to +tell +her +it +was +all +right +if +the +money +was +owed +the +woman +said +that +wasn +t +it +the +child +was +deaf +and +deaf +lady +jones +thought +she +still +was +until +she +offered +her +a +seat +and +denver +heard +that +it +s +nice +of +you +to +come +see +me +what +brings +you +denver +didn +t +answer +well +nobody +needs +a +reason +to +visit +let +me +make +us +some +tea +lady +jones +was +mixed +gray +eyes +and +yellow +woolly +hair +every +strand +of +which +she +hated +though +whether +it +was +the +color +or +the +texture +even +she +didn +t +know +she +had +married +the +blackest +man +she +could +find +had +five +rainbow +colored +children +and +sent +them +all +to +wilberforce +after +teaching +them +all +she +knew +right +along +with +the +others +who +sat +in +her +parlor +her +light +skin +got +her +picked +for +a +coloredgirls +normal +school +in +pennsylvania +and +she +paid +it +back +by +teaching +the +unpicked +the +children +who +played +in +dirt +until +they +were +old +enough +for +chores +these +she +taught +the +colored +population +of +cincinnati +had +two +graveyards +and +six +churches +but +since +no +school +or +hospital +was +obliged +to +serve +them +they +learned +and +died +at +home +she +believed +in +her +heart +that +except +for +her +husband +the +whole +world +including +her +children +despised +her +and +her +hair +she +had +been +listening +to +all +that +yellow +gone +to +waste +and +white +nigger +since +she +was +a +girl +in +a +houseful +of +silt +black +children +so +she +disliked +everybody +a +little +bit +because +she +believed +they +hated +her +hair +as +much +as +she +did +with +that +education +pat +and +firmly +set +she +dispensed +with +rancor +was +indiscriminately +polite +saving +her +real +affection +for +the +unpicked +children +of +cincinnati +one +of +whom +sat +before +her +in +a +dress +so +loud +it +embarrassed +the +needlepoint +chair +seat +sugar +yes +thank +you +denver +drank +it +all +down +more +no +ma +am +here +go +ahead +yes +ma +am +how +s +your +family +honey +denver +stopped +in +the +middle +of +a +swallow +there +was +no +way +to +tell +her +how +her +family +was +so +she +said +what +was +at +the +top +of +her +mind +i +want +work +miss +lady +work +yes +ma +am +anything +lady +jones +smiled +what +can +you +do +i +can +t +do +anything +but +i +would +learn +it +for +you +if +you +have +a +little +extra +extra +food +my +ma +am +she +doesn +t +feel +good +oh +baby +said +mrs +jones +oh +baby +denver +looked +up +at +her +she +did +not +know +it +then +but +it +was +the +word +baby +said +softly +and +with +such +kindness +that +inaugurated +her +life +in +the +world +as +a +woman +the +trail +she +followed +to +get +to +that +sweet +thorny +place +was +made +up +of +paper +scraps +containing +the +handwritten +names +of +others +lady +jones +gave +her +some +rice +four +eggs +and +some +tea +denver +said +she +couldn +t +be +away +from +home +long +because +of +her +mother +s +condition +could +she +do +chores +in +the +morning +lady +jones +told +her +that +no +one +not +herself +not +anyone +she +knew +could +pay +anybody +anything +for +work +they +did +themselves +but +if +you +all +need +to +eat +until +your +mother +is +well +all +you +have +to +do +is +say +so +she +mentioned +her +church +s +committee +invented +so +nobody +had +to +go +hungry +that +agitated +her +guest +who +said +no +no +as +though +asking +for +help +from +strangers +was +worse +than +hunger +lady +jones +said +goodbye +to +her +and +asked +her +to +come +back +anytime +anytime +at +all +two +days +later +denver +stood +on +the +porch +and +noticed +something +lying +on +the +tree +stump +at +the +edge +of +the +yard +she +went +to +look +and +found +a +sack +of +white +beans +another +time +a +plate +of +cold +rabbit +meat +one +morning +a +basket +of +eggs +sat +there +as +she +lifted +it +a +slip +of +paper +fluttered +down +she +picked +it +up +and +looked +at +it +m +lucille +williams +was +written +in +big +crooked +letters +on +the +back +was +a +blob +of +flour +water +paste +so +denver +paid +a +second +visit +to +the +world +outside +the +porch +although +all +she +said +when +she +returned +the +basket +was +thank +you +welcome +said +m +lucille +williams +every +now +and +then +all +through +the +spring +names +appeared +near +or +in +gifts +of +food +obviously +for +the +return +of +the +pan +or +plate +or +basket +but +also +to +let +the +girl +know +if +she +cared +to +who +the +donor +was +because +some +of +the +parcels +were +wrapped +in +paper +and +though +there +was +nothing +to +return +the +name +was +nevertheless +there +many +had +x +s +with +designs +about +them +and +lady +jones +tried +to +identify +the +plate +or +pan +or +the +covering +towel +when +she +could +only +guess +denver +followed +her +directions +and +went +to +say +thank +you +anywaym +whether +she +had +the +right +benefactor +or +not +when +she +was +wrong +when +the +person +said +no +darling +that +s +not +my +bowl +mine +s +got +a +blue +ring +on +it +a +small +conversation +took +place +all +of +them +knew +her +grandmother +and +some +had +even +danced +with +her +in +the +clearing +others +remembered +the +days +when +was +a +way +station +the +place +they +assembled +to +catch +news +taste +oxtail +soup +leave +their +children +cut +out +a +skirt +one +remembered +the +tonic +mixed +there +that +cured +a +relative +one +showed +her +the +border +of +a +pillowslip +the +stamens +of +its +pale +blue +flowers +french +knotted +in +baby +suggs +kitchen +by +the +light +of +an +oil +lamp +while +arguing +the +settlement +fee +they +remembered +the +party +with +twelve +turkeys +and +tubs +of +strawberry +smash +one +said +she +wrapped +denver +when +she +was +a +single +day +old +and +cut +shoes +to +fit +her +mother +s +blasted +feet +maybe +they +were +sorry +for +her +or +for +sethe +maybe +they +were +sorry +for +the +years +of +their +own +disdain +maybe +they +were +simply +nice +people +who +could +hold +meanness +toward +each +other +for +just +so +long +and +when +trouble +rode +bareback +among +them +quickly +easily +they +did +what +they +could +to +trip +him +up +in +any +case +the +personal +pride +the +arrogant +claim +staked +out +at +seemed +to +them +to +have +run +its +course +they +whispered +naturally +wondered +shook +their +heads +some +even +laughed +outright +at +denver +s +clothes +of +a +hussy +but +it +didn +t +stop +them +caring +whether +she +ate +and +it +didn +t +stop +the +pleasure +they +took +in +her +soft +thank +you +at +least +once +a +week +she +visited +lady +jones +who +perked +up +enough +to +do +a +raisin +loaf +especially +for +her +since +denver +was +set +on +sweet +things +she +gave +her +a +book +of +bible +verse +and +listened +while +she +mumbled +words +or +fairly +shouted +them +by +june +denver +had +read +and +memorized +all +fifty +two +pages +one +for +each +week +of +the +year +as +denver +s +outside +life +improved +her +home +life +deteriorated +if +the +whitepeople +of +cincinnati +had +allowed +negroes +into +their +lunatic +asylum +they +could +have +found +candidates +in +strengthened +by +the +gifts +of +food +the +source +of +which +neither +sethe +nor +beloved +questioned +the +women +had +arrived +at +a +doomsday +truce +designed +by +the +devil +beloved +sat +around +ate +went +from +bed +to +bed +sometimes +she +screamed +rain +rain +and +clawed +her +throat +until +rubies +of +blood +opened +there +made +brighter +by +her +midnight +skin +then +sethe +shouted +no +and +knocked +over +chairs +to +get +to +her +and +wipe +the +jewels +away +other +times +beloved +curled +up +on +the +floor +her +wrists +between +her +knees +and +stayed +there +for +hours +or +she +would +go +to +the +creek +stick +her +feet +in +the +water +and +whoosh +it +up +her +legs +afrerward +she +would +go +to +sethe +run +her +fingers +over +the +woman +s +teeth +while +tears +slid +from +her +wide +black +eyes +then +it +seemed +to +denver +the +thing +was +done +beloved +bending +over +sethe +looked +the +mother +sethe +the +teething +child +for +other +than +those +times +when +beloved +needed +her +sethe +confined +herself +to +a +corner +chair +the +bigger +beloved +got +the +smaller +sethe +became +the +brighter +beloved +s +eyes +the +more +those +eyes +that +used +never +to +look +away +became +slits +of +sleeplessness +sethe +no +longer +combed +her +hair +or +splashed +her +face +with +water +she +sat +in +the +chair +licking +her +lips +like +a +chastised +child +while +beloved +ate +up +her +life +took +it +swelled +up +with +it +grew +taller +on +it +and +the +older +woman +yielded +it +up +without +a +murmur +denver +served +them +both +washing +cooking +forcing +cajoling +her +mother +to +eat +a +little +now +and +then +providing +sweet +things +for +beloved +as +often +as +she +could +to +calm +her +down +it +was +hard +to +know +what +she +would +do +from +minute +to +minute +when +the +heat +got +hot +she +might +walk +around +the +house +naked +or +wrapped +in +a +sheet +her +belly +protruding +like +a +winning +watermelon +denver +thought +she +understood +the +connection +between +her +mother +and +beloved +sethe +was +trying +to +make +up +for +the +handsaw +beloved +was +making +her +pay +for +it +but +there +would +never +be +an +end +to +that +and +seeing +her +mother +diminished +shamed +and +infuriated +her +yet +she +knew +sethe +s +greatest +fear +was +the +same +one +denver +had +in +the +beginning +that +beloved +might +leave +that +before +sethe +could +make +her +understand +what +it +meant +what +it +took +to +drag +the +teeth +of +that +saw +under +the +little +chin +to +feel +the +baby +blood +pump +like +oil +in +her +hands +to +hold +her +face +so +her +head +would +stay +on +to +squeeze +her +so +she +could +absorb +still +the +death +spasms +that +shot +through +that +adored +body +plump +and +sweet +with +life +beloved +might +leave +leave +before +sethe +could +make +her +realize +that +worse +than +that +far +worse +was +what +baby +suggs +died +of +what +ella +knew +what +stamp +saw +and +what +made +paul +d +tremble +that +anybody +white +could +take +your +whole +self +for +anything +that +came +to +mind +not +just +work +kill +or +maim +you +but +dirty +you +dirty +you +so +bad +you +couldn +t +like +yourself +anymore +dirty +you +so +bad +you +forgot +who +you +were +and +couldn +t +think +it +up +and +though +she +and +others +lived +through +and +got +over +it +she +could +never +let +it +happen +to +her +own +the +best +thing +she +was +was +her +children +whites +might +dirty +bet +all +right +but +not +her +best +thing +her +beautiful +magical +best +thing +the +part +of +her +that +was +cl +ean +no +undreamable +dreams +about +whether +the +headless +feetless +torso +hanging +in +the +tree +with +a +sign +on +it +was +her +husband +or +paul +a +whether +the +bubbling +hot +girls +in +the +colored +school +fire +set +by +patriots +included +her +daughter +whether +a +gang +of +whites +invaded +her +daughter +s +private +parts +soiled +her +daughter +s +thighs +and +threw +her +daughter +out +of +the +wagon +she +might +have +to +work +the +slaughterhouse +yard +but +not +her +daughter +and +no +one +nobody +on +this +earth +would +list +her +daughter +s +characteristics +on +the +animal +side +of +the +paper +no +oh +no +maybe +baby +suggs +could +worry +about +it +live +with +the +likelihood +of +it +sethe +had +refused +and +refused +still +this +and +much +more +denver +heard +her +say +from +her +corner +chair +trying +to +persuade +beloved +the +one +and +only +person +she +felt +she +had +to +convince +that +what +she +had +done +was +right +because +it +came +from +true +love +beloved +her +fat +new +feet +propped +on +the +seat +of +a +chair +in +front +of +the +one +she +sat +in +her +unlined +hands +resting +on +her +stomach +looked +at +her +uncomprehending +everything +except +that +sethe +was +the +woman +who +took +her +face +away +leaving +her +crouching +in +a +dark +dark +place +forgetting +to +smile +her +father +s +daughter +after +all +denver +decided +to +do +the +necessary +decided +to +stop +relying +on +kindness +to +leave +something +on +the +stump +she +would +hire +herself +out +somewhere +and +although +she +was +afraid +to +leave +sethe +and +beloved +alone +all +day +not +knowing +what +calamity +either +one +of +them +would +create +she +came +to +realize +that +her +presence +in +that +house +had +no +influence +on +what +either +woman +did +she +kept +them +alive +and +they +ignored +her +growled +when +they +chose +sulked +explained +demanded +strutted +cowered +cried +and +provoked +each +other +to +the +edge +of +violence +then +over +she +had +begun +to +notice +that +even +when +beloved +was +quiet +dreamy +minding +her +own +business +sethe +got +her +going +again +whispering +muttering +some +justification +some +bit +of +clarifying +information +to +beloved +to +explain +what +it +had +been +like +and +why +and +how +come +it +was +as +though +sethe +didn +t +really +want +forgiveness +given +she +wanted +it +refused +and +beloved +helped +her +out +somebody +had +to +be +saved +but +unless +denver +got +work +there +would +be +no +one +to +save +no +one +to +come +home +to +and +no +denver +either +it +was +a +new +thought +having +a +self +to +look +out +for +and +preserve +and +it +might +not +have +occurred +to +her +if +she +hadn +t +met +nelson +lord +leaving +his +grandmother +s +house +as +denver +entered +it +to +pay +a +thank +you +for +half +a +pie +all +he +did +was +smile +and +say +take +care +of +yourself +denver +but +she +heard +it +as +though +it +were +what +language +was +made +for +the +last +time +he +spoke +to +her +his +words +blocked +up +her +ears +now +they +opened +her +mind +weeding +the +garden +pulling +vegetables +cooking +washing +she +plotted +what +to +do +and +how +the +bodwins +were +most +likely +to +help +since +they +had +done +it +twice +once +for +baby +suggs +and +once +for +her +mother +why +not +the +third +generation +as +well +she +got +lost +so +many +times +in +the +streets +of +cincinnati +it +was +noon +before +she +arrived +though +she +started +out +at +sunrise +the +house +sat +back +from +the +sidewalk +with +large +windows +looking +out +on +a +noisy +busy +street +the +negro +woman +who +answered +the +front +door +said +yes +may +i +come +in +what +you +want +i +want +to +see +mr +and +mrs +bodwin +miss +bodwin +they +brother +and +sister +oh +what +you +want +em +for +i +m +looking +for +work +i +was +thinking +they +might +know +of +some +you +baby +suggs +kin +ain +t +you +yes +ma +am +come +on +in +you +letting +in +flies +she +led +denver +toward +the +kitchen +saying +first +thing +you +have +to +know +is +what +door +to +knock +on +but +denver +only +half +heard +her +because +she +was +stepping +on +something +soft +and +blue +all +around +her +was +thick +soft +and +blue +glass +cases +crammed +full +of +glistening +things +books +on +tables +and +shelves +pearl +white +lamps +with +shiny +metal +bottoms +and +a +smell +like +the +cologne +she +poured +in +the +emerald +house +only +better +sit +down +the +woman +said +you +know +my +name +no +ma +am +janey +janey +wagon +how +do +you +do +fairly +i +heard +your +mother +took +sick +that +so +yes +ma +am +who +s +looking +after +her +i +am +but +i +have +to +find +work +janey +laughed +you +know +what +i +ve +been +here +since +i +was +fourteen +and +i +remember +like +yesterday +when +baby +suggs +holy +came +here +and +sat +right +there +where +you +are +whiteman +brought +her +that +s +how +she +got +that +house +you +all +live +in +other +things +too +yes +ma +am +what +s +the +trouble +with +sethe +janey +leaned +against +an +indoor +sink +and +folded +her +arms +it +was +a +little +thing +to +pay +but +it +seemed +big +to +denver +nobody +was +going +to +help +her +unless +she +told +it +told +all +of +it +it +was +clear +janey +wouldn +t +and +wouldn +t +let +her +see +the +bodwins +otherwise +so +denver +told +this +stranger +what +she +hadn +t +told +lady +jones +in +return +for +which +janey +admitted +the +bodwins +needed +help +although +they +didn +t +know +it +she +was +alone +there +and +now +that +her +employers +were +getting +older +she +couldn +t +take +care +of +them +like +she +used +to +more +and +more +she +was +required +to +sleep +the +night +there +maybe +she +could +talk +them +into +letting +denver +do +the +night +shift +come +right +after +supper +say +maybe +get +the +breakfast +that +way +denver +could +care +for +sethe +in +the +day +and +earn +a +little +something +at +night +how +s +that +denver +had +explained +the +girl +in +her +house +who +plagued +her +mother +as +a +cousin +come +to +visit +who +got +sick +too +and +bothered +them +both +janey +seemed +more +interested +in +sethe +s +condition +and +from +what +denver +told +her +it +seemed +the +woman +had +lost +her +mind +that +wasn +t +the +sethe +she +remembered +this +sethe +had +lost +her +wits +finally +as +janey +knew +she +would +trying +to +do +it +all +alone +with +her +nose +in +the +air +denver +squirmed +under +the +criticism +of +her +mother +shifting +in +the +chair +and +keeping +her +eyes +on +the +inside +sink +janey +wagon +went +on +about +pride +until +she +got +to +baby +suggs +for +whom +she +had +nothing +but +sweet +words +i +never +went +to +those +woodland +services +she +had +but +she +was +always +nice +to +me +always +never +be +another +like +her +i +miss +her +too +said +denver +bet +you +do +everybody +miss +her +that +was +a +good +woman +denver +didn +t +say +anything +else +and +janey +looked +at +her +face +for +a +while +neither +one +of +your +brothers +ever +come +back +to +see +how +you +all +was +no +ma +am +ever +hear +from +them +no +ma +am +nothing +guess +they +had +a +rough +time +in +that +house +tell +me +this +here +woman +in +your +house +the +cousin +she +got +any +lines +in +her +hands +no +said +denver +well +said +janey +i +guess +there +s +a +god +after +all +the +interview +ended +with +janey +telling +her +to +come +back +in +a +few +days +she +needed +time +to +convince +her +employers +what +they +needed +night +help +because +janey +s +own +family +needed +her +i +don +t +want +to +quit +these +people +but +they +can +t +have +all +my +days +and +nights +too +what +did +denver +have +to +do +at +night +be +here +in +case +in +case +what +janey +shrugged +in +case +the +house +burn +down +she +smiled +then +or +bad +weather +slop +the +roads +so +bad +i +can +t +get +here +early +enough +for +them +case +late +guests +need +serving +or +cleaning +up +after +anything +don +t +ask +me +what +whitefolks +need +at +night +they +used +to +be +good +whitefolks +oh +yeah +they +good +can +t +say +they +ain +t +good +i +wouldn +t +trade +them +for +another +pair +tell +you +that +with +those +assurances +denver +left +but +not +before +she +had +seen +sitting +on +a +shelf +by +the +back +door +a +blackboy +s +mouth +full +of +money +his +head +was +thrown +back +farther +than +a +head +could +go +his +hands +were +shoved +in +his +pockets +bulging +like +moons +two +eyes +were +all +the +face +he +had +above +the +gaping +red +mouth +his +hair +was +a +cluster +of +raised +widely +spaced +dots +made +of +nail +heads +and +he +was +on +his +knees +his +mouth +wide +as +a +cup +held +the +coins +needed +to +pay +for +a +delivery +or +some +other +small +service +but +could +just +as +well +have +held +buttons +pins +or +crab +apple +jelly +painted +across +the +pedestal +he +knelt +on +were +the +words +at +yo +service +the +news +that +janey +got +hold +of +she +spread +among +the +other +coloredwomen +sethe +s +dead +daughter +the +one +whose +throat +she +cut +had +come +back +to +fix +her +sethe +was +worn +down +speckled +dying +spinning +changing +shapes +and +generally +bedeviled +that +this +daughter +beat +her +tied +her +to +the +bed +and +pulled +out +all +her +hair +it +took +them +days +to +get +the +story +properly +blown +up +and +themselves +agitated +and +then +to +calm +down +and +assess +the +situation +they +fell +into +three +groups +those +that +believed +the +worst +those +that +believed +none +of +it +and +those +like +ella +who +thought +it +through +ella +what +s +all +this +i +m +hearing +about +sethe +tell +me +it +s +in +there +with +her +that +s +all +i +know +the +daughter +the +killed +one +that +s +what +they +tell +me +how +they +know +that +s +her +it +s +sitting +there +sleeps +eats +and +raises +hell +whipping +sethe +every +day +i +ll +be +a +baby +no +grown +the +age +it +would +have +been +had +it +lived +you +talking +about +flesh +i +m +talking +about +flesh +whipping +her +like +she +was +batter +guess +she +had +it +coming +nobody +got +that +coming +but +ella +but +nothing +what +s +fair +ain +t +necessarily +right +you +can +t +just +up +and +kill +your +children +no +and +the +children +can +t +just +up +and +kill +the +mama +it +was +ella +more +than +anyone +who +convinced +the +others +that +rescue +was +in +order +she +was +a +practical +woman +who +believed +there +was +a +root +either +to +chew +or +avoid +for +every +ailment +cogitation +as +she +called +it +clouded +things +and +prevented +action +nobody +loved +her +and +she +wouldn +t +have +liked +it +if +they +had +for +she +considered +love +a +serious +disability +her +puberty +was +spent +in +a +house +where +she +was +shared +by +father +and +son +whom +she +called +the +lowest +yet +it +was +the +lowest +yet +who +gave +her +a +disgust +for +sex +and +against +whom +she +measured +all +atrocities +a +killing +a +kidnap +a +rape +whatever +she +listened +and +nodded +nothing +compared +to +the +lowest +yet +she +understood +sethe +s +rage +in +the +shed +twenty +years +ago +but +not +her +reaction +to +it +which +ella +thought +was +prideful +misdirected +and +sethe +herself +too +complicated +when +she +got +out +of +jail +and +made +no +gesture +toward +anybody +and +lived +as +though +she +were +alone +ella +junked +her +and +wouldn +t +give +her +the +time +of +day +the +daughter +however +appeared +to +have +some +sense +after +all +at +least +she +had +stepped +out +the +door +asked +or +the +help +she +needed +and +wanted +work +when +ella +heard +was +occupied +by +something +or +other +beating +up +on +sethe +it +infuriated +her +and +gave +her +another +opportunity +to +measure +what +could +very +well +be +the +devil +himself +against +the +lowest +yet +there +was +also +something +very +personal +in +her +fury +whatever +sethe +had +done +ella +didn +t +like +the +idea +of +past +errors +taking +possession +of +the +present +sethe +s +crime +was +staggering +and +her +pride +outstripped +even +that +but +she +could +not +countenance +the +possibility +of +sin +moving +on +in +the +house +unleashed +and +sassy +daily +life +took +as +much +as +she +had +the +future +was +sunset +the +past +something +to +leave +behind +and +if +it +didn +t +stay +behind +well +you +might +have +to +stomp +it +out +slave +life +freed +life +every +day +was +a +test +and +a +trial +nothing +could +be +counted +on +in +a +world +where +even +when +you +were +a +solution +you +were +a +problem +sufficient +unto +the +day +is +the +evil +thereof +and +nobody +needed +more +nobody +needed +a +grown +up +evil +sitting +at +the +table +with +a +grudge +as +long +as +the +ghost +showed +out +from +its +ghostly +place +shaking +stuff +crying +smashing +and +such +ella +respected +it +but +if +it +took +flesh +and +came +in +her +world +well +the +shoe +was +on +the +other +foot +she +didn +t +mind +a +little +communication +between +the +two +worlds +but +this +was +an +invasion +shall +we +pray +asked +the +women +uh +huh +said +ella +first +then +we +got +to +get +down +to +business +the +day +denver +was +to +spend +her +first +night +at +the +bodwins +mr +bodwin +had +some +business +on +the +edge +of +the +city +and +told +janey +he +would +pick +the +new +girl +up +before +supper +denver +sat +on +the +porch +steps +with +a +bundle +in +her +lap +her +carnival +dress +sun +faded +to +a +quieter +rainbow +she +was +looking +to +the +right +in +the +direction +mr +bodwin +would +be +coming +from +she +did +not +see +the +women +approaching +accumulating +slowly +in +groups +of +twos +and +threes +from +the +left +denver +was +looking +to +the +right +she +was +a +little +anxious +about +whether +she +would +prove +satisfactory +to +the +bodwins +and +uneasy +too +because +she +woke +up +crying +from +a +dream +about +a +running +pair +of +shoes +the +sadness +of +the +dream +she +hadn +t +been +able +to +shake +and +the +heat +oppressed +her +as +she +went +about +the +chores +far +too +early +she +wrapped +a +nightdress +and +hairbrush +into +a +bundle +nervous +she +fidgeted +the +knot +and +looked +to +the +right +some +brought +what +they +could +and +what +they +believed +would +work +stuffed +in +apron +pockets +strung +around +their +necks +lying +in +the +space +between +their +breasts +others +brought +christian +faith +as +shield +and +sword +most +brought +a +little +of +both +they +had +no +idea +what +they +would +do +once +they +got +there +they +just +started +out +walked +down +bluestone +road +and +came +together +at +the +agreed +upon +time +the +heat +kept +a +few +women +who +promised +to +go +at +home +others +who +believed +the +story +didn +t +want +any +part +of +the +confrontation +and +wouldn +t +have +come +no +matter +what +the +weather +and +there +were +those +like +lady +jones +who +didn +t +believe +the +story +and +hated +the +ignorance +of +those +who +did +so +thirty +women +made +up +that +company +and +walked +slowly +slowly +toward +it +was +three +in +the +afternoon +on +a +friday +so +wet +and +hot +cincinnati +s +stench +had +traveled +to +the +country +from +the +canal +from +hanging +meat +and +things +rotting +in +jars +from +small +animals +dead +in +the +fields +town +sewers +and +factories +the +stench +the +heat +the +moisture +trust +the +devil +to +make +his +presence +known +otherwise +it +looked +almost +like +a +regular +workday +they +could +have +been +going +to +do +the +laundry +at +the +orphanage +or +the +insane +asylum +corn +shucking +at +the +mill +or +to +dean +fish +rinse +offal +cradle +whitebabies +sweep +stores +scrape +hog +skin +press +lard +case +pack +sausage +or +hide +in +tavern +kitchens +so +whitepeople +didn +t +have +to +see +them +handle +their +food +but +not +today +when +they +caught +up +with +each +other +all +thirty +and +arrived +at +the +first +thing +they +saw +was +not +denver +sitting +on +the +steps +but +themselves +younger +stronger +even +as +little +girls +lying +in +the +grass +asleep +catfish +was +popping +grease +in +the +pan +and +they +saw +themselves +scoop +german +potato +salad +onto +the +plate +cobbler +oozing +purple +syrup +colored +their +teeth +they +sat +on +the +porch +ran +down +to +the +creek +teased +the +men +hoisted +children +on +their +hips +or +if +they +were +the +children +straddled +the +ankles +of +old +men +who +held +their +little +hands +while +giving +them +a +horsey +ride +baby +suggs +laughed +and +skipped +among +them +urging +more +mothers +dead +now +moved +their +shoulders +to +mouth +harps +the +fence +they +had +leaned +on +and +climbed +over +was +gone +the +stump +of +the +butternut +had +split +like +a +fan +but +there +they +were +young +and +happy +playing +in +baby +suggs +yard +not +feeling +the +envy +that +surfaced +the +next +day +denver +heard +mumbling +and +looked +to +the +left +she +stood +when +she +saw +them +they +grouped +murmuring +and +whispering +but +did +not +step +foot +in +the +yard +denver +waved +a +few +waved +back +but +came +no +closer +denver +sat +back +down +wondering +what +was +going +on +a +woman +dropped +to +her +knees +half +of +the +others +did +likewise +denver +saw +lowered +heads +but +could +not +hear +the +lead +prayer +only +the +earnest +syllables +of +agreement +that +backed +it +yes +yes +yes +oh +yes +hear +me +hear +me +do +it +maker +do +it +yes +among +those +not +on +their +knees +who +stood +holding +in +a +fixed +glare +was +ella +trying +to +see +through +the +walls +behind +the +door +to +what +was +really +in +there +was +it +true +the +dead +daughter +come +back +or +a +pretend +was +it +whipping +sethe +ella +had +been +beaten +every +way +but +down +she +remembered +the +bottom +teeth +she +had +lost +to +the +brake +and +the +scars +from +the +bell +were +thick +as +rope +around +her +waist +she +had +delivered +but +would +not +nurse +a +hairy +white +thing +fathered +by +the +lowest +yet +it +lived +five +days +never +making +a +sound +the +idea +of +that +pup +coming +back +to +whip +her +too +set +her +jaw +working +and +then +ella +hollered +instantly +the +kneelers +and +the +standers +joined +her +they +stopped +praying +and +took +a +step +back +to +the +beginning +in +the +beginning +there +were +no +words +in +the +beginning +was +the +sound +and +they +all +knew +what +that +sound +sounded +like +edward +bodwin +drove +a +cart +down +bluestone +road +it +displeased +him +a +bit +because +he +preferred +his +figure +astride +princess +curved +over +his +own +hands +holding +the +reins +made +him +look +the +age +he +was +but +he +had +promised +his +sister +a +detour +to +pick +up +a +new +girl +he +didn +t +have +to +think +about +the +way +he +was +headed +for +the +house +he +was +born +in +perhaps +it +was +his +destination +that +turned +his +thoughts +to +time +the +way +it +dripped +or +ran +he +had +not +seen +the +house +for +thirty +years +not +the +butternut +in +front +the +stream +at +the +rear +nor +the +block +house +in +between +not +even +the +meadow +across +the +road +very +few +of +the +interior +details +did +he +remember +because +he +was +three +years +old +when +his +family +moved +into +town +but +he +did +remember +that +the +cooking +was +done +behind +the +house +the +well +was +forbidden +to +play +near +and +that +women +died +there +his +mother +grandmother +an +aunt +and +an +older +sister +before +he +was +born +the +men +his +father +and +grandfather +moved +with +himself +and +his +baby +sister +to +court +street +sixty +seven +years +ago +the +land +of +course +eighty +acres +of +it +on +both +sides +of +bluestone +was +the +central +thing +but +he +felt +something +sweeter +and +deeper +about +the +house +which +is +why +he +rented +it +for +a +little +something +if +he +could +get +it +but +it +didn +t +trouble +him +to +get +no +rent +at +all +since +the +tenants +at +least +kept +it +from +the +disrepair +total +abandonment +would +permit +there +was +a +time +when +he +buried +things +there +precious +things +he +wanted +to +protect +as +a +child +every +item +he +owned +was +available +and +accountable +to +his +family +privacy +was +an +adult +indulgence +but +when +he +got +to +be +one +he +seemed +not +to +need +it +the +horse +trotted +along +and +edward +bodwin +cooled +his +beautiful +mustache +with +his +breath +it +was +generally +agreed +upon +by +the +women +in +the +society +that +except +for +his +hands +it +was +the +most +attractive +feature +he +had +dark +velvety +its +beauty +was +enhanced +by +his +strong +clean +shaven +chin +but +his +hair +was +white +like +his +sister +s +and +had +been +since +he +was +a +young +man +it +made +him +the +most +visible +and +memorable +person +at +every +gathering +and +cartoonists +had +fastened +onto +the +theatricality +of +his +white +hair +and +big +black +mustache +whenever +they +depicted +local +political +antagonism +twenty +years +ago +when +the +society +was +at +its +height +in +opposing +slavery +it +was +as +though +his +coloring +was +itself +the +heart +of +the +matter +the +bleached +nigger +was +what +his +enemies +called +him +and +on +a +trip +to +arkansas +some +mississippi +rivermen +enraged +by +the +negro +boatmen +they +competed +with +had +caught +him +and +shoe +blackened +his +face +and +his +hair +those +heady +days +were +gone +now +what +remained +was +the +sludge +of +ill +will +dashed +hopes +and +difficulties +beyond +repair +a +tranquil +republic +well +not +in +his +lifetime +even +the +weather +was +getting +to +be +too +much +for +him +he +was +either +too +hot +or +freezing +and +this +day +was +a +blister +he +pressed +his +hat +down +to +keep +the +sun +from +his +neck +where +heatstroke +was +a +real +possibility +such +thoughts +of +mortality +were +not +new +to +him +he +was +over +seventy +now +but +they +still +had +the +power +to +annoy +as +he +drew +closer +to +the +old +homestead +the +place +that +continued +to +surface +in +his +dreams +he +was +even +more +aware +of +the +way +time +moved +measured +by +the +wars +he +had +lived +through +but +not +fought +in +against +the +miami +the +spaniards +the +secessionists +it +was +slow +but +measured +by +the +burial +of +his +private +things +it +was +the +blink +of +an +eye +where +exactly +was +the +box +of +tin +soldiers +the +watch +chain +with +no +watch +and +who +was +he +hiding +them +from +his +father +probably +a +deeply +religious +man +who +knew +what +god +knew +and +told +everybody +what +it +was +edward +bodwin +thought +him +an +odd +man +in +so +many +ways +yet +he +had +one +clear +directive +human +life +is +holy +all +of +it +and +that +his +son +still +believed +although +he +had +less +and +less +reason +to +nothing +since +was +as +stimulating +as +the +old +days +of +letters +petitions +meetings +debates +recruitment +quarrels +rescue +and +downright +sedition +yet +it +had +worked +more +or +less +and +when +it +had +not +he +and +his +sister +made +themselves +available +to +circumvent +obstacles +as +they +had +when +a +runaway +slavewoman +lived +in +his +homestead +with +her +mother +in +law +and +got +herself +into +a +world +of +trouble +the +society +managed +to +turn +infanticide +and +the +cry +of +savagery +around +and +build +a +further +case +for +abolishing +slavery +good +years +they +were +full +of +spit +and +conviction +now +he +just +wanted +to +know +where +his +soldiers +were +and +his +watchless +chain +that +would +be +enough +for +this +day +of +unbearable +heat +bring +back +the +new +girl +and +recall +exactly +where +his +treasure +lay +then +home +supper +and +god +willing +the +sun +would +drop +once +more +to +give +him +the +blessing +of +a +good +night +s +sleep +the +road +curved +like +an +elbow +and +as +he +approached +it +he +heard +the +singers +before +he +saw +them +when +the +women +assembled +outside +sethe +was +breaking +a +lump +of +ice +into +chunks +she +dropped +the +ice +pick +into +her +apron +pocket +to +scoop +the +pieces +into +a +basin +of +water +when +the +music +entered +the +window +she +was +wringing +a +cool +cloth +to +put +on +beloved +s +forehead +beloved +sweating +profusely +was +sprawled +on +the +bed +in +the +keeping +room +a +salt +rock +in +her +hand +both +women +heard +it +at +the +same +time +and +both +lifted +their +heads +as +the +voices +grew +louder +beloved +sat +up +licked +the +salt +and +went +into +the +bigger +room +sethe +and +she +exchanged +glances +and +started +toward +the +window +they +saw +denver +sitting +on +the +steps +and +beyond +her +where +the +yard +met +the +road +they +saw +the +rapt +faces +of +thirty +neighborhood +women +some +had +their +eyes +closed +others +looked +at +the +hot +cloudless +sky +sethe +opened +the +door +and +reached +for +beloved +s +hand +together +they +stood +in +the +doorway +for +sethe +it +was +as +though +the +clearing +had +come +to +her +with +all +its +heat +and +simmering +leaves +where +the +voices +of +women +searched +for +the +right +combination +the +key +the +code +the +sound +that +broke +the +back +of +words +building +voice +upon +voice +until +they +found +it +and +when +they +did +it +was +a +wave +of +sound +wide +enough +to +sound +deep +water +and +knock +the +pods +off +chestnut +trees +it +broke +over +sethe +and +she +trembled +like +the +baptized +in +its +wash +the +singing +women +recognized +sethe +at +once +and +surprised +themselves +by +their +absence +of +fear +when +they +saw +what +stood +next +to +her +the +devil +child +was +clever +they +thought +and +beautiful +it +had +taken +the +shape +of +a +pregnant +woman +naked +and +smiling +in +the +heat +of +the +afternoon +sun +thunderblack +and +glistening +she +stood +on +long +straight +legs +her +belly +big +and +tight +vines +of +hair +twisted +all +over +her +head +jesus +her +smile +was +dazzling +sethe +feels +her +eyes +burn +and +it +may +have +been +to +keep +them +clear +that +she +looks +up +the +sky +is +blue +and +clear +not +one +touch +of +death +in +the +definite +green +of +the +leaves +it +is +when +she +lowers +her +eyes +to +look +again +at +the +loving +faces +before +her +that +she +sees +him +guiding +the +mare +slowing +down +his +black +hat +wide +brimmed +enough +to +hide +his +face +but +not +his +purpose +he +is +coming +into +her +yard +and +he +is +coming +for +her +best +thing +she +hears +wings +little +hummingbirds +stick +needle +beaks +right +through +her +headcloth +into +her +hair +and +beat +their +wings +and +if +she +thinks +anything +it +is +no +no +no +nonono +she +flies +the +ice +pick +is +not +in +her +hand +it +is +her +hand +standing +alone +on +the +porch +beloved +is +smiling +but +now +her +hand +is +empty +sethe +is +running +away +from +her +running +and +she +feels +the +emptiness +in +the +hand +sethe +has +been +holding +now +she +is +running +into +the +faces +of +the +people +out +there +joining +them +and +leaving +beloved +behind +alone +again +then +denver +running +too +away +from +her +to +the +pile +of +people +out +there +they +make +a +hill +a +hill +of +black +people +falling +and +above +them +all +rising +from +his +place +with +a +whip +in +his +hand +the +man +without +skin +looking +he +is +looking +at +her +chapter +bare +feet +and +chamomile +sap +took +off +my +shoes +took +off +my +hat +bare +feet +and +chamomile +sap +gimme +back +my +shoes +gimme +back +my +hat +lay +my +head +on +a +potato +sack +devil +sneak +up +behind +my +back +steam +engine +got +a +lonesome +whine +love +that +woman +till +you +go +stone +blind +stone +blind +stone +blind +sweet +home +gal +make +you +lose +your +mind +his +coming +is +the +reverse +route +of +his +going +first +the +cold +house +the +storeroom +then +the +kitchen +before +he +tackles +the +beds +here +boy +feeble +and +shedding +his +coat +in +patches +is +asleep +by +the +pump +so +paul +d +knows +beloved +is +truly +gone +disappeared +some +say +exploded +right +before +their +eyes +ella +is +not +so +sure +maybe +she +says +maybe +not +could +be +hiding +in +the +trees +waiting +for +another +chance +but +when +paul +d +sees +the +ancient +dog +eighteen +years +if +a +day +he +is +certain +is +clear +of +her +but +he +opens +the +door +to +the +cold +house +halfway +expecting +to +hear +her +touch +me +touch +me +on +the +inside +part +and +call +me +my +name +there +is +the +pallet +spread +with +old +newspapers +gnawed +at +the +edges +by +mice +the +lard +can +the +potato +sacks +too +but +empty +now +they +lie +on +the +dirt +floor +in +heaps +in +daylight +he +can +t +imagine +it +in +darkness +with +moonlight +seeping +through +the +cracks +nor +the +desire +that +drowned +him +there +and +forced +him +to +struggle +up +up +into +that +girl +like +she +was +the +clear +air +at +the +top +of +the +sea +coupling +with +her +wasn +t +even +fun +it +was +more +like +a +brainless +urge +to +stay +alive +each +time +she +came +pulled +up +her +skirts +a +life +hunger +overwhelmed +him +and +he +had +no +more +control +over +it +than +over +his +lungs +and +afterward +beached +and +gobbling +air +in +the +midst +of +repulsion +and +personal +shame +he +was +thankful +too +for +having +been +escorted +to +some +ocean +deep +place +he +once +belonged +to +sifting +daylight +dissolves +the +memory +turns +it +into +dust +motes +floating +in +light +paul +d +shuts +the +door +he +looks +toward +the +house +and +surprisingly +it +does +not +look +back +at +him +unloaded +is +just +another +weathered +house +needing +repair +quiet +just +as +stamp +paid +said +used +to +be +voices +all +round +that +place +quiet +now +stamp +said +i +been +past +it +a +few +times +and +i +can +t +hear +a +thing +chastened +i +reckon +cause +mr +bodwin +say +he +selling +it +soon +s +he +can +that +the +name +of +the +one +she +tried +to +stab +that +one +yep +his +sister +say +it +s +full +of +trouble +told +janey +she +was +going +to +get +rid +of +it +and +him +asked +paul +d +janey +say +he +against +it +but +won +t +stop +it +who +they +think +want +a +house +out +there +anybody +got +the +money +don +t +want +to +live +out +there +beats +me +stamp +answered +it +ll +be +a +spell +i +guess +before +it +get +took +off +his +hands +he +don +t +plan +on +taking +her +to +the +law +don +t +seem +like +it +janey +say +all +he +wants +to +know +is +who +was +the +naked +blackwoman +standing +on +the +porch +he +was +looking +at +her +so +hard +he +didn +t +notice +what +sethe +was +up +to +all +he +saw +was +some +coloredwomen +fighting +he +thought +sethe +was +after +one +of +them +janey +say +janey +tell +him +any +different +no +she +say +she +so +glad +her +boss +ain +t +dead +if +ella +hadn +t +clipped +her +she +say +she +would +have +scared +her +to +death +have +that +woman +kill +her +boss +she +and +denver +be +looking +for +a +job +who +janey +tell +him +the +naked +woman +was +told +him +she +didn +t +see +none +you +believe +they +saw +it +well +they +saw +something +i +trust +ella +anyway +and +she +say +she +looked +it +in +the +eye +it +was +standing +right +next +to +sethe +but +from +the +way +they +describe +it +don +t +seem +like +it +was +the +girl +i +saw +in +there +the +girl +i +saw +was +narrow +this +one +was +big +she +say +they +was +holding +hands +and +sethe +looked +like +a +little +girl +beside +it +little +girl +with +a +ice +pick +how +close +she +get +to +him +right +up +on +him +they +say +before +denver +and +them +grabbed +her +and +ella +put +her +fist +in +her +jaw +he +got +to +know +sethe +was +after +him +he +got +to +maybe +i +don +t +know +if +he +did +think +it +i +reckon +he +decided +not +to +that +be +just +like +him +too +he +s +somebody +never +turned +us +down +steady +as +a +rock +i +tell +you +something +if +she +had +got +to +him +it +d +be +the +worst +thing +in +the +world +for +us +you +know +don +t +you +he +s +the +main +one +kept +sethe +from +the +gallows +in +the +first +place +yeah +damn +that +woman +is +crazy +crazy +yeah +well +ain +t +we +all +they +laughed +then +a +rusty +chuckle +at +first +and +then +more +louder +and +louder +until +stamp +took +out +his +pocket +handkerchief +and +wiped +his +eyes +while +paul +d +pressed +the +heel +of +his +hand +in +his +own +as +the +scene +neither +one +had +witnessed +took +shape +before +them +its +seriousness +and +its +embarrassment +made +them +shake +with +laughter +every +time +a +whiteman +come +to +the +door +she +got +to +kill +somebody +for +all +she +know +the +man +could +be +coming +for +the +rent +good +thing +they +don +t +deliver +mail +out +that +way +wouldn +t +nobody +get +no +letter +except +the +postman +be +a +mighty +hard +message +and +his +last +when +their +laughter +was +spent +they +took +deep +breaths +and +shook +their +heads +and +he +still +going +to +let +denver +spend +the +night +in +his +house +ha +aw +no +hey +lay +off +denver +paul +d +that +s +my +heart +i +m +proud +of +that +girl +she +was +the +first +one +wrestle +her +mother +down +before +anybody +knew +what +the +devil +was +going +on +she +saved +his +life +then +you +could +say +you +could +you +could +said +stamp +thinking +suddenly +of +the +leap +the +wide +swing +and +snatch +of +his +arm +as +he +rescued +the +little +curly +headed +baby +from +within +inches +of +a +split +skull +i +m +proud +of +her +she +turning +out +fine +fine +it +was +true +paul +d +saw +her +the +next +morning +when +he +was +on +his +way +to +work +and +she +was +leaving +hers +thinner +steady +in +the +eyes +she +looked +more +like +halle +than +ever +she +was +the +first +to +smile +good +morning +mr +d +well +it +is +now +her +smile +no +longer +the +sneer +he +remembered +had +welcome +in +it +and +strong +traces +of +sethe +s +mouth +paul +d +touched +his +cap +how +you +getting +along +don +t +pay +to +complain +you +on +your +way +home +she +said +no +she +had +heard +about +an +afternoon +job +at +the +shirt +factory +she +hoped +that +with +her +night +work +at +the +bodwins +and +another +one +she +could +put +away +something +and +help +her +mother +too +when +he +asked +her +if +they +treated +her +all +right +over +there +she +said +more +than +all +right +miss +bodwin +taught +her +stuff +he +asked +her +what +stuff +and +she +laughed +and +said +book +stuff +she +says +i +might +go +to +oberlin +she +s +experimenting +on +me +and +he +didn +t +say +watch +out +watch +out +nothing +in +the +world +more +dangerous +than +a +white +schoolteacher +instead +he +nodded +and +asked +the +question +he +wanted +to +your +mother +all +right +no +said +denver +no +no +not +a +bit +all +right +you +think +i +should +stop +by +would +she +welcome +it +i +don +t +know +said +denver +i +think +i +ve +lost +my +mother +paul +d +they +were +both +silent +for +a +moment +and +then +he +said +uh +that +girl +you +know +beloved +yes +you +think +she +sure +nough +your +sister +denver +looked +at +her +shoes +at +times +at +times +i +think +she +was +more +she +fiddled +with +her +shirtwaist +rubbing +a +spot +of +something +suddenly +she +leveled +her +eyes +at +his +but +who +would +know +that +better +than +you +paul +d +i +mean +you +sure +nough +knew +her +he +licked +his +lips +well +if +you +want +my +opinion +i +don +t +she +said +i +have +my +own +you +grown +he +said +yes +sir +well +well +good +luck +with +the +job +thank +you +and +paul +d +you +don +t +have +to +stay +way +but +be +careful +how +you +talk +to +my +ma +am +hear +don +t +worry +he +said +and +left +her +then +or +rather +she +left +him +because +a +young +man +was +running +toward +her +saying +hey +miss +denver +wait +up +she +turned +to +him +her +face +looking +like +someone +had +turned +up +the +gas +jet +he +left +her +unwillingly +because +he +wanted +to +talk +more +make +sense +out +of +the +stories +he +had +been +hearing +whiteman +came +to +take +denver +to +work +and +sethe +cut +him +baby +ghost +came +back +evil +and +sent +sethe +out +to +get +the +man +who +kept +her +from +hanging +one +point +of +agreement +is +first +they +saw +it +and +then +they +didn +t +when +they +got +sethe +down +on +the +ground +and +the +ice +pick +out +of +her +hands +and +looked +back +to +the +house +it +was +gone +later +a +little +boy +put +it +out +how +he +had +been +looking +for +bait +back +of +down +by +the +stream +and +saw +cutting +through +the +woods +a +naked +woman +with +fish +for +hair +as +a +matter +of +fact +paul +d +doesn +t +care +how +it +went +or +even +why +he +cares +about +how +he +left +and +why +then +he +looks +at +himself +through +garner +s +eyes +he +sees +one +thing +through +sixo +s +another +one +makes +him +feel +righteous +one +makes +him +feel +ashamed +like +the +time +he +worked +both +sides +of +the +war +running +away +from +the +northpoint +bank +and +railway +to +join +the +th +colored +regiment +in +tennessee +he +thought +he +had +made +it +only +to +discover +he +had +arrived +at +another +colored +regiment +forming +under +a +commander +in +new +jersey +he +stayed +there +four +weeks +the +regiment +fell +apart +before +it +got +started +on +the +question +of +whether +the +soldiers +should +have +weapons +or +not +not +it +was +decided +and +the +white +commander +had +to +figure +out +what +to +command +them +to +do +instead +of +kill +other +white +men +some +of +the +ten +thousand +stayed +there +to +clean +haul +and +build +things +others +drifted +away +to +another +regiment +most +were +abandoned +left +to +their +own +devices +with +bitterness +for +pay +he +was +trying +to +make +up +his +mind +what +to +do +when +an +agent +from +northpoint +bank +caught +up +with +him +and +took +him +back +to +delaware +where +he +slave +worked +a +year +then +northpoint +took +in +exchange +for +his +services +in +alabama +where +he +worked +for +the +rebellers +first +sorting +the +dead +and +then +smelting +iron +when +he +and +his +group +combed +the +battlefields +their +job +was +to +pull +the +confederate +wounded +away +from +the +confederate +dead +care +they +told +them +take +good +care +coloredmen +and +white +their +faces +wrapped +to +their +eyes +picked +their +way +through +the +meadows +with +lamps +listening +in +the +dark +for +groans +of +life +in +the +indifferent +silence +of +the +dead +mostly +young +men +some +children +and +it +shamed +him +a +little +to +feel +pity +for +what +he +imagined +were +the +sons +of +the +guards +in +alfred +georgia +in +five +tries +he +had +not +had +one +permanent +success +every +one +of +his +escapes +from +sweet +home +from +brandywine +from +alfred +georgia +from +wilmington +from +northpoint +had +been +frustrated +alone +undisguised +with +visible +skin +memorable +hair +and +no +whiteman +to +protect +him +he +never +stayed +uncaught +the +longest +had +been +when +he +ran +with +the +convicts +stayed +with +the +cherokee +followed +their +advice +and +lived +in +hiding +with +the +weaver +woman +in +wilmington +delaware +three +years +and +in +all +those +escapes +he +could +not +help +being +astonished +by +the +beauty +of +this +land +that +was +not +his +he +hid +in +its +breast +fingered +its +earth +for +food +clung +to +its +banks +to +lap +water +and +tried +not +to +love +it +on +nights +when +the +sky +was +personal +weak +with +the +weight +of +its +own +stars +he +made +himself +not +love +it +its +graveyards +and +low +lying +rivers +or +just +a +house +solitary +under +a +chinaberry +tree +maybe +a +mule +tethered +and +the +light +hitting +its +hide +just +so +anything +could +stir +him +and +he +tried +hard +not +to +love +it +after +a +few +months +on +the +battlefields +of +alabama +he +was +impressed +to +a +foundry +in +selma +along +with +three +hundred +captured +lent +or +taken +coloredmen +that +s +where +the +war +s +end +found +him +and +leaving +alabama +when +he +had +been +declared +free +should +have +been +a +snap +he +should +have +been +able +to +walk +from +the +foundry +in +selma +straight +to +philadelphia +taking +the +main +roads +a +train +if +he +wanted +to +or +passage +on +a +boat +but +it +wasn +t +like +that +when +he +and +two +colored +soldiers +who +had +been +captured +from +the +th +he +had +looked +for +walked +from +selma +to +mobile +they +saw +twelve +dead +blacks +in +the +first +eighteen +miles +two +were +women +four +were +little +boys +he +thought +this +for +sure +would +be +the +walk +of +his +life +the +yankees +in +control +left +the +rebels +out +of +control +they +got +to +the +outskirts +of +mobile +where +blacks +were +putting +down +tracks +for +the +union +that +earlier +they +had +torn +up +for +the +rebels +one +of +the +men +with +him +a +private +called +keane +had +been +with +the +massachusetts +th +he +told +paul +d +they +had +been +paid +less +than +white +soldiers +it +was +a +sore +point +with +him +that +as +a +group +they +had +refused +the +offer +massachusetts +made +to +make +up +the +difference +in +pay +paul +d +was +so +impressed +by +the +idea +of +being +paid +money +to +fight +he +looked +at +the +private +with +wonder +and +envy +keane +and +his +friend +a +sergeant +rossiter +confiscated +a +skiff +and +the +three +of +them +floated +in +mobile +bay +there +the +private +hailed +a +union +gunboat +which +took +all +three +aboard +keane +and +rossiter +disembarked +at +memphis +to +look +for +their +commanders +the +captain +of +the +gunboat +let +paul +d +stay +aboard +all +the +way +to +wheeling +west +virginia +he +made +his +own +way +to +new +jersey +by +the +time +he +got +to +mobile +he +had +seen +more +dead +people +than +living +ones +but +when +he +got +to +trenton +the +crowds +of +alive +people +neither +hunting +nor +hunted +gave +him +a +measure +of +free +life +so +tasty +he +never +forgot +it +moving +down +a +busy +street +full +of +whitepeople +who +needed +no +explanation +for +his +presence +the +glances +he +got +had +to +do +with +his +disgusting +clothes +and +unforgivable +hair +still +nobody +raised +an +alarm +then +came +the +miracle +standing +in +a +street +in +front +of +a +row +of +brick +houses +he +heard +a +whiteman +call +him +say +there +yo +to +help +unload +two +trunks +from +a +coach +cab +afterward +the +whiteman +gave +him +a +coin +paul +d +walked +around +with +it +for +hours +not +sure +what +it +could +buy +a +suit +a +meal +a +horse +and +if +anybody +would +sell +him +anything +finally +he +saw +a +greengrocer +selling +vegetables +from +a +wagon +paul +d +pointed +to +a +bunch +of +turnips +the +grocer +handed +them +to +him +took +his +one +coin +and +gave +him +several +more +stunned +he +backed +away +looking +around +he +saw +that +nobody +seemed +interested +in +the +mistake +or +him +so +he +walked +along +happily +chewing +turnips +only +a +few +women +looked +vaguely +repelled +as +they +passed +his +first +earned +purchase +made +him +glow +never +mind +the +turnips +were +withered +dry +that +was +when +he +decided +that +to +eat +walk +and +sleep +anywhere +was +life +as +good +as +it +got +and +he +did +it +for +seven +years +till +he +found +himself +in +southern +ohio +where +an +old +woman +and +a +girl +he +used +to +know +had +gone +now +his +coming +is +the +reverse +of +his +going +first +he +stands +in +the +back +near +the +cold +house +amazed +by +the +riot +of +late +summer +flowers +where +vegetables +should +be +growing +sweet +william +morning +glory +chrysanthemums +the +odd +placement +of +cans +jammed +with +the +rotting +stems +of +things +the +blossoms +shriveled +like +sores +dead +ivy +twines +around +bean +poles +and +door +handles +faded +newspaper +pictures +are +nailed +to +the +outhouse +and +on +trees +a +rope +too +short +for +anything +but +skip +jumping +lies +discarded +near +the +washtub +and +jars +and +jars +of +dead +lightning +bugs +like +a +child +s +house +the +house +of +a +very +tall +child +he +walks +to +the +front +door +and +opens +it +it +is +stone +quiet +in +the +place +where +once +a +shaft +of +sad +red +light +had +bathed +him +locking +him +where +he +stood +is +nothing +a +bleak +and +minus +nothing +more +like +absence +but +an +absence +he +had +to +get +through +with +the +same +determination +he +had +when +he +trusted +sethe +and +stepped +through +the +pulsing +light +he +glances +quickly +at +the +lightning +white +stairs +the +entire +railing +is +wound +with +ribbons +bows +bouquets +paul +d +steps +inside +the +outdoor +breeze +he +brings +with +him +stirs +the +ribbons +carefully +not +quite +in +a +hurry +but +losing +no +time +he +climbs +the +luminous +stairs +he +enters +sethe +s +room +she +isn +t +there +and +the +bed +looks +so +small +he +wonders +how +the +two +of +them +had +lain +there +it +has +no +sheets +and +because +the +roof +windows +do +not +open +the +room +is +stifling +brightly +colored +clothes +lie +on +the +floor +hanging +from +a +wall +peg +is +the +dress +beloved +wore +when +he +first +saw +her +a +pair +of +ice +skates +nestles +in +a +basket +in +the +corner +he +turns +his +eyes +back +to +the +bed +and +keeps +looking +at +it +it +seems +to +him +a +place +he +is +not +with +an +effort +that +makes +him +sweat +he +forces +a +picture +of +himself +lying +there +and +when +he +sees +it +it +lifts +his +spirit +he +goes +to +the +other +bedroom +denver +s +is +as +neat +as +the +other +is +messy +but +still +no +sethe +maybe +she +has +gone +back +to +work +gotten +better +in +the +days +since +he +talked +to +denver +he +goes +back +down +the +stairs +leaving +the +image +of +himself +firmly +in +place +on +the +narrow +bed +at +the +kitchen +table +he +sits +down +something +is +missing +from +something +larger +than +the +people +who +lived +there +something +more +than +beloved +or +the +red +light +he +can +t +put +his +finger +on +it +but +it +seems +for +a +moment +that +just +beyond +his +knowing +is +the +glare +of +an +outside +thing +that +embraces +while +it +accuses +to +the +right +of +him +where +the +door +to +the +keeping +room +is +ajar +he +hears +humming +someone +is +humming +a +tune +something +soft +and +sweet +like +a +lullaby +then +a +few +words +sounds +like +high +johnny +wide +johnny +sweet +william +bend +down +low +of +course +he +thinks +that +s +where +she +is +and +she +is +lying +under +a +quilt +of +merry +colors +her +hair +like +the +dark +delicate +roots +of +good +plants +spreads +and +curves +on +the +pillow +her +eyes +fixed +on +the +window +are +so +expressionless +he +is +not +sure +she +will +know +who +he +is +there +is +too +much +light +here +in +this +room +things +look +sold +jackweed +raise +up +high +she +sings +lambswool +over +my +shoulder +buttercup +and +clover +fly +she +is +fingering +a +long +clump +of +her +hair +paul +d +clears +his +throat +to +interrupt +her +sethe +she +turns +her +head +paul +d +aw +sethe +i +made +the +ink +paul +d +he +couldn +t +have +done +it +if +i +hadn +t +made +the +ink +what +ink +who +you +shaved +yeah +look +bad +no +you +looking +good +devil +s +confusion +what +s +this +i +hear +about +you +not +getting +out +of +bed +she +smiles +lets +it +fade +and +turns +her +eyes +back +to +the +window +i +need +to +talk +to +you +he +tells +her +she +doesn +t +answer +i +saw +denver +she +tell +you +she +comes +in +the +daytime +denver +she +s +still +with +me +my +denver +you +got +to +get +up +from +here +girl +he +is +nervous +this +reminds +him +of +something +i +m +tired +paul +d +so +tired +i +have +to +rest +a +while +now +he +knows +what +he +is +reminded +of +and +he +shouts +at +her +don +t +you +die +on +me +this +is +baby +suggs +bed +is +that +what +you +planning +he +is +so +angry +he +could +kill +her +he +checks +himself +remembering +denver +s +warning +and +whispers +what +you +planning +sethe +oh +i +don +t +have +no +plans +no +plans +at +all +look +he +says +denver +be +here +in +the +day +i +be +here +in +the +night +i +m +a +take +care +of +you +you +hear +starting +now +first +off +you +don +t +smell +right +stay +there +don +t +move +let +me +heat +up +some +water +he +stops +is +it +all +right +sethe +if +i +heat +up +some +water +and +count +my +feet +she +asks +him +he +steps +closer +rub +your +feet +sethe +closes +her +eyes +and +presses +her +lips +together +she +is +thinking +no +this +little +place +by +a +window +is +what +i +want +and +rest +there +s +nothing +to +rub +now +and +no +reason +to +nothing +left +to +bathe +assuming +he +even +knows +how +will +he +do +it +in +sections +first +her +face +then +her +hands +her +thighs +her +feet +her +back +ending +with +her +exhausted +breasts +and +if +he +bathes +her +in +sections +will +the +parts +hold +she +opens +her +eyes +knowing +the +danger +of +looking +at +him +she +looks +at +him +the +peachstone +skin +the +crease +between +his +ready +waiting +eyes +and +sees +it +the +thing +in +him +the +blessedness +that +has +made +him +the +kind +of +man +who +can +walk +in +a +house +and +make +the +women +cry +because +with +him +in +his +presence +they +could +cry +and +tell +him +things +they +only +told +each +other +that +time +didn +t +stay +put +that +she +called +but +howard +and +buglar +walked +on +down +the +railroad +track +and +couldn +t +hear +her +that +amy +was +scared +to +stay +with +her +because +her +feet +were +ugly +and +her +back +looked +so +bad +that +her +ma +am +had +hurt +her +feelings +and +she +couldn +t +find +her +hat +anywhere +and +paul +d +what +baby +she +left +me +aw +girl +don +t +cry +she +was +my +best +thing +paul +d +sits +down +in +the +rocking +chair +and +examines +the +quilt +patched +in +carnival +colors +his +hands +are +limp +between +his +knees +there +are +too +many +things +to +feel +about +this +woman +his +head +hurts +suddenly +he +remembers +sixo +trying +to +describe +what +he +felt +about +the +thirty +mile +woman +she +is +a +friend +of +my +mind +she +gather +me +man +the +pieces +i +am +she +gather +them +and +give +them +back +to +me +in +all +the +right +order +it +s +good +you +know +when +you +got +a +woman +who +is +a +friend +of +your +mind +he +is +staring +at +the +quilt +but +he +is +thinking +about +her +wrought +iron +back +the +delicious +mouth +still +puffy +at +the +corner +from +ella +s +fist +the +mean +black +eyes +the +wet +dress +steaming +before +the +fire +her +tenderness +about +his +neck +jewelry +its +three +wands +like +attentive +baby +rattlers +curving +two +feet +into +the +air +how +she +never +mentioned +or +looked +at +it +so +he +did +not +have +to +feel +the +shame +of +being +collared +like +a +beast +only +this +woman +sethe +could +have +left +him +his +manhood +like +that +he +wants +to +put +his +story +next +to +hers +sethe +he +says +me +and +you +we +got +more +yesterday +than +anybody +we +need +some +kind +of +tomorrow +he +leans +over +and +takes +her +hand +with +the +other +he +touches +her +face +you +your +best +thing +sethe +you +are +his +holding +fingers +are +holding +hers +me +me +chapter +there +is +a +loneliness +that +can +be +rocked +arms +crossed +knees +drawn +up +holding +holding +on +this +motion +unlike +a +ship +s +smooths +and +contains +the +rocker +it +s +an +inside +kind +wrapped +tight +like +skin +then +there +is +a +loneliness +that +roams +no +rocking +can +hold +it +down +it +is +alive +on +its +own +a +dry +and +spreading +thing +that +makes +the +sound +of +one +s +own +feet +going +seem +to +come +from +a +far +off +place +everybody +knew +what +she +was +called +but +nobody +anywhere +knew +her +name +disremembered +and +unaccounted +for +she +cannot +be +lost +because +no +one +is +looking +for +her +and +even +if +they +were +how +can +they +call +her +if +they +don +t +know +her +name +although +she +has +claim +she +is +not +claimed +in +the +place +where +long +grass +opens +the +girl +who +waited +to +be +loved +and +cry +shame +erupts +into +her +separate +parts +to +make +it +easy +for +the +chewing +laughter +to +swallow +her +all +away +it +was +not +a +story +to +pass +on +they +forgot +her +like +a +bad +dream +after +they +made +up +their +tales +shaped +and +decorated +them +those +that +saw +her +that +day +on +the +porch +quickly +and +deliberately +forgot +her +it +took +longer +for +those +who +had +spoken +to +her +lived +with +her +fallen +in +love +with +her +to +forget +until +they +realized +they +couldn +t +remember +or +repeat +a +single +thing +she +said +and +began +to +believe +that +other +than +what +they +themselves +were +thinking +she +hadn +t +said +anything +at +all +so +in +the +end +they +forgot +her +too +remembering +seemed +unwise +they +never +knew +where +or +why +she +crouched +or +whose +was +the +underwater +face +she +needed +like +that +where +the +memory +of +the +smile +under +her +chin +might +have +been +and +was +not +a +latch +latched +and +lichen +attached +its +apple +green +bloom +to +the +metal +what +made +her +think +her +fingernails +could +open +locks +the +rain +rained +on +it +was +not +a +story +to +pass +on +so +they +forgot +her +like +an +unpleasant +dream +during +a +troubling +sleep +occasionally +however +the +rustle +of +a +skirt +hushes +when +they +wake +and +the +knuckles +brushing +a +cheek +in +sleep +seem +to +belong +to +the +sleeper +sometimes +the +photograph +of +a +close +friend +or +relative +looked +at +too +long +shifts +and +something +more +familiar +than +the +dear +face +itself +moves +there +they +can +touch +it +if +they +like +but +don +t +because +they +know +things +will +never +be +the +same +if +they +do +this +is +not +a +story +to +pass +on +down +by +the +stream +in +back +of +her +footprints +come +and +go +come +and +go +they +are +so +familiar +should +a +child +an +adult +place +his +feet +in +them +they +will +fit +take +them +out +and +they +disappear +again +as +though +nobody +ever +walked +there +by +and +by +all +trace +is +gone +and +what +is +forgotten +is +not +only +the +footprints +but +the +water +too +and +what +it +is +down +there +the +rest +is +weather +not +the +breath +of +the +disremembered +and +unaccounted +for +but +wind +in +the +eaves +or +spring +ice +thawing +too +quickly +just +weather +certainly +no +clamor +for +a +kiss +beloved +the +end +the +myth +of +sisyphus +an +absurd +reasoning +absurdity +and +suicide +there +is +but +one +truly +serious +philosophical +problem +and +that +is +suicide +judging +whether +life +is +or +is +not +worth +living +amounts +to +answering +the +fundamental +question +of +philosophy +all +the +rest +whether +or +not +the +world +has +three +dimensions +whether +the +mind +has +nine +or +twelve +categories +comes +afterwards +these +are +games +one +must +first +answer +and +if +it +is +true +as +nietzsche +claims +that +a +philosopher +to +deserve +our +respect +must +preach +by +example +you +can +appreciate +the +importance +of +that +reply +for +it +will +precede +the +definitive +act +these +are +facts +the +heart +can +feel +yet +they +call +for +careful +study +before +they +become +clear +to +the +intellect +if +i +ask +myself +how +to +judge +that +this +question +is +more +urgent +than +that +i +reply +that +one +judges +by +the +actions +it +entails +i +have +never +seen +anyone +die +for +the +ontologi +cal +argument +galileo +who +held +a +scientific +truth +of +great +importance +abjured +it +with +the +greatest +ease +as +soon +as +it +endangered +his +life +in +a +certain +sense +he +did +right +that +truth +was +not +worth +the +stake +whether +the +earth +or +the +sun +revolves +around +the +other +is +a +matter +of +profound +indifference +to +tell +the +truth +it +is +a +futile +question +on +the +other +hand +i +see +many +people +die +because +they +judge +that +life +is +not +worth +living +i +see +others +paradoxically +getting +killed +for +the +ideas +or +illusions +that +give +them +a +reason +for +living +what +is +called +a +reason +for +living +is +also +an +excellent +reason +for +dying +i +therefore +conclude +that +the +meaning +of +life +is +the +most +urgent +of +questions +how +to +answer +it +on +all +essential +problems +i +mean +thereby +those +that +run +the +risk +of +leading +to +death +or +those +that +intensify +the +passion +of +living +there +are +probably +but +two +methods +of +thought +the +method +of +la +palisse +and +the +method +of +don +quixote +solely +the +balance +between +evidence +and +lyricism +can +allow +us +to +achieve +simultaneously +emotion +and +lucidity +in +a +subject +at +once +so +humble +and +so +heavy +with +emotion +the +learned +and +classical +dialectic +must +yield +one +can +see +to +a +more +modest +attitude +of +mind +deriving +at +one +and +the +same +time +from +common +sense +and +understanding +suicide +has +never +been +dealt +with +except +as +a +social +phenomenon +on +the +contrary +we +are +concerned +here +at +the +outset +with +the +relationship +between +individual +thought +and +suicide +an +act +like +this +is +prepared +within +the +silence +of +the +heart +as +is +a +great +work +of +art +the +man +himself +is +ignorant +of +it +one +evening +he +pulls +the +trigger +or +jumps +of +an +apartment +building +manager +who +had +killed +himself +i +was +told +that +he +had +lost +his +daughter +five +years +before +that +be +bad +changed +greatly +since +and +that +that +experience +had +undermined +him +a +more +exact +word +cannot +be +imagined +beginning +to +think +is +beginning +to +be +undermined +society +has +but +little +connection +with +such +beginnings +the +worm +is +in +man +s +heart +that +is +where +it +must +be +sought +one +must +follow +and +understand +this +fatal +game +that +leads +from +lucidity +in +the +face +of +existence +to +flight +from +light +there +are +many +causes +for +a +suicide +and +generally +the +most +obvious +ones +were +not +the +most +powerful +rarely +is +suicide +committed +yet +the +hypothesis +is +not +excluded +through +reflection +what +sets +off +the +crisis +is +almost +always +unverifiable +newspapers +often +speak +of +personal +sorrows +or +of +incurable +illness +these +explanations +are +plausible +but +one +would +have +to +know +whether +a +friend +of +the +desperate +man +had +not +that +very +day +addressed +him +indifferently +he +is +the +guilty +one +for +that +is +enough +to +precipitate +all +the +rancors +and +all +the +boredom +still +in +suspension +but +if +it +is +hard +to +fix +the +precise +instant +the +subtle +step +when +the +mind +opted +for +death +it +is +easier +to +deduce +from +the +act +itself +the +consequences +it +implies +in +a +sense +and +as +in +melodrama +killing +yourself +amounts +to +confessing +it +is +confessing +that +life +is +too +much +for +you +or +that +you +do +not +understand +it +let +s +not +go +too +far +in +such +analogies +however +but +rather +return +to +everyday +words +it +is +merely +confessing +that +that +is +not +worth +the +trouble +living +naturally +is +never +easy +you +continue +making +the +gestures +commanded +by +existence +for +many +reasons +the +first +of +which +is +habit +dying +voluntarily +implies +that +you +have +recognized +even +instinc +tively +the +ridiculous +character +of +that +habit +the +absence +of +any +profound +reason +for +living +the +insane +character +of +that +daily +agitation +and +the +uselessness +of +suffering +what +then +is +that +incalculable +feeling +that +deprives +the +mind +of +the +sleep +necessary +to +life +a +world +that +can +be +explained +even +with +bad +reasons +is +a +familiar +world +but +on +the +other +hand +in +a +universe +suddenly +divested +of +illusions +and +lights +man +feels +an +alien +a +stranger +his +exile +is +without +remedy +since +he +is +deprived +of +the +memory +of +a +lost +home +or +the +hope +of +a +promised +land +this +divorce +between +man +and +this +life +the +actor +and +his +setting +is +properly +the +feeling +of +absurdity +all +healthy +men +having +thought +of +their +own +suicide +it +can +be +seen +without +further +explanation +that +there +is +a +direct +connection +between +this +feeling +and +the +longing +for +death +the +subject +of +this +essay +is +precisely +this +relationship +between +the +absurd +and +suicide +the +exact +degree +to +which +suicide +is +a +solution +to +the +absurd +the +principle +can +be +established +that +for +a +man +who +does +not +cheat +what +he +believes +to +be +true +must +determine +his +action +belief +in +the +absurdity +of +existence +must +then +dictate +his +conduct +it +is +legitimate +to +wonder +clearly +and +without +false +pathos +whether +a +conclusion +of +this +importance +requires +forsaking +as +rapidly +as +possible +an +incomprehensible +condition +i +am +speaking +of +course +of +men +inclined +to +be +in +harmony +with +themselves +stated +clearly +this +problem +may +seem +both +simple +and +insoluble +but +it +is +wrongly +assumed +that +simple +questions +involve +answers +that +are +no +less +simple +and +that +evidence +implies +evidence +a +priori +and +reversing +the +terms +of +the +problem +just +as +one +does +or +does +not +kill +oneself +it +seems +that +there +are +but +two +philosophical +solutions +either +yes +or +no +this +would +be +too +easy +but +allowance +must +be +made +for +those +who +without +concluding +continue +questioning +here +i +am +only +slightly +indulging +in +irony +this +is +the +majority +i +notice +also +that +those +who +answer +no +act +as +if +they +thought +yes +as +a +matter +of +fact +if +i +accept +the +nietzschean +criterion +they +think +yes +in +one +way +or +another +on +the +other +hand +it +often +happens +that +those +who +commit +suicide +were +assured +of +the +meaning +of +life +these +contradictions +are +constant +it +may +even +be +said +that +they +have +never +been +so +keen +as +on +this +point +where +on +the +contrary +logic +seems +so +desirable +it +is +a +commonplace +to +compare +philosophical +theories +and +the +behavior +of +those +who +profess +them +but +it +must +be +said +that +of +the +thinkers +who +refused +a +meaning +to +life +none +except +kirilov +who +belongs +to +literature +peregrinos +who +is +born +of +legend +and +jules +lequier +who +belongs +to +hypothesis +admitted +his +logic +to +the +point +of +refusing +that +life +schopenhauer +is +often +cited +as +a +fit +subject +for +laughter +because +he +praised +suicide +while +seated +at +a +well +set +table +this +is +no +subject +for +joking +that +way +of +not +taking +the +tragic +seriously +is +not +so +grievous +but +it +helps +to +judge +a +man +in +the +face +of +such +contradictions +and +obscurities +must +we +conclude +that +there +is +no +relationship +between +the +opinion +one +has +about +life +and +the +act +one +commits +to +leave +it +let +us +not +exaggerate +in +this +direction +in +a +man +s +attachment +to +life +there +is +something +stronger +than +all +the +ills +in +the +world +the +body +s +judgment +is +as +good +as +the +mind +s +and +the +body +shrinks +from +annihilation +we +get +into +the +habit +of +living +before +acquiring +the +habit +of +thinking +in +that +race +which +daily +hastens +us +toward +death +the +body +maintains +its +irreparable +lead +in +short +the +essence +of +that +contradiction +lies +in +what +i +shall +call +the +act +of +eluding +because +it +is +both +less +and +more +than +diversion +in +the +pascalian +sense +eluding +is +the +invariable +game +the +typical +act +of +eluding +the +fatal +evasion +that +constitutes +the +third +theme +of +this +essay +is +hope +hope +of +another +life +one +must +deserve +or +trickery +of +those +who +live +not +for +life +itself +but +for +some +great +idea +that +will +transcend +it +refine +it +give +it +a +meaning +and +betray +it +thus +everything +contributes +to +spreading +confusion +hitherto +and +it +has +not +been +wasted +effort +people +have +played +on +words +and +pretended +to +believe +that +refusing +to +grant +a +meaning +to +life +necessarily +leads +to +declaring +that +it +is +not +worth +living +in +truth +there +is +no +necessary +common +measure +between +these +two +judgments +one +merely +has +to +refuse +to +he +misled +by +the +confusions +divorces +and +inconsistencies +previously +pointed +out +one +must +brush +everything +aside +and +go +straight +to +the +real +problem +one +kills +oneself +because +life +is +not +worth +living +that +is +certainly +a +truth +yet +an +unfruitful +one +because +it +is +a +truism +but +does +that +insult +to +existence +that +flat +denial +in +which +it +is +plunged +come +from +the +fact +that +it +has +no +meaning +does +its +absurdity +require +one +to +escape +it +through +hope +or +suicide +this +is +what +must +be +clarified +hunted +down +and +elucidated +while +brushing +aside +all +the +rest +does +the +absurd +dictate +death +this +problem +must +be +given +priority +over +others +outside +all +methods +of +thought +and +all +exercises +of +the +disinterested +mind +shades +of +meaning +contradictions +the +psychology +that +an +objective +mind +can +always +introduce +into +all +problems +have +no +place +in +this +pursuit +and +this +passion +it +calls +simply +for +an +unjust +in +other +words +logical +thought +that +is +not +easy +it +is +always +easy +to +be +logical +it +is +almost +impossible +to +be +logical +to +the +bitter +end +men +who +die +by +their +own +hand +consequently +follow +to +its +conclusion +their +emotional +inclination +reflection +on +suicide +gives +me +an +opportunity +to +raise +the +only +problem +to +interest +me +is +there +a +logic +to +the +point +of +death +i +cannot +know +unless +i +pursue +without +reckless +passion +in +the +sole +light +of +evidence +the +reasoning +of +which +i +am +here +suggesting +the +source +this +is +what +i +call +an +absurd +reasoning +many +have +begun +it +i +do +not +yet +know +whether +or +not +they +kept +to +it +when +karl +jaspers +revealing +the +impossibility +of +constituting +the +world +as +a +unity +exclaims +this +limitation +leads +me +to +myself +where +i +can +no +longer +withdraw +behind +an +objective +point +of +view +that +i +am +merely +representing +where +neither +i +myself +nor +the +existence +of +others +can +any +longer +become +an +object +for +me +he +is +evoking +after +many +others +those +waterless +deserts +where +thought +reaches +its +confines +after +many +others +yes +indeed +but +how +eager +they +were +to +get +out +of +them +at +that +last +crossroad +where +thought +hesitates +many +men +have +arrived +and +even +some +of +the +humblest +they +then +abdicated +what +was +most +precious +to +them +their +life +others +princes +of +the +mind +abdicated +likewise +but +they +initiated +the +suicide +of +their +thought +in +its +purest +revolt +the +real +effort +is +to +stay +there +rather +in +so +far +as +that +is +possible +and +to +examine +closely +the +odd +vegetation +of +those +distant +regions +tenacity +and +acumen +are +privileged +spectators +of +this +inhuman +show +in +which +absurdity +hope +and +death +carry +on +their +dialogue +the +mind +can +then +analyze +the +figures +of +that +elementary +yet +subtle +dance +before +illustrating +them +and +reliving +them +itself +absurd +walls +like +great +works +deep +feelings +always +mean +more +than +they +are +conscious +of +saying +the +regularity +of +an +impulse +or +a +repulsion +in +a +soul +is +encountered +again +in +habits +of +doing +or +thinking +is +reproduced +in +consequences +of +which +the +soul +itself +knows +nothing +great +feelings +take +with +them +their +own +universe +splendid +or +abject +they +light +up +with +their +passion +an +exclusive +world +in +which +they +recognize +their +climate +there +is +a +universe +of +jealousy +of +ambition +of +selfishness +or +of +generosity +a +universe +in +other +words +a +metaphysic +and +an +attitude +of +mind +what +is +true +of +already +specialized +feelings +will +be +even +more +so +of +emotions +basically +as +indeterminate +simultaneously +as +vague +and +as +definite +as +remote +and +as +present +as +those +furnished +us +by +beauty +or +aroused +by +absurdity +at +any +streetcorner +the +feeling +of +absurdity +can +strike +any +man +in +the +face +as +it +is +in +its +distressing +nudity +in +its +light +without +effulgence +it +is +elusive +but +that +very +difficulty +deserves +reflection +it +is +probably +true +that +a +man +remains +forever +unknown +to +us +and +that +there +is +in +him +something +irreducible +that +escapes +us +but +practically +i +know +men +and +recognize +them +by +their +behavior +by +the +totality +of +their +deeds +by +the +consequences +caused +in +life +by +their +presence +likewise +all +those +irrational +feelings +which +offer +no +purchase +to +analysis +i +can +define +them +practically +appreciate +them +practically +by +gathering +together +the +sum +of +their +consequences +in +the +domain +of +the +intelligence +by +seizing +and +noting +all +their +aspects +by +outlining +their +universe +it +is +certain +that +apparently +though +i +have +seen +the +same +actor +a +hundred +times +i +shall +not +for +that +reason +know +him +any +better +personally +yet +if +i +add +up +the +heroes +he +has +personified +and +if +i +say +that +i +know +him +a +little +better +at +the +hundredth +character +counted +off +this +will +be +felt +to +contain +an +element +of +truth +for +this +apparent +paradox +is +also +an +apologue +there +is +a +moral +to +it +it +teaches +that +a +man +defines +himself +by +his +make +believe +as +well +as +by +his +sincere +impulses +there +is +thus +a +lower +key +of +feelings +inaccessible +in +the +heart +but +partially +disclosed +by +the +acts +they +imply +and +the +attitudes +of +mind +they +assume +it +is +clear +that +in +this +way +i +am +defining +a +method +but +it +is +also +evident +that +that +method +is +one +of +analysis +and +not +of +knowledge +for +methods +imply +metaphysics +unconsciously +they +disclose +conclusions +that +they +often +claim +not +to +know +yet +similarly +the +last +pages +of +a +book +are +already +contained +in +the +first +pages +such +a +link +is +inevitable +the +method +defined +here +acknowledges +the +feeling +that +all +true +knowledge +is +impossible +solely +appearances +can +be +enumerated +and +the +climate +make +itself +felt +perhaps +we +shall +be +able +to +overtake +that +elusive +feeling +of +absurdity +in +the +different +but +closely +related +worlds +of +intelligence +of +the +art +of +living +or +of +art +itself +the +climate +of +absurdity +is +in +the +beginning +the +end +is +the +absurd +universe +and +that +attitude +of +mind +which +lights +the +world +with +its +true +colors +to +bring +out +the +privileged +and +implacable +visage +which +that +attitude +has +discerned +in +it +all +great +deeds +and +all +great +thoughts +have +a +ridiculous +beginning +great +works +are +often +born +on +a +street +corner +or +in +a +restaurant +s +revolving +door +so +it +is +with +absurdity +the +absurd +world +more +than +others +derives +its +nobility +from +that +abject +birth +in +certain +situations +replying +nothing +when +asked +what +one +is +thinking +about +may +be +pretense +in +a +man +those +who +are +loved +are +well +aware +of +this +but +if +that +reply +is +sincere +if +it +symbolizes +that +odd +state +of +soul +in +which +the +void +be +comes +eloquent +in +which +the +chain +of +daily +gestures +is +broken +in +which +the +heart +vainly +seeks +the +link +that +will +connect +it +again +then +it +is +as +it +were +the +first +sign +of +absurdity +it +happens +that +the +stage +sets +collapse +rising +streetcar +four +hours +in +the +office +or +the +factory +meal +streetcar +four +hours +of +work +meal +sleep +and +monday +tuesday +wednesday +thursday +friday +and +saturday +accord +ing +to +the +same +rhythm +this +path +is +easily +followed +most +of +the +time +but +one +day +the +why +arises +and +everything +begins +in +that +weariness +tinged +with +amazement +begins +this +is +important +weariness +comes +at +the +end +of +the +acts +of +a +mechanical +life +but +at +the +same +time +it +inaugurates +the +impulse +of +consciousness +it +awakens +consciousness +and +provokes +what +follows +what +follows +is +the +gradual +return +into +the +chain +or +it +is +the +definitive +awakening +at +the +end +of +the +awakening +comes +in +time +the +consequence +suicide +or +recovery +in +itself +weariness +has +something +sickening +about +it +here +i +must +conclude +that +it +is +good +for +everything +be +gins +with +consciousness +and +nothing +is +worth +anything +except +through +it +there +is +nothing +original +about +these +remarks +but +they +are +obvious +that +is +enough +for +a +while +during +a +sketchy +reconnaissance +in +the +origins +of +the +absurd +mere +anxiety +as +heidegger +says +is +at +the +source +of +everything +likewise +and +during +every +day +of +an +unillustrious +life +time +carries +us +but +a +moment +always +comes +when +we +have +to +carry +it +we +live +on +the +future +tomorrow +later +on +when +you +have +made +your +way +you +will +understand +when +you +are +old +enough +such +irrelevan +cies +are +wonderful +for +after +all +it +s +a +matter +of +dying +yet +a +day +comes +when +a +man +notices +or +says +that +he +is +thirty +thus +he +asserts +his +youth +but +simultaneously +he +situates +himself +in +relation +to +time +he +takes +his +place +in +it +he +admits +that +he +stands +at +a +certain +point +on +a +curve +that +he +acknowledges +having +to +travel +to +its +end +he +belongs +to +time +and +by +the +horror +that +seizes +him +he +recognizes +his +worst +enemy +tomorrow +he +was +longing +for +tomorrow +whereas +everything +in +him +ought +to +reject +it +that +revolt +of +the +flesh +is +the +absurd +a +step +lower +and +strangeness +creeps +in +perceiving +that +the +world +is +dense +sensing +to +what +a +degree +a +stone +is +foreign +and +irreducible +to +us +with +what +intensity +nature +or +a +landscape +can +negate +us +at +the +heart +of +all +beauty +lies +something +inhuman +and +these +hills +the +softness +of +the +sky +the +outline +of +these +trees +at +this +very +minute +lose +the +illusory +meaning +with +which +we +had +clothed +them +henceforth +more +remote +than +a +lost +paradise +the +primitive +hostility +of +the +world +rises +up +to +face +us +across +millennia +for +a +second +we +cease +to +understand +it +because +for +centuries +we +have +understood +in +it +solely +the +images +and +designs +that +we +had +at +tributed +to +it +beforehand +because +henceforth +we +lack +the +power +to +make +use +of +that +artifice +the +world +evades +us +because +it +becomes +itself +again +that +stage +scenery +masked +by +habit +becomes +again +what +it +is +it +withdraws +at +a +distance +from +us +just +as +there +are +days +when +under +the +familial +face +of +a +woman +we +see +as +a +stranger +her +we +had +loved +months +or +years +ago +perhaps +we +shall +come +even +to +desire +what +suddenly +leaves +us +so +alone +but +the +time +has +not +yet +come +just +one +thing +that +denseness +and +that +strangeness +of +the +world +is +the +absurd +men +too +secrete +the +inhuman +at +certain +moments +of +lucidity +the +mechanical +aspect +of +their +gestures +their +meaningless +pantomime +makes +silly +everything +that +surrounds +them +a +man +is +talking +on +the +telephone +behind +a +glass +partition +you +cannot +hear +him +but +you +see +his +incomprehensible +dumb +show +you +wonder +why +he +is +alive +this +discomfort +in +the +face +of +man +s +own +inhumanity +this +incalculable +tumble +before +the +image +of +what +we +are +this +nausea +as +a +writer +of +today +calls +it +is +also +the +absurd +likewise +the +stranger +who +at +certain +seconds +comes +to +meet +us +in +a +mirror +the +familiar +and +yet +alarming +brother +we +encounter +in +our +own +photographs +is +also +the +absurd +i +come +at +last +to +death +and +to +the +attitude +we +have +toward +it +on +this +point +everything +has +been +said +and +it +is +only +proper +to +avoid +pathos +yet +one +will +never +be +sufficiently +surprised +that +everyone +lives +as +if +no +one +knew +this +is +because +in +reality +there +is +no +experience +of +death +properly +speaking +nothing +has +been +experienced +but +what +has +been +lived +and +made +conscious +here +it +is +barely +possible +to +speak +of +the +experience +of +others +deaths +it +is +a +substitute +an +illusion +and +it +never +quite +convinces +us +that +melancholy +convention +cannot +be +persuasive +the +horror +comes +in +reality +from +the +mathematical +aspect +of +the +event +if +time +frightens +us +this +is +because +it +works +out +the +problem +and +the +solution +comes +afterward +all +the +pretty +speeches +about +the +soul +will +have +their +contrary +convincingly +proved +at +least +for +a +time +from +this +inert +body +on +which +a +slap +makes +no +mark +the +soul +has +disappeared +this +elementary +and +definitive +aspect +of +the +adventure +constitutes +the +absurd +feeling +under +the +fatal +lighting +of +that +destiny +its +uselessness +becomes +evident +no +code +of +ethics +and +no +effort +are +justifiable +a +priori +in +the +face +of +the +cruel +mathematics +that +command +our +condition +let +me +repeat +all +this +has +been +said +over +and +over +i +am +limiting +myself +here +to +making +a +rapid +classification +and +to +pointing +out +these +obvious +themes +they +run +through +all +literatures +and +all +philosophies +everyday +conversation +feeds +on +them +there +is +no +question +of +reinventing +them +but +it +is +essential +to +be +sure +of +these +facts +in +order +to +be +able +to +question +oneself +subsequently +on +the +primordial +question +i +am +interested +let +me +repeat +again +not +go +much +in +absurd +discoveries +as +in +their +consequences +if +one +is +assured +of +these +facts +what +is +one +to +conclude +how +far +is +one +to +go +to +elude +nothing +is +one +to +die +voluntarily +or +to +hope +in +spite +of +everything +beforehand +it +is +necessary +to +take +the +same +rapid +inventory +on +the +plane +of +the +intelligence +the +mind +s +first +step +is +to +distinguish +what +is +true +from +what +is +false +however +as +soon +as +thought +reflects +on +itself +what +it +first +discovers +is +a +contradiction +useless +to +strive +to +be +convincing +in +this +case +over +the +centuries +no +one +has +furnished +a +clearer +and +more +elegant +demonstration +of +the +business +than +aristotle +the +often +ridiculed +consequence +of +these +opinions +is +that +they +destroy +themselves +for +by +asserting +that +all +is +true +we +assert +the +truth +of +the +contrary +assertion +and +consequently +the +falsity +of +our +own +thesis +for +the +contrary +assertion +does +not +admit +that +it +can +be +true +and +if +one +says +that +all +is +false +that +assertion +is +itself +false +if +we +declare +that +solely +the +assertion +opposed +to +ours +is +false +or +else +that +solely +ours +is +not +false +we +are +nevertheless +forced +to +admit +an +infinite +number +of +true +or +false +judgments +for +the +one +who +expresses +a +true +assertion +proclaims +simultaneously +that +it +is +true +and +so +on +ad +infinitum +this +vicious +circle +is +but +the +first +of +a +series +in +which +the +mind +that +studies +itself +gets +lost +in +a +giddy +whirling +the +very +simplicity +of +these +paradoxes +makes +them +irreducible +whatever +may +be +the +plays +on +words +and +the +acrobatics +of +logic +to +understand +is +above +all +to +unify +the +mind +s +deepest +desire +even +in +its +most +elaborate +operations +parallels +man +s +unconscious +feeling +in +the +face +of +his +universe +it +is +an +insistence +upon +familiarity +an +appetite +for +clarity +understanding +the +world +for +a +man +is +reducing +it +to +the +human +stamping +it +with +his +seal +the +cat +s +universe +is +not +the +universe +of +the +anthill +the +truism +all +thought +is +anthropomorphic +has +no +other +meaning +likewise +the +mind +that +aims +to +understand +reality +can +consider +itself +satisfied +only +by +reducing +it +to +terms +of +thought +if +man +realized +that +the +universe +like +him +can +love +and +suffer +he +would +be +reconciled +if +thought +discovered +in +the +shimmering +mirrors +of +phenomena +eternal +relations +capable +of +summing +them +up +and +summing +themselves +up +in +a +single +principle +then +would +be +seen +an +intellectual +joy +of +which +the +myth +of +the +blessed +would +be +but +a +ridiculous +imitation +that +nostalgia +for +unity +that +appetite +for +the +absolute +illustrates +the +essential +impulse +of +the +human +drama +but +the +fact +of +that +nostalgia +s +existence +does +not +imply +that +it +is +to +be +immediately +satisfied +for +if +bridging +the +gulf +that +separates +desire +from +conquest +we +assert +with +parmenides +the +reality +of +the +one +whatever +it +may +be +we +fall +into +the +ridiculous +contradiction +of +a +mind +that +asserts +total +unity +and +proves +by +its +very +assertion +its +own +difference +and +the +diversity +it +claimed +to +resolve +this +other +vicious +circle +is +enough +to +stifle +our +hopes +these +are +again +truisms +i +shall +again +repeat +that +they +are +not +interesting +in +themselves +but +in +the +consequences +that +can +be +deduced +from +them +i +know +another +truism +it +tells +me +that +man +is +mortal +one +can +nevertheless +count +the +minds +that +have +deduced +the +extreme +conclusions +from +it +it +is +essential +to +consider +as +a +constant +point +of +reference +in +this +essay +the +regular +hiatus +between +what +we +fancy +we +know +and +what +we +really +know +practical +assent +and +simulated +ignorance +which +allows +us +to +live +with +ideas +which +if +we +truly +put +them +to +the +test +ought +to +upset +our +whole +life +faced +with +this +inextricable +contradiction +of +the +mind +we +shall +fully +grasp +the +divorce +separating +us +from +our +own +creations +so +long +as +the +mind +keeps +silent +in +the +motionless +world +of +its +hopes +everything +is +reflected +and +arranged +in +the +unity +of +its +nostalgia +but +with +its +first +move +this +world +cracks +and +tumbles +an +infinite +number +of +shimmering +fragments +is +offered +to +the +understanding +we +must +despair +of +ever +reconstructing +the +familiar +calm +surface +which +would +give +us +peace +of +heart +after +so +many +centuries +of +inquiries +so +many +abdications +among +thinkers +we +are +well +aware +that +this +is +true +for +all +our +knowledge +with +the +exception +of +professional +rationalists +today +people +despair +of +true +knowledge +if +the +only +significant +history +of +human +thought +were +to +be +written +it +would +have +to +be +the +history +of +its +successive +regrets +and +its +impotences +of +whom +and +of +what +indeed +can +i +say +i +know +that +this +heart +within +me +i +can +feel +and +i +judge +that +it +exists +this +world +i +can +touch +and +i +likewise +judge +that +it +exists +there +ends +all +my +knowledge +and +the +rest +is +construction +for +if +i +try +to +seize +this +self +of +which +i +feel +sure +if +i +try +to +define +and +to +summarize +it +it +is +nothing +but +water +slipping +through +my +fingers +i +can +sketch +one +by +one +all +the +aspects +it +is +able +to +assume +all +those +likewise +that +have +been +attributed +to +it +this +upbringing +this +origin +this +ardor +or +these +silences +this +nobility +or +this +vileness +but +aspects +cannot +be +added +up +this +very +heart +which +is +mine +will +forever +remain +indefinable +to +me +between +the +certainty +i +have +of +my +existence +and +the +content +i +try +to +give +to +that +assurance +the +gap +will +never +be +filled +forever +i +shall +be +a +stranger +to +myself +in +psychology +as +in +logic +there +are +truths +but +no +truth +socrates +know +thyself +has +as +much +value +as +the +be +virtuous +of +our +confessionals +they +reveal +a +nostalgia +at +the +same +time +as +an +ignorance +they +are +sterile +exercises +on +great +subjects +they +are +legitimate +only +in +precisely +so +far +as +they +are +approximate +and +here +are +trees +and +i +know +their +gnarled +surface +water +and +i +feel +its +taste +these +scents +of +grass +and +stars +at +night +certain +evenings +when +the +heart +relaxes +how +shall +i +negate +this +world +whose +power +and +strength +i +feel +yet +all +the +knowledge +on +earth +will +give +me +nothing +to +assure +me +that +this +world +is +mine +you +describe +it +to +me +and +you +teach +me +to +classify +it +you +enumerate +its +laws +and +in +my +thirst +for +knowledge +i +admit +that +they +are +true +you +take +apart +its +mechanism +and +my +hope +increases +at +the +final +stage +you +teach +me +that +this +wondrous +and +multicolored +universe +can +be +reduced +to +the +atom +and +that +the +atom +itself +can +be +reduced +to +the +electron +all +this +is +good +and +i +wait +for +you +to +continue +but +you +tell +me +of +an +invisible +planetary +system +in +which +electrons +gravitate +around +a +nucleus +you +explain +this +world +to +me +with +an +image +i +realize +then +that +you +have +been +reduced +to +poetry +i +shall +never +know +have +i +the +time +to +become +indignant +you +have +already +changed +theories +so +that +science +that +was +to +teach +me +everything +ends +up +in +a +hypothesis +that +lucidity +founders +in +metaphor +that +uncertainty +is +resolved +in +a +work +of +art +what +need +had +i +of +so +many +efforts +the +soft +lines +of +these +hills +and +the +hand +of +evening +on +this +troubled +heart +teach +me +much +more +i +have +returned +to +my +beginning +i +realize +that +if +through +science +i +can +seize +phenomena +and +enumerate +them +i +cannot +for +all +that +apprehend +the +world +were +i +to +trace +its +entire +relief +with +my +finger +i +should +not +know +any +more +and +you +give +me +the +choice +between +a +description +that +is +sure +but +that +teaches +me +nothing +and +hypotheses +that +claim +to +teach +me +but +that +are +not +sure +a +stranger +to +myself +and +to +the +world +armed +solely +with +a +thought +that +negates +itself +as +soon +as +it +asserts +what +is +this +condition +in +which +i +can +have +peace +only +by +refusing +to +know +and +to +live +in +which +the +appetite +for +conquest +bumps +into +walls +that +defy +its +assaults +to +will +is +to +stir +up +paradoxes +everything +is +ordered +in +such +a +way +as +to +bring +into +being +that +poisoned +peace +produced +by +thoughtlessness +lack +of +heart +or +fatal +renunciations +hence +the +intelligence +too +tells +me +in +its +way +that +this +world +is +absurd +its +contrary +blind +reason +may +well +claim +that +all +is +clear +i +was +waiting +for +proof +and +longing +for +it +to +be +right +but +despite +so +many +pretentious +centuries +and +over +the +heads +of +so +many +eloquent +and +persuasive +men +i +know +that +is +false +on +this +plane +at +least +there +is +no +happiness +if +i +cannot +know +that +universal +reason +practical +or +ethical +that +determinism +those +categories +that +explain +everything +are +enough +to +make +a +decent +man +laugh +they +have +nothing +to +do +with +the +mind +they +negate +its +profound +truth +which +is +to +be +enchained +in +this +unintelligible +and +limited +universe +man +s +fate +henceforth +assumes +its +meaning +a +horde +of +irrationals +has +sprung +up +and +surrounds +him +until +his +ultimate +end +in +his +recovered +and +now +studied +lucidity +the +feeling +of +the +absurd +becomes +clear +and +definite +i +said +that +the +world +is +absurd +but +i +was +too +hasty +this +world +in +itself +is +not +reasonable +that +is +all +that +can +be +said +but +what +is +absurd +is +the +confrontation +of +this +irrational +and +the +wild +longing +for +clarity +whose +call +echoes +in +the +human +heart +the +absurd +depends +as +much +on +man +as +on +the +world +for +the +moment +it +is +all +that +links +them +together +it +binds +them +one +to +the +other +as +only +hatred +can +weld +two +creatures +together +this +is +all +i +can +discern +clearly +in +this +measureless +universe +where +my +adventure +takes +place +let +us +pause +here +if +i +hold +to +be +true +that +absurdity +that +determines +my +relationship +with +life +if +i +become +thoroughly +imbued +with +that +sentiment +that +seizes +me +in +face +of +the +world +s +scenes +with +that +lucidity +imposed +on +me +by +the +pursuit +of +a +science +i +must +sacrifice +everything +to +these +certainties +and +i +must +see +them +squarely +to +be +able +to +maintain +them +above +all +i +must +adapt +my +behavior +to +them +and +pursue +them +in +all +their +consequences +i +am +speaking +here +of +decency +but +i +want +to +know +beforehand +if +thought +can +live +in +those +deserts +i +already +know +that +thought +has +at +least +entered +those +deserts +there +it +found +its +bread +there +it +realized +that +it +had +previously +been +feeding +on +phantoms +it +justified +some +of +the +most +urgent +themes +of +human +reflection +from +the +moment +absurdity +is +recognized +it +becomes +a +passion +the +most +harrowing +of +all +but +whether +or +not +one +can +live +with +one +s +passions +whether +or +not +one +can +accept +their +law +which +is +to +burn +the +heart +they +simultaneously +exalt +that +is +the +whole +question +it +is +not +however +the +one +we +shall +ask +just +yet +it +stands +at +the +center +of +this +experience +there +will +be +time +to +come +back +to +it +let +us +recognize +rather +those +themes +and +those +impulses +born +of +the +desert +it +will +suffice +to +enumerate +them +they +too +are +known +to +all +today +there +have +always +been +men +to +defend +the +rights +of +the +irrational +the +tradition +of +what +may +be +called +humiliated +thought +has +never +ceased +to +exist +the +criticism +of +rationalism +has +been +made +so +often +that +it +seems +unnecessary +to +begin +again +yet +our +epoch +is +marked +by +the +rebirth +of +those +paradoxical +systems +that +strive +to +trip +up +the +reason +as +if +truly +it +had +always +forged +ahead +but +that +is +not +so +much +a +proof +of +the +efficacy +of +the +reason +as +of +the +intensity +of +its +hopes +on +the +plane +of +history +such +a +constancy +of +two +attitudes +illustrates +the +essential +passion +of +man +torn +between +his +urge +toward +unity +and +the +clear +vision +he +may +have +of +the +walls +enclosing +him +but +never +perhaps +at +any +time +has +the +attack +on +reason +been +more +violent +than +in +ours +since +zarathustra +s +great +outburst +by +chance +it +is +the +oldest +nobility +in +the +world +i +conferred +it +upon +all +things +when +i +proclaimed +that +above +them +no +eternal +will +was +exercised +since +kierkegaard +s +fatal +illness +that +malady +that +leads +to +death +with +nothing +else +following +it +the +significant +and +tormenting +themes +of +absurd +thought +have +followed +one +another +or +at +least +and +this +proviso +is +of +capital +importance +the +themes +of +irrational +and +religious +thought +from +jaspers +to +heidegger +from +kierkegaard +to +che +stov +from +the +phenomenologists +to +scheler +on +the +logical +plane +and +on +the +moral +plane +a +whole +family +of +minds +related +by +their +nostalgia +but +opposed +by +their +methods +or +their +aims +have +persisted +in +blocking +the +royal +road +of +reason +and +in +recovering +the +direct +paths +of +truth +here +i +assume +these +thoughts +to +be +known +and +lived +whatever +may +be +or +have +been +their +ambitions +all +started +out +from +that +indescribable +universe +where +contradiction +antinomy +anguish +or +impotence +reigns +and +what +they +have +in +common +is +precisely +the +themes +so +far +disclosed +for +them +too +it +must +be +said +that +what +matters +above +all +is +the +conclusions +they +have +managed +to +draw +from +those +discoveries +that +matters +so +much +that +they +must +be +examined +separately +but +for +the +moment +we +are +concerned +solely +with +their +discoveries +and +their +initial +experiments +we +are +concerned +solely +with +noting +their +agreement +if +it +would +be +presumptuous +to +try +to +deal +with +their +philosophies +it +is +possible +and +sufficient +in +any +case +to +bring +out +the +climate +that +is +common +to +them +heidegger +considers +the +human +condition +coldly +and +announces +that +that +existence +is +humiliated +the +only +reality +is +anxiety +in +the +whole +chain +of +beings +to +the +man +lost +in +the +world +and +its +diversions +this +anxiety +is +a +brief +fleeting +fear +but +if +that +fear +becomes +conscious +of +itself +it +becomes +anguish +the +perpetual +climate +of +the +lucid +man +in +whom +existence +is +concentrated +this +professor +of +philosophy +writes +without +trembling +and +in +the +most +abstract +language +in +the +world +that +the +finite +and +limited +character +of +human +existence +is +more +primordial +than +man +himself +his +interest +in +kant +extends +only +to +recognizing +the +restricted +character +of +his +pure +reason +this +is +to +coincide +at +the +end +of +his +analyses +that +the +world +can +no +longer +offer +anything +to +the +man +filled +with +anguish +this +anxiety +seems +to +him +so +much +more +important +than +all +the +categories +in +the +world +that +he +thinks +and +talks +only +of +it +he +enumerates +its +aspects +boredom +when +the +ordinary +man +strives +to +quash +it +in +him +and +benumb +it +terror +when +the +mind +contemplates +death +he +too +does +not +separate +consciousness +from +the +absurd +the +consciousness +of +death +is +the +call +of +anxiety +and +existence +then +delivers +itself +its +own +summons +through +the +intermediary +of +consciousness +it +is +the +very +voice +of +anguish +and +it +adjures +existence +to +return +from +its +loss +in +the +anonymous +they +for +him +too +one +must +not +sleep +but +must +keep +alert +until +the +consummation +he +stands +in +this +absurd +world +and +points +out +its +ephemeral +character +he +seeks +his +way +amid +these +ruins +jaspers +despairs +of +any +ontology +because +he +claims +that +we +have +lost +naivete +he +knows +that +we +can +achieve +nothing +that +will +transcend +the +fatal +game +of +appearances +he +knows +that +the +end +of +the +mind +is +failure +he +tarries +over +the +spiritual +adventures +revealed +by +history +and +pitilessly +discloses +the +flaw +in +each +system +the +illusion +that +saved +everything +the +preaching +that +hid +nothing +in +this +ravaged +world +in +which +the +impossibility +of +knowledge +is +established +in +which +everlasting +nothingness +seems +the +only +reality +and +irremediable +despair +seems +the +only +attitude +he +tries +to +recover +the +ariadne +s +thread +that +leads +to +divine +secrets +chestov +for +his +part +throughout +a +wonderfully +monotonous +work +constantly +straining +toward +the +same +truths +tirelessly +demonstrates +that +the +tightest +system +the +most +universal +rationalism +always +stumbles +eventually +on +the +irrational +of +human +thought +none +of +the +ironic +facts +or +ridiculous +contradictions +that +depreciate +the +reason +escapes +him +one +thing +only +interests +him +and +that +is +the +exception +whether +in +the +domain +of +the +heart +or +of +the +mind +through +the +dostoevskian +experiences +of +the +condemned +man +the +exacerbated +adventures +of +the +nietzschean +mind +hamlet +s +imprecations +or +the +bitter +aristocracy +of +an +ibsen +he +tracks +down +il +luminates +and +magnifies +the +human +revolt +against +the +irremediable +he +refuses +the +reason +its +reasons +and +begins +to +advance +with +some +decision +only +in +the +middle +of +that +colorless +desert +where +all +certainties +have +become +stones +of +all +perhaps +the +most +engaging +kierkegaard +for +a +part +of +his +existence +at +least +does +more +than +discover +the +absurd +he +lives +it +the +man +who +writes +the +surest +of +stubborn +silences +is +not +to +hold +one +s +tongue +but +to +talk +makes +sure +in +the +beginning +that +no +truth +is +absolute +or +can +render +satisfactory +an +existence +that +is +impossible +in +itself +don +juan +of +the +understanding +he +multiplies +pseudonyms +and +contradictions +writes +his +discourses +of +edification +at +the +same +time +as +that +manual +of +cynical +spiritualism +the +diary +of +the +seducer +he +refuses +consolations +ethics +reliable +principles +as +for +that +thorn +he +feels +in +his +heart +he +is +careful +not +to +quiet +its +pain +on +the +contrary +he +awakens +it +and +in +the +desperate +joy +of +a +man +crucified +and +happy +to +be +so +he +builds +up +piece +by +piece +lucidity +refusal +make +believe +a +category +of +the +man +possessed +that +face +both +tender +and +sneering +those +pirouettes +followed +by +a +cry +from +the +heart +are +the +absurd +spirit +itself +grappling +with +a +reality +beyond +its +comprehension +and +the +spiritual +adventure +that +leads +kierkegaard +to +his +beloved +scandals +begins +likewise +in +the +chaos +of +an +experience +divested +of +its +setting +and +relegated +to +its +original +incoherence +on +quite +a +different +plane +that +of +method +husserl +and +the +phenomenologists +by +their +very +extravagances +reinstate +the +world +in +its +diversity +and +deny +the +transcendent +power +of +the +reason +the +spiritual +universe +becomes +incalculably +enriched +through +them +the +rose +petal +the +milestone +or +the +human +hand +are +as +important +as +love +desire +or +the +laws +of +gravity +thinking +ceases +to +be +unifying +or +making +a +semblance +familiar +in +the +guise +of +a +major +principle +thinking +is +learning +all +over +again +to +see +to +be +attentive +to +focus +consciousness +it +is +turning +every +idea +and +every +image +in +the +manner +of +proust +into +a +privileged +moment +what +justifies +thought +is +its +extreme +consciousness +though +more +positive +than +kierkegaard +s +or +chestov +s +husserl +s +manner +of +proceeding +in +the +beginning +nevertheless +negates +the +classic +method +of +the +reason +disappoints +hope +opens +to +intuition +and +to +the +heart +a +whole +proliferation +of +phenomena +the +wealth +of +which +has +about +it +something +inhuman +these +paths +lead +to +all +sciences +or +to +none +this +amounts +to +saying +that +in +this +case +the +means +are +more +important +than +the +end +all +that +is +involved +is +an +attitude +for +understanding +and +not +a +consolation +let +me +repeat +in +the +beginning +at +very +least +how +can +one +fail +to +feel +the +basic +relationship +of +these +minds +how +can +one +fail +to +see +that +they +take +their +stand +around +a +privileged +and +bitter +moment +in +which +hope +has +no +further +place +i +want +everything +to +be +explained +to +me +or +nothing +and +the +reason +is +impotent +when +it +hears +this +cry +from +the +heart +the +mind +aroused +by +this +insistence +seeks +and +finds +nothing +but +contradictions +and +nonsense +what +i +fail +to +understand +is +nonsense +the +world +is +peopled +with +such +irrationals +the +world +itself +whose +single +meaning +i +do +not +understand +is +but +a +vast +irrational +if +one +could +only +say +just +once +this +is +clear +all +would +be +saved +but +these +men +vie +with +one +another +in +proclaiming +that +nothing +is +clear +all +is +chaos +that +all +man +has +is +his +lucidity +and +his +definite +knowledge +of +the +walls +surrounding +him +all +these +experiences +agree +and +confirm +one +another +the +mind +when +it +reaches +its +limits +must +make +a +judgment +and +choose +its +conclusions +this +is +where +suicide +and +the +reply +stand +but +i +wish +to +reverse +the +order +of +the +inquiry +and +start +out +from +the +intelligent +adventure +and +come +back +to +daily +acts +the +experiences +called +to +mind +here +were +born +in +the +desert +that +we +must +not +leave +behind +at +least +it +is +essential +to +know +how +far +they +went +at +this +point +of +his +effort +man +stands +face +to +face +with +the +irrational +he +feels +within +him +his +longing +for +happiness +and +for +reason +the +absurd +is +born +of +this +confrontation +between +the +human +need +and +the +unreasonable +silence +of +the +world +this +must +not +be +forgotten +this +must +be +clung +to +because +the +whole +consequence +of +a +life +can +depend +on +it +the +irrational +the +human +nostalgia +and +the +absurd +that +is +born +of +their +encounter +these +are +the +three +characters +in +the +drama +that +must +necessarily +end +with +all +the +logic +of +which +an +existence +is +capable +philosophical +suicide +the +feeling +of +the +absurd +is +not +for +all +that +the +notion +of +the +absurd +it +lays +the +foundations +for +it +and +that +is +all +it +is +not +limited +to +that +notion +except +in +the +brief +moment +when +it +passes +judgment +on +the +universe +subsequently +it +has +a +chance +of +going +further +it +is +alive +in +other +words +it +must +die +or +else +reverberate +so +it +is +with +the +themes +we +have +gathered +together +but +there +again +what +interests +me +is +not +works +or +minds +criticism +of +which +would +call +for +another +form +and +another +place +but +the +discovery +of +what +their +conclusions +have +in +common +never +perhaps +have +minds +been +so +different +and +yet +we +recognize +as +identical +the +spiritual +landscapes +in +which +they +get +under +way +likewise +despite +such +dissimilar +zones +of +knowledge +the +cry +that +terminates +their +itinerary +rings +out +in +the +same +way +it +is +evident +that +the +thinkers +we +have +just +recalled +have +a +common +climate +to +say +that +that +climate +is +deadly +scarcely +amounts +to +playing +on +words +living +under +that +stifling +sky +forces +one +to +get +away +or +to +stay +the +important +thing +is +to +find +out +how +people +get +away +in +the +first +case +and +why +people +stay +in +the +second +case +this +is +how +i +define +the +problem +of +suicide +and +the +possible +interest +in +the +conclusions +of +existential +philosophy +but +first +i +want +to +detour +from +the +direct +path +up +to +now +we +have +managed +to +circumscribe +the +absurd +from +the +outside +one +can +however +wonder +how +much +is +clear +in +that +notion +and +by +direct +analysis +try +to +discover +its +meaning +on +the +one +hand +and +on +the +other +the +consequences +it +involves +if +i +accuse +an +innocent +man +of +a +monstrous +crime +if +i +tell +a +virtuous +man +that +he +has +coveted +his +own +sister +he +will +reply +that +this +is +absurd +his +indignation +has +its +comical +aspect +but +it +also +has +its +fundamental +reason +the +virtuous +man +illustrates +by +that +reply +the +definitive +antinomy +existing +between +the +deed +i +am +attributing +to +him +and +his +lifelong +principles +it +s +absurd +means +it +s +impossible +but +also +it +s +contradictory +if +i +see +a +man +armed +only +with +a +sword +attack +a +group +of +machine +guns +i +shall +consider +his +act +to +be +absurd +but +it +is +so +solely +by +virtue +of +the +disproportion +between +his +intention +and +the +reality +he +will +encounter +of +the +contradiction +i +notice +between +his +true +strength +and +the +aim +he +has +in +view +likewise +we +shall +deem +a +verdict +absurd +when +we +contrast +it +with +the +verdict +the +facts +apparently +dictated +and +similarly +a +demonstration +by +the +absurd +is +achieved +by +comparing +the +consequences +of +such +a +reasoning +with +the +logical +reality +one +wants +to +set +up +in +all +these +cases +from +the +simplest +to +the +most +complex +the +magnitude +of +the +absurdity +will +be +in +direct +ratio +to +the +distance +between +the +two +terms +of +my +comparison +there +are +absurd +marriages +challenges +rancors +silences +wars +and +even +peace +treaties +for +each +of +them +the +absurdity +springs +from +a +comparison +i +am +thus +justified +in +saying +that +the +feeling +of +absurdity +does +not +spring +from +the +mere +scrutiny +of +a +fact +or +an +impression +but +that +it +bursts +from +the +comparison +between +a +bare +fact +and +a +certain +reality +between +an +action +and +the +world +that +transcends +it +the +absurd +is +essentially +a +divorce +it +lies +in +neither +of +the +elements +compared +it +is +born +of +their +confrontation +in +this +particular +case +and +on +the +plane +of +intelligence +i +can +therefore +say +that +the +absurd +is +not +in +man +if +such +a +metaphor +could +have +a +meaning +nor +in +the +world +but +in +their +presence +together +for +the +moment +it +is +the +only +bond +uniting +them +if +wish +to +limit +myself +to +facts +i +know +what +man +wants +i +know +what +the +world +offers +him +and +now +i +can +say +that +i +also +know +what +links +them +i +have +no +need +to +dig +deeper +a +single +certainty +is +enough +for +the +seeker +he +simply +has +to +derive +all +the +consequences +from +it +the +immediate +consequence +is +also +a +rule +of +method +the +odd +trinity +brought +to +light +in +this +way +is +certainly +not +a +startling +discovery +but +it +resembles +the +data +of +experience +in +that +it +is +both +infinitely +simple +and +infinitely +complicated +its +first +distinguishing +feature +in +this +regard +is +that +it +cannot +be +divided +to +destroy +one +of +its +terms +is +to +destroy +the +whole +there +can +be +no +absurd +outside +the +human +mind +thus +like +everything +else +the +absurd +ends +with +death +but +there +can +be +no +absurd +outside +this +world +either +and +it +is +by +this +elementary +criterion +that +i +judge +the +notion +of +the +absurd +to +be +essential +and +consider +that +it +can +stand +as +the +first +of +my +truths +the +rule +of +method +alluded +to +above +appears +here +if +i +judge +that +a +thing +is +true +i +must +preserve +it +if +i +attempt +to +solve +a +problem +at +least +i +must +not +by +that +very +solution +conjure +away +one +of +the +terms +of +the +problem +for +me +the +sole +datum +is +the +absurd +the +first +and +after +all +the +only +condition +of +my +inquiry +is +to +preserve +the +very +thing +that +crushes +me +consequently +to +respect +what +i +consider +essential +in +it +i +have +just +defined +it +as +a +confrontation +and +an +unceasing +struggle +and +carrying +this +absurd +logic +to +its +conclusion +i +must +admit +that +that +struggle +implies +a +total +absence +of +hope +which +has +nothing +to +do +with +despair +a +continual +rejection +which +must +not +be +confused +with +renunciation +and +a +conscious +dissatisfaction +which +must +not +be +compared +to +immature +unrest +everything +that +destroys +conjures +away +or +exorcises +these +requirements +and +to +begin +with +consent +which +overthrows +divorce +ruins +the +absurd +and +devaluates +the +attitude +that +may +then +be +proposed +the +absurd +has +meaning +only +in +so +far +as +it +is +not +agreed +to +there +exists +an +obvious +fact +that +seems +utterly +moral +namely +that +a +man +is +always +a +prey +to +his +truths +once +he +has +admitted +them +he +cannot +free +himself +from +them +one +has +to +pay +something +a +man +who +has +be +come +conscious +of +the +absurd +is +forever +bound +to +it +a +man +devoid +of +hope +and +conscious +of +being +so +has +ceased +to +belong +to +the +future +that +is +natural +but +it +is +just +as +natural +that +he +should +strive +to +escape +the +universe +of +which +he +is +the +creator +all +the +foregoing +has +significance +only +on +account +of +this +paradox +certain +men +starting +from +a +critique +of +rationalism +have +admitted +the +absurd +climate +nothing +is +more +instructive +in +this +regard +than +to +scrutinize +the +way +in +which +they +have +elaborated +their +consequences +now +to +limit +myself +to +existential +philosophies +i +see +that +all +of +them +without +exception +suggest +escape +through +an +odd +reasoning +starting +out +from +the +absurd +over +the +ruins +of +reason +in +a +closed +universe +limited +to +the +human +they +deify +what +crushes +them +and +find +reason +to +hope +in +what +impoverishes +them +that +forced +hope +is +religious +in +all +of +them +it +deserves +attention +i +shall +merely +analyze +here +as +examples +a +few +themes +dear +to +chestov +and +kierkegaard +but +jaspers +will +provide +us +in +caricatural +form +a +typical +example +of +this +attitude +as +a +result +the +rest +will +be +clearer +he +is +left +powerless +to +realize +the +transcendent +incapab +le +of +plumbing +the +depth +of +experience +and +conscious +of +that +universe +upset +by +failure +will +he +advance +or +at +least +draw +the +conclusions +from +that +failure +he +contributes +nothing +new +he +has +found +nothing +in +experience +but +the +confession +of +his +own +impotence +and +no +occasion +to +infer +any +satisfactory +principle +yet +without +justification +as +he +says +to +himself +he +suddenly +asserts +all +at +once +the +transcendent +the +essence +of +experience +and +the +superhuman +significance +of +life +when +he +writes +does +not +the +failure +reveal +beyond +any +possible +explanation +and +interpretation +not +the +absence +but +the +existence +of +transcendence +that +existence +which +suddenly +and +through +a +blind +act +of +human +confidence +explains +everything +he +defines +as +the +unthinkable +unity +of +the +general +and +the +particular +thus +the +absurd +becomes +god +in +the +broadest +meaning +of +this +word +and +that +inability +to +understand +becomes +the +existence +that +illuminates +everything +nothing +logically +prepares +this +reasoning +i +can +call +it +a +leap +and +para +doxically +can +be +understood +jaspers +s +insistence +his +infinite +patience +devoted +to +making +the +experience +of +the +transcendent +impossible +to +realize +for +the +more +fleeting +that +approximation +is +the +more +empty +that +definition +proves +to +be +and +the +more +real +that +transcendent +is +to +him +for +the +passion +he +devotes +to +asserting +it +is +in +direct +proportion +to +the +gap +between +his +powers +of +explanation +and +the +irrationality +of +the +world +and +of +experience +it +thus +appears +that +the +more +bitterly +jaspers +destroys +the +reason +s +preconceptions +the +more +radically +he +will +explain +the +world +that +apostle +of +humiliated +thought +will +find +at +the +very +end +of +humiliation +the +means +of +regenerating +being +to +its +very +depth +mystical +thought +has +familiarized +us +with +such +devices +they +are +just +as +legitimate +as +any +attitude +of +mind +but +for +the +moment +i +am +acting +as +if +i +took +a +certain +problem +seriously +without +judging +beforehand +the +general +value +of +this +attitude +or +its +educative +power +i +mean +simply +to +consider +whether +it +answers +the +conditions +i +set +myself +whether +it +is +worthy +of +the +conflict +that +concerns +me +thus +i +return +to +chestov +a +commentator +relates +a +remark +of +his +that +deserves +interest +the +only +true +solution +he +said +is +precisely +where +human +judgment +sees +no +solution +otherwise +what +need +would +we +have +of +god +we +turn +toward +god +only +to +obtain +the +impossible +as +for +the +possible +men +suffice +if +there +is +a +chestovian +philosophy +i +can +say +that +it +is +altogether +summed +up +in +this +way +for +when +at +the +conclusion +of +his +passionate +analyses +chestov +discovers +the +fundamental +absurdity +of +all +existence +he +does +not +say +this +is +the +absurd +but +rather +this +is +god +we +must +rely +on +him +even +if +he +does +not +correspond +to +any +of +our +rational +categories +so +that +confusion +may +not +be +possible +the +russian +philosopher +even +hints +that +this +god +is +perhaps +full +of +hatred +and +hateful +incomprehensible +and +contradictory +but +the +more +hideous +is +his +face +the +more +he +asserts +his +power +his +greatness +is +his +incoherence +his +proof +is +his +inhumanity +one +must +spring +into +him +and +by +this +leap +free +oneself +from +rational +illusions +thus +for +chestov +acceptance +of +the +absurd +is +contemporaneous +with +the +absurd +itself +being +aware +of +it +amounts +to +accepting +it +and +the +whole +logical +effort +of +his +thought +is +to +bring +it +out +so +that +at +the +same +time +the +tremendous +hope +it +involves +may +burst +forth +let +me +repeat +that +this +attitude +is +legitimate +but +i +am +persisting +here +in +considering +a +single +problem +and +all +its +consequences +i +do +not +have +to +examine +the +emotion +of +a +thought +or +of +an +act +of +faith +i +have +a +whole +lifetime +to +do +that +i +know +that +the +rationalist +finds +chestov +s +attitude +annoying +but +i +also +feel +that +chestov +is +right +rather +than +the +rationalist +and +i +merely +want +to +know +if +he +remains +faithful +to +the +commandments +of +the +absurd +now +if +it +is +admitted +that +the +absurd +is +the +contrary +of +hope +it +is +seen +that +existential +thought +for +chestov +presupposes +the +absurd +but +proves +it +only +to +dispel +it +such +subtlety +of +thought +is +a +conjuror +s +emotional +trick +when +chestov +elsewhere +sets +his +absurd +in +opposition +to +current +morality +and +reason +he +calls +it +truth +and +redemption +hence +there +is +basically +in +that +definition +of +the +absurd +an +approbation +that +chestov +grants +it +if +it +is +admitted +that +all +the +power +of +that +notion +lies +in +the +way +it +runs +counter +to +our +elementary +hopes +if +it +is +felt +that +to +remain +the +absurd +requires +not +to +be +consented +to +then +it +can +be +clearly +seen +that +it +has +lost +its +true +aspect +its +human +and +relative +character +in +order +to +enter +an +eternity +that +is +both +incomprehensible +and +satisfying +if +there +is +an +absurd +it +is +in +man +s +universe +the +moment +the +notion +transforms +itself +into +eternity +s +springboard +it +ceases +to +be +linked +to +human +lucidity +the +absurd +is +no +longer +that +evidence +that +man +ascertains +without +consenting +to +it +the +struggle +is +eluded +man +integrates +the +absurd +and +in +that +communion +causes +to +disappear +its +essential +character +which +is +opposition +laceration +and +divorce +this +leap +is +an +escape +chestov +who +is +so +fond +of +quoting +hamlet +s +remark +the +time +is +out +of +joint +writes +it +down +with +a +sort +of +savage +hope +that +seems +to +belong +to +him +in +particular +for +it +is +not +in +this +sense +that +hamlet +says +it +or +shakespeare +writes +it +the +intoxication +of +the +irrational +and +the +vocation +of +rapture +turn +a +lucid +mind +away +from +the +absurd +to +chestov +reason +is +useless +but +there +is +something +beyond +reason +to +an +absurd +mind +reason +is +useless +and +there +is +nothing +beyond +reason +this +leap +can +at +least +enlighten +us +a +little +more +as +to +the +true +nature +of +the +absurd +we +know +that +it +is +worthless +except +in +an +equilibrium +that +it +is +above +all +in +the +comparison +and +not +in +the +terms +of +that +comparison +but +it +so +happens +that +chestov +puts +all +the +emphasis +on +one +of +the +terms +and +destroys +the +equilibrium +our +appetite +for +understanding +our +nostalgia +for +the +absolute +are +explicable +only +in +so +far +precisely +as +we +can +understand +and +explain +many +things +it +is +useless +to +negate +the +reason +absolutely +it +has +its +order +in +which +it +is +efficacious +it +is +properly +that +of +human +experience +whence +we +wanted +to +make +everything +clear +if +we +cannot +do +so +if +the +absurd +is +born +on +that +occasion +it +is +born +precisely +at +the +very +meeting +point +of +that +efficacious +but +limited +reason +with +the +ever +resurgent +irrational +now +when +chestov +rises +up +against +a +hegelian +proposition +such +as +the +motion +of +the +solar +system +takes +place +in +conformity +with +immutable +laws +and +those +laws +are +its +reason +when +he +devotes +all +his +passion +to +upsetting +spinoza +s +rationalism +he +concludes +in +effect +in +favor +of +the +vanity +of +all +reason +whence +by +a +natural +and +illegitimate +reversal +to +the +pre +eminence +of +the +irrational +but +the +transition +is +not +evident +for +here +may +intervene +the +notion +of +limit +and +the +notion +of +level +the +laws +of +nature +may +be +operative +up +to +a +certain +limit +beyond +which +they +turn +against +themselves +to +give +birth +to +the +absurd +or +else +they +may +justify +themselves +on +the +level +of +description +without +for +that +reason +being +true +on +the +level +of +explanation +everything +is +sacrificed +here +to +the +irrational +and +the +demand +for +clarity +being +conjured +away +the +absurd +disappears +with +one +of +the +terms +of +its +comparison +the +absurd +man +on +the +other +hand +does +not +undertake +such +a +leveling +process +he +recognizes +the +struggle +does +not +absolutely +scorn +reason +and +admits +the +irrational +thus +he +again +embraces +in +a +single +glance +all +the +data +of +experience +and +he +is +little +inclined +to +leap +before +knowing +he +knows +simply +that +in +that +alert +awareness +there +is +no +further +place +for +hope +what +is +perceptible +in +leo +chestov +will +be +perhaps +even +more +so +in +kierkegaard +to +be +sure +it +is +hard +to +outline +clear +propositions +in +so +elusive +a +writer +but +despite +apparently +opposed +writings +beyond +the +pseudonyms +the +tricks +and +the +smiles +can +be +felt +throughout +that +work +as +it +were +the +presentiment +at +the +same +time +as +the +apprehension +of +a +truth +which +eventually +bursts +forth +in +the +last +works +kierkegaard +likewise +takes +the +leap +his +childhood +having +been +so +frightened +by +christianity +he +ultimately +returns +to +its +harshest +aspect +for +him +too +antinomy +and +paradox +become +criteria +of +the +religious +thus +the +very +thing +that +led +to +despair +of +the +meaning +and +depth +of +this +life +now +gives +it +its +truth +and +its +clarity +christianity +is +the +scandal +and +what +kierkegaard +calls +for +quite +plainly +is +the +third +sacrifice +required +by +ignatius +loyola +the +one +in +which +god +most +rejoices +the +sacrifice +of +the +intellect +this +effect +of +the +leap +is +odd +but +must +not +surprise +us +any +longer +he +makes +of +the +absurd +the +criterion +of +the +other +world +whereas +it +is +simply +a +residue +of +the +experience +of +this +world +in +his +failure +says +kierkegaard +the +believer +finds +his +triumph +it +is +not +for +me +to +wonder +to +what +stirring +preaching +this +attitude +is +linked +i +merely +have +to +wonder +if +the +spectacle +of +the +absurd +and +its +own +character +justifies +it +on +this +point +i +know +that +it +is +not +so +upon +considering +again +the +content +of +the +absurd +one +understands +better +the +method +that +inspired +kierkegaard +between +the +irrational +of +the +world +and +the +insurgent +nostalgia +of +the +absurd +he +does +not +maintain +the +equilibrium +he +does +not +respect +the +relationship +that +constitutes +properly +speaking +the +feeling +of +absurdity +sure +of +being +unable +to +escape +the +irrational +he +wants +at +least +to +save +himself +from +that +desperate +nostalgia +that +seems +to +him +sterile +and +devoid +of +implication +but +if +he +may +be +right +on +this +point +in +his +judgment +he +could +not +be +in +his +negation +if +he +substitutes +for +his +cry +of +revolt +a +frantic +adherence +at +once +he +is +led +to +blind +himself +to +the +absurd +which +hitherto +enlightened +him +and +to +deify +the +only +certainty +he +henceforth +possesses +the +irrational +the +important +thing +as +abbe +galiani +said +to +mme +d +epinay +is +not +to +be +cured +but +to +live +with +one +s +ailments +kierkegaard +wants +to +be +cured +to +be +cured +is +his +frenzied +wish +and +it +runs +throughout +his +whole +journal +the +entire +effort +of +his +intelligence +is +to +escape +the +antinomy +of +the +human +condition +an +all +the +more +desperate +effort +since +he +intermittently +perceives +its +vanity +when +he +speaks +of +himself +as +if +neither +fear +of +god +nor +piety +were +capable +of +bringing +him +to +peace +thus +it +is +that +through +a +strained +subterfuge +he +gives +the +irrational +the +appearance +and +god +the +attributes +of +the +absurd +unjust +incoherent +and +incomprehensible +intelligence +alone +in +him +strives +to +stifle +the +underlying +demands +of +the +human +heart +since +nothing +is +proved +everything +can +be +proved +indeed +kierkegaard +himself +shows +us +the +path +taken +i +do +not +want +to +suggest +anything +here +but +how +can +one +fail +to +read +in +his +works +the +signs +of +an +almost +intentional +mutilation +of +the +soul +to +balance +the +mutilation +accepted +in +regard +to +the +absurd +it +is +the +leitmotiv +of +the +journal +what +i +lacked +was +the +animal +which +also +belongs +to +human +destiny +but +give +me +a +body +then +and +further +on +oh +especially +in +my +early +youth +what +should +i +not +have +given +to +be +a +man +even +for +six +months +what +i +lack +basically +is +a +body +and +the +physical +conditions +of +existence +elsewhere +the +same +man +nevertheless +adopts +the +great +cry +of +hope +that +has +come +down +through +so +many +centuries +and +quickened +so +many +hearts +except +that +of +the +absurd +man +but +for +the +christian +death +is +certainly +not +the +end +of +everything +and +it +implies +infinitely +more +hope +than +life +implies +for +us +even +when +that +life +is +overflowing +with +health +and +vigor +reconciliation +through +scandal +is +still +reconciliation +it +allows +one +perhaps +as +can +be +seen +to +derive +hope +of +its +contrary +which +is +death +but +even +if +fellow +feeling +inclines +one +toward +that +attitude +still +it +must +be +said +that +excess +justifies +nothing +that +transcends +as +the +saying +goes +the +human +scale +therefore +it +must +be +superhuman +but +this +therefore +is +superfluous +there +is +no +logical +certainty +here +there +is +no +experimental +probability +either +all +i +can +say +is +that +in +fact +that +transcends +my +scale +if +i +do +not +draw +a +negation +from +it +at +least +i +do +not +want +to +found +anything +on +the +incomprehensible +i +want +to +know +whether +i +can +live +with +what +i +know +and +with +that +alone +i +am +told +again +that +here +the +intelligence +must +sacrifice +its +pride +and +the +reason +bow +down +but +if +i +recognize +the +limits +of +the +reason +i +do +not +therefore +negate +it +recognizing +its +relative +powers +i +merely +want +to +remain +in +this +middle +path +where +the +intelligence +can +remain +clear +if +that +is +its +pride +i +see +no +sufficient +reason +for +giving +it +up +nothing +more +profound +for +example +than +kierkegaard +s +view +according +to +which +despair +is +not +a +fact +but +a +state +the +very +state +of +sin +for +sin +is +what +alienates +from +god +the +absurd +which +is +the +metaphysical +state +of +the +conscious +man +does +not +lead +to +god +perhaps +this +notion +will +become +clearer +if +i +risk +this +shocking +statement +the +absurd +is +sin +without +god +it +is +a +matter +of +living +in +that +state +of +the +absurd +i +know +on +what +it +is +founded +this +mind +and +this +world +straining +against +each +other +without +being +able +to +embrace +each +other +i +ask +for +the +rule +of +life +of +that +state +and +what +i +am +offered +neglects +its +basis +negates +one +of +the +terms +of +the +painful +opposition +demands +of +me +a +resignation +i +ask +what +is +involved +in +the +condition +i +recognize +as +mine +i +know +it +implies +obscurity +and +ignorance +and +i +am +assured +that +this +ignorance +explains +everything +and +that +this +darkness +is +my +light +but +there +is +no +reply +here +to +my +intent +and +this +stirring +lyricism +cannot +hide +the +paradox +from +me +one +must +therefore +turn +away +kierkegaard +may +shout +in +warning +if +man +had +no +eternal +consciousness +if +at +the +bottom +of +everything +there +were +merely +a +wild +seething +force +producing +everything +both +large +and +trifling +in +the +storm +of +dark +passions +if +the +bottomless +void +that +nothing +can +fill +underlay +all +things +what +would +life +be +but +despair +this +cry +is +not +likely +to +stop +the +absurd +man +seeking +what +is +true +is +not +seeking +what +is +desirable +if +in +order +to +elude +the +anxious +question +what +would +life +be +one +must +like +the +donkey +feed +on +the +roses +of +illusion +then +the +absurd +mind +rather +than +resigning +itself +to +falsehood +prefers +to +adopt +fearlessly +kierkegaard +s +reply +despair +everything +considered +a +determined +soul +will +always +manage +i +am +taking +the +liberty +at +this +point +of +calling +the +existential +attitude +philosophical +suicide +but +this +does +not +imply +a +judgment +it +is +a +convenient +way +of +indicating +the +movement +by +which +a +thought +negates +itself +and +tends +to +transcend +itself +in +its +very +negation +for +the +existentials +negation +is +their +god +to +be +precise +that +god +is +maintained +only +through +the +negation +of +human +reason +but +like +suicides +gods +change +with +men +there +are +many +ways +of +leaping +the +essential +being +to +leap +those +redeeming +negations +those +ultimate +contradictions +which +negate +the +obstacle +that +has +not +yet +been +leaped +over +may +spring +just +as +well +this +is +the +paradox +at +which +this +reasoning +aims +from +a +certain +religious +inspiration +as +from +the +rational +order +they +always +lay +claim +to +the +eternal +and +it +is +solely +in +this +that +they +take +the +leap +it +must +be +repeated +that +the +reasoning +developed +in +this +essay +leaves +out +altogether +the +most +widespread +spiritual +attitude +of +our +enlightened +age +the +one +based +on +the +principle +that +all +is +reason +which +aims +to +explain +the +world +it +is +natural +to +give +a +clear +view +of +the +world +after +accepting +the +idea +that +it +must +be +clear +that +is +even +legitimate +but +does +not +concern +the +reasoning +we +are +following +out +here +in +fact +our +aim +is +to +shed +light +upon +the +step +taken +by +the +mind +when +starting +from +a +philosophy +of +the +world +s +lack +of +meaning +it +ends +up +by +finding +a +meaning +and +depth +in +it +the +most +touching +of +those +steps +is +religious +in +essence +it +becomes +obvious +in +the +theme +of +the +irrational +but +the +most +paradoxical +and +most +significant +is +certainly +the +one +that +attributes +rational +reasons +to +a +world +it +originally +imagined +as +devoid +of +any +guiding +principle +it +is +impossible +in +any +case +to +reach +the +consequences +that +concern +us +without +having +given +an +idea +of +this +new +attainment +of +the +spirit +of +nostalgia +i +shall +examine +merely +the +theme +of +the +intention +made +fashionable +by +husserl +and +the +phenomenologists +i +have +already +alluded +to +it +originally +husserl +s +method +negates +the +classic +procedure +of +the +reason +let +me +repeat +thinking +is +not +unifying +or +making +the +appearance +familiar +under +the +guise +of +a +great +principle +thinking +is +learning +all +over +again +how +to +see +directing +one +s +consciousness +making +of +every +image +a +privileged +place +in +other +words +phenomenology +declines +to +explain +the +world +it +wants +to +be +merely +a +description +of +actual +experience +it +confirms +absurd +thought +in +its +initial +assertion +that +there +is +no +truth +but +merely +truths +from +the +evening +breeze +to +this +hand +on +my +shoulder +everything +has +its +truth +consciousness +illuminates +it +by +paying +attention +to +it +consciousness +does +not +form +the +object +of +its +understanding +it +merely +focuses +it +is +the +act +of +attention +and +to +borrow +a +bergsonian +image +it +resembles +the +projector +that +suddenly +focuses +on +an +image +the +difference +is +that +there +is +no +scenario +but +a +successive +and +incoherent +illustration +in +that +magic +lantern +all +the +pictures +are +privileged +consciousness +suspends +in +experience +the +objects +of +its +attention +through +its +miracle +it +isolates +them +henceforth +they +are +beyond +all +judgments +this +is +the +intention +that +characterizes +consciousness +but +the +word +does +not +imply +any +idea +of +finality +it +is +taken +in +its +sense +of +direction +its +only +value +is +topographical +at +first +sight +it +certainly +seems +that +in +this +way +nothing +contradicts +the +absurd +spirit +that +apparent +modesty +of +thought +that +limits +itself +to +describing +what +it +declines +to +explain +that +intentional +discipline +whence +results +paradoxically +a +profound +enrichment +of +experience +and +the +rebirth +of +the +world +in +its +prolixity +are +absurd +procedures +at +least +at +first +sight +for +methods +of +thought +in +this +case +as +elsewhere +always +assume +two +aspects +one +psychological +and +the +other +metaphysical +thereby +they +harbor +two +truths +if +the +theme +of +the +intentional +claims +to +illustrate +merely +a +psychological +attitude +by +which +reality +is +drained +instead +of +being +explained +nothing +in +fact +separates +it +from +the +absurd +spirit +it +aims +to +enumerate +what +it +cannot +transcend +it +affirms +solely +that +without +any +unifying +principle +thought +can +still +take +delight +in +describing +and +understanding +every +aspect +of +experience +the +truth +involved +then +for +each +of +those +aspects +is +psychological +in +nature +it +simply +testifies +to +the +interest +that +reality +can +offer +it +is +a +way +of +awaking +a +sleeping +world +and +of +making +it +vivid +to +the +mind +but +if +one +attempts +to +extend +and +give +a +rational +basis +to +that +notion +of +truth +if +one +claims +to +discover +in +this +way +the +essence +of +each +object +of +knowledge +one +restores +its +depth +to +experience +for +an +absurd +mind +that +is +incomprehensible +now +it +is +this +wavering +between +modesty +and +assurance +that +is +noticeable +in +the +intentional +attitude +and +this +shimmering +of +phenomenological +thought +will +illustrate +the +absurd +reasoning +better +than +anything +else +for +husserl +speaks +likewise +of +extra +temporal +essences +brought +to +light +by +the +intention +and +he +sounds +like +plato +all +things +are +not +explained +by +one +thing +but +by +all +things +i +see +no +difference +to +be +sure +those +ideas +or +those +essences +that +consciousness +effectuates +at +the +end +of +every +description +are +not +yet +to +be +considered +perfect +models +but +it +is +asserted +that +they +are +directly +present +in +each +datum +of +perception +there +is +no +longer +a +single +idea +explaining +everything +but +an +infinite +number +of +essences +giving +a +meaning +to +an +infinite +number +of +objects +the +world +comes +to +a +stop +but +also +lights +up +platonic +realism +becomes +intuitive +but +it +is +still +realism +kierkegaard +was +swallowed +up +in +his +god +parmenides +plunged +thought +into +the +one +but +here +thought +hurls +itself +into +an +abstract +polytheism +but +this +is +not +all +hallucinations +and +fictions +likewise +belong +to +extra +temporal +essences +in +the +new +world +of +ideas +the +species +of +centaurs +collaborates +with +the +more +modest +species +of +metropolitan +man +for +the +absurd +man +there +was +a +truth +as +well +as +a +bitterness +in +that +purely +psychological +opinion +that +all +aspects +of +the +world +are +privileged +to +say +that +everything +is +privileged +is +tantamount +to +saying +that +everything +is +equivalent +but +the +metaphysical +aspect +of +that +truth +is +so +far +reaching +that +through +an +elementary +reaction +he +feels +closer +perhaps +to +plato +he +is +taught +in +fact +that +every +image +presupposes +an +equally +privileged +essence +in +this +ideal +world +without +hierarchy +the +formal +army +is +composed +solely +of +generals +to +be +sure +transcendency +had +been +eliminated +but +a +sudden +shift +in +thought +brings +back +into +the +world +a +sort +of +fragmentary +immanence +which +restores +to +the +universe +its +depth +am +i +to +fear +having +carried +too +far +a +theme +handled +with +greater +circumspection +by +its +creators +i +read +merely +these +assertions +of +husserl +apparently +paradoxical +yet +rigorously +logical +if +what +precedes +is +accepted +that +which +is +true +is +true +absolutely +in +itself +truth +is +one +identical +with +itself +however +different +the +creatures +who +perceive +it +men +monsters +angels +or +gods +reason +triumphs +and +trumpets +forth +with +that +voice +i +cannot +deny +what +can +its +assertions +mean +in +the +absurd +world +the +perception +of +an +angel +or +a +god +has +no +meaning +for +me +that +geometrical +spot +where +divine +reason +ratifies +mine +will +always +be +incomprehensible +to +me +there +too +i +discern +a +leap +and +though +performed +in +the +abstract +it +nonetheless +means +for +me +forgetting +just +what +i +do +not +want +to +forget +when +farther +on +husserl +exclaims +if +all +masses +subject +to +attraction +were +to +disappear +the +law +of +attraction +would +not +be +destroyed +but +would +simply +remain +without +any +possible +application +i +know +that +i +am +faced +with +a +metaphysic +of +consolation +and +if +i +want +to +discover +the +point +where +thought +leaves +the +path +of +evidence +i +have +only +to +reread +the +parallel +reasoning +that +husserl +voices +regarding +the +mind +if +we +could +contemplate +clearly +the +exact +laws +of +psychic +processes +they +would +be +seen +to +be +likewise +eternal +and +invariable +like +the +basic +laws +of +theoretical +natural +science +hence +they +would +be +valid +even +if +there +were +no +psychic +process +even +if +the +mind +were +not +its +laws +would +be +i +see +then +that +of +a +psychological +truth +husserl +aims +to +make +a +rational +rule +after +having +denied +the +integrating +power +of +human +reason +he +leaps +by +this +expedient +to +eternal +reason +husserl +s +theme +of +the +concrete +universe +cannot +then +surprise +me +if +i +am +told +that +all +essences +are +not +formal +but +that +some +are +material +that +the +first +are +the +object +of +logic +and +the +second +of +science +this +is +merely +a +question +of +definition +the +abstract +i +am +told +indicates +but +a +part +without +consistency +in +itself +of +a +concrete +universal +but +the +wavering +already +noted +allows +me +to +throw +light +on +the +confusion +of +these +terms +for +that +may +mean +that +the +concrete +object +of +my +attention +this +sky +the +reflection +of +that +water +on +this +coat +alone +preserve +the +prestige +of +the +real +that +my +interest +isolates +in +the +world +and +i +shall +not +deny +it +but +that +may +mean +also +that +this +coat +itself +is +universal +has +its +particular +and +sufficient +essence +belongs +to +the +world +of +forms +i +then +realize +that +merely +the +order +of +the +procession +has +been +changed +this +world +has +ceased +to +have +its +reflection +in +a +higher +universe +but +the +heaven +of +forms +is +figured +in +the +host +of +images +of +this +earth +this +changes +nothing +for +me +rather +than +encountering +here +a +taste +for +the +concrete +the +meaning +of +the +human +condition +i +find +an +intellectualism +sufficiently +unbridled +to +generalize +the +concrete +itself +it +is +futile +to +be +amazed +by +the +apparent +paradox +that +leads +thought +to +its +own +negation +by +the +opposite +paths +of +humiliated +reason +and +triumphal +reason +from +the +abstract +god +of +husserl +to +the +dazzling +god +of +kierkegaard +the +distance +is +not +so +great +reason +and +the +irrational +lead +to +the +same +preaching +in +truth +the +way +matters +but +little +the +will +to +arrive +suffices +the +abstract +philosopher +and +the +religious +philosopher +start +out +from +the +same +disorder +and +support +each +other +in +the +same +anxiety +but +the +essential +is +to +explain +nostalgia +is +stronger +here +than +knowledge +it +is +significant +that +the +thought +of +the +epoch +is +at +once +one +of +the +most +deeply +imbued +with +a +philosophy +of +the +non +significance +of +the +world +and +one +of +the +most +divided +in +its +conclusions +it +is +constantly +oscillating +between +extreme +rationalization +of +reality +which +tends +to +break +up +that +thought +into +standard +reasons +and +its +extreme +irrationalization +which +tends +to +deify +it +but +this +divorce +is +only +apparent +it +is +a +matter +of +reconciliation +and +in +both +cases +the +leap +suffices +it +is +always +wrongly +thought +that +the +notion +of +reason +is +a +oneway +notion +to +tell +the +truth +however +rigorous +it +may +be +in +its +ambition +this +concept +is +nonetheless +just +as +unstable +as +others +reason +bears +a +quite +human +aspect +but +it +also +is +able +to +turn +toward +the +divine +since +plotinus +who +was +the +first +to +reconcile +it +with +the +eternal +climate +it +has +learned +to +turn +away +from +the +most +cherished +of +its +principles +which +is +contradiction +in +order +to +integrate +into +it +the +strangest +the +quite +magic +one +of +participation +it +is +an +instrument +of +thought +and +not +thought +itself +above +all +a +man +s +thought +is +his +nostalgia +just +as +reason +was +able +to +soothe +the +melancholy +of +plotinus +it +provides +modern +anguish +the +means +of +calming +itself +in +the +familiar +setting +of +the +eternal +the +absurd +mind +has +less +luck +for +it +the +world +is +neither +so +rational +nor +so +irrational +it +is +unreasonable +and +only +that +with +husserl +the +reason +eventually +has +no +limits +at +all +the +absurd +on +the +contrary +establishes +its +lim +its +since +it +is +powerless +to +calm +its +anguish +kierkegaard +independently +asserts +that +a +single +limit +is +enough +to +negate +that +anguish +but +the +absurd +does +not +go +so +far +for +it +that +limit +is +directed +solely +at +the +reason +s +ambitions +the +theme +of +the +irrational +as +it +is +conceived +by +the +existentials +is +reason +becoming +confused +and +escaping +by +negating +itself +the +absurd +is +lucid +reason +noting +its +limits +only +at +the +end +of +this +difficult +path +does +the +absurd +man +recognize +his +true +motives +upon +comparing +his +inner +exigence +and +what +is +then +offered +him +he +suddenly +feels +he +is +going +to +turn +away +in +the +universe +of +husserl +the +world +becomes +clear +and +that +longing +for +familiarity +that +man +s +heart +harbors +becomes +useless +in +kierkegaard +s +apocalypse +that +desire +for +clarity +must +be +given +up +if +it +wants +to +be +satisfied +sin +is +not +so +much +knowing +if +it +were +everybody +would +be +innocent +as +wanting +to +know +indeed +it +is +the +only +sin +of +which +the +absurd +man +can +feel +that +it +constitutes +both +his +guilt +and +his +innocence +he +is +offered +a +solution +in +which +all +the +past +contradictions +have +become +merely +polemical +games +but +this +is +not +the +way +he +experienced +them +their +truth +must +be +preserved +which +consists +in +not +being +satisfied +he +does +not +want +preaching +my +reasoning +wants +to +be +faithful +to +the +evidence +that +aroused +it +that +evidence +is +the +absurd +it +is +that +divorce +between +the +mind +that +desires +and +the +world +that +disappoints +my +nostalgia +for +unity +this +fragmented +universe +and +the +contradiction +that +binds +them +together +kierkegaard +suppresses +my +nostalgia +and +husserl +gathers +together +that +universe +that +is +not +what +i +was +expecting +it +was +a +matter +of +living +and +thinking +with +those +dislocations +of +knowing +whether +one +had +to +accept +or +refuse +there +can +be +no +question +of +masking +the +evidence +of +suppressing +the +absurd +by +denying +one +of +the +terms +of +its +equation +it +is +essential +to +know +whether +one +can +live +with +it +or +whether +on +the +other +hand +logic +commands +one +to +die +of +it +i +am +not +interested +in +philosophical +suicide +but +rather +in +plain +suicide +i +merely +wish +to +purge +it +of +its +emotional +content +and +know +its +logic +and +its +integrity +any +other +position +implies +for +the +absurd +mind +deceit +and +the +mind +s +retreat +before +what +the +mind +itself +has +brought +to +light +husserl +claims +to +obey +the +desire +to +escape +the +inveterate +habit +of +living +and +thinking +in +certain +well +known +and +convenient +conditions +of +existence +but +the +final +leap +restores +in +him +the +eternal +and +its +comfort +the +leap +does +not +represent +an +extreme +danger +as +kierkegaard +would +like +it +to +do +the +danger +on +the +contrary +lies +in +the +subtle +instant +that +precedes +the +leap +being +able +to +remain +on +that +dizzying +crest +that +is +integrity +and +the +rest +is +subterfuge +i +know +also +that +never +has +helplessness +inspired +such +striking +harmonies +as +those +of +kierkegaard +but +if +helplessness +has +its +place +in +the +indifferent +landscapes +of +history +it +has +none +in +a +reasoning +whose +exigence +is +now +known +absurd +freedom +now +the +main +thing +is +done +i +hold +certain +facts +from +which +i +cannot +separate +what +i +know +what +is +certain +what +i +cannot +deny +what +i +cannot +reject +this +is +what +counts +i +can +negate +everything +of +that +part +of +me +that +lives +on +vague +nostalgias +except +this +desire +for +unity +this +longing +to +solve +this +need +for +clarity +and +cohesion +i +can +refute +everything +in +this +world +surrounding +me +that +offends +or +enraptures +me +except +this +chaos +this +sovereign +chance +and +this +divine +equivalence +which +springs +from +anarchy +i +don +t +know +whether +this +world +has +a +meaning +that +transcends +it +but +i +know +that +i +do +not +know +that +meaning +and +that +it +is +impossible +for +me +just +now +to +know +it +what +can +a +meaning +outside +my +condition +mean +to +me +i +can +understand +only +in +human +terms +what +i +touch +what +resists +me +that +is +what +i +understand +and +these +two +certainties +my +appetite +for +the +absolute +and +for +unity +and +the +impossibility +of +reducing +this +world +to +a +rational +and +reasonable +principle +i +also +know +that +i +cannot +reconcile +them +what +other +truth +can +i +admit +without +lying +without +bringing +in +a +hope +i +lack +and +which +means +nothing +within +the +limits +of +my +condition +if +i +were +a +tree +among +trees +a +cat +among +animals +this +life +would +have +a +meaning +or +rather +this +problem +would +not +arise +for +i +should +belong +to +this +world +i +should +be +this +world +to +which +i +am +now +opposed +by +my +whole +consciousness +and +my +whole +insistence +upon +familiarity +this +ridiculous +reason +is +what +sets +me +in +opposition +to +all +creation +i +cannot +cross +it +out +with +a +stroke +of +the +pen +what +i +believe +to +be +true +i +must +therefore +preserve +what +seems +to +me +so +obvious +even +against +me +i +must +support +and +what +constitutes +the +basis +of +that +conflict +of +that +break +between +the +world +and +my +mind +but +the +awareness +of +it +if +therefore +i +want +to +preserve +it +i +can +through +a +constant +awareness +ever +revived +ever +alert +this +is +what +for +the +moment +i +must +remember +at +this +moment +the +absurd +so +obvious +and +yet +so +hard +to +win +returns +to +a +man +s +life +and +finds +its +home +there +at +this +moment +too +the +mind +can +leave +the +arid +dried +up +path +of +lucid +effort +that +path +now +emerges +in +daily +life +it +encounters +the +world +of +the +anonymous +impersonal +pronoun +one +but +henceforth +man +enters +in +with +his +revolt +and +his +lucidity +he +has +forgotten +how +to +hope +this +hell +of +the +present +is +his +kingdom +at +last +all +problems +recover +their +sharp +edge +abstract +evidence +retreats +before +the +poetry +of +forms +and +colors +spiritual +conflicts +become +embodied +and +return +to +the +abject +and +magnificent +shelter +of +man +s +heart +none +of +them +is +settled +but +all +are +transfigured +is +one +going +to +die +escape +by +the +leap +rebuild +a +mansion +of +ideas +and +forms +to +one +s +own +scale +is +one +on +the +contrary +going +to +take +up +the +heart +rending +and +marvelous +wager +of +the +absurd +let +s +make +a +final +effort +in +this +regard +and +draw +all +our +conclusions +the +body +affection +creation +action +human +nobility +will +then +resume +their +places +in +this +mad +world +at +last +man +will +again +find +there +the +wine +of +the +absurd +and +the +bread +of +indifference +on +which +he +feeds +his +greatness +let +us +insist +again +on +the +method +it +is +a +matter +of +persisting +at +a +certain +point +on +his +path +the +absurd +man +is +tempted +history +is +not +lacking +in +either +religions +or +prophets +even +without +gods +he +is +asked +to +leap +all +he +can +reply +is +that +he +doesn +t +fully +understand +that +it +is +not +obvious +indeed +he +does +not +want +to +do +anything +but +what +he +fully +understands +he +is +assured +that +this +is +the +sin +of +pride +but +he +does +not +understand +the +notion +of +sin +that +perhaps +hell +is +in +store +but +he +has +not +enough +imagination +to +visualize +that +strange +future +that +he +is +losing +immortal +life +but +that +seems +to +him +an +idle +consideration +an +attempt +is +made +to +get +him +to +admit +his +guilt +he +feels +innocent +to +tell +the +truth +that +is +all +he +feels +his +irreparable +innocence +this +is +what +allows +him +everything +hence +what +he +demands +of +himself +is +to +live +solely +with +what +he +knows +to +accommodate +himself +to +what +is +and +to +bring +in +nothing +that +is +not +certain +he +is +told +that +nothing +is +but +this +at +least +is +a +certainty +and +it +is +with +this +that +he +is +concerned +he +wants +to +find +out +if +it +is +possible +to +live +without +appeal +now +i +can +broach +the +notion +of +suicide +it +has +already +been +felt +what +solution +might +be +given +at +this +point +the +problem +is +reversed +it +was +previously +a +question +of +finding +out +whether +or +not +life +had +to +have +a +meaning +to +be +lived +it +now +becomes +clear +on +the +contrary +that +it +will +be +lived +all +the +better +if +it +has +no +meaning +living +an +experience +a +particular +fate +is +accepting +it +fully +now +no +one +will +live +this +fate +knowing +it +to +be +absurd +unless +he +does +everything +to +keep +before +him +that +absurd +brought +to +light +by +consciousness +negating +one +of +the +terms +of +the +opposition +on +which +he +lives +amounts +to +escaping +it +to +abolish +conscious +revolt +is +to +elude +the +problem +the +theme +of +permanent +revolution +is +thus +carried +into +individual +experience +living +is +keeping +the +absurd +alive +keeping +it +alive +is +above +all +contemplating +it +unlike +eurydice +the +absurd +dies +only +when +we +turn +away +from +it +one +of +the +only +coherent +philosophical +positions +is +thus +revolt +it +is +a +constant +confrontation +between +man +and +his +own +obscurity +it +is +an +insistence +upon +an +impossible +transparency +it +challenges +the +world +anew +every +second +just +as +danger +provided +man +the +unique +opportunity +of +seizing +awareness +so +metaphysical +revolt +extends +awareness +to +the +whole +of +experience +it +is +that +constant +presence +of +man +in +his +own +eyes +it +is +not +aspiration +for +it +is +devoid +of +hope +that +revolt +is +the +certainly +of +a +crushing +fate +without +the +resignation +that +ought +to +accompany +it +this +is +where +it +is +seen +to +what +a +degree +absurd +experience +is +remote +from +suicide +it +may +be +thought +that +suicide +follows +revolt +but +wrongly +for +it +does +not +represent +the +logical +outcome +of +revolt +it +is +just +the +contrary +by +the +consent +it +presupposes +suicide +like +the +leap +is +acceptance +at +its +extreme +everything +is +over +and +man +returns +to +his +essential +history +his +future +his +unique +and +dreadful +future +he +sees +and +rushes +toward +it +in +its +way +suicide +settles +the +absurd +it +engulfs +the +absurd +in +the +same +death +but +i +know +that +in +order +to +keep +alive +the +absurd +cannot +be +settled +it +escapes +suicide +to +the +extent +that +it +is +simultaneously +awareness +and +rejection +of +death +it +is +at +the +extreme +limit +of +the +condemned +man +s +last +thought +that +shoelace +that +despite +everything +he +sees +a +few +yards +away +on +the +very +brink +of +his +dizzying +fall +the +contrary +of +suicide +in +fact +is +the +man +condemned +to +death +that +revolt +gives +life +its +value +spread +out +over +the +whole +length +of +a +life +it +restores +its +majesty +to +that +life +to +a +man +devoid +of +blinders +there +is +no +finer +sight +than +that +of +the +intelligence +at +grips +with +a +reality +that +transcends +it +the +sight +of +human +pride +is +unequaled +no +disparagement +is +of +any +use +that +discipline +that +the +mind +imposes +on +itself +that +will +conjured +up +out +of +nothing +that +face +to +face +struggle +have +something +exceptional +about +them +to +impoverish +that +reality +whose +inhumanity +constitutes +man +s +majesty +is +tantamount +to +impoverishing +him +himself +i +understand +then +why +the +doctrines +that +explain +everything +to +me +also +debilitate +me +at +the +same +time +they +relieve +me +of +the +weight +of +my +own +life +and +yet +i +must +carry +it +alone +at +this +juncture +i +cannot +conceive +that +a +skeptical +metaphysics +can +be +joined +to +an +ethics +of +renunciation +consciousness +and +revolt +these +rejections +are +the +contrary +of +renunciation +everything +that +is +indomitable +and +passionate +in +a +human +heart +quickens +them +on +the +contrary +with +its +own +life +it +is +essential +to +die +unrecon +ciled +and +not +of +one +s +own +free +will +suicide +is +a +repudi +ation +the +absurd +man +can +only +drain +everything +to +the +bitter +end +and +deplete +himself +the +absurd +is +his +extreme +tension +which +he +maintains +constantly +by +solitary +effort +for +he +knows +that +in +that +consciousness +and +in +that +day +to +day +revolt +he +gives +proof +of +his +only +truth +which +is +defiance +this +is +a +first +consequence +if +i +remain +in +that +prearranged +position +which +consists +in +drawing +all +the +conclusions +and +nothing +else +involved +in +a +newly +discovered +notion +i +am +faced +with +a +second +paradox +in +order +to +remain +faithful +to +that +method +i +have +nothing +to +do +with +the +problem +of +metaphysical +liberty +knowing +whether +or +not +man +is +free +doesn +t +interest +me +i +can +experience +only +my +own +freedom +as +to +it +i +can +have +no +general +notions +but +merely +a +few +clear +insights +the +problem +of +freedom +as +such +has +no +meaning +for +it +is +linked +in +quite +a +different +way +with +the +problem +of +god +knowing +whether +or +not +man +is +free +involves +knowing +whether +he +can +have +a +master +the +absurdity +peculiar +to +this +problem +comes +from +the +fact +that +the +very +notion +that +makes +the +problem +of +freedom +possible +also +takes +away +all +its +meaning +for +in +the +presence +of +god +there +is +less +a +problem +of +freedom +than +a +problem +of +evil +you +know +the +alternative +either +we +are +not +free +and +god +the +all +powerful +is +responsible +for +evil +or +we +are +free +and +responsible +but +god +is +not +all +powerful +all +the +scholastic +subtleties +have +neither +added +anything +to +nor +subtracted +anything +from +the +acuteness +of +this +paradox +this +is +why +i +cannot +act +lost +in +the +glorification +or +the +mere +definition +of +a +notion +which +eludes +me +and +loses +its +meaning +as +soon +as +it +goes +beyond +the +frame +of +reference +of +my +individual +experience +i +cannot +understand +what +kind +of +freedom +would +be +given +me +by +a +higher +being +i +have +lost +the +sense +of +hierarchy +the +only +conception +of +freedom +i +can +have +is +that +of +the +prisoner +or +the +individual +in +the +midst +of +the +state +the +only +one +i +know +is +freedom +of +thought +and +action +now +if +the +absurd +cancels +all +my +chances +of +eternal +freedom +it +restores +and +magnifies +on +the +other +hand +my +freedom +of +action +that +privation +of +hope +and +future +means +an +increase +in +man +s +availability +before +encountering +the +absurd +the +everyday +man +lives +with +aims +a +concern +for +the +future +or +for +justification +with +regard +to +whom +or +what +is +not +the +question +he +weighs +his +chances +he +counts +on +someday +his +retirement +or +the +labor +of +his +sons +he +still +thinks +that +something +in +his +life +can +be +directed +in +truth +he +acts +as +if +he +were +free +even +if +all +the +facts +make +a +point +of +contradicting +that +liberty +but +after +the +absurd +everything +is +upset +that +idea +that +i +am +my +way +of +acting +as +if +everything +has +a +meaning +even +if +on +occasion +i +said +that +nothing +has +all +that +is +given +the +lie +in +vertiginous +fashion +by +the +absurdity +of +a +possible +death +thinking +of +the +future +establishing +aims +for +oneself +having +preferences +all +this +presupposes +a +belief +in +freedom +even +if +one +occasionally +ascertains +that +one +doesn +t +feel +it +but +at +that +moment +i +am +well +aware +that +that +higher +liberty +that +freedom +to +be +which +alone +can +serve +as +basis +for +a +truth +does +not +exist +death +is +there +as +the +only +reality +after +death +the +chips +are +down +i +am +not +even +free +either +to +perpetuate +myself +but +a +slave +and +above +all +a +slave +without +hope +of +an +eternal +revolution +without +recourse +to +contempt +and +who +without +revolution +and +without +contempt +can +remain +a +slave +what +freedom +can +exist +in +the +fullest +sense +without +assurance +of +eternity +but +at +the +same +time +the +absurd +man +realizes +that +hitherto +he +was +bound +to +that +postulate +of +freedom +on +the +illusion +of +which +he +was +living +in +a +certain +sense +that +hampered +him +to +the +extent +to +which +he +imagined +a +purpose +to +his +life +he +adapted +himself +to +the +demands +of +a +purpose +to +be +achieved +and +became +the +slave +of +his +liberty +thus +i +could +not +act +otherwise +than +as +the +father +or +the +engineer +or +the +leader +of +a +nation +or +the +post +office +sub +clerk +that +i +am +preparing +to +be +i +think +i +can +choose +to +be +that +rather +than +something +else +i +think +so +unconsciously +to +be +sure +but +at +the +same +time +i +strengthen +my +postulate +with +the +beliefs +of +those +around +me +with +the +presumptions +of +my +human +environment +others +are +so +sure +of +being +free +and +that +cheerful +mood +is +so +contagious +however +far +one +may +remain +from +any +presumption +moral +or +social +one +is +partly +influenced +by +them +and +even +for +the +best +among +them +there +are +good +and +bad +presumptions +one +adapts +one +s +life +to +them +thus +the +absurd +man +realizes +that +he +was +not +really +free +to +speak +clearly +to +the +extent +to +which +i +hope +to +which +i +worry +about +a +truth +that +might +be +individual +to +me +about +a +way +of +being +or +creating +to +the +extent +to +which +i +arrange +my +life +and +prove +thereby +that +i +accept +its +having +a +meaning +i +create +for +myself +barriers +between +which +i +confine +my +life +i +do +like +so +many +bureaucrats +of +the +mind +and +heart +who +only +fill +me +with +disgust +and +whose +only +vice +i +now +see +clearly +is +to +take +man +s +freedom +seriously +the +absurd +enlightens +me +on +this +point +there +is +no +future +henceforth +this +is +the +reason +for +my +inner +freedom +i +shall +use +two +comparisons +here +mystics +to +begin +with +find +freedom +in +giving +themselves +by +losing +themselves +in +their +god +by +accepting +his +rules +they +become +secretly +free +in +spontaneously +accepted +slavery +they +recover +a +deeper +independence +but +what +does +that +freedom +mean +it +may +be +said +above +all +that +they +feel +free +with +regard +to +themselves +and +not +so +much +free +as +liberated +likewise +completely +turned +toward +death +taken +here +as +the +most +obvious +absurdity +the +absurd +man +feels +released +from +everything +outside +that +passionate +attention +crystallizing +in +him +he +enjoys +a +freedom +with +regard +to +common +rules +it +can +be +seen +at +this +point +that +the +initial +themes +of +existential +philosophy +keep +their +entire +value +the +return +to +consciousness +the +escape +from +everyday +sleep +represent +the +first +steps +of +absurd +freedom +but +it +is +existential +preaching +that +is +alluded +to +and +with +it +that +spiritual +leap +which +basically +escapes +consciousness +in +the +same +way +this +is +my +second +comparison +the +slaves +of +antiquity +did +not +belong +to +themselves +but +they +knew +that +freedom +which +consists +in +not +feeling +responsible +death +too +has +patrician +hands +which +while +crushing +also +liberate +losing +oneself +in +that +bottomless +certainty +feeling +henceforth +sufficiently +remote +from +one +s +own +life +to +increase +it +and +take +a +broad +view +of +it +this +involves +the +principle +of +a +liberation +such +new +independence +has +a +definite +time +limit +like +any +freedom +of +action +it +does +not +write +a +check +on +eternity +but +it +takes +the +place +of +the +illusions +of +freedom +which +all +stopped +with +death +the +divine +availability +of +the +condemned +man +before +whom +the +prison +doors +open +in +a +certain +early +dawn +that +unbelievable +disinterestedness +with +regard +to +everything +except +for +the +pure +flame +of +life +it +is +clear +that +death +and +the +absurd +are +here +the +principles +of +the +only +reasonable +freedom +that +which +a +human +heart +can +experience +and +live +this +is +a +second +consequence +the +absurd +man +thus +catches +sight +of +a +burning +and +frigid +transparent +and +limited +universe +in +which +nothing +is +possible +but +everything +is +given +and +beyond +which +all +is +collapse +and +nothingness +he +can +then +decide +to +accept +such +a +universe +and +draw +from +it +his +strength +his +refusal +to +hope +and +the +unyielding +evidence +of +a +life +without +consolation +but +what +does +life +mean +in +such +a +universe +nothing +else +for +the +moment +but +indifference +to +the +future +and +a +desire +to +use +up +everything +that +is +given +belief +in +the +meaning +of +life +always +implies +a +scale +of +values +a +choice +our +preferences +belief +in +the +absurd +according +to +our +definitions +teaches +the +contrary +but +this +is +worth +examining +knowing +whether +or +not +one +can +live +without +appeal +is +all +that +interests +me +i +do +not +want +to +get +out +of +my +depth +this +aspect +of +life +being +given +me +can +i +adapt +myself +to +it +now +faced +with +this +particular +concern +belief +in +the +absurd +is +tantamount +to +substituting +the +quantity +of +experiences +for +the +quality +if +i +convince +myself +that +this +life +has +no +other +aspect +than +that +of +the +absurd +if +i +feel +that +its +whole +equilibrium +depends +on +that +perpetual +opposition +between +my +conscious +revolt +and +the +darkness +in +which +it +struggles +if +i +admit +that +my +freedom +has +no +meaning +except +in +relation +to +its +limited +fate +then +i +must +say +that +what +counts +is +not +the +best +living +but +the +most +living +it +is +not +up +to +me +to +wonder +if +this +is +vulgar +or +revolting +elegant +or +deplorable +once +and +for +all +value +judgments +are +discarded +here +in +favor +of +factual +judgments +i +have +merely +to +draw +the +conclusions +from +what +i +can +see +and +to +risk +nothing +that +is +hypothetical +supposing +that +living +in +this +way +were +not +honorable +then +true +propriety +would +command +me +to +be +dishonorable +the +most +living +in +the +broadest +sense +that +rule +means +nothing +it +calls +for +definition +it +seems +to +begin +with +the +fact +that +the +notion +of +quantity +has +not +been +sufficiently +explored +for +it +can +account +for +a +large +share +of +human +experience +a +man +s +rule +of +conduct +and +his +scale +of +values +have +no +meaning +except +through +the +quantity +and +variety +of +experiences +he +has +been +in +a +position +to +accumulate +now +the +conditions +of +modern +life +impose +on +the +majority +of +men +the +same +quantity +of +experiences +and +consequently +the +same +profound +experience +to +be +sure +there +must +also +be +taken +into +consideration +the +individual +s +spontaneous +contribution +the +given +element +in +him +but +i +cannot +judge +of +that +and +let +me +repeat +that +my +rule +here +is +to +get +along +with +the +immediate +evidence +i +see +then +that +the +individual +character +of +a +common +code +of +ethics +lies +not +so +much +in +the +ideal +importance +of +its +basic +principles +as +in +the +norm +of +an +experience +that +it +is +possible +to +measure +to +stretch +a +point +somewhat +the +greeks +had +the +code +of +their +leisure +just +as +we +have +the +code +of +our +eight +hour +day +but +already +many +men +among +the +most +tragic +cause +us +to +foresee +that +a +longer +experience +changes +this +table +of +values +they +make +us +imagine +that +adventurer +of +the +everyday +who +through +mere +quantity +of +experiences +would +break +all +records +i +am +purposely +using +this +sports +expression +and +would +thus +win +his +own +code +of +ethics +yet +let +s +avoid +romanticism +and +just +ask +ourselves +what +such +an +attitude +may +mean +to +a +man +with +his +mind +made +up +to +take +up +his +bet +and +to +observe +strictly +what +he +takes +to +be +the +rules +of +the +game +breaking +all +the +records +is +first +and +foremost +being +faced +with +the +world +as +often +as +possible +how +can +that +be +done +without +contradictions +and +without +playing +on +words +for +on +the +one +hand +the +absurd +teaches +that +all +experiences +are +unimportant +and +on +the +other +it +urges +toward +the +greatest +quantity +of +experiences +how +then +can +one +fail +to +do +as +so +many +of +those +men +i +was +speaking +of +earlier +choose +the +form +of +life +that +brings +us +the +most +possible +of +that +human +matter +thereby +introducing +a +scale +of +values +that +on +the +other +hand +one +claims +to +reject +but +again +it +is +the +absurd +and +its +contradictory +life +that +teaches +us +for +the +mistake +is +thinking +that +that +quantity +of +experiences +depends +on +the +circumstances +of +our +life +when +it +depends +solely +on +us +here +we +have +to +be +over +simple +to +two +men +living +the +same +number +of +years +the +world +always +provides +the +same +sum +of +experiences +it +is +up +to +us +to +be +conscious +of +them +being +aware +of +one +s +life +one +s +revolt +one +s +freedom +and +to +the +maximum +is +living +and +to +the +maximum +where +lucidity +dominates +the +scale +of +values +becomes +useless +let +s +be +even +more +simple +let +us +say +that +the +sole +obstacle +the +sole +deficiency +to +be +made +good +is +constituted +by +premature +death +thus +it +is +that +no +depth +no +emotion +no +passion +and +no +sacrifice +could +render +equal +in +the +eyes +of +the +absurd +man +even +if +he +wished +it +so +a +conscious +life +of +forty +years +and +a +lucidity +spread +over +sixty +years +madness +and +death +are +his +irreparables +man +does +not +choose +the +absurd +and +the +extra +life +it +involves +therefore +do +not +defend +on +man +s +will +but +on +its +contrary +which +is +death +weighing +words +carefully +it +is +altogether +a +question +of +luck +one +just +has +to +be +able +to +consent +to +this +there +will +never +be +any +substitute +for +twenty +years +of +life +and +experience +by +what +is +an +odd +inconsistency +in +such +an +alert +race +the +greeks +claimed +that +those +who +died +young +were +beloved +of +the +gods +and +that +is +true +only +if +you +are +willing +to +believe +that +entering +the +ridiculous +world +of +the +gods +is +forever +losing +the +purest +of +joys +which +is +feeling +and +feeling +on +this +earth +the +present +and +the +succession +of +presents +before +a +constantly +conscious +soul +is +the +ideal +of +the +absurd +man +but +the +word +ideal +rings +false +in +this +connection +it +is +not +even +his +vocation +but +merely +the +third +consequence +of +his +reasoning +having +started +from +an +anguished +awareness +of +the +inhuman +the +meditation +on +the +absurd +returns +at +the +end +of +its +itinerary +to +the +very +heart +of +the +passionate +flames +of +human +revolt +thus +i +draw +from +the +absurd +three +consequences +which +are +my +revolt +my +freedom +and +my +passion +by +the +mere +activity +of +consciousness +i +transform +into +a +rule +of +life +what +was +an +invitation +to +death +and +i +refuse +suicide +i +know +to +be +sure +the +dull +resonance +that +vibrates +throughout +these +days +yet +i +have +but +a +word +to +say +that +it +is +necessary +when +nietzsche +writes +it +clearly +seems +that +the +chief +thing +in +heaven +and +on +earth +is +to +obey +at +length +and +in +a +single +direction +in +the +long +run +there +results +something +for +which +it +is +worth +the +trouble +of +living +on +this +earth +as +for +example +virtue +art +music +the +dance +reason +the +mind +something +that +transfigures +something +delicate +mad +or +divine +he +elucidates +the +rule +of +a +really +distinguished +code +of +ethics +but +he +also +points +the +way +of +the +absurd +man +obeying +the +flame +is +both +the +easiest +and +the +hardest +thing +to +do +however +it +is +good +for +man +to +judge +himself +occasionally +he +is +alone +in +being +able +to +do +so +prayer +says +alain +is +when +night +descends +over +thought +but +the +mind +must +meet +the +night +reply +the +mystics +and +the +existentials +yes +indeed +but +not +that +night +that +is +born +under +closed +eyelids +and +through +the +mere +will +of +man +dark +impenetrable +night +that +the +mind +calls +up +in +order +to +plunge +into +it +if +it +must +encounter +a +night +let +it +be +rather +that +of +despair +which +remains +lucid +polar +night +vigil +of +the +mind +whence +will +arise +perhaps +that +white +and +virginal +brightness +which +outlines +every +object +in +the +light +of +the +intelligence +at +that +degree +equivalence +encounters +passionate +understanding +then +it +is +no +longer +even +a +question +of +judging +the +existential +leap +it +resumes +its +place +amid +the +age +old +fresco +of +human +attitudes +for +the +spectator +if +he +is +conscious +that +leap +is +still +absurd +in +so +far +as +it +thinks +it +solves +the +paradox +it +reinstates +it +intact +on +this +score +it +is +stirring +on +this +score +everything +resumes +its +place +and +the +absurd +world +is +reborn +in +all +its +splendor +and +diversity +but +it +is +bad +to +stop +hard +to +be +satisfied +with +a +single +way +of +seeing +to +go +without +contradiction +perhaps +the +most +subtle +of +all +spiritual +forces +the +preceding +merely +defines +a +way +of +thinking +but +the +point +is +to +live +the +absurd +man +if +stavrogin +believes +he +does +not +think +he +believes +if +he +does +not +believe +he +does +not +think +he +does +not +believe +the +possessed +my +field +said +goethe +is +time +that +is +indeed +the +absurd +speech +what +in +fact +is +the +absurd +man +he +who +without +negating +it +does +nothing +for +the +eternal +not +that +nostalgia +is +foreign +to +him +but +he +prefers +his +courage +and +his +reasoning +the +first +teaches +him +to +live +without +appeal +and +to +get +along +with +what +he +has +the +second +informs +him +of +his +limits +assured +of +his +temporally +limited +freedom +of +his +revolt +devoid +of +future +and +of +his +mortal +consciousness +he +lives +out +his +adventure +within +the +span +of +his +lifetime +that +is +his +field +that +is +his +action +which +he +shields +from +any +judgment +but +his +own +a +greater +life +cannot +mean +for +him +another +life +that +would +be +unfair +i +am +not +even +speaking +here +of +that +paltry +eternity +that +is +called +posterity +mme +roland +relied +on +herself +that +rashness +was +taught +a +lesson +posterity +is +glad +to +quote +her +remark +but +forgets +to +judge +it +mme +roland +is +indifferent +to +posterity +there +can +be +no +question +of +holding +forth +on +ethics +i +have +seen +people +behave +badly +with +great +morality +and +i +note +every +day +that +integrity +has +no +need +of +rules +there +is +but +one +moral +code +that +the +absurd +man +can +accept +the +one +that +is +not +separated +from +god +the +one +that +is +dictated +but +it +so +happens +that +he +lives +outside +that +god +as +for +the +others +i +mean +also +immoralism +the +absurd +man +sees +nothing +in +them +but +justifications +and +he +has +nothing +to +justify +i +start +out +here +from +the +principle +of +his +innocence +that +innocence +is +to +be +feared +everything +is +permitted +exclaims +ivan +karamazov +that +too +smacks +of +the +absurd +but +on +condition +that +it +not +be +taken +in +the +vulgar +sense +i +don +t +know +whether +or +not +it +has +been +sufficiently +pointed +out +that +it +is +not +an +outburst +of +relief +or +of +joy +but +rather +a +bitter +acknowledgment +of +a +fact +the +certainty +of +a +god +giving +a +meaning +to +life +far +surpasses +in +attractiveness +the +ability +to +behave +badly +with +impunity +the +choice +would +not +be +hard +to +make +but +there +is +no +choice +and +that +is +where +the +bitterness +comes +in +the +absurd +does +not +liberate +it +binds +it +does +not +authorize +all +actions +everything +is +permitted +does +not +mean +that +nothing +is +forbidden +the +absurd +merely +confers +an +equivalence +on +the +consequences +of +those +actions +it +does +not +recommend +crime +for +this +would +be +childish +but +it +restores +to +remorse +its +futility +likewise +if +all +experiences +are +indifferent +that +of +duty +is +as +legitimate +as +any +other +one +can +be +virtuous +through +a +whim +all +systems +of +morality +are +based +on +the +idea +that +an +action +has +consequences +that +legitimize +or +cancel +it +a +mind +imbued +with +the +absurd +merely +judges +that +those +consequences +must +be +considered +calmly +it +is +ready +to +pay +up +in +other +words +there +may +be +responsible +persons +but +there +are +no +guilty +ones +in +its +opinion +at +very +most +such +a +mind +will +consent +to +use +past +experience +as +a +basis +for +its +future +actions +time +will +prolong +time +and +life +will +serve +life +in +this +field +that +is +both +limited +and +bulging +with +possibilities +everything +in +himself +except +his +lucidity +seems +unforeseeable +to +him +what +rule +then +could +emanate +from +that +unreasonable +order +the +only +truth +that +might +seem +instructive +to +him +is +not +formal +it +comes +to +life +and +unfolds +in +men +the +absurd +mind +cannot +so +much +expect +ethical +rules +at +the +end +of +its +reasoning +as +rather +illustrations +and +the +breath +of +human +lives +the +few +following +images +are +of +this +type +they +prolong +the +absurd +reasoning +by +giving +it +a +specific +attitude +and +their +warmth +do +i +need +to +develop +the +idea +that +an +example +is +not +necessarily +an +example +to +be +followed +even +less +so +if +possible +in +the +absurd +world +and +that +these +illustrations +are +not +therefore +models +besides +the +fact +that +a +certain +vocation +is +required +for +this +one +becomes +ridiculous +with +all +due +allowance +when +drawing +from +rousseau +the +conclusion +that +one +must +walk +on +all +fours +and +from +nietzsche +that +one +must +maltreat +one +s +mother +it +is +essential +to +be +absurd +writes +a +modern +author +it +is +not +essential +to +be +a +dupe +the +attitudes +of +which +i +shall +treat +can +assume +their +whole +meaning +only +through +consideration +of +their +contraries +a +sub +clerk +in +the +post +office +is +the +equal +of +a +conqueror +if +consciousness +is +common +to +them +all +experiences +are +indifferent +in +this +regard +there +are +some +that +do +either +a +service +or +a +disservice +to +man +they +do +him +a +service +if +he +is +conscious +otherwise +that +has +no +importance +a +man +s +failures +imply +judgment +not +of +circumstances +but +of +himself +i +am +choosing +solely +men +who +aim +only +to +expend +themselves +or +whom +i +see +to +be +expending +themselves +that +has +no +further +implications +for +the +moment +i +want +to +speak +only +of +a +world +in +which +thoughts +like +lives +are +devoid +of +future +everything +that +makes +man +work +and +get +excited +utilizes +hope +the +sole +thought +that +is +not +mendacious +is +therefore +a +sterile +thought +in +the +absurd +world +the +value +of +a +notion +or +of +a +life +is +measured +by +its +sterility +don +juanism +if +it +were +sufficient +to +love +things +would +be +too +easy +the +more +one +loves +the +stronger +the +absurd +grows +it +is +not +through +lack +of +love +that +don +juan +goes +from +woman +to +woman +it +is +ridiculous +to +represent +him +as +a +mystic +in +quest +of +total +love +but +it +is +indeed +because +he +loves +them +with +the +same +passion +and +each +time +with +his +whole +self +that +he +must +repeat +his +gift +and +his +profound +quest +whence +each +woman +hopes +to +give +him +what +no +one +has +ever +given +him +each +time +they +are +utterly +wrong +and +merely +manage +to +make +him +feel +the +need +of +that +repetition +at +last +exclaims +one +of +them +i +have +given +you +love +can +we +be +surprised +that +don +juan +laughs +at +this +at +last +no +he +says +but +once +more +why +should +it +be +essential +to +love +rarely +in +order +to +love +much +is +don +juan +melancholy +this +is +not +likely +i +shall +barely +have +recourse +to +the +legend +that +laugh +the +conquering +insolence +that +playfulness +and +love +of +the +theater +are +all +clear +and +joyous +every +healthy +creature +tends +to +multiply +himself +so +it +is +with +don +juan +but +furthermore +melancholy +people +have +two +reasons +for +being +so +they +don +t +know +or +they +hope +don +juan +knows +and +does +not +hope +he +reminds +one +of +those +artists +who +know +their +limits +never +go +beyond +them +and +in +that +precarious +interval +in +which +they +take +their +spiritual +stand +enjoy +all +the +wonderful +ease +of +masters +and +that +is +indeed +genius +the +intelligence +that +knows +its +frontiers +up +to +the +frontier +of +physical +death +don +juan +is +ignorant +of +melancholy +the +moment +he +knows +his +laugh +bursts +forth +and +makes +one +forgive +everything +he +was +melancholy +at +the +time +when +he +hoped +today +on +the +mouth +of +that +woman +he +recognizes +the +bitter +and +comforting +taste +of +the +only +knowledge +bitter +barely +that +necessary +imperfection +that +makes +happiness +perceptible +it +is +quite +false +to +try +to +see +in +don +juan +a +man +brought +up +on +ecclesiastes +for +nothing +is +vanity +to +him +except +the +hope +of +another +life +he +proves +this +because +he +gambles +that +other +life +against +heaven +itself +longing +for +desire +killed +by +satisfaction +that +commonplace +of +the +impotent +man +does +not +belong +to +him +that +is +all +right +for +faust +who +believed +in +god +enough +to +sell +himself +to +the +devil +for +don +juan +the +thing +is +simpler +molina +s +burlador +ever +replies +to +the +threats +of +hell +what +a +long +respite +you +give +me +what +comes +after +death +is +futile +and +what +a +long +succession +of +days +for +whoever +knows +how +to +be +alive +faust +craved +worldly +goods +the +poor +man +had +only +to +stretch +out +his +hand +it +already +amounted +to +selling +his +soul +when +he +was +unable +to +gladden +it +as +for +satiety +don +juan +insists +upon +it +on +the +contrary +if +he +leaves +a +woman +it +is +not +absolutely +because +he +has +ceased +to +desire +her +a +beautiful +woman +is +always +desirable +but +he +desires +another +and +no +this +is +not +the +same +thing +this +life +gratifies +his +every +wish +and +nothing +is +worse +than +losing +it +this +madman +is +a +great +wise +man +but +men +who +live +on +hope +do +not +thrive +in +this +universe +where +kindness +yields +to +generosity +affection +to +virile +silence +and +communion +to +solitary +courage +and +all +hasten +to +say +he +was +a +weakling +an +idealist +or +a +saint +one +has +to +disparage +the +greatness +that +insults +people +are +sufficiently +annoyed +or +that +smile +of +complicity +that +debases +what +it +admires +by +don +juan +s +speeches +and +by +that +same +remark +that +he +uses +on +all +women +but +to +anyone +who +seeks +quantity +in +his +joys +the +only +thing +that +matters +is +efficacy +what +is +the +use +of +complicating +the +passwords +that +have +stood +the +test +no +one +neither +the +woman +nor +the +man +listens +to +them +but +rather +to +the +voice +that +pronounces +them +they +are +the +rule +the +convention +and +the +courtesy +after +they +are +spoken +the +most +important +still +remains +to +be +done +don +juan +is +already +getting +ready +for +it +why +should +he +give +himself +a +problem +in +morality +he +is +not +like +milosz +s +manara +who +damns +himself +through +a +desire +to +be +a +saint +hell +for +him +is +a +thing +to +be +provoked +he +has +but +one +reply +to +divine +wrath +and +that +is +human +honor +i +have +honor +he +says +to +the +commander +and +i +am +keeping +my +promise +because +i +am +a +knight +but +it +would +be +just +as +great +an +error +to +make +an +immoralist +of +him +in +this +regard +he +is +like +everyone +else +he +has +the +moral +code +of +his +likes +and +dislikes +don +juan +can +be +properly +understood +only +by +constant +reference +to +what +he +commonly +symbolizes +the +ordinary +seducer +and +the +sexual +athlete +he +is +an +ordinary +seducer +except +for +the +difference +that +he +is +conscious +and +that +is +why +he +is +absurd +a +seducer +who +has +become +lucid +will +not +change +for +all +that +seducing +is +his +condition +in +life +only +in +novels +does +one +change +condition +or +become +better +yet +it +can +be +said +that +at +the +same +time +nothing +is +changed +and +everything +is +transformed +what +don +juan +realizes +in +action +is +an +ethic +of +quantity +whereas +the +saint +on +the +contrary +tends +toward +quality +not +to +believe +in +the +profound +meaning +of +things +belongs +to +the +absurd +man +as +for +those +cordial +or +wonder +struck +faces +he +eyes +them +stores +them +up +and +does +not +pause +over +them +time +keeps +up +with +him +the +absurd +man +is +he +who +is +not +apart +from +time +don +juan +does +not +think +of +collecting +women +he +exhausts +their +number +and +with +them +his +chances +of +life +collecting +amounts +to +being +capable +of +living +off +one +s +past +but +he +rejects +regret +that +other +form +of +hope +he +is +incapable +of +looking +at +portraits +is +he +selfish +for +all +that +in +his +way +probably +but +here +too +it +is +essential +to +understand +one +another +there +are +those +who +are +made +for +living +and +those +who +are +made +for +loving +at +least +don +juan +would +be +inclined +to +say +so +but +he +would +do +so +in +a +very +few +words +such +as +he +is +capable +of +choosing +for +the +love +we +are +speaking +of +here +is +clothed +in +illusions +of +the +eternal +as +all +the +specialists +in +passion +teach +us +there +is +no +eternal +love +but +what +is +thwarted +there +is +scarcely +any +passion +without +struggle +such +a +love +culminates +only +in +the +ultimate +contradiction +of +death +one +must +be +werther +or +nothing +there +too +there +are +several +ways +of +committing +suicide +one +of +which +is +the +total +gift +and +forget +fulness +of +self +don +juan +as +well +as +anyone +else +knows +that +this +can +be +stirring +but +he +is +one +of +the +very +few +who +know +that +this +is +not +the +important +thing +he +knows +just +as +well +that +those +who +turn +away +from +all +personal +life +through +a +great +love +enrich +themselves +perhaps +but +certainly +impoverish +those +their +love +has +chosen +a +mother +or +a +passionate +wife +necessarily +has +a +closed +heart +for +it +is +turned +away +from +the +world +a +single +emotion +a +single +creature +a +single +face +but +all +is +devoured +quite +a +different +love +disturbs +don +juan +and +this +one +is +liberating +it +brings +with +it +all +the +faces +in +the +world +and +its +tremor +comes +from +the +fact +that +it +knows +itself +to +be +mortal +don +juan +has +chosen +to +be +nothing +for +him +it +is +a +matter +of +seeing +clearly +we +call +love +what +binds +us +to +certain +creatures +only +by +reference +to +a +collective +way +of +seeing +for +which +books +and +legends +are +responsible +but +of +love +i +know +only +that +mixture +of +desire +affection +and +intelligence +that +binds +me +to +this +or +that +creature +that +compound +is +not +the +same +for +another +person +i +do +not +have +the +right +to +cover +all +these +experiences +with +the +same +name +this +exempts +one +from +conducting +them +with +the +same +gestures +the +absurd +man +multiplies +here +again +what +he +cannot +unify +thus +he +discovers +a +new +way +of +being +which +liberates +him +at +least +as +much +as +it +liberates +those +who +approach +him +there +is +no +noble +love +but +that +which +recognizes +itself +to +be +both +short +lived +and +exceptional +all +those +deaths +and +all +those +rebirths +gathered +together +as +in +a +sheaf +make +up +for +don +juan +the +flowering +of +his +life +it +is +his +way +of +giving +and +of +vivifying +i +let +it +be +decided +whether +or +not +one +can +speak +of +selfishness +i +think +at +this +point +of +all +those +who +absolutely +insist +that +don +juan +be +punished +not +only +in +another +life +but +even +in +this +one +i +think +of +all +those +tales +legends +and +laughs +about +the +aged +don +juan +but +don +juan +is +already +ready +to +a +conscious +man +old +age +and +what +it +portends +are +not +a +surprise +indeed +he +is +conscious +only +in +so +far +as +he +does +not +conceal +its +horror +from +himself +there +was +in +athens +a +temple +dedicated +to +old +age +children +were +taken +there +as +for +don +juan +the +more +people +laugh +at +him +the +more +his +figure +stands +out +thereby +he +rejects +the +one +the +romantics +lent +him +no +one +wants +to +laugh +at +that +tormented +pitiful +don +juan +he +is +pitied +heaven +itself +will +redeem +him +but +that +s +not +it +in +the +universe +of +which +don +juan +has +a +glimpse +ridicule +too +is +included +he +would +consider +it +normal +to +be +chastised +that +is +the +rule +of +the +game +and +indeed +it +is +typical +of +his +nobility +to +have +accepted +all +the +rules +of +the +game +yet +he +knows +he +is +right +and +that +there +can +be +no +question +of +punishment +a +fate +is +not +a +punishment +that +is +his +crime +and +how +easy +it +is +to +understand +why +the +men +of +god +call +down +punishment +on +his +head +he +achieves +a +knowledge +without +illusions +which +negates +everything +they +profess +loving +and +possessing +conquering +and +consuming +that +is +his +way +of +knowing +there +is +significance +in +that +favorite +scriptural +word +that +calls +the +carnal +act +knowing +he +is +their +worst +enemy +to +the +extent +that +he +is +ignorant +of +them +a +chronicler +relates +that +the +true +burlador +died +assassinated +by +fransciscans +who +wanted +to +put +an +end +to +the +excesses +and +blasphemies +of +don +juan +whose +birth +assured +him +impunity +then +they +proclaimed +that +heaven +had +struck +him +down +no +one +has +proved +that +strange +end +nor +has +anyone +proved +the +contrary +but +without +wondering +if +it +is +probable +i +can +say +that +it +is +logical +i +want +merely +to +single +out +at +this +point +the +word +birth +and +to +play +on +words +it +was +the +fact +of +living +that +assured +his +innocence +it +was +from +death +alone +that +he +derived +a +guilt +now +become +legendary +what +else +does +that +stone +commander +signify +that +cold +statue +set +in +motion +to +punish +the +blood +and +courage +that +dared +to +think +all +the +powers +of +eternal +reason +of +order +of +universal +morality +all +the +foreign +grandeur +of +a +god +open +to +wrath +are +summed +up +in +him +that +gigantic +and +soulless +stone +merely +symbolizes +the +forces +that +don +juan +negated +forever +but +the +commander +s +mission +stops +there +the +thunder +and +lightning +can +return +to +the +imitation +heaven +whence +they +were +called +forth +the +real +tragedy +takes +place +quite +apart +from +them +no +it +was +not +under +a +stone +hand +that +don +juan +met +his +death +i +am +inclined +to +believe +in +the +legendary +bravado +in +that +mad +laughter +of +the +healthy +man +provoking +a +non +existent +god +but +above +all +i +believe +that +on +that +evening +when +don +juan +was +waiting +at +anna +s +the +commander +didn +t +come +and +that +after +midnight +the +blasphemer +must +have +felt +the +dreadful +bitterness +of +those +who +have +been +right +i +accept +even +more +readily +the +account +of +his +life +that +has +him +eventually +burying +himself +in +a +monastery +not +that +the +edifying +aspect +of +the +story +can +he +considered +probable +what +refuge +can +he +go +ask +of +god +but +this +symbolizes +rather +the +logical +outcome +of +a +life +completely +imbued +with +the +absurd +the +grim +ending +of +an +existence +turned +toward +short +lived +joys +at +this +point +sensual +pleasure +winds +up +in +asceticism +it +is +essential +to +realize +that +they +may +be +as +it +were +the +two +aspects +of +the +same +destitution +what +more +ghastly +image +can +be +called +up +than +that +of +a +man +betrayed +by +his +body +who +simply +because +he +did +not +die +in +time +lives +out +the +comedy +while +awaiting +the +end +face +to +face +with +that +god +he +does +not +adore +serving +him +as +he +served +life +kneeling +before +a +void +and +arms +outstretched +toward +a +heaven +without +eloquence +that +he +knows +to +he +also +without +depth +i +see +don +juan +in +a +cell +of +one +of +those +spanish +monasteries +lost +on +a +hilltop +and +if +he +contemplates +anything +at +all +it +is +not +the +ghosts +of +past +loves +but +perhaps +through +a +narrow +slit +in +the +sun +baked +wall +some +silent +spanish +plain +a +noble +soulless +land +in +which +he +recognizes +himself +yes +it +is +on +this +melancholy +and +radiant +image +that +the +curtain +must +be +rung +down +the +ultimate +end +awaited +but +never +desired +the +ultimate +end +is +negligible +drama +the +play +s +the +thing +says +hamlet +wherein +i +ll +catch +the +conscience +of +the +king +catch +is +indeed +the +word +for +conscience +moves +swiftly +or +withdraws +within +itself +it +has +to +be +caught +on +the +wing +at +that +barely +perceptible +moment +when +it +glances +fleetingly +at +itself +the +everyday +man +does +not +enjoy +tarrying +everything +on +the +contrary +hurries +him +onward +but +at +the +same +time +nothing +interests +him +more +than +himself +especially +his +potentialities +whence +his +interest +in +the +theater +in +the +show +where +so +many +fates +are +offered +him +where +he +can +accept +the +poetry +without +feeling +the +sorrow +there +at +least +can +be +recognized +the +thoughtless +man +and +he +continues +to +hasten +toward +some +hope +or +other +the +absurd +man +begins +where +that +one +leaves +off +where +ceasing +to +admire +the +play +the +mind +wants +to +enter +in +entering +into +all +these +lives +experiencing +them +in +their +diversity +amounts +to +acting +them +out +i +am +not +saying +that +actors +in +general +obey +that +impulse +that +they +are +absurd +men +but +that +their +fate +is +an +absurd +fate +which +might +charm +and +attract +a +lucid +heart +it +is +necessary +to +establish +this +in +order +to +grasp +without +misunderstanding +what +will +follow +the +actor +s +realm +is +that +of +the +fleeting +of +all +kinds +of +fame +it +is +known +his +is +the +most +ephemeral +at +least +this +is +said +in +conversation +but +all +kinds +of +fame +are +ephemeral +from +the +point +of +view +of +sirius +goethe +s +works +in +ten +thousand +years +will +be +dust +and +his +name +forgotten +perhaps +a +handful +of +archaeologists +will +look +for +evidence +as +to +our +era +that +idea +has +always +contained +a +lesson +seriously +meditated +upon +it +reduces +our +perturbations +to +the +profound +nobility +that +is +found +in +indifference +above +all +it +directs +our +concerns +toward +what +is +most +certain +that +is +toward +the +immediate +of +all +kinds +of +fame +the +least +deceptive +is +the +one +that +is +lived +hence +the +actor +has +chosen +multiple +fame +the +fame +that +is +hallowed +and +tested +from +the +fact +that +everything +is +to +die +someday +he +draws +the +best +conclusion +an +actor +succeeds +or +does +not +succeed +a +writer +has +some +hope +even +if +he +is +not +appreciated +he +assumes +that +his +works +will +bear +witness +to +what +he +was +at +best +the +actor +will +leave +us +a +photograph +and +nothing +of +what +he +was +himself +his +gestures +and +his +silences +his +gasping +or +his +panting +with +love +will +come +down +to +us +for +him +not +to +be +known +is +not +to +act +and +not +acting +is +dying +a +hundred +times +with +all +the +creatures +he +would +have +brought +to +life +or +resuscitated +why +should +we +be +surprised +to +find +a +fleeting +fame +built +upon +the +most +ephemeral +of +creations +the +actor +has +three +hours +to +be +iago +or +alceste +phedre +or +gloucester +in +that +short +space +of +time +he +makes +them +come +to +life +and +die +on +fifty +square +yards +of +boards +never +has +the +absurd +been +so +well +illustrated +or +at +such +length +what +more +revelatory +epitome +can +be +imagined +than +those +marvelous +lives +those +exceptional +and +total +desti +nies +unfolding +for +a +few +hours +within +a +stage +set +off +the +stage +sigismundo +ceases +to +count +two +hours +later +he +is +seen +dining +out +then +it +is +perhaps +that +life +is +a +dream +but +after +sigismundo +comes +another +the +hero +suffering +from +uncertainty +takes +the +place +of +the +man +roaring +for +his +revenge +by +thus +sweeping +over +centuries +and +minds +by +miming +man +as +he +can +be +and +as +he +is +the +actor +has +much +in +common +with +that +other +absurd +individual +the +traveler +like +him +he +drains +something +and +is +constantly +on +the +move +he +is +a +traveler +in +time +and +for +the +best +the +hunted +traveler +pursued +by +souls +if +ever +the +ethics +of +quantity +could +find +sustenance +it +is +indeed +on +that +strange +stage +to +what +degree +the +actor +benefits +from +the +characters +is +hard +to +say +but +that +is +not +the +important +thing +it +is +merely +a +matter +of +knowing +how +far +he +identifies +himself +with +those +irreplaceable +lives +it +often +happens +that +he +carries +them +with +him +that +they +somewhat +overflow +the +time +and +place +in +which +they +were +born +they +accompany +the +actor +who +cannot +very +readily +separate +himself +from +what +he +has +been +occasionally +when +reaching +for +his +glass +he +resumes +hamlet +s +gesture +of +raising +his +cup +no +the +distance +separating +him +from +the +creatures +into +whom +he +infuses +life +is +not +so +great +he +abundantly +illustrates +every +month +or +every +day +that +so +suggestive +truth +that +there +is +no +frontier +between +what +a +man +wants +to +be +and +what +he +is +always +concerned +with +better +representing +he +demonstrates +to +what +a +degree +appearing +creates +being +for +that +is +his +art +to +simulate +absolutely +to +project +himself +as +deeply +as +possible +into +lives +that +are +not +his +own +at +the +end +of +his +effort +his +vocation +becomes +clear +to +apply +himself +wholeheartedly +to +being +nothing +or +to +being +several +the +narrower +the +limits +allotted +him +for +creating +his +character +the +more +necessary +his +talent +he +will +die +in +three +hours +under +the +mask +he +has +assumed +today +within +three +hours +he +must +experience +and +express +a +whole +exceptional +life +that +is +called +losing +oneself +to +find +oneself +in +those +three +hours +he +travels +the +whole +course +of +the +dead +end +path +that +the +man +in +the +audience +takes +a +lifetime +to +cover +a +mime +of +the +ephemeral +the +actor +trains +and +perfects +himself +only +in +appearances +the +theatrical +convention +is +that +the +heart +expresses +itself +and +communicates +itself +only +through +gestures +and +in +the +body +or +through +the +voice +which +is +as +much +of +the +soul +as +of +the +body +the +rule +of +that +art +insists +that +everything +be +magnified +and +translated +into +flesh +if +it +were +essential +on +the +stage +to +love +as +people +really +love +to +employ +that +irreplaceable +voice +of +the +heart +to +look +as +people +contemplate +in +life +our +speech +would +be +in +code +but +here +silences +must +make +themselves +heard +love +speaks +up +louder +and +immobility +itself +becomes +spectacular +the +body +is +king +not +everyone +can +be +theatrical +and +this +unjustly +maligned +word +covers +a +whole +aesthetic +and +a +whole +ethic +half +a +man +s +life +is +spent +in +implying +in +turning +away +and +in +keeping +silent +here +the +actor +is +the +intruder +he +breaks +the +spell +chaining +that +soul +and +at +last +the +passions +can +rush +onto +their +stage +they +speak +in +every +gesture +they +live +only +through +shouts +and +cries +thus +the +actor +creates +his +characters +for +display +he +outlines +or +sculptures +them +and +slips +into +their +imaginary +form +transfusing +his +blood +into +their +phantoms +i +am +of +course +speaking +of +great +drama +the +kind +that +gives +the +actor +an +opportunity +to +fulfill +his +wholly +physical +fate +take +shakespeare +for +instance +in +that +impulsive +drama +the +physical +passions +lead +the +dance +they +explain +everything +without +them +all +would +collapse +never +would +king +lear +keep +the +appointment +set +by +madness +without +the +brutal +gesture +that +exiles +cordelia +and +condemns +edgar +it +is +just +that +the +unfolding +of +that +tragedy +should +thenceforth +be +dominated +by +madness +souls +are +given +over +to +the +demons +and +their +saraband +no +fewer +than +four +madmen +one +by +trade +another +by +intention +and +the +last +two +through +suffering +four +disordered +bodies +four +unutterable +aspects +of +a +single +condition +the +very +scale +of +the +human +body +is +inadequate +the +mask +and +the +buskin +the +make +up +that +reduces +and +accentuates +the +face +in +its +essential +elements +the +costume +that +exaggerates +and +simplifies +that +universe +sacrifices +everything +to +appearance +and +is +made +solely +for +the +eye +through +an +absurd +miracle +it +is +the +body +that +also +brings +knowledge +i +should +never +really +understand +iago +unless +i +played +his +part +it +is +not +enough +to +hear +him +for +i +grasp +him +only +at +the +moment +when +i +see +him +of +the +absurd +character +the +actor +consequently +has +the +monotony +that +single +oppressive +silhouette +simultaneously +strange +and +familiar +that +he +carries +about +from +hero +to +hero +there +too +the +great +dramatic +work +contributes +to +this +unity +of +tone +this +is +where +the +actor +contradicts +himself +the +same +and +yet +so +various +so +many +souls +summed +up +in +a +single +body +yet +it +is +the +absurd +contradiction +itself +that +individual +who +wants +to +achieve +everything +and +live +everything +that +useless +attempt +that +ineffectual +persistence +what +always +contradicts +itself +nevertheless +joins +in +him +he +is +at +that +point +where +body +and +mind +converge +where +the +mind +tired +of +its +defeats +turns +toward +its +most +faithful +ally +and +blest +are +those +says +hamlet +whose +blood +and +judgment +are +so +well +commingled +that +they +are +not +a +pipe +for +fortune +s +finger +to +sound +what +stop +she +please +how +could +the +church +have +failed +to +condemn +such +a +practice +on +the +part +of +the +actor +she +repudiated +in +that +art +the +heretical +multiplication +of +souls +the +emotional +debauch +the +scandalous +presumption +of +a +mind +that +objects +to +living +but +one +life +and +hurls +itself +into +all +forms +of +excess +she +proscribed +in +them +that +preference +for +the +present +and +that +triumph +of +proteus +which +are +the +negation +of +everything +she +teaches +eternity +is +not +a +game +a +mind +foolish +enough +to +prefer +a +comedy +to +eternity +has +lost +its +salvation +between +everywhere +and +forever +there +is +no +compromise +whence +that +much +maligned +profession +can +give +rise +to +a +tremendous +spiritual +conflict +what +matters +said +nietzsche +is +not +eternal +life +but +eternal +vivacity +all +drama +is +in +fact +in +this +choice +celimene +against +elianthe +the +whole +subject +in +the +absurd +consequence +of +a +nature +carried +to +its +extreme +and +the +verse +itself +the +bad +verse +barely +accented +like +the +monotony +of +the +character +s +nature +adrienne +lecouvreur +on +her +deathbed +was +willing +to +confess +and +receive +communion +but +refused +to +abjure +her +profession +she +thereby +lost +the +benefit +of +the +confession +did +this +not +amount +in +effect +to +choosing +her +absorbing +passion +in +preference +to +god +and +that +woman +in +the +death +throes +refusing +in +tears +to +repudiate +what +she +called +her +art +gave +evidence +of +a +greatness +that +she +never +achieved +behind +the +footlights +this +was +her +finest +role +and +the +hardest +one +to +play +choosing +between +heaven +and +a +ridiculous +fidelity +preferring +oneself +to +eternity +or +losing +oneself +in +god +is +the +age +old +tragedy +in +which +each +must +play +his +part +the +actors +of +the +era +knew +they +were +excommunicated +entering +the +profession +amounted +to +choosing +hell +and +the +church +discerned +in +them +her +worst +enemies +a +few +men +of +letters +protest +what +refuse +the +last +rites +to +moliere +but +that +was +just +and +especially +in +one +who +died +onstage +and +finished +under +the +actor +s +make +up +a +life +entirely +devoted +to +dispersion +in +his +case +genius +is +invoked +which +excuses +everything +but +genius +excuses +nothing +just +because +it +refuses +to +do +so +the +actor +knew +at +that +time +what +punishment +was +in +store +for +him +but +what +significance +could +such +vague +threats +have +compared +to +the +final +punishment +that +life +itself +was +reserving +for +him +this +was +the +one +that +he +felt +in +advance +and +accepted +wholly +to +the +actor +as +to +the +absurd +man +a +premature +death +is +irreparable +nothing +can +make +up +for +the +sum +of +faces +and +centuries +he +would +otherwise +have +traversed +but +in +any +case +one +has +to +die +for +the +actor +is +doubtless +everywhere +but +time +sweeps +him +along +too +and +makes +its +impression +with +him +it +requires +but +a +little +imagination +to +feel +what +an +actor +s +fate +means +it +is +in +time +that +he +makes +up +and +enumerates +his +characters +it +is +in +time +likewise +that +he +learns +to +dominate +them +the +greater +number +of +different +lives +he +has +lived +the +more +aloof +he +can +be +from +them +the +time +comes +when +he +must +die +to +the +stage +and +for +the +world +what +he +has +lived +faces +him +he +sees +clearly +he +feels +the +harrowing +and +irreplaceable +quality +of +that +adventure +he +knows +and +can +now +die +there +are +homes +for +aged +actors +conquest +no +says +the +conqueror +don +t +assume +that +because +i +love +action +i +have +had +to +forget +how +to +think +on +the +contrary +i +can +throughly +define +what +i +believe +for +i +believe +it +firmly +and +i +see +it +surely +and +clearly +beware +of +those +who +say +i +know +this +too +well +to +be +able +to +express +it +for +if +they +cannot +do +so +this +is +because +they +don +t +know +it +or +because +out +of +laziness +they +stopped +at +the +outer +crust +i +have +not +many +opinions +at +the +end +of +a +life +man +notices +that +he +has +spent +years +becoming +sure +of +a +single +truth +but +a +single +truth +if +it +is +obvious +is +enough +to +guide +an +existence +as +for +me +i +decidedly +have +something +to +say +about +the +individual +one +must +speak +of +him +bluntly +and +if +need +be +with +the +appropriate +contempt +a +man +is +more +a +man +through +the +things +he +keeps +to +himself +than +through +those +he +says +there +are +many +that +i +shall +keep +to +myself +but +i +firmly +believe +that +all +those +who +have +judged +the +individual +have +done +so +with +much +less +experience +than +we +on +which +to +base +their +judgment +the +intelligence +the +stirring +intelligence +perhaps +foresaw +what +it +was +essential +to +note +but +the +era +its +ruins +and +its +blood +overwhelm +us +with +facts +it +was +possible +for +ancient +nations +and +even +for +more +recent +ones +down +to +our +machine +age +to +weigh +one +against +the +other +the +virtues +of +society +and +of +the +individual +to +try +to +find +out +which +was +to +serve +the +other +to +begin +with +that +was +possible +by +virtue +of +that +stubborn +aberration +in +man +s +heart +according +to +which +human +beings +were +created +to +serve +or +be +served +in +the +second +place +it +was +possible +because +neither +society +nor +the +individual +had +yet +revealed +all +their +ability +i +have +seen +bright +minds +express +astonishment +at +the +masterpieces +of +dutch +painters +born +at +the +height +of +the +bloody +wars +in +flanders +be +amazed +by +the +prayers +of +silesian +mystics +brought +up +during +the +frightful +thirty +years +war +eternal +values +survive +secular +turmoils +before +their +astonished +eyes +but +there +has +been +progress +since +the +painters +of +today +are +deprived +of +such +serenity +even +if +they +have +basically +the +heart +the +creator +needs +i +mean +the +closed +heart +it +is +of +no +use +for +everyone +including +the +saint +himself +is +mobilized +this +is +perhaps +what +i +have +felt +most +deeply +at +every +form +that +miscarries +in +the +trenches +at +every +outline +metaphor +or +prayer +crushed +under +steel +the +eternal +loses +a +round +conscious +that +i +cannot +stand +aloof +from +my +time +i +have +decided +to +be +an +integral +part +of +it +this +is +why +i +esteem +the +individual +only +because +he +strikes +me +as +ridiculous +and +humiliated +knowing +that +there +are +no +victorious +causes +i +have +a +liking +for +lost +causes +they +require +an +uncontaminated +soul +equal +to +its +defeat +as +to +its +temporary +victories +for +anyone +who +feels +bound +up +with +this +world +s +fate +the +clash +of +civilizations +has +something +agonizing +about +it +i +have +made +that +anguish +mine +at +the +same +time +that +i +wanted +to +join +in +between +history +and +the +eternal +i +have +chosen +history +because +i +like +certainties +of +it +at +least +i +am +certain +and +how +can +i +deny +this +force +crushing +me +there +always +comes +a +time +when +one +must +choose +between +contemplation +and +action +this +is +called +becoming +a +man +such +wrenches +are +dreadful +but +for +a +proud +heart +there +can +be +no +compromise +there +is +god +or +time +that +cross +or +this +sword +this +world +has +a +higher +meaning +that +transcends +its +worries +or +nothing +is +true +but +those +worries +one +must +live +with +time +and +die +with +it +or +else +elude +it +for +a +greater +life +i +know +that +one +can +compromise +and +live +in +the +world +while +believing +in +the +eternal +that +is +called +accepting +but +i +loathe +this +term +and +want +all +or +nothing +if +i +choose +action +don +t +think +that +contemplation +is +like +an +unknown +country +to +me +but +it +cannot +give +me +everything +and +deprived +of +the +eternal +i +want +to +ally +myself +with +time +i +do +not +want +to +put +down +to +my +account +either +nostalgia +or +bitterness +and +i +merely +want +to +see +clearly +i +tell +you +tomorrow +you +will +be +mobilized +for +you +and +for +me +that +is +a +liberation +the +individual +can +do +nothing +and +yet +he +can +do +everything +in +that +wonderful +unattached +state +you +understand +why +i +exalt +and +crush +him +at +one +and +the +same +time +it +is +the +world +that +pulverizes +him +and +i +who +liberate +him +i +provide +him +with +all +his +rights +conquerors +know +that +action +is +in +itself +useless +there +is +but +one +useful +action +that +of +remaking +man +and +the +earth +i +shall +never +remake +men +but +one +must +do +as +if +for +the +path +of +struggle +leads +me +to +the +flesh +even +humiliated +the +flesh +is +my +only +certainty +i +can +live +only +on +it +the +creature +is +my +native +land +this +is +why +i +have +chosen +this +absurd +and +ineffectual +effort +this +is +why +i +am +on +the +side +of +the +struggle +the +epoch +lends +itself +to +this +as +i +have +said +hitherto +the +greatness +of +a +conqueror +was +geographical +it +was +measured +by +the +extent +of +the +conquered +territories +there +is +a +reason +why +the +word +has +changed +in +meaning +and +has +ceased +to +signify +the +victorious +general +the +greatness +has +changed +camp +it +lies +in +protest +and +the +blind +alley +sacrifice +there +too +it +is +not +through +a +preference +for +defeat +victory +would +be +desirable +but +there +is +but +one +victory +and +it +is +eternal +that +is +the +one +i +shall +never +have +that +is +where +i +stumble +and +cling +a +revolution +is +always +accomplished +against +the +gods +beginning +with +the +revolution +of +prometheus +the +first +of +modern +conquerors +it +is +man +s +demands +made +against +his +fate +the +demands +of +the +poor +are +but +a +pretext +yet +i +can +seize +that +spirit +only +in +its +historical +act +and +that +is +where +i +make +contact +with +it +don +t +assume +however +that +i +take +pleasure +in +it +opposite +the +essential +contradiction +i +maintain +my +human +contradiction +i +establish +my +lucidity +in +the +midst +of +what +negates +it +i +exalt +man +be +fore +what +crushes +him +and +my +freedom +my +revolt +and +my +passion +come +together +then +in +that +tension +that +lucidity +and +that +vast +repetition +yes +man +is +his +own +end +and +he +is +his +only +end +if +he +aims +to +be +something +it +is +in +this +life +now +i +know +it +only +too +well +conquerors +sometimes +talk +of +vanquishing +and +overcoming +but +it +is +always +overcoming +oneself +that +they +mean +you +are +well +aware +of +what +that +means +every +man +has +felt +himself +to +be +the +equal +of +a +god +at +certain +moments +at +least +this +is +the +way +it +is +expressed +but +this +comes +from +the +fact +that +in +a +flash +he +felt +the +amazing +grandeur +of +the +human +mind +the +conquerors +are +merely +those +among +men +who +are +conscious +enough +of +their +strength +to +be +sure +of +living +constantly +on +those +heights +and +fully +aware +of +that +grandeur +it +is +a +question +of +arithmetic +of +more +or +less +the +conquerors +are +capable +of +the +more +but +they +are +capable +of +no +more +than +man +himself +when +he +wants +this +is +why +they +never +leave +the +human +crucible +plunging +into +the +seething +soul +of +revolutions +there +they +find +the +creature +mutilated +but +they +also +encounter +there +the +only +values +they +like +and +admire +man +and +his +silence +this +is +both +their +destitution +and +their +wealth +there +is +but +one +luxury +for +them +that +of +human +relations +how +can +one +fail +to +realize +that +in +this +vulnerable +universe +everything +that +is +human +and +solely +human +assumes +a +more +vivid +meaning +taut +faces +threatened +fraternity +such +strong +and +chaste +friendship +among +men +these +are +the +true +riches +because +they +are +transitory +in +their +midst +the +mind +is +most +aware +of +its +powers +and +limitations +that +is +to +say +its +efficacity +some +have +spoken +of +genius +but +genius +is +easy +to +say +i +prefer +the +intelligence +it +must +be +said +that +it +can +be +magnificent +then +it +lights +up +this +desert +and +dominates +it +it +knows +its +obligations +and +illustrates +them +it +will +die +at +the +same +time +as +this +body +but +knowing +this +constitutes +its +freedom +we +are +not +ignorant +of +the +fact +that +all +churches +are +against +us +a +heart +so +keyed +up +eludes +the +eternal +and +all +churches +divine +or +political +lay +claim +to +the +eternal +happiness +and +courage +retribution +or +justice +are +secondary +ends +for +them +it +is +a +doctrine +they +bring +and +one +must +subscribe +to +it +but +i +have +no +concern +with +ideas +or +with +the +eternal +the +truths +that +come +within +my +scope +can +be +touched +with +the +hand +i +cannot +separate +from +them +this +is +why +you +cannot +base +anything +on +me +nothing +of +the +conqueror +lasts +not +even +his +doctrines +at +the +end +of +all +that +despite +everything +is +death +we +know +also +that +it +ends +everything +this +is +why +those +cemeteries +all +over +europe +which +obsess +some +among +us +are +hideous +people +beautify +only +what +they +love +and +death +repels +us +and +tires +our +patience +it +too +is +to +be +conquered +the +last +carrara +a +prisoner +in +padua +emptied +by +the +plague +and +besieged +by +the +venetians +ran +screaming +through +the +halls +of +his +deserted +palace +he +was +calling +on +the +devil +and +asking +him +for +death +this +was +a +way +of +overcoming +it +and +it +is +likewise +a +mark +of +courage +characteristic +of +the +occident +to +have +made +so +ugly +the +places +where +death +thinks +itself +honored +in +the +rebel +s +universe +death +exalts +injustice +it +is +the +supreme +abuse +others +without +compromising +either +have +chosen +the +eternal +and +denounced +the +illusion +of +this +world +their +cemeteries +smile +amid +numerous +flowers +and +birds +that +suits +the +conqueror +and +gives +him +a +clear +image +of +what +he +has +rejected +he +has +chosen +on +the +contrary +the +black +iron +fence +or +the +potter +s +field +the +best +among +the +men +of +god +occasionally +are +seized +with +fright +mingled +with +consideration +and +pity +for +minds +that +can +live +with +such +an +image +of +their +death +yet +those +minds +derive +their +strength +and +justification +from +this +our +fate +stands +before +us +and +we +provoke +him +less +out +of +pride +than +out +of +awareness +of +our +ineffectual +condition +we +too +sometimes +feel +pity +for +ourselves +it +is +the +only +compassion +that +seems +acceptable +to +us +a +feeling +that +perhaps +you +hardly +understand +and +that +seems +to +you +scarcely +virile +yet +the +most +daring +among +us +are +the +ones +who +feel +it +but +we +call +the +lucid +ones +virile +and +we +do +not +want +a +strength +that +is +apart +from +lucidity +let +me +repeat +that +these +images +do +not +propose +moral +codes +and +involve +no +judgments +they +are +sketches +they +merely +represent +a +style +of +life +the +lover +the +actor +or +the +adventurer +plays +the +absurd +but +equally +well +if +he +wishes +the +chaste +man +the +civil +servant +or +the +president +of +the +republic +it +is +enough +to +know +and +to +mask +nothing +in +italian +museums +are +sometimes +found +little +painted +screens +that +the +priest +used +to +hold +in +front +of +the +face +of +condemned +men +to +hide +the +scaffold +from +them +the +leap +in +all +its +forms +rushing +into +the +divine +or +the +eternal +surrendering +to +the +illusions +of +the +everyday +or +of +the +idea +all +these +screens +hide +the +absurd +but +there +are +civil +servants +without +screens +and +they +are +the +ones +of +whom +i +mean +to +speak +i +have +chosen +the +most +extreme +ones +at +this +level +the +absurd +gives +them +a +royal +power +it +is +true +that +those +princes +are +without +a +kingdom +but +they +have +this +advantage +over +others +they +know +that +all +royalties +are +illusory +they +know +that +is +their +whole +nobility +and +it +is +useless +to +speak +in +relation +to +them +of +hidden +misfortune +or +the +ashes +of +disillusion +being +deprived +of +hope +is +not +despairing +the +flames +of +earth +are +surely +worth +celestial +perfumes +neither +i +nor +anyone +can +judge +them +here +they +are +not +striving +to +be +better +they +are +attempting +to +be +consistent +if +the +term +wise +man +can +be +applied +to +the +man +who +lives +on +what +he +has +without +speculating +on +what +he +has +not +then +they +are +wise +men +one +of +them +a +conqueror +but +in +the +realm +of +mind +a +don +juan +but +of +knowledge +an +actor +but +of +the +intelligence +knows +this +better +than +anyone +you +nowise +deserve +a +privilege +on +earth +and +in +heaven +for +having +brought +to +perfection +your +dear +little +meek +sheep +you +nonetheless +continue +to +be +at +best +a +ridiculous +dear +little +sheep +with +horns +and +nothing +more +even +supposing +that +you +do +not +burst +with +vanity +and +do +not +create +a +scandal +by +posing +as +a +judge +in +any +case +it +was +essential +to +restore +to +the +absurd +reasoning +more +cordial +examples +the +imagination +can +add +many +others +inseparable +from +time +and +exile +who +likewise +know +how +to +live +in +harmony +with +a +universe +without +future +and +without +weakness +this +absurd +godless +world +is +then +peopled +with +men +who +think +clearly +and +have +ceased +to +hope +and +i +have +not +yet +spoken +of +the +most +absurd +character +who +is +the +creator +absurd +creation +philosophy +and +fiction +all +those +lives +maintained +in +the +rarefied +air +of +the +absurd +could +not +persevere +without +some +profound +and +constant +thought +to +infuse +its +strength +into +them +right +here +it +can +be +only +a +strange +feeling +of +fidelity +conscious +men +have +been +seen +to +fulfill +their +task +amid +the +most +stupid +of +wars +without +considering +themselves +in +contradiction +this +is +because +it +was +essential +to +elude +nothing +there +is +thus +a +metaphysical +honor +in +enduring +the +world +s +absurdity +conquest +or +play +acting +multiple +loves +absurd +revolt +are +tributes +that +man +pays +to +his +dignity +in +a +campaign +in +which +he +is +defeated +in +advance +it +is +merely +a +matter +of +being +faithful +to +the +rule +of +the +battle +that +thought +may +suffice +to +sustain +a +mind +it +has +supported +and +still +supports +whole +civilizations +war +cannot +be +negated +one +must +live +it +or +die +of +it +so +it +is +with +the +absurd +it +is +a +question +of +breathing +with +it +of +recognizing +its +lessons +and +recovering +their +flesh +in +this +regard +the +absurd +joy +par +excellence +is +creation +art +and +nothing +but +art +said +nietzsche +we +have +art +in +order +not +to +die +of +the +truth +in +the +experience +that +i +am +attempting +to +describe +and +to +stress +on +several +modes +it +is +certain +that +a +new +torment +arises +wherever +another +dies +the +childish +chasing +after +forgetfulness +the +appeal +of +satisfaction +are +now +devoid +of +echo +but +the +constant +tension +that +keeps +man +face +to +face +with +the +world +the +ordered +delirium +that +urges +him +to +be +receptive +to +everything +leave +him +another +fever +in +this +universe +the +work +of +art +is +then +the +sole +chance +of +keeping +his +consciousness +and +of +fixing +its +adventures +creating +is +living +doubly +the +groping +anxious +quest +of +a +proust +his +meticulous +collecting +of +flowers +of +wallpapers +and +of +anxieties +signifies +nothing +else +at +the +same +time +it +has +no +more +significance +than +the +continual +and +imperceptible +creation +in +which +the +actor +the +conqueror +and +all +absurd +men +indulge +every +day +of +their +lives +all +try +their +hands +at +miming +at +repeating +and +at +recreating +the +reality +that +is +theirs +we +always +end +up +by +having +the +appearance +of +our +truths +all +existence +for +a +man +turned +away +from +the +eternal +is +but +a +vast +mime +under +the +mask +of +the +absurd +creation +is +the +great +mime +such +men +know +to +begin +with +and +then +their +whole +effort +is +to +examine +to +enlarge +and +to +enrich +the +ephemeral +island +on +which +they +have +just +landed +but +first +they +must +know +for +the +absurd +discovery +coincides +with +a +pause +in +which +future +passions +are +prepared +and +justified +even +men +without +a +gospel +have +their +mount +of +olives +and +one +must +not +fall +asleep +on +theirs +either +for +the +absurd +man +it +is +not +a +matter +of +explaining +and +solving +but +of +experiencing +and +describing +everything +begins +with +lucid +indifference +describing +that +is +the +last +ambition +of +an +absurd +thought +science +likewise +having +reached +the +end +of +its +paradoxes +ceases +to +propound +and +stops +to +contemplate +and +sketch +the +ever +virgin +landscape +of +phenomena +the +heart +learns +thus +that +the +emotion +delighting +us +when +we +see +the +world +s +aspects +comes +to +us +not +from +its +depth +but +from +their +diversity +explanation +is +useless +but +the +sensation +remains +and +with +it +the +constant +attractions +of +a +universe +inexhaustible +in +quantity +the +place +of +the +work +of +art +can +be +understood +at +this +point +it +marks +both +the +death +of +an +experience +and +its +multiplication +it +is +a +sort +of +monotonous +and +passionate +repetition +of +the +themes +already +orchestrated +by +the +world +the +body +inexhaustible +image +on +the +pediment +of +temples +forms +or +colors +number +or +grief +it +is +therefore +not +indifferent +as +a +conclusion +to +encounter +once +again +the +principal +themes +of +this +essay +in +the +wonderful +and +childish +world +of +the +creator +it +would +be +wrong +to +see +a +symbol +in +it +and +to +think +that +the +work +of +art +can +be +considered +at +last +as +a +refuge +for +the +absurd +it +is +itself +an +absurd +phenomenon +and +we +are +concerned +merely +with +its +description +it +does +not +offer +an +escape +for +the +intellectual +ailment +rather +it +is +one +of +the +symptoms +of +that +ailment +which +reflects +it +throughout +a +man +s +whole +thought +but +for +the +first +time +it +makes +the +mind +get +outside +of +itself +and +places +it +in +opposition +to +others +not +for +it +to +get +lost +but +to +show +it +clearly +the +blind +path +that +all +have +entered +upon +in +the +time +of +the +absurd +reasoning +creation +follows +indifference +and +discovery +it +marks +the +point +from +which +absurd +passions +spring +and +where +the +reasoning +stops +its +place +in +this +essay +is +justified +in +this +way +it +will +suffice +to +bring +to +light +a +few +themes +common +to +the +creator +and +the +thinker +in +order +to +find +in +the +work +of +art +all +the +contradictions +of +thought +involved +in +the +absurd +indeed +it +is +not +so +much +identical +conclusions +that +prove +minds +to +be +related +as +the +contradictions +that +are +common +to +them +so +it +is +with +thought +and +creation +i +hardly +need +to +say +that +the +same +anguish +urges +man +to +these +two +attitudes +this +is +where +they +coincide +in +the +beginning +but +among +all +the +thoughts +that +start +from +the +absurd +i +have +seen +that +very +few +remain +within +it +and +through +their +deviations +or +infidelities +i +have +best +been +able +to +measure +what +belonged +to +the +absurd +similarly +i +must +wonder +is +an +absurd +work +of +art +possible +it +would +be +impossible +to +insist +too +much +on +the +arbitrary +nature +of +the +former +opposition +between +art +and +philosophy +if +you +insist +on +taking +it +in +too +limited +a +sense +it +is +certainly +false +if +you +mean +merely +that +these +two +disciplines +each +have +their +peculiar +climate +that +is +probably +true +but +remains +vague +the +only +acceptable +argument +used +to +lie +in +the +contradiction +brought +up +between +the +philosopher +enclosed +within +his +system +and +the +artist +placed +before +his +work +but +this +was +pertinent +for +a +certain +form +of +art +and +of +philosophy +which +we +consider +secondary +here +the +idea +of +an +art +detached +from +its +creator +is +not +only +outmoded +it +is +false +in +opposition +to +the +artist +it +is +pointed +out +that +no +philosopher +ever +created +several +systems +but +that +is +true +in +so +far +indeed +as +no +artist +ever +expressed +more +than +one +thing +under +different +aspects +the +instantaneous +perfection +of +art +the +necessity +for +its +renewal +this +is +true +only +through +a +preconceived +notion +for +the +work +of +art +likewise +is +a +construction +and +everyone +knows +how +monotonous +the +great +creators +can +be +for +the +same +reason +as +the +thinker +the +artist +commits +himself +and +becomes +himself +in +his +work +that +osmosis +raises +the +most +important +of +aesthetic +problems +moreover +to +anyone +who +is +convinced +of +the +mind +s +singleness +of +purpose +nothing +is +more +futile +than +these +distinctions +based +on +methods +and +objects +there +are +no +frontiers +between +the +disciplines +that +man +sets +himself +for +understanding +and +loving +they +interlock +and +the +same +anxiety +merges +them +it +is +necessary +to +state +this +to +begin +with +for +an +absurd +work +of +art +to +be +possible +thought +in +its +most +lucid +form +must +be +involved +in +it +but +at +the +same +time +thought +must +not +be +apparent +except +as +the +regulating +intelligence +this +paradox +can +be +explained +according +to +the +absurd +the +work +of +art +is +born +of +the +intelligence +s +refusal +to +reason +the +concrete +it +marks +the +triumph +of +the +carnal +it +is +lucid +thought +that +provokes +it +but +in +that +very +act +that +thought +repudiates +itself +it +will +not +yield +to +the +temptation +of +adding +to +what +is +described +a +deeper +meaning +that +it +knows +to +be +illegitimate +the +work +of +art +embodies +a +drama +of +the +intelligence +but +it +proves +this +only +indirectly +the +absurd +work +requires +an +artist +conscious +of +these +limitations +and +an +art +in +which +the +concrete +signifies +nothing +more +than +itself +it +cannot +be +the +end +the +meaning +and +the +consolation +of +a +life +creating +or +not +creating +changes +nothing +the +absurd +creator +does +not +prize +his +work +he +could +repudiate +it +he +does +sometimes +repudiate +it +an +abyssinia +suffices +for +this +as +in +the +case +of +rimbaud +at +the +same +time +a +rule +of +aesthetics +can +be +seen +in +this +the +true +work +of +art +is +always +on +the +human +scale +it +is +essentially +the +one +that +says +less +there +is +a +certain +relationship +between +the +global +experience +of +the +artist +and +the +work +that +reflects +that +experience +between +wilhelm +meister +and +goethe +s +maturity +that +relationship +is +bad +when +the +work +aims +to +give +the +whole +experience +in +the +lace +paper +of +an +explanatory +literature +that +relationship +is +good +when +the +work +is +but +a +piece +cut +out +of +experience +a +facet +of +the +diamond +in +which +the +inner +luster +is +epitomized +without +being +limited +in +the +first +case +there +is +overloading +and +pretension +to +the +eternal +in +the +second +a +fecund +work +because +of +a +whole +implied +experience +the +wealth +of +which +is +suspected +the +problem +for +the +absurd +artist +is +to +acquire +this +savoir +vivre +which +transcends +savoir +faire +and +in +the +end +the +great +artist +under +this +climate +is +above +all +a +great +living +being +it +being +understood +that +living +in +this +case +is +just +as +much +experiencing +as +reflecting +the +work +then +embodies +an +intellectual +drama +the +absurd +work +illustrates +thought +s +renouncing +of +its +prestige +and +its +resignation +to +being +no +more +than +the +intelligence +that +works +up +appearances +and +covers +with +images +what +has +no +reason +if +the +world +were +clear +art +would +not +exist +i +am +not +speaking +here +of +the +arts +of +form +or +color +in +which +description +alone +prevails +in +its +splendid +modesty +expression +begins +where +thought +ends +those +adolescents +with +empty +eyesockets +who +people +temples +and +museums +their +philosophy +has +been +expressed +in +gestures +for +an +absurd +man +it +is +more +educative +than +all +libraries +under +another +aspect +the +same +is +true +for +music +if +any +art +is +devoid +of +lessons +it +is +certainly +music +it +is +too +closely +related +to +mathematics +not +to +have +borrowed +their +gratuitousness +that +game +the +mind +plays +with +itself +according +to +set +and +measured +laws +takes +place +in +the +sonorous +compass +that +belongs +to +us +and +beyond +which +the +vibrations +nevertheless +meet +in +an +inhuman +universe +there +is +no +purer +sensation +these +examples +are +too +easy +the +absurd +man +recognizes +as +his +own +these +harmonies +and +these +forms +but +i +should +like +to +speak +here +of +a +work +in +which +the +temptation +to +explain +remains +greatest +in +which +illusion +offers +itself +automatically +in +which +conclusion +is +almost +inevitable +i +mean +fictional +creation +i +propose +to +inquire +whether +or +not +the +absurd +can +hold +its +own +there +to +think +is +first +of +all +to +create +a +world +or +to +limit +one +s +own +world +which +comes +to +the +same +thing +it +is +starting +out +from +the +basic +disagreement +that +separates +man +from +his +experience +in +order +to +find +a +common +ground +according +to +one +s +nostalgia +a +universe +hedged +with +reasons +or +lighted +up +with +analogies +but +which +in +any +case +gives +an +opportunity +to +rescind +the +unbearable +divorce +the +philosopher +even +if +he +is +kant +is +a +creator +he +has +his +characters +his +symbols +and +his +secret +action +he +has +his +plot +endings +on +the +contrary +the +lead +taken +by +the +novel +over +poetry +and +the +essay +merely +represents +despite +appearances +a +greater +intellectualiza +tion +of +the +art +let +there +be +no +mistake +about +it +i +am +speaking +of +the +greatest +the +fecundity +and +the +importance +of +a +literary +form +are +often +measured +by +the +trash +it +contains +the +number +of +bad +novels +must +not +make +us +forget +the +value +of +the +best +these +indeed +carry +with +them +their +universe +the +novel +has +its +logic +its +reasonings +its +intuition +and +its +postulates +it +also +has +its +requirements +of +clarity +the +classical +opposition +of +which +i +was +speaking +above +is +even +less +justified +in +this +particular +case +it +held +in +the +time +when +it +was +easy +to +separate +philosophy +from +its +authors +today +when +thought +has +ceased +to +lay +claim +to +the +universal +when +its +best +history +would +be +that +of +its +repentances +we +know +that +the +system +when +it +is +worth +while +cannot +be +separated +from +its +author +the +ethics +itself +in +one +of +its +aspects +is +but +a +long +and +reasoned +personal +confession +abstract +thought +at +last +returns +to +its +prop +of +flesh +and +likewise +the +fictional +activities +of +the +body +and +of +the +passions +are +regulated +a +little +more +according +to +the +requirements +of +a +vision +of +the +world +the +writer +has +given +up +telling +stories +and +creates +his +universe +the +great +novelists +are +philosophical +novelists +that +is +the +contrary +of +thesis +writers +for +instance +balzac +sade +melville +stendhal +dostoevsky +proust +malraux +kafka +to +cite +but +a +few +but +in +fact +the +preference +they +have +shown +for +writing +in +images +rather +than +in +reasoned +arguments +is +revelatory +of +a +certain +thought +that +is +common +to +them +all +convinced +of +the +uselessness +of +any +principle +of +explanation +and +sure +of +the +educative +message +of +perceptible +appearance +they +consider +the +work +of +art +both +as +an +end +and +a +beginning +it +is +the +outcome +of +an +often +unexpressed +philosophy +its +illustration +and +its +consummation +but +it +is +complete +only +through +the +implications +of +that +philosophy +it +justifies +at +last +that +variant +of +an +old +theme +that +a +little +thought +estranges +from +life +whereas +much +thought +reconciles +to +life +incapable +of +refining +the +real +thought +pauses +to +mimic +it +the +novel +in +question +is +the +instrument +of +that +simultaneously +relative +and +inexhaustible +knowledge +so +like +that +of +love +of +love +fictional +creation +has +the +initial +wonder +and +the +fecund +rumination +these +at +least +are +the +charms +i +see +in +it +at +the +outset +but +i +saw +them +likewise +in +those +princes +of +humiliated +thought +whose +suicides +i +was +later +able +to +witness +what +interests +me +indeed +is +knowing +and +describing +the +force +that +leads +them +back +toward +the +common +path +of +illusion +the +same +method +will +consequently +help +me +here +the +fact +of +having +already +utilized +it +will +allow +me +to +shorten +my +argument +and +to +sum +it +up +without +delay +in +a +particular +example +i +want +to +know +whether +accepting +a +life +without +appeal +one +can +also +agree +to +work +and +create +without +appeal +and +what +is +the +way +leading +to +these +liberties +i +want +to +liberate +my +universe +of +its +phantoms +and +to +people +it +solely +with +flesh +and +blood +truths +whose +presence +i +cannot +deny +i +can +perform +absurd +work +choose +the +creative +attitude +rather +than +another +but +an +absurd +attitude +if +it +is +to +remain +so +must +remain +aware +of +its +gratuitousness +so +it +is +with +the +work +of +art +if +the +commandments +of +the +absurd +are +not +respected +if +the +work +does +not +illustrate +divorce +and +revolt +if +it +sacrifices +to +illusions +and +arouses +hope +it +ceases +to +be +gratuitous +i +can +no +longer +detach +myself +from +it +my +life +may +find +a +meaning +in +it +but +that +is +trifling +it +ceases +to +be +that +exercise +in +detachment +and +passion +which +crowns +the +splendor +and +futility +of +a +man +s +life +in +the +creation +in +which +the +temptation +to +explain +is +the +strongest +can +one +overcome +that +temptation +in +the +fictional +world +in +which +awareness +of +the +real +world +is +keenest +can +i +remain +faithful +to +the +absurd +without +sacrificing +to +the +desire +to +judge +so +many +questions +to +be +taken +into +consideration +in +a +last +effort +it +must +be +already +clear +what +they +signify +they +are +the +last +scruples +of +an +awareness +that +fears +to +forsake +its +initial +and +difficult +lesson +in +favor +of +a +final +illusion +what +holds +for +creation +looked +upon +as +one +of +the +possible +attitudes +for +the +man +conscious +of +the +absurd +holds +for +all +the +styles +of +life +open +to +him +the +conqueror +or +the +actor +the +creator +or +don +juan +may +forget +that +their +exercise +in +living +could +not +do +without +awareness +of +its +mad +character +one +becomes +accustomed +so +quickly +a +man +wants +to +earn +money +in +order +to +be +happy +and +his +whole +effort +and +the +best +of +a +life +are +devoted +to +the +earning +of +that +money +happiness +is +forgotten +the +means +are +taken +for +the +end +likewise +the +whole +effort +of +this +conqueror +will +be +diverted +to +ambition +which +was +but +a +way +toward +a +greater +life +don +juan +in +turn +will +likewise +yield +to +his +fate +be +satisfied +with +that +existence +whose +nobility +is +of +value +only +through +revolt +for +one +it +is +awareness +and +for +the +other +revolt +in +both +cases +the +absurd +has +disappeared +there +is +so +much +stubborn +hope +in +the +human +heart +the +most +destitute +men +often +end +up +by +accepting +illusion +that +approval +prompted +by +the +need +for +peace +inwardly +parallels +the +existential +consent +there +are +thus +gods +of +light +and +idols +of +mud +but +it +is +essential +to +find +the +middle +path +leading +to +the +faces +of +man +so +far +the +failures +of +the +absurd +exigence +have +best +informed +us +as +to +what +it +is +in +the +same +way +if +we +are +to +be +informed +it +will +suffice +to +notice +that +fictional +creation +can +present +the +same +ambiguity +as +certain +philosophies +hence +i +can +choose +as +illustration +a +work +comprising +everything +that +denotes +awareness +of +the +absurd +having +a +clear +starting +point +and +a +lucid +climate +its +consequences +will +enlighten +us +if +the +absurd +is +not +respected +in +it +we +shall +know +by +what +expedient +illusion +enters +in +a +particular +example +a +theme +a +creator +s +fidelity +will +suffice +then +this +involves +the +same +analysis +that +has +already +been +made +at +greater +length +i +shall +examine +a +favorite +theme +of +dostoevsky +i +might +just +as +well +have +studied +other +works +but +in +this +work +the +problem +is +treated +directly +in +the +sense +of +nobility +and +emotion +as +for +the +existential +philosophies +already +discussed +this +parallelism +serves +my +purpose +kirilov +all +of +dostoevsky +s +heroes +question +themselves +as +to +the +meaning +of +life +in +this +they +are +modern +they +do +not +fear +ridicule +what +distinguishes +modern +sensibility +from +classical +sensibility +is +that +the +latter +thrives +on +moral +problems +and +the +former +on +metaphysical +problems +in +dostoevsky +s +novels +the +question +is +propounded +with +such +intensity +that +it +can +only +invite +extreme +solutions +existence +is +illusory +or +it +is +eternal +if +dostoevsky +were +satisfied +with +this +inquiry +he +would +be +a +philosopher +but +he +illustrates +the +consequences +that +such +intellectual +pastimes +may +have +in +a +man +s +life +and +in +this +regard +he +is +an +artist +among +those +consequences +his +attention +is +arrested +particularly +by +the +last +one +which +he +himself +calls +logical +suicide +in +his +diary +of +a +writer +in +the +installments +for +december +indeed +he +imagines +the +reasoning +of +logical +suicide +convinced +that +human +existence +is +an +utter +absurdity +for +anyone +without +faith +in +immortality +the +desperate +man +comes +to +the +following +conclusions +since +in +reply +to +my +questions +about +happiness +i +am +told +through +the +intermediary +of +my +consciousness +that +i +cannot +be +happy +except +in +harmony +with +the +great +all +which +i +cannot +conceive +and +shall +never +be +in +a +position +to +conceive +it +is +evident +since +finally +in +this +connection +i +assume +both +the +role +of +the +plaintiff +and +that +of +the +defendant +of +the +accused +and +of +the +judge +and +since +i +consider +this +comedy +perpetrated +by +nature +altogether +stupid +and +since +i +even +deem +it +humiliating +for +me +to +deign +to +play +it +in +my +indisputable +capacity +of +plaintiff +and +defendant +of +judge +and +accused +i +condemn +that +nature +which +with +such +impudent +nerve +brought +me +into +being +in +order +to +suffer +i +condemn +it +to +be +annihilated +with +me +there +remains +a +little +humor +in +that +position +this +suicide +kills +himself +because +on +the +metaphysical +plane +he +is +vexed +in +a +certain +sense +he +is +taking +his +revenge +this +is +his +way +of +proving +that +he +will +not +be +had +it +is +known +however +that +the +same +theme +is +embodied +but +with +the +most +wonderful +generality +in +kirilov +of +the +possessed +likewise +an +advocate +of +logical +suicide +kirilov +the +engineer +declares +somewhere +that +he +wants +to +take +his +own +life +because +it +is +his +idea +obviously +the +word +must +be +taken +in +its +proper +sense +it +is +for +an +idea +a +thought +that +he +is +getting +ready +for +death +this +is +the +superior +suicide +progressively +in +a +series +of +scenes +in +which +kirilov +s +mask +is +gradually +illuminated +the +fatal +thought +driving +him +is +revealed +to +us +the +engineer +in +fact +goes +back +to +the +arguments +of +the +diary +he +feels +that +god +is +necessary +and +that +he +must +exist +but +he +knows +that +he +does +not +and +cannot +exist +why +do +you +not +realize +he +exclaims +that +this +is +sufficient +reason +for +killing +oneself +that +attitude +involves +likewise +for +him +some +of +the +absurd +consequences +through +indifference +he +accepts +letting +his +suicide +be +used +to +the +advantage +of +a +cause +he +despises +i +decided +last +night +that +i +didn +t +care +and +finally +he +prepares +his +deed +with +a +mixed +feeling +of +revolt +and +freedom +i +shall +kill +myself +in +order +to +assert +my +insubordination +my +new +and +dreadful +liberty +it +is +no +longer +a +question +of +revenge +but +of +revolt +kirilov +is +consequently +an +absurd +character +yet +with +this +essential +reservation +he +kills +himself +but +he +himself +explains +this +contradiction +and +in +such +a +way +that +at +the +same +time +he +reveals +the +absurd +secret +in +all +its +purity +in +truth +he +adds +to +his +fatal +logic +an +extraordinary +ambition +which +gives +the +character +its +full +perspective +he +wants +to +kill +himself +to +become +god +the +reasoning +is +classic +in +its +clarity +if +god +does +not +exist +kirilov +is +god +if +god +does +not +exist +kirilov +must +kill +himself +kirilov +must +therefore +kill +himself +to +become +god +that +logic +is +absurd +but +it +is +what +is +needed +the +interesting +thing +however +is +to +give +a +meaning +to +that +divinity +brought +to +earth +that +amounts +to +clarifying +the +premise +if +god +does +not +exist +i +am +god +which +still +remains +rather +obscure +it +is +important +to +note +at +the +outset +that +the +man +who +flaunts +that +mad +claim +is +indeed +of +this +world +he +performs +his +gymnastics +every +morning +to +preserve +his +health +he +is +stirred +by +the +joy +of +chatov +recovering +his +wife +on +a +sheet +of +paper +to +be +found +after +his +death +he +wants +to +draw +a +face +sticking +out +his +tongue +at +them +he +is +childish +and +irascible +passionate +methodical +and +sensitive +of +the +superman +he +has +nothing +but +the +logic +and +the +obsession +whereas +of +man +he +has +the +whole +catalogue +yet +it +is +he +who +speaks +calmly +of +his +divinity +he +is +not +mad +or +else +dostoevsky +is +consequently +it +is +not +a +megalomaniac +s +illusion +that +excites +him +and +taking +the +words +in +their +specific +sense +would +in +this +instance +be +ridiculous +kirilov +himself +helps +us +to +understand +in +reply +to +a +question +from +stavrogin +he +makes +clear +that +he +is +not +talking +of +a +god +man +it +might +be +thought +that +this +springs +from +concern +to +distinguish +himself +from +christ +but +in +reality +it +is +a +matter +of +annexing +christ +kirilov +in +fact +fancies +for +a +moment +that +jesus +at +his +death +did +not +find +himself +in +paradise +he +found +out +then +that +his +torture +had +been +useless +the +laws +of +nature +says +the +engineer +made +christ +live +in +the +midst +of +falsehood +and +die +for +a +falsehood +solely +in +this +sense +jesus +indeed +personifies +the +whole +human +drama +he +is +the +complete +man +being +the +one +who +realized +the +most +absurd +condition +he +is +not +the +god +man +but +the +man +god +and +like +him +each +of +us +can +be +crucified +and +victimized +and +is +to +a +certain +degree +the +divinity +in +question +is +therefore +altogether +terrestrial +for +three +years +says +kirilov +i +sought +the +attribute +of +my +divinity +and +i +have +found +it +the +attribute +of +my +divinity +is +independence +now +can +be +seen +the +meaning +of +kirilov +s +premise +if +god +does +not +exist +i +am +god +to +become +god +is +merely +to +be +free +on +this +earth +not +to +serve +an +immortal +being +above +all +of +course +it +is +drawing +all +the +inferences +from +that +painful +independence +if +god +exists +all +depends +on +him +and +we +can +do +nothing +against +his +will +if +he +does +not +exist +everything +depends +on +us +for +kirilov +as +for +nietzsche +to +kill +god +is +to +become +god +oneself +it +is +to +realize +on +this +earth +the +eternal +life +of +which +the +gospel +speaks +but +if +this +metaphysical +crime +is +enough +for +man +s +fulfillment +why +add +suicide +why +kill +oneself +and +leave +this +world +after +having +won +freedom +that +is +contradictory +kirilov +is +well +aware +of +this +for +he +adds +if +you +feel +that +you +are +a +tsar +and +far +from +killing +yourself +you +will +live +covered +with +glory +but +men +in +general +do +not +know +it +they +do +not +feel +that +as +in +the +time +of +prometheus +they +entertain +blind +hopes +they +need +to +be +shown +the +way +and +cannot +do +without +preaching +consequently +kirilov +must +kill +himself +out +of +love +for +humanity +he +must +show +his +brothers +a +royal +and +difficult +path +on +which +he +will +be +the +first +it +is +a +pedagogical +suicide +kirilov +sacrifices +himself +then +but +if +he +is +crucified +he +will +not +be +victimized +he +remains +the +man +god +convinced +of +a +death +without +future +imbued +with +evangelical +melancholy +i +he +says +am +unhappy +because +i +am +obliged +to +assert +my +freedom +but +once +he +is +dead +and +men +are +at +last +enlightened +this +earth +will +be +peopled +with +tsars +and +lighted +up +with +human +glory +kirilov +s +pistol +shot +will +be +the +signal +for +the +last +revolution +thus +it +is +not +despair +that +urges +him +to +death +but +love +of +his +neighbor +for +his +own +sake +before +terminating +in +blood +an +indescribable +spiritual +adventure +kirilov +makes +a +remark +as +old +as +human +suffering +all +is +well +this +theme +of +suicide +in +dostoevsky +then +is +indeed +an +absurd +theme +let +us +merely +note +before +going +on +that +kirilov +reappears +in +other +characters +who +themselves +set +in +motion +additional +absurd +themes +stavrogin +and +ivan +karamazov +try +out +the +absurd +truths +in +practical +life +they +are +the +ones +liberated +by +kirilov +s +death +they +try +their +skill +at +being +tsars +stavrogin +leads +an +ironic +life +and +it +is +well +known +in +what +regard +he +arouses +hatred +around +him +and +yet +the +key +to +the +character +is +found +in +his +farewell +letter +i +have +not +been +able +to +detest +anything +he +is +a +tsar +in +indifference +ivan +is +likewise +by +refusing +to +surrender +the +royal +powers +of +the +mind +to +those +who +like +his +brother +prove +by +their +lives +that +it +is +essential +to +humiliate +oneself +in +order +to +believe +he +might +reply +that +the +condition +is +shameful +his +key +word +is +everything +is +permitted +with +the +appropriate +shade +of +melancholy +of +course +like +nietzsche +the +most +famous +of +god +s +assassins +he +ends +in +madness +but +this +is +a +risk +worth +running +and +faced +with +such +tragic +ends +the +essential +impulse +of +the +absurd +mind +is +to +ask +what +does +that +prove +thus +the +novels +like +the +diary +propound +the +absurd +question +they +establish +logic +unto +death +exaltation +dreadful +freedom +the +glory +of +the +tsars +become +human +all +is +well +everything +is +permitted +and +nothing +is +hateful +these +are +absurd +judgments +but +what +an +amazing +creation +in +which +those +creatures +of +fire +and +ice +seem +so +familiar +to +us +the +passionate +world +of +indifference +that +rumbles +in +their +hearts +does +not +seem +at +all +monstrous +to +us +we +recognize +in +it +our +everyday +anxieties +and +probably +no +one +so +much +as +dostoevsky +has +managed +to +give +the +absurd +world +such +familiar +and +tormenting +charms +yet +what +is +his +conclusion +two +quotations +will +show +the +complete +metaphysical +reversal +that +leads +the +writer +to +other +revelations +the +argument +of +the +one +who +commits +logical +suicide +having +provoked +protests +from +the +critics +dostoevsky +in +the +following +installments +of +the +diary +amplifies +his +position +and +concludes +thus +if +faith +in +immortality +is +so +necessary +to +the +human +being +that +without +it +he +comes +to +the +point +of +killing +himself +it +must +therefore +be +the +normal +state +of +humanity +since +this +is +the +case +the +immortality +of +the +human +soul +exists +without +any +doubt +then +again +in +the +last +pages +of +his +last +novel +at +the +conclusion +of +that +gigantic +combat +with +god +some +children +ask +aliocha +karamazov +is +it +true +what +religion +says +that +we +shall +rise +from +the +dead +that +we +shall +see +one +another +again +and +aliocha +answers +certainly +we +shall +see +one +another +again +we +shall +joyfully +tell +one +another +everything +that +has +happened +thus +kirilov +stavrogin +and +ivan +are +defeated +the +brothers +karamazov +replies +to +the +possessed +and +it +is +indeed +a +conclusion +aliocha +s +case +is +not +ambiguous +as +is +that +of +prince +muichkin +ill +the +latter +lives +in +a +perpetual +present +tinged +with +smiles +and +indifference +and +that +blissful +state +might +be +the +eternal +life +of +which +the +prince +speaks +on +the +contrary +aliocha +clearly +says +we +shall +meet +again +there +is +no +longer +any +question +of +suicide +and +of +madness +what +is +the +use +for +anyone +who +is +sure +of +immortality +and +of +its +joys +man +exchanges +his +divinity +for +happiness +we +shall +joyfully +tell +one +another +everything +that +has +happened +thus +again +kirilov +s +pistol +rang +out +somewhere +in +russia +but +the +world +continued +to +cherish +its +blind +hopes +men +did +not +understand +that +consequently +it +is +not +an +absurd +novelist +addressing +us +but +an +existential +novelist +here +too +the +leap +is +touching +and +gives +its +nobility +to +the +art +that +inspires +it +it +is +a +stirring +acquiescence +riddled +with +doubts +uncertain +and +ardent +speaking +of +the +brothers +karamazov +dostoevsky +wrote +the +chief +question +that +will +be +pursued +throughout +this +book +is +the +very +one +from +which +i +have +suffered +consciously +or +unconsciously +all +life +long +the +existence +of +god +it +is +hard +to +believe +that +a +novel +sufficed +to +transform +into +joyful +certainty +the +suffering +of +a +lifetime +one +commentator +correctly +pointed +out +that +dostoevsky +is +on +ivan +s +side +and +that +the +affirmative +chapters +took +three +months +of +effort +whereas +what +he +called +the +blasphemies +were +written +in +three +weeks +in +a +state +of +excitement +there +is +not +one +of +his +characters +who +does +not +have +that +thorn +in +the +flesh +who +does +not +aggravate +it +or +seek +a +remedy +for +it +in +sensation +or +immortality +in +any +case +let +us +remain +with +this +doubt +here +is +a +work +which +in +a +chiaroscuro +more +gripping +than +the +light +of +day +permits +us +to +seize +man +s +struggle +against +his +hopes +having +reached +the +end +the +creator +makes +his +choice +against +his +characters +that +contradiction +thus +allows +us +to +make +a +distinction +it +is +not +an +absurd +work +that +is +involved +here +but +a +work +that +propounds +the +absurd +problem +dostoevsky +s +reply +is +humiliation +shame +according +to +stavrogin +an +absurd +work +on +the +contrary +does +not +provide +a +reply +that +is +the +whole +difference +let +us +note +this +carefully +in +conclusion +what +contradicts +the +absurd +in +that +work +is +not +its +christian +character +but +rather +its +announcing +a +future +life +it +is +possible +to +be +christian +and +absurd +there +are +examples +of +christians +who +do +not +believe +in +a +future +life +in +regard +to +the +work +of +art +it +should +therefore +be +possible +to +define +one +of +the +directions +of +the +absurd +analysis +that +could +have +been +anticipated +in +the +preceding +pages +it +leads +to +propounding +the +absurdity +of +the +gospel +it +throws +light +upon +this +idea +fertile +in +repercussions +that +convictions +do +not +prevent +incredulity +on +the +contrary +it +is +easy +to +see +that +the +author +of +the +possessed +familiar +with +these +paths +in +conclusion +took +a +quite +different +way +the +surprising +reply +of +the +creator +to +his +characters +of +do +stoevsky +to +kirilov +can +indeed +be +summed +up +thus +existence +is +illusory +and +it +is +eternal +ephemeral +creation +at +this +point +i +perceive +therefore +that +hope +cannot +be +eluded +forever +and +that +it +can +beset +even +those +who +wanted +to +be +free +of +it +this +is +the +interest +i +find +in +the +works +discussed +up +to +this +point +i +could +at +least +in +the +realm +of +creation +list +some +truly +absurd +works +but +everything +must +have +a +beginning +the +object +of +this +quest +is +a +certain +fidelity +the +church +has +been +so +harsh +with +heretics +only +because +she +deemed +that +there +is +no +worse +enemy +than +a +child +who +has +gone +astray +but +the +record +of +gnostic +effronteries +and +the +persistence +of +manichean +currents +have +contributed +more +to +the +construction +of +orthodox +dogma +than +all +the +prayers +with +due +allowance +the +same +is +true +of +the +absurd +one +recognizes +one +s +course +by +discovering +the +paths +that +stray +from +it +at +the +very +conclusion +of +the +absurd +reasoning +in +one +of +the +attitudes +dictated +by +its +logic +it +is +not +a +matter +of +indifference +to +find +hope +coming +back +in +under +one +of +its +most +touching +guises +that +shows +the +difficulty +of +the +absurd +ascesis +above +all +it +shows +the +necessity +of +unfailing +alertness +and +thus +confirms +the +general +plan +of +this +essay +but +if +it +is +still +too +early +to +list +absurd +works +at +least +a +conclusion +can +be +reached +as +to +the +creative +attitude +one +of +those +which +can +complete +absurd +existence +art +can +never +be +so +well +served +as +by +a +negative +thought +its +dark +and +humiliated +proceedings +are +as +necessary +to +the +understanding +of +a +great +work +as +black +is +to +white +to +work +and +create +for +nothing +to +sculpture +in +clay +to +know +that +one +s +creation +has +no +future +to +see +one +s +work +destroyed +in +a +day +while +being +aware +that +fundamentally +this +has +no +more +importance +than +building +for +centuries +this +is +the +difficult +wisdom +that +absurd +thought +sanctions +performing +these +two +tasks +simultaneously +negating +on +the +one +hand +and +magnifying +on +the +other +is +the +way +open +to +the +absurd +creator +he +must +give +the +void +its +colors +this +leads +to +a +special +conception +of +the +work +of +art +too +often +the +work +of +a +creator +is +looked +upon +as +a +series +of +isolated +testimonies +thus +artist +and +man +of +letters +are +confused +a +profound +thought +is +in +a +constant +state +of +becoming +it +adopts +the +experience +of +a +life +and +assumes +its +shape +likewise +a +man +s +sole +creation +is +strengthened +in +its +successive +and +multiple +aspects +his +works +one +after +another +they +complement +one +an +other +correct +or +overtake +one +another +contradict +one +another +too +if +something +brings +creation +to +an +end +it +is +not +the +victorious +and +illusory +cry +of +the +blinded +artist +i +have +said +everything +but +the +death +of +the +creator +which +closes +his +experience +and +the +book +of +his +genius +that +effort +that +superhuman +consciousness +are +not +necessarily +apparent +to +the +reader +there +is +no +mystery +in +human +creation +will +performs +this +miracle +but +at +least +there +is +no +true +creation +without +a +secret +to +be +sure +a +succession +of +works +can +be +but +a +series +of +approximations +of +the +same +thought +but +it +is +possible +to +conceive +of +another +type +of +creator +proceeding +by +juxtaposition +their +works +may +seem +to +be +devoid +of +interrelations +to +a +certain +degree +they +are +contradictory +but +viewed +all +together +they +resume +their +natural +grouping +from +death +for +instance +they +derive +their +definitive +significance +they +receive +their +most +obvious +light +from +the +very +life +of +their +author +at +the +moment +of +death +the +succession +of +his +works +is +but +a +collection +of +failures +but +if +those +failures +all +have +the +same +resonance +the +creator +has +managed +to +repeat +the +image +of +his +own +condition +to +make +the +air +echo +with +the +sterile +secret +he +possesses +the +effort +to +dominate +is +considerable +here +but +human +intelligence +is +up +to +much +more +it +will +merely +indicate +clearly +the +voluntary +aspect +of +creation +elsewhere +i +have +brought +out +the +fact +that +human +will +had +no +other +purpose +than +to +maintain +awareness +but +that +could +not +do +without +discipline +of +all +the +schools +of +patience +and +lucidity +creation +is +the +most +effective +it +is +also +the +staggering +evidence +of +man +s +sole +dignity +the +dogged +revolt +against +his +condition +perseverance +in +an +effort +considered +sterile +it +calls +for +a +daily +effort +self +mastery +a +precise +estimate +of +the +limits +of +truth +measure +and +strength +it +constitutes +an +ascesis +all +that +for +nothing +in +order +to +repeat +and +mark +time +but +perhaps +the +great +work +of +art +has +less +importance +in +itself +than +in +the +ordeal +it +demands +of +a +man +and +the +opportunity +it +provides +him +of +overcoming +his +phantoms +and +approaching +a +little +closer +to +his +naked +reality +let +there +be +no +mistake +in +aesthetics +it +is +not +patient +inquiry +the +unceasing +sterile +illustration +of +a +thesis +that +i +am +calling +for +here +quite +the +contrary +if +i +have +made +myself +clearly +understood +the +thesis +novel +the +work +that +proves +the +most +hateful +of +all +is +the +one +that +most +often +is +inspired +by +a +smug +thought +you +demonstrate +the +truth +you +feel +sure +of +possessing +but +those +are +ideas +one +launches +and +ideas +are +the +contrary +of +thought +those +creators +are +philosophers +ashamed +of +themselves +those +i +am +speaking +of +or +whom +i +imagine +are +on +the +contrary +lucid +thinkers +at +a +certain +point +where +thought +turns +back +on +itself +they +raise +up +the +images +of +their +works +like +the +obvious +symbols +of +a +limited +mortal +and +rebellious +thought +they +perhaps +prove +something +but +those +proofs +are +ones +that +the +novelists +provide +for +themselves +rather +than +for +the +world +in +general +the +essential +is +that +the +novelists +should +triumph +in +the +concrete +and +that +this +constitute +their +nobility +this +wholly +carnal +triumph +has +been +prepared +for +them +by +a +thought +in +which +abstract +powers +have +been +humiliated +when +they +are +completely +so +at +the +same +time +the +flesh +makes +the +creation +shine +forth +in +all +its +absurd +luster +after +all +ironic +philosophies +produce +passionate +works +any +thought +that +abandons +unity +glorifies +diversity +and +diversity +is +the +home +of +art +the +only +thought +to +liberate +the +mind +is +that +which +leaves +it +alone +certain +of +its +limits +and +of +its +impending +end +no +doctrine +tempts +it +it +awaits +the +ripening +of +the +work +and +of +life +detached +from +it +the +work +will +once +more +give +a +barely +muffled +voice +to +a +soul +forever +freed +from +hope +or +it +will +give +voice +to +nothing +if +the +creator +tired +of +his +activity +intends +to +turn +away +that +is +equivalent +thus +i +ask +of +absurd +creation +what +i +required +from +thought +revolt +freedom +and +diversity +later +on +it +will +manifest +its +utter +futility +in +that +daily +effort +in +which +intelligence +and +passion +mingle +and +delight +each +other +the +absurd +man +discovers +a +discipline +that +will +make +up +the +greatest +of +his +strengths +the +required +diligence +the +doggedness +and +lucidity +thus +resemble +the +conqueror +s +attitude +to +create +is +likewise +to +give +a +shape +to +one +s +fate +for +all +these +characters +their +work +defines +them +at +least +as +much +as +it +is +defined +by +them +the +actor +taught +us +this +there +is +no +frontier +between +being +and +appearing +let +me +repeat +none +of +all +this +has +any +real +meaning +on +the +way +to +that +liberty +there +is +still +a +progress +to +be +made +the +final +effort +for +these +related +minds +creator +or +conqueror +is +to +manage +to +free +themselves +also +from +their +undertakings +succeed +in +granting +that +the +very +work +whether +it +be +conquest +love +or +creation +may +well +not +be +consummate +thus +the +utter +futility +of +any +individual +life +indeed +that +gives +them +more +freedom +in +the +realization +of +that +work +just +as +becoming +aware +of +the +absurdity +of +life +authorized +them +to +plunge +into +it +with +every +excess +all +that +remains +is +a +fate +whose +outcome +alone +is +fatal +outside +of +that +single +fatality +of +death +everything +joy +or +happiness +is +liberty +a +world +remains +of +which +man +is +the +sole +master +what +bound +him +was +the +illusion +of +another +world +the +outcome +of +his +thought +ceasing +to +be +renunciatory +flowers +in +images +it +frolics +in +myths +to +be +sure +but +myths +with +no +other +depth +than +that +of +human +suffering +and +like +it +inexhaustible +not +the +divine +fable +that +amuses +and +blinds +but +the +terrestrial +face +gesture +and +drama +in +which +are +summed +up +a +difficult +wisdom +and +an +ephemeral +passion +the +myth +of +sisyphus +the +gods +had +condemned +sisyphus +to +ceaselessly +rolling +a +rock +to +the +top +of +a +mountain +whence +the +stone +would +fall +back +of +its +own +weight +they +had +thought +with +some +reason +that +there +is +no +more +dreadful +punishment +than +futile +and +hopeless +labor +if +one +believes +homer +sisyphus +was +the +wisest +and +most +prudent +of +mortals +according +to +another +tradition +however +he +was +disposed +to +practice +the +profession +of +highwayman +i +see +no +contradiction +in +this +opinions +differ +as +to +the +reasons +why +he +became +the +futile +laborer +of +the +underworld +to +begin +with +he +is +accused +of +a +certain +levity +in +regard +to +the +gods +he +stole +their +secrets +aegina +the +daughter +of +aesopus +was +carried +off +by +jupiter +the +father +was +shocked +by +that +disappearance +and +complained +to +sisyphus +he +who +knew +of +the +abduction +offered +to +tell +about +it +on +condition +that +aesopus +would +give +water +to +the +citadel +of +corinth +to +the +celestial +thunderbolts +he +preferred +the +benediction +of +water +he +was +punished +for +this +in +the +underworld +homer +tells +us +also +that +sisyphus +had +put +death +in +chains +pluto +could +not +endure +the +sight +of +his +deserted +silent +empire +he +dispatched +the +god +of +war +who +liberated +death +from +the +hands +of +her +conqueror +it +is +said +also +that +sisyphus +being +near +to +death +rashly +wanted +to +test +his +wife +s +love +he +ordered +her +to +cast +his +unburied +body +into +the +middle +of +the +public +square +sisyphus +woke +up +in +the +underworld +and +there +annoyed +by +an +obedience +so +contrary +to +human +love +he +obtained +from +pluto +permission +to +return +to +earth +in +order +to +chastise +his +wife +but +when +he +had +seen +again +the +face +of +this +world +enjoyed +water +and +sun +warm +stones +and +the +sea +he +no +longer +wanted +to +go +back +to +the +infernal +darkness +recalls +signs +of +anger +warnings +were +of +no +avail +many +years +more +he +lived +facing +the +curve +of +the +gulf +the +sparkling +sea +and +the +smiles +of +earth +a +decree +of +the +gods +was +necessary +mercury +came +and +seized +the +impudent +man +by +the +collar +and +snatching +him +from +his +joys +led +him +forcibly +back +to +the +underworld +where +his +rock +was +ready +for +him +you +have +already +grasped +that +sisyphus +is +the +absurd +hero +he +is +as +much +through +his +passions +as +through +his +torture +his +scorn +of +the +gods +his +hatred +of +death +and +his +passion +for +life +won +him +that +unspeakable +penalty +in +which +the +whole +being +is +exerted +toward +accomplishing +nothing +this +is +the +price +that +must +be +paid +for +the +passions +of +this +earth +nothing +is +told +us +about +sisyphus +in +the +underworld +myths +are +made +for +the +imagination +to +breathe +life +into +them +as +for +this +myth +one +sees +merely +the +whole +effort +of +a +body +straining +to +raise +the +huge +stone +to +roll +it +and +push +it +up +a +slope +a +hundred +times +over +one +sees +the +face +screwed +up +the +cheek +tight +against +the +stone +the +shoulder +bracing +the +clay +covered +mass +the +foot +wedging +it +the +fresh +start +with +arms +outstretched +the +wholly +human +security +of +two +earth +clotted +hands +at +the +very +end +of +his +long +effort +measured +by +skyless +space +and +time +without +depth +the +purpose +is +achieved +then +sisyphus +watches +the +stone +rush +down +in +a +few +moments +toward +that +lower +world +whence +he +will +have +to +push +it +up +again +toward +the +summit +he +goes +back +down +to +the +plain +it +is +during +that +return +that +pause +that +sisyphus +interests +me +a +face +that +toils +so +close +to +stones +is +already +stone +itself +i +see +that +man +going +back +down +with +a +heavy +yet +measured +step +toward +the +torment +of +which +he +will +never +know +the +end +that +hour +like +a +breathing +space +which +returns +as +surely +as +his +suffering +that +is +the +hour +of +consciousness +at +each +of +those +moments +when +he +leaves +the +heights +and +gradually +sinks +toward +the +lairs +of +the +gods +he +is +superior +to +his +fate +he +is +stronger +than +his +rock +if +this +myth +is +tragic +that +is +because +its +hero +is +conscious +where +would +his +torture +be +indeed +if +at +every +step +the +hope +of +succeeding +upheld +him +the +workman +of +today +works +every +day +in +his +life +at +the +same +tasks +and +this +fate +is +no +less +absurd +but +it +is +tragic +only +at +the +rare +moments +when +it +becomes +conscious +sisyphus +proletarian +of +the +gods +powerless +and +rebellious +knows +the +whole +extent +of +his +wretched +condition +it +is +what +he +thinks +of +during +his +descent +the +lucidity +that +was +to +constitute +his +torture +at +the +same +time +crowns +his +victory +there +is +no +fate +that +cannot +be +surmounted +by +scorn +if +the +descent +is +thus +sometimes +performed +in +sorrow +it +can +also +take +place +in +joy +this +word +is +not +too +much +again +i +fancy +sisyphus +returning +toward +his +rock +and +the +sorrow +was +in +the +beginning +when +the +images +of +earth +cling +too +tightly +to +memory +when +the +call +of +happiness +becomes +too +insistent +it +happens +that +melancholy +rises +in +man +s +heart +this +is +the +rock +s +victory +this +is +the +rock +itself +the +boundless +grief +is +too +heavy +to +bear +these +are +our +nights +of +gethsemane +but +crushing +truths +perish +from +being +acknowledged +thus +cedipus +at +the +outset +obeys +fate +without +knowing +it +but +from +the +moment +he +knows +his +tragedy +begins +yet +at +the +same +moment +blind +and +desperate +he +realizes +that +the +only +bond +linking +him +to +the +world +is +the +cool +hand +of +a +girl +then +a +tremendous +remark +rings +out +despite +so +many +ordeals +my +advanced +age +and +the +nobility +of +my +soul +make +me +conclude +that +all +is +well +sophocles +cedipus +like +dostoevsky +s +kirilov +thus +gives +the +recipe +for +the +absurd +victory +ancient +wisdom +confirms +modern +heroism +one +does +not +discover +the +absurd +without +being +tempted +to +write +a +manual +of +happiness +what +by +such +narrow +ways +there +is +but +one +world +however +happiness +and +the +absurd +are +two +sons +of +the +same +earth +they +are +inseparable +it +would +be +a +mistake +to +say +that +happiness +necessarily +springs +from +the +absurd +discovery +it +happens +as +well +that +the +feeling +of +the +absurd +springs +from +happiness +i +conclude +that +all +is +well +says +cedipus +and +that +remark +is +sacred +it +echoes +in +the +wild +and +limited +universe +of +man +it +teaches +that +all +is +not +has +not +been +exhausted +it +drives +out +of +this +world +a +god +who +had +come +into +it +with +dissatisfaction +and +a +preference +for +futile +sufferings +it +makes +of +fate +a +human +matter +which +must +be +settled +among +men +all +sisyphus +silent +joy +is +contained +therein +his +fate +belongs +to +him +his +rock +is +his +thing +likewise +the +absurd +man +when +he +contemplates +his +torment +silences +all +the +idols +in +the +universe +suddenly +restored +to +its +silence +the +myriad +wondering +little +voices +of +the +earth +rise +up +unconscious +secret +calls +invitations +from +all +the +faces +they +are +the +necessary +reverse +and +price +of +victory +there +is +no +sun +without +shadow +and +it +is +es +sential +to +know +the +night +the +absurd +man +says +yes +and +his +effort +will +henceforth +be +unceasing +if +there +is +a +personal +fate +there +is +no +higher +destiny +or +at +least +there +is +but +one +which +he +concludes +is +inevitable +and +despicable +for +the +rest +he +knows +himself +to +be +the +master +of +his +days +at +that +subtle +moment +when +man +glances +backward +over +his +life +sisyphus +returning +toward +his +rock +in +that +slight +pivoting +he +contemplates +that +series +of +unrelated +actions +which +becomes +his +fate +created +by +him +combined +under +his +memory +s +eye +and +soon +sealed +by +his +death +thus +convinced +of +the +wholly +human +origin +of +all +that +is +human +a +blind +man +eager +to +see +who +knows +that +the +night +has +no +end +he +is +still +on +the +go +the +rock +is +still +rolling +i +leave +sisyphus +at +the +foot +of +the +mountain +one +always +finds +one +s +burden +again +but +sisyphus +teaches +the +higher +fidelity +that +negates +the +gods +and +raises +rocks +he +too +concludes +that +all +is +well +this +universe +henceforth +without +a +master +seems +to +him +neither +sterile +nor +futile +each +atom +of +that +stone +each +mineral +flake +of +that +night +filled +mountain +in +itself +forms +a +world +the +struggle +itself +toward +the +heights +is +enough +to +fill +a +man +s +heart +one +must +imagine +sisyphus +happy +appendix +hope +and +the +absurd +in +the +work +of +franz +kafka +the +whole +art +of +kafka +consists +in +forcing +the +reader +to +reread +his +endings +or +his +absence +of +endings +suggest +explanations +which +however +are +not +revealed +in +clear +language +but +before +they +seem +justified +require +that +the +story +be +reread +from +another +point +of +view +sometimes +there +is +a +double +possibility +of +interpretation +whence +appears +the +necessity +for +two +readings +this +is +what +the +author +wanted +but +it +would +be +wrong +to +try +to +interpret +everything +in +kafka +in +detail +a +symbol +is +always +in +general +and +however +precise +its +translation +an +artist +can +restore +to +it +only +its +movement +there +is +no +word +for +word +rendering +moreover +nothing +is +harder +to +understand +than +a +symbolic +work +a +symbol +always +transcends +the +one +who +makes +use +of +it +and +makes +him +say +in +reality +more +than +he +is +aware +of +expressing +in +this +regard +the +surest +means +of +getting +hold +of +it +is +not +to +provoke +it +to +begin +the +work +without +a +preconceived +attitude +and +not +to +look +for +its +hidden +currents +for +kafka +in +particular +it +is +fair +to +agree +to +his +rules +to +approach +the +drama +through +its +externals +and +the +novel +through +its +form +at +first +glance +and +for +a +casual +reader +they +are +disturbing +adventures +that +carry +off +quaking +and +dogged +characters +into +pursuit +of +problems +they +never +formulate +in +the +trial +joseph +k +is +accused +but +he +doesn +t +know +of +what +he +is +doubtless +eager +to +defend +himself +but +he +doesn +t +know +why +the +lawyers +find +his +case +difficult +meanwhile +he +does +not +neglect +to +love +to +eat +or +to +read +his +paper +then +he +is +judged +but +the +courtroom +is +very +dark +he +doesn +t +understand +much +he +merely +assumes +that +he +is +condemned +but +to +what +he +barely +wonders +at +times +he +suspects +just +the +same +and +he +continues +living +some +time +later +two +well +dressed +and +polite +gentlemen +come +to +get +him +and +invite +him +to +follow +them +most +courteously +they +lead +him +into +a +wretched +suburb +put +his +head +on +a +stone +and +slit +his +throat +before +dying +the +condemned +man +says +merely +like +a +dog +you +see +that +it +is +hard +to +speak +of +a +symbol +in +a +tale +whose +most +obvious +quality +just +happens +to +be +naturalness +but +naturalness +is +a +hard +category +to +understand +there +are +works +in +which +the +event +seems +natural +to +the +reader +but +there +are +others +rarer +to +be +sure +in +which +the +character +considers +natural +what +happens +to +him +by +an +odd +but +obvious +paradox +the +more +extraordinary +the +character +s +adventures +are +the +more +noticeable +will +be +the +naturalness +of +the +story +it +is +in +proportion +to +the +divergence +we +feel +between +the +strangeness +of +a +man +s +life +and +the +simplicity +with +which +that +man +accepts +it +it +seems +that +this +naturalness +is +kafka +s +and +precisely +one +is +well +aware +what +the +trial +means +people +have +spoken +of +an +image +of +the +human +condition +to +be +sure +yet +it +is +both +simpler +and +more +complex +i +mean +that +the +significance +of +the +novel +is +more +particular +and +more +personal +to +kafka +to +a +certain +degree +he +is +the +one +who +does +the +talking +even +though +it +is +me +he +confesses +he +lives +and +he +is +condemned +he +learns +this +on +the +first +pages +of +the +novel +he +is +pursuing +in +this +world +and +if +he +tries +to +cope +with +this +he +nonetheless +does +so +without +surprise +he +will +never +show +sufficient +astonishment +at +this +lack +of +astonishment +it +is +by +such +contradictions +that +the +first +signs +of +the +absurd +work +are +recognized +the +mind +projects +into +the +concrete +its +spiritual +tragedy +and +it +can +do +so +solely +by +means +of +a +perpetual +paradox +which +confers +on +colors +the +power +to +express +the +void +and +on +daily +gestures +the +strength +to +translate +eternal +ambitions +likewise +the +castle +is +perhaps +a +theology +in +action +but +it +is +first +of +all +the +individual +adventure +of +a +soul +in +quest +of +its +grace +of +a +man +who +asks +of +this +world +s +objects +their +royal +secret +and +of +women +the +signs +of +the +god +that +sleeps +in +them +metamorphosis +in +turn +certainly +represents +the +horrible +imagery +of +an +ethic +of +lucidity +but +it +is +also +the +product +of +that +incalculable +amazement +man +feels +at +being +conscious +of +the +beast +he +becomes +effortlessly +in +this +fundamental +ambiguity +lies +kafka +s +secret +these +perpetual +oscillations +between +the +natural +and +the +extraordinary +the +individual +and +the +universal +the +tragic +and +the +everyday +the +absurd +and +the +logical +are +found +throughout +his +work +and +give +it +both +its +resonance +and +its +meaning +these +are +the +paradoxes +that +must +be +enumerated +the +contradictions +that +must +be +strengthened +in +order +to +understand +the +absurd +work +a +symbol +indeed +assumes +two +planes +two +worlds +of +ideas +and +sensations +and +a +dictionary +of +correspondences +between +them +this +lexicon +is +the +hardest +thing +to +draw +up +but +awaking +to +the +two +worlds +brought +face +to +face +is +tantamount +to +getting +on +the +trail +of +their +secret +relationships +in +kafka +these +two +worlds +are +that +of +everyday +life +on +the +one +hand +and +on +the +other +that +of +supernatural +anxiety +it +seems +that +we +are +witnessing +here +an +interminable +exploitation +of +nietzsche +s +remark +great +problems +are +in +the +street +there +is +in +the +human +condition +and +this +is +a +commonplace +of +all +literatures +a +basic +absurdity +as +well +as +an +implacable +nobility +the +two +coincide +as +is +natural +both +of +them +are +represented +let +me +repeat +in +the +ridiculous +divorce +separating +our +spiritual +excesses +and +the +ephemeral +joys +of +the +body +the +absurd +thing +is +that +it +should +be +the +soul +of +this +body +which +it +transcends +so +inordinately +whoever +would +like +to +represent +this +absurdity +must +give +it +life +in +a +series +of +parallel +contrasts +thus +it +is +that +kafka +expresses +tragedy +by +the +everyday +and +the +absurd +by +the +logical +an +actor +lends +more +force +to +a +tragic +character +the +more +careful +he +is +not +to +exaggerate +it +if +he +is +moderate +the +horror +he +inspires +will +be +immoderate +in +this +regard +greek +tragedy +is +rich +in +lessons +in +a +tragic +work +fate +always +makes +itself +felt +better +in +the +guise +of +logic +and +naturalness +cedipus +s +fate +is +announced +in +advance +it +is +decided +supernaturally +that +he +will +commit +the +murder +and +the +incest +the +drama +s +whole +effort +is +to +show +the +logical +system +which +from +deduction +to +deduction +will +crown +the +hero +s +misfortune +merely +to +announce +to +us +that +uncommon +fate +is +scarcely +horrible +because +it +is +improbable +but +if +its +necessity +is +demonstrated +to +us +in +the +framework +of +everyday +life +society +state +familiar +emotion +then +the +horror +is +hallowed +in +that +revolt +that +shakes +man +and +makes +him +say +that +is +not +possible +there +is +an +element +of +desperate +certainty +that +that +can +be +this +is +the +whole +secret +of +greek +tragedy +or +at +least +of +one +of +its +aspects +for +there +is +another +which +by +a +reverse +method +would +help +us +to +understand +kafka +better +the +human +heart +has +a +tiresome +tendency +to +label +as +fate +only +what +crushes +it +but +happiness +likewise +in +its +way +is +without +reason +since +it +is +inevitable +modern +man +however +takes +the +credit +for +it +himself +when +he +doesn +t +fail +to +recognize +it +much +could +be +said +on +the +contrary +about +the +privileged +fates +of +greek +tragedy +and +those +favored +in +legend +who +like +ulysses +in +the +midst +of +the +worst +adventures +are +saved +from +themselves +it +was +not +so +easy +to +return +to +ithaca +what +must +be +remembered +in +any +case +is +that +secret +complicity +that +joins +the +logical +and +the +everyday +to +the +tragic +this +is +why +samsa +the +hero +of +metamorphosis +is +a +traveling +salesman +this +is +why +the +only +thing +that +disturbs +him +in +the +strange +adventure +that +makes +a +vermin +of +him +is +that +his +boss +will +be +angry +at +his +absence +legs +and +feelers +grow +out +on +him +his +spine +arches +up +white +spots +appear +on +his +belly +and +i +shall +not +say +that +this +does +not +astonish +him +for +the +effect +would +be +spoiled +but +it +causes +him +a +slight +annoyance +the +whole +art +of +kafka +is +in +that +distinction +in +his +central +work +the +castle +the +details +of +everyday +life +stand +out +and +yet +in +that +strange +novel +in +which +nothing +concludes +and +everything +begins +over +again +it +is +the +essential +adventure +of +a +soul +in +quest +of +its +grace +that +is +represented +that +translation +of +the +problem +into +action +that +coincidence +of +the +general +and +the +particular +are +recognized +likewise +in +the +little +artifices +that +belong +to +every +great +creator +in +the +trial +the +hero +might +have +been +named +schmidt +or +franz +kafka +but +he +is +named +joseph +k +he +is +not +kafka +and +yet +he +is +kafka +he +is +an +average +european +he +is +like +everybody +else +but +he +is +also +the +entity +k +who +is +the +x +of +this +flesh +and +blood +equation +likewise +if +kafka +wants +to +express +the +absurd +he +will +make +use +of +consistency +you +know +the +story +of +the +crazy +man +who +was +fishing +in +a +bathtub +a +doctor +with +ideas +as +to +psychiatric +treatments +asked +him +if +they +were +biting +to +which +he +received +the +harsh +reply +of +course +not +you +fool +since +this +is +a +bathtub +that +story +belongs +to +the +baroque +type +but +in +it +can +be +grasped +quite +clearly +to +what +a +degree +the +absurd +effect +is +linked +to +an +excess +of +logic +kafka +s +world +is +in +truth +an +indescribable +universe +in +which +man +allows +himself +the +tormenting +luxury +of +fishing +in +a +bathtub +knowing +that +nothing +will +come +of +it +consequently +i +recognize +here +a +work +that +is +absurd +in +its +principles +as +for +the +trial +for +instance +i +can +indeed +say +that +it +is +a +complete +success +flesh +wins +out +nothing +is +lacking +neither +the +unexpressed +revolt +but +it +is +what +is +writing +nor +lucid +and +mute +despair +but +it +is +what +is +creating +nor +that +amazing +freedom +of +manner +which +the +characters +of +the +novel +exemplify +until +their +ultimate +death +yet +this +world +is +not +so +closed +as +it +seems +into +this +universe +devoid +of +progress +kafka +is +going +to +introduce +hope +in +a +strange +form +in +this +regard +the +trial +and +the +castle +do +not +follow +the +same +direction +they +complement +each +other +the +barely +perceptible +progression +from +one +to +the +other +represents +a +tremendous +conquest +in +the +realm +of +evasion +the +trial +propounds +a +problem +which +the +castle +to +a +certain +degree +solves +the +first +describes +according +to +a +quasi +scientific +method +and +without +concluding +the +second +to +a +certain +degree +explains +the +trial +diagnoses +and +the +castle +imagines +a +treatment +but +the +remedy +proposed +here +does +not +cure +it +merely +brings +the +malady +back +into +normal +life +it +helps +to +accept +it +in +a +certain +sense +let +us +think +of +kierkegaard +it +makes +people +cherish +it +the +land +surveyor +k +cannot +imagine +another +anxiety +than +the +one +that +is +tormenting +him +the +very +people +around +him +become +attached +to +that +void +and +that +nameless +pain +as +if +suffering +assumed +in +this +case +a +privileged +aspect +how +i +need +you +frieda +says +to +k +how +forsaken +i +feel +since +knowing +you +when +you +are +not +with +me +this +subtle +remedy +that +makes +us +love +what +crushes +us +and +makes +hope +spring +up +in +a +world +without +issue +this +sudden +leap +through +which +everything +is +changed +is +the +secret +of +the +existential +revolution +and +of +the +castle +itself +few +works +are +more +rigorous +in +their +development +than +the +castle +k +is +named +land +surveyor +to +the +castle +and +he +arrives +in +the +village +but +from +the +village +to +the +castle +it +is +impossible +to +communicate +for +hundreds +of +pages +k +persists +in +seeking +his +way +makes +every +advance +uses +trickery +and +expedients +never +gets +angry +and +with +disconcerting +good +will +tries +to +assume +the +duties +entrusted +to +him +each +chapter +is +a +new +frustration +and +also +a +new +beginning +it +is +not +logic +but +consistent +method +the +scope +of +that +insistence +constitutes +the +work +s +tragic +quality +when +k +telephones +to +the +castle +he +hears +confused +mingled +voices +vague +laughs +distant +invitations +that +is +enough +to +feed +his +hope +like +those +few +signs +appearing +in +summer +skies +or +those +evening +anticipations +which +make +up +our +reason +for +living +here +is +found +the +secret +of +the +melancholy +peculiar +to +kafka +the +same +in +truth +that +is +found +in +proust +s +work +or +in +the +landscape +of +plotinus +a +nostalgia +for +a +lost +paradise +i +become +very +sad +says +olga +when +barnabas +tells +me +in +the +morning +that +he +is +going +to +the +castle +that +probably +futile +trip +that +probably +wasted +day +that +probably +empty +hope +probably +on +this +implication +kafka +gambles +his +entire +work +but +nothing +avails +the +quest +of +the +eternal +here +is +meticulous +and +those +inspired +automata +kafka +s +characters +provide +us +with +a +precise +image +of +what +we +should +be +if +we +were +deprived +of +our +distractions +and +utterly +consigned +to +the +humiliations +of +the +divine +in +the +castle +that +surrender +to +the +everyday +becomes +an +ethic +the +great +hope +of +k +is +to +get +the +castle +to +adopt +him +unable +to +achieve +this +alone +his +whole +effort +is +to +deserve +this +favor +by +becoming +an +inhabitant +of +the +village +by +losing +the +status +of +foreigner +that +everyone +makes +him +feel +what +he +wants +is +an +occupation +a +home +the +life +of +a +healthy +normal +man +he +can +t +stand +his +madness +any +longer +he +wants +to +be +reasonable +he +wants +to +cast +off +the +peculiar +curse +that +makes +him +a +stranger +to +the +village +the +episode +of +frieda +is +significant +in +this +regard +if +he +takes +as +his +mistress +this +woman +who +has +known +one +of +the +castle +s +officials +this +is +because +of +her +past +he +derives +from +her +something +that +transcends +him +while +being +aware +of +what +makes +her +forever +unworthy +of +the +castle +this +makes +one +think +of +kierkegaard +s +strange +love +for +regina +olsen +in +certain +men +the +fire +of +eternity +consuming +them +is +great +enough +for +them +to +burn +in +it +the +very +heart +of +those +closest +to +them +the +fatal +mistake +that +consists +in +giving +to +god +what +is +not +god +s +is +likewise +the +subject +of +this +episode +of +the +castle +but +for +kafka +it +seems +that +this +is +not +a +mistake +it +is +a +doctrine +and +a +leap +there +is +nothing +that +is +not +god +s +even +more +significant +is +the +fact +that +the +land +surveyor +breaks +with +frieda +in +order +to +go +toward +the +barnabas +sisters +for +the +barnabas +family +is +the +only +one +in +the +village +that +is +utterly +forsaken +by +the +castle +and +by +the +village +itself +amalia +the +elder +sister +has +rejected +the +shameful +propositions +made +her +by +one +of +the +castle +s +officials +the +immoral +curse +that +followed +has +forever +cast +her +out +from +the +love +of +god +being +incapable +of +losing +one +s +honor +for +god +amounts +to +making +oneself +unworthy +of +his +grace +you +recognize +a +theme +familiar +to +existential +philosophy +truth +contrary +to +morality +at +this +point +things +are +far +reaching +for +the +path +pursued +by +kafka +s +hero +from +frieda +to +the +barnabas +sisters +is +the +very +one +that +leads +from +trusting +love +to +the +deification +of +the +absurd +here +again +kafka +s +thought +runs +parallel +to +kierkegaard +it +is +not +surprising +that +the +barnabas +story +is +placed +at +the +end +of +the +book +the +land +surveyor +s +last +attempt +is +to +recapture +god +through +what +negates +him +to +recognize +him +not +according +to +our +categories +of +goodness +and +beauty +but +behind +the +empty +and +hideous +aspects +of +his +indifference +of +his +injustice +and +of +his +hatred +that +stranger +who +asks +the +castle +to +adopt +him +is +at +the +end +of +his +voyage +a +little +more +exiled +because +this +time +he +is +unfaithful +to +himself +forsaking +morality +logic +and +intellectual +truths +in +order +to +try +to +enter +endowed +solely +with +his +mad +hope +the +desert +of +divine +grace +the +word +hope +used +here +is +not +ridiculous +on +the +contrary +the +more +tragic +the +condition +described +by +kafka +the +firmer +and +more +aggressive +that +hope +becomes +the +more +truly +absurd +the +trial +is +the +more +moving +and +illegitimate +the +impassioned +leap +of +the +castle +seems +but +we +find +here +again +in +a +pure +state +the +paradox +of +existential +thought +as +it +is +expressed +for +instance +by +kierkegaard +earthly +hope +must +be +killed +only +then +can +one +be +saved +by +true +hope +which +can +be +translated +one +has +to +have +written +the +trial +to +undertake +the +castle +most +of +those +who +have +spoken +of +kafka +have +indeed +defined +his +work +as +a +desperate +cry +with +no +recourse +left +to +man +but +this +calls +for +review +there +is +hope +and +hope +to +me +the +optimistic +work +of +henri +bordeaux +seems +peculiarly +discouraging +this +is +because +it +has +nothing +for +the +discriminating +malraux +s +thought +on +the +other +hand +is +always +bracing +but +in +these +two +cases +neither +the +same +hope +nor +the +same +despair +is +at +issue +i +see +merely +that +the +absurd +work +itself +may +lead +to +the +infidelity +i +want +to +avoid +the +work +which +was +but +an +ineffectual +repetition +of +a +sterile +condition +a +lucid +glorification +ol +the +ephemeral +becomes +here +a +cradle +of +illusions +it +explains +it +gives +a +shape +to +hope +the +creator +can +no +longer +divorce +himself +from +it +it +is +not +the +tragic +game +it +was +to +be +it +gives +a +meaning +to +the +author +s +life +it +is +strange +in +any +case +that +works +of +related +inspiration +like +those +of +kafka +kierkegaard +or +chestov +those +in +short +of +existential +novelists +and +philosophers +completely +oriented +toward +the +absurd +and +its +consequences +should +in +the +long +run +lead +to +that +tremendous +cry +of +hope +they +embrace +the +god +that +consumes +them +it +is +through +humility +that +hope +enters +in +for +the +absurd +of +this +existence +assures +them +a +little +more +of +supernatural +reality +if +the +course +of +this +life +leads +to +god +there +is +an +outcome +after +all +and +the +perseverance +the +insistence +with +which +kierkegaard +chestov +and +kafka +s +heroes +repeat +their +itineraries +are +a +special +warrant +of +the +uplifting +power +of +that +certainty +kafka +refuses +his +god +moral +nobility +evidence +virtue +coherence +but +only +the +better +to +fall +into +his +arms +the +absurd +is +recognized +accepted +and +man +is +resigned +to +it +but +from +then +on +we +know +that +it +has +ceased +to +be +the +absurd +within +the +limits +of +the +human +condition +what +greater +hope +than +the +hope +that +allows +an +escape +from +that +condition +as +i +see +once +more +existential +thought +in +this +regard +and +contrary +to +current +opinion +is +steeped +in +a +vast +hope +the +very +hope +which +at +the +time +of +early +christianity +and +the +spreading +of +the +good +news +inflamed +the +ancient +world +but +in +that +leap +that +characterizes +all +existential +thought +in +that +insistence +in +that +surveying +of +a +divinity +devoid +of +surface +how +can +one +fail +to +see +the +mark +of +a +lucidity +that +repudiates +itself +it +is +merely +claimed +that +this +is +pride +abdicating +to +save +itself +such +a +repudiation +would +be +fecund +but +this +does +not +change +that +the +moral +value +of +lucidity +cannot +be +diminished +in +my +eyes +by +calling +it +sterile +like +all +pride +for +a +truth +also +by +its +very +definition +is +sterile +all +facts +are +in +a +world +where +everything +is +given +and +nothing +is +explained +the +fecundity +of +a +value +or +of +a +metaphysic +is +a +notion +devoid +of +meaning +in +any +case +you +see +here +in +what +tradition +of +thought +kafka +s +work +takes +its +place +it +would +indeed +be +intelligent +to +consider +as +inevitable +the +progression +leading +from +the +trial +to +the +castle +joseph +k +and +the +land +surveyor +k +are +merely +two +poles +that +attract +kafka +i +shall +speak +like +him +and +say +that +his +work +is +probably +not +absurd +but +that +should +not +deter +us +from +seeing +its +nobility +and +universality +they +come +from +the +fact +that +he +managed +to +represent +so +fully +the +everyday +passage +from +hope +to +grief +and +from +desperate +wisdom +to +intentional +blindness +his +work +is +universal +a +really +absurd +work +is +not +universal +to +the +extent +to +which +it +represents +the +emotionally +moving +face +of +man +fleeing +humanity +deriving +from +his +contradictions +reasons +for +believing +reasons +for +hoping +from +his +fecund +despairs +and +calling +life +his +terrifying +apprenticeship +in +death +it +is +universal +because +its +inspiration +is +religious +as +in +all +religions +man +is +freed +of +the +weight +of +his +own +life +but +if +i +know +that +if +i +can +even +admire +it +i +also +know +that +i +am +not +seeking +what +is +universal +but +what +is +true +the +two +may +well +not +coincide +this +particular +view +will +be +better +understood +if +i +say +that +truly +hopeless +thought +just +happens +to +be +defined +by +the +opposite +criteria +and +that +the +tragic +work +might +be +the +work +that +after +all +future +hope +is +exiled +describes +the +life +of +a +happy +man +the +more +exciting +life +is +the +more +absurd +is +the +idea +of +losing +it +this +is +perhaps +the +secret +of +that +proud +aridity +felt +in +nietzsche +s +work +in +this +connection +nietzsche +appears +to +be +the +only +artist +to +have +derived +the +extreme +consequences +of +an +aesthetic +of +the +absurd +inasmuch +as +his +final +message +lies +in +a +sterile +and +conquering +lucidity +and +an +obstinate +negation +of +any +supernatural +consolation +the +preceding +should +nevertheless +suffice +to +bring +out +the +capital +importance +of +kafka +in +the +framework +of +this +essay +here +we +are +carried +to +the +confines +of +human +thought +in +the +fullest +sense +of +the +word +it +can +be +said +that +everything +in +that +work +is +essential +in +any +case +it +propounds +the +absurd +problem +altogether +if +one +wants +to +compare +these +conclusions +with +our +initial +remarks +the +content +with +the +form +the +secret +meaning +of +the +castle +with +the +natural +art +in +which +it +is +molded +k +s +passionate +proud +quest +with +the +everyday +setting +against +which +it +takes +place +then +one +will +realize +what +may +be +its +greatness +for +if +nostalgia +is +the +mark +of +the +human +perhaps +no +one +has +given +such +flesh +and +volume +to +these +phantoms +of +regret +but +at +the +same +time +will +be +sensed +what +exceptional +nobility +the +absurd +work +calls +for +which +is +perhaps +not +found +here +if +the +nature +of +art +is +to +bind +the +general +to +the +particular +ephemeral +eternity +of +a +drop +of +water +to +the +play +of +its +lights +it +is +even +truer +to +judge +the +greatness +of +the +absurd +writer +by +the +distance +he +is +able +to +introduce +between +these +two +worlds +his +secret +consists +in +being +able +to +find +the +exact +point +where +they +meet +in +their +greatest +disproportion +and +to +tell +the +truth +this +geometrical +locus +of +man +and +the +inhuman +is +seen +everywhere +by +the +pure +in +heart +if +faust +and +don +quixote +are +eminent +creations +of +art +this +is +because +of +the +immeasurable +nobilities +they +point +out +to +us +with +their +earthly +hands +yet +a +moment +always +comes +when +the +mind +negates +the +truths +that +those +hands +can +touch +a +moment +comes +when +the +creation +ceases +to +be +taken +tragically +it +is +merely +taken +seriously +then +man +is +concerned +with +hope +but +that +is +not +his +business +his +business +is +to +turn +away +from +subterfuge +yet +this +is +just +what +i +find +at +the +conclusion +of +the +vehement +proceedings +kafka +institutes +against +the +whole +universe +his +unbelievable +verdict +is +this +hideous +and +upsetting +world +in +which +the +very +moles +dare +to +hope +summer +in +algiers +for +jacques +heurgon +the +loves +we +share +with +a +city +are +often +secret +loves +old +walled +towns +like +paris +prague +and +even +florence +are +closed +in +on +themselves +and +hence +limit +the +world +that +belongs +to +them +but +algiers +together +with +certain +other +privileged +places +such +as +cities +on +the +sea +opens +to +the +sky +like +a +mouth +or +a +wound +in +algiers +one +loves +the +commonplaces +the +sea +at +the +end +of +every +street +a +certain +volume +of +sunlight +the +beauty +of +the +race +and +as +always +in +that +unashamed +offering +there +is +a +secret +fragrance +in +paris +it +is +possible +to +be +homesick +for +space +and +a +beating +of +wings +here +at +least +man +is +gratified +in +every +wish +and +sure +of +his +desires +can +at +last +measure +his +possessions +probably +one +has +to +live +in +algiers +for +some +time +in +order +to +realize +how +paralyzing +an +excess +of +nature +s +bounty +can +be +there +is +nothing +here +for +whoever +would +learn +educate +himself +or +better +himself +this +country +has +no +lessons +to +teach +it +neither +promises +nor +affords +glimpses +it +is +satisfied +to +give +but +in +abundance +it +is +completely +accessible +to +the +eyes +and +you +know +it +the +moment +you +enjoy +it +its +pleasures +are +without +remedy +and +its +joys +without +hope +above +all +it +requires +clairvoyant +souls +that +is +without +solace +it +insists +upon +one +s +performing +an +act +of +lucidity +as +one +performs +an +act +of +faith +strange +country +that +gives +the +man +it +nourishes +both +his +splendor +and +his +misery +it +is +not +surprising +that +the +sensual +riches +granted +to +a +sensitive +man +of +these +regions +should +coincide +with +the +most +extreme +destitution +no +truth +fails +to +carry +with +it +its +bitterness +how +can +one +be +surprised +then +if +i +never +feel +more +affection +for +the +face +of +this +country +than +amid +its +poorest +men +during +their +entire +youth +men +find +here +a +life +in +proportion +to +their +beauty +then +later +on +the +downhill +slope +and +obscurity +they +wagered +on +the +flesh +but +knowing +they +were +to +lose +in +algiers +whoever +is +young +and +alive +finds +sanctuary +and +occasion +for +triumphs +everywhere +in +the +bay +the +sun +the +red +and +white +games +on +the +seaward +terraces +the +flowers +and +sports +stadiums +the +cool +legged +girls +but +for +whoever +has +lost +his +youth +there +is +nothing +to +cling +to +and +nowhere +where +melancholy +can +escape +itself +elsewhere +italian +terraces +european +cloisters +or +the +profile +of +the +provencal +hills +all +places +where +man +can +flee +his +humanity +and +gently +liberate +himself +from +himself +but +everything +here +calls +for +solitude +and +the +blood +of +young +men +goethe +on +his +deathbed +calls +for +light +and +this +is +a +historic +remark +at +belcourt +and +bab +el +oued +old +men +seated +in +the +depths +of +cafes +listen +to +the +bragging +of +young +men +with +plastered +hair +summer +betrays +these +beginnings +and +ends +to +us +in +algiers +during +those +months +the +city +is +deserted +but +the +poor +remain +and +the +sky +we +join +the +former +as +they +go +down +toward +the +harbor +and +man +s +treasures +warmth +of +the +water +and +the +brown +bodies +of +women +in +the +evening +sated +with +such +wealth +they +return +to +the +oilcloth +and +kerosene +lamp +that +constitute +the +whole +setting +of +their +life +in +algiers +no +one +says +go +for +a +swim +but +rather +indulge +in +a +swim +the +implications +are +clear +people +swim +in +the +harbor +and +go +to +rest +on +the +buoys +anyone +who +passes +near +a +buoy +where +a +pretty +girl +already +is +sunning +herself +shouts +to +his +friends +i +tell +you +it +s +a +seagull +these +are +healthy +amusements +they +must +obviously +constitute +the +ideal +of +those +youths +since +most +of +them +continue +the +same +life +in +the +winter +undressing +every +day +at +noon +for +a +frugal +lunch +in +the +sun +not +that +they +have +read +the +boring +sermons +of +the +nudists +those +protestants +of +the +flesh +there +is +a +theory +of +the +body +quite +as +tiresome +as +that +of +the +mind +but +they +are +simply +comfortable +in +the +sunlight +the +importance +of +this +custom +for +our +epoch +can +never +be +overestimated +for +the +first +time +in +two +thousand +years +the +body +has +appeared +naked +on +beaches +for +twenty +centuries +men +have +striven +to +give +decency +to +greek +insolence +and +naivete +to +diminish +the +flesh +and +complicate +dress +today +despite +that +history +young +men +running +on +mediterranean +beaches +repeat +the +gestures +of +the +athletes +of +delos +and +living +thus +among +bodies +and +through +one +s +body +one +becomes +aware +that +it +has +its +connotations +its +life +and +to +risk +nonsense +a +psychology +of +its +own +the +body +s +evolution +like +that +of +the +mind +has +its +history +its +vicissitudes +its +progress +and +its +deficiency +with +this +distinction +however +color +when +you +frequent +the +beach +in +summer +you +become +aware +of +a +simultaneous +progression +of +all +skins +from +white +to +golden +to +tanned +ending +up +in +a +tobacco +color +which +marks +the +extreme +limit +of +the +effort +of +transformation +of +which +the +body +is +capable +above +the +harbor +stands +the +set +of +white +cubes +of +the +kasbah +when +you +are +at +water +level +against +the +sharp +while +background +of +the +arab +town +the +bodies +describe +a +copper +colored +frieze +and +as +the +month +of +august +progresses +and +the +sun +grows +the +white +of +the +houses +becomes +more +blinding +and +skins +take +on +a +darker +warmth +how +can +one +fail +to +participate +then +in +that +dialogue +of +stone +and +flesh +in +tune +with +the +sun +and +seasons +the +whole +morning +has +been +spent +in +diving +in +bursts +of +laughter +amid +splashing +water +in +vigorous +paddles +around +the +red +and +black +freighters +those +from +norway +with +all +the +scents +of +wood +those +that +come +from +germany +full +of +the +smell +of +oil +those +that +go +up +and +down +the +coast +and +smell +of +wine +and +old +casks +at +the +hour +when +the +sun +overflows +from +every +corner +of +the +sky +at +once +the +orange +canoe +loaded +with +brown +bodies +brings +us +home +in +a +mad +race +and +when +having +suddenly +interrupted +the +cadenced +beat +of +the +double +paddle +s +bright +colored +wings +we +glide +slowly +in +the +calm +water +of +the +inner +harbor +how +can +i +fail +to +feel +that +i +am +piloting +through +the +smooth +waters +a +savage +cargo +of +gods +in +whom +i +recognize +my +brothers +but +at +the +other +end +of +the +city +summer +is +already +offering +us +by +way +of +contrast +its +other +riches +i +mean +its +silence +and +its +boredom +that +silence +is +not +always +of +the +same +quality +depending +on +whether +it +springs +from +the +shade +or +the +sunlight +there +is +the +silence +of +noon +on +the +place +du +gouvernement +in +the +shade +of +the +trees +surrounding +it +arabs +sell +for +five +sous +glasses +of +iced +lemonade +flavored +with +orange +flowers +their +cry +cool +cool +can +be +heard +across +the +empty +square +after +their +cry +silence +again +falls +under +the +burning +sun +in +the +vendor +s +jug +the +ice +moves +and +i +can +hear +its +tinkle +there +is +the +silence +of +the +siesta +in +the +streets +of +the +marine +in +front +of +the +dirty +barbershops +it +can +be +measured +in +the +melodious +buzzing +of +flies +behind +the +hollow +reed +curtains +elsewhere +in +the +moorish +cafes +of +the +kasbah +the +body +is +silent +unable +to +tear +itself +away +to +leave +the +glass +of +tea +and +rediscover +time +with +the +pulsing +of +its +own +blood +but +above +all +there +is +the +silence +of +summer +evenings +those +brief +moments +when +day +topples +into +night +must +be +peopled +with +secret +signs +and +summons +for +my +algiers +to +be +so +closely +linked +to +them +when +i +spend +some +time +far +from +that +town +i +imagine +its +twilights +as +promises +of +happiness +on +the +hills +above +the +city +there +are +paths +among +the +mastics +and +olive +trees +and +toward +them +my +heart +turns +at +such +moments +i +see +flights +of +black +birds +rise +against +the +green +horizon +in +the +sky +suddenly +divested +of +its +sun +something +relaxes +a +whole +little +nation +of +red +clouds +stretches +out +until +it +is +absorbed +in +the +air +almost +immediately +afterward +appears +the +first +star +that +had +been +seen +taking +shape +and +consistency +in +the +depth +of +the +sky +and +then +suddenly +all +consuming +night +what +exceptional +quality +do +the +fugitive +algerian +evenings +possess +to +be +able +to +release +so +many +things +in +me +i +haven +t +time +to +tire +of +that +sweetness +they +leave +on +my +lips +before +it +has +disappeared +into +night +is +this +the +secret +of +its +persistence +this +country +s +affection +is +overwhelming +and +furtive +but +during +the +moment +it +is +present +one +s +heart +at +least +surrenders +completely +to +it +at +padovani +beach +the +dance +hall +is +open +every +day +and +in +that +huge +rectangular +box +with +its +entire +side +open +to +the +sea +the +poor +young +people +of +the +neighborhood +dance +until +evening +often +i +used +to +await +there +a +moment +of +exceptional +beauty +during +the +day +the +hall +is +protected +by +sloping +wooden +awnings +when +the +sun +goes +down +they +are +raised +then +the +hall +is +filled +with +an +odd +green +light +born +of +the +double +shell +of +the +sky +and +the +sea +when +one +is +seated +far +from +the +windows +one +sees +only +the +sky +and +silhouetted +against +it +the +faces +of +the +dancers +passing +in +succession +sometimes +a +waltz +is +being +played +and +against +the +green +background +the +black +profiles +whirl +obstinately +like +those +cut +out +silhouettes +that +are +attached +to +a +phonograph +s +turntable +night +comes +rapidly +after +this +and +with +it +the +lights +but +i +am +unable +to +relate +the +thrill +and +secrecy +that +subtle +instant +holds +for +me +i +recall +at +least +a +magnificent +tall +girl +who +had +danced +all +afternoon +she +was +wearing +a +jasmine +garland +on +her +tight +blue +dress +wet +with +perspiration +from +the +small +of +her +back +to +her +legs +she +was +laughing +as +she +danced +and +throwing +back +her +head +as +she +passed +the +tables +she +left +behind +her +a +mingled +scent +of +flowers +and +flesh +when +evening +came +i +could +no +longer +see +her +body +pressed +tight +to +her +partner +but +against +the +sky +whirled +alternating +spots +of +white +jasmine +and +black +hair +and +when +she +would +throw +back +her +swelling +breast +i +would +hear +her +laugh +and +see +her +partner +s +profile +suddenly +plunge +forward +i +owe +to +such +evenings +the +idea +i +have +of +innocence +in +any +case +i +learn +not +to +separate +these +creatures +bursting +with +violent +energy +from +the +sky +where +their +desires +whirl +in +the +neighborhood +movies +in +algiers +peppermint +lozenges +are +sometimes +sold +with +stamped +in +red +all +that +is +necessary +to +the +awakening +of +love +questions +when +will +you +marry +me +do +you +love +me +and +replies +madly +next +spring +after +having +prepared +the +way +you +pass +them +to +your +neighbor +who +answers +likewise +or +else +turns +a +deaf +ear +at +belcourt +marriages +have +been +arranged +this +way +and +whole +lives +been +pledged +by +the +mere +exchange +of +peppermint +lozenges +and +this +really +depicts +the +childlike +people +of +this +region +the +distinguishing +mark +of +youth +is +perhaps +a +magnificent +vocation +for +facile +joys +but +above +all +it +is +a +haste +to +live +that +borders +on +waste +at +belcourt +as +at +bab +el +oued +people +get +married +young +they +go +to +work +early +and +in +ten +years +exhaust +the +experience +of +a +lifetime +a +thirty +year +old +workman +has +already +played +all +the +cards +in +his +hand +he +awaits +the +end +between +his +wife +and +his +children +his +joys +have +been +sudden +and +merciless +as +has +been +his +life +one +realizes +that +he +is +born +of +this +country +where +everything +is +given +to +be +taken +away +in +that +plenty +and +profusion +life +follows +the +sweep +of +great +passions +sudden +exacting +and +generous +it +is +not +to +be +built +up +but +to +be +burned +up +stopping +to +think +and +becoming +better +are +out +of +the +question +the +notion +of +hell +for +instance +is +merely +a +funny +joke +here +such +imaginings +are +allowed +only +to +the +very +virtuous +and +i +really +think +that +virtue +is +a +meaningless +word +in +all +algeria +not +that +these +men +lack +principles +they +have +their +code +and +a +very +special +one +you +are +not +disrespectful +to +your +mother +you +see +that +your +wife +is +respected +in +the +street +you +show +consideration +for +a +pregnant +woman +you +don +t +double +up +on +an +adversary +because +that +looks +bad +whoever +does +not +observe +these +elementary +commandments +is +not +a +man +and +the +question +is +decided +this +strikes +me +as +fair +and +strong +there +are +still +many +of +us +who +automatically +observe +this +code +of +the +street +the +only +disinterested +one +i +know +but +at +the +same +time +the +shopkeeper +s +ethics +are +unknown +i +have +always +seen +faces +around +me +filled +with +pity +at +the +sight +of +a +man +between +two +policemen +and +before +knowing +whether +the +man +had +stolen +killed +his +father +or +was +merely +a +nonconformist +they +would +say +the +poor +fellow +or +else +with +a +hint +of +admiration +he +s +a +pirate +all +right +there +are +races +born +for +pride +and +life +they +are +the +ones +that +nourish +the +strangest +vocation +for +boredom +it +is +also +among +them +that +the +attitude +toward +death +is +the +most +repulsive +aside +from +sensual +pleasure +the +amusements +of +this +race +are +among +the +silliest +a +society +of +bowlers +and +association +banquets +the +three +franc +movies +and +parish +feasts +have +for +years +provided +the +recreation +of +those +over +thirty +algiers +sundays +are +among +the +most +sinister +how +then +could +this +race +devoid +of +spirituality +clothe +in +myths +the +profound +horror +of +its +life +everything +related +to +death +is +either +ridiculous +or +hateful +here +this +populace +without +religion +and +without +idols +dies +alone +after +having +lived +in +a +crowd +i +know +no +more +hideous +spot +than +the +cemetery +on +boulevard +bru +opposite +one +of +the +most +beautiful +landscapes +in +the +world +an +accumulation +of +bad +taste +among +the +black +fencings +allows +a +dreadful +melancholy +to +rise +from +this +spot +where +death +shows +her +true +likeness +everything +fades +say +the +heart +shaped +ex +votos +except +memory +and +all +insist +on +that +paltry +eternity +provided +us +cheaply +by +the +hearts +of +those +who +loved +us +the +same +words +fit +all +despairs +addressed +to +the +dead +man +they +speak +to +him +in +the +second +person +our +memory +will +never +forsake +you +lugubrious +pretense +which +attributes +a +body +and +desires +to +what +is +at +best +a +black +liquid +elsewhere +amid +a +deadly +profusion +of +marble +flowers +and +birds +this +bold +assertion +never +will +your +grave +be +without +flowers +but +never +fear +the +inscription +surrounds +a +gilded +stucco +bouquet +very +time +saving +for +the +living +like +those +immortelles +which +owe +their +pompous +name +to +the +gratitude +of +those +who +still +jump +onto +moving +buses +inasmuch +as +it +is +essential +to +keep +up +with +the +times +the +classic +warbler +is +sometimes +replaced +by +an +astounding +pearl +airplane +piloted +by +a +silly +angel +who +without +regard +for +logic +is +provided +with +an +impressive +pair +of +wings +yet +how +to +bring +out +that +these +images +of +death +are +never +separated +from +life +here +the +values +are +closely +linked +the +favorite +joke +of +algerian +undertakers +when +driving +an +empty +hearse +is +to +shout +want +a +ride +sister +to +any +pretty +girls +they +meet +on +the +way +there +is +no +objection +to +seeing +a +symbol +in +this +even +if +somewhat +untoward +it +may +seem +blasphemous +likewise +to +reply +to +the +announcement +of +a +death +while +winking +one +s +left +eye +poor +fellow +he +ll +never +sing +again +or +like +that +woman +of +oran +who +bad +never +loved +her +husband +god +gave +him +to +me +and +god +has +taken +him +from +me +but +all +in +all +i +see +nothing +sacred +in +death +and +am +well +aware +on +the +other +hand +of +the +distance +there +is +between +fear +and +respect +everything +here +suggests +the +horror +of +dying +in +a +country +that +invites +one +to +live +and +yet +it +is +under +the +very +walls +of +this +cemetery +that +the +young +of +belcourt +have +their +assignations +and +that +the +girls +offer +themselves +to +kisses +and +caresses +i +am +well +aware +that +such +a +race +cannot +be +accepted +by +all +here +intelligence +has +no +place +as +in +italy +this +race +is +indifferent +to +the +mind +it +has +a +cult +for +and +admiration +of +the +body +whence +its +strength +its +innocent +cynicism +and +a +puerile +vanity +which +explains +why +it +is +so +severely +judged +it +is +commonly +blamed +for +its +mentality +that +is +a +way +of +seeing +and +of +living +and +it +is +true +that +a +certain +intensity +of +life +is +inseparable +from +injustice +yet +here +is +a +rate +without +past +without +tradition +and +yet +not +without +poetry +but +a +poetry +whose +quality +i +know +well +harsh +carnal +far +from +tenderness +that +of +their +very +sky +the +only +one +in +truth +to +move +me +and +bring +me +inner +peace +the +contrary +of +a +civilized +nation +is +a +creative +nation +i +have +the +mad +hope +that +without +knowing +it +perhaps +these +barbarians +lounging +on +beaches +are +actually +modeling +the +image +of +a +culture +in +which +the +greatness +of +man +will +at +last +find +its +true +likeness +this +race +wholly +cast +into +its +present +lives +without +myths +without +solace +it +has +put +all +its +possessions +on +this +earth +and +therefore +remains +without +defense +against +death +all +the +gifts +of +physical +beauty +have +been +lavished +on +it +and +with +them +the +strange +avidity +that +always +accompanies +that +wealth +without +future +everything +that +is +done +here +shows +a +horror +of +stability +and +a +disregard +for +the +future +people +are +in +haste +to +live +and +if +an +art +were +to +be +born +here +it +would +obey +that +hatred +of +permanence +that +made +the +dorians +fashion +their +first +column +in +wood +and +yet +yes +one +can +find +measure +as +well +as +excess +in +the +violent +and +keen +face +of +this +race +in +this +summer +sky +with +nothing +tender +in +it +before +which +all +truths +can +be +uttered +and +on +which +no +deceptive +divinity +has +traced +the +signs +of +hope +or +of +redemption +between +this +sky +and +these +faces +turned +toward +it +nothing +on +which +to +hang +a +mythology +a +literature +an +ethic +or +a +religion +but +stones +flesh +stars +and +those +truths +the +hand +can +touch +to +feel +one +s +attachment +to +a +certain +region +one +s +love +for +a +certain +group +of +men +to +know +that +there +is +always +a +spot +where +one +s +heart +will +feel +at +peace +these +are +many +certainties +for +a +single +human +life +and +yet +this +is +not +enough +but +at +certain +moments +everything +yearns +for +that +spiritual +home +yes +we +must +go +back +there +there +indeed +is +there +anything +odd +in +finding +on +earth +that +union +that +plotinus +longed +for +unity +is +expressed +here +in +terms +of +sun +and +sea +the +heart +is +sensitive +to +it +through +a +certain +savor +of +flesh +which +constitutes +its +bitterness +and +its +grandeur +i +learn +that +there +is +no +superhuman +happiness +no +eternity +outside +the +sweep +of +days +these +paltry +and +essential +belongings +these +relative +truths +are +the +only +ones +to +stir +me +as +for +the +others +the +ideal +truths +i +have +not +enough +soul +to +understand +them +not +that +one +must +be +an +animal +but +i +find +no +meaning +in +the +happiness +of +angels +i +know +simply +that +this +sky +will +last +longer +than +i +and +what +shall +i +call +eternity +except +what +will +continue +after +my +death +i +am +not +expressing +here +the +creature +s +satisfaction +with +his +condition +it +is +quite +a +different +matter +it +is +not +always +easy +to +be +a +man +still +less +to +be +a +pure +man +but +being +pure +is +recovering +that +spiritual +home +where +one +can +feel +the +world +s +relationship +where +one +s +pulse +beats +coincide +with +the +violent +throbbing +of +the +two +o +clock +sun +it +is +well +known +that +one +s +native +land +is +always +recognized +at +the +moment +of +losing +it +for +those +who +are +too +uneasy +about +themselves +their +native +land +is +the +one +that +negates +them +i +should +not +like +to +be +brutal +or +seem +extravagant +but +after +all +what +negates +me +in +this +life +is +first +of +all +what +kills +me +everything +that +exalts +life +at +the +same +time +increases +its +absurdity +in +the +algerian +summer +i +learn +that +one +thing +only +is +more +tragic +than +suffering +and +that +is +the +life +of +a +happy +man +but +it +may +be +also +the +way +to +a +greater +life +because +it +leads +to +not +cheating +many +in +fact +feign +love +of +life +to +evade +love +itself +they +try +their +skill +at +enjoyment +and +at +indulging +in +experiences +but +this +is +illusory +it +requires +a +rare +vocation +to +be +a +sensualist +the +life +of +a +man +is +fulfilled +without +the +aid +of +his +mind +with +its +backward +and +forward +movements +at +one +and +the +same +time +its +solitude +and +its +presences +to +see +these +men +of +belcourt +working +protecting +their +wives +and +children +and +often +without +a +reproach +i +think +one +can +feel +a +secret +shame +to +be +sure +i +have +no +illusions +about +it +there +is +not +much +love +in +the +lives +i +am +speaking +of +i +ought +to +say +that +not +much +remains +but +at +least +they +have +evaded +nothing +there +are +words +i +have +never +really +understood +such +as +sin +yet +i +believe +these +men +have +never +sinned +against +life +for +if +there +is +a +sin +against +life +it +consists +perhaps +not +so +much +in +despairing +of +life +as +in +hoping +for +another +life +and +in +eluding +the +implacable +grandeur +of +this +life +these +men +have +not +cheated +gods +of +summer +they +were +at +twenty +by +their +enthusiasm +for +life +and +they +still +are +deprived +of +all +hope +i +have +seen +two +of +them +die +they +were +full +of +horror +but +silent +it +is +better +thus +from +pandora +s +box +where +all +the +ills +of +humanity +swarmed +the +greeks +drew +out +hope +after +all +the +others +as +the +most +dreadful +of +all +i +know +no +more +stirring +symbol +for +contrary +to +the +general +belief +hope +equals +resignation +and +to +live +is +not +to +resign +oneself +this +at +least +is +the +bitter +lesson +of +algerian +summers +but +already +the +season +is +wavering +and +summer +totters +the +first +september +rains +after +such +violence +and +hardening +are +like +the +liberated +earth +s +first +tears +as +if +for +a +few +days +this +country +tried +its +hand +at +tenderness +yet +at +the +same +period +the +carob +trees +cover +all +of +algeria +with +a +scent +of +love +in +the +evening +or +after +the +rain +the +whole +earth +its +womb +moist +with +a +seed +redolent +of +bitter +almond +rests +after +having +given +herself +to +the +sun +all +summer +long +and +again +that +scent +hallows +the +union +of +man +and +earth +and +awakens +in +us +the +only +really +virile +love +in +this +world +ephemeral +and +noble +the +minotaur +or +the +stop +in +oran +for +pierre +galindo +this +essay +dates +from +the +reader +will +have +to +bear +this +in +mind +to +judge +of +the +present +day +oran +impassioned +protests +from +that +beautiful +city +assure +me +as +a +matter +of +fact +that +all +the +imperfections +have +been +or +will +be +remedied +on +the +other +hand +the +beauties +extolled +in +this +essay +have +been +jealously +respected +happy +and +realistic +city +oran +has +no +further +need +of +writers +she +is +awaiting +tourists +there +are +no +more +deserts +there +are +no +more +islands +yet +there +is +a +need +for +them +in +order +to +understand +the +world +one +has +to +turn +away +from +it +on +occasion +in +order +to +serve +men +better +one +has +to +hold +them +at +a +distance +for +a +time +but +where +can +one +find +the +solitude +necessary +to +vigor +the +deep +breath +in +which +the +mind +collects +itself +and +courage +gauges +its +strength +there +remain +big +cities +simply +certain +conditions +are +required +the +cities +europe +offers +us +are +too +full +of +the +din +of +the +past +a +practiced +ear +can +make +out +the +flapping +of +wings +a +fluttering +of +souls +the +giddy +whirl +of +centuries +of +revolutions +of +fame +can +be +felt +there +there +one +cannot +forget +that +the +occident +was +forged +in +a +series +of +uproars +all +that +does +not +make +for +enough +silence +paris +is +often +a +desert +for +the +heart +but +at +certain +moments +from +the +heights +of +pere +lachaise +there +blows +a +revolutionary +wind +that +suddenly +fills +that +desert +with +flags +and +fallen +glories +so +it +is +with +certain +spanish +towns +with +florence +or +with +prague +salzburg +would +be +peaceful +without +mozart +but +from +time +to +time +there +rings +out +over +the +salzach +the +great +proud +cry +of +don +juan +as +he +plunges +toward +hell +vienna +seems +more +silent +she +is +a +youngster +among +cities +her +stones +are +no +older +than +three +centuries +and +their +youth +is +ignorant +of +melancholy +but +vienna +stands +at +a +crossroads +of +history +around +her +echoes +the +clash +of +empires +certain +evenings +when +the +sky +is +suffused +with +blood +the +stone +horses +on +the +ring +monuments +seem +to +take +wing +in +that +fleeting +moment +when +everything +is +reminiscent +of +power +and +history +can +he +distinctly +heard +under +the +charge +of +the +polish +squadrons +the +crashing +fall +of +the +ottoman +empire +that +does +not +make +for +enough +silence +either +to +be +sure +it +is +just +that +solitude +amid +others +that +men +come +looking +for +in +european +cities +at +least +men +with +a +purpose +in +life +there +they +can +choose +their +company +take +it +or +leave +it +how +many +minds +have +been +tempered +in +the +trip +between +their +hotel +room +and +the +old +stones +of +the +ile +saint +louis +it +is +true +that +others +have +died +there +of +isolation +as +for +the +first +at +any +rate +there +they +found +their +reasons +for +growing +and +asserting +themselves +they +were +alone +and +they +weren +t +alone +centuries +of +history +and +beauty +the +ardent +testimony +of +a +thousand +lives +of +the +past +accompanied +them +along +the +seine +and +spoke +to +them +both +of +traditions +and +of +conquests +but +their +youth +urged +them +to +invite +such +company +there +comes +a +time +there +come +periods +when +it +is +unwelcome +it +s +between +us +two +exclaims +rasti +gnac +facing +the +vast +mustiness +of +paris +two +yes +but +that +is +still +too +many +the +desert +itself +has +assumed +significance +it +has +been +glutted +with +poetry +for +all +the +world +s +sorrows +it +is +a +hallowed +spot +but +at +certain +moments +the +heart +wants +nothing +so +much +as +spots +devoid +of +poetry +descartes +planning +to +meditate +chose +his +desert +the +most +mercantile +city +of +his +era +there +he +found +his +solitude +and +the +occasion +for +perhaps +the +greatest +of +our +virile +poems +the +first +precept +was +never +to +accept +anything +as +true +unless +i +knew +it +to +be +obviously +so +it +is +possible +to +have +less +ambition +and +the +same +nostalgia +but +during +the +last +three +centuries +amsterdam +has +spawned +museums +in +order +to +flee +poetry +and +yet +recapture +the +peace +of +stones +other +deserts +are +needed +other +spots +without +soul +and +without +reprieve +oran +is +one +of +these +the +street +i +have +often +heard +the +people +of +oran +complain +there +is +no +interesting +circle +no +indeed +you +wouldn +t +want +one +a +few +right +thinking +people +tried +to +introduce +the +customs +of +another +world +into +this +desert +faithful +to +the +principle +that +it +is +impossible +to +advance +art +or +ideas +without +grouping +together +the +result +is +such +that +the +only +instructive +circles +remain +those +of +poker +players +boxing +enthusiasts +bowlers +and +the +local +associations +there +at +least +the +unsophisticated +prevails +after +all +there +exists +a +certain +nobility +that +does +not +lend +itself +to +the +lofty +it +is +sterile +by +nature +and +those +who +want +to +find +it +leave +the +circles +and +go +out +into +the +street +the +streets +of +oran +are +doomed +to +dust +pebbles +and +heat +if +it +rains +there +is +a +deluge +and +a +sea +of +mud +but +rain +or +shine +the +shops +have +the +same +extravagant +and +absurd +look +all +the +bad +taste +of +europe +and +the +orient +has +managed +to +converge +in +them +one +finds +helter +skelter +marble +greyhounds +ballerinas +with +swans +versions +of +diana +the +huntress +in +green +galalith +discus +throwers +and +reapers +everything +that +is +used +for +birthday +and +wedding +gifts +the +whole +race +of +painful +figurines +constantly +called +forth +by +a +commercial +and +playful +genie +on +our +mantelpieces +but +such +perseverance +in +bad +taste +takes +on +a +baroque +aspect +that +makes +one +forgive +all +here +presented +in +a +casket +of +dust +are +the +contents +of +a +show +window +frightful +plaster +models +of +deformed +feet +a +group +of +rembrandt +drawings +sacrificed +at +francs +each +practical +jokes +tricolored +wallets +an +eighteenth +century +pastel +a +mechanical +donkey +made +of +plush +bottles +of +provence +water +for +preserving +green +olives +and +a +wretched +wooden +virgin +with +an +indecent +smile +so +that +no +one +can +go +away +ignorant +the +management +has +propped +at +its +base +a +card +saying +wooden +virgin +there +can +be +found +in +oran +cafes +with +filter +glazed +counters +sprinkled +with +the +legs +and +wings +of +flies +the +proprietor +always +smiling +despite +his +always +empty +cafe +a +small +black +coffee +used +to +cost +twelve +sous +and +a +large +one +eighteen +photographers +studios +where +there +has +been +no +progress +in +technique +since +the +invention +of +sensitized +paper +they +exhibit +a +strange +fauna +impossible +to +encounter +in +the +streets +from +the +pseudo +sailor +leaning +on +a +console +table +to +the +marriageable +girl +badly +dressed +and +arms +dangling +standing +in +front +of +a +sylvan +background +it +is +possible +to +assume +that +these +are +not +portraits +from +life +they +are +creations +an +edifying +abundance +of +funeral +establishments +it +is +not +that +people +die +more +in +oran +than +elsewhere +but +i +fancy +merely +that +more +is +made +of +it +the +attractive +naivete +of +this +nation +of +merchants +is +displayed +even +in +their +advertising +i +read +in +the +handbill +of +an +oran +movie +theater +the +advertisement +for +a +third +rate +film +i +note +the +adjectives +sumptuous +splendid +extraordinary +amazing +staggering +and +tremendous +at +the +end +the +management +informs +the +public +of +the +considerable +sacrifices +it +has +undertaken +to +be +able +to +present +this +startling +realization +nevertheless +the +price +of +tickets +will +not +be +increased +it +would +be +wrong +to +assume +that +this +is +merely +a +manifestation +of +that +love +of +exaggeration +characteristic +of +the +south +rather +the +authors +of +this +marvelous +handbill +are +revealing +their +sense +of +psychology +it +is +essential +to +overcome +the +indifference +and +profound +apathy +felt +in +this +country +the +moment +there +is +any +question +of +choosing +between +two +shows +two +careers +and +often +even +two +women +people +make +up +their +minds +only +when +forced +to +do +so +and +advertising +is +well +aware +of +this +it +will +assume +american +proportions +having +the +same +reasons +both +here +and +there +for +getting +desperate +the +streets +of +oran +inform +us +as +to +the +two +essential +pleasures +of +the +local +youth +getting +one +s +shoes +shined +and +displaying +those +same +shoes +on +the +boulevard +in +order +to +have +a +clear +idea +of +the +first +of +these +delights +one +has +to +entrust +one +s +shoes +at +ten +o +clock +on +a +sunday +morning +to +the +shoe +shiners +in +boulevard +gal +lieni +perched +on +high +armchairs +one +can +enjoy +that +peculiar +satisfaction +produced +even +upon +a +rank +outsider +by +the +sight +of +men +in +love +with +their +job +as +the +shoe +shiners +of +oran +obviously +are +everything +is +worked +over +in +detail +several +brushes +three +kinds +of +cloths +the +polish +mixed +with +gasoline +one +might +think +the +operation +is +finished +when +a +perfect +shine +comes +to +life +under +the +soft +brush +but +the +same +insistent +hand +covers +the +glossy +surface +again +with +polish +rubs +it +dulls +it +makes +the +cream +penetrate +the +heart +of +the +leather +and +then +brings +forth +under +the +same +brush +a +double +and +really +definitive +gloss +sprung +from +the +depths +of +the +leather +the +wonders +achieved +in +this +way +are +then +exhibited +to +the +connoisseurs +in +order +to +appreciate +such +pleasures +of +the +boulevard +you +ought +to +see +the +masquerade +of +youth +taking +place +every +evening +on +the +main +arteries +of +the +city +between +the +ages +of +sixteen +and +twenty +the +young +people +of +oran +society +borrow +their +models +of +elegance +from +american +films +and +put +on +their +fancy +dress +before +going +out +to +dinner +with +wavy +oiled +hair +protruding +from +under +a +felt +hat +slanted +over +the +left +ear +and +peaked +over +the +right +eye +the +neck +encircled +by +a +collar +big +enough +to +accommodate +the +straggling +hair +the +microscopic +knot +of +the +necktie +kept +in +place +by +a +regulation +pin +with +thigh +length +coat +and +waist +close +to +the +hips +with +light +colored +and +noticeably +short +trousers +with +dazzlingly +shiny +triple +soled +shoes +every +evening +those +youths +make +the +sidewalks +ring +with +their +metal +tipped +soles +in +all +things +they +are +bent +on +imitating +the +bearing +forthrightness +and +superiority +of +mr +clark +gable +for +this +reason +the +local +carpers +commonly +nickname +those +youths +by +favor +of +a +casual +pronunciation +clarques +at +any +rate +the +main +boulevards +of +oran +are +invaded +late +in +the +afternoon +by +an +army +of +attractive +adolescents +who +go +to +the +greatest +trouble +to +look +like +a +bad +lot +inasmuch +as +the +girls +of +oran +feel +traditionally +engaged +to +these +softhearted +gangsters +they +likewise +flaunt +the +make +up +and +elegance +of +popular +american +actresses +consequently +the +same +wits +call +them +marlenes +thus +on +the +evening +boulevards +when +the +sound +of +birds +rises +skyward +from +the +palm +trees +dozens +of +clarques +and +marlenes +meet +eye +and +size +up +one +another +happy +to +be +alive +and +to +cut +a +figure +indulging +for +an +hour +in +the +intoxication +of +perfect +existences +there +can +then +be +witnessed +the +jealous +say +the +meetings +of +the +american +commission +but +in +these +words +lies +the +bitterness +of +those +over +thirty +who +have +no +connection +with +such +diversions +they +fail +to +appreciate +those +daily +congresses +of +youth +and +romance +these +are +in +truth +the +parliaments +of +birds +that +are +met +in +hindu +literature +but +no +one +on +the +boulevards +of +oran +debates +the +problem +of +being +or +worries +about +the +way +to +perfection +there +remains +nothing +but +flappings +of +wings +plumed +struttings +coquettish +and +victorious +graces +a +great +burst +of +carefree +song +that +disappears +with +the +night +from +here +i +can +hear +klestakov +i +shall +soon +have +to +be +concerned +with +something +lofty +alas +he +is +quite +capable +of +it +if +he +were +urged +he +would +people +this +desert +within +a +few +years +but +for +the +moment +a +somewhat +secret +soul +must +liberate +itself +in +this +facile +city +with +its +parade +of +painted +girls +unable +nevertheless +to +simulate +emotion +feigning +coyness +so +badly +that +the +pretense +is +immediately +obvious +be +concerned +with +something +lofty +just +see +santa +cruz +cut +out +of +the +rock +the +mountains +the +flat +sea +the +violent +wind +and +the +sun +the +great +cranes +of +the +harbor +the +trains +the +hangars +the +quays +and +the +huge +ramps +climbing +up +the +city +s +rock +and +in +the +city +itself +these +diversions +and +this +boredom +this +hubbub +and +this +solitude +perhaps +indeed +all +this +is +not +sufficiently +lofty +but +the +great +value +of +such +overpopulated +islands +is +that +in +them +the +heart +strips +bare +silence +is +no +longer +possible +except +in +noisy +cities +from +amsterdam +descartes +writes +to +the +aged +guez +de +balzac +i +go +out +walking +every +day +amid +the +confusion +of +a +great +crowd +with +as +much +freedom +and +tranquillity +as +you +could +do +on +your +garden +paths +the +desert +in +oran +obliged +to +live +facing +a +wonderful +landscape +the +people +of +oran +have +overcome +this +fearful +ordeal +by +covering +their +city +with +very +ugly +constructions +one +expects +to +find +a +city +open +to +the +sea +washed +and +refreshed +by +the +evening +breeze +and +aside +from +the +spanish +quarter +one +finds +a +walled +town +that +turns +its +back +to +the +sea +that +has +been +built +up +by +turning +back +on +itself +like +a +snail +oran +is +a +great +circular +yellow +wall +covered +over +with +a +leaden +sky +in +the +beginning +you +wander +in +the +labyrinth +seeking +the +sea +like +the +sign +of +ariadne +but +you +turn +round +and +round +in +pale +and +oppressive +streets +and +eventually +the +minotaur +devours +the +people +of +oran +the +minotaur +is +boredom +for +some +time +the +citizens +of +oran +have +given +up +wandering +they +have +accepted +being +eaten +it +is +impossible +to +know +what +stone +is +without +coming +to +oran +in +that +dustiest +of +cities +the +pebble +is +king +it +is +so +much +appreciated +that +shopkeepers +exhibit +it +in +their +show +windows +to +hold +papers +in +place +or +even +for +mere +display +piles +of +them +are +set +up +along +the +streets +doubtless +for +the +eyes +delight +since +a +year +later +the +pile +is +still +there +whatever +elsewhere +derives +its +poetry +from +the +vegetable +kingdom +here +takes +on +a +stone +face +the +hundred +or +so +trees +that +can +be +found +in +the +business +section +have +been +carefully +covered +with +dust +they +are +petrified +plants +whose +branches +give +off +an +acrid +dusty +smell +in +algiers +the +arab +cemeteries +have +a +well +known +mellowness +in +oran +above +the +ras +el +ain +ravine +facing +the +sea +this +time +flat +against +the +blue +sky +are +fields +of +chalky +friable +pebbles +in +which +the +sun +blinds +with +its +fires +amid +these +bare +bones +of +the +earth +a +purple +geranium +from +time +to +time +contributes +its +life +and +fresh +blood +to +the +landscape +the +whole +city +has +solidified +in +a +stony +matrix +seen +from +les +planteurs +the +depth +of +the +cliffs +surrounding +it +is +so +great +that +the +landscape +becomes +unreal +so +mineral +it +is +man +is +outlawed +from +it +so +much +heavy +beauty +seems +to +come +from +another +world +if +the +desert +can +be +defined +as +a +soulless +place +where +the +sky +alone +is +king +then +oran +is +awaiting +her +prophets +all +around +and +above +the +city +the +brutal +nature +of +africa +is +indeed +clad +in +her +burning +charms +she +bursts +the +unfortunate +stage +setting +with +which +she +is +covered +she +shrieks +forth +between +all +the +houses +and +over +all +the +roofs +if +one +climbs +one +of +the +roads +up +the +mountain +of +santa +cruz +the +first +thing +to +be +visible +is +the +scattered +colored +cubes +of +oran +but +a +little +higher +and +already +the +jagged +cliffs +that +surround +the +plateau +crouch +in +the +sea +like +red +beasts +still +a +little +higher +and +a +great +vortex +of +sun +and +wind +sweeps +over +airs +out +and +obscures +the +untidy +city +scattered +in +disorder +all +over +a +rocky +landscape +the +opposition +here +is +between +magnificent +human +anarchy +and +the +permanence +of +an +unchanging +sea +this +is +enough +to +make +a +staggering +scent +of +life +rise +toward +the +mountainside +road +there +is +something +implacable +about +the +desert +the +mineral +sky +of +oran +her +streets +and +trees +in +their +coating +of +dust +everything +contributes +to +creating +this +dense +and +impassible +universe +in +which +the +heart +and +mind +are +never +distracted +from +themselves +nor +from +their +sole +object +which +is +man +i +am +speaking +here +of +difficult +places +of +retreat +books +are +written +on +florence +or +athens +those +cities +have +formed +so +many +european +minds +that +they +must +have +a +meaning +they +have +the +means +of +moving +to +tears +or +of +uplifting +they +quiet +a +certain +spiritual +hunger +whose +bread +is +memory +but +can +one +be +moved +by +a +city +where +nothing +attracts +the +mind +where +the +very +ugliness +is +anonymous +where +the +past +is +reduced +to +nothing +emptiness +boredom +an +indifferent +sky +what +are +the +charms +of +such +places +doubtless +solitude +and +perhaps +the +human +creature +for +a +certain +race +of +men +wherever +the +human +creature +is +beautiful +is +a +bitter +native +land +oran +is +one +of +its +thousand +capitals +sports +the +central +sporting +club +on +rue +du +fondouk +in +oran +is +giving +an +evening +of +boxing +which +it +insists +will +be +appreciated +by +real +enthusiasts +interpreted +this +means +that +the +boxers +on +the +bill +are +far +from +being +stars +that +some +of +them +are +entering +the +ring +for +the +first +time +and +that +consequently +you +can +count +if +not +on +the +skill +at +least +on +the +courage +of +the +opponents +a +native +having +thrilled +me +with +the +firm +promise +that +blood +would +flow +i +find +myself +that +evening +among +the +real +enthusiasts +apparently +the +latter +never +insist +on +comfort +to +be +sure +a +ring +has +been +set +up +at +the +back +of +a +sort +of +whitewashed +garage +covered +with +corrugated +iron +and +violently +lighted +folding +chairs +have +been +lined +up +in +a +square +around +the +ropes +these +are +the +honor +rings +most +of +the +length +of +the +hall +has +been +filled +with +seats +and +behind +them +opens +a +large +free +space +called +lounge +by +reason +of +the +fact +that +not +one +of +the +five +hundred +persons +in +it +could +take +out +a +handkerchief +without +causing +serious +accidents +in +this +rectangular +box +live +and +breathe +some +thousand +men +and +two +or +three +women +the +kind +who +according +to +my +neighbor +always +insist +on +attracting +attention +everybody +is +sweating +fiercely +while +waiting +for +the +fights +of +the +young +hopefuls +a +gigantic +phonograph +grinds +out +a +tino +rossi +record +this +is +the +sentimental +song +before +the +murder +the +patience +of +a +true +enthusiast +is +unlimited +the +fight +announced +for +nine +o +clock +has +not +even +begun +at +nine +thirty +and +no +one +has +protested +the +spring +weather +is +warm +and +the +smell +of +a +humanity +in +shirt +sleeves +is +exciting +lively +discussion +goes +on +among +the +periodic +explosions +of +lemon +soda +corks +and +the +tireless +lament +of +the +corsican +singer +a +few +late +arrivals +are +wedged +into +the +audience +when +a +spotlight +throws +a +blinding +light +onto +the +ring +the +fights +of +the +young +hopefuls +begin +the +young +hopefuls +or +beginners +who +are +fighting +for +the +fun +of +it +are +always +eager +to +prove +this +by +massacring +each +other +at +the +earliest +opportunity +in +defiance +of +technique +they +were +never +able +to +last +more +than +three +rounds +the +hero +of +the +evening +in +this +regard +is +young +kid +airplane +who +in +regular +life +sells +lottery +tickets +on +cafe +terraces +his +opponent +indeed +hurtled +awkwardly +out +of +the +ring +at +the +beginning +of +the +second +round +after +contact +with +a +fist +wielded +like +a +propeller +the +crowd +got +somewhat +excited +but +this +is +still +an +act +of +courtesy +gravely +it +breathes +in +the +hallowed +air +of +the +embrocation +it +watches +these +series +of +slow +rites +and +unregulated +sacrifices +made +even +more +authentic +by +the +propitiatory +designs +on +the +white +wall +of +the +fighters +shadows +these +are +the +deliberate +ceremonial +prologues +of +a +savage +religion +the +trance +will +not +come +until +later +and +it +so +happens +that +the +loudspeaker +announces +amar +the +tough +oranese +who +has +never +disarmed +against +perez +the +slugger +from +algiers +an +uninitiate +would +misinterpret +the +yelling +that +greets +the +introduction +of +the +boxers +in +the +ring +he +would +imagine +some +sensational +combat +in +which +the +boxers +were +to +settle +a +personal +quarrel +known +to +the +public +to +tell +the +truth +it +is +a +quarrel +they +are +going +to +settle +but +it +is +the +one +that +for +the +past +hundred +years +has +mortally +separated +algiers +and +oran +back +in +history +these +two +north +african +cities +would +have +already +bled +each +other +white +as +pisa +and +florence +did +in +happier +times +their +rivalry +is +all +the +stronger +just +because +it +probably +has +no +basis +having +every +reason +to +like +each +other +they +loathe +each +other +proportionately +the +oranese +accuse +the +citizens +of +algiers +of +sham +the +people +of +algiers +imply +that +the +oranese +are +rustic +these +are +bloodier +insults +than +they +might +seem +because +they +are +metaphysical +and +unable +to +lay +siege +to +each +other +oran +and +algiers +meet +compete +and +insult +each +other +on +the +field +of +sports +statistics +and +public +works +thus +a +page +of +history +is +unfolding +in +the +ring +and +the +tough +oranese +backed +by +a +thousand +yelling +voices +is +defending +against +perez +a +way +of +life +and +the +pride +of +a +province +truth +forces +me +to +admit +that +amar +is +not +conducting +his +discussion +well +his +argument +has +a +flaw +he +lacks +reach +the +slugger +from +algiers +on +the +contrary +has +the +required +reach +in +his +argument +it +lands +persuasively +between +his +contradictor +s +eyes +the +oranese +bleeds +magnificently +amid +the +vociferations +of +a +wild +audience +despite +the +repeated +encouragements +of +the +gallery +and +of +my +neighbor +despite +the +dauntless +shouts +of +kill +him +floor +him +the +insidious +below +the +belt +oh +the +referee +missed +that +one +the +optimistic +he +s +pooped +he +can +t +take +any +more +nevertheless +the +man +from +algiers +is +proclaimed +the +winner +on +points +amid +interminable +catcalls +my +neighbor +who +is +inclined +to +talk +of +sportsmanship +applauds +ostensibly +while +slipping +to +me +in +a +voice +made +faint +by +so +many +shouts +so +that +he +won +t +be +able +to +say +back +there +that +we +of +oran +are +savages +but +throughout +the +audience +fights +not +included +on +the +program +have +already +broken +out +chairs +are +brandished +the +police +clear +a +path +excitement +is +at +its +height +in +order +to +calm +these +good +people +and +contribute +to +the +return +of +silence +the +management +without +losing +a +moment +commissions +the +loudspeaker +to +boom +out +sambre +et +meuse +for +a +few +minutes +the +audience +has +a +really +warlike +look +confused +clusters +of +com +batants +and +voluntary +referees +sway +in +the +grip +of +policemen +the +gallery +exults +and +calls +for +the +rest +of +the +program +with +wild +cries +cock +a +doodle +doo +s +and +mocking +catcalls +drowned +in +the +irresistible +flood +from +the +military +band +but +the +announcement +or +the +big +fight +is +enough +to +restore +calm +this +takes +place +suddenly +without +flourishes +just +as +actors +leave +the +stage +once +the +play +is +finished +with +the +greatest +unconcern +hats +are +dusted +off +chairs +are +put +back +in +place +and +without +transition +all +faces +assume +the +kindly +expression +of +the +respectable +member +of +the +audience +who +has +paid +for +his +ticket +to +a +family +concert +the +last +fight +pits +a +french +champion +of +the +navy +against +an +oran +boxer +this +time +the +difference +in +reach +is +to +the +advantage +of +the +latter +but +his +superiorities +during +the +first +rounds +do +not +stir +the +crowd +they +are +sleeping +off +the +effects +of +their +first +excitement +they +are +sobering +up +they +are +still +short +of +breath +if +they +applaud +there +is +no +passion +in +it +they +hiss +without +animosity +the +audience +is +divided +into +two +camps +as +is +appropriate +in +the +interest +of +fairness +but +each +individual +s +choice +obeys +that +indifference +that +follows +on +great +expenditures +of +energy +if +the +frenchman +holds +his +own +if +the +oranese +forgets +that +one +doesn +t +lead +with +the +head +the +boxer +is +bent +under +a +volley +of +hisses +but +immediately +pulled +upright +again +by +a +burst +of +applause +not +until +the +seventh +round +does +sport +rise +to +the +surface +again +at +the +same +time +that +the +real +enthusiasts +begin +to +emerge +from +their +fatigue +the +frenchman +to +tell +the +truth +has +touched +the +mat +and +eager +to +win +back +points +has +hurled +himself +on +his +opponent +what +did +i +tell +you +said +my +neighbor +it +s +going +to +be +a +fight +to +the +finish +indeed +it +is +a +fight +to +the +finish +covered +with +sweat +under +the +pitiless +light +both +boxers +open +their +guard +close +their +eyes +as +they +hit +shove +with +shoulders +and +knees +swap +their +blood +and +snort +with +rage +as +one +man +the +audience +has +stood +up +and +punctuates +the +efforts +of +its +two +heroes +it +receives +the +blows +returns +them +echoes +them +in +a +thousand +hollow +panting +voices +the +same +ones +who +had +chosen +their +favorite +in +indifference +cling +to +their +choice +through +obstinacy +and +defend +it +passionately +every +ten +seconds +a +shout +from +my +neighbor +pierces +my +right +ear +go +to +it +gob +come +on +navy +while +another +man +in +front +of +us +shouts +to +the +oranese +anda +hombre +the +man +and +the +gob +go +to +it +and +together +with +them +in +this +temple +of +whitewash +iron +and +cement +an +audience +completely +given +over +to +gods +with +cauliflower +ears +every +blow +that +gives +a +dull +sound +on +the +shining +pectorals +echoes +in +vast +vibrations +in +the +very +body +of +the +crowd +which +with +the +boxers +is +making +its +last +effort +in +such +an +atmosphere +a +draw +is +badly +received +indeed +it +runs +counter +to +a +quite +manichean +tendency +in +the +audience +there +is +good +and +there +is +evil +the +winner +and +the +loser +one +must +be +either +right +or +wrong +the +conclusion +of +this +impeccable +logic +is +immediately +provided +by +two +thousand +energetic +lungs +accusing +the +judges +of +being +sold +or +bought +but +the +gob +has +walked +over +and +embraced +his +rival +in +the +ring +drinking +in +his +fraternal +sweat +this +is +enough +to +make +the +audience +reversing +its +view +burst +out +in +sudden +applause +my +neighbor +is +right +they +are +not +savages +the +crowd +pouring +out +under +a +sky +full +of +silence +and +stars +has +just +fought +the +most +exhausting +fight +it +keeps +quiet +and +disappears +furtively +without +any +energy +left +for +post +mortems +there +is +good +and +there +is +evil +that +religion +is +merciless +the +band +of +faithful +is +now +no +more +than +a +group +of +black +and +white +shadows +disappearing +into +the +night +for +force +and +violence +are +solitary +gods +they +contribute +nothing +to +memory +on +the +contrary +they +distribute +their +miracles +by +the +handful +in +the +present +they +are +made +for +this +race +without +past +which +celebrates +its +communions +around +the +prize +ring +these +are +rather +difficult +rites +but +ones +that +simplify +everything +good +and +evil +winner +and +loser +at +corinth +two +temples +stood +side +by +side +the +temple +of +violence +and +the +temple +of +necessity +monuments +for +many +reasons +due +as +much +to +economics +as +to +metaphysics +it +may +be +said +that +the +oranese +style +if +there +is +one +forcefully +and +clearly +appears +in +the +extraordinary +edifice +called +the +maison +du +colon +oran +hardly +lacks +monuments +the +city +has +its +quota +of +imperial +marshals +ministers +and +local +benefactors +they +are +found +on +dusty +little +squares +resigned +to +rain +and +sun +they +too +converted +to +stone +and +boredom +but +in +any +case +they +represent +contributions +from +the +outside +in +that +happy +barbary +they +are +the +regrettable +marks +of +civilization +oran +on +the +other +hand +has +raised +up +her +altars +and +rostra +to +her +own +honor +in +the +very +heart +of +the +mercantile +city +having +to +construct +a +common +home +for +the +innumerable +agricultural +organizations +that +keep +this +country +alive +the +people +of +oran +conceived +the +idea +of +building +solidly +a +convincing +image +of +their +virtues +the +maison +du +colon +to +judge +from +the +edifice +those +virtues +are +three +in +number +boldness +in +taste +love +of +violence +and +a +feeling +for +historical +syntheses +egypt +byzantium +and +munich +collaborated +in +the +delicate +construction +of +a +piece +of +pastry +in +the +shape +of +a +bowl +upside +down +multicolored +stones +most +vigorous +in +effect +have +been +brought +in +to +outline +the +roof +these +mosaics +are +so +exuberantly +persuasive +that +at +first +you +see +nothing +but +an +amorphous +effulgence +but +with +a +closer +view +and +your +attention +called +to +it +you +discover +that +they +have +a +meaning +a +graceful +colonist +wearing +a +bow +tie +and +white +pith +helmet +is +receiving +the +homage +of +a +procession +of +slaves +dressed +in +classical +style +the +edifice +and +its +colored +illustrations +have +been +set +down +in +the +middle +of +a +square +in +the +to +and +fro +of +the +little +two +car +trams +whose +filth +is +one +of +the +charms +of +the +city +oran +greatly +cherishes +also +the +two +lions +of +its +place +d +armes +or +parade +ground +since +they +have +been +sitting +in +state +on +opposite +sides +of +the +municipal +stairs +their +author +was +named +ain +they +have +majesty +and +a +stubby +torso +it +is +said +that +at +night +they +get +down +from +their +pedestal +one +after +the +other +silently +pace +around +the +dark +square +and +on +occasion +uninate +at +length +under +the +big +dusty +ficus +trees +these +of +course +are +rumors +to +which +the +people +of +oran +lend +an +indulgent +ear +but +it +is +unlikely +despite +a +certain +amount +of +research +i +have +not +been +able +to +get +interested +in +cain +i +merely +learned +that +he +had +the +reputation +of +being +a +skillful +animal +sculptor +yet +i +often +think +of +him +this +is +an +intellectual +bent +that +comes +naturally +in +oran +here +is +a +sonorously +named +artist +who +left +an +unimportant +work +here +several +hundred +thousand +people +are +familiar +with +the +easygoing +beasts +he +put +in +front +of +a +pretentious +town +hall +this +is +one +way +of +succeeding +in +art +to +be +sure +these +two +lions +like +thousands +of +works +of +the +same +type +are +proof +of +something +else +than +talent +others +have +created +the +night +watch +saint +francis +receiving +the +stigmata +david +or +the +pharsalian +bas +relief +called +the +glorification +of +the +flower +cain +on +the +other +hand +set +up +two +hilarious +snouts +on +the +square +of +a +mercantile +province +overseas +but +the +david +will +go +down +one +day +with +florence +and +the +lions +will +perhaps +be +saved +from +the +catastrophe +let +me +repeat +they +are +proof +of +something +else +can +one +state +this +idea +clearly +in +this +work +there +are +insignificance +and +solidity +spirit +counts +for +nothing +and +matter +for +a +great +deal +mediocrity +insists +upon +lasting +by +all +means +including +bronze +it +is +refused +a +right +to +eternity +and +every +day +it +takes +that +right +is +it +not +eternity +itself +in +any +event +such +perseverance +is +capable +of +stirring +and +it +involves +its +lesson +that +of +all +the +monuments +of +oran +and +of +oran +herself +an +hour +a +day +every +so +often +it +forces +you +to +pay +attention +to +something +that +has +no +importance +the +mind +profits +from +such +recurrences +in +a +sense +this +is +its +hygiene +and +since +it +absolutely +needs +its +moments +of +humility +it +seems +to +me +that +this +chance +to +indulge +in +stupidity +is +better +than +others +everything +that +is +ephemeral +wants +to +last +let +us +say +that +everything +wants +to +last +human +productions +mean +nothing +else +and +in +this +regard +cain +s +lions +have +the +same +chances +as +the +ruins +of +angkor +this +disposes +one +toward +modesty +there +are +other +oranese +monuments +or +at +least +they +deserve +this +name +because +they +too +stand +for +their +city +and +perhaps +in +a +more +significant +way +they +are +the +public +works +at +present +covering +the +coast +for +some +ten +kilometers +apparently +it +is +a +matter +of +transforming +the +most +luminous +of +bays +into +a +gigantic +harbor +in +reality +it +is +one +more +chance +for +man +to +come +to +grips +with +stone +in +the +paintings +of +certain +flemish +masters +a +theme +of +strikingly +general +application +recurs +insistently +the +building +of +the +tower +of +babel +vast +landscapes +rocks +climbing +up +to +heaven +steep +slopes +teeming +with +workmen +animals +ladders +strange +machines +cords +pulleys +man +moreover +is +there +only +to +give +scale +to +the +inhuman +scope +of +the +construction +this +is +what +the +oran +coast +makes +one +think +of +west +of +the +city +clinging +to +vast +slopes +rails +dump +cars +cranes +tiny +trains +under +a +broiling +sun +toy +like +locomotives +round +huge +blocks +of +stone +amid +whistles +dust +and +smoke +day +and +night +a +nation +of +ants +bustles +about +on +the +smoking +carcass +of +the +mountain +clinging +all +up +and +down +a +single +cord +against +the +side +of +the +cliff +dozens +of +men +their +bellies +pushing +against +the +handles +of +automatic +drills +vibrate +in +empty +space +all +day +long +and +break +off +whole +masses +of +rock +that +hurtle +down +in +dust +and +rumbling +farther +on +dump +carts +tip +their +loads +over +the +slopes +and +the +rocks +suddenly +poured +seaward +bound +and +roll +into +the +water +each +large +lump +followed +by +a +scattering +of +lighter +stones +at +regular +intervals +at +dead +of +night +or +in +broad +daylight +detonations +shake +the +whole +mountain +and +stir +up +the +sea +itself +man +in +this +vast +construction +field +makes +a +frontal +attack +on +stone +and +if +one +could +forget +for +a +moment +at +least +the +harsh +slavery +that +makes +this +work +possible +one +would +have +to +admire +these +stones +torn +from +the +mountain +serve +man +in +his +plans +they +pile +up +under +the +first +waves +gradually +emerge +and +finally +take +their +place +to +form +a +jetty +soon +covered +with +men +and +machines +which +advance +day +after +day +toward +the +open +sea +without +stopping +huge +steel +jaws +bite +into +the +cliff +s +belly +turn +round +and +disgorge +into +the +water +their +overflowing +gravel +as +the +coastal +cliff +is +lowered +the +whole +coast +encroaches +irresistibly +on +the +sea +of +course +destroying +stone +is +not +possible +it +is +merely +moved +from +one +place +to +another +in +any +case +it +will +last +longer +than +the +men +who +use +it +for +the +moment +it +satisfies +their +will +to +action +that +in +itself +is +probably +useless +but +moving +things +about +is +the +work +of +men +one +must +choose +doing +that +or +nothing +obviously +the +people +of +oran +have +chosen +in +front +of +that +indifferent +bay +for +many +years +more +they +will +pile +up +stones +along +the +coast +in +a +hundred +years +tomorrow +in +other +words +they +will +have +to +begin +again +but +today +these +heaps +of +rocks +testify +for +the +men +in +masks +of +dust +and +sweat +who +move +about +among +them +the +true +monuments +of +oran +are +still +her +stones +ariadne +s +stone +it +seems +that +the +people +of +oran +are +like +that +friend +of +flaubert +who +on +the +point +of +death +casting +a +last +glance +at +this +irreplaceable +earth +exclaimed +close +the +window +it +s +too +beautiful +they +have +closed +the +window +they +have +walled +themselves +in +they +have +cast +out +the +landscape +but +flaubert +s +friend +le +poittevin +died +and +after +him +days +continued +to +be +added +to +days +likewise +beyond +the +yellow +walls +of +oran +land +and +sea +continue +their +indifferent +dialogue +that +permanence +in +the +world +has +always +had +contrary +charms +for +man +it +drives +him +to +despair +and +excites +him +the +world +never +says +but +one +thing +first +it +interests +then +it +bores +but +eventually +it +wins +out +by +dint +of +obstinacy +it +is +always +right +already +at +the +very +gates +of +oran +nature +raises +its +voice +in +the +direction +of +canastel +there +are +vast +wastelands +covered +with +fragrant +brush +there +sun +and +wind +speak +only +of +solitude +above +oran +there +is +the +mountain +of +santa +cruz +the +plateau +and +the +myriad +ravines +leading +to +it +roads +once +carriageable +cling +to +the +slopes +overhanging +the +sea +in +the +month +of +january +some +are +covered +with +flowers +daisies +and +buttercups +turn +them +into +sumptuous +paths +embroidered +in +yellow +and +white +about +sant +cruzz +everything +has +been +said +but +if +i +were +to +speak +of +it +i +should +forget +the +sacred +processions +that +climb +the +rugged +hill +on +feast +days +in +order +to +recall +other +pilgrimages +solitary +they +walk +in +the +red +stone +rise +above +the +motionless +bay +and +come +to +dedicate +to +nakedness +a +luminous +perfect +hour +oran +has +also +its +deserts +of +sand +its +beaches +those +encountered +near +the +gates +are +deserted +only +in +winter +and +spring +then +they +are +plateaus +covered +with +asphodels +peopled +with +bare +little +cottages +among +the +flowers +the +sea +rumbles +a +bit +down +below +yet +already +the +sun +the +faint +breeze +the +whiteness +of +the +asphodels +the +sharp +blue +of +the +sky +everything +makes +one +fancy +summer +the +golden +youth +then +covering +the +beach +the +long +hours +on +the +sand +and +the +sudden +softness +of +evening +each +year +on +these +shores +there +is +a +new +harvest +of +girls +in +flower +apparently +they +have +but +one +season +the +following +year +other +cordial +blossoms +take +their +place +which +the +summer +before +were +still +little +girls +with +bodies +as +hard +as +buds +at +eleven +a +m +coming +down +from +the +plateau +all +that +young +flesh +lightly +clothed +in +motley +materials +breaks +on +the +sand +like +a +multicolored +wave +one +has +to +go +farther +strangely +close +however +to +that +spot +where +two +hundred +thousand +men +are +laboring +to +discover +a +still +virgin +landscape +long +deserted +dunes +where +the +passage +of +men +has +left +no +other +trace +than +a +worm +eaten +hut +from +time +to +time +an +arab +shepherd +drives +along +the +top +of +the +dunes +the +black +and +beige +spots +of +his +flock +of +goats +on +the +beaches +of +the +oran +country +every +summer +morning +seems +to +be +the +first +in +the +world +each +twilight +seems +to +be +the +last +solemn +agony +announced +at +sunset +by +a +final +glow +that +darkens +every +hue +the +sea +is +ultramarine +the +road +the +color +of +clotted +blood +the +beach +yellow +everything +disappears +with +the +green +sun +an +hour +later +the +dunes +are +bathed +in +moonlight +then +there +are +incomparable +nights +under +a +rain +of +stars +occasionally +storms +sweep +over +them +and +the +lightning +flashes +flow +along +the +dunes +whiten +the +sky +and +give +the +sand +and +one +s +eyes +orange +colored +glints +but +this +cannot +be +shared +one +has +to +have +lived +it +so +much +solitude +and +nobility +give +these +places +an +unforgettable +aspect +in +the +warm +moment +before +daybreak +after +confronting +the +first +bitter +black +waves +a +new +creature +breasts +night +s +heavy +enveloping +water +the +memory +of +those +joys +does +not +make +me +regret +them +and +thus +i +recognize +that +they +were +good +after +so +many +years +they +still +last +somewhere +in +this +heart +which +finds +unswerving +loyalty +so +difficult +and +i +know +that +today +if +i +were +to +go +to +the +deserted +dune +the +same +sky +would +pour +down +on +me +its +cargo +of +breezes +and +stars +these +are +lands +of +innocence +but +innocence +needs +sand +and +stones +and +man +has +forgotten +how +to +live +among +them +at +least +it +seems +so +for +he +has +taken +refuge +in +this +extraordinary +city +where +boredom +sleeps +nevertheless +that +very +confrontation +constitutes +the +value +of +oran +the +capital +of +boredom +besieged +by +innocence +and +beauty +it +is +surrounded +by +an +army +in +which +every +stone +is +a +soldier +in +the +city +and +at +certain +hours +however +what +a +temptation +to +go +over +to +the +enemy +what +a +temptation +to +identify +oneself +with +those +stones +to +melt +into +that +burning +and +impassive +universe +that +defies +history +and +its +ferments +that +is +doubtless +futile +but +there +is +in +every +man +a +profound +instinct +which +is +neither +that +of +destruction +nor +that +of +creation +it +is +merely +a +matter +of +resembling +nothing +in +the +shadow +of +the +warm +walls +of +oran +on +its +dusty +asphalt +that +invitation +is +sometimes +heard +it +seems +that +for +a +time +the +minds +that +yield +to +it +are +never +disappointed +this +is +the +darkness +of +eurydice +and +the +sleep +of +isis +here +are +the +deserts +where +thought +will +collect +itself +the +cool +hand +of +evening +on +a +troubled +heart +on +this +mount +of +olives +vigil +is +futile +the +mind +recalls +and +approves +the +sleeping +apostles +were +they +really +wrong +they +nonetheless +had +their +revelation +just +think +of +sakyamuni +in +the +desert +he +remained +there +for +years +on +end +squatting +motionless +with +his +eyes +on +heaven +the +very +gods +envied +him +that +wisdom +and +that +stone +like +destiny +in +his +outstretched +hands +the +swallows +had +made +their +nest +but +one +day +they +flew +away +answering +the +call +of +distant +lands +and +he +who +had +stifled +in +himself +desire +and +will +fame +and +suffering +began +to +cry +it +happens +thus +that +flowers +grow +on +rocks +yes +let +us +accept +stone +when +it +is +necessary +that +secret +and +that +rapture +we +ask +of +faces +can +also +be +given +us +by +stone +to +be +sure +this +cannot +last +but +what +can +last +after +all +the +secret +of +faces +fades +away +and +there +we +are +cast +back +to +the +chain +of +desires +and +if +stone +can +do +no +more +for +us +than +the +human +heart +at +least +it +can +do +just +as +much +oh +to +be +nothing +for +thousands +of +years +this +great +cry +has +roused +millions +of +men +to +revolt +against +desire +and +pain +its +dying +echoes +have +reached +this +far +across +centuries +and +oceans +to +the +oldest +sea +in +the +world +they +still +reverberate +dully +against +the +compact +cliffs +of +oran +everybody +in +this +country +follows +this +advice +without +knowing +it +of +course +it +is +almost +futile +nothingness +cannot +be +achieved +any +more +than +the +absolute +can +but +since +we +receive +as +favors +the +eternal +signs +brought +us +by +roses +or +by +human +suffering +let +us +not +refuse +either +the +rare +invitations +to +sleep +that +the +earth +addresses +us +each +has +as +much +truth +as +the +other +this +perhaps +is +the +ariadne +s +thread +of +this +somnambulist +and +frantic +city +here +one +learns +the +virtues +provisional +to +be +sure +of +a +certain +kind +of +boredom +in +order +to +be +spared +one +must +say +yes +to +the +minotaur +this +is +an +old +and +fecund +wisdom +above +the +sea +silent +at +the +base +of +the +red +cliffs +it +is +enough +to +maintain +a +delicate +equilibrium +halfway +between +the +two +massive +headlands +which +on +the +right +and +left +dip +into +the +clear +water +in +the +puffing +of +a +coast +guard +vessel +crawling +along +the +water +far +out +bathed +in +radiant +light +is +distinctly +heard +the +muffled +call +of +inhuman +and +glittering +forces +it +is +the +minotaur +s +farewell +it +is +noon +the +very +day +is +being +weighed +in +the +balance +his +rite +accomplished +the +traveler +receives +the +reward +of +his +liberation +the +little +stone +dry +and +smooth +as +an +asphodel +that +he +picks +up +on +the +cliff +for +the +initiate +the +world +is +no +heavier +to +bear +than +this +stone +atlas +s +task +is +easy +it +is +sufficient +to +choose +one +s +hour +then +one +realizes +that +for +an +hour +a +month +a +year +these +shores +can +indulge +in +freedom +they +welcome +pell +mell +without +even +looking +at +them +the +monk +the +civil +servant +or +the +conqueror +there +are +days +when +i +expected +to +meet +in +the +streets +of +oran +descartes +or +cesare +borgia +that +did +not +happen +but +perhaps +another +will +be +more +fortunate +a +great +deed +a +great +work +virile +meditation +used +to +call +for +the +solitude +of +sands +or +of +the +convent +there +were +kept +the +spiritual +vigils +of +arms +where +could +they +be +better +celebrated +now +than +in +the +emptiness +of +a +big +city +established +for +some +time +in +unintellectual +beauty +here +is +the +little +stone +smooth +as +an +asphodel +it +is +at +the +beginning +of +everything +flowers +tears +if +you +insist +departures +and +struggles +are +for +tomorrow +in +the +middle +of +the +day +when +the +sky +opens +its +fountains +of +light +in +the +vast +sonorous +space +all +the +headlands +of +the +coast +look +like +a +fleet +about +to +set +out +those +heavy +galleons +of +rock +and +light +are +trembling +on +their +keels +as +if +they +were +preparing +to +steer +for +sunlit +isles +o +mornings +in +the +country +of +oran +from +the +high +plateaus +the +swallows +plunge +into +huge +troughs +where +the +air +is +seething +the +whole +coast +is +ready +for +departure +a +shiver +of +adventure +ripples +through +it +tomorrow +perhaps +we +shall +leave +together +helen +s +exile +the +mediterranean +sun +has +something +tragic +about +it +quite +different +from +the +tragedy +of +fogs +certain +evenings +at +the +base +of +the +seaside +mountains +night +falls +over +the +flawless +curve +of +a +little +bay +and +there +rises +from +the +silent +waters +a +sense +of +anguished +fulfillment +in +such +spots +one +can +understand +that +if +the +greeks +knew +despair +they +always +did +so +through +beauty +and +its +stifling +quality +in +that +gilded +calamity +tragedy +reaches +its +highest +point +our +time +on +the +other +hand +has +fed +its +despair +on +ugliness +and +convulsions +this +is +why +europe +would +be +vile +if +suffering +could +ever +be +so +we +have +exiled +beauty +the +greeks +took +up +arms +for +her +first +difference +but +one +that +has +a +history +greek +thought +always +took +refuge +behind +the +conception +of +limits +it +never +carried +anything +to +extremes +neither +the +sacred +nor +reason +because +it +negated +nothing +neither +the +sacred +nor +reason +it +took +everything +into +consideration +balancing +shadow +with +light +our +europe +on +the +other +hand +off +in +the +pursuit +of +totality +is +the +child +of +disproportion +she +negates +beauty +as +she +negates +whatever +she +does +not +glorify +and +through +all +her +diverse +ways +she +glorifies +but +one +thing +which +is +the +future +rule +of +reason +in +her +madness +she +extends +the +eternal +limits +and +at +that +very +moment +dark +erinyes +fall +upon +her +and +tear +her +to +pieces +nemesis +the +goddess +of +measure +and +not +of +revenge +keeps +watch +all +those +who +overstep +the +limit +are +pitilessly +punished +by +her +the +greeks +who +for +centuries +questioned +themselves +as +to +what +is +just +could +understand +nothing +of +our +idea +of +justice +for +them +equity +implied +a +limit +whereas +our +whole +continent +is +convulsed +in +its +search +for +a +justice +that +must +be +total +at +the +dawn +of +greek +thought +hera +clitus +was +already +imagining +that +justice +sets +limits +for +the +physical +universe +itself +the +sun +will +not +overstep +his +measures +if +he +does +the +erinyes +the +handmaids +of +justice +will +find +him +out +we +who +have +cast +the +universe +and +spirit +out +of +our +sphere +laugh +at +that +threat +in +a +drunken +sky +we +light +up +the +suns +we +want +but +nonetheless +the +boundaries +exist +and +we +know +it +in +our +wildest +aberrations +we +dream +of +an +equilibrium +we +have +left +behind +which +we +naively +expect +to +find +at +the +end +of +our +errors +childish +presumption +which +justifies +the +fact +that +child +nations +inheriting +our +follies +are +now +directing +our +history +a +fragment +attributed +to +the +same +heraclitus +simply +states +presumption +regression +of +progress +and +many +centuries +after +the +man +of +ephesus +socrates +facing +the +threat +of +being +condemned +to +death +acknowledged +only +this +one +superiority +in +himself +what +he +did +not +know +he +did +not +claim +to +know +the +most +exemplary +life +and +thought +of +those +centuries +close +on +a +proud +confession +of +ignorance +forgetting +that +we +have +forgotten +our +virility +we +have +preferred +the +power +that +apes +greatness +first +alexander +and +then +the +roman +conquerors +whom +the +authors +of +our +schoolbooks +through +some +incomparable +vulgarity +teach +us +to +admire +we +too +have +conquered +moved +boundaries +mastered +bywater +s +translation +translator +s +note +heaven +and +earth +our +reason +has +driven +all +away +alone +at +last +we +end +up +by +ruling +over +a +desert +what +imagination +could +we +have +left +for +that +higher +equilibrium +in +which +nature +balanced +history +beauty +virtue +and +which +applied +the +music +of +numbers +even +to +blood +tragedy +we +turn +our +backs +on +nature +we +are +ashamed +of +beauty +our +wretched +tragedies +have +a +smell +of +the +office +clinging +to +them +and +the +blood +that +trickles +from +them +is +the +color +of +printer +s +ink +this +is +why +it +is +improper +to +proclaim +today +that +we +are +the +sons +of +greece +or +else +we +are +the +renegade +sons +placing +history +on +the +throne +of +god +we +are +progressing +toward +theocracy +like +those +whom +the +greeks +called +barbarians +and +whom +they +fought +to +death +in +the +waters +of +salamis +in +order +to +realize +how +we +differ +one +must +turn +to +him +among +our +philosophers +who +is +the +true +rival +of +plato +only +the +modern +city +hegel +dares +write +offers +the +mind +a +field +in +which +it +can +become +aware +of +itself +we +are +thus +living +in +the +period +of +big +cities +deliberately +the +world +has +been +amputated +of +all +that +constitutes +its +permanence +nature +the +sea +hilltops +evening +meditation +consciousness +is +to +be +found +only +in +the +streets +because +history +is +to +be +found +only +in +the +streets +this +is +the +edict +and +consequently +our +most +significant +works +show +the +same +bias +landscapes +are +not +to +be +found +in +great +european +literature +since +dostoevsky +history +explains +neither +the +natural +universe +that +existed +before +it +nor +the +beauty +that +exists +above +it +hence +it +chose +to +be +ignorant +of +them +whereas +plato +contained +everything +nonsense +reason +and +myth +our +philosophers +contain +nothing +but +nonsense +or +reason +because +they +have +closed +their +eyes +to +the +rest +the +mole +is +meditating +it +is +christianity +that +began +substituting +the +tragedy +of +the +soul +for +contemplation +of +the +world +but +at +least +christianity +referred +to +a +spiritual +nature +and +thereby +preserved +a +certain +fixity +with +god +dead +there +remains +only +history +and +power +for +some +time +the +entire +effort +of +our +philosophers +has +aimed +solely +at +replacing +the +notion +of +human +nature +with +that +of +situation +and +replacing +ancient +harmony +with +the +disorderly +advance +of +chance +or +reason +s +pitiless +progress +whereas +the +greeks +gave +to +will +the +boundaries +of +reason +we +have +come +to +put +the +will +s +impulse +in +the +very +center +of +reason +which +has +as +a +result +become +deadly +for +the +greeks +values +pre +existed +all +action +of +which +they +definitely +set +the +limits +modern +philosophy +places +its +values +at +the +end +of +action +they +are +not +but +are +becoming +and +we +shall +know +them +fully +only +at +the +completion +of +history +with +values +all +limit +disappears +and +since +conceptions +differ +as +to +what +they +will +be +since +all +struggles +without +the +brake +of +those +same +values +spread +indefinitely +today +s +messianisms +confront +one +another +and +their +clamors +mingle +in +the +clash +of +empires +disproportion +is +a +conflagration +according +to +heraclitus +the +conflagration +is +spreading +nietzsche +is +outdistanced +europe +no +longer +philosophizes +by +striking +a +hammer +but +by +shooting +a +cannon +nature +is +still +there +however +she +contrasts +her +calm +skies +and +her +reasons +with +the +madness +of +men +until +the +atom +too +catches +fire +and +history +ends +in +the +triumph +of +reason +and +the +agony +of +the +species +but +the +greeks +never +said +that +the +limit +could +not +he +overstepped +they +said +it +existed +and +that +whoever +dared +to +exceed +it +was +mercilessly +struck +down +nothing +in +present +history +can +contradict +them +the +historical +spirit +and +the +artist +both +want +to +remake +the +world +but +the +artist +through +an +obligation +of +his +nature +knows +his +limits +which +the +historical +spirit +fails +to +recognize +this +is +why +the +latter +s +aim +is +tyranny +whereas +the +former +s +passion +is +freedom +all +those +who +are +struggling +for +freedom +today +are +ultimately +fighting +for +beauty +of +course +it +is +not +a +question +of +defending +beauty +for +itself +beauty +cannot +do +without +man +and +we +shall +not +give +our +era +its +nobility +and +serenity +unless +we +follow +it +in +its +misfortune +never +again +shall +we +be +hermits +but +it +is +no +less +true +that +man +cannot +do +without +beauty +and +this +is +what +our +era +pretends +to +want +to +disregard +it +steels +itself +to +attain +the +absolute +and +authority +it +wants +to +transfigure +the +world +before +having +exhausted +it +to +set +it +to +rights +before +having +understood +it +whatever +it +may +say +our +era +is +deserting +this +world +ulysses +can +choose +at +calypso +s +bidding +between +immortality +and +the +land +of +his +fathers +he +chooses +the +land +and +death +with +it +such +simple +nobility +is +foreign +to +us +today +others +will +say +that +we +lack +humility +but +all +things +considered +this +word +is +ambiguous +like +dostoevsky +s +fools +who +boast +of +everything +soar +to +heaven +and +end +up +flaunting +their +shame +in +any +public +place +we +merely +lack +man +s +pride +which +is +fidelity +to +his +limits +lucid +love +of +his +condition +i +hate +my +time +saint +exupery +wrote +shortly +before +his +death +for +reasons +not +far +removed +from +those +i +have +spoken +of +but +however +upsetting +that +exclamation +coming +from +him +who +loved +men +for +their +admirable +qualities +we +shall +not +accept +responsibility +for +it +yet +what +a +temptation +at +certain +moments +to +turn +one +s +back +on +this +bleak +fleshless +world +but +this +time +is +ours +and +we +cannot +live +hating +ourselves +it +has +fallen +so +low +only +through +the +excess +of +its +virtues +as +well +as +through +the +extent +of +its +vices +we +shall +fight +for +the +virtue +that +has +a +history +what +virtue +the +horses +of +patroclus +weep +for +their +master +killed +in +battle +all +is +lost +but +achilles +resumes +the +fight +and +victory +is +the +outcome +because +friendship +has +just +been +assassinated +friendship +is +a +virtue +admission +of +ignorance +rejection +of +fanaticism +the +limits +of +the +world +and +of +man +the +beloved +face +and +finally +beauty +this +is +where +we +shall +be +on +the +side +of +the +greeks +in +a +certain +sense +the +direction +history +will +take +is +not +the +one +we +think +it +lies +in +the +struggle +between +creation +and +inquisition +despite +the +price +which +artists +will +pay +for +their +empty +hands +we +may +hope +for +their +victory +once +more +the +philosophy +of +darkness +will +break +and +fade +away +over +the +dazzling +sea +o +midday +thought +the +trojan +war +is +being +fought +far +from +the +battlefields +once +more +the +dreadful +walls +of +the +modern +city +will +fall +to +deliver +up +soul +serene +as +the +ocean +s +calm +the +beauty +of +helen +return +to +tipasa +you +have +navigated +with +raging +soul +far +from +the +paternal +home +passing +beyond +the +sea +s +double +rocks +and +you +now +inhabit +a +foreign +land +medea +for +five +days +rain +had +been +falling +ceaselessly +on +algiers +and +had +finally +wet +the +sea +itself +from +an +apparently +inexhaustible +sky +constant +downpours +viscous +in +their +density +streamed +down +upon +the +gulf +gray +and +soft +as +a +huge +sponge +the +sea +rose +slowly +in +the +ill +defined +bay +but +the +surface +of +the +water +seemed +almost +motionless +under +the +steady +rain +only +now +and +then +a +barely +perceptible +swelling +motion +would +raise +above +the +sea +s +surface +a +vague +puff +of +smoke +that +would +come +to +dock +in +the +harbor +under +an +arc +of +wet +boulevards +the +city +itself +all +its +white +walls +dripping +gave +off +a +different +steam +that +went +out +to +meet +the +first +steam +whichever +way +you +turned +you +seemed +to +be +breathing +water +to +be +drinking +the +air +in +front +of +the +soaked +sea +i +walked +and +waited +in +that +december +algiers +which +was +for +me +the +city +of +summers +i +had +fled +europe +s +night +the +winter +of +faces +but +the +summer +city +herself +had +been +emptied +of +her +laughter +and +offered +me +only +bent +and +shining +backs +in +the +evening +in +the +crudely +lighted +cafes +where +i +took +refuge +i +read +my +age +in +faces +i +recognized +without +being +able +to +name +them +i +merely +knew +that +they +had +been +young +with +me +and +that +they +were +no +longer +so +yet +i +persisted +without +very +well +knowing +what +i +was +waiting +for +unless +perhaps +the +moment +to +go +back +to +tipasa +to +be +sure +it +is +sheer +madness +almost +always +punished +to +return +to +the +sites +of +one +s +youth +and +try +to +relive +at +forty +what +one +loved +or +keenly +enjoyed +at +twenty +but +i +was +forewarned +of +that +madness +once +already +i +had +returned +to +tipasa +soon +after +those +war +years +that +marked +for +me +the +end +of +youth +i +hoped +i +think +to +recapture +there +a +freedom +i +could +not +forget +in +that +spot +indeed +more +than +twenty +years +ago +i +had +spent +whole +mornings +wandering +among +the +ruins +breathing +in +the +wormwood +warming +myself +against +the +stones +discovering +little +roses +soon +plucked +of +their +petals +which +outlive +the +spring +only +at +noon +at +the +hour +when +the +cicadas +themselves +fell +silent +as +if +overcome +i +would +flee +the +greedy +glare +of +an +all +consuming +light +sometimes +at +night +i +would +sleep +open +eyed +under +a +sky +dripping +with +stars +i +was +alive +then +fifteen +years +later +i +found +my +ruins +a +few +feet +from +the +first +waves +i +followed +the +streets +of +the +forgotten +walled +city +through +fields +covered +with +bitter +trees +and +on +the +slopes +overlooking +the +hay +i +still +caressed +the +bread +colored +columns +but +the +ruins +were +now +surrounded +with +barbed +wire +and +could +be +entered +only +through +certain +openings +it +was +also +forbidden +for +reasons +which +it +appears +that +morality +approves +to +walk +there +at +night +by +day +one +encountered +an +official +guardian +it +just +happened +that +morning +that +it +was +raining +over +the +whole +extent +of +the +ruins +disoriented +walking +through +the +wet +solitary +countryside +i +tried +at +least +to +recapture +that +strength +hitherto +always +at +hand +that +helps +me +to +accept +what +is +when +once +i +have +admitted +that +i +cannot +change +it +and +i +could +not +indeed +reverse +the +course +of +time +and +restore +to +the +world +the +appearance +i +had +loved +which +had +disappeared +in +a +day +long +before +the +second +of +september +in +fact +i +had +not +gone +to +greece +as +i +was +to +do +war +on +the +contrary +had +come +to +us +then +it +had +spread +over +greece +herself +that +distance +those +years +separating +the +warm +ruins +from +the +barbed +wire +were +to +be +found +in +me +too +that +day +as +i +stood +before +the +sarcophaguses +full +of +black +water +or +under +the +sodden +tamarisks +originally +brought +up +surrounded +by +beauty +which +was +my +only +wealth +i +had +begun +in +plenty +then +had +come +the +barbed +wire +i +mean +tyrannies +war +police +forces +the +era +of +revolt +one +had +had +to +put +oneself +right +with +the +authorities +of +night +the +day +s +beauty +was +but +a +memory +and +in +this +muddy +tipasa +the +memory +itself +was +becoming +dim +it +was +indeed +a +question +of +beauty +plenty +or +youth +in +the +light +from +conflagrations +the +world +had +suddenly +shown +its +wrinkles +and +its +wounds +old +and +new +it +had +aged +all +at +once +and +we +with +it +i +had +come +here +looking +for +a +certain +lift +but +i +realized +that +it +inspires +only +the +man +who +is +unaware +that +he +is +about +to +launch +forward +no +love +without +a +little +innocence +where +was +the +innocence +empires +were +tumbling +down +nations +and +men +were +tearing +at +one +another +s +throats +our +hands +were +soiled +originally +innocent +without +knowing +it +we +were +now +guilty +without +meaning +to +be +the +mystery +was +increasing +with +our +knowledge +this +is +why +o +mockery +we +were +concerned +with +morality +weak +and +disabled +i +was +dreaming +of +virtue +in +the +days +of +innocence +i +didn +t +even +know +that +morality +existed +i +knew +it +now +and +i +was +not +capable +of +living +up +to +its +standard +on +the +promontory +that +i +used +to +love +among +the +wet +columns +of +the +ruined +temple +i +seemed +to +be +walking +behind +someone +whose +steps +i +could +still +hear +on +the +stone +slabs +and +mosaics +but +whom +i +should +never +again +overtake +i +went +back +to +paris +and +remained +several +years +before +returning +home +yet +i +obscurely +missed +something +during +all +those +years +when +one +has +once +had +the +good +luck +to +love +intensely +life +is +spent +in +trying +to +recapture +that +ardor +and +that +illumination +forsaking +beauty +and +the +sensual +happiness +attached +to +it +exclusively +serving +misfortune +calls +for +a +nobility +i +lack +but +after +all +nothing +is +true +that +forces +one +to +exclude +isolated +beauty +ends +up +simpering +solitary +justice +ends +up +oppressing +whoever +aims +to +serve +one +exclusive +of +the +other +serves +no +one +not +even +himself +and +eventually +serves +injustice +twice +a +day +comes +when +thanks +to +rigidity +nothing +causes +wonder +any +more +everything +is +known +and +life +is +spent +in +beginning +over +again +these +are +the +days +of +exile +of +desiccated +life +of +dead +souls +to +come +alive +again +one +needs +a +special +grace +self +forgetfulness +or +a +homeland +certain +mornings +on +turning +a +corner +a +delightful +dew +falls +on +the +heart +and +then +evaporates +but +its +coolness +remains +and +this +is +what +the +heart +requires +always +i +had +to +set +out +again +and +in +algiers +a +second +time +still +walking +under +the +same +downpour +which +seemed +not +to +have +ceased +since +a +departure +i +had +thought +definitive +amid +the +same +vast +melancholy +smelling +of +rain +and +sea +despite +this +misty +sky +these +backs +fleeing +under +the +shower +these +cafes +whose +sulphureous +light +distorted +faces +i +persisted +in +hoping +didn +t +i +know +besides +that +algiers +rains +despite +their +appearance +of +never +meaning +to +end +nonetheless +stop +in +an +instant +like +those +streams +in +my +country +which +rise +in +two +hours +lay +waste +acres +of +land +and +suddenly +dry +up +one +evening +in +fact +the +rain +ceased +i +waited +one +night +more +a +limpid +morning +rose +dazzling +over +the +pure +sea +from +the +sky +fresh +as +a +daisy +washed +over +and +over +again +by +the +rains +reduced +by +these +repeated +washings +to +its +finest +and +clearest +texture +emanated +a +vibrant +light +that +gave +to +each +house +and +each +tree +a +sharp +outline +an +astonished +newness +in +the +world +s +morning +the +earth +must +have +sprung +forth +in +such +a +light +i +again +took +the +road +for +tipasa +for +me +there +is +not +a +single +one +of +those +sixty +nine +kilometers +that +is +not +filled +with +memories +and +sensations +turbulent +childhood +adolescent +daydreams +in +the +drone +of +the +bus +s +motor +mornings +unspoiled +girls +beaches +young +muscles +always +at +the +peak +of +their +effort +evening +s +slight +anxiety +in +a +sixteen +year +old +heart +lust +for +life +fame +and +ever +the +same +sky +throughout +the +years +unfailing +in +strength +and +light +itself +insatiable +consuming +one +by +one +over +a +period +of +months +the +victims +stretched +out +in +the +form +of +crosses +on +the +beach +at +the +deathlike +hour +of +noon +always +the +same +sea +too +almost +impalpable +in +the +morning +light +which +i +again +saw +on +the +horizon +as +soon +as +the +road +leaving +the +sahel +and +its +bronze +colored +vineyards +sloped +down +toward +the +coast +but +i +did +not +stop +to +look +at +it +i +wanted +to +see +again +the +chenoua +that +solid +heavy +mountain +cut +out +of +a +single +block +of +stone +which +borders +the +bay +of +tipasa +to +the +west +before +dropping +down +into +the +sea +itself +it +is +seen +from +a +distance +long +before +arriving +a +light +blue +haze +still +confused +with +the +sky +but +gradually +it +is +condensed +as +you +advance +toward +it +until +it +takes +on +the +color +of +the +surrounding +waters +a +huge +motionless +wave +whose +amazing +leap +upward +has +been +brutally +solidified +above +the +sea +calmed +all +at +once +still +nearer +almost +at +the +gates +of +tipasa +here +is +its +frowning +bulk +brown +and +green +here +is +the +old +mossy +god +that +nothing +will +ever +shake +a +refuge +and +harbor +for +its +sons +of +whom +i +am +one +while +watching +it +i +finally +got +through +the +barbed +wire +and +found +myself +among +the +ruins +and +under +the +glorious +december +light +as +happens +but +once +or +twice +in +lives +which +ever +after +can +consider +themselves +favored +to +the +full +i +found +exactly +what +i +had +come +seeking +what +despite +the +era +and +the +world +was +offered +me +truly +to +me +alone +in +that +forsaken +nature +from +the +forum +strewn +with +olives +could +be +seen +the +village +down +below +no +sound +came +from +it +wisps +of +smoke +rose +in +the +limpid +air +the +sea +likewise +was +silent +as +if +smothered +under +the +unbroken +shower +of +dazzling +cold +light +from +the +chenoua +a +distant +cock +s +crow +alone +celebrated +the +day +s +fragile +glory +in +the +direction +of +the +ruins +as +far +as +the +eye +could +see +there +was +nothing +but +pock +marked +stones +and +wormwood +trees +and +perfect +columns +in +the +transparence +of +the +crystalline +air +it +seemed +as +if +the +morning +were +stabilized +the +sun +stopped +for +an +incalculable +moment +in +this +light +and +this +silence +years +of +wrath +and +night +melted +slowly +away +i +listened +to +an +almost +forgotten +sound +within +myself +as +if +my +heart +long +stopped +were +calmly +beginning +to +beat +again +and +awake +now +i +recognized +one +by +one +the +imperceptible +sounds +of +which +the +silence +was +made +up +the +figured +bass +of +the +birds +the +sea +s +faint +brief +sighs +at +the +foot +of +the +rocks +the +vibration +of +the +trees +the +blind +singing +of +the +columns +the +rustling +of +the +wormwood +plants +the +furtive +lizards +i +heard +that +i +also +listened +to +the +happy +torrents +rising +within +me +it +seemed +to +me +that +i +had +at +last +come +to +harbor +for +a +moment +at +least +and +that +henceforth +that +moment +would +be +endless +but +soon +after +the +sun +rose +visibly +a +degree +in +the +sky +a +magpie +preluded +briefly +and +at +once +from +all +directions +birds +songs +burst +out +with +energy +jubilation +joyful +discordance +and +infinite +rapture +the +day +started +up +again +it +was +to +carry +me +to +evening +at +noon +on +the +half +sandy +slopes +covered +with +heliotropes +like +a +foam +left +by +the +furious +waves +of +the +last +few +days +as +they +withdrew +i +watched +the +sea +barely +swelling +at +that +hour +with +an +exhausted +motion +and +i +satisfied +the +two +thirsts +one +cannot +long +neglect +without +drying +up +i +mean +loving +and +admiring +for +there +is +merely +bad +luck +in +not +being +loved +there +is +misfortune +in +not +loving +all +of +us +today +are +dying +of +this +misfortune +for +violence +and +hatred +dry +up +the +heart +itself +the +long +fight +for +justice +exhausts +the +love +that +nevertheless +gave +birth +to +it +in +the +clamor +in +which +we +live +love +is +impossible +and +justice +does +not +suffice +this +is +why +europe +hates +daylight +and +is +only +able +to +set +injustice +up +against +injustice +but +in +order +to +keep +justice +from +shriveling +up +like +a +beautiful +orange +fruit +containing +nothing +but +a +bitter +dry +pulp +i +discovered +once +more +at +tipasa +that +one +must +keep +intact +in +oneself +a +freshness +a +cool +wellspring +of +joy +love +the +day +that +escapes +injustice +and +return +to +combat +having +won +that +light +here +i +recaptured +the +former +beauty +a +young +sky +and +i +measured +my +luck +realizing +at +last +that +in +the +worst +years +of +our +madness +the +memory +of +that +sky +had +never +left +me +this +was +what +in +the +end +had +kept +me +from +despairing +i +had +always +known +that +the +ruins +of +tipasa +were +younger +than +our +new +constructions +or +our +bomb +damage +there +the +world +began +over +again +every +day +in +an +ever +new +light +o +light +this +is +the +cry +of +all +the +characters +of +ancient +drama +brought +face +to +face +with +their +fate +this +last +resort +was +ours +too +and +i +knew +it +now +in +the +middle +of +winter +i +at +last +discovered +that +there +was +in +me +an +invincible +summer +i +have +again +left +tipasa +i +have +returned +to +europe +and +its +struggles +but +the +memory +of +that +day +still +uplifts +me +and +helps +me +to +welcome +equally +what +delights +and +what +crushes +in +the +difficult +hour +we +are +living +what +else +can +i +desire +than +to +exclude +nothing +and +to +learn +how +to +braid +with +white +thread +and +black +thread +a +single +cord +stretched +to +the +breaking +point +in +everything +i +have +done +or +said +up +to +now +i +seem +to +recognize +these +two +forces +even +when +they +work +at +cross +purposes +i +have +not +been +able +to +disown +the +light +into +which +i +was +born +and +yet +i +have +not +wanted +to +reject +the +servitudes +of +this +time +it +would +be +too +easy +to +contrast +here +with +the +sweet +name +of +tipasa +other +more +sonorous +and +crueler +names +for +men +of +today +there +is +an +inner +way +which +i +know +well +from +having +taken +it +in +both +directions +leading +from +the +spiritual +hilltops +to +the +capitals +of +crime +and +doubtless +one +can +always +rest +fall +asleep +on +the +hilltop +or +board +with +crime +but +if +one +forgoes +a +part +of +what +is +one +must +forgo +being +oneself +one +must +forgo +living +or +loving +otherwise +than +by +proxy +there +is +thus +a +will +to +live +without +rejecting +anything +of +life +which +is +the +virtue +i +honor +most +in +this +world +from +time +to +time +at +least +it +is +true +that +i +should +like +to +have +practiced +it +inasmuch +as +few +epochs +require +as +much +as +ours +that +one +should +be +equal +to +the +best +as +to +the +worst +i +should +like +indeed +to +shirk +nothing +and +to +keep +faithfully +a +double +memory +yes +there +is +beauty +and +there +are +the +humiliated +whatever +may +be +the +difficulties +of +the +undertaking +i +should +like +never +to +be +unfaithful +either +to +one +or +to +the +others +but +this +still +resembles +a +moral +code +and +we +live +for +something +that +goes +farther +than +morality +if +we +could +only +name +it +what +silence +on +the +hill +of +sainte +salsa +to +the +east +of +tipasa +the +evening +is +inhabited +it +is +still +light +to +tell +the +truth +but +in +this +light +an +almost +invisible +fading +announces +the +day +s +end +a +wind +rises +young +like +the +night +and +suddenly +the +waveless +sea +chooses +a +direction +and +flows +like +a +great +barren +river +from +one +end +of +the +horizon +to +the +other +the +sky +darkens +then +begins +the +mystery +the +gods +of +night +the +beyond +pleasure +but +how +to +translate +this +the +little +coin +i +am +carrying +away +from +here +has +a +visible +surface +a +woman +s +beautiful +face +which +repeats +to +me +all +i +have +learned +in +this +day +and +a +worn +surface +which +i +feel +under +my +fingers +during +the +return +what +can +that +lipless +mouth +be +saying +except +what +i +am +told +by +another +mysterious +voice +within +me +which +every +day +informs +me +of +my +ignorance +and +my +happiness +the +secret +i +am +seeking +lies +hidden +in +a +valley +full +of +olive +trees +under +the +grass +and +the +cold +violets +around +an +old +house +that +smells +of +wood +smoke +for +more +than +twenty +years +i +rambled +over +that +valley +and +others +resembling +it +i +questioned +mute +goatherds +i +knocked +at +the +door +of +deserted +ruins +occasionally +at +the +moment +of +the +first +star +in +the +still +bright +sky +under +a +shower +of +shimmering +light +i +thought +i +knew +i +did +know +in +truth +i +still +know +perhaps +but +no +one +wants +any +of +this +secret +i +don +t +want +any +myself +doubtless +and +i +cannot +stand +apart +from +my +people +i +live +in +my +family +which +thinks +it +rules +over +rich +and +hideous +cities +built +of +stones +and +mists +day +and +night +it +speaks +up +and +everything +bows +before +it +which +bows +before +nothing +it +is +deaf +to +all +secrets +its +power +that +carries +me +bores +me +nevertheless +and +on +occasion +its +shouts +weary +me +but +its +misfortune +is +mine +and +we +are +of +the +same +blood +a +cripple +likewise +an +accomplice +and +noisy +have +i +not +shouted +among +the +stones +consequently +i +strive +to +forget +i +walk +in +our +cities +of +iron +and +fire +i +smile +bravely +at +the +night +i +hail +the +storms +i +shall +be +faithful +i +have +forgotten +in +truth +active +and +deaf +henceforth +but +perhaps +someday +when +we +are +ready +to +die +of +exhaustion +and +ignorance +i +shall +be +able +to +disown +our +garish +tombs +and +go +and +stretch +out +in +the +valley +under +the +same +light +and +learn +for +the +last +time +what +i +know +the +artist +and +his +time +i +as +an +artist +have +you +chosen +the +role +of +witness +this +would +take +considerable +presumption +or +a +vocation +i +lack +personally +i +don +t +ask +for +any +role +and +i +have +but +one +real +vocation +as +a +man +i +have +a +preference +for +happiness +as +an +artist +it +seems +to +me +that +i +still +have +characters +to +bring +to +life +without +the +help +of +wars +or +of +law +courts +but +i +have +been +sought +out +as +each +individual +has +been +sought +out +artists +of +the +past +could +at +least +keep +silent +in +the +face +of +tyranny +the +tyrannies +of +today +are +improved +they +no +longer +admit +of +silence +or +neutrality +one +has +to +take +a +stand +be +either +for +or +against +well +in +that +case +i +am +against +but +this +does +not +amount +to +choosing +the +comfortable +role +of +witness +it +is +merely +accepting +the +time +as +it +is +minding +one +s +own +business +in +short +moreover +you +are +forgetting +that +today +judges +accused +and +witnesses +exchange +positions +with +exemplary +rapidity +my +choice +if +you +think +i +am +making +one +would +at +least +be +never +to +sit +on +a +judge +s +bench +or +beneath +it +like +so +many +of +our +philosophers +aside +from +that +there +is +no +dearth +of +opportunities +for +action +in +the +relative +trade +unionism +is +today +the +first +and +the +most +fruitful +among +them +ii +is +not +the +quixotism +that +has +been +criticized +in +your +recent +works +an +idealistic +and +romantic +definition +of +the +artist +s +role +however +words +are +perverted +they +provisionally +keep +their +meaning +and +it +is +clear +to +me +that +the +romantic +is +the +one +who +chooses +the +perpetual +motion +of +history +the +grandiose +epic +and +the +announcement +of +a +miraculous +event +at +the +end +of +time +if +i +have +tried +to +define +something +it +is +on +the +contrary +simply +the +common +existence +of +history +and +of +man +everyday +life +with +the +most +possible +light +thrown +upon +it +the +dogged +struggle +against +one +s +own +degradation +and +that +of +others +it +is +likewise +idealism +and +of +the +worse +kind +to +end +up +by +hanging +all +action +and +all +truth +on +a +meaning +of +history +that +is +not +implicit +in +events +and +that +in +any +case +implies +a +mythical +aim +would +it +therefore +be +realism +to +take +as +the +laws +of +history +the +future +in +other +words +just +what +is +not +yet +history +something +of +whose +nature +we +know +nothing +it +seems +to +me +on +the +contrary +that +i +am +arguing +in +favor +of +a +true +realism +against +a +mythology +that +is +both +illogical +and +deadly +and +against +romantic +nihilism +whether +it +be +bourgeois +or +allegedly +revolutionary +to +tell +the +truth +far +from +being +romantic +i +believe +in +the +necessity +of +a +rule +and +an +order +i +merely +say +that +there +can +be +no +question +of +just +any +rule +whatsoever +and +that +it +would +be +surprising +if +the +rule +we +need +were +given +us +by +this +disordered +society +or +on +the +other +hand +by +those +doctrinaires +who +declare +themselves +liberated +from +all +rules +and +all +scruples +iii +the +marxists +and +their +followers +likewise +think +they +are +humanists +but +for +them +human +nature +will +be +formed +in +the +classless +society +of +the +future +to +begin +with +this +proves +that +they +reject +at +the +present +moment +what +we +all +are +those +humanists +are +accusers +of +man +how +can +we +be +surprised +that +such +a +claim +should +have +developed +in +the +world +of +court +trials +they +reject +the +man +of +today +in +the +name +of +the +man +of +the +future +that +claim +is +religious +in +nature +why +should +it +be +more +justified +than +the +one +which +announces +the +kingdom +of +heaven +to +come +in +reality +the +end +of +history +cannot +have +within +the +limits +of +our +condition +any +definable +significance +it +can +only +be +the +object +of +a +faith +and +of +a +new +mystification +a +mystification +that +today +is +no +less +great +than +the +one +that +of +old +based +colonial +oppression +on +the +necessity +of +saving +the +souls +of +infidels +iv +is +not +that +what +in +reality +separates +you +from +the +intellectuals +of +the +left +you +mean +that +is +what +separates +those +intellectuals +from +the +left +traditionally +the +left +has +always +been +at +war +against +injustice +obscurantism +and +oppression +it +always +thought +that +those +phenomena +were +interdependent +the +idea +that +obscurantism +can +lead +to +justice +the +national +interest +to +liberty +is +quite +recent +the +truth +is +that +certain +intellectuals +of +the +left +not +all +fortunately +are +today +hypnotized +by +force +and +efficacy +as +our +intellectuals +of +the +right +were +before +and +during +the +war +their +attitudes +are +different +but +the +act +of +resignation +is +the +same +the +first +wanted +to +be +realistic +nationalists +the +second +want +to +be +realistic +socialists +in +the +end +they +betray +nationalism +and +socialism +alike +in +the +name +of +a +realism +henceforth +without +content +and +adored +as +a +pure +and +illusory +technique +of +efficacy +this +is +a +temptation +that +can +after +all +be +understood +but +still +however +the +question +is +looked +at +the +new +position +of +the +people +who +call +themselves +or +think +themselves +leftists +consists +in +saying +certain +oppressions +are +justifiable +because +they +follow +the +direction +which +cannot +be +justified +of +history +hence +there +are +presumably +privileged +executioners +and +privileged +by +nothing +this +is +about +what +was +said +in +another +context +by +joseph +de +maistre +who +has +never +been +taken +for +an +incendiary +but +this +is +a +thesis +which +personally +i +shall +always +reject +allow +me +to +set +up +against +it +the +traditional +point +of +view +of +what +has +been +hitherto +called +the +left +all +executioners +are +of +the +same +family +v +what +can +the +artist +do +in +the +world +of +today +he +is +not +asked +either +to +write +about +co +operatives +or +conversely +to +lull +to +sleep +in +himself +the +sufferings +endured +by +others +throughout +history +and +since +you +have +asked +me +to +speak +personally +i +am +going +to +do +so +as +simply +as +i +can +considered +as +artists +we +perhaps +have +no +need +to +interfere +in +the +affairs +of +the +world +but +considered +as +men +yes +the +miner +who +is +exploited +or +shot +down +the +slaves +in +the +camps +those +in +the +colonies +the +legions +of +persecuted +throughout +the +world +they +need +all +those +who +can +speak +to +communicate +their +silence +and +to +keep +in +touch +with +them +i +have +not +written +day +after +day +fighting +articles +and +texts +i +have +not +taken +part +in +the +common +struggles +because +i +desire +the +world +to +be +covered +with +greek +statues +and +masterpieces +the +man +who +has +such +a +desire +does +exist +in +me +except +that +he +has +something +better +to +do +in +trying +to +instill +life +into +the +creatures +of +his +imagination +but +from +my +first +articles +to +my +latest +book +i +have +written +so +much +and +perhaps +too +much +only +because +i +cannot +keep +from +being +drawn +toward +everyday +life +toward +those +whoever +they +may +be +who +are +humiliated +and +debased +they +need +to +hope +and +if +all +keep +silent +or +if +they +are +given +a +choice +between +two +kinds +of +humiliation +they +will +be +forever +deprived +of +hope +and +we +with +them +it +seems +to +me +impossible +to +endure +that +idea +nor +can +he +who +cannot +endure +it +lie +down +to +sleep +in +his +tower +not +through +virtue +as +you +see +but +through +a +sort +of +almost +organic +intolerance +which +you +feel +or +do +not +feel +indeed +i +see +many +who +fail +to +feel +it +but +i +cannot +envy +their +sleep +this +does +not +mean +however +that +we +must +sacrifice +our +artist +s +nature +to +some +social +preaching +or +other +i +have +said +elsewhere +why +the +artist +was +more +than +ever +necessary +but +if +we +intervene +as +men +that +experience +will +have +an +effect +upon +our +language +and +if +we +are +not +artists +in +our +language +first +of +all +what +sort +of +artists +are +we +even +if +militants +in +our +lives +we +speak +in +our +works +of +deserts +and +of +selfish +love +the +mere +fact +that +our +lives +are +militant +causes +a +special +tone +of +voice +to +people +with +men +that +desert +and +that +love +i +shall +certainly +not +choose +the +moment +when +we +are +beginning +to +leave +nihilism +behind +to +stupidly +deny +the +values +of +creation +in +favor +of +the +values +of +humanity +or +vice +versa +in +my +mind +neither +one +is +ever +separated +from +the +other +and +i +measure +the +greatness +of +an +artist +moliere +tolstoy +melville +by +the +balance +he +managed +to +maintain +between +the +two +today +under +the +pressure +of +events +we +are +obliged +to +transport +that +tension +into +our +lives +likewise +this +is +why +so +many +artists +bending +under +the +burden +take +refuge +in +the +ivory +tower +or +conversely +in +the +social +church +but +as +for +me +i +see +in +both +choices +a +like +act +of +resignation +we +must +simultaneously +serve +suffering +and +beauty +the +long +patience +the +strength +the +secret +cunning +such +service +calls +for +are +the +virtues +that +establish +the +very +renascence +we +need +one +word +more +this +undertaking +i +know +cannot +be +accomplished +without +dangers +and +bitterness +we +must +accept +the +dangers +the +era +of +chairbound +artists +is +over +but +we +must +reject +the +bitterness +one +of +the +temptations +of +the +artist +is +to +believe +himself +solitary +and +in +truth +he +bears +this +shouted +at +him +with +a +certain +base +delight +but +this +is +not +true +he +stands +in +the +midst +of +all +in +the +same +rank +neither +higher +nor +lower +with +all +those +who +are +working +and +struggling +his +very +vocation +in +the +face +of +oppression +is +to +open +the +prisons +and +to +give +a +voice +to +the +sorrows +and +joys +of +all +this +is +where +art +against +its +enemies +justifies +itself +by +proving +precisely +that +it +is +no +one +s +enemy +by +itself +art +could +probably +not +produce +the +renascence +which +implies +justice +and +liberty +but +without +it +that +renascence +would +be +without +forms +and +consequently +would +be +nothing +without +culture +and +the +relative +freedom +it +implies +society +even +when +perfect +is +but +a +jungle +this +is +why +any +authentic +creation +is +a +gift +to +the +future diff --git a/model/data/all_words.txt.bak b/model/data/all_words.txt.bak new file mode 100644 index 0000000..bb58e79 --- /dev/null +++ b/model/data/all_words.txt.bak @@ -0,0 +1,63913 @@ +everyone +is +permitted +to +copy +and +distribute +verbatim +copies +of +this +license +document +but +changing +it +is +not +allowed +preamble +the +licenses +for +most +software +are +designed +to +take +away +your +freedom +to +share +and +change +it +by +contrast +the +gnu +general +public +license +is +intended +to +guarantee +your +freedom +to +share +and +change +free +software +to +make +sure +the +software +is +free +for +all +its +users +this +general +public +license +applies +to +most +of +the +free +software +foundation +s +software +and +to +any +other +program +whose +authors +commit +to +using +it +some +other +free +software +foundation +software +is +covered +by +the +gnu +lesser +general +public +license +instead +you +can +apply +it +to +your +programs +too +when +we +speak +of +free +software +we +are +referring +to +freedom +not +price +our +general +public +licenses +are +designed +to +make +sure +that +you +have +the +freedom +to +distribute +copies +of +free +software +and +charge +for +this +service +if +you +wish +that +you +receive +source +code +or +can +get +it +if +you +want +it +that +you +can +change +the +software +or +use +pieces +of +it +in +new +free +programs +and +that +you +know +you +can +do +these +things +to +protect +your +rights +we +need +to +make +restrictions +that +forbid +anyone +to +deny +you +these +rights +or +to +ask +you +to +surrender +the +rights +these +restrictions +translate +to +certain +responsibilities +for +you +if +you +distribute +copies +of +the +software +or +if +you +modify +it +for +example +if +you +distribute +copies +of +such +a +program +whether +gratis +or +for +a +fee +you +must +give +the +recipients +all +the +rights +that +you +have +you +must +make +sure +that +they +too +receive +or +can +get +the +source +code +and +you +must +show +them +these +terms +so +they +know +their +rights +we +protect +your +rights +with +two +steps +copyright +the +software +and +offer +you +this +license +which +gives +you +legal +permission +to +copy +distribute +and +or +modify +the +software +also +for +each +author +s +protection +and +ours +we +want +to +make +certain +that +everyone +understands +that +there +is +no +warranty +for +this +free +software +if +the +software +is +modified +by +someone +else +and +passed +on +we +want +its +recipients +to +know +that +what +they +have +is +not +the +original +so +that +any +problems +introduced +by +others +will +not +reflect +on +the +original +authors +reputations +finally +any +free +program +is +threatened +constantly +by +software +patents +we +wish +to +avoid +the +danger +that +redistributors +of +a +free +program +will +individually +obtain +patent +licenses +in +effect +making +the +program +proprietary +to +prevent +this +we +have +made +it +clear +that +any +patent +must +be +licensed +for +everyone +s +free +use +or +not +licensed +at +all +the +precise +terms +and +conditions +for +copying +distribution +and +modification +follow +terms +and +conditions +for +copying +distribution +and +modification +this +license +applies +to +any +program +or +other +work +which +contains +a +notice +placed +by +the +copyright +holder +saying +it +may +be +distributed +under +the +terms +of +this +general +public +license +the +program +below +refers +to +any +such +program +or +work +and +a +work +based +on +the +program +means +either +the +program +or +any +derivative +work +under +copyright +law +that +is +to +say +a +work +containing +the +program +or +a +portion +of +it +either +verbatim +or +with +modifications +and +or +translated +into +another +language +hereinafter +translation +is +included +without +limitation +in +the +term +modification +each +licensee +is +addressed +as +you +activities +other +than +copying +distribution +and +modification +are +not +covered +by +this +license +they +are +outside +its +scope +the +act +of +running +the +program +is +not +restricted +and +the +output +from +the +program +is +covered +only +if +its +contents +constitute +a +work +based +on +the +program +independent +of +having +been +made +by +running +the +program +whether +that +is +true +depends +on +what +the +program +does +you +may +copy +and +distribute +verbatim +copies +of +the +program +s +source +code +as +you +receive +it +in +any +medium +provided +that +you +conspicuously +and +appropriately +publish +on +each +copy +an +appropriate +copyright +notice +and +disclaimer +of +warranty +keep +intact +all +the +notices +that +refer +to +this +license +and +to +the +absence +of +any +warranty +and +give +any +other +recipients +of +the +program +a +copy +of +this +license +along +with +the +program +you +may +charge +a +fee +for +the +physical +act +of +transferring +a +copy +and +you +may +at +your +option +offer +warranty +protection +in +exchange +for +a +fee +you +may +modify +your +copy +or +copies +of +the +program +or +any +portion +of +it +thus +forming +a +work +based +on +the +program +and +copy +and +distribute +such +modifications +or +work +under +the +terms +of +section +above +provided +that +you +also +meet +all +of +these +conditions +a +you +must +cause +the +modified +files +to +carry +prominent +notices +stating +that +you +changed +the +files +and +the +date +of +any +change +b +you +must +cause +any +work +that +you +distribute +or +publish +that +in +whole +or +in +part +contains +or +is +derived +from +the +program +or +any +part +thereof +to +be +licensed +as +a +whole +at +no +charge +to +all +third +parties +under +the +terms +of +this +license +c +if +the +modified +program +normally +reads +commands +interactively +when +run +you +must +cause +it +when +started +running +for +such +interactive +use +in +the +most +ordinary +way +to +print +or +display +an +announcement +including +an +appropriate +copyright +notice +and +a +notice +that +there +is +no +warranty +or +else +saying +that +you +provide +a +warranty +and +that +users +may +redistribute +the +program +under +these +conditions +and +telling +the +user +how +to +view +a +copy +of +this +license +exception +if +the +program +itself +is +interactive +but +does +not +normally +print +such +an +announcement +your +work +based +on +the +program +is +not +required +to +print +an +announcement +these +requirements +apply +to +the +modified +work +as +a +whole +if +identifiable +sections +of +that +work +are +not +derived +from +the +program +and +can +be +reasonably +considered +independent +and +separate +works +in +themselves +then +this +license +and +its +terms +do +not +apply +to +those +sections +when +you +distribute +them +as +separate +works +but +when +you +distribute +the +same +sections +as +part +of +a +whole +which +is +a +work +based +on +the +program +the +distribution +of +the +whole +must +be +on +the +terms +of +this +license +whose +permissions +for +other +licensees +extend +to +the +entire +whole +and +thus +to +each +and +every +part +regardless +of +who +wrote +it +thus +it +is +not +the +intent +of +this +section +to +claim +rights +or +contest +your +rights +to +work +written +entirely +by +you +rather +the +intent +is +to +exercise +the +right +to +control +the +distribution +of +derivative +or +collective +works +based +on +the +program +in +addition +mere +aggregation +of +another +work +not +based +on +the +program +with +the +program +or +with +a +work +based +on +the +program +on +a +volume +of +a +storage +or +distribution +medium +does +not +bring +the +other +work +under +the +scope +of +this +license +you +may +copy +and +distribute +the +program +or +a +work +based +on +it +under +section +in +object +code +or +executable +form +under +the +terms +of +sections +and +above +provided +that +you +also +do +one +of +the +following +a +accompany +it +with +the +complete +corresponding +machine +readable +source +code +which +must +be +distributed +under +the +terms +of +sections +and +above +on +a +medium +customarily +used +for +software +interchange +or +b +accompany +it +with +a +written +offer +valid +for +at +least +three +years +to +give +any +third +party +for +a +charge +no +more +than +your +cost +of +physically +performing +source +distribution +a +complete +machine +readable +copy +of +the +corresponding +source +code +to +be +distributed +under +the +terms +of +sections +and +above +on +a +medium +customarily +used +for +software +interchange +or +c +accompany +it +with +the +information +you +received +as +to +the +offer +to +distribute +corresponding +source +code +this +alternative +is +allowed +only +for +noncommercial +distribution +and +only +if +you +received +the +program +in +object +code +or +executable +form +with +such +an +offer +in +accord +with +subsection +b +above +the +source +code +for +a +work +means +the +preferred +form +of +the +work +for +making +modifications +to +it +for +an +executable +work +complete +source +code +means +all +the +source +code +for +all +modules +it +contains +plus +any +associated +interface +definition +files +plus +the +scripts +used +to +control +compilation +and +installation +of +the +executable +however +as +a +special +exception +the +source +code +distributed +need +not +include +anything +that +is +normally +distributed +in +either +source +or +binary +form +with +the +major +components +compiler +kernel +and +so +on +of +the +operating +system +on +which +the +executable +runs +unless +that +component +itself +accompanies +the +executable +if +distribution +of +executable +or +object +code +is +made +by +offering +access +to +copy +from +a +designated +place +then +offering +equivalent +access +to +copy +the +source +code +from +the +same +place +counts +as +distribution +of +the +source +code +even +though +third +parties +are +not +compelled +to +copy +the +source +along +with +the +object +code +you +may +not +copy +modify +sublicense +or +distribute +the +program +except +as +expressly +provided +under +this +license +any +attempt +otherwise +to +copy +modify +sublicense +or +distribute +the +program +is +void +and +will +automatically +terminate +your +rights +under +this +license +however +parties +who +have +received +copies +or +rights +from +you +under +this +license +will +not +have +their +licenses +terminated +so +long +as +such +parties +remain +in +full +compliance +you +are +not +required +to +accept +this +license +since +you +have +not +signed +it +however +nothing +else +grants +you +permission +to +modify +or +distribute +the +program +or +its +derivative +works +these +actions +are +prohibited +by +law +if +you +do +not +accept +this +license +therefore +by +modifying +or +distributing +the +program +or +any +work +based +on +the +program +you +indicate +your +acceptance +of +this +license +to +do +so +and +all +its +terms +and +conditions +for +copying +distributing +or +modifying +the +program +or +works +based +on +it +each +time +you +redistribute +the +program +or +any +work +based +on +the +program +the +recipient +automatically +receives +a +license +from +the +original +licensor +to +copy +distribute +or +modify +the +program +subject +to +these +terms +and +conditions +you +may +not +impose +any +further +restrictions +on +the +recipients +exercise +of +the +rights +granted +herein +you +are +not +responsible +for +enforcing +compliance +by +third +parties +to +this +license +if +as +a +consequence +of +a +court +judgment +or +allegation +of +patent +infringement +or +for +any +other +reason +not +limited +to +patent +issues +conditions +are +imposed +on +you +whether +by +court +order +agreement +or +otherwise +that +contradict +the +conditions +of +this +license +they +do +not +excuse +you +from +the +conditions +of +this +license +if +you +cannot +distribute +so +as +to +satisfy +simultaneously +your +obligations +under +this +license +and +any +other +pertinent +obligations +then +as +a +consequence +you +may +not +distribute +the +program +at +all +for +example +if +a +patent +license +would +not +permit +royalty +free +redistribution +of +the +program +by +all +those +who +receive +copies +directly +or +indirectly +through +you +then +the +only +way +you +could +satisfy +both +it +and +this +license +would +be +to +refrain +entirely +from +distribution +of +the +program +if +any +portion +of +this +section +is +held +invalid +or +unenforceable +under +any +particular +circumstance +the +balance +of +the +section +is +intended +to +apply +and +the +section +as +a +whole +is +intended +to +apply +in +other +circumstances +it +is +not +the +purpose +of +this +section +to +induce +you +to +infringe +any +patents +or +other +property +right +claims +or +to +contest +validity +of +any +such +claims +this +section +has +the +sole +purpose +of +protecting +the +integrity +of +the +free +software +distribution +system +which +is +implemented +by +public +license +practices +many +people +have +made +generous +contributions +to +the +wide +range +of +software +distributed +through +that +system +in +reliance +on +consistent +application +of +that +system +it +is +up +to +the +author +donor +to +decide +if +he +or +she +is +willing +to +distribute +software +through +any +other +system +and +a +licensee +cannot +impose +that +choice +this +section +is +intended +to +make +thoroughly +clear +what +is +believed +to +be +a +consequence +of +the +rest +of +this +license +if +the +distribution +and +or +use +of +the +program +is +restricted +in +certain +countries +either +by +patents +or +by +copyrighted +interfaces +the +original +copyright +holder +who +places +the +program +under +this +license +may +add +an +explicit +geographical +distribution +limitation +excluding +those +countries +so +that +distribution +is +permitted +only +in +or +among +countries +not +thus +excluded +in +such +case +this +license +incorporates +the +limitation +as +if +written +in +the +body +of +this +license +the +free +software +foundation +may +publish +revised +and +or +new +versions +of +the +general +public +license +from +time +to +time +such +new +versions +will +be +similar +in +spirit +to +the +present +version +but +may +differ +in +detail +to +address +new +problems +or +concerns +each +version +is +given +a +distinguishing +version +number +if +the +program +specifies +a +version +number +of +this +license +which +applies +to +it +and +any +later +version +you +have +the +option +of +following +the +terms +and +conditions +either +of +that +version +or +of +any +later +version +published +by +the +free +software +foundation +if +the +program +does +not +specify +a +version +number +of +this +license +you +may +choose +any +version +ever +published +by +the +free +software +foundation +if +you +wish +to +incorporate +parts +of +the +program +into +other +free +programs +whose +distribution +conditions +are +different +write +to +the +author +to +ask +for +permission +for +software +which +is +copyrighted +by +the +free +software +foundation +write +to +the +free +software +foundation +we +sometimes +make +exceptions +for +this +our +decision +will +be +guided +by +the +two +goals +of +preserving +the +free +status +of +all +derivatives +of +our +free +software +and +of +promoting +the +sharing +and +reuse +of +software +generally +no +warranty +because +the +program +is +licensed +free +of +charge +there +is +no +warranty +for +the +program +to +the +extent +permitted +by +applicable +law +except +when +otherwise +stated +in +writing +the +copyright +holders +and +or +other +parties +provide +the +program +as +is +without +warranty +of +any +kind +either +expressed +or +implied +including +but +not +limited +to +the +implied +warranties +of +merchantability +and +fitness +for +a +particular +purpose +the +entire +risk +as +to +the +quality +and +performance +of +the +program +is +with +you +should +the +program +prove +defective +you +assume +the +cost +of +all +necessary +servicing +repair +or +correction +in +no +event +unless +required +by +applicable +law +or +agreed +to +in +writing +will +any +copyright +holder +or +any +other +party +who +may +modify +and +or +redistribute +the +program +as +permitted +above +be +liable +to +you +for +damages +including +any +general +special +incidental +or +consequential +damages +arising +out +of +the +use +or +inability +to +use +the +program +including +but +not +limited +to +loss +of +data +or +data +being +rendered +inaccurate +or +losses +sustained +by +you +or +third +parties +or +a +failure +of +the +program +to +operate +with +any +other +programs +even +if +such +holder +or +other +party +has +been +advised +of +the +possibility +of +such +damages +end +of +terms +and +conditions +how +to +apply +these +terms +to +your +new +programs +if +you +develop +a +new +program +and +you +want +it +to +be +of +the +greatest +possible +use +to +the +public +the +best +way +to +achieve +this +is +to +make +it +free +software +which +everyone +can +redistribute +and +change +under +these +terms +to +do +so +attach +the +following +notices +to +the +program +it +is +safest +to +attach +them +to +the +start +of +each +source +file +to +most +effectively +convey +the +exclusion +of +warranty +and +each +file +should +have +at +least +the +copyright +line +and +a +pointer +to +where +the +full +notice +is +found +one +line +to +give +the +program +s +name +and +an +idea +of +what +it +does +copyright +c +yyyy +name +of +author +this +program +is +free +software +you +can +redistribute +it +and +or +modify +it +under +the +terms +of +the +gnu +general +public +license +as +published +by +the +free +software +foundation +either +version +of +the +license +or +at +your +option +any +later +version +this +program +is +distributed +in +the +hope +that +it +will +be +useful +but +without +any +warranty +without +even +the +implied +warranty +of +merchantability +or +fitness +for +a +particular +purpose +see +the +gnu +general +public +license +for +more +details +you +should +have +received +a +copy +of +the +gnu +general +public +license +along +with +this +program +if +not +see +also +add +information +on +how +to +contact +you +by +electronic +and +paper +mail +if +the +program +is +interactive +make +it +output +a +short +notice +like +this +when +it +starts +in +an +interactive +mode +gnomovision +version +copyright +c +year +name +of +author +gnomovision +comes +with +absolutely +no +warranty +for +details +type +show +w +this +is +free +software +and +you +are +welcome +to +redistribute +it +under +certain +conditions +type +show +c +for +details +the +hypothetical +commands +show +w +and +show +c +should +show +the +appropriate +parts +of +the +general +public +license +of +course +the +commands +you +use +may +be +called +something +other +than +show +w +and +show +c +they +could +even +be +mouse +clicks +or +menu +items +whatever +suits +your +program +you +should +also +get +your +employer +if +you +work +as +a +programmer +or +your +school +if +any +to +sign +a +copyright +disclaimer +for +the +program +if +necessary +here +is +a +sample +alter +the +names +everyone +is +permitted +to +copy +and +distribute +verbatim +copies +of +this +license +document +but +changing +it +is +not +allowed +preamble +the +gnu +general +public +license +is +a +free +copyleft +license +for +software +and +other +kinds +of +works +the +licenses +for +most +software +and +other +practical +works +are +designed +to +take +away +your +freedom +to +share +and +change +the +works +by +contrast +the +gnu +general +public +license +is +intended +to +guarantee +your +freedom +to +share +and +change +all +versions +of +a +program +to +make +sure +it +remains +free +software +for +all +its +users +we +the +free +software +foundation +use +the +gnu +general +public +license +for +most +of +our +software +it +applies +also +to +any +other +work +released +this +way +by +its +authors +you +can +apply +it +to +your +programs +too +when +we +speak +of +free +software +we +are +referring +to +freedom +not +price +our +general +public +licenses +are +designed +to +make +sure +that +you +have +the +freedom +to +distribute +copies +of +free +software +and +charge +for +them +if +you +wish +that +you +receive +source +code +or +can +get +it +if +you +want +it +that +you +can +change +the +software +or +use +pieces +of +it +in +new +free +programs +and +that +you +know +you +can +do +these +things +to +protect +your +rights +we +need +to +prevent +others +from +denying +you +these +rights +or +asking +you +to +surrender +the +rights +therefore +you +have +certain +responsibilities +if +you +distribute +copies +of +the +software +or +if +you +modify +it +responsibilities +to +respect +the +freedom +of +others +for +example +if +you +distribute +copies +of +such +a +program +whether +gratis +or +for +a +fee +you +must +pass +on +to +the +recipients +the +same +freedoms +that +you +received +you +must +make +sure +that +they +too +receive +or +can +get +the +source +code +and +you +must +show +them +these +terms +so +they +know +their +rights +developers +that +use +the +gnu +gpl +protect +your +rights +with +two +steps +assert +copyright +on +the +software +and +offer +you +this +license +giving +you +legal +permission +to +copy +distribute +and +or +modify +it +for +the +developers +and +authors +protection +the +gpl +clearly +explains +that +there +is +no +warranty +for +this +free +software +for +both +users +and +authors +sake +the +gpl +requires +that +modified +versions +be +marked +as +changed +so +that +their +problems +will +not +be +attributed +erroneously +to +authors +of +previous +versions +some +devices +are +designed +to +deny +users +access +to +install +or +run +modified +versions +of +the +software +inside +them +although +the +manufacturer +can +do +so +this +is +fundamentally +incompatible +with +the +aim +of +protecting +users +freedom +to +change +the +software +the +systematic +pattern +of +such +abuse +occurs +in +the +area +of +products +for +individuals +to +use +which +is +precisely +where +it +is +most +unacceptable +therefore +we +have +designed +this +version +of +the +gpl +to +prohibit +the +practice +for +those +products +if +such +problems +arise +substantially +in +other +domains +we +stand +ready +to +extend +this +provision +to +those +domains +in +future +versions +of +the +gpl +as +needed +to +protect +the +freedom +of +users +finally +every +program +is +threatened +constantly +by +software +patents +states +should +not +allow +patents +to +restrict +development +and +use +of +software +on +general +purpose +computers +but +in +those +that +do +we +wish +to +avoid +the +special +danger +that +patents +applied +to +a +free +program +could +make +it +effectively +proprietary +to +prevent +this +the +gpl +assures +that +patents +cannot +be +used +to +render +the +program +non +free +the +precise +terms +and +conditions +for +copying +distribution +and +modification +follow +terms +and +conditions +definitions +this +license +refers +to +version +of +the +gnu +general +public +license +copyright +also +means +copyright +like +laws +that +apply +to +other +kinds +of +works +such +as +semiconductor +masks +the +program +refers +to +any +copyrightable +work +licensed +under +this +license +each +licensee +is +addressed +as +you +licensees +and +recipients +may +be +individuals +or +organizations +to +modify +a +work +means +to +copy +from +or +adapt +all +or +part +of +the +work +in +a +fashion +requiring +copyright +permission +other +than +the +making +of +an +exact +copy +the +resulting +work +is +called +a +modified +version +of +the +earlier +work +or +a +work +based +on +the +earlier +work +a +covered +work +means +either +the +unmodified +program +or +a +work +based +on +the +program +to +propagate +a +work +means +to +do +anything +with +it +that +without +permission +would +make +you +directly +or +secondarily +liable +for +infringement +under +applicable +copyright +law +except +executing +it +on +a +computer +or +modifying +a +private +copy +propagation +includes +copying +distribution +with +or +without +modification +making +available +to +the +public +and +in +some +countries +other +activities +as +well +to +convey +a +work +means +any +kind +of +propagation +that +enables +other +parties +to +make +or +receive +copies +mere +interaction +with +a +user +through +a +computer +network +with +no +transfer +of +a +copy +is +not +conveying +an +interactive +user +interface +displays +appropriate +legal +notices +to +the +extent +that +it +includes +a +convenient +and +prominently +visible +feature +that +displays +an +appropriate +copyright +notice +and +tells +the +user +that +there +is +no +warranty +for +the +work +except +to +the +extent +that +warranties +are +provided +that +licensees +may +convey +the +work +under +this +license +and +how +to +view +a +copy +of +this +license +if +the +interface +presents +a +list +of +user +commands +or +options +such +as +a +menu +a +prominent +item +in +the +list +meets +this +criterion +source +code +the +source +code +for +a +work +means +the +preferred +form +of +the +work +for +making +modifications +to +it +object +code +means +any +non +source +form +of +a +work +a +standard +interface +means +an +interface +that +either +is +an +official +standard +defined +by +a +recognized +standards +body +or +in +the +case +of +interfaces +specified +for +a +particular +programming +language +one +that +is +widely +used +among +developers +working +in +that +language +the +system +libraries +of +an +executable +work +include +anything +other +than +the +work +as +a +whole +that +a +is +included +in +the +normal +form +of +packaging +a +major +component +but +which +is +not +part +of +that +major +component +and +b +serves +only +to +enable +use +of +the +work +with +that +major +component +or +to +implement +a +standard +interface +for +which +an +implementation +is +available +to +the +public +in +source +code +form +a +major +component +in +this +context +means +a +major +essential +component +kernel +window +system +and +so +on +of +the +specific +operating +system +if +any +on +which +the +executable +work +runs +or +a +compiler +used +to +produce +the +work +or +an +object +code +interpreter +used +to +run +it +the +corresponding +source +for +a +work +in +object +code +form +means +all +the +source +code +needed +to +generate +install +and +for +an +executable +work +run +the +object +code +and +to +modify +the +work +including +scripts +to +control +those +activities +however +it +does +not +include +the +work +s +system +libraries +or +general +purpose +tools +or +generally +available +free +programs +which +are +used +unmodified +in +performing +those +activities +but +which +are +not +part +of +the +work +for +example +corresponding +source +includes +interface +definition +files +associated +with +source +files +for +the +work +and +the +source +code +for +shared +libraries +and +dynamically +linked +subprograms +that +the +work +is +specifically +designed +to +require +such +as +by +intimate +data +communication +or +control +flow +between +those +subprograms +and +other +parts +of +the +work +the +corresponding +source +need +not +include +anything +that +users +can +regenerate +automatically +from +other +parts +of +the +corresponding +source +the +corresponding +source +for +a +work +in +source +code +form +is +that +same +work +basic +permissions +all +rights +granted +under +this +license +are +granted +for +the +term +of +copyright +on +the +program +and +are +irrevocable +provided +the +stated +conditions +are +met +this +license +explicitly +affirms +your +unlimited +permission +to +run +the +unmodified +program +the +output +from +running +a +covered +work +is +covered +by +this +license +only +if +the +output +given +its +content +constitutes +a +covered +work +this +license +acknowledges +your +rights +of +fair +use +or +other +equivalent +as +provided +by +copyright +law +you +may +make +run +and +propagate +covered +works +that +you +do +not +convey +without +conditions +so +long +as +your +license +otherwise +remains +in +force +you +may +convey +covered +works +to +others +for +the +sole +purpose +of +having +them +make +modifications +exclusively +for +you +or +provide +you +with +facilities +for +running +those +works +provided +that +you +comply +with +the +terms +of +this +license +in +conveying +all +material +for +which +you +do +not +control +copyright +those +thus +making +or +running +the +covered +works +for +you +must +do +so +exclusively +on +your +behalf +under +your +direction +and +control +on +terms +that +prohibit +them +from +making +any +copies +of +your +copyrighted +material +outside +their +relationship +with +you +conveying +under +any +other +circumstances +is +permitted +solely +under +the +conditions +stated +below +sublicensing +is +not +allowed +section +makes +it +unnecessary +protecting +users +legal +rights +from +anti +circumvention +law +no +covered +work +shall +be +deemed +part +of +an +effective +technological +measure +under +any +applicable +law +fulfilling +obligations +under +article +of +the +wipo +copyright +treaty +adopted +on +december +or +similar +laws +prohibiting +or +restricting +circumvention +of +such +measures +when +you +convey +a +covered +work +you +waive +any +legal +power +to +forbid +circumvention +of +technological +measures +to +the +extent +such +circumvention +is +effected +by +exercising +rights +under +this +license +with +respect +to +the +covered +work +and +you +disclaim +any +intention +to +limit +operation +or +modification +of +the +work +as +a +means +of +enforcing +against +the +work +s +users +your +or +third +parties +legal +rights +to +forbid +circumvention +of +technological +measures +conveying +verbatim +copies +you +may +convey +verbatim +copies +of +the +program +s +source +code +as +you +receive +it +in +any +medium +provided +that +you +conspicuously +and +appropriately +publish +on +each +copy +an +appropriate +copyright +notice +keep +intact +all +notices +stating +that +this +license +and +any +non +permissive +terms +added +in +accord +with +section +apply +to +the +code +keep +intact +all +notices +of +the +absence +of +any +warranty +and +give +all +recipients +a +copy +of +this +license +along +with +the +program +you +may +charge +any +price +or +no +price +for +each +copy +that +you +convey +and +you +may +offer +support +or +warranty +protection +for +a +fee +conveying +modified +source +versions +you +may +convey +a +work +based +on +the +program +or +the +modifications +to +produce +it +from +the +program +in +the +form +of +source +code +under +the +terms +of +section +provided +that +you +also +meet +all +of +these +conditions +a +the +work +must +carry +prominent +notices +stating +that +you +modified +it +and +giving +a +relevant +date +b +the +work +must +carry +prominent +notices +stating +that +it +is +released +under +this +license +and +any +conditions +added +under +section +this +requirement +modifies +the +requirement +in +section +to +keep +intact +all +notices +c +you +must +license +the +entire +work +as +a +whole +under +this +license +to +anyone +who +comes +into +possession +of +a +copy +this +license +will +therefore +apply +along +with +any +applicable +section +additional +terms +to +the +whole +of +the +work +and +all +its +parts +regardless +of +how +they +are +packaged +this +license +gives +no +permission +to +license +the +work +in +any +other +way +but +it +does +not +invalidate +such +permission +if +you +have +separately +received +it +d +if +the +work +has +interactive +user +interfaces +each +must +display +appropriate +legal +notices +however +if +the +program +has +interactive +interfaces +that +do +not +display +appropriate +legal +notices +your +work +need +not +make +them +do +so +a +compilation +of +a +covered +work +with +other +separate +and +independent +works +which +are +not +by +their +nature +extensions +of +the +covered +work +and +which +are +not +combined +with +it +such +as +to +form +a +larger +program +in +or +on +a +volume +of +a +storage +or +distribution +medium +is +called +an +aggregate +if +the +compilation +and +its +resulting +copyright +are +not +used +to +limit +the +access +or +legal +rights +of +the +compilation +s +users +beyond +what +the +individual +works +permit +inclusion +of +a +covered +work +in +an +aggregate +does +not +cause +this +license +to +apply +to +the +other +parts +of +the +aggregate +conveying +non +source +forms +you +may +convey +a +covered +work +in +object +code +form +under +the +terms +of +sections +and +provided +that +you +also +convey +the +machine +readable +corresponding +source +under +the +terms +of +this +license +in +one +of +these +ways +a +convey +the +object +code +in +or +embodied +in +a +physical +product +including +a +physical +distribution +medium +accompanied +by +the +corresponding +source +fixed +on +a +durable +physical +medium +customarily +used +for +software +interchange +b +convey +the +object +code +in +or +embodied +in +a +physical +product +including +a +physical +distribution +medium +accompanied +by +a +written +offer +valid +for +at +least +three +years +and +valid +for +as +long +as +you +offer +spare +parts +or +customer +support +for +that +product +model +to +give +anyone +who +possesses +the +object +code +either +a +copy +of +the +corresponding +source +for +all +the +software +in +the +product +that +is +covered +by +this +license +on +a +durable +physical +medium +customarily +used +for +software +interchange +for +a +price +no +more +than +your +reasonable +cost +of +physically +performing +this +conveying +of +source +or +access +to +copy +the +corresponding +source +from +a +network +server +at +no +charge +c +convey +individual +copies +of +the +object +code +with +a +copy +of +the +written +offer +to +provide +the +corresponding +source +this +alternative +is +allowed +only +occasionally +and +noncommercially +and +only +if +you +received +the +object +code +with +such +an +offer +in +accord +with +subsection +b +d +convey +the +object +code +by +offering +access +from +a +designated +place +gratis +or +for +a +charge +and +offer +equivalent +access +to +the +corresponding +source +in +the +same +way +through +the +same +place +at +no +further +charge +you +need +not +require +recipients +to +copy +the +corresponding +source +along +with +the +object +code +if +the +place +to +copy +the +object +code +is +a +network +server +the +corresponding +source +may +be +on +a +different +server +operated +by +you +or +a +third +party +that +supports +equivalent +copying +facilities +provided +you +maintain +clear +directions +next +to +the +object +code +saying +where +to +find +the +corresponding +source +regardless +of +what +server +hosts +the +corresponding +source +you +remain +obligated +to +ensure +that +it +is +available +for +as +long +as +needed +to +satisfy +these +requirements +e +convey +the +object +code +using +peer +to +peer +transmission +provided +you +inform +other +peers +where +the +object +code +and +corresponding +source +of +the +work +are +being +offered +to +the +general +public +at +no +charge +under +subsection +d +a +separable +portion +of +the +object +code +whose +source +code +is +excluded +from +the +corresponding +source +as +a +system +library +need +not +be +included +in +conveying +the +object +code +work +a +user +product +is +either +a +consumer +product +which +means +any +tangible +personal +property +which +is +normally +used +for +personal +family +or +household +purposes +or +anything +designed +or +sold +for +incorporation +into +a +dwelling +in +determining +whether +a +product +is +a +consumer +product +doubtful +cases +shall +be +resolved +in +favor +of +coverage +for +a +particular +product +received +by +a +particular +user +normally +used +refers +to +a +typical +or +common +use +of +that +class +of +product +regardless +of +the +status +of +the +particular +user +or +of +the +way +in +which +the +particular +user +actually +uses +or +expects +or +is +expected +to +use +the +product +a +product +is +a +consumer +product +regardless +of +whether +the +product +has +substantial +commercial +industrial +or +non +consumer +uses +unless +such +uses +represent +the +only +significant +mode +of +use +of +the +product +installation +information +for +a +user +product +means +any +methods +procedures +authorization +keys +or +other +information +required +to +install +and +execute +modified +versions +of +a +covered +work +in +that +user +product +from +a +modified +version +of +its +corresponding +source +the +information +must +suffice +to +ensure +that +the +continued +functioning +of +the +modified +object +code +is +in +no +case +prevented +or +interfered +with +solely +because +modification +has +been +made +if +you +convey +an +object +code +work +under +this +section +in +or +with +or +specifically +for +use +in +a +user +product +and +the +conveying +occurs +as +part +of +a +transaction +in +which +the +right +of +possession +and +use +of +the +user +product +is +transferred +to +the +recipient +in +perpetuity +or +for +a +fixed +term +regardless +of +how +the +transaction +is +characterized +the +corresponding +source +conveyed +under +this +section +must +be +accompanied +by +the +installation +information +but +this +requirement +does +not +apply +if +neither +you +nor +any +third +party +retains +the +ability +to +install +modified +object +code +on +the +user +product +for +example +the +work +has +been +installed +in +rom +the +requirement +to +provide +installation +information +does +not +include +a +requirement +to +continue +to +provide +support +service +warranty +or +updates +for +a +work +that +has +been +modified +or +installed +by +the +recipient +or +for +the +user +product +in +which +it +has +been +modified +or +installed +access +to +a +network +may +be +denied +when +the +modification +itself +materially +and +adversely +affects +the +operation +of +the +network +or +violates +the +rules +and +protocols +for +communication +across +the +network +corresponding +source +conveyed +and +installation +information +provided +in +accord +with +this +section +must +be +in +a +format +that +is +publicly +documented +and +with +an +implementation +available +to +the +public +in +source +code +form +and +must +require +no +special +password +or +key +for +unpacking +reading +or +copying +additional +terms +additional +permissions +are +terms +that +supplement +the +terms +of +this +license +by +making +exceptions +from +one +or +more +of +its +conditions +additional +permissions +that +are +applicable +to +the +entire +program +shall +be +treated +as +though +they +were +included +in +this +license +to +the +extent +that +they +are +valid +under +applicable +law +if +additional +permissions +apply +only +to +part +of +the +program +that +part +may +be +used +separately +under +those +permissions +but +the +entire +program +remains +governed +by +this +license +without +regard +to +the +additional +permissions +when +you +convey +a +copy +of +a +covered +work +you +may +at +your +option +remove +any +additional +permissions +from +that +copy +or +from +any +part +of +it +additional +permissions +may +be +written +to +require +their +own +removal +in +certain +cases +when +you +modify +the +work +you +may +place +additional +permissions +on +material +added +by +you +to +a +covered +work +for +which +you +have +or +can +give +appropriate +copyright +permission +notwithstanding +any +other +provision +of +this +license +for +material +you +add +to +a +covered +work +you +may +if +authorized +by +the +copyright +holders +of +that +material +supplement +the +terms +of +this +license +with +terms +a +disclaiming +warranty +or +limiting +liability +differently +from +the +terms +of +sections +and +of +this +license +or +b +requiring +preservation +of +specified +reasonable +legal +notices +or +author +attributions +in +that +material +or +in +the +appropriate +legal +notices +displayed +by +works +containing +it +or +c +prohibiting +misrepresentation +of +the +origin +of +that +material +or +requiring +that +modified +versions +of +such +material +be +marked +in +reasonable +ways +as +different +from +the +original +version +or +d +limiting +the +use +for +publicity +purposes +of +names +of +licensors +or +authors +of +the +material +or +e +declining +to +grant +rights +under +trademark +law +for +use +of +some +trade +names +trademarks +or +service +marks +or +f +requiring +indemnification +of +licensors +and +authors +of +that +material +by +anyone +who +conveys +the +material +or +modified +versions +of +it +with +contractual +assumptions +of +liability +to +the +recipient +for +any +liability +that +these +contractual +assumptions +directly +impose +on +those +licensors +and +authors +all +other +non +permissive +additional +terms +are +considered +further +restrictions +within +the +meaning +of +section +if +the +program +as +you +received +it +or +any +part +of +it +contains +a +notice +stating +that +it +is +governed +by +this +license +along +with +a +term +that +is +a +further +restriction +you +may +remove +that +term +if +a +license +document +contains +a +further +restriction +but +permits +relicensing +or +conveying +under +this +license +you +may +add +to +a +covered +work +material +governed +by +the +terms +of +that +license +document +provided +that +the +further +restriction +does +not +survive +such +relicensing +or +conveying +if +you +add +terms +to +a +covered +work +in +accord +with +this +section +you +must +place +in +the +relevant +source +files +a +statement +of +the +additional +terms +that +apply +to +those +files +or +a +notice +indicating +where +to +find +the +applicable +terms +additional +terms +permissive +or +non +permissive +may +be +stated +in +the +form +of +a +separately +written +license +or +stated +as +exceptions +the +above +requirements +apply +either +way +termination +you +may +not +propagate +or +modify +a +covered +work +except +as +expressly +provided +under +this +license +any +attempt +otherwise +to +propagate +or +modify +it +is +void +and +will +automatically +terminate +your +rights +under +this +license +including +any +patent +licenses +granted +under +the +third +paragraph +of +section +however +if +you +cease +all +violation +of +this +license +then +your +license +from +a +particular +copyright +holder +is +reinstated +a +provisionally +unless +and +until +the +copyright +holder +explicitly +and +finally +terminates +your +license +and +b +permanently +if +the +copyright +holder +fails +to +notify +you +of +the +violation +by +some +reasonable +means +prior +to +days +after +the +cessation +moreover +your +license +from +a +particular +copyright +holder +is +reinstated +permanently +if +the +copyright +holder +notifies +you +of +the +violation +by +some +reasonable +means +this +is +the +first +time +you +have +received +notice +of +violation +of +this +license +for +any +work +from +that +copyright +holder +and +you +cure +the +violation +prior +to +days +after +your +receipt +of +the +notice +termination +of +your +rights +under +this +section +does +not +terminate +the +licenses +of +parties +who +have +received +copies +or +rights +from +you +under +this +license +if +your +rights +have +been +terminated +and +not +permanently +reinstated +you +do +not +qualify +to +receive +new +licenses +for +the +same +material +under +section +acceptance +not +required +for +having +copies +you +are +not +required +to +accept +this +license +in +order +to +receive +or +run +a +copy +of +the +program +ancillary +propagation +of +a +covered +work +occurring +solely +as +a +consequence +of +using +peer +to +peer +transmission +to +receive +a +copy +likewise +does +not +require +acceptance +however +nothing +other +than +this +license +grants +you +permission +to +propagate +or +modify +any +covered +work +these +actions +infringe +copyright +if +you +do +not +accept +this +license +therefore +by +modifying +or +propagating +a +covered +work +you +indicate +your +acceptance +of +this +license +to +do +so +automatic +licensing +of +downstream +recipients +each +time +you +convey +a +covered +work +the +recipient +automatically +receives +a +license +from +the +original +licensors +to +run +modify +and +propagate +that +work +subject +to +this +license +you +are +not +responsible +for +enforcing +compliance +by +third +parties +with +this +license +an +entity +transaction +is +a +transaction +transferring +control +of +an +organization +or +substantially +all +assets +of +one +or +subdividing +an +organization +or +merging +organizations +if +propagation +of +a +covered +work +results +from +an +entity +transaction +each +party +to +that +transaction +who +receives +a +copy +of +the +work +also +receives +whatever +licenses +to +the +work +the +party +s +predecessor +in +interest +had +or +could +give +under +the +previous +paragraph +plus +a +right +to +possession +of +the +corresponding +source +of +the +work +from +the +predecessor +in +interest +if +the +predecessor +has +it +or +can +get +it +with +reasonable +efforts +you +may +not +impose +any +further +restrictions +on +the +exercise +of +the +rights +granted +or +affirmed +under +this +license +for +example +you +may +not +impose +a +license +fee +royalty +or +other +charge +for +exercise +of +rights +granted +under +this +license +and +you +may +not +initiate +litigation +including +a +cross +claim +or +counterclaim +in +a +lawsuit +alleging +that +any +patent +claim +is +infringed +by +making +using +selling +offering +for +sale +or +importing +the +program +or +any +portion +of +it +patents +a +contributor +is +a +copyright +holder +who +authorizes +use +under +this +license +of +the +program +or +a +work +on +which +the +program +is +based +the +work +thus +licensed +is +called +the +contributor +s +contributor +version +a +contributor +s +essential +patent +claims +are +all +patent +claims +owned +or +controlled +by +the +contributor +whether +already +acquired +or +hereafter +acquired +that +would +be +infringed +by +some +manner +permitted +by +this +license +of +making +using +or +selling +its +contributor +version +but +do +not +include +claims +that +would +be +infringed +only +as +a +consequence +of +further +modification +of +the +contributor +version +for +purposes +of +this +definition +control +includes +the +right +to +grant +patent +sublicenses +in +a +manner +consistent +with +the +requirements +of +this +license +each +contributor +grants +you +a +non +exclusive +worldwide +royalty +free +patent +license +under +the +contributor +s +essential +patent +claims +to +make +use +sell +offer +for +sale +import +and +otherwise +run +modify +and +propagate +the +contents +of +its +contributor +version +in +the +following +three +paragraphs +a +patent +license +is +any +express +agreement +or +commitment +however +denominated +not +to +enforce +a +patent +such +as +an +express +permission +to +practice +a +patent +or +covenant +not +to +sue +for +patent +infringement +to +grant +such +a +patent +license +to +a +party +means +to +make +such +an +agreement +or +commitment +not +to +enforce +a +patent +against +the +party +if +you +convey +a +covered +work +knowingly +relying +on +a +patent +license +and +the +corresponding +source +of +the +work +is +not +available +for +anyone +to +copy +free +of +charge +and +under +the +terms +of +this +license +through +a +publicly +available +network +server +or +other +readily +accessible +means +then +you +must +either +cause +the +corresponding +source +to +be +so +available +or +arrange +to +deprive +yourself +of +the +benefit +of +the +patent +license +for +this +particular +work +or +arrange +in +a +manner +consistent +with +the +requirements +of +this +license +to +extend +the +patent +license +to +downstream +recipients +knowingly +relying +means +you +have +actual +knowledge +that +but +for +the +patent +license +your +conveying +the +covered +work +in +a +country +or +your +recipient +s +use +of +the +covered +work +in +a +country +would +infringe +one +or +more +identifiable +patents +in +that +country +that +you +have +reason +to +believe +are +valid +if +pursuant +to +or +in +connection +with +a +single +transaction +or +arrangement +you +convey +or +propagate +by +procuring +conveyance +of +a +covered +work +and +grant +a +patent +license +to +some +of +the +parties +receiving +the +covered +work +authorizing +them +to +use +propagate +modify +or +convey +a +specific +copy +of +the +covered +work +then +the +patent +license +you +grant +is +automatically +extended +to +all +recipients +of +the +covered +work +and +works +based +on +it +a +patent +license +is +discriminatory +if +it +does +not +include +within +the +scope +of +its +coverage +prohibits +the +exercise +of +or +is +conditioned +on +the +non +exercise +of +one +or +more +of +the +rights +that +are +specifically +granted +under +this +license +you +may +not +convey +a +covered +work +if +you +are +a +party +to +an +arrangement +with +a +third +party +that +is +in +the +business +of +distributing +software +under +which +you +make +payment +to +the +third +party +based +on +the +extent +of +your +activity +of +conveying +the +work +and +under +which +the +third +party +grants +to +any +of +the +parties +who +would +receive +the +covered +work +from +you +a +discriminatory +patent +license +a +in +connection +with +copies +of +the +covered +work +conveyed +by +you +or +copies +made +from +those +copies +or +b +primarily +for +and +in +connection +with +specific +products +or +compilations +that +contain +the +covered +work +unless +you +entered +into +that +arrangement +or +that +patent +license +was +granted +prior +to +march +nothing +in +this +license +shall +be +construed +as +excluding +or +limiting +any +implied +license +or +other +defenses +to +infringement +that +may +otherwise +be +available +to +you +under +applicable +patent +law +no +surrender +of +others +freedom +if +conditions +are +imposed +on +you +whether +by +court +order +agreement +or +otherwise +that +contradict +the +conditions +of +this +license +they +do +not +excuse +you +from +the +conditions +of +this +license +if +you +cannot +convey +a +covered +work +so +as +to +satisfy +simultaneously +your +obligations +under +this +license +and +any +other +pertinent +obligations +then +as +a +consequence +you +may +not +convey +it +at +all +for +example +if +you +agree +to +terms +that +obligate +you +to +collect +a +royalty +for +further +conveying +from +those +to +whom +you +convey +the +program +the +only +way +you +could +satisfy +both +those +terms +and +this +license +would +be +to +refrain +entirely +from +conveying +the +program +use +with +the +gnu +affero +general +public +license +notwithstanding +any +other +provision +of +this +license +you +have +permission +to +link +or +combine +any +covered +work +with +a +work +licensed +under +version +of +the +gnu +affero +general +public +license +into +a +single +combined +work +and +to +convey +the +resulting +work +the +terms +of +this +license +will +continue +to +apply +to +the +part +which +is +the +covered +work +but +the +special +requirements +of +the +gnu +affero +general +public +license +section +concerning +interaction +through +a +network +will +apply +to +the +combination +as +such +revised +versions +of +this +license +the +free +software +foundation +may +publish +revised +and +or +new +versions +of +the +gnu +general +public +license +from +time +to +time +such +new +versions +will +be +similar +in +spirit +to +the +present +version +but +may +differ +in +detail +to +address +new +problems +or +concerns +each +version +is +given +a +distinguishing +version +number +if +the +program +specifies +that +a +certain +numbered +version +of +the +gnu +general +public +license +or +any +later +version +applies +to +it +you +have +the +option +of +following +the +terms +and +conditions +either +of +that +numbered +version +or +of +any +later +version +published +by +the +free +software +foundation +if +the +program +does +not +specify +a +version +number +of +the +gnu +general +public +license +you +may +choose +any +version +ever +published +by +the +free +software +foundation +if +the +program +specifies +that +a +proxy +can +decide +which +future +versions +of +the +gnu +general +public +license +can +be +used +that +proxy +s +public +statement +of +acceptance +of +a +version +permanently +authorizes +you +to +choose +that +version +for +the +program +later +license +versions +may +give +you +additional +or +different +permissions +however +no +additional +obligations +are +imposed +on +any +author +or +copyright +holder +as +a +result +of +your +choosing +to +follow +a +later +version +disclaimer +of +warranty +there +is +no +warranty +for +the +program +to +the +extent +permitted +by +applicable +law +except +when +otherwise +stated +in +writing +the +copyright +holders +and +or +other +parties +provide +the +program +as +is +without +warranty +of +any +kind +either +expressed +or +implied +including +but +not +limited +to +the +implied +warranties +of +merchantability +and +fitness +for +a +particular +purpose +the +entire +risk +as +to +the +quality +and +performance +of +the +program +is +with +you +should +the +program +prove +defective +you +assume +the +cost +of +all +necessary +servicing +repair +or +correction +limitation +of +liability +in +no +event +unless +required +by +applicable +law +or +agreed +to +in +writing +will +any +copyright +holder +or +any +other +party +who +modifies +and +or +conveys +the +program +as +permitted +above +be +liable +to +you +for +damages +including +any +general +special +incidental +or +consequential +damages +arising +out +of +the +use +or +inability +to +use +the +program +including +but +not +limited +to +loss +of +data +or +data +being +rendered +inaccurate +or +losses +sustained +by +you +or +third +parties +or +a +failure +of +the +program +to +operate +with +any +other +programs +even +if +such +holder +or +other +party +has +been +advised +of +the +possibility +of +such +damages +interpretation +of +sections +and +if +the +disclaimer +of +warranty +and +limitation +of +liability +provided +above +cannot +be +given +local +legal +effect +according +to +their +terms +reviewing +courts +shall +apply +local +law +that +most +closely +approximates +an +absolute +waiver +of +all +civil +liability +in +connection +with +the +program +unless +a +warranty +or +assumption +of +liability +accompanies +a +copy +of +the +program +in +return +for +a +fee +end +of +terms +and +conditions +how +to +apply +these +terms +to +your +new +programs +if +you +develop +a +new +program +and +you +want +it +to +be +of +the +greatest +possible +use +to +the +public +the +best +way +to +achieve +this +is +to +make +it +free +software +which +everyone +can +redistribute +and +change +under +these +terms +to +do +so +attach +the +following +notices +to +the +program +it +is +safest +to +attach +them +to +the +start +of +each +source +file +to +most +effectively +state +the +exclusion +of +warranty +and +each +file +should +have +at +least +the +copyright +line +and +a +pointer +to +where +the +full +notice +is +found +one +line +to +give +the +program +s +name +and +a +brief +idea +of +what +it +does +copyright +c +year +name +of +author +this +program +is +free +software +you +can +redistribute +it +and +or +modify +it +under +the +terms +of +the +gnu +general +public +license +as +published +by +the +free +software +foundation +either +version +of +the +license +or +at +your +option +any +later +version +this +program +is +distributed +in +the +hope +that +it +will +be +useful +but +without +any +warranty +without +even +the +implied +warranty +of +merchantability +or +fitness +for +a +particular +purpose +see +the +gnu +general +public +license +for +more +details +you +should +have +received +a +copy +of +the +gnu +general +public +license +along +with +this +program +if +not +see +also +add +information +on +how +to +contact +you +by +electronic +and +paper +mail +if +the +program +does +terminal +interaction +make +it +output +a +short +notice +like +this +when +it +starts +in +an +interactive +mode +program +copyright +c +year +name +of +author +this +program +comes +with +absolutely +no +warranty +for +details +type +show +w +this +is +free +software +and +you +are +welcome +to +redistribute +it +under +certain +conditions +type +show +c +for +details +the +hypothetical +commands +show +w +and +show +c +should +show +the +appropriate +parts +of +the +general +public +license +of +course +your +program +s +commands +might +be +different +for +a +gui +interface +you +would +use +an +about +box +conor +mcgregor +will +run +for +the +irish +presidency +in +elections +later +this +year +the +controversial +former +fighter +said +on +thursday +as +he +announced +his +candidacy +for +the +largely +ceremonial +role +on +an +anti +immigration +stance +mcgregor +who +in +recent +years +has +emerged +as +a +figurehead +for +the +far +right +in +ireland +said +on +social +media +that +he +would +run +for +president +to +oppose +a +long +awaited +new +european +union +migration +pact +aimed +at +sharing +the +burden +of +processing +asylum +claims +more +evenly +across +the +bloc +who +else +will +stand +up +to +government +and +oppose +this +bill +he +said +in +an +instagram +post +to +his +more +than +million +followers +any +other +presidential +candidate +they +attempt +to +put +forward +will +be +of +no +resistance +to +them +i +will +the +post +comes +just +days +after +mcgregor +appeared +at +the +white +house +with +donald +trump +on +st +patrick +day +where +he +became +the +latest +european +ally +of +the +us +president +to +promote +anti +immigrant +sentiment +drawing +controversy +and +censure +back +home +ireland +is +at +the +cusp +of +potentially +losing +its +irishness +mcgregor +said +monday +claiming +the +government +had +abandoned +the +voices +of +irish +people +and +that +rural +towns +were +being +overrun +by +immigrants +irish +leader +micheál +martin +said +mcgregor +comments +did +not +reflect +the +spirit +of +st +patrick +day +or +the +views +of +the +people +of +ireland +once +the +face +of +the +ultimate +fighting +championship +dublin +born +mcgregor +was +the +first +fighter +to +hold +two +ufc +belts +simultaneously +and +according +to +forbes +was +the +world +highest +paid +sports +star +in +despite +several +rumored +comebacks +he +hasn +t +fought +in +the +ufc +since +back +to +back +defeats +four +years +ago +and +has +become +a +hugely +controversial +figure +in +ireland +dogged +by +accusations +of +sexual +assault +which +he +has +denied +in +a +january +civil +lawsuit +a +woman +accused +mcgregor +of +sexual +battery +during +the +nba +finals +in +miami +the +incident +was +investigated +by +police +at +the +time +and +the +miami +dade +state +attorney +declined +to +press +charges +against +him +mcgregor +said +the +allegations +were +false +last +fall +a +civil +jury +in +dublin +awarded +nearly +euros +in +damages +to +a +woman +who +claimed +mcgregor +had +brutally +raped +and +battered +her +in +a +hotel +in +dublin +in +mcgregor +testified +that +the +two +had +consensual +sex +and +vowed +to +appeal +the +verdict +in +recent +years +mcgregor +has +also +turned +his +attention +to +sparring +with +people +on +social +media +political +analysts +and +far +right +experts +have +told +cnn +that +mcgregor +unique +brand +of +irish +patriotism +that +won +him +supporters +as +a +fighter +has +mutated +into +a +strand +of +far +right +irish +nationalism +as +far +back +as +mcgregor +had +expressed +support +for +people +protesting +against +immigration +some +irish +politicians +have +accused +him +of +fanning +the +flames +of +discontent +online +voicing +his +anger +at +ireland +immigration +policy +a +particularly +sensitive +issue +given +the +country +long +history +of +emigration +ireland +a +country +of +just +over +million +people +saw +immigrants +arrive +in +the +year +leading +up +to +april +the +highest +figure +in +years +with +some +attracted +by +its +strong +economic +performance +according +to +the +central +statistics +office +ireland +but +for +many +ordinary +workers +the +benefits +are +failing +to +reach +their +pockets +and +they +are +struggling +to +afford +high +housing +prices +and +rents +ireland +next +presidential +election +must +take +place +by +november +in +his +instagram +post +thursday +mcgregor +said +he +would +put +the +eu +migration +bill +to +a +referendum +if +elected +although +i +oppose +greatly +this +pact +it +is +neither +mine +nor +government +choice +to +make +it +is +the +people +of +ireland +choice +always +he +wrote +this +is +the +future +of +ireland +with +me +as +president +but +mcgregor +faces +an +uphill +task +to +get +his +name +on +the +ballot +as +few +irish +lawmakers +share +his +vehement +anti +immigrant +views +and +many +publicly +criticized +him +after +the +civil +case +last +november +presidential +candidates +must +be +nominated +by +at +least +of +the +members +of +the +lower +and +upper +houses +of +parliament +or +by +four +of +ireland +local +councils +according +to +the +country +electoral +commission +the +government +of +israel +s +prime +minister +benjamin +netanyahu +has +voted +to +dismiss +ronen +bar +the +chief +of +israel +s +shin +bet +internal +security +service +the +vote +in +the +early +hours +of +friday +local +time +could +still +be +subject +to +appeals +by +israel +s +supreme +court +the +government +has +now +unanimously +approved +prime +minister +benjamin +netanyahu +s +proposal +to +terminate +the +term +of +shin +bet +head +ronen +bar +the +prime +minister +s +office +said +in +a +statement +friday +ronen +bar +will +end +his +role +as +shin +bet +head +on +april +or +when +a +permanent +shin +bet +head +is +appointed +whichever +comes +first +it +added +it +came +after +netanyahu +met +with +bar +last +week +and +informed +him +that +he +would +propose +his +removal +in +a +video +statement +released +on +sunday +netanyahu +said +his +ongoing +distrust +of +bar +had +led +to +the +move +at +all +times +but +especially +in +such +an +existential +war +the +prime +minister +must +have +full +confidence +in +the +head +of +the +shin +bet +netanyahu +said +netanyahu +added +that +removing +bar +would +be +necessary +for +achieving +israel +s +war +goals +in +gaza +and +preventing +the +next +disaster +the +prime +minister +has +frequently +criticized +the +agency +placing +blame +on +its +leaders +for +the +security +lapses +that +led +to +the +hamas +october +attacks +that +killed +more +than +people +shin +bet +which +is +in +charge +of +monitoring +domestic +threats +to +israel +conducted +an +internal +investigation +that +determined +that +the +agency +had +failed +in +its +mission +to +prevent +the +attacks +but +it +also +blamed +policies +enacted +by +netanyahu +s +government +as +contributing +factors +such +as +politicians +visits +to +the +al +aqsa +compound +in +jerusalem +the +treatment +of +prisoners +and +the +perception +that +israeli +society +has +been +weakened +due +to +the +damage +to +social +cohesion +an +israeli +official +told +cnn +on +thursday +that +the +government +had +lost +all +confidence +in +ronen +bar +who +continues +to +cling +to +his +seat +while +cynically +using +the +families +of +the +hostages +and +politically +improperly +using +his +position +to +fabricate +futile +unfounded +investigations +shin +bet +is +reported +to +have +recently +opened +an +investigation +into +allegations +that +members +of +netanyahu +s +office +inappropriately +lobbied +on +behalf +of +qatar +something +his +office +denies +on +wednesday +the +office +of +attorney +general +gali +baharav +miara +sent +a +letter +to +netanyahu +saying +that +the +government +could +not +fire +bar +without +the +approval +of +a +special +committee +netanyahu +responded +with +a +letter +on +thursday +saying +baharav +miara +was +exceeding +her +authority +and +giving +legal +opinions +and +instructions +to +the +government +in +violation +of +supreme +court +rulings +bar +released +a +statement +just +hours +before +his +dismissal +saying +the +vote +by +netanyahu +s +cabinet +was +hastily +convened +contrary +to +every +basic +legal +rule +dealing +with +the +right +to +be +heard +and +contrary +to +the +position +of +the +legal +adviser +to +the +government +netanyahu +has +previously +removed +both +bar +and +the +head +of +the +mossad +intelligence +service +david +barnea +from +the +negotiating +team +engaging +in +indirect +talks +with +hamas +regarding +the +gaza +ceasefire +and +hostage +deal +opposition +politicians +have +criticized +netanyahu +s +targeting +of +bar +claiming +it +is +politically +motivated +the +dismissal +of +the +head +of +the +service +at +this +time +at +the +initiative +of +the +prime +minister +sends +a +message +to +all +those +involved +a +message +that +may +jeopardize +the +optimal +outcome +of +the +investigation +this +is +a +direct +danger +to +the +security +of +the +state +of +israel +bar +said +in +his +statement +thursday +significance +our +understanding +of +life +on +exoplanets +and +exomoons +must +be +based +on +what +we +know +about +life +on +earth +liquid +water +is +the +common +ecological +requirement +for +earth +life +temperature +on +an +exoplanet +is +the +first +parameter +to +consider +both +because +of +its +influence +on +liquid +water +and +because +it +can +be +directly +estimated +from +orbital +and +climate +models +of +exoplanetary +systems +life +needs +some +water +but +deserts +show +that +even +a +little +can +be +enough +only +a +small +amount +of +light +from +the +central +star +is +required +to +provide +for +photosynthesis +some +nitrogen +must +be +present +for +life +and +the +presence +of +oxygen +would +be +a +good +indicator +of +photosynthesis +and +possibly +complex +life +abstract +the +requirements +for +life +on +earth +its +elemental +composition +and +its +environmental +limits +provide +a +way +to +assess +the +habitability +of +exoplanets +temperature +is +key +both +because +of +its +influence +on +liquid +water +and +because +it +can +be +directly +estimated +from +orbital +and +climate +models +of +exoplanetary +systems +life +can +grow +and +reproduce +at +temperatures +as +low +as +c +and +as +high +as +c +studies +of +life +in +extreme +deserts +show +that +on +a +dry +world +even +a +small +amount +of +rain +fog +snow +and +even +atmospheric +humidity +can +be +adequate +for +photosynthetic +production +producing +a +small +but +detectable +microbial +community +life +is +able +to +use +light +at +levels +less +than +of +the +solar +flux +at +earth +uv +or +ionizing +radiation +can +be +tolerated +by +many +microorganisms +at +very +high +levels +and +is +unlikely +to +be +life +limiting +on +an +exoplanet +biologically +available +nitrogen +may +limit +habitability +levels +of +o +over +a +few +percent +on +an +exoplanet +would +be +consistent +with +the +presence +of +multicellular +organisms +and +high +levels +of +o +on +earth +like +worlds +indicate +oxygenic +photosynthesis +other +factors +such +as +ph +and +salinity +are +likely +to +vary +and +not +limit +life +over +an +entire +planet +or +moon +the +list +of +exoplanets +is +increasing +rapidly +with +a +diversity +of +masses +orbital +distances +and +star +types +the +long +list +motivates +us +to +consider +which +of +these +worlds +could +support +life +and +what +type +of +life +could +live +there +the +only +approach +to +answering +these +questions +is +based +on +observations +of +life +on +earth +compared +with +astronomical +targets +life +on +earth +is +easily +studied +and +our +knowledge +of +it +is +extensive +but +it +is +not +complete +the +most +important +area +in +which +we +lack +knowledge +about +life +on +earth +is +its +origin +we +have +no +consensus +theory +for +the +origin +of +life +nor +do +we +know +the +timing +or +location +what +we +do +know +about +life +on +earth +is +what +it +is +made +of +and +we +know +its +ecological +requirements +and +limits +thus +it +is +not +surprising +that +most +of +the +discussions +related +to +life +on +exoplanets +focus +on +the +requirements +for +life +rather +than +its +origin +in +this +paper +we +follow +this +same +approach +but +later +return +briefly +to +the +question +of +the +origin +of +life +limits +to +life +there +are +two +somewhat +different +approaches +to +the +question +of +the +limits +of +life +the +first +approach +is +to +determine +the +requirements +for +life +the +second +approach +is +to +determine +the +extreme +environments +in +which +adapted +organisms +often +referred +to +as +extremophiles +can +survive +both +perspectives +are +relevant +to +the +question +of +life +on +exoplanets +it +is +useful +to +categorize +the +requirements +for +life +on +earth +as +four +items +energy +carbon +liquid +water +and +various +other +elements +these +are +listed +in +table +along +with +the +occurrence +of +these +factors +in +the +solar +system +in +our +solar +system +it +is +the +occurrence +of +liquid +water +that +appears +to +limit +the +occurrence +of +habitable +environments +and +this +appears +to +be +the +case +for +exoplanetary +systems +as +well +from +basic +thermodynamic +considerations +it +is +clear +that +life +requires +a +source +of +energy +to +power +metabolism +and +growth +life +on +earth +uses +only +one +energy +source +that +associated +with +the +transfer +of +electrons +by +chemical +reactions +of +reduction +and +oxidation +for +example +methane +producing +microbes +use +the +reaction +of +co +with +h +to +produce +ch +photosynthetic +organisms +use +a +light +absorbing +protein +such +as +chlorophyll +bacteriochlorophylls +and +bacteriorhodopsin +to +convert +photon +energy +to +the +energy +of +an +electron +which +then +completes +a +redox +reaction +the +electrons +from +the +redox +reaction +are +used +to +create +an +electrochemical +gradient +across +cell +membranes +this +occurs +in +the +mitochondria +in +of +most +eukaryotes +and +in +the +cell +membrane +of +prokaryotic +cells +it +has +recently +been +shown +that +electrons +provided +directly +as +electrical +current +can +also +drive +microbial +metabolism +although +life +can +detect +and +generate +other +energy +sources +including +magnetic +kinetic +gravitational +thermal +gradient +and +electrostatic +none +of +these +is +used +for +metabolic +energy +carbon +has +the +dominant +role +as +the +backbone +molecule +of +biochemistry +for +earth +life +and +is +widespread +in +the +solar +system +however +the +abundance +of +carbon +may +not +be +a +useful +indication +of +the +habitability +of +an +exoplanet +this +is +illustrated +in +fig +which +shows +that +the +earth +is +significantly +depleted +in +carbon +compared +with +the +outer +solar +system +the +vast +majority +of +the +carbon +on +earth +is +stored +in +sedimentary +rocks +within +the +crust +however +because +light +carbon +containing +molecules +are +volatile +co +co +and +ch +adequate +carbon +is +present +at +the +surface +of +the +earth +as +well +as +mars +and +venus +leading +candidates +for +the +status +of +required +elements +table +adapted +from +davies +and +koch +lists +the +distribution +of +elements +in +the +cosmos +and +on +the +earth +and +compares +these +with +the +common +elements +in +life +represented +by +humans +and +the +bacterium +escherichia +coli +if +liquid +water +and +biologically +available +nitrogen +are +present +then +phosphorous +potassium +sodium +sulfur +and +calcium +might +come +next +on +a +requirements +list +as +these +are +the +next +most +abundant +elements +in +bacteria +however +there +is +no +definitive +list +and +any +list +would +depend +on +the +organism +considered +for +example +habitability +for +methanogens +requires +high +nickel +levels +in +a +strict +sense +habitability +can +only +be +confirmed +by +showing +inhabitation +no +list +is +conclusive +of +these +secondary +elements +n +is +probably +the +one +most +likely +to +be +in +question +on +an +exoplanet +as +is +discussed +below +sulfur +and +phosphorous +and +virtually +all +of +the +rest +of +the +elements +listed +by +davies +and +koch +as +used +in +life +have +major +refractory +phases +at +the +temperatures +of +liquid +water +and +should +be +available +if +water +and +rock +interact +the +second +approach +to +the +requirements +for +life +is +that +based +on +the +abilities +of +extremophiles +in +a +range +of +environmental +factors +table +lists +the +limits +of +life +under +extreme +conditions +our +understanding +of +the +requirements +for +life +listed +in +table +has +not +changed +for +many +years +in +contrast +the +limits +of +life +listed +in +table +have +changed +in +several +significant +ways +over +the +past +few +decades +if +one +compares +a +list +of +the +limits +of +life +from +a +few +decades +ago +with +table +the +most +notable +change +is +in +the +high +temperature +limit +this +has +been +raised +from +c +to +c +there +has +been +considerable +discussion +on +the +limits +of +life +and +their +application +to +the +search +for +life +on +other +worlds +and +it +has +been +realized +that +the +limits +vary +when +organisms +face +multiple +extreme +conditions +at +the +same +time +whereas +the +limits +of +life +have +changed +in +some +ways +over +the +past +few +decades +there +has +been +a +more +radical +change +in +our +appreciation +of +where +microbial +ecosystems +can +be +found +notable +examples +of +the +discovery +of +unexpected +microbial +ecosystems +include +endolithic +microorganisms +in +the +antarctic +cold +desert +hot +deep +sea +vents +cool +deep +sea +vents +deep +in +basalt +deep +below +the +subsurface +and +in +an +ice +covered +antarctic +lake +that +has +been +sealed +for +thousands +of +years +several +aspects +of +these +recently +discovered +ecosystems +are +worth +comment +first +the +organisms +found +are +not +alien +and +map +in +expected +areas +of +the +tree +of +life +second +with +the +exception +of +the +high +temperature +vents +the +organisms +do +not +greatly +extend +the +limits +of +life +derived +from +more +mundane +and +accessible +ecosystems +third +the +organisms +themselves +do +not +find +these +unusual +environments +extreme +and +typically +are +well +adapted +to +the +conditions +under +which +they +live +and +fourth +the +organisms +in +these +environments +do +not +in +general +control +the +physical +environment +temperature +and +pressure +with +their +own +metabolic +activity +but +rather +live +in +locations +where +the +local +physical +conditions +are +suitable +even +when +these +environments +are +nestled +within +larger +inhospitable +areas +the +lesson +to +be +learned +from +these +discoveries +is +that +microbial +life +is +extremely +adept +at +locating +places +to +live +and +we +have +not +been +adept +at +anticipating +how +small +environments +can +be +habitable +in +otherwise +barren +locations +microbial +life +is +more +clever +than +we +are +this +is +a +factor +that +should +inform +our +consideration +of +habitability +of +exoplanets +strategy +for +exoplanets +given +the +general +requirements +for +life +table +the +elemental +composition +of +life +table +and +the +environmental +limits +for +life +table +we +can +consider +how +to +assess +the +habitability +of +the +environment +on +an +exoplanet +it +may +seem +logical +to +focus +on +primary +production +because +without +that +there +cannot +be +an +ecosystem +however +it +is +possible +that +photochemical +processes +in +an +exoplanet +atmosphere +play +the +role +of +primary +production +as +has +been +suggested +for +titan +many +of +the +limits +to +life +in +table +such +as +ph +and +salinity +are +unlikely +to +be +extreme +over +an +entire +world +as +on +earth +they +would +shape +the +distribution +of +life +on +a +world +but +not +its +possible +occurrence +and +are +therefore +not +considered +further +the +key +parameters +that +could +be +extreme +over +an +entire +world +and +the +order +in +which +they +may +limit +any +life +on +an +exoplanet +are +listed +in +he +most +important +parameter +for +earth +like +life +is +the +presence +of +liquid +water +which +directly +depends +on +pressure +and +temperature +temperature +is +key +both +because +of +its +influence +on +liquid +water +and +because +it +can +be +directly +estimated +from +orbital +and +climate +models +of +exoplanetary +systems +we +can +consider +the +cold +and +hot +limits +temperature +cold +limit +many +organisms +can +grow +and +reproduce +at +temperatures +well +below +the +freezing +point +of +pure +water +because +their +intracellular +material +contains +salts +and +other +solutes +that +lower +the +freezing +point +of +the +solution +recently +mykytczuk +et +al +reported +an +isolate +from +arctic +permafrost +that +grows +and +divides +at +c +the +lowest +temperature +demonstrated +to +date +and +is +metabolically +active +at +c +in +frozen +soils +thin +films +of +water +at +the +interface +between +ice +and +soil +grains +augmented +by +any +solutes +provide +adequate +water +for +life +at +these +low +temperatures +the +snow +algae +chlamydomonas +nivalis +thrives +in +liquid +water +associated +with +snow +coloring +it +red +but +the +algae +are +the +beneficiaries +of +external +processes +that +melt +the +snow +microbial +activity +can +generate +sufficient +heat +in +permafrost +soils +and +landfills +and +composts +such +that +it +is +a +major +contributor +to +melting +but +there +is +no +known +occurrence +of +an +organism +using +metabolic +energy +coupled +directly +e +g +through +enzymes +to +overcome +the +latent +heat +of +fusion +of +ice +thereby +liquefying +it +temperature +hot +limit +many +of +the +exoplanets +discovered +to +date +have +high +surface +temperatures +and +hence +the +high +temperature +limit +of +life +is +of +particular +interest +takai +et +al +showed +growth +survival +and +methane +production +by +a +methanogen +at +c +where +the +high +pressure +mpa +atmospheres +stabilized +the +liquid +water +at +higher +pressure +water +can +be +liquid +at +even +higher +temperatures +however +as +water +is +heated +and +maintained +as +a +liquid +under +pressure +the +dielectric +constant +and +the +polarity +of +the +liquid +decreases +sharply +thus +significantly +changing +its +characteristics +as +a +solvent +and +its +interaction +with +dissolved +biomolecules +in +particular +lipids +but +also +proteins +and +nucleic +acids +at +c +the +dielectric +constant +is +about +half +of +the +room +temperature +value +it +is +likely +that +the +destabilization +of +lipid +bilayers +as +they +become +soluble +in +the +lower +dielectric +constant +water +is +what +sets +the +high +temperature +limit +on +life +it +is +therefore +perhaps +not +surprising +that +the +organisms +that +can +survive +the +highest +temperatures +are +archaea +as +their +membrane +lipids +are +held +together +with +ether +bonds +which +are +chemically +more +resistant +than +ester +bonds +which +are +used +in +the +membranes +of +nonarchaea +denaturing +of +proteins +with +temperature +appears +also +to +play +a +role +hot +water +in +contact +with +rocks +can +be +efficient +in +generating +or +recycling +redox +couples +this +has +been +suggested +for +the +interior +of +enceladus +such +ecosystems +provide +a +compelling +example +of +possible +life +below +the +ocean +of +an +exoplanet +or +exomoon +and +can +even +be +productive +enough +to +support +multicellular +life +in +the +presence +of +an +o +rich +environment +fig +shows +a +crab +at +the +lost +city +hydrothermal +vent +water +dry +limit +on +worlds +where +the +temperature +is +within +the +range +discussed +above +life +may +be +limited +by +the +availability +of +water +mars +is +an +example +of +this +thus +the +dry +limit +of +life +is +of +interest +in +dry +environments +phototrophs +seek +shelter +and +water +retained +in +and +below +rocks +fig +shows +photosynthetic +cyanobacteria +and +lichens +from +several +dry +deserts +fig +a +shows +endolithic +cyanobacteria +which +live +just +below +the +surface +of +halite +rocks +in +the +dry +core +of +the +atacama +desert +the +water +to +support +their +growth +comes +from +absorption +of +atmospheric +moisture +by +the +deliquescence +of +the +salt +fig +b +shows +the +green +biofilm +of +cyanobacteria +that +live +beneath +translucent +rocks +in +many +deserts +surviving +on +as +little +as +a +few +days +of +rain +or +fog +each +year +the +example +shown +is +from +an +unusual +carbonate +rock +from +the +mojave +desert +that +is +clear +inside +but +covered +with +a +red +coating +fig +c +shows +lichen +forming +a +green +and +black +layer +inside +sandstone +from +the +dry +valleys +of +antarctica +which +obtain +water +from +melting +of +occasional +snow +these +examples +show +that +a +small +amount +of +rain +fog +or +snow +and +even +atmospheric +humidity +can +be +adequate +for +photosynthetic +production +producing +a +small +but +detectable +microbial +community +photosynthesis +in +dry +environments +in +the +driest +environments +on +earth +photosynthesis +occurs +inside +and +under +rocks +a +green +layer +of +cyanobacteria +living +just +below +the +surface +of +halite +rocks +in +the +dry +core +of +the +atacama +desert +b +inverted +samples +of +red +coated +carbonate +translucent +rocks +from +the +mojave +desert +showing +green +biofilm +of +cyanobacteria +that +live +beneath +the +rock +c +lichen +forming +a +green +and +black +layer +inside +sandstone +from +the +dry +valleys +of +antarctica +scale +bar +in +all +images +cm +images +a +b +and +c +are +courtesy +of +j +wierzchos +c +mckay +and +e +i +friedmann +respectively +energy +energy +for +life +can +come +from +chemical +redox +couples +generated +by +geothermal +processes +or +light +from +the +central +star +geothermal +flux +can +arise +from +i +the +planet +cooling +off +from +its +gravitational +heat +of +formation +ii +decay +of +long +lived +radioactive +elements +or +iii +tidal +heating +for +a +close +orbiting +world +or +moon +note +that +on +earth +only +a +tiny +fraction +of +the +geothermal +heat +is +converted +into +chemical +energy +whereas +about +half +the +solar +flux +occurs +at +wavelengths +that +are +usable +for +photosynthesis +this +is +expected +as +the +free +energy +available +in +heat +flow +is +much +less +than +that +available +in +low +entropy +photons +the +example +of +earth +indicates +that +a +biosphere +can +have +effects +on +a +global +scale +and +hence +be +detectable +over +interstellar +distances +only +when +it +is +powered +by +light +life +based +on +geothermally +derived +chemical +energy +would +by +dint +of +energy +restrictions +always +remain +small +and +globally +insignificant +life +is +able +to +use +light +at +very +low +levels +littler +et +al +reported +on +growth +of +red +macroalgae +on +deep +seamounts +at +light +levels +of +μmol +m +s +raven +et +al +have +reviewed +the +minimum +light +levels +for +photosynthesis +and +also +concluded +that +μmol +m +s +is +needed +or +of +the +direct +solar +flux +at +earth +μmol +m +s +even +at +the +orbit +of +pluto +light +levels +exceed +this +value +by +a +factor +of +it +has +been +suggested +that +exoplanets +around +m +stars +a +common +star +type +which +radiates +more +in +the +infrared +compared +with +the +sun +could +support +photosynthesis +using +a +three +or +four +photon +mechanism +photon +instead +of +the +two +photon +system +used +in +plants +on +earth +uv +and +radiation +complex +life +forms +such +as +humans +are +sensitive +to +radiation +but +the +dose +that +can +be +tolerated +by +many +microorganisms +is +astonishingly +high +given +natural +levels +of +radiation +in +the +environment +table +lists +the +tolerances +and +acute +dose +survival +for +deinococcus +radiodurans +a +well +studied +soil +heterotroph +with +high +radiation +tolerance +it +has +been +suggested +that +the +high +radiation +tolerance +of +d +radiodurans +is +due +to +adaptation +to +dehydration +stress +desert +cyanobacteria +of +the +genus +chroococcidiopsis +shown +in +their +characteristic +hypolithic +growth +form +in +fig +b +are +extremely +resistant +to +desiccation +ionizing +radiation +and +uv +an +exoplanet +would +not +require +a +magnetic +field +to +be +habitable +any +plausible +field +would +not +deflect +galactic +cosmic +rays +because +these +particles +are +much +too +energetic +these +particles +are +primarily +stopped +by +the +mass +of +the +atmosphere +or +surface +materials +the +column +mass +earth +s +atmosphere +is +equivalent +to +kg +cm +the +earth +s +magnetic +field +does +deflect +solar +protons +channeling +these +particles +to +the +polar +regions +creating +the +aurora +however +even +without +the +magnetic +field +these +particles +would +not +penetrate +the +earth +s +atmosphere +and +would +not +reach +the +surface +earth +occasionally +loses +its +strong +dipole +field +during +field +reversals +these +events +are +not +correlated +with +extinctions +in +the +fossil +record +nitrogen +life +requires +a +source +of +nitrogen +after +carbon +nitrogen +is +arguably +the +most +important +element +needed +for +life +experiments +have +shown +that +aerobic +microorganisms +require +a +minimum +of +atmospheres +n +for +fixation +a +variety +of +energetic +processes +such +as +aurorae +lightning +and +volcanoes +can +convert +n +to +nitrate +even +in +co +atmospheres +in +the +reducing +conditions +of +the +outer +solar +system +n +is +present +as +ammonia +which +is +also +biologically +usable +the +biological +availability +of +nitrogen +in +an +important +factor +in +the +assignment +of +habitability +for +mars +o +multicellular +life +on +earth +generally +relies +on +oxygen +metabolism +and +the +rise +of +multicellular +life +over +earth +history +tracked +the +rise +of +oxygen +there +are +interesting +exceptions +to +the +connection +between +oxygen +and +multicellular +life +and +the +link +to +o +may +be +in +need +of +further +scrutiny +nonetheless +levels +of +o +over +a +few +percent +on +an +exoplanet +would +be +consistent +with +and +possibly +indicative +of +the +presence +of +multicellular +organisms +owen +suggested +that +o +and +o +would +be +suitable +targets +for +spectroscopy +in +the +search +for +evidence +of +life +on +exoplanets +and +exomoons +it +is +generally +agreed +that +high +levels +of +o +on +earth +like +worlds +indicate +photosynthesis +origin +of +life +discussions +of +life +on +an +exoplanet +should +logically +begin +with +a +consideration +of +the +possible +origin +of +life +on +that +world +however +our +understanding +of +the +origin +of +life +is +speculative +and +so +we +can +only +assume +that +planets +that +have +a +diversity +of +habitable +environments +are +also +generative +of +life +as +shown +in +fig +it +is +useful +to +divide +theories +for +the +origin +of +life +on +earth +into +two +main +categories +depending +on +whether +life +originated +independently +on +a +world +or +was +carried +to +that +world +from +somewhere +else +the +latter +category +is +usually +called +panspermia +and +versions +that +involve +both +natural +and +directed +panspermia +have +been +considered +there +are +possible +panspermia +schemes +that +are +relevant +to +exoplanets +napier +has +proposed +that +life +could +be +carried +on +dust +between +stars +see +also +ref +and +others +have +suggested +rocks +could +travel +between +star +systems +if +such +dust +grains +or +rocks +were +incorporated +into +the +preplanetary +nebula +then +every +planet +and +moon +that +formed +would +be +infected +with +life +theories +for +the +origin +of +life +that +propose +that +life +on +earth +began +on +earth +are +labeled +as +terrestrial +in +fig +and +could +apply +to +suitable +exoplanets +as +well +a +key +question +for +life +on +exoplanets +is +how +long +the +habitable +conditions +liquid +water +must +persist +for +life +to +begin +the +fossil +record +on +earth +provides +only +broad +constraints +on +how +long +it +took +for +life +to +start +on +this +planet +simulations +of +the +formation +of +earth +suggest +that +habitable +conditions +were +present +no +sooner +than +billion +y +ago +the +earliest +indication +of +possible +life +is +present +in +the +carbon +isotope +record +at +billion +y +ago +and +convincing +evidence +of +life +is +present +at +billion +y +ago +thus +the +origin +of +life +occurred +within +million +y +after +the +formation +of +earth +this +is +only +an +upper +limit +however +and +the +process +may +have +been +much +faster +in +a +review +of +this +question +lazcano +and +miller +suggested +that +in +spite +of +the +many +uncertainties +involved +in +the +estimates +of +time +for +life +to +arise +and +evolve +to +cyanobacteria +we +see +no +compelling +reason +to +assume +that +this +process +from +the +beginning +of +the +primitive +soup +to +cyanobacteria +took +more +than +million +years +however +orgel +criticized +this +conclusion +and +stated +that +we +do +not +understand +the +steps +that +lead +to +life +consequently +we +cannot +estimate +the +time +required +attempts +to +circumvent +this +essential +difficulty +are +based +on +misunderstandings +of +the +nature +of +the +problem +thus +until +new +data +are +obtained +the +problem +of +origin +of +life +remains +unsolvable +titan +life +in +the +previous +sections +the +considerations +of +life +on +exoplanets +have +centered +on +earth +like +life +requiring +liquid +water +this +is +certainly +a +reasonable +starting +point +in +the +search +for +life +however +it +may +be +that +liquids +other +than +water +are +also +suitable +media +for +carbon +based +life +forms +benner +et +al +first +suggested +that +the +liquid +hydrocarbons +on +titan +could +be +the +basis +for +life +playing +the +role +that +water +does +for +life +on +earth +those +researchers +concluded +that +in +many +senses +hydrocarbon +solvents +are +better +than +water +for +managing +complex +organic +chemical +reactivity +there +is +also +suitable +redox +energy +available +for +life +organic +molecules +on +the +surface +of +titan +such +as +acetylene +ethane +and +solid +organics +would +release +energy +if +they +reacted +with +hydrogen +present +in +the +atmosphere +forming +methane +acetylene +yields +the +most +energy +however +all +these +reactions +are +kinetically +inhibited +and +thus +could +be +used +by +biology +if +suitable +catalysts +were +evolved +based +on +this +mckay +and +smith +predicted +that +a +sign +of +life +on +a +titan +like +world +would +be +a +depletion +of +hydrogen +acetylene +and +ethane +lunine +suggested +that +titan +like +worlds +and +moons +might +be +more +common +in +the +galaxy +than +earth +like +worlds +gilliam +and +mckay +showed +how +titan +like +worlds +orbiting +m +type +stars +could +maintain +liquid +methane +and +ethane +surface +reservoirs +titan +is +an +example +moon +that +is +of +interest +with +respect +to +astrobiology +in +our +solar +system +europa +and +enceladus +are +similarly +of +interest +indeed +enceladus +seems +to +have +all +of +the +requirements +for +habitability +it +has +long +been +recognized +that +moons +of +giant +planets +may +be +warmed +by +tidal +heating +from +the +primary +planet +and +receive +sufficient +light +from +a +central +star +to +power +photosynthesis +this +provides +a +model +for +possible +habitable +moons +orbiting +giant +exoplanets +conclusion +as +the +number +of +known +exoplanets +and +exomoons +expands +we +will +certainly +find +worlds +that +resemble +the +earth +to +varying +extent +based +on +our +understanding +of +life +on +earth +we +can +present +a +checklist +for +speculating +on +the +possibilities +of +life +on +these +distant +worlds +i +is +the +temperature +between +c +and +c +and +a +total +pressure +high +enough +to +keep +water +liquid +water +stable +p +atmospheres +ii +if +the +world +is +arid +are +there +at +last +a +few +days +per +year +of +rain +fog +snow +or +rh +iii +are +there +adequate +light +or +geothermal +energy +sources +light +determined +by +distance +from +the +star +geothermal +energy +estimated +by +bulk +density +iv +are +the +uv +and +ionizing +radiation +below +the +very +high +limits +of +microbial +tolerance +v +is +there +a +biologically +available +source +of +nitrogen +vi +if +o +is +present +at +over +atmospheres +there +could +be +complex +life +and +the +presence +of +o +is +convincing +indicator +of +photosynthetic +life +on +earth +like +worlds +significance +the +composition +of +the +biosphere +is +a +fundamental +question +in +biology +yet +a +global +quantitative +account +of +the +biomass +of +each +taxon +is +still +lacking +we +assemble +a +census +of +the +biomass +of +all +kingdoms +of +life +this +analysis +provides +a +holistic +view +of +the +composition +of +the +biosphere +and +allows +us +to +observe +broad +patterns +over +taxonomic +categories +geographic +locations +and +trophic +modes +abstract +a +census +of +the +biomass +on +earth +is +key +for +understanding +the +structure +and +dynamics +of +the +biosphere +however +a +global +quantitative +view +of +how +the +biomass +of +different +taxa +compare +with +one +another +is +still +lacking +here +we +assemble +the +overall +biomass +composition +of +the +biosphere +establishing +a +census +of +the +gigatons +of +carbon +gt +c +of +biomass +distributed +among +all +of +the +kingdoms +of +life +we +find +that +the +kingdoms +of +life +concentrate +at +different +locations +on +the +planet +plants +gt +c +the +dominant +kingdom +are +primarily +terrestrial +whereas +animals +gt +c +are +mainly +marine +and +bacteria +gt +c +and +archaea +gt +c +are +predominantly +located +in +deep +subsurface +environments +we +show +that +terrestrial +biomass +is +about +two +orders +of +magnitude +higher +than +marine +biomass +and +estimate +a +total +of +gt +c +of +marine +biota +doubling +the +previous +estimated +quantity +our +analysis +reveals +that +the +global +marine +biomass +pyramid +contains +more +consumers +than +producers +thus +increasing +the +scope +of +previous +observations +on +inverse +food +pyramids +finally +we +highlight +that +the +mass +of +humans +is +an +order +of +magnitude +higher +than +that +of +all +wild +mammals +combined +and +report +the +historical +impact +of +humanity +on +the +global +biomass +of +prominent +taxa +including +mammals +fish +and +plants +sign +up +for +pnas +alerts +get +alerts +for +new +articles +or +get +an +alert +when +an +article +is +cited +one +of +the +most +fundamental +efforts +in +biology +is +to +describe +the +composition +of +the +living +world +centuries +of +research +have +yielded +an +increasingly +detailed +picture +of +the +species +that +inhabit +our +planet +and +their +respective +roles +in +global +ecosystems +in +describing +a +complex +system +like +the +biosphere +it +is +critical +to +quantify +the +abundance +of +individual +components +of +the +system +i +e +species +broader +taxonomic +groups +a +quantitative +description +of +the +distribution +of +biomass +is +essential +for +taking +stock +of +biosequestered +carbon +and +modeling +global +biogeochemical +cycles +as +well +as +for +understanding +the +historical +effects +and +future +impacts +of +human +activities +earlier +efforts +to +estimate +global +biomass +have +mostly +focused +on +plants +in +parallel +a +dominant +role +for +prokaryotic +biomass +has +been +advocated +in +a +landmark +paper +by +whitman +et +al +entitled +prokaryotes +the +unseen +majority +new +sampling +and +detection +techniques +make +it +possible +to +revisit +this +claim +likewise +for +other +taxa +such +as +fish +recent +global +sampling +campaigns +have +resulted +in +updated +estimates +often +differing +by +an +order +of +magnitude +or +more +from +previous +estimates +for +groups +such +as +arthropods +global +estimates +are +still +lacking +all +of +the +above +efforts +are +each +focused +on +a +single +taxon +we +are +aware +of +only +two +attempts +at +a +comprehensive +accounting +of +all +biomass +components +on +earth +whittaker +and +likens +made +a +remarkable +effort +in +the +early +s +noting +even +then +that +their +study +was +intended +for +early +obsolescence +it +did +not +include +for +example +bacterial +or +fungal +biomass +the +other +attempt +by +smil +was +included +as +a +subsection +of +a +book +intended +for +a +broad +readership +his +work +details +characteristic +values +for +the +biomass +of +various +taxa +in +many +environments +finally +wikipedia +serves +as +a +highly +effective +platform +for +making +accessible +a +range +of +estimates +on +various +taxa +https +en +wikipedia +org +wiki +biomass +ecology +global +biomass +but +currently +falls +short +of +a +comprehensive +or +integrated +view +in +the +past +decade +several +major +technological +and +scientific +advances +have +facilitated +an +improved +quantitative +account +of +the +biomass +on +earth +next +generation +sequencing +has +enabled +a +more +detailed +and +cultivation +independent +view +of +the +composition +of +natural +communities +based +on +the +relative +abundance +of +genomes +better +remote +sensing +tools +enable +us +to +probe +the +environment +on +a +global +scale +with +unprecedented +resolution +and +specificity +the +tara +oceans +expedition +is +among +recent +efforts +at +global +sampling +that +are +expanding +our +view +and +coverage +continental +counterpart +efforts +such +as +the +national +ecological +observatory +network +in +north +america +add +more +finely +resolved +continent +specific +details +affording +us +more +robust +descriptions +of +natural +habitats +here +we +either +assemble +or +generate +estimates +of +the +biomass +for +each +of +the +major +taxonomic +groups +that +contribute +to +the +global +biomass +distribution +our +analysis +described +in +detail +in +si +appendix +is +based +on +hundreds +of +studies +including +recent +studies +that +have +overturned +earlier +estimates +for +many +taxa +e +g +fish +subsurface +prokaryotes +marine +eukaryotes +soil +fauna +results +the +biomass +distribution +of +the +biosphere +by +kingdom +in +fig +and +table +we +report +our +best +estimates +for +the +biomass +of +each +taxon +analyzed +we +use +biomass +as +a +measure +of +abundance +which +allows +us +to +compare +taxa +whose +members +are +of +very +different +sizes +biomass +is +also +a +useful +metric +for +quantifying +stocks +of +elements +sequestered +in +living +organisms +we +report +biomass +using +the +mass +of +carbon +as +this +measure +is +independent +of +water +content +and +has +been +used +extensively +in +the +literature +alternative +measures +for +biomass +such +as +dry +weight +are +discussed +in +materials +and +methods +for +ease +of +discussion +we +report +biomass +in +gigatons +of +carbon +with +gt +c +g +of +carbon +we +supply +additional +estimates +for +the +number +of +individuals +of +different +taxa +in +whereas +groups +like +insects +dominate +in +terms +of +species +richness +with +about +million +described +species +their +relative +biomass +fraction +is +miniscule +some +species +contribute +much +more +than +entire +families +or +even +classes +for +example +the +antarctic +krill +species +euphausia +superba +contributes +gt +c +to +global +biomass +similar +to +other +prominent +species +such +as +humans +or +cows +this +value +is +comparable +to +the +contribution +from +termites +which +contain +many +species +and +far +surpasses +the +biomass +of +entire +vertebrate +classes +such +as +birds +in +this +way +the +picture +that +arises +from +taking +a +biomass +perspective +of +the +biosphere +complements +the +focus +on +species +richness +that +is +commonly +held +si +appendix +fig +s +the +uncertainty +associated +with +global +biomass +estimates +the +specific +methods +used +for +each +taxon +are +highly +diverse +and +are +given +in +detail +in +the +si +appendix +along +with +data +sources +global +biomass +estimates +vary +in +the +amount +of +information +they +are +based +on +and +consequently +in +their +uncertainty +an +estimate +of +relatively +high +certainty +is +that +of +plants +which +is +based +on +several +independent +sources +one +of +these +is +the +forest +resource +assessment +a +survey +on +the +state +of +world +forests +conducted +by +the +international +food +and +agriculture +organization +fao +the +assessment +is +based +on +a +collection +of +country +reports +that +detail +the +area +and +biomass +density +of +forests +in +each +country +using +a +standardized +format +and +methodology +the +fao +also +keeps +a +record +of +nonforest +ecosystems +such +as +savannas +and +shrublands +in +each +country +alternatively +remote +sensing +data +give +high +coverage +of +measurements +that +indicate +plant +biomass +remote +sensing +is +used +to +measure +for +example +the +height +of +trees +or +the +number +of +tree +stems +per +unit +area +biomass +is +inferred +by +field +measurements +establishing +a +connection +between +tree +plant +biomass +and +satellite +based +remote +sensing +measurements +combining +data +from +independent +sources +such +as +these +enables +a +robust +assessment +of +the +total +plant +biomass +a +more +characteristic +case +with +larger +uncertainties +is +exemplified +by +marine +prokaryotes +where +cell +concentrations +are +measured +in +various +locations +and +binned +based +on +depth +for +each +depth +range +the +average +cell +concentration +is +calculated +and +the +total +number +of +marine +prokaryotes +is +estimated +through +multiplication +by +the +water +volume +in +each +depth +range +the +total +number +of +cells +is +converted +to +biomass +by +using +the +characteristic +carbon +content +per +marine +prokaryote +in +cases +where +there +are +fewer +measurements +e +g +terrestrial +arthropods +terrestrial +protists +the +possibility +of +systematic +biases +in +the +estimate +is +greater +and +the +uncertainty +larger +to +test +the +robustness +of +our +estimates +we +used +independent +approaches +and +analyzed +the +agreement +between +such +independent +estimates +details +on +the +specific +methodologies +used +for +each +taxon +are +provided +in +the +si +appendix +because +most +datasets +used +to +estimate +global +biomass +rely +on +fragmentary +sampling +we +project +large +uncertainties +that +will +be +reduced +as +additional +data +become +available +the +impact +of +humanity +on +the +biosphere +over +the +relatively +short +span +of +human +history +major +innovations +such +as +the +domestication +of +livestock +adoption +of +an +agricultural +lifestyle +and +the +industrial +revolution +have +increased +the +human +population +dramatically +and +have +had +radical +ecological +effects +today +the +biomass +of +humans +gt +c +si +appendix +table +s +and +the +biomass +of +livestock +gt +c +dominated +by +cattle +and +pigs +si +appendix +table +s +far +surpass +that +of +wild +mammals +which +has +a +mass +of +gt +c +si +appendix +table +s +this +is +also +true +for +wild +and +domesticated +birds +for +which +the +biomass +of +domesticated +poultry +gt +c +dominated +by +chickens +is +about +threefold +higher +than +that +of +wild +birds +gt +c +si +appendix +table +s +in +fact +humans +and +livestock +outweigh +all +vertebrates +combined +with +the +exception +of +fish +even +though +humans +and +livestock +dominate +mammalian +biomass +they +are +a +small +fraction +of +the +gt +c +of +animal +biomass +which +primarily +comprises +arthropods +gt +c +si +appendix +tables +s +and +s +followed +by +fish +gt +c +si +appendix +table +s +comparison +of +current +global +biomass +with +prehuman +values +which +are +very +difficult +to +estimate +accurately +demonstrates +the +impact +of +humans +on +the +biosphere +human +activity +contributed +to +the +quaternary +megafauna +extinction +between +and +y +ago +which +claimed +around +half +of +the +large +kg +land +mammal +species +the +biomass +of +wild +land +mammals +before +this +period +of +extinction +was +estimated +by +barnosky +at +gt +c +the +present +day +biomass +of +wild +land +mammals +is +approximately +sevenfold +lower +at +gt +c +si +appendix +pre +human +biomass +and +chordates +and +table +s +intense +whaling +and +exploitation +of +other +marine +mammals +have +resulted +in +an +approximately +fivefold +decrease +in +marine +mammal +global +biomass +from +gt +c +to +gt +c +while +the +total +biomass +of +wild +mammals +both +marine +and +terrestrial +decreased +by +a +factor +of +the +total +mass +of +mammals +increased +approximately +fourfold +from +gt +c +to +gt +c +due +to +the +vast +increase +of +the +biomass +of +humanity +and +its +associated +livestock +human +activity +has +also +impacted +global +vertebrate +stocks +with +a +decrease +of +gt +c +in +total +fish +biomass +an +amount +similar +to +the +remaining +total +biomass +in +fisheries +and +to +the +gain +in +the +total +mammalian +biomass +due +to +livestock +husbandry +si +appendix +pre +human +biomass +the +impact +of +human +civilization +on +global +biomass +has +not +been +limited +to +mammals +but +has +also +profoundly +reshaped +the +total +quantity +of +carbon +sequestered +by +plants +a +worldwide +census +of +the +total +number +of +trees +as +well +as +a +comparison +of +actual +and +potential +plant +biomass +has +suggested +that +the +total +plant +biomass +and +by +proxy +the +total +biomass +on +earth +has +declined +approximately +twofold +relative +to +its +value +before +the +start +of +human +civilization +the +total +biomass +of +crops +cultivated +by +humans +is +estimated +at +gt +c +which +accounts +for +only +of +the +extant +total +plant +biomass +the +distribution +of +biomass +across +environments +and +trophic +modes +examining +global +biomass +in +different +environments +exposes +stark +differences +between +terrestrial +and +marine +environments +the +ocean +covers +of +the +earth +s +surface +and +occupies +a +much +larger +volume +than +the +terrestrial +environment +yet +land +biomass +at +gt +c +is +about +two +orders +of +magnitude +higher +than +the +gt +c +in +marine +biomass +as +shown +in +fig +a +even +though +there +is +a +large +difference +in +the +biomass +content +of +the +terrestrial +and +marine +environments +the +primary +productivity +of +the +two +environments +is +roughly +equal +for +plants +we +find +that +most +biomass +is +concentrated +in +terrestrial +environments +plants +have +only +a +small +fraction +of +marine +biomass +gt +c +in +the +form +of +green +algae +and +seagrass +fig +b +for +animals +most +biomass +is +concentrated +in +the +marine +environment +and +for +bacteria +and +archaea +most +biomass +is +concentrated +in +deep +subsurface +environments +we +note +that +several +of +the +results +in +fig +b +should +be +interpreted +with +caution +due +to +the +large +uncertainty +associated +with +some +of +the +estimates +mostly +those +of +total +terrestrial +protists +marine +fungi +and +contributions +from +deep +subsurface +environments +when +analyzing +trophic +levels +the +biomass +of +primary +producers +on +land +is +much +larger +than +that +of +primary +and +secondary +consumers +in +stark +contrast +in +the +oceans +gt +c +of +primary +producers +supports +gt +c +of +consumer +biomass +resulting +in +an +inverted +standing +biomass +distribution +as +shown +in +fig +c +such +inverted +biomass +distributions +can +occur +when +primary +producers +have +a +rapid +turnover +of +biomass +on +the +order +of +days +while +consumer +biomass +turns +over +much +more +slowly +a +few +years +in +the +case +of +mesopelagic +fish +thus +the +standing +stock +of +consumers +is +larger +even +though +the +productivity +of +producers +is +necessarily +higher +previous +reports +have +observed +inverted +biomass +pyramids +in +local +marine +environments +an +additional +study +noted +an +inverted +consumer +producer +ratio +for +the +global +plankton +biomass +our +analysis +suggests +that +these +observations +hold +true +when +looking +at +the +global +biomass +of +all +producers +and +consumers +in +the +marine +environment +discussion +our +census +of +the +distribution +of +biomass +on +earth +provides +an +integrated +global +picture +of +the +relative +and +absolute +abundances +of +all +kingdoms +of +life +we +find +that +the +biomass +of +plants +dominates +the +biomass +of +the +biosphere +and +is +mostly +located +on +land +the +marine +environment +is +primarily +occupied +by +microbes +mainly +bacteria +and +protists +which +account +for +of +the +total +marine +biomass +the +remaining +is +mainly +composed +of +arthropods +and +fish +the +deep +subsurface +holds +of +the +total +biomass +in +the +biosphere +it +is +chiefly +composed +of +bacteria +and +archaea +which +are +mostly +surface +attached +and +turn +over +their +biomass +every +several +months +to +thousands +of +years +in +addition +to +summarizing +current +knowledge +of +the +global +biomass +distribution +our +work +highlights +gaps +in +the +current +understanding +of +the +biosphere +our +knowledge +of +the +biomass +composition +of +different +taxa +is +mainly +determined +by +our +ability +to +sample +their +biomass +in +the +wild +for +groups +such +as +plants +the +use +of +multiple +sources +to +estimate +global +biomass +increases +our +confidence +in +the +validity +of +current +estimates +however +for +other +groups +such +as +terrestrial +arthropods +and +protists +quantitative +sampling +of +biomass +is +limited +by +technical +constraints +and +comprehensive +data +are +thus +lacking +beyond +specific +taxa +there +are +entire +environments +for +which +our +knowledge +is +very +limited +namely +the +deep +subsurface +environments +such +as +deep +aquifers +and +the +ocean +s +crust +which +might +hold +the +world +largest +aquifer +studies +in +these +environments +are +scarce +meaning +that +our +estimates +have +particularly +high +uncertainty +ranges +and +unknown +systematic +biases +main +gaps +in +our +knowledge +of +these +environments +pertain +to +the +distribution +of +biomass +between +the +aquifer +fluids +and +the +surrounding +rocks +and +the +distribution +of +biomass +between +different +microbial +taxa +such +as +bacteria +archaea +protists +and +fungi +scientists +have +closely +monitored +the +impact +of +humans +on +global +biodiversity +but +less +attention +has +been +given +to +total +biomass +resulting +in +high +uncertainty +regarding +the +impact +of +humanity +on +the +biomass +of +vertebrates +our +estimates +for +the +current +and +prehuman +biomasses +of +vertebrates +are +only +a +crude +first +step +in +calculating +these +values +si +appendix +prehuman +biomass +the +biomass +of +amphibians +which +are +experiencing +a +dramatic +population +decline +remains +poorly +characterized +future +research +could +reduce +the +uncertainty +of +current +estimates +by +sampling +more +environments +which +will +better +represent +the +diverse +biosphere +on +earth +in +the +case +of +prokaryotes +some +major +improvements +were +recently +realized +with +global +estimates +of +marine +deep +subsurface +prokaryote +biomass +reduced +by +about +two +orders +of +magnitude +due +to +an +increased +diversity +of +sampling +locations +identifying +gaps +in +our +knowledge +could +indicate +areas +for +which +further +scientific +exploration +could +have +the +biggest +impact +on +our +understanding +of +the +biosphere +as +a +concrete +example +we +identify +the +ratio +between +attached +to +unattached +cells +in +the +deep +aquifers +as +a +major +contributor +to +the +uncertainties +associated +with +our +estimate +of +the +biomass +of +bacteria +archaea +and +viruses +improving +our +understanding +of +this +specific +parameter +could +help +us +better +constrain +the +global +biomasses +of +entire +domains +of +life +in +addition +to +improving +our +reported +estimates +future +studies +can +achieve +a +finer +categorization +of +taxa +for +example +the +biomass +of +parasites +which +is +not +resolved +from +their +hosts +in +this +study +might +be +larger +than +the +biomass +of +top +predators +in +some +environments +by +providing +a +unified +updated +and +accessible +global +view +of +the +biomass +of +different +taxa +we +also +aim +to +disseminate +knowledge +of +the +biosphere +composition +to +a +wide +range +of +students +and +researchers +our +survey +puts +into +perspective +claims +regarding +the +overarching +dominance +of +groups +such +as +termites +and +ants +nematodes +and +prokaryotes +for +example +the +biomass +of +termites +gt +c +is +on +par +with +that +of +humans +but +is +still +around +an +order +of +magnitude +smaller +than +that +of +other +taxa +such +as +fish +gt +c +si +appendix +table +s +other +groups +such +as +nematodes +surpass +any +other +animal +species +in +terms +of +number +of +individuals +si +appendix +fig +s +but +constitute +only +about +of +the +total +animal +biomass +the +census +of +biomass +distribution +on +earth +presented +here +is +comprehensive +in +scope +and +based +on +synthesis +of +data +from +the +recent +scientific +literature +the +integrated +dataset +enables +us +to +draw +basic +conclusions +concerning +kingdoms +that +dominate +the +biomass +of +the +biosphere +the +distribution +of +biomass +of +each +kingdom +across +different +environments +and +the +opposite +structures +of +the +global +marine +and +terrestrial +biomass +pyramids +we +identify +areas +in +which +current +knowledge +is +lacking +and +further +research +is +most +required +ideally +future +research +will +include +both +temporal +and +geographic +resolution +we +believe +that +the +results +described +in +this +study +will +provide +students +and +researchers +with +a +holistic +quantitative +context +for +studying +our +biosphere +materials +and +methods +taxon +specific +detailed +description +of +data +sources +and +procedures +for +estimating +biomass +the +complete +account +of +the +data +sources +used +for +estimating +the +biomass +of +each +taxon +procedures +for +estimating +biomass +and +projections +for +the +uncertainty +associated +with +the +estimate +for +the +biomass +of +each +taxon +are +provided +in +the +si +appendix +to +make +the +steps +for +estimating +the +biomass +of +each +taxon +more +accessible +we +provide +supplementary +tables +that +summarize +the +procedure +as +well +as +online +notebooks +for +the +calculation +of +the +biomass +of +each +taxon +see +data +flow +scheme +in +si +appendix +overview +in +table +we +detail +the +relevant +supplementary +table +that +summarizes +the +steps +for +arriving +at +each +estimate +all +of +the +data +used +to +generate +our +estimates +as +well +as +the +code +used +for +analysis +are +open +sourced +and +available +at +https +github +com +milo +lab +biomass +distribution +choice +of +units +for +measuring +biomass +biomass +is +reported +in +gigatons +of +carbon +alternative +options +to +represent +biomass +include +among +others +biovolume +wet +mass +or +dry +weight +we +chose +to +use +carbon +mass +as +the +measure +of +biomass +because +it +is +independent +of +water +content +and +is +used +extensively +in +the +literature +dry +mass +also +has +these +features +but +is +used +less +frequently +all +of +our +reported +values +can +be +transformed +to +dry +weight +to +a +good +approximation +by +multiplying +by +the +characteristic +conversion +factor +between +carbon +and +total +dry +mass +we +report +the +significant +digits +for +our +values +throughout +the +paper +using +the +following +scheme +for +values +with +an +uncertainty +projection +that +is +higher +than +twofold +we +report +a +single +significant +digit +for +values +with +an +uncertainty +projection +of +less +than +twofold +we +report +two +significant +digits +in +cases +when +we +report +one +significant +digit +we +do +not +consider +a +leading +as +a +significant +digit +general +framework +for +estimating +global +biomass +in +achieving +global +estimates +there +is +a +constant +challenge +of +how +to +move +from +a +limited +set +of +local +samples +to +a +representative +global +value +how +does +one +estimate +global +biomass +based +on +a +limited +set +of +local +samples +for +a +crude +estimate +the +average +of +all +local +values +of +biomass +per +unit +area +is +multiplied +by +the +total +global +area +a +more +effective +estimate +can +be +made +by +correlating +measured +values +to +environmental +parameters +that +are +known +at +a +global +scale +e +g +temperature +depth +distance +from +shore +primary +productivity +biome +type +as +shown +in +fig +this +correlation +is +used +to +extrapolate +the +biomass +of +a +taxon +at +a +specific +location +based +on +the +known +distribution +of +the +environmental +parameter +e +g +the +temperature +at +each +location +on +the +globe +by +integrating +across +the +total +surface +of +the +world +a +global +estimate +is +derived +we +detail +the +specific +extrapolation +procedure +used +for +each +taxon +in +both +the +si +appendix +and +supplementary +tables +si +appendix +tables +s +s +for +most +taxa +our +best +estimates +are +based +on +a +geometric +mean +of +several +independent +estimates +using +different +methodologies +the +geometric +mean +estimates +the +median +value +if +the +independent +estimates +are +log +normally +distributed +or +more +generally +the +distribution +of +estimates +is +symmetrical +in +log +space +uncertainty +estimation +and +reporting +global +estimates +such +as +those +we +use +in +the +present +work +are +largely +based +on +sampling +from +the +distribution +of +biomass +worldwide +and +then +extrapolating +for +areas +in +which +samples +are +missing +the +sampling +of +biomass +in +each +location +can +be +based +on +direct +biomass +measurements +or +conversion +to +biomass +from +other +types +of +measurement +such +as +number +of +individuals +and +their +characteristic +weight +some +of +the +main +sources +of +uncertainty +for +the +estimates +we +present +are +the +result +of +using +such +geographical +extrapolations +and +conversion +from +number +of +individuals +to +overall +biomass +the +certainty +of +the +estimate +is +linked +to +the +amount +of +sampling +on +which +the +estimate +is +based +notable +locations +in +which +sampling +is +scarce +are +the +deep +ocean +usually +deeper +than +m +and +deep +layers +of +soil +usually +deeper +than +m +for +some +organisms +such +as +annelids +and +marine +protists +and +arthropods +most +estimates +neglect +these +environments +thus +underestimating +the +actual +biomass +sampling +can +be +biased +toward +places +that +have +high +abundance +and +diversity +of +wildlife +relying +on +data +with +such +sampling +bias +can +cause +overestimation +of +the +actual +biomass +of +a +taxon +another +source +of +uncertainty +comes +from +conversion +to +biomass +conversion +from +counts +of +individuals +to +biomass +is +based +on +either +known +average +weights +per +individual +e +g +kg +of +wet +weight +for +a +human +which +averages +over +adults +and +children +or +mg +of +dry +weight +for +a +characteristic +earthworm +or +empirical +allometric +equations +that +are +organism +specific +such +as +conversion +from +animal +length +to +biomass +when +using +such +conversion +methods +there +is +a +risk +of +introducing +biases +and +noise +into +the +final +estimate +nevertheless +there +is +often +no +way +around +using +such +conversions +as +such +we +must +be +aware +that +the +data +may +contain +such +biases +in +addition +to +describing +the +procedures +leading +to +the +estimate +of +each +taxon +we +quantitatively +survey +the +main +sources +of +uncertainty +associated +with +each +estimate +and +calculate +an +uncertainty +range +for +each +of +our +biomass +estimates +we +choose +to +report +uncertainties +as +representing +to +the +best +of +our +ability +given +the +many +constraints +what +is +equivalent +to +a +confidence +interval +for +the +estimate +of +the +mean +uncertainties +reported +in +our +analysis +are +multiplicative +fold +change +from +the +mean +and +not +additive +change +of +the +estimate +we +chose +to +use +multiplicative +uncertainty +as +it +is +more +robust +to +large +fluctuations +in +estimates +and +because +it +is +in +accord +with +the +way +we +generate +our +best +estimates +which +is +usually +by +using +a +geometric +mean +of +different +independent +estimates +our +uncertainty +projections +are +focused +on +the +main +kingdoms +of +life +plants +bacteria +archaea +fungi +protists +and +animals +the +general +framework +for +constructing +our +uncertainties +described +in +detail +for +each +taxon +in +the +si +appendix +and +in +the +online +notebooks +takes +into +account +both +intrastudy +uncertainty +and +interstudy +uncertainty +intrastudy +uncertainty +refers +to +uncertainty +estimates +reported +within +a +specific +study +whereas +interstudy +uncertainty +refers +to +variation +in +estimates +of +a +certain +quantity +between +different +papers +in +many +cases +we +use +several +independent +methodologies +to +estimate +the +same +quantity +in +these +cases +we +can +also +use +the +variation +between +estimates +from +each +methodology +as +a +measure +of +the +uncertainty +of +our +final +estimate +we +refer +to +this +type +of +uncertainty +as +intermethod +uncertainty +the +way +we +usually +calculate +uncertainties +is +by +taking +the +logarithm +of +the +values +reported +either +within +studies +or +from +different +studies +taking +the +logarithm +moves +the +values +to +log +space +where +the +se +is +calculated +by +dividing +the +sd +by +the +square +root +of +the +number +of +values +we +then +multiply +the +se +by +a +factor +of +which +would +give +the +confidence +interval +if +the +transformed +data +were +normally +distributed +finally +we +exponentiate +the +result +to +get +the +multiplicative +factor +in +linear +space +that +represents +the +confidence +interval +akin +to +a +confidence +interval +if +the +data +were +log +normally +distributed +most +of +our +estimates +are +constructed +by +combining +several +different +estimates +e +g +combining +total +number +of +individuals +and +characteristic +carbon +content +of +a +single +organism +in +these +cases +we +use +intrastudy +interstudy +or +intermethod +variation +associated +with +each +parameter +that +is +used +to +derive +the +final +estimate +and +propagate +these +uncertainties +to +the +final +estimate +of +biomass +the +uncertainty +analysis +for +each +specific +biomass +estimate +incorporates +different +components +of +this +general +scheme +depending +on +the +amount +of +information +that +is +available +as +detailed +on +a +case +by +case +basis +in +the +si +appendix +in +cases +where +information +is +ample +the +procedure +described +above +yields +several +different +uncertainty +estimates +for +each +parameter +that +we +use +to +derive +the +final +estimate +e +g +intrastudy +uncertainty +interstudy +uncertainty +we +integrate +these +different +uncertainties +usually +by +taking +the +highest +value +as +the +best +projection +of +uncertainty +in +some +cases +for +example +when +information +is +scarce +or +some +sources +of +uncertainty +are +hard +to +quantify +we +base +our +estimates +on +the +uncertainty +in +analogous +taxa +and +consultation +with +relevant +experts +we +tend +to +round +up +our +uncertainty +projections +when +data +are +especially +limited +taxonomic +levels +used +our +census +gives +estimates +for +the +global +biomass +at +various +taxonomic +levels +our +main +results +relate +to +the +kingdom +level +animals +archaea +bacteria +fungi +plants +and +protists +although +the +division +into +kingdoms +is +not +the +most +contemporary +taxonomic +grouping +that +exists +we +chose +to +use +it +for +the +current +analysis +as +most +of +the +data +we +rely +upon +does +not +provide +finer +taxonomic +details +e +g +the +division +of +terrestrial +protists +is +mainly +based +on +morphology +and +not +on +taxonomy +we +supplement +these +kingdoms +of +living +organisms +with +an +estimate +for +the +global +biomass +of +viruses +which +are +not +included +in +the +current +tree +of +life +but +play +a +key +role +in +global +biogeochemical +cycles +for +all +kingdoms +except +animals +all +taxa +making +up +the +kingdom +are +considered +together +for +estimating +the +biomass +of +animals +we +use +a +bottom +up +approach +which +estimates +the +biomass +of +key +phyla +constituting +the +animal +kingdom +the +sum +of +the +biomass +of +these +phyla +represents +our +estimate +of +the +total +biomass +of +animals +we +give +estimates +for +most +phyla +and +estimate +bounds +for +the +possible +biomass +contribution +for +the +remaining +phyla +si +appendix +other +animal +phyla +within +chordates +we +provide +estimates +for +key +classes +such +as +fish +mammals +and +birds +we +estimate +that +the +contribution +of +reptiles +and +amphibians +to +the +total +chordate +biomass +is +negligible +as +we +discuss +in +the +si +appendix +we +divide +the +class +of +mammals +into +wild +mammals +and +humans +plus +livestock +without +a +contribution +from +poultry +which +is +negligible +compared +with +cattle +and +pigs +even +though +livestock +is +not +a +valid +taxonomic +division +we +use +it +to +consider +the +impact +of +humans +on +the +total +biomass +of +mammals +data +availability +acknowledgments +we +thank +shai +meiri +for +help +with +estimating +the +biomass +of +wild +mammals +birds +and +reptiles +and +arren +bar +even +oded +beja +jorg +bernhardt +tristan +biard +chris +bowler +nuno +carvalhais +otto +coredero +gidon +eshel +ofer +feinerman +noah +fierer +daniel +fisher +avi +flamholtz +assaf +gal +josé +grünzweig +marcel +van +der +heijden +dina +hochhauser +julie +huber +qusheng +jin +bo +barker +jørgensen +jens +kallmeyer +tamir +klein +christian +koerner +daniel +madar +fabrice +not +katherine +o +donnell +gal +ofir +victoria +orphan +noam +prywes +john +raven +dave +savage +einat +segev +maya +shamir +izak +smit +rotem +sorek +ofer +steinitz +miri +tsalyuk +assaf +vardi +colomban +de +vargas +joshua +weitz +yossi +yovel +yonatan +zegman +and +two +anonymous +reviewers +for +productive +feedback +on +this +manuscript +this +research +was +supported +by +the +european +research +council +project +novcarbfix +the +israel +science +foundation +grant +the +isf +nrf +singapore +joint +research +program +grant +the +beck +canadian +center +for +alternative +energy +research +dana +and +yossie +hollander +the +ullmann +family +foundation +the +helmsley +charitable +foundation +the +larson +charitable +foundation +the +wolfson +family +charitable +trust +charles +rothschild +and +selmo +nussenbaum +this +study +was +also +supported +by +the +nih +through +grant +r +gm +mira +r +m +is +the +charles +and +louise +gartner +professional +chair +a +car +or +an +automobile +is +a +motor +vehicle +with +wheels +most +definitions +of +cars +state +that +they +run +primarily +on +roads +seat +one +to +eight +people +have +four +wheels +and +mainly +transport +people +rather +than +cargo +there +are +around +one +billion +cars +in +use +worldwide +the +french +inventor +nicolas +joseph +cugnot +built +the +first +steam +powered +road +vehicle +in +while +the +swiss +inventor +françois +isaac +de +rivaz +designed +and +constructed +the +first +internal +combustion +powered +automobile +in +the +modern +car +a +practical +marketable +automobile +for +everyday +use +was +invented +in +when +the +german +inventor +carl +benz +patented +his +benz +patent +motorwagen +commercial +cars +became +widely +available +during +the +th +century +the +oldsmobile +curved +dash +and +the +ford +model +t +both +american +cars +are +widely +considered +the +first +mass +produced +and +mass +affordable +cars +respectively +cars +were +rapidly +adopted +in +the +us +where +they +replaced +horse +drawn +carriages +in +europe +and +other +parts +of +the +world +demand +for +automobiles +did +not +increase +until +after +world +war +ii +in +the +st +century +car +usage +is +still +increasing +rapidly +especially +in +china +india +and +other +newly +industrialised +countries +cars +have +controls +for +driving +parking +passenger +comfort +and +a +variety +of +lamps +over +the +decades +additional +features +and +controls +have +been +added +to +vehicles +making +them +progressively +more +complex +these +include +rear +reversing +cameras +air +conditioning +navigation +systems +and +in +car +entertainment +most +cars +in +use +in +the +early +s +are +propelled +by +an +internal +combustion +engine +fueled +by +the +combustion +of +fossil +fuels +electric +cars +which +were +invented +early +in +the +history +of +the +car +became +commercially +available +in +the +s +and +are +predicted +to +cost +less +to +buy +than +petrol +driven +cars +before +the +transition +from +fossil +fuel +powered +cars +to +electric +cars +features +prominently +in +most +climate +change +mitigation +scenarios +such +as +project +drawdown +s +actionable +solutions +for +climate +change +there +are +costs +and +benefits +to +car +use +the +costs +to +the +individual +include +acquiring +the +vehicle +interest +payments +if +the +car +is +financed +repairs +and +maintenance +fuel +depreciation +driving +time +parking +fees +taxes +and +insurance +the +costs +to +society +include +maintaining +roads +land +use +road +congestion +air +pollution +noise +pollution +public +health +and +disposing +of +the +vehicle +at +the +end +of +its +life +traffic +collisions +are +the +largest +cause +of +injury +related +deaths +worldwide +personal +benefits +include +on +demand +transportation +mobility +independence +and +convenience +societal +benefits +include +economic +benefits +such +as +job +and +wealth +creation +from +the +automotive +industry +transportation +provision +societal +well +being +from +leisure +and +travel +opportunities +people +s +ability +to +move +flexibly +from +place +to +place +has +far +reaching +implications +for +the +nature +of +societies +the +english +word +car +is +believed +to +originate +from +latin +carrus +carrum +wheeled +vehicle +or +via +old +north +french +middle +english +carre +two +wheeled +cart +both +of +which +in +turn +derive +from +gaulish +karros +chariot +it +originally +referred +to +any +wheeled +horse +drawn +vehicle +such +as +a +cart +carriage +or +wagon +the +word +also +occurs +in +other +celtic +languages +motor +car +attested +from +is +the +usual +formal +term +in +british +english +autocar +a +variant +likewise +attested +from +and +literally +meaning +self +propelled +car +is +now +considered +archaic +horseless +carriage +is +attested +from +automobile +a +classical +compound +derived +from +ancient +greek +autós +αὐτός +self +and +latin +mobilis +movable +entered +english +from +french +and +was +first +adopted +by +the +automobile +club +of +great +britain +in +it +fell +out +of +favour +in +britain +and +is +now +used +chiefly +in +north +america +where +the +abbreviated +form +auto +commonly +appears +as +an +adjective +in +compound +formations +like +auto +industry +and +auto +mechanic +in +hans +hautsch +of +nuremberg +built +a +clockwork +driven +carriage +the +first +steam +powered +vehicle +was +designed +by +ferdinand +verbiest +a +flemish +member +of +a +jesuit +mission +in +china +around +it +was +a +centimetre +long +in +scale +model +toy +for +the +kangxi +emperor +that +was +unable +to +carry +a +driver +or +a +passenger +it +is +not +known +with +certainty +if +verbiest +s +model +was +successfully +built +or +run +nicolas +joseph +cugnot +is +widely +credited +with +building +the +first +full +scale +self +propelled +mechanical +vehicle +in +about +he +created +a +steam +powered +tricycle +he +also +constructed +two +steam +tractors +for +the +french +army +one +of +which +is +preserved +in +the +french +national +conservatory +of +arts +and +crafts +his +inventions +were +limited +by +problems +with +water +supply +and +maintaining +steam +pressure +in +richard +trevithick +built +and +demonstrated +his +puffing +devil +road +locomotive +believed +by +many +to +be +the +first +demonstration +of +a +steam +powered +road +vehicle +it +was +unable +to +maintain +sufficient +steam +pressure +for +long +periods +and +was +of +little +practical +use +the +development +of +external +combustion +steam +engines +is +detailed +as +part +of +the +history +of +the +car +but +often +treated +separately +from +the +development +of +true +cars +a +variety +of +steam +powered +road +vehicles +were +used +during +the +first +part +of +the +th +century +including +steam +cars +steam +buses +phaetons +and +steam +rollers +in +the +united +kingdom +sentiment +against +them +led +to +the +locomotive +acts +of +in +nicéphore +niépce +and +his +brother +claude +created +what +was +probably +the +world +s +first +internal +combustion +engine +which +they +called +a +pyréolophore +but +installed +it +in +a +boat +on +the +river +saone +in +france +coincidentally +in +the +swiss +inventor +françois +isaac +de +rivaz +designed +his +own +de +rivaz +internal +combustion +engine +and +used +it +to +develop +the +world +s +first +vehicle +to +be +powered +by +such +an +engine +the +niépces +pyréolophore +was +fuelled +by +a +mixture +of +lycopodium +powder +dried +spores +of +the +lycopodium +plant +finely +crushed +coal +dust +and +resin +that +were +mixed +with +oil +whereas +de +rivaz +used +a +mixture +of +hydrogen +and +oxygen +neither +design +was +successful +as +was +the +case +with +others +such +as +samuel +brown +samuel +morey +and +etienne +lenoir +who +each +built +vehicles +usually +adapted +carriages +or +carts +powered +by +internal +combustion +engines +in +november +french +inventor +gustave +trouvé +demonstrated +a +three +wheeled +car +powered +by +electricity +at +the +international +exposition +of +electricity +although +several +other +german +engineers +including +gottlieb +daimler +wilhelm +maybach +and +siegfried +marcus +were +working +on +cars +at +about +the +same +time +the +year +is +regarded +as +the +birth +year +of +the +modern +car +a +practical +marketable +automobile +for +everyday +use +when +the +german +carl +benz +patented +his +benz +patent +motorwagen +he +is +generally +acknowledged +as +the +inventor +of +the +car +in +benz +was +granted +a +patent +for +his +first +engine +which +had +been +designed +in +many +of +his +other +inventions +made +the +use +of +the +internal +combustion +engine +feasible +for +powering +a +vehicle +his +first +motorwagen +was +built +in +in +mannheim +germany +he +was +awarded +the +patent +for +its +invention +as +of +his +application +on +january +under +the +auspices +of +his +major +company +benz +cie +which +was +founded +in +benz +began +promotion +of +the +vehicle +on +july +and +about +benz +vehicles +were +sold +between +and +when +his +first +four +wheeler +was +introduced +along +with +a +cheaper +model +they +also +were +powered +with +four +stroke +engines +of +his +own +design +emile +roger +of +france +already +producing +benz +engines +under +license +now +added +the +benz +car +to +his +line +of +products +because +france +was +more +open +to +the +early +cars +initially +more +were +built +and +sold +in +france +through +roger +than +benz +sold +in +germany +in +august +bertha +benz +the +wife +and +business +partner +of +carl +benz +undertook +the +first +road +trip +by +car +to +prove +the +road +worthiness +of +her +husband +s +invention +in +benz +designed +and +patented +the +first +internal +combustion +flat +engine +called +boxermotor +during +the +last +years +of +the +th +century +benz +was +the +largest +car +company +in +the +world +with +units +produced +in +and +because +of +its +size +benz +cie +became +a +joint +stock +company +the +first +motor +car +in +central +europe +and +one +of +the +first +factory +made +cars +in +the +world +was +produced +by +czech +company +nesselsdorfer +wagenbau +later +renamed +to +tatra +in +the +präsident +automobil +daimler +and +maybach +founded +daimler +motoren +gesellschaft +dmg +in +cannstatt +in +and +sold +their +first +car +in +under +the +brand +name +daimler +it +was +a +horse +drawn +stagecoach +built +by +another +manufacturer +which +they +retrofitted +with +an +engine +of +their +design +by +about +vehicles +had +been +built +by +daimler +and +maybach +either +at +the +daimler +works +or +in +the +hotel +hermann +where +they +set +up +shop +after +disputes +with +their +backers +benz +maybach +and +the +daimler +team +seem +to +have +been +unaware +of +each +other +s +early +work +they +never +worked +together +by +the +time +of +the +merger +of +the +two +companies +daimler +and +maybach +were +no +longer +part +of +dmg +daimler +died +in +and +later +that +year +maybach +designed +an +engine +named +daimler +mercedes +that +was +placed +in +a +specially +ordered +model +built +to +specifications +set +by +emil +jellinek +this +was +a +production +of +a +small +number +of +vehicles +for +jellinek +to +race +and +market +in +his +country +two +years +later +in +a +new +model +dmg +car +was +produced +and +the +model +was +named +mercedes +after +the +maybach +engine +which +generated +hp +maybach +quit +dmg +shortly +thereafter +and +opened +a +business +of +his +own +rights +to +the +daimler +brand +name +were +sold +to +other +manufacturers +in +Émile +levassor +and +armand +peugeot +of +france +began +producing +vehicles +with +daimler +engines +and +so +laid +the +foundation +of +the +automotive +industry +in +france +in +auguste +doriot +and +his +peugeot +colleague +louis +rigoulot +completed +the +longest +trip +by +a +petrol +driven +vehicle +when +their +self +designed +and +built +daimler +powered +peugeot +type +completed +kilometres +mi +from +valentigney +to +paris +and +brest +and +back +again +they +were +attached +to +the +first +paris +brest +paris +bicycle +race +but +finished +six +days +after +the +winning +cyclist +charles +terront +the +first +design +for +an +american +car +with +a +petrol +internal +combustion +engine +was +made +in +by +george +selden +of +rochester +new +york +selden +applied +for +a +patent +for +a +car +in +but +the +patent +application +expired +because +the +vehicle +was +never +built +after +a +delay +of +years +and +a +series +of +attachments +to +his +application +on +november +selden +was +granted +a +us +patent +u +s +patent +for +a +two +stroke +car +engine +which +hindered +more +than +encouraged +development +of +cars +in +the +united +states +his +patent +was +challenged +by +henry +ford +and +others +and +overturned +in +in +the +first +running +petrol +driven +american +car +was +built +and +road +tested +by +the +duryea +brothers +of +springfield +massachusetts +the +first +public +run +of +the +duryea +motor +wagon +took +place +on +september +on +taylor +street +in +metro +center +springfield +studebaker +subsidiary +of +a +long +established +wagon +and +coach +manufacturer +started +to +build +cars +in +and +commenced +sales +of +electric +vehicles +in +and +petrol +vehicles +in +in +britain +there +had +been +several +attempts +to +build +steam +cars +with +varying +degrees +of +success +with +thomas +rickett +even +attempting +a +production +run +in +santler +from +malvern +is +recognised +by +the +veteran +car +club +of +great +britain +as +having +made +the +first +petrol +driven +car +in +the +country +in +followed +by +frederick +william +lanchester +in +but +these +were +both +one +offs +the +first +production +vehicles +in +great +britain +came +from +the +daimler +company +a +company +founded +by +harry +j +lawson +in +after +purchasing +the +right +to +use +the +name +of +the +engines +lawson +s +company +made +its +first +car +in +and +they +bore +the +name +daimler +in +german +engineer +rudolf +diesel +was +granted +a +patent +for +a +new +rational +combustion +engine +in +he +built +the +first +diesel +engine +steam +electric +and +petrol +driven +vehicles +competed +for +a +few +decades +with +petrol +internal +combustion +engines +achieving +dominance +in +the +s +although +various +pistonless +rotary +engine +designs +have +attempted +to +compete +with +the +conventional +piston +and +crankshaft +design +only +mazda +s +version +of +the +wankel +engine +has +had +more +than +very +limited +success +all +in +all +it +is +estimated +that +over +patents +created +the +modern +automobile +and +motorcycle +large +scale +production +line +manufacturing +of +affordable +cars +was +started +by +ransom +olds +in +at +his +oldsmobile +factory +in +lansing +michigan +and +based +upon +stationary +assembly +line +techniques +pioneered +by +marc +isambard +brunel +at +the +portsmouth +block +mills +england +in +the +assembly +line +style +of +mass +production +and +interchangeable +parts +had +been +pioneered +in +the +us +by +thomas +blanchard +in +at +the +springfield +armory +in +springfield +massachusetts +this +concept +was +greatly +expanded +by +henry +ford +beginning +in +with +the +world +s +first +moving +assembly +line +for +cars +at +the +highland +park +ford +plant +as +a +result +ford +s +cars +came +off +the +line +in +minute +intervals +much +faster +than +previous +methods +increasing +productivity +eightfold +while +using +less +manpower +from +manhours +to +hour +minutes +it +was +so +successful +paint +became +a +bottleneck +only +japan +black +would +dry +fast +enough +forcing +the +company +to +drop +the +variety +of +colours +available +before +until +fast +drying +duco +lacquer +was +developed +in +this +is +the +source +of +ford +s +apocryphal +remark +any +color +as +long +as +it +s +black +in +an +assembly +line +worker +could +buy +a +model +t +with +four +months +pay +ford +s +complex +safety +procedures +especially +assigning +each +worker +to +a +specific +location +instead +of +allowing +them +to +roam +about +dramatically +reduced +the +rate +of +injury +the +combination +of +high +wages +and +high +efficiency +is +called +fordism +and +was +copied +by +most +major +industries +the +efficiency +gains +from +the +assembly +line +also +coincided +with +the +economic +rise +of +the +us +the +assembly +line +forced +workers +to +work +at +a +certain +pace +with +very +repetitive +motions +which +led +to +more +output +per +worker +while +other +countries +were +using +less +productive +methods +in +the +automotive +industry +its +success +was +dominating +and +quickly +spread +worldwide +seeing +the +founding +of +ford +france +and +ford +britain +in +ford +denmark +ford +germany +in +citroën +was +the +first +native +european +manufacturer +to +adopt +the +production +method +soon +companies +had +to +have +assembly +lines +or +risk +going +bankrupt +by +companies +which +did +not +had +disappeared +development +of +automotive +technology +was +rapid +due +in +part +to +the +hundreds +of +small +manufacturers +competing +to +gain +the +world +s +attention +key +developments +included +electric +ignition +and +the +electric +self +starter +both +by +charles +kettering +for +the +cadillac +motor +company +in +independent +suspension +and +four +wheel +brakes +since +the +s +nearly +all +cars +have +been +mass +produced +to +meet +market +needs +so +marketing +plans +often +have +heavily +influenced +car +design +it +was +alfred +p +sloan +who +established +the +idea +of +different +makes +of +cars +produced +by +one +company +called +the +general +motors +companion +make +program +so +that +buyers +could +move +up +as +their +fortunes +improved +reflecting +the +rapid +pace +of +change +makes +shared +parts +with +one +another +so +larger +production +volume +resulted +in +lower +costs +for +each +price +range +for +example +in +the +s +lasalles +sold +by +cadillac +used +cheaper +mechanical +parts +made +by +oldsmobile +in +the +s +chevrolet +shared +bonnet +doors +roof +and +windows +with +pontiac +by +the +s +corporate +powertrains +and +shared +platforms +with +interchangeable +brakes +suspension +and +other +parts +were +common +even +so +only +major +makers +could +afford +high +costs +and +even +companies +with +decades +of +production +such +as +apperson +cole +dorris +haynes +or +premier +could +not +manage +of +some +two +hundred +american +car +makers +in +existence +in +only +survived +in +and +with +the +great +depression +by +only +of +those +were +left +in +europe +much +the +same +would +happen +morris +set +up +its +production +line +at +cowley +in +and +soon +outsold +ford +while +beginning +in +to +follow +ford +s +practice +of +vertical +integration +buying +hotchkiss +british +subsidiary +engines +wrigley +gearboxes +and +osberton +radiators +for +instance +as +well +as +competitors +such +as +wolseley +in +morris +had +per +cent +of +total +british +car +production +most +british +small +car +assemblers +from +abbey +to +xtra +had +gone +under +citroën +did +the +same +in +france +coming +to +cars +in +between +them +and +other +cheap +cars +in +reply +such +as +renault +s +cv +and +peugeot +s +cv +they +produced +cars +in +and +mors +hurtu +and +others +could +not +compete +germany +s +first +mass +manufactured +car +the +opel +ps +laubfrosch +tree +frog +came +off +the +line +at +rüsselsheim +in +soon +making +opel +the +top +car +builder +in +germany +with +per +cent +of +the +market +in +japan +car +production +was +very +limited +before +world +war +ii +only +a +handful +of +companies +were +producing +vehicles +in +limited +numbers +and +these +were +small +three +wheeled +for +commercial +uses +like +daihatsu +or +were +the +result +of +partnering +with +european +companies +like +isuzu +building +the +wolseley +a +in +mitsubishi +was +also +partnered +with +fiat +and +built +the +mitsubishi +model +a +based +on +a +fiat +vehicle +toyota +nissan +suzuki +mazda +and +honda +began +as +companies +producing +non +automotive +products +before +the +war +switching +to +car +production +during +the +s +kiichiro +toyoda +s +decision +to +take +toyoda +loom +works +into +automobile +manufacturing +would +create +what +would +eventually +become +toyota +motor +corporation +the +largest +automobile +manufacturer +in +the +world +subaru +meanwhile +was +formed +from +a +conglomerate +of +six +companies +who +banded +together +as +fuji +heavy +industries +as +a +result +of +having +been +broken +up +under +keiretsu +legislation +fossil +fuels +most +cars +in +use +in +the +early +s +run +on +petrol +burnt +in +an +internal +combustion +engine +ice +some +cities +ban +older +more +polluting +petrol +driven +cars +and +some +countries +plan +to +ban +sales +in +future +however +some +environmental +groups +say +this +phase +out +of +fossil +fuel +vehicles +must +be +brought +forwards +to +limit +climate +change +production +of +petrol +fuelled +cars +peaked +in +other +hydrocarbon +fossil +fuels +also +burnt +by +deflagration +rather +than +detonation +in +ice +cars +include +diesel +autogas +and +cng +removal +of +fossil +fuel +subsidies +concerns +about +oil +dependence +tightening +environmental +laws +and +restrictions +on +greenhouse +gas +emissions +are +propelling +work +on +alternative +power +systems +for +cars +this +includes +hybrid +vehicles +plug +in +electric +vehicles +and +hydrogen +vehicles +out +of +all +cars +sold +in +nine +per +cent +were +electric +and +by +the +end +of +that +year +there +were +more +than +million +electric +cars +on +the +world +s +roads +despite +rapid +growth +less +than +two +per +cent +of +cars +on +the +world +s +roads +were +fully +electric +and +plug +in +hybrid +cars +by +the +end +of +cars +for +racing +or +speed +records +have +sometimes +employed +jet +or +rocket +engines +but +these +are +impractical +for +common +use +oil +consumption +has +increased +rapidly +in +the +th +and +st +centuries +because +there +are +more +cars +the +s +oil +glut +even +fuelled +the +sales +of +low +economy +vehicles +in +oecd +countries +the +bric +countries +are +adding +to +this +consumption +batteries +main +article +electric +vehicle +battery +see +also +electric +car +batteries +and +automotive +battery +in +almost +all +hybrid +even +mild +hybrid +and +pure +electric +cars +regenerative +braking +recovers +and +returns +to +a +battery +some +energy +which +would +otherwise +be +wasted +by +friction +brakes +getting +hot +although +all +cars +must +have +friction +brakes +front +disc +brakes +and +either +disc +or +drum +rear +brakes +for +emergency +stops +regenerative +braking +improves +efficiency +particularly +in +city +driving +cars +are +equipped +with +controls +used +for +driving +passenger +comfort +and +safety +normally +operated +by +a +combination +of +the +use +of +feet +and +hands +and +occasionally +by +voice +on +st +century +cars +these +controls +include +a +steering +wheel +pedals +for +operating +the +brakes +and +controlling +the +car +s +speed +and +in +a +manual +transmission +car +a +clutch +pedal +a +shift +lever +or +stick +for +changing +gears +and +a +number +of +buttons +and +dials +for +turning +on +lights +ventilation +and +other +functions +modern +cars +controls +are +now +standardised +such +as +the +location +for +the +accelerator +and +brake +but +this +was +not +always +the +case +controls +are +evolving +in +response +to +new +technologies +for +example +the +electric +car +and +the +integration +of +mobile +communications +some +of +the +original +controls +are +no +longer +required +for +example +all +cars +once +had +controls +for +the +choke +valve +clutch +ignition +timing +and +a +crank +instead +of +an +electric +starter +however +new +controls +have +also +been +added +to +vehicles +making +them +more +complex +these +include +air +conditioning +navigation +systems +and +in +car +entertainment +another +trend +is +the +replacement +of +physical +knobs +and +switches +by +secondary +controls +with +touchscreen +controls +such +as +bmw +s +idrive +and +ford +s +myford +touch +another +change +is +that +while +early +cars +pedals +were +physically +linked +to +the +brake +mechanism +and +throttle +in +the +early +s +cars +have +increasingly +replaced +these +physical +linkages +with +electronic +controls +cars +are +typically +equipped +with +interior +lighting +which +can +be +toggled +manually +or +be +set +to +light +up +automatically +with +doors +open +an +entertainment +system +which +originated +from +car +radios +sideways +windows +which +can +be +lowered +or +raised +electrically +manually +on +earlier +cars +and +one +or +multiple +auxiliary +power +outlets +for +supplying +portable +appliances +such +as +mobile +phones +portable +fridges +power +inverters +and +electrical +air +pumps +from +the +on +board +electrical +system +a +more +costly +upper +class +and +luxury +cars +are +equipped +with +features +earlier +such +as +massage +seats +and +collision +avoidance +systems +cars +are +typically +fitted +with +multiple +types +of +lights +these +include +headlights +which +are +used +to +illuminate +the +way +ahead +and +make +the +car +visible +to +other +users +so +that +the +vehicle +can +be +used +at +night +in +some +jurisdictions +daytime +running +lights +red +brake +lights +to +indicate +when +the +brakes +are +applied +amber +turn +signal +lights +to +indicate +the +turn +intentions +of +the +driver +white +coloured +reverse +lights +to +illuminate +the +area +behind +the +car +and +indicate +that +the +driver +will +be +or +is +reversing +and +on +some +vehicles +additional +lights +e +g +side +marker +lights +to +increase +the +visibility +of +the +car +interior +lights +on +the +ceiling +of +the +car +are +usually +fitted +for +the +driver +and +passengers +some +vehicles +also +have +a +boot +light +and +more +rarely +an +engine +compartment +light +during +the +late +th +and +early +st +century +cars +increased +in +weight +due +to +batteries +modern +steel +safety +cages +anti +lock +brakes +airbags +and +more +powerful +if +more +efficient +engines +and +as +of +typically +weigh +between +and +tonnes +and +short +tons +and +long +tons +heavier +cars +are +safer +for +the +driver +from +a +crash +perspective +but +more +dangerous +for +other +vehicles +and +road +users +the +weight +of +a +car +influences +fuel +consumption +and +performance +with +more +weight +resulting +in +increased +fuel +consumption +and +decreased +performance +the +wuling +hongguang +mini +ev +a +typical +city +car +weighs +about +kilograms +lb +heavier +cars +include +suvs +and +extended +length +suvs +like +the +suburban +cars +have +also +become +wider +some +places +tax +heavier +cars +more +as +well +as +improving +pedestrian +safety +this +can +encourage +manufacturers +to +use +materials +such +as +recycled +aluminium +instead +of +steel +it +has +been +suggested +that +one +benefit +of +subsidising +charging +infrastructure +is +that +cars +can +use +lighter +batteries +most +cars +are +designed +to +carry +multiple +occupants +often +with +four +or +five +seats +cars +with +five +seats +typically +seat +two +passengers +in +the +front +and +three +in +the +rear +full +size +cars +and +large +sport +utility +vehicles +can +often +carry +six +seven +or +more +occupants +depending +on +the +arrangement +of +the +seats +on +the +other +hand +sports +cars +are +most +often +designed +with +only +two +seats +utility +vehicles +like +pickup +trucks +combine +seating +with +extra +cargo +or +utility +functionality +the +differing +needs +for +passenger +capacity +and +their +luggage +or +cargo +space +has +resulted +in +the +availability +of +a +large +variety +of +body +styles +to +meet +individual +consumer +requirements +that +include +among +others +the +sedan +saloon +hatchback +station +wagon +estate +coupe +and +minivan +traffic +collisions +are +the +largest +cause +of +injury +related +deaths +worldwide +mary +ward +became +one +of +the +first +documented +car +fatalities +in +in +parsonstown +ireland +and +henry +bliss +one +of +the +us +s +first +pedestrian +car +casualties +in +in +new +york +city +there +are +now +standard +tests +for +safety +in +new +cars +such +as +the +euro +and +us +ncap +tests +and +insurance +industry +backed +tests +by +the +insurance +institute +for +highway +safety +iihs +however +not +all +such +tests +consider +the +safety +of +people +outside +the +car +such +as +drivers +of +other +cars +pedestrians +and +cyclists +the +costs +of +car +usage +which +may +include +the +cost +of +acquiring +the +vehicle +repairs +and +auto +maintenance +fuel +depreciation +driving +time +parking +fees +taxes +and +insurance +are +weighed +against +the +cost +of +the +alternatives +and +the +value +of +the +benefits +perceived +and +real +of +vehicle +usage +the +benefits +may +include +on +demand +transportation +mobility +independence +and +convenience +and +emergency +power +during +the +s +cars +had +another +benefit +c +ouples +finally +had +a +way +to +head +off +on +unchaperoned +dates +plus +they +had +a +private +space +to +snuggle +up +close +at +the +end +of +the +night +similarly +the +costs +to +society +of +car +use +may +include +maintaining +roads +land +use +air +pollution +noise +pollution +road +congestion +public +health +health +care +and +of +disposing +of +the +vehicle +at +the +end +of +its +life +and +can +be +balanced +against +the +value +of +the +benefits +to +society +that +car +use +generates +societal +benefits +may +include +economy +benefits +such +as +job +and +wealth +creation +of +car +production +and +maintenance +transportation +provision +society +wellbeing +derived +from +leisure +and +travel +opportunities +and +revenue +generation +from +the +tax +opportunities +the +ability +of +humans +to +move +flexibly +from +place +to +place +has +far +reaching +implications +for +the +nature +of +societies +car +production +and +use +has +a +large +number +of +environmental +impacts +it +causes +local +air +pollution +plastic +pollution +and +contributes +to +greenhouse +gas +emissions +and +climate +change +cars +and +vans +caused +of +energy +related +carbon +dioxide +emissions +in +as +of +electric +cars +produce +about +half +the +emissions +over +their +lifetime +as +diesel +and +petrol +cars +this +is +set +to +improve +as +countries +produce +more +of +their +electricity +from +low +carbon +sources +cars +consume +almost +a +quarter +of +world +oil +production +as +of +cities +planned +around +cars +are +often +less +dense +which +leads +to +further +emissions +as +they +are +less +walkable +for +instance +a +growing +demand +for +large +suvs +is +driving +up +emissions +from +cars +cars +are +a +major +cause +of +air +pollution +which +stems +from +exhaust +gas +in +diesel +and +petrol +cars +and +from +dust +from +brakes +tyres +and +road +wear +electric +cars +do +not +produce +tailpipe +emissions +but +are +generally +heavier +and +therefore +produce +slightly +more +particulate +matter +heavy +metals +and +microplastics +from +tyres +are +also +released +into +the +environment +during +production +use +and +at +the +end +of +life +mining +related +to +car +manufacturing +and +oil +spills +both +cause +water +pollution +animals +and +plants +are +often +negatively +affected +by +cars +via +habitat +destruction +and +fragmentation +from +the +road +network +and +pollution +animals +are +also +killed +every +year +on +roads +by +cars +referred +to +as +roadkill +more +recent +road +developments +are +including +significant +environmental +mitigation +in +their +designs +such +as +green +bridges +designed +to +allow +wildlife +crossings +and +creating +wildlife +corridors +governments +use +fiscal +policies +such +as +road +tax +to +discourage +the +purchase +and +use +of +more +polluting +cars +vehicle +emission +standards +ban +the +sale +of +new +highly +pollution +cars +many +countries +plan +to +stop +selling +fossil +cars +altogether +between +and +various +cities +have +implemented +low +emission +zones +banning +old +fossil +fuel +and +amsterdam +is +planning +to +ban +fossil +fuel +cars +completely +some +cities +make +it +easier +for +people +to +choose +other +forms +of +transport +such +as +cycling +many +chinese +cities +limit +licensing +of +fossil +fuel +cars +mass +production +of +personal +motor +vehicles +in +the +united +states +and +other +developed +countries +with +extensive +territories +such +as +australia +argentina +and +france +vastly +increased +individual +and +group +mobility +and +greatly +increased +and +expanded +economic +development +in +urban +suburban +exurban +and +rural +areas +citation +needed +growth +in +the +popularity +of +cars +and +commuting +has +led +to +traffic +congestion +moscow +istanbul +bogotá +mexico +city +and +são +paulo +were +the +world +s +most +congested +cities +in +according +to +inrix +a +data +analytics +company +access +to +cars +in +the +united +states +the +transport +divide +and +car +dependency +resulting +from +domination +of +car +based +transport +systems +presents +barriers +to +employment +in +low +income +neighbourhoods +with +many +low +income +individuals +and +families +forced +to +run +cars +they +cannot +afford +in +order +to +maintain +their +income +dependency +on +automobiles +by +african +americans +may +result +in +exposure +to +the +hazards +of +driving +while +black +and +other +types +of +racial +discrimination +related +to +buying +financing +and +insuring +them +health +impact +further +information +motor +vehicle +pollution +and +pregnancy +air +pollution +from +cars +increases +the +risk +of +lung +cancer +and +heart +disease +it +can +also +harm +pregnancies +more +children +are +born +too +early +or +with +lower +birth +weight +children +are +extra +vulnerable +to +air +pollution +as +their +bodies +are +still +developing +and +air +pollution +in +children +is +linked +to +the +development +of +asthma +childhood +cancer +and +neurocognitive +issues +such +as +autism +the +growth +in +popularity +of +the +car +allowed +cities +to +sprawl +therefore +encouraging +more +travel +by +car +resulting +in +inactivity +and +obesity +which +in +turn +can +lead +to +increased +risk +of +a +variety +of +diseases +when +places +are +designed +around +cars +children +have +fewer +opportunities +to +go +places +by +themselves +and +lose +opportunities +to +become +more +independent +emerging +car +technologies +although +intensive +development +of +conventional +battery +electric +vehicles +is +continuing +into +the +s +other +car +propulsion +technologies +that +are +under +development +include +wireless +charging +hydrogen +cars +and +hydrogen +electric +hybrids +research +into +alternative +forms +of +power +includes +using +ammonia +instead +of +hydrogen +in +fuel +cells +new +materials +which +may +replace +steel +car +bodies +include +aluminium +fiberglass +carbon +fiber +biocomposites +and +carbon +nanotubes +telematics +technology +is +allowing +more +and +more +people +to +share +cars +on +a +pay +as +you +go +basis +through +car +share +and +carpool +schemes +communication +is +also +evolving +due +to +connected +car +systems +open +source +cars +are +not +widespread +fully +autonomous +vehicles +also +known +as +driverless +cars +already +exist +as +robotaxis +but +have +a +long +way +to +go +before +they +are +in +general +use +car +share +arrangements +and +carpooling +are +also +increasingly +popular +in +the +us +and +europe +for +example +in +the +us +some +car +sharing +services +have +experienced +double +digit +growth +in +revenue +and +membership +growth +between +and +services +like +car +sharing +offer +residents +to +share +a +vehicle +rather +than +own +a +car +in +already +congested +neighbourhoods +the +automotive +industry +designs +develops +manufactures +markets +and +sells +the +world +s +motor +vehicles +more +than +three +quarters +of +which +are +cars +in +there +were +million +cars +manufactured +worldwide +down +from +million +the +previous +year +the +automotive +industry +in +china +produces +by +far +the +most +million +in +followed +by +japan +seven +million +then +germany +south +korea +and +india +the +largest +market +is +china +followed +by +the +us +around +the +world +there +are +about +a +billion +cars +on +the +road +they +burn +over +a +trillion +litres +us +gal +imp +gal +of +petrol +and +diesel +fuel +yearly +consuming +about +exajoules +twh +of +energy +the +numbers +of +cars +are +increasing +rapidly +in +china +and +india +in +the +opinion +of +some +urban +transport +systems +based +around +the +car +have +proved +unsustainable +consuming +excessive +energy +affecting +the +health +of +populations +and +delivering +a +declining +level +of +service +despite +increasing +investment +many +of +these +negative +effects +fall +disproportionately +on +those +social +groups +who +are +also +least +likely +to +own +and +drive +cars +the +sustainable +transport +movement +focuses +on +solutions +to +these +problems +the +car +industry +is +also +facing +increasing +competition +from +the +public +transport +sector +as +some +people +re +evaluate +their +private +vehicle +usage +in +july +the +european +commission +introduced +the +fit +for +legislation +package +outlining +crucial +directives +for +the +automotive +sector +s +future +according +to +this +package +by +all +newly +sold +cars +in +the +european +market +must +be +zero +emissions +vehicles +established +alternatives +for +some +aspects +of +car +use +include +public +transport +such +as +busses +trolleybusses +trains +subways +tramways +light +rail +cycling +and +walking +bicycle +sharing +systems +have +been +established +in +china +and +many +european +cities +including +copenhagen +and +amsterdam +similar +programmes +have +been +developed +in +large +us +cities +additional +individual +modes +of +transport +such +as +personal +rapid +transit +could +serve +as +an +alternative +to +cars +if +they +prove +to +be +socially +accepted +a +study +which +checked +the +costs +and +the +benefits +of +introducing +low +traffic +neighbourhood +in +london +found +the +benefits +overpass +the +costs +approximately +by +times +in +the +first +years +and +the +difference +is +growing +over +time +dogs +are +mammals +usually +to +be +kept +as +pets +for +work +on +farms +or +for +the +police +some +dogs +are +trained +to +be +rescue +dogs +and +join +teams +such +as +mountain +rescue +they +have +been +bred +by +humans +from +ancestral +wolves +they +were +the +first +animal +to +live +with +humans +there +was +a +lot +of +different +types +among +wolves +in +the +late +pleistocene +the +dingo +is +also +a +dog +but +many +dingos +have +become +wild +animals +again +and +live +in +the +wild +away +from +humans +parts +of +australia +today +some +dogs +are +used +as +pets +and +others +are +used +to +help +humans +do +their +work +they +are +popular +pets +because +they +are +usually +playful +friendly +loyal +and +listen +to +humans +thirty +million +dogs +in +the +united +states +have +been +registered +as +pets +dogs +eat +both +meat +and +vegetables +often +mixed +together +and +sold +in +stores +as +dog +food +dogs +often +have +jobs +including +police +dogs +army +dogs +assistance +dogs +fire +dogs +messenger +dogs +hunting +dogs +herding +dogs +or +rescue +dogs +they +are +sometimes +called +canines +from +the +latin +word +for +dog +canis +wolves +are +also +canines +a +baby +dog +is +called +a +pup +or +puppy +a +dog +is +called +a +puppy +until +it +is +about +one +year +old +dogs +are +sometimes +known +as +human +s +best +friend +because +they +are +kept +as +pets +are +usually +loyal +and +like +being +around +humans +dogs +like +to +be +petted +but +only +when +they +can +first +see +the +petter +s +hand +before +petting +one +should +never +pet +a +dog +from +behind +august +is +national +dog +day +worldwide +while +march +is +national +puppy +day +in +the +united +states +appearance +and +behaviour +dogs +can +smell +and +hear +better +than +humans +but +cannot +see +well +in +color +because +they +are +color +blind +due +to +the +structure +of +the +eye +dogs +can +see +better +in +low +light +than +humans +they +also +have +a +larger +field +of +vision +like +wolves +wild +dogs +travel +in +groups +called +packs +packs +of +dogs +are +listed +by +rank +and +dogs +with +low +rank +will +submit +to +other +dogs +with +a +higher +rank +the +highest +ranked +dog +is +called +the +alpha +male +a +dog +in +a +group +helps +and +cares +for +others +pet +dogs +often +view +their +owner +as +the +alpha +male +different +dog +breeds +have +different +lifespans +in +general +smaller +dogs +live +longer +than +bigger +ones +the +size +and +the +breed +of +the +dog +change +how +long +the +dog +lives +on +average +breeds +such +as +the +dachshund +usually +live +for +fifteen +years +chihuahuas +can +reach +age +of +twenty +on +the +other +hand +the +great +dane +has +an +average +lifespan +of +six +to +eight +years +some +great +danes +have +lived +for +as +long +as +ten +years +an +american +bulldog +lives +for +around +years +bigger +dogs +will +have +smaller +lives +than +smaller +dogs +because +of +the +pressure +on +its +heart +to +move +around +dogs +are +often +called +man +s +best +friend +because +they +fit +in +with +human +life +dogs +can +serve +people +in +many +ways +for +example +there +are +guard +dogs +hunting +dogs +herding +dogs +guide +dogs +for +blind +people +and +police +dogs +there +are +also +dogs +that +are +trained +to +smell +for +diseases +in +the +human +body +or +to +find +bombs +or +illegal +drugs +these +dogs +sometimes +help +police +in +airports +or +other +areas +sniffer +dogs +usually +beagles +are +sometimes +trained +for +this +job +dogs +have +even +been +sent +by +russians +into +outer +space +a +few +years +before +any +human +being +the +first +dog +sent +up +was +named +laika +but +she +died +within +a +few +hours +there +is +much +more +variety +in +dogs +than +in +cats +that +is +mainly +because +of +the +way +humans +have +selected +and +bred +dogs +for +specific +jobs +and +functions +it +may +also +have +something +to +do +with +the +fact +that +dogs +are +pack +animals +whereas +cats +are +not +one +morning +when +gregor +samsa +woke +from +troubled +dreams +he +found +himself +transformed +in +his +bed +into +a +horrible +vermin +he +lay +on +his +armour +like +back +and +if +he +lifted +his +head +a +little +he +could +see +his +brown +belly +slightly +domed +and +divided +by +arches +into +stiff +sections +the +bedding +was +hardly +able +to +cover +it +and +seemed +ready +to +slide +off +any +moment +his +many +legs +pitifully +thin +compared +with +the +size +of +the +rest +of +him +waved +about +helplessly +as +he +looked +what +s +happened +to +me +he +thought +it +wasn +t +a +dream +his +room +a +proper +human +room +although +a +little +too +small +lay +peacefully +between +its +four +familiar +walls +a +collection +of +textile +samples +lay +spread +out +on +the +table +samsa +was +a +travelling +salesman +and +above +it +there +hung +a +picture +that +he +had +recently +cut +out +of +an +illustrated +magazine +and +housed +in +a +nice +gilded +frame +it +showed +a +lady +fitted +out +with +a +fur +hat +and +fur +boa +who +sat +upright +raising +a +heavy +fur +muff +that +covered +the +whole +of +her +lower +arm +towards +the +viewer +gregor +then +turned +to +look +out +the +window +at +the +dull +weather +drops +of +rain +could +be +heard +hitting +the +pane +which +made +him +feel +quite +sad +how +about +if +i +sleep +a +little +bit +longer +and +forget +all +this +nonsense +he +thought +but +that +was +something +he +was +unable +to +do +because +he +was +used +to +sleeping +on +his +right +and +in +his +present +state +couldn +t +get +into +that +position +however +hard +he +threw +himself +onto +his +right +he +always +rolled +back +to +where +he +was +he +must +have +tried +it +a +hundred +times +shut +his +eyes +so +that +he +wouldn +t +have +to +look +at +the +floundering +legs +and +only +stopped +when +he +began +to +feel +a +mild +dull +pain +there +that +he +had +never +felt +before +oh +god +he +thought +what +a +strenuous +career +it +is +that +i +ve +chosen +travelling +day +in +and +day +out +doing +business +like +this +takes +much +more +effort +than +doing +your +own +business +at +home +and +on +top +of +that +there +s +the +curse +of +travelling +worries +about +making +train +connections +bad +and +irregular +food +contact +with +different +people +all +the +time +so +that +you +can +never +get +to +know +anyone +or +become +friendly +with +them +it +can +all +go +to +hell +he +felt +a +slight +itch +up +on +his +belly +pushed +himself +slowly +up +on +his +back +towards +the +headboard +so +that +he +could +lift +his +head +better +found +where +the +itch +was +and +saw +that +it +was +covered +with +lots +of +little +white +spots +which +he +didn +t +know +what +to +make +of +and +when +he +tried +to +feel +the +place +with +one +of +his +legs +he +drew +it +quickly +back +because +as +soon +as +he +touched +it +he +was +overcome +by +a +cold +shudder +he +slid +back +into +his +former +position +getting +up +early +all +the +time +he +thought +it +makes +you +stupid +you +ve +got +to +get +enough +sleep +other +travelling +salesmen +live +a +life +of +luxury +for +instance +whenever +i +go +back +to +the +guest +house +during +the +morning +to +copy +out +the +contract +these +gentlemen +are +always +still +sitting +there +eating +their +breakfasts +i +ought +to +just +try +that +with +my +boss +i +d +get +kicked +out +on +the +spot +but +who +knows +maybe +that +would +be +the +best +thing +for +me +if +i +didn +t +have +my +parents +to +think +about +i +d +have +given +in +my +notice +a +long +time +ago +i +d +have +gone +up +to +the +boss +and +told +him +just +what +i +think +tell +him +everything +i +would +let +him +know +just +what +i +feel +he +d +fall +right +off +his +desk +and +it +s +a +funny +sort +of +business +to +be +sitting +up +there +at +your +desk +talking +down +at +your +subordinates +from +up +there +especially +when +you +have +to +go +right +up +close +because +the +boss +is +hard +of +hearing +well +there +s +still +some +hope +once +i +ve +got +the +money +together +to +pay +off +my +parents +debt +to +him +another +five +or +six +years +i +suppose +that +s +definitely +what +i +ll +do +that +s +when +i +ll +make +the +big +change +first +of +all +though +i +ve +got +to +get +up +my +train +leaves +at +five +and +he +looked +over +at +the +alarm +clock +ticking +on +the +chest +of +drawers +god +in +heaven +he +thought +it +was +half +past +six +and +the +hands +were +quietly +moving +forwards +it +was +even +later +than +half +past +more +like +quarter +to +seven +had +the +alarm +clock +not +rung +he +could +see +from +the +bed +that +it +had +been +set +for +four +o +clock +as +it +should +have +been +it +certainly +must +have +rung +yes +but +was +it +possible +to +quietly +sleep +through +that +furniture +rattling +noise +true +he +had +not +slept +peacefully +but +probably +all +the +more +deeply +because +of +that +what +should +he +do +now +the +next +train +went +at +seven +if +he +were +to +catch +that +he +would +have +to +rush +like +mad +and +the +collection +of +samples +was +still +not +packed +and +he +did +not +at +all +feel +particularly +fresh +and +lively +and +even +if +he +did +catch +the +train +he +would +not +avoid +his +boss +s +anger +as +the +office +assistant +would +have +been +there +to +see +the +five +o +clock +train +go +he +would +have +put +in +his +report +about +gregor +s +not +being +there +a +long +time +ago +the +office +assistant +was +the +boss +s +man +spineless +and +with +no +understanding +what +about +if +he +reported +sick +but +that +would +be +extremely +strained +and +suspicious +as +in +fifteen +years +of +service +gregor +had +never +once +yet +been +ill +his +boss +would +certainly +come +round +with +the +doctor +from +the +medical +insurance +company +accuse +his +parents +of +having +a +lazy +son +and +accept +the +doctor +s +recommendation +not +to +make +any +claim +as +the +doctor +believed +that +no +one +was +ever +ill +but +that +many +were +workshy +and +what +s +more +would +he +have +been +entirely +wrong +in +this +case +gregor +did +in +fact +apart +from +excessive +sleepiness +after +sleeping +for +so +long +feel +completely +well +and +even +felt +much +hungrier +than +usual +he +was +still +hurriedly +thinking +all +this +through +unable +to +decide +to +get +out +of +the +bed +when +the +clock +struck +quarter +to +seven +there +was +a +cautious +knock +at +the +door +near +his +head +gregor +somebody +called +it +was +his +mother +it +s +quarter +to +seven +didn +t +you +want +to +go +somewhere +that +gentle +voice +gregor +was +shocked +when +he +heard +his +own +voice +answering +it +could +hardly +be +recognised +as +the +voice +he +had +had +before +as +if +from +deep +inside +him +there +was +a +painful +and +uncontrollable +squeaking +mixed +in +with +it +the +words +could +be +made +out +at +first +but +then +there +was +a +sort +of +echo +which +made +them +unclear +leaving +the +hearer +unsure +whether +he +had +heard +properly +or +not +gregor +had +wanted +to +give +a +full +answer +and +explain +everything +but +in +the +circumstances +contented +himself +with +saying +yes +mother +yes +thank +you +i +m +getting +up +now +the +change +in +gregor +s +voice +probably +could +not +be +noticed +outside +through +the +wooden +door +as +his +mother +was +satisfied +with +this +explanation +and +shuffled +away +but +this +short +conversation +made +the +other +members +of +the +family +aware +that +gregor +against +their +expectations +was +still +at +home +and +soon +his +father +came +knocking +at +one +of +the +side +doors +gently +but +with +his +fist +gregor +gregor +he +called +what +s +wrong +and +after +a +short +while +he +called +again +with +a +warning +deepness +in +his +voice +gregor +gregor +at +the +other +side +door +his +sister +came +plaintively +gregor +aren +t +you +well +do +you +need +anything +gregor +answered +to +both +sides +i +m +ready +now +making +an +effort +to +remove +all +the +strangeness +from +his +voice +by +enunciating +very +carefully +and +putting +long +pauses +between +each +individual +word +his +father +went +back +to +his +breakfast +but +his +sister +whispered +gregor +open +the +door +i +beg +of +you +gregor +however +had +no +thought +of +opening +the +door +and +instead +congratulated +himself +for +his +cautious +habit +acquired +from +his +travelling +of +locking +all +doors +at +night +even +when +he +was +at +home +the +first +thing +he +wanted +to +do +was +to +get +up +in +peace +without +being +disturbed +to +get +dressed +and +most +of +all +to +have +his +breakfast +only +then +would +he +consider +what +to +do +next +as +he +was +well +aware +that +he +would +not +bring +his +thoughts +to +any +sensible +conclusions +by +lying +in +bed +he +remembered +that +he +had +often +felt +a +slight +pain +in +bed +perhaps +caused +by +lying +awkwardly +but +that +had +always +turned +out +to +be +pure +imagination +and +he +wondered +how +his +imaginings +would +slowly +resolve +themselves +today +he +did +not +have +the +slightest +doubt +that +the +change +in +his +voice +was +nothing +more +than +the +first +sign +of +a +serious +cold +which +was +an +occupational +hazard +for +travelling +salesmen +it +was +a +simple +matter +to +throw +off +the +covers +he +only +had +to +blow +himself +up +a +little +and +they +fell +off +by +themselves +but +it +became +difficult +after +that +especially +as +he +was +so +exceptionally +broad +he +would +have +used +his +arms +and +his +hands +to +push +himself +up +but +instead +of +them +he +only +had +all +those +little +legs +continuously +moving +in +different +directions +and +which +he +was +moreover +unable +to +control +if +he +wanted +to +bend +one +of +them +then +that +was +the +first +one +that +would +stretch +itself +out +and +if +he +finally +managed +to +do +what +he +wanted +with +that +leg +all +the +others +seemed +to +be +set +free +and +would +move +about +painfully +this +is +something +that +can +t +be +done +in +bed +gregor +said +to +himself +so +don +t +keep +trying +to +do +it +the +first +thing +he +wanted +to +do +was +get +the +lower +part +of +his +body +out +of +the +bed +but +he +had +never +seen +this +lower +part +and +could +not +imagine +what +it +looked +like +it +turned +out +to +be +too +hard +to +move +it +went +so +slowly +and +finally +almost +in +a +frenzy +when +he +carelessly +shoved +himself +forwards +with +all +the +force +he +could +gather +he +chose +the +wrong +direction +hit +hard +against +the +lower +bedpost +and +learned +from +the +burning +pain +he +felt +that +the +lower +part +of +his +body +might +well +at +present +be +the +most +sensitive +so +then +he +tried +to +get +the +top +part +of +his +body +out +of +the +bed +first +carefully +turning +his +head +to +the +side +this +he +managed +quite +easily +and +despite +its +breadth +and +its +weight +the +bulk +of +his +body +eventually +followed +slowly +in +the +direction +of +the +head +but +when +he +had +at +last +got +his +head +out +of +the +bed +and +into +the +fresh +air +it +occurred +to +him +that +if +he +let +himself +fall +it +would +be +a +miracle +if +his +head +were +not +injured +so +he +became +afraid +to +carry +on +pushing +himself +forward +the +same +way +and +he +could +not +knock +himself +out +now +at +any +price +better +to +stay +in +bed +than +lose +consciousness +it +took +just +as +much +effort +to +get +back +to +where +he +had +been +earlier +but +when +he +lay +there +sighing +and +was +once +more +watching +his +legs +as +they +struggled +against +each +other +even +harder +than +before +if +that +was +possible +he +could +think +of +no +way +of +bringing +peace +and +order +to +this +chaos +he +told +himself +once +more +that +it +was +not +possible +for +him +to +stay +in +bed +and +that +the +most +sensible +thing +to +do +would +be +to +get +free +of +it +in +whatever +way +he +could +at +whatever +sacrifice +at +the +same +time +though +he +did +not +forget +to +remind +himself +that +calm +consideration +was +much +better +than +rushing +to +desperate +conclusions +at +times +like +this +he +would +direct +his +eyes +to +the +window +and +look +out +as +clearly +as +he +could +but +unfortunately +even +the +other +side +of +the +narrow +street +was +enveloped +in +morning +fog +and +the +view +had +little +confidence +or +cheer +to +offer +him +seven +o +clock +already +he +said +to +himself +when +the +clock +struck +again +seven +o +clock +and +there +s +still +a +fog +like +this +and +he +lay +there +quietly +a +while +longer +breathing +lightly +as +if +he +perhaps +expected +the +total +stillness +to +bring +things +back +to +their +real +and +natural +state +but +then +he +said +to +himself +before +it +strikes +quarter +past +seven +i +ll +definitely +have +to +have +got +properly +out +of +bed +and +by +then +somebody +will +have +come +round +from +work +to +ask +what +s +happened +to +me +as +well +as +they +open +up +at +work +before +seven +o +clock +and +so +he +set +himself +to +the +task +of +swinging +the +entire +length +of +his +body +out +of +the +bed +all +at +the +same +time +if +he +succeeded +in +falling +out +of +bed +in +this +way +and +kept +his +head +raised +as +he +did +so +he +could +probably +avoid +injuring +it +his +back +seemed +to +be +quite +hard +and +probably +nothing +would +happen +to +it +falling +onto +the +carpet +his +main +concern +was +for +the +loud +noise +he +was +bound +to +make +and +which +even +through +all +the +doors +would +probably +raise +concern +if +not +alarm +but +it +was +something +that +had +to +be +risked +when +gregor +was +already +sticking +half +way +out +of +the +bed +the +new +method +was +more +of +a +game +than +an +effort +all +he +had +to +do +was +rock +back +and +forth +it +occurred +to +him +how +simple +everything +would +be +if +somebody +came +to +help +him +two +strong +people +he +had +his +father +and +the +maid +in +mind +would +have +been +more +than +enough +they +would +only +have +to +push +their +arms +under +the +dome +of +his +back +peel +him +away +from +the +bed +bend +down +with +the +load +and +then +be +patient +and +careful +as +he +swang +over +onto +the +floor +where +hopefully +the +little +legs +would +find +a +use +should +he +really +call +for +help +though +even +apart +from +the +fact +that +all +the +doors +were +locked +despite +all +the +difficulty +he +was +in +he +could +not +suppress +a +smile +at +this +thought +after +a +while +he +had +already +moved +so +far +across +that +it +would +have +been +hard +for +him +to +keep +his +balance +if +he +rocked +too +hard +the +time +was +now +ten +past +seven +and +he +would +have +to +make +a +final +decision +very +soon +then +there +was +a +ring +at +the +door +of +the +flat +that +ll +be +someone +from +work +he +said +to +himself +and +froze +very +still +although +his +little +legs +only +became +all +the +more +lively +as +they +danced +around +for +a +moment +everything +remained +quiet +they +re +not +opening +the +door +gregor +said +to +himself +caught +in +some +nonsensical +hope +but +then +of +course +the +maid +s +firm +steps +went +to +the +door +as +ever +and +opened +it +gregor +only +needed +to +hear +the +visitor +s +first +words +of +greeting +and +he +knew +who +it +was +the +chief +clerk +himself +why +did +gregor +have +to +be +the +only +one +condemned +to +work +for +a +company +where +they +immediately +became +highly +suspicious +at +the +slightest +shortcoming +were +all +employees +every +one +of +them +louts +was +there +not +one +of +them +who +was +faithful +and +devoted +who +would +go +so +mad +with +pangs +of +conscience +that +he +couldn +t +get +out +of +bed +if +he +didn +t +spend +at +least +a +couple +of +hours +in +the +morning +on +company +business +was +it +really +not +enough +to +let +one +of +the +trainees +make +enquiries +assuming +enquiries +were +even +necessary +did +the +chief +clerk +have +to +come +himself +and +did +they +have +to +show +the +whole +innocent +family +that +this +was +so +suspicious +that +only +the +chief +clerk +could +be +trusted +to +have +the +wisdom +to +investigate +it +and +more +because +these +thoughts +had +made +him +upset +than +through +any +proper +decision +he +swang +himself +with +all +his +force +out +of +the +bed +there +was +a +loud +thump +but +it +wasn +t +really +a +loud +noise +his +fall +was +softened +a +little +by +the +carpet +and +gregor +s +back +was +also +more +elastic +than +he +had +thought +which +made +the +sound +muffled +and +not +too +noticeable +he +had +not +held +his +head +carefully +enough +though +and +hit +it +as +he +fell +annoyed +and +in +pain +he +turned +it +and +rubbed +it +against +the +carpet +something +s +fallen +down +in +there +said +the +chief +clerk +in +the +room +on +the +left +gregor +tried +to +imagine +whether +something +of +the +sort +that +had +happened +to +him +today +could +ever +happen +to +the +chief +clerk +too +you +had +to +concede +that +it +was +possible +but +as +if +in +gruff +reply +to +this +question +the +chief +clerk +s +firm +footsteps +in +his +highly +polished +boots +could +now +be +heard +in +the +adjoining +room +from +the +room +on +his +right +gregor +s +sister +whispered +to +him +to +let +him +know +gregor +the +chief +clerk +is +here +yes +i +know +said +gregor +to +himself +but +without +daring +to +raise +his +voice +loud +enough +for +his +sister +to +hear +him +gregor +said +his +father +now +from +the +room +to +his +left +the +chief +clerk +has +come +round +and +wants +to +know +why +you +didn +t +leave +on +the +early +train +we +don +t +know +what +to +say +to +him +and +anyway +he +wants +to +speak +to +you +personally +so +please +open +up +this +door +i +m +sure +he +ll +be +good +enough +to +forgive +the +untidiness +of +your +room +then +the +chief +clerk +called +good +morning +mr +samsa +he +isn +t +well +said +his +mother +to +the +chief +clerk +while +his +father +continued +to +speak +through +the +door +he +isn +t +well +please +believe +me +why +else +would +gregor +have +missed +a +train +the +lad +only +ever +thinks +about +the +business +it +nearly +makes +me +cross +the +way +he +never +goes +out +in +the +evenings +he +s +been +in +town +for +a +week +now +but +stayed +home +every +evening +he +sits +with +us +in +the +kitchen +and +just +reads +the +paper +or +studies +train +timetables +his +idea +of +relaxation +is +working +with +his +fretsaw +he +s +made +a +little +frame +for +instance +it +only +took +him +two +or +three +evenings +you +ll +be +amazed +how +nice +it +is +it +s +hanging +up +in +his +room +you +ll +see +it +as +soon +as +gregor +opens +the +door +anyway +i +m +glad +you +re +here +we +wouldn +t +have +been +able +to +get +gregor +to +open +the +door +by +ourselves +he +s +so +stubborn +and +i +m +sure +he +isn +t +well +he +said +this +morning +that +he +is +but +he +isn +t +i +ll +be +there +in +a +moment +said +gregor +slowly +and +thoughtfully +but +without +moving +so +that +he +would +not +miss +any +word +of +the +conversation +well +i +can +t +think +of +any +other +way +of +explaining +it +mrs +samsa +said +the +chief +clerk +i +hope +it +s +nothing +serious +but +on +the +other +hand +i +must +say +that +if +we +people +in +commerce +ever +become +slightly +unwell +then +fortunately +or +unfortunately +as +you +like +we +simply +have +to +overcome +it +because +of +business +considerations +can +the +chief +clerk +come +in +to +see +you +now +then +asked +his +father +impatiently +knocking +at +the +door +again +no +said +gregor +in +the +room +on +his +right +there +followed +a +painful +silence +in +the +room +on +his +left +his +sister +began +to +cry +so +why +did +his +sister +not +go +and +join +the +others +she +had +probably +only +just +got +up +and +had +not +even +begun +to +get +dressed +and +why +was +she +crying +was +it +because +he +had +not +got +up +and +had +not +let +the +chief +clerk +in +because +he +was +in +danger +of +losing +his +job +and +if +that +happened +his +boss +would +once +more +pursue +their +parents +with +the +same +demands +as +before +there +was +no +need +to +worry +about +things +like +that +yet +gregor +was +still +there +and +had +not +the +slightest +intention +of +abandoning +his +family +for +the +time +being +he +just +lay +there +on +the +carpet +and +no +one +who +knew +the +condition +he +was +in +would +seriously +have +expected +him +to +let +the +chief +clerk +in +it +was +only +a +minor +discourtesy +and +a +suitable +excuse +could +easily +be +found +for +it +later +on +it +was +not +something +for +which +gregor +could +be +sacked +on +the +spot +and +it +seemed +to +gregor +much +more +sensible +to +leave +him +now +in +peace +instead +of +disturbing +him +with +talking +at +him +and +crying +but +the +others +didn +t +know +what +was +happening +they +were +worried +that +would +excuse +their +behaviour +the +chief +clerk +now +raised +his +voice +mr +samsa +he +called +to +him +what +is +wrong +you +barricade +yourself +in +your +room +give +us +no +more +than +yes +or +no +for +an +answer +you +are +causing +serious +and +unnecessary +concern +to +your +parents +and +you +fail +and +i +mention +this +just +by +the +way +you +fail +to +carry +out +your +business +duties +in +a +way +that +is +quite +unheard +of +i +m +speaking +here +on +behalf +of +your +parents +and +of +your +employer +and +really +must +request +a +clear +and +immediate +explanation +i +am +astonished +quite +astonished +i +thought +i +knew +you +as +a +calm +and +sensible +person +and +now +you +suddenly +seem +to +be +showing +off +with +peculiar +whims +this +morning +your +employer +did +suggest +a +possible +reason +for +your +failure +to +appear +it +s +true +it +had +to +do +with +the +money +that +was +recently +entrusted +to +you +but +i +came +near +to +giving +him +my +word +of +honour +that +that +could +not +be +the +right +explanation +but +now +that +i +see +your +incomprehensible +stubbornness +i +no +longer +feel +any +wish +whatsoever +to +intercede +on +your +behalf +and +nor +is +your +position +all +that +secure +i +had +originally +intended +to +say +all +this +to +you +in +private +but +since +you +cause +me +to +waste +my +time +here +for +no +good +reason +i +don +t +see +why +your +parents +should +not +also +learn +of +it +your +turnover +has +been +very +unsatisfactory +of +late +i +grant +you +that +it +s +not +the +time +of +year +to +do +especially +good +business +we +recognise +that +but +there +simply +is +no +time +of +year +to +do +no +business +at +all +mr +samsa +we +cannot +allow +there +to +be +but +sir +called +gregor +beside +himself +and +forgetting +all +else +in +the +excitement +i +ll +open +up +immediately +just +a +moment +i +m +slightly +unwell +an +attack +of +dizziness +i +haven +t +been +able +to +get +up +i +m +still +in +bed +now +i +m +quite +fresh +again +now +though +i +m +just +getting +out +of +bed +just +a +moment +be +patient +it +s +not +quite +as +easy +as +i +d +thought +i +m +quite +alright +now +though +it +s +shocking +what +can +suddenly +happen +to +a +person +i +was +quite +alright +last +night +my +parents +know +about +it +perhaps +better +than +me +i +had +a +small +symptom +of +it +last +night +already +they +must +have +noticed +it +i +don +t +know +why +i +didn +t +let +you +know +at +work +but +you +always +think +you +can +get +over +an +illness +without +staying +at +home +please +don +t +make +my +parents +suffer +there +s +no +basis +for +any +of +the +accusations +you +re +making +nobody +s +ever +said +a +word +to +me +about +any +of +these +things +maybe +you +haven +t +read +the +latest +contracts +i +sent +in +i +ll +set +off +with +the +eight +o +clock +train +as +well +these +few +hours +of +rest +have +given +me +strength +you +don +t +need +to +wait +sir +i +ll +be +in +the +office +soon +after +you +and +please +be +so +good +as +to +tell +that +to +the +boss +and +recommend +me +to +him +and +while +gregor +gushed +out +these +words +hardly +knowing +what +he +was +saying +he +made +his +way +over +to +the +chest +of +drawers +this +was +easily +done +probably +because +of +the +practise +he +had +already +had +in +bed +where +he +now +tried +to +get +himself +upright +he +really +did +want +to +open +the +door +really +did +want +to +let +them +see +him +and +to +speak +with +the +chief +clerk +the +others +were +being +so +insistent +and +he +was +curious +to +learn +what +they +would +say +when +they +caught +sight +of +him +if +they +were +shocked +then +it +would +no +longer +be +gregor +s +responsibility +and +he +could +rest +if +however +they +took +everything +calmly +he +would +still +have +no +reason +to +be +upset +and +if +he +hurried +he +really +could +be +at +the +station +for +eight +o +clock +the +first +few +times +he +tried +to +climb +up +on +the +smooth +chest +of +drawers +he +just +slid +down +again +but +he +finally +gave +himself +one +last +swing +and +stood +there +upright +the +lower +part +of +his +body +was +in +serious +pain +but +he +no +longer +gave +any +attention +to +it +now +he +let +himself +fall +against +the +back +of +a +nearby +chair +and +held +tightly +to +the +edges +of +it +with +his +little +legs +by +now +he +had +also +calmed +down +and +kept +quiet +so +that +he +could +listen +to +what +the +chief +clerk +was +saying +did +you +understand +a +word +of +all +that +the +chief +clerk +asked +his +parents +surely +he +s +not +trying +to +make +fools +of +us +oh +god +called +his +mother +who +was +already +in +tears +he +could +be +seriously +ill +and +we +re +making +him +suffer +grete +grete +she +then +cried +mother +his +sister +called +from +the +other +side +they +communicated +across +gregor +s +room +you +ll +have +to +go +for +the +doctor +straight +away +gregor +is +ill +quick +get +the +doctor +did +you +hear +the +way +gregor +spoke +just +now +that +was +the +voice +of +an +animal +said +the +chief +clerk +with +a +calmness +that +was +in +contrast +with +his +mother +s +screams +anna +anna +his +father +called +into +the +kitchen +through +the +entrance +hall +clapping +his +hands +get +a +locksmith +here +now +and +the +two +girls +their +skirts +swishing +immediately +ran +out +through +the +hall +wrenching +open +the +front +door +of +the +flat +as +they +went +how +had +his +sister +managed +to +get +dressed +so +quickly +there +was +no +sound +of +the +door +banging +shut +again +they +must +have +left +it +open +people +often +do +in +homes +where +something +awful +has +happened +gregor +in +contrast +had +become +much +calmer +so +they +couldn +t +understand +his +words +any +more +although +they +seemed +clear +enough +to +him +clearer +than +before +perhaps +his +ears +had +become +used +to +the +sound +they +had +realised +though +that +there +was +something +wrong +with +him +and +were +ready +to +help +the +first +response +to +his +situation +had +been +confident +and +wise +and +that +made +him +feel +better +he +felt +that +he +had +been +drawn +back +in +among +people +and +from +the +doctor +and +the +locksmith +he +expected +great +and +surprising +achievements +although +he +did +not +really +distinguish +one +from +the +other +whatever +was +said +next +would +be +crucial +so +in +order +to +make +his +voice +as +clear +as +possible +he +coughed +a +little +but +taking +care +to +do +this +not +too +loudly +as +even +this +might +well +sound +different +from +the +way +that +a +human +coughs +and +he +was +no +longer +sure +he +could +judge +this +for +himself +meanwhile +it +had +become +very +quiet +in +the +next +room +perhaps +his +parents +were +sat +at +the +table +whispering +with +the +chief +clerk +or +perhaps +they +were +all +pressed +against +the +door +and +listening +gregor +slowly +pushed +his +way +over +to +the +door +with +the +chair +once +there +he +let +go +of +it +and +threw +himself +onto +the +door +holding +himself +upright +against +it +using +the +adhesive +on +the +tips +of +his +legs +he +rested +there +a +little +while +to +recover +from +the +effort +involved +and +then +set +himself +to +the +task +of +turning +the +key +in +the +lock +with +his +mouth +he +seemed +unfortunately +to +have +no +proper +teeth +how +was +he +then +to +grasp +the +key +but +the +lack +of +teeth +was +of +course +made +up +for +with +a +very +strong +jaw +using +the +jaw +he +really +was +able +to +start +the +key +turning +ignoring +the +fact +that +he +must +have +been +causing +some +kind +of +damage +as +a +brown +fluid +came +from +his +mouth +flowed +over +the +key +and +dripped +onto +the +floor +listen +said +the +chief +clerk +in +the +next +room +he +s +turning +the +key +gregor +was +greatly +encouraged +by +this +but +they +all +should +have +been +calling +to +him +his +father +and +his +mother +too +well +done +gregor +they +should +have +cried +keep +at +it +keep +hold +of +the +lock +and +with +the +idea +that +they +were +all +excitedly +following +his +efforts +he +bit +on +the +key +with +all +his +strength +paying +no +attention +to +the +pain +he +was +causing +himself +as +the +key +turned +round +he +turned +around +the +lock +with +it +only +holding +himself +upright +with +his +mouth +and +hung +onto +the +key +or +pushed +it +down +again +with +the +whole +weight +of +his +body +as +needed +the +clear +sound +of +the +lock +as +it +snapped +back +was +gregor +s +sign +that +he +could +break +his +concentration +and +as +he +regained +his +breath +he +said +to +himself +so +i +didn +t +need +the +locksmith +after +all +then +he +lay +his +head +on +the +handle +of +the +door +to +open +it +completely +because +he +had +to +open +the +door +in +this +way +it +was +already +wide +open +before +he +could +be +seen +he +had +first +to +slowly +turn +himself +around +one +of +the +double +doors +and +he +had +to +do +it +very +carefully +if +he +did +not +want +to +fall +flat +on +his +back +before +entering +the +room +he +was +still +occupied +with +this +difficult +movement +unable +to +pay +attention +to +anything +else +when +he +heard +the +chief +clerk +exclaim +a +loud +oh +which +sounded +like +the +soughing +of +the +wind +now +he +also +saw +him +he +was +the +nearest +to +the +door +his +hand +pressed +against +his +open +mouth +and +slowly +retreating +as +if +driven +by +a +steady +and +invisible +force +gregor +s +mother +her +hair +still +dishevelled +from +bed +despite +the +chief +clerk +s +being +there +looked +at +his +father +then +she +unfolded +her +arms +took +two +steps +forward +towards +gregor +and +sank +down +onto +the +floor +into +her +skirts +that +spread +themselves +out +around +her +as +her +head +disappeared +down +onto +her +breast +his +father +looked +hostile +and +clenched +his +fists +as +if +wanting +to +knock +gregor +back +into +his +room +then +he +looked +uncertainly +round +the +living +room +covered +his +eyes +with +his +hands +and +wept +so +that +his +powerful +chest +shook +so +gregor +did +not +go +into +the +room +but +leant +against +the +inside +of +the +other +door +which +was +still +held +bolted +in +place +in +this +way +only +half +of +his +body +could +be +seen +along +with +his +head +above +it +which +he +leant +over +to +one +side +as +he +peered +out +at +the +others +meanwhile +the +day +had +become +much +lighter +part +of +the +endless +grey +black +building +on +the +other +side +of +the +street +which +was +a +hospital +could +be +seen +quite +clearly +with +the +austere +and +regular +line +of +windows +piercing +its +facade +the +rain +was +still +falling +now +throwing +down +large +individual +droplets +which +hit +the +ground +one +at +a +time +the +washing +up +from +breakfast +lay +on +the +table +there +was +so +much +of +it +because +for +gregor +s +father +breakfast +was +the +most +important +meal +of +the +day +and +he +would +stretch +it +out +for +several +hours +as +he +sat +reading +a +number +of +different +newspapers +on +the +wall +exactly +opposite +there +was +photograph +of +gregor +when +he +was +a +lieutenant +in +the +army +his +sword +in +his +hand +and +a +carefree +smile +on +his +face +as +he +called +forth +respect +for +his +uniform +and +bearing +the +door +to +the +entrance +hall +was +open +and +as +the +front +door +of +the +flat +was +also +open +he +could +see +onto +the +landing +and +the +stairs +where +they +began +their +way +down +below +now +then +said +gregor +well +aware +that +he +was +the +only +one +to +have +kept +calm +i +ll +get +dressed +straight +away +now +pack +up +my +samples +and +set +off +will +you +please +just +let +me +leave +you +can +see +he +said +to +the +chief +clerk +that +i +m +not +stubborn +and +like +i +like +to +do +my +job +being +a +commercial +traveller +is +arduous +but +without +travelling +i +couldn +t +earn +my +living +so +where +are +you +going +in +to +the +office +yes +will +you +report +everything +accurately +then +it +s +quite +possible +for +someone +to +be +temporarily +unable +to +work +but +that +s +just +the +right +time +to +remember +what +s +been +achieved +in +the +past +and +consider +that +later +on +once +the +difficulty +has +been +removed +he +will +certainly +work +with +all +the +more +diligence +and +concentration +you +re +well +aware +that +i +m +seriously +in +debt +to +our +employer +as +well +as +having +to +look +after +my +parents +and +my +sister +so +that +i +m +trapped +in +a +difficult +situation +but +i +will +work +my +way +out +of +it +again +please +don +t +make +things +any +harder +for +me +than +they +are +already +and +don +t +take +sides +against +me +at +the +office +i +know +that +nobody +likes +the +travellers +they +think +we +earn +an +enormous +wage +as +well +as +having +a +soft +time +of +it +that +s +just +prejudice +but +they +have +no +particular +reason +to +think +better +it +but +you +sir +you +have +a +better +overview +than +the +rest +of +the +staff +in +fact +if +i +can +say +this +in +confidence +a +better +overview +than +the +boss +himself +it +s +very +easy +for +a +businessman +like +him +to +make +mistakes +about +his +employees +and +judge +them +more +harshly +than +he +should +and +you +re +also +well +aware +that +we +travellers +spend +almost +the +whole +year +away +from +the +office +so +that +we +can +very +easily +fall +victim +to +gossip +and +chance +and +groundless +complaints +and +it +s +almost +impossible +to +defend +yourself +from +that +sort +of +thing +we +don +t +usually +even +hear +about +them +or +if +at +all +it +s +when +we +arrive +back +home +exhausted +from +a +trip +and +that +s +when +we +feel +the +harmful +effects +of +what +s +been +going +on +without +even +knowing +what +caused +them +please +don +t +go +away +at +least +first +say +something +to +show +that +you +grant +that +i +m +at +least +partly +right +but +the +chief +clerk +had +turned +away +as +soon +as +gregor +had +started +to +speak +and +with +protruding +lips +only +stared +back +at +him +over +his +trembling +shoulders +as +he +left +he +did +not +keep +still +for +a +moment +while +gregor +was +speaking +but +moved +steadily +towards +the +door +without +taking +his +eyes +off +him +he +moved +very +gradually +as +if +there +had +been +some +secret +prohibition +on +leaving +the +room +it +was +only +when +he +had +reached +the +entrance +hall +that +he +made +a +sudden +movement +drew +his +foot +from +the +living +room +and +rushed +forward +in +a +panic +in +the +hall +he +stretched +his +right +hand +far +out +towards +the +stairway +as +if +out +there +there +were +some +supernatural +force +waiting +to +save +him +gregor +realised +that +it +was +out +of +the +question +to +let +the +chief +clerk +go +away +in +this +mood +if +his +position +in +the +firm +was +not +to +be +put +into +extreme +danger +that +was +something +his +parents +did +not +understand +very +well +over +the +years +they +had +become +convinced +that +this +job +would +provide +for +gregor +for +his +entire +life +and +besides +they +had +so +much +to +worry +about +at +present +that +they +had +lost +sight +of +any +thought +for +the +future +gregor +though +did +think +about +the +future +the +chief +clerk +had +to +be +held +back +calmed +down +convinced +and +finally +won +over +the +future +of +gregor +and +his +family +depended +on +it +if +only +his +sister +were +here +she +was +clever +she +was +already +in +tears +while +gregor +was +still +lying +peacefully +on +his +back +and +the +chief +clerk +was +a +lover +of +women +surely +she +could +persuade +him +she +would +close +the +front +door +in +the +entrance +hall +and +talk +him +out +of +his +shocked +state +but +his +sister +was +not +there +gregor +would +have +to +do +the +job +himself +and +without +considering +that +he +still +was +not +familiar +with +how +well +he +could +move +about +in +his +present +state +or +that +his +speech +still +might +not +or +probably +would +not +be +understood +he +let +go +of +the +door +pushed +himself +through +the +opening +tried +to +reach +the +chief +clerk +on +the +landing +who +ridiculously +was +holding +on +to +the +banister +with +both +hands +but +gregor +fell +immediately +over +and +with +a +little +scream +as +he +sought +something +to +hold +onto +landed +on +his +numerous +little +legs +hardly +had +that +happened +than +for +the +first +time +that +day +he +began +to +feel +alright +with +his +body +the +little +legs +had +the +solid +ground +under +them +to +his +pleasure +they +did +exactly +as +he +told +them +they +were +even +making +the +effort +to +carry +him +where +he +wanted +to +go +and +he +was +soon +believing +that +all +his +sorrows +would +soon +be +finally +at +an +end +he +held +back +the +urge +to +move +but +swayed +from +side +to +side +as +he +crouched +there +on +the +floor +his +mother +was +not +far +away +in +front +of +him +and +seemed +at +first +quite +engrossed +in +herself +but +then +she +suddenly +jumped +up +with +her +arms +outstretched +and +her +fingers +spread +shouting +help +for +pity +s +sake +help +the +way +she +held +her +head +suggested +she +wanted +to +see +gregor +better +but +the +unthinking +way +she +was +hurrying +backwards +showed +that +she +did +not +she +had +forgotten +that +the +table +was +behind +her +with +all +the +breakfast +things +on +it +when +she +reached +the +table +she +sat +quickly +down +on +it +without +knowing +what +she +was +doing +without +even +seeming +to +notice +that +the +coffee +pot +had +been +knocked +over +and +a +gush +of +coffee +was +pouring +down +onto +the +carpet +mother +mother +said +gregor +gently +looking +up +at +her +he +had +completely +forgotten +the +chief +clerk +for +the +moment +but +could +not +help +himself +snapping +in +the +air +with +his +jaws +at +the +sight +of +the +flow +of +coffee +that +set +his +mother +screaming +anew +she +fled +from +the +table +and +into +the +arms +of +his +father +as +he +rushed +towards +her +gregor +though +had +no +time +to +spare +for +his +parents +now +the +chief +clerk +had +already +reached +the +stairs +with +his +chin +on +the +banister +he +looked +back +for +the +last +time +gregor +made +a +run +for +him +he +wanted +to +be +sure +of +reaching +him +the +chief +clerk +must +have +expected +something +as +he +leapt +down +several +steps +at +once +and +disappeared +his +shouts +resounding +all +around +the +staircase +the +flight +of +the +chief +clerk +seemed +unfortunately +to +put +gregor +s +father +into +a +panic +as +well +until +then +he +had +been +relatively +self +controlled +but +now +instead +of +running +after +the +chief +clerk +himself +or +at +least +not +impeding +gregor +as +he +ran +after +him +gregor +s +father +seized +the +chief +clerk +s +stick +in +his +right +hand +the +chief +clerk +had +left +it +behind +on +a +chair +along +with +his +hat +and +overcoat +picked +up +a +large +newspaper +from +the +table +with +his +left +and +used +them +to +drive +gregor +back +into +his +room +stamping +his +foot +at +him +as +he +went +gregor +s +appeals +to +his +father +were +of +no +help +his +appeals +were +simply +not +understood +however +much +he +humbly +turned +his +head +his +father +merely +stamped +his +foot +all +the +harder +across +the +room +despite +the +chilly +weather +gregor +s +mother +had +pulled +open +a +window +leant +far +out +of +it +and +pressed +her +hands +to +her +face +a +strong +draught +of +air +flew +in +from +the +street +towards +the +stairway +the +curtains +flew +up +the +newspapers +on +the +table +fluttered +and +some +of +them +were +blown +onto +the +floor +nothing +would +stop +gregor +s +father +as +he +drove +him +back +making +hissing +noises +at +him +like +a +wild +man +gregor +had +never +had +any +practice +in +moving +backwards +and +was +only +able +to +go +very +slowly +if +gregor +had +only +been +allowed +to +turn +round +he +would +have +been +back +in +his +room +straight +away +but +he +was +afraid +that +if +he +took +the +time +to +do +that +his +father +would +become +impatient +and +there +was +the +threat +of +a +lethal +blow +to +his +back +or +head +from +the +stick +in +his +father +s +hand +any +moment +eventually +though +gregor +realised +that +he +had +no +choice +as +he +saw +to +his +disgust +that +he +was +quite +incapable +of +going +backwards +in +a +straight +line +so +he +began +as +quickly +as +possible +and +with +frequent +anxious +glances +at +his +father +to +turn +himself +round +it +went +very +slowly +but +perhaps +his +father +was +able +to +see +his +good +intentions +as +he +did +nothing +to +hinder +him +in +fact +now +and +then +he +used +the +tip +of +his +stick +to +give +directions +from +a +distance +as +to +which +way +to +turn +if +only +his +father +would +stop +that +unbearable +hissing +it +was +making +gregor +quite +confused +when +he +had +nearly +finished +turning +round +still +listening +to +that +hissing +he +made +a +mistake +and +turned +himself +back +a +little +the +way +he +had +just +come +he +was +pleased +when +he +finally +had +his +head +in +front +of +the +doorway +but +then +saw +that +it +was +too +narrow +and +his +body +was +too +broad +to +get +through +it +without +further +difficulty +in +his +present +mood +it +obviously +did +not +occur +to +his +father +to +open +the +other +of +the +double +doors +so +that +gregor +would +have +enough +space +to +get +through +he +was +merely +fixed +on +the +idea +that +gregor +should +be +got +back +into +his +room +as +quickly +as +possible +nor +would +he +ever +have +allowed +gregor +the +time +to +get +himself +upright +as +preparation +for +getting +through +the +doorway +what +he +did +making +more +noise +than +ever +was +to +drive +gregor +forwards +all +the +harder +as +if +there +had +been +nothing +in +the +way +it +sounded +to +gregor +as +if +there +was +now +more +than +one +father +behind +him +it +was +not +a +pleasant +experience +and +gregor +pushed +himself +into +the +doorway +without +regard +for +what +might +happen +one +side +of +his +body +lifted +itself +he +lay +at +an +angle +in +the +doorway +one +flank +scraped +on +the +white +door +and +was +painfully +injured +leaving +vile +brown +flecks +on +it +soon +he +was +stuck +fast +and +would +not +have +been +able +to +move +at +all +by +himself +the +little +legs +along +one +side +hung +quivering +in +the +air +while +those +on +the +other +side +were +pressed +painfully +against +the +ground +then +his +father +gave +him +a +hefty +shove +from +behind +which +released +him +from +where +he +was +held +and +sent +him +flying +and +heavily +bleeding +deep +into +his +room +the +door +was +slammed +shut +with +the +stick +then +finally +all +was +quiet +ii +it +was +not +until +it +was +getting +dark +that +evening +that +gregor +awoke +from +his +deep +and +coma +like +sleep +he +would +have +woken +soon +afterwards +anyway +even +if +he +hadn +t +been +disturbed +as +he +had +had +enough +sleep +and +felt +fully +rested +but +he +had +the +impression +that +some +hurried +steps +and +the +sound +of +the +door +leading +into +the +front +room +being +carefully +shut +had +woken +him +the +light +from +the +electric +street +lamps +shone +palely +here +and +there +onto +the +ceiling +and +tops +of +the +furniture +but +down +below +where +gregor +was +it +was +dark +he +pushed +himself +over +to +the +door +feeling +his +way +clumsily +with +his +antennae +of +which +he +was +now +beginning +to +learn +the +value +in +order +to +see +what +had +been +happening +there +the +whole +of +his +left +side +seemed +like +one +painfully +stretched +scar +and +he +limped +badly +on +his +two +rows +of +legs +one +of +the +legs +had +been +badly +injured +in +the +events +of +that +morning +it +was +nearly +a +miracle +that +only +one +of +them +had +been +and +dragged +along +lifelessly +it +was +only +when +he +had +reached +the +door +that +he +realised +what +it +actually +was +that +had +drawn +him +over +to +it +it +was +the +smell +of +something +to +eat +by +the +door +there +was +a +dish +filled +with +sweetened +milk +with +little +pieces +of +white +bread +floating +in +it +he +was +so +pleased +he +almost +laughed +as +he +was +even +hungrier +than +he +had +been +that +morning +and +immediately +dipped +his +head +into +the +milk +nearly +covering +his +eyes +with +it +but +he +soon +drew +his +head +back +again +in +disappointment +not +only +did +the +pain +in +his +tender +left +side +make +it +difficult +to +eat +the +food +he +was +only +able +to +eat +if +his +whole +body +worked +together +as +a +snuffling +whole +but +the +milk +did +not +taste +at +all +nice +milk +like +this +was +normally +his +favourite +drink +and +his +sister +had +certainly +left +it +there +for +him +because +of +that +but +he +turned +almost +against +his +own +will +away +from +the +dish +and +crawled +back +into +the +centre +of +the +room +through +the +crack +in +the +door +gregor +could +see +that +the +gas +had +been +lit +in +the +living +room +his +father +at +this +time +would +normally +be +sat +with +his +evening +paper +reading +it +out +in +a +loud +voice +to +gregor +s +mother +and +sometimes +to +his +sister +but +there +was +now +not +a +sound +to +be +heard +gregor +s +sister +would +often +write +and +tell +him +about +this +reading +but +maybe +his +father +had +lost +the +habit +in +recent +times +it +was +so +quiet +all +around +too +even +though +there +must +have +been +somebody +in +the +flat +what +a +quiet +life +it +is +the +family +lead +said +gregor +to +himself +and +gazing +into +the +darkness +felt +a +great +pride +that +he +was +able +to +provide +a +life +like +that +in +such +a +nice +home +for +his +sister +and +parents +but +what +now +if +all +this +peace +and +wealth +and +comfort +should +come +to +a +horrible +and +frightening +end +that +was +something +that +gregor +did +not +want +to +think +about +too +much +so +he +started +to +move +about +crawling +up +and +down +the +room +once +during +that +long +evening +the +door +on +one +side +of +the +room +was +opened +very +slightly +and +hurriedly +closed +again +later +on +the +door +on +the +other +side +did +the +same +it +seemed +that +someone +needed +to +enter +the +room +but +thought +better +of +it +gregor +went +and +waited +immediately +by +the +door +resolved +either +to +bring +the +timorous +visitor +into +the +room +in +some +way +or +at +least +to +find +out +who +it +was +but +the +door +was +opened +no +more +that +night +and +gregor +waited +in +vain +the +previous +morning +while +the +doors +were +locked +everyone +had +wanted +to +get +in +there +to +him +but +now +now +that +he +had +opened +up +one +of +the +doors +and +the +other +had +clearly +been +unlocked +some +time +during +the +day +no +one +came +and +the +keys +were +in +the +other +sides +it +was +not +until +late +at +night +that +the +gaslight +in +the +living +room +was +put +out +and +now +it +was +easy +to +see +that +parents +and +sister +had +stayed +awake +all +that +time +as +they +all +could +be +distinctly +heard +as +they +went +away +together +on +tip +toe +it +was +clear +that +no +one +would +come +into +gregor +s +room +any +more +until +morning +that +gave +him +plenty +of +time +to +think +undisturbed +about +how +he +would +have +to +re +arrange +his +life +for +some +reason +the +tall +empty +room +where +he +was +forced +to +remain +made +him +feel +uneasy +as +he +lay +there +flat +on +the +floor +even +though +he +had +been +living +in +it +for +five +years +hardly +aware +of +what +he +was +doing +other +than +a +slight +feeling +of +shame +he +hurried +under +the +couch +it +pressed +down +on +his +back +a +little +and +he +was +no +longer +able +to +lift +his +head +but +he +nonetheless +felt +immediately +at +ease +and +his +only +regret +was +that +his +body +was +too +broad +to +get +it +all +underneath +he +spent +the +whole +night +there +some +of +the +time +he +passed +in +a +light +sleep +although +he +frequently +woke +from +it +in +alarm +because +of +his +hunger +and +some +of +the +time +was +spent +in +worries +and +vague +hopes +which +however +always +led +to +the +same +conclusion +for +the +time +being +he +must +remain +calm +he +must +show +patience +and +the +greatest +consideration +so +that +his +family +could +bear +the +unpleasantness +that +he +in +his +present +condition +was +forced +to +impose +on +them +gregor +soon +had +the +opportunity +to +test +the +strength +of +his +decisions +as +early +the +next +morning +almost +before +the +night +had +ended +his +sister +nearly +fully +dressed +opened +the +door +from +the +front +room +and +looked +anxiously +in +she +did +not +see +him +straight +away +but +when +she +did +notice +him +under +the +couch +he +had +to +be +somewhere +for +god +s +sake +he +couldn +t +have +flown +away +she +was +so +shocked +that +she +lost +control +of +herself +and +slammed +the +door +shut +again +from +outside +but +she +seemed +to +regret +her +behaviour +as +she +opened +the +door +again +straight +away +and +came +in +on +tip +toe +as +if +entering +the +room +of +someone +seriously +ill +or +even +of +a +stranger +gregor +had +pushed +his +head +forward +right +to +the +edge +of +the +couch +and +watched +her +would +she +notice +that +he +had +left +the +milk +as +it +was +realise +that +it +was +not +from +any +lack +of +hunger +and +bring +him +in +some +other +food +that +was +more +suitable +if +she +didn +t +do +it +herself +he +would +rather +go +hungry +than +draw +her +attention +to +it +although +he +did +feel +a +terrible +urge +to +rush +forward +from +under +the +couch +throw +himself +at +his +sister +s +feet +and +beg +her +for +something +good +to +eat +however +his +sister +noticed +the +full +dish +immediately +and +looked +at +it +and +the +few +drops +of +milk +splashed +around +it +with +some +surprise +she +immediately +picked +it +up +using +a +rag +not +her +bare +hands +and +carried +it +out +gregor +was +extremely +curious +as +to +what +she +would +bring +in +its +place +imagining +the +wildest +possibilities +but +he +never +could +have +guessed +what +his +sister +in +her +goodness +actually +did +bring +in +order +to +test +his +taste +she +brought +him +a +whole +selection +of +things +all +spread +out +on +an +old +newspaper +there +were +old +half +rotten +vegetables +bones +from +the +evening +meal +covered +in +white +sauce +that +had +gone +hard +a +few +raisins +and +almonds +some +cheese +that +gregor +had +declared +inedible +two +days +before +a +dry +roll +and +some +bread +spread +with +butter +and +salt +as +well +as +all +that +she +had +poured +some +water +into +the +dish +which +had +probably +been +permanently +set +aside +for +gregor +s +use +and +placed +it +beside +them +then +out +of +consideration +for +gregor +s +feelings +as +she +knew +that +he +would +not +eat +in +front +of +her +she +hurried +out +again +and +even +turned +the +key +in +the +lock +so +that +gregor +would +know +he +could +make +things +as +comfortable +for +himself +as +he +liked +gregor +s +little +legs +whirred +at +last +he +could +eat +what +s +more +his +injuries +must +already +have +completely +healed +as +he +found +no +difficulty +in +moving +this +amazed +him +as +more +than +a +month +earlier +he +had +cut +his +finger +slightly +with +a +knife +he +thought +of +how +his +finger +had +still +hurt +the +day +before +yesterday +am +i +less +sensitive +than +i +used +to +be +then +he +thought +and +was +already +sucking +greedily +at +the +cheese +which +had +immediately +almost +compellingly +attracted +him +much +more +than +the +other +foods +on +the +newspaper +quickly +one +after +another +his +eyes +watering +with +pleasure +he +consumed +the +cheese +the +vegetables +and +the +sauce +the +fresh +foods +on +the +other +hand +he +didn +t +like +at +all +and +even +dragged +the +things +he +did +want +to +eat +a +little +way +away +from +them +because +he +couldn +t +stand +the +smell +long +after +he +had +finished +eating +and +lay +lethargic +in +the +same +place +his +sister +slowly +turned +the +key +in +the +lock +as +a +sign +to +him +that +he +should +withdraw +he +was +immediately +startled +although +he +had +been +half +asleep +and +he +hurried +back +under +the +couch +but +he +needed +great +self +control +to +stay +there +even +for +the +short +time +that +his +sister +was +in +the +room +as +eating +so +much +food +had +rounded +out +his +body +a +little +and +he +could +hardly +breathe +in +that +narrow +space +half +suffocating +he +watched +with +bulging +eyes +as +his +sister +unselfconsciously +took +a +broom +and +swept +up +the +left +overs +mixing +them +in +with +the +food +he +had +not +even +touched +at +all +as +if +it +could +not +be +used +any +more +she +quickly +dropped +it +all +into +a +bin +closed +it +with +its +wooden +lid +and +carried +everything +out +she +had +hardly +turned +her +back +before +gregor +came +out +again +from +under +the +couch +and +stretched +himself +this +was +how +gregor +received +his +food +each +day +now +once +in +the +morning +while +his +parents +and +the +maid +were +still +asleep +and +the +second +time +after +everyone +had +eaten +their +meal +at +midday +as +his +parents +would +sleep +for +a +little +while +then +as +well +and +gregor +s +sister +would +send +the +maid +away +on +some +errand +gregor +s +father +and +mother +certainly +did +not +want +him +to +starve +either +but +perhaps +it +would +have +been +more +than +they +could +stand +to +have +any +more +experience +of +his +feeding +than +being +told +about +it +and +perhaps +his +sister +wanted +to +spare +them +what +distress +she +could +as +they +were +indeed +suffering +enough +it +was +impossible +for +gregor +to +find +out +what +they +had +told +the +doctor +and +the +locksmith +that +first +morning +to +get +them +out +of +the +flat +as +nobody +could +understand +him +nobody +not +even +his +sister +thought +that +he +could +understand +them +so +he +had +to +be +content +to +hear +his +sister +s +sighs +and +appeals +to +the +saints +as +she +moved +about +his +room +it +was +only +later +when +she +had +become +a +little +more +used +to +everything +there +was +of +course +no +question +of +her +ever +becoming +fully +used +to +the +situation +that +gregor +would +sometimes +catch +a +friendly +comment +or +at +least +a +comment +that +could +be +construed +as +friendly +he +s +enjoyed +his +dinner +today +she +might +say +when +he +had +diligently +cleared +away +all +the +food +left +for +him +or +if +he +left +most +of +it +which +slowly +became +more +and +more +frequent +she +would +often +say +sadly +now +everything +s +just +been +left +there +again +although +gregor +wasn +t +able +to +hear +any +news +directly +he +did +listen +to +much +of +what +was +said +in +the +next +rooms +and +whenever +he +heard +anyone +speaking +he +would +scurry +straight +to +the +appropriate +door +and +press +his +whole +body +against +it +there +was +seldom +any +conversation +especially +at +first +that +was +not +about +him +in +some +way +even +if +only +in +secret +for +two +whole +days +all +the +talk +at +every +mealtime +was +about +what +they +should +do +now +but +even +between +meals +they +spoke +about +the +same +subject +as +there +were +always +at +least +two +members +of +the +family +at +home +nobody +wanted +to +be +at +home +by +themselves +and +it +was +out +of +the +question +to +leave +the +flat +entirely +empty +and +on +the +very +first +day +the +maid +had +fallen +to +her +knees +and +begged +gregor +s +mother +to +let +her +go +without +delay +it +was +not +very +clear +how +much +she +knew +of +what +had +happened +but +she +left +within +a +quarter +of +an +hour +tearfully +thanking +gregor +s +mother +for +her +dismissal +as +if +she +had +done +her +an +enormous +service +she +even +swore +emphatically +not +to +tell +anyone +the +slightest +about +what +had +happened +even +though +no +one +had +asked +that +of +her +now +gregor +s +sister +also +had +to +help +his +mother +with +the +cooking +although +that +was +not +so +much +bother +as +no +one +ate +very +much +gregor +often +heard +how +one +of +them +would +unsuccessfully +urge +another +to +eat +and +receive +no +more +answer +than +no +thanks +i +ve +had +enough +or +something +similar +no +one +drank +very +much +either +his +sister +would +sometimes +ask +his +father +whether +he +would +like +a +beer +hoping +for +the +chance +to +go +and +fetch +it +herself +when +his +father +then +said +nothing +she +would +add +so +that +he +would +not +feel +selfish +that +she +could +send +the +housekeeper +for +it +but +then +his +father +would +close +the +matter +with +a +big +loud +no +and +no +more +would +be +said +even +before +the +first +day +had +come +to +an +end +his +father +had +explained +to +gregor +s +mother +and +sister +what +their +finances +and +prospects +were +now +and +then +he +stood +up +from +the +table +and +took +some +receipt +or +document +from +the +little +cash +box +he +had +saved +from +his +business +when +it +had +collapsed +five +years +earlier +gregor +heard +how +he +opened +the +complicated +lock +and +then +closed +it +again +after +he +had +taken +the +item +he +wanted +what +he +heard +his +father +say +was +some +of +the +first +good +news +that +gregor +heard +since +he +had +first +been +incarcerated +in +his +room +he +had +thought +that +nothing +at +all +remained +from +his +father +s +business +at +least +he +had +never +told +him +anything +different +and +gregor +had +never +asked +him +about +it +anyway +their +business +misfortune +had +reduced +the +family +to +a +state +of +total +despair +and +gregor +s +only +concern +at +that +time +had +been +to +arrange +things +so +that +they +could +all +forget +about +it +as +quickly +as +possible +so +then +he +started +working +especially +hard +with +a +fiery +vigour +that +raised +him +from +a +junior +salesman +to +a +travelling +representative +almost +overnight +bringing +with +it +the +chance +to +earn +money +in +quite +different +ways +gregor +converted +his +success +at +work +straight +into +cash +that +he +could +lay +on +the +table +at +home +for +the +benefit +of +his +astonished +and +delighted +family +they +had +been +good +times +and +they +had +never +come +again +at +least +not +with +the +same +splendour +even +though +gregor +had +later +earned +so +much +that +he +was +in +a +position +to +bear +the +costs +of +the +whole +family +and +did +bear +them +they +had +even +got +used +to +it +both +gregor +and +the +family +they +took +the +money +with +gratitude +and +he +was +glad +to +provide +it +although +there +was +no +longer +much +warm +affection +given +in +return +gregor +only +remained +close +to +his +sister +now +unlike +him +she +was +very +fond +of +music +and +a +gifted +and +expressive +violinist +it +was +his +secret +plan +to +send +her +to +the +conservatory +next +year +even +though +it +would +cause +great +expense +that +would +have +to +be +made +up +for +in +some +other +way +during +gregor +s +short +periods +in +town +conversation +with +his +sister +would +often +turn +to +the +conservatory +but +it +was +only +ever +mentioned +as +a +lovely +dream +that +could +never +be +realised +their +parents +did +not +like +to +hear +this +innocent +talk +but +gregor +thought +about +it +quite +hard +and +decided +he +would +let +them +know +what +he +planned +with +a +grand +announcement +of +it +on +christmas +day +that +was +the +sort +of +totally +pointless +thing +that +went +through +his +mind +in +his +present +state +pressed +upright +against +the +door +and +listening +there +were +times +when +he +simply +became +too +tired +to +continue +listening +when +his +head +would +fall +wearily +against +the +door +and +he +would +pull +it +up +again +with +a +start +as +even +the +slightest +noise +he +caused +would +be +heard +next +door +and +they +would +all +go +silent +what +s +that +he +s +doing +now +his +father +would +say +after +a +while +clearly +having +gone +over +to +the +door +and +only +then +would +the +interrupted +conversation +slowly +be +taken +up +again +when +explaining +things +his +father +repeated +himself +several +times +partly +because +it +was +a +long +time +since +he +had +been +occupied +with +these +matters +himself +and +partly +because +gregor +s +mother +did +not +understand +everything +first +time +from +these +repeated +explanations +gregor +learned +to +his +pleasure +that +despite +all +their +misfortunes +there +was +still +some +money +available +from +the +old +days +it +was +not +a +lot +but +it +had +not +been +touched +in +the +meantime +and +some +interest +had +accumulated +besides +that +they +had +not +been +using +up +all +the +money +that +gregor +had +been +bringing +home +every +month +keeping +only +a +little +for +himself +so +that +that +too +had +been +accumulating +behind +the +door +gregor +nodded +with +enthusiasm +in +his +pleasure +at +this +unexpected +thrift +and +caution +he +could +actually +have +used +this +surplus +money +to +reduce +his +father +s +debt +to +his +boss +and +the +day +when +he +could +have +freed +himself +from +that +job +would +have +come +much +closer +but +now +it +was +certainly +better +the +way +his +father +had +done +things +this +money +however +was +certainly +not +enough +to +enable +the +family +to +live +off +the +interest +it +was +enough +to +maintain +them +for +perhaps +one +or +two +years +no +more +that +s +to +say +it +was +money +that +should +not +really +be +touched +but +set +aside +for +emergencies +money +to +live +on +had +to +be +earned +his +father +was +healthy +but +old +and +lacking +in +self +confidence +during +the +five +years +that +he +had +not +been +working +the +first +holiday +in +a +life +that +had +been +full +of +strain +and +no +success +he +had +put +on +a +lot +of +weight +and +become +very +slow +and +clumsy +would +gregor +s +elderly +mother +now +have +to +go +and +earn +money +she +suffered +from +asthma +and +it +was +a +strain +for +her +just +to +move +about +the +home +every +other +day +would +be +spent +struggling +for +breath +on +the +sofa +by +the +open +window +would +his +sister +have +to +go +and +earn +money +she +was +still +a +child +of +seventeen +her +life +up +till +then +had +been +very +enviable +consisting +of +wearing +nice +clothes +sleeping +late +helping +out +in +the +business +joining +in +with +a +few +modest +pleasures +and +most +of +all +playing +the +violin +whenever +they +began +to +talk +of +the +need +to +earn +money +gregor +would +always +first +let +go +of +the +door +and +then +throw +himself +onto +the +cool +leather +sofa +next +to +it +as +he +became +quite +hot +with +shame +and +regret +he +would +often +lie +there +the +whole +night +through +not +sleeping +a +wink +but +scratching +at +the +leather +for +hours +on +end +or +he +might +go +to +all +the +effort +of +pushing +a +chair +to +the +window +climbing +up +onto +the +sill +and +propped +up +in +the +chair +leaning +on +the +window +to +stare +out +of +it +he +had +used +to +feel +a +great +sense +of +freedom +from +doing +this +but +doing +it +now +was +obviously +something +more +remembered +than +experienced +as +what +he +actually +saw +in +this +way +was +becoming +less +distinct +every +day +even +things +that +were +quite +near +he +had +used +to +curse +the +ever +present +view +of +the +hospital +across +the +street +but +now +he +could +not +see +it +at +all +and +if +he +had +not +known +that +he +lived +in +charlottenstrasse +which +was +a +quiet +street +despite +being +in +the +middle +of +the +city +he +could +have +thought +that +he +was +looking +out +the +window +at +a +barren +waste +where +the +grey +sky +and +the +grey +earth +mingled +inseparably +his +observant +sister +only +needed +to +notice +the +chair +twice +before +she +would +always +push +it +back +to +its +exact +position +by +the +window +after +she +had +tidied +up +the +room +and +even +left +the +inner +pane +of +the +window +open +from +then +on +if +gregor +had +only +been +able +to +speak +to +his +sister +and +thank +her +for +all +that +she +had +to +do +for +him +it +would +have +been +easier +for +him +to +bear +it +but +as +it +was +it +caused +him +pain +his +sister +naturally +tried +as +far +as +possible +to +pretend +there +was +nothing +burdensome +about +it +and +the +longer +it +went +on +of +course +the +better +she +was +able +to +do +so +but +as +time +went +by +gregor +was +also +able +to +see +through +it +all +so +much +better +it +had +even +become +very +unpleasant +for +him +now +whenever +she +entered +the +room +no +sooner +had +she +come +in +than +she +would +quickly +close +the +door +as +a +precaution +so +that +no +one +would +have +to +suffer +the +view +into +gregor +s +room +then +she +would +go +straight +to +the +window +and +pull +it +hurriedly +open +almost +as +if +she +were +suffocating +even +if +it +was +cold +she +would +stay +at +the +window +breathing +deeply +for +a +little +while +she +would +alarm +gregor +twice +a +day +with +this +running +about +and +noise +making +he +would +stay +under +the +couch +shivering +the +whole +while +knowing +full +well +that +she +would +certainly +have +liked +to +spare +him +this +ordeal +but +it +was +impossible +for +her +to +be +in +the +same +room +with +him +with +the +windows +closed +one +day +about +a +month +after +gregor +s +transformation +when +his +sister +no +longer +had +any +particular +reason +to +be +shocked +at +his +appearance +she +came +into +the +room +a +little +earlier +than +usual +and +found +him +still +staring +out +the +window +motionless +and +just +where +he +would +be +most +horrible +in +itself +his +sister +s +not +coming +into +the +room +would +have +been +no +surprise +for +gregor +as +it +would +have +been +difficult +for +her +to +immediately +open +the +window +while +he +was +still +there +but +not +only +did +she +not +come +in +she +went +straight +back +and +closed +the +door +behind +her +a +stranger +would +have +thought +he +had +threatened +her +and +tried +to +bite +her +gregor +went +straight +to +hide +himself +under +the +couch +of +course +but +he +had +to +wait +until +midday +before +his +sister +came +back +and +she +seemed +much +more +uneasy +than +usual +it +made +him +realise +that +she +still +found +his +appearance +unbearable +and +would +continue +to +do +so +she +probably +even +had +to +overcome +the +urge +to +flee +when +she +saw +the +little +bit +of +him +that +protruded +from +under +the +couch +one +day +in +order +to +spare +her +even +this +sight +he +spent +four +hours +carrying +the +bedsheet +over +to +the +couch +on +his +back +and +arranged +it +so +that +he +was +completely +covered +and +his +sister +would +not +be +able +to +see +him +even +if +she +bent +down +if +she +did +not +think +this +sheet +was +necessary +then +all +she +had +to +do +was +take +it +off +again +as +it +was +clear +enough +that +it +was +no +pleasure +for +gregor +to +cut +himself +off +so +completely +she +left +the +sheet +where +it +was +gregor +even +thought +he +glimpsed +a +look +of +gratitude +one +time +when +he +carefully +looked +out +from +under +the +sheet +to +see +how +his +sister +liked +the +new +arrangement +for +the +first +fourteen +days +gregor +s +parents +could +not +bring +themselves +to +come +into +the +room +to +see +him +he +would +often +hear +them +say +how +they +appreciated +all +the +new +work +his +sister +was +doing +even +though +before +they +had +seen +her +as +a +girl +who +was +somewhat +useless +and +frequently +been +annoyed +with +her +but +now +the +two +of +them +father +and +mother +would +often +both +wait +outside +the +door +of +gregor +s +room +while +his +sister +tidied +up +in +there +and +as +soon +as +she +went +out +again +she +would +have +to +tell +them +exactly +how +everything +looked +what +gregor +had +eaten +how +he +had +behaved +this +time +and +whether +perhaps +any +slight +improvement +could +be +seen +his +mother +also +wanted +to +go +in +and +visit +gregor +relatively +soon +but +his +father +and +sister +at +first +persuaded +her +against +it +gregor +listened +very +closely +to +all +this +and +approved +fully +later +though +she +had +to +be +held +back +by +force +which +made +her +call +out +let +me +go +and +see +gregor +he +is +my +unfortunate +son +can +t +you +understand +i +have +to +see +him +and +gregor +would +think +to +himself +that +maybe +it +would +be +better +if +his +mother +came +in +not +every +day +of +course +but +one +day +a +week +perhaps +she +could +understand +everything +much +better +than +his +sister +who +for +all +her +courage +was +still +just +a +child +after +all +and +really +might +not +have +had +an +adult +s +appreciation +of +the +burdensome +job +she +had +taken +on +gregor +s +wish +to +see +his +mother +was +soon +realised +out +of +consideration +for +his +parents +gregor +wanted +to +avoid +being +seen +at +the +window +during +the +day +the +few +square +meters +of +the +floor +did +not +give +him +much +room +to +crawl +about +it +was +hard +to +just +lie +quietly +through +the +night +his +food +soon +stopped +giving +him +any +pleasure +at +all +and +so +to +entertain +himself +he +got +into +the +habit +of +crawling +up +and +down +the +walls +and +ceiling +he +was +especially +fond +of +hanging +from +the +ceiling +it +was +quite +different +from +lying +on +the +floor +he +could +breathe +more +freely +his +body +had +a +light +swing +to +it +and +up +there +relaxed +and +almost +happy +it +might +happen +that +he +would +surprise +even +himself +by +letting +go +of +the +ceiling +and +landing +on +the +floor +with +a +crash +but +now +of +course +he +had +far +better +control +of +his +body +than +before +and +even +with +a +fall +as +great +as +that +caused +himself +no +damage +very +soon +his +sister +noticed +gregor +s +new +way +of +entertaining +himself +he +had +after +all +left +traces +of +the +adhesive +from +his +feet +as +he +crawled +about +and +got +it +into +her +head +to +make +it +as +easy +as +possible +for +him +by +removing +the +furniture +that +got +in +his +way +especially +the +chest +of +drawers +and +the +desk +now +this +was +not +something +that +she +would +be +able +to +do +by +herself +she +did +not +dare +to +ask +for +help +from +her +father +the +sixteen +year +old +maid +had +carried +on +bravely +since +the +cook +had +left +but +she +certainly +would +not +have +helped +in +this +she +had +even +asked +to +be +allowed +to +keep +the +kitchen +locked +at +all +times +and +never +to +have +to +open +the +door +unless +it +was +especially +important +so +his +sister +had +no +choice +but +to +choose +some +time +when +gregor +s +father +was +not +there +and +fetch +his +mother +to +help +her +as +she +approached +the +room +gregor +could +hear +his +mother +express +her +joy +but +once +at +the +door +she +went +silent +first +of +course +his +sister +came +in +and +looked +round +to +see +that +everything +in +the +room +was +alright +and +only +then +did +she +let +her +mother +enter +gregor +had +hurriedly +pulled +the +sheet +down +lower +over +the +couch +and +put +more +folds +into +it +so +that +everything +really +looked +as +if +it +had +just +been +thrown +down +by +chance +gregor +also +refrained +this +time +from +spying +out +from +under +the +sheet +he +gave +up +the +chance +to +see +his +mother +until +later +and +was +simply +glad +that +she +had +come +you +can +come +in +he +can +t +be +seen +said +his +sister +obviously +leading +her +in +by +the +hand +the +old +chest +of +drawers +was +too +heavy +for +a +pair +of +feeble +women +to +be +heaving +about +but +gregor +listened +as +they +pushed +it +from +its +place +his +sister +always +taking +on +the +heaviest +part +of +the +work +for +herself +and +ignoring +her +mother +s +warnings +that +she +would +strain +herself +this +lasted +a +very +long +time +after +labouring +at +it +for +fifteen +minutes +or +more +his +mother +said +it +would +be +better +to +leave +the +chest +where +it +was +for +one +thing +it +was +too +heavy +for +them +to +get +the +job +finished +before +gregor +s +father +got +home +and +leaving +it +in +the +middle +of +the +room +it +would +be +in +his +way +even +more +and +for +another +thing +it +wasn +t +even +sure +that +taking +the +furniture +away +would +really +be +any +help +to +him +she +thought +just +the +opposite +the +sight +of +the +bare +walls +saddened +her +right +to +her +heart +and +why +wouldn +t +gregor +feel +the +same +way +about +it +he +d +been +used +to +this +furniture +in +his +room +for +a +long +time +and +it +would +make +him +feel +abandoned +to +be +in +an +empty +room +like +that +then +quietly +almost +whispering +as +if +wanting +gregor +whose +whereabouts +she +did +not +know +to +hear +not +even +the +tone +of +her +voice +as +she +was +convinced +that +he +did +not +understand +her +words +she +added +and +by +taking +the +furniture +away +won +t +it +seem +like +we +re +showing +that +we +ve +given +up +all +hope +of +improvement +and +we +re +abandoning +him +to +cope +for +himself +i +think +it +d +be +best +to +leave +the +room +exactly +the +way +it +was +before +so +that +when +gregor +comes +back +to +us +again +he +ll +find +everything +unchanged +and +he +ll +be +able +to +forget +the +time +in +between +all +the +easier +hearing +these +words +from +his +mother +made +gregor +realise +that +the +lack +of +any +direct +human +communication +along +with +the +monotonous +life +led +by +the +family +during +these +two +months +must +have +made +him +confused +he +could +think +of +no +other +way +of +explaining +to +himself +why +he +had +seriously +wanted +his +room +emptied +out +had +he +really +wanted +to +transform +his +room +into +a +cave +a +warm +room +fitted +out +with +the +nice +furniture +he +had +inherited +that +would +have +let +him +crawl +around +unimpeded +in +any +direction +but +it +would +also +have +let +him +quickly +forget +his +past +when +he +had +still +been +human +he +had +come +very +close +to +forgetting +and +it +had +only +been +the +voice +of +his +mother +unheard +for +so +long +that +had +shaken +him +out +of +it +nothing +should +be +removed +everything +had +to +stay +he +could +not +do +without +the +good +influence +the +furniture +had +on +his +condition +and +if +the +furniture +made +it +difficult +for +him +to +crawl +about +mindlessly +that +was +not +a +loss +but +a +great +advantage +his +sister +unfortunately +did +not +agree +she +had +become +used +to +the +idea +not +without +reason +that +she +was +gregor +s +spokesman +to +his +parents +about +the +things +that +concerned +him +this +meant +that +his +mother +s +advice +now +was +sufficient +reason +for +her +to +insist +on +removing +not +only +the +chest +of +drawers +and +the +desk +as +she +had +thought +at +first +but +all +the +furniture +apart +from +the +all +important +couch +it +was +more +than +childish +perversity +of +course +or +the +unexpected +confidence +she +had +recently +acquired +that +made +her +insist +she +had +indeed +noticed +that +gregor +needed +a +lot +of +room +to +crawl +about +in +whereas +the +furniture +as +far +as +anyone +could +see +was +of +no +use +to +him +at +all +girls +of +that +age +though +do +become +enthusiastic +about +things +and +feel +they +must +get +their +way +whenever +they +can +perhaps +this +was +what +tempted +grete +to +make +gregor +s +situation +seem +even +more +shocking +than +it +was +so +that +she +could +do +even +more +for +him +grete +would +probably +be +the +only +one +who +would +dare +enter +a +room +dominated +by +gregor +crawling +about +the +bare +walls +by +himself +so +she +refused +to +let +her +mother +dissuade +her +gregor +s +mother +already +looked +uneasy +in +his +room +she +soon +stopped +speaking +and +helped +gregor +s +sister +to +get +the +chest +of +drawers +out +with +what +strength +she +had +the +chest +of +drawers +was +something +that +gregor +could +do +without +if +he +had +to +but +the +writing +desk +had +to +stay +hardly +had +the +two +women +pushed +the +chest +of +drawers +groaning +out +of +the +room +than +gregor +poked +his +head +out +from +under +the +couch +to +see +what +he +could +do +about +it +he +meant +to +be +as +careful +and +considerate +as +he +could +but +unfortunately +it +was +his +mother +who +came +back +first +while +grete +in +the +next +room +had +her +arms +round +the +chest +pushing +and +pulling +at +it +from +side +to +side +by +herself +without +of +course +moving +it +an +inch +his +mother +was +not +used +to +the +sight +of +gregor +he +might +have +made +her +ill +so +gregor +hurried +backwards +to +the +far +end +of +the +couch +in +his +startlement +though +he +was +not +able +to +prevent +the +sheet +at +its +front +from +moving +a +little +it +was +enough +to +attract +his +mother +s +attention +she +stood +very +still +remained +there +a +moment +and +then +went +back +out +to +grete +gregor +kept +trying +to +assure +himself +that +nothing +unusual +was +happening +it +was +just +a +few +pieces +of +furniture +being +moved +after +all +but +he +soon +had +to +admit +that +the +women +going +to +and +fro +their +little +calls +to +each +other +the +scraping +of +the +furniture +on +the +floor +all +these +things +made +him +feel +as +if +he +were +being +assailed +from +all +sides +with +his +head +and +legs +pulled +in +against +him +and +his +body +pressed +to +the +floor +he +was +forced +to +admit +to +himself +that +he +could +not +stand +all +of +this +much +longer +they +were +emptying +his +room +out +taking +away +everything +that +was +dear +to +him +they +had +already +taken +out +the +chest +containing +his +fretsaw +and +other +tools +now +they +threatened +to +remove +the +writing +desk +with +its +place +clearly +worn +into +the +floor +the +desk +where +he +had +done +his +homework +as +a +business +trainee +at +high +school +even +while +he +had +been +at +infant +school +he +really +could +not +wait +any +longer +to +see +whether +the +two +women +s +intentions +were +good +he +had +nearly +forgotten +they +were +there +anyway +as +they +were +now +too +tired +to +say +anything +while +they +worked +and +he +could +only +hear +their +feet +as +they +stepped +heavily +on +the +floor +so +while +the +women +were +leant +against +the +desk +in +the +other +room +catching +their +breath +he +sallied +out +changed +direction +four +times +not +knowing +what +he +should +save +first +before +his +attention +was +suddenly +caught +by +the +picture +on +the +wall +which +was +already +denuded +of +everything +else +that +had +been +on +it +of +the +lady +dressed +in +copious +fur +he +hurried +up +onto +the +picture +and +pressed +himself +against +its +glass +it +held +him +firmly +and +felt +good +on +his +hot +belly +this +picture +at +least +now +totally +covered +by +gregor +would +certainly +be +taken +away +by +no +one +he +turned +his +head +to +face +the +door +into +the +living +room +so +that +he +could +watch +the +women +when +they +came +back +they +had +not +allowed +themselves +a +long +rest +and +came +back +quite +soon +grete +had +put +her +arm +around +her +mother +and +was +nearly +carrying +her +what +shall +we +take +now +then +said +grete +and +looked +around +her +eyes +met +those +of +gregor +on +the +wall +perhaps +only +because +her +mother +was +there +she +remained +calm +bent +her +face +to +her +so +that +she +would +not +look +round +and +said +albeit +hurriedly +and +with +a +tremor +in +her +voice +come +on +let +s +go +back +in +the +living +room +for +a +while +gregor +could +see +what +grete +had +in +mind +she +wanted +to +take +her +mother +somewhere +safe +and +then +chase +him +down +from +the +wall +well +she +could +certainly +try +it +he +sat +unyielding +on +his +picture +he +would +rather +jump +at +grete +s +face +but +grete +s +words +had +made +her +mother +quite +worried +she +stepped +to +one +side +saw +the +enormous +brown +patch +against +the +flowers +of +the +wallpaper +and +before +she +even +realised +it +was +gregor +that +she +saw +screamed +oh +god +oh +god +arms +outstretched +she +fell +onto +the +couch +as +if +she +had +given +up +everything +and +stayed +there +immobile +gregor +shouted +his +sister +glowering +at +him +and +shaking +her +fist +that +was +the +first +word +she +had +spoken +to +him +directly +since +his +transformation +she +ran +into +the +other +room +to +fetch +some +kind +of +smelling +salts +to +bring +her +mother +out +of +her +faint +gregor +wanted +to +help +too +he +could +save +his +picture +later +although +he +stuck +fast +to +the +glass +and +had +to +pull +himself +off +by +force +then +he +too +ran +into +the +next +room +as +if +he +could +advise +his +sister +like +in +the +old +days +but +he +had +to +just +stand +behind +her +doing +nothing +she +was +looking +into +various +bottles +he +startled +her +when +she +turned +round +a +bottle +fell +to +the +ground +and +broke +a +splinter +cut +gregor +s +face +some +kind +of +caustic +medicine +splashed +all +over +him +now +without +delaying +any +longer +grete +took +hold +of +all +the +bottles +she +could +and +ran +with +them +in +to +her +mother +she +slammed +the +door +shut +with +her +foot +so +now +gregor +was +shut +out +from +his +mother +who +because +of +him +might +be +near +to +death +he +could +not +open +the +door +if +he +did +not +want +to +chase +his +sister +away +and +she +had +to +stay +with +his +mother +there +was +nothing +for +him +to +do +but +wait +and +oppressed +with +anxiety +and +self +reproach +he +began +to +crawl +about +he +crawled +over +everything +walls +furniture +ceiling +and +finally +in +his +confusion +as +the +whole +room +began +to +spin +around +him +he +fell +down +into +the +middle +of +the +dinner +table +he +lay +there +for +a +while +numb +and +immobile +all +around +him +it +was +quiet +maybe +that +was +a +good +sign +then +there +was +someone +at +the +door +the +maid +of +course +had +locked +herself +in +her +kitchen +so +that +grete +would +have +to +go +and +answer +it +his +father +had +arrived +home +what +s +happened +were +his +first +words +grete +s +appearance +must +have +made +everything +clear +to +him +she +answered +him +with +subdued +voice +and +openly +pressed +her +face +into +his +chest +mother +s +fainted +but +she +s +better +now +gregor +got +out +just +as +i +expected +said +his +father +just +as +i +always +said +but +you +women +wouldn +t +listen +would +you +it +was +clear +to +gregor +that +grete +had +not +said +enough +and +that +his +father +took +it +to +mean +that +something +bad +had +happened +that +he +was +responsible +for +some +act +of +violence +that +meant +gregor +would +now +have +to +try +to +calm +his +father +as +he +did +not +have +the +time +to +explain +things +to +him +even +if +that +had +been +possible +so +he +fled +to +the +door +of +his +room +and +pressed +himself +against +it +so +that +his +father +when +he +came +in +from +the +hall +could +see +straight +away +that +gregor +had +the +best +intentions +and +would +go +back +into +his +room +without +delay +that +it +would +not +be +necessary +to +drive +him +back +but +that +they +had +only +to +open +the +door +and +he +would +disappear +his +father +though +was +not +in +the +mood +to +notice +subtleties +like +that +ah +he +shouted +as +he +came +in +sounding +as +if +he +were +both +angry +and +glad +at +the +same +time +gregor +drew +his +head +back +from +the +door +and +lifted +it +towards +his +father +he +really +had +not +imagined +his +father +the +way +he +stood +there +now +of +late +with +his +new +habit +of +crawling +about +he +had +neglected +to +pay +attention +to +what +was +going +on +the +rest +of +the +flat +the +way +he +had +done +before +he +really +ought +to +have +expected +things +to +have +changed +but +still +still +was +that +really +his +father +the +same +tired +man +as +used +to +be +laying +there +entombed +in +his +bed +when +gregor +came +back +from +his +business +trips +who +would +receive +him +sitting +in +the +armchair +in +his +nightgown +when +he +came +back +in +the +evenings +who +was +hardly +even +able +to +stand +up +but +as +a +sign +of +his +pleasure +would +just +raise +his +arms +and +who +on +the +couple +of +times +a +year +when +they +went +for +a +walk +together +on +a +sunday +or +public +holiday +wrapped +up +tightly +in +his +overcoat +between +gregor +and +his +mother +would +always +labour +his +way +forward +a +little +more +slowly +than +them +who +were +already +walking +slowly +for +his +sake +who +would +place +his +stick +down +carefully +and +if +he +wanted +to +say +something +would +invariably +stop +and +gather +his +companions +around +him +he +was +standing +up +straight +enough +now +dressed +in +a +smart +blue +uniform +with +gold +buttons +the +sort +worn +by +the +employees +at +the +banking +institute +above +the +high +stiff +collar +of +the +coat +his +strong +double +chin +emerged +under +the +bushy +eyebrows +his +piercing +dark +eyes +looked +out +fresh +and +alert +his +normally +unkempt +white +hair +was +combed +down +painfully +close +to +his +scalp +he +took +his +cap +with +its +gold +monogram +from +probably +some +bank +and +threw +it +in +an +arc +right +across +the +room +onto +the +sofa +put +his +hands +in +his +trouser +pockets +pushing +back +the +bottom +of +his +long +uniform +coat +and +with +look +of +determination +walked +towards +gregor +he +probably +did +not +even +know +himself +what +he +had +in +mind +but +nonetheless +lifted +his +feet +unusually +high +gregor +was +amazed +at +the +enormous +size +of +the +soles +of +his +boots +but +wasted +no +time +with +that +he +knew +full +well +right +from +the +first +day +of +his +new +life +that +his +father +thought +it +necessary +to +always +be +extremely +strict +with +him +and +so +he +ran +up +to +his +father +stopped +when +his +father +stopped +scurried +forwards +again +when +he +moved +even +slightly +in +this +way +they +went +round +the +room +several +times +without +anything +decisive +happening +without +even +giving +the +impression +of +a +chase +as +everything +went +so +slowly +gregor +remained +all +this +time +on +the +floor +largely +because +he +feared +his +father +might +see +it +as +especially +provoking +if +he +fled +onto +the +wall +or +ceiling +whatever +he +did +gregor +had +to +admit +that +he +certainly +would +not +be +able +to +keep +up +this +running +about +for +long +as +for +each +step +his +father +took +he +had +to +carry +out +countless +movements +he +became +noticeably +short +of +breath +even +in +his +earlier +life +his +lungs +had +not +been +very +reliable +now +as +he +lurched +about +in +his +efforts +to +muster +all +the +strength +he +could +for +running +he +could +hardly +keep +his +eyes +open +his +thoughts +became +too +slow +for +him +to +think +of +any +other +way +of +saving +himself +than +running +he +almost +forgot +that +the +walls +were +there +for +him +to +use +although +here +they +were +concealed +behind +carefully +carved +furniture +full +of +notches +and +protrusions +then +right +beside +him +lightly +tossed +something +flew +down +and +rolled +in +front +of +him +it +was +an +apple +then +another +one +immediately +flew +at +him +gregor +froze +in +shock +there +was +no +longer +any +point +in +running +as +his +father +had +decided +to +bombard +him +he +had +filled +his +pockets +with +fruit +from +the +bowl +on +the +sideboard +and +now +without +even +taking +the +time +for +careful +aim +threw +one +apple +after +another +these +little +red +apples +rolled +about +on +the +floor +knocking +into +each +other +as +if +they +had +electric +motors +an +apple +thrown +without +much +force +glanced +against +gregor +s +back +and +slid +off +without +doing +any +harm +another +one +however +immediately +following +it +hit +squarely +and +lodged +in +his +back +gregor +wanted +to +drag +himself +away +as +if +he +could +remove +the +surprising +the +incredible +pain +by +changing +his +position +but +he +felt +as +if +nailed +to +the +spot +and +spread +himself +out +all +his +senses +in +confusion +the +last +thing +he +saw +was +the +door +of +his +room +being +pulled +open +his +sister +was +screaming +his +mother +ran +out +in +front +of +her +in +her +blouse +as +his +sister +had +taken +off +some +of +her +clothes +after +she +had +fainted +to +make +it +easier +for +her +to +breathe +she +ran +to +his +father +her +skirts +unfastened +and +sliding +one +after +another +to +the +ground +stumbling +over +the +skirts +she +pushed +herself +to +his +father +her +arms +around +him +uniting +herself +with +him +totally +now +gregor +lost +his +ability +to +see +anything +her +hands +behind +his +father +s +head +begging +him +to +spare +gregor +s +life +iii +no +one +dared +to +remove +the +apple +lodged +in +gregor +s +flesh +so +it +remained +there +as +a +visible +reminder +of +his +injury +he +had +suffered +it +there +for +more +than +a +month +and +his +condition +seemed +serious +enough +to +remind +even +his +father +that +gregor +despite +his +current +sad +and +revolting +form +was +a +family +member +who +could +not +be +treated +as +an +enemy +on +the +contrary +as +a +family +there +was +a +duty +to +swallow +any +revulsion +for +him +and +to +be +patient +just +to +be +patient +because +of +his +injuries +gregor +had +lost +much +of +his +mobility +probably +permanently +he +had +been +reduced +to +the +condition +of +an +ancient +invalid +and +it +took +him +long +long +minutes +to +crawl +across +his +room +crawling +over +the +ceiling +was +out +of +the +question +but +this +deterioration +in +his +condition +was +fully +in +his +opinion +made +up +for +by +the +door +to +the +living +room +being +left +open +every +evening +he +got +into +the +habit +of +closely +watching +it +for +one +or +two +hours +before +it +was +opened +and +then +lying +in +the +darkness +of +his +room +where +he +could +not +be +seen +from +the +living +room +he +could +watch +the +family +in +the +light +of +the +dinner +table +and +listen +to +their +conversation +with +everyone +s +permission +in +a +way +and +thus +quite +differently +from +before +they +no +longer +held +the +lively +conversations +of +earlier +times +of +course +the +ones +that +gregor +always +thought +about +with +longing +when +he +was +tired +and +getting +into +the +damp +bed +in +some +small +hotel +room +all +of +them +were +usually +very +quiet +nowadays +soon +after +dinner +his +father +would +go +to +sleep +in +his +chair +his +mother +and +sister +would +urge +each +other +to +be +quiet +his +mother +bent +deeply +under +the +lamp +would +sew +fancy +underwear +for +a +fashion +shop +his +sister +who +had +taken +a +sales +job +learned +shorthand +and +french +in +the +evenings +so +that +she +might +be +able +to +get +a +better +position +later +on +sometimes +his +father +would +wake +up +and +say +to +gregor +s +mother +you +re +doing +so +much +sewing +again +today +as +if +he +did +not +know +that +he +had +been +dozing +and +then +he +would +go +back +to +sleep +again +while +mother +and +sister +would +exchange +a +tired +grin +with +a +kind +of +stubbornness +gregor +s +father +refused +to +take +his +uniform +off +even +at +home +while +his +nightgown +hung +unused +on +its +peg +gregor +s +father +would +slumber +where +he +was +fully +dressed +as +if +always +ready +to +serve +and +expecting +to +hear +the +voice +of +his +superior +even +here +the +uniform +had +not +been +new +to +start +with +but +as +a +result +of +this +it +slowly +became +even +shabbier +despite +the +efforts +of +gregor +s +mother +and +sister +to +look +after +it +gregor +would +often +spend +the +whole +evening +looking +at +all +the +stains +on +this +coat +with +its +gold +buttons +always +kept +polished +and +shiny +while +the +old +man +in +it +would +sleep +highly +uncomfortable +but +peaceful +as +soon +as +it +struck +ten +gregor +s +mother +would +speak +gently +to +his +father +to +wake +him +and +try +to +persuade +him +to +go +to +bed +as +he +couldn +t +sleep +properly +where +he +was +and +he +really +had +to +get +his +sleep +if +he +was +to +be +up +at +six +to +get +to +work +but +since +he +had +been +in +work +he +had +become +more +obstinate +and +would +always +insist +on +staying +longer +at +the +table +even +though +he +regularly +fell +asleep +and +it +was +then +harder +than +ever +to +persuade +him +to +exchange +the +chair +for +his +bed +then +however +much +mother +and +sister +would +importune +him +with +little +reproaches +and +warnings +he +would +keep +slowly +shaking +his +head +for +a +quarter +of +an +hour +with +his +eyes +closed +and +refusing +to +get +up +gregor +s +mother +would +tug +at +his +sleeve +whisper +endearments +into +his +ear +gregor +s +sister +would +leave +her +work +to +help +her +mother +but +nothing +would +have +any +effect +on +him +he +would +just +sink +deeper +into +his +chair +only +when +the +two +women +took +him +under +the +arms +he +would +abruptly +open +his +eyes +look +at +them +one +after +the +other +and +say +what +a +life +this +is +what +peace +i +get +in +my +old +age +and +supported +by +the +two +women +he +would +lift +himself +up +carefully +as +if +he +were +carrying +the +greatest +load +himself +let +the +women +take +him +to +the +door +send +them +off +and +carry +on +by +himself +while +gregor +s +mother +would +throw +down +her +needle +and +his +sister +her +pen +so +that +they +could +run +after +his +father +and +continue +being +of +help +to +him +who +in +this +tired +and +overworked +family +would +have +had +time +to +give +more +attention +to +gregor +than +was +absolutely +necessary +the +household +budget +became +even +smaller +so +now +the +maid +was +dismissed +an +enormous +thick +boned +charwoman +with +white +hair +that +flapped +around +her +head +came +every +morning +and +evening +to +do +the +heaviest +work +everything +else +was +looked +after +by +gregor +s +mother +on +top +of +the +large +amount +of +sewing +work +she +did +gregor +even +learned +listening +to +the +evening +conversation +about +what +price +they +had +hoped +for +that +several +items +of +jewellery +belonging +to +the +family +had +been +sold +even +though +both +mother +and +sister +had +been +very +fond +of +wearing +them +at +functions +and +celebrations +but +the +loudest +complaint +was +that +although +the +flat +was +much +too +big +for +their +present +circumstances +they +could +not +move +out +of +it +there +was +no +imaginable +way +of +transferring +gregor +to +the +new +address +he +could +see +quite +well +though +that +there +were +more +reasons +than +consideration +for +him +that +made +it +difficult +for +them +to +move +it +would +have +been +quite +easy +to +transport +him +in +any +suitable +crate +with +a +few +air +holes +in +it +the +main +thing +holding +the +family +back +from +their +decision +to +move +was +much +more +to +do +with +their +total +despair +and +the +thought +that +they +had +been +struck +with +a +misfortune +unlike +anything +experienced +by +anyone +else +they +knew +or +were +related +to +they +carried +out +absolutely +everything +that +the +world +expects +from +poor +people +gregor +s +father +brought +bank +employees +their +breakfast +his +mother +sacrificed +herself +by +washing +clothes +for +strangers +his +sister +ran +back +and +forth +behind +her +desk +at +the +behest +of +the +customers +but +they +just +did +not +have +the +strength +to +do +any +more +and +the +injury +in +gregor +s +back +began +to +hurt +as +much +as +when +it +was +new +after +they +had +come +back +from +taking +his +father +to +bed +gregor +s +mother +and +sister +would +now +leave +their +work +where +it +was +and +sit +close +together +cheek +to +cheek +his +mother +would +point +to +gregor +s +room +and +say +close +that +door +grete +and +then +when +he +was +in +the +dark +again +they +would +sit +in +the +next +room +and +their +tears +would +mingle +or +they +would +simply +sit +there +staring +dry +eyed +at +the +table +gregor +hardly +slept +at +all +either +night +or +day +sometimes +he +would +think +of +taking +over +the +family +s +affairs +just +like +before +the +next +time +the +door +was +opened +he +had +long +forgotten +about +his +boss +and +the +chief +clerk +but +they +would +appear +again +in +his +thoughts +the +salesmen +and +the +apprentices +that +stupid +teaboy +two +or +three +friends +from +other +businesses +one +of +the +chambermaids +from +a +provincial +hotel +a +tender +memory +that +appeared +and +disappeared +again +a +cashier +from +a +hat +shop +for +whom +his +attention +had +been +serious +but +too +slow +all +of +them +appeared +to +him +mixed +together +with +strangers +and +others +he +had +forgotten +but +instead +of +helping +him +and +his +family +they +were +all +of +them +inaccessible +and +he +was +glad +when +they +disappeared +other +times +he +was +not +at +all +in +the +mood +to +look +after +his +family +he +was +filled +with +simple +rage +about +the +lack +of +attention +he +was +shown +and +although +he +could +think +of +nothing +he +would +have +wanted +he +made +plans +of +how +he +could +get +into +the +pantry +where +he +could +take +all +the +things +he +was +entitled +to +even +if +he +was +not +hungry +gregor +s +sister +no +longer +thought +about +how +she +could +please +him +but +would +hurriedly +push +some +food +or +other +into +his +room +with +her +foot +before +she +rushed +out +to +work +in +the +morning +and +at +midday +and +in +the +evening +she +would +sweep +it +away +again +with +the +broom +indifferent +as +to +whether +it +had +been +eaten +or +more +often +than +not +had +been +left +totally +untouched +she +still +cleared +up +the +room +in +the +evening +but +now +she +could +not +have +been +any +quicker +about +it +smears +of +dirt +were +left +on +the +walls +here +and +there +were +little +balls +of +dust +and +filth +at +first +gregor +went +into +one +of +the +worst +of +these +places +when +his +sister +arrived +as +a +reproach +to +her +but +he +could +have +stayed +there +for +weeks +without +his +sister +doing +anything +about +it +she +could +see +the +dirt +as +well +as +he +could +but +she +had +simply +decided +to +leave +him +to +it +at +the +same +time +she +became +touchy +in +a +way +that +was +quite +new +for +her +and +which +everyone +in +the +family +understood +cleaning +up +gregor +s +room +was +for +her +and +her +alone +gregor +s +mother +did +once +thoroughly +clean +his +room +and +needed +to +use +several +bucketfuls +of +water +to +do +it +although +that +much +dampness +also +made +gregor +ill +and +he +lay +flat +on +the +couch +bitter +and +immobile +but +his +mother +was +to +be +punished +still +more +for +what +she +had +done +as +hardly +had +his +sister +arrived +home +in +the +evening +than +she +noticed +the +change +in +gregor +s +room +and +highly +aggrieved +ran +back +into +the +living +room +where +despite +her +mothers +raised +and +imploring +hands +she +broke +into +convulsive +tears +her +father +of +course +was +startled +out +of +his +chair +and +the +two +parents +looked +on +astonished +and +helpless +then +they +too +became +agitated +gregor +s +father +standing +to +the +right +of +his +mother +accused +her +of +not +leaving +the +cleaning +of +gregor +s +room +to +his +sister +from +her +left +gregor +s +sister +screamed +at +her +that +she +was +never +to +clean +gregor +s +room +again +while +his +mother +tried +to +draw +his +father +who +was +beside +himself +with +anger +into +the +bedroom +his +sister +quaking +with +tears +thumped +on +the +table +with +her +small +fists +and +gregor +hissed +in +anger +that +no +one +had +even +thought +of +closing +the +door +to +save +him +the +sight +of +this +and +all +its +noise +gregor +s +sister +was +exhausted +from +going +out +to +work +and +looking +after +gregor +as +she +had +done +before +was +even +more +work +for +her +but +even +so +his +mother +ought +certainly +not +to +have +taken +her +place +gregor +on +the +other +hand +ought +not +to +be +neglected +now +though +the +charwoman +was +here +this +elderly +widow +with +a +robust +bone +structure +that +made +her +able +to +withstand +the +hardest +of +things +in +her +long +life +wasn +t +really +repelled +by +gregor +just +by +chance +one +day +rather +than +any +real +curiosity +she +opened +the +door +to +gregor +s +room +and +found +herself +face +to +face +with +him +he +was +taken +totally +by +surprise +no +one +was +chasing +him +but +he +began +to +rush +to +and +fro +while +she +just +stood +there +in +amazement +with +her +hands +crossed +in +front +of +her +from +then +on +she +never +failed +to +open +the +door +slightly +every +evening +and +morning +and +look +briefly +in +on +him +at +first +she +would +call +to +him +as +she +did +so +with +words +that +she +probably +considered +friendly +such +as +come +on +then +you +old +dung +beetle +or +look +at +the +old +dung +beetle +there +gregor +never +responded +to +being +spoken +to +in +that +way +but +just +remained +where +he +was +without +moving +as +if +the +door +had +never +even +been +opened +if +only +they +had +told +this +charwoman +to +clean +up +his +room +every +day +instead +of +letting +her +disturb +him +for +no +reason +whenever +she +felt +like +it +one +day +early +in +the +morning +while +a +heavy +rain +struck +the +windowpanes +perhaps +indicating +that +spring +was +coming +she +began +to +speak +to +him +in +that +way +once +again +gregor +was +so +resentful +of +it +that +he +started +to +move +toward +her +he +was +slow +and +infirm +but +it +was +like +a +kind +of +attack +instead +of +being +afraid +the +charwoman +just +lifted +up +one +of +the +chairs +from +near +the +door +and +stood +there +with +her +mouth +open +clearly +intending +not +to +close +her +mouth +until +the +chair +in +her +hand +had +been +slammed +down +into +gregor +s +back +aren +t +you +coming +any +closer +then +she +asked +when +gregor +turned +round +again +and +she +calmly +put +the +chair +back +in +the +corner +gregor +had +almost +entirely +stopped +eating +only +if +he +happened +to +find +himself +next +to +the +food +that +had +been +prepared +for +him +he +might +take +some +of +it +into +his +mouth +to +play +with +it +leave +it +there +a +few +hours +and +then +more +often +than +not +spit +it +out +again +at +first +he +thought +it +was +distress +at +the +state +of +his +room +that +stopped +him +eating +but +he +had +soon +got +used +to +the +changes +made +there +they +had +got +into +the +habit +of +putting +things +into +this +room +that +they +had +no +room +for +anywhere +else +and +there +were +now +many +such +things +as +one +of +the +rooms +in +the +flat +had +been +rented +out +to +three +gentlemen +these +earnest +gentlemen +all +three +of +them +had +full +beards +as +gregor +learned +peering +through +the +crack +in +the +door +one +day +were +painfully +insistent +on +things +being +tidy +this +meant +not +only +in +their +own +room +but +since +they +had +taken +a +room +in +this +establishment +in +the +entire +flat +and +especially +in +the +kitchen +unnecessary +clutter +was +something +they +could +not +tolerate +especially +if +it +was +dirty +they +had +moreover +brought +most +of +their +own +furnishings +and +equipment +with +them +for +this +reason +many +things +had +become +superfluous +which +although +they +could +not +be +sold +the +family +did +not +wish +to +discard +all +these +things +found +their +way +into +gregor +s +room +the +dustbins +from +the +kitchen +found +their +way +in +there +too +the +charwoman +was +always +in +a +hurry +and +anything +she +couldn +t +use +for +the +time +being +she +would +just +chuck +in +there +he +fortunately +would +usually +see +no +more +than +the +object +and +the +hand +that +held +it +the +woman +most +likely +meant +to +fetch +the +things +back +out +again +when +she +had +time +and +the +opportunity +or +to +throw +everything +out +in +one +go +but +what +actually +happened +was +that +they +were +left +where +they +landed +when +they +had +first +been +thrown +unless +gregor +made +his +way +through +the +junk +and +moved +it +somewhere +else +at +first +he +moved +it +because +with +no +other +room +free +where +he +could +crawl +about +he +was +forced +to +but +later +on +he +came +to +enjoy +it +although +moving +about +in +the +way +left +him +sad +and +tired +to +death +and +he +would +remain +immobile +for +hours +afterwards +the +gentlemen +who +rented +the +room +would +sometimes +take +their +evening +meal +at +home +in +the +living +room +that +was +used +by +everyone +and +so +the +door +to +this +room +was +often +kept +closed +in +the +evening +but +gregor +found +it +easy +to +give +up +having +the +door +open +he +had +after +all +often +failed +to +make +use +of +it +when +it +was +open +and +without +the +family +having +noticed +it +lain +in +his +room +in +its +darkest +corner +one +time +though +the +charwoman +left +the +door +to +the +living +room +slightly +open +and +it +remained +open +when +the +gentlemen +who +rented +the +room +came +in +in +the +evening +and +the +light +was +put +on +they +sat +up +at +the +table +where +formerly +gregor +had +taken +his +meals +with +his +father +and +mother +they +unfolded +the +serviettes +and +picked +up +their +knives +and +forks +gregor +s +mother +immediately +appeared +in +the +doorway +with +a +dish +of +meat +and +soon +behind +her +came +his +sister +with +a +dish +piled +high +with +potatoes +the +food +was +steaming +and +filled +the +room +with +its +smell +the +gentlemen +bent +over +the +dishes +set +in +front +of +them +as +if +they +wanted +to +test +the +food +before +eating +it +and +the +gentleman +in +the +middle +who +seemed +to +count +as +an +authority +for +the +other +two +did +indeed +cut +off +a +piece +of +meat +while +it +was +still +in +its +dish +clearly +wishing +to +establish +whether +it +was +sufficiently +cooked +or +whether +it +should +be +sent +back +to +the +kitchen +it +was +to +his +satisfaction +and +gregor +s +mother +and +sister +who +had +been +looking +on +anxiously +began +to +breathe +again +and +smiled +the +family +themselves +ate +in +the +kitchen +nonetheless +gregor +s +father +came +into +the +living +room +before +he +went +into +the +kitchen +bowed +once +with +his +cap +in +his +hand +and +did +his +round +of +the +table +the +gentlemen +stood +as +one +and +mumbled +something +into +their +beards +then +once +they +were +alone +they +ate +in +near +perfect +silence +it +seemed +remarkable +to +gregor +that +above +all +the +various +noises +of +eating +their +chewing +teeth +could +still +be +heard +as +if +they +had +wanted +to +show +gregor +that +you +need +teeth +in +order +to +eat +and +it +was +not +possible +to +perform +anything +with +jaws +that +are +toothless +however +nice +they +might +be +i +d +like +to +eat +something +said +gregor +anxiously +but +not +anything +like +they +re +eating +they +do +feed +themselves +and +here +i +am +dying +throughout +all +this +time +gregor +could +not +remember +having +heard +the +violin +being +played +but +this +evening +it +began +to +be +heard +from +the +kitchen +the +three +gentlemen +had +already +finished +their +meal +the +one +in +the +middle +had +produced +a +newspaper +given +a +page +to +each +of +the +others +and +now +they +leant +back +in +their +chairs +reading +them +and +smoking +when +the +violin +began +playing +they +became +attentive +stood +up +and +went +on +tip +toe +over +to +the +door +of +the +hallway +where +they +stood +pressed +against +each +other +someone +must +have +heard +them +in +the +kitchen +as +gregor +s +father +called +out +is +the +playing +perhaps +unpleasant +for +the +gentlemen +we +can +stop +it +straight +away +on +the +contrary +said +the +middle +gentleman +would +the +young +lady +not +like +to +come +in +and +play +for +us +here +in +the +room +where +it +is +after +all +much +more +cosy +and +comfortable +oh +yes +we +d +love +to +called +back +gregor +s +father +as +if +he +had +been +the +violin +player +himself +the +gentlemen +stepped +back +into +the +room +and +waited +gregor +s +father +soon +appeared +with +the +music +stand +his +mother +with +the +music +and +his +sister +with +the +violin +she +calmly +prepared +everything +for +her +to +begin +playing +his +parents +who +had +never +rented +a +room +out +before +and +therefore +showed +an +exaggerated +courtesy +towards +the +three +gentlemen +did +not +even +dare +to +sit +on +their +own +chairs +his +father +leant +against +the +door +with +his +right +hand +pushed +in +between +two +buttons +on +his +uniform +coat +his +mother +though +was +offered +a +seat +by +one +of +the +gentlemen +and +sat +leaving +the +chair +where +the +gentleman +happened +to +have +placed +it +out +of +the +way +in +a +corner +his +sister +began +to +play +father +and +mother +paid +close +attention +one +on +each +side +to +the +movements +of +her +hands +drawn +in +by +the +playing +gregor +had +dared +to +come +forward +a +little +and +already +had +his +head +in +the +living +room +before +he +had +taken +great +pride +in +how +considerate +he +was +but +now +it +hardly +occurred +to +him +that +he +had +become +so +thoughtless +about +the +others +what +s +more +there +was +now +all +the +more +reason +to +keep +himself +hidden +as +he +was +covered +in +the +dust +that +lay +everywhere +in +his +room +and +flew +up +at +the +slightest +movement +he +carried +threads +hairs +and +remains +of +food +about +on +his +back +and +sides +he +was +much +too +indifferent +to +everything +now +to +lay +on +his +back +and +wipe +himself +on +the +carpet +like +he +had +used +to +do +several +times +a +day +and +despite +this +condition +he +was +not +too +shy +to +move +forward +a +little +onto +the +immaculate +floor +of +the +living +room +no +one +noticed +him +though +the +family +was +totally +preoccupied +with +the +violin +playing +at +first +the +three +gentlemen +had +put +their +hands +in +their +pockets +and +come +up +far +too +close +behind +the +music +stand +to +look +at +all +the +notes +being +played +and +they +must +have +disturbed +gregor +s +sister +but +soon +in +contrast +with +the +family +they +withdrew +back +to +the +window +with +their +heads +sunk +and +talking +to +each +other +at +half +volume +and +they +stayed +by +the +window +while +gregor +s +father +observed +them +anxiously +it +really +now +seemed +very +obvious +that +they +had +expected +to +hear +some +beautiful +or +entertaining +violin +playing +but +had +been +disappointed +that +they +had +had +enough +of +the +whole +performance +and +it +was +only +now +out +of +politeness +that +they +allowed +their +peace +to +be +disturbed +it +was +especially +unnerving +the +way +they +all +blew +the +smoke +from +their +cigarettes +upwards +from +their +mouth +and +noses +yet +gregor +s +sister +was +playing +so +beautifully +her +face +was +leant +to +one +side +following +the +lines +of +music +with +a +careful +and +melancholy +expression +gregor +crawled +a +little +further +forward +keeping +his +head +close +to +the +ground +so +that +he +could +meet +her +eyes +if +the +chance +came +was +he +an +animal +if +music +could +captivate +him +so +it +seemed +to +him +that +he +was +being +shown +the +way +to +the +unknown +nourishment +he +had +been +yearning +for +he +was +determined +to +make +his +way +forward +to +his +sister +and +tug +at +her +skirt +to +show +her +she +might +come +into +his +room +with +her +violin +as +no +one +appreciated +her +playing +here +as +much +as +he +would +he +never +wanted +to +let +her +out +of +his +room +not +while +he +lived +anyway +his +shocking +appearance +should +for +once +be +of +some +use +to +him +he +wanted +to +be +at +every +door +of +his +room +at +once +to +hiss +and +spit +at +the +attackers +his +sister +should +not +be +forced +to +stay +with +him +though +but +stay +of +her +own +free +will +she +would +sit +beside +him +on +the +couch +with +her +ear +bent +down +to +him +while +he +told +her +how +he +had +always +intended +to +send +her +to +the +conservatory +how +he +would +have +told +everyone +about +it +last +christmas +had +christmas +really +come +and +gone +already +if +this +misfortune +hadn +t +got +in +the +way +and +refuse +to +let +anyone +dissuade +him +from +it +on +hearing +all +this +his +sister +would +break +out +in +tears +of +emotion +and +gregor +would +climb +up +to +her +shoulder +and +kiss +her +neck +which +since +she +had +been +going +out +to +work +she +had +kept +free +without +any +necklace +or +collar +mr +samsa +shouted +the +middle +gentleman +to +gregor +s +father +pointing +without +wasting +any +more +words +with +his +forefinger +at +gregor +as +he +slowly +moved +forward +the +violin +went +silent +the +middle +of +the +three +gentlemen +first +smiled +at +his +two +friends +shaking +his +head +and +then +looked +back +at +gregor +his +father +seemed +to +think +it +more +important +to +calm +the +three +gentlemen +before +driving +gregor +out +even +though +they +were +not +at +all +upset +and +seemed +to +think +gregor +was +more +entertaining +that +the +violin +playing +had +been +he +rushed +up +to +them +with +his +arms +spread +out +and +attempted +to +drive +them +back +into +their +room +at +the +same +time +as +trying +to +block +their +view +of +gregor +with +his +body +now +they +did +become +a +little +annoyed +and +it +was +not +clear +whether +it +was +his +father +s +behaviour +that +annoyed +them +or +the +dawning +realisation +that +they +had +had +a +neighbour +like +gregor +in +the +next +room +without +knowing +it +they +asked +gregor +s +father +for +explanations +raised +their +arms +like +he +had +tugged +excitedly +at +their +beards +and +moved +back +towards +their +room +only +very +slowly +meanwhile +gregor +s +sister +had +overcome +the +despair +she +had +fallen +into +when +her +playing +was +suddenly +interrupted +she +had +let +her +hands +drop +and +let +violin +and +bow +hang +limply +for +a +while +but +continued +to +look +at +the +music +as +if +still +playing +but +then +she +suddenly +pulled +herself +together +lay +the +instrument +on +her +mother +s +lap +who +still +sat +laboriously +struggling +for +breath +where +she +was +and +ran +into +the +next +room +which +under +pressure +from +her +father +the +three +gentlemen +were +more +quickly +moving +toward +under +his +sister +s +experienced +hand +the +pillows +and +covers +on +the +beds +flew +up +and +were +put +into +order +and +she +had +already +finished +making +the +beds +and +slipped +out +again +before +the +three +gentlemen +had +reached +the +room +gregor +s +father +seemed +so +obsessed +with +what +he +was +doing +that +he +forgot +all +the +respect +he +owed +to +his +tenants +he +urged +them +and +pressed +them +until +when +he +was +already +at +the +door +of +the +room +the +middle +of +the +three +gentlemen +shouted +like +thunder +and +stamped +his +foot +and +thereby +brought +gregor +s +father +to +a +halt +i +declare +here +and +now +he +said +raising +his +hand +and +glancing +at +gregor +s +mother +and +sister +to +gain +their +attention +too +that +with +regard +to +the +repugnant +conditions +that +prevail +in +this +flat +and +with +this +family +here +he +looked +briefly +but +decisively +at +the +floor +i +give +immediate +notice +on +my +room +for +the +days +that +i +have +been +living +here +i +will +of +course +pay +nothing +at +all +on +the +contrary +i +will +consider +whether +to +proceed +with +some +kind +of +action +for +damages +from +you +and +believe +me +it +would +be +very +easy +to +set +out +the +grounds +for +such +an +action +he +was +silent +and +looked +straight +ahead +as +if +waiting +for +something +and +indeed +his +two +friends +joined +in +with +the +words +and +we +also +give +immediate +notice +with +that +he +took +hold +of +the +door +handle +and +slammed +the +door +gregor +s +father +staggered +back +to +his +seat +feeling +his +way +with +his +hands +and +fell +into +it +it +looked +as +if +he +was +stretching +himself +out +for +his +usual +evening +nap +but +from +the +uncontrolled +way +his +head +kept +nodding +it +could +be +seen +that +he +was +not +sleeping +at +all +throughout +all +this +gregor +had +lain +still +where +the +three +gentlemen +had +first +seen +him +his +disappointment +at +the +failure +of +his +plan +and +perhaps +also +because +he +was +weak +from +hunger +made +it +impossible +for +him +to +move +he +was +sure +that +everyone +would +turn +on +him +any +moment +and +he +waited +he +was +not +even +startled +out +of +this +state +when +the +violin +on +his +mother +s +lap +fell +from +her +trembling +fingers +and +landed +loudly +on +the +floor +father +mother +said +his +sister +hitting +the +table +with +her +hand +as +introduction +we +can +t +carry +on +like +this +maybe +you +can +t +see +it +but +i +can +i +don +t +want +to +call +this +monster +my +brother +all +i +can +say +is +we +have +to +try +and +get +rid +of +it +we +ve +done +all +that +s +humanly +possible +to +look +after +it +and +be +patient +i +don +t +think +anyone +could +accuse +us +of +doing +anything +wrong +she +s +absolutely +right +said +gregor +s +father +to +himself +his +mother +who +still +had +not +had +time +to +catch +her +breath +began +to +cough +dully +her +hand +held +out +in +front +of +her +and +a +deranged +expression +in +her +eyes +gregor +s +sister +rushed +to +his +mother +and +put +her +hand +on +her +forehead +her +words +seemed +to +give +gregor +s +father +some +more +definite +ideas +he +sat +upright +played +with +his +uniform +cap +between +the +plates +left +by +the +three +gentlemen +after +their +meal +and +occasionally +looked +down +at +gregor +as +he +lay +there +immobile +we +have +to +try +and +get +rid +of +it +said +gregor +s +sister +now +speaking +only +to +her +father +as +her +mother +was +too +occupied +with +coughing +to +listen +it +ll +be +the +death +of +both +of +you +i +can +see +it +coming +we +can +t +all +work +as +hard +as +we +have +to +and +then +come +home +to +be +tortured +like +this +we +can +t +endure +it +i +can +t +endure +it +any +more +and +she +broke +out +so +heavily +in +tears +that +they +flowed +down +the +face +of +her +mother +and +she +wiped +them +away +with +mechanical +hand +movements +my +child +said +her +father +with +sympathy +and +obvious +understanding +what +are +we +to +do +his +sister +just +shrugged +her +shoulders +as +a +sign +of +the +helplessness +and +tears +that +had +taken +hold +of +her +displacing +her +earlier +certainty +if +he +could +just +understand +us +said +his +father +almost +as +a +question +his +sister +shook +her +hand +vigorously +through +her +tears +as +a +sign +that +of +that +there +was +no +question +if +he +could +just +understand +us +repeated +gregor +s +father +closing +his +eyes +in +acceptance +of +his +sister +s +certainty +that +that +was +quite +impossible +then +perhaps +we +could +come +to +some +kind +of +arrangement +with +him +but +as +it +is +it +s +got +to +go +shouted +his +sister +that +s +the +only +way +father +you +ve +got +to +get +rid +of +the +idea +that +that +s +gregor +we +ve +only +harmed +ourselves +by +believing +it +for +so +long +how +can +that +be +gregor +if +it +were +gregor +he +would +have +seen +long +ago +that +it +s +not +possible +for +human +beings +to +live +with +an +animal +like +that +and +he +would +have +gone +of +his +own +free +will +we +wouldn +t +have +a +brother +any +more +then +but +we +could +carry +on +with +our +lives +and +remember +him +with +respect +as +it +is +this +animal +is +persecuting +us +it +s +driven +out +our +tenants +it +obviously +wants +to +take +over +the +whole +flat +and +force +us +to +sleep +on +the +streets +father +look +just +look +she +suddenly +screamed +he +s +starting +again +in +her +alarm +which +was +totally +beyond +gregor +s +comprehension +his +sister +even +abandoned +his +mother +as +she +pushed +herself +vigorously +out +of +her +chair +as +if +more +willing +to +sacrifice +her +own +mother +than +stay +anywhere +near +gregor +she +rushed +over +to +behind +her +father +who +had +become +excited +merely +because +she +was +and +stood +up +half +raising +his +hands +in +front +of +gregor +s +sister +as +if +to +protect +her +but +gregor +had +had +no +intention +of +frightening +anyone +least +of +all +his +sister +all +he +had +done +was +begin +to +turn +round +so +that +he +could +go +back +into +his +room +although +that +was +in +itself +quite +startling +as +his +pain +wracked +condition +meant +that +turning +round +required +a +great +deal +of +effort +and +he +was +using +his +head +to +help +himself +do +it +repeatedly +raising +it +and +striking +it +against +the +floor +he +stopped +and +looked +round +they +seemed +to +have +realised +his +good +intention +and +had +only +been +alarmed +briefly +now +they +all +looked +at +him +in +unhappy +silence +his +mother +lay +in +her +chair +with +her +legs +stretched +out +and +pressed +against +each +other +her +eyes +nearly +closed +with +exhaustion +his +sister +sat +next +to +his +father +with +her +arms +around +his +neck +maybe +now +they +ll +let +me +turn +round +thought +gregor +and +went +back +to +work +he +could +not +help +panting +loudly +with +the +effort +and +had +sometimes +to +stop +and +take +a +rest +no +one +was +making +him +rush +any +more +everything +was +left +up +to +him +as +soon +as +he +had +finally +finished +turning +round +he +began +to +move +straight +ahead +he +was +amazed +at +the +great +distance +that +separated +him +from +his +room +and +could +not +understand +how +he +had +covered +that +distance +in +his +weak +state +a +little +while +before +and +almost +without +noticing +it +he +concentrated +on +crawling +as +fast +as +he +could +and +hardly +noticed +that +there +was +not +a +word +not +any +cry +from +his +family +to +distract +him +he +did +not +turn +his +head +until +he +had +reached +the +doorway +he +did +not +turn +it +all +the +way +round +as +he +felt +his +neck +becoming +stiff +but +it +was +nonetheless +enough +to +see +that +nothing +behind +him +had +changed +only +his +sister +had +stood +up +with +his +last +glance +he +saw +that +his +mother +had +now +fallen +completely +asleep +he +was +hardly +inside +his +room +before +the +door +was +hurriedly +shut +bolted +and +locked +the +sudden +noise +behind +gregor +so +startled +him +that +his +little +legs +collapsed +under +him +it +was +his +sister +who +had +been +in +so +much +of +a +rush +she +had +been +standing +there +waiting +and +sprung +forward +lightly +gregor +had +not +heard +her +coming +at +all +and +as +she +turned +the +key +in +the +lock +she +said +loudly +to +her +parents +at +last +what +now +then +gregor +asked +himself +as +he +looked +round +in +the +darkness +he +soon +made +the +discovery +that +he +could +no +longer +move +at +all +this +was +no +surprise +to +him +it +seemed +rather +that +being +able +to +actually +move +around +on +those +spindly +little +legs +until +then +was +unnatural +he +also +felt +relatively +comfortable +it +is +true +that +his +entire +body +was +aching +but +the +pain +seemed +to +be +slowly +getting +weaker +and +weaker +and +would +finally +disappear +altogether +he +could +already +hardly +feel +the +decayed +apple +in +his +back +or +the +inflamed +area +around +it +which +was +entirely +covered +in +white +dust +he +thought +back +of +his +family +with +emotion +and +love +if +it +was +possible +he +felt +that +he +must +go +away +even +more +strongly +than +his +sister +he +remained +in +this +state +of +empty +and +peaceful +rumination +until +he +heard +the +clock +tower +strike +three +in +the +morning +he +watched +as +it +slowly +began +to +get +light +everywhere +outside +the +window +too +then +without +his +willing +it +his +head +sank +down +completely +and +his +last +breath +flowed +weakly +from +his +nostrils +when +the +cleaner +came +in +early +in +the +morning +they +d +often +asked +her +not +to +keep +slamming +the +doors +but +with +her +strength +and +in +her +hurry +she +still +did +so +that +everyone +in +the +flat +knew +when +she +d +arrived +and +from +then +on +it +was +impossible +to +sleep +in +peace +she +made +her +usual +brief +look +in +on +gregor +and +at +first +found +nothing +special +she +thought +he +was +laying +there +so +still +on +purpose +playing +the +martyr +she +attributed +all +possible +understanding +to +him +she +happened +to +be +holding +the +long +broom +in +her +hand +so +she +tried +to +tickle +gregor +with +it +from +the +doorway +when +she +had +no +success +with +that +she +tried +to +make +a +nuisance +of +herself +and +poked +at +him +a +little +and +only +when +she +found +she +could +shove +him +across +the +floor +with +no +resistance +at +all +did +she +start +to +pay +attention +she +soon +realised +what +had +really +happened +opened +her +eyes +wide +whistled +to +herself +but +did +not +waste +time +to +yank +open +the +bedroom +doors +and +shout +loudly +into +the +darkness +of +the +bedrooms +come +and +ave +a +look +at +this +it +s +dead +just +lying +there +stone +dead +mr +and +mrs +samsa +sat +upright +there +in +their +marriage +bed +and +had +to +make +an +effort +to +get +over +the +shock +caused +by +the +cleaner +before +they +could +grasp +what +she +was +saying +but +then +each +from +his +own +side +they +hurried +out +of +bed +mr +samsa +threw +the +blanket +over +his +shoulders +mrs +samsa +just +came +out +in +her +nightdress +and +that +is +how +they +went +into +gregor +s +room +on +the +way +they +opened +the +door +to +the +living +room +where +grete +had +been +sleeping +since +the +three +gentlemen +had +moved +in +she +was +fully +dressed +as +if +she +had +never +been +asleep +and +the +paleness +of +her +face +seemed +to +confirm +this +dead +asked +mrs +samsa +looking +at +the +charwoman +enquiringly +even +though +she +could +have +checked +for +herself +and +could +have +known +it +even +without +checking +that +s +what +i +said +replied +the +cleaner +and +to +prove +it +she +gave +gregor +s +body +another +shove +with +the +broom +sending +it +sideways +across +the +floor +mrs +samsa +made +a +movement +as +if +she +wanted +to +hold +back +the +broom +but +did +not +complete +it +now +then +said +mr +samsa +let +s +give +thanks +to +god +for +that +he +crossed +himself +and +the +three +women +followed +his +example +grete +who +had +not +taken +her +eyes +from +the +corpse +said +just +look +how +thin +he +was +he +didn +t +eat +anything +for +so +long +the +food +came +out +again +just +the +same +as +when +it +went +in +gregor +s +body +was +indeed +completely +dried +up +and +flat +they +had +not +seen +it +until +then +but +now +he +was +not +lifted +up +on +his +little +legs +nor +did +he +do +anything +to +make +them +look +away +grete +come +with +us +in +here +for +a +little +while +said +mrs +samsa +with +a +pained +smile +and +grete +followed +her +parents +into +the +bedroom +but +not +without +looking +back +at +the +body +the +cleaner +shut +the +door +and +opened +the +window +wide +although +it +was +still +early +in +the +morning +the +fresh +air +had +something +of +warmth +mixed +in +with +it +it +was +already +the +end +of +march +after +all +the +three +gentlemen +stepped +out +of +their +room +and +looked +round +in +amazement +for +their +breakfasts +they +had +been +forgotten +about +where +is +our +breakfast +the +middle +gentleman +asked +the +cleaner +irritably +she +just +put +her +finger +on +her +lips +and +made +a +quick +and +silent +sign +to +the +men +that +they +might +like +to +come +into +gregor +s +room +they +did +so +and +stood +around +gregor +s +corpse +with +their +hands +in +the +pockets +of +their +well +worn +coats +it +was +now +quite +light +in +the +room +then +the +door +of +the +bedroom +opened +and +mr +samsa +appeared +in +his +uniform +with +his +wife +on +one +arm +and +his +daughter +on +the +other +all +of +them +had +been +crying +a +little +grete +now +and +then +pressed +her +face +against +her +father +s +arm +leave +my +home +now +said +mr +samsa +indicating +the +door +and +without +letting +the +women +from +him +what +do +you +mean +asked +the +middle +of +the +three +gentlemen +somewhat +disconcerted +and +he +smiled +sweetly +the +other +two +held +their +hands +behind +their +backs +and +continually +rubbed +them +together +in +gleeful +anticipation +of +a +loud +quarrel +which +could +only +end +in +their +favour +i +mean +just +what +i +said +answered +mr +samsa +and +with +his +two +companions +went +in +a +straight +line +towards +the +man +at +first +he +stood +there +still +looking +at +the +ground +as +if +the +contents +of +his +head +were +rearranging +themselves +into +new +positions +alright +we +ll +go +then +he +said +and +looked +up +at +mr +samsa +as +if +he +had +been +suddenly +overcome +with +humility +and +wanted +permission +again +from +mr +samsa +for +his +decision +mr +samsa +merely +opened +his +eyes +wide +and +briefly +nodded +to +him +several +times +at +that +and +without +delay +the +man +actually +did +take +long +strides +into +the +front +hallway +his +two +friends +had +stopped +rubbing +their +hands +some +time +before +and +had +been +listening +to +what +was +being +said +now +they +jumped +off +after +their +friend +as +if +taken +with +a +sudden +fear +that +mr +samsa +might +go +into +the +hallway +in +front +of +them +and +break +the +connection +with +their +leader +once +there +all +three +took +their +hats +from +the +stand +took +their +sticks +from +the +holder +bowed +without +a +word +and +left +the +premises +mr +samsa +and +the +two +women +followed +them +out +onto +the +landing +but +they +had +had +no +reason +to +mistrust +the +men +intentions +and +as +they +leaned +over +the +landing +they +saw +how +the +three +gentlemen +made +slow +but +steady +progress +down +the +many +steps +as +they +turned +the +corner +on +each +floor +they +disappeared +and +would +reappear +a +few +moments +later +the +further +down +they +went +the +more +that +the +samsa +family +lost +interest +in +them +when +a +butcher +s +boy +proud +of +posture +with +his +tray +on +his +head +passed +them +on +his +way +up +and +came +nearer +than +they +were +mr +samsa +and +the +women +came +away +from +the +landing +and +went +as +if +relieved +back +into +the +flat +they +decided +the +best +way +to +make +use +of +that +day +was +for +relaxation +and +to +go +for +a +walk +not +only +had +they +earned +a +break +from +work +but +they +were +in +serious +need +of +it +so +they +sat +at +the +table +and +wrote +three +letters +of +excusal +mr +samsa +to +his +employers +mrs +samsa +to +her +contractor +and +grete +to +her +principal +the +cleaner +came +in +while +they +were +writing +to +tell +them +she +was +going +she +d +finished +her +work +for +that +morning +the +three +of +them +at +first +just +nodded +without +looking +up +from +what +they +were +writing +and +it +was +only +when +the +cleaner +still +did +not +seem +to +want +to +leave +that +they +looked +up +in +irritation +well +asked +mr +samsa +the +charwoman +stood +in +the +doorway +with +a +smile +on +her +face +as +if +she +had +some +tremendous +good +news +to +report +but +would +only +do +it +if +she +was +clearly +asked +to +the +almost +vertical +little +ostrich +feather +on +her +hat +which +had +been +source +of +irritation +to +mr +samsa +all +the +time +she +had +been +working +for +them +swayed +gently +in +all +directions +what +is +it +you +want +then +asked +mrs +samsa +whom +the +cleaner +had +the +most +respect +for +yes +she +answered +and +broke +into +a +friendly +laugh +that +made +her +unable +to +speak +straight +away +well +then +that +thing +in +there +you +needn +t +worry +about +how +you +re +going +to +get +rid +of +it +that +s +all +been +sorted +out +mrs +samsa +and +grete +bent +down +over +their +letters +as +if +intent +on +continuing +with +what +they +were +writing +mr +samsa +saw +that +the +cleaner +wanted +to +start +describing +everything +in +detail +but +with +outstretched +hand +he +made +it +quite +clear +that +she +was +not +to +so +as +she +was +prevented +from +telling +them +all +about +it +she +suddenly +remembered +what +a +hurry +she +was +in +and +clearly +peeved +called +out +cheerio +then +everyone +turned +round +sharply +and +left +slamming +the +door +terribly +as +she +went +tonight +she +gets +sacked +said +mr +samsa +but +he +received +no +reply +from +either +his +wife +or +his +daughter +as +the +charwoman +seemed +to +have +destroyed +the +peace +they +had +only +just +gained +they +got +up +and +went +over +to +the +window +where +they +remained +with +their +arms +around +each +other +mr +samsa +twisted +round +in +his +chair +to +look +at +them +and +sat +there +watching +for +a +while +then +he +called +out +come +here +then +let +s +forget +about +all +that +old +stuff +shall +we +come +and +give +me +a +bit +of +attention +the +two +women +immediately +did +as +he +said +hurrying +over +to +him +where +they +kissed +him +and +hugged +him +and +then +they +quickly +finished +their +letters +after +that +the +three +of +them +left +the +flat +together +which +was +something +they +had +not +done +for +months +and +took +the +tram +out +to +the +open +country +outside +the +town +they +had +the +tram +filled +with +warm +sunshine +all +to +themselves +leant +back +comfortably +on +their +seats +they +discussed +their +prospects +and +found +that +on +closer +examination +they +were +not +at +all +bad +until +then +they +had +never +asked +each +other +about +their +work +but +all +three +had +jobs +which +were +very +good +and +held +particularly +good +promise +for +the +future +the +greatest +improvement +for +the +time +being +of +course +would +be +achieved +quite +easily +by +moving +house +what +they +needed +now +was +a +flat +that +was +smaller +and +cheaper +than +the +current +one +which +had +been +chosen +by +gregor +one +that +was +in +a +better +location +and +most +of +all +more +practical +all +the +time +grete +was +becoming +livelier +with +all +the +worry +they +had +been +having +of +late +her +cheeks +had +become +pale +but +while +they +were +talking +mr +and +mrs +samsa +were +struck +almost +simultaneously +with +the +thought +of +how +their +daughter +was +blossoming +into +a +well +built +and +beautiful +young +lady +they +became +quieter +just +from +each +other +s +glance +and +almost +without +knowing +it +they +agreed +that +it +would +soon +be +time +to +find +a +good +man +for +her +and +as +if +in +confirmation +of +their +new +dreams +and +good +intentions +as +soon +as +they +reached +their +destination +grete +was +the +first +to +get +up +and +stretch +out +her +young +body +once +when +i +was +six +years +old +i +saw +a +magnificent +picture +in +a +book +called +true +stories +from +nature +about +the +primeval +forest +it +was +a +picture +of +a +boa +constrictor +in +the +act +of +swallowing +an +animal +here +is +a +copy +of +the +drawing +in +the +book +it +said +boa +constrictors +swallow +their +prey +whole +without +chewing +it +after +that +they +are +not +able +to +move +and +they +sleep +through +the +six +months +that +they +need +for +digestion +i +pondered +deeply +then +over +the +adventures +of +the +jungle +and +after +some +work +with +a +colored +pencil +i +succeeded +in +making +my +first +drawing +my +drawing +number +one +it +looked +like +this +i +showed +my +masterpiece +to +the +grown +ups +and +asked +them +whether +the +drawing +frightened +them +but +they +answered +frighten +why +should +any +one +be +frightened +by +a +hat +my +drawing +was +not +a +picture +of +a +hat +it +was +a +picture +of +a +boa +constrictor +digesting +an +elephant +but +since +the +grown +ups +were +not +able +to +understand +it +i +made +another +drawing +i +drew +the +inside +of +the +boa +constrictor +so +that +the +grown +ups +could +see +it +clearly +they +always +need +to +have +things +explained +my +drawing +number +two +looked +like +this +the +grown +ups +response +this +time +was +to +advise +me +to +lay +aside +my +drawings +of +boa +constrictors +whether +from +the +inside +or +the +outside +and +devote +myself +instead +to +geography +history +arithmetic +and +grammar +that +is +why +at +the +age +of +six +i +gave +up +what +might +have +been +a +magnificent +career +as +a +painter +i +had +been +disheartened +by +the +failure +of +my +drawing +number +one +and +my +drawing +number +two +grown +ups +never +understand +anything +by +themselves +and +it +is +tiresome +for +children +to +be +always +and +forever +explaining +things +to +them +so +then +i +chose +another +profession +and +learned +to +pilot +airplanes +i +have +flown +a +little +over +all +parts +of +the +world +and +it +is +true +that +geography +has +been +very +useful +to +me +at +a +glance +i +can +distinguish +china +from +arizona +if +one +gets +lost +in +the +night +such +knowledge +is +valuable +in +the +course +of +this +life +i +have +had +a +great +many +encounters +with +a +great +many +people +who +have +been +concerned +with +matters +of +consequence +i +have +lived +a +great +deal +among +grown +ups +i +have +seen +them +intimately +close +at +hand +and +that +hasn +t +much +improved +my +opinion +of +them +whenever +i +met +one +of +them +who +seemed +to +me +at +all +clear +sighted +i +tried +the +experiment +of +showing +him +my +drawing +number +one +which +i +have +always +kept +i +would +try +to +find +out +so +if +this +was +a +person +of +true +understanding +but +whoever +it +was +he +or +she +would +always +say +that +is +a +hat +then +i +would +never +talk +to +that +person +about +boa +constrictors +or +primeval +forests +or +stars +i +would +bring +myself +down +to +his +level +i +would +talk +to +him +about +bridge +and +golf +and +politics +and +neckties +and +the +grown +up +would +be +greatly +pleased +to +have +met +such +a +sensible +man +chapter +the +narrator +crashes +in +the +desert +and +makes +the +acquaintance +of +the +little +prince +so +i +lived +my +life +alone +without +anyone +that +i +could +really +talk +to +until +i +had +an +accident +with +my +plane +in +the +desert +of +sahara +six +years +ago +something +was +broken +in +my +engine +and +as +i +had +with +me +neither +a +mechanic +nor +any +passengers +i +set +myself +to +attempt +the +difficult +repairs +all +alone +it +was +a +question +of +life +or +death +for +me +i +had +scarcely +enough +drinking +water +to +last +a +week +the +first +night +then +i +went +to +sleep +on +the +sand +a +thousand +miles +from +any +human +habitation +i +was +more +isolated +than +a +shipwrecked +sailor +on +a +raft +in +the +middle +of +the +ocean +thus +you +can +imagine +my +amazement +at +sunrise +when +i +was +awakened +by +an +odd +little +voice +it +said +if +you +please +draw +me +a +sheep +what +draw +me +a +sheep +i +jumped +to +my +feet +completely +thunderstruck +i +blinked +my +eyes +hard +i +looked +carefully +all +around +me +and +i +saw +a +most +extraordinary +small +person +who +stood +there +examining +me +with +great +seriousness +here +you +may +see +the +best +potrait +that +later +i +was +able +to +make +of +him +but +my +drawing +is +certainly +very +much +less +charming +than +its +model +that +however +is +not +my +fault +the +grown +ups +discouraged +me +in +my +painter +s +career +when +i +was +six +years +old +and +i +never +learned +to +draw +anything +except +boas +from +the +outside +and +boas +from +the +inside +now +i +stared +at +this +sudden +apparition +with +my +eyes +fairly +starting +out +of +my +head +in +astonishment +remember +i +had +crashed +in +the +desert +a +thousand +miles +from +any +inhabited +region +and +yet +my +little +man +seemed +neither +to +be +straying +uncertainly +among +the +sands +nor +to +be +fainting +from +fatigue +or +hunger +or +thirst +or +fear +nothing +about +him +gave +any +suggestion +of +a +child +lost +in +the +middle +of +the +desert +a +thousand +miles +from +any +human +habitation +when +at +last +i +was +able +to +speak +i +said +to +him +but +what +are +you +doing +here +and +in +answer +he +repeated +very +slowly +as +if +he +were +speaking +of +a +matter +of +great +consequence +if +you +please +draw +me +a +sheep +when +a +mystery +is +too +overpowering +one +dare +not +disobey +absurd +as +it +might +seem +to +me +a +thousand +miles +from +any +human +habitation +and +in +danger +of +death +i +took +out +of +my +pocket +a +sheet +of +paper +and +my +fountain +pen +but +then +i +remembered +how +my +studies +had +been +concentrated +on +geography +history +arithmetic +and +grammar +and +i +told +the +little +chap +a +little +crossly +too +that +i +did +not +know +how +to +draw +he +answered +me +that +doesn +t +matter +draw +me +a +sheep +but +i +had +never +drawn +a +sheep +so +i +drew +for +him +one +of +the +two +pictures +i +had +drawn +so +often +it +was +that +of +the +boa +constrictor +from +the +outside +and +i +was +astounded +to +hear +the +little +fellow +greet +it +with +no +no +no +i +do +not +want +an +elephant +inside +a +boa +constrictor +a +boa +constrictor +is +a +very +dangerous +creature +and +an +elephant +is +very +cumbersome +where +i +live +everything +is +very +small +what +i +need +is +a +sheep +draw +me +a +sheep +so +then +i +made +a +drawing +he +looked +at +it +carefully +then +he +said +no +this +sheep +is +already +very +sickly +make +me +another +so +i +made +another +drawing +my +friend +smiled +gently +and +indulgenty +you +see +yourself +he +said +that +this +is +not +a +sheep +this +is +a +ram +it +has +horns +so +then +i +did +my +drawing +over +once +more +but +it +was +rejected +too +just +like +the +others +this +one +is +too +old +i +want +a +sheep +that +will +live +a +long +time +by +this +time +my +patience +was +exhausted +because +i +was +in +a +hurry +to +start +taking +my +engine +apart +so +i +tossed +off +this +drawing +and +i +threw +out +an +explanation +with +it +this +is +only +his +box +the +sheep +you +asked +for +is +inside +i +was +very +surprised +to +see +a +light +break +over +the +face +of +my +young +judge +that +is +exactly +the +way +i +wanted +it +do +you +think +that +this +sheep +will +have +to +have +a +great +deal +of +grass +why +because +where +i +live +everything +is +very +small +there +will +surely +be +enough +grass +for +him +i +said +it +is +a +very +small +sheep +that +i +have +given +you +he +bent +his +head +over +the +drawing +not +so +small +that +look +he +has +gone +to +sleep +and +that +is +how +i +made +the +acquaintance +of +the +little +prince +chapter +the +narrator +learns +more +about +from +where +the +little +prince +came +it +took +me +a +long +time +to +learn +where +he +came +from +the +little +prince +who +asked +me +so +many +questions +never +seemed +to +hear +the +ones +i +asked +him +it +was +from +words +dropped +by +chance +that +little +by +little +everything +was +revealed +to +me +the +first +time +he +saw +my +airplane +for +instance +i +shall +not +draw +my +airplane +that +would +be +much +too +complicated +for +me +he +asked +me +what +is +that +object +that +is +not +an +object +it +flies +it +is +an +airplane +it +is +my +airplane +and +i +was +proud +to +have +him +learn +that +i +could +fly +he +cried +out +then +what +you +dropped +down +from +the +sky +yes +i +answered +modestly +oh +that +is +funny +and +the +little +prince +broke +into +a +lovely +peal +of +laughter +which +irritated +me +very +much +i +like +my +misfortunes +to +be +taken +seriously +then +he +added +so +you +too +come +from +the +sky +which +is +your +planet +at +that +moment +i +caught +a +gleam +of +light +in +the +impenetrable +mystery +of +his +presence +and +i +demanded +abruptly +do +you +come +from +another +planet +but +he +did +not +reply +he +tossed +his +head +gently +without +taking +his +eyes +from +my +plane +it +is +true +that +on +that +you +can +t +have +come +from +very +far +away +and +he +sank +into +a +reverie +which +lasted +a +long +time +then +taking +my +sheep +out +of +his +pocket +he +buried +himself +in +the +contemplation +of +his +treasure +you +can +imagine +how +my +curiosity +was +aroused +by +this +half +confidence +about +the +other +planets +i +made +a +great +effort +therefore +to +find +out +more +on +this +subject +my +little +man +where +do +you +come +from +what +is +this +where +i +live +of +which +you +speak +where +do +you +want +to +take +your +sheep +after +a +reflective +silence +he +answered +the +thing +that +is +so +good +about +the +box +you +have +given +me +is +that +at +night +he +can +use +it +as +his +house +that +is +so +and +if +you +are +good +i +will +give +you +a +string +too +so +that +you +can +tie +him +during +the +day +and +a +post +to +tie +him +to +but +the +little +prince +seemed +shocked +by +this +offer +tie +him +what +a +queer +idea +but +if +you +don +t +tie +him +i +said +he +will +wander +off +somewhere +and +get +lost +my +friend +broke +into +another +peal +of +laughter +but +where +do +you +think +he +would +go +anywhere +straight +ahead +of +him +then +the +little +prince +said +earnestly +that +doesn +t +matter +where +i +live +everything +is +so +small +and +with +perhaps +a +hint +of +sadness +he +added +straight +ahead +of +him +nobody +can +go +very +far +chapter +the +narrator +speculates +as +to +which +asteroid +from +which +the +little +prince +came +i +had +thus +learned +a +second +fact +of +great +importance +this +was +that +the +planet +the +little +prince +came +from +was +scarcely +any +larger +than +a +house +but +that +did +not +really +surprise +me +much +i +knew +very +well +that +in +addition +to +the +great +planets +such +as +the +earth +jupiter +mars +venus +to +which +we +have +given +names +there +are +also +hundreds +of +others +some +of +which +are +so +small +that +one +has +a +hard +time +seeing +them +through +the +telescope +when +an +astronomer +discovers +one +of +these +he +does +not +give +it +a +name +but +only +a +number +he +might +call +it +for +example +asteroid +i +have +serious +reason +to +believe +that +the +planet +from +which +the +little +prince +came +is +the +asteroid +known +as +b +this +asteroid +has +only +once +been +seen +through +the +telescope +that +was +by +a +turkish +astronomer +in +on +making +his +discovery +the +astronomer +had +presented +it +to +the +international +astronomical +congress +in +a +great +demonstration +but +he +was +in +turkish +costume +and +so +nobody +would +believe +what +he +said +grown +ups +are +like +that +fortunately +however +for +the +reputation +of +asteroid +b +a +turkish +dictator +made +a +law +that +his +subjects +under +pain +of +death +should +change +to +european +costume +so +in +the +astronomer +gave +his +demonstration +all +over +again +dressed +with +impressive +style +and +elegance +and +this +time +everybody +accepted +his +report +if +i +have +told +you +these +details +about +the +asteroid +and +made +a +note +of +its +number +for +you +it +is +on +account +of +the +grown +ups +and +their +ways +when +you +tell +them +that +you +have +made +a +new +friend +they +never +ask +you +any +questions +about +essential +matters +they +never +say +to +you +what +does +his +voice +sound +like +what +games +does +he +love +best +does +he +collect +butterflies +instead +they +demand +how +old +is +he +how +many +brothers +has +he +how +much +does +he +weigh +how +much +money +does +his +father +make +only +from +these +figures +do +they +think +they +have +learned +anything +about +him +if +you +were +to +say +to +the +grown +ups +i +saw +a +beautiful +house +made +of +rosy +brick +with +geraniums +in +the +windows +and +doves +on +the +roof +they +would +not +be +able +to +get +any +idea +of +that +house +at +all +you +would +have +to +say +to +them +i +saw +a +house +that +cost +then +they +would +exclaim +oh +what +a +pretty +house +that +is +just +so +you +might +say +to +them +the +proof +that +the +little +prince +existed +is +that +he +was +charming +that +he +laughed +and +that +he +was +looking +for +a +sheep +if +anybody +wants +a +sheep +that +is +a +proof +that +he +exists +and +what +good +would +it +do +to +tell +them +that +they +would +shrug +their +shoulders +and +treat +you +like +a +child +but +if +you +said +to +them +the +planet +he +came +from +is +asteroid +b +then +they +would +be +convinced +and +leave +you +in +peace +from +their +questions +they +are +like +that +one +must +not +hold +it +against +them +children +should +always +show +great +forbearance +toward +grown +up +people +but +certainly +for +us +who +understand +life +figures +are +a +matter +of +indifference +i +should +have +liked +to +begin +this +story +in +the +fashion +of +the +fairy +tales +i +should +have +like +to +say +once +upon +a +time +there +was +a +little +prince +who +lived +on +a +planet +that +was +scarcely +any +bigger +than +himself +and +who +had +need +of +a +sheep +to +those +who +understand +life +that +would +have +given +a +much +greater +air +of +truth +to +my +story +for +i +do +not +want +any +one +to +read +my +book +carelessly +i +have +suffered +too +much +grief +in +setting +down +these +memories +six +years +have +already +passed +since +my +friend +went +away +from +me +with +his +sheep +if +i +try +to +describe +him +here +it +is +to +make +sure +that +i +shall +not +forget +him +to +forget +a +friend +is +sad +not +every +one +has +had +a +friend +and +if +i +forget +him +i +may +become +like +the +grown +ups +who +are +no +longer +interested +in +anything +but +figures +it +is +for +that +purpose +again +that +i +have +bought +a +box +of +paints +and +some +pencils +it +is +hard +to +take +up +drawing +again +at +my +age +when +i +have +never +made +any +pictures +except +those +of +the +boa +constrictor +from +the +outside +and +the +boa +constrictor +from +the +inside +since +i +was +six +i +shall +certainly +try +to +make +my +portraits +as +true +to +life +as +possible +but +i +am +not +at +all +sure +of +success +one +drawing +goes +along +all +right +and +another +has +no +resemblance +to +its +subject +i +make +some +errors +too +in +the +little +prince +s +height +in +one +place +he +is +too +tall +and +in +another +too +short +and +i +feel +some +doubts +about +the +color +of +his +costume +so +i +fumble +along +as +best +i +can +now +good +now +bad +and +i +hope +generally +fair +to +middling +in +certain +more +important +details +i +shall +make +mistakes +also +but +that +is +something +that +will +not +be +my +fault +my +friend +never +explained +anything +to +me +he +thought +perhaps +that +i +was +like +himself +but +i +alas +do +not +know +how +to +see +sheep +through +t +he +walls +of +boxes +perhaps +i +am +a +little +like +the +grown +ups +i +have +had +to +grow +old +chapter +we +are +warned +as +to +the +dangers +of +the +baobabs +as +each +day +passed +i +would +learn +in +our +talk +something +about +the +little +prince +s +planet +his +departure +from +it +his +journey +the +information +would +come +very +slowly +as +it +might +chance +to +fall +from +his +thoughts +it +was +in +this +way +that +i +heard +on +the +third +day +about +the +catastrophe +of +the +baobabs +this +time +once +more +i +had +the +sheep +to +thank +for +it +for +the +little +prince +asked +me +abruptly +as +if +seized +by +a +grave +doubt +it +is +true +isn +t +it +that +sheep +eat +little +bushes +yes +that +is +true +ah +i +am +glad +i +did +not +understand +why +it +was +so +important +that +sheep +should +eat +little +bushes +but +the +little +prince +added +then +it +follows +that +they +also +eat +baobabs +i +pointed +out +to +the +little +prince +that +baobabs +were +not +little +bushes +but +on +the +contrary +trees +as +big +as +castles +and +that +even +if +he +took +a +whole +herd +of +elephants +away +with +him +the +herd +would +not +eat +up +one +single +baobab +the +idea +of +the +herd +of +elephants +made +the +little +prince +laugh +we +would +have +to +put +them +one +on +top +of +the +other +he +said +but +he +made +a +wise +comment +before +they +grow +so +big +the +baobabs +start +out +by +being +little +that +is +strictly +correct +i +said +but +why +do +you +want +the +sheep +to +eat +the +little +baobabs +he +answered +me +at +once +oh +come +come +as +if +he +were +speaking +of +something +that +was +self +evident +and +i +was +obliged +to +make +a +great +mental +effort +to +solve +this +problem +without +any +assistance +indeed +as +i +learned +there +were +on +the +planet +where +the +little +prince +lived +as +on +all +planets +good +plants +and +bad +plants +in +consequence +there +were +good +seeds +from +good +plants +and +bad +seeds +from +bad +plants +but +seeds +are +invisible +they +sleep +deep +in +the +heart +of +the +earth +s +darkness +until +some +one +among +them +is +seized +with +the +desire +to +awaken +then +this +little +seed +will +stretch +itself +and +begin +timidly +at +first +to +push +a +charming +little +sprig +inoffensively +upward +toward +the +sun +if +it +is +only +a +sprout +of +radish +or +the +sprig +of +a +rose +bush +one +would +let +it +grow +wherever +it +might +wish +but +when +it +is +a +bad +plant +one +must +destroy +it +as +soon +as +possible +the +very +first +instant +that +one +recognizes +it +now +there +were +some +terrible +seeds +on +the +planet +that +was +the +home +of +the +little +prince +and +these +were +the +seeds +of +the +baobab +the +soil +of +that +planet +was +infested +with +them +a +baobab +is +something +you +will +never +never +be +able +to +get +rid +of +if +you +attend +to +it +too +late +it +spreads +over +the +entire +planet +it +bores +clear +through +it +with +its +roots +and +if +the +planet +is +too +small +and +the +baobabs +are +too +many +they +split +it +in +pieces +it +is +a +question +of +discipline +the +little +prince +said +to +me +later +on +when +you +ve +finished +your +own +toilet +in +the +morning +then +it +is +time +to +attend +to +the +toilet +of +your +planet +just +so +with +the +greatest +care +you +must +see +to +it +that +you +pull +up +regularly +all +the +baobabs +at +the +very +first +moment +when +they +can +be +distinguished +from +the +rosebushes +which +they +resemble +so +closely +in +their +earliest +youth +it +is +very +tedious +work +the +little +prince +added +but +very +easy +and +one +day +he +said +to +me +you +ought +to +make +a +beautiful +drawing +so +that +the +children +where +you +live +can +see +exactly +how +all +this +is +that +would +be +very +useful +to +them +if +they +were +to +travel +some +day +sometimes +he +added +there +is +no +harm +in +putting +off +a +piece +of +work +until +another +day +but +when +it +is +a +matter +of +baobabs +that +always +means +a +catastrophe +i +knew +a +planet +that +was +inhabited +by +a +lazy +man +he +neglected +three +little +bushes +so +as +the +little +prince +described +it +to +me +i +have +made +a +drawing +of +that +planet +i +do +not +much +like +to +take +the +tone +of +a +moralist +but +the +danger +of +the +baobabs +is +so +little +understood +and +such +considerable +risks +would +be +run +by +anyone +who +might +get +lost +on +an +asteroid +that +for +once +i +am +breaking +through +my +reserve +children +i +say +plainly +watch +out +for +the +baobabs +my +friends +like +myself +have +been +skirting +this +danger +for +a +long +time +without +ever +knowing +it +and +so +it +is +for +them +that +i +have +worked +so +hard +over +this +drawing +the +lesson +which +i +pass +on +by +this +means +is +worth +all +the +trouble +it +has +cost +me +perhaps +you +will +ask +me +why +are +there +no +other +drawing +in +this +book +as +magnificent +and +impressive +as +this +drawing +of +the +baobabs +the +reply +is +simple +i +have +tried +but +with +the +others +i +have +not +been +successful +when +i +made +the +drawing +of +the +baobabs +i +was +carried +beyond +myself +by +the +inspiring +force +of +urgent +necessity +chapter +the +little +prince +and +the +narrator +talk +about +sunsets +oh +little +prince +bit +by +bit +i +came +to +understand +the +secrets +of +your +sad +little +life +for +a +long +time +you +had +found +your +only +entertainment +in +the +quiet +pleasure +of +looking +at +the +sunset +i +learned +that +new +detail +on +the +morning +of +the +fourth +day +w +hen +you +said +to +me +i +am +very +fond +of +sunsets +come +let +us +go +look +at +a +sunset +now +but +we +must +wait +i +said +wait +for +what +for +the +sunset +we +must +wait +until +it +is +time +at +first +you +seemed +to +be +very +much +surprised +and +then +you +laughed +to +yourself +you +said +to +me +i +am +always +thinking +that +i +am +at +home +just +so +everybody +knows +that +when +it +is +noon +in +the +united +states +the +sun +is +setting +over +france +if +you +could +fly +to +france +in +one +minute +you +could +go +straight +into +the +sunset +right +from +noon +unfortunately +france +is +too +far +away +for +that +but +on +your +tiny +planet +my +little +prince +all +you +need +do +is +move +your +chair +a +few +steps +you +can +see +the +day +end +and +the +twilight +falling +whenever +you +like +one +day +you +said +to +me +i +saw +the +sunset +forty +four +times +and +a +little +later +you +added +you +know +one +loves +the +sunset +when +one +is +so +sad +were +you +so +sad +then +i +asked +on +the +day +of +the +forty +four +sunsets +but +the +little +prince +made +no +reply +chapter +the +narrator +learns +about +the +secret +of +the +little +prince +s +life +on +the +fifth +day +again +as +always +it +was +thanks +to +the +sheep +the +secret +of +the +little +prince +s +life +was +revealed +to +me +abruptly +without +anything +to +lead +up +to +it +and +as +if +the +question +had +been +born +of +long +and +silent +meditation +on +his +problem +he +demanded +a +sheep +if +it +eats +little +bushes +does +it +eat +flowers +too +a +sheep +i +answered +eats +anything +it +finds +in +its +reach +even +flowers +that +have +thorns +yes +even +flowers +that +have +thorns +then +the +thorns +what +use +are +they +i +did +not +know +at +that +moment +i +was +very +busy +trying +to +unscrew +a +bolt +that +had +got +stuck +in +my +engine +i +was +very +much +worried +for +it +was +becoming +clear +to +me +that +the +breakdown +of +my +plane +was +extremely +serious +and +i +had +so +little +drinking +water +left +that +i +had +to +fear +for +the +worst +the +thorns +what +use +are +they +the +little +prince +never +let +go +of +a +question +once +he +had +asked +it +as +for +me +i +was +upset +over +that +bolt +and +i +answered +with +the +first +thing +that +came +into +my +head +the +thorns +are +of +no +use +at +all +flowers +have +thorns +just +for +spite +oh +there +was +a +moment +of +complete +silence +then +the +little +prince +flashed +back +at +me +with +a +kind +of +resentfulness +i +don +t +believe +you +flowers +are +weak +creatures +they +are +na +飗 +e +they +reassure +themselves +as +best +they +can +they +believe +that +their +thorns +are +terrible +weapons +i +did +not +answer +at +that +instant +i +was +saying +to +myself +if +this +bolt +still +won +t +turn +i +am +going +to +knock +it +out +with +the +hammer +again +the +little +prince +disturbed +my +thoughts +and +you +actually +believe +that +the +flowers +oh +no +i +cried +no +no +no +i +don +t +believe +anything +i +answered +you +with +the +first +thing +that +came +into +my +head +don +t +you +see +i +am +very +busy +with +matters +of +consequence +he +stared +at +me +thunderstruck +matters +of +consequence +he +looked +at +me +there +with +my +hammer +in +my +hand +my +fingers +black +with +engine +grease +bending +down +over +an +object +which +seemed +to +him +extremely +ugly +you +talk +just +like +the +grown +ups +that +made +me +a +little +ashamed +but +he +went +on +relentlessly +you +mix +everything +up +together +you +confuse +everything +he +was +really +very +angry +he +tossed +his +golden +curls +in +the +breeze +i +know +a +planet +where +there +is +a +certain +red +faced +gentleman +he +has +never +smelled +a +flower +he +has +never +looked +at +a +star +he +has +never +loved +any +one +he +has +never +done +anything +in +his +life +but +add +up +figures +and +all +day +he +says +over +and +over +just +like +you +i +am +busy +with +matters +of +consequence +and +that +makes +him +swell +up +with +pride +but +he +is +not +a +man +he +is +a +mushroom +a +what +a +mushroom +the +little +prince +was +now +white +with +rage +the +flowers +have +been +growing +thorns +for +millions +of +years +for +millions +of +years +the +sheep +have +been +eating +them +just +the +same +and +is +it +not +a +matter +of +consequence +to +try +to +understand +why +the +flowers +go +to +so +much +trouble +to +grow +thorns +which +are +never +of +any +use +to +them +is +the +warfare +between +the +sheep +and +the +flowers +not +important +is +this +not +of +more +consequence +than +a +fat +red +faced +gentleman +s +sums +and +if +i +know +i +myself +one +flower +which +is +unique +in +the +world +which +grows +nowhere +but +on +my +planet +but +which +one +little +sheep +can +destroy +in +a +single +bite +some +morning +without +even +noticing +what +he +is +doing +oh +you +think +that +is +not +important +his +face +turned +from +white +to +red +as +he +continued +if +some +one +loves +a +flower +of +which +just +one +single +blossom +grows +in +all +the +millions +and +millions +of +stars +it +is +enough +to +make +him +happy +just +to +look +at +the +stars +he +can +say +to +himself +somewhere +my +flower +is +there +but +if +the +sheep +eats +the +flower +in +one +moment +all +his +stars +will +be +darkened +and +you +think +that +is +not +important +he +could +not +say +anything +more +his +words +were +choked +by +sobbing +the +night +had +fallen +i +had +let +my +tools +drop +from +my +hands +of +what +moment +now +was +my +hammer +my +bolt +or +thirst +or +death +on +one +star +one +planet +my +planet +the +earth +there +was +a +little +prince +to +be +comforted +i +took +him +in +my +arms +and +rocked +him +i +said +to +him +the +flower +that +you +love +is +not +in +danger +i +will +draw +you +a +muzzle +for +your +sheep +i +will +draw +you +a +railing +to +put +around +your +flower +i +will +i +did +not +know +what +to +say +to +him +i +felt +awkward +and +blundering +i +did +not +know +how +i +could +reach +him +where +i +could +overtake +him +and +go +on +hand +in +hand +with +him +once +more +it +is +such +a +secret +place +the +land +of +tears +chapter +the +rose +arrives +at +the +little +prince +s +planet +i +soon +learned +to +know +this +flower +better +on +the +little +prince +s +planet +the +flowers +had +always +been +very +simple +they +had +only +one +ring +of +petals +they +took +up +no +room +at +all +they +were +a +trouble +to +nobody +one +morning +they +would +appear +in +the +grass +and +by +night +they +would +have +faded +peacefully +away +but +one +day +from +a +seed +blown +from +no +one +knew +where +a +new +flower +had +come +up +and +the +little +prince +had +watched +very +closely +over +this +small +sprout +which +was +not +like +any +other +small +sprouts +on +his +planet +it +might +you +see +have +been +a +new +kind +of +baobab +the +shrub +soon +stopped +growing +and +began +to +get +ready +to +produce +a +flower +the +little +prince +who +was +present +at +the +first +appearance +of +a +huge +bud +felt +at +once +that +some +sort +of +miraculous +apparition +must +emerge +from +it +but +the +flower +was +not +satisfied +to +complete +the +preparations +for +her +beauty +in +the +shelter +of +her +green +chamber +she +chose +her +colours +with +the +greatest +care +she +adjusted +her +petals +one +by +one +she +did +not +wish +to +go +out +into +the +world +all +rumpled +like +the +field +poppies +it +was +only +in +the +full +radiance +of +her +beauty +that +she +wished +to +appear +oh +yes +she +was +a +coquettish +creature +and +her +mysterious +adornment +lasted +for +days +and +days +then +one +morning +exactly +at +sunrise +she +suddenly +showed +herself +and +after +working +with +all +this +painstaking +precision +she +yawned +and +said +ah +i +am +scarcely +awake +i +beg +that +you +will +excuse +me +my +petals +are +still +all +disarranged +but +the +little +prince +could +not +restrain +his +admiration +oh +how +beautiful +you +are +am +i +not +the +flower +responded +sweetly +and +i +was +born +at +the +same +moment +as +the +sun +the +little +prince +could +guess +easily +enough +that +she +was +not +any +too +modest +but +how +moving +and +exciting +she +was +i +think +it +is +time +for +breakfast +she +added +an +instant +later +if +you +would +have +the +kindness +to +think +of +my +needs +and +the +little +prince +completely +abashed +went +to +look +for +a +sprinkling +can +of +fresh +water +so +he +tended +the +flower +so +too +she +began +very +quickly +to +torment +him +with +her +vanity +which +was +if +the +truth +be +known +a +little +difficult +to +deal +with +one +day +for +instance +when +she +was +speaking +of +her +four +thorns +she +said +to +the +little +prince +let +the +tigers +come +with +their +claws +there +are +no +tigers +on +my +planet +the +little +prince +objected +and +anyway +tigers +do +not +eat +weeds +i +am +not +a +weed +the +flower +replied +sweetly +please +excuse +me +i +am +not +at +all +afraid +of +tigers +she +went +on +but +i +have +a +horror +of +drafts +i +suppose +you +wouldn +t +have +a +screen +for +me +a +horror +of +drafts +that +is +bad +luck +for +a +plant +remarked +the +little +prince +and +added +to +himself +this +flower +is +a +very +complex +creature +at +night +i +want +you +to +put +me +under +a +glass +globe +it +is +very +cold +where +you +live +in +the +place +i +came +from +but +she +interrupted +herself +at +that +point +she +had +come +in +the +form +of +a +seed +she +could +not +have +known +anything +of +any +other +worlds +embarassed +over +having +let +herself +be +caught +on +the +verge +of +such +a +na +飗 +e +untruth +she +coughed +two +or +three +times +in +order +to +put +the +little +prince +in +the +wrong +the +screen +i +was +just +going +to +look +for +it +when +you +spoke +to +me +then +she +forced +her +cough +a +little +more +so +that +he +should +suffer +from +remorse +just +the +same +so +the +little +prince +in +spite +of +all +the +good +will +that +was +inseparable +from +his +love +had +soon +come +to +doubt +her +he +had +taken +seriously +words +which +were +without +importance +and +it +made +him +very +unhappy +i +ought +not +to +have +listened +to +her +he +confided +to +me +one +day +one +never +ought +to +listen +to +the +flowers +one +should +simply +look +at +them +and +breathe +their +fragrance +mine +perfumed +all +my +planet +but +i +did +not +know +how +to +take +pleasure +in +all +her +grace +this +tale +of +claws +which +disturbed +me +so +much +should +only +have +filled +my +heart +with +tenderness +and +pity +and +he +continued +his +confidences +the +fact +is +that +i +did +not +know +how +to +understand +anything +i +ought +to +have +judged +by +deeds +and +not +by +words +she +cast +her +fragrance +and +her +radiance +over +me +i +ought +never +to +have +run +away +from +her +i +ought +to +have +guessed +all +the +affection +that +lay +behind +her +poor +little +strategems +flowers +are +so +inconsistent +but +i +was +too +young +to +know +how +to +love +her +chapter +the +little +prince +leaves +his +planet +i +believe +that +for +his +escape +he +took +advantage +of +the +migration +of +a +flock +of +wild +birds +on +the +morning +of +his +departure +he +put +his +planet +in +perfect +order +he +carefully +cleaned +out +his +active +volcanoes +he +possessed +two +active +volcanoes +and +they +were +very +convenient +for +heating +his +breakfast +in +the +morning +he +also +had +one +volcano +that +was +extinct +but +as +he +said +one +never +knows +so +he +cleaned +out +the +extinct +volcano +too +if +they +are +well +cleaned +out +volcanoes +burn +slowly +and +steadily +without +any +eruptions +volcanic +eruptions +are +like +fires +in +a +chimney +on +our +earth +we +are +obviously +much +too +small +to +clean +out +our +volcanoes +that +is +why +they +bring +no +end +of +trouble +upon +us +the +little +prince +also +pulled +up +with +a +certain +sense +of +dejection +the +last +little +shoots +of +the +baobabs +he +believed +that +he +would +never +want +to +return +but +on +this +last +morning +all +these +familiar +tasks +seemed +very +precious +to +him +and +when +he +watered +the +flower +for +the +last +time +and +prepared +to +place +her +under +the +shelter +of +her +glass +globe +he +realised +that +he +was +very +close +to +tears +goodbye +he +said +to +the +flower +but +she +made +no +answer +goodbye +he +said +again +the +flower +coughed +but +it +was +not +because +she +had +a +cold +i +have +been +silly +she +said +to +him +at +last +i +ask +your +forgiveness +try +to +be +happy +he +was +surprised +by +this +absence +of +reproaches +he +stood +there +all +bewildered +the +glass +globe +held +arrested +in +mid +air +he +did +not +understand +this +quiet +sweetness +of +course +i +love +you +the +flower +said +to +him +it +is +my +fault +that +you +have +not +known +it +all +the +while +that +is +of +no +importance +but +you +you +have +been +just +as +foolish +as +i +try +to +be +happy +let +the +glass +globe +be +i +don +t +want +it +any +more +but +the +wind +my +cold +is +not +so +bad +as +all +that +the +cool +night +air +will +do +me +good +i +am +a +flower +but +the +animals +well +i +must +endure +the +presence +of +two +or +three +caterpillars +if +i +wish +to +become +acquainted +with +the +butterflies +it +seems +that +they +are +very +beautiful +and +if +not +the +butterflies +and +the +caterpillars +who +will +call +upon +me +you +will +be +far +away +as +for +the +large +animals +i +am +not +at +all +afraid +of +any +of +them +i +have +my +claws +and +na +飗 +ely +she +showed +her +four +thorns +then +she +added +don +t +linger +like +this +you +have +decided +to +go +away +now +go +for +she +did +not +want +him +to +see +her +crying +she +was +such +a +proud +flower +chapter +the +little +prince +visits +the +king +he +found +himself +in +the +neighborhood +of +the +asteroids +and +he +began +therefore +by +visiting +them +in +order +to +add +to +his +knowledge +the +first +of +them +was +inhabited +by +a +king +clad +in +royal +purple +and +ermine +he +was +seated +upon +a +throne +which +was +at +the +same +time +both +simple +and +majestic +ah +here +is +a +subject +exclaimed +the +king +when +he +saw +the +little +prince +coming +and +the +little +prince +asked +himself +how +could +he +recognize +me +when +he +had +never +seen +me +before +he +did +not +know +how +the +world +is +simplified +for +kings +to +them +all +men +are +subjects +approach +so +that +i +may +see +you +better +said +the +king +who +felt +consumingly +proud +of +being +at +last +a +king +over +somebody +the +little +prince +looked +everywhere +to +find +a +place +to +sit +down +but +the +entire +planet +was +crammed +and +obstructed +by +the +king +s +magnificent +ermine +robe +so +he +remained +standing +upright +and +since +he +was +tired +he +yawned +it +is +contrary +to +etiquette +to +yawn +in +the +presence +of +a +king +the +monarch +said +to +him +i +forbid +you +to +do +so +i +can +t +help +it +i +can +t +stop +myself +replied +the +little +prince +thoroughly +embarrassed +i +have +come +on +a +long +journey +and +i +have +had +no +sleep +ah +then +the +king +said +i +order +you +to +yawn +it +is +years +since +i +have +seen +anyone +yawning +yawns +to +me +are +objects +of +curiosity +come +now +yawn +again +it +is +an +order +that +frightens +me +i +cannot +any +more +murmured +the +little +prince +now +completely +abashed +hum +hum +replied +the +king +then +i +i +order +you +sometimes +to +yawn +and +sometimes +to +he +sputtered +a +little +and +seemed +vexed +for +what +the +king +fundamentally +insisted +upon +was +that +his +authority +should +be +respected +he +tolerated +no +disobedience +he +was +an +absolute +monarch +but +because +he +was +a +very +good +man +he +made +his +orders +reasonable +if +i +ordered +a +general +he +would +say +by +way +of +example +if +i +ordered +a +general +to +change +himself +into +a +sea +bird +and +if +the +general +did +not +obey +me +that +would +not +be +the +fault +of +the +general +it +would +be +my +fault +may +i +sit +down +came +now +a +timid +inquiry +from +the +little +prince +i +order +you +to +do +so +the +king +answered +him +and +majestically +gathered +in +a +fold +of +his +ermine +mantle +but +the +little +prince +was +wondering +the +planet +was +tiny +over +what +could +this +king +really +rule +sire +he +said +to +him +i +beg +that +you +will +excuse +my +asking +you +a +question +i +order +you +to +ask +me +a +question +the +king +hastened +to +assure +him +sire +over +what +do +you +rule +over +everything +said +the +king +with +magnificent +simplicity +over +everything +the +king +made +a +gesture +which +took +in +his +planet +the +other +planets +and +all +the +stars +over +all +that +asked +the +little +prince +over +all +that +the +king +answered +for +his +rule +was +not +only +absolute +it +was +also +universal +and +the +stars +obey +you +certainly +they +do +the +king +said +they +obey +instantly +i +do +not +permit +insubordination +such +power +was +a +thing +for +the +little +prince +to +marvel +at +if +he +had +been +master +of +such +complete +authority +he +would +have +been +able +to +watch +the +sunset +not +forty +four +times +in +one +day +but +seventy +two +or +even +a +hundred +or +even +two +hundred +times +with +out +ever +having +to +move +his +chair +and +because +he +felt +a +bit +sad +as +he +remembered +his +little +planet +which +he +had +forsaken +he +plucked +up +his +courage +to +ask +the +king +a +favor +i +should +like +to +see +a +sunset +do +me +that +kindness +order +the +sun +to +set +if +i +ordered +a +general +to +fly +from +one +flower +to +another +like +a +butterfly +or +to +write +a +tragic +drama +or +to +change +himself +into +a +sea +bird +and +if +the +general +did +not +carry +out +the +order +that +he +had +received +which +one +of +us +would +be +in +the +wrong +the +king +demanded +the +general +or +myself +you +said +the +little +prince +firmly +exactly +one +much +require +from +each +one +the +duty +which +each +one +can +perform +the +king +went +on +accepted +authority +rests +first +of +all +on +reason +if +you +ordered +your +people +to +go +and +throw +themselves +into +the +sea +they +would +rise +up +in +revolution +i +have +the +right +to +require +obedience +because +my +orders +are +reasonable +then +my +sunset +the +little +prince +reminded +him +for +he +never +forgot +a +question +once +he +had +asked +it +you +shall +have +your +sunset +i +shall +command +it +but +according +to +my +science +of +government +i +shall +wait +until +conditions +are +favorable +when +will +that +be +inquired +the +little +prince +hum +hum +replied +the +king +and +before +saying +anything +else +he +consulted +a +bulky +almanac +hum +hum +that +will +be +about +about +that +will +be +this +evening +about +twenty +minutes +to +eight +and +you +will +see +how +well +i +am +obeyed +the +little +prince +yawned +he +was +regretting +his +lost +sunset +and +then +too +he +was +already +beginning +to +be +a +little +bored +i +have +nothing +more +to +do +here +he +said +to +the +king +so +i +shall +set +out +on +my +way +again +do +not +go +said +the +king +who +was +very +proud +of +having +a +subject +do +not +go +i +will +make +you +a +minister +minister +of +what +minster +of +of +justice +but +there +is +nobody +here +to +judge +we +do +not +know +that +the +king +said +to +him +i +have +not +yet +made +a +complete +tour +of +my +kingdom +i +am +very +old +there +is +no +room +here +for +a +carriage +and +it +tires +me +to +walk +oh +but +i +have +looked +already +said +the +little +prince +turning +around +to +give +one +more +glance +to +the +other +side +of +the +planet +on +that +side +as +on +this +there +was +nobody +at +all +then +you +shall +judge +yourself +the +king +answered +that +is +the +most +difficult +thing +of +all +it +is +much +more +difficult +to +judge +oneself +than +to +judge +others +if +you +succeed +in +judging +yourself +rightly +then +you +are +indeed +a +man +of +true +wisdom +yes +said +the +little +prince +but +i +can +judge +myself +anywhere +i +do +not +need +to +live +on +this +planet +hum +hum +said +the +king +i +have +good +reason +to +believe +that +somewhere +on +my +planet +there +is +an +old +rat +i +hear +him +at +night +you +can +judge +this +old +rat +from +time +to +time +you +will +condemn +him +to +death +thus +his +life +will +depend +on +your +justice +but +you +will +pardon +him +on +each +occasion +for +he +must +be +treated +thriftily +he +is +the +only +one +we +have +i +replied +the +little +prince +do +not +like +to +condemn +anyone +to +death +and +now +i +think +i +will +go +on +my +way +no +said +the +king +but +the +little +prince +having +now +completed +his +preparations +for +departure +had +no +wish +to +grieve +the +old +monarch +if +your +majesty +wishes +to +be +promptly +obeyed +he +said +he +should +be +able +to +give +me +a +reasonable +order +he +should +be +able +for +example +to +order +me +to +be +gone +by +the +end +of +one +minute +it +seems +to +me +that +conditions +are +favorable +as +the +king +made +no +answer +the +little +prince +hesitated +a +moment +then +with +a +sigh +he +took +his +leave +i +made +you +my +ambassador +the +king +called +out +hastily +he +had +a +magnificent +air +of +authority +the +grown +ups +are +very +strange +the +little +prince +said +to +himself +as +he +continued +on +his +journey +chapter +the +little +prince +visits +the +conceited +man +the +second +planet +was +inhabited +by +a +conceited +man +ah +ah +i +am +about +to +receive +a +visit +from +an +admirer +he +exclaimed +from +afar +when +he +first +saw +the +little +prince +coming +for +to +conceited +men +all +other +men +are +admirers +good +morning +said +the +little +prince +that +is +a +queer +hat +you +are +wearing +it +is +a +hat +for +salutes +the +conceited +man +replied +it +is +to +raise +in +salute +when +people +acclaim +me +unfortunately +nobody +at +all +ever +passes +this +way +yes +said +the +little +prince +who +did +not +understand +what +the +conceited +man +was +talking +about +clap +your +hands +one +against +the +other +the +conceited +man +now +directed +him +the +little +prince +clapped +his +hands +the +conceited +man +raised +his +hat +in +a +modest +salute +this +is +more +entertaining +than +the +visit +to +the +king +the +little +prince +said +to +himself +and +he +began +again +to +clap +his +hands +one +against +the +other +the +conceited +man +against +raised +his +hat +in +salute +after +five +minutes +of +this +exercise +the +little +prince +grew +tired +of +the +game +s +monotony +and +what +should +one +do +to +make +the +hat +come +down +he +asked +but +the +conceited +man +did +not +hear +him +conceited +people +never +hear +anything +but +praise +do +you +really +admire +me +very +much +he +demanded +of +the +little +prince +what +does +that +mean +admire +to +admire +mean +that +you +regard +me +as +the +handsomest +the +best +dressed +the +richest +and +the +most +intelligent +man +on +this +planet +but +you +are +the +only +man +on +your +planet +do +me +this +kindness +admire +me +just +the +same +i +admire +you +said +the +little +prince +shrugging +his +shoulders +slightly +but +what +is +there +in +that +to +interest +you +so +much +and +the +little +prince +went +away +the +grown +ups +are +certainly +very +odd +he +said +to +himself +as +he +continued +on +his +journey +chapter +the +little +prince +visits +the +tippler +the +next +planet +was +inhabited +by +a +tippler +this +was +a +very +short +visit +but +it +plunged +the +little +prince +into +deep +dejection +what +are +you +doing +there +he +said +to +the +tippler +whom +he +found +settled +down +in +silence +before +a +collection +of +empty +bottles +and +also +a +collection +of +full +bottles +i +am +drinking +replied +the +tippler +with +a +lugubrious +air +why +are +you +drinking +demanded +the +little +prince +so +that +i +may +forget +replied +the +tippler +forget +what +inquired +the +little +prince +who +already +was +sorry +for +him +forget +that +i +am +ashamed +the +tippler +confessed +hanging +his +head +ashamed +of +what +insisted +the +little +prince +who +wanted +to +help +him +ashamed +of +drinking +the +tippler +brought +his +speech +to +an +end +and +shut +himself +up +in +an +impregnable +silence +and +the +little +prince +went +away +puzzled +the +grown +ups +are +certainly +very +very +odd +he +said +to +himself +as +he +continued +on +his +journey +chapter +the +little +prince +visits +the +businessman +the +fourth +planet +belonged +to +a +businessman +this +man +was +so +much +occupied +that +he +did +not +even +raise +his +head +at +the +little +prince +s +arrival +good +morning +the +little +prince +said +to +him +your +cigarette +has +gone +out +three +and +two +make +five +five +and +seven +make +twelve +twelve +and +three +make +fifteen +good +morning +fifteen +and +seven +make +twenty +two +twenty +two +and +six +make +twenty +eight +i +haven +t +time +to +light +it +again +twenty +six +and +five +make +thirty +one +phew +then +that +makes +five +hundred +and +one +million +six +hundred +twenty +two +thousand +seven +hundred +thirty +one +five +hundred +million +what +asked +the +little +prince +eh +are +you +still +there +five +hundred +and +one +million +i +can +t +stop +i +have +so +much +to +do +i +am +concerned +with +matters +of +consequence +i +don +t +amuse +myself +with +balderdash +two +and +five +make +seven +five +hundred +and +one +million +what +repeated +the +little +prince +who +never +in +his +life +had +let +go +of +a +question +once +he +had +asked +it +the +businessman +raised +his +head +during +the +fifty +four +years +that +i +have +inhabited +this +planet +i +have +been +disturbed +only +three +times +the +first +time +was +twenty +two +years +ago +when +some +giddy +goose +fell +from +goodness +knows +where +he +made +the +most +frightful +noise +that +resounded +all +over +the +place +and +i +made +four +mistakes +in +my +addition +the +second +time +eleven +years +ago +i +was +disturbed +by +an +attack +of +rheumatism +i +don +t +get +enough +exercise +i +have +no +time +for +loafing +the +third +time +well +this +is +it +i +was +saying +then +five +hundred +and +one +millions +millions +of +what +the +businessman +suddenly +realized +that +there +was +no +hope +of +being +left +in +peace +until +he +answered +this +question +millions +of +those +little +objects +he +said +which +one +sometimes +sees +in +the +sky +flies +oh +no +little +glittering +objects +bees +oh +no +little +golden +objects +that +set +lazy +men +to +idle +dreaming +as +for +me +i +am +concerned +with +matters +of +consequence +there +is +no +time +for +idle +dreaming +in +my +life +ah +you +mean +the +stars +yes +that +s +it +the +stars +and +what +do +you +do +with +five +hundred +millions +of +stars +five +hundred +and +one +million +six +hundred +twenty +two +thousand +seven +hundred +thirty +one +i +am +concerned +with +matters +of +consequence +i +am +accurate +and +what +do +you +do +with +these +stars +what +do +i +do +with +them +yes +nothing +i +own +them +you +own +the +stars +yes +but +i +have +already +seen +a +king +who +kings +do +not +own +they +reign +over +it +is +a +very +different +matter +and +what +good +does +it +do +you +to +own +the +stars +it +does +me +the +good +of +making +me +rich +and +what +good +does +it +do +you +to +be +rich +it +makes +it +possible +for +me +to +buy +more +stars +if +any +are +ever +discovered +this +man +the +little +prince +said +to +himself +reasons +a +little +like +my +poor +tippler +nevertheless +he +still +had +some +more +questions +how +is +it +possible +for +one +to +own +the +stars +to +whom +do +they +belong +the +businessman +retorted +peevishly +i +don +t +know +to +nobody +then +they +belong +to +me +because +i +was +the +first +person +to +think +of +it +is +that +all +that +is +necessary +certainly +when +you +find +a +diamond +that +belongs +to +nobody +it +is +yours +when +you +discover +an +island +that +belongs +to +nobody +it +is +yours +when +you +get +an +idea +before +any +one +else +you +take +out +a +patent +on +it +it +is +yours +so +with +me +i +own +the +stars +because +nobody +else +before +me +ever +thought +of +owning +them +yes +that +is +true +said +the +little +prince +and +what +do +you +do +with +them +i +administer +them +replied +the +businessman +i +count +them +and +recount +them +it +is +difficult +but +i +am +a +man +who +is +naturally +interested +in +matters +of +consequence +the +little +prince +was +still +not +satisfied +if +i +owned +a +silk +scarf +he +said +i +could +put +it +around +my +neck +and +take +it +away +with +me +if +i +owned +a +flower +i +could +pluck +that +flower +and +take +it +away +with +me +but +you +cannot +pluck +the +stars +from +heaven +no +but +i +can +put +them +in +the +bank +whatever +does +that +mean +that +means +that +i +write +the +number +of +my +stars +on +a +little +paper +and +then +i +put +this +paper +in +a +drawer +and +lock +it +with +a +key +and +that +is +all +that +is +enough +said +the +businessman +it +is +entertaining +thought +the +little +prince +it +is +rather +poetic +but +it +is +of +no +great +consequence +on +matters +of +consequence +the +little +prince +had +ideas +which +were +very +different +from +those +of +the +grown +ups +i +myself +own +a +flower +he +continued +his +conversation +with +the +businessman +which +i +water +every +day +i +own +three +volcanoes +which +i +clean +out +every +week +for +i +also +clean +out +the +one +that +is +extinct +one +never +knows +it +is +of +some +use +to +my +volcanoes +and +it +is +of +some +use +to +my +flower +that +i +own +them +but +you +are +of +no +use +to +the +stars +the +businessman +opened +his +mouth +but +he +found +nothing +to +say +in +answer +and +the +little +prince +went +away +the +grown +ups +are +certainly +altogether +extraordinary +he +said +simply +talking +to +himself +as +he +continued +on +his +journey +chapter +the +little +prince +visits +the +lamplighter +the +fifth +planet +was +very +strange +it +was +the +smallest +of +all +there +was +just +enough +room +on +it +for +a +street +lamp +and +a +lamplighter +the +little +prince +was +not +able +to +reach +any +explanation +of +the +use +of +a +street +lamp +and +a +lamplighter +somewhere +in +the +heavens +on +a +planet +which +had +no +people +and +not +one +house +but +he +said +to +himself +nevertheless +it +may +well +be +that +this +man +is +absurd +but +he +is +not +so +absurd +as +the +king +the +conceited +man +the +businessman +and +the +tippler +for +at +least +his +work +has +some +meaning +when +he +lights +his +street +lamp +it +is +as +if +he +brought +one +more +star +to +life +or +one +flower +when +he +puts +out +his +lamp +he +sends +the +flower +or +the +star +to +sleep +that +is +a +beautiful +occupation +and +since +it +is +beautiful +it +is +truly +useful +when +he +arrived +on +the +planet +he +respectfully +saluted +the +lamplighter +good +morning +why +have +you +just +put +out +your +lamp +those +are +the +orders +replied +the +lamplighter +good +morning +what +are +the +orders +the +orders +are +that +i +put +out +my +lamp +good +evening +and +he +lighted +his +lamp +again +but +why +have +you +just +lighted +it +again +those +are +the +orders +replied +the +lamplighter +i +do +not +understand +said +the +little +prince +there +is +nothing +to +understand +said +the +lamplighter +orders +are +orders +good +morning +and +he +put +out +his +lamp +then +he +mopped +his +forehead +with +a +handkerchief +decorated +with +red +squares +i +follow +a +terrible +profession +in +the +old +days +it +was +reasonable +i +put +the +lamp +out +in +the +morning +and +in +the +evening +i +lighted +it +again +i +had +the +rest +of +the +day +for +relaxation +and +the +rest +of +the +night +for +sleep +and +the +orders +have +been +changed +since +that +time +the +orders +have +not +been +changed +said +the +lamplighter +that +is +the +tragedy +from +year +to +year +the +planet +has +turned +more +rapidly +and +the +orders +have +not +been +changed +then +what +asked +the +little +prince +then +the +planet +now +makes +a +complete +turn +every +minute +and +i +no +longer +have +a +single +second +for +repose +once +every +minute +i +have +to +light +my +lamp +and +put +it +out +that +is +very +funny +a +day +lasts +only +one +minute +here +where +you +live +it +is +not +funny +at +all +said +the +lamplighter +while +we +have +been +talking +together +a +month +has +gone +by +a +month +yes +a +month +thirty +minutes +thirty +days +good +evening +and +he +lighted +his +lamp +again +as +the +little +prince +watched +him +he +felt +that +he +loved +this +lamplighter +who +was +so +faithful +to +his +orders +he +remembered +the +sunsets +which +he +himself +had +gone +to +seek +in +other +days +merely +by +pulling +up +his +chair +and +he +wanted +to +help +his +friend +you +know +he +said +i +can +tell +you +a +way +you +can +rest +whenever +you +want +to +i +always +want +to +rest +said +the +lamplighter +for +it +is +possible +for +a +man +to +be +faithful +and +lazy +at +the +same +time +the +little +prince +went +on +with +his +explanation +your +planet +is +so +small +that +three +strides +will +take +you +all +the +way +around +it +to +be +always +in +the +sunshine +you +need +only +walk +along +rather +slowly +when +you +want +to +rest +you +will +walk +and +the +day +will +last +as +long +as +you +like +that +doesn +t +do +me +much +good +said +the +lamplighter +the +one +thing +i +love +in +life +is +to +sleep +then +you +re +unlucky +said +the +little +prince +i +am +unlucky +said +the +lamplighter +good +morning +and +he +put +out +his +lamp +that +man +said +the +little +prince +to +himself +as +he +continued +farther +on +his +journey +that +man +would +be +scorned +by +all +the +others +by +the +king +by +the +conceited +man +by +the +tippler +by +the +businessman +nevertheless +he +is +the +only +one +of +them +all +who +does +not +seem +to +me +ridiculous +perhaps +that +is +because +he +is +thinking +of +something +else +besides +himself +he +breathed +a +sigh +of +regret +and +said +to +himself +again +that +man +is +the +only +one +of +them +all +whom +i +could +have +made +my +friend +but +his +planet +is +indeed +too +small +there +is +no +room +on +it +for +two +people +what +the +little +prince +did +not +dare +confess +was +that +he +was +sorry +most +of +all +to +leave +this +planet +because +it +was +blest +every +day +with +sunsets +chapter +the +little +prince +visits +the +geographer +the +sixth +planet +was +ten +times +larger +than +the +last +one +it +was +inhabited +by +an +old +gentleman +who +wrote +voluminous +books +oh +look +here +is +an +explorer +he +exclaimed +to +himself +when +he +saw +the +little +prince +coming +the +little +prince +sat +down +on +the +table +and +panted +a +little +he +had +already +traveled +so +much +and +so +far +where +do +you +come +from +the +old +gentleman +said +to +him +what +is +that +big +book +said +the +little +prince +what +are +you +doing +i +am +a +geographer +the +old +gentleman +said +to +him +what +is +a +geographer +asked +the +little +prince +a +geographer +is +a +scholar +who +knows +the +location +of +all +the +seas +rivers +towns +mountains +and +deserts +that +is +very +interesting +said +the +little +prince +here +at +last +is +a +man +who +has +a +real +profession +and +he +cast +a +look +around +him +at +the +planet +of +the +geographer +it +was +the +most +magnificent +and +stately +planet +that +he +had +ever +seen +your +planet +is +very +beautiful +he +said +has +it +any +oceans +i +couldn +t +tell +you +said +the +geographer +ah +the +little +prince +was +disappointed +has +it +any +mountains +i +couldn +t +tell +you +said +the +geographer +and +towns +and +rivers +and +deserts +i +couldn +t +tell +you +that +either +but +you +are +a +geographer +exactly +the +geographer +said +but +i +am +not +an +explorer +i +haven +t +a +single +explorer +on +my +planet +it +is +not +the +geographer +who +goes +out +to +count +the +towns +the +rivers +the +mountains +the +seas +the +oceans +and +the +deserts +the +geographer +is +much +too +important +to +go +loafing +about +he +does +not +leave +his +desk +but +he +receives +the +explorers +in +his +study +he +asks +them +questions +and +he +notes +down +what +they +recall +of +their +travels +and +if +the +recollections +of +any +one +among +them +seem +interesting +to +him +the +geographer +orders +an +inquiry +into +that +explorer +s +moral +character +why +is +that +because +an +explorer +who +told +lies +would +bring +disaster +on +the +books +of +the +geographer +so +would +an +explorer +who +drank +too +much +why +is +that +asked +the +little +prince +because +intoxicated +men +see +double +then +the +geographer +would +note +down +two +mountains +in +a +place +where +there +was +only +one +i +know +some +one +said +the +little +prince +who +would +make +a +bad +explorer +that +is +possible +then +when +the +moral +character +of +the +explorer +is +shown +to +be +good +an +inquiry +is +ordered +into +his +discovery +one +goes +to +see +it +no +that +would +be +too +complicated +but +one +requires +the +explorer +to +furnish +proofs +for +example +if +the +discovery +in +question +is +that +of +a +large +mountain +one +requires +that +large +stones +be +brought +back +from +it +the +geographer +was +suddenly +stirred +to +excitement +but +you +you +come +from +far +away +you +are +an +explorer +you +shall +describe +your +planet +to +me +and +having +opened +his +big +register +the +geographer +sharpened +his +pencil +the +recitals +of +explorers +are +put +down +first +in +pencil +one +waits +until +the +explorer +has +furnished +proofs +before +putting +them +down +in +ink +well +said +the +geographer +expectantly +oh +where +i +live +said +the +little +prince +it +is +not +very +interesting +it +is +all +so +small +i +have +three +volcanoes +two +volcanoes +are +active +and +the +other +is +extinct +but +one +never +knows +one +never +knows +said +the +geographer +i +have +also +a +flower +we +do +not +record +flowers +said +the +geographer +why +is +that +the +flower +is +the +most +beautiful +thing +on +my +planet +we +do +not +record +them +said +the +geographer +because +they +are +ephemeral +what +does +that +mean +ephemeral +geographies +said +the +geographer +are +the +books +which +of +all +books +are +most +concerned +with +matters +of +consequence +they +never +become +old +fashioned +it +is +very +rarely +that +a +mountain +changes +its +position +it +is +very +rarely +that +an +ocean +empties +itself +of +its +waters +we +write +of +eternal +things +but +extinct +volcanoes +may +come +to +life +again +the +little +prince +interrupted +what +does +that +mean +ephemeral +whether +volcanoes +are +extinct +or +alive +it +comes +to +the +same +thing +for +us +said +the +geographer +the +thing +that +matters +to +us +is +the +mountain +it +does +not +change +but +what +does +that +mean +ephemeral +repeated +the +little +prince +who +never +in +his +life +had +let +go +of +a +question +once +he +had +asked +it +it +means +which +is +in +danger +of +speedy +disappearance +is +my +flower +in +danger +of +speedy +disappearance +certainly +it +is +my +flower +is +ephemeral +the +little +prince +said +to +himself +and +she +has +only +four +thorns +to +defend +herself +against +the +world +and +i +have +left +her +on +my +planet +all +alone +that +was +his +first +moment +of +regret +but +he +took +courage +once +more +what +place +would +you +advise +me +to +visit +now +he +asked +the +planet +earth +replied +the +geographer +it +has +a +good +reputation +and +the +little +prince +went +away +thinking +of +his +flower +chapter +the +narrator +discusses +the +earth +s +lamplighters +so +then +the +seventh +planet +was +the +earth +the +earth +is +not +just +an +ordinary +planet +one +can +count +there +kings +not +forgetting +to +be +sure +the +negro +kings +among +them +geographers +businessmen +tipplers +conceited +men +that +is +to +say +about +grown +ups +to +give +you +an +idea +of +the +size +of +the +earth +i +will +tell +you +that +before +the +invention +of +electricity +it +was +necessary +to +maintain +over +the +whole +of +the +six +continents +a +veritable +army +of +lamplighters +for +the +street +lamps +seen +from +a +slight +distance +that +would +make +a +splendid +spectacle +the +movements +of +this +army +would +be +regulated +like +those +of +the +ballet +in +the +opera +first +would +come +the +turn +of +the +lamplighters +of +new +zealand +and +australia +having +set +their +lamps +alight +these +would +go +off +to +sleep +next +the +lamplighters +of +china +and +siberia +would +enter +for +their +steps +in +the +dance +and +then +they +too +would +be +waved +back +into +the +wings +after +that +would +come +the +turn +of +the +lamplighters +of +russia +and +the +indies +then +those +of +africa +and +europe +then +those +of +south +america +then +those +of +south +america +then +those +of +north +america +and +never +would +they +make +a +mistake +in +the +order +of +their +entry +upon +the +stage +it +would +be +magnificent +only +the +man +who +was +in +charge +of +the +single +lamp +at +the +north +pole +and +his +colleague +who +was +responsible +for +the +single +lamp +at +the +south +pole +only +these +two +would +live +free +from +toil +and +care +they +would +be +busy +twice +a +year +chapter +the +little +prince +makes +the +acquaintance +of +the +snake +when +one +wishes +to +play +the +wit +he +sometimes +wanders +a +little +from +the +truth +i +have +not +been +altogether +honest +in +what +i +have +told +you +about +the +lamplighters +and +i +realize +that +i +run +the +risk +of +giving +a +false +idea +of +our +planet +to +those +who +do +not +k +now +it +men +occupy +a +very +small +place +upon +the +earth +if +the +two +billion +inhabitants +who +people +its +surface +were +all +to +stand +upright +and +somewhat +crowded +together +as +they +do +for +some +big +public +assembly +they +could +easily +be +put +into +one +public +square +twenty +miles +long +and +twenty +miles +wide +all +humanity +could +be +piled +up +on +a +small +pacific +islet +the +grown +ups +to +be +sure +will +not +believe +you +when +you +tell +them +that +they +imagine +that +they +fill +a +great +deal +of +space +they +fancy +themselves +as +important +as +the +baobabs +you +should +advise +them +then +to +make +their +own +calculations +they +adore +fig +ures +and +that +will +please +them +but +do +not +waste +your +time +on +this +extra +task +it +is +unnecessary +you +have +i +know +confidence +in +me +when +the +little +prince +arrived +on +the +earth +he +was +very +much +surprised +not +to +see +any +people +he +was +beginning +to +be +afraid +he +had +come +to +the +wrong +planet +when +a +coil +of +gold +the +color +of +the +moonlight +flashed +across +the +sand +good +evening +said +the +little +prince +courteously +good +evening +said +the +snake +what +planet +is +this +on +which +i +have +come +down +asked +the +little +prince +this +is +the +earth +this +is +africa +the +snake +answered +ah +then +there +are +no +people +on +the +earth +this +is +the +desert +there +are +no +people +in +the +desert +the +earth +is +large +said +the +snake +the +little +prince +sat +down +on +a +stone +and +raised +his +eyes +toward +the +sky +i +wonder +he +said +whether +the +stars +are +set +alight +in +heaven +so +that +one +day +each +one +of +us +may +find +his +own +again +look +at +my +planet +it +is +right +there +above +us +but +how +far +away +it +is +it +is +beautiful +the +snake +said +what +has +brought +you +here +i +have +been +having +some +trouble +with +a +flower +said +the +little +prince +ah +said +the +snake +and +they +were +both +silent +where +are +the +men +the +little +prince +at +last +took +up +the +conversation +again +it +is +a +little +lonely +in +the +desert +it +is +also +lonely +among +men +the +snake +said +the +little +prince +gazed +at +him +for +a +long +time +you +are +a +funny +animal +he +said +at +last +you +are +no +thicker +than +a +finger +but +i +am +more +powerful +than +the +finger +of +a +king +said +the +snake +the +little +prince +smiled +you +are +not +very +powerful +you +haven +t +even +any +feet +you +cannot +even +travel +i +can +carry +you +farther +than +any +ship +could +take +you +said +the +snake +he +twined +himself +around +the +little +prince +s +ankle +like +a +golden +bracelet +whomever +i +touch +i +send +back +to +the +earth +from +whence +he +came +the +snake +spoke +again +but +you +are +innocent +and +true +and +you +come +from +a +star +the +little +prince +made +no +reply +you +move +me +to +pity +you +are +so +weak +on +this +earth +made +of +granite +the +snake +said +i +can +help +you +some +day +if +you +grow +too +homesick +for +your +own +planet +i +can +oh +i +understand +you +very +well +said +the +little +prince +but +why +do +you +always +speak +in +riddles +i +solve +them +all +said +the +snake +and +they +were +both +silent +chapter +the +little +prince +goes +looking +for +men +and +meets +a +flower +the +little +prince +crossed +the +desert +and +met +with +only +one +flower +it +was +a +flower +with +three +petals +a +flower +of +no +account +at +all +good +morning +said +the +little +prince +good +morning +said +the +flower +where +are +the +men +the +little +prince +asked +politely +the +flower +had +once +seen +a +caravan +passing +men +she +echoed +i +think +there +are +six +or +seven +of +them +in +existence +i +saw +them +several +years +ago +but +one +never +knows +where +to +find +them +the +wind +blows +them +away +they +have +no +roots +and +that +makes +their +life +very +difficult +goodbye +said +the +little +prince +goodbye +said +the +flower +chapter +the +little +prince +climbs +a +mountain +range +after +that +the +little +prince +climbed +a +high +mountain +the +only +mountains +he +had +ever +known +were +the +three +volcanoes +which +came +up +to +his +knees +and +he +used +the +extinct +volcano +as +a +footstool +from +a +mountain +as +high +as +this +one +he +said +to +himself +i +shall +be +able +to +see +the +whole +planet +at +one +glance +and +all +the +people +but +he +saw +nothing +save +peaks +of +rock +that +were +sharpened +like +needles +good +morning +he +said +courteously +good +morning +good +morning +good +morning +answered +the +echo +who +are +you +said +the +little +prince +who +are +you +who +are +you +who +are +you +answered +the +echo +be +my +friends +i +am +all +alone +he +said +i +am +all +alone +all +alone +all +alone +answered +the +echo +what +a +queer +planet +he +thought +it +is +altogether +dry +and +altogether +pointed +and +altogether +harsh +and +forbidding +and +the +people +have +no +imagination +they +repeat +whatever +one +says +to +them +on +my +planet +i +had +a +flower +she +always +was +the +first +to +speak +chapter +the +little +prince +discovers +a +garden +of +roses +but +it +happened +that +after +walking +for +a +long +time +through +sand +and +rocks +and +snow +the +little +prince +at +last +came +upon +a +road +and +all +roads +lead +to +the +abodes +of +men +good +morning +he +said +he +was +standing +before +a +garden +all +a +bloom +with +roses +good +morning +said +the +roses +the +little +prince +gazed +at +them +they +all +looked +like +his +flower +who +are +you +he +demanded +thunderstruck +we +are +roses +the +roses +said +and +he +was +overcome +with +sadness +his +flower +had +told +him +that +she +was +the +only +one +of +her +kind +in +all +the +universe +and +here +were +five +thousand +of +them +all +alike +in +one +single +garden +she +would +be +very +much +annoyed +he +said +to +himself +if +she +should +see +that +she +would +cough +most +dreadfully +and +she +would +pretend +that +she +was +dying +to +avoid +being +laughed +at +and +i +should +be +obliged +to +pretend +that +i +was +nursing +her +back +to +life +for +if +i +did +not +do +that +to +humble +myself +also +she +would +really +allow +herself +to +die +then +he +went +on +with +his +reflections +i +thought +that +i +was +rich +with +a +flower +that +was +unique +in +all +the +world +and +all +i +had +was +a +common +rose +a +common +rose +and +three +volcanoes +that +come +up +to +my +knees +and +one +of +them +perhaps +extinct +forever +that +doesn +t +make +me +a +very +great +prince +and +he +lay +down +in +the +grass +and +cried +chapter +the +little +prince +befriends +the +fox +it +was +then +that +the +fox +appeared +good +morning +said +the +fox +good +morning +the +little +prince +responded +politely +although +when +he +turned +around +he +saw +nothing +i +am +right +here +the +voice +said +under +the +apple +tree +who +are +you +asked +the +little +prince +and +added +you +are +very +pretty +to +look +at +i +am +a +fox +said +the +fox +come +and +play +with +me +proposed +the +little +prince +i +am +so +unhappy +i +cannot +play +with +you +the +fox +said +i +am +not +tamed +ah +please +excuse +me +said +the +little +prince +but +after +some +thought +he +added +what +does +that +mean +tame +you +do +not +live +here +said +the +fox +what +is +it +that +you +are +looking +for +i +am +looking +for +men +said +the +little +prince +what +does +that +mean +tame +men +said +the +fox +they +have +guns +and +they +hunt +it +is +very +disturbing +they +also +raise +chickens +these +are +their +only +interests +are +you +looking +for +chickens +no +said +the +little +prince +i +am +looking +for +friends +what +does +that +mean +tame +it +is +an +act +too +often +neglected +said +the +fox +it +means +to +establish +ties +to +establish +ties +just +that +said +the +fox +to +me +you +are +still +nothing +more +than +a +little +boy +who +is +just +like +a +hundred +thousand +other +little +boys +and +i +have +no +need +of +you +and +you +on +your +part +have +no +need +of +me +to +you +i +am +nothing +more +than +a +fox +like +a +hundred +thousand +other +foxes +but +if +you +tame +me +then +we +shall +need +each +other +to +me +you +will +be +unique +in +all +the +world +to +you +i +shall +be +unique +in +all +the +world +i +am +beginning +to +understand +said +the +little +prince +there +is +a +flower +i +think +that +she +has +tamed +me +it +is +possible +said +the +fox +on +the +earth +one +sees +all +sorts +of +things +oh +but +this +is +not +on +the +earth +said +the +little +prince +the +fox +seemed +perplexed +and +very +curious +on +another +planet +yes +are +there +hunters +on +this +planet +no +ah +that +is +interesting +are +there +chickens +no +nothing +is +perfect +sighed +the +fox +but +he +came +back +to +his +idea +my +life +is +very +monotonous +the +fox +said +i +hunt +chickens +men +hunt +me +all +the +chickens +are +just +alike +and +all +the +men +are +just +alike +and +in +consequence +i +am +a +little +bored +but +if +you +tame +me +it +will +be +as +if +the +sun +came +to +shine +on +my +life +i +shall +know +the +sound +of +a +step +that +will +be +different +from +all +the +others +other +steps +send +me +hurrying +back +underneath +the +ground +yours +will +call +me +like +music +out +of +my +burrow +and +then +look +you +see +the +grain +fields +down +yonder +i +do +not +ea +t +bread +wheat +is +of +no +use +to +me +the +wheat +fields +have +nothing +to +say +to +me +and +that +is +sad +but +you +have +hair +that +is +the +colour +of +gold +think +how +wonderful +that +will +be +when +you +have +tamed +me +the +grain +which +is +also +golden +will +bring +me +bac +k +the +thought +of +you +and +i +shall +love +to +listen +to +the +wind +in +the +wheat +the +fox +gazed +at +the +little +prince +for +a +long +time +please +tame +me +he +said +i +want +to +very +much +the +little +prince +replied +but +i +have +not +much +time +i +have +friends +to +discover +and +a +great +many +things +to +understand +one +only +understands +the +things +that +one +tames +said +the +fox +men +have +no +more +time +to +understand +anything +they +buy +things +all +ready +made +at +the +shops +but +there +is +no +shop +anywhere +where +one +can +buy +friendship +and +so +men +have +no +friends +any +more +if +you +want +a +friend +tame +me +what +must +i +do +to +tame +you +asked +the +little +prince +you +must +be +very +patient +replied +the +fox +first +you +will +sit +down +at +a +little +distance +from +me +like +that +in +the +grass +i +shall +look +at +you +out +of +the +corner +of +my +eye +and +you +will +say +nothing +words +are +the +source +of +misunderstandings +but +you +will +sit +a +little +closer +to +me +every +day +the +next +day +the +little +prince +came +back +it +would +have +been +better +to +come +back +at +the +same +hour +said +the +fox +if +for +example +you +come +at +four +o +clock +in +the +afternoon +then +at +three +o +clock +i +shall +begin +to +be +happy +i +shall +feel +happier +and +happier +as +the +hour +advances +at +four +o +clock +i +shall +already +be +worrying +and +jumping +about +i +shall +show +you +how +happy +i +am +but +if +you +come +at +just +any +time +i +shall +never +know +at +what +hour +my +heart +is +to +be +ready +to +greet +you +one +must +observe +the +proper +rites +what +is +a +rite +asked +the +little +prince +those +also +are +actions +too +often +neglected +said +the +fox +they +are +what +make +one +day +different +from +other +days +one +hour +from +other +hours +there +is +a +rite +for +example +among +my +hunters +every +thursday +they +dance +with +the +village +girls +so +thursday +is +a +wonderful +day +for +me +i +can +take +a +walk +as +far +as +the +vineyards +but +if +the +hunters +danced +at +just +any +time +every +day +would +be +like +every +other +day +and +i +should +never +have +any +vacation +at +all +so +the +little +prince +tamed +the +fox +and +when +the +hour +of +his +departure +drew +near +ah +said +the +fox +i +shall +cry +it +is +your +own +fault +said +the +little +prince +i +never +wished +you +any +sort +of +harm +but +you +wanted +me +to +tame +you +yes +that +is +so +said +the +fox +but +now +you +are +going +to +cry +said +the +little +prince +yes +that +is +so +said +the +fox +then +it +has +done +you +no +good +at +all +it +has +done +me +good +said +the +fox +because +of +the +color +of +the +wheat +fields +and +then +he +added +go +and +look +again +at +the +roses +you +will +understand +now +that +yours +is +unique +in +all +the +world +then +come +back +to +say +goodbye +to +me +and +i +will +make +you +a +present +of +a +secret +the +little +prince +went +away +to +look +again +at +the +roses +you +are +not +at +all +like +my +rose +he +said +as +yet +you +are +nothing +no +one +has +tamed +you +and +you +have +tamed +no +one +you +are +like +my +fox +when +i +first +knew +him +he +was +only +a +fox +like +a +hundred +thousand +other +foxes +but +i +have +made +him +my +friend +and +now +he +is +unique +in +all +the +world +and +the +roses +were +very +much +embarrassed +you +are +beautiful +but +you +are +empty +he +went +on +one +could +not +die +for +you +to +be +sure +an +ordinary +passerby +would +think +that +my +rose +looked +just +like +you +the +rose +that +belongs +to +me +but +in +herself +alone +she +is +more +important +than +all +the +hundreds +of +you +other +roses +because +it +is +she +that +i +have +watered +because +it +is +she +that +i +have +put +under +the +glass +globe +because +it +is +she +that +i +have +sheltered +behind +the +screen +because +it +is +for +her +that +i +have +killed +the +caterpillars +except +the +two +or +three +that +we +saved +to +become +butterflies +because +it +is +she +that +i +have +listened +to +when +she +grumbled +or +boasted +or +even +sometimes +when +she +said +nothing +because +she +is +my +rose +and +he +went +back +to +meet +the +fox +goodbye +he +said +goodbye +said +the +fox +and +now +here +is +my +secret +a +very +simple +secret +it +is +only +with +the +heart +that +one +can +see +rightly +what +is +essential +is +invisible +to +the +eye +what +is +essential +is +invisible +to +the +eye +the +little +prince +repeated +so +that +he +would +be +sure +to +remember +it +is +the +time +you +have +wasted +for +your +rose +that +makes +your +rose +so +important +it +is +the +time +i +have +wasted +for +my +rose +said +the +little +prince +so +that +he +would +be +sure +to +remember +men +have +forgotten +this +truth +said +the +fox +but +you +must +not +forget +it +you +become +responsible +forever +for +what +you +have +tamed +you +are +responsible +for +your +rose +i +am +responsible +for +my +rose +the +little +prince +repeated +so +that +he +would +be +sure +to +remember +chapter +the +little +prince +encounters +a +railway +switchman +good +morning +said +the +little +prince +good +morning +said +the +railway +switchman +what +do +you +do +here +the +little +prince +asked +i +sort +out +travelers +in +bundles +of +a +thousand +said +the +switchman +i +send +off +the +trains +that +carry +them +now +to +the +right +now +to +the +left +and +a +brilliantly +lighted +express +train +shook +the +switchman +s +cabin +as +it +rushed +by +with +a +roar +like +thunder +they +are +in +a +great +hurry +said +the +little +prince +what +are +they +looking +for +not +even +the +locomotive +engineer +knows +that +said +the +switchman +and +a +second +brilliantly +lighted +express +thundered +by +in +the +opposite +direction +are +they +coming +back +already +demanded +the +little +prince +these +are +not +the +same +ones +said +the +switchman +it +is +an +exchange +were +they +not +satisfied +where +they +were +asked +the +little +prince +no +one +is +ever +satisfied +where +he +is +said +the +switchman +and +they +heard +the +roaring +thunder +of +a +third +brilliantly +lighted +express +are +they +pursuing +the +first +travelers +demanded +the +little +prince +they +are +pursuing +nothing +at +all +said +the +switchman +they +are +asleep +in +there +or +if +they +are +not +asleep +they +are +yawning +only +the +children +are +flattening +their +noses +against +the +windowpanes +only +the +children +know +what +they +are +looking +for +said +the +little +prince +they +waste +their +time +over +a +rag +doll +and +it +becomes +very +important +to +them +and +if +anybody +takes +it +away +from +them +they +cry +they +are +lucky +the +switchman +said +chapter +the +little +prince +encounters +a +merchant +good +morning +said +the +little +prince +good +morning +said +the +merchant +this +was +a +merchant +who +sold +pills +that +had +been +invented +to +quench +thirst +you +need +only +swallow +one +pill +a +week +and +you +would +feel +no +need +of +anything +to +drink +why +are +you +selling +those +asked +the +little +prince +because +they +save +a +tremendous +amount +of +time +said +the +merchant +computations +have +been +made +by +experts +with +these +pills +you +save +fifty +three +minutes +in +every +week +and +what +do +i +do +with +those +fifty +three +minutes +anything +you +like +as +for +me +said +the +little +prince +to +himself +if +i +had +fifty +three +minutes +to +spend +as +i +liked +i +should +walk +at +my +leisure +toward +a +spring +of +fresh +water +chapter +the +narrator +and +the +little +prince +thirsty +hunt +for +a +well +in +the +desert +it +was +now +the +eighth +day +since +i +had +had +my +accident +in +the +desert +and +i +had +listened +to +the +story +of +the +merchant +as +i +was +drinking +the +last +drop +of +my +water +supply +ah +i +said +to +the +little +prince +these +memories +of +yours +are +very +charming +but +i +have +not +yet +succeeded +in +repairing +my +plane +i +have +nothing +more +to +drink +and +i +too +should +be +very +happy +if +i +could +walk +at +my +leisure +toward +a +spring +of +fresh +water +my +friend +the +fox +the +little +prince +said +to +me +my +dear +little +man +this +is +no +longer +a +matter +that +has +anything +to +do +with +the +fox +why +not +because +i +am +about +to +die +of +thirst +he +did +not +follow +my +reasoning +and +he +answered +me +it +is +a +good +thing +to +have +had +a +friend +even +if +one +is +about +to +die +i +for +instance +am +very +glad +to +have +had +a +fox +as +a +friend +he +has +no +way +of +guessing +the +danger +i +said +to +myself +he +has +never +been +either +hungry +or +thirsty +a +little +sunshine +is +all +he +needs +but +he +looked +at +me +steadily +and +replied +to +my +thought +i +am +thirsty +too +let +us +look +for +a +well +i +made +a +gesture +of +weariness +it +is +absurd +to +look +for +a +well +at +random +in +the +immensity +of +the +desert +but +nevertheless +we +started +walking +when +we +had +trudged +along +for +several +hours +in +silence +the +darkness +fell +and +the +stars +began +to +come +out +thirst +had +made +me +a +little +feverish +and +i +looked +at +them +as +if +i +were +in +a +dream +the +little +prince +s +last +words +came +reeling +back +into +my +memory +then +you +are +thirsty +too +i +demanded +but +he +did +not +reply +to +my +question +he +merely +said +to +me +water +may +also +be +good +for +the +heart +i +did +not +understand +this +answer +but +i +said +nothing +i +knew +very +well +that +it +was +impossible +to +cross +examine +him +he +was +tired +he +sat +down +i +sat +down +beside +him +and +after +a +little +silence +he +spoke +again +the +stars +are +beautiful +because +of +a +flower +that +cannot +be +seen +i +replied +yes +that +is +so +and +without +saying +anything +more +i +looked +across +the +ridges +of +sand +that +were +stretched +out +before +us +in +the +moonlight +the +desert +is +beautiful +the +little +prince +added +and +that +was +true +i +have +always +loved +the +desert +one +sits +down +on +a +desert +sand +dune +sees +nothing +hears +nothing +yet +through +the +silence +something +throbs +and +gleams +what +makes +the +desert +beautiful +said +the +little +prince +is +that +somewhere +it +hides +a +well +i +was +astonished +by +a +sudden +understanding +of +that +mysterious +radiation +of +the +sands +when +i +was +a +little +boy +i +lived +in +an +old +house +and +legend +told +us +that +a +treasure +was +buried +there +to +be +sure +no +one +had +ever +known +how +to +find +it +perhaps +no +one +had +ever +even +looked +for +it +but +it +cast +an +enchantment +over +that +house +my +home +was +hiding +a +secret +in +the +depths +of +its +heart +yes +i +said +to +the +little +prince +the +house +the +stars +the +desert +what +gives +them +their +beauty +is +something +that +is +invisible +i +am +glad +he +said +that +you +agree +with +my +fox +as +the +little +prince +dropped +off +to +sleep +i +took +him +in +my +arms +and +set +out +walking +once +more +i +felt +deeply +moved +and +stirred +it +seemed +to +me +that +i +was +carrying +a +very +fragile +treasure +it +seemed +to +me +even +that +there +was +nothing +more +fragile +on +all +earth +in +the +moonlight +i +looked +at +his +pale +forehead +his +closed +eyes +his +locks +of +hair +that +trembled +in +the +wind +and +i +said +to +myself +what +i +see +here +is +nothing +but +a +shell +what +is +most +important +is +invisible +as +his +lips +opened +slightly +with +the +suspicious +of +a +half +smile +i +said +to +myself +again +what +moves +me +so +deeply +about +this +little +prince +who +is +sleeping +here +is +his +loyalty +to +a +flower +the +image +of +a +rose +that +shines +through +his +whole +being +like +the +flame +of +a +lamp +even +when +he +is +asleep +and +i +felt +him +to +be +more +fragile +still +i +felt +the +need +of +protecting +him +as +if +he +himself +were +a +flame +that +might +be +extinguished +by +a +little +puff +of +wind +and +as +i +walked +on +so +i +found +the +well +at +daybreak +chapter +finding +a +well +the +narrator +and +the +little +prince +discuss +his +return +to +his +planet +men +said +the +little +prince +set +out +on +their +way +in +express +trains +but +they +do +not +know +what +they +are +looking +for +then +they +rush +about +and +get +excited +and +turn +round +and +round +and +he +added +it +is +not +worth +the +trouble +the +well +that +we +had +come +to +was +not +like +the +wells +of +the +sahara +the +wells +of +the +sahara +are +mere +holes +dug +in +the +sand +this +one +was +like +a +well +in +a +village +but +there +was +no +village +here +and +i +thought +i +must +be +dreaming +it +is +strange +i +said +to +the +little +prince +everything +is +ready +for +use +the +pulley +the +bucket +the +rope +he +laughed +touched +the +rope +and +set +the +pulley +to +working +and +the +pulley +moaned +like +an +old +weathervane +which +the +wind +has +long +since +forgotten +do +you +hear +said +the +little +prince +we +have +wakened +the +well +and +it +is +singing +i +did +not +want +him +to +tire +himself +with +the +rope +leave +it +to +me +i +said +it +is +too +heavy +for +you +i +hoisted +the +bucket +slowly +to +the +edge +of +the +well +and +set +it +there +happy +tired +as +i +was +over +my +achievement +the +song +of +the +pulley +was +still +in +my +ears +and +i +could +see +the +sunlight +shimmer +in +the +still +trembling +water +i +am +thirsty +for +this +water +said +the +little +prince +give +me +some +of +it +to +drink +and +i +understood +what +he +had +been +looking +for +i +raised +the +bucket +to +his +lips +he +drank +his +eyes +closed +it +was +as +sweet +as +some +special +festival +treat +this +water +was +indeed +a +different +thing +from +ordinary +nourishment +its +sweetness +was +born +of +the +walk +under +the +stars +the +song +of +the +pulley +the +effort +of +my +arms +it +was +good +for +the +heart +like +a +present +when +i +was +a +little +boy +the +lights +of +the +christmas +tree +the +music +of +the +midnight +mass +the +tenderness +of +smiling +faces +used +to +make +up +so +the +radiance +of +the +gifts +i +received +the +men +where +you +live +said +the +little +prince +raise +five +thousand +roses +in +the +same +garden +and +they +do +not +find +in +it +what +they +are +looking +for +they +do +not +find +it +i +replied +and +yet +what +they +are +looking +for +could +be +found +in +one +single +rose +or +in +a +little +water +yes +that +is +true +i +said +and +the +little +prince +added +but +the +eyes +are +blind +one +must +look +with +the +heart +i +had +drunk +the +water +i +breathed +easily +at +sunrise +the +sand +is +the +color +of +honey +and +that +honey +color +was +making +me +happy +too +what +brought +me +then +this +sense +of +grief +you +must +keep +your +promise +said +the +little +prince +softly +as +he +sat +down +beside +me +once +more +what +promise +you +know +a +muzzle +for +my +sheep +i +am +responsible +for +this +flower +i +took +my +rough +drafts +of +drawings +out +of +my +pocket +the +little +prince +looked +them +over +and +laughed +as +he +said +your +baobabs +they +look +a +little +like +cabbages +oh +i +had +been +so +proud +of +my +baobabs +your +fox +his +ears +look +a +little +like +horns +and +they +are +too +long +and +he +laughed +again +you +are +not +fair +little +prince +i +said +i +don +t +know +how +to +draw +anything +except +boa +constrictors +from +the +outside +and +boa +constrictors +from +the +inside +oh +that +will +be +all +right +he +said +children +understand +so +then +i +made +a +pencil +sketch +of +a +muzzle +and +as +i +gave +it +to +him +my +heart +was +torn +you +have +plans +that +i +do +not +know +about +i +said +but +he +did +not +answer +me +he +said +to +me +instead +you +know +my +descent +to +the +earth +tomorrow +will +be +its +anniversary +then +after +a +silence +he +went +on +i +came +down +very +near +here +and +he +flushed +and +once +again +without +understanding +why +i +had +a +queer +sense +of +sorrow +one +question +however +occurred +to +me +then +it +was +not +by +chance +that +on +the +morning +when +i +first +met +you +a +week +ago +you +were +strolling +along +like +that +all +alone +a +thousand +miles +from +any +inhabited +region +you +were +on +the +your +back +to +the +place +where +you +landed +the +little +prince +flushed +again +and +i +added +with +some +hesitancy +perhaps +it +was +because +of +the +anniversary +the +little +prince +flushed +once +more +he +never +answered +questions +but +when +one +flushes +does +that +not +mean +yes +ah +i +said +to +him +i +am +a +little +frightened +but +he +interrupted +me +now +you +must +work +you +must +return +to +your +engine +i +will +be +waiting +for +you +here +come +back +tomorrow +evening +but +i +was +not +reassured +i +remembered +the +fox +one +runs +the +risk +of +weeping +a +little +if +one +lets +himself +be +tamed +chapter +the +little +prince +converses +with +the +snake +the +little +prince +consoles +the +narrator +the +little +prince +returns +to +his +planet +beside +the +well +there +was +the +ruin +of +an +old +stone +wall +when +i +came +back +from +my +work +the +next +evening +i +saw +from +some +distance +away +my +little +price +sitting +on +top +of +a +wall +with +his +feet +dangling +and +i +heard +him +say +then +you +don +t +remember +this +is +not +the +exact +spot +another +voice +must +have +answered +him +for +he +replied +to +it +yes +yes +it +is +the +right +day +but +this +is +not +the +place +i +continued +my +walk +toward +the +wall +at +no +time +did +i +see +or +hear +anyone +the +little +prince +however +replied +once +again +exactly +you +will +see +where +my +track +begins +in +the +sand +you +have +nothing +to +do +but +wait +for +me +there +i +shall +be +there +tonight +i +was +only +twenty +metres +from +the +wall +and +i +still +saw +nothing +after +a +silence +the +little +prince +spoke +again +you +have +good +poison +you +are +sure +that +it +will +not +make +me +suffer +too +long +i +stopped +in +my +tracks +my +heart +torn +asunder +but +still +i +did +not +understand +now +go +away +said +the +little +prince +i +want +to +get +down +from +the +wall +i +dropped +my +eyes +then +to +the +foot +of +the +wall +and +i +leaped +into +the +air +there +before +me +facing +the +little +prince +was +one +of +those +yellow +snakes +that +take +just +thirty +seconds +to +bring +your +life +to +an +end +even +as +i +was +digging +into +my +pocked +to +get +out +my +revolver +i +made +a +running +step +back +but +at +the +noise +i +made +the +snake +let +himself +flow +easily +across +the +sand +like +the +dying +spray +of +a +fountain +and +in +no +apparent +hurry +disappeared +with +a +light +metallic +sound +among +the +stones +i +reached +the +wall +just +in +time +to +catch +my +little +man +in +my +arms +his +face +was +white +as +snow +what +does +this +mean +i +demanded +why +are +you +talking +with +snakes +i +had +loosened +the +golden +muffler +that +he +always +wore +i +had +moistened +his +temples +and +had +given +him +some +water +to +drink +and +now +i +did +not +dare +ask +him +any +more +questions +he +looked +at +me +very +gravely +and +put +his +arms +around +my +neck +i +felt +his +heart +beating +like +the +heart +of +a +dying +bird +shot +with +someone +s +rifle +i +am +glad +that +you +have +found +what +was +the +matter +with +your +engine +he +said +now +you +can +go +back +home +how +do +you +know +about +that +i +was +just +coming +to +tell +him +that +my +work +had +been +successful +beyond +anything +that +i +had +dared +to +hope +he +made +no +answer +to +my +question +but +he +added +i +too +am +going +back +home +today +then +sadly +it +is +much +farther +it +is +much +more +difficult +i +realized +clearly +that +something +extraordinary +was +happening +i +was +holding +him +close +in +my +arms +as +if +he +were +a +little +child +and +yet +it +seemed +to +me +that +he +was +rushing +headlong +toward +an +abyss +from +which +i +could +do +nothing +to +restrain +him +his +look +was +very +serious +like +some +one +lost +far +away +i +have +your +sheep +and +i +have +the +sheep +s +box +and +i +have +the +muzzle +and +he +gave +me +a +sad +smile +i +waited +a +long +time +i +could +see +that +he +was +reviving +little +by +little +dear +little +man +i +said +to +him +you +are +afraid +he +was +afraid +there +was +no +doubt +about +that +but +he +laughed +lightly +i +shall +be +much +more +afraid +this +evening +once +again +i +felt +myself +frozen +by +the +sense +of +something +irreparable +and +i +knew +that +i +could +not +bear +the +thought +of +never +hearing +that +laughter +any +more +for +me +it +was +like +a +spring +of +fresh +water +in +the +desert +little +man +i +said +i +want +to +hear +you +laugh +again +but +he +said +to +me +tonight +it +will +be +a +year +my +star +then +can +be +found +right +above +the +place +where +i +came +to +the +earth +a +year +ago +little +man +i +said +tell +me +that +it +is +only +a +bad +dream +this +affair +of +the +snake +and +the +meeting +place +and +the +star +but +he +did +not +answer +my +plea +he +said +to +me +instead +the +thing +that +is +important +is +the +thing +that +is +not +seen +yes +i +know +it +is +just +as +it +is +with +the +flower +if +you +love +a +flower +that +lives +on +a +star +it +is +sweet +to +look +at +the +sky +at +night +all +the +stars +are +a +bloom +with +flowers +yes +i +know +it +is +just +as +it +is +with +the +water +because +of +the +pulley +and +the +rope +what +you +gave +me +to +drink +was +like +music +you +remember +how +good +it +was +yes +i +know +and +at +night +you +will +look +up +at +the +stars +where +i +live +everything +is +so +small +that +i +cannot +show +you +where +my +star +is +to +be +found +it +is +better +like +that +my +star +will +just +be +one +of +the +stars +for +you +and +so +you +will +love +to +watch +all +the +stars +in +the +heavens +they +will +all +be +your +friends +and +besides +i +am +going +to +make +you +a +present +he +laughed +again +ah +little +prince +dear +little +prince +i +love +to +hear +that +laughter +that +is +my +present +just +that +it +will +be +as +it +was +when +we +drank +the +water +what +are +you +trying +to +say +all +men +have +the +stars +he +answered +but +they +are +not +the +same +things +for +different +people +for +some +who +are +travelers +the +stars +are +guides +for +others +they +are +no +more +than +little +lights +in +the +sky +for +others +who +are +scholars +they +are +problems +for +my +businessman +they +were +wealth +but +all +these +stars +are +silent +you +you +alone +will +have +the +stars +as +no +one +else +has +them +what +are +you +trying +to +say +in +one +of +the +stars +i +shall +be +living +in +one +of +them +i +shall +be +laughing +and +so +it +will +be +as +if +all +the +stars +were +laughing +when +you +look +at +the +sky +at +night +you +only +you +will +have +stars +that +can +laugh +and +he +laughed +again +and +when +your +sorrow +is +comforted +time +soothes +all +sorrows +you +will +be +content +that +you +have +known +me +you +will +always +be +my +friend +you +will +want +to +laugh +with +me +and +you +will +sometimes +open +your +window +so +for +that +pleasure +and +your +friends +w +ill +be +properly +astonished +to +see +you +laughing +as +you +look +up +at +the +sky +then +you +will +say +to +them +yes +the +stars +always +make +me +laugh +and +they +will +think +you +are +crazy +it +will +be +a +very +shabby +trick +that +i +shall +have +played +on +you +and +he +laughed +again +it +will +be +as +if +in +place +of +the +stars +i +had +given +you +a +great +number +of +little +bells +that +knew +how +to +laugh +and +he +laughed +again +then +he +quickly +became +serious +tonight +you +know +do +not +come +said +the +little +prince +i +shall +not +leave +you +i +said +i +shall +look +as +if +i +were +suffering +i +shall +look +a +little +as +if +i +were +dying +it +is +like +that +do +not +come +to +see +that +it +is +not +worth +the +trouble +i +shall +not +leave +you +but +he +was +worried +i +tell +you +it +is +also +because +of +the +snake +he +must +not +bite +you +snakes +they +are +malicious +creatures +this +one +might +bite +you +just +for +fun +i +shall +not +leave +you +but +a +thought +came +to +reassure +him +it +is +true +that +they +have +no +more +poison +for +a +second +bite +that +night +i +did +not +see +him +set +out +on +his +way +he +got +away +from +me +without +making +a +sound +when +i +succeeded +in +catching +up +with +him +he +was +walking +along +with +a +quick +and +resolute +step +he +said +to +me +merely +ah +you +are +there +and +he +took +me +by +the +hand +but +he +was +still +worrying +it +was +wrong +of +you +to +come +you +will +suffer +i +shall +look +as +if +i +were +dead +and +that +will +not +be +true +i +said +nothing +you +understand +it +is +too +far +i +cannot +carry +this +body +with +me +it +is +too +heavy +i +said +nothing +but +it +will +be +like +an +old +abandoned +shell +there +is +nothing +sad +about +old +shells +i +said +nothing +he +was +a +little +discouraged +but +he +made +one +more +effort +you +know +it +will +be +very +nice +i +too +shall +look +at +the +stars +all +the +stars +will +be +wells +with +a +rusty +pulley +all +the +stars +will +pour +out +fresh +water +for +me +to +drink +i +said +nothing +that +will +be +so +amusing +you +will +have +five +hundred +million +little +bells +and +i +shall +have +five +hundred +million +springs +of +fresh +water +and +he +too +said +nothing +more +because +he +was +crying +here +it +is +let +me +go +on +by +myself +and +he +sat +down +because +he +was +afraid +then +he +said +again +you +know +my +flower +i +am +responsible +for +her +and +she +is +so +weak +she +is +so +naive +she +has +four +thorns +of +no +use +at +all +to +protect +herself +against +all +the +world +i +too +sat +down +because +i +was +not +able +to +stand +up +any +longer +there +now +that +is +all +he +still +hesitated +a +little +then +he +got +up +he +took +one +step +i +could +not +move +there +was +nothing +but +a +flash +of +yellow +close +to +his +ankle +he +remained +motionless +for +an +instant +he +did +not +cry +out +he +fell +as +gently +as +a +tree +falls +there +was +not +even +any +sound +because +of +the +sand +chapter +the +narrator +s +afterthoughts +and +now +six +years +have +already +gone +by +i +have +never +yet +told +this +story +the +companions +who +met +me +on +my +return +were +well +content +to +see +me +alive +i +was +sad +but +i +told +them +i +am +tired +now +my +sorrow +is +comforted +a +little +that +is +to +say +not +entirely +but +i +know +that +he +did +go +back +to +his +planet +because +i +did +not +find +his +body +at +daybreak +it +was +not +such +a +heavy +body +and +at +night +i +love +to +listen +to +the +stars +it +is +like +five +hundred +million +little +bells +but +there +is +one +extraordinary +thing +when +i +drew +the +muzzle +for +the +little +prince +i +forgot +to +add +the +leather +strap +to +it +he +will +never +have +been +able +to +fasten +it +on +his +sheep +so +now +i +keep +wondering +what +is +happening +on +his +planet +perhaps +the +sheep +has +eaten +the +flower +at +one +time +i +say +to +myself +surely +not +the +little +prince +shuts +his +flower +under +her +glass +globe +every +night +and +he +watches +over +his +sheep +very +carefully +then +i +am +happy +and +there +is +sweetness +in +the +laughter +of +all +the +stars +but +at +another +time +i +say +to +myself +at +some +moment +or +other +one +is +absent +minded +and +that +is +enough +on +some +one +evening +he +forgot +the +glass +globe +or +the +sheep +got +out +without +making +any +noise +in +the +night +and +then +the +little +bells +are +changed +to +tears +here +then +is +a +great +mystery +for +you +who +also +love +the +little +prince +and +for +me +nothing +in +the +universe +can +be +the +same +if +somewhere +we +do +not +know +where +a +sheep +that +we +never +saw +has +yes +or +no +eaten +a +rose +look +up +at +the +sky +ask +yourselves +is +it +yes +or +no +has +the +sheep +eaten +the +flower +and +you +will +see +how +everything +changes +and +no +grown +up +will +ever +understand +that +this +is +a +matter +of +so +much +importance +this +is +to +me +the +loveliest +and +saddest +landscape +in +the +world +it +is +the +same +as +that +on +the +preceding +page +but +i +have +drawn +it +again +to +impress +it +on +your +memory +it +is +here +that +the +little +prince +appeared +on +earth +and +disappeared +look +at +it +carefully +so +that +you +will +be +sure +to +recognise +it +in +case +you +travel +some +day +to +the +african +desert +and +if +you +should +come +upon +this +spot +please +do +not +hurry +on +wait +for +a +time +exactly +under +the +star +then +if +a +little +man +appears +who +laughs +who +has +golden +hair +and +who +refuses +to +answer +questions +you +will +know +who +he +is +if +this +should +happen +please +comfort +me +send +me +word +that +he +has +come +back diff --git a/model/data/beloved.txt b/model/data/beloved.txt new file mode 100644 index 0000000..b313ae1 --- /dev/null +++ b/model/data/beloved.txt @@ -0,0 +1,6173 @@ +1 +*Please note: There may be some problems with paragraph breaks. When they occur, just +keep reading! +Toni Morrison +Beloved +Sixty million and more +I will call them my people, +which were not my people; +and her beloved, +which was not beloved. +ROMANS 9: 25 +BOOK ONE +Chapter 1 +124 WAS SPITEFUL. Full of a baby's venom. The women in the house knew it and so did the children. For years each put +up with the spite in his own way, but by 1873 Sethe and her daughter Denver were its only victims. The grandmother, +Baby Suggs, was dead, and the sons, Howard and Buglar, had run away by the time they were thirteen years old--as soon +as merely looking in a mirror shattered it (that was the signal for Buglar); as soon as two tiny hand prints appeared in the +cake (that was it for Howard). Neither boy waited to see more; another kettleful of chickpeas smoking in a heap on the +floor; soda crackers crumbled and strewn in a line next to the door sill. Nor did they wait for one of the relief periods: +the weeks, months even, when nothing was disturbed. No. Each one fled at once--the moment the house committed +what was for him the one insult not to be borne or witnessed a second time. Within two months, in the dead of winter, +leaving their grandmother, Baby Suggs; Sethe, their mother; and their little sister, Denver, all by themselves in the gray +and white house on Bluestone Road. It didn't have a number then, because Cincinnati didn't stretch that far. In fact, +Ohio had been calling itself a state only seventy years when first one brother and then the next stuffed quilt packing into +his hat, snatched up his shoes, and crept away from the lively spite the house felt for them. +Baby Suggs didn't even raise her head. From her sickbed she heard them go but that wasn't the reason she lay still. It +was a wonder to her that her grandsons had taken so long to realize that every house wasn't like the one on Bluestone +Road. Suspended between the nas tiness of life and the meanness of the dead, she couldn't get interested in leaving life +or living it, let alone the fright of two creeping-off boys. Her past had been like her present--intolerable--and since she +knew death was anything but forgetfulness, she used the little energy left her for pondering color. +"Bring a little lavender in, if you got any. Pink, if you don't." +And Sethe would oblige her with anything from fabric to her own tongue. Winter in Ohio was especially rough if you +had an appetite for color. Sky provided the only drama, and counting on a Cincinnati horizon for life's principal joy was +reckless indeed. So Sethe and the girl Denver did what they could, and what the house permitted, for her. Together they +waged a perfunctory battle against the outrageous behavior of that place; against turned-over slop jars, smacks on the +behind, and gusts of sour air. For they understood the source of the outrage as well as they knew the source of light. +Baby Suggs died shortly after the brothers left, with no interest whatsoever in their leave-taking or hers, and right +afterward Sethe and Denver decided to end the persecution by calling forth the ghost that tried them so. Perhaps a +2 +conversation, they thought, an exchange of views or something would help. So they held hands and said, "Come on. +Come on. You may as well just come on." +The sideboard took a step forward but nothing else did. +"Grandma Baby must be stopping it," said Denver. She was ten and still mad at Baby Suggs for dying. +Sethe opened her eyes. "I doubt that," she said. +"Then why don't it come?" +"You forgetting how little it is," said her mother. "She wasn't even two years old when she died. Too little to understand. +Too little to talk much even." +"Maybe she don't want to understand," said Denver. +"Maybe. But if she'd only come, I could make it clear to her." +Sethe released her daughter's hand and together they pushed the sideboard back against the wall. Outside a driver +whipped his horse into the gallop local people felt necessary when they passed 124. +"For a baby she throws a powerful spell," said Denver. +"No more powerful than the way I loved her," Sethe answered and there it was again. The welcoming cool of unchiseled +headstones; the one she selected to lean against on tiptoe, her knees wide open as any grave. Pink as a fingernail it was, +and sprinkled with glittering chips. Ten minutes, he said. You got ten minutes I'll do it for free. +Ten minutes for seven letters. With another ten could she have gotten "Dearly" too? She had not thought to ask him +and it bothered her still that it might have been possible--that for twenty minutes, a half hour, say, she could have had +the whole thing, every word she heard the preacher say at the funeral (and all there was to say, surely) engraved on her +baby's headstone: Dearly Beloved. But what she got, settled for, was the one word that mattered. She thought it would +be enough, rutting among the headstones with the engraver, his young son looking on, the anger in his face so old; the +appetite in it quite new. That should certainly be enough. Enough to answer one more preacher, one more abolitionist +and a town full of disgust. +Counting on the stillness of her own soul, she had forgotten the other one: the soul of her baby girl. Who would have +thought that a little old baby could harbor so much rage? Rutting among the stones under the eyes of the engraver's son +was not enough. Not only did she have to live out her years in a house palsied by the baby's fury at having its throat cut, +but those ten minutes she spent pressed up against dawn-colored stone studded with star chips, her knees wide open as +the grave, were longer than life, more alive, more pulsating than the baby blood that soaked her fingers like oil. +"We could move," she suggested once to her mother-in-law. +"What'd be the point?" asked Baby Suggs. "Not a house in the country ain't packed to its rafters with some dead Negro's +grief. We lucky this ghost is a baby. My husband's spirit was to come back in here? or yours? Don't talk to me. You lucky. +You got three left. +Three pulling at your skirts and just one raising hell from the other side. Be thankful, why don't you? I had eight. Every +one of them gone away from me. Four taken, four chased, and all, I expect, worrying somebody's house into evil." Baby +Suggs rubbed her eyebrows. +"My first-born. All I can remember of her is how she loved the burned bottom of bread. Can you beat that? Eight +children and that's all I remember." +"That's all you let yourself remember," Sethe had told her, but she was down to one herself--one alive, that is--the boys +chased off by the dead one, and her memory of Buglar was fading fast. Howard at least had a head shape nobody could +3 +forget. As for the rest, she worked hard to remember as +close to nothing as was safe. Unfortunately her brain was devious. She might be hurrying across a field, running +practically, to get to the pump quickly and rinse the chamomile sap from her legs. Nothing else would be in her mind. +The picture of the men coming to nurse her was as lifeless as the nerves in her back where the skin buckled like a +washboard. Nor was there the faintest scent of ink or the cherry gum and oak bark from which it was made. Nothing. +Just the breeze cooling her face as she rushed toward water. And then sopping the chamomile away with pump water +and rags, her mind fixed on getting every last bit of sap off--on her carelessness in taking a shortcut across the field +just to save a half mile, and not noticing how high the weeds had grown until the itching was all the way to her knees. +Then something. The plash of water, the sight of her shoes and stockings awry on the path where she had flung them; +or Here Boy lapping in the puddle near her feet, and suddenly there was Sweet Home rolling, rolling, rolling out before +her eyes, and although there was not a leaf on that farm that did not make her want to scream, it rolled itself out before +her in shameless beauty. It never looked as terrible as it was and it made her wonder if hell was a pretty place too. +Fire and brimstone all right, but hidden in lacy groves. Boys hanging from the most beautiful sycamores in the world. It +shamed her--remembering the wonderful soughing trees rather than the boys. Try as she might to make it otherwise, +the sycamores beat out the children every time and she could not forgive her memory for that. +When the last of the chamomile was gone, she went around to the front of the house, collecting her shoes and stockings +on the way. +As if to punish her further for her terrible memory, sitting on the porch not forty feet away was Paul D, the last of the +Sweet Home men. And although she she said, "Is that you?" +"What's left." He stood up and smiled. "How you been, girl, besides barefoot?" +When she laughed it came out loose and young. "Messed up my legs back yonder. Chamomile." +He made a face as though tasting a teaspoon of something bitter. +"I don't want to even hear 'bout it. Always did hate that stuff." +Sethe balled up her stockings and jammed them into her pocket. +"Come on in." +"Porch is fine, Sethe. Cool out here." He sat back down and looked at the meadow on the other side of the road, +knowing the eagerness he felt would be in his eyes. +"Eighteen years," she said softly. +"Eighteen," he repeated. "And I swear I been walking every one of em. Mind if I join you?" He nodded toward her feet +and began unlacing his shoes. +"You want to soak them? Let me get you a basin of water." She moved closer to him to enter the house. +"No, uh uh. Can't baby feet. A whole lot more tramping they got to do yet." +"You can't leave right away, Paul D. You got to stay awhile." +"Well, long enough to see Baby Suggs, anyway. Where is she?" +"Dead." +"Aw no. When?" +"Eight years now. Almost nine." +4 +"Was it hard? I hope she didn't die hard." +Sethe shook her head. "Soft as cream. Being alive was the hard part. Sorry you missed her though. Is that what you came +by for?" +"That's some of what I came for. The rest is you. But if all the truth be known, I go anywhere these days. Anywhere they +let me sit down." +"You looking good." +"Devil's confusion. He lets me look good long as I feel bad." He looked at her and the word "bad" took on another +meaning. +Sethe smiled. This is the way they were--had been. All of the Sweet Home men, before and after Halle, treated her to a +mild brotherly flirtation, so subtle you had to scratch for it. +Except for a heap more hair and some waiting in his eyes, he looked the way he had in Kentucky. Peachstone skin; +straight-backed. +For a man with an immobile face it was amazing how ready it was to smile, or blaze or be sorry with you. As though all +you had to do was get his attention and right away he produced the feeling you were feeling. With less than a blink, his +face seemed to change--underneath it lay the activity. +"I wouldn't have to ask about him, would I? You'd tell me if there was anything to tell, wouldn't you?" Sethe looked +down at her feet and saw again the sycamores. +"I'd tell you. Sure I'd tell you. I don't know any more now than I did then." Except for the churn, he thought, and you +don't need to know that. "You must think he's still alive." +"No. I think he's dead. It's not being sure that keeps him alive." +"What did Baby Suggs think?" +"Same, but to listen to her, all her children is dead. Claimed she felt each one go the very day and hour." +"When she say Halle went?" +"Eighteen fifty-five. The day my baby was born." +"You had that baby, did you? Never thought you'd make it." +He chuckled. "Running off pregnant." +"Had to. Couldn't be no waiting." She lowered her head and thought, as he did, how unlikely it was that she had made it. +And if it hadn't been for that girl looking for velvet, she never would have. +"All by yourself too." He was proud of her and annoyed by her. +Proud she had done it; annoyed that she had not needed Halle or him in the doing. +"Almost by myself. Not all by myself. A whitegirl helped me." +"Then she helped herself too, God bless her." +"You could stay the night, Paul D." +"You don't sound too steady in the offer." +5 +Sethe glanced beyond his shoulder toward the closed door. "Oh it's truly meant. I just hope you'll pardon my house. +Come on in. +Talk to Denver while I cook you something." +Paul D tied his shoes together, hung them over his shoulder and followed her through the door straight into a pool of +red and undulating light that locked him where he stood. +"You got company?" he whispered, frowning. +"Off and on," said Sethe. +"Good God." He backed out the door onto the porch. "What kind of evil you got in here?" +"It's not evil, just sad. Come on. Just step through." +He looked at her then, closely. Closer than he had when she first rounded the house on wet and shining legs, holding her +shoes and stockings up in one hand, her skirts in the other. Halle's girl--the one with iron eyes and backbone to match. +He had never seen her hair in Kentucky. And though her face was eighteen years older than when last he saw her, it was +softer now. Because of the hair. A face too still for comfort; irises the same color as her skin, which, in that still face, +used to make him think of a mask with mercifully punched out eyes. Halle's woman. Pregnant every year including the +year she sat by the fire telling him she was going to run. Her three children she had already packed into a wagonload of +others in a caravan of Negroes crossing the river. They were to be left with Halle's mother near Cincinnati. Even in that +tiny shack, leaning so close to the fire you could smell the heat in her dress, her +eyes did not pick up a flicker of light. They were like two wells into which he had trouble gazing. Even punched out they +needed to be covered, lidded, marked with some sign to warn folks of what that emptiness held. So he looked instead +at the fire while she told him, because her husband was not there for the telling. Mr. Garner was dead and his wife +had a lump in her neck the size of a sweet potato and unable to speak to anyone. She leaned as close to the fire as her +pregnant belly allowed and told him, Paul D, the last of the Sweet Home men. +There had been six of them who belonged to the farm, Sethe the only female. Mrs. Garner, crying like a baby, had sold +his brother to pay off the debts that surfaced the minute she was widowed. Then schoolteacher arrived to put things in +order. But what he did broke three more Sweet Home men and punched the glittering iron out of Sethe's eyes, leaving +two open wells that did not reflect firelight. +Now the iron was back but the face, softened by hair, made him trust her enough to step inside her door smack into a +pool of pulsing red light. +She was right. It was sad. Walking through it, a wave of grief soaked him so thoroughly he wanted to cry. It seemed a +long way to the normal light surrounding the table, but he made it--dry-eyed and lucky. +"You said she died soft. Soft as cream," he reminded her. +"That's not Baby Suggs," she said. +"Who then?" +"My daughter. The one I sent ahead with the boys." +"She didn't live?" +"No. The one I was carrying when I run away is all I got left. +Boys gone too. Both of em walked off just before Baby Suggs died." +Paul D looked at the spot where the grief had soaked him. The red was gone but a kind of weeping clung to the air +6 +where it had been. +Probably best, he thought. If a Negro got legs he ought to use them. Sit down too long, somebody will figure out a way +to tie them up. Still... if her boys were gone... +"No man? You here by yourself?" +"Me and Denver," she said. +"That all right by you?" +"That's all right by me." +She saw his skepticism and went on. "I cook at a restaurant in town. And I sew a little on the sly." +Paul D smiled then, remembering the bedding dress. Sethe was thirteen when she came to Sweet Home and already +iron-eyed. She was a timely present for Mrs. Garner who had lost Baby Suggs to her husband's high principles. The five +Sweet Home men looked at the new girl and decided to let her be. They were young and so sick with the absence of +women they had taken to calves. Yet they let the iron-eyed girl be, so she could choose in spite of the fact that each +one would have beaten the others to mush to have her. It took her a year to choose--a long, tough year of thrashing on +pallets eaten up with dreams of her. A year of yearning, when rape seemed the solitary gift of life. The restraint they had +exercised possible only because they were Sweet Home men--the ones Mr. Garner bragged about while other farmers +shook their heads in warning at the phrase. +"Y'all got boys," he told them. "Young boys, old boys, picky boys, stroppin boys. Now at Sweet Home, my niggers is men +every one of em. Bought em thataway, raised em thataway. Men every one." +"Beg to differ, Garner. Ain't no nigger men." +"Not if you scared, they ain't." Garner's smile was wide. "But if you a man yourself, you'll want your niggers to be men +too." +"I wouldn't have no nigger men round my wife." +It was the reaction Garner loved and waited for. "Neither would I," he said. "Neither would I," and there was always a +pause before the neighbor, or stranger, or peddler, or brother-in-law or whoever it was got the meaning. Then a fierce +argument, sometimes a fight, and Garner came home bruised and pleased, having demonstrated one more time what a +real Kentuckian was: one tough enough and smart enough to make and call his own niggers men. +And so they were: Paul D Garner, Paul F Garner, Paul A Garner, Halle Suggs and Sixo, the wild man. All in their twenties, +minus women, fucking cows, dreaming of rape, thrashing on pallets, rubbing their thighs and waiting for the new girl-- +the one who took Baby Suggs' place after Halle bought her with five years of Sundays. +Maybe that was why she chose him. A twenty-year-old man so in love with his mother he gave up five years of Sabbaths +just to see her sit down for a change was a serious recommendation. +She waited a year. And the Sweet Home men abused cows while they waited with her. She chose Halle and for their first +bedding she sewed herself a dress on the sly. +"Won't you stay on awhile? Can't nobody catch up on eighteen years in a day." +Out of the dimness of the room in which they sat, a white staircase climbed toward the blue-and-white wallpaper of the +second floor. +Paul D could see just the beginning of the paper; discreet flecks of yellow sprinkled among a blizzard of snowdrops all +backed by blue. +7 +The luminous white of the railing and steps kept him glancing toward it. Every sense he had told him the air above the +stairwell was charmed and very thin. But the girl who walked down out of that air was round and brown with the face of +an alert doll. +Paul D looked at the girl and then at Sethe who smiled saying, "Here she is my Denver. This is Paul D, honey, from Sweet +Home." +"Good morning, Mr. D." +"Garner, baby. Paul D Garner." +"Yes sir." +"Glad to get a look at you. Last time I saw your mama, you were pushing out the front of her dress." +"Still is," Sethe smiled, "provided she can get in it." +Denver stood on the bottom step and was suddenly hot and shy. +It had been a long time since anybody (good-willed whitewoman, preacher, speaker or newspaperman) sat at their +table, their sympathetic voices called liar by the revulsion in their eyes. For twelve years, long before Grandma Baby +died, there had been no visitors of any sort and certainly no friends. No coloredpeople. Certainly no hazelnut man with +too long hair and no notebook, no charcoal, no oranges, no questions. Someone her mother wanted to talk to and +would even consider talking to while barefoot. Looking, in fact acting, like a girl instead of the quiet, queenly woman +Denver had known all her life. The one who never looked away, who when a man got stomped to death by a mare right +in front of Sawyer's restaurant did not look away; and when a sow began eating her own litter did not look away then +either. And when the baby's spirit picked up Here Boy and slammed him into the wall hard enough to break two of his +legs and dislocate his eye, so hard he went into convulsions and chewed up his tongue, still her mother had not looked +away. She had taken a hammer, knocked the dog unconscious, wiped away the blood and saliva, pushed his eye back +in his head and set his leg bones. He recovered, mute and off-balance, more because of his untrustworthy eye than his +bent legs, and winter, summer, drizzle or dry, nothing could persuade him to enter the house again. +Now here was this woman with the presence of mind to repair a dog gone savage with pain rocking her crossed ankles +and looking away from her own daughter's body. As though the size of it was more than vision could bear. And neither +she nor he had on shoes. +Hot, shy, now Denver was lonely. All that leaving: first her brothers, then her grandmother--serious losses since there +were no children willing to circle her in a game or hang by their knees from +her porch railing. None of that had mattered as long as her mother did not look away as she was doing now, making +Denver long, downright long, for a sign of spite from the baby ghost. +"She's a fine-looking young lady," said Paul D. "Fine-looking. +Got her daddy's sweet face." +"You know my father?" +"Knew him. Knew him well." +"Did he, Ma'am?" Denver fought an urge to realign her affection. +"Of course he knew your daddy. I told you, he's from Sweet Home." +Denver sat down on the bottom step. There was nowhere else gracefully to go. They were a twosome, saying "Your +daddy" and "Sweet Home" in a way that made it clear both belonged to them and not to her. That her own father's +absence was not hers. Once the absence had belonged to Grandma Baby--a son, deeply mourned because he was the +8 +one who had bought her out of there. Then it was her mother's absent husband. Now it was this hazelnut stranger's +absent friend. Only those who knew him ("knew him well") could claim his absence for themselves. Just as only those +who lived in Sweet Home could remember it, whisper it and glance sideways at one another while they did. Again she +wished for the baby ghost--its anger thrilling her now where it used to wear her out. Wear her out. +"We have a ghost in here," she said, and it worked. They were not a twosome anymore. Her mother left off swinging +her feet and being girlish. Memory of Sweet Home dropped away from the eyes of the man she was being girlish for. He +looked quickly up the lightning-white stairs behind her. +"So I hear," he said. "But sad, your mama said. Not evil." +"No sir," said Denver, "not evil. But not sad either." +"What then?" +"Rebuked. Lonely and rebuked." +"Is that right?" Paul D turned to Sethe. +"I don't know about lonely," said Denver's mother. "Mad, maybe, but I don't see how it could be lonely spending every +minute with us like it does." +"Must be something you got it wants." +Sethe shrugged. "It's just a baby." +"My sister," said Denver. "She died in this house." +Paul D scratched the hair under his jaw. "Reminds me of that headless bride back behind Sweet Home. Remember that, +Sethe? Used to roam them woods regular." +"How could I forget? Worrisome..." +"How come everybody run off from Sweet Home can't stop talking about it? Look like if it was so sweet you would have +stayed." +"Girl, who you talking to?" +Paul D laughed. "True, true. She's right, Sethe. It wasn't sweet and it sure wasn't home." He shook his head. +"But it's where we were," said Sethe. "All together. Comes back whether we want it to or not." She shivered a little. A +light ripple of skin on her arm, which she caressed back into sleep. "Denver," she said, "start up that stove. Can't have a +friend stop by and don't feed him." +"Don't go to any trouble on my account," Paul D said. +"Bread ain't trouble. The rest I brought back from where I work. +Least I can do, cooking from dawn to noon, is bring dinner home. +You got any objections to pike?" +"If he don't object to me I don't object to him." +At it again, thought Denver. Her back to them, she jostled the kindlin and almost lost the fire. "Why don't you spend the +night, Mr. Garner? You and Ma'am can talk about Sweet Home all night long." +Sethe took two swift steps to the stove, but before she could yank Denver's collar, the girl leaned forward and began to +9 +cry. +"What is the matter with you? I never knew you to behave this way." +"Leave her be," said Paul D. "I'm a stranger to her." +"That's just it. She got no cause to act up with a stranger. Oh baby, what is it? Did something happen?" +But Denver was shaking now and sobbing so she could not speak. +The tears she had not shed for nine years wetting her far too womanly breasts. +"I can't no more. I can't no more." +"Can't what? What can't you?" +"I can't live here. I don't know where to go or what to do, but I can't live here. Nobody speaks to us. Nobody comes by. +Boys don't like me. Girls don't either." +"Honey, honey." +"What's she talking 'bout nobody speaks to you?" asked Paul D. +"It's the house. People don't--" +"It's not! It's not the house. It's us! And it's you!" +"Denver!" +"Leave off, Sethe. It's hard for a young girl living in a haunted house. That can't be easy." +"It's easier than some other things." +"Think, Sethe. I'm a grown man with nothing new left to see or do and I'm telling you it ain't easy. Maybe you all ought +to move. +Who owns this house?" +Over Denver's shoulder Sethe shot Paul D a look of snow. "What you care?" +"They won't let you leave?" +"No." +"Sethe." +"No moving. No leaving. It's all right the way it is." +"You going to tell me it's all right with this child half out of her mind?" +Something in the house braced, and in the listening quiet that followed Sethe spoke. +"I got a tree on my back and a haint in my house, and nothing in between but the daughter I am holding in my arms. +No more running--from nothing. I will never run from another thing on this earth. I took one journey and I paid for the +ticket, but let me tell you something, Paul D Garner: it cost too much! Do you hear me? +It cost too much. Now sit down and eat with us or leave us be." +Paul D fished in his vest for a little pouch of tobacco--concentrating on its contents and the knot of its string while Sethe +10 +led Denver into the keeping room that opened off the large room he was sitting in. He had no smoking papers, so he +fiddled with the pouch and listened through the open door to Sethe quieting her daughter. When she came back she +avoided his look and went straight to a small table next +to the stove. Her back was to him and he could see all the hair he wanted without the distraction of her face. +"What tree on your back?" +"Huh." Sethe put a bowl on the table and reached under it for flour. +"What tree on your back? Is something growing on your back? +I don't see nothing growing on your back." +"It's there all the same." +"Who told you that?" +"Whitegirl. That's what she called it. I've never seen it and never will. But that's what she said it looked like. A +chokecherry tree. +Trunk, branches, and even leaves. Tiny little chokecherry leaves. But that was eighteen years ago. Could have cherries +too now for all I know." +Sethe took a little spit from the tip of her tongue with her forefinger. +Quickly, lightly she touched the stove. Then she trailed her fingers through the flour, parting, separating small hills and +ridges of it, looking for mites. Finding none, she poured soda and salt into the crease of her folded hand and tossed both +into the flour. Then she reached into a can and scooped half a handful of lard. Deftly she squeezed the flour through it, +then with her left hand sprinkling water, she formed the dough. +"I had milk," she said. "I was pregnant with Denver but I had milk for my baby girl. I hadn't stopped nursing her when I +sent her on ahead with Howard and Buglar." +Now she rolled the dough out with a wooden pin. "Anybody could smell me long before he saw me. And when he +saw me he'd see the drops of it on the front of my dress. Nothing I could do about that. All I knew was I had to get my +milk to my baby girl. Nobody was going to nurse her like me. Nobody was going to get it to her fast enough, or take it +away when she had enough and didn't know it. Nobody knew that she couldn't pass her air if you held her up on your +shoulder, only if she was lying on my knees. Nobody knew that but me and nobody had her milk but me. I told that +to the women in the wagon. Told them to put sugar water in cloth to suck from so when I got there in a few days she +wouldn't have forgot me. The milk would be there and I would be there with it." +"Men don't know nothing much," said Paul D, tucking his pouch back into his vest pocket, "but they do know a suckling +can't be away from its mother for long." +"Then they know what it's like to send your children off when your breasts are full." +"We was talking 'bout a tree, Sethe." +"After I left you, those boys came in there and took my milk. +That's what they came in there for. Held me down and took it. I told Mrs. Garner on em. She had that lump and couldn't +speak but her eyes rolled out tears. Them boys found out I told on em. Schoolteacher made one open up my back, and +when it closed it made a tree. It grows there still." +"They used cowhide on you?" +11 +"And they took my milk." +"They beat you and you was pregnant?" +"And they took my milk!" +The fat white circles of dough lined the pan in rows. Once more Sethe touched a wet forefinger to the stove. She opened +the oven door and slid the pan of biscuits in. As she raised up from the heat she felt Paul D behind her and his hands +under her breasts. She straightened up and knew, but could not feel, that his cheek was pressing into the branches of +her chokecherry tree. +Not even trying, he had become the kind of man who could walk into a house and make the women cry. Because with +him, in his presence, they could. There was something blessed in his manner. +Women saw him and wanted to weep--to tell him that their chest hurt and their knees did too. Strong women and wise +saw him and told him things they only told each other: that way past the Change of Life, desire in them had suddenly +become enormous, greedy, more savage than when they were fifteen, and that it embarrassed them and made them +sad; that secretly they longed to die--to be quit of it--that sleep was more precious to them than any waking day. Young +girls sidled up to him to confess or describe how well-dressed the visitations were that had followed them straight from +their dreams. +Therefore, although he did not understand why this was so, he was not surprised when Denver dripped tears into +the stovefire. Nor, fifteen minutes later, after telling him about her stolen milk, her mother wept as well. Behind her, +bending down, his body an arc of kindness, he held her breasts in the palms of his hands. He rubbed his cheek on her +back and learned that way her sorrow, the roots of it; its wide trunk and intricate branches. Raising his fingers to the +hooks of her dress, he knew without seeing them or hearing any sigh that the tears were coming fast. And when the +top of her dress was around her hips and he saw the sculpture her back had become, like the decorative work of an +ironsmith too passionate for display, he could think but not say, "Aw, Lord, girl." And he would tolerate no peace until +he had touched every ridge and leaf of it with his mouth, none of which Sethe could feel because her back skin had been +dead for years. What she knew was that the responsibility for her breasts, at last, was in somebody else's hands. +Would there be a little space, she wondered, a little time, some way to hold off eventfulness, to push busyness into the +corners of the room and just stand there a minute or two, naked from shoulder blade to waist, relieved of the weight of +her breasts, smelling the stolen milk again and the pleasure of +baking bread? Maybe this one time she could stop dead still in the middle of a cooking meal--not even leave the stove- +-and feel the hurt her back ought to. Trust things and remember things because the last of the Sweet Home men was +there to catch her if she sank? +The stove didn't shudder as it adjusted to its heat. Denver wasn't stirring in the next room. The pulse of red light +hadn't come back and Paul D had not trembled since 1856 and then for eighty-three days in a row. Locked up and +chained down, his hands shook so bad he couldn't smoke or even scratch properly. Now he was trembling again but +in the legs this time. It took him a while to realize that his legs were not shaking because of worry, but because the +floorboards were and the grinding, shoving floor was only part of it. The house itself was pitching. Sethe slid to the floor +and struggled to get back into her dress. While down on all fours, as though she were holding her house down on the +ground, Denver burst from the keeping room, terror in her eyes, a vague smile on her lips. +"God damn it! Hush up!" Paul D was shouting, falling, reaching for anchor. "Leave the place alone! Get the hell out!" A +table rushed toward him and he grabbed its leg. Somehow he managed to stand at an angle and, holding the table by +two legs, he bashed it about, wrecking everything, screaming back at the screaming house. "You want to fight, come on! +God damn it! She got enough without you. +She got enough!" +The quaking slowed to an occasional lurch, but Paul D did not stop whipping the table around until everything was rock +12 +quiet. +Sweating and breathing hard, he leaned against the wall in the space the sideboard left. Sethe was still crouched next +to the stove, clutching her salvaged shoes to her chest. The three of them, Sethe, Denver, and Paul D, breathed to the +same beat, like one tired person. Another breathing was just as tired. +It was gone. Denver wandered through the silence to the stove. +She ashed over the fire and pulled the pan of biscuits from the oven. +The jelly cupboard was on its back, its contents lying in a heap in the corner of the bottom shelf. She took out a jar, and, +looking around for a plate, found half of one by the door. These things she carried out to the porch steps, where she sat +down. +The two of them had gone up there. Stepping lightly, easy-footed, they had climbed the white stairs, leaving her down +below. She pried the wire from the top of the jar and then the lid. Under it was cloth and under that a thin cake of wax. +She removed it all and coaxed the jelly onto one half of the half a plate. She took a biscuit and pulled off its black top. +Smoke curled from the soft white insides. +She missed her brothers. Buglar and Howard would be twenty two and twenty-three now. Although they had been +polite to her during the quiet time and gave her the whole top of the bed, she remembered how it was before: the +pleasure they had sitting clustered on the white stairs--she +between the knees of Howard or Buglar--while they made up die-witch! stories with proven ways of killing her dead. +And Baby Suggs telling her things in the keeping room. +She smelled like bark in the day and leaves at night, for Denver would not sleep in her old room after her brothers ran +away. +Now her mother was upstairs with the man who had gotten rid of the only other company she had. Denver dipped a bit +of bread into the jelly. Slowly, methodically, miserably she ate it. +Chapter 2 +NOT QUITE in a hurry, but losing no time, Sethe and Paul D climbed the white stairs. Overwhelmed as much by the +downright luck of finding her house and her in it as by the certainty of giving her his sex, Paul D dropped twenty-five +years from his recent memory. A stair step before him was Baby Suggs' replacement, the new girl they dreamed of at +night and fucked cows for at dawn while waiting for her to choose. Merely kissing the wrought iron on her back had +shook the house, had made it necessary for him to beat it to pieces. +Now he would do more. +She led him to the top of the stairs, where light came straight from the sky because the second-story windows of that +house had been placed in the pitched ceiling and not the walls. There were two rooms and she took him into one of +them, hoping he wouldn't mind the fact that she was not prepared; that though she could remember desire, she had +forgotten how it worked; the clutch and helplessness that resided in the hands; how blindness was altered so that what +leapt to the eye were places to lie down, and all else--door knobs, straps, hooks, the sadness that crouched in corners, +and the passing of time--was interference. +It was over before they could get their clothes off. Half-dressed and short of breath, they lay side by side resentful of +one another and the skylight above them. His dreaming of her had been too long and too long ago. Her deprivation had +been not having any dreams of her own at all. Now they were sorry and too shy to make talk. +Sethe lay on her back, her head turned from him. Out of the corner of his eye, Paul D saw the float of her breasts and +disliked it, the spread-away, flat roundness of them that he could definitely live without, never mind that downstairs he +13 +had held them as though they were the most expensive part of himself. And the wrought-iron maze he had explored +in the kitchen like a gold miner pawing through pay dirt was in fact a revolting clump of scars. Not a tree, as she said. +Maybe shaped like one, but nothing like any tree he knew because trees were inviting; things you could trust and be +near; talk to if you wanted to as he frequently did since way back when he took the midday meal in the fields of Sweet +Home. Always in the same place if he could, and choosing the place had been hard because Sweet Home +had more pretty trees than any farm around. His choice he called Brother, and sat under it, alone sometimes, sometimes +with Halle or the other Pauls, but more often with Sixo, who was gentle then and still speaking English. Indigo with a +flame-red tongue, Sixo experimented with night-cooked potatoes, trying to pin down exactly when to put smoking- +hot rocks in a hole, potatoes on top, and cover the whole thing with twigs so that by the time they broke for the meal, +hitched the animals, left the field and got to Brother, the potatoes would be at the peak of perfection. He might get up +in the middle of the night, go all the way out there, start the earth-over by starlight; or he would make the stones less +hot and put the next day's potatoes on them right after the meal. He never got it right, but they ate those undercooked, +overcooked, dried-out or raw potatoes anyway, laughing, spitting and giving him advice. +Time never worked the way Sixo thought, so of course he never got it right. Once he plotted down to the minute a +thirty-mile trip to see a woman. He left on a Saturday when the moon was in the place he wanted it to be, arrived at +her cabin before church on Sunday and had just enough time to say good morning before he had to start back again so +he'd make the field call on time Monday morning. He had walked for seventeen hours, sat down for one, turned around +and walked seventeen more. Halle and the Pauls spent the whole day covering Sixo's fatigue from Mr. Garner. They ate +no potatoes that day, sweet or white. Sprawled near Brother, his flame-red tongue hidden from them, his indigo face +closed, Sixo slept through dinner like a corpse. Now there was a man, and that was a tree. Himself lying in the bed and +the "tree" lying next to him didn't compare. +Paul D looked through the window above his feet and folded his hands behind his head. An elbow grazed Sethe's +shoulder. The touch of cloth on her skin startled her. She had forgotten he had not taken off his shirt. Dog, she thought, +and then remembered that she had not allowed him the time for taking it off. Nor herself time to take off her petticoat, +and considering she had begun undressing before she saw him on the porch, that her shoes and stockings were already +in her hand and she had never put them back on; that he had looked at her wet bare feet and asked to join her; that +when she rose to cook he had undressed her further; considering how quickly they had started getting naked, you'd +think by now they would be. But maybe a man was nothing but a man, which is what Baby Suggs always said. They +encouraged you to put some of your weight in their hands and soon as you felt how light and lovely that was, they +studied your scars and tribulations, after which they did what he had done: ran her children out and tore up the house. +She needed to get up from there, go downstairs and piece it all back together. This house he told her to leave as though +a house was a little thing--a shirtwaist or a sewing basket you could walk off from or give away any old time. She who +had never had one but this one; she who left a dirt floor to come to this one; she who had to bring a fistful of salsify +into Mrs. Garner's kitchen every day just to be able to work in it, feel like some part of it was hers, because she wanted +to love the work she did, to take the ugly out of it, and the only way she could feel at home on Sweet Home was if she +picked some pretty growing thing and took it with her. The day she forgot was the day butter wouldn't come or the +brine in the barrel blistered her arms. +At least it seemed so. A few yellow flowers on the table, some myrtle tied around the handle of the flatiron holding the +door open for a breeze calmed her, and when Mrs. Garner and she sat down to sort bristle, or make ink, she felt fine. +Fine. Not scared of the men beyond. The five who slept in quarters near her, but never came in the night. Just touched +their raggedy hats when they saw her and stared. And if she brought food to them in the fields, bacon and bread +wrapped in a piece of clean sheeting, they never took it from her hands. They stood back and waited for her to put it +on the ground (at the foot of a tree) and leave. Either they did not want to take anything from her, or did not want her +to see them eat. Twice or three times she lingered. Hidden behind honeysuckle she watched them. How different they +were without her, how they laughed and played and urinated and sang. All but Sixo, who laughed once--at the very end. +Halle, of course, was the nicest. Baby Suggs' eighth and last child, who rented himself out all over the county to buy her +away from there. But he too, as it turned out, was nothing but a man. +"A man ain't nothing but a man," said Baby Suggs. "But a son? +14 +Well now, that's somebody." +It made sense for a lot of reasons because in all of Baby's life, as well as Sethe's own, men and women were moved +around like checkers. +Anybody Baby Suggs knew, let alone loved, who hadn't run off or been hanged, got rented out, loaned out, bought up, +brought back, stored up, mortgaged, won, stolen or seized. So Baby's eight children had six fathers. What she called the +nastiness of life was the shock she received upon learning that nobody stopped playing checkers just because the pieces +included her children. Halle she was able to keep the longest. Twenty years. A lifetime. Given to her, no doubt, to make +up for hearing that her two girls, neither of whom had their adult teeth, were sold and gone and she had not been able +to wave goodbye. To make up for coupling with a straw boss for four months in exchange for keeping her third child, a +boy, with her--only to have him traded for lumber in the spring of the next year and to find herself pregnant by the man +who promised not to and did. That child she could not love and the rest she would not. "God take what He would," she +said. And He did, and He did, and He did and then gave her Halle who gave her freedom when it didn't mean a thing. +Sethe had the amazing luck of six whole years of marriage to that "somebody" son who had fathered every one of her +children. +A blessing she was reckless enough to take for granted, lean on, as though Sweet Home really was one. As though a +handful of myrtle stuck in the handle of a pressing iron propped against the door in a whitewoman's kitchen could make +it hers. As though mint sprig in the mouth changed the breath as well as its odor. A bigger fool never lived. +Sethe started to turn over on her stomach but changed her mind. +She did not want to call Paul D's attention back to her, so she settled for crossing her ankles. +But Paul D noticed the movement as well as the change in her breathing. He felt obliged to try again, slower this time, +but the appetite was gone. Actually it was a good feeling--not wanting her. +Twenty-five years and blip! The kind of thing Sixo would do--like the time he arranged a meeting with Patsy the Thirty- +Mile Woman. +It took three months and two thirty-four-mile round trips to do it. +To persuade her to walk one-third of the way toward him, to a place he knew. A deserted stone structure that Redmen +used way back when they thought the land was theirs. Sixo discovered it on one of his night creeps, and asked its +permission to enter. Inside, having felt what it felt like, he asked the Redmen's Presence if he could bring his woman +there. It said yes and Sixo painstakingly instructed her how to get there, exactly when to start out, how his welcoming +or warning whistles would sound. Since neither could go anywhere on business of their own, and since the Thirty-Mile +Woman was already fourteen and scheduled for somebody's arms, the danger was real. +When he arrived, she had not. He whistled and got no answer. He went into the Redmen's deserted lodge. She was not +there. He returned to the meeting spot. She was not there. He waited longer. She still did not come. He grew frightened +for her and walked down the road in the direction she should be coming from. Three or four miles, and he stopped. +It was hopeless to go on that way, so he stood in the wind and asked for help. Listening close for some sign, he heard +a whimper. He turned toward it, waited and heard it again. Uncautious now, he hollered her name. She answered in +a voice that sounded like life to him--not death. "Not move!" he shouted. "Breathe hard I can find you." He did. She +believed she was already at the meeting place and was crying because she thought he had not kept his promise. +Now it was too late for the rendezvous to happen at the Redmen's house, so they dropped where they were. Later he +punctured her calf to simulate snakebite so she could use it in some way as an excuse for not being on time to shake +worms from tobacco leaves. He gave her detailed directions about following the stream as a shortcut back, and saw her +off. When he got to the road it was very light and he had his clothes in his hands. Suddenly from around a bend a wagon +trundled toward him. Its driver, wide-eyed, raised a whip while the woman seated beside him covered her face. But Sixo +had already melted into the woods before the lash could unfurl itself on his indigo behind. +15 +He told the story to Paul F, Halle, Paul A and Paul D in the peculiar way that made them cry-laugh. Sixo went among +trees at night. For dancing, he said, to keep his bloodlines open, he said. +Privately, alone, he did it. None of the rest of them had seen him at it, but they could imagine it, and the picture they +pictured made them eager to laugh at him--in daylight, that is, when it was safe. +But that was before he stopped speaking English because there was no future in it. Because of the Thirty-Mile Woman +Sixo was the only one not paralyzed by yearning for Sethe. Nothing could be as good as the sex with her Paul D had been +imagining off and on for twenty-five years. His foolishness made him smile and think fondly of himself as he turned over +on his side, facing her. Sethe's eyes were +closed, her hair a mess. Looked at this way, minus the polished eyes, her face was not so attractive. So it must have been +her eyes that kept him both guarded and stirred up. Without them her face was manageable--a face he could handle. +Maybe if she would keep them closed like that... But no, there was her mouth. Nice. Halle never knew what he had. +Although her eyes were closed, Sethe knew his gaze was on her face, and a paper picture of just how bad she must look +raised itself up before her mind's eye. Still, there was no mockery coming from his gaze. Soft. It felt soft in a waiting kind +of way. He was not judging her--or rather he was judging but not comparing her. Not since Halle had a man looked at +her that way: not loving or passionate, but interested, as though he were examining an ear of corn for quality. +Halle was more like a brother than a husband. His care suggested a family relationship rather than a man's laying +claim. For years they saw each other in full daylight only on Sundays. The rest of the time they spoke or touched or ate +in darkness. Predawn darkness and the afterlight of sunset. So looking at each other intently was a Sunday morning +pleasure and Halle examined her as though storing up what he saw in sunlight for the shadow he saw the rest of the +week. And he had so little time. After his Sweet Home work and on Sunday afternoons was the debt work he owed +for his mother. When he asked her to be his wife, Sethe happily agreed and then was stuck not knowing the next step. +There should be a ceremony, shouldn't there? A preacher, some dancing, a party, a something. She and Mrs. +Garner were the only women there, so she decided to ask her. +"Halle and me want to be married, Mrs. Garner." +"So I heard." She smiled. "He talked to Mr. Garner about it. Are you already expecting?" +"No, ma'am." +"Well, you will be. You know that, don't you?" +"Yes, ma'am." +"Halle's nice, Sethe. He'll be good to you." +"But I mean we want to get married." +"You just said so. And I said all right." +"Is there a wedding?" +Mrs. Garner put down her cooking spoon. Laughing a little, she touched Sethe on the head, saying, "You are one sweet +child." And then no more. +Sethe made a dress on the sly and Halle hung his hitching rope from a nail on the wall of her cabin. And there on top +of a mattress on top of the dirt floor of the cabin they coupled for the third time, the first two having been in the tiny +cornfield Mr. Garner kept because it was a crop animals could use as well as humans. Both Halle and Sethe were under +the impression that they were hidden. +Scrunched down among the stalks they couldn't see anything, including the corn tops waving over their heads and +16 +visible to everyone else. +Sethe smiled at her and Halle's stupidity. Even the crows knew and came to look. Uncrossing her ankles, she managed +not to laugh aloud. +The jump, thought Paul D, from a calf to a girl wasn't all that mighty. Not the leap Halle believed it would be. And taking +her in the corn rather than her quarters, a yard away from the cabins of the others who had lost out, was a gesture +of tenderness. Halle wanted privacy for her and got public display. Who could miss a ripple in a cornfield on a quiet +cloudless day? He, Sixo and both of the Pauls sat under Brother pouring water from a gourd over their heads, and +through eyes streaming with well water, they watched the confusion of tassels in the field below. It had been hard, hard, +hard sitting there erect as dogs, watching corn stalks dance at noon. The water running over their heads made it worse. +Paul D sighed and turned over. Sethe took the opportunity afforded by his movement to shift as well. Looking at Paul +D's back, she remembered that some of the corn stalks broke, folded down over Halle's back, and among the things her +fingers clutched were husk and cornsilk hair. +How loose the silk. How jailed down the juice. +The jealous admiration of the watching men melted with the feast of new corn they allowed themselves that night. +Plucked from the broken stalks that Mr. Garner could not doubt was the fault of the raccoon. Paul F wanted his roasted; +Paul A wanted his boiled and now Paul D couldn't remember how finally they'd cooked those ears too young to eat. +What he did remember was parting the hair to get to the tip, the edge of his fingernail just under, so as not to graze a +single kernel. +The pulling down of the tight sheath, the ripping sound always convinced her it hurt. +As soon as one strip of husk was down, the rest obeyed and the ear yielded up to him its shy rows, exposed at last. How +loose the silk. How quick the jailed-up flavor ran free. +No matter what all your teeth and wet fingers anticipated, there was no accounting for the way that simple joy could +shake you. +How loose the silk. How fine and loose and free. +Chapter 3 +DENVER'S SECRETS were sweet. Accompanied every time by wild veronica until she discovered cologne. The first bottle +was a gift, the next she stole from her mother and hid among boxwood until it froze and cracked. That was the year +winter came in a hurry at suppertime and stayed eight months. One of the +War years when Miss Bodwin, the whitewoman, brought Christmas cologne for her mother and herself, oranges for the +boys and another good wool shawl for Baby Suggs. Talking of a war full of dead people, she looked happy--flush-faced, +and although her voice was heavy as a man's, she smelled like a roomful of flowers--excitement that Denver could have +all for herself in the boxwood. Back beyond 1x4 was a narrow field that stopped itself at a wood. On the yonder side of +these woods, a stream. +In these woods, between the field and the stream, hidden by post oaks, five boxwood bushes, planted in a ring, had +started stretching toward each other four feet off the ground to form a round, empty room seven feet high, its walls fifty +inches of murmuring leaves. +Bent low, Denver could crawl into this room, and once there she could stand all the way up in emerald light. +It began as a little girl's houseplay, but as her desires changed, so did the play. Quiet, primate and completely secret +except for the noisome cologne signal that thrilled the rabbits before it confused them. First a playroom (where the +silence was softer), then a refuge (from her brothers' fright), soon the place became the point. In that bower, closed +17 +off from the hurt of the hurt world, Denver's imagination produced its own hunger and its own food, which she badly +needed because loneliness wore her out. Wore her out. Veiled and protected by the live green walls, she felt ripe and +clear, and salvation was as easy as a wish. +Once when she was in the boxwood, an autumn long before Paul D moved into the house with her mother, she was +made suddenly cold by a combination of wind and the perfume on her skin. She dressed herself, bent down to leave +and stood up in snowfall: a thin and whipping snow very like the picture her mother had painted as she described the +circumstances of Denver's birth in a canoe straddled by a whitegirl for whom she was named. +Shivering, Denver approached the house, regarding it, as she always did, as a person rather than a structure. A person +that wept, sighed, trembled and fell into fits. Her steps and her gaze were the cautious ones of a child approaching a +nervous, idle relative (someone dependent but proud). A breastplate of darkness hid all the windows except one. Its +dim glow came from Baby Suggs' room. When Denver looked in, she saw her mother on her knees in prayer, which was +not unusual. What was unusual (even for a girl who had lived all her life in a house peopled by the living activity of the +dead) was that a white dress knelt down next to her mother and had its sleeve around her mother's waist. And it was +the tender embrace of the dress sleeve that made Denver remember the details of her birth--that and the thin, whipping +snow she was standing in, like the fruit of common flowers. The dress and her mother together looked like two friendly +grown-up women--one (the dress) helping out the other. +And the magic of her birth, its miracle in fact, testified to that friendliness as did her own name. +Easily she stepped into the told story that lay before her eyes on the path she followed away from the window. There +was only one door to the house and to get to it from the back you had to walk all the way around to the front of 124, +past the storeroom, past the cold house, the privy, the shed, on around to the porch. And to get to the part of the story +she liked best, she had to start way back: hear +the birds in the thick woods, the crunch of leaves underfoot; see her mother making her way up into the hills where no +houses were likely to be. How Sethe was walking on two feet meant for standing still. How they were so swollen she +could not see her arch or feel her ankles. Her leg shaft ended in a loaf of flesh scalloped by five toenails. But she could +not, would not, stop, for when she did the little antelope rammed her with horns and pawed the ground of her womb +with impatient hooves. While she was walking, it seemed to graze, quietly--so she walked, on two feet meant, in this +sixth month of pregnancy, for standing still. Still, near a kettle; still, at the churn; still, at the tub and ironing board. Milk, +sticky and sour on her dress, attracted every small flying thing from gnats to grasshoppers. +By the time she reached the hill skirt she had long ago stopped waving them off. The clanging in her head, begun as a +churchbell heard from a distance, was by then a tight cap of pealing bells around her ears. She sank and had to look +down to see whether she was in a hole or kneeling. Nothing was alive but her nipples and the little antelope. Finally, she +was horizontal--or must have been because blades of wild onion were scratching her temple and her cheek. Concerned +as she was for the life of her children's mother, Sethe told Denver, she remembered thinking: "Well, at least I don't have +to take another step." A dying thought if ever there was one, and she waited for the little antelope to protest, and why +she thought of an antelope Sethe could not imagine since she had never seen one. She guessed it must have been an +invention held on to from before Sweet Home, when she was very young. Of that place where she was born (Carolina +maybe? or was it Louisiana?) she remembered only song and dance. Not even her own mother, who was pointed out +to her by the eight-year-old child who watched over the young ones--pointed out as the one among many backs turned +away from her, stooping in a watery field. Patiently Sethe waited for this particular back to gain the row's end and stand. +What she saw was a cloth hat as opposed to a straw one, singularity enough in that world of cooing women each of +whom was called Ma'am. +"Seth--thuh." +"Ma'am." +"Hold on to the baby." +"Yes, Ma'am." +18 +"Seth--thuh." +"Ma'am." +"Get some kindlin in here." +"Yes, Ma'am." +Oh but when they sang. And oh but when they danced and sometimes they danced the antelope. The men as well as +the ma'ams, one of whom was certainly her own. They shifted shapes and became something other. Some unchained, +demanding other whose feet knew her pulse better than she did. Just like this one in her stomach. +"I believe this baby's ma'am is gonna die in wild onions on the bloody side of the Ohio River." That's what was on her +mind and what she told Denver. Her exact words. And it didn't seem such a bad idea, all in all, in view of the step she +would not have to take, but the thought of herself stretched out dead while the little antelope lived on--an hour? a day? +a day and a night?--in her lifeless body grieved her so she made the groan that made the person walking on a path not +ten yards away halt and stand right still. Sethe had not heard the walking, but suddenly she heard the standing still and +then she smelled the hair. The voice, saying, "Who's in there?" was all she needed to know that she was about to be +discovered by a white boy. That he too had mossy teeth, an appetite. That on a ridge of pine near the Ohio River, trying +to get to her three children, one of whom was starving for the food she carried; that after her husband had disappeared; +that after her milk had been stolen, her back pulped, her children orphaned, she was not to have an easeful death. No. +She told Denver that a something came up out of the earth into her--like a freezing, but moving too, like jaws +inside. "Look like I was just cold jaws grinding," she said. Suddenly she was eager for his eyes, to bite into them; to gnaw +his cheek. +"I was hungry," she told Denver, "just as hungry as I could be for his eyes. I couldn't wait." +So she raised up on her elbow and dragged herself, one pull, two, three, four, toward the young white voice talking +about "Who that back in there?" +" 'Come see,' I was thinking. 'Be the last thing you behold,' and sure enough here come the feet so I thought well that's +where I'll have to start God do what He would, I'm gonna eat his feet off. I'm laughing now, but it's true. I wasn't just set +to do it. I was hungry to do it. Like a snake. All jaws and hungry. +"It wasn't no whiteboy at all. Was a girl. The raggediest-looking trash you ever saw saying, 'Look there. A nigger. If that +don't beat all.' " +And now the part Denver loved the best: Her name was Amy and she needed beef and pot liquor like nobody in this +world. Arms like cane stalks and enough hair for four or five heads. Slow-moving eyes. She didn't look at anything quick. +Talked so much it wasn't clear how she could breathe at the same time. And those cane-stalk arms, as it turned out, +were as strong as iron. +"You 'bout the scariest-looking something I ever seen. What you doing back up in here?" +Down in the grass, like the snake she believed she was, Sethe opened her mouth, and instead of fangs and a split +tongue, out shot the truth. +"Running," Sethe told her. It was the first word she had spoken all day and it came out thick because of her tender +tongue. +"Them the feet you running on? My Jesus my." She squatted down and stared at Sethe's feet. "You got anything on you, +gal, pass for food?" +"No." Sethe tried to shift to a sitting position but couldn t. +19 +"I like to die I'm so hungry." The girl moved her eyes slowly, examining the greenery around her. "Thought there'd be +huckleberries. +Look like it. That's why I come up in here. Didn't expect to find no nigger woman. If they was any, birds ate em. You like +huckleberries?" +"I'm having a baby, miss." +Amy looked at her. "That mean you don't have no appetite? Well I got to eat me something." +Combing her hair with her fingers, she carefully surveyed the landscape once more. Satisfied nothing edible was around, +she stood up to go and Sethe's heart stood up too at the thought of being left alone in the grass without a fang in her +head. +"Where you on your way to, miss?" +She turned and looked at Sethe with freshly lit eyes. "Boston. Get me some velvet. It's a store there called Wilson. I seen +the pictures of it and they have the prettiest velvet. They don't believe I'm a get it, but I am." +Sethe nodded and shifted her elbow. "Your ma'am know you on the lookout for velvet?" +The girl shook her hair out of her face. "My mama worked for these here people to pay for her passage. But then she +had me and since she died right after, well, they said I had to work for em to pay it off. I did, but now I want me some +velvet." +They did not look directly at each other, not straight into the eyes anyway. Yet they slipped effortlessly into yard chat +about nothing in particular--except one lay on the ground. +"Boston," said Sethe. "Is that far?" +"Ooooh, yeah. A hundred miles. Maybe more." +"Must be velvet closer by." +"Not like in Boston. Boston got the best. Be so pretty on me. +You ever touch it?" +"No, miss. I never touched no velvet." Sethe didn't know if it was the voice, or Boston or velvet, but while the whitegirl +talked, the baby slept. Not one butt or kick, so she guessed her luck had turned. +"Ever see any?" she asked Sethe. "I bet you never even seen any." +"If I did I didn't know it. What's it like, velvet?" +Amy dragged her eyes over Sethe's face as though she would never give out so confidential a piece of information as +that to a perfect stranger. +"What they call you?" she asked. +However far she was from Sweet Home, there was no point in giving out her real name to the first person she saw. "Lu," +said Sethe. +"They call me Lu." +"Well, Lu, velvet is like the world was just born. Clean and new and so smooth. The velvet I seen was brown, but in +Boston they got all colors. Carmine. That means red but when you talk about velvet you got to say 'carmine.' " She raised +her eyes to the sky and then, as though she had wasted enough time away from Boston, she moved off saying, "I gotta +20 +go." +Picking her way through the brush she hollered back to Sethe, "What you gonna do, just lay there and foal?" +"I can't get up from here," said Sethe. +"What?" She stopped and turned to hear. +"I said I can't get up." +Amy drew her arm across her nose and came slowly back to where Sethe lay. "It's a house back yonder," she said. +"A house?" +"Mmmmm. I passed it. Ain't no regular house with people in it though. A lean-to, kinda." +"How far?" +"Make a difference, does it? You stay the night here snake get you." +"Well he may as well come on. I can't stand up let alone walk and God help me, miss, I can't crawl." +"Sure you can, Lu. Come on," said Amy and, with a toss of hair enough for five heads, she moved toward the path. +So she crawled and Amy walked alongside her, and when Sethe needed to rest, Amy stopped too and talked some more +about Boston and velvet and good things to eat. The sound of that voice, like a sixteen-year-old boy's, going on and on +and on, kept the little antelope quiet and grazing. During the whole hateful crawl to the lean to, it never bucked once. +Nothing of Sethe's was intact by the time they reached it except the cloth that covered her hair. Below her bloody +knees, there was no feeling at all; her chest was two cushions of pins. It was the voice full of velvet and Boston and good +things to eat that urged her along and made her think that maybe she wasn't, after all, just a crawling graveyard for a +six-month baby's last hours. +The lean-to was full of leaves, which Amy pushed into a pile for Sethe to lie on. Then she gathered rocks, covered them +with more leaves and made Sethe put her feet on them, saying: "I know a woman had her feet cut off they was so +swole." And she made sawing gestures with the blade of her hand across Sethe's ankles. "Zzz Zzz Zzz Zzz." +"I used to be a good size. Nice arms and everything. Wouldn't think it, would you? That was before they put me in the +root cellar. +I was fishing off the Beaver once. Catfish in Beaver River sweet as chicken. Well I was just fishing there and a nigger +floated right by me. I don't like drowned people, you? Your feet remind me of him. +All swole like." +Then she did the magic: lifted Sethe's feet and legs and massaged them until she cried salt tears. +"It's gonna hurt, now," said Amy. "Anything dead coming back to life hurts." +A truth for all times, thought Denver. Maybe the white dress holding its arm around her mother's waist was in pain. If so, +it could mean the baby ghost had plans. When she opened the door, Sethe was just leaving the keeping room. +"I saw a white dress holding on to you," Denver said. +"White? Maybe it was my bedding dress. Describe it to me." +"Had a high neck. Whole mess of buttons coming down the back." +21 +"Buttons. Well, that lets out my bedding dress. I never had a button on nothing." +"Did Grandma Baby?" +Sethe shook her head. "She couldn't handle them. Even on her shoes. What else?" +"A bunch at the back. On the sit-down part." +"A bustle? It had a bustle?" +"I don't know what it's called." +"Sort of gathered-like? Below the waist in the back?" +"Um hm." +"A rich lady's dress. Silk?" +"Cotton, look like." +"Lisle probably. White cotton lisle. You say it was holding on to me. How?" +"Like you. It looked just like you. Kneeling next to you while you were praying. Had its arm around your waist." +"Well, I'll be." +"What were you praying for, Ma'am?" +"Not for anything. I don't pray anymore. I just talk." +"What were you talking about?" +"You won't understand, baby." +"Yes, I will." +"I was talking about time. It's so hard for me to believe in it. +Some things go. Pass on. Some things just stay. I used to think it was my rememory. You know. Some things you forget. +Other things you never do. But it's not. Places, places are still there. If a house burns down, it's gone, but the place-- +the picture of it--stays, and not just in my rememory, but out there, in the world. What I remember is a picture floating +around out there outside my head. I mean, even if I don't think it, even if I die, the picture of what I did, or knew, or saw +is still out there. Right in the place where it happened." +"Can other people see it?" asked Denver. +"Oh, yes. Oh, yes, yes, yes. Someday you be walking down the road and you hear something or see something going on. +So clear. +And you think it's you thinking it up. A thought picture. But no. It's when you bump into a rememory that belongs to +somebody else. +Where I was before I came here, that place is real. It's never going away. Even if the whole farm--every tree and grass +blade of it dies. +The picture is still there and what's more, if you go there--you who never was there--if you go there and stand in the +place where it was, it will happen again; it will be there for you, waiting for you. So, Denver, you can't never go there. +Never. Because even though it's all over--over and done with--it's going to always be there waiting for you. That's how +22 +come I had to get all my children out. No matter what." +Denver picked at her fingernails. "If it's still there, waiting, that must mean that nothing ever dies." +Sethe looked right in Denver's face. "Nothing ever does," she said. +"You never told me all what happened. Just that they whipped you and you run off, pregnant. With me." +"Nothing to tell except schoolteacher. He was a little man. Short. +Always wore a collar, even in the fields. A schoolteacher, she said. +That made her feel good that her husband's sister's husband had book learning and was willing to come farm Sweet +Home after Mr. +Garner passed. The men could have done it, even with Paul F sold. +But it was like Halle said. She didn't want to be the only white person on the farm and a woman too. So she was satisfied +when the schoolteacher agreed to come. He brought two boys with him. Sons or nephews. I don't know. They called +him Onka and had pretty man ners, all of em. Talked soft and spit in handkerchiefs. Gentle in a lot of ways. You know, +the kind who know Jesus by His first name, but out of politeness never use it even to His face. A pretty good farmer, +Halle said. Not strong as Mr. Garner but smart enough. He liked the ink I made. It was her recipe, but he preferred how +I mixed it and it was important to him because at night he sat down to write in his book. It was a book about us but we +didn't know that right away. We just thought it was his manner to ask us questions. He commenced to carry round a +notebook and write down what we said. I still think it was them questions that tore Sixo up. Tore him up for all time." +She stopped. +Denver knew that her mother was through with it--for now anyway. The single slow blink of her eyes; the bottom lip +sliding up slowly to cover the top; and then a nostril sigh, like the snuff of a candle flame--signs that Sethe had reached +the point beyond which she would not go. +"Well, I think the baby got plans," said Denver. +"What plans?" +"I don't know, but the dress holding on to you got to mean something." +"Maybe," said Sethe. "Maybe it does have plans." +Whatever they were or might have been, Paul D messed them up for good. With a table and a loud male voice he had +rid 124 of its claim to local fame. Denver had taught herself to take pride in the condemnation Negroes heaped on +them; the assumption that the haunting was done by an evil thing looking for more. None of them knew the downright +pleasure of enchantment, of not suspecting but +knowing the things behind things. Her brothers had known, but it scared them; Grandma Baby knew, but it saddened +her. None could appreciate the safety of ghost company. Even Sethe didn't love it. +She just took it for granted--like a sudden change in the weather. +But it was gone now. Whooshed away in the blast of a hazelnut man's shout, leaving Denver's world flat, mostly, with +the exception of an emerald closet standing seven feet high in the woods. Her mother had secrets--things she wouldn't +tell; things she halfway told. +Well, Denver had them too. And hers were sweet--sweet as lily-of-the-valley cologne. +Sethe had given little thought to the white dress until Paul D came, and then she remembered Denver's interpretation: +23 +plans. The morning after the first night with Paul D, Sethe smiled just thinking about what the word could mean. It was a +luxury she had not had in eighteen years and only that once. Before and since, all her effort was directed not on avoiding +pain but on getting through it as quickly as possible. The one set of plans she had made--getting away from Sweet +Home--went awry so completely she never dared life by making more. +Yet the morning she woke up next to Paul D, the word her daughter had used a few years ago did cross her mind +and she thought about what Denver had seen kneeling next to her, and thought also of the temptation to trust and +remember that gripped her as she stood before the cooking stove in his arms. Would it be all right? Would it be all right +to go ahead and feel? Go ahead and count on something? +She couldn't think clearly, lying next to him listening to his breathing, so carefully, carefully, she had left the bed. +Kneeling in the keeping room where she usually went to talk-think it was clear why Baby Suggs was so starved for color. +There wasn't any except for two orange squares in a quilt that made the absence shout. The walls of the room were +slate-colored, the floor earth-brown, the wooden dresser the color of itself, curtains white, and the dominating feature, +the quilt over an iron cot, was made up of scraps of blue serge, black, brown and gray wool--the full range of the dark +and the muted that thrift and modesty allowed. In that sober field, two patches of orange looked wild--like life in the +raw. +Sethe looked at her hands, her bottle-green sleeves, and thought how little color there was in the house and how +strange that she had not missed it the way Baby did. Deliberate, she thought, it must be deliberate, because the last +color she remembered was the pink chips in the headstone of her baby girl. After that she became as color conscious as +a hen. Every dawn she worked at fruit pies, potato dishes and vegetables while the cook did the soup, meat and all the +rest. And she could not remember remembering a molly apple or a yellow squash. Every dawn she saw the dawn, but +never acknowledged or remarked its color. There was something wrong with that. +It was as though one day she saw red baby blood, another day the pink gravestone chips, and that was the last of it. +124 was so full of strong feeling perhaps she was oblivious to the loss of anything at all. There was a time when she +scanned the fields every morning and every evening for her boys. When she stood at the open window, unmindful of +flies, her head cocked to her left shoulder, her eyes searching to the right for them. Cloud shadow on the road, an old +woman, a wandering goat untethered and gnawing bramble--each one looked at first like Howard--no, Buglar. Little by +little she stopped and their thirteen-year-old faces faded completely into their baby ones, which came to her only in +sleep. When her dreams roamed outside 124, anywhere they wished, she saw them sometimes in beautiful trees, their +little legs barely visible in the leaves. +Sometimes they ran along the railroad track laughing, too loud, apparently, to hear her because they never did turn +around. When she woke the house crowded in on her: there was the door where the soda crackers were lined up in a +row; the white stairs her baby girl loved to climb; the corner where Baby Suggs mended shoes, a pile of which were still +in the cold room; the exact place on the stove where Denver burned her fingers. And of course the spite of the house +itself. There was no room for any other thing or body until Paul D arrived and broke up the place, making room, shifting +it, moving it over to someplace else, then standing in the place he had made. +So, kneeling in the keeping room the morning after Paul D came, she was distracted by the two orange squares that +signaled how barren 124 really was. +He was responsible for that. Emotions sped to the surface in his company. Things became what they were: drabness +looked drab; heat was hot. Windows suddenly had view. And wouldn't you know he'd be a singing man. +Little rice, little bean, +No meat in between. +Hard work ain't easy, +24 +Dry bread ain't greasy. +He was up now and singing as he mended things he had broken the day before. Some old pieces of song he'd learned on +the prison farm or in the War afterward. Nothing like what they sang at Sweet Home, where yearning fashioned every +note. +The songs he knew from Georgia were flat-headed nails for pounding and pounding and pounding. +Lay my bead on the railroad line, +Train come along, pacify my mind. +If I had my weight in lime, +I'd whip my captain till he went stone blind. +Five-cent nickel, Ten-cent dime, +Busting rocks is busting time. +But they didn't fit, these songs. They were too loud, had too much power for the little house chores he was engaged in-- +resetting table legs; glazing. +He couldn't go back to "Storm upon the Waters" that they sang under the trees of Sweet Home, so he contented himself +with mmmmmmmmm, throwing in a line if one occurred to him, and what occurred over and over was "Bare feet and +chamomile sap,/ Took off my shoes; took off my hat." +It was tempting to change the words (Gimme back my shoes; gimme back my hat), because he didn't believe he could +live with a woman--any woman--for over two out of three months. That was about as long as he could abide one place. +After Delaware and before that Alfred, Georgia, where he slept underground and crawled into sunlight for the sole +purpose of breaking rock, walking off when he got ready was the only way he could convince himself that he would no +longer have to sleep, pee, eat or swing a sledge hammer in chains. +But this was not a normal woman in a normal house. As soon as he had stepped through the red light he knew that, +compared to 124, the rest of the world was bald. After Alfred he had shut down a generous portion of his head, +operating on the part that helped him walk, eat, sleep, sing. If he could do those things--with a little work and a little sex +thrown in--he asked for no more, for more required him to dwell on Halle's face and Sixo laughing. To recall trembling +in a box built into the ground. Grateful for the daylight spent doing mule work in a quarry because he did not tremble +when he had a hammer in his hands. The box had done what Sweet Home had not, what working like an ass and living +like a dog had not: drove him crazy so he would not lose his mind. +By the time he got to Ohio, then to Cincinnati, then to Halle Suggs' mother's house, he thought he had seen and felt it +all. Even now as he put back the window frame he had smashed, he could not account for the pleasure in his surprise +at seeing Halle's wife alive, barefoot with uncovered hair--walking around the corner of the house with her shoes and +stockings in her hands. The closed portion of his head opened like a greased lock. +"I was thinking of looking for work around here. What you think?" +"Ain't much. River mostly. And hogs." +"Well, I never worked on water, but I can pick up anything heavy as me, hogs included." +"Whitepeople better here than Kentucky but you may have to scramble some." +"It ain't whether I scramble; it's where. You saying it's all right to scramble here?" +"Better than all right." +25 +"Your girl, Denver. Seems to me she's of a different mind." +"Why you say that?" +"She's got a waiting way about her. Something she's expecting and it ain't me." +"I don't know what it could be." +"Well, whatever it is, she believes I'm interrupting it." +"Don't worry about her. She's a charmed child. From the beginning." +"Is that right?" +"Uh huh. Nothing bad can happen to her. Look at it. Everybody I knew dead or gone or dead and gone. Not her. Not my +Denver. +Even when I was carrying her, when it got clear that I wasn't going to make it--which meant she wasn't going to make it +either--she pulled a whitegirl out of the hill. The last thing you'd expect to help. +And when the schoolteacher found us and came busting in here with the law and a shotgun--" +"Schoolteacher found you?" +"Took a while, but he did. Finally." +"And he didn't take you back?" +"Oh, no. I wasn't going back there. I don't care who found who. +Any life but not that one. I went to jail instead. Denver was just a baby so she went right along with me. Rats bit +everything in there but her." +Paul D turned away. He wanted to know more about it, but jail talk put him back in Alfred, Georgia. +"I need some nails. Anybody around here I can borrow from or should I go to town?" +"May as well go to town. You'll need other things." +One night and they were talking like a couple. They had skipped love and promise and went directly to "You saying it's all +right to scramble here?" +To Sethe, the future was a matter of keeping the past at bay. The "better life" she believed she and Denver were living +was simply not that other one. +The fact that Paul D had come out of "that other one" into her bed was better too; and the notion of a future with him, +or for that matter without him, was beginning to stroke her mind. As for Denver, the job Sethe had of keeping her from +the past that was still waiting for her was all that mattered. +Chapter 4 +PLEASANTLY TROUBLED, Sethe avoided the keeping room and Denver's sidelong looks. As she expected, since life was +like that--it didn't do any good. Denver ran a mighty interference and on the third day flat-out asked Paul D how long he +was going to hang around. +The phrase hurt him so much he missed the table. The coffee cup hit the floor and rolled down the sloping boards +toward the front door. +26 +"Hang around?" Paul D didn't even look at the mess he had made. +"Denver! What's got into you?" Sethe looked at her daughter, feeling more embarrassed than angry. +Paul D scratched the hair on his chin. "Maybe I should make tracks." +"No!" Sethe was surprised by how loud she said it. +"He know what he needs," said Denver. +"Well, you don't," Sethe told her, "and you must not know what you need either. I don't want to hear another word out +of you." +"I just asked if--" +"Hush! You make tracks. Go somewhere and sit down." +Denver picked up her plate and left the table but not before adding a chicken back and more bread to the heap she was +carrying away. +Paul D leaned over to wipe the spilled coffee with his blue handkerchief. +"I'll get that." Sethe jumped up and went to the stove. Behind it various cloths hung, each in some stage of drying. In +silence she wiped the floor and retrieved the cup. Then she poured him another cupful, and set it carefully before him. +Paul D touched its rim but didn't say anything--as though even "thank you" was an obligation he could not meet and the +coffee itself a gift he could not take. +Sethe resumed her chair and the silence continued. Finally she realized that if it was going to be broken she would have +to do it. +"I didn't train her like that." +Paul D stroked the rim of the cup. +"And I'm as surprised by her manners as you are hurt by em." +Paul D looked at Sethe. "Is there history to her question?" +"History? What you mean?" +"I mean, did she have to ask that, or want to ask it, of anybody else before me?" +Sethe made two fists and placed them on her hips. "You as bad as she is." +"Come on, Sethe." +"Oh, I am coming on. I am!" +"You know what I mean." +"I do and I don't like it." +"Jesus," he whispered. +"Who?" Sethe was getting loud again. +"Jesus! I said Jesus! All I did was sit down for supper! and I get cussed out twice. Once for being here and once for asking +why I was cussed in the first place!" +27 +"She didn't cuss." +"No? Felt like it." +"Look here. I apologize for her. I'm real--" +"You can't do that. You can't apologize for nobody. She got to do that." +"Then I'll see that she does." Sethe sighed. +"What I want to know is, is she asking a question that's on your mind too?" +"Oh no. No, Paul D. Oh no." +"Then she's of one mind and you another? If you can call what ever's in her head a mind, that is." +"Excuse me, but I can't hear a word against her. I'll chastise her. +You leave her alone." +Risky, thought Paul D, very risky. For a used-to-be-slave woman to love anything that much was dangerous, especially if +it was her children she had settled on to love. The best thing, he knew, was to love just a little bit; everything, just a little +bit, so when they broke its back, or shoved it in a croaker sack, well, maybe you'd have a little love left over for the next +one. "Why?" he asked her. "Why you think you have to take up for her? Apologize for her? She's grown." +"I don't care what she is. Grown don't mean nothing to a mother. +A child is a child. They get bigger, older, but grown? What's that supposed to mean? In my heart it don't mean a thing." +"It means she has to take it if she acts up. You can't protect her every minute. What's going to happen when you die?" +"Nothing! I'll protect her while I'm live and I'll protect her when I ain't." +"Oh well, I'm through," he said. "I quit." +"That's the way it is, Paul D. I can't explain it to you no better than that, but that's the way it is. If I have to choose--well, +it's not even a choice." +"That's the point. The whole point. I'm not asking you to choose. +Nobody would. I thought--well, I thought you could--there was some space for me." +"She's asking me." +"You can't go by that. You got to say it to her. Tell her it's not about choosing somebody over her--it's making space for +somebody along with her. You got to say it. And if you say it and mean it, then you also got to know you can't gag me. +There's no way I'm going to hurt her or not take care of what she need if I can, but I can't be told to keep my mouth shut +if she's acting ugly. You want me here, don't put no gag on me." +"Maybe I should leave things the way they are," she said. +"How are they?" +"We get along." +"What about inside?" +"I don't go inside." +28 +"Sethe, if I'm here with you, with Denver, you can go anywhere you want. Jump, if you want to, 'cause I'll catch you, +girl. I'll catch you "fore you fall. Go as far inside as you need to, I'll hold your ankles. Make sure you get back out. I'm not +saying this because I need a place to stay. That's the last thing I need. I told you, I'm a walking man, but I been heading in +this direction for seven years. +Walking all around this place. Upstate, downstate, east, west; I been in territory ain't got no name, never staying +nowhere long. But when I got here and sat out there on the porch, waiting for you, well, I knew it wasn't the place I was +heading toward; it was you. We can make a life, girl. A life." +"I don't know. I don't know." +"Leave it to me. See how it goes. No promises, if you don't want to make any. Just see how it goes. All right?" +"All right." +"You willing to leave it to me?" +"Well--some of it." +"Some?" he smiled. "Okay. Here's some. There's a carnival in town. Thursday, tomorrow, is for coloreds and I got two +dollars. +Me and you and Denver gonna spend every penny of it. What you say?" +"No" is what she said. At least what she started out saying (what would her boss say if she took a day off?), but even +when she said it she was thinking how much her eyes enjoyed looking in his face. +The crickets were screaming on Thursday and the sky, stripped of blue, was white hot at eleven in the morning. Sethe +was badly dressed for the heat, but this being her first social outing in eighteen years, she felt obliged to wear her one +good dress, heavy as it was, and a hat. Certainly a hat. She didn't want to meet Lady Jones or Ella with her head wrapped +like she was going to work. The dress, a good-wool castoff, was a Christmas present to Baby Suggs from Miss Bodwin, +the whitewoman who loved her. Denver and Paul D fared better in the heat since neither felt the occasion required +special clothing. Denver's bonnet knocked against her shoulder blades; Paul D wore his vest open, no jacket and his +shirt sleeves rolled above his elbows. They were not holding hands, but their shadows were. Sethe looked to her left +and all three of them were gliding over the dust holding hands. Maybe he was right. A life. Watching their hand holding +shadows, she was embarrassed at being dressed for church. +The others, ahead and behind them, would think she was putting on airs, letting them know that she was different +because she lived in a house with two stories; tougher, because she could do and +survive things they believed she should neither do nor survive. She was glad Denver had resisted her urgings to dress up- +-rebraid her hair at least. +But Denver was not doing anything to make this trip a pleasure. She agreed to go--sullenly--but her attitude +was "Go 'head. Try and make me happy." The happy one was Paul D. He said howdy to everybody within twenty feet. +Made fun of the weather and what it was doing to him, yelled back at the crows, and was the first to smell the doomed +roses. All the time, no matter what they were doing-- whether Denver wiped perspiration from her forehead or stooped +to retie her shoes; whether Paul D kicked a stone or reached over to meddle a child's face leaning on its mother's +shoulder--all the time the three shadows that shot out of their feet to the left held hands. +Nobody noticed but Sethe and she stopped looking after she decided that it was a good sign. A life. Could be. +Up and down the lumberyard fence old roses were dying. The sawyer who had planted them twelve years ago to give +his workplace a friendly feel--something to take the sin out of slicing trees for a living--was amazed by their abundance; +how rapidly they crawled all over the stake-and-post fence that separated the lumberyard from the open field next to +it where homeless men slept, children ran and, once a year, carnival people pitched tents. The closer the roses got to +29 +death, the louder their scent, and everybody who attended the carnival associated it with the stench of the rotten roses. +It made them a little dizzy and very thirsty but did nothing to extinguish the eagerness of the coloredpeople filing down +the road. Some walked on the grassy shoulders, others dodged the wagons creaking down the road's dusty center. All, +like Paul D, were in high spirits, which the smell of dying roses (that Paul D called to everybody's attention) could not +dampen. As they pressed to get to the rope entrance they were lit like lamps. Breathless with the excitement of seeing +white people loose: doing magic, clowning, without heads or with two heads, twenty feet tall or two feet tall, weighing +a ton, completely tattooed, eating glass, swallowing fire, spitting ribbons, twisted into knots, forming pyramids, playing +with snakes and beating each other up. +All of this was advertisement, read by those who could and heard by those who could not, and the fact that none of it +was true did not extinguish their appetite a bit. The barker called them and their children names ("Pickaninnies free!") +but the food on his vest and the hole in his pants rendered it fairly harmless. In any case it was a small price to pay for +the fun they might not ever have again. Two pennies and an insult were well spent if it meant seeing the spectacle of +whitefolks making a spectacle of themselves. So, although the carnival was a lot less than mediocre (which is why it +agreed to a Colored Thursday), it gave the four hundred black people in its audience thrill upon thrill upon thrill. +One-Ton Lady spit at them, but her bulk shortened her aim and they got a big kick out of the helpless meanness in her +little eyes. +Arabian Nights Dancer cut her performance to three minutes instead of the usual fifteen she normally did-earning the +gratitude of the children, who could hardly wait for Abu Snake Charmer, who followed her. +Denver bought horehound, licorice, peppermint and lemonade at a table manned by a little whitegirl in ladies' high- +topped shoes. +Soothed by sugar, surrounded by a crowd of people who did not find her the main attraction, who, in fact, said, "Hey, +Denver," every now and then, pleased her enough to consider the possibility that Paul D wasn't all that bad. In fact there +was something about him-- when the three of them stood together watching Midget dance--that made the stares of +other Negroes kind, gentle, something Denver did not remember seeing in their faces. Several even nodded and smiled +at her mother, no one, apparently, able to withstand sharing the pleasure Paul D. was having. He slapped his knees +when Giant danced with Midget; when Two-Headed Man talked to himself. He bought everything Denver asked for and +much she did not. He teased Sethe into tents she was reluctant to enter. Stuck pieces of candy she didn't want between +her lips. When Wild African Savage shook his bars and said wa wa, Paul D told everybody he knew him back in Roanoke. +Paul D made a few acquaintances; spoke to them about what work he might find. Sethe returned the smiles she got. +Denver was swaying with delight. And on the way home, although leading them now, the shadows of three people still +held hands. +Chapter 5 +A FULLY DRESSED woman walked out of the water. She barely gained the dry bank of the stream before she sat down +and leaned against a mulberry tree. All day and all night she sat there, her head resting on the trunk in a position +abandoned enough to crack the brim in her straw hat. Everything hurt but her lungs most of all. +Sopping wet and breathing shallow she spent those hours trying to negotiate the weight of her eyelids. The day breeze +blew her dress dry; the night wind wrinkled it. Nobody saw her emerge or came accidentally by. If they had, chances +are they would have hesitated before approaching her. Not because she was wet, or dozing or had what sounded like +asthma, but because amid all that she was smiling. +It took her the whole of the next morning to lift herself from the ground and make her way through the woods past a +giant temple of boxwood to the field and then the yard of the slate-gray house. +Exhausted again, she sat down on the first handy place--a stump not far from the steps of 124. By then keeping her eyes +open was less of an effort. She could manage it for a full two minutes or more. +30 +Her neck, its circumference no wider than a parlor-service saucer, kept bending and her chin brushed the bit of lace +edging her dress. +Women who drink champagne when there is nothing to celebrate can look like that: their straw hats with broken brims +are often askew; they nod in public places; their shoes are undone. But their skin is not like that of the woman breathing +near the steps of 124. She had new skin, lineless and smooth, including the knuckles of her hands. +By late afternoon when the carnival was over, and the Negroes were hitching rides home if they were lucky--walking if +they were not--the woman had fallen asleep again. The rays of the sun struck her +full in the face, so that when Sethe, Denver and Paul D rounded the curve in the road all they saw was a black dress, two +unlaced shoes below it, and Here Boy nowhere in sight. +"Look," said Denver. "What is that?" +And, for some reason she could not immediately account for, the moment she got close enough to see the face, Sethe's +bladder filled to capacity. She said, "Oh, excuse me," and ran around to the back of 124. Not since she was a baby +girl, being cared for by the eight year-old girl who pointed out her mother to her, had she had an emergency that +unmanageable. She never made the outhouse. Right in front of its door she had to lift her skirts, and the water she +voided was endless. Like a horse, she thought, but as it went on and on she thought, No, more like flooding the boat +when Denver was born. So much water Amy said, "Hold on, Lu. You going to sink us you keep that up." But there was no +stopping water breaking from a breaking womb and there was no stopping now. She hoped Paul D wouldn't take it upon +himself to come looking for her and be obliged to see her squatting in front of her own privy making a mudhole too deep +to be witnessed without shame. Just about the time she started wondering if the carnival would accept another freak, +it stopped. She tidied herself and ran around to the porch. No one was there. All three were insidePaul D and Denver +standing before the stranger, watching her drink cup after cup of water. +"She said she was thirsty," said Paul D. He took off his cap. +"Mighty thirsty look like." +The woman gulped water from a speckled tin cup and held it out for more. Four times Denver filled it, and four times +the woman drank as though she had crossed a desert. When she was finished a little water was on her chin, but she did +not wipe it away. Instead she gazed at Sethe with sleepy eyes. Poorly fed, thought Sethe, and younger than her clothes +suggested--good lace at the throat, and a rich woman's hat. Her skin was flawless except for three vertical scratches on +her forehead so fine and thin they seemed at first like hair, baby hair before it bloomed and roped into the masses of +black yarn under her hat. +"You from around here?" Sethe asked her. +She shook her head no and reached down to take off her shoes. +She pulled her dress up to the knees and rolled down her stockings. +When the hosiery was tucked into the shoes, Sethe saw that her feet were like her hands, soft and new. She must have +hitched a wagon ride, thought Sethe. Probably one of those West Virginia girls looking for something to beat a life of +tobacco and sorghum. Sethe bent to pick up the shoes. +"What might your name be?" asked Paul D. +"Beloved," she said, and her voice was so low and rough each one looked at the other two. They heard the voice first-- +later the name. +"Beloved. You use a last name, Beloved?" Paul D asked her. +"Last?" She seemed puzzled. Then "No," and she spelled it for them, slowly as though the letters were being formed as +31 +she spoke them. +Sethe dropped the shoes; Denver sat down and Paul D smiled. +He recognized the careful enunciation of letters by those, like himself, who could not read but had memorized the +letters of their name. He was about to ask who her people were but thought better of it. A young coloredwoman drifting +was drifting from ruin. He had been in Rochester four years ago and seen five women arriving with fourteen female +children. All their men--brothers, uncles, fathers, husbands, sons--had been picked off one by one by one. They had a +single piece of paper directing them to a preacher on DeVore Street. +The War had been over four or five years then, but nobody white or black seemed to know it. Odd clusters and strays of +Negroes wandered the back roads and cowpaths from Schenectady to Jackson. +Dazed but insistent, they searched each other out for word of a cousin, an aunt, a friend who once said, "Call on me. +Anytime you get near Chicago, just call on me." Some of them were running from family that could not support them, +some to family; some were running from dead crops, dead kin, life threats, and took-over land. Boys younger than +Buglar and Howard; configurations and blends of families of women and children, while elsewhere, solitary, hunted +and hunting for, were men, men, men. Forbidden public transportation, chased by debt and filthy "talking sheets," they +followed secondary routes, scanned the horizon for signs and counted heavily on each other. Silent, except for social +courtesies, when they met one another they neither described nor asked about the sorrow that drove them from one +place to another. The whites didn't bear speaking on. Everybody knew. +So he did not press the young woman with the broken hat about where from or how come. If she wanted them to know +and was strong enough to get through the telling, she would. What occupied them at the moment was what it might +be that she needed. Underneath the major question, each harbored another. Paul D wondered at the newness of her +shoes. Sethe was deeply touched by her sweet name; the remembrance of glittering headstone made her feel especially +kindly toward her. Denver, however, was shaking. She looked at this sleepy beauty and wanted more. +Sethe hung her hat on a peg and turned graciously toward the girl. "That's a pretty name, Beloved. Take off your hat, +why don't you, and I'll make us something. We just got back from the carnival over near Cincinnati. Everything in there is +something to see." +Bolt upright in the chair, in the middle of Sethe's welcome, Beloved had fallen asleep again. +"Miss. Miss." Paul D shook her gently. "You want to lay down a spell?" +She opened her eyes to slits and stood up on her soft new feet which, barely capable of their job, slowly bore her to +the keeping room. Once there, she collapsed on Baby Suggs' bed. Denver removed her hat and put the quilt with two +squares of color over her feet. +She was breathing like a steam engine. +"Sounds like croup," said Paul D, closing the door. +"Is she feverish? Denver, could you tell?" +"No. She's cold." +"Then she is. Fever goes from hot to cold." +"Could have the cholera," said Paul D. +"Reckon?" +"All that water. Sure sign." +"Poor thing. And nothing in this house to give her for it. She'll just have to ride it out. That's a hateful sickness if ever +32 +there was one." +"She's not sick!" said Denver, and the passion in her voice made them smile. +Four days she slept, waking and sitting up only for water. Denver tended her, watched her sound sleep, listened to +her labored breathing and, out of love and a breakneck possessiveness that charged her, hid like a personal blemish +Beloved's incontinence. She rinsed the sheets secretly, after Sethe went to the restaurant and Paul D went scrounging +for barges to help unload. She boiled the underwear and soaked it in bluing, praying the fever would pass without +damage. +So intent was her nursing, she forgot to eat or visit the emerald closet. +"Beloved?" Denver would whisper. "Beloved?" and when the black eyes opened a slice all she could say was "I'm here. +I'm still here." +Sometimes, when Beloved lay dreamy-eyed for a very long time, saying nothing, licking her lips and heaving deep sighs, +Denver panicked. +"What is it?" she would ask. +"Heavy," murmured Beloved. "This place is heavy." +"Would you like to sit up?" +"No," said the raspy voice. +It took three days for Beloved to notice the orange patches in the darkness of the quilt. Denver was pleased because +it kept her patient awake longer. She seemed totally taken with those faded scraps of orange, even made the effort to +lean on her elbow and stroke them. +An effort that quickly exhausted her, so Denver rearranged the quilt so its cheeriest part was in the sick girl's sight line. +Patience, something Denver had never known, overtook her. As long as her mother did not interfere, she was a model of +compassion, turning waspish, though, when Sethe tried to help. +"Did she take a spoonful of anything today?" Sethe inquired. +"She shouldn't eat with cholera." +"You sure that's it? Was just a hunch of Paul D's." +"I don't know, but she shouldn't eat anyway just yet." +"I think cholera people puke all the time." +"That's even more reason, ain't it?" +"Well she shouldn't starve to death either, Denver." +"Leave us alone, Ma'am. I'm taking care of her." +"She say anything?" +"I'd let you know if she did." +Sethe looked at her daughter and thought, Yes, she has been lonesome. Very lonesome. +"Wonder where Here Boy got off to?" Sethe thought a change of subject was needed. +33 +"He won't be back," said Denver. +"How you know?" +"I just know." Denver took a square of sweet bread off the plate. +Back in the keeping room, Denver was about to sit down when Beloved's eyes flew wide open. Denver felt her heart +race. It wasn't that she was looking at that face for the first time with no trace of sleep in it, or that the eyes were big +and black. Nor was it that the whites of them were much too white--blue-white. It was that deep down in those big black +eyes there was no expression at all. +"Can I get you something?" +Beloved looked at the sweet bread in Denver's hands and Denver held it out to her. She smiled then and Denver's heart +stopped bouncing and sat down---relieved and easeful like a traveler who had made it home. +From that moment and through everything that followed, sugar could always be counted on to please her. It was as +though sweet things were what she was born for. Honey as well as the wax it came in, sugar sandwiches, the sludgy +molasses gone hard and brutal in the can, lemonade, taffy and any type of dessert Sethe brought home from the +restaurant. She gnawed a cane stick to flax and kept the strings in her mouth long after the syrup had been sucked away. +Denver laughed, Sethe smiled and Paul D said it made him sick to his stomach. +Sethe believed it was a recovering body's need---after an illness-- for quick strength. But it was a need that went on +and on into glowing health because Beloved didn't go anywhere. There didn't seem anyplace for her to go. She didn't +mention one, or have much of an idea of what she was doing in that part of the country or where she had been. They +believed the fever had caused her memory to fail just as it kept her slow-moving. A young woman, about nineteen or +twenty, and slender, she moved like a heavier one or an older one, holding on to furniture, resting her head in the palm +of her hand as though it was too heavy for a neck alone. +"You just gonna feed her? From now on?" Paul D, feeling ungenerous, and surprised by it, heard the irritability in his +voice. +"Denver likes her. She's no real trouble. I thought we'd wait till her breath was better. She still sounds a little lumbar to +me." +"Something funny 'bout that gal," Paul D said, mostly to himself. +"Funny how?" +"Acts sick, sounds sick, but she don't look sick. Good skin, bright eyes and strong as a bull." +"She's not strong. She can hardly walk without holding on to something." +"That's what I mean. Can't walk, but I seen her pick up the rocker with one hand." +"You didn't." +"Don't tell me. Ask Denver. She was right there with her." +"Denver! Come in here a minute." +Denver stopped rinsing the porch and stuck her head in the window. +"Paul D says you and him saw Beloved pick up the rocking chair single-handed. That so?" +Long, heavy lashes made Denver's eyes seem busier than they were; deceptive, even when she held a steady gaze as she +34 +did now on Paul D. "No," she said. "I didn't see no such thing." +Paul D frowned but said nothing. If there had been an open latch between them, it would have closed. +Chapter 6 +RAINWATER held on to pine needles for dear life and Beloved could not take her eyes off Sethe. Stooping to shake the +damper, or snapping sticks for kindlin, Sethe was licked, tasted, eaten by Beloved's eyes. Like a familiar, she hovered, +never leaving the room Sethe was in unless required and told to. She rose early in the dark to be there, waiting, in the +kitchen when Sethe came down to make fast bread before she left for work. In lamplight, and over the flames of the +cooking stove, their two shadows clashed and crossed on the ceiling like black swords. She was in the window at two +when Sethe returned, or the doorway; then the porch, its steps, the path, the road, till finally, surrendering to the habit, +Beloved began inching down Bluestone Road further and further each day to meet Sethe and walk her back to 124. It +was as though every afternoon she doubted anew the older woman's return. +Sethe was flattered by Beloved's open, quiet devotion. The same adoration from her daughter (had it been forthcoming) +would have annoyed her; made her chill at the thought of having raised a ridiculously dependent child. But the company +of this sweet, if peculiar, guest pleased her the way a zealot pleases his teacher. +Time came when lamps had to be lit early because night arrived sooner and sooner. Sethe was leaving for work in the +dark; Paul D was walking home in it. On one such evening dark and cool, Sethe cut a rutabaga into four pieces and left +them stewing. She gave Denver a half peck of peas to sort and soak overnight. Then she sat herself down to rest. The +heat of the stove made her drowsy and she was sliding into sleep when she felt Beloved touch her. A touch no heavier +than a feather but loaded, nevertheless, with desire. Sethe stirred and looked around. First at Beloved's soft new hand +on her shoulder, then into her eyes. The longing she saw there was bottomless. Some plea barely in control. Sethe +patted Beloved's fingers and glanced at Denver, whose eyes were fixed on her pea-sorting task. +"Where your diamonds?" Beloved searched Sethe's face. +"Diamonds? What would I be doing with diamonds?" +"On your ears." +"Wish I did. I had some crystal once. A present from a lady I worked for." +"Tell me," said Beloved, smiling a wide happy smile. "Tell me your diamonds." +It became a way to feed her. Just as Denver discovered and relied on the delightful effect sweet things had on Beloved, +Sethe learned the profound satisfaction Beloved got from storytelling. It amazed Sethe (as much as it pleased Beloved) +because every mention of her past life hurt. Everything in it was painful or lost. She and Baby Suggs had agreed without +saying so that it was unspeakable; to Denver's inquiries Sethe gave short replies or rambling incomplete reveries. +Even with Paul D, who had shared some of it and to whom she could talk with at least a measure of calm, the hurt was +always there-like a tender place in the corner of her mouth that the bit left. +But, as she began telling about the earrings, she found herself wanting to, liking it. Perhaps it was Beloved's distance +from the events itself, or her thirst for hearing it--in any case it was an unexpected pleasure. +Above the patter of the pea sorting and the sharp odor of cooking rutabaga, Sethe explained the crystal that once hung +from her ears. +"That lady I worked for in Kentucky gave them to me when I got married. What they called married hack there and back +then. I guess she saw how bad I felt when I found out there wasn't going to be no ceremony, no preacher. Nothing. I +thought there should be something--something to say it was right and true. I didn't want it to be just me moving over +a bit of pallet full of corn husks. Or just me bringing my night bucket into his cabin. I thought there should be some +35 +ceremony. Dancing maybe. A little sweet william in my hair." Sethe smiled. "I never saw a wedding, but I saw Mrs. +Garner's wedding gown in the press, and heard her go on about what it was like. Two pounds of currants in the cake, she +said, and four whole sheep. The people were still eating the next day. That's what I wanted. +A meal maybe, where me and Halle and all the Sweet Home men sat down and ate something special. Invite some of the +other colored people from over by Covington or High Trees--those places Sixo used to sneak off to. But it wasn't going to +be nothing. They said it was all right for us to be husband and wife and that was it. All of it. +"Well, I made up my mind to have at the least a dress that wasn't the sacking I worked in. So I took to stealing fabric, and +wound up with a dress you wouldn't believe. The top was from two pillow cases in her mending basket. The front of the +skirt was a dresser scarf a candle fell on and burnt a hole in, and one of her old sashes we used to test the flatiron on. +Now the back was a problem for the longest time. Seem like I couldn't find a thing that wouldn't be missed right away. +Because I had to take it apart afterwards and put all the pieces back where they were. Now Halle was patient, waiting +for me to finish it. He knew I wouldn't go ahead without having it. +Finally I took the mosquito netting from a nail out the barn. We used it to strain jelly through. I washed it and soaked it +best I could and tacked it on for the back of the skirt. And there I was, in the worst-looking gown you could imagine. Only +my wool shawl kept me from looking like a haint peddling. I wasn't but fourteen years old, so I reckon that's why I was so +proud of myself. +"Anyhow, Mrs. Garner must have seen me in it. I thought I was stealing smart, and she knew everything I did. Even our +honeymoon: going down to the cornfield with Halle. That's where we went first. +A Saturday afternoon it was. He begged sick so he wouldn't have to go work in town that day. Usually he worked +Saturdays and Sundays to pay off Baby Suggs' freedom. But he begged sick and I put on my dress and we walked into +the corn holding hands. I can still smell the ears roasting yonder where the Pauls and Sixo was. Next day Mrs. Garner +crooked her finger at me and took me upstairs to her bedroom. She opened up a wooden box and took out a pair of +crystal earrings. She said, 'I want you to have these, Sethe.' I said, 'Yes, ma'am.' +'Are your ears pierced?' she said. I said, 'No, ma'am.' +'Well do it,' she said, 'so you can wear them. I want you to have them and I want you and Halle to be happy.' I thanked +her but I never did put them on till I got away from there. One day after I walked into this here house Baby Suggs +unknotted my underskirt and took em out. I sat right here by the stove with Denver in my arms and let her punch holes +in my ears for to wear them." +"I never saw you in no earrings," said Denver. "Where are they now?" +"Gone," said Sethe. "Long gone," and she wouldn't say another word. Until the next time when all three of them ran +through the wind back into the house with rainsoaked sheets and petticoats. +Panting, laughing, they draped the laundry over the chairs and table. +Beloved filled herself with water from the bucket and watched while Sethe rubbed Denver's hair with a piece of +toweling. +"Maybe we should unbraid it?" asked Sethe. +"Oh uh. Tomorrow." Denver crouched forward at the thought of a fine-tooth comb pulling her hair. +"Today is always here," said Sethe. "Tomorrow, never." +"It hurts," Denver said. +"Comb it every day, it won't." +36 +"Ouch." +"Your woman she never fix up your hair?" Beloved asked. +Sethe and Denver looked up at her. After four weeks they still had not got used to the gravelly voice and the song that +seemed to lie in it. Just outside music it lay, with a cadence not like theirs. +"Your woman she never fix up your hair?" was clearly a question for sethe, since that's who she was looking at. +"My woman? You mean my mother? If she did, I don't remember. +I didn't see her but a few times out in the fields and once when she was working indigo. By the time I woke up in the +morning, she was in line. If the moon was bright they worked by its light. Sunday she slept like a stick. She must of +nursed me two or three weeks--that's the way the others did. Then she went back in rice and I sucked from another +woman whose job it was. So to answer you, no. I reckon not. She never fixed my hair nor nothing. She didn't even sleep +in the same cabin most nights I remember. Too far from the line-up, I guess. One thing she did do. She picked me up and +carried me behind the smokehouse. Back there she opened up her dress front and lifted her breast and pointed under +it. Right on her rib was a circle and a cross burnt right in the skin. She said, 'This is your ma'am. This,' and she pointed. 'I +am the only one got this mark now. The rest dead. If something happens to me and you can't tell me by my face, you +can know me by this mark.' Scared me so. All I could think of was how important this was and how I needed to have +something important to say back, but I couldn't think of anything so I just said what I thought. 'Yes, Ma'am,' I said. 'But +how will you know me? +How will you know me? Mark me, too,' I said. 'Mark the mark on me too.'" Sethe chuckled. +"Did she?" asked Denver. +"She slapped my face." +"What for?" +"I didn't understand it then. Not till I had a mark of my own." +"What happened to her?" +"Hung. By the time they cut her down nobody could tell whether she had a circle and a cross or not, least of all me and I +did look." +Sethe gathered hair from the comb and leaning back tossed it into the fire. It exploded into stars and the smell infuriated +them. "Oh, my Jesus," she said and stood up so suddenly the comb she had parked in Denver's hair fell to the floor. +"Ma'am? What's the matter with you, Ma'am?" +Sethe walked over to a chair, lifted a sheet and stretched it as wide as her arms would go. Then she folded, refolded +and double folded it. She took another. Neither was completely dry but the folding felt too fine to stop. She had to do +something with her hands because she was remembering something she had forgotten she knew. +Something privately shameful that had seeped into a slit in her mind right behind the slap on her face and the circled +cross. +"Why they hang your ma'am?" Denver asked. This was the first time she had heard anything about her mother's mother. +Baby Suggs was the only grandmother she knew. +"I never found out. It was a lot of them," she said, but what was getting clear and clearer as she folded and refolded +damp laundry was the woman called Nan who took her hand and yanked her away from the pile before she could make +out the mark. Nan was the one she knew best, who was around all day, who nursed babies, cooked, had one good arm +and half of another. And who used different words. +37 +Words Sethe understood then but could neither recall nor repeat now. She believed that must be why she remembered +so little before Sweet Home except singing and dancing and how crowded it was. +What Nan told her she had forgotten, along with the language she told it in. The same language her ma'am spoke, and +which would never come back. But the message--that was and had been there all along. Holding the damp white sheets +against her chest, she was picking meaning out of a code she no longer understood. Nighttime. +Nan holding her with her good arm, waving the stump of the other in the air. "Telling you. I am telling you, small girl +Sethe," and she did that. She told Sethe that her mother and Nan were together from the sea. Both were taken up many +times by the crew. "She threw them all away but you. The one from the crew she threw away on the island. The others +from more whites she also threw away. Without names, she threw them. You she gave the name of the black man. +She put her arms around him. The others she did not put her arms around. Never. Never. Telling you. I am telling you, +small girl Sethe." +As small girl Sethe, she was unimpressed. As grown-up woman Sethe she was angry, but not certain at what. A mighty +wish for Baby Suggs broke over her like surf. In the quiet following its splash, Sethe looked at the two girls sitting by the +stove: her sickly, shallow-minded boarder, her irritable, lonely daughter. They seemed little and far away. +"Paul D be here in a minute," she said. +Denver sighed with relief. For a minute there, while her mother stood folding the wash lost in thought, she clamped her +teeth and prayed it would stop. Denver hated the stories her mother told that did not concern herself, which is why Amy +was all she ever asked about. The rest was a gleaming, powerful world made more so by Denver's absence from it. Not +being in it, she hated it and wanted Beloved to hate it too, although there was no chance of that at all. +Beloved took every opportunity to ask some funny question and get Sethe going. Denver noticed how greedy she was to +hear Sethe talk. +Now she noticed something more. The questions Beloved asked: "Where your diamonds?" +"Your woman she never fix up your hair?" +And most perplexing: Tell me your earrings. +How did she know? +Chapter 7 +BELOVED WAS SHINING and Paul D didn’t like it. Women did what strawberry plants did before they shot out their thin +vines: the quality of the green changed. Then the vine threads came, then the buds. By the time the white petals died +and the mint-colored berry poked out, the leaf shine was gilded fight and waxy. That's how Beloved looked-- gilded +and shining. Paul D took to having Sethe on waking, so that later, when he went down the white stairs where she made +bread under Beloved's gaze, his head was clear. +In the evening when he came home and the three of them were all there fixing the supper table, her shine was so +pronounced he wondered why Denver and Sethe didn't see it. Or maybe they did. +Certainly women could tell, as men could, when one of their number was aroused. Paul D looked carefully at Beloved +to see if she was aware of it but she paid him no attention at all--frequently not even answering a direct question put +to her. She would look at him and not open her mouth. Five weeks she had been with them, and they didn't know any +more about her than they did when they found her asleep on the stump. +They were seated at the table Paul D had broken the day he arrived at 124. Its mended legs stronger than before. The +cabbage was all gone and the shiny ankle bones of smoked pork were pushed in a heap on their plates. Sethe was +38 +dishing up bread pudding, murmuring her hopes for it, apologizing in advance the way veteran cooks always do, when +something in Beloved's face, some petlike adoration that took hold of her as she looked at Sethe, made Paul D speak. +"Ain't you got no brothers or sisters?" +Beloved diddled her spoon but did not look at him. "I don't have nobody." +"What was you looking for when you came here?" he asked her. +"This place. I was looking for this place I could be in." +"Somebody tell you about this house?" +"She told me. When I was at the bridge, she told me." +"Must be somebody from the old days," Sethe said. The days when 124 was a way station where messages came and +then their senders. Where bits of news soaked like dried beans in spring water--until they were soft enough to digest. +"How'd you come? Who brought you?" +Now she looked steadily at him, but did not answer. +He could feel both Sethe and Denver pulling in, holding their stomach muscles, sending out sticky spiderwebs to touch +one another. +He decided to force it anyway. +"I asked you who brought you here?" +"I walked here," she said. "A long, long, long, long way. Nobody bring me. Nobody help me." +"You had new shoes. If you walked so long why don't your shoes show it?" +"Paul D, stop picking on her." +"I want to know," he said, holding the knife handle in his fist like a pole. +"I take the shoes! I take the dress! The shoe strings don't fix!" she shouted and gave him a look so malevolent Denver +touched her arm. +"I'll teach you," said Denver, "how to tie your shoes," and got a smile from Beloved as a reward. +Paul D had the feeling a large, silver fish had slipped from his hands the minute he grabbed hold of its tail. That it was +streaming back off into dark water now, gone but for the glistening marking its route. But if her shining was not for him, +who then? He had never known a woman who lit up for nobody in particular, who just did it as a general announcement. +Always, in his experience, the light appeared when there was focus. Like the Thirty-Mile Woman, dulled to smoke while +he waited with her in the ditch, and starlight when Sixo got there. He never knew himself to mistake it. It was there the +instant he looked at Sethe's wet legs, otherwise he never would have been bold enough to enclose her in his arms that +day and whisper into her back. +This girl Beloved, homeless and without people, beat all, though he couldn't say exactly why, considering the +coloredpeople he had run into during the last twenty years. During, before and after the War he had seen Negroes so +stunned, or hungry, or tired or bereft it was a wonder they recalled or said anything. Who, like him, had hidden in caves +and fought owls for food; who, like him, stole from pigs; who, like him, slept in trees in the day and walked by night; +who, like him, had buried themselves in slop and jumped in wells to avoid regulators, raiders, paterollers, veterans, hill +men, posses and merrymakers. Once he met a Negro about fourteen years old who lived by himself in the woods and +said he couldn't remember living anywhere else. He saw a witless coloredwoman jailed and hanged for stealing ducks +39 +she believed were her own babies. +Move. Walk. Run. Hide. Steal and move on. Only once had it been possible for him to stay in one spot--with a woman, +or a family--for longer than a few months. That once was almost two years with a weaver lady in Delaware, the meanest +place for Negroes he had ever seen outside Pulaski County, Kentucky, and of course the prison camp in Georgia. +From all those Negroes, Beloved was different. Her shining, her new shoes. It bothered him. Maybe it was just the fact +that he didn't bother her. Or it could be timing. She had appeared and been taken in on the very day Sethe and he had +patched up their quarrel, gone out in public and had a right good time--like a family. Denver had come around, so to +speak; Sethe was laughing; he had a promise of steady work, 124 was cleared up from spirits. It had begun to look like a +life. And damn! a water-drinking woman fell sick, got took in, healed, and hadn't moved a peg since. +He wanted her out, but Sethe had let her in and he couldn't put her out of a house that wasn't his. It was one thing to +beat up a ghost, quite another to throw a helpless coloredgirl out in territory infected by the Klan. Desperately thirsty for +black blood, without which it could not live, the dragon swam the Ohio at will. +Sitting at table, chewing on his after-supper broom straw, Paul D decided to place her. Consult with the Negroes in town +and find her her own place. +No sooner did he have the thought than Beloved strangled on one of the raisins she had picked out of the bread +pudding. She fell backward and off the chair and thrashed around holding her throat. +Sethe knocked her on the back while Denver pried her hands away from her neck. Beloved, on her hands and knees, +vomited up her food and struggled for breath. +When she was quiet and Denver had wiped up the mess, she said, "Go to sleep now." +"Come in my room," said Denver. "I can watch out for you up there." +No moment could have been better. Denver had worried herself sick trying to think of a way to get Beloved to share her +room. It was hard sleeping above her, wondering if she was going to be sick again, fall asleep and not wake, or (God, +please don't) get up and wander out of the yard just the way she wandered in. They could have their talks easier there: +at night when Sethe and Paul D were asleep; or in the daytime before either came home. Sweet, crazy conversations full +of half sentences, daydreams and misunderstandings more thrilling than understanding could ever be. +When the girls left, Sethe began to clear the table. She stacked the plates near a basin of water. +"What is it about her vex you so?" +Paul D frowned, but said nothing. +"We had one good fight about Denver. Do we need one about her too?" asked Sethe. +"I just don't understand what the hold is. It's clear why she holds on to you, but just can't see why you holding on to +her." +Sethe turned away from the plates toward him. "what you care who's holding on to who? Feeding her is no trouble. I +pick up a little extra from the restaurant is all. And she's nice girl company for Denver. You know that and I know you +know it, so what is it got your teeth on edge?" +"I can't place it. It's a feeling in me." +"Well, feel this, why don't you? Feel how it feels to have a bed to sleep in and somebody there not worrying you to +death about what you got to do each day to deserve it. Feel how that feels. And if that don't get it, feel how it feels to be +a coloredwoman roaming the roads with anything God made liable to jump on you. Feel that." +"I know every bit of that, Sethe. I wasn't born yesterday and I never mistreated a woman in my life." +40 +"That makes one in the world," Sethe answered. +"Not two?" +"No. Not two." +"What Halle ever do to you? Halle stood by you. He never left you." +"What'd he leave then if not me?" +"I don't know, but it wasn't you. That's a fact." +"Then he did worse; he left his children." +"You don't know that." +"He wasn't there. He wasn't where he said he would be." +"He was there." +"Then why didn't he show himself? Why did I have to pack my babies off and stay behind to look for him?" +"He couldn't get out the loft." +"Loft? What loft?" +"The one over your head. In the barn." +Slowly, slowly, taking all the time allowed, Sethe moved toward the table. +"He saw?" +"He saw." +"He told you?" +"You told me." +"What?" +"The day I came in here. You said they stole your milk. I never knew what it was that messed him up. That was it, I guess. +All I knew was that something broke him. Not a one of them years of Saturdays, Sundays and nighttime extra never +touched him. But whatever he saw go on in that barn that day broke him like a twig." +"He saw?" Sethe was gripping her elbows as though to keep them from flying away. +"He saw. Must have." +"He saw them boys do that to me and let them keep on breathing air? He saw? He saw? He saw?" +"Hey! Hey! Listen up. Let me tell you something. A man ain't a goddamn ax. Chopping, hacking, busting every goddamn +minute of the day. Things get to him. Things he can't chop down because they're inside." +Sethe was pacing up and down, up and down in the lamplight. +"The underground agent said, By Sunday. They took my milk and he saw it and didn't come down? Sunday came and he +didn't. Monday came and no Halle. I thought he was dead, that's why; then I thought they caught him, that's why. Then +I thought, No, he's not dead because if he was I'd know it, and then you come here after all this time and you didn't say +he was dead, because you didn't know either, so I thought, Well, he just found him another better way to live. +41 +Because if he was anywhere near here, he'd come to Baby Suggs, if not to me. But I never knew he saw." +"What does that matter now?" +"If he is alive, and saw that, he won't step foot in my door. Not Halle." +"It broke him, Sethe." Paul D looked up at her and sighed. "You may as well know it all. Last time I saw him he was sitting +by the chum. He had butter all over his face." +Nothing happened, and she was grateful for that. Usually she could see the picture right away of what she heard. +But she could not picture what Paul D said. Nothing came to mind. Carefully, carefully, she passed on to a reasonable +question. +"What did he say?" +"Nothing." +"Not a word?" +"Not a word." +"Did you speak to him? Didn't you say anything to him? Something!" +"I couldn't, Sethe. I just.., couldn't." +"Why!" +"I had a bit in my mouth." +Sethe opened the front door and sat down on the porch steps. +The day had gone blue without its sun, but she could still make out the black silhouettes of trees in the meadow beyond. +She shook her head from side to side, resigned to her rebellious brain. Why was there nothing it reused? No misery, no +regret, no hateful picture too rotten to accept? Like a greedy child it snatched up everything. Just once, could it say, No +thank you? I just ate and can't hold another bite? I am full God damn it of two boys with mossy teeth, one sucking on +my breast the other holding me down, their book-reading teacher watching and writing it up. I am still full of that, God +damn it, I can't go back and add more. Add my husband to it, watching, above me in the loft--hiding close by--the one +place he thought no one would look for him, looking down on what I couldn't look at at all. +And not stopping them--looking and letting it happen. But my greedy brain says, Oh thanks, I'd love more--so I add +more. And no sooner than I do, there is no stopping. There is also my husband squatting by the churn smearing the +butter as well as its clabber all over his face because the milk they took is on his mind. And as far as he is concerned, the +world may as well know it. And if he was that broken then, then he is also and certainly dead now. And if Paul D saw +him and could not save or comfort him because the iron bit was in his mouth, then there is still more that Paul D could +tell me and my brain would go right ahead and take it and never say, No thank you. I don't want to know or have to +remember that. I have other things to do: worry, for example, about tomorrow, about Denver, about Beloved, about age +and sickness not to speak of love. +But her brain was not interested in the future. Loaded with the past and hungry for more, it left her no room to imagine, +let alone plan for, the next day. Exactly like that afternoon in the wild onions-- when one more step was the most she +could see of the future. Other people went crazy, why couldn't she? Other people's brains stopped, turned around and +went on to something new, which is what must have happened to Halle. And how sweet that would have been: the two +of them back by the milk shed, squatting by the churn, smashing cold, lumpy butter into their faces with not a care in +the world. +Feeling it slippery, sticky--rubbing it in their hair, watching it squeeze through their fingers. What a relief to stop it right +42 +there. Close. Shut. +Squeeze the butter. But her three children were chewing sugar teat under a blanket on their way to Ohio and no butter +play would change that. +Paul D stepped through the door and touched her shoulder. +"I didn't plan on telling you that." +"I didn't plan on hearing it." +"I can't take it back, but I can leave it alone," Paul D said. +He wants to tell me, she thought. He wants me to ask him about what it was like for him--about how offended the +tongue is, held down by iron, how the need to spit is so deep you cry for it. She already knew about it, had seen it time +after time in the place before Sweet Home. Men, boys, little +girls, women. The wildness that shot up into the eye the moment the lips were yanked back. Days after it was taken out, +goose fat was rubbed on the corners of the mouth but nothing to soothe the tongue or take the wildness out of the eye. +Sethe looked up into Paul D's eyes to see if there was any trace left in them. +"People I saw as a child," she said, "who'd had the bit always looked wild after that. Whatever they used it on them for, +it couldn't have worked, because it put a wildness where before there wasn't any. When I look at you, I don't see it. +There ain't no wildness in your eye nowhere." +"There's a way to put it there and there's a way to take it out. I know em both and I haven't figured out yet which is +worse." He sat down beside her. Sethe looked at him. In that unlit daylight his face, bronzed and reduced to its bones, +smoothed her heart down. +"You want to tell me about it?" she asked him. +"I don't know. I never have talked about it. Not to a soul. Sang it sometimes, but I never told a soul." +"Go ahead. I can hear it." +"Maybe. Maybe you can hear it. I just ain't sure I can say it. Say it right, I mean, because it wasn't the bit--that wasn't it." +"What then?" Sethe asked. +"The roosters," he said. "Walking past the roosters looking at them look at me." +Sethe smiled. "In that pine?" +"Yeah." Paul D smiled with her. "Must have been five of them perched up there, and at least fifty hens." +"Mister, too?" +"Not right off. But I hadn't took twenty steps before I seen him. +He come down off the fence post there and sat on the tub." +"He loved that tub," said Sethe, thinking, No, there is no stopping now. +"Didn't he? Like a throne. Was me took him out the shell, you know. He'd a died if it hadn't been for me. The hen had +walked on off with all the hatched peeps trailing behind her. There was this one egg left. Looked like a blank, but then +I saw it move so I tapped it open and here come Mister, bad feet and all. I watched that son a bitch grow up and whup +everything in the yard." +43 +"He always was hateful," Sethe said. +"Yeah, he was hateful all right. Bloody too, and evil. Crooked feet flapping. Comb as big as my hand and some kind of +red. He sat right there on the tub looking at me. I swear he smiled. My head was full of what I'd seen of Halle a while +back. I wasn't even thinking about the bit. Just Halle and before him Sixo, but when I saw Mister I knew it was me too. +Not just them, me too. One crazy, one sold, one missing, one burnt and me licking iron with my hands crossed behind +me. The last of the Sweet Home men. +"Mister, he looked so... free. Better than me. Stronger, tougher. +Son a bitch couldn't even get out the shell by hisself but he was still king and I was..." Paul D stopped and squeezed his +left hand with his right. He held it that way long enough for it and the world to quiet down and let him go on. +"Mister was allowed to be and stay what he was. But I wasn't allowed to be and stay what I was. Even if you cooked +him you'd be cooking a rooster named Mister. But wasn't no way I'd ever be Paul D again, living or dead. Schoolteacher +changed me. I was something else and that something was less than a chicken sitting in the sun on a tub." +Sethe put her hand on his knee and rubbed. +Paul D had only begun, what he was telling her was only the beginning when her fingers on his knee, soft and reassuring, +stopped him. Just as well. Just as well. Saying more might push them both to a place they couldn't get back from. He +would keep the rest where it belonged: in that tobacco tin buried in his chest where a red heart used to be. Its lid rusted +shut. He would not pry it loose now in front of this sweet sturdy woman, for if she got a whiff of the contents it would +shame him. And it would hurt her to know that there was no red heart bright as Mister's comb beating in him. +Sethe rubbed and rubbed, pressing the work cloth and the stony curves that made up his knee. She hoped it calmed him +as it did her. +Like kneading bread in the half-light of the restaurant kitchen. Before the cook arrived when she stood in a space no +wider than a bench is long, back behind and to the left of the milk cans. Working dough. +Working, working dough. Nothing better than that to start the day's serious work of beating back the past. +Chapter 8 +UPSTAIRS BELOVED was dancing. A little two-step, two-step, make-a-new-step, slide, slide and strut on down. +Denver sat on the bed smiling and providing the music. +She had never seen Beloved this happy. She had seen her pouty lips open wide with the pleasure of sugar or some piece +of news Denver gave her. She had felt warm satisfaction radiating from Beloved's skin when she listened to her mother +talk about the old days. +But gaiety she had never seen. Not ten minutes had passed since Beloved had fallen backward to the floor, pop-eyed, +thrashing and holding her throat. Now, after a few seconds lying in Denver's bed, she was up and dancing. +"Where'd you learn to dance?" Denver asked her. +"Nowhere. Look at me do this." Beloved put her fists on her hips and commenced to skip on bare feet. Denver laughed. +"Now you. Come on," said Beloved. "You may as well just come on." Her black skirt swayed from side to side. +Denver grew ice-cold as she rose from the bed. She knew she was twice Beloved's size but she floated up, cold and light +as a snowflake. +Beloved took Denver's hand and placed another on Denver's shoulder. They danced then. Round and round the tiny +44 +room and it may have been dizziness, or feeling light and icy at once, that made Denver laugh so hard. A catching laugh +that Beloved caught. The two of them, merry as kittens, swung to and fro, to and fro, until exhausted they sat on the +floor. Beloved let her head fall back on the edge of the bed while she found her breath and Denver saw the tip of the +thing she always saw in its entirety when Beloved undressed to sleep. Looking straight at it she whispered, "Why you call +yourself Beloved?" +Beloved closed her eyes. "In the dark my name is Beloved." +Denver scooted a little closer. "What's it like over there, where you were before? Can you tell me?" +"Dark," said Beloved. "I'm small in that place. I'm like this here." +She raised her head off the bed, lay down on her side and curled up. +Denver covered her lips with her fingers. "Were you cold?" +Beloved curled tighter and shook her head. "Hot. Nothing to breathe down there and no room to move in." +"You see anybody?" +"Heaps. A lot of people is down there. Some is dead." +"You see Jesus? Baby Suggs?" +"I don't know. I don't know the names." She sat up. +"Tell me, how did you get here?" +"I wait; then I got on the bridge. I stay there in the dark, in the daytime, in the dark, in the daytime. It was a long time." +"All this time you were on a bridge?" +"No. After. When I got out." +"What did you come back for?" +Beloved smiled. "To see her face." +"Ma'am's? Sethe?" +"Yes, Sethe." +Denver felt a little hurt, slighted that she was not the main reason for Beloved's return. "Don't you remember we played +together by the stream?" +"I was on the bridge," said Beloved. "You see me on the bridge?" +"No, by the stream. The water back in the woods." +"Oh, I was in the water. I saw her diamonds down there. I could touch them." +"What stopped you?" +"She left me behind. By myself," said Beloved. She lifted her eyes to meet Denver's and frowned, perhaps. Perhaps not. +The tiny scratches on her forehead may have made it seem so. +Denver swallowed. "Don't," she said. "Don't. You won't leave us, will you?" +"No. Never. This is where I am." +45 +Suddenly Denver, who was sitting cross-legged, lurched forward and grabbed Beloved's wrist. "Don't tell her. Don't let +Ma'am know who you are. Please, you hear?" +"Don't tell me what to do. Don't you never never tell me what to do." +"But I'm on your side, Beloved." +"She is the one. She is the one I need. You can go but she is the one I have to have." Her eyes stretched to the limit, +black as the all night sky. +"I didn't do anything to you. I never hurt you. I never hurt anybody," said Denver. +"Me either. Me either." +"What you gonna do?" +"Stay here. I belong here." +"I belong here too." +"Then stay, but don't never tell me what to do. Don't never do that." +"We were dancing. Just a minute ago we were dancing together. +Let's." +"I don't want to." Beloved got up and lay down on the bed. Their quietness boomed about on the walls like birds in +panic. Finally Denver's breath steadied against the threat of an unbearable loss. +"Tell me," Beloved said. "Tell me how Sethe made you in the boat." +"She never told me all of it," said Denver. +"Tell me." +Denver climbed up on the bed and folded her arms under her apron. She had not been in the tree room once since +Beloved sat on their stump after the carnival, and had not remembered that she hadn't gone there until this very +desperate moment. Nothing was out there that this sister-girl did not provide in abundance: a racing heart, dreaminess, +society, danger, beauty. She swallowed twice to prepare for the telling, to construct out of the strings she had heard all +her life a net to hold Beloved. +"She had good hands, she said. The whitegirl, she said, had thin little arms but good hands. She saw that right away, +she said. Hair enough for five heads and good hands, she said. I guess the hands made her think she could do it: get us +both across the river. But the mouth was what kept her from being scared. She said there ain't nothing to go by with +whitepeople. You don't know how they'll jump. Say one thing, do another. But if you looked at the mouth sometimes +you could tell by that. She said this girl talked a storm, but there wasn't no meanness around her mouth. She took +Ma'am to that lean-to and rubbed her feet for her, so that was one thing. +And Ma'am believed she wasn't going to turn her over. You could get money if you turned a runaway over, and she +wasn't sure this girl Amy didn't need money more than anything, especially since all she talked about was getting hold of +some velvet." +"What's velvet?" +"It's a cloth, kind of deep and soft." +"Go ahead." +46 +"Anyway, she rubbed Ma'am's feet back to life, and she cried, she said, from how it hurt. But it made her think she could +make it on over to where Grandma Baby Suggs was and..." +"Who is that?" +"I just said it. My grandmother." +"Is that Sethe's mother?" +"No. My father's mother." +"Go ahead." +"That's where the others was. My brothers and.., the baby girl. +She sent them on before to wait for her at Grandma Baby's. So she had to put up with everything to get there. And this +here girl Amy helped." +Denver stopped and sighed. This was the part of the story she loved. She was coming to it now, and she loved it because +it was all about herself; but she hated it too because it made her feel like a bill was owing somewhere and she, Denver, +had to pay it. But who she owed or what to pay it with eluded her. Now, watching Beloved's alert and hungry face, +how she took in every word, asking questions about the color of things and their size, her downright craving to know, +Denver began to see what she was saying and not just to hear it: there is this nineteen-year-old slave girl--a year older +than her self--walking through the dark woods to get to her children who are far away. She is tired, scared maybe, and +maybe even lost. Most of all she is by herself and inside her is another baby she has to think about too. Behind her dogs, +perhaps; guns probably; and certainly mossy teeth. She is not so afraid at night because she is the color of it, but in the +day every sound is a shot or a tracker's quiet step. +Denver was seeing it now and feeling it--through Beloved. Feeling how it must have felt to her mother. Seeing how it +must have looked. +And the more fine points she made, the more detail she provided, the more Beloved liked it. So she anticipated the +questions by giving blood to the scraps her mother and grandmother had told herwand a heartbeat. The monologue +became, iri fact, a duet as they lay down together, Denver nursing Beloved's interest like a lover whose pleasure was to +overfeed the loved. The dark quilt with two orange patches was there with them because Beloved wanted it near her +when she slept. It was smelling like grass and feeling like hands-- the unrested hands of busy women: dry, warm, prickly. +Denver spoke, Beloved listened, and the two did the best they could to create what really happened, how it really was, +something only Sethe knew because she alone had the mind for it and the time afterward to shape it: the quality of +Amy's voice, her breath like burning wood. The quick-change weather up in those hills---cool at night, hot in the day, +sudden fog. How recklessly she behaved with this whitegirlNa recklessness born of desperation and encouraged by +Amy's fugitive eyes and her tenderhearted mouth. +"You ain't got no business walking round these hills, miss." +"Looka here who's talking. I got more business here 'n you got. +They catch you they cut your head off. Ain't nobody after me but I know somebody after you." Amy pressed her fingers +into the soles of the slavewoman's feet. "Whose baby that?" +Sethe did not answer. +"You don't even know. Come here, Jesus," Amy sighed and shook her head. "Hurt?" +"A touch." +"Good for you. More it hurt more better it is. Can't nothing heal without pain, you know. What you wiggling for?" +47 +Sethe raised up on her elbows. Lying on her back so long had raised a ruckus between her shoulder blades. The fire in +her feet and the fire on her back made her sweat. +"My back hurt me," she said. +"Your back? Gal, you a mess. Turn over here and let me see." +In an effort so great it made her sick to her stomach, Sethe turned onto her right side. Amy unfastened the back of her +dress and said, "Come here, Jesus," when she saw. Sethe guessed it must be bad because after that call to Jesus Amy +didn't speak for a while. In the silence of an Amy struck dumb for a change, Sethe felt the fingers of those good hands +lightly touch her back. She could hear her breathing but still the whitegirl said nothing. Sethe could not move. She +couldn't lie on her stomach or her back, and to keep on her side meant pressure on her screaming feet. Amy spoke at +last in her dreamwalker's voice. +"It's a tree, Lu. A chokecherry tree. See, here's the trunk--it's red and split wide open, full of sap, and this here's the +parting for the branches. You got a mighty lot of branches. Leaves, too, look like, and dern if these ain't blossoms. Tiny +little cherry blossoms, just as white. Your back got a whole tree on it. In bloom. What God have in mind, I wonder. I had +me some whippings, but I don't remember nothing like this. Mr. Buddy had a right evil hand too. Whip you for looking +at him straight. Sure would. I looked right at him one time and he hauled off and threw the poker at me. Guess he knew +what I was a-thinking.'" +Sethe groaned and Amy cut her reverie short--long enough to shift Sethe's feet so the weight, resting on leaf-covered +stones, was above the ankles. +"That better? Lord what a way to die. You gonna die in here, you know. Ain't no way out of it. Thank your Maker I come +along so's you wouldn't have to die outside in them weeds. Snake come along he bite you. Bear eat you up. Maybe you +should of stayed where you was, Lu. I can see by your back why you didn't ha ha. +Whoever planted that tree beat Mr. Buddy by a mile. Glad I ain't you. Well, spiderwebs is 'bout all I can do for you. +What's in here ain't enough. I'll look outside. Could use moss, but sometimes bugs and things is in it. Maybe I ought +to break them blossoms open. Get that pus to running, you think? Wonder what God had in mind. You must of did +something. Don't run off nowhere now." +Sethe could hear her humming away in the bushes as she hunted spiderwebs. A humming she concentrated on because +as soon as Amy ducked out the baby began to stretch. Good question, she was thinking. +What did He have in mind? Amy had left the back of Sethe's dress open and now a tail of wind hit it, taking the pain +down a step. A relief that let her feel the lesser pain of her sore tongue. Amy returned with two palmfuls of web, which +she cleaned of prey and then draped on Sethe's back, saying it was like stringing a tree for Christmas. +"We got a old nigger girl come by our place. She don't know nothing. Sews stuff for Mrs. Buddy--real fine lace but can't +barely stick two words together. She don't know nothing, just like you. You don't know a thing. End up dead, that's what. +Not me. I'm a get to Boston and get myself some velvet. Carmine. You don't even know about that, do you? Now you +never will. Bet you never even sleep with the sun in your face. I did it a couple of times. Most times I'm feeding stock +before light and don't get to sleep till way after dark comes. But I was in the back of the wagon once and fell asleep. +Sleeping with the sun in your face is the best old feeling. Two times I did it. Once when I was little. Didn't nobody bother +me then. Next time, in back of the wagon, it happened again and doggone if the chickens didn't get loose. Mr. Buddy +whipped my tail. Kentucky ain't no good place to be in. Boston's the place to be in. That's where my mother was before +she was give to Mr. Buddy. Joe Nathan said Mr. +Buddy is my daddy but I don't believe that, you?" +Sethe told her she didn't believe Mr. Buddy was her daddy. +"You know your daddy, do you?" +48 +"No," said Sethe. +"Neither me. All I know is it ain't him." She stood up then, having finished her repair work, and weaving about the lean- +to, her slow-moving eyes pale in the sun that lit her hair, she sang: "'When the busy day is done And my weary little one +Rocketh gently to and fro; When the night winds softly blow, And the crickets in the glen Chirp and chirp and chirp again; +Where "pon the haunted green Fairies dance around their queen, Then from yonder misty skies Cometh Lady Button +Eyes." +Suddenly she stopped weaving and rocking and sat down, her skinny arms wrapped around her knees, her good good +hands cupping her elbows. Her slow-moving eyes stopped and peered into the dirt at her feet. "That's my mama's song. +She taught me it." +"Through the muck and mist and glaam To our quiet cozy home, Where to singing sweet and low Rocks a cradle to and +fro. +Where the clock's dull monotone +Telleth of the day that's done, +Where the moonbeams hover o'er +Playthings sleeping on the floor, +Where my weary wee one lies +Cometh Lady Button Eyes. +Layeth she her hands upon +My dear weary little one, +And those white hands overspread +Like a veil the curly head, +Seem to fondle and caress +Every little silken tress. +Then she smooths the eyelids down +Over those two eyes of brown +In such soothing tender wise +Cometh Lady Button Eyes." +Amy sat quietly after her song, then repeated the last line before she stood, left the lean-to and walked off a little ways +to lean against a young ash. When she came back the sun was in the valley below and they were way above it in blue +Kentucky light. +"'You ain't dead yet, Lu? Lu?" +"Not yet." +"Make you a bet. You make it through the night, you make it all the way." Amy rearranged the leaves for comfort and +knelt down to massage the swollen feet again. "Give these one more real good rub," she said, and when Sethe sucked +air through her teeth, she said, "Shut up. You got to keep your mouth shut." +49 +Careful of her tongue, Sethe bit down on her lips and let the good hands go to work to the tune of "So bees, sing soft +and bees, sing low." Afterward, Amy moved to the other side of the lean-to where, seated, she lowered her head toward +her shoulder and braided her hair, saying, "Don't up and die on me +in the night, you hear? I don't want to see your ugly black face hankering over me. If you do die, just go on off +somewhere where I can't see you, hear?" +"I hear," said Sethe. I'll do what I can, miss." +Sethe never expected to see another thing in this world, so when she felt toes prodding her hip it took a while to come +out of a sleep she thought was death. She sat up, stiff and shivery, while Amy looked in on her juicy back. +"Looks like the devil," said Amy. "But you made it through. +Come down here, Jesus, Lu made it through. That's because of me. +I'm good at sick things. Can you walk, you think?" +"I have to let my water some kind of way." +"Let's see you walk on em." +It was not good, but it was possible, so Sethe limped, holding on first to Amy, then to a sapling. +"Was me did it. I'm good at sick things ain't I?" +"Yeah," said Sethe, "you good." +"We got to get off this here hill. Come on. I'll take you down to the river. That ought to suit you. Me, I'm going to the +Pike. Take me straight to Boston. What's that all over your dress?" +"Milk." +"You one mess." +Sethe looked down at her stomach and touched it. The baby was dead. She had not died in the night, but the baby had. +If that was the case, then there was no stopping now. She would get that milk to her baby girl if she had to swim. +"Ain't you hungry?" Amy asked her. +"I ain't nothing but in a hurry, miss." +"Whoa. Slow down. Want some shoes?" +"Say what?" +"I figured how," said Amy and so she had. She tore two pieces from Sethe's shawl, filled them with leaves and tied them +over her feet, chattering all the while. +"How old are you, Lu? I been bleeding for four years but I ain't having nobody's baby. Won't catch me sweating milk +cause..." +"I know," said Sethe. "You going to Boston." +At noon they saw it; then they were near enough to hear it. By late afternoon they could drink from it if they wanted to. +Four stars were visible by the time they found, not a riverboat to stow Sethe away on, or a ferryman willing to take on a +fugitive passenger--nothing like that--but a whole boat to steal. It had one oar, lots of holes and two bird nests. +50 +"There you go, Lu. Jesus looking at you." +Sethe was looking at one mile of dark water, which would have to be split with one oar in a useless boat against a +current dedicated to the Mississippi hundreds of miles away. It looked like home to her, and the baby (not dead in the +least) must have thought so too. +As soon as Sethe got close to the river her own water broke loose to join it. The break, followed by the redundant +announcement of labor, arched her back. +"What you doing that for?" asked Amy. "Ain't you got a brain in your head? Stop that right now. I said stop it, Lu. You the +dumbest thing on this here earth. Lu! Lu!" +Sethe couldn't think of anywhere to go but in. She waited for the sweet beat that followed the blast of pain. On her +knees again, she crawled into the boat. It waddled under her and she had just enough time to brace her leaf-bag feet on +the bench when another rip took her breath away. Panting under four summer stars, she threw her legs over the sides, +because here come the head, as Amy informed her as though she did not know it--as though the rip was a breakup of +walnut logs in the brace, or of lightning's jagged tear through a leather sky. +It was stuck. Face up and drowning in its mother's blood. Amy stopped begging Jesus and began to curse His daddy. +"Push!" screamed Amy. +"Pull," whispered Sethe. +And the strong hands went to work a fourth time, none too soon, for river water, seeping through any hole it chose, +was spreading over Sethe's hips. She reached one arm back and grabbed the rope while Amy fairly clawed at the head. +When a foot rose from the river bed and kicked the bottom of the boat and Sethe's behind, she knew it was done and +permitted herself a short faint. Coming to, she heard no cries, just Amy's encouraging coos. Nothing happened for so +long they both believed they had lost it. Sethe arched suddenly and the afterbirth shot out. Then the baby whimpered +and Sethe looked. +Twenty inches of cord hung from its belly and it trembled in the cooling evening air. Amy wrapped her skirt around it +and the wet sticky women clambered ashore to see what, indeed, God had in mind. +Spores of bluefern growing in the hollows along the riverbank float toward the water in silver-blue lines hard to see +unless you are in or near them, lying right at the river's edge when the sunshots +are low and drained. Often they are mistook for insects--but they are seeds in which the whole generation sleeps +confident of a future. +And for a moment it is easy to believe each one has one--will become all of what is contained in the spore: will live out +its days as planned. +This moment of certainty lasts no longer than that; longer, perhaps, than the spore itself. +On a riverbank in the cool of a summer evening two women struggled under a shower of silvery blue. They never +expected to see each other again in this world and at the moment couldn't care less. +But there on a summer night surrounded by bluefern they did something together appropriately and well. A pateroller +passing would have sniggered to see two throw-away people, two lawless outlaws-- a slave and a barefoot whitewoman +with unpinned hair--wrapping a ten-minute-old baby in the rags they wore. But no pateroller came and no preacher. +The water sucked and swallowed itself beneath them. There was nothing to disturb them at their work. So they did it +appropriately and well. +Twilight came on and Amy said she had to go; that she wouldn't be caught dead in daylight on a busy river with a +runaway. After rinsing her hands and face in the river, she stood and looked down at the baby wrapped and tied to +51 +Sethe's chest. +"She's never gonna know who I am. You gonna tell her? Who brought her into this here world?" She lifted her chin, +looked off into the place where the sun used to be. "You better tell her. You hear? Say Miss Amy Denver. Of Boston." +Sethe felt herself falling into a sleep she knew would be deep. On the lip of it, just before going under, she +thought, "That's pretty. +Denver. Real pretty." +Chapter 9 +IT WAS TIME to lay it all down. Before Paul D came and sat on her porch steps, words whispered in the keeping room +had kept her going. Helped her endure the chastising ghost; refurbished the baby faces of Howard and Buglar and kept +them whole in the world because in her dreams she saw only their parts in trees; and kept her husband shadowy but +there--somewhere. Now Halle's face between the butter press and the churn swelled larger and larger, crowding her +eyes and making her head hurt. She wished for Baby Suggs' fingers molding her nape, reshaping it, saying, "Lay em +down, Sethe. Sword and shield. Down. Down. Both of em down. Down by the riverside. +Sword and shield. Don't study war no more. Lay all that mess down. +Sword and shield." And under the pressing fingers and the quiet instructive voice, she would. Her heavy knives of +defense against misery, regret, gall and hurt, she placed one by one on a bank where dear water rushed on below. +Nine years without the fingers or the voice of Baby Suggs was too much. And words whispered in the keeping room +were too little. +The butter-smeared face of a man God made none sweeter than demanded more: an arch built or a robe sewn. Some +fixing ceremony. +Sethe decided to go to the Clearing, back where Baby Suggs had danced in sunlight. +Before 124 and everybody in it had closed down, veiled over and shut away; before it had become the plaything of +spirits and the home of the chafed, 124 had been a cheerful, buzzing house where Baby Suggs, holy, loved, cautioned, +fed, chastised and soothed. Where not one but two pots simmered on the stove; where the lamp burned all night long. +Strangers rested there while children tried on their shoes. Messages were left there, for whoever needed them was +sure to stop in one day soon. Talk was low and to the point--for Baby Suggs, holy, didn't approve of extra. "Everything +depends on knowing how much," she said, and "Good is knowing when to stop." +It was in front of that 124 that Sethe climbed off a wagon, her newborn tied to her chest, and felt for the first time the +wide arms of her mother-in-law, who had made it to Cincinnati. Who decided that, because slave life had "busted her +legs, back, head, eyes, hands, kidneys, womb and tongue," she had nothing left to make a living with but her heart-- +which she put to work at once. Accepting no title of honor before her name, but allowing a small caress after it, she +became an unchurched preacher, one who visited pulpits and opened her great heart to those who could use it. In +winter and fall she carried it to AME's and Baptists, Holinesses and Sanctifieds, the Church of the Redeemer and the +Redeemed. Uncalled, unrobed, un anointed, she let her great heart beat in their presence. When warm weather came, +Baby Suggs, holy, followed by every black man, woman and child who could make it through, took her great heart to +the Clearing--a wide-open place cut deep in the woods nobody knew for what at the end of a path known only to deer +and whoever cleared the land in the first place. In the heat of every Saturday afternoon, she sat in the clearing while the +people waited among the trees. +After situating herself on a huge flat-sided rock, Baby Suggs bowed her head and prayed silently. The company watched +her from the trees. They knew she was ready when she put her stick down. Then she shouted, "Let the children come!" +52 +and they ran from the trees toward her. +"Let your mothers hear you laugh," she told them, and the woods rang. The adults looked on and could not help smiling. +Then "Let the grown men come," she shouted. They stepped out one by one from among the ringing trees. +"Let your wives and your children see you dance," she told them, and groundlife shuddered under their feet. +Finally she called the women to her. "Cry," she told them. "For the living and the dead. Just cry." And without covering +their eyes the women let loose. +It started that way: laughing children, dancing men, crying women and then it got mixed up. Women stopped crying and +danced; men sat down and cried; children danced, women laughed, children cried until, exhausted and riven, all and +each lay about the Clearing damp and gasping for breath. In the silence that followed, Baby Suggs, holy, offered up to +them her great big heart. +She did not tell them to clean up their lives or to go and sin no more. She did not tell them they were the blessed of the +earth, its inheriting meek or its glorybound pure. +She told them that the only grace they could have was the grace they could imagine. That if they could not see it, they +would not have it. +"Here," she said, "in this here place, we flesh; flesh that weeps, laughs; flesh that dances on bare feet in grass. Love it. +Love it hard. +Yonder they do not love your flesh. They despise it. They don't love your eyes; they'd just as soon pick em out. No more +do they love the skin on your back. Yonder they flay it. And O my people they do not love your hands. Those they only +use, tie, bind, chop off and leave empty. Love your hands! Love them. Raise them up and kiss them. Touch others with +them, pat them together, stroke them on your face 'cause they don't love that either. You got to love it, you! And no, +they ain't in love with your mouth. Yonder, out there, they will see it broken and break it again. What you say out of it +they will not heed. What you scream from it they do not hear. What you put into it to nourish your body they will snatch +away and give you leavins instead. No, they don't love your mouth. You got to love it. +This is flesh I'm talking about here. Flesh that needs to be loved. +Feet that need to rest and to dance; backs that need support; shoulders that need arms, strong arms I'm telling you. And +O my people, out yonder, hear me, they do not love your neck unnoosed and straight. So love your neck; put a hand on +it, grace it, stroke it and hold it up. And all your inside parts that they'd just as soon slop for hogs, you got to love them. +The dark, dark liver--love it, love it, and the beat and beating heart, love that too. More than eyes or feet. +More than lungs that have yet to draw free air. More than your life holding womb and your life-giving private parts, hear +me now, love your heart. For this is the prize." Saying no more, she stood up then and danced with her twisted hip the +rest of what her heart had to say while the others opened their mouths and gave her the music. +Long notes held until the four-part harmony was perfect enough for their deeply loved flesh. +Sethe wanted to be there now. At the least to listen to the spaces that the long-ago singing had left behind. At the most +to get a clue from her husband's dead mother as to what she should do with her sword and shield now, dear Jesus, now +nine years after Baby Suggs, holy, proved herself a liar, dismissed +her great heart and lay in the keeping-room bed roused once in a while by a craving for color and not for another thing. +"Those white things have taken all I had or dreamed," she said, "and broke my heartstrings too. There is no bad luck +in the world but whitefolks." 124 shut down and put up with the venom of its ghost. No more lamp all night long, +or neighbors dropping by. No low conversations after supper. No watched barefoot children playing in the shoes of +strangers. Baby Suggs, holy, believed she had lied. +53 +There was no grace-imaginary or real--and no sunlit dance in a Clearing could change that. Her faith, her love, her +imagination and her great big old heart began to collapse twenty-eight days after her daughter-in-law arrived. +Yet it was to the Clearing that Sethe determined to go--to pay tribute to Halle. Before the light changed, while it was still +the green blessed place she remembered: misty with plant steam and the decay of berries. +She put on a shawl and told Denver and Beloved to do likewise. +All three set out late one Sunday morning, Sethe leading, the girls trotting behind, not a soul in sight. +When they reached the woods it took her no time to find the path through it because big-city revivals were held there +regularly now, complete with food-laden tables, banjos and a tent. The old path was a track now, but still arched over +with trees dropping buckeyes onto the grass below. +There was nothing to be done other than what she had done, but Sethe blamed herself for Baby Suggs' collapse. +However many times Baby denied it, Sethe knew the grief at 124 started when she jumped down off the wagon, her +newborn tied to her chest in the underwear of a whitegirl looking for Boston. +Followed by the two girls, down a bright green corridor of oak and horse chestnut, Sethe began to sweat a sweat just +like the other one when she woke, mud-caked, on the banks of the Ohio. +Amy was gone. Sethe was alone and weak, but alive, and so was her baby. She walked a ways downriver and then +stood gazing at the glimmering water. By and by a flatbed slid into view, but she could not see if the figures on it were +whitepeople or not. She began to sweat from a fever she thanked God for since it would certainly keep her baby warm. +When the flatbed was beyond her sight she stumbled on and found herself near three coloredpeople fishing-- two +boys and an older man. She stopped and waited to be spoken to. One of the boys pointed and the man looked over his +shoulder at her--a quick look since all he needed to know about her he could see in no time. +No one said anything for a while. Then the man said, "Headin' +'cross?" +"Yes, sir," said Sethe. +"Anybody know you coming?" +"Yes, sir." +He looked at her again and nodded toward a rock that stuck out of the ground above him like a bottom lip. Sethe walked +to it and sat down. The stone had eaten the sun's rays but was nowhere near as hot as she was. Too tired to move, she +stayed there, the sun in her eyes making her dizzy. Sweat poured over her and bathed the baby completely. She must +have slept sitting up, because when next she opened her eyes the man was standing in front of her with a smoking-hot +piece of fried eel in his hands. It was an effort to reach for, more to smell, impossible to eat. She begged him for water +and he gave her some of the Ohio in a jar. Sethe drank it all and begged more. The clanging was back in her head but she +refused to believe that she had come all that way, endured all she had, to die on the wrong side of the river. +The man watched her streaming face and called one of the boys over. +"Take off that coat," he told him. +"Sir?" +"You heard me." +The boy slipped out of his jacket, whining, "What you gonna do? What I'm gonna wear?" +The man untied the baby from her chest and wrapped it in the boy's coat, knotting the sleeves in front. +54 +"What I'm gonna wear?" +The old man sighed and, after a pause, said, "You want it back, then go head and take it off that baby. Put the baby +naked in the grass and put your coat back on. And if you can do it, then go on 'way somewhere and don't come back." +The boy dropped his eyes, then turned to join the other. With eel in her hand, the baby at her feet, Sethe dozed, dry- +mouthed and sweaty. Evening came and the man touched her shoulder. +Contrary to what she expected they poled upriver, far away from the rowboat Amy had found. Just when she thought +he was taking her back to Kentucky, he turned the flatbed and crossed the Ohio like a shot. There he helped her up the +steep bank, while the boy without a jacket carried the baby who wore it. The man led her to a brush-covered hutch with +a beaten floor. +"Wait here. Somebody be here directly. Don't move. They'll find you." +"Thank you," she said. "I wish I knew your name so I could remember you right." +"Name's Stamp," he said. "Stamp Paid. Watch out for that there baby, you hear?" +"I hear. I hear," she said, but she didn't. Hours later a woman was right up on her before she heard a thing. A short +woman, young, with a croaker sack, greeted her. +"'Saw the sign a while ago," she said. "But I couldn't get here no quicker." +"What sign?" asked Sethe. +"Stamp leaves the old sty open when there's a crossing. Knots a white rag on the post if it's a child too." +She knelt and emptied the sack. "My name's Ella," she said, taking a wool blanket, cotton cloth, two baked sweet +potatoes and a pair of men's shoes from the sack. "My husband, John, is out yonder a ways. Where you heading?" +Sethe told her about Baby Suggs where she had sent her three children. +Ella wrapped a cloth strip tight around the baby's navel as she listened for the holes--the things the fugitives did not say; +the questions they did not ask. Listened too for the unnamed, unmentioned people left behind. She shook gravel from +the men's shoes and tried to force Sethe's feet into them. They would not go. Sadly, they split them down the heel, sorry +indeed to ruin so valuable an item. Sethe put on the boy's jacket, not daring to ask whether there was any word of the +children. +"They made it," said Ella. "Stamp ferried some of that party. +Left them on Bluestone. It ain't too far." +Sethe couldn't think of anything to do, so grateful was she, so she peeled a potato, ate it, spit it up and ate more in quiet +celebration. +"They be glad to see you," said Ella. "When was this one born?" +"Yesterday," said Sethe, wiping sweat from under her chin. "I hope she makes it." +Ella looked at the tiny, dirty face poking out of the wool blanket and shook her head. "Hard to say," she said. "If +anybody was to ask me I'd say, 'Don't love nothing.' " Then, as if to take the edge off her pronouncement, she smiled at +Sethe. "You had that baby by yourself?" +"No. Whitegirl helped." +"Then we better make tracks." +55 +Baby Suggs kissed her on the mouth and refused to let her see the children. They were asleep she said and Sethe was +too uglylooking to wake them in the night. She took the newborn and handed it to a young woman in a bonnet, telling +her not to clean the eyes till she got the mother's urine. +"Has it cried out yet?" asked Baby. +"A little." +"Time enough. Let's get the mother well." +She led Sethe to the keeping room and, by the light of a spirit lamp, bathed her in sections, starting with her face. Then, +while waiting for another pan of heated water, she sat next to her and stitched gray cotton. Sethe dozed and woke +to the washing of her hands and arms. After each bathing, Baby covered her with a quilt and put another pan on in +the kitchen. Tearing sheets, stitching the gray cotton, she supervised the woman in the bonnet who tended the baby +and cried into her cooking. When Sethe's legs were done, Baby looked at her feet and wiped them lightly. She cleaned +between Sethe's legs with two separate pans of hot water and then tied her stomach and vagina with sheets. Finally she +attacked the unrecognizable feet. +"You feel this?" +"Feel what?" asked Sethe. +"Nothing. Heave up." She helped Sethe to a rocker and lowered her feet into a bucket of salt water and juniper. The rest +of the night Sethe sat soaking. The crust from her nipples Baby softened with lard and then washed away. By dawn the +silent baby woke and took her mother's milk. +"Pray God it ain't turned bad," said Baby. "And when you through, call me." As she turned to go, Baby Suggs caught a +glimpse of something dark on the bed sheet. She frowned and looked at her daughter-in-law bending toward the baby. +Roses of blood blossomed in the blanket covering Sethe's shoulders. Baby Suggs hid her mouth with her hand. When +the nursing was over and the newborn was asleep--its eyes half open, its tongue dream-sucking--wordlessly the older +woman greased the flowering back and pinned a double thickness of cloth to the inside of the newly stitched dress. +It was not real yet. Not yet. But when her sleepy boys and crawl ing-already? girl were brought in, it didn't matter +whether it was real or not. Sethe lay in bed under, around, over, among but especially with them all. The little girl +dribbled clear spit into her face, and Sethe's laugh of delight was so loud the crawling-already? baby blinked. +Buglar and Howard played with her ugly feet, after daring each other to be the first to touch them. She kept kissing +them. She kissed the backs of their necks, the tops of their heads and the centers of their palms, and it was the boys +who decided enough was enough when she liked their shirts to kiss their tight round bellies. She stopped when and +because they said, "Pappie come?" +She didn't cry. She said "soon" and smiled so they would think the brightness in her eyes was love alone. It was some +time before she let Baby Suggs shoo the boys away so Sethe could put on the gray cotton dress her mother-in-law had +started stitching together the night before. Finally she lay back and cradled the crawling already? girl in her arms. She +enclosed her left nipple with two fingers of her right hand and the child opened her mouth. They hit home together. +Baby Suggs came in and laughed at them, telling Sethe how strong the baby girl was, how smart, already crawling. Then +she stooped to gather up the ball of rags that had been Sethe's clothes. +"Nothing worth saving in here," she said. +Sethe liked her eyes. "Wait," she called. "Look and see if there's something still knotted up in the petticoat." +Baby Suggs inched the spoiled fabric through her fingers and came upon what felt like pebbles. She held them out +toward Sethe. "Going away present?" +56 +"Wedding present." +"Be nice if there was a groom to go with it." She gazed into her hand. "What you think happened to him?" +"I don't know," said Sethe. "He wasn't where he said to meet him at. I had to get out. Had to." Sethe watched the +drowsy eyes of the sucking girl for a moment then looked at Baby Suggs' face. "He'll make it. If I made it, Halle sure can." +"Well, put these on. Maybe they'll light his way." Convinced her son was dead, she handed the stones to Sethe. +"I need holes in my ears." +"I'll do it," said Baby Suggs. "Soon's you up to it." +Sethe jingled the earrings for the pleasure of the crawling-already? girl, who reached for them over and over again. +In the Clearing, Sethe found Baby's old preaching rock and remembered the smell of leaves simmering in the sun, +thunderous feet and the shouts that ripped pods off the limbs of the chestnuts. With Baby Suggs' heart in charge, the +people let go. +Sethe had had twenty-eight days--the travel of one whole moon--of unslaved life. From the pure clear stream of spit +that the little girl dribbled into her face to her oily blood was twenty-eight days. Days of healing, ease and real-talk. Days +of company: knowing the names of forty, fifty other Negroes, their views, habits; where they had been and what done; +of feeling their fun and sorrow along with her own, which made it better. One taught her the alphabet; another a stitch. +All taught her how it felt to wake up at dawn and decide what to do with the day. That's how she got through the +waiting for Halle. +Bit by bit, at 124 and in the Clearing, along with the others, she had claimed herself. Freeing yourself was one thing; +claiming ownership of that freed self was another. +Now she sat on Baby Suggs' rock, Denver and Beloved watching her from the trees. There will never be a day, she +thought, when Halle will knock on the door. Not knowing it was hard; knowing it was harder. +Just the fingers, she thought. Just let me feel your fingers again on the back of my neck and I will lay it all down, make +a way out of this no way. Sethe bowed her head and sure enough--they were there. Lighter now, no more than the +strokes of bird feather, but unmistakably caressing fingers. She had to relax a bit to let them do their work, so light was +the touch, childlike almost, more finger kiss than kneading. Still she was grateful for the effort; Baby Suggs' long distance +love was equal to any skin-close love she had known. The desire, let alone the gesture, to meet her needs was good +enough to lift her spirits to the place where she could take the next step: ask for some clarifying word; some advice +about how to keep on with a brain greedy for news nobody could live with in a world happy to provide it. +She knew Paul D was adding something to her life--something she wanted to count on but was scared to. Now he had +added more: new pictures and old rememories that broke her heart. Into the empty space of not knowing about Halle-- +-a space sometimes colored with righteous resentment at what could have been his cowardice, or stupidity or bad luck- +-that empty place of no definite news was filled now with a brand-new sorrow and who could tell how many more on +the way. Years ago--when 124 was alive--she had women friends, men friends from all around to share grief with. Then +there was no one, for they would not visit her while the baby ghost filled the house, and she returned their disapproval +with the potent pride of the mistreated. But now there was someone to share it, and he had beat the spirit away the +very day he entered her house and no sign of it since. A blessing, but in its place he brought another kind of haunting: +Halle's face smeared with butter and the dabber too; his own mouth jammed full of iron, and Lord knows what else he +could tell her if he wanted to. +The fingers touching the back of her neck were stronger now-- the strokes bolder as though Baby Suggs were gathering +strength. +Putting the thumbs at the nape, while the fingers pressed the sides. +57 +Harder, harder, the fingers moved slowly around toward her windpipe, making little circles on the way. Sethe was +actually more surprised than frightened to find that she was being strangled. Or so it seemed. In any case, Baby Suggs' +fingers had a grip on her that would not let her breathe. Tumbling forward from her seat on the rock, she clawed at the +hands that were not there. Her feet were thrashing by the time Denver got to her and then Beloved. +"Ma'am! Ma'am!" Denver shouted. "Ma'ammy!" and turned her mother over on her back. +The fingers left off and Sethe had to swallow huge draughts of air before she recognized her daughter's face next to her +own and Beloved's hovering above. +"You all right?" +"Somebody choked me," said Sethe. +"Who?" +Sethe rubbed her neck and struggled to a sitting position. "Grandma Baby, I reckon. I just asked her to rub my neck, like +she used to and she was doing fine and then just got crazy with it, I guess." +"She wouldn't do that to you, Ma'am. Grandma Baby? Uh uh." +"Help me up from here." +"Look." Beloved was pointing at Sethe's neck. +"What is it? What you see?" asked Sethe. +"Bruises," said Denver. +"On my neck?" +"Here," said Beloved. "Here and here, too." She reached out her hand and touched the splotches, gathering color darker +than Sethe's dark throat, and her fingers were mighty cool. +"That don't help nothing," Denver said, but Beloved was leaning in, her two hands stroking the damp skin that felt like +chamois and looked like taffeta. +Sethe moaned. The girl's fingers were so cool and knowing. Sethe's knotted, private, walk-on-water life gave in a bit, +softened, and it seemed that the glimpse of happiness she caught in the shadows swinging hands on the road to the +carnival was a likelihood--if she could just manage the news Paul D brought and the news he kept to himself. Just +manage it. Not break, fall or cry each time a hateful picture drifted in front of her face. Not develop some permanent +craziness like Baby Suggs' friend, a young woman in a bonnet whose food was full of tears. Like Aunt Phyllis, who slept +with her eyes wide open. Like Jackson Till, who slept under the bed. All she wanted was to go on. As she had. Alone with +her daughter in a haunted house she managed every damn thing. Why now, with Paul D instead of the ghost, was she +breaking up? getting scared? needing Baby? +The worst was over, wasn't it? She had already got through, hadn't she? With the ghost in 124 she could bear, do, solve +anything. Now a hint of what had happened to Halie and she cut out like a rabbit looking for its mother. +Beloved's fingers were heavenly. Under them and breathing evenly again, the anguish rolled down. The peace Sethe had +come there to find crept into her. +We must look a sight, she thought, and closed her eyes to see it: the three women in the middle of the Clearing, at the +base of the rock where Baby Suggs, holy, had loved. One seated, yielding up her throat to the kind hands of one of the +two kneeling before her. +Denver watched the faces of the other two. Beloved watched the work her thumbs were doing and must have loved +58 +what she saw because she leaned over and kissed the tenderness under Sethe's chin. +They stayed that way for a while because neither Denver nor Sethe knew how not to: how to stop and not love the look +or feel of the lips that kept on kissing. Then Sethe, grabbing Beloved's hair +and blinking rapidly, separated herself. She later believed that it was because the girl's breath was exactly like new milk +that she said to her, stern and frowning, "You too old for that." +She looked at Denver, and seeing panic about to become something more, stood up quickly, breaking the tableau apart. +"Come on up! Up!" Sethe waved the girls to their feet. As they left the Clearing they looked pretty much the same +as they had when they had come: Sethe in the lead, the girls a ways back. All silent as before, but with a difference. +Sethe was bothered, not because of the kiss, but because, just before it, when she was feeling so fine letting Beloved +massage away the pain, the fingers she was loving and the ones that had soothed her before they strangled her had +reminded her of something that now slipped her mind. But one thing for sure, Baby Suggs had not choked her as first +she thought. Denver was right, and walking in the dappled tree-light, clearer-headed now-- away from the enchantment +of the Clearing--Sethe remembered the tou ch of those fingers that she knew better than her own. They had bathed her +in sections, wrapped her womb, combed her hair, oiled her nipples, stitched her clothes, cleaned her feet, greased her +back and dropped just about anything they were doing to massage Sethe's nape when, especially in the early days, her +spirits fell down under the weight of the things she remembered and those she did not: schoolteacher writing in ink she +herself had made while his nephews played on her; the face of the woman in a felt hat as she rose to stretch in the field. +If she lay among all the hands in the world, she would know Baby Suggs' just as she did the good hands of the whitegirl +looking for velvet. But for eighteen years she had lived in a house full of touches from the other side. And the thumbs +that pressed her nape were the same. Maybe that was where it had gone to. After Paul D beat it out of 124, maybe it +collected itself in the Clearing. Reasonable, she thought. +Why she had taken Denver and Beloved with her didn't puzzle her now--at the time it seemed impulse, with a vague +wish for protection. +And the girls had saved her, Beloved so agitated she behaved like a two-year-old. +Like a faint smell of burning that disappears when the fire is cut off or the window opened for a breeze, the suspicion +that the girl's touch was also exactly like the baby's ghost dissipated. It was only a tiny disturbance anyway--not strong +enough to divert her from the ambition welling in her now: she wanted Paul D. No matter what he told and knew, she +wanted him in her life. More than commemorating Halle, that is what she had come to the Clearing to figure out, and +now it was figured. Trust and rememory, yes, the way she believed it could be when he cradled her before the cooking +stove. +The weight and angle of him; the true-to-life beard hair on him; arched back, educated hands. His waiting eyes and +awful human power. The mind of him that knew her own. Her story was bearable because it was his as well--to tell, to +refine and tell again. The things neither knew about the other--the things neither had word-shapes for--well, it would +come in time: where they led him off to sucking iron; the perfect death of her crawling-already? baby. +She wanted to get back--fast. Set these idle girls to some work that would fill their wandering heads. Rushing through +the green corridor, cooler now because the sun had moved, it occurred to her that the two were alike as sisters. +Their obedience and absolute reliability shot through with surprise. Sethe understood Denver. Solitude had made +her secretive--self-manipulated. Years of haunting had dulled her in ways you wouldn't believe and sharpened her in +ways you wouldn't believe either. The consequence was a timid but hard-headed daughter Sethe would die to protect. +The other, Beloved, she knew less, nothing, about---except that there was nothing she wouldn't do for Sethe and that +Denver and she liked each other's company. Now she thought she knew why. They spent up or held on to their feelings +in harmonious ways. What one had to give the other was pleased to take. They hung back in the trees that ringed the +Clearing, then rushed into it with screams and kisses when Sethe choked--anyhow that's how she explained it to herself +for she noticed neither competition between the two nor domination by one. On her mind was the supper she wanted +to fix for Paul D--something difficult to do, something she would do just so--to launch her newer, stronger life with a +59 +tender man. Those litty bitty potatoes browned on all sides, heavy on the pepper; snap beans seasoned with rind; yellow +squash sprinkled with vinegar and sugar. Maybe corn cut from the cob and fried with green onions and butter. Raised +bread, even. +Her mind, searching the kitchen before she got to it, was so full of her offering she did not see right away, in the space +under the white stairs, the wooden tub and Paul D sitting in it. She smiled at him and he smiled back. +"Summer must be over," she said. +"Come on in here." +"Uh uh. Girls right behind me." +"I don't hear nobody." +"I have to cook, Paul D." +"Me too." He stood up and made her stay there while he held her in his arms. Her dress soaked up the water from his +body. His jaw was near her ear. Her chin touched his shoulder. +"What you gonna cook?" +"I thought some snap beans." +"Oh, yeah." +"Fry up a little corn?" +"Yeah." +There was no question but that she could do it. Just like the day she arrived at 124--sure enough, she had milk enough +for all. +Beloved came through the door and they ought to have heard her tread, but they didn't. +Breathing and murmuring, breathing and murmuring. Beloved heard them as soon as the door banged shut behind her. +She jumped at the slam and swiveled her head toward the whispers coming from behind the white stairs. She took a +step and felt like crying. She had been so close, then closer. And it was so much better than the anger that ruled when +Sethe did or thought anything that excluded herself. +She could bear the hours---nine or ten of them each day but one--- when Sethe was gone. Bear even the nights when +she was close but out of sight, behind walls and doors lying next to him. But now-- even the daylight time that Beloved +had counted on, disciplined herself to be content with, was being reduced, divided by Sethe's willingness to pay +attention to other things. Him mostly. Him who said something to her that made her run out into the woods and talk to +herself on a rock. Him who kept her hidden at night behind doors. +And him who had hold of her now whispering behind the stairs after Beloved had rescued her neck and was ready now +to put her hand in that woman's own. +Beloved turned around and left. Denver had not arrived, or else she was waiting somewhere outside. Beloved went to +look, pausing to watch a cardinal hop from limb to branch. She followed the blood spot shifting in the leaves until she +lost it and even then she walked on, backward, still hungry for another glimpse. +She turned finally and ran through the woods to the stream. +Standing close to its edge she watched her reflection there. When Denver's face joined hers, they stared at each other in +the water. +60 +"You did it, I saw you," said Denver. +"What?" +"I saw your face. You made her choke." +"I didn't do it." +"You told me you loved her." +"I fixed it, didn't I? Didn't I fix her neck?" +"After. After you choked her neck." +"I kissed her neck. I didn't choke it. The circle of iron choked it." +"I saw you." Denver grabbed Beloved's arm. +"Look out, girl," said Beloved and, snatching her arm away, ran ahead as fast as she could along the stream that sang on +the other side of the woods. +Left alone, Denver wondered if, indeed, she had been wrong. She and Beloved were standing in the trees whispering, +while Sethe sat on the rock. Denver knew that the Clearing used to be where Baby Suggs preached, but that was when +she was a baby. She had never been there herself to remember it .124 and the field behind it were all the world she +knew or wanted. +Once upon a time she had known more and wanted to. Had walked the path leading to a real other house. Had stood +outside the window listening. Four times she did it on her own--crept away from 12 4 early in the afternoon when her +mother and grandmother had their guard down, just before supper, after chores; the blank hour before gears changed +to evening occupations. Denver had walked off looking for the house other children visited but not her. When she found +it she was too timid to go to the front door so she peeped in the window. Lady Jones sat in a straight-backed chair; +several children sat cross-legged on the floor in front of her. Lady Jones had a book. The children had slates. Lady Jones +was saying something too soft for Denver to hear. The children were saying it after her. Four times Denver went to look. +The fifth time Lady Jones caught her and said, "Come in the front door, Miss Denver. This is not a side show." +So she had almost a whole year of the company of her peers and along with them learned to spell and count. She was +seven, and those two hours in the afternoon were precious to her. Especially so because she had done it on her own +and was pleased and surprised by the pleasure and surprise it created in her mother and her brothers. For a nickel a +month, Lady Jones did what whitepeople thought unnecessary if not illegal: crowded her little parlor with the colored +children who had time for and interest in book learning. The nickel, tied to a handkerchief knot, tied to her belt, that she +carried to Lady Jones, thrilled her. The effort to handle chalk expertly and avoid the scream it would make; the capital +w, the little i, the beauty of the letters in her name, the deeply mournful sentences from the Bible Lady Jones used as +a textbook. Denver practiced every morning; starred every afternoon. She was so happy she didn't even know she was +being avoided by her classmates--that they made excuses and altered their pace not to walk with her. It was Nelson +Lord--the boy as smart as she was--who put a stop to it; who asked her the question about her mother that put chalk, +the little i and all the rest that those afternoons held, out of reach forever. She should have laughed when he said it, or +pushed him down, but there was no meanness in his face or his voice. Just curiosity. But the thing that leapt up in her +when he asked it was a thing that had been lying there all along. +She never went back. The second day she didn't go, Sethe asked her why not. Denver didn't answer. She was too scared +to ask her brothers or anyone else Nelson Lord's question because certain odd and terrifying feelings about her mother +were collecting around the thing that leapt up inside her. Later on, after Baby Suggs died, she did not wonder why +Howard and Buglar had run away. She did not agree with Sethe that they left because of the ghost. If so, what took them +so long? They had lived with it as long as she had. But if Nelson Lord was right--no wonder they were sulky, staying away +from home as much as they could. +61 +Meanwhile the monstrous and unmanageable dreams about Sethe found release in the concentration Denver began to +fix on the baby ghost. Before Nelson Lord, she had been barely interested in its antics. +The patience of her mother and grandmother in its presence made her indifferent to it. Then it began to irritate her, +wear her out with its mischief. That was when she walked off to follow the children to Lady Jones' house-school. Now +it held for her all the anger, love and fear she didn't know what to do with. Even when she did muster the courage to +ask Nelson Lord's question, she could not hear Sethe's answer, nor Baby Suggs' words, nor anything at all thereafter. +For two years she walked in a silence too solid for penetration but which gave her eyes a power even she found hard +to believe. The black nostrils of a sparrow sitting on a branch sixty feet above her head, for instance. For two years +she heard nothing at all and then she heard close thunder crawling up the stairs. Baby Suggs thought it was Here Boy +padding into places he never went. Sethe thought it was the India-rubber ball the boys played with bounding down the +stairs. +"Is that damn dog lost his mind?" shouted Baby Suggs. +"He's on the porch," said Sethe. "See for yourself." +"Well, what's that I'm hearing then?" +Sethe slammed the stove lid. "Buglar! Buglar! I told you all not to use that ball in here." She looked at the white stairs +and saw Denver at the top. +"She was trying to get upstairs." +"What?" The cloth she used to handle the stove lid was balled in Sethe's hand. +"The baby," said Denver. "Didn't you hear her crawling?" +What to jump on first was the problem: that Denver heard anything at all or that the crawling-already? baby girl was still +at it but more so, The return of Denver's hearing, cut off by an answer she could not hear to hear, cut on by the sound +of her dead sister trying to climb the stairs, signaled another shift in the fortunes of the people of 124. From then on the +presence was full of spite. Instead of sighs and accidents there was pointed and deliberate abuse. Buglar and Howard +grew furious at the company of the women in the house, and spent in sullen reproach any time they had away from +their odd work in town carrying water and feed at the stables. Until the spite became so personal it drove each off. Baby +Suggs grew tired, went to bed and stayed there until her big old heart quit. Except for an occasional request for color +she said practically nothing--until the afternoon of the last day of her life when she got out of bed, skipped slowly to the +door of the keeping room and announced to Sethe and Denver the lesson she had learned from her sixty years a slave +and ten years free: that there was no bad luck in the world but white people. "They don't know when to stop," she said, +and returned to her bed, pulled up the quilt and left them to hold that thought forever. +Shortly afterward Sethe and Denver tried to call up and reason with the baby ghost, but got nowhere. It took a man, +Paul D, to shout it off, beat it off and take its place for himself. And carnival or no carnival, Denver preferred the +venomous baby to him any day. +During the first days after Paul D moved in, Denver stayed in her emerald closet as long as she could, lonely as a +mountain and almost as big, thinking everybody had somebody but her; thinking even a ghost's company was denied +her. So when she saw the black dress with two unlaced shoes beneath it she trembled with secret thanks. +Whatever her power and however she used it, Beloved was hers. Denver was alarmed by the harm she thought Beloved +planned for Sethe, but felt helpless to thwart it, so unrestricted was her need to love another. The display she witnessed +at the Clearing shamed her because the choice between Sethe and Beloved was without conflict. +Walking toward the stream, beyond her green bush house, she let herself wonder what if Beloved really decided to +choke her mother. +Would she let it happen? Murder, Nelson Lord had said. "Didn't your mother get locked away for murder? Wasn't you in +62 +there with her when she went?" +It was the second question that made it impossible for so long to ask Sethe about the first. The thing that leapt up had +been coiled in just such a place: a darkness, a stone, and some other thing that moved by itself. She went deaf rather +than hear the answer, and like the little four o'clocks that searched openly for sunlight, then closed themselves tightly +when it left, Denver kept watch for the baby and withdrew from everything else. Until Paul D came. But the damage he +did came undone with the miraculous resurrection of Beloved. +Just ahead, at the edge of the stream, Denver could see her silhouette, standing barefoot in the water, liking her black +skirts up above her calves, the beautiful head lowered in rapt attention. +Blinking fresh tears Denver approached her--eager for a word, a sign of forgiveness. +Denver took off her shoes and stepped into the water with her. +It took a moment for her to drag her eyes from the spectacle of Beloved's head to see what she was staring at. +A turtle inched along the edge, turned and climbed to dry ground. +Not far behind it was another one, headed in the same direction. +Four placed plates under a hovering motionless bowl. Behind her in the grass the other one moving quickly, quickly to +mount her. The impregnable strength of him--earthing his feet near her shoulders. +The embracing necks--hers stretching up toward his bending down, the pat pat pat of their touching heads. No height +was beyond her yearning neck, stretched like a finger toward his, risking everything outside the bowl just to touch his +face. The gravity of their shields, clashing, countered and mocked the floating heads touching. +Beloved dropped the folds of her skirt. It spread around her. The hem darkened in the water. +Chapter 10 +OUT OF SIGHT of Mister's sight, away, praise His name, from the smiling boss of roosters, Paul D began to tremble. Not +all at once and not so anyone could tell. When he turned his head, aiming for a last look at Brother, turned it as much as +the rope that connected his neck to the axle of a buckboard allowed, and, later on, when they fastened the iron around +his ankles and clamped the wrists as well, there was no outward sign of trembling at all. Nor eighteen days after that +when he saw the ditches; the one thousand feet of earth--five feet deep, five feet wide, into which wooden boxes had +been fitted. A door of bars that you could lift on hinges like a cage opened into three walls and a roof of scrap lumber +and red dirt. Two feet of it over his head; three feet of open trench in front of him with anything that crawled or scurried +welcome to share that grave calling itself quarters. And there were forty-five more. He was sent there after trying to kill +Brandywine, the man schoolteacher sold him to. +Brandywine was leading him, in a coffle with ten others, through Kentucky into Virginia. He didn't know exactly what +prompted him to try--other than Halle, Sixo, Paul A, Paul F and Mister. But the trembling was fixed by the time he knew +it was there. +Still no one else knew it, because it began inside. A flutter of a kind, in the chest, then the shoulder blades. It felt like +rippling-- gentle at first and then wild. As though the further south they led him the more his blood, frozen like an ice +pond for twenty years, began thawing, breaking into pieces that, once melted, had no choice but to swirl and eddy. +Sometimes it was in his leg. Then again it moved to the base of his spine. By the time they unhitched him from the +wagon and he saw nothing but dogs and two shacks in a world of sizzling grass, the roiling blood was shaking him to and +fro. But no one could tell. The wrists he held out for the bracelets that evening were steady as were the legs he stood +on when chains were attached to the leg irons. But when they shoved him into the box and dropped the cage door +down, his hands quit taking instruction. On their own, they traveled. Nothing could stop them or get their attention. +They would not hold his penis to urinate or a spoon to scoop lumps of lima beans into his mouth. The miracle of their +63 +obedience came with the hammer at dawn. +All forty-six men woke to rifle shot. All forty-six. Three whitemen walked along the trench unlocking the doors one by +one. No one stepped through. When the last lock was opened, the three returned and lifted the bars, one by one. And +one by one the blackmen emerged--promptly and without the poke of a rifle butt if they had been there more than a +day; promptly with the butt if, like Paul D, +they had just arrived. When all forty-six were standing in a line in the trench, another rifle shot signaled the climb out +and up to the ground above, where one thousand feet of the best hand-forged chain in Georgia stretched. Each man +bent and waited. The first man picked up the end and threaded it through the loop on his leg iron. He stood up then, +and, shuffling a little, brought the chain tip to the next prisoner, who did likewise. As the chain was passed on and each +man stood in the other's place, the line of men turned around, facing the boxes they had come out of. Not one spoke to +the other. At least not with words. The eyes had to tell what there was to tell: "Help me this mornin; 's bad"; "I'm a make +it"; "New man"; "Steady now steady." +Chain-up completed, they knelt down. The dew, more likely than not, was mist by then. Heavy sometimes and if the +dogs were quiet and just breathing you could hear doves. Kneeling in the mist they waited for the whim of a guard, or +two, or three. Or maybe all of them wanted it. Wanted it from one prisoner in particular or none-- or all. +"Breakfast? Want some breakfast, nigger?" +"Yes, sir." +"Hungry, nigger?" +"Yes, sir." +"Here you go." +Occasionally a kneeling man chose gunshot in his head as the price, maybe, of taking a bit of foreskin with him to Jesus. +Paul D did not know that then. He was looking at his palsied hands, smelling the guard, listening to his soft grunts so like +the doves', as he stood before the man kneeling in mist on his right. Convinced he was next, Paul D retched--vomiting up +nothing at all. An observing guard smashed his shoulder with the rifle and the engaged one decided to skip the new man +for the time being lest his pants and shoes got soiled by nigger puke. +"Hiiii" +It was the first sound, other than "Yes, sir" a blackman was allowed to speak each morning, and the lead chain gave +it everything he had. "Hiiii!" It was never clear to Paul D how he knew when to shout that mercy. They called him Hi +Man and Paul D thought at first the guards told him when to give the signal that let the prisoners rise up off their knees +and dance two-step to the music of hand forged iron. Later he doubted it. He believed to this day that the "Hiiii!" at +dawn and the "Hoooo!" when evening came were the responsibility Hi Man assumed because he alone knew what was +enough, what was too much, when things were over, when the time had come. +They chain-danced over the fields, through the woods to a trail that ended in the astonishing beauty of feldspar, and +there Paul D's hands disobeyed the furious rippling of his blood and paid attention. +With a sledge hammer in his hands and Hi Man's lead, the men got through. They sang it out and beat it up, garbling the +words so they could not be understood; tricking the words so their syllables yielded up other meanings. They sang the +women they knew; the children they had been; the animals they had tamed themselves or seen others tame. They sang +of bosses and masters and misses; of mules and dogs and the shamelessness of life. They sang lovingly of graveyards and +sisters long gone. Of pork in the woods; meal in the pan; fish on the line; cane, rain and rocking chairs. +And they beat. The women for having known them and no more, no more; the children for having been them but never +again. They killed a boss so often and so completely they had to bring him back to life to pulp him one more time. +Tasting hot mealcake among pine trees, they beat it away. Singing love songs to Mr. Death, they smashed his head. +64 +More than the rest, they killed the flirt whom folks called Life for leading them on. Making them think the next sunrise +would be worth it; that another stroke of time would do it at last. Only when she was dead would they be safe. The +successful ones--the ones who had been there enough years to have maimed, mutilated, maybe even buried her--kept +watch over the others who were still in her cock-teasing hug, caring and looking forward, remembering and looking +back. They were the ones whose eyes said, "Help me, 's bad"; or "Look out," meaning this might be the day I bay or +eat my own mess or run, and it was this last that had to be guarded against, for if one pitched and ran--all, all forty-six, +would be yanked by the chain that bound them and no telling who or how many would be killed. A man could risk his +own life, but not his brother's. So the eyes said, "Steady now," and "Hang by me." +Eighty-six days and done. Life was dead. Paul D beat her butt all day every day till there was not a whimper in her. +Eighty-six days and his hands were still, waiting serenely each rat-rustling night for "Hiiii!" at dawn and the eager clench +on the hammer's shaft. Life rolled over dead. Or so he thought. +It rained. +Snakes came down from short-leaf pine and hemlock. +It rained. +Cypress, yellow poplar, ash and palmetto drooped under five days of rain without wind. By the eighth day the doves +were nowhere in sight, by the ninth even the salamanders were gone. Dogs laid their ears down and stared over their +paws. The men could not work. +Chain-up was slow, breakfast abandoned, the two-step became a slow drag over soupy grass and unreliable earth. +It was decided to lock everybody down in the boxes till it either stopped or lightened up so a whiteman could walk, +damnit, without flooding his gun and the dogs could quit shivering. The chain was threaded through forty-six loops of +the best hand-forged iron in Georgia. +It rained. +In the boxes the men heard the water rise in the trench and looked out for cottonmouths. They squatted in muddy +water, slept above it, peed in it. Paul D thought he was screaming; his mouth was open and there was this loud throat- +splitting sound--but it may have been somebody else. Then he thought he was crying. Something was running down his +cheeks. He lifted his hands to wipe away the tears and saw dark brown slime. Above him rivulets of mud slid through the +boards of the roof. When it come down, he thought, gonna crush me like a tick bug. It happened so quick he had no time +to ponder. +Somebody yanked the chain--once--hard enough to cross his legs and throw him into the mud. He never figured out how +he knew-- how anybody did--but he did know--he did--and he took both hands and yanked the length of chain at his left, +so the next man would know too. The water was above his ankles, flowing over the wooden plank he slept on. And then +it wasn't water anymore. The ditch was caving in and mud oozed under and through the bars. +They waited--each and every one of the forty-six. Not screaming, although some of them must have fought like the devil +not to. The mud was up to his thighs and he held on to the bars. Then it came-- another yank--from the left this time and +less forceful than the first because of the mud it passed through. +It started like the chain-up but the difference was the power of the chain. One by one, from Hi Man back on down the +line, they dove. Down through the mud under the bars, blind, groping. Some had sense enough to wrap their heads in +their shirts, cover their faces with rags, put on their shoes. Others just plunged, simply ducked down and pushed out, +fighting up, reaching for air. Some lost direction and their neighbors, feeling the confused pull of the chain, snatched +them around. For one lost, all lost. The chain that held them would save all or none, and Hi Man was the Delivery. They +talked through that chain like Sam Morse and, Great God, they all came up. Like the unshriven dead, zombies on the +loose, holding the chains in their hands, they trusted the rain and the dark, yes, but mostly Hi Man and each other. +65 +Past the sheds where the dogs lay in deep depression; past the two guard shacks, past the stable of sleeping horses, past +the hens whose bills were bolted into their feathers, they waded. The moon did not help because it wasn't there. The +field was a marsh, the track a trough. All Georgia seemed to be sliding, melting away. Moss wiped their faces as they +fought the live-oak branches that blocked their way. Georgia took up all of Alabama and Mississippi then, so there was +no state line to cross and it wouldn't have mattered anyway. If they had known about it, they would have avoided not +only Alfred and the beautiful feldspar, but Savannah too and headed for the Sea Islands on the river that slid down from +the Blue Ridge Mountains. +But they didn't know. +Daylight came and they huddled in a copse of redbud trees. Night came and they scrambled up to higher ground, +praying the rain would go on shielding them and keeping folks at home. They were hoping for a shack, solitary, some +distance from its big house, where a slave might be making rope or heating potatoes at the grate. What they found was +a camp of sick Cherokee for whom a rose was named. +Decimated but stubborn, they were among those who chose a fugitive life rather than Oklahoma. The illness that swept +them now was reminiscent of the one that had killed half their number two hundred years earlier. In between that +calamity and this, they had visited George III in London, published a newspaper, made baskets, led Oglethorpe through +forests, helped Andrew Jackson fight Creek, cooked maize, drawn up a constitution, petitioned the King of Spain, been +experimented on by Dartmouth, established asylums, wrote their language, resisted settlers, shot bear and translated +scripture. +All to no avail. The forced move to the Arkansas River, insisted upon by the same president they fought for against the +Creek, destroyed another quarter of their already shattered number. +That was it, they thought, and removed themselves from those Cherokee who signed the treaty, in order to retire into +the forest and await the end of the world. The disease they suffered now was a mere inconvenience compared to the +devastation they remembered. +Still, they protected each other as best they could. The healthy were sent some miles away; the sick stayed behind with +the dead--to survive or join them. +The prisoners from Alfred, Georgia, sat down in semicircle near the encampment. No one came and still they sat. Hours +passed and the rain turned soft. Finally a woman stuck her head out of her house. Night came and nothing happened. At +dawn two men with barnacles covering their beautiful skin approached them. No one spoke for a moment, then Hi Man +raised his hand. The Cherokee saw the chains and went away. When they returned each carried a handful of small axes. +Two children followed with a pot of mush cooling and thinning in the rain. +Buffalo men, they called them, and talked slowly to the prisoners scooping mush and tapping away at their chains. +Nobody from a box in Alfred, Georgia, cared about the illness the Cherokee warned them about, so they stayed, all +forty-six, resting, planning their next move. Paul D had no idea of what to do and knew less than anybody, it seemed. +He heard his co-convicts talk knowledgeably of rivers and states, towns and territories. Heard Cherokee men describe +the beginning of the world and its end. Listened to tales of other Buffalo men they knew--three of whom were in the +healthy camp a few miles away. Hi Man wanted to join them; others wanted to join him. Some wanted to leave; some +to stay on. Weeks later Paul D was the only Buffalo man left--without a plan. All he could think of was tracking dogs, +although Hi Man said the rain they left in gave that no chance of success. Alone, the last man with buffalo hair among +the ailing Cherokee, Paul D finally woke up and, admitting his ignorance, asked how he might get North. Free North. +Magical North. Welcoming, benevolent North. The Cherokee smiled and looked around. The flood rains of a month ago +had turned everything to steam and blossoms. +"That way," he said, pointing. "Follow the tree flowers," he said. +"Only the tree flowers. As they go, you go. You will be where you want to be when they are gone." +So he raced from dogwood to blossoming peach. When they thinned out he headed for the cherry blossoms, then +66 +magnolia, chinaberry, pecan, walnut and prickly pear. At last he reached a field of apple trees whose flowers were just +becoming tiny knots of fruit. +Spring sauntered north, but he had to run like hell to keep it as his traveling companion. From February to July he was +on the lookout for blossoms. When he lost them, and found himself without so much as a petal to guide him, he paused, +climbed a tree on a hillock and scanned the horizon for a flash of pink or white in the leaf world that surrounded him. +He did not touch them or stop to smell. He merely followed in their wake, a dark ragged figure guided by the blossoming +plums. +The apple field turned out to be Delaware where the weaver lady lived. She snapped him up as soon as he finished the +sausage she fed him and he crawled into her bed crying. She passed him off as her nephew from Syracuse simply by +calling him that nephew's name. +Eighteen months and he was looking out again for blossoms only this time he did the looking on a dray. +It was some time before he could put Alfred, Georgia, Sixo, schoolteacher, Halle, his brothers, Sethe, Mister, the taste +of iron, the sight of butter, the smell of hickory, notebook paper, one by one, into the tobacco tin lodged in his chest. By +the time he got to 124 nothing in this world could pry it open. +Chapter 11 +SHE MOVED HIM. +Not the way he had beat off the baby's ghost--all bang and shriek with windows smashed and icily iars rolled in a heap. +But she moved him nonetheless, and Paul D didn't know how to stop it because it looked like he was moving himself. +Imperceptibly, downright reasonably, he was moving out of 124. +The beginning was so simple. One day, after supper, he sat in the rocker by the stove, bone-tired, river-whipped, and fell +asleep. +He woke to the footsteps of Sethe coming down the white stairs to make breakfast. +"I thought you went out somewhere," she said. +Paul D moaned, surprised to find himself exactly where he was the last time he looked. +"Don't tell me I slept in this chair the whole night." +Sethe laughed. "Me? I won't say a word to you." +"Why didn't you rouse me?" +"I did. Called you two or three times. I gave it up around midnight and then I thought you went out somewhere." +He stood, expecting his back to fight it. But it didn't. Not a creak or a stiff joint anywhere. In fact he felt refreshed. Some +things are like that, he thought, good-sleep places. The base of certain trees here and there; a wharf, a bench, a rowboat +once, a haystack usually, not always bed, and here, now, a rocking chair, which was strange because in his experience +furniture was the worst place for a good-sleep sleep. +The next evening he did it again and then again. He was accustomed to sex with Sethe just about every day, and to +avoid the confusion Beloved's shining caused him he still made it his business to take her back upstairs in the morning, +or lie down with her after supper. But he found a way and a reason to spend the longest part of the night in the rocker. +He told himself it must be his back-- something supportive it needed for a weakness left over from sleeping in a box in +Georgia. +It went on that way and might have stayed that way but one evening, after supper, after Sethe, he came downstairs, +67 +sat in the rocker and didn't want to be there. He stood up and realized he didn't want to go upstairs either. Irritable +and longing for rest, he opened the door to Baby Suggs' room and dropped off to sleep on the bed the old lady died in. +That settled it--so it seemed. It became his room and Sethe didn't object--her bed made for two had been occupied by +one for eighteen years before Paul D came to call. And maybe it was better this way, with young girls in the house and +him not being her true-to-life husband. In any case, since there was no reduction in his before-breakfast or after-supper +appetites, he never heard her complain. +It went on that way and might have stayed that way, except one evening, after supper, after Sethe, he came downstairs +and lay on Baby Suggs' bed and didn't want to be there. +He believed he was having house-fits, the glassy anger men sometimes feel when a woman's house begins to bind +them, when they want to yell and break something or at least run off. He knew all about that--felt it lots of times--in the +Delaware weaver's house, for instance. But always he associated the house-fit with the woman in it. This nervousness +had nothing to do with the woman, whom he loved a little bit more every day: her hands among vegetables, her mouth +when she licked a thread end before guiding it through a needle or bit it in two when the seam was done, the blood in +her eye when she defended her girls (and Beloved was hers now) or any coloredwoman from a slur. Also in this house- +fit there was no anger, no suffocation, no yearning to be elsewhere. He just could not, would not, sleep upstairs or in the +rocker or, now, in Baby Suggs' bed. So he went to the storeroom. +It went on that way and might have stayed that way except one evening, after supper, after Sethe, he lay on a pallet in +the storeroom and didn't want to be there. Then it was the cold house and it was out there, separated from the main +part of 124, curled on top of two croaker sacks full of sweet potatoes, staring at the sides of a lard can, that he realized +the moving was involuntary. He wasn't being nervous; he was being prevented. +So he waited. Visited Sethe in the morning; slept in the cold room at night and waited. +She came, and he wanted to knock her down. +In Ohio seasons are theatrical. Each one enters like a prima donna, convinced its performance is the reason the world +has people in it. +When Paul D had been forced out of 124 into a shed behind it, summer had been hooted offstage and autumn with its +bottles of blood and gold had everybody's attention. Even at night, when there should have been a restful intermission, +there was none because the voices of a dying landscape were insistent and loud. Paul D packed newspaper under +himself and over, to give his thin blanket some help. But the chilly night was not on his mind. When he heard the door +open behind him he refused to turn and look. +"What you want in here? What you want?" He should have been able to hear her breathing. +"I want you to touch me on the inside part and call me my name." +Paul D never worried about his little tobacco tin anymore. It was rusted shut. So, while she hoisted her skirts and turned +her head over her shoulder the way the turtles had, he just looked at the lard can, silvery in moonlight, and spoke +quietly. +"When good people take you in and treat you good, you ought to try to be good back. You don't... Sethe loves you. +Much as her own daughter. You know that." +Beloved dropped her skirts as he spoke and looked at him with empty eyes. She took a step he could not hear and stood +close behind him. +"She don't love me like I love her. I don't love nobody but her." +"Then what you come in here for?" +"I want you to touch me on the inside part." +68 +"Go on back in that house and get to bed." +"You have to touch me. On the inside part. And you have to call me my name." +As long as his eyes were locked on the silver of the lard can he was safe. If he trembled like Lot's wife and felt some +womanish need to see the nature of the sin behind him; feel a sympathy, perhaps, for the cursing cursed, or want to +hold it in his arms out of respect for the connection between them, he too would be lost. +"Call me my name." +"No." +"Please call it. I'll go if you call it." +"Beloved." He said it, but she did not go. She moved closer with a footfall he didn't hear and he didn't hear the whisper +that the flakes of rust made either as they fell away from the seams of his tobacco tin. So when the lid gave he didn't +know it. What he knew was that when he reached the inside part he was saying, "Red heart. Red heart," over and over +again. Softly and then so loud it woke Denver, then Paul D himself. "Red heart. Red heart. Red heart." +Chapter 12 +TO GO BACK to the original hunger was impossible. Luckily for Denver, looking was food enough to last. But to be looked +at in turn was beyond appetite; it was breaking through her own skin to a place where hunger hadn't been discovered. +It didn't have to happen often, because Beloved seldom looked right at her, or when she did, Denver could tell that +her own face was just the place those eyes stopped while the mind behind it walked on. But sometimes--at moments +Denver could neither anticipate nor create--Beloved rested cheek on knuckles and looked at Denver with attention. +It was lovely. Not to be stared at, not seen, but being pulled into view by the interested, uncritical eyes of the other. +Having her hair examined as a part of her self, not as material or a style. Having her lips, nose, chin caressed as they +might be if she were a moss rose a gardener paused to admire. Denver's skin dissolved under that gaze and became soft +and bright like the lisle dress that had its arm around her mother's waist. She floated near but outside her own body, +feeling vague and intense at the same time. Needing nothing. Being what there was. +At such times it seemed to be Beloved who needed somethingm wanted something. Deep down in her wide black eyes, +back behind the expressionlessness, was a palm held out for a penny which Denver would gladly give her, if only she +knew how or knew enough about her, a knowledge not to be had by the answers to the questions Sethe occasionally put +to her: '"You disremember everything? I never knew my mother neither, but I saw her a couple of times. Did you never +see yours? What kind of whites was they? You don't remember none?" +Beloved, scratching the back of her hand, would say she remembered a woman who was hers, and she remembered +being snatched away from her. Other than that, the clearest memory she had, the one she repeated, was the bridge-- +standing on the bridge looking down. And she knew one whiteman. +Sethe found that remarkable and more evidence to support her conclusions, which she confided to Denver. +"Where'd you get the dress, them shoes?" +Beloved said she took them. +"Who from?" +Silence and a faster scratching of her hand. She didn't know; she saw them and just took them. +"Uh huh," said Sethe, and told Denver that she believed Beloved had been locked up by some whiteman for his own +purposes, and never let out the door. That she must have escaped to a bridge or someplace and rinsed the rest out of +her mind. Something like that had happened to Ella except it was two men---a father and son--- and Ella remembered +69 +every bit of it. For more than a year, they kept her locked in a room for themselves. +"You couldn't think up," Ella had said, "what them two done to me." +Sethe thought it explained Beloved's behavior around Paul D, whom she hated so. +Denver neither believed nor commented on Sethe's speculations, and she lowered her eyes and never said a word about +the cold house. +She was certain that Beloved was the white dress that had knelt with her mother in the keeping room, the true-to-life +presence of the baby that had kept her company most of her life. And to be looked at by her, however briefly, kept her +grateful for the rest of the time when she was merely the looker. Besides, she had her own set of questions which had +nothing to do with the past. The present alone interested Denver, but she was careful to appear uninquisitive about +the things she was dying to ask Beloved, for if she pressed too hard, she might lose the penny that the held-out palm +wanted, and lose, therefore, the place beyond appetite. It was better to feast, to have permission to be the looker, +because the old hunger--the before-Beloved hunger that drove her into boxwood and cologne for just a taste of a life, to +feel it bumpy and not flat--was out of the question. Looking kept it at bay. +So she did not ask Beloved how she knew about the earrings, the night walks to the cold house or the tip of the thing +she saw when Beloved lay down or came undone in her sleep. The look, when it came, came when Denver had been +careful, had explained things, or participated in things, or told stories to keep her occupied when Sethe was at the +restaurant. No given chore was enough to put out the licking fire that seemed always to burn in her. Not when they +wrung out sheets so tight the rinse water ran back up their arms. Not when they shoveled snow from the path to the +outhouse. Or broke three inches of ice from the rain barrel; scoured and boiled last summer's canning jars, packed mud +in the cracks of the hen house and warmed the chicks with their skirts. All the while Denver was obliged to talk about +what they were doing--the how and why of it. About people Denver knew once or had seen, giving them more life than +life had: the sweet-smelling whitewoman who brought her oranges and cologne and good wool skirts; Lady Jones who +taught them songs to spell and count by; a beautiful boy as smart as she was with a birthmark like a nickel on his cheek. +A white preacher who prayed for their souls while Sethe peeled potatoes and Grandma Baby sucked air. And she told +her about Howard and Buglar: the parts of the bed that belonged to each (the top reserved for herself); that before she +transferred to Baby Suggs' bed she never knew them to sleep without holding hands. She described them to Beloved +slowly, to keep her attention, dwelling on their habits, the games they taught her and not the fright that drove them +increasingly out of the house---anywhere--and finally far away. +This day they are outside. It's cold and the snow is hard as packed dirt. Denver has finished singing the counting song +Lady Jones taught her students. Beloved is holding her arms steady while Denver unclasps frozen underwear and towels +from the line. One by one she lays them in Beloved's arms until the pile, like a huge deck of cards, reaches her chin. The +rest, aprons and brown stockings, Denver carries herself. Made giddy by the cold, they return to the house. The clothes +will thaw slowly to a dampness perfect for the pressing iron, which will make them smell like hot rain. Dancing around +the room with Sethe's apron, Beloved wants to know if there are flowers in the dark. Denver adds sticks to the stovefire +and assures her there are. Twirling, her face framed by the neckband, her waist in the apron strings' embrace, she says +she is thirsty. +Denver suggests warming up some cider, while her mind races to something she might do or say to interest and +entertain the dancer. +Denver is a strategist now and has to keep Beloved by her side from the minute Sethe leaves for work until the hour +of her return when Beloved begins to hover at the window, then work her way out the door, down the steps and near +the road. Plotting has changed Denver markedly. Where she was once indolent, resentful of every task, now she is +spry, executing, even extending the assignments Sethe leaves for them. All to be able to say "We got to" and "Ma'am +said for us to." Otherwise Beloved gets private and dreamy, or quiet and sullen, and Denver's chances of being looked +at by her go down to nothing. She has no control over the evenings. When her mother is anywhere around, Beloved +has eyes only for Sethe. At night, in bed, anything might happen. She might want to be told a story in the dark when +Denver can't see her. Or she might get up and go into the cold house where Paul D has begun to sleep. Or she might cry, +70 +silently. She might even sleep like a brick, her breath sugary from fingerfuls of molasses or sand-cookie crumbs. Denver +will turn toward her then, and if Beloved faces her, she will inhale deeply the sweet air from her mouth. If not, she will +have to lean up and over her, every once in a while, to catch a sniff. For anything is better than the original hunger--the +time when, after a year of the wonderful little i, sentences rolling out like pie dough and the company of other children, +there was no sound coming through. Anything is better than the silence when she answered to hands gesturing and +was indifferent to the movement of lips. When she saw every little thing and colors leaped smoldering into view. She +will forgo the most violent of sunsets, stars as fat as dinner plates and all the blood of autumn and settle for the palest +yellow if it comes from her Beloved. +The cider jug is heavy, but it always is, even when empty. Denver can carry it easily, yet she asks Beloved to help her. It is +in the cold house next to the molasses and six pounds of cheddar hard as bone. +A pallet is in the middle of the floor covered with newspaper and a blanket at the foot. It has been slept on for almost a +month, even though snow has come and, with it, serious winter. +It is noon, quite light outside; inside it is not. A few cuts of sun break through the roof and walls but once there they are +too weak to shift for themselves. Darkness is stronger and swallows them like minnows. +The door bangs shut. Denver can't tell where Beloved is standing. +"Where are you?" she whispers in a laughing sort of way. +"Here," says Beloved. +"Where?" +"Come find me," says Beloved. +Denver stretches out her right arm and takes a step or two. She trips and falls down onto the pallet. Newspaper crackles +under her weight. She laughs again. "Oh, shoot. Beloved?" +No one answers. Denver waves her arms and squinches her eyes to separate the shadows of potato sacks, a lard can and +a side of smoked pork from the one that might be human. +"Stop fooling," she says and looks up toward the light to check and make sure this is still the cold house and not +something going on in her sleep. The minnows of light still swim there; they can't make it down to where she is. +"You the one thirsty. You want cider or don't you?" Denver's voice is mildly accusatory. Mildly. She doesn't want to +offend and she doesn't want to betray the panic that is creeping over her like hairs. There is no sight or sound of +Beloved. Denver struggles to her feet amid the crackling newspaper. Holding her palm out, she moves slowly toward +the door. There is no latch or knob--just a loop of wire to catch a nail. She pushes the door open. Cold sunlight displaces +the dark. The room is just as it was when they entered-except Beloved is not there. There is no point in looking further, +for everything in the place can be seen at first sight. Denver looks anyway because the loss is ungovernable. She steps +back into the shed, allowing the door to close quickly behind her. Darkness or not, she moves rapidly around, reaching, +touching cobwebs, cheese, slanting shelves, the pallet interfering with each step. If she stumbles, she is not aware of +it because she does not know where her body stops, which part of her is an arm, a foot or a knee. She feels like an ice +cake torn away from the solid surface of the stream, floating on darkness, thick and crashing against the edges of things +around it. +Breakable, meltable and cold. +It is hard to breathe and even if there were light she wouldn't be able to see anything because she is crying. Just as she +thought it might happen, it has. Easy as walking into a room. A magical appearance on a stump, the face wiped out by +sunlight, and a magical disappearance in a shed, eaten alive by the dark. +"Don't," she is saying between tough swallows. "Don't. Don't go back." +71 +This is worse than when Paul D came to 124 and she cried helplessly into the stove. This is worse. Then it was for herself. +Now she is crying because she has no self. Death is a skipped meal compared to this. She can feel her thickness thinning, +dissolving into nothing. She grabs the hair at her temples to get enough to uproot it and halt the melting for a while. +Teeth clamped shut, Denver brakes her sobs. She doesn't move to open the door because there is no world out there. +She decides to stay in +the cold house and let the dark swallow her like the minnows of light above. She won't put up with another leaving, +another trick. Waking up to find one brother then another not at the bottom of the bed, his foot jabbing her spine. +Sitting at the table eating turnips and saving the liquor for her grandmother to drink; her mother's hand on the keeping- +room door and her voice saying, "Baby Suggs is gone, Denver." And when she got around to worrying about what +would be the case if Sethe died or Paul D took her away, a dream-come-true comes true just to leave her on a pile of +newspaper in the dark. +No footfall announces her, but there she is, standing where before there was nobody when Denver looked. And smiling. +Denver grabs the hem of Beloved's skirt. "I thought you left me. +I thought you went back." +Beloved smiles, "I don't want that place. This the place I am." +She sits down on the pallet and, laughing, lies back looking at the cracklights above. +Surreptitiously, Denver pinches a piece of Beloved's skirt between her fingers and holds on. A good thing she does +because suddenly Beloved sits up. +"What is it?" asks Denver. +"Look," she points to the sunlit cracks. +"What? I don't see nothing." Denver follows the pointing finger. +Beloved drops her hand. "I'm like this." +Denver watches as Beloved bends over, curls up and rocks. Her eyes go to no place; her moaning is so small Denver can +hardly hear it. +"You all right? Beloved?" +Beloved focuses her eyes. "Over there. Her face." +Denver looks where Beloved's eyes go; there is nothing but darkness there. +"Whose face? Who is it?" +"Me. It's me." +She is smiling again. +Chapter 13 +THE LAST of the Sweet Home men, so named and called by one who would know, believed it. The other four believed it +too, once, but they were long gone. The sold one never returned, the lost one never found. One, he knew, was dead for +sure; one he hoped was, because butter and clabber was no life or reason to live it. He grew up thinking that, of all the +Blacks in Kentucky, only the five of them were men. Allowed, encouraged to correct Garner, even defy him. +72 +To invent ways of doing things; to see what was needed and attack it without permission. To buy a mother, choose a +horse or a wife, handle guns, even learn reading if they wanted to--but they didn't want to since nothing important to +them could be put down on paper. +Was that it? Is that where the manhood lay? In the naming done by a whiteman who was supposed to know? Who gave +them the privilege not of working but of deciding how to? No. In their relationship with Garner was true metal: they +were believed and trusted, but most of all they were listened to. +He thought what they said had merit, and what they felt was serious. Deferring to his slaves' opinions did not deprive +him of authority or power. It was schoolteacher who taught them otherwise. +A truth that waved like a scarecrow in rye: they were only Sweet Home men at Sweet Home. One step off that ground +and they were trespassers among the human race. Watchdogs without teeth; steer bulls without horns; gelded +workhorses whose neigh and whinny could not be translated into a language responsible humans spoke. +His strength had lain in knowing that schoolteacher was wrong. Now he wondered. There was Alfred, Georgia, there +was Delaware, there was Sixo and still he wondered. If schoolteacher was right it explained how he had come to be a +rag doll--picked up and put back down anywhere any time by a girl young enough to be his daughter. Fucking her when +he was convinced he didn't want to. Whenever she turned her behind up, the calves of his youth (was that it?) cracked +his resolve. But it was more than appetite that humiliated him and made him wonder if schoolteacher was right. It was +being moved, placed where she wanted him, and there was nothing he was able to do about it. For his life he could not +walk up the glistening white stairs in the evening; for his life he could not stay in the kitchen, in the keeping room, in the +storeroom at night. And he tried. Held his breath the way he had when he ducked into the mud; steeled his heart the +way he had when the trembling began. But it was worse than that, worse than the blood eddy he had controlled with +a sledge hammer. When he stood up from the supper table at 124 and turned toward the stairs, nausea was first, then +repulsion. He, he. He who had eaten raw meat barely dead, who under plum trees bursting with blossoms had crunched +through a dove's breast before its heart stopped beating. Because he was a man and a man could do what he would: be +still for six hours in a dry well while night dropped; fight raccoon with his hands and win; watch another man, whom he +loved better than his brothers, roast without a tear just so the roasters would know what a man was like. And it was he, +that man, who had walked from Georgia to Delaware, who could not go or stay put where he wanted to in 124--shame. +Paul D could not command his feet, but he thought he could still talk and he made up his mind to break out that way. +He would tell Sethe about the last three weeks: catch her alone coming from work at the beer garden she called a +restaurant and tell it all. +He waited for her. The winter afternoon looked like dusk as he stood in the alley behind Sawyer's Restaurant. +Rehearsing, imagining her face and letting the words flock in his head like kids before lining up to follow the leader. +"Well, ah, this is not the, a man can't, see, but aw listen here, it ain't that, it really ain't, Ole Garner, what I mean is, it +ain't a weak- ness, the kind of weakness I can fight 'cause 'cause something is happening to me, that girl is doing it, I +know you think I never liked her nohow, but she is doing it to me. Fixing me. Sethe, she's fixed me and I can't break it." +What? A grown man fixed by a girl? But what if the girl was not a girl, but something in disguise? A lowdown something +that looked like a sweet young girl and fucking her or not was not the point, it was not being able to stay or go where +he wished in 124, and the danger was in losing Sethe because he was not man enough to break out, so he needed her, +Sethe, to help him, to know about it, and it shamed him to have to ask the woman he wanted to protect to help him do +it, God damn it to hell. +Paul D blew warm breath into the hollow of his cupped hands. +The wind raced down the alley so fast it sleeked the fur of four kitchen dogs waiting for scraps. He looked at the dogs. +The dogs looked at him. +Finally the back door opened and Sethe stepped through holding a scrap pan in the crook of her arm. When she saw +him, she said Oh, and her smile was both pleasure and surprise. +73 +Paul D believed he smiled back but his face was so cold he wasn't sure. +"Man, you make me feel like a girl, coming by to pick me up after work. Nobody ever did that before. You better watch +out, I might start looking forward to it." She tossed the largest bones into the dirt rapidly so the dogs would know there +was enough and not fight each other. Then she dumped the skins of some things, heads of other things and the insides +of still more things--what the restaurant could not use and she would not--in a smoking pile near the animals' feet. +"Got to rinse this out," she said, "and then I'll be right with you." +He nodded as she returned to the kitchen. +The dogs ate without sound and Paul D thought they at least got what they came for, and if she had enough for them-- +The cloth on her head was brown wool and she edged it down over her hairline against the wind. +"You get off early or what?" +"I took off early." +"Anything the matter?" +"In a way of speaking," he said and wiped his lips. +"Not cut back?" +"No, no. They got plenty work. I just--" +"Hm?" +"Sethe, you won't like what I'm 'bout to say." +She stopped then and turned her face toward him and the hateful wind. Another woman would have squinted or at +least teared if the wind whipped her face as it did Sethe's. Another woman might have shot him a look of apprehension, +pleading, anger even, because what he said sure sounded like part one of Goodbye, I'm gone. +Sethe looked at him steadily, calmly, already ready to accept, release or excuse an in-need-or-trouble man. Agreeing, +saying okay, all right, in advance, because she didn't believe any of them--over the long haul--could measure up. And +whatever the reason, it was all right. No fault. Nobody's fault. +He knew what she was thinking and even though she was wrong-- he was not leaving her, wouldn't ever--the thing he +had in mind to tell her was going to be worse. So, when he saw the diminished expectation in her eyes, the melancholy +without blame, he could not say it. He could not say to this woman who did not squint in the wind, "I am not a man." +"Well, say it, Paul D, whether I like it or not." +Since he could not say what he planned to, he said something he didn't know was on his mind. "I want you pregnant, +Sethe. Would you do that for me?" +Now she was laughing and so was he. +"You came by here to ask me that? You are one crazy-headed man. You right; I don't like it. Don't you think I'm too old +to start that all over again?" She slipped her fingers in his hand for all the world like the hand-holding shadows on the +side of the road. +"Think about it," he said. And suddenly it was a solution: a way to hold on to her, document his manhood and break out +of the girl's spell--all in one. He put the tips of Sethe's fingers on his cheek. +Laughing, she pulled them away lest somebody passing the alley see them misbehaving in public, in daylight, in the +74 +wind. +Still, he'd gotten a little more time, bought it, in fact, and hoped the price wouldn't wreck him. Like paying for an +afternoon in the coin of life to come. +They left off playing, let go hands and hunched forward as they left the alley and entered the street. The wind was +quieter there but the dried-out cold it left behind kept pedestrians fast-moving, stiff inside their coats. No men leaned +against door frames or storefront windows. The wheels of wagons delivering feed or wood screeched as though +they hurt. Hitched horses in front of the saloons shivered and closed their eyes. Four women, walking two abreast, +approached, their shoes loud on the wooden walkway. Paul D touched Sethe's elbow to guide her as they stepped from +the slats to the dirt to let the women pass. +Half an hour later, when they reached the city's edge, Sethe and Paul D resumed catching and snatching each other's +fingers, stealing quick pats on the behind. Joyfully embarrassed to be that grownup and that young at the same time. +Resolve, he thought. That was all it took, and no motherless gal was going to break it up. No lazy, stray pup of a woman +could turn him around, make him doubt himself, wonder, plead or confess. +Convinced of it, that he could do it, he threw his arm around Sethe's shoulders and squeezed. She let her head touch his +chest, and since the moment was valuable to both of them, they stopped and stood that way--not breathing, not even +caring if a passerby passed them by. The winter light was low. Sethe closed her eyes. Paul D looked at the black trees +lining the roadside, their defending arms raised against attack. Softly, suddenly, it began to snow, like a present come +down from the sky. Sethe opened her eyes to it and said, "Mercy." +And it seemed to Paul D that it was--a little mercy--something given to them on purpose to mark what they were feeling +so they would remember it later on when they needed to. +Down came the dry flakes, fat enough and heavy enough to crash like nickels on stone. It always surprised him, how +quiet it was. Not like rain, but like a secret. +"Run!" he said. +"You run," said Sethe. "I been on my feet all day." +"Where I been? Sitting down?" and he pulled her along. +"Stop! Stop!" she said. "I don't have the legs for this." +"Then give em to me," he said and before she knew it he had backed into her, hoisted her on his back and was running +down the road past brown fields turning white. +Breathless at last, he stopped and she slid back down on her own two feet, weak from laughter. +"You need some babies, somebody to play with in the snow." +Sethe secured her headcloth. +Paul D smiled and warmed his hands with his breath. "I sure would like to give it a try. Need a willing partner though." +"I'll say," she answered. "Very, very willing." +It was nearly four o'clock now and 124 was half a mile ahead. +Floating toward them, barely visible in the drifting snow, was a figure, and although it was the same figure that had been +meeting Sethe for four months, so complete was the attention she and Paul D were paying to themselves they both felt +a jolt when they saw her close in. +75 +Beloved did not look at Paul D; her scrutiny was for Sethe. She had no coat, no wrap, nothing on her head, but she held +in her hand a long shawl. Stretching out her arms she tried to circle it around Sethe. +"Crazy girl," said Sethe. "You the one out here with nothing on." And stepping away and in front of Paul D, Sethe took +the shawl and wrapped it around Beloved's head and shoulders. Saying, "You got to learn more sense than that," she +enclosed her in her left arm. +Snowflakes stuck now. Paul D felt icy cold in the place Sethe had been before Beloved came. Trailing a yard or so behind +the women, he fought the anger that shot through his stomach all the way home. +When he saw Denver silhouetted in the lamplight at the window, he could not help thinking, "And whose ally you?" +It was Sethe who did it. Unsuspecting, surely, she solved everything with one blow. +"Now I know you not sleeping out there tonight, are you, Paul D?" She smiled at him, and like a friend in need, the +chimney coughed against the rush of cold shooting into it from the sky. Window sashes shuddered in a blast of winter +air. +Paul D looked up from the stew meat. +"You come upstairs. Where you belong," she said, "... and stay there." +The threads of malice creeping toward him from Beloved's side of the table were held harmless in the warmth of Sethe's +smile. +Once before (and only once) Paul D had been grateful to a woman. +Crawling out of the woods, cross-eyed with hunger and loneliness, he knocked at the first back door he came to in the +colored section of Wilmington. He told the woman who opened it that he'd appreciate doing her woodpile, if she could +spare him something to eat. +She looked him up and down. +"A little later on," she said and opened the door wider. She fed him pork sausage, the worst thing in the world for a +starving man, but neither he nor his stomach objected. Later, when he saw pale cotton sheets and two pillows in her +bedroom, he had to wipe his eyes quickly, quickly so she would not +see the thankful tears of a man's first time. Soil, grass, mud, shucking, leaves, hay, cobs, sea shells---all that he'd slept +on. White cotton sheets had never crossed his mind. He fell in with a groan and the woman helped him pretend he was +making love to her and not her bed linen. He vowed that night, full of pork, deep in luxury, that he would never leave +her. +She would have to kill him to get him out of that bed. Eighteen months later, when he had been purchased by +Northpoint Bank and Railroad Company, he was still thankful for that introduction to sheets. +Now he was grateful a second time. He felt as though he had been plucked from the face of a cliff and put down on sure +ground. +In Sethe's bed he knew he could put up with two crazy girls---as long as Sethe made her wishes known. Stretched out +to his full length, watching snowflakes stream past the window over his feet, it was easy to dismiss the doubts that took +him to the alley behind the restaurant: his expectations for himself were high, too high. What he might call cowardice +other people called common sense. +Tucked into the well of his arm, Sethe recalled Paul D's face in the street when he asked her to have a baby for him. +Although she laughed and took his hand, it had frightened her. She thought quickly of how good the sex would be if that +is what he wanted, but mostly she was frightened by the thought of having a baby once more. +76 +Needing to be good enough, alert enough, strong enough, that caring--again. Having to stay alive just that much longer. +O Lord, she thought, deliver me. Unless carefree, motherlove was a killer. What did he want her pregnant for? To hold +on to her? have a sign that he passed this way? He probably had children everywhere anyway. +Eighteen years of roaming, he would have to have dropped a few. +No. He resented the children she had, that's what. Child, she corrected herself. Child plus Beloved whom she thought of +as her own, and that is what he resented. Sharing her with the girls. Hearing the three of them laughing at something he +wasn't in on. The code they used among themselves that he could not break. Maybe even the time spent on their needs +and not his. They were a family somehow and he was not the head of it. +Can you stitch this up for me, baby? +Um hm. Soon's I finish this petticoat. She just got the one she came here in and everybody needs a change. +Any pie left? +I think Denver got the last of it. +And not complaining, not even minding that he slept all over and around the house now, which she put a stop to this +night out of courtesy. +Sethe sighed and placed her hand on his chest. She knew she was building a case against him in order to build a case +against getting pregnant, and it shamed her a little. But she had all the children she needed. If her boys came back one +day, and Denver and Beloved stayed on--well, it would be the way it was supposed to be, no? +Right after she saw the shadows holding hands at the side of the road hadn't the picture altered? And the minute she +saw the dress and shoes sitting in the front yard, she broke water. Didn't even have to see the face burning in the +sunlight. She had been dreaming it for years. +Paul D's chest rose and fell, rose and fell under her hand. +Chapter 14 +DENVER FINISHED washing the dishes and sat down at the table. +Beloved, who had not moved since Sethe and Paul D left the room, sat sucking her forefinger. Denver watched her face +awhile and then said, "She likes him here." +Beloved went on probing her mouth with her finger. "Make him go away," she said. +"She might be mad at you if he leaves." +Beloved, inserting a thumb in her mouth along with the forefinger, pulled out a back tooth. There was hardly any blood, +but Denver said, "Ooooh, didn't that hurt you?" +Beloved looked at the tooth and thought, This is it. Next would be her arm, her hand, a toe. Pieces of her would drop +maybe one at a time, maybe all at once. Or on one of those mornings before Denver woke and after Sethe left she +would fly apart. It is difficult keeping her head on her neck, her legs attached to her hips when she is by herself. Among +the things she could not remember was when she first knew that she could wake up any day and find herself in pieces. +She had two dreams: exploding, and being swallowed. When her tooth came out--an odd fragment, last in the row--she +77 +thought it was starting. +"Must be a wisdom," said Denver. "Don't it hurt?" +"Yes." +"Then why don't you cry?" +"What?" +"If it hurts, why don't you cry?" +And she did. Sitting there holding a small white tooth in the palm of her smooth smooth hand. Cried the way she wanted +to when turtles came out of the water, one behind the other, right after the blood-red bird disappeared back into the +leaves. The way she wanted to when Sethe went to him standing in the tub under the stairs. With the tip of her tongue +she touched the salt water that slid to the corner of her mouth and hoped Denver's arm around her shoulders would +keep them from falling apart. +The couple upstairs, united, didn't hear a sound, but below them, outside, all around 124 the snow went on and on and +on. Piling itself, burying itself. Higher. Deeper. +Chapter 15 +AT THE BACK of Baby Suggs' mind may have been the thought that if Halle made it, God do what He would, it would be a +cause for celebration. If only this final son could do for himself what he had done for her and for the three children John +and Ella delivered to her door one summer night. When the children arrived and no Sethe, she was afraid and grateful. +Grateful that the part of the family that survived was her own grandchildren--the first and only she would know: two +boys and a little girl who was crawling already. But she held her heart still, afraid to form questions: What about Sethe +and Halle; why the delay? Why didn't Sethe get on board too? Nobody could make it alone. Not only because trappers +picked them off like buzzards or netted them like rabbits, but also because you couldn't run if you didn't know how to +go. You could be lost forever, if there wasn't nobody to show you the way. +So when Sethe arrived--all mashed up and split open, but with another grandchild in her arms--the idea of a whoop +moved closer to the front of her brain. But since there was still no sign of Halle and Sethe herself didn't know what had +happened to him, she let the whoop lie-not wishing to hurt his chances by thanking God too soon. +It was Stamp Paid who started it. Twenty days after Sethe got to 124 he came by and looked at the baby he had tied +up in his nephew's jacket, looked at the mother he had handed a piece of fried eel to and, for some private reason of +his own, went off with two buckets to a place near the river's edge that only he knew about where blackberries grew, +tasting so good and happy that to eat them was like being in church. Just one of the berries and you felt anointed. +He walked six miles to the riverbank; did a slide-run-slide down into a ravine made almost inaccessible by brush. +He reached through brambles lined with blood-drawing thorns thick as knives that cut through his shirt sleeves and +trousers. All the while suffering mosquitoes, bees, hornets, wasps and the meanest lady spiders in the state. Scratched, +raked and bitten, he maneuvered through and took hold of each berry with fingertips so gentle not a single one was +bruised. Late in the afternoon he got back to 124 and put two full buckets down on the porch. When Baby Suggs saw his +shredded clothes, bleeding hands, welted face and neck she sat down laughing out loud. +Buglar, Howard, the woman in the bonnet and Sethe came to look and then laughed along with Baby Suggs at the sight +of the sly, steely old black man: agent, fisherman, boatman, tracker, savior, spy, standing in broad daylight whipped +finally by two pails of blackberries. +Paying them no mind he took a berry and put it in the three week-old Denver's mouth. The women shrieked. +"She's too little for that, Stamp." +78 +"Bowels be soup." +"Sickify her stomach." +But the baby's thrilled eyes and smacking lips made them follow suit, sampling one at a time the berries that tasted like +church. Finally Baby Suggs slapped the boys' hands away from the bucket and sent Stamp around to the pump to rinse +himself. She had decided to do something with the fruit worthy of the man's labor and his love. +That's how it began. +She made the pastry dough and thought she ought to tell Ella and John to stop on by because three pies, maybe four, +were too much to keep for one's own. Sethe thought they might as well back it up with a couple of chickens. Stamp +allowed that perch and catfish were jumping into the boat--didn't even have to drop a line. +From Denver's two thrilled eyes it grew to a feast for ninety people .124 shook with their voices far into the night. Ninety +people who ate so well, and laughed so much, it made them angry. They woke up the next morning and remembered +the meal-fried perch that Stamp Paid handled with a hickory twig, holding his left palm out against the spit and pop of +the boiling grease; the corn pudding made with cream; tired, overfed children asleep in the grass, tiny bones of roasted +rabbit still in their hands--and got angry. +Baby Suggs' three (maybe four) pies grew to ten (maybe twelve). +Sethe's two hens became five turkeys. The one block of ice brought all the way from Cincinnati---over which they poured +mashed watermelon mixed with sugar and mint to make a punch--became a wagonload of ice cakes for a washtub full of +strawberry shrug, 124, rocking with laughter, goodwill and food for ninety, made them angry. Too much, they thought. +Where does she get it all, Baby Suggs, holy? Why is she and hers always the center of things? How come she always +knows exactly what to do and when? Giving advice; passing messages; healing the sick, hiding fugitives, loving, cooking, +cooking, loving, preaching, singing, dancing and loving everybody like it was her job and hers alone. +Now to take two buckets of blackberries and make ten, maybe twelve, pies; to have turkey enough for the whole town +pretty near, new peas in September, fresh cream but no cow, ice and sugar, batter bread, bread pudding, raised bread, +shortbread--it made them mad. +Loaves and fishes were His powers--they did not belong to an ex slave who had probably never carried one hundred +pounds to the scale, or picked okra with a baby on her back. Who had never been lashed by a ten-year-old whiteboy as +God knows they had. Who had not even escaped slavery--had, in fact, been bought out of it by a doting son and driven +to the Ohio River in a wagon--free papers folded between her breasts (driven by the very man who had been her master, +who also paid her resettlement fee--name of Garner), and rented a house with two floors and a well from the Bodwins- +- the white brother and sister who gave Stamp Paid, Ella and John clothes, goods and gear for runaways because they +hated slavery worse than they hated slaves. +It made them furious. They swallowed baking soda, the morning after, to calm the stomach violence caused by the +bounty, the reckless generosity on display at 124. Whispered to each other in the yards about fat rats, doom and +uncalled-for pride. +The scent of their disapproval lay heavy in the air. Baby Suggs woke to it and wondered what it was as she boiled hominy +for her grandchildren. Later, as she stood in the garden, chopping at the tight soil over the roots of the pepper plants, +she smelled it again. +She lifted her head and looked around. Behind her some yards to the left Sethe squatted in the pole beans. Her +shoulders were distorted by the greased flannel under her dress to encourage the healing of her back. Near her in a +bushel basket was the three-week-old baby. +Baby Suggs, holy, looked up. The sky was blue and clear. Not one touch of death in the definite green of the leaves. She +could hear birds and, faintly, the stream way down in the meadow. The puppy, Here Boy, was burying the last bones +79 +from yesterday's party. From somewhere at the side of the house came the voices of Buglar, Howard and the crawling +girl. Nothing seemed amiss--yet the smell of disapproval was sharp. Back beyond the vegetable garden, closer to the +stream but in full sun, she had planted corn. Much as they'd picked for the party, there were still ears ripening, which +she could see from where she stood. Baby Suggs leaned back into the peppers and the squash vines with her hoe. +Carefully, with the blade at just the right angle, she cut through a stalk of insistent rue. Its flowers she stuck through a +split in her hat; the rest she tossed aside. The quiet clok clok clok of wood splitting reminded her that Stamp was doing +the chore he promised to the night before. She sighed at her work and, a moment later, straightened up to sniff the +disapproval once again. +Resting on the handle of the hoe, she concentrated. She was accustomed to the knowledge that nobody prayed for her- +-but this free floating repulsion was new. It wasn't whitefolks--that much she could tell--so it must be colored ones. And +then she knew. Her friends and neighbors were angry at her because she had overstepped, given too much, offended +them by excess. +Baby closed her eyes. Perhaps they were right. Suddenly, behind the disapproving odor, way way back behind it, she +smelled another thing. Dark and coming. Something she couldn't get at because the other odor hid it. +She squeezed her eyes tight to see what it was but all she could make out was high-topped shoes she didn't like the look +of. +Thwarted yet wondering, she chopped away with the hoe. What could it be? This dark and coming thing. What was left +to hurt her now? News of Halle's death? No. She had been prepared for that better than she had for his life. The last of +her children, whom she barely glanced at when he was born because it wasn't worth the trouble to try to learn features +you would never see change into adulthood anyway. Seven times she had done that: held a little foot; examined the fat +fingertips with her own--fingers she never saw become the male or female hands a mother would recognize anywhere. +She didn't know to this day what their permanent teeth looked like; or how they held their heads when they walked. Did +Patty lose her lisp? What color did Famous' skin finally take? Was that a cleft in Johnny's chin or just a dimple that would +disappear soon's his jawbone changed? Four girls, and the last time she saw them there was no hair under their arms. +Does Ardelia still love the burned bottom of bread? All seven were gone or dead. What would be the point of looking +too hard at that youngest one? But for some reason they let her keep him. He was with her--everywhere. +When she hurt her hip in Carolina she was a real bargain (costing less than Halle, who was ten then) for Mr. Garner, who +took them both to Kentucky to a farm he called Sweet Home. Because of the hip she jerked like a three-legged dog when +she walked. But at Sweet Home there wasn't a rice field or tobacco patch in sight, and nobody, but nobody, knocked her +down. Not once. Lillian Garner called her Jenny for some reason but she never pushed, hit or called her mean names. +Even when she slipped in cow dung and broke every egg in her apron, nobody said you-blackbitchwhat'sthematterwith- +you and nobody knocked her down. +Sweet Home was tiny compared to the places she had been. Mr. +Garner, Mrs. Garner, herself, Halle, and four boys, over half named Paul, made up the entire population. Mrs. Garner +hummed when she worked; Mr. Garner acted like the world was a toy he was supposed to have fun with. Neither +wanted her in the field--Mr. +Garner's boys, including Halle, did all of that--which was a blessing since she could not have managed it anyway. What +she did was stand beside the humming Lillian Garner while the two of them cooked, preserved, washed, ironed, made +candles, clothes, soap and cider; fed chickens, pigs, dogs and geese; milked cows, churned butter, rendered fat, laid +fires.... Nothing to it. And nobody knocked her down. +Her hip hurt every single day--but she never spoke of it. Only Halle, who had watched her movements closely for the last +four years, knew that to get in and out of bed she had to lift her thigh with both hands, which was why he spoke to Mr. +Garner about buying her out of there so she could sit down for a change. Sweet boy. The one person who did something +hard for her: gave her his work, his life and now his children, whose voices she could just make out as she stood in the +garden wondering what was the dark and coming thing behind the scent of disapproval. Sweet Home was a marked +80 +improvement. No question. And no matter, for the sadness was at her center, the desolated center where the self that +was no self made its home. Sad as it was that she did not know where her children were buried or what they looked like +if alive, fact was she knew more about them than she knew about herself, having never had the map to discover what +she was like. +Could she sing? (Was it nice to hear when she did?) Was she pretty? Was she a good friend? Could she have been a +loving mother? +A faithful wife? Have I got a sister and does she favor me? If my mother knew me would she like me? +In Lillian Garner's house, exempted from the field work that broke her hip and the exhaustion that drugged her mind; in +Lillian Garner's house where nobody knocked her down (or up), she listened to the whitewoman humming at her work; +watched her face light up when Mr. Garner came in and thought, It's better here, but I'm not. The Garners, it seemed to +her, ran a special kind of slavery, treating them like paid labor, listening to what they said, teaching what they wanted +known. And he didn't stud his boys. Never brought them to her cabin with directions to "lay down with her," like they +did in Carolina, or rented their sex out on other farms. It surprised and pleased her, but worried her too. Would he pick +women for them or what did he think was going to happen when those boys ran smack into their nature? Some danger +he was courting and he surely knew it. In fact, his order for them not to leave Sweet Home, except in his company, was +not so much because of the law, but the danger of men-bred slaves on the loose. +Baby Suggs talked as little as she could get away with because what was there to say that the roots of her tongue could +manage? +So the whitewoman, finding her new slave excellent if silent help, hummed to herself while she worked. +When Mr. Garner agreed to the arrangements with Halle, and when Halle looked like it meant more to him that she +go free than anything in the world, she let herself be taken 'cross the river. Of the two hard thingsstanding on her feet +till she dropped or leaving her last and probably only living child--she chose the hard thing that made him happy, and +never put to him the question she put to herself: What for? What does a sixty-odd-year-old slavewoman who walks like +a three-legged dog need freedom for? And when she stepped foot on free ground she could not believe that Halle knew +what she didn't; that Halle, who had never drawn one free breath, knew that there was nothing like it in this world. It +scared her. +Something's the matter. What's the matter? What's the matter? she asked herself. She didn't know what she looked +like and was not curious. But suddenly she saw her hands and thought with a clarity as simple as it was dazzling, "These +hands belong to me. These my hands." Next she felt a knocking in her chest and discovered something else new: her +own heartbeat. Had it been there all along? This pounding thing? She felt like a fool and began to laugh out loud. +Mr. Garner looked over his shoulder at her with wide brown eyes and smiled himself. "What's funny, Jenny?" +She couldn't stop laughing. "My heart's beating," she said. +And it was true. +Mr. Garner laughed. "Nothing to be scared of, Jenny. Just keep your same ways, you'll be all right." +She covered her mouth to keep from laughing too loud. +"These people I'm taking you to will give you what help you need. Name of Bodwin. A brother and a sister. Scots. I been +knowing them for twenty years or more." +Baby Suggs thought it was a good time to ask him something she had long wanted to know. +"Mr. Garner," she said, "why you all call me Jenny?" +'"Cause that what's on your sales ticket, gal. Ain't that your name? What you call yourself?" +81 +"Nothings" she said. "I don't call myself nothing." +Mr. Garner went red with laughter. "When I took you out of Carolina, Whitlow called you Jenny and Jenny Whitlow is +what his bill said. Didn't he call you Jenny?" +"No, sir. If he did I didn't hear it." +"What did you answer to?" +"Anything, but Suggs is what my husband name." +"You got married, Jenny? I didn't know it." +"Manner of speaking." +"You know where he is, this husband?" +"No, sir." +"Is that Halle's daddy?" +"No, sir." +"why you call him Suggs, then? His bill of sale says Whitlow too, just like yours." +"Suggs is my name, sir. From my husband. He didn't call me Jenny." +"What he call you?" +"Baby." +"Well," said Mr. Garner, going pink again, "if I was you I'd stick to Jenny Whitlow. Mrs. Baby Suggs ain't no name for a +freed Negro." +Maybe not, she thought, but Baby Suggs was all she had left of the "husband" she claimed. A serious, melancholy man +who taught her how to make shoes. The two of them made a pact: whichever one got a chance to run would take it; +together if possible, alone if not, and no looking back. He got his chance, and since she never heard otherwise she +believed he made it. Now how could he find or hear tell of her if she was calling herself some bill-of-sale name? +She couldn't get over the city. More people than Carolina and enough whitefolks to stop the breath. Two-story buildings +everywhere, and walkways made of perfectly cut slats of wood. Roads wide as Garner's whole house. +"This is a city of water," said Mr. Garner. "Everything travels by water and what the rivers can't carry the canals take. +A queen of a city, Jenny. Everything you ever dreamed of, they make it right here. Iron stoves, buttons, ships, shirts, +hairbrushes, paint, steam engines, books. A sewer system make your eyes bug out. Oh, this is a city, all right. If you have +to live in a city--this is it." +The Bodwins lived right in the center of a street full of houses and trees. Mr. Garner leaped out and tied his horse to a +solid iron post. +"Here we are." +Baby picked up her bundle and with great difficulty, caused by her hip and the hours of sitting in a wagon, climbed +down. Mr. +Garner was up the walk and on the porch before she touched ground, but she got a peep at a Negro girl's face at the +open door before she followed a path to the back of the house. She waited what seemed a long time before this same +girl opened the kitchen door and offered her a seat by the window. +82 +"Can I get you anything to eat, ma'am?" the girl asked. +"No, darling. I'd look favorable on some water though." The girl went to the sink and pumped a cupful of water. She +placed it in Baby Suggs' hand. "I'm Janey, ma'am." +Baby, marveling at the sink, drank every drop of water although it tasted like a serious medicine. "Suggs," she said, +blotting her lips with the back of her hand. "Baby Suggs." +"Glad to meet you, Mrs. Suggs. You going to be staying here?" +"I don't know where I'll be. Mr. Garner--that's him what brought me here--he say he arrange something for me." And +then, "I'm free, you know." +Janey smiled. "Yes, ma'am." +"Your people live around here?" +"Yes, ma'am. All us live out on Bluestone." +"We scattered," said Baby Suggs, "but maybe not for long." +Great God, she thought, where do I start? Get somebody to write old Whitlow. See who took Patty and Rosa Lee. +Somebody name Dunn got Ardelia and went West, she heard. No point in trying for Tyree or John. They cut thirty years +ago and, if she searched too hard and they were hiding, finding them would do them more harm than good. Nancy +and Famous died in a ship off the Virginia coast before it set sail for Savannah. That much she knew. The overseer at +Whitlow's place brought her the news, more from a wish to have his way with her than from the kindness of his heart. +The captain waited three weeks in port, to get a full cargo before setting off. Of the slaves in the hold who didn't make +it, he said, two were Whitlow pickaninnies name of... +But she knew their names. She knew, and covered her ears with her fists to keep from hearing them come from his +mouth. +Janey heated some milk and poured it in a bowl next to a plate of cornbread. After some coaxing, Baby Suggs came to +the table and sat down. She crumbled the bread into the hot milk and discovered she was hungrier than she had ever +been in her life and that was saying something. +"They going to miss this?" +"No," said Janey. "Eat all you want; it's ours." +"Anybody else live here?" +"Just me. Mr. Woodruff, he does the outside chores. He comes by two, three days a week." +"Just you two?" +"Yes, ma'am. I do the cooking and washing." +"Maybe your people know of somebody looking for help." +"I be sure to ask, but I know they take women at the slaughterhouse." +"Doing what?" +"I don't know." +"Something men don't want to do, I reckon." +83 +"My cousin say you get all the meat you want, plus twenty-five cents the hour. She make summer sausage." +Baby Suggs lifted her hand to the top of her head. Money? Money? +They would pay her money every single day? Money? +"Where is this here slaughterhouse?" she asked. +Before Janey could answer, the Bodwins came in to the kitchen with a grinning Mr. Garner behind. Undeniably brother +and sister, both dressed in gray with faces too young for their snow-white hair. +"Did you give her anything to eat, Janey?" asked the brother. +"Yes, sir." +"Keep your seat, Jenny," said the sister, and that good news got better. +When they asked what work she could do, instead of reeling off the hundreds of tasks she had performed, she asked +about the slaughterhouse. +She was too old for that, they said. +"She's the best cobbler you ever see," said Mr. Garner. +"Cobbler?" Sister Bodwin raised her black thick eyebrows. "Who taught you that?" +"Was a slave taught me," said Baby Suggs. +"New boots, or just repair?" +"New, old, anything." +"Well," said Brother Bodwin, "that'll be something, but you'll need more." +"What about taking in wash?" asked Sister Bodwin. +"Yes, ma'am." +"Two cents a pound." +"Yes, ma'am. But where's the in?" +"What?" +"You said 'take in wash.' Where is the 'in'? Where I'm going to be." +"Oh, just listen to this, Jenny," said Mr. Garner. "These two angels got a house for you. Place they own out a ways." +It had belonged to their grandparents before they moved in town. +Recently it. had been rented out to a whole parcel of Negroes, who had left the state. It was too big a house for Jenny +alone, they said (two rooms upstairs, two down), but it was the best and the only thing they could do. In return for +laundry, some seamstress work, a little canning and so on (oh shoes, too), they would permit her to stay there. Provided +she was clean. The past parcel of colored wasn't. +Baby Suggs agreed to the situation, sorry to see the money go but excited about a house with stepsnever mind she +couldn't climb them. Mr. Garner told the Bodwins that she was a right fine cook as well as a fine cobbler and showed his +belly and the sample on his feet. Everybody laughed. +84 +"Anything you need, let us know," said the sister. "We don't hold with slavery, even Garner's kind." +"Tell em, Jenny. You live any better on any place before mine?" +"No, sir," she said. "No place." +"How long was you at Sweet Home?" +"Ten year, I believe." +"Ever go hungry?" +"No, sir." +"Cold?" +"No, sir." +"Anybody lay a hand on you?" +"No, sir." +"Did I let Halle buy you or not?" +"Yes, sir, you did," she said, thinking, But you got my boy and I'm all broke down. You be renting him out to pay for me +way after I'm gone to Glory. +Woodruff, they said, would carry her out there, they said, and all three disappeared through the kitchen door. +"I have to fix the supper now," said Janey. +"I'll help," said Baby Suggs. "You too short to reach the fire." +It was dark when Woodruff clicked the horse into a trot. He was a young man with a heavy beard and a burned place on +his jaw the beard did not hide. +"You born up here?" Baby Suggs asked him. +"No, ma'am. Virginia. Been here a couple years." +"I see." +"You going to a nice house. Big too. A preacher and his family was in there. Eighteen children." +"Have mercy. Where they go?" +"Took off to Illinois. Bishop Allen gave him a congregation up there. Big." +"What churches around here? I ain't set foot in one in ten years." +"How come?" +"Wasn't none. I dislike the place I was before this last one, but I did get to church every Sunday some kind of way. I bet +the Lord done forgot who I am by now." +"Go see Reverend Pike, ma'am. He'll reacquaint you." +"I won't need him for that. I can make my own acquaintance. +85 +What I need him for is to reacquaint me with my children. He can read and write, I reckon?" +"Sure." +"Good, 'cause I got a lot of digging up to do." But the news they dug up was so pitiful she quit. After two years of +messages written by the preacher's hand, two years of washing, sewing, canning, cobbling, gardening, and sitting in +churches, all she found out was that the Whitlow place was gone and that you couldn't write to "a man named Dunn" if +all you knew was that he went West. The good news, however, was that Halle got married and had a baby coming. +She fixed on that and her own brand of preaching, having made up her mind about what to do with the heart that +started beating the minute she crossed the Ohio River. And it worked out, worked out just fine, until she got proud and +let herself be overwhelmed by the sight of her daughter-in-law and Halle's children--one of whom was born on the way- +-and have a celebration of blackberries that put Christmas to shame. Now she stood in the garden smelling disapproval, +feeling a dark and coming thing, and seeing high-topped shoes that she didn't like the look of at all. At all. +Chapter 16 +WHEN THE four horsemen came--schoolteacher, one nephew, one slave catcher and a sheriff--the house on Bluestone +Road was so quiet they thought they were too late. Three of them dismounted, one stayed in the saddle, his rifle ready, +his eyes trained away from the house to the left and to the right, because likely as not the fugitive would make a dash +for it. Although sometimes, you could never tell, you'd find them folded up tight somewhere: beneath floorboards, in +a pantry--once in a chimney. Even then care was taken, because the quietest ones, the ones you pulled from a press, a +hayloft, or, that once, from a chimney, would go along nicely for two or three seconds. +Caught red-handed, so to speak, they would seem to recognize the futility of outsmarting a whiteman and the +hopelessness of outrunning a rifle. Smile even, like a child caught dead with his hand in the jelly jar, and when you +reached for the rope to tie him, well, even then you couldn't tell. The very nigger with his head hanging and a little jelly- +jar smile on his face could all of a sudden roar, like a bull or some such, and commence to do disbelievable things. Grab +the rifle at its mouth; throw himself at the one holding it--anything. So you had to keep back a pace, leave the tying to +another. Otherwise you ended up killing what you were paid to bring back alive. Unlike a snake or a bear, a dead nigger +could not be skinned for profit and was not worth his own dead weight in coin. +Six or seven Negroes were walking up the road toward the house: two boys from the slave catcher's left and some +women from his right. He motioned them still with his rifle and they stood where they were. The nephew came back +from peeping inside the house, and after touching his lips for silence, pointed his thumb to say that what they were +looking for was round back. The slave catcher dismounted then and joined the others. Schoolteacher and the nephew +moved to the left of the house; himself and the sheriff to the right. +A crazy old nigger was standing in the woodpile with an ax. You could tell he was crazy right off because he was +grunting--making low, cat noises like. About twelve yards beyond that nigger was another one--a woman with a flower +in her hat. Crazy too, probably, because she too was standing stock-still--but fanning her hands as though pushing +cobwebs out of her way. Both, however, were staring at the same place--a shed. Nephew walked over to the old nigger +boy and took the ax from him. Then all four started toward the shed. +Inside, two boys bled in the sawdust and dirt at the feet of a nigger woman holding a blood-soaked child to her chest +with one hand and an infant by the heels in the other. She did not look at them; she simply swung the baby toward the +wall planks, missed and tried to connect a second time, when out of nowheremin the ticking time the men spent staring +at what there was to stare the old nigger boy, still mewing, ran through the door behind them and snatched the baby +from the arch of its mother's swing. +Right off it was clear, to schoolteacher especially, that there was nothing there to claim. The three (now four--because +she'd had the one coming when she cut) pickaninnies they had hoped were alive and well enough to take back to +Kentucky, take back and raise properly to do the work Sweet Home desperately needed, were not. +86 +Two were lying open-eyed in sawdust; a third pumped blood down the dress of the main one--the woman schoolteacher +bragged about, the one he said made fine ink, damn good soup, pressed his collars the way he liked besides having at +least ten breeding years left. But now she'd gone wild, due to the mishandling of the nephew who'd overbeat her and +made her cut and run. Schoolteacher had chastised that nephew, telling him to think--just think--what would his own +horse do if you beat it beyond the point of education. Or Chipper, or Samson. Suppose you beat the hounds past that +point thataway. +Never again could you trust them in the woods or anywhere else. +You'd be feeding them maybe, holding out a piece of rabbit in your hand, and the animal would revert--bite your hand +clean off. So he punished that nephew by not letting him come on the hunt. Made him stay there, feed stock, feed +himself, feed Lillian, tend crops. See how he liked it; see what happened when you overbear creatures God had given +you the responsibility of--the trouble it was, and the loss. The whole lot was lost now. Five. He could claim the baby +struggling in the arms of the mewing old man, but who'd tend her? +Because the woman--something was wrong with her. She was looking at him now, and if his other nephew could see +that look he would learn the lesson for sure: you just can't mishandle creatures and expect success. +The nephew, the one who had nursed her while his brother held her down, didn't know he was shaking. His uncle had +warned him against that kind of confusion, but the warning didn't seem to be taking. What she go and do that for? On +account of a beating? Hell, he'd been beat a million times and he was white. Once it hurt so bad and made him so mad +he'd smashed the well bucket. Another time he took it out on Samson--a few tossed rocks was all. But no beating ever +made him... I mean no way he could have... What she go and do that for? And that is what he asked the sheriff, who was +standing there, amazed like the rest of them, but not shaking. He was swallowing hard, over and over again. "What she +want to go and do that for?" +The sheriff turned, then said to the other three, "You all better go on. Look like your business is over. Mine's started +now." +Schoolteacher beat his hat against his thigh and spit before leaving the woodshed. Nephew and the catcher backed out +with him. They didn't look at the woman in the pepper plants with the flower in her hat. And they didn't look at the +seven or so faces that had edged closer in spite of the catcher's rifle warning. Enough nigger eyes for now. Little nigger- +boy eyes open in sawdust; little nigger-girl eyes staring between the wet fingers that held her face so her head wouldn't +fall off; little nigger-baby eyes crinkling up to cry in the arms of the old nigger whose own eyes were nothing but slivers +looking down at his feet. But the worst ones were those of the nigger woman who looked like she didn't have any. Since +the whites in them had disappeared and since they were as black as her skin, she looked blind. +They unhitched from schoolteacher's horse the borrowed mule that was to carry the fugitive woman back to where +she belonged, and tied it to the fence. Then, with the sun straight up over their heads, they trotted off, leaving the +sheriff behind among the damnedest bunch of coons they'd ever seen. All testimony to the results of a little so-called +freedom imposed on people who needed every care and guidance in the world to keep them from the cannibal life they +preferred. +The sheriff wanted to back out too. To stand in the sunlight outside of that place meant for housing wood, coal, +kerosene--fuel for cold Ohio winters, which he thought of now, while resisting the urge to run into the August sunlight. +Not because he was afraid. Not at all. He was just cold. And he didn't want to touch anything. The baby in the old man's +arms was crying, and the woman's eyes with no whites were gazing straight ahead. They all might have remained that +way, frozen till Thursday, +except one of the boys on the floor sighed. As if he were sunk in the pleasure of a deep sweet sleep, he sighed the sigh +that flung the sheriff into action. +"I'll have to take you in. No trouble now. You've done enough to last you. Come on now." +She did not move. +87 +"You come quiet, hear, and I won't have to tie you up." +She stayed still and he had made up his mind to go near her and some kind of way bind her wet red hands when a +shadow behind him in the doorway made him turn. The nigger with the flower in her hat entered. +Baby Suggs noticed who breathed and who did not and went straight to the boys lying in the dirt. The old man moved to +the woman gazing and said, "Sethe. You take my armload and gimme yours." +She turned to him, and glancing at the baby he was holding, made a low sound in her throat as though she'd made a +mistake, left the salt out of the bread or something. +"I'm going out here and send for a wagon," the sheriff said and got into the sunlight at last. +But neither Stamp Paid nor Baby Suggs could make her put her crawling-already? girl down. Out of the shed, back in +the house, she held on. Baby Suggs had got the boys inside and was bathing their heads, rubbing their hands, lifting +their lids, whispering, "Beg your pardon, I beg your pardon," the whole time. She bound their wounds and made them +breathe camphor before turning her attention to Sethe. She took the crying baby from Stamp Paid and carried it on her +shoulder for a full two minutes, then stood in front of its mother. +"It's time to nurse your youngest," she said. +Sethe reached up for the baby without letting the dead one go. +Baby Suggs shook her head. "One at a time," she said and traded the living for the dead, which she carried into the +keeping room. +When she came back, Sethe was aiming a bloody nipple into the baby's mouth. Baby Suggs slammed her fist on the table +and shouted, "Clean up! Clean yourself up!" +They fought then. Like rivals over the heart of the loved, they fought. Each struggling for the nursing child. Baby Suggs +lost when she slipped in a red puddle and fell. So Denver took her mother's milk right along with the blood of her sister. +And that's the way they were when the sheriff returned, having commandeered a neighbor's cart, and ordered Stamp to +drive it. +Outside a throng, now, of black faces stopped murmuring. Holding the living child, Sethe walked past them in their +silence and hers. +She climbed into the cart, her profile knife-clean against a cheery blue sky. A profile that shocked them with its clarity. +Was her head a bit too high? Her back a little too straight? Probably. Otherwise the singing would have begun at once, +the moment she appeared in the doorway of the house on Bluestone Road. Some cape of sound would have quickly +been wrapped around her, like arms to hold and steady her on the way. As it was, they waited till the cart turned about, +headed west to town. And then no words. Humming. No words at all. +Baby Suggs meant to run, skip down the porch steps after the cart, screaming, No. No. Don't let her take that last one +too. She meant to. Had started to, but when she got up from the floor and reached the yard the cart was gone and a +wagon was rolling up. A red-haired boy and a yellow-haired girl jumped down and ran through the crowd toward her. +The boy had a half-eaten sweet pepper in one hand and a pair of shoes in the other. +"Mama says Wednesday." He held them together by their tongues. +"She says you got to have these fixed by Wednesday." +Baby Suggs looked at him, and then at the woman holding a twitching lead horse to the road. +"She says Wednesday, you hear? Baby? Baby?" +She took the shoes from him--high-topped and muddy--saying, "I beg your pardon. Lord, I beg your pardon. I sure do." +88 +Out of sight, the cart creaked on down Bluestone Road. Nobody in it spoke. The wagon rock had put the baby to sleep. +The hot sun dried Sethe's dress, stiff, like rigor morris. +Chapter 17 +THAT AIN'T her mouth. +Anybody who didn't know her, or maybe somebody who just got a glimpse of her through the peephole at the +restaurant, might think it was hers, but Paul D knew better. Oh well, a little something around the forehead--a +quietness--that kind of reminded you of her. +But there was no way you could take that for her mouth and he said so. Told Stamp Paid, who was watching him +carefully. +"I don't know, man. Don't look like it to me. I know Sethe's mouth and this ain't it." He smoothed the clipping with +his fingers and peered at it, not at all disturbed. From the solemn air with which Stamp had unfolded the paper, the +tenderness in the old man's fingers as he stroked its creases and flattened it out, first on his knees, then on the split top +of the piling, Paul D knew that it ought to mess him up. That whatever was written on it should shake him. +Pigs were crying in the chute. All day Paul D, Stamp Paid and twenty more had pushed and prodded them from canal to +shore to chute to slaughterhouse. Although, as grain farmers moved west, St. +Louis and Chicago now ate up a lot of the business, Cincinnati was still pig port in the minds of Ohioans. Its main job was +to receive, slaughter and ship up the river the hogs that Northerners did not want to live without. For a month or so in +the winter any stray man had work, if he could breathe the stench of offal and stand up for twelve hours, skills in which +Paul D was admirably trained. +A little pig shit, rinsed from every place he could touch, remained on his boots, and he was conscious of it as he stood +there with a light smile of scorn curling his lips. Usually he left his boots in the shed and put his walking shoes on along +with his day clothes in the corner before he went home. A route that took him smack dab through the middle of a +cemetery as old as sky, rife with the agitation of dead Miami no longer content to rest in the mounds that covered them. +Over their heads walked a strange people; through their earth pillows roads were cut; wells and houses nudged them +out of eternal rest. Outraged more by their folly in believing land was holy than by the disturbances of their peace, they +growled on the banks of Licking River, sighed in the trees on Catherine Street and rode the wind above the pig yards. +Paul D heard them but he stayed on because all in all it wasn't a bad job, especially in winter when Cincinnati reassumed +its status of slaughter and riverboat capital. The craving for pork was growing into a mania in every city in the country. +Pig farmers were cashing in, provided they could raise enough and get them sold farther and farther away. And the +Germans who flooded southern Ohio brought and developed swine cooking to its highest form. Pig boats jammed the +Ohio River, and their captains' hollering at one another over the grunts of the stock was as common a water sound as +that of the ducks flying over their heads. Sheep, cows and fowl too floated up and down that river, and all a Negro had +to do was show up and there was work: poking, killing, cutting, skinning, case packing and saving offal. +A hundred yards from the crying pigs, the two men stood behind a shed on Western Row and it was clear why +Stamp had been eyeing Paul D this last week of work; why he paused when the evening shift came on, to let Paul D's +movements catch up to his own. He had made up his mind to show him this piece of paper--newspaper-- with a picture +drawing of a woman who favored Sethe except that was not her mouth. Nothing like it. +Paul D slid the clipping out from under Stamp's palm. The print meant nothing to him so he didn't even glance at it. +He simply looked at the face, shaking his head no. No. At the mouth, you see. And no at whatever it was those black +scratches said, and no to whatever it was Stamp Paid wanted him to know. Because there was no way in hell a black face +89 +could appear in a newspaper if the story was about something anybody wanted to hear. A whip of fear broke through +the heart chambers as soon as you saw a Negro's face in a paper, since the face was not there because the person had +a healthy baby, or outran a street mob. Nor was it there because the person had been killed, or maimed or caught or +burned or jailed or whipped or evicted or stomped or raped or cheated, since that could hardly qualify as news in a +newspaper. It would have to be something out of the ordinary--something whitepeople +would find interesting, truly different, worth a few minutes of teeth sucking if not gasps. And it must have been hard to +find news about Negroes worth the breath catch of a white citizen of Cincinnati. +So who was this woman with a mouth that was not Sethe's, but whose eyes were almost as calm as hers? Whose head +was turned on her neck in the manner he loved so well it watered his eye to see it. +And he said so. "This ain't her mouth. I know her mouth and this ain't it." Before Stamp Paid could speak he said it and +even while he spoke Paul D said it again. Oh, he heard all the old man was saying, but the more he heard, the stranger +the lips in the drawing became. +Stamp started with the party, the one Baby Suggs gave, but stopped and backed up a bit to tell about the berries--where +they were and what was in the earth that made them grow like that. +"They open to the sun, but not the birds, 'cause snakes down in there and the birds know it, so they just grow--fat and +sweet--with nobody to bother em 'cept me because don't nobody go in that piece of water but me and ain't too many +legs willing to glide down that bank to get them. Me neither. But I was willing that day. Somehow or 'nother I was +willing. And they whipped me, I'm telling you. Tore me up. But I filled two buckets anyhow. And took em over to Baby +Suggs' house. It was on from then on. Such a cooking you never see no more. We baked, fried and stewed everything +God put down here. +Everybody came. Everybody stuffed. Cooked so much there wasn't a stick of kirdlin left for the next day. I volunteered to +do it. And next morning I come over, like I promised, to do it." +"But this ain't her mouth," Paul D said. "This ain't it at all." +Stamp Paid looked at him. He was going to tell him about how restless Baby Suggs was that morning, how she had a +listening way about her; how she kept looking down past the corn to the stream so much he looked too. In between +ax swings, he watched where Baby was watching. Which is why they both missed it: they were looking the wrong +way--toward water--and all the while it was coming down the road. Four. Riding close together, bunched-up like, and +righteous. He was going to tell him that, because he thought it was important: why he and Baby Suggs both missed +it. And about the party too, because that explained why nobody ran on ahead; why nobody sent a fleet-footed son to +cut 'cross a field soon as they saw the four horses in town hitched for watering while the riders asked questions. Not +Ella, not John, not anybody ran down or to Bluestone Road, to say some new whitefolks with the Look just rode in. +The righteous Look every Negro learned to recognize along with his ma'am's tit. Like a flag hoisted, this righteousness +telegraphed and announced the faggot, the whip, the fist, the lie, long before it went public. Nobody warned them, and +he'd always believed it wasn't the exhaustion from a long day's gorging that dulled them, but some other thing--like, +well, like meanness--that let them stand aside, or not pay attention, or tell themselves somebody else was probably +bearing the news already to the house on Bluestone Road where a pretty woman had been living for almost a month. +Young and deft with four children one of which she delivered herself the day before she got there and who now had +the full benefit of Baby Suggs' bounty and her big old heart. Maybe they just wanted to know if Baby really was special, +blessed in some way they were not. He was going to tell him that, but Paul D was laughing, saying, "Uh uh. No way. A +little semblance round the forehead maybe, but this ain't her mouth." +So Stamp Paid did not tell him how she flew, snatching up her children like a hawk on the wing; how her face beaked, +how her hands worked like claws, how she collected them every which way: one on her shoulder, one under her arm, +one by the hand, the other shouted forward into the woodshed filled with just sunlight and shavings now because there +wasn't any wood. The party had used it all, which is why he was chopping some. Nothing was in that shed, he knew, +having been there early that morning. Nothing but sunlight. +90 +Sunlight, shavings, a shovel. The ax he himself took out. Nothing else was in there except the shovel--and of course the +saw. +"You forgetting I knew her before," Paul D was saying. "Back in Kentucky. When she was a girl. I didn't just make her +acquaintance a few months ago. I been knowing her a long time. And I can tell you for sure: this ain't her mouth. May +look like it, but it ain't." +So Stamp Paid didn't say it all. Instead he took a breath and leaned toward the mouth that was not hers and slowly read +out the words Paul D couldn't. And when he finished, Paul D said with a vigor fresher than the first time, "I'm sorry, +Stamp. It's a mistake somewhere 'cause that ain't her mouth." +Stamp looked into Paul D's eyes and the sweet conviction in them almost made him wonder if it had happened at all, +eighteen years ago, that while he and Baby Suggs were looking the wrong way, a pretty little slavegirl had recognized a +hat, and split to the woodshed to kill her children. +Chapter 18 +"SHE WAS crawling already when I got here. One week, less, and the baby who was sitting up and turning over when I +put her on the wagon was crawling already. Devil of a time keeping her off the stairs. Nowadays babies get up and walk +soon's you drop em, but twenty years ago when I was a girl, babies stayed babies longer. +Howard didn't pick up his own head till he was nine months. Baby Suggs said it was the food, you know. If you ain't got +nothing but milk to give em, well they don't do things so quick. Milk was all I ever had. I thought teeth meant they was +ready to chew. Wasn't nobody to ask. Mrs. Garner never had no children and we was the only women there." +She was spinning. Round and round the room. Past the jelly cupboard, past the window, past the front door, another +window, the sideboard, the keeping-room door, the dry sink, the stove--back to the jelly cupboard. Paul D sat at the +table watching her drift into view then disappear behind his back, turning like a slow but steady wheel. Sometimes she +crossed her hands behind her back. Other times she held her ears, covered her mouth or folded her arms across her +breasts. Once in a while she rubbed her hips as she turned, but the wheel never stopped. +"Remember Aunt Phyllis? From out by Minnoveville? Mr. Garner sent one a you all to get her for each and every one of +my babies. +That'd be the only time I saw her. Many's the time I wanted to get over to where she was. Just to talk. My plan was +to ask Mrs. Garner to let me off at Minnowville whilst she went to meeting. Pick me up on her way back. I believe she +would a done that if I was to ask her. +I never did, 'cause that's the only day Halle and me had with sunlight in it for the both of us to see each other by. So +there wasn't nobody. +To talk to, I mean, who'd know when it was time to chew up a little something and give it to em. Is that what make the +teeth come on out, or should you wait till the teeth came and then solid food? Well, I know now, because Baby Suggs +fed her right, and a week later, when I got here she was crawling already. No stopping her either. +She loved those steps so much we painted them so she could see her way to the top." +Sethe smiled then, at the memory of it. The smile broke in two and became a sudden suck of air, but she did not +shudder or close her eyes. She wheeled. +"I wish I'd a known more, but, like I say, there wasn't nobody to talk to. Woman, I mean. So I tried to recollect what I'd +seen back where I was before Sweet Home. How the women did there. Oh they knew all about it. How to make that +thing you use to hang the babies in the trees--so you could see them out of harm's way while you worked the fields. Was +a leaf thing too they gave em to chew on. +91 +Mint, I believe, or sassafras. Comfrey, maybe. I still don't know how they constructed that basket thing, but I didn't need +it anyway, because all my work was in the barn and the house, but I forgot what the leaf was. I could have used that. I +tied Buglar when we had all that pork to smoke. Fire everywhere and he was getting into everything. +I liked to lost him so many times. Once he got up on the well, right on it. I flew. Snatched him just in time. So when I +knew we'd be rendering and smoking and I couldn't see after him, well, I got a rope and tied it round his ankle. Just long +enough to play round a little, but not long enough to reach the well or the fire. I didn't like the look of it, but I didn't +know what else to do. It's hard, you know what I mean? by yourself and no woman to help you get through. +Halle was good, but he was debt-working all over the place. And when he did get down to a little sleep, I didn't want to +be bothering him with all that. Sixo was the biggest help. I don't 'spect you rememory this, but Howard got in the milk +parlor and Red Cora I believe it was mashed his hand. Turned his thumb backwards. When I got to him, she was getting +ready to bite it. I don't know to this day how I got him out. Sixo heard him screaming and come running. +Know what he did? Turned the thumb right back and tied it cross his palm to his little finger. See, I never would have +thought of that. +Never. Taught me a lot, Sixo." +It made him dizzy. At first he thought it was her spinning. Circling him the way she was circling the subject. Round and +round, never changing direction, which might have helped his head. Then he thought, No, it's the sound of her voice; +it's too near. Each turn she made was at least three yards from where he sat, but listening to her was like having a child +whisper into your ear so close you could feel its lips form the words you couldn't make out because they were too close. +He caught only pieces of what +she said--which was fine, because she hadn't gotten to the main part--the answer to the question he had not asked +outright, but which lay in the clipping he showed her. And lay in the smile as well. Because he smiled too, when +he showed it to her, so when she burst out laughing at the joke--the mix-up of her face put where some other +coloredwoman's ought to be--well, he'd be ready to laugh right along with her. "Can you beat it?" he would ask. +And "Stamp done lost his mind," she would giggle. +"Plumb lost it." +But his smile never got a chance to grow. It hung there, small and alone, while she examined the clipping and then +handed it back. +Perhaps it was the smile, or maybe the ever-ready love she saw in his eyes--easy and upfront, the way colts, evangelists +and children look at you: with love you don't have to deserve--that made her go ahead and tell him what she had +not told Baby Suggs, the only person she felt obliged to explain anything to. Otherwise she would have said what the +newspaper said she said and no more. Sethe could recognize only seventy-five printed words (half of which appeared in +the newspaper clipping), but she knew that the words she did not understand hadn't any more power than she had to +explain. It was the smile and the upfront love that made her try. +"I don't have to tell you about Sweet Home--what it was--but maybe you don't know what it was like for me to get away +from there." +Covering the lower half of her face with her palms, she paused to consider again the size of the miracle; its flavor. +"I did it. I got us all out. Without Halle too. Up till then it was the only thing I ever did on my own. Decided. And it came +off right, like it was supposed to. We was here. Each and every one of my babies and me too. I birthed them and I got +em out and it wasn't no accident. I did that. I had help, of course, lots of that, but still it was me doing it; me saying, Go +on, and Now. Me having to look out. +Me using my own head. But it was more than that. It was a kind of selfishness I never knew nothing about before. It felt +good. Good and right. I was big, Paul D, and deep and wide and when I stretched out my arms all my children could get +92 +in between. I was that wide. +Look like I loved em more after I got here. Or maybe I couldn't love em proper in Kentucky because they wasn't mine +to love. But when I got here, when I jumped down off that wagon--there wasn't nobody in the world I couldn't love if I +wanted to. You know what I mean?" +Paul D did not answer because she didn't expect or want him to, but he did know what she meant. Listening to the +doves in Alfred, Georgia, and having neither the right nor the permission to enjoy it because in that place mist, doves, +sunlight, copper dirt, moon---every thing belonged to the men who had the guns. Little men, some of them, big men too, +each one of whom he could snap like a twig if he wanted to. Men who knew their manhood lay in their guns and were +not even embarrassed by the knowledge that without gunshot fox would laugh at them. And these "men" who made +even vixen laugh could, if you let them, stop you from hearing doves or loving moonlight. So you protected yourself and +loved small. Picked the tiniest stars out of the sky to own; lay down with head twisted in order to see the loved one over +the rim of the trench before you slept. +Stole shy glances at her between the trees at chain-up. Grass blades, salamanders, spiders, woodpeckers, beetles, a +kingdom of ants. Anything bigger wouldn't do. A woman, a child, a brother--a big love like that would split you wide +open in Alfred, Georgia. He knew exactly what she meant: to get to a place where you could love anything you chose-- +not to need permission for desire--well now, that was freedom. +Circling, circling, now she was gnawing something else instead of getting to the point. +"There was this piece of goods Mrs. Garner gave me. Calico. +Stripes it had with little flowers in between. 'Bout a yard--not enough for more 'n a head tie. But I been wanting to make +a shift for my girl with it. Had the prettiest colors. I don't even know what you call that color: a rose but with yellow in +it. For the longest time I been meaning to make it for her and do you know like a fool I left it behind? No more than a +yard, and I kept putting it off because I was tired or didn't have the time. So when I got here, even before they let me +get out of bed, I stitched her a little something from a piece of cloth Baby Suggs had. Well, all I'm saying is that's a selfish +pleasure I never had before. I couldn't let all that go back to where it was, and I couldn't let her nor any of em live under +schoolteacher. +That was out." +Sethe knew that the circle she was making around the room, him, the subject, would remain one. That she could never +close in, pin it down for anybody who had to ask. If they didn't get it right off-- she could never explain. Because the +truth was simple, not a long drawn-out record of flowered shifts, tree cages, selfishness, ankle ropes and wells. Simple: +she was squatting in the garden and when she saw them coming and recognized schoolteacher's hat, she heard wings. +Little hummingbirds stuck their needle beaks right through her headcloth into her hair and beat their wings. And if she +thought anything, it was No. No. Nono. Nonono. Simple. She just flew. +Collected every bit of life she had made, all the parts of her that were precious and fine and beautiful, and carried, +pushed, dragged them through the veil, out, away, over there where no one could hurt them. +Over there. Outside this place, where they would be safe. And the hummingbird wings beat on. Sethe paused in her +circle again and looked out the window. She remembered when the yard had a fence with a gate that somebody was +always latching and unlatching in the. time when 124 was busy as a way station. She did not see the whiteboys who +pulled it down, yanked up the posts and smashed the gate leaving 124 desolate and exposed at the very hour when +everybody stopped dropping by. The shoulder weeds of Bluestone Road were all that came toward the house. +When she got back from the jail house, she was glad the fence was gone. That's where they had hitched their horses-- +where she saw, floating above the railing as she squatted in the garden, school- +teacher's hat. By the time she faced him, looked him dead in the eye, she had something in her arms that stopped him in +93 +his tracks. He took a backward step with each jump of the baby heart until finally there were none. +"I stopped him," she said, staring at the place where the fence used to be. "I took and put my babies where they'd be +safe." +The roaring in Paul D's head did not prevent him from hearing the pat she gave to the last word, and it occurred to him +that what she wanted for her children was exactly what was missing in 124: safety. Which was the very first message +he got the day he walked through the door. He thought he had made it safe, had gotten rid of the danger; beat the shit +out of it; run it off the place and showed it and everybody else the difference between a mule and a plow. And because +she had not done it before he got there her own self, he thought it was because she could not do it. That she lived with +124 in helpless, apologetic resignation because she had no choice; that minus husband, sons, mother-in-law, she and her +slow-witted daughter had to live there all alone making do. The prickly, mean-eyed Sweet Home girl he knew as Halle's +girl was obedient (like Halle), shy (like Halle), and work-crazy (like Halle). He was wrong. This here Sethe was new. The +ghost in her house didn't bother her for the very same reason a room-and-board witch with new shoes was welcome. +This here Sethe talked about love like any other woman; talked about baby clothes like any other woman, but what she +meant could cleave the bone. This here Sethe talked about safety with a handsaw. +This here new Sethe didn't know where the world stopped and she began. Suddenly he saw what Stamp Paid wanted +him to see: more important than what Sethe had done was what she claimed. It scared him. +"Your love is too thick," he said, thinking, That bitch is looking at me; she is right over my head looking down through the +floor at me. +"Too thick?" she said, thinking of the Clearing where Baby Suggs' commands knocked the pods off horse +chestnuts. "Love is or it ain't. +Thin love ain't love at all." +"Yeah. It didn't work, did it? Did it work?" he asked. +"It worked," she said. +"How? Your boys gone you don't know where. One girl dead, the other won't leave the yard. How did it work?" +"They ain't at Sweet Home. Schoolteacher ain't got em." +"Maybe there's worse." +"It ain't my job to know what's worse. It's my job to know what is and to keep them away from what I know is terrible. I +did that." +"What you did was wrong, Sethe." +"I should have gone on back there? Taken my babies back there?" +"There could have been a way. Some other way." +"What way?" +"You got two feet, Sethe, not four," he said, and right then a forest sprang up between them; trackless and quiet. +Later he would wonder what made him say it. The calves of his youth? or the conviction that he was being observed +through the ceiling? How fast he had moved from his shame to hers. From his cold-house secret straight to her too-thick +love. +Meanwhile the forest was locking the distance between them, giving it shape and heft. +94 +He did not put his hat on right away. First he fingered it, deciding how his going would be, how to make it an exit not +an escape. And it was very important not to leave without looking. He stood up, turned and looked up the white stairs. +She was there all right. Standing straight as a line with her back to him. He didn't rush to the door. He moved slowly and +when he got there he opened it before asking Sethe to put supper aside for him because he might be a little late getting +back. Only then did he put on his hat. +Sweet, she thought. He must think I can't bear to hear him say it. That after all I have told him and after telling me how +many feet I have, "goodbye" would break me to pieces. Ain't that sweet. +"So long," she murmured from the far side of the trees. +Book Two +Chapter 19 +124 WAS LOUD. Stamp Paid could hear it even from the road. +He walked toward the house holding his head as high as possible so nobody looking could call him a sneak, although +his worried mind made him feel like one. Ever since he showed that newspaper clipping to Paul D and learned that he'd +moved out of 124 that very day, Stamp felt uneasy. Having wrestled with the question of whether or not to tell a man +about his woman, and having convinced +himself that he should, he then began to worry about Sethe. Had he stopped the one shot she had of the happiness a +good man could bring her? +Was she vexed by the loss, the free and unasked-for revival of gossip by the man who had helped her cross the river and +who was her friend as well as Baby Suggs'? +"I'm too old," he thought, "for clear thinking. I'm too old and I seen too much." He had insisted on privacy during the +revelation at the slaughter yard--now he wondered whom he was protecting. +Paul D was the only one in town who didn't know. How did information that had been in the newspaper become a +secret that needed to be whispered in a pig yard? A secret from whom? Sethe, that's who. He'd gone behind her back, +like a sneak. But sneaking was his job--his life; though always for a clear and holy purpose. Before the War all he did +was sneak: runaways into hidden places, secret information to public places. Underneath his legal vegetables were the +contraband humans that he ferried across the river. Even the pigs he worked in the spring served his purposes. Whole +families lived on the bones and guts he distributed to them. He wrote their letters and read to them the ones they +received. He knew who had dropsy and who needed stovewood; which children had a gift and which needed correction. +He knew the secrets of the Ohio River and its banks; empty houses and full; the best dancers, the worst speakers, those +with beautiful voices and those who could not carry a tune. There was nothing interesting between his legs, but he +remembered when there had been--when that drive drove the driven--and that was why he considered long and hard +before opening his wooden box and searching for the eighteen-year-old clipping to show Paul D as proof. +Afterward--not before--he considered Sethe's feelings in the matter. +And it was the lateness of this consideration that made him feel so bad. Maybe he should have left it alone; maybe +Sethe would have gotten around to telling him herself; maybe he was not the high minded Soldier of Christ he thought +he was, but an ordinary, plain meddler who had interrupted something going along just fine for the sake of truth and +forewarning, things he set much store by. Now 124 was back like it was before Paul D came to town--worrying Sethe and +Denver with a pack of haunts he could hear from the road. +Even if Sethe could deal with the return of the spirit, Stamp didn't believe her daughter could. Denver needed somebody +normal in her life. By luck he had been there at her very birth almost--before she knew she was alive--and it made him +partial to her. It was seeing her, alive, don't you know, and looking healthy four weeks later that pleased him so much he +95 +gathered all he could carry of the best blackberries in the county and stuck two in her mouth first, before he presented +the difficult harvest to Baby Suggs. To this day he believed his berries (which sparked the feast and the wood chopping +that followed) were the reason Denver was still alive. Had he not been there, chopping firewood, Sethe would have +spread her baby brains on the planking. Maybe he should have thought of Denver, if not Sethe, before he gave Paul +D the news that ran him off, the one normal somebody in the girl's life since Baby Suggs died. And right there was the +thorn. +Deeper and more painful than his belated concern for Denver or Sethe, scorching his soul like a silver dollar in a fool's +pocket, was the memory of Baby Suggs--the mountain to his sky. It was the memory of her and the honor that was her +due that made him walk straight-necked into the yard of 124, although he heard its voices from the road. +He had stepped foot in this house only once after the Misery (which is what he called Sethe's rough response to the +Fugitive Bill) and that was to carry Baby Suggs, holy, out of it. When he picked her up in his arms, she looked to him like +a gift, and he took the pleasure she would have knowing she didn't have to grind her hipbone anymore--that at last +somebody carried bar. Had she waited just a little she would have seen the end of the War, its short, flashy results. They +could have celebrated together; gone to hear the great sermons preached on the occasion. As it was, he went alone +from house to joyous house drinking what was offered. But she hadn't waited and he attended her funeral more put out +with her than bereaved. Sethe and her daughter were dry-eyed on that occasion. +Sethe had no instructions except "Take her to the Clearing," which he tried to do, but was prevented by some rule the +whites had invented about where the dead should rest. Baby Suggs went down next to the baby with its throat cut--a +neighborliness that Stamp wasn't sure had Baby Suggs' approval. +The setting-up was held in the yard because nobody besides himself would enter 124--an injury Sethe answered with +another by refusing to attend the service Reverend Pike presided over. She went instead to the gravesite, whose silence +she competed with as she stood there not joining in the hymns the others sang with all their hearts. +That insult spawned another by the mourners: back in the yard of 124, they ate the food they brought and did not touch +Sethe's, who did not touch theirs and forbade Denver to. So Baby Suggs, holy, having devoted her freed life to harmony, +was buried amid a regular dance of pride, fear, condemnation and spite. Just about everybody in town was longing for +Sethe to come on difficult times. Her outrageous claims, her self-sufficiency seemed to demand it, and Stamp Paid, who +had not felt a trickle of meanness his whole adult life, wondered if some of the "pride goeth before a fall" expectations +of the townsfolk had rubbed off on him anyhow--which would explain why he had not considered Sethe's feelings or +Denver's needs when he showed Paul D the clipping. +He hadn't the vaguest notion of what he would do or say when and if Sethe opened the door and turned her eyes on +his. He was willing to offer her help, if she wanted any from him, or receive her anger, if she harbored any against him. +Beyond that, he trusted his instincts to right what he may have done wrong to Baby Suggs' kin, and to guide him in and +through the stepped-up haunting 124 was subject to, as evidenced by the voices he heard from the road. Other than +that, he would rely on the power of Jesus Christ to deal with things older, but not stronger, than He Himself was. +What he heard, as he moved toward the porch, he didn't understand. +Out on Bluestone Road he thought he heard a conflagration of hasty voices--loud, urgent, all speaking at once so he +could not make out what they were talking about or to whom. The speech wasn't +nonsensical, exactly, nor was it tongues. But something was wrong with the order of the words and he couldn't describe +or cipher it to save his life. All he could make out was the word mine. The rest of it stayed outside his mind's reach. Yet +he went on through. +When he got to the steps, the voices drained suddenly to less than a whisper. It gave him pause. They had become +an occasional mutter-- like the interior sounds a woman makes when she believes she is alone and unobserved at her +work: a sth when she misses the needle's eye; a soft moan when she sees another chip in her one good platter; the low, +friendly argument with which she greets the hens. Nothing fierce or startling. Just that eternal, private conversation that +takes place between women and their tasks. +96 +Stamp Paid raised his fist to knock on the door he had never knocked on (because it was always open to or for him) and +could not do it. Dispensing with that formality was all the pay he expected from Negroes in his debt. Once Stamp Paid +brought you a coat, got the message to you, saved your life, or fixed the cistern he took the liberty of walking in your +door as though it were his own. Since all his visits were beneficial, his step or holler through a doorway got a bright +welcome. Rather than forfeit the one privilege he claimed for himself, he lowered his hand and left the porch. +Over and over again he tried it: made up his mind to visit Sethe; broke through the loud hasty voices to the mumbling +beyond it and stopped, trying to figure out what to do at the door. Six times in as many days he abandoned his normal +route and tried to knock at 124. But the coldness of the gesture--its sign that he was indeed a stranger at the gate-- +overwhelmed him. Retracing his steps in the snow, he sighed. Spirit willing; flesh weak. +While Stamp Paid was making up his mind to visit 124 for Baby Suggs' sake, Sethe was trying to take her advice: to lay +it all down, sword and shield. Not just to acknowledge the advice Baby Suggs gave her, but actually to take it. Four +days after Paul D reminded her of how many feet she had, Sethe rummaged among the shoes of strangers to find the +ice skates she was sure were there. Digging in the heap she despised herself for having been so trusting, so quick to +surrender at the stove while Paul D kissed her back. She should have known that he would behave like everybody else +in town once he knew. The twenty-eight days of having women friends, a mother in-law, and all her children together; +of being part of a neighborhood; of, in fact, having neighbors at all to call her own--all that was long gone and would +never come back. No more dancing in the Clearing or happy feeds. No more discussions, stormy or quiet, about the true +meaning of the Fugitive Bill, the Settlement Fee, God's Ways and Negro pews; antislavery, manumission, skin voting, +Republicans, Dred Scott, book learning, Sojourner's high-wheeled buggy, the Colored Ladies of Delaware, Ohio, and +the other weighty issues that held them in chairs, scraping the floorboards or pacing them in agony or exhilaration. No +anxious wait for the North Star or news of a beat-off. No sighing at a new betrayal or handclapping at a small victory. +Those twenty-eight happy days were followed by eighteen years of disapproval and a solitary life. Then a few months +of the sun splashed life that the shadows holding hands on the road promised her; tentative greetings from other +coloredpeople in Paul D's company; a bed life for herself. Except for +Denver's friend, every bit of it had disappeared. Was that the pattern? she wondered. Every eighteen or twenty years +her unlivable life would be interrupted by a short-lived glory? +Well, if that's the way it was--that's the way it was. +She had been on her knees, scrubbing the floor, Denver trailing her with the drying rags, when Beloved appeared +saying, "What these do?" On her knees, scrub brush in hand, she looked at the girl and the skates she held up. Sethe +couldn't skate a lick but then and there she decided to take Baby Suggs' advice: lay it all down. She left the bucket where +it was. Told Denver to get out the shawls and started searching for the other skates she was certain were in that heap +somewhere. Anybody feeling sorry for her, anybody wandering by to peep in and see how she was getting on (including +Paul D) would discover that the woman junkheaped for the third time because she loved her children--that woman was +sailing happily on a frozen creek. +Hurriedly, carelessly she threw the shoes about. She found one blade--a man's. +"Well," she said. "We'll take turns. Two skates on one; one skate on one; and shoe slide for the other." +Nobody saw them falling. +Holding hands, bracing each other, they swirled over the ice. +Beloved wore the pair; Denver wore one, step-gliding over the treacherous ice. Sethe thought her two shoes would hold +and anchor her. +She was wrong. Two paces onto the creek, she lost her balance and landed on her behind. The girls, screaming with +laughter, joined her on the ice. Sethe struggled to stand and discovered not only that she could do a split, but that it +hurt. Her bones surfaced in unexpected places and so did laughter. Making a circle or a line, the three of them could not +97 +stay upright for one whole minute, but nobody saw them falling. +Each seemed to be helping the other two stay upright, yet every tumble doubled their delight. The live oak and soughing +pine on the banks enclosed them and absorbed their laughter while they fought gravity for each other's hands. Their +skirts flew like wings and their skin turned pewter in the cold and dying light. +Nobody saw them falling. +Exhausted finally they lay down on their backs to recover breath. +The sky above them was another country. Winter stars, close enough to lick, had come out before sunset. For a +moment, looking up, Sethe entered the perfect peace they offered. Then Denver stood up and tried for a long, +independent glide. The tip of her single skate hit an ice bump, and as she fell, the flapping of her arms was so wild and +hopeless that all three--Sethe, Beloved and Denver herself--laughed till they coughed. Sethe rose to her hands and +knees, laughter still shaking her chest, making +her eyes wet. She stayed that way for a while, on all fours. But when her laughter died, the tears did not and it was some +time before Beloved or Denver knew the difference. When they did they touched her lightly on the shoulders. +Walking back through the woods, Sethe put an arm around each girl at her side. Both of them had an arm around her +waist. Making their way over hard snow, they stumbled and had to hold on tight, but nobody saw them fall. +Inside the house they found out they were cold. They took off their shoes, wet stockings, and put on dry woolen +ones. Denver fed the fire. Sethe warmed a pan of milk and stirred cane syrup and vanilla into it. Wrapped in quilts and +blankets before the cooking stove, they drank, wiped their noses, and drank again. +"We could roast some taters," said Denver. +"Tomorrow," said Sethe. "Time to sleep." +She poured them each a bit more of the hot sweet milk. The stovefire roared. +"You finished with your eyes?" asked Beloved. +Sethe smiled. "Yes, I'm finished with my eyes. Drink up. Time for bed." +But none of them wanted to leave the warmth of the blankets, the fire and the cups for the chill of an unheated bed. +They went on sipping and watching the fire. +When the click came Sethe didn't know what it was. Afterward it was clear as daylight that the click came at the very +beginning-- a beat, almost, before it started; before she heard three notes; before the melody was even clear. Leaning +forward a little, Beloved was humming softly. +It was then, when Beloved finished humming, that Sethe recalled the click--the settling of pieces into places designed +and made especially for them. No milk spilled from her cup because her hand was not shaking. She simply turned her +head and looked at Beloved's profile: the chin, mouth, nose, forehead, copied and exaggerated in the huge shadow the +fire threw on the wall behind her. Her hair, which Denver had braided into twenty or thirty plaits, curved toward her +shoulders like arms. From where she sat Sethe could not examine it, not the hairline, nor the eyebrows, the lips, nor... +"All I remember," Baby Suggs had said, "is how she loved the burned bottom of bread. Her little hands I wouldn't know +em if they slapped me." +.. the birthmark, nor the color of the gums, the shape of her ears, nor... +"Here. Look here. This is your ma'am. If you can't tell me by my face, look here." +.. the fingers, nor their nails, nor even... +98 +But there would be time. The click had clicked; things were where they ought to be or poised and ready to glide in. +"I made that song up," said Sethe. "I made it up and sang it to my children. Nobody knows that song but me and my +children." +Beloved turned to look at Sethe. "I know it," she said. +A hobnail casket of jewels found in a tree hollow should be fondled before it is opened. Its lock may have rusted or +broken away from the clasp. Still you should touch the nail heads, and test its weight. No smashing with an ax head +before it is decently exhumed from the grave that has hidden it all this time. No gasp at a miracle that is truly miraculous +because the magic lies in the fact that you knew it was there for you all along. +Sethe wiped the white satin coat from the inside of the pan, brought pillows from the keeping room for the girls' heads. +There was no tremor in her voice as she instructed them to keep the fire--- if not, come on upstairs. +With that, she gathered her blanket around her elbows and asc. ended the lily-white stairs like a bride. Outside, snow +solidified itself into graceful forms. The peace of winter stars seemed permanent. +Fingering a ribbon and smelling skin, Stamp Paid approached 12 4 again. +"My marrow is tired," he thought. "I been tired all my days, bone-tired, but now it's in the marrow. Must be what Baby +Suggs felt when she lay down and thought about color for the rest of her life." When she told him what her aim was, he +thought she was ashamed and too shamed to say so. Her authority in the pulpit, her dance in the Clearing, her powerful +Call (she didn't deliver sermons or preach--insisting she was too ignorant for that--she called and the hearing heard)- +-all that had been mocked and rebuked by the bloodspill in her backyard. God puzzled her and she was too ashamed +of Him to say so. Instead she told Stamp she was going to bed to think about the colors of things. He tried to dissuade +her. Sethe was in jail with her nursing baby, the one he had saved. Her sons were holding hands in the yard, terrified of +letting go. Strangers and familiars were stopping by to hear how it went one more time, and suddenly Baby declared +peace. She just up and quit. By the time Sethe was released she had exhausted blue and was well on her way to yellow. +At first he would see her in the yard occasionally, or delivering food to the jail, or shoes in town. Then less and less. He +believed then that shame put her in the bed. Now, eight years after her contentious funeral and eighteen years after +the Misery, he changed his mind. Her marrow was tired and it was a testimony to the heart that fed it that it took eight +years to meet finally the color she was hankering after. The onslaught of her fatigue, like his, was sudden, but lasted for +years. After sixty years of losing children to the people who chewed up her life and spit it out like a fish bone; after five +years of freedom given to her by her last child, who bought her future with his, exchanged it, so to speak, so she could +have one whether he did or not--to lose him too; to acquire a daughter and grandchildren and see that daughter slay the +children (or try to); to belong to a community of other free Negroes--to love and +be loved by them, to counsel and be counseled, protect and be protected, feed and be fed--and then to have that +community step back and hold itself at a distance---well, it could wear out even a Baby Suggs, holy. +"Listen here, girl," he told her, "you can't quit the Word. It's given to you to speak. You can't quit the Word, I don't care +what all happen to you." +They were standing in Richmond Street, ankle deep in leaves. +Lamps lit the downstairs windows of spacious houses and made the early evening look darker than it was. The odor +of burning leaves was brilliant. Quite by chance, as he pocketed a penny tip for a delivery, he had glanced across the +street and recognized the skipping woman as his old friend. He had not seen her in weeks. Quickly he crossed the street, +scuffing red leaves as he went. When he stopped her with a greeting, she returned it with a face knocked clean of +interest. She could have been a plate. A carpetbag full of shoes in her hand, she waited for him to begin, lead or share a +conversation. +If there had been sadness in her eyes he would have understood it; but indifference lodged where sadness should have +99 +been. +"You missed the Clearing three Saturdays running," he told her. +She turned her head away and scanned the houses along the street. +"Folks came," he said. +"Folks come; folks go," she answered. +"Here, let me carry that." He tried to take her bag from her but she wouldn't let him. +"I got a delivery someplace long in here," she said. "Name of Tucker." +"Yonder," he said. "Twin chestnuts in the yard. Sick, too." +They walked a bit, his pace slowed to accommodate her skip. +"Well?" +"Well, what?" +"Saturday coming. You going to Call or what?" +"If I call them and they come, what on earth I'm going to say?" +"Say the Word!" He checked his shout too late. Two whitemen burning leaves turned their heads in his direction. +Bending low he whispered into her ear, "The Word. The Word." +"That's one other thing took away from me," she said, and that was when he exhorted her, pleaded with her not to quit, +no matter what. The Word had been given to her and she had to speak it. +Had to. +They had reached the twin chestnuts and the white house that stood behind them. +"See what I mean?" he said. "Big trees like that, both of em together ain't got the leaves of a young birch." +"I see what you mean," she said, but she peered instead at the white house. +"You got to do it," he said. "You got to. Can't nobody Call like you. You have to be there." +"What I have to do is get in my bed and lay down. I want to fix on something harmless in this world." +"What world you talking about? Ain't nothing harmless down here." +"Yes it is. Blue. That don't hurt nobody. Yellow neither." +"You getting in the bed to think about yellow?" +"I likes yellow." +"Then what? When you get through with blue and yellow, then what?" +"Can't say. It's something can't be planned." +"You blaming God," he said. "That's what you doing." +"No, Stamp. I ain't." +100 +"You saying the whitefolks won? That what you saying?" +"I'm saying they came in my yard." +"You saying nothing counts." +"I'm saying they came in my yard." +"Sethe's the one did it." +"And if she hadn't?" +"You saying God give up? Nothing left for us but pour out our own blood?" +"I'm saying they came in my yard." +"You punishing Him, ain't you." +"Not like He punish me." +"You can't do that, Baby. It ain't right." +"Was a time I knew what that was." +"You still know." +"What I know is what I see: a nigger woman hauling shoes." +"Aw, Baby." He licked his lips searching with his tongue for the words that would turn her around, lighten her load. "We +have to be steady. 'These things too will pass.' What you looking for? A miracle?" +"No," she said. "I'm looking for what I was put here to look for: the back door," and skipped right to it. They didn't let her +in. +They took the shoes from her as she stood on the steps and she rested her hip on the railing while the whitewoman +went looking for the dime. +Stamp Paid rearranged his way. Too angry to walk her home and listen to more, he watched her for a moment and +turned to go before the alert white face at the window next door had come to any conclusion. +Trying to get to 124 for the second time now, he regretted that conversation: the high tone he took; his refusal to see +the effect of marrow weariness in a woman he believed was a mountain. Now, too late, he understood her. The heart +that pumped out love, the mouth that spoke the Word, didn't count. They came in her yard anyway and she could not +approve or condemn Sethe's rough choice. +One or the other might have saved her, but beaten up by the claims of both, she went to bed. The whitefolks had tired +her out at last. +And him. Eighteen seventy-four and whitefolks were still on the loose. Whole towns wiped clean of Negroes; eighty- +seven lynchings in one year alone in Kentucky; four colored schools burned to the ground; grown men whipped like +children; children whipped like adults; black women raped by the crew; property taken, necks broken. +He smelled skin, skin and hot blood. The skin was one thing, but human blood cooked in a lynch fire was a whole other +thing. +The stench stank. Stank up off the pages of the North Star, out of the mouths of witnesses, etched in crooked +handwriting in letters delivered by hand. Detailed in documents and petitions full of whereas and presented to any +legal body who'd read it, it stank. But none of that had worn out his marrow. None of that. It was the ribbon. Tying his +101 +flatbed up on the bank of the Licking River, securing it the best he could, he caught sight of something red on its bottom. +Reaching for it, he thought it was a cardinal feather stuck to his boat. He tugged and what came loose in his hand was a +red ribbon knotted around a curl of wet woolly hair, clinging still to its bit of scalp. He untied the ribbon and put it in his +pocket, dropped the curl in the weeds. On the way home, he stopped, short of breath and dizzy. He +waited until the spell passed before continuing on his way. A moment later, his breath left him again. This time he sat +down by a fence. +Rested, he got to his feet, but before he took a step he turned to look back down the road he was traveling and said, to +its frozen mud and the river beyond, "What are these people? You tell me, Jesus. What are they?" +When he got to his house he was too tired to eat the food his sister and nephews had prepared. He sat on the porch in +the cold till way past dark and went to his bed only because his sister's voice calling him was getting nervous. He kept +the ribbon; the skin smell nagged him, and his weakened marrow made him dwell on Baby Suggs' wish to consider what +in the world was harmless. He hoped she stuck to blue, yellow, maybe green, and never fixed on red. +Mistaking her, upbraiding her, owing her, now he needed to let her know he knew, and to get right with her and her kin. +So, in spite of his exhausted marrow, he kept on through the voices and tried once more to knock at the door of 124. +This time, although he couldn't cipher but one word, he believed he knew who spoke them. +The people of the broken necks, of fire-cooked blood and black girls who had lost their ribbons. +What a roaring. +Sethe had gone to bed smiling, eager to lie down and unravel the proof for the conclusion she had already leapt to. +Fondle the day and circumstances of Beloved's arrival and the meaning of that kiss in the Clearing. She slept instead +and woke, still smiling, to a snow bright morning, cold enough to see her breath. She lingered a moment to collect the +courage to throw off the blankets and hit a chilly floor. +For the first time, she was going to be late for work. +Downstairs she saw the girls sleeping where she'd left them, but back to back now, each wrapped tight in blankets, +breathing into their pillows. The pair and a half of skates were lying by the front door, the stockings hung on a nail +behind the cooking stove to dry had not. +Sethe looked at Beloved's face and smiled. +Quietly, carefully she stepped around her to wake the fire. First a bit of paper, then a little kindlin--not too much--just a +taste until it was strong enough for more. She fed its dance until it was wild and fast. When she went outside to collect +more wood from the shed, she did not notice the man's frozen footprints. She crunched around to the back, to the cord +piled high with snow. After scraping it clean, she filled her arms with as much dry wood as she could. She even looked +straight at the shed, smiling, smiling at the things she would not have to remember now. Thinking, "She ain't even mad +with me. +Not a bit." +Obviously the hand-holding shadows she had seen on the road were not Paul D, Denver and herself, but "us three." +The three holding on to each other skating the night before; the three sipping flavored milk. And since that was so-- +if her daughter could come back home from the timeless place--certainly her sons could, and would, come back from +wherever they had gone to. +Sethe covered her front teeth with her tongue against the cold. +Hunched forward by the burden in her arms, she walked back around the house to the porch--not once noticing the +frozen tracks she stepped in. +102 +Inside, the girls were still sleeping, although they had changed positions while she was gone, both drawn to the fire. +Dumping the armload into the woodbox made them stir but not wake. Sethe started the cooking stove as quietly as she +could, reluctant to wake the sisters, happy to have them asleep at her feet while she made breakfast. Too bad she would +be late for work---too, too bad. Once in sixteen years? +That's just too bad. +She had beaten two eggs into yesterday's hominy, formed it into patties and fried them with some ham pieces before +Denver woke completely and groaned. +"Back stiff?" +"Ooh yeah." +"Sleeping on the floor's supposed to be good for you." +"Hurts like the devil," said Denver. +"Could be that fall you took." +Denver smiled. "That was fun." She turned to look down at +Beloved snoring lightly. "Should I wake her?" +"No, let her rest." +"She likes to see you off in the morning." +I'll make sure she does," said Sethe, and thought, Be nice to think first, before I talk to her, let her know I know. Think +about all I ain't got to remember no more. Do like Baby said: Think on it then lay it down--for good. Paul D convinced me +there was a world out there and that I could live in it. Should have known better. Did know better. Whatever is going on +outside my door ain't for me. +The world is in this room. This here's all there is and all there needs to be. +They ate like men, ravenous and intent. Saying little, content with the company of the other and the opportunity to look +in her eyes. +When Sethe wrapped her head and bundled up to go to town, it was already midmorning. And when she left the house +she neither saw the prints nor heard the voices that ringed 124 like a noose. +Trudging in the ruts left earlier by wheels, Sethe was excited to giddiness by the things she no longer had to remember. +I don't have to remember nothing. I don't even have to explain. +She understands it all. I can forget how Baby Suggs' heart collapsed; how we agreed it was consumption without a sign +of it in the world. +Her eyes when she brought my food, I can forget that, and how she told me that Howard and Buglar were all right +but wouldn't let go each other's hands. Played that way: stayed that way especially in their sleep. She handed me +the food from a basket; things wrapped small enough to get through the bars, whispering news: Mr. Bodwin going +to see the judge--in chambers, she kept on saying, in chambers, like I knew what it meant or she did. The Colored +Ladies of Delaware, Ohio, had drawn up a petition to keep me from being hanged. That two white preachers had come +round and wanted to talk to me, pray for me. That a newspaperman came too. She told me the news and I told her I +needed something for the rats. She wanted Denver out and slapped her palms when I wouldn't let her go. "Where your +earrings?" she said. I'll hold em for you." I told her the jailer took them, to protect me from myself. He thought I could +do some harm with the wire. Baby Suggs covered her mouth with her hand. "Schoolteacher left town," she said. "Filed a +103 +claim and rode on off. They going to let you out for the burial," she said, "not the funeral, just the burial," and they did. +The sheriff came with me and looked away when I fed Denver in the wagon. Neither Howard nor Buglar would let me +near them, not even to touch their hair. I believe a lot of folks were there, but I just saw the box. Reverend Pike spoke +in a real loud voice, but I didn't catch a word---except the first two, and three months later when Denver was ready for +solid food and they let me out for good, I went and got you a gravestone, but I didn't have money enough for the carving +so I exchanged (bartered, you might say) what I did have and I'm sorry to this day I never thought to ask him for the +whole thing: all I heard of what Reverend Pike said. +Dearly Beloved, which is what you are to me and I don't have to be sorry about getting only one word, and I don't +have to remember the slaughterhouse and the Saturday girls who worked its yard. I can forget that what I did changed +Baby Suggs' life. No Clearing, no company. Just laundry and shoes. I can forget it all now because as soon as I got the +gravestone in place you made your presence known in the house and worried us all to distraction. I didn't understand it +then. I thought you were mad with me. And now I know that if you was, you ain't now because you came back here to +me and I was right all along: there is no world outside my door. I only need to know one thing. How bad is the scar? +As Sethe walked to work, late for the first time in sixteen years and wrapped in a timeless present, Stamp Paid fought +fatigue and the habit of a lifetime. Baby Suggs refused to go to the Clearing because she believed they had won; he +refused to acknowledge any such victory. Baby had no back door; so he braved the cold and a wall of talk to knock on +the one she did have. He clutched the red ribbon in his pocket for strength. Softly at first, then harder. At the last he +banged furiously-disbelieving it could happen. That the door of a house with coloredpeople in it did not fly open in his +presence. +He went to the window and wanted to cry. Sure enough, there they were, not a one of them heading for the door. +Worrying his scrap of ribbon to shreds, the old man turned and went down the steps. +Now curiosity joined his shame and his debt. Two backs curled away from him as he looked in the window. One had +a head he recognized; the other troubled him. He didn't know her and didn't know anybody it could be. Nobody, but +nobody visited that house. +After a disagreeable breakfast he went to see Ella and John to find out what they knew. Perhaps there he could find +out if, after all these years of clarity, he had misnamed himself and there was yet another debt he owed. Born Joshua, +he renamed himself when he handed over his wife to his master's son. Handed her over in the sense that he did not +kill anybody, thereby himself, because his wife demanded he stay alive. Otherwise, she reasoned, where and to whom +could she return when the boy was through? With that gift, he decided that he didn't owe anybody anything. Whatever +his obligations were, that act paid them off. He thought it would make him rambunctious, renegade--a drunkard even, +the debtlessness, and in a way it did. +But there was nothing to do with it. Work well; work poorly. Work a little; work not at all. Make sense; make none. +Sleep, wake up; like somebody, dislike others. It didn't seem much of a way to live and it brought him no satisfaction. So +he extended this debtlessness to other people by helping them pay out and off whatever they owed in misery. Beaten +runaways? He ferried them and rendered them paid for; gave them their own bill of sale, so to speak. "You paid it; now +life owes you." And the receipt, as it were, was a welcome door that he never had to knock on, like John and Ella's in +front of which he stood and said, "Who in there?" only once and she was pulling on the hinge. +"where you been keeping yourself? I told John must be cold if Stamp stay inside." +"Oh, I been out." He took off his cap and massaged his scalp. +"Out where? Not by here." Ella hung two suits of underwear on a line behind the stove. +"Was over to Baby Suggs' this morning." +"What you want in there?" asked Ella. "Somebody invite you in?" +"That's Baby's kin. I don't need no invite to look after her people." +104 +"Sth." Ella was unmoved. She had been Baby Suggs' friend and Sethe's too till the rough time. Except for a nod at the +carnival, she hadn't given Sethe the time of day. +"Somebody new in there. A woman. Thought you might know who is she." +"Ain't no new Negroes in this town I don't know about," she said. "what she look like? You sure that wasn't Denver?" +"I know Denver. This girl's narrow." +"You sure?" +"I know what I see." +"Might see anything at all at 124." +"True." +"Better ask Paul D," she said. +"Can't locate him," said Stamp, which was the truth although his efforts to find Paul D had been feeble. He wasn't ready +to confront the man whose life he had altered with his graveyard information. +"He's sleeping in the church," said Ella. +"The church!" Stamp was shocked and very hurt. +"Yeah. Asked Reverend Pike if he could stay in the cellar." +"It's cold as charity in there!" +"I expect he knows that." +"What he do that for?" +"Hes a touch proud, seem like." +"He don't have to do that! Any number'll take him in." +Ella turned around to look at Stamp Paid. "Can't nobody read minds long distance. All he have to do is ask somebody." +"Why? Why he have to ask? Can't nobody offer? What's going on? Since when a blackman come to town have to sleep +in a cellar like a dog?" +"Unrile yourself, Stamp." +"Not me. I'm going to stay riled till somebody gets some sense and leastway act like a Christian." +"It's only a few days he been there." +"Shouldn't be no days! You know all about it and don't give him a hand? That don't sound like you, Ella. Me and you +been pulling coloredfolk out the water more'n twenty years. Now you tell me you can't offer a man a bed? A working +man, too! A man what can pay his own way." +"He ask, I give him anything." +"Why's that necessary all of a sudden?" +"I don't know him all that well." +105 +"You know he's colored!" +"Stamp, don't tear me up this morning. I don't feel like it." +"It's her, ain't it?" +"Her who?" +"Sethe. He took up with her and stayed in there and you don't want nothing to--" +"Hold on. Don't jump if you can't see bottom." +"Girl, give it up. We been friends too long to act like this." +"Well, who can tell what all went on in there? Look here, I don't know who Sethe is or none of her people." +"What?!" +"All I know is she married Baby Suggs' boy and I ain't sure I know that. Where is he, huh? Baby never laid eyes on her till +John carried her to the door with a baby I strapped on her chest." +"I strapped that baby! And you way off the track with that wagon. +Her children know who she was even if you don't." +"So what? I ain't saying she wasn't their ma'ammy, but who's to say they was Baby Suggs' grandchildren? How she get +on board and her husband didn't? And tell me this, how she have that baby in the woods by herself? Said a whitewoman +come out the trees and helped her. Shoot. You believe that? A whitewoman? Well, I know what kind of white that was." +"Aw, no, Ella." +"Anything white floating around in the woods---if it ain't got a shotgun, it's something I don't want no part of!" +"You all was friends." +"Yeah, till she showed herself." +"Ella." +"I ain't got no friends take a handsaw to their own children." +"You in deep water, girl." +"Uh uh. I'm on dry land and I'm going to stay there. You the one wet." +"What's any of what you talking got to do with Paul D?" +"What run him off? Tell me that." +"I run him off." +"You?" +"I told him about--I showed him the newspaper, about the-- what Sethe did. Read it to him. He left that very day." +"You didn't tell me that. I thought he knew." +"He didn't know nothing. Except her, from when they was at that place Baby Suggs was at." +106 +"He knew Baby Suggs?" +"Sure he knew her. Her boy Halle too." +"And left when he found out what Sethe did?" +"Look like he might have a place to stay after all." +"What you say casts a different light. I thought--" +But Stamp Paid knew what she thought. +"You didn't come here asking about him," Ela said. "You came about some new girl." +"That's so." +"Well, Paul D must know who she is. Or what she is." +"Your mind is loaded with spirits. Everywhere you look you see one." +"You know as well as I do that people who die bad don't stay in the ground." +He couldn't deny it. Jesus Christ Himself didn't, so Stamp ate a piece of Ella's head cheese to show there were no bad +feelings and set out to find Paul D. He found him on the steps of Holy Redeemer, holding his wrists between his knees +and looking red-eyed. +Sawyer shouted at her when she entered the kitchen, but she just turned her back and reached for her apron. There was +no entry now. +No crack or crevice available. She had taken pains to keep them out, but knew full well that at any moment they could +rock her, rip her from her moorings, send the birds twittering back into her hair. Drain her mother's milk, they had +already done. Divided her back into plant life--that too. Driven her fat-bellied into the woods--they had done that. All +news of them was rot. They buttered Halle's face; gave Paul D iron to eat; crisped Sixo; hanged her own mother. She +didn't want any more news about +whitefolks; didn't want to know what Ella knew and John and Stamp Paid, about the world done up the way whitefolks +loved it. All news of them should have stopped with the birds in her hair. +Once, long ago, she was soft, trusting. She trusted Mrs. Garner and her husband too. She knotted the earrings into her +underskirt to take along, not so much to wear but to hold. Earrings that made her believe she could discriminate among +them. That for every schoolteacher there would be an Amy; that for every pupil there was a Garner, or Bodwin, or even +a sheriff, whose touch at her elbow was gentle and who looked away when she nursed. But she had come to believe +every one of Baby Suggs' last words and buried all recollection of them and luck. Paul D dug it up, gave her back her +body, kissed her divided back, stirred her rememory and brought her more news: of clabber, of iron, of roosters' smiling, +but when he heard her news, he counted her feet and didn't even say goodbye. +"Don't talk to me, Mr. Sawyer. Don't say nothing to me this morning." +"What? What? What? You talking back to me?" +"I'm telling you don't say nothing to me." +"You better get them pies made." +Sethe touched the fruit and picked up the paring knife. +When pie juice hit the bottom of the oven and hissed, Sethe was well into the potato salad. Sawyer came in and +107 +said, "Not too sweet. +You make it too sweet they don't eat it." +"Make it the way I always did." +"Yeah. Too sweet." +None of the sausages came back. The cook had a way with them and Sawyer's Restaurant never had leftover sausage. If +Sethe wanted any, she put them aside soon as they were ready. But there was some passable stew. Problem was, all her +pies were sold too. Only rice pudding left and half a pan of gingerbread that didn't come out right. +Had she been paying attention instead of daydreaming all morning, she wouldn't be picking around looking for her +dinner like a crab. +She couldn't read clock time very well, but she knew when the hands were closed in prayer at the top of the face she +was through for the day. She got a metal-top jar, filled it with stew and wrapped the gingerbread in butcher paper. +These she dropped in her outer skirt pockets and began washing up. None of it was anything like what the cook and +the two waiters walked off with. Mr. Sawyer included midday dinner in the terms of the job--along with $3 .4o a week- +- and she made him understand from the beginning she would take her dinner home. But matches, sometimes a bit of +kerosene, a little salt, butter too--these things she took also, once in a while, and felt ashamed because she could afford +to +buy them; she just didn't want the embarrassment of waiting out back of Phelps store with the others till every white in +Ohio was served before the keeper turned to the cluster of Negro faces looking through a hole in his back door. She was +ashamed, too, because it was stealing and Sixo's argument on the subject amused her but didn't change the way she +felt; just as it didn't change schoolteacher's mind. +"Did you steal that shoat? You stole that shoat." Schoolteacher was quiet but firm, like he was just going through the +motions--not expecting an answer that mattered. Sixo sat there, not even getting up to plead or deny. He just sat +there, the streak-of-lean in his hand, the gristle clustered in the tin plate like gemstones---rough, unpolished, but loot +nevertheless. +"You stole that shoat, didn't you?" +"No. Sir." said Sixo, but he had the decency, to keep his eyes on the meat. +"You telling me you didn't steal it, and I'm looking right at you?" +"No, sir. I didn't steal it." +Schoolteacher smiled. "Did you kill it?" +"Yes, sir. I killed it." +"Did you butcher it?" +"Yes, sir." +"Did you cook it?" +"Yes, sir." +"Well, then. Did you eat it?" +"Yes, sir. I sure did." +108 +"And you telling me that's not stealing?" +"No, sir. It ain't." +"What is it then?" +"Improving your property, sir." +"What?" +"Sixo plant rye to give the high piece a better chance. Sixo take and feed the soil, give you more crop. Sixo take and feed +Sixo give you more work." +Clever, but schoolteacher beat him anyway to show him that definitions belonged to the definers--not the defined. After +Mr. Garner died with a hole in his ear that Mrs. Garner said was an +exploded ear drum brought on by stroke and Sixo said was gunpowder, everything they touched was looked on as +stealing. Not just a rifle of corn, or two yard eggs the hen herself didn't even remember, everything. +Schoolteacher took away the guns from the Sweet Home men and, deprived of game to round out their diet of bread, +beans, hominy, vegetables and a little extra at slaughter time, they began to pilfer in earnest, and it became not only +their right but their obligation. +Sethe understood it then, but now with a paying job and an employer who was kind enough to hire an ex-convict, she +despised herself for the pride that made pilfering better than standing in line at the window of the general store with +all the other Negroes. She didn't want to jostle them or be jostled by them. Feel their judgment or their pity, especially +now. She touched her forehead with the back of her wrist and blotted the perspiration. The workday had come to a +close and already she was feeling the excitement. Not since that other escape had she felt so alive. Slopping the alley +dogs, watching their frenzy, she pressed her lips. Today would be a day she would accept a lift, if anybody on a wagon +offered it. No one would, and for sixteen years her pride had not let her ask. But today. Oh, today. +Now she wanted speed, to skip over the long walk home and be there. +When Sawyer warned her about being late again, she barely heard him. He used to be a sweet man. Patient, tender in +his dealings with his help. But each year, following the death of his son in the War, he grew more and more crotchety. As +though Sethe's dark face was to blame. +"Un huh," she said, wondering how she could hurry tine along and get to the no-time waiting for her. +She needn't have worried. Wrapped tight, hunched forward, as she started home her mind was busy with the things she +could forget. +Thank God I don't have to rememory or say a thing because you know it. All. You know I never would a left you. Never. It +was all I could think of to do. When the train came I had to be ready. +Schoolteacher was teaching us things we couldn't learn. I didn't care nothing about the measuring string. We all laughed +about that-- except Sixo. He didn't laugh at nothing. But I didn't care. Schoolteacher'd wrap that string all over my +head, 'cross my nose, around my behind. Number my teeth. I thought he was a fool. And the questions he asked was the +biggest foolishness of all. +Then me and your brothers come up from the second patch. The first one was close to the house where the quick things +grew: beans, onions, sweet peas. The other one was further down for long-lasting things, potatoes, pumpkin, okra, pork +salad. Not much was up yet down there. It was early still. Some young salad maybe, but that was all. We pulled weeds +and hoed a little to give everything a good start. +After that we hit out for the house. The ground raised up from the second patch. Not a hill exactly but kind of. Enough +109 +for Buglar and Howard to run up and roll down, run up and roll down. That's +the way I used to see them in my dreams, laughing, their short fat legs running up the hill. Now all I see is their backs +walking down the railroad tracks. Away from me. Always away from me. But that day they was happy, running up and +rolling down. It was early still-- the growing season had took hold but not much was up. I remember the peas still had +flowers. The grass was long though, full of white buds and those tall red blossoms people call Diane and something there +with the leastest little bit of blue---light, like a cornflower but pale, pale. Real pale. I maybe should have hurried because +I left you back at the house in a basket in the yard. Away from where the chickens scratched but you never know. +Anyway I took my time getting back but your brothers didn't have patience with me staring at flowers and sky every +two or three steps. They ran on ahead and I let em. Something sweet lives in the air that time of year, and if the breeze +is right, it's hard to stay indoors. When I got back I could hear Howard and Buglar laughing down by the quarters. I put +my hoe down and cut across the side yard to get to you. The shade moved so by the time I got back the sun was shining +right on you. +Right in your face, but you wasn't woke at all. Still asleep. I wanted to pick you up in my arms and I wanted to look at you +sleeping too. +Didn't know which; you had the sweetest face. Yonder, not far, was a grape arbor Mr. Garner made. Always full of big +plans, he wanted to make his own wine to get drunk off. Never did get more than a kettle of jelly from it. I don't think +the soil was right for grapes. Your daddy believed it was the rain, not the soil. Sixo said it was bugs. +The grapes so little and tight. Sour as vinegar too. But there was a little table in there. So I picked up your basket and +carried you over to the grape arbor. Cool in there and shady. I set you down on the little table and figured if I got a piece +of muslin the bugs and things wouldn't get to you. And if Mrs. Garner didn't need me right there in the kitchen, I could +get a chair and you and me could set out there while I did the vegetables. I headed for the back door to get the clean +muslin we kept in the kitchen press. The grass felt good on my feet. +I got near the door and I heard voices. Schoolteacher made his pupils sit and learn books for a spell every afternoon. If it +was nice enough weather, they'd sit on the side porch. All three of em. He'd talk and they'd write. Or he would read and +they would write down what he said. I never told nobody this. Not your pap, not nobody. I almost told Mrs. Garner, but +she was so weak then and getting weaker. This is the first time I'm telling it and I'm telling it to you because it might help +explain something to you although I know you don't need me to do it. To tell it or even think over it. You don't have to +listen either, if you don't want to. But I couldn't help listening to what I heard that day. He was talking to his pupils and I +heard him say, "Which one are you doing?" And one of the boys said, "Sethe." +That's when I stopped because I heard my name, and then I took a few steps to where I could see what they was doing. +Schoolteacher was standing over one of them with one hand behind his back. He licked a forefinger a couple of times +and turned a few pages. Slow. +I was about to turn around and keep on my way to where the muslin was, when I heard him say, "No, no. That's not the +way. I told you to put her human characteristics on the left; her animal ones on +the right. And don't forget to line them up." I commenced to walk backward, didn't even look behind me to find out +where I was headed. +I just kept lifting my feet and pushing back. When I bumped up against a tree my scalp was prickly. One of the dogs was +licking out a pan in the yard. I got to the grape arbor fast enough, but I didn't have the muslin. Flies settled all over your +face, rubbing their hands. +My head itched like the devil. Like somebody was sticking fine needles in my scalp. I never told Halle or nobody. But that +very day I asked Mrs. Garner a part of it. She was low then. Not as low as she ended up, but failing. A kind of bag grew +under her jaw. It didn't seem to hurt her, but it made her weak. First she'd be up and spry in the morning and by the +second milking she couldn't stand up. Next she took to sleeping late. The day I went up there she was in bed the whole +day, and I thought to carry her some bean soup and ask her then. When I opened the bedroom door she looked at me +from underneath her nightcap. Already it was hard to catch life in her eyes. Her shoes and stockings were on the floor so +110 +I knew she had tried to get dressed. +"I brung you some bean soup," I said. +She said, "I don't think I can swallow that." +"Try a bit," I told her. +"Too thick. I'm sure it's too thick." +"Want me to loosen it up with a little water?" +"No. Take it away. Bring me some cool water, that's all." +"Yes, ma'am. Ma'am? Could I ask you something?" +"What is it, Sethe?" +"What do characteristics mean?" +"What?" +"A word. Characteristics." +"Oh." She moved her head around on the pillow. "Features. Who taught you that?" +"I heard the schoolteacher say it." +"Change the water, Sethe. This is warm." +"Yes, ma'am. Features?" +"Water, Sethe. Cool water." +I put the pitcher on the tray with the white bean soup and went downstairs. When I got back with the fresh water I held +her head while she drank. It took her a while because that lump made it hard to swallow. She laid back and wiped her +mouth. The drinking seemed to satisfy her but she frowned and said, "I don't seem able to wake up, Sethe. All I seem to +want is sleep." +"Then do it," I told her. "I'm take care of things." +Then she went on: what about this? what about that? Said she knew Halle was no trouble, but she wanted to know if +schoolteacher was handling the Pauls all right and Sixo. +"Yes, ma'am," I said. "Look like it." +"Do they do what he tells them?" +"They don't need telling." +"Good. That's a mercy. I should be back downstairs in a day or two. I just need more rest. Doctor's due back. Tomorrow, +is it?" +"You said features, ma'am?" +"What?" +"Features?" +111 +"Umm. Like, a feature of summer is heat. A characteristic is a feature. A thing that's natural to a thing." +"Can you have more than one?" +"You can have quite a few. You know. Say a baby sucks its thumb. That's one, but it has others too. Keep Billy away +from Red Corn. Mr. Garner never let her calve every other year. Sethe, you hear me? Come away from that window and +listen." +"Yes, ma'am." +"Ask my brother-in-law to come up after supper." +"Yes, ma'am." +"If you'd wash your hair you could get rid of that lice." +"Ain't no lice in my head, ma'am." +"Whatever it is, a good scrubbing is what it needs, not scratching. +Don't tell me we're out of soap." +"No, ma'am." +"All right now. I'm through. Talking makes me tired." +"Yes, ma'am." +"And thank you, Sethe." +"Yes, ma'am." +You was too little to remember the quarters. Your brothers slept under the window. Me, you and your daddy slept by +the wall. The night after I heard why schoolteacher measured me, I had trouble sleeping. When Halle came in I asked +him what he thought about schoolteacher. He said there wasn't nothing to think about. Said, He's white, ain't he? I said, +But I mean is he like Mr. Garner? +"What you want to know, Sethe?" +"Him and her," I said, "they ain't like the whites I seen before. +The ones in the big place I was before I came here." +"How these different?" he asked me. +"Well," I said, "they talk soft for one thing." +"It don't matter, Sethe. What they say is the same. Loud or soft." +"Mr. Garner let you buy out your mother," I said. +"Yep. He did." +"Well?" +"If he hadn't of, she would of dropped in his cooking stove." +"Still, he did it. Let you work it off." +112 +"Uh huh." +"Wake up, Halle." +"I said, Uh huh." +"He could of said no. He didn't tell you no." +"No, he didn't tell me no. She worked here for ten years. If she worked another ten you think she would've made it out? +I pay him for her last years and in return he got you, me and three more coming up. I got one more year of debt work; +one more. Schoolteacher in there told me to quit it. Said the reason for doing it don't hold. I should do the extra but +here at Sweet Home." +"Is he going to pay you for the extra?" +"Nope." +"Then how you going to pay it off? How much is it?" +"$123 .7o." +"Don't he want it back?" +"He want something." +"What?" +"I don't know. Something, But he don't want me off Sweet Home no more. Say it don't pay to have my labor somewhere +else while the boys is small." +"What about the money you owe?" +"He must have another way of getting it." +"What way?" +"I don't know, Sethe." +"Then the only question is how? How he going get it?" +"No. That's one question. There's one more." +"What's that?" +He leaned up and turned over, touching my cheek with his knuckles. +"The question now is, Who's going buy you out? Or me? Or her?" He pointed over to where you was laying. +"What?" +"If all my labor is Sweet Home, including the extra, what I got left to sell?" +He turned over then and went back to sleep and I thought I wouldn't but I did too for a while. Something he said, maybe, +or something he didn't say woke me. I sat up like somebody hit me, and you woke up too and commenced to cry. I +rocked you some, but there wasn't much room, so I stepped outside the door to walk you. Up and down I went. Up and +down. Everything dark but lamplight in the top window of the house. She must've been up still. I couldn't get out of my +head the thing that woke me up: "While the boys is small." That's what he said and it snapped me awake. They tagged +after me the whole day weeding, milking, getting firewood. +113 +For now. For now. +That's when we should have begun to plan. But we didn't. I don't know what we thought--but getting away was a money +thing to us. +Buy out. Running was nowhere on our minds. All of us? Some? +Where to? How to go? It was Sixo who brought it up, finally, after Paul F. Mrs. Garner sold him, trying to keep things +up. Already she lived two years off his price. But it ran out, I guess, so she wrote schoolteacher to come take over. Four +Sweet Home men and she still believed she needed her brother-in-law and two boys 'cause people said she shouldn't be +alone out there with nothing but Negroes. So he came with a big hat and spectacles and a coach box full of paper. +Talking soft and watching hard. He beat Paul A. Not hard and not long, but it was the first time anyone had, because Mr. +Garner disallowed it. Next time I saw him he had company in the prettiest trees you ever saw. Sixo started watching the +sky. He was the only one who crept at night and Halle said that's how he learned about the train. +"That way." Halle was pointing over the stable. "Where he took my ma'am. Sixo say freedom is that way. A whole train is +going and if we can get there, don't need to be no buyout." +"Train? What's that?" I asked him. +They stopped talking in front of me then. Even Halle. But they whispered among themselves and Sixo watched the sky. +Not the high part, the low part where it touched the trees. You could tell his mind was gone from Sweet Home. +The plan was a good one, but when it came time, I was big with Denver. So we changed it a little. A little. Just enough to +butter Halle's face, so Paul D tells me, and make Sixo laugh at last. +But I got you out, baby. And the boys too. When the signal for the train come, you all was the only ones ready. I couldn't +find Halle or nobody. I didn't know Sixo was burned up and Paul D dressed in a collar you wouldn't believe. Not till +later. So I sent you all to the wagon with the woman who waited in the corn. Ha ha. No notebook for my babies and +no measuring string neither. What I had to get through later I got through because of you. Passed right by those boys +hanging in the trees. One had Paul A's shirt on but not his feet or his head. I walked right on by because only me had +your milk, and God do what He would, I was going to get it to you. You remember that, don't you; that I did? That when I +got here I had milk enough for all? +One more curve in the road, and Sethe could see her chimney; it wasn't lonely-looking anymore. The ribbon of smoke +was from a fire that warmed a body returned to her--just like it never went away, never needed a headstone. And the +heart that beat inside it had not for a single moment stopped in her hands. +She opened the door, walked in and locked it tight behind her. +The day Stamp Paid saw the two backs through the window and then hurried down the steps, he believed the +undecipherable language clamoring around the house was the mumbling of the black and angry dead. Very few had died +in bed, like Baby Suggs, and none that he knew of, including Baby, had lived a livable life. Even the educated colored: the +long-school people, the doctors, the teachers, the paper-writers and businessmen had a hard row to hoe. In addition to +having to use their heads to get ahead, they had the weight of the whole race sitting there. You needed two heads for +that. Whitepeople believed that whatever the manners, under every dark skin was a jungle. Swift unnavigable waters, +swinging screaming baboons, sleeping snakes, red gums ready for their sweet white blood. In a way, he thought, they +were right. The more coloredpeople spent their strength trying to convince them how gentle they were, how clever and +loving, how human, the more they used themselves up to persuade whites of something Negroes believed could not be +questioned, the deeper and more tangled the jungle grew inside. But it wasn't the jungle blacks brought with them to +this place from the other (livable) place. +It was the jungle whitefolks planted in them. And it grew. It spread. +In, through and after life, it spread, until it invaded the whites who had made it. Touched them every one. Changed and +114 +altered them. +Made them bloody, silly, worse than even they wanted to be, so scared were they of the jungle they had made. The +screaming baboon lived under their own white skin; the red gums were their own. +Meantime, the secret spread of this new kind of whitefolks' jungle was hidden, silent, except once in a while when you +could hear its mumbling in places like 124. +Stamp Paid abandoned his efforts to see about Sethe, after the pain of knocking and not gaining entrance, and when he +did, 124 was left to its own devices. When Sethe locked the door, the women inside were free at last to be what they +liked, see whatever they saw and say whatever was on their minds. +Almost. Mixed in with the voices surrounding the house, recognizable but undecipherable to Stamp Paid, were the +thoughts of the women of 124, unspeakable thoughts, unspoken. +Chapter 20 +BELOVED, she my daughtyer. She mine. See. She come back to me of her own free will and I don't have to explain a +thing. I didn't have time to explain before because it had to be done quick. Quick. She had to be safe and I put her where +she would be. But my love was tough and she back now. I knew she would be. Paul D ran her off so she had no choice +but to come back to me in the flesh. I bet you Baby Suggs, on the other side, helped. I won't never let her go. I'll explain +to her, even though I don't have to. Why I did it. How if I hadn't killed her she would have died and that is something I +could not bear to happen to her. When I explain it she'll understand, because she understands everything already. I'll +tend her as no mother ever tended a child, a daughter. Nobody will ever get my milk no more except my own children. +I never had to give it to nobody else-- and the one time I did it was took from me--they held me down and took it. +Milk that belonged to my baby. Nan had to nurse whitebabies and me too because Ma'am was in the rice. The little +whitebabies got it first and I got what was left. Or none. There was no nursing milk to call my own. I know what it is to +be without the milk that belongs to you; to have to fight and holler for it, and to have so little left. i'll tell Beloved about +that; she'll +understand. She my daughter. The one I managed to have milk for and to get it to her even after they stole it; after they +handled me like I was the cow, no, the goat, back behind the stable because it was too nasty to stay in with the horses. +But I wasn't too nasty to cook their food or take care of Mrs. Garner. I tended her like I would have tended my own +mother if she needed me. If they had let her out the rice field, because I was the one she didn't throw away. I couldn't +have done more for that woman than I would my own ma'am if she was to take sick and need me and I'd have stayed +with her till she got well or died. +And I would have stayed after that except Nan snatched me back. +Before I could check for the sign. It was her all right, but for a long time I didn't believe it. I looked everywhere for that +hat. Stuttered after that. Didn't stop it till I saw Halle. Oh, but that's all over now. +I'm here. I lasted. And my girl come home. Now I can look at things again because she's here to see them too. After the +shed, I stopped. +Now, in the morning, when I light the fire I mean to look out the window to see what the sun is doing to the day. Does +it hit the pump handle first or the spigot? See if the grass is gray-green or brown or what. Now I know why Baby Suggs +pondered color her last years. +She never had time to see, let alone enjoy it before. Took her a long time to finish with blue, then yellow, then green. +She was well into pink when she died. I don't believe she wanted to get to red and I understand why because me and +Beloved outdid ourselves with it. +Matter of fact, that and her pinkish headstone was the last color I recall. Now I'll be on the lookout. Think what spring +will he for us! +115 +I'll plant carrots just so she can see them, and turnips. Have you ever seen one, baby? A prettier thing God never made. +White and purple with a tender tail and a hard head. Feels good when you hold it in your hand and smells like the creek +when it floods, bitter but happy. +We'll smell them together, Beloved. Beloved. Because you mine and I have to show you these things, and teach you +what a mother should. +Funny how you lose sight of some things and memory others. I never will forget that whitegirl's hands. Amy. But I forget +the color of all that hair on her head. Eyes must have been gray, though. Seem like I do rememory that. Mrs. Garner's +was light brown--while she was well. Got dark when she took sick. A strong woman, used to be. +And when she talked off her head, she'd say it. "I used to be strong as a mule, Jenny." Called me "Jenny" when she was +babbling, and I can bear witness to that. Tall and strong. The two of us on a cord of wood was as good as two men. +Hurt her like the devil not to be able to raise her head off the pillow. Still can't figure why she thought she needed +schoolteacher, though. I wonder if she lasted, like I did. +Last time I saw her she couldn't do nothing but cry, and I couldn't do a thing for her but wipe her face when I told her +what they done to me. Somebody had to know it. Hear it. Somebody. Maybe she lasted. Schoolteacher wouldn't treat +her the way he treated me. First beating I took was the last. Nobody going to keep me from my children. Hadn't been for +me taking care of her maybe I would have known what happened. Maybe Halle was trying to get to me. I stood by her +bed waiting for her to finish with the slop jar. Then I got her back in the bed she said she was cold. Hot as blazes and she +wanted quilts. Said to shut the window. I told her no. She needed the cover; I needed the breeze. Long as those yellow +curtains flapped, I was all right. Should have heeded her. Maybe what sounded like shots really was. Maybe I would have +seen somebody or something. +Maybe. Anyhow I took my babies to the corn, Halle or no. Jesus. then I heard that woman's rattle. She said, Any more? I +told her I didn't know. She said, I been here all night. Can't wait. I tried to make her. She said, Can't do it. Come on. Hoo! +Not a man around. +Boys scared. You asleep on my back. Denver sleep in my stomach. +Felt like I was split in two. I told her to take you all; I had to go back. In case. She just looked at me. Said, Woman? Bit a +piece of my tongue off when they opened my back. It was hanging by a shred. +I didn't mean to. Clamped down on it, it come right off. I thought, Good God, I'm going to eat myself up. They dug a hole +for my stomach so as not to hurt the baby. Denver don't like for me to talk about it. She hates anything about Sweet +Home except how she was born. But you was there and even if you too young to memory it, I can tell it to you. The +grape arbor. You memory that? I ran so fast. +Flies beat me to you. I would have known right away who you was when the sun blotted out your face the way it did +when I took you to the grape arbor. I would have known at once when my water broke. The minute I saw you sitting +on the stump, it broke. And when I did see your face it had more than a hint of what you would look like after all +these years. I would have known who you were right away because the cup after cup of water you drank proved and +connected to the fact that you dribbled clear spit on my face the day I got to 124. I would have known right off, but Paul +D distracted me. Otherwise I would have seen my fingernail prints right there on your forehead for all the world to see. +From when I held your head up, out in the shed. And later on, when you asked me about the earrings I used to dangle +for you to play with, I would have recognized you right off, except for Paul D. Seems to me he wanted you out from the +beginning, but I wouldn't let him. What you think? And look how he ran when he found out about me and you in the +shed. +Too rough for him to listen to. Too thick, he said. My love was too thick. What he know about it? Who in the world is he +willing to die for? Would he give his privates to a stranger in return for a carving? +Some other way, he said. There must have been some other way. Let schoolteacher haul us away, I guess, to measure +your behind before he tore it up? I have felt what it felt like and nobody walking or stretched out is going to make +116 +you feel it too. Not you, not none of mine, and when I tell you you mine, I also mean I'm yours I wouldn't draw breath +without my children. I told Baby Suggs that and +she got down on her knees to beg God's pardon for me. Still, it's so. My plan was to take us all to the other side where +my own ma'am is. +They stopped me from getting us there, but they didn't stop you from getting here. Ha ha. You came right on back like +a good girl, like a daughter which is what I wanted to be and would have been if my ma'am had been able to get out of +the rice long enough before they hanged her and let me be one. You know what? She'd had the bit so many times she +smiled. When she wasn't smiling she smiled, and I never saw her own smile. I wonder what they was doing when they +was caught. Running, you think? No. Not that. Because she was my ma'am and nobody's ma'am would run off and leave +her daughter, would she? Would she, now? Leave her in the yard with a one-armed woman? Even if she hadn't been +able to suckle the daughter for more than a week or two and had to turn her over to another woman's tit that never had +enough for all. They said it was the bit that made her smile when she didn't want to. Like the Saturday girls working the +slaughterhouse yard. When I came out of jail I saw them plain. +They came when the shift changed on Saturday when the men got paid and worked behind the fences, back of the +outhouse. Some worked standing up, leaning on the toolhouse door. They gave some of their nickels and dimes to the +foreman as they left but by then their smiles was over. Some of them drank liquor to keep from feeling what they felt. +Some didn't drink a drop--just beat it on over to Phelps to pay for what their children needed, or their ma'ammies. +Working a pig yard. That has got to be something for a woman to do, and I got close to it myself when I got out of jail +and bought, so to speak, your name. But the Bodwins got me the cooking job at Sawyer's and left me able to smile on +my own like now when I think about you. +But you know all that because you smart like everybody said because when I got here you was crawling already. +Trying to get up the stairs. Baby Suggs had them painted white so you could see your way to the top in the dark where +lamplight didn't reach. Lord, you loved the stairsteps. +I got close. I got close. To being a Saturday girl. I had already worked a stone mason's shop. A step to the slaughterhouse +would have been a short one. When I put that headstone up I wanted to lay in there with you, put your head on my +shoulder and keep you warm, and I would have if Buglar and Howard and Denver didn't need me, because my mind was +homeless then. I couldn't lay down with you then. No matter how much I wanted to. I couldn't lay down nowhere in +peace, back then. Now I can. I can sleep like the drowned, have mercy. She come back to me, my daughter, and she is +mine. +Chapter 21 +BELOVED is my sister. I swallowed her blood right along with my mother's milk. The first thing I heard after not hearing +anything was the sound of her crawling up the stairs. She was my secret company until Paul D came. He threw her out. +Ever since I was little she was my company and she helped me wait for my daddy. Me and her waited for him. I love my +mother but I know she killed one of her own daughters, and tender as she is with me, I'm scared of her because of it. +She missed killing my brothers and they knew it. They told me die-witch! stories to show me the way to do it, if ever I +needed to. +Maybe it was getting that close to dying made them want to fight the War. That's what they told me they were going +to do. I guess they rather be around killing men than killing women, and there sure is something in her that makes it all +right to kill her own. All the time, I'm afraid the thing that happened +that made it all right for my mother to kill my sister could happen again. I don't know what it is, I don't know who it is, +but maybe there is something else terrible enough to make her do it again. I need to know what that thing might be, but +I don't want to. Whatever it is, it comes from outside this house, outside the yard, and it can come right on in the yard if +it wants to. So I never leave this house and I watch over the yard, so it can't happen again and my mother won't have to +kill me too. +117 +Not since Miss Lady Jones' house have I left 124 by myself. Never. +The only other times--two times in all--I was with my mother. Once to see Grandma Baby put down next to Beloved, +she's my sister. The other time Paul D went too and when we came back I thought the house would still be empty from +when he threw my sister's ghost out. But no. When I came back to 124, there she was. Beloved. +Waiting for me. Tired from her long journey back. Ready to be taken care of; ready for me to protect her. This time I +have to keep my mother away from her. That's hard, but I have to. It's all on me. +I've seen my mother in a dark place, with scratching noises. A smell coming from her dress. I have been with her where +something little watched us from the corners. And touched. Sometimes they touched. +I didn't remember it for a long time until Nelson Lord made me. I asked her if it was true but couldn't hear what she said +and there was no point in going back to Lady Jones if you couldn't hear what anybody said. So quiet. Made me have to +read faces and learn how to figure out what people were thinking, so I didn't need to hear what they said. That's how +come me and Beloved could play together. +Not talking. On the porch. By the creek. In the secret house. It's all on me, now, but she can count on me. I thought she +was trying to kill her that day in the Clearing. Kill her back. But then she kissed her neck and I have to warn her about +that. Don't love her too much. +Don't. Maybe it's still in her the thing that makes it all right to kill her children. I have to tell her. I have to protect her. +She cut my head off every night. Buglar and Howard told me she would and she did. Her pretty eyes looking at me like I +was a stranger. +Not mean or anything, but like I was somebody she found and felt sorry for. Like she didn't want to do it but she had +to and it wasn't going to hurt. That it was just a thing grown-up people do--like pull a splinter out your hand; touch the +corner of a towel in your eye if you get a cinder in it. She looks over at Buglar and Howard--see if they all right. Then she +comes over to my side. I know she'll be good at it, careful. That when she cuts it off it'll be done right; it won't hurt. After +she does it I lie there for a minute with just my head. +Then she carries it downstairs to braid my hair. I try not to cry but it hurts so much to comb it. When she finishes the +combing and starts the braiding, I get sleepy. I want to go to sleep but I know if I do I won't wake up. So I have to stay +awake while she finishes my hair, then I can sleep. The scary part is +waiting for her to come in and do it. Not when she does it, but when I wait for her to. Only place she can't get to me in +the night is Grandma Baby's room. The room we sleep in upstairs used to be where the help slept when whitepeople +lived here. They had a kitchen outside, too. But Grandma Baby turned it into a woodshed and toolroom when she +moved in. +And she boarded up the back door that led to it because she said she didn't want to make that journey no more. She +built around it to make a storeroom, so if you want to get in 124 you have to come by her. Said she didn't care what +folks said about her fixing a two story house up like a cabin where you cook inside. She said they told her visitors with +nice dresses don't want to sit in the same room with the cook stove and the peelings and the grease and the smoke. +She wouldn't pay them no mind, she said. I was safe at night in there with her. All I could hear was me breathing but +sometimes in the day I couldn't tell whether it was me breathing or somebody next to me. I used to watch Here Boy's +stomach go in and out, in and out, to see if it matched mine, holding my breath to get off his rhythm, releasing it to +get on. Just to see whose it was--that sound like when you blow soft in a bottle only regular, regular. Am I making that +sound? Is Howard? Who is? That was when everybody was quiet and I couldn't hear anything they said. I didn't care +either because the quiet let me dream my daddy better. I always knew he was coming. Something was holding him +up. He had a problem with the horse. The river flooded; the boat sank and he had to make a new one. Sometimes it +was a lynch mob or a windstorm. He was coming and it was a secret. I spent all of my outside self loving Ma'am so she +wouldn't kill me, loving her even when she braided my head at night. I never let her know my daddy was coming for me. +Grandma Baby thought he was coming, too. For a while she thought so, then she stopped. I never did. Even when Buglar +118 +and Howard ran away. +Then Paul D came in here. I heard his voice downstairs, and Ma'am laughing, so I thought it was him, my daddy. Nobody +comes to this house anymore. But when I got downstairs it was Paul D and he didn't come for me; he wanted my +mother. At first. Then he wanted my sister, too, but she got him out of here and I'm so glad he's gone. +Now it's just us and I can protect her till my daddy gets here to help me watch out for Ma'am and anything come in the +yard. +My daddy do anything for runny fried eggs. Dip his bread in it. +Grandma used to tell me his things. She said anytime she could make him a plate of soft fried eggs was Christmas, made +him so happy. +She said she was always a little scared of my daddy. He was too good, she said. From the beginning, she said, he was too +good for the world. Scared her. She thought, He'll never make it through nothing. Whitepeople must have thought so +too, because they never got split up. So she got the chance to know him, look after him, and he scared her the way he +loved things. Animals and tools and crops and the alphabet. He could count on paper. The boss taught him. +Offered to teach the other boys but only my daddy wanted it. She said the other boys said no. One of them with a +number for a name said it would change his mind--make him forget things he +shouldn't and memorize things he shouldn't and he didn't want his mind messed up. But my daddy said, If you can't +count they can cheat you. If you can't read they can beat you. They thought that was funny. Grandma said she didn't +know, but it was because my daddy could count on paper and figure that he bought her away from there. And she said +she always wished she could read the Bible like real preachers. So it was good for me to learn how, and I did until it got +quiet and all I could hear was my own breathing and one other who knocked over the milk jug while it was sitting on the +table. Nobody near it. Ma'am whipped Buglar but he didn't touch it. Then it messed up all the ironed clothes and put its +hands in the cake. Look like I was the only one who knew right away who it was. Just like when she came back I knew +who she was too. Not right away, but soon as she spelled her name--not her given name, but the one Ma'am paid the +stonecutter for--I knew. And when she wondered about Ma'am's earrings--something I didn't know about--well, that just +made the cheese more binding: my sister come to help me wait for my daddy. +My daddy was an angel man. He could look at you and tell where you hurt and he could fix it too. He made a hanging +thing for Grandma Baby, so she could pull herself up from the floor when she woke up in the morning, and he made a +step so when she stood up she was level. Grandma said she was always afraid a whiteman would knock her down in +front of her children. She behaved and did everything right in front of her children because she didn't want them to see +her knocked down. She said it made children crazy to see that. +At Sweet Home nobody did or said they would, so my daddy never saw it there and never went crazy and even now I +bet he's trying to get here. If Paul D could do it my daddy could too. Angel man. We should all be together. Me, him and +Beloved. Ma'am could stay or go off with Paul D if she wanted to. Unless Daddy wanted her himself, but I don't think he +would now, since she let Paul D in her bed. +Grandma Baby said people look down on her because she had eight children with different men. Coloredpeople and +whitepeople both look down on her for that. Slaves not supposed to have pleasurable feelings on their own; their bodies +not supposed to be like that, but they have to have as many children as they can to please whoever owned them. Still, +they were not supposed to have pleasure deep down. She said for me not to listen to all that. That I should always listen +to my body and love it. +The secret house. When she died I went there. Ma'am wouldn't let me go outside in the yard and eat with the others. +We stayed inside. That hurt. I know Grandma Baby would have liked the party and the people who came to it, because +she got low not seeing anybody or going anywhere--just grieving and thinking about colors and how she made a mistake. +That what she thought about what the heart and the body could do was wrong. The whitepeople came anyway. In her +yard. She had done everything right and they came in her yard anyway. And she didn't know what to think. All she had +119 +left was her heart and they busted it so even the War couldn't rouse her. +She told me all my daddy's things. How hard he worked to buy her. After the cake was ruined and the ironed clothes all +messed up, and after I heard my sister crawling up the stairs to get back to her bed, she told me my things too. That I +was charmed. My birth was and I got saved all the time. And that I +shouldn't be afraid of the ghost. It wouldn't harm me because I tasted its blood when Ma'am nursed me. She said the +ghost was after Ma'am and her too for not doing anything to stop it. But it would never hurt me. I just had to watch out +for it because it was a greedy ghost and needed a lot of love, which was only natural, considering. And I do. Love her. I +do. +She played with me and always came to be with me whenever I needed her. She's mine, Beloved. She's mine. +Chapter 22 +I am Beloved and she is mine. I see her take flowers away from leaves she puts them in a round basket the leaves are not +for her she fills the basket she opens the grass I would help her but the clouds are in the way how can I say things that +are pictures I am not separate from her there is no place where I stop her face is my own and I want to be there in the +place where her face is and to be looking at it too a hot thing All of it is now it is always now there will never be a time +when I am not crouching and watching others who are crouching too I am always crouching the man on my face is dead +his face is not mine his mouth smells sweet but his eyes are locked some who eat nasty themselves I do not eat the men +without skin bring us their morning water to drink we have none at night I cannot see the dead man on my face daylight +comes through the cracks and I can see his locked eyes I am not big small rats do not wait for us to sleep someone is +thrashing but there is no room to do it in if we had more to drink we could make tears we cannot make sweat or +morning water so the men without skin bring us theirs one time they bring us sweet rocks to suck we are all trying to +leave our bodies behind the man on my face has done it it is hard to make yourself die forever you sleep short and then +return in the beginning we could vomit now we do not now we cannot his teeth are pretty white points someone is +trembling I can feel it over here he is fighting hard to leave his body which is a small bird trembling there is no room to +tremble so he is not able to die my own dead man is pulled away from my face I miss his pretty white points We are not +crouching now we are standing but my legs are like my dead man's eyes I cannot fall because there is no room to the +men without skin are making loud noises I am not dead the bread is sea-colored I am too hungry to eat it the sun closes +my eyes those able to die are in a pile I cannot find my man the one whose teeth I have loved a hot thing the little hill of +dead people a hot thing the men without skin push them through with poles the woman is there with the face I want the +face that is mine they fall into the sea which is the color of the bread she has nothing in her ears if I had the teeth of the +man who died on my face I would bite the circle around her neck bite it away I know she does not like it now there is +room to crouch and to watch the crouching others it is the crouching that is now always now inside the woman with my +face is in the sea a hot thing In the beginning I could see her I could not help her because the clouds were in the way in +the beginning I could see her the shining in her ears she does not like the circle around her neck I know this I look hard at +her so she will know that the clouds are in the way I am sure she saw me I am looking at her see me she empties out her +eyes I am there in the place where her face is and telling her the noisy clouds were in my way she wants her earrings she +wants her round basket I want her face a hot thing in the beginning the women are away from the men and the men are +away from the women storms rock us and mix the men into the women and the women into the men that is when I +begin to be on the back of the man for a long time I see only his neck and his wide shoulders above me I am small I love +him because he has a song when he turned around to die I see the teeth he sang through his singing was soft his singing +is of the place where a woman takes flowers away from their leaves and puts them in a round basket before the clouds +she is crouching near us but I do not see her until he locks his eyes and dies on my face we are that way there is no +breath +coming from his mouth and the place where breath should be is sweet-smelling the others do not know he is dead I +know his song is gone now I love his pretty little teeth instead I cannot lose her again my dead man was in the way like +the noisy clouds when he dies on my face I can see hers she is going to smile at me she is going to her sharp earrings are +120 +gone the men without skin are making loud noises they push my own man through they do not push the woman with +my face through she goes in they do not push her she goes in the little hill is gone she was going to smile at me she was +going to a hot thing They are not crouching now we are they are floating on the water they break up the little hill and +push it through I cannot find my pretty teeth I see the dark face that is going to smile at me it is my dark face that is +going to smile at me the iron circle is around our neck she does not have sharp earrings in her ears or a round basket she +goes in the water with my face I am standing in the rain falling the others are taken I am not taken I am falling like the +rain is I watch him eat inside I am crouching to keep from falling with the rain I am going to be in pieces he hurts where I +sleep he puts his finger there I drop the food and break into pieces she took my face away there is no one to want me to +say me my name I wait on the bridge because she is under it there is night and there is day again again night day night +day I am waiting no iron circle is around my neck no boats go on this water no men without skin my dead man is not +floating here his teeth are down there where the blue is and the grass so is the face I want the face that is going to smile +at me it is going to in the day diamonds are in the water where she is and turtles in the night I hear chewing and +swallowing and laughter it belongs to me she is the laugh I am the laugher I see her face which is mine it is the face that +was going to smile at me in the place where we crouched now she is going to her face comes through the water a hot +thing her face is mine she is not smiling she is chewing and swallowing I have to have my face I go in the grass opens she +opens it I am in the water and she is coming there is no round basket no iron circle around her neck she goes up where +the diamonds are I follow her we are in the diamonds which are her earrings now my face is coming I have to have it I +am looking for the join I am loving my face so much my dark face is close to me I want to join she whispers to me she +whispers I reach for her chewing and swallowing she touches me she knows I want to join she chews and swallows me I +am gone now I am her face my own face has left me I see me swim away a hot thing I see the bottoms of my feet I am +alone I want to be the two of us I want the join I come out of blue water after the bottoms of my feet swim away from +me I come up I need to find a place to be the air is heavy I am not dead I am not there is a house there is what she +whispered to me I am where she told me I am not dead I sit the sun closes my eyes when I open them I see the face I lost +Sethe's is the face that lef me Sethe sees me see her and I see the smile her smiling face is the place for me it is the face I +lost she is my face smiling at me doing it at last a hot thing now we can join a hot thing +Chapter 23 +I AM BELOVED and she is mine. Sethe is the one that picked flowers, yellow flowers in the place before the crouching. +Took them away from their green leaves. They are on the quilt now where we sleep. +She was about to smile at me when the men without skin came and took us up into the sunlight with the dead and +shoved them into the sea. Sethe went into the sea. She went there. They did not push her. +She went there. She was getting ready to smile at me and when she saw the dead people pushed into the sea she went +also and left me there with no face or hers. Sethe is the face I found and lost in the water under the bridge. When I went +in, I saw her face coming to me and it was my face too. I +wanted to join. I tried to join, but she went up into the pieces of light at the top of the water. I lost her again, but I found +the house she whispered to me and there she was, smiling at last. It's good, but I cannot lose her again. All I want to +know is why did she go in the water in the place where we crouched? +Why did she do that when she was just about to smile at me? I wanted to join her in the sea but I could not move; I +wanted to help her when she was picking the flowers, but the clouds of gunsmoke blinded me and I lost her. Three +times I lost her: once with the flowers because of the noisy clouds of smoke; once when she went into the sea instead +of smiling at me; once under the bridge when I went in to j oin her and she came toward me but did not smile. She +whispered to me, chewed me, and swam away. Now I have found her in this house. She smiles at me and it is my own +face smiling. I will not lose her again. She is mine. +Tell me the truth. Didn't you come from the other side? +121 +Yes. I was on the other side. +You came back because of me? +Yes. +You rememory me? +Yes. I remember you. +You never forgot me? +Your face is mine. +Do you forgive me? Will you stay? You safe here now. +Where are the men without skin? +Out there. Way off. +Can they get in here? +No. They tried that once, but I stopped them. They won't ever come back. +One of them was in the house I was in. He hurt me. +They can't hurt us no more. +Where are your earrings? +They took them from me. +The men without skin took them? +Yes. +I was going to help you but the clouds got in the way. +There're no clouds here. +If they put an iron circle around your neck I will bite it away. +Beloved. +I will make you a round basket. +You're back. You're back. +Will we smile at me? +Can't you see I'm smiling? +I love your face. +We played by the creek. +I was there in the water. +In the quiet time, we played. +122 +The clouds were noisy and in the way. +When I needed you, you came to be with me. +I needed her face to smile. +I could only hear breathing. +The breathing is gone; only the teeth are left. +She said you wouldn't hurt me. +She hurt me. +I will protect you. +I want her face. +Don't love her too much. +I am loving her too much. +Watch out for her; she can give you dreams. +She chews and swallows. +Don't fall asleep when she braids your hair. +She is the laugh; I am the laughter. +I watch the house; I watch the yard. +She left me. +Daddy is coming for us. +A hot thing. +Beloved +You are my sister +You are my daughter +You are my face; you are me +I have found you again; you have come back to me +You are my Beloved +You are mine +You are mine +You are mine +I have your milk +I have your smile +123 +I will take care of you +You are my face; I am you. Why did you leave me who am you? +I will never leave you again +Don't ever leave me again +You will never leave me again +You went in the water +I drank your blood +I brought your milk +You forgot to smile +I loved you +You hurt me +You came back to me +You left me +I waited for you +You are mine +You are mine +You are mine +Chapter 24 +IT WAS a tiny church no bigger than a rich man's parlor. The pews had no backs, and since the congregation was also the +choir, it didn't need a stall. Certain members had been assigned the construction of a platform to raise the preacher a +few inches above his congregation, but it was a less than urgent task, since the major elevation, a white oak cross, had +already taken place. Before it was the Church of the Holy Redeemer, it was a dry-goods shop that had no use for side +windows, just front ones for display. These were papered over while members considered whether to paint or curtain +them--how to have privacy without losing the little light that might want to shine on them. In the summer the doors +were left open for ventilation. In winter an iron stove in the aisle did what it could. At the front of the church was a +sturdy porch where customers used to sit, and children laughed at the boy who got his head stuck between the railings. +On a sunny and windless day in January it was actually warmer out there than inside, if the iron stove was cold. The +damp cellar was fairly warm, but there was no light lighting the pallet or the washbasin or the nail from which a man's +clothes could be hung. +And a oil lamp in a cellar was sad, so Paul D sat on the porch steps and got additional warmth from a bottle of liquor +jammed in his coat pocket. Warmth and red eyes. He held his wrist between his knees, not to keep his hands still but +because he had nothing else to hold on to. His tobacco tin, blown open, spilled contents that floated freely and made +him their play and prey. +He couldn't figure out why it took so long. He may as well have jumped in the fire with Sixo and they both could have +had a good laugh. Surrender was bound to come anyway, why not meet it with a laugh, shouting Seven-O! Why not? +Why the delay? He had already seen his brother wave goodbye from the back of a dray, fried chicken in his pocket, tears +124 +in his eyes. Mother. Father. Didn't remember the one. Never saw the other. He was the youngest of three half-brothers +(same mother--different fathers) sold to Garner and kept there, forbidden to leave the farm, for twenty years. Once, in +Maryland, he met four families of slaves who had all been together for a hundred years: great-grands, grands, mothers, +fathers, aunts, uncles, cousins, children. Half white, part white, all black, mixed with Indian. He watched them with awe +and envy, and each time he discovered large families of black people he made them identify over and over who each +was, what relation, who, in fact, belonged to who. +"That there's my auntie. This here's her boy. Yonder is my pap's cousin. My ma'am was married twice--this my half-sister +and these her two children. Now, my wife..." +Nothing like that had ever been his and growing up at Sweet Home he didn't miss it. He had his brothers, two friends, +Baby Suggs in the kitchen, a boss who showed them how to shoot and listened to what they had to say. A mistress who +made their soap and never raised her voice. For twenty years they had all lived in that cradle, until Baby left, Sethe +came, and Halle took her. He made a family with her, and Sixo was hell-bent to make one with the Thirty-Mile Woman. +When Paul D waved goodbye to his oldest brother, the boss was dead, the mistress nervous and the cradle already split. +Sixo said the doctor made Mrs. Garner sick. Said he was giving her to drink what stallions got when they broke a leg +and no gunpowder could be spared, and had it not been for schoolteacher's new rules, he would have told her so. They +laughed at him. Sixo had a knowing tale about everything. Including Mr. Garner's stroke, which he said was a shot in his +ear put there by a jealous neighbor. +"where's the blood?" they asked him. +There was no blood. Mr. Garner came home bent over his mare's neck, sweating and blue-white. Not a drop of blood. +Sixo grunted, the only one of them not sorry to see him go. Later, however, he was mighty sorry; they all were. +"Why she call on him?" Paul D asked. "Why she need the schoolteacher?" +"She need somebody can figure," said Halle. +"You can do figures." +"Not like that." +"No, man," said Sixo. "She need another white on the place." +"What for?" +"What you think? What you think?" +Well, that's the way it was. Nobody counted on Garner dying. +Nobody thought he could. How 'bout that? Everything rested on Garner being alive. Without his life each of theirs fell to +pieces. Now ain't that slavery or what is it? At the peak of his strength, taller than tall men, and stronger than most, they +clipped him, Paul D. +First his shotgun, then his thoughts, for schoolteacher didn't take advice from Negroes. The information they offered +he called backtalk and developed a variety of corrections (which he recorded in his notebook) to reeducate them. He +complained they ate too much, rested too much, talked too much, which was certainly true compared to him, because +schoolteacher ate little, spoke less and rested not at all. Once he saw them playing--a pitching game--and his look +of deeply felt hurt was enough to make Paul D blink. He was as hard on his pupils as he was on them--except for the +corrections. +For years Paul D believed schoolteacher broke into children what Garner had raised into men. And it was that that +made them run off. Now, plagued by the contents of his tobacco tin, he wondered how much difference there really +was between before schoolteacher and after. Garner called and announced them men--but only on Sweet Home, and +by his leave. Was he naming what he saw or creating what he did not? That was the wonder of Sixo, and even Halle; it +125 +was always clear to Paul D that those two were men whether Garner said so or not. It troubled him that, concerning his +own manhood, he could not satisfy himself on that point. Oh, he did manly things, but was that Garner's gift or his own +will? What would he have been anyway--before Sweet Home--without Garner? In Sixo's country, or his mother's? Or, +God help him, on the boat? Did a whiteman saying it make it so? Suppose Garner woke up one morning and changed +his mind? Took the word away. Would they have run then? And if he didn't, would the Pauls have stayed there all their +lives? Why did the brothers need the one whole night to decide? To discuss whether they would join Sixo and Halle. +Because they had been isolated in a wonderful lie, dismissing Halle's and Baby Suggs' life before Sweet Home as bad +luck. Ignorant of or amused by Sixo's dark stories. Protected and convinced they were special. +Never suspecting the problem of Alfred, Georgia; being so in love with the look of the world, putting up with anything +and everything, just to stay alive in a place where a moon he had no right to was nevertheless there. Loving small and in +secret. His little love was a tree, of course, but not like Brother--old, wide and beckoning. +In Alfred, Georgia, there was an aspen too young to call sapling. +Just a shoot no taller than his waist. The kind of thing a man would cut to whip his horse. Song-murder and the aspen. +He stayed alive to sing songs that murdered life, and watched an aspen that confirmed it, and never for a minute did he +believe he could escape. Until it rained. Afterward, after the Cherokee pointed and sent him running toward blossoms, +he wanted simply to move, go, pick up one day and be somewhere else the next. Resigned to life without aunts, cousins, +children. Even a woman, until Sethe. +And then she moved him. Just when doubt, regret and every single unasked question was packed away, long after he +believed he had willed himself into being, at the very time and place he wanted to take root--she moved him. From +room to room. Like a rag doll. +Sitting on the porch of a dry-goods church, a little bit drunk and nothing much to do, he could have these thoughts. +Slow, what-if thoughts that cut deep but struck nothing solid a man could hold on to. So he held his wrists. Passing by +that woman's life, getting in it and letting it get in him had set him up for this fall. Wanting to live out his life with a +whole woman was new, and losing the feeling of it made him want to cry and think deep thoughts that struck nothing +solid. When he was drifting, thinking only about the next meal and night's sleep, when everything was packed tight in his +chest, he had no sense of failure, of things not working out. Anything that worked at all worked out. Now he wondered +what-all went wrong, and starting with the Plan, everything had. It was a good plan, too. +Worked out in detail with every possibility of error eliminated. +Sixo, hitching up the horses, is speaking English again and tells Halle what his Thirty-Mile Woman told him. That seven +Negroes on her place were joining two others going North. That the two others had done it before and knew the way. +That one of the two, a woman, would wait for them in the corn when it was high--one night and half of the next day she +would wait, and if they came she would take them to the caravan, where the others would be hidden. +That she would rattle, and that would be the sign. Sixo was going, his woman was going, and Halle was taking his whole +family. The two Pauls say they need time to think about it. Time to wonder where they will end up; how they will live. +What work; who will take them in; should they try to get to Paul F, whose owner, they remember, lived in something +called the "trace"? It takes them one evening's conversation to decide. +Now all they have to do is wait through the spring, till the corn is as high as it ever got and the moon as fat. +And plan. Is it better to leave in the dark to get a better start, or go at daybreak to be able to see the way better? Sixo +spits at the suggestion. Night gives them more time and the protection of color. +He does not ask them if they are afraid. He manages some dry runs to the corn at night, burying blankets and two knives +near the creek. +Will Sethe be able to swim the creek? they ask him. It will be dry, he says, when the corn is tall. There is no food to put +by, but Sethe says she will get a jug of cane syrup or molasses, and some bread when it is near the time to go. She only +126 +wants to be sure the blankets are where they should be, for they will need them to tie her baby on her back and to cover +them during the journey. There are no clothes other than what they wear. And of course no shoes. The knives will help +them eat, but they bury rope and a pot as well. A good plan. +They watch and memorize the comings and goings of schoolteacher and his pupils: what is wanted when and where; +how long it takes. Mrs. Garner, restless at night, is sunk in sleep all morning. +Some days the pupils and their teacher do lessons until breakfast. +One day a week they skip breakfast completely and travel ten miles to church, expecting a large dinner upon their +return. Schoolteacher writes in his notebook after supper; the pupils clean, mend or sharpen tools. Sethe's work is the +most uncertain because she is on call for Mrs. Garner anytime, including nighttime when the pain or the weakness or +the downright loneliness is too much for her. So: Sixo and the Pauls will go after supper and wait in the creek for the +Thirty Mile Woman. Halle will bring Sethe and the three children before dawn--before the sun, before the chickens and +the milking cow need attention, so by the time smoke should be coming from the cooking stove, they will be in or near +the creek with the others. That way, if Mrs. Garner needs Sethe in the night and calls her, Sethe will be there to answer. +They only have to wait through the spring. +But. Sethe was pregnant in the spring and by August is so heavy with child she may not be able to keep up with the men, +who can carry the children but not her. +But. Neighbors discouraged by Garner when he was alive now feel free to visit Sweet Home and might appear in the +right place at the wrong time. +But. Sethe's children cannot play in the kitchen anymore, so she is dashing back and forth between house and quarters- +fidgety and frustrated trying to watch over them. They are too young for men's work and the baby girl is nine months +old. Without Mrs. Garner's help her work increases as do schoolteacher's demands. +But. After the conversation about the shoat, Sixo is tied up with the stock at night, and locks are put on bins, pens, +sheds, coops, the tackroom and the barn door. There is no place to dart into or congregate. +Sixo keeps a nail in his mouth now, to help him undo the rope when he has to. +But. Halle is told to work his extra on Sweet Home and has no call to be anywhere other than where schoolteacher tells +him. Only Sixo, who has been stealing away to see his woman, and Halle, who has been hired away for years, know what +lies outside Sweet Home and how to get there. +It is a good plan. It can be done right under the watchful pupils and their teacher. +But. They had to alter it--just a little. First they change the leaving. +They memorize the directions Halle gives them. Sixo, needing time to untie himself, break open the door and not disturb +the horses, will leave later, joining them at the creek with the Thirty-Mile Woman. +All four will go straight to the corn. Halle, who also needs more time now, because of Sethe, decides to bring her and +the children at night; not wait till first light. They will go straight to the corn and not assemble at the creek. The corn +stretches to their shoulders--it will never be higher. The moon is swelling. They can hardly harvest, or chop, or clear, +or pick, or haul for listening for a rattle that is not bird or snake. Then one midmorning, they hear it. Or Halle does and +begins to sing it to the others: +"Hush, hush. Somebody's calling my name. Hush, hush. Somebody's calling my name. O my Lord, O my Lord, what shall I +do?" +On his dinner break he leaves the field. He has to. He has to tell Sethe that he has heard the sign. For two successive +nights she has been with Mrs. Garner and he can't chance it that she will not know that this night she cannot be. The +Pauls see him go. From underneath Brother's shade where they are chewing corn cake, they see him, swinging along. +127 +The bread tastes good. They lick sweat from their lips to give it a saltier flavor. Schoolteacher and his pupils are already +at the house eating dinner. Halle swings along. He is not singing now. +Nobody knows what happened. Except for the churn, that was the last anybody ever saw of Halle. What Paul D knew +was that Halle disappeared, never told Sethe anything, and was next seen squatting in butter. Maybe when he got to +the gate and asked to see Sethe, schoolteacher heard a tint of anxiety in his voice--the tint that would make him pick +up his ever-ready shotgun. Maybe Halle made the mistake of saying "my wife" in some way that would put a light in +schoolteacher's eye. Sethe says now that she heard shots, but did not look out the window of Mrs. Garner's bedroom. +But Halle was not killed or wounded that day because Paul D saw him later, after she had run off with no one's help; +after Sixo laughed and his brother disappeared. Saw him greased and flat-eyed as a fish. Maybe schoolteacher shot after +him, shot at his feet, to remind him of the trespass. +Maybe Halle got in the barn, hid there and got locked in with the rest of schoolteacher's stock. Maybe anything. He +disappeared and everybody was on his own. +Paul A goes back to moving timber after dinner. They are to meet at quarters for supper. He never shows up. Paul D +leaves for the creek on time, believing, hoping, Paul A has gone on ahead; certain schoolteacher has learned something. +Paul D gets to the creek and it is as dry as Sixo promised. He waits there with the Thirty-Mile Woman for Sixo and Paul A. +Only Sixo shows up, his wrists bleeding, his tongue licking his lips like a flame. +"You see Paul A?" +"No." +"Halle?" +"No." +"No sign of them?" +"No sign. Nobody in quarters but the children." +"Sethe?" +"Her children sleep. She must be there still." +"I can't leave without Paul A." +"I can't help you." +"Should I go back and look for them?" +"I can't help you." +"What you think?" +"I think they go straight to the corn." +Sixo turns, then, to the woman and they clutch each other and whisper. She is lit now with some glowing, some shining +that comes from inside her. Before when she knelt on creek pebbles with Paul D, she was nothing, a shape in the dark +breathing lightly. +Sixo is about to crawl out to look for the knives he buried. He hears something. He hears nothing. Forget the knives. +Now. The three of them climb up the bank and schoolteacher, his pupils and four other whitemen move toward them. +With lamps. Sixo pushes the Thirty-Mile Woman and she runs further on in the creekbed. +Paul D and Sixo run the other way toward the woods. Both are surrounded and tied. +128 +The air gets sweet then. Perfumed by the things honeybees love. +Tied like a mule, Paul D feels how dewy and inviting the grass is. +He is thinking about that and where Paul A might be when Sixo turns and grabs the mouth of the nearest pointing rifle. +He begins to sing. Two others shove Paul D and tie him to a tree. Schoolteacher is saying, "Alive. Alive. I want him alive." +Sixo swings and cracks the ribs of one, but with bound hands cannot get the weapon in position to use it in any other +way. All the whitemen have to do is wait. For his song, perhaps, to end? Five guns are trained on him while they listen. +Paul D cannot see them when they step away from lamplight. Finally one of them hits Sixo in the head with his rifle, and +when he comes to, a hickory fire is in front of him and he is tied at the waist to a tree. Schoolteacher has changed his +mind: "This one will never be suitable." The song must have convinced him. +The fire keeps failing and the whitemen are put out with themselves at not being prepared for this emergency. They +came to capture, not kill. What they can manage is only enough for cooking hominy. +Dry faggots are scarce and the grass is slick with dew. +By the light of the hominy fire Sixo straightens. He is through with his song. He laughs. A rippling sound like Sethe's sons +make when they tumble in hay or splash in rainwater. His feet are cooking; the cloth of his trousers smokes. He laughs. +Something is funny. Paul D guesses what it is when Sixo interrupts his laughter to call out, "Seven-O! Seven-O!" +Smoky, stubborn fire. They shoot him to shut him up. Have to. +Shackled, walking through the perfumed things honeybees love, Paul D hears the men talking and for the first time +learns his worth. +He has always known, or believed he did, his value--as a hand, a laborer who could make profit on a farm--but now he +discovers his worth, which is to say he learns his price. The dollar value of his weight, his strength, his heart, his brain, his +penis, and his future. +As soon as the whitemen get to where they have tied their horses and mount them, they are calmer, talking among +themselves about the difficulty they face. The problems. Voices remind schoolteacher about the spoiling these particular +slaves have had at Garner's hands. +There's laws against what he done: letting niggers hire out their own time to buy themselves. He even let em have +guns! And you think he mated them niggers to get him some more? Hell no! He planned for them to marry! if that don't +beat all! Schoolteacher sighs, and says doesn't he know it? He had come to put the place aright. Now it faced greater +ruin than what Garner left for it, because of the loss of two niggers, at the least, and maybe three because he is not +sure they will find the one called Halle. The sister-in-law is too weak to help out and doggone if now there ain't a full- +scale stampede on his hands. He would have to trade this here one for $900 if he could get it, and set out to secure the +breeding one, her foal and the other one, if he found him. With the money from "this here one" he could get two young +ones, twelve or fifteen years old. And maybe with the breeding one, her three pickaninnies and whatever the foal might +be, he and his nephews would have seven niggers and Sweet Home would be worth the trouble it was causing him. +"Look to you like Lillian gonna make it?" +"Touch and go. Touch and go." +"You was married to her sister-in-law, wasn't you?" +"I was." +"She frail too?" +"A bit. Fever took her." +129 +"Well, you don't need to stay no widower in these parts." +"My cogitation right now is Sweet Home." +"Can't say as I blame you. That's some spread." +They put a three-spoke collar on him so he can't lie down and they chain his ankles together. The number he heard with +his ear is now in his head. Two. Two? Two niggers lost? Paul D thinks his heart is jumping. They are going to look for +Halle, not Paul A. They must have found Paul A and if a whiteman finds you it means you are surely lost. +Schoolteacher looks at him for a long time before he closes the door of the cabin. Carefully, he looks. Paul D does not +look back. +It is sprinkling now. A teasing August rain that raises expectations it cannot fill. He thinks he should have sung along. +Loud something loud and rolling to go with Sixo's tune, but the words put him off-- he didn't understand the words. +Although it shouldn't have mattered because he understood the sound: hatred so loose it was juba. +The warm sprinkle comes and goes, comes and goes. He thinks he hears sobbing that seems to come from Mrs. Garner's +window, but it could be anything, anyone, even a she-cat making her yearning known. Tired of holding his head up, he +lets his chin rest on the collar and speculates on how he can hobble over to the grate, boil a little water and throw in a +handful of meal. That's what he is doing when Sethe comes in, rain-wet and big-bellied, saying she is going to cut. She +has just come back from taking her children to the corn. +The whites were not around. She couldn't find Halle. Who was caught? Did Sixo get away? Paul A? +He tells her what he knows: Sixo is dead; the Thirty-Mile Woman ran, and he doesn't know what happened to Paul A or +Halle. "Where could he be?" she asks. +Paul D shrugs because he can't shake his head. +"You saw Sixo die? You sure?" +"I'm sure." +"Was he woke when it happened? Did he see it coming?" +"He was woke. Woke and laughing." +"Sixo laughed?" +"You should have heard him, Sethe." +Sethe's dress steams before the little fire over which he is boiling water. It is hard to move about with shackled ankles +and the neck jewelry embarrasses him. In his shame he avoids her eyes, but when he doesn't he sees only black in them- +-no whites. She says she is going, and he thinks she will never make it to the gate, but he doesn't dissuade her. He knows +he will never see her again, and right then and there his heart stopped. +The pupils must have taken her to the barn for sport right afterward, and when she told Mrs. Garner, they took down +the cowhide. +Who in hell or on this earth would have thought that she would cut anyway? They must have believed, what with her +belly and her back, that she wasn't going anywhere. He wasn't surprised to learn +that they had tracked her down in Cincinnati, because, when he thought about it now, her price was greater than his; +property that reproduced itself without cost. +Remembering his own price, down to the cent, that schoolteacher was able to get for him, he wondered what Sethe's +130 +would have been. +What had Baby Suggs' been? How much did Halle owe, still, besides his labor? What did Mrs. Garner get for Paul F? +More than nine hundred dollars? How much more? Ten dollars? Twenty? Schoolteacher would know. He knew the +worth of everything. It accounted for the real sorrow in his voice when he pronounced Sixo unsuitable. +Who could be fooled into buying a singing nigger with a gun? Shouting Seven-O! Seven-O! because his Thirty-Mile +Woman got away with his blossoming seed. What a laugh. So rippling and full of glee it put out the fire. And it was Sixo's +laughter that was on his mind, not the bit in his mouth, when they hitched him to the buckboard. +Then he saw Halle, then the rooster, smiling as if to say, You ain't seen nothing yet. How could a rooster know about +Alfred, Georgia? +Chapter 25 +"HOWDY." +Stamp Paid was still fingering the ribbon and it made a little motion in his pants pocket. +Paul D looked up, noticed the side pocket agitation and snorted. +"I can't read. You got any more newspaper for me, just a waste of time." +Stamp withdrew the ribbon and sat down on the steps. +"No. This here's something else." He stroked the red cloth between forefinger and thumb. "Something else." +Paul D didn't say anything so the two men sat in silence for a few moments. +"This is hard for me," said Stamp. "But I got to do it. Two things I got to say to you. I'm a take the easy one first." +Paul D chuckled. "If it's hard for you, might kill me dead." +"No, no. Nothing like that. I come looking for you to ask your pardon. Apologize." +"For what?" Paul D reached in his coat pocket for his bottle. +"You pick any house, any house where colored live. In all of Cincinnati. Pick any one and you welcome to stay there. I'm +apologizing because they didn't offer or tell you. But you welcome anywhere you want to be. My house is your house +too. John and Ella, Miss Lady, Able Woodruff, Willie Pike-- +anybody. You choose. You ain't got to sleep in no cellar, and I apologize for each and every night you did. I don't know +how that preacher let you do it. I knowed him since he was a boy." +"Whoa, Stamp. He offered." +"Did? Well?" +"Well. I wanted, I didn't want to, I just wanted to be off by myself a spell. He offered. Every time I see him he offers +again." +"That's a load off. I thought everybody gone crazy." +Paul D shook his head. "Just me." +"You planning to do anything about it?" +131 +"Oh, yeah. I got big plans." He swallowed twice from the bottle. +Any planning in a bottle is short, thought Stamp, but he knew from personal experience the pointlessness of telling a +drinking man not to. He cleared his sinuses and began to think how to get to the second thing he had come to say. Very +few people were out today. +The canal was frozen so that traffic too had stopped. They heard the dop of a horse approaching. Its rider sat a high +Eastern saddle but everything else about him was Ohio Valley. As he rode by he looked at them and suddenly reined his +horse, and came up to the path leading to the church. He leaned forward. +"Hey," he said. +Stamp put his ribbon in his pocket. "Yes, sir?" +"I'm looking for a gal name of Judy. Works over by the slaughterhouse." +"Don't believe I know her. No, sir." +"Said she lived on Plank Road." +"Plank Road. Yes, sir. That's up a ways. Mile, maybe." +"You don't know her? Judy. Works in the slaughterhouse." +"No, sir, but I know Plank Road. 'Bout a mile up thataway." +Paul D lifted his bottle and swallowed. The rider looked at him and then back at Stamp Paid. Loosening the right rein, he +turned his horse toward the road, then changed his mind and came back. +"Look here," he said to Paul D. "There's a cross up there, so I guess this here's a church or used to be. Seems to me like +you ought to show it some respect, you follow me?" +"Yes, sir," said Stamp. "You right about that. That's just what I come over to talk to him about. Just that." +The rider clicked his tongue and trotted off. Stamp made small circles in the palm of his left hand with two fingers of his +right. "You got to choose," he said. "Choose anyone. They let you be if you want em to. My house. Ella. Willie Pike. None +of us got much, but all of us got room for one more. Pay a little something when you can, don't when you can't. Think +about it. You grown. I can't make you do what you won't, but think about it." +Paul D said nothing. +"If I did you harm, I'm here to rectify it." +"No need for that. No need at all." +A woman with four children walked by on the other side of the road. She waved, smiling. "Hoo-oo. I can't stop. See you +at meeting." +"I be there," Stamp returned her greeting. "There's another one," he said to Paul D. "Scripture Woodruff, Able's sister. +Works at the brush and tallow factory. You'll see. Stay around here long enough, you'll see ain't a sweeter bunch +of colored anywhere than what's right here. Pride, well, that bothers em a bit. They can get messy when they think +somebody's too proud, but when it comes right down to it, they good people and anyone will take you in." +"What about Judy? She take me in?" +"Depends. What you got in mind?" +"You know Judy?" +132 +"Judith. I know everybody." +"Out on Plank Road?" +"Everybody." +"Well? She take me in?" +Stamp leaned down and untied his shoe. Twelve black buttonhooks, six on each side at the bottom, led to four pairs +of eyes at the top. He loosened the laces all the way down, adjusted the tongue carefully and wound them back again. +When he got to the eyes he rolled the lace tips with his fingers before inserting them. +"Let me tell you how I got my name." The knot was tight and so was the bow. "They called me Joshua," he said. "I +renamed myself," he said, "and I'm going to tell you why I did it," and he told him about Vashti. "I never touched her all +that time. Not once. +Almost a year. We was planting when it started and picking when it stopped. Seemed longer. I should have killed him. +She said no, but I should have. I didn't have the patience I got now, but I figured maybe somebody else didn't have much +patience either--his own wife. Took it in my head to see if she was taking it any better than I was. Vashti and me was +in the fields together in the day and every now and then she be gone all night. I never touched her and damn me if I +spoke three words to her a day. I took any chance I had to get near the great house to see her, the young master's wife. +Nothing but a boy. Seventeen, twenty maybe. I caught sight of her finally, standing in the backyard by the fence with a +glass of water. She was drinking out of it and just gazing out over the yard. I went over. +Stood back a ways and took off my hat. I said, 'Scuse me, miss. Scuse me?' She turned to look. I'm smiling. 'Scuse me. +You seen Vashti? +My wife Vashti?' A little bitty thing, she was. Black hair. Face no bigger than my hand. She said, "What? Vashti?' I +say, 'Yes'm, Vashti. +My wife. She say she owe you all some eggs. You know if she brung em? You know her if you see her. Wear a black +ribbon on her neck.' +She got rosy then and I knowed she knowed. He give Vashti that to wear. A cameo on a black ribbon. She used to put it +on every time she went to him. I put my hat back on. 'You see her tell her I need her. Thank you. Thank you, ma'am.' I +backed off before she could say something. I didn't dare look back till I got behind some trees. +She was standing just as I left her, looking in her water glass. I thought it would give me more satisfaction than it did. I +also thought she might stop it, but it went right on. Till one morning Vashti came in and sat by the window. A Sunday. +We worked our own patches on Sunday. She sat by the window looking out of it. 'I'm back,' she said. +'I'm back, Josh.' I looked at the back of her neck. She had a real small neck. I decided to break it. You know, like a twig-- +just snap it. I been low but that was as low as I ever got." +"Did you? Snap it?" +"Uh uh. I changed my name." +"How you get out of there? How you get up here?" +"Boat. On up the Mississippi to Memphis. Walked from Memphis to Cumberland." +"Vashti too?" +"No. She died." +"Aw, man. Tie your other shoe!" +133 +"What?" +"Tie your goddamn shoe! It's sitting right in front of you! +Tie it!" +"That make you feel better?" +"No." Paul D tossed the bottle on the ground and stared at the golden chariot on its label. No horses. Just a golden coach +draped in blue cloth. +"I said I had two things to say to you. I only told you one. I have to tell you the other." +"I don't want to know it. I don't want to know nothing. Just if Judy will take me in or won't she." +"I was there, Paul D." +"You was where?" +"There in the yard. When she did it." +"Judy?" +"Sethe." +"Jesus." +"It ain't what you think." +"You don't know what I think." +"She ain't crazy. She love those children. She was trying to out hurt the hurter." +"Leave off." +"And spread it." +"Stamp, let me off. I knew her when she was a girl. She scares me and I knew her when she was a girl." +"You ain't scared of Sethe. I don't believe you." +"Sethe scares me. I scare me. And that girl in her house scares me the most." +"Who is that girl? Where she come from?" +"I don't know. Just shot up one day sitting on a stump." +"Huh. Look like you and me the only ones outside 124 lay eyes on her." +"She don't go nowhere. Where'd you see her?" +"Sleeping on the kitchen floor. I peeped in." +"First minute I saw her I didn't want to be nowhere around her. +Something funny about her. Talks funny. Acts funny." Paul D dug his fingers underneath his cap and rubbed the scalp +over his temple. +"She reminds me of something. Something, look like, I'm supposed to remember." +134 +"She never say where she was from? Where's her people?" +"She don't know, or says she don't. All I ever heard her say was something about stealing her clothes and living on a +bridge." +"What kind of bridge?" +"Who you asking?" +"No bridges around here I don't know about. But don't nobody live on em. Under em neither. How long she been over +there with Sethe?" +"Last August. Day of the carnival." +"That's a bad sign. Was she at the carnival?" +"No. When we got back, there she was--'sleep on a stump. Silk dress. Brand-new shoes. Black as oil." +"You don't say? Huh. Was a girl locked up in the house with a whiteman over by Deer Creek. Found him dead last +summer and the girl gone. Maybe that's her. Folks say he had her in there since she was a pup." +"Well, now she's a bitch." +"Is she what run you off? Not what I told you 'bout Sethe?" +A shudder ran through Paul D. A bone-cold spasm that made him clutch his knees. He didn't know if it was bad whiskey, +nights in the cellar, pig fever, iron bits, smiling roosters, fired feet, laughing dead men, hissing grass, rain, apple +blossoms, neck jewelry, Judy in the slaughterhouse, Halle in the butter, ghost-white stairs, chokecherry trees, cameo +pins, aspens, Paul A's face, sausage or the loss of a red, red heart. +"Tell me something, Stamp." Paul D's eyes were rheumy. "Tell me this one thing. How much is a nigger supposed to +take? Tell me. +How much?" +"All he can," said Stamp Paid. "All he can." +"why? Why? Why? Why? Why?" +Book Three +Chapter 26 +124 WAS QUIET. Denver, who thought she knew all about silence, was surprised to learn hunger could do that: quiet +you down and wear you out. Neither Sethe nor Beloved knew or cared about it one way or another. They were too busy +rationing their strength to fight each other. So it was she who had to step off the edge of the world and die because if +she didn't, they all would. The flesh between her mother's forefinger and thumb was thin as china silk and there wasn't +a piece of clothing in the house that didn't sag on her. Beloved held her head up with the palms of her hands, slept +wherever she happened to be, and whined for sweets although she was getting bigger, plumper by the day. Everything +was gone except two laying hens, and somebody would soon have to decide whether an egg every now and then was +135 +worth more than two fried chickens. The hungrier they got, the weaker; the weaker they got, the quieter they were-- +which was better than the furious arguments, the poker slammed up against the wall, all the shouting and crying that +followed that one happy January when they played. Denver had joined in the play, holding back a bit out of habit, even +though it was the most fun she had ever known. +But once Sethe had seen the scar, the tip of which Denver had been looking at whenever Beloved undressed--the little +curved shadow of a smile in the kootchy-kootchy-coo place under her chin--once Sethe saw it, fingered it and closed +her eyes for a long time, the two of them cut Denver out of the games. The cooking games, the sewing games, the hair +and dressing-up games. Games her mother loved so well she took to going to work later and later each day until the +predictable happened: Sawyer told her not to come back. And instead of looking for another job, Sethe played all the +harder with Beloved, who never got enough of anything: lullabies, new stitches, the bottom of the cake bowl, the top +of the milk. If the hen had only two eggs, she got both. It was as though her mother had lost her mind, like Grandma +Baby calling for pink and not doing the things she used to. But different because, unlike Baby Suggs, she cut Denver out +completely. Even the song that she used to sing to Denver she sang for Beloved alone: "High Johnny, wide Johnny, don't +you leave my side, Johnny." +At first they played together. A whole month and Denver loved it. From the night they ice-skated under a star-loaded +sky and drank sweet milk by the stove, to the string puzzles Sethe did for them in afternoon light, and shadow pictures +in the gloaming. In the very teeth of winter and Sethe, her eyes fever bright, was plotting a garden of vegetables and +flowers--talking, talking about what colors it would have. She played with Beloved's hair, braiding, puffing, tying, oiling it +until it made Denver nervous to watch her They changed beds and exchanged clothes. Walked arm in arm and smiled all +the time. +When the weather broke, they were on their knees in the backyard designing a garden in dirt too hard to chop. The +thirty-eight dollars of life savings went to feed themselves with fancy food and decorate themselves with ribbon and +dress goods, which Sethe cut and sewed like they were going somewhere in a hurry. Bright clothes--with blue stripes +and sassy prints. She walked the four miles to John Shillito's to buy yellow ribbon, shiny buttons and bits of black lace. +By the end of March the three of them looked like carnival women with nothing to do. When it became clear that they +were only interested in each other, Denver began to drift from the play, but she watched it, alert for any sign that +Beloved was in danger. Finally convinced there was none, and seeing her mother that happy, that smiling--how could it +go wrong?--she let down her guard and it did. Her problem at first was trying to find out who was to blame. Her eye was +on her mother, for a signal that the thing that was in her was out, and she would kill again. But it was Beloved who made +demands. +Anything she wanted she got, and when Sethe ran out of things to give her, Beloved invented desire. She wanted +Sethe's company for hours to watch the layer of brown leaves waving at them from the bottom of the creek, in the same +place where, as a little girl, Denver played in the silence with her. Now the players were altered. As soon as the thaw +was complete Beloved gazed at her gazing face, rippling, folding, spreading, disappearing into the leaves below. She +flattened herself on the ground, dirtying her bold stripes, and touched the rocking faces with her own. She filled basket +after basket with the first things warmer weather let loose in the ground--dandelions, violets, forsythia--presenting +them to Sethe, who arranged them, stuck them, wound them all over the house. Dressed in Sethe's dresses, she stroked +her skin with the palm of her hand. She imitated Sethe, talked the way she did, laughed her laugh and used her body +the same way down to the walk, the way Sethe moved her hands, sighed through her nose, held her head. Sometimes +coming upon them making men and women cookies or tacking scraps of cloth on Baby Suggs' old quilt, it was difficult for +Denver to tell who was who. +Then the mood changed and the arguments began. Slowly at first. +A complaint from Beloved, an apology from Sethe. A reduction of pleasure at some special effort the older woman +made. Wasn't it too cold to stay outside? Beloved gave a look that said, So what? Was it past bedtime, the light no good +for sewing? Beloved didn't move; said, "Do it," and Sethe complied. She took the best of everything--first. The best chair, +the biggest piece, the prettiest plate, the brightest ribbon for her hair, and the more she took, the more Sethe began +to talk, explain, describe how much she had suffered, been through, for her children, waving away flies in grape arbors, +crawling on her knees to a lean-to. None of which made the impression it was supposed to. Beloved accused her of +136 +leaving her behind. Of not being nice to her, not smiling at her. She said they were the same, had the same face, how +could she have left her? And Sethe cried, saying she never did, or meant to---that she had to get them out, away, that +she had the milk all the time and had the money too for the stone but not enough. That her plan was always that they +would all be together on the other side, forever. Beloved wasn't interested. She said when she cried there was no one. +That dead men lay on top of her. That she had nothing to eat. Ghosts without skin stuck their fingers in her and said +beloved in the dark and bitch in the light. Sethe pleaded for forgiveness, counting, listing again and again her reasons: +that Beloved was more important, meant more to her than her own life. +That she would trade places any day. Give up her life, every minute and hour of it, to take back just one of Beloved's +tears. Did she know it hurt her when mosquitoes bit her baby? That to leave her on the ground to run into the big house +drove her crazy? That before leaving Sweet Home Beloved slept every night on her chest or curled on her back? Beloved +denied it. Sethe never came to her, never said a word to her, never smiled and worst of all never waved goodbye or +even looked her way before running away from her. +When once or twice Sethe tried to assert herself--be the unquestioned mother whose word was law and who knew +what was best--Beloved slammed things, wiped the table clean of plates, threw salt on the floor, broke a windowpane. +She was not like them. She was wild game, and nobody said, Get on out of here, girl, and come back when you get some +sense. Nobody said, You raise your hand to me and I will knock you into the middle of next week. Ax the trunk, the limb +will die. Honor thy mother and father that thy days may be long upon the land which the Lord thy God giveth thee. I will +wrap you round that doorknob, don't nobody work for you and God don't love ugly ways. +No, no. They mended the plates, swept the salt, and little by little it dawned on Denver that if Sethe didn't wake up +one morning and pick up a knife, Beloved might. Frightened as she was by the thing in Sethe that could come out, it +shamed her to see her mother serving a girl not much older than herself. When she saw her carrying out Beloved's night +bucket, Denver raced to relieve her of it. But the pain was unbearable when they ran low on food, and Denver watched +her mother go without--pick-eating around the edges of the table and stove: the hominy that stuck on the bottom; the +crusts and rinds and peelings of things. Once she saw her run her longest finger deep in an empty jam jar before rinsing +and putting it away. +They grew tired, and even Beloved, who was getting bigger, seemed nevertheless as exhausted as they were. In any case +she substituted a snarl or a tooth-suck for waving a poker around and 124 was quiet. +Listless and sleepy with hunger Denver saw the flesh between her mother's forefinger and thumb fade. Saw Sethe's eyes +bright but dead, alert but vacant, paying attention to everything about Beloved--her lineless palms, her forehead, the +smile under her jaw, crooked and much too long--everything except her basket-fat stomach. She also saw the sleeves +of her own carnival shirtwaist cover her fingers; hems that once showed her ankles now swept the floor. She saw +themselves beribboned, decked-out, limp and starving but locked in a love that wore everybody out. Then Sethe spit up +something she had not eaten and it rocked Denver like gunshot. The job she started out with, protecting Beloved from +Sethe, changed to protecting her mother from Beloved. Now it was obvious that her mother could die and leave them +both and what would Beloved do then? Whatever was happening, it only worked with three--not two--and since neither +Beloved nor Sethe seemed to care what the next day might bring (Sethe happy when Beloved was; Beloved lapping +devotion like cream), Denver knew it was on her. She would have to leave the yard; step off the edge of the world, leave +the two behind and go ask somebody for help. +Who would it be? Who could she stand in front of who wouldn't shame her on learning that her mother sat around like a +rag doll, broke down, finally, from trying to take care of and make up for. +Denver knew about several people, from hearing her mother and grandmother talk. But she knew, personally, only two: +an old man with white hair called Stamp and Lady Jones. Well, Paul D, of course. +And that boy who told her about Sethe. But they wouldn't do at all. +Her heart kicked and an itchy burning in her throat made her swallow all her saliva away. She didn't even know which +way to go. When Sethe used to work at the restaurant and when she still had money to shop, she turned right. Back +137 +when Denver went to Lady Jones' school, it was left. +The weather was warm; the day beautiful. It was April and everything alive was tentative. Denver wrapped her hair and +her shoulders. +In the brightest of the carnival dresses and wearing a stranger's shoes, she stood on the porch of 124 ready to be +swallowed up in the world beyond the edge of the porch. Out there where small things scratched and sometimes +touched. Where words could be spoken that would close your ears shut. Where, if you were alone, feeling could +overtake you and stick to you like a shadow. Out there where there were places in which things so bad had happened +that when you went near them it would happen again. Like Sweet Home where time didn't pass and where, like her +mother said, the bad was waiting for her as well. How would she know these places? What was more--much more- +--out there were whitepeople and how could you tell about them? Sethe said the mouth and sometimes the hands. +Grandma Baby said there was no defense--they could prowl at will, change from one mind to another, and even when +they thought they were behaving, it was a far cry from what real humans did. +"They got me out of jail," Sethe once told Baby Suggs. +"They also put you in it," she answered. +"They drove you 'cross the river." +"On my son's back." +"They gave you this house." +"Nobody gave me nothing." +"I got a job from them." +"He got a cook from them, girl." +"Oh, some of them do all right by us." +"And every time it's a surprise, ain't it?" +"You didn't used to talk this way." +"Don't box with me. There's more of us they drowned than there is all of them ever lived from the start of time. Lay +down your sword. +This ain't a battle; it's a rout." +Remembering those conversations and her grandmother's last and final words, Denver stood on the porch in the sun +and couldn't leave it. Her throat itched; her heart kicked--and then Baby Suggs laughed, clear as anything. "You mean I +never told you nothing about Carolina? +About your daddy? You don't remember nothing about how come I walk the way I do and about your mother's feet, not +to speak of her back? I never told you all that? Is that why you can't walk down the steps? My Jesus my." +But you said there was no defense. +"There ain't." +Then what do I do? +"Know it, and go on out the yard. Go on." +* * * +138 +It came back. A dozen years had passed and the way came back. +Four houses on the right, sitting close together in a line like wrens. +The first house had two steps and a rocking chair on the porch; the second had three steps, a broom propped on the +porch beam, two broken chairs and a clump of forsythia at the side. No window at the front. A little boy sat on the +ground chewing a stick. The third house had yellow shutters on its two front windows and pot after pot of green leaves +with white hearts or red. Denver could hear chickens and the knock of a badly hinged gate. At the fourth house the +buds of a sycamore tree had rained down on the roof and made the yard look as though grass grew there. A woman, +standing at the open door, lifted her hand halfway in greeting, then froze it near her shoulder as she leaned forward to +see whom she waved to. Denver lowered her head. Next was a tiny fenced plot with a cow in it. She remembered the +plot but not the cow. Under her headcloth her scalp was wet with tension. Beyond her, voices, male voices, floated, +coming closer with each step she took. Denver kept her eyes on the road in case they were whitemen; in case she was +walking where they wanted to; in case they said something and she would have to answer them. Suppose they flung out +at her, grabbed her, tied her. They were getting closer. Maybe she should cross the road--now. Was the woman who half +waved at her still there in the open door? Would she come to her rescue, or, angry at Denver for not waving back, would +she +withhold her help? Maybe she should turn around, get closer to the waving woman's house. Before she could make up +her mind, it was too late--they were right in front of her. Two men, Negro. Denver breathed. Both men touched their +caps and murmured, "Morning. Morning." Denver believed her eyes spoke gratitude but she never got her mouth open +in time to reply. They moved left of her and passed on. +Braced and heartened by that easy encounter, she picked up speed and began to look deliberately at the neighborhood +surrounding her. +She was shocked to see how small the big things were: the boulder by the edge of the road she once couldn't see over +was a sitting-on rock. Paths leading to houses weren't miles long. Dogs didn't even reach her knees. Letters cut into +beeches and oaks by giants were eye level now. +She would have known it anywhere. The post and scrap-lumber fence was gray now, not white, but she would have +known it anywhere. +The stone porch sitting in a skirt of ivy, pale yellow curtains at the windows; the laid brick path to the front door and +wood planks leading around to the back, passing under the windows where she had stood on tiptoe to see above the sill. +Denver was about to do it again, when she realized how silly it would be to be found once more staring into the parlor +of Mrs. Lady Jones. The pleasure she felt at having found the house dissolved, suddenly, in doubt. Suppose she didn't +live there anymore? Or remember her former student after all this time? What would she say? Denver shivered inside, +wiped the perspiration from her forehead and knocked. +Lady Jones went to the door expecting raisins. A child, probably, from the softness of the knock, sent by its mother with +the raisins she needed if her contribution to the supper was to be worth the trouble. There would be any number of +plain cakes, potato pies. She had reluctantly volunteered her own special creation, but said she didn't have raisins, so +raisins is what the president said would be provided--early enough so there would be no excuses. Mrs. Jones, dreading +the fatigue of beating batter, had been hoping she had forgotten. Her bake oven had been cold all week--getting +it to the right temperature would be awful. Since her husband died and her eyes grew dim, she had let up-to-snuff +housekeeping fall away. She was of two minds about baking something for the church. On the one hand, she wanted to +remind everybody of what she was able to do in the cooking line; on the other, she didn't want to have to. +When she heard the tapping at the door, she sighed and went to it hoping the raisins had at least been cleaned. +She was older, of course, and dressed like a chippy, but the girl was immediately recognizable to Lady Jones. Everybody's +child was in that face: the nickel-round eyes, bold yet mistrustful; the large powerful teeth between dark sculptured lips +that did not cover them. +139 +Some vulnerability lay across the bridge of the nose, above the cheeks. +And then the skin. Flawless, economical--just enough of it to cover the bone and not a bit more. She must be eighteen or +nineteen by now, thought Lady Jones, looking at the face young enough to be twelve. Heavy eyebrows, thick baby lashes +and the unmistakable love call that shimmered around children until they learned better. +"Why, Denver," she said. "Look at you." +Lady Jones had to take her by the hand and pull her in, because the smile seemed all the girl could manage. Other +people said this child was simple, but Lady Jones never believed it. Having taught her, watched her eat up a page, a rule, +a figure, she knew better. +When suddenly she had stopped coming, Lady Jones thought it was the nickel. She approached the ignorant +grandmother one day on the road, a woods preacher who mended shoes, to tell her it was all right if the money was +owed. The woman said that wasn't it; the child was deaf, and deaf Lady Jones thought she still was until she offered her +a seat and Denver heard that. +"It's nice of you to come see me. What brings you?" +Denver didn't answer. +"Well, nobody needs a reason to visit. Let me make us some tea." +Lady Jones was mixed. Gray eyes and yellow woolly hair, every strand of which she hated--though whether it was the +color or the texture even she didn't know. She had married the blackest man she could find, had five rainbow-colored +children and sent them all to Wilberforce, after teaching them all she knew right along with the others who sat in her +parlor. Her light skin got her picked for a coloredgirls', normal school in Pennsylvania and she paid it back by teaching +the unpicked. The children who played in dirt until they were old enough for chores, these she taught. The colored +population of Cincinnati had two graveyards and six churches, but since no school or hospital was obliged to serve them, +they learned and died at home. She believed in her heart that, except for her husband, the whole world (including her +children) despised her and her hair. She had been listening to "all that yellow gone to waste" and "white nigger" since +she was a girl in a houseful of silt-black children, so she disliked everybody a little bit because she believed they hated +her hair as much as she did. With that education pat and firmly set, she dispensed with rancor, was indiscriminately +polite, saving her real affection for the unpicked children of Cincinnati, one of whom sat before her in a dress so loud it +embarrassed the needlepoint chair seat. +"Sugar?" +"Yes. Thank you." Denver drank it all down. +"More?" +"No, ma'am." +"Here. Go ahead." +"Yes, ma'am." +"How's your family, honey?" +Denver stopped in the middle of a swallow. There was no way to tell her how her family was, so she said what was at the +top of her mind. +"I want work, Miss Lady." +"Work?" +140 +"Yes, ma'am. Anything." +Lady Jones smiled. "What can you do?" +"I can't do anything, but I would learn it for you if you have a little extra." +"Extra?" +"Food. My ma'am, she doesn't feel good." +"Oh, baby," said Mrs. Jones. "Oh, baby." +Denver looked up at her. She did not know it then, but it was the word "baby," said softly and with such kindness, +that inaugurated her life in the world as a woman. The trail she followed to get to that sweet thorny place was made +up of paper scraps containing the handwritten names of others. Lady Jones gave her some rice, four eggs and some +tea. Denver said she couldn't be away from home long because of her mother's condition. Could she do chores in the +morning? Lady Jones told her that no one, not herself, not anyone she knew, could pay anybody anything for work they +did themselves. +"But if you all need to eat until your mother is well, all you have to do is say so." She mentioned her church's committee +invented so nobody had to go hungry. That agitated her guest who said, "No, no," as though asking for help from +strangers was worse than hunger. +Lady Jones said goodbye to her and asked her to come back anytime. +"Anytime at all." +Two days later Denver stood on the porch and noticed something lying on the tree stump at the edge of the yard. She +went to look and found a sack of white beans. Another time a plate of cold rabbit meat. One morning a basket of eggs +sat there. As she lifted it, a slip of paper fluttered down. She picked it up and looked at it. +"M. Lucille Williams" was written in big crooked letters. On the back was a blob of flour-water paste. So Denver paid a +second visit to the world outside the porch, although all she said when she returned the basket was "Thank you." +"Welcome," said M. Lucille Williams. +Every now and then, all through the spring, names appeared near or in gifts of food. Obviously for the return of the pan +or plate or basket; but also to let the girl know, if she cared to, who the donor was, because some of the parcels were +wrapped in paper, and though there was nothing to return, the name was nevertheless there. Many had X's with designs +about them, and Lady Jones tried to identify the plate or pan or the covering towel. When she could only guess, Denver +followed her directions and went to say thank you anywaym whether she had the right benefactor or not. When she was +wrong, when the person said, "No, darling. That's not my bowl. Mine's got a blue ring on it," a small conversation took +place. All of them knew her grandmother and some had even danced with her in the Clearing. +Others remembered the days when 124 was a way station, the place they assembled to catch news, taste oxtail soup, +leave their children, cut out a skirt. One remembered the tonic mixed there that cured a relative. One showed her the +border of a pillowslip, the stamens of its pale blue flowers French-knotted in Baby Suggs' kitchen by the light of an oil +lamp while arguing the Settlement Fee. They remembered the party with twelve turkeys and tubs of strawberry smash. +One said she wrapped Denver when she was a single day old and cut shoes to fit her mother's blasted feet. Maybe they +were sorry for her. Or for Sethe. Maybe they were sorry for the years of their own disdain. Maybe they were simply +nice people who could hold meanness toward each other for just so long and when trouble rode bareback among them, +quickly, easily they did what they could to trip him up. In any case, the personal pride, the arrogant claim staked out +at 124 seemed to them to have run its course. They whispered, naturally, wondered, shook their heads. Some even +laughed outright at Denver's clothes of a hussy, but it didn't stop them caring whether she ate and it didn't stop the +pleasure they took in her soft "Thank you." +141 +At least once a week, she visited Lady Jones, who perked up enough to do a raisin loaf especially for her, since Denver +was set on sweet things. She gave her a book of Bible verse and listened while she mumbled words or fairly shouted +them. By June Denver had read and memorized all fifty-two pages--one for each week of the year. +As Denver's outside life improved, her home life deteriorated. If the whitepeople of Cincinnati had allowed Negroes into +their lunatic asylum they could have found candidates in 124. Strengthened by the gifts of food, the source of which +neither Sethe nor Beloved questioned, the women had arrived at a doomsday truce designed by the devil. Beloved sat +around, ate, went from bed to bed. Sometimes she screamed, "Rain! Rain!" and clawed her throat until rubies of blood +opened there, made brighter by her midnight skin. Then Sethe shouted, "No!" and knocked over chairs to get to her and +wipe the jewels away. Other times Beloved curled up on the floor, her wrists between her knees, and stayed there for +hours. Or she would go to the creek, stick her feet in the water and whoosh it up her legs. +Afrerward she would go to Sethe, run her fingers over the woman's teeth while tears slid from her wide black eyes. Then +it seemed to Denver the thing was done: Beloved bending over Sethe looked the mother, Sethe the teething child, for +other than those times when Beloved needed her, Sethe confined herself to a corner chair. The bigger Beloved got, the +smaller Sethe became; the brighter +Beloved's eyes, the more those eyes that used never to look away became slits of sleeplessness. Sethe no longer +combed her hair or splashed her face with water. She sat in the chair licking her lips like a chastised child while Beloved +ate up her life, took it, swelled up with it, grew taller on it. And the older woman yielded it up without a murmur. +Denver served them both. Washing, cooking, forcing, cajoling her mother to eat a little now and then, providing sweet +things for Beloved as often as she could to calm her down. It was hard to know what she would do from minute to +minute. When the heat got hot, she might walk around the house naked or wrapped in a sheet, her belly protruding like +a winning watermelon. +Denver thought she understood the connection between her mother and Beloved: Sethe was trying to make up for +the handsaw; Beloved was making her pay for it. But there would never be an end to that, and seeing her mother +diminished shamed and infuriated her. Yet she knew Sethe's greatest fear was the same one Denver had in the +beginning--that Beloved might leave. That before Sethe could make her understand what it meant--what it took to drag +the teeth of that saw under the little chin; to feel the baby blood pump like oil in her hands; to hold her face so her head +would stay on; to squeeze her so she could absorb, still, the death spasms that shot through that adored body, plump +and sweet with life--Beloved might leave. Leave before Sethe could make her realize that worse than that--far worse- +- was what Baby Suggs died of, what Ella knew, what Stamp saw and what made Paul D tremble. That anybody white +could take your whole self for anything that came to mind. Not just work, kill, or maim you, but dirty you. Dirty you so +bad you couldn't like yourself anymore. Dirty you so bad you forgot who you were and couldn't think it up. And though +she and others lived through and got over it, she could never let it happen to her own. The best thing she was, was her +children. Whites might dirty bet all right, but not her best thing, her beautiful, magical best thing--the part of her that +was cl ean. No undreamable dreams about whether the headless, feetless torso hanging in the tree with a sign on it was +her husband or Paul A; whether the bubbling-hot girls in the colored-school fire set by patriots included her daughter; +whether a gang of whites invaded her daughter's private parts, soiled her daughter's thighs and threw her daughter out +of the wagon. She might have to work the slaughterhouse yard, but not her daughter. +And no one, nobody on this earth, would list her daughter's characteristics on the animal side of the paper. No. Oh no. +Maybe Baby Suggs could worry about it, live with the likelihood of it; Sethe had refused--and refused still. +This and much more Denver heard her say from her corner chair, trying to persuade Beloved, the one and only person +she felt she had to convince, that what she had done was right because it came from true love. +Beloved, her fat new feet propped on the seat of a chair in front of the one she sat in, her unlined hands resting on +her stomach, looked at her. Uncomprehending everything except that Sethe was the woman who took her face away, +leaving her crouching in a dark, dark place, forgetting to smile. +Her father's daughter after all, Denver decided to do the necessary. +142 +Decided to stop relying on kindness to leave something on the stump. She would hire herself out somewhere, and +although she was afraid to leave Sethe and Beloved alone all day not knowing what calamity either one of them would +create, she came to realize that her presence in that house had no influence on what either woman did. She kept them +alive and they ignored her. Growled when they chose; sulked, explained, demanded, strutted, cowered, cried and +provoked each other to the edge of violence, then over. She had begun to notice that even when Beloved was quiet, +dreamy, minding her own business, Sethe got her going again. Whispering, muttering some justification, some bit of +clarifying information to Beloved to explain what it had been like, and why, and how come. It was as though Sethe didn't +really want forgiveness given; she wanted it refused. And Beloved helped her out. +Somebody had to be saved, but unless Denver got work, there would be no one to save, no one to come home to, and +no Denver either. It was a new thought, having a self to look out for and preserve. +And it might not have occurred to her if she hadn't met Nelson Lord leaving his grandmother's house as Denver entered +it to pay a thank you for half a pie. All he did was smile and say, "Take care of yourself, Denver," but she heard it as +though it were what language was made for. The last time he spoke to her his words blocked up her ears. +Now they opened her mind. Weeding the garden, pulling vegetables, cooking, washing, she plotted what to do and how. +The Bodwins were most likely to help since they had done it twice. Once for Baby Suggs and once for her mother. Why +not the third generation as well? +She got lost so many times in the streets of Cincinnati it was noon before she arrived, though she started out at sunrise. +The house sat back from the sidewalk with large windows looking out on a noisy, busy street. The Negro woman who +answered the front door said, "Yes?" +"May I come in?" +"What you want?" +"I want to see Mr. and Mrs. Bodwin." +"Miss Bodwin. They brother and sister." +"Oh." +"What you want em for?" +"I'm looking for work. I was thinking they might know of some." +"You Baby Suggs' kin, ain't you?" +"Yes, ma'am." +"Come on in. You letting in flies." She led Denver toward the kitchen, saying, "First thing you have to know is what door +to knock on." But Denver only half heard her because she was stepping on something soft and blue. All around her was +thick, soft and blue. +Glass cases crammed full of glistening things. Books on tables and shelves. Pearl-white lamps with shiny metal bottoms. +And a smell like the cologne she poured in the emerald house, only better. +"Sit down," the woman said. "You know my name?" +"No, ma'am." +"Janey. Janey Wagon." +"How do you do?" +143 +"Fairly. I heard your mother took sick, that so?" +"Yes, ma'am." +"Who's looking after her?" +"I am. But I have to find work." +Janey laughed. "You know what? I've been here since I was fourteen, and I remember like yesterday when Baby Suggs, +holy, came here and sat right there where you are. Whiteman brought her. That's how she got that house you all live in. +Other things, too." +"Yes, ma'am." +"What's the trouble with Sethe?" Janey leaned against an indoor sink and folded her arms. +It was a little thing to pay, but it seemed big to Denver. Nobody was going to help her unless she told it--told all of it. It +was clear Janey wouldn't and wouldn't let her see the Bodwins otherwise. So Denver told this stranger what she hadn't +told Lady Jones, in return for which Janey admitted the Bodwins needed help, although they didn't know it. She was +alone there, and now that her employers were getting older, she couldn't take care of them like she used to. +More and more she was required to sleep the night there. Maybe she could talk them into letting Denver do the night +shift, come right after supper, say, maybe get the breakfast. That way Denver could care for Sethe in the day and earn a +little something at night, how's that? +Denver had explained the girl in her house who plagued her mother as a cousin come to visit, who got sick too and +bothered them both. Janey seemed more interested in Sethe's condition, and from what Denver told her it seemed the +woman had lost her mind. +That wasn't the Sethe she remembered. This Sethe had lost her wits, finally, as Janey knew she would--trying to do it +all alone with her nose in the air. Denver squirmed under the criticism of her mother, shifting in the chair and keeping +her eyes on the inside sink. Janey Wagon went on about pride until she got to Baby Suggs, for whom she had nothing +but sweet words. "I never went to those woodland services she had, but she was always nice to me. Always. Never be +another like her." +"I miss her too," said Denver. +"Bet you do. Everybody miss her. That was a good woman." +Denver didn't say anything else and Janey looked at her face for a while. "Neither one of your brothers ever come back +to see how you all was?" +"No, ma'am." +"Ever hear from them?" +"No, ma'am. Nothing." +"Guess they had a rough time in that house. Tell me, this here woman in your house. The cousin. She got any lines in her +hands?" +"No," said Denver. +"Well," said Janey. "I guess there's a God after all." +The interview ended with Janey telling her to come back in a few days. She needed time to convince her employers what +they needed: night help because Janey's own family needed her. "I don't want to quit these people, but they can't have +144 +all my days and nights too." +What did Denver have to do at night? +"Be here. In case." +In case what? +Janey shrugged. "In case the house burn down." She smiled then. +"Or bad weather slop the roads so bad I can't get here early enough for them. Case late guests need serving or cleaning +up after. Anything. +Don't ask me what whitefolks need at night." +"They used to be good whitefolks." +"Oh, yeah. They good. Can't say they ain't good. I wouldn't trade them for another pair, tell you that." +With those assurances, Denver left, but not before she had seen, sitting on a shelf by the back door, a blackboy's mouth +full of money. +His head was thrown back farther than a head could go, his hands were shoved in his pockets. Bulging like moons, two +eyes were all the face he had above the gaping red mouth. His hair was a cluster of raised, widely spaced dots made of +nail heads. And he was on his knees. His mouth, wide as a cup, +held the coins needed to pay for a delivery or some other small service, but could just as well have held buttons, pins or +crab-apple jelly. Painted across the pedestal he knelt on were the words "At Yo Service." +The news that Janey got hold of she spread among the other coloredwomen. Sethe's dead daughter, the one whose +throat she cut, had come back to fix her. Sethe was worn down, speckled, dying, spinning, changing shapes and +generally bedeviled. That this daughter beat her, tied her to the bed and pulled out all her hair. It took them days to +get the story properly blown up and themselves agitated and then to calm down and assess the situation. They fell into +three groups: those that believed the worst; those that believed none of it; and those, like Ella, who thought it through. +"Ella. What's all this I'm hearing about Sethe?" +"Tell me it's in there with her. That's all I know." +"The daughter? The killed one?" +"That's what they tell me." +"How they know that's her?" +"It's sitting there. Sleeps, eats and raises hell. Whipping Sethe every day." +"I'll be. A baby?" +"No. Grown. The age it would have been had it lived." +"You talking about flesh?" +"I'm talking about flesh." +"whipping her?" +"Like she was batter." +145 +"Guess she had it coming." +"Nobody got that coming." +"But, Ella--" +"But nothing. What's fair ain't necessarily right." +"You can't just up and kill your children." +"No, and the children can't just up and kill the mama." +It was Ella more than anyone who convinced the others that rescue was in order. She was a practical woman who +believed there was a root either to chew or avoid for every ailment. Cogitation, as she called it, clouded things and +prevented action. Nobody loved her and she wouldn't have liked it if +they had, for she considered love a serious disability. Her puberty was spent in a house where she was shared by father +and son, whom she called "the lowest yet." It was "the lowest yet" who gave her a disgust for sex and against whom +she measured all atrocities. A killing, a kidnap, a rape--whatever, she listened and nodded. Nothing compared to "the +lowest yet." She understood Sethe's rage in the shed twenty years ago, but not her reaction to it, which Ella thought was +prideful, misdirected, and Sethe herself too complicated. When she got out of jail and made no gesture toward anybody, +and lived as though she were alone, Ella junked her and wouldn't give her the time of day. +The daughter, however, appeared to have some sense after all. +At least she had stepped out the door, asked or the help she needed and wanted work. When Ella heard 124 was +occupied by something or-other beating up on Sethe, it infuriated her and gave her another opportunity to measure +what could very well be the devil himself against "the lowest yet." There was also something very personal in her fury. +Whatever Sethe had done, Ella didn't like the idea of past errors taking possession of the present. Sethe's crime was +staggering and her pride outstripped even that; but she could not countenance the possibility of sin moving on in the +house, unleashed and sassy. +Daily life took as much as she had. The future was sunset; the past something to leave behind. And if it didn't stay +behind, well, you might have to stomp it out. Slave life; freed life--every day was a test and a trial. Nothing could be +counted on in a world where even when you were a solution you were a problem. "Sufficient unto the day is the evil +thereof," and nobody needed more; nobody needed a grown-up evil sitting at the table with a grudge. As long as the +ghost showed out from its ghostly place--shaking stuff, crying, smashing and such--Ella respected it. But if it took flesh +and came in her world, well, the shoe was on the other foot. She didn't mind a little communication between the two +worlds, but this was an invasion. +"Shall we pray?" asked the women. +"Uh huh," said Ella. "First. Then we got to get down to business." +The day Denver was to spend her first night at the Bodwins', Mr. +Bodwin had some business on the edge of the city and told Janey he would pick the new girl up before supper. Denver +sat on the porch steps with a bundle in her lap, her carnival dress sun-faded to a quieter rainbow. She was looking to the +right, in the direction Mr. +Bodwin would be coming from. She did not see the women approaching, accumulating slowly in groups of twos +and threes from the left. Denver was looking to the right. She was a little anxious about whether she would prove +satisfactory to the Bodwins, and uneasy too because she woke up crying from a dream about a running pair of shoes. +The sadness of the dream she hadn't been able to shake, and the heat oppressed her as she went about the chores. Far +too early she wrapped a nightdress and hairbrush into a bundle. Nervous, she fidgeted the knot and looked to the right. +146 +Some brought what they could and what they believed would work. Stuffed in apron pockets, strung around their necks, +lying in the space between their breasts. Others brought Christian faith--as shield and sword. Most brought a little of +both. They had no idea what they would do once they got there. They just started out, walked down Bluestone Road and +came together at the agreed-upon time. +The heat kept a few women who promised to go at home. Others who believed the story didn't want any part of the +confrontation and wouldn't have come no matter what the weather. And there were those like Lady Jones who didn't +believe the story and hated the ignorance of those who did. So thirty women made up that company and walked slowly, +slowly toward 124. +It was three in the afternoon on a Friday so wet and hot Cincinnati's stench had traveled to the country: from the canal, +from hanging meat and things rotting in jars; from small animals dead in the fields, town sewers and factories. The +stench, the heat, the moisture--- trust the devil to make his presence known. Otherwise it looked almost like a regular +workday. They could have been going to do the laundry at the orphanage or the insane asylum; corn shucking at the +mill; or to dean fish, rinse offal, cradle whitebabies, sweep stores, scrape hog skin, press lard, case-pack sausage or hide +in tavern kitchens so whitepeople didn't have to see them handle their food. But not today. +When they caught up with each other, all thirty, and arrived at 12 4, the first thing they saw was not Denver sitting on +the steps, but themselves. Younger, stronger, even as little girls lying in the grass asleep. Catfish was popping grease in +the pan and they saw themselves scoop German potato salad onto the plate. Cobbler oozing purple syrup colored their +teeth. They sat on the porch, ran down to the creek, teased the men, hoisted children on their hips or, if they were the +children, straddled the ankles of old men who held their little hands while giving them a horsey ride. Baby Suggs laughed +and skipped among them, urging more. Mothers, dead now, moved their shoulders to mouth harps. The fence they had +leaned on and climbed over was gone. The stump of the butternut had split like a fan. But there they were, young and +happy, playing in Baby Suggs' yard, not feeling the envy that surfaced the next day. +Denver heard mumbling and looked to the left. She stood when she saw them. They grouped, murmuring and +whispering, but did not step foot in the yard. Denver waved. A few waved back but came no closer. Denver sat back +down wondering what was going on. A woman dropped to her knees. Half of the others did likewise. Denver saw +lowered heads, but could not hear the lead prayer--only the earnest syllables of agreement that backed it: Yes, yes, yes, +oh yes. +Hear me. Hear me. Do it, Maker, do it. Yes. Among those not on their knees, who stood holding 124 in a fixed glare, was +Ella, trying to see through the walls, behind the door, to what was really in there. +Was it true the dead daughter come back? Or a pretend? Was it whipping Sethe? Ella had been beaten every way but +down. She remembered the bottom teeth she had lost to the brake and the scars from the bell were thick as rope +around her waist. She had delivered, but would not nurse, a hairy white thing, fathered by "the lowest yet." It lived +five days never making a sound. The idea of that pup coming back to whip her too set her jaw working, and then Ella +hollered. +Instantly the kneelers and the standers joined her. They stopped praying and took a step back to the beginning. In the +beginning there were no words. In the beginning was the sound, and they all knew what that sound sounded like. +Edward Bodwin drove a cart down Bluestone Road. It displeased him a bit because he preferred his figure astride +Princess. Curved over his own hands, holding the reins made him look the age he was. +But he had promised his sister a detour to pick up a new girl. He didn't have to think about the way--he was headed for +the house he was born in. Perhaps it was his destination that turned his thoughts to time--the way it dripped or ran. +He had not seen the house for thirty years. Not the butternut in front, the stream at the rear nor the block house in +between. Not even the meadow across the road. +Very few of the interior details did he remember because he was three years old when his family moved into town. +But he did remember that the cooking was done behind the house, the well was forbidden to play near, and that +women died there: his mother, grandmother, an aunt and an older sister before he was born. The men (his father and +147 +grandfather) moved with himself and his baby sister to Court Street sixty-seven years ago. The land, of course, eighty +acres of it on both sides of Bluestone, was the central thing, but he felt something sweeter and deeper about the house +which is why he rented it for a little something if he could get it, but it didn't trouble him to get no rent at all since the +tenants at least kept it from the disrepair total abandonment would permit. +There was a time when he buried things there. Precious things he wanted to protect. As a child every item he owned +was available and accountable to his family. Privacy was an adult indulgence, but when he got to be one, he seemed not +to need it. +The horse trotted along and Edward Bodwin cooled his beautiful mustache with his breath. It was generally agreed +upon by the women in the Society that, except for his hands, it was the most attractive feature he had. Dark, velvety, its +beauty was enhanced by his strong clean-shaven chin. But his hair was white, like his sister's--and had been since he was +a young man. It made him the most visible and memorable person at every gathering, and cartoonists had fastened onto +the theatricality of his white hair and big black mustache whenever they depicted local political antagonism. Twenty +years ago when the Society was at its height in opposing slavery, it was as though his coloring was itself the heart of the +matter. The "bleached nigger" was what his enemies called him, and on a trip to Arkansas, some Mississippi rivermen, +enraged by the Negro boatmen they competed with, had caught him and shoe-blackened his face and his hair. Those +heady days were gone now; what remained was the sludge of ill will; dashed hopes and difficulties beyond repair. A +tranquil Republic? +Well, not in his lifetime. +Even the weather was getting to be too much for him. He was either too hot or freezing, and this day was a blister. He +pressed his hat down to keep the sun from his neck, where heatstroke was a real possibility. Such thoughts of mortality +were not new to him (he was over seventy now), but they still had the power to annoy. As he drew closer to the old +homestead, the place that continued to surface in +his dreams, he was even more aware of the way time moved. Measured by the wars he had lived through but not fought +in (against the Miami, the Spaniards, the Secessionists), it was slow. But measured by the burial of his private things it +was the blink of an eye. +Where, exactly, was the box of tin soldiers? The watch chain with no watch? And who was he hiding them from? His +father, probably, a deeply religious man who knew what God knew and told everybody what it was. Edward Bodwin +thought him an odd man, in so many ways, yet he had one clear directive: human life is holy, all of it. And that his son +still believed, although he had less and less reason to. +Nothing since was as stimulating as the old days of letters, petitions, meetings, debates, recruitment, quarrels, rescue +and downright sedition. +Yet it had worked, more or less, and when it had not, he and his sister made themselves available to circumvent +obstacles. As they had when a runaway slavewoman lived in his homestead with her mother-in-law and got herself into +a world of trouble. The Society managed to turn infanticide and the cry of savagery around, and build a further case for +abolishing slavery. Good years, they were, full of spit and conviction. Now he just wanted to know where his soldiers +were and his watchless chain. That would be enough for this day of unbearable heat: bring back the new girl and recall +exactly where his treasure lay. Then home, supper, and God willing, the sun would drop once more to give him the +blessing of a good night's sleep. +The road curved like an elbow, and as he approached it he heard the singers before he saw them. +When the women assembled outside 124, Sethe was breaking a lump of ice into chunks. She dropped the ice pick into +her apron pocket to scoop the pieces into a basin of water. When the music entered the window she was wringing a cool +cloth to put on Beloved's forehead. Beloved, sweating profusely, was sprawled on the bed in the keeping room, a salt +rock in her hand. Both women heard it at the same time and both lifted their heads. As the voices grew louder, Beloved +sat up, licked the salt and went into the bigger room. Sethe and she exchanged glances and started toward the window. +They saw Denver sitting on the steps and beyond her, where the yard met the road, they saw the rapt faces of thirty +148 +neighborhood women. +Some had their eyes closed; others looked at the hot, cloudless sky. +Sethe opened the door and reached for Beloved's hand. Together they stood in the doorway. For Sethe it was as though +the Clearing had come to her with all its heat and simmering leaves, where the voices of women searched for the right +combination, the key, the code, the sound that broke the back of words. Building voice upon voice until they found it, +and when they did it was a wave of sound wide enough to sound deep water and knock the pods off chestnut trees. It +broke over Sethe and she trembled like the baptized in its wash. +The singing women recognized Sethe at once and surprised themselves by their absence of fear when they saw what +stood next to her. The devil-child was clever, they thought. And beautiful. It had taken the shape of a pregnant woman, +naked and smiling in the heat of the afternoon sun. Thunderblack and glistening, she stood on long straight legs, her +belly big and tight. Vines of hair twisted all over her head. Jesus. Her smile was dazzling. +Sethe feels her eyes burn and it may have been to keep them clear that she looks up. The sky is blue and clear. Not one +touch of death in the definite green of the leaves. It is when she lowers her eyes to look again at the loving faces before +her that she sees him. Guiding the mare, slowing down, his black hat wide-brimmed enough to hide his face but not +his purpose. He is coming into her yard and he is coming for her best thing. She hears wings. Little hummingbirds stick +needle beaks right through her headcloth into her hair and beat their wings. And if she thinks anything, it is no. No no. +Nonono. She flies. +The ice pick is not in her hand; it is her hand. +Standing alone on the porch, Beloved is smiling. But now her hand is empty. Sethe is running away from her, running, +and she feels the emptiness in the hand Sethe has been holding. Now she is running into the faces of the people out +there, joining them and leaving Beloved behind. Alone. Again. Then Denver, running too. +Away from her to the pile of people out there. They make a hill. A hill of black people, falling. And above them all, rising +from his place with a whip in his hand, the man without skin, looking. He is looking at her. +Chapter 27 +Bare feet and chamomile sap. +Took off my shoes; took off my hat. +Bare feet and chamomile sap +Gimme back my shoes; gimme back my hat. +Lay my head on a potato sack, +Devil sneak up behind my back. +Steam engine got a lonesome whine; +Love that woman till you go stone blind. +Stone blind; stone blind. +Sweet Home gal make you lose your mind. +HIS COMING is the reverse route of his going. First the cold house, the storeroom, then the kitchen before he tackles +149 +the beds. Here Boy, feeble and shedding his coat in patches, is asleep by the pump, so Paul D knows Beloved is truly +gone. Disappeared, some say, exploded right before their eyes. Ella is not so sure. "Maybe," she says, "maybe not. Could +be hiding in the trees waiting for another chance." But when Paul D sees the ancient dog, eighteen years if a day, he is +certain 124 is clear of her. But he opens the door to the cold house halfway expecting to hear her. "Touch me. Touch +me. On the inside part and call me my name." +There is the pallet spread with old newspapers gnawed at the edges by mice. The lard can. The potato sacks too, but +empty now, they lie on the dirt floor in heaps. In daylight he can't imagine it in darkness with moonlight seeping through +the cracks. Nor the desire that drowned him there and forced him to struggle up, up into that girl like she was the clear +air at the top of the sea. Coupling with her wasn't even fun. It was more like a brainless urge to stay alive. +Each time she came, pulled up her skirts, a life hunger overwhelmed him and he had no more control over it than over +his lungs. And afterward, beached and gobbling air, in the midst of repulsion and personal shame, he was thankful too +for having been escorted to some ocean-deep place he once belonged to. +Sifting daylight dissolves the memory, turns it into dust motes floating in light. Paul D shuts the door. He looks toward +the house and, surprisingly, it does not look back at him. Unloaded, 124 is just another weathered house needing repair. +Quiet, just as Stamp Paid said. +"Used to be voices all round that place. Quiet, now," Stamp said. +"I been past it a few times and I can't hear a thing. Chastened, I reckon, 'cause Mr. Bodwin say he selling it soon's he +can." +"That the name of the one she tried to stab? That one?" +"Yep. His sister say it's full of trouble. Told Janey she was going to get rid of it." +"And him?" asked Paul D. +"Janey say he against it but won't stop it." +"Who they think want a house out there? Anybody got the money don't want to live out there." +"Beats me," Stamp answered. "It'll be a spell, I guess, before it get took off his hands." +"He don't plan on taking her to the law?" +"Don't seem like it. Janey say all he wants to know is who was the naked blackwoman standing on the porch. He was +looking at her so hard he didn't notice what Sethe was up to. All he saw was some coloredwomen fighting. He thought +Sethe was after one of them, Janey say." +"Janey tell him any different?" +"No. She say she so glad her boss ain't dead. If Ella hadn't clipped her, she say she would have. Scared her to death have +that woman kill her boss. She and Denver be looking for a job." +"Who Janey tell him the naked woman was?" +"Told him she didn't see none." +"You believe they saw it?" +"Well, they saw something. I trust Ella anyway, and she say she looked it in the eye. It was standing right next to Sethe. +But from the way they describe it, don't seem like it was the girl I saw in there. +The girl I saw was narrow. This one was big. She say they was holding hands and Sethe looked like a little girl beside it." +150 +"Little girl with a ice pick. How close she get to him?" +"Right up on him, they say. Before Denver and them grabbed her and Ella put her fist in her jaw." +"He got to know Sethe was after him. He got to." +"Maybe. I don't know. If he did think it, I reckon he decided not to. That be just like him, too. He's somebody never +turned us down. +Steady as a rock. I tell you something, if she had got to him, it'd be the worst thing in the world for us. You know, don't +you, he's the main one kept Sethe from the gallows in the first place." +"Yeah. Damn. That woman is crazy. Crazy." +"Yeah, well, ain't we all?" +They laughed then. A rusty chuckle at first and then more, louder and louder until Stamp took out his pocket +handkerchief and wiped his eyes while Paul D pressed the heel of his hand in his own. As the scene neither one had +witnessed took shape before them, its seriousness and its embarrassment made them shake with laughter. +"Every time a whiteman come to the door she got to kill somebody?" +"For all she know, the man could be coming for the rent." +"Good thing they don't deliver mail out that way." +"Wouldn't nobody get no letter." +"Except the postman." +"Be a mighty hard message." +"And his last." +When their laughter was spent, they took deep breaths and shook their heads. +"And he still going to let Denver spend the night in his house? +Ha!" +"Aw no. Hey. Lay off Denver, Paul D. That's my heart. I'm proud of that girl. She was the first one wrestle her mother +down. Before anybody knew what the devil was going on." +"She saved his life then, you could say." +"You could. You could," said Stamp, thinking suddenly of the leap, the wide swing and snatch of his arm as he rescued +the little curly-headed baby from within inches of a split skull. "I'm proud of her. She turning out fine. Fine." +It was true. Paul D saw her the next morning when he was on his way to work and she was leaving hers. Thinner, steady +in the eyes, she looked more like Halle than ever. +She was the first to smile. "Good morning, Mr. D." +"Well, it is now." Her smile, no longer the sneer he remembered, had welcome in it and strong traces of Sethe's mouth. +Paul D touched his cap. "How you getting along?" +"Don't pay to complain." +151 +"You on your way home?" +She said no. She had heard about an afternoon job at the shirt factory. She hoped that with her night work at the +Bodwins' and another one, she could put away something and help her mother too. +When he asked her if they treated her all right over there, she said more than all right. Miss Bodwin taught her stuff. He +asked her what stuff and she laughed and said book stuff. "She says I might go to Oberlin. She's experimenting on me." +And he didn't say, "Watch out. Watch out. Nothing in the world more dangerous than a white schoolteacher." Instead +he nodded and asked the question he wanted to. +"Your mother all right?" +"No," said Denver. "No. No, not a bit all right." +"You think I should stop by? Would she welcome it?" +"I don't know," said Denver. "I think I've lost my mother, Paul D." +They were both silent for a moment and then he said, "Uh, that girl. You know. Beloved?" +"Yes?" +"You think she sure 'nough your sister?" +Denver looked at her shoes. "At times. At times I think she was-- more." She fiddled with her shirtwaist, rubbing a spot +of something. +Suddenly she leveled her eyes at his. "But who would know that better than you, Paul D? I mean, you sure 'nough knew +her." +He licked his lips. "Well, if you want my opinion--" +"I don't," she said. "I have my own." +"You grown," he said. +"Yes, sir." +"Well. Well, good luck with the job." +"Thank you. And, Paul D, you don't have to stay 'way, but be careful how you talk to my ma'am, hear?" +"Don't worry," he said and left her then, or rather she left him because a young man was running toward her, +saying, "Hey, Miss Denver. Wait up." +She turned to him, her face looking like someone had turned up the gas jet. +He left her unwillingly because he wanted to talk more, make sense out of the stories he had been hearing: whiteman +came to take Denver to work and Sethe cut him. Baby ghost came back evil and sent Sethe out to get the man who kept +her from hanging. One point of agreement is: first they saw it and then they didn't. When they got Sethe down on the +ground and the ice pick out of her hands and looked back to the house, it was gone. Later, a little boy put it out how he +had been looking for bait back of 124, down by the stream, and saw, cutting through the woods, a naked woman with +fish for hair. +As a matter of fact, Paul D doesn't care how It went or even why. He cares about how he left and why. Then he looks at +himself through Garner's eyes, he sees one thing. Through Sixo's, another. +One makes him feel righteous. One makes him feel ashamed. Like the time he worked both sides of the War. Running +152 +away from the Northpoint Bank and Railway to join the 44th Colored Regiment in Tennessee, he thought he had made +it, only to discover he had arrived at another colored regiment forming under a commander in New Jersey. He stayed +there four weeks. The regiment fell apart before it got started on the question of whether the soldiers should have +weapons or not. Not, it was decided, and the white commander had to figure out what to command them to do instead +of kill other white men. Some of the ten thousand stayed there to clean, haul and build things; others drifted away to +another regiment; most were abandoned, left to their own devices with bitterness for pay. He was trying to make up +his mind what to do when an agent from Northpoint Bank caught up with him and took him back to Delaware, where +he slave-worked a year. Then Northpoint took $300 in exchange for his services in Alabama, where he worked for the +Rebellers, first sorting the dead and then smelting iron. When he and his group combed the battlefields, their job was +to pull the Confederate wounded away from the Confederate dead. Care, they told them. Take good care. Coloredmen +and white, their faces wrapped to their eyes, picked their way through the meadows with lamps, listening in the dark for +groans of life in the indifferent silence of the dead. Mostly young men, some children, and it shamed him a little to feel +pity for what he imagined were the sons of the guards in Alfred, Georgia. +In five tries he had not had one permanent success. Every one of his escapes (from Sweet Home, from Brandywine, +from Alfred, Georgia, from Wilmington, from Northpoint) had been frustrated. Alone, undisguised, with visible skin, +memorable hair and no whiteman to protect him, he never stayed uncaught. The longest had been when he ran with +the convicts, stayed with the Cherokee, followed their advice and lived in hiding with the weaver woman in Wilmington, +Delaware: three years. And in all those escapes he could not help being astonished by the beauty of this land that was +not his. He hid in its breast, fingered its earth for food, clung to its banks to lap water and tried not to love it. On nights +when the sky was personal, weak with the weight of its own stars, he made himself not love it. Its graveyards and low- +lying rivers. Or just a house---solitary under a chinaberry tree; maybe a mule tethered and the light hitting its hide just +so. Anything could stir him and he tried hard not to love it. +After a few months on the battlefields of Alabama, he was impressed to a foundry in Selma along with three hundred +captured, lent or taken coloredmen. That's where the War's end found him, and leaving Alabama when he had been +declared free should have been a snap. He should have been able to walk from the foundry in Selma straight to +Philadelphia, taking the main roads, a train if he wanted to, or passage on a boat. But it wasn't like that. When he and +two colored soldiers (who had been captured from the 44th he had looked for) walked from Selma to Mobile, they saw +twelve dead blacks in the first eighteen miles. Two were women, four were little boys. He thought this, for sure, would +be the walk of his life. +The Yankees in control left the Rebels out of control. They got to the outskirts of Mobile, where blacks were putting +down tracks for the Union that, earlier, they had torn up for the Rebels. One of the men with him, a private called +Keane, had been with the Massachusetts 54th. He told Paul D they had been paid less than white soldiers. It was a sore +point with him that, as a group, they had refused the offer Massachusetts made to make up the difference in pay. Paul D +was so impressed by the idea of being paid money to fight he looked at the private with wonder and envy. +Keane and his friend, a Sergeant Rossiter, confiscated a skiff and the three of them floated in Mobile Bay. There the +private hailed a Union gunboat, which took all three aboard. Keane and Rossiter disembarked at Memphis to look for +their commanders. The captain of the gunboat let Paul D stay aboard all the way to Wheeling, West Virginia. He made +his own way to New Jersey. +By the time he got to Mobile, he had seen more dead people than living ones, but when he got to Trenton the crowds +of alive people, neither hunting nor hunted, gave him a measure of free life so tasty he never forgot it. Moving down +a busy street full of whitepeople who needed no explanation for his presence, the glances he got had to do with his +disgusting clothes and unforgivable hair. Still, nobody raised an alarm. Then came the miracle. Standing in a street in +front of a row of brick houses, he heard a whiteman call him ("Say there! +Yo!") to help unload two trunks from a coach cab. Afterward the whiteman gave him a coin. Paul D walked around with +it for hours-- not sure what it could buy (a suit? a meal? a horse?) and if anybody would sell him anything. Finally he saw +a greengrocer selling vegetables from a wagon. Paul D pointed to a bunch of turnips. The grocer handed them to him, +took his one coin and gave him several more. Stunned, he backed away. Looking around, he saw that nobody seemed +interested in the "mistake" or him, so he walked along, happily chewing turnips. Only a few women looked vaguely +153 +repelled as they passed. His first earned purchase made him glow, never mind the turnips were withered dry. That was +when he decided that to eat, walk and sleep anywhere was life as good as it got. And he did it for seven years till he +found himself in southern Ohio, where an old woman and a girl he used to know had gone. +Now his coming is the reverse of his going. First he stands in the back, near the cold house, amazed by the riot of +late-summer flowers where vegetables should be growing. Sweet william, morning glory, chrysanthemums. The odd +placement of cans jammed with the rotting stems of things, the blossoms shriveled like sores. Dead ivy twines around +bean poles and door handles. Faded newspaper pictures are nailed to the outhouse and on trees. A rope too short for +anything but skip-jumping lies discarded near the washtub; and jars and jars of dead lightning bugs. Like a child's house; +the house of a very tall child. +He walks to the front door and opens it. It is stone quiet. In the place where once a shaft of sad red light had bathed +him, locking him where he stood, is nothing. A bleak and minus nothing. More like absence, but an absence he had +to get through with the same determination he had when he trusted Sethe and stepped through the pulsing light. He +glances quickly at the lightning-white stairs. The entire railing is wound with ribbons, bows, bouquets. Paul D steps +inside. The outdoor breeze he brings with him stirs the ribbons. +Carefully, not quite in a hurry but losing no time, he climbs the luminous stairs. He enters Sethe's room. She isn't there +and the bed looks so small he wonders how the two of them had lain there. It has no sheets, and because the roof +windows do not open the room is stifling. Brightly colored clothes lie on the floor. Hanging from a wall peg is the dress +Beloved wore when he first saw her. A pair of ice skates nestles in a basket in the corner. He turns his eyes back to the +bed and keeps looking at it. It seems to him a place he is not. +With an effort that makes him sweat he forces a picture of himself lying there, and when he sees it, it lifts his spirit. He +goes to the other bedroom. Denver's is as neat as the other is messy. But still no Sethe. +Maybe she has gone back to work, gotten better in the days since he talked to Denver. He goes back down the stairs, +leaving the image of himself firmly in place on the narrow bed. At the kitchen table he sits down. Something is missing +from 124. Something larger than the people who lived there. Something more than Beloved or the red light. He can't put +his finger on it, but it seems, for a moment, that just beyond his knowing is the glare of an outside thing that embraces +while it accuses. +To the right of him, where the door to the keeping room is ajar, he hears humming. Someone is humming a tune. +Something soft and sweet, like a lullaby. Then a few words. Sounds like "high Johnny, wide Johnny. Sweet William bend +down low." Of course, he thinks. +That's where she is--and she is. Lying under a quilt of merry colors. +Her hair, like the dark delicate roots of good plants, spreads and curves on the pillow. Her eyes, fixed on the window, are +so expressionless he is not sure she will know who he is. There is too much light here in this room. Things look sold. +"Jackweed raise up high," she sings. "Lambswool over my shoulder, buttercup and clover fly." She is fingering a long +clump of her hair. +Paul D clears his throat to interrupt her. "Sethe?" +She turns her head. "Paul D." +"Aw, Sethe." +"I made the ink, Paul D. He couldn't have done it if I hadn't made the ink." +"What ink? Who?" +"You shaved." +154 +"Yeah. Look bad?" +"No. You looking good." +"Devil's confusion. What's this I hear about you not getting out of bed?" +She smiles, lets it fade and turns her eyes back to the window. +"I need to talk to you," he tells her. +She doesn't answer. +"I saw Denver. She tell you?" +"She comes in the daytime. Denver. She's still with me, my Denver." +"You got to get up from here, girl." He is nervous. This reminds him of something. +"I'm tired, Paul D. So tired. I have to rest a while." +Now he knows what he is reminded of and he shouts at her, "Don't you die on me! This is Baby Suggs' bed! Is that what +you planning?" He is so angry he could kill her. He checks himself, remembering Denver's warning, and whispers, "What +you planning, Sethe?" +"Oh, I don't have no plans. No plans at all." +"Look," he says, "Denver be here in the day. I be here in the night. I'm a take care of you, you hear? Starting now. First +off, you don't smell right. Stay there. Don't move. Let me heat up some water." He stops. "Is it all right, Sethe, if I heat up +some water?" +"And count my feet?" she asks him. +He steps closer. "Rub your feet." +Sethe closes her eyes and presses her lips together. She is thinking: No. This little place by a window is what I want. And +rest. There's nothing to rub now and no reason to. Nothing left to bathe, assuming he even knows how. Will he do it in +sections? First her face, then her hands, her thighs, her feet, her back? Ending with her exhausted breasts? And if he +bathes her in sections, will the parts hold? She opens her eyes, knowing the danger of looking at him. She looks at him. +The peachstone skin, the crease between his ready, waiting eyes and sees it--the thing in him, the blessedness, that has +made him the kind of man who can walk in a house and make the women cry. +Because with him, in his presence, they could. Cry and tell him things they only told each other: that time didn't stay put; +that she called, but Howard and Buglar walked on down the railroad track and couldn't hear her; that Amy was scared +to stay with her because her feet were ugly and her back looked so bad; that her ma'am had hurt her feelings and she +couldn't find her hat anywhere and "Paul D?" +"What, baby?" +"She left me." +"Aw, girl. Don't cry." +"She was my best thing." +Paul D sits down in the rocking chair and examines the quilt patched in carnival colors. His hands are limp between his +knees. +There are too many things to feel about this woman. His head hurts. +155 +Suddenly he remembers Sixo trying to describe what he felt about the Thirty-Mile Woman. "She is a friend of my mind. +She gather me, man. The pieces I am, she gather them and give them back to me in all the right order. It's good, you +know, when you got a woman who is a friend of your mind." +He is staring at the quilt but he is thinking about her wrought iron back; the delicious mouth still puffy at the corner from +Ella's fist. The mean black eyes. The wet dress steaming before the fire. +Her tenderness about his neck jewelry--its three wands, like attentive baby rattlers, curving two feet into the air. How +she never mentioned or looked at it, so he did not have to feel the shame of being collared like a beast. Only this woman +Sethe could have left him his manhood like that. He wants to put his story next to hers. +"Sethe," he says, "me and you, we got more yesterday than anybody. +We need some kind of tomorrow." +He leans over and takes her hand. With the other he touches her face. "You your best thing, Sethe. You are." His holding +fingers are holding hers. +"Me? Me?" +Chapter 28 +THERE IS a loneliness that can be rocked. Arms crossed, knees drawn up; holding, holding on, this motion, unlike a ship's, +smooths and contains the rocker. It's an inside kind--wrapped tight like skin. +Then there is a loneliness that roams. No rocking can hold it down. +It is alive, on its own. A dry and spreading thing that makes the sound of one's own feet going seem to come from a far- +off place. +Everybody knew what she was called, but nobody anywhere knew her name. Disremembered and unaccounted for, she +cannot be lost because no one is looking for her, and even if they were, how can they call her if they don't know her +name? Although she has claim, she is not claimed. In the place where long grass opens, the girl who waited to be loved +and cry shame erupts into her separate parts, to make it easy for the chewing laughter to swallow her all away. +It was not a story to pass on. +They forgot her like a bad dream. After they made up their tales, shaped and decorated them, those that saw her that +day on the porch quickly and deliberately forgot her. It took longer for those who had spoken to her, lived with her, +fallen in love with her, to forget, until they realized they couldn't remember or repeat a single thing she said, and began +to believe that, other than what they themselves +were thinking, she hadn't said anything at all. So, in the end, they forgot her too. Remembering seemed unwise. They +never knew where or why she crouched, or whose was the underwater face she needed like that. Where the memory of +the smile under her chin might have been and was not, a latch latched and lichen attached its apple-green bloom to the +metal. What made her think her fingernails could open locks the rain rained on? +It was not a story to pass on. +So they forgot her. Like an unpleasant dream during a troubling sleep. Occasionally, however, the rustle of a skirt hushes +when they wake, and the knuckles brushing a cheek in sleep seem to belong to the sleeper. Sometimes the photograph +of a close friend or relative--looked at too long--shifts, and something more familiar than the dear face itself moves +there. They can touch it if they like, but don't, because they know things will never be the same if they do. +This is not a story to pass on. +156 +Down by the stream in back of 124 her footprints come and go, come and go. They are so familiar. Should a child, an +adult place his feet in them, they will fit. Take them out and they disappear again as though nobody ever walked there. +By and by all trace is gone, and what is forgotten is not only the footprints but the water too and what it is down there. +The rest is weather. Not the breath of the disremembered and unaccounted for, but wind in the eaves, or spring ice +thawing too quickly. Just weather. +Certainly no clamor for a kiss. +Beloved. +THE END \ No newline at end of file diff --git a/model/data/myth_of_sisyphus.txt b/model/data/myth_of_sisyphus.txt new file mode 100644 index 0000000..e7cc65d --- /dev/null +++ b/model/data/myth_of_sisyphus.txt @@ -0,0 +1,4941 @@ +The Myth Of Sisyphus +An Absurd Reasoning +Absurdity and Suicide +There is but one truly serious philosophical problem, and that +is suicide. Judging whether life is or is not worth living amounts to +answering the fundamental question of philosophy. All the rest— +whether or not the world has three dimensions, whether the mind +has nine or twelve categories—comes afterwards. These are +games; one must first answer. And if it is true, as Nietzsche claims, +that a philosopher, to deserve our respect, must preach by example, +you can appreciate the importance of that reply, for it will precede +the definitive act. These are facts the heart can feel; yet they call +for careful study before they become clear to the intellect. +If I ask myself how to judge that this question is more urgent +than that, I reply that one judges by the actions it entails. I have +never seen anyone die for the ontologi-cal argument. Galileo, who +held a scientific truth of great importance, abjured it with the +greatest ease as soon as it endangered his life. In a certain sense, he +did right.[1] That truth was not worth the stake. Whether the earth +or the sun revolves around the other is a matter of profound +indifference. To tell the truth, it is a futile question. On the other +hand, I see many people die because they judge that life is not +worth living. I see others paradoxically getting killed for the ideas +or illusions that give them a reason for living (what is called a +reason for living is also an excellent reason for dying). I therefore +conclude that the meaning of life is the most urgent of questions. +How to answer it? On all essential problems (I mean thereby those +that run the risk of leading to death or those that intensify the +passion of living) there are probably but two methods of thought: +the method of La Palisse and the method of Don Quixote. Solely +the balance between evidence and lyricism can allow us to achieve +simultaneously emotion and lucidity. In a subject at once so +humble and so heavy with emotion, the learned and classical +dialectic must yield, one can see, to a more modest attitude of mind +deriving at one and the same time from common sense and +understanding. +Suicide has never been dealt with except as a social +phenomenon. On the contrary, we are concerned here, at the outset, +with the relationship between individual thought and suicide. An +act like this is prepared within the silence of the heart, as is a great +work of art. The man himself is ignorant of it. One evening he +pulls the trigger or jumps. Of an apartment-building manager who +had killed himself I was told that he had lost his daughter five +years before, that be bad changed greatly since, and that that +experience had “undermined” him. A more exact word cannot be +imagined. Beginning to think is beginning to be undermined. +Society has but little connection with such beginnings. The worm +is in man’s heart. That is where it must be sought. One must follow +and understand this fatal game that leads from lucidity in the face +of existence to flight from light. +There are many causes for a suicide, and generally the most +obvious ones were not the most powerful. Rarely is suicide +committed (yet the hypothesis is not excluded) through reflection. +What sets off the crisis is almost always unverifiable. Newspapers +often speak of “personal sorrows” or of “incurable illness.” These +explanations are plausible. But one would have to know whether a +friend of the desperate man had not that very day addressed him +indifferently. He is the guilty one. For that is enough to precipitate +all the rancors and all the boredom still in suspension.[2] +But if it is hard to fix the precise instant, the subtle step when +the mind opted for death, it is easier to deduce from the act itself +the consequences it implies. In a sense, and as in melodrama, +killing yourself amounts to confessing. It is confessing that life is +too much for you or that you do not understand it. Let’s not go too +far in such analogies, however, but rather return to everyday +words. It is merely confessing that that “is not worth the trouble.” +Living, naturally, is never easy. You continue making the gestures +commanded by existence for many reasons, the first of which is +habit. Dying voluntarily implies that you have recognized, even +instinc— +tively, the ridiculous character of that habit, the absence of any +profound reason for living, the insane character of that daily +agitation, and the uselessness of suffering. +What, then, is that incalculable feeling that deprives the mind +of the sleep necessary to life? A world that can be explained even +with bad reasons is a familiar world. But, on the other hand, in a +universe suddenly divested of illusions and lights, man feels an +alien, a stranger. His exile is without remedy since he is deprived +of the memory of a lost home or the hope of a promised land. This +divorce between man and this life, the actor and his setting, is +properly the feeling of absurdity. All healthy men having thought +of their own suicide, it can be seen, without further explanation, +that there is a direct connection between this feeling and the +longing for death. +The subject of this essay is precisely this relationship between +the absurd and suicide, the exact degree to which suicide is a +solution to the absurd. The principle can be established that for a +man who does not cheat, what he believes to be true must +determine his action. Belief in the absurdity of existence must then +dictate his conduct. It is legitimate to wonder, clearly and without +false pathos, whether a conclusion of this importance requires +forsaking as rapidly as possible an incomprehensible condition. I +am speaking, of course, of men inclined to be in harmony with +themselves. +Stated clearly, this problem may seem both simple and +insoluble. But it is wrongly assumed that simple questions involve +answers that are no less simple and that evidence implies evidence. +A priori and reversing the terms of the problem, just as one does or +does not kill oneself, it seems that there are but two philosophical +solutions, either yes or no. This would be too easy. But allowance +must be made for those who, without concluding, continue +questioning. Here I am only slightly indulging in irony: this is the +majority. I notice also that those who answer “no” act as if they +thought “yes.” As a matter of fact, if I accept the Nietzschean +criterion, they think “yes” in one way or another. On the other +hand, it often happens that those who commit suicide were assured +of the meaning of life. These contradictions are constant. It may +even be said that they have never been so keen as on this point +where, on the contrary, logic seems so desirable. It is a +commonplace to compare philosophical theories and the behavior +of those who profess them. But it must be said that of the thinkers +who refused a meaning to life none except Kirilov who belongs to +literature, Peregrinos who is born of legend,[3] and Jules Lequier +who belongs to hypothesis, admitted his logic to the point of +refusing that life. Schopenhauer is often cited, as a fit subject for +laughter, because he praised suicide while seated at a well-set +table. This is no subject for joking. That way of not taking the +tragic seriously is not so grievous, but it helps to judge a man. +In the face of such contradictions and obscurities must we +conclude that there is no relationship between the opinion one has +about life and the act one commits to leave it? Let us not +exaggerate in this direction. In a man’s attachment to life there is +something stronger than all the ills in the world. The body’s +judgment is as good as the mind’s and the body shrinks from +annihilation. We get into the habit of living before acquiring the +habit of thinking. In that race which daily hastens us toward death, +the body maintains its irreparable lead. In short, the essence of that +contradiction lies in what I shall call the act of eluding because it is +both less and more than diversion in the Pascalian sense. Eluding is +the invariable game. The typical act of eluding, the fatal evasion +that constitutes the third theme of this essay, is hope. Hope of +another life one must “deserve” or trickery of those who live not +for life itself but for some great idea that will transcend it, refine it, +give it a meaning, and betray it. +Thus everything contributes to spreading confusion. +Hitherto, and it has not been wasted effort, people have played +on words and pretended to believe that refusing to grant a meaning +to life necessarily leads to declaring that it is not worth living. In +truth, there is no necessary common measure between these two +judgments. One merely has to refuse to he misled by the +confusions, divorces, and inconsistencies previously pointed out. +One must brush everything aside and go straight to the real +problem. One kills oneself because life is not worth living, that is +certainly a truth yet an unfruitful one because it is a truism. But +does that insult to existence, that flat denial in which it is plunged +come from the fact that it has no meaning? Does its absurdity +require one to escape it through hope or suicide—this is what must +be clarified, hunted down, and elucidated while brushing aside all +the rest. Does the Absurd dictate death? This problem must be +given priority over others, outside all methods of thought and all +exercises of the disinterested mind. Shades of meaning, +contradictions, the psychology that an “objective” mind can always +introduce into all problems have no place in this pursuit and this +passion. It calls simply for an unjust—in other words, logical— +thought. That is not easy. It is always easy to be logical. It is +almost impossible to be logical to the bitter end. Men who die by +their own hand consequently follow to its conclusion their +emotional inclination. Reflection on suicide gives me an +opportunity to raise the only problem to interest me: is there a logic +to the point of death? I cannot know unless I pursue, without +reckless passion, in the sole light of evidence, the reasoning of +which I am here suggesting the source. This is what I call an +absurd reasoning. Many have begun it. I do not yet know whether +or not they kept to it. +When Karl Jaspers, revealing the impossibility of constituting +the world as a unity, exclaims: “This limitation leads me to myself, +where I can no longer withdraw behind an objective point of view +that I am merely representing, where neither I myself nor the +existence of others can any longer become an object for me,” he is +evoking after many others those waterless deserts where thought +reaches its confines. After many others, yes indeed, but how eager +they were to get out of them! At that last crossroad where thought +hesitates, many men have arrived and even some of the humblest. +They then abdicated what was most precious to them, their life. +Others, princes of the mind, abdicated likewise, but they initiated +the suicide of their thought in its purest revolt. The real effort is to +stay there, rather, in so far as that is possible, and to examine +closely the odd vegetation of those distant regions. Tenacity and +acumen are privileged spectators of this inhuman show in which +absurdity, hope, and death carry on their dialogue. The mind can +then analyze the figures of that elementary yet subtle dance before +illustrating them and reliving them itself. +Absurd Walls +Like great works, deep feelings always mean more than they +are conscious of saying. The regularity of an impulse or a repulsion +in a soul is encountered again in habits of doing or thinking, is +reproduced in consequences of which the soul itself knows +nothing. Great feelings take with them their own universe, splendid +or abject. They light up with their passion an exclusive world in +which they recognize their climate. There is a universe of jealousy, +of ambition, of selfishness, or of generosity. A universe in other +words, a metaphysic and an attitude of mind. What is true of +already specialized feelings will be even more so of emotions +basically as indeterminate, simultaneously as vague and as +“definite,” as remote and as “present” as those furnished us by +beauty or aroused by absurdity. +At any streetcorner the feeling of absurdity can strike any man +in the face. As it is, in its distressing nudity, in its light without +effulgence, it is elusive. But that very difficulty deserves reflection. +It is probably true that a man remains forever unknown to us and +that there is in him something irreducible that escapes us. But +practically I know men and recognize them by their behavior, by +the totality of their deeds, by the consequences caused in life by +their presence. Likewise, all those irrational feelings which offer +no purchase to analysis. I can define them practically, appreciate +them practically, by gathering together the sum of their +consequences in the domain of the intelligence, by seizing and +noting all their aspects, by outlining their universe. It is certain that +apparently, though I have seen the same actor a hundred times, I +shall not for that reason know him any better personally. Yet if I +add up the heroes he has personified and if I say that I know him a +little better at the hundredth character counted off, this will be felt +to contain an element of truth. For this apparent paradox is also an +apologue. There is a moral to it. It teaches that a man defines +himself by his make-believe as well as by his sincere impulses. +There is thus a lower key of feelings, inaccessible in the heart but +partially disclosed by the acts they imply and the attitudes of mind +they assume. It is clear that in this way I am defining a method. +But it is also evident that that method is one of analysis and not of +knowledge. For methods imply metaphysics; unconsciously they +disclose conclusions that they often claim not to know yet. +Similarly, the last pages of a book are already contained in the first +pages. Such a link is inevitable. The method defined here +acknowledges the feeling that all true knowledge is impossible. +Solely appearances can be enumerated and the climate make itself +felt. +Perhaps we shall be able to overtake that elusive feeling of +absurdity in the different but closely related worlds of intelligence, +of the art of living, or of art itself. The climate of absurdity is in the +beginning. The end is the absurd universe and that attitude of mind +which lights the world with its true colors to bring out the +privileged and implacable visage which that attitude has discerned +in it. +* * * +All great deeds and all great thoughts have a ridiculous +beginning. Great works are often born on a street-corner or in a +restaurant’s revolving door. So it is with absurdity. The absurd +world more than others derives its nobility from that abject birth. +In certain situations, replying “nothing” when asked what one is +thinking about may be pretense in a man. Those who are loved are +well aware of this. But if that reply is sincere, if it symbolizes that +odd state of soul in which the void be-comes eloquent, in which +the chain of daily gestures is broken, in which the heart vainly +seeks the link that will connect it again, then it is as it were the first +sign of absurdity. +It happens that the stage sets collapse. Rising, streetcar, four +hours in the office or the factory, meal, streetcar, four hours of +work, meal, sleep, and Monday Tuesday Wednesday Thursday +Friday and Saturday accord— +ing to the same rhythm—this path is easily followed most of +the time. But one day the “why” arises and everything begins in +that weariness tinged with amazement. “Begins”—this is +important. Weariness comes at the end of the acts of a mechanical +life, but at the same time it inaugurates the impulse of +consciousness. It awakens consciousness and provokes what +follows. What follows is the gradual return into the chain or it is +the definitive awakening. At the end of the awakening comes, in +time, the consequence: suicide or recovery. In itself weariness has +something sickening about it. Here, I must conclude that it is good. +For everything be-gins with consciousness and nothing is worth +anything except through it. There is nothing original about these +remarks. But they are obvious; that is enough for a while, during a +sketchy reconnaissance in the origins of the absurd. Mere +“anxiety,” as Heidegger says, is at the source of everything. +Likewise and during every day of an unillustrious life, time +carries us. But a moment always comes when we have to carry it. +We live on the future: “tomorrow,” “later on,” “when you have +made your way,” “you will understand when you are old enough.” +Such irrelevan-cies are wonderful, for, after all, it’s a matter of +dying. Yet a day comes when a man notices or says that he is +thirty. Thus he asserts his youth. But simultaneously he situates +himself in relation to time. He takes his place in it. He admits that +he stands at a certain point on a curve that he acknowledges having +to travel to its end. He belongs to time, and by the horror that +seizes him, he recognizes his worst enemy. Tomorrow, he was +longing for tomorrow, whereas everything in him ought to reject it. +That revolt of the flesh is the absurd.[4] +A step lower and strangeness creeps in: perceiving that the +world is “dense,” sensing to what a degree a stone is foreign and +irreducible to us, with what intensity nature or a landscape can +negate us. At the heart of all beauty lies something inhuman, and +these hills, the softness of the sky, the outline of these trees at this +very minute lose the illusory meaning with which we had clothed +them, henceforth more remote than a lost paradise. The primitive +hostility of the world rises up to face us across millennia, for a +second we cease to understand it because for centuries we have +understood in it solely the images and designs that we had at- +tributed to it beforehand, because henceforth we lack the power to +make use of that artifice. The world evades us because it becomes +itself again. That stage scenery masked by habit becomes again +what it is. It withdraws at a distance from us. Just as there are days +when under the familial face of a woman, we see as a stranger her +we had loved months or years ago, perhaps we shall come even to +desire what suddenly leaves us so alone. But the time has not yet +come. Just one thing: that denseness and that strangeness of the +world is the absurd. +Men, too, secrete the inhuman. At certain moments of lucidity, +the mechanical aspect of their gestures, their meaningless +pantomime makes silly everything that surrounds them. A man is +talking on the telephone behind a glass partition; you cannot hear +him, but you see his incomprehensible dumb show: you wonder +why he is alive. This discomfort in the face of man’s own +inhumanity, this incalculable tumble before the image of what we +are, this “nausea,” as a writer of today calls it, is also the absurd. +Likewise the stranger who at certain seconds comes to meet us in a +mirror, the familiar and yet alarming brother we encounter in our +own photographs is also the absurd. +I come at last to death and to the attitude we have toward it. On +this point everything has been said and it is only proper to avoid +pathos. Yet one will never be sufficiently surprised that everyone +lives as if no one “knew.” This is because in reality there is no +experience of death. Properly speaking, nothing has been +experienced but what has been lived and made conscious. Here, it +is barely possible to speak of the experience of others’ deaths. It is +a substitute, an illusion, and it never quite convinces us. That +melancholy convention cannot be persuasive. The horror comes in +reality from the mathematical aspect of the event. If time frightens +us, this is because it works out the problem and the solution comes +afterward. All the pretty speeches about the soul will have their +contrary convincingly proved, at least for a time. From this inert +body on which a slap makes no mark the soul has disappeared. +This elementary and definitive aspect of the adventure constitutes +the absurd feeling. Under the fatal lighting of that destiny, its +uselessness becomes evident. No code of ethics and no effort are +justifiable a priori in the face of the cruel mathematics that +command our condition. +Let me repeat: all this has been said over and over. I am +limiting myself here to making a rapid classification and to +pointing out these obvious themes. They run through all literatures +and all philosophies. Everyday conversation feeds on them. There +is no question of reinventing them. But it is essential to be sure of +these facts in order to be able to question oneself subsequently on +the primordial question. I am interested let me repeat again—not +go much in absurd discoveries as in their consequences. If one is +assured of these facts, what is one to conclude, how far is one to go +to elude nothing? Is one to die voluntarily or to hope in spite of +everything? Beforehand, it is necessary to take the same rapid +inventory on the plane of the intelligence. +*** +The mind’s first step is to distinguish what is true from what is +false. However, as soon as thought reflects on itself, what it first +discovers is a contradiction. Useless to strive to be convincing in +this case. Over the centuries no one has furnished a clearer and +more elegant demonstration of the business than Aristotle: “The +often ridiculed consequence of these opinions is that they destroy +themselves. For by asserting that all is true we assert the truth of +the contrary assertion and consequently the falsity of our own +thesis (for the contrary assertion does not admit that it can be true). +And if one says that all is false, that assertion is itself false. If we +declare that solely the assertion opposed to ours is false or else that +solely ours is not false, we are nevertheless forced to admit an +infinite number of true or false judgments. For the one who +expresses a true assertion proclaims simultaneously that it is true, +and so on ad infinitum.” +This vicious circle is but the first of a series in which the mind +that studies itself gets lost in a giddy whirling. The very simplicity +of these paradoxes makes them irreducible. Whatever may be the +plays on words and the acrobatics of logic, to understand is, above +all, to unify. The mind’s deepest desire, even in its most elaborate +operations, parallels man’s unconscious feeling in the face of his +universe: it is an insistence upon familiarity, an appetite for clarity. +Understanding the world for a man is reducing it to the human, +stamping it with his seal. The cat’s universe is not the universe of +the anthill. The truism “All thought is anthropomorphic” has no +other meaning. Likewise, the mind that aims to understand reality +can consider itself satisfied only by reducing it to terms of thought. +If man realized that the universe like him can love and suffer, he +would be reconciled. If thought discovered in the shimmering +mirrors of phenomena eternal relations capable of summing them +up and summing themselves up in a single principle, then would be +seen an intellectual joy of which the myth of the blessed would be +but a ridiculous imitation. That nostalgia for unity, that appetite for +the absolute illustrates the essential impulse of the human drama. +But the fact of that nostalgia’s existence does not imply that it is to +be immediately satisfied. For if, bridging the gulf that separates +desire from conquest, we assert with Parmenides the reality of the +One (whatever it may be), we fall into the ridiculous contradiction +of a mind that asserts total unity and proves by its very assertion its +own difference and the diversity it claimed to resolve. This other +vicious circle is enough to stifle our hopes. +These are again truisms. I shall again repeat that they are not +interesting in themselves but in the consequences that can be +deduced from them. I know another truism: it tells me that man is +mortal. One can nevertheless count the minds that have deduced +the extreme conclusions from it. It is essential to consider as a +constant point of reference in this essay the regular hiatus between +what we fancy we know and what we really know, practical assent +and simulated ignorance which allows us to live with ideas which, +if we truly put them to the test, ought to upset our whole life. Faced +with this inextricable contradiction of the mind, we shall fully +grasp the divorce separating us from our own creations. So long as +the mind keeps silent in the motionless world of its hopes, +everything is reflected and arranged in the unity of its nostalgia. +But with its first move this world cracks and tumbles: an infinite +number of shimmering fragments is offered to the understanding. +We must despair of ever reconstructing the familiar, calm surface +which would give us peace of heart. After so many centuries of +inquiries, so many abdications among thinkers, we are well aware +that this is true for all our knowledge. With the exception of +professional rationalists, today people despair of true knowledge. If +the only significant history of human thought were to be written, it +would have to be the history of its successive regrets and its +impotences. +Of whom and of what indeed can I say: “I know that!” This +heart within me I can feel, and I judge that it exists. This world I +can touch, and I likewise judge that it exists. There ends all my +knowledge, and the rest is construction. For if I try to seize this self +of which I feel sure, if I try to define and to summarize it, it is +nothing but water slipping through my fingers. I can sketch one by +one all the aspects it is able to assume, all those likewise that have +been attributed to it, this upbringing, this origin, this ardor or these +silences, this nobility or this vileness. But aspects cannot be added +up. This very heart which is mine will forever remain indefinable +to me. Between the certainty I have of my existence and the +content I try to give to that assurance, the gap will never be filled. +Forever I shall be a stranger to myself. In psychology as in logic, +there are truths but no truth. Socrates’”Know thyself” has as much +value as the “Be virtuous” of our confessionals. They reveal a +nostalgia at the same time as an ignorance. They are sterile +exercises on great subjects. They are legitimate only in precisely so +far as they are approximate. +And here are trees and I know their gnarled surface, water and +I feel its taste. These scents of grass and stars at night, certain +evenings when the heart relaxes—how shall I negate this world +whose power and strength I feel? Yet all the knowledge on earth +will give me nothing to assure me that this world is mine. You +describe it to me and you teach me to classify it. You enumerate its +laws and in my thirst for knowledge I admit that they are true. You +take apart its mechanism and my hope increases. At the final stage +you teach me that this wondrous and multicolored universe can be +reduced to the atom and that the atom itself can be reduced to the +electron. All this is good and I wait for you to continue. But you +tell me of an invisible planetary system in which electrons +gravitate around a nucleus. You explain this world to me with an +image. I realize then that you have been reduced to poetry: I shall +never know. Have I the time to become indignant? You have +already changed theories. So that science that was to teach me +everything ends up in a hypothesis, that lucidity founders in +metaphor, that uncertainty is resolved in a work of art. What need +had I of so many efforts? The soft lines of these hills and the hand +of evening on this troubled heart teach me much more. I have +returned to my beginning. I realize that if through science I can +seize phenomena and enumerate them, I cannot, for all that, +apprehend the world. Were I to trace its entire relief with my +finger, I should not know any more. And you give me the choice +between a description that is sure but that teaches me nothing and +hypotheses that claim to teach me but that are not sure. A stranger +to myself and to the world, armed solely with a thought that +negates itself as soon as it asserts, what is this condition in which I +can have peace only by refusing to know and to live, in which the +appetite for conquest bumps into walls that defy its assaults? To +will is to stir up paradoxes. Everything is ordered in such a way as +to bring into being that poisoned peace produced by +thoughtlessness, lack of heart, or fatal renunciations. +Hence the intelligence, too, tells me in its way that this world is +absurd. Its contrary, blind reason, may well claim that all is clear; I +was waiting for proof and longing for it to be right. But despite so +many pretentious centuries and over the heads of so many eloquent +and persuasive men, I know that is false. On this plane, at least, +there is no happiness if I cannot know. That universal reason, +practical or ethical, that determinism, those categories that explain +everything are enough to make a decent man laugh. They have +nothing to do with the mind. They negate its profound truth, which +is to be enchained. In this unintelligible and limited universe, +man’s fate henceforth assumes its meaning. A horde of irrationals +has sprung up and surrounds him until his ultimate end. In his +recovered and now studied lucidity, the feeling of the absurd +becomes clear and definite. I said that the world is absurd, but I +was too hasty. This world in itself is not reasonable, that is all that +can be said. But what is absurd is the confrontation of this +irrational and the wild longing for clarity whose call echoes in the +human heart. The absurd depends as much on man as on the world. +For the moment it is all that links them together. It binds them one +to the other as only hatred can weld two creatures together. This is +all I can discern clearly in this measureless universe where my +adventure takes place. Let us pause here. If I hold to be true that +absurdity that determines my relationship with life, if I become +thoroughly imbued with that sentiment that seizes me in face of the +world’s scenes, with that lucidity imposed on me by the pursuit of +a science, I must sacrifice everything to these certainties and I must +see them squarely to be able to maintain them. Above all, I must +adapt my behavior to them and pursue them in all their +consequences. I am speaking here of decency. But I want to know +beforehand if thought can live in those deserts. +* * * +I already know that thought has at least entered those deserts. +There it found its bread. There it realized that it had previously +been feeding on phantoms. It justified some of the most urgent +themes of human reflection. +From the moment absurdity is recognized, it becomes a +passion, the most harrowing of all. But whether or not one can live +with one’s passions, whether or not one can accept their law, +which is to burn the heart they simultaneously exalt—that is the +whole question. It is not, however, the one we shall ask just yet. It +stands at the center of this experience. There will be time to come +back to it. Let us recognize rather those themes and those impulses +born of the desert. It will suffice to enumerate them. They, too, are +known to all today. There have always been men to defend the +rights of the irrational. The tradition of what may be called +humiliated thought has never ceased to exist. The criticism of +rationalism has been made so often that it seems unnecessary to +begin again. Yet our epoch is marked by the rebirth of those +paradoxical systems that strive to trip up the reason as if truly it +had always forged ahead. But that is not so much a proof of the +efficacy of the reason as of the intensity of its hopes. On the plane +of history, such a constancy of two attitudes illustrates the essential +passion of man torn between his urge toward unity and the clear +vision he may have of the walls enclosing him. +But never perhaps at any time has the attack on reason been +more violent than in ours. Since Zarathustra’s great outburst: “By +chance it is the oldest nobility in the world. I conferred it upon all +things when I proclaimed that above them no eternal will was +exercised,” since Kierkegaard’s fatal illness, “that malady that +leads to death with nothing else following it,” the significant and +tormenting themes of absurd thought have followed one another. +Or at least, and this proviso is of capital importance, the themes of +irrational and religious thought. From Jaspers to Heidegger, from +Kierkegaard to Che-stov, from the phenomenologists to Scheler, +on the logical plane and on the moral plane, a whole family of +minds related by their nostalgia but opposed by their methods or +their aims, have persisted in blocking the royal road of reason and +in recovering the direct paths of truth. Here I assume these +thoughts to be known and lived. Whatever may be or have been +their ambitions, all started out from that indescribable universe +where contradiction, antinomy, anguish, or impotence reigns. And +what they have in common is precisely the themes so far disclosed. +For them, too, it must be said that what matters above all is the +conclusions they have managed to draw from those discoveries. +That matters so much that they must be examined separately. But +for the moment we are concerned solely with their discoveries and +their initial experiments. We are concerned solely with noting their +agreement. If it would be presumptuous to try to deal with their +philosophies, it is possible and sufficient in any case to bring out +the climate that is common to them. +Heidegger considers the human condition coldly and +announces that that existence is humiliated. The only reality is +“anxiety” in the whole chain of beings. To the man lost in the +world and its diversions this anxiety is a brief, fleeting fear. But if +that fear becomes conscious of itself, it becomes anguish, the +perpetual climate of the lucid man “in whom existence is +concentrated.” This professor of philosophy writes without +trembling and in the most abstract language in the world that “the +finite and limited character of human existence is more primordial +than man himself.” His interest in Kant extends only to +recognizing the restricted character of his “pure Reason.” This is to +coincide at the end of his analyses that “the world can no longer +offer anything to the man filled with anguish.” This anxiety seems +to him so much more important than all the categories in the world +that he thinks and talks only of it. He enumerates its aspects: +boredom when the ordinary man strives to quash it in him and +benumb it; terror when the mind contemplates death. He too does +not separate consciousness from the absurd. The consciousness of +death is the call of anxiety and “existence then delivers itself its +own summons through the intermediary of consciousness.” It is the +very voice of anguish and it adjures existence “to return from its +loss in the anonymous They.” For him, too, one must not sleep, but +must keep alert until the consummation. He stands in this absurd +world and points out its ephemeral character. He seeks his way +amid these ruins. +Jaspers despairs of any ontology because he claims that we +have lost “naivete.” He knows that we can achieve nothing that +will transcend the fatal game of appearances. He knows that the +end of the mind is failure. He tarries over the spiritual adventures +revealed by history and pitilessly discloses the flaw in each system, +the illusion that saved everything, the preaching that hid nothing. +In this ravaged world in which the impossibility of knowledge is +established, in which everlasting nothingness seems the only +reality and irremediable despair seems the only attitude, he tries to +recover the Ariadne’s thread that leads to divine secrets. +Chestov, for his part, throughout a wonderfully monotonous +work, constantly straining toward the same truths, tirelessly +demonstrates that the tightest system, the most universal +rationalism always stumbles eventually on the irrational of human +thought. None of the ironic facts or ridiculous contradictions that +depreciate the reason escapes him. One thing only interests him, +and that is the exception, whether in the domain of the heart or of +the mind. Through the Dostoevskian experiences of the +condemned man, the exacerbated adventures of the Nietzschean +mind, Hamlet’s imprecations, or the bitter aristocracy of an Ibsen, +he tracks down, il-luminates, and magnifies the human revolt +against the irremediable. He refuses the reason its reasons and +begins to advance with some decision only in the middle of that +colorless desert where all certainties have become stones. +Of all perhaps the most engaging, Kierkegaard, for a part of his +existence at least, does more than discover the absurd, he lives it. +The man who writes: “The surest of stubborn silences is not to +hold one’s tongue but to talk” makes sure in the beginning that no +truth is absolute or can render satisfactory an existence that is +impossible in itself. Don Juan of the understanding, he multiplies +pseudonyms and contradictions, writes his Discourses of +Edification at the same time as that manual of cynical spiritualism, +The Diary of the Seducer. He refuses consolations, ethics, reliable +principles. As for that thorn he feels in his heart, he is careful not +to quiet its pain. On the contrary, he awakens it and, in the +desperate joy of a man crucified and happy to be so, he builds up +piece by piece—lucidity, refusal, make believe—a category of the +man possessed. That face both tender and sneering, those +pirouettes followed by a cry from the heart are the absurd spirit +itself grappling with a reality beyond its comprehension. And the +spiritual adventure that leads Kierkegaard to his beloved scandals +begins likewise in the chaos of an experience divested of its setting +and relegated to its original incoherence. +On quite a different plane, that of method, Husserl and the +phenomenologists, by their very extravagances, reinstate the world +in its diversity and deny the transcendent power of the reason. The +spiritual universe becomes incalculably enriched through them. +The rose petal, the milestone, or the human hand are as important +as love, desire, or the laws of gravity. Thinking ceases to be +unifying or making a semblance familiar in the guise of a major +principle. Thinking is learning all over again to see, to be attentive, +to focus consciousness; it is turning every idea and every image, in +the manner of Proust, into a privileged moment. What justifies +thought is its extreme consciousness. Though more positive than +Kierkegaard’s or Chestov’s, Husserl’s manner of proceeding, in +the beginning, nevertheless negates the classic method of the +reason, disappoints hope, opens to intuition and to the heart a +whole proliferation of phenomena, the wealth of which has about it +something inhuman. These paths lead to all sciences or to none. +This amounts to saying that in this case the means are more +important than the end. All that is involved is “an attitude for +understanding” and not a consolation. Let me repeat: in the +beginning, at very least. +How can one fail to feel the basic relationship of these minds! +How can one fail to see that they take their stand around a +privileged and bitter moment in which hope has no further place? I +want everything to be explained to me or nothing. And the reason +is impotent when it hears this cry from the heart. The mind aroused +by this insistence seeks and finds nothing but contradictions and +nonsense. What I fail to understand is nonsense. The world is +peopled with such irrationals. The world itself, whose single +meaning I do not understand, is but a vast irrational. If one could +only say just once: “This is clear,” all would be saved. But these +men vie with one another in proclaiming that nothing is clear, all is +chaos, that all man has is his lucidity and his definite knowledge of +the walls surrounding him. +All these experiences agree and confirm one another. The +mind, when it reaches its limits, must make a judgment and choose +its conclusions. This is where suicide and the reply stand. But I +wish to reverse the order of the inquiry and start out from the +intelligent adventure and come back to daily acts. The experiences +called to mind here were born in the desert that we must not leave +behind. At least it is essential to know how far they went. At this +point of his effort man stands face to face with the irrational. He +feels within him his longing for happiness and for reason. The +absurd is born of this confrontation between the human need and +the unreasonable silence of the world. This must not be forgotten. +This must be clung to because the whole consequence of a life can +depend on it. The irrational, the human nostalgia, and the absurd +that is born of their encounter—these are the three characters in the +drama that must necessarily end with all the logic of which an +existence is capable. +Philosophical Suicide +The feeling of the absurd is not, for all that, the notion of the +absurd. It lays the foundations for it, and that is all. It is not limited +to that notion, except in the brief moment when it passes judgment +on the universe. Subsequently it has a chance of going further. It is +alive; in other words, it must die or else reverberate. So it is with +the themes we have gathered together. But there again what +interests me is not works or minds, criticism of which would call +for another form and another place, but the discovery of what their +conclusions have in common. Never, perhaps, have minds been so +different. And yet we recognize as identical the spiritual +landscapes in which they get under way. Likewise, despite such +dissimilar zones of knowledge, the cry that terminates their +itinerary rings out in the same way. It is evident that the thinkers +we have just recalled have a common climate. +To say that that climate is deadly scarcely amounts to playing +on words. Living under that stifling sky forces one to get away or +to stay. The important thing is to find out how people get away in +the first case and why people stay in the second case. This is how I +define the problem of suicide and the possible interest in the +conclusions of existential philosophy. +But first I want to detour from the direct path. Up to now we +have managed to circumscribe the absurd from the outside. One +can, however, wonder how much is clear in that notion and by +direct analysis try to discover its meaning on the one hand and, on +the other, the consequences it involves. +If I accuse an innocent man of a monstrous crime, if I tell a +virtuous man that he has coveted his own sister, he will reply that +this is absurd. His indignation has its comical aspect. But it also +has its fundamental reason. The virtuous man illustrates by that +reply the definitive antinomy existing between the deed I am +attributing to him and his lifelong principles. “It’s absurd” means +“It’s impossible” but also “It’s contradictory.” If I see a man armed +only with a sword attack a group of machine guns, I shall consider +his act to be absurd. But it is so solely by virtue of the +disproportion between his intention and the reality he will +encounter, of the contradiction I notice between his true strength +and the aim he has in view. Likewise we shall deem a verdict +absurd when we contrast it with the verdict the facts apparently +dictated. And, similarly, a demonstration by the absurd is achieved +by comparing the consequences of such a reasoning with the +logical reality one wants to set up. In all these cases, from the +simplest to the most complex, the magnitude of the absurdity will +be in direct ratio to the distance between the two terms of my +comparison. There are absurd marriages, challenges, rancors, +silences, wars, and even peace treaties. For each of them the +absurdity springs from a comparison. I am thus justified in saying +that the feeling of absurdity does not spring from the mere scrutiny +of a fact or an impression, but that it bursts from the comparison +between a bare fact and a certain reality, between an action and the +world that transcends it. The absurd is essentially a divorce. It lies +in neither of the elements compared; it is born of their +confrontation. +In this particular case and on the plane of intelligence, I can +therefore say that the Absurd is not in man (if such a metaphor +could have a meaning) nor in the world, but in their presence +together. For the moment it is the only bond uniting them. If wish +to limit myself to facts, I know what man wants, I know what the +world offers him, and now I can say that I also know what links +them. I have no need to dig deeper. A single certainty is enough for +the seeker. He simply has to derive all the consequences from it. +The immediate consequence is also a rule of method. The odd +trinity brought to light in this way is certainly not a startling +discovery. But it resembles the data of experience in that it is both +infinitely simple and infinitely complicated. Its first distinguishing +feature in this regard is that it cannot be divided. To destroy one of +its terms is to destroy the whole. There can be no absurd outside +the human mind. Thus, like everything else, the absurd ends with +death. But there can be no absurd outside this world either. And it +is by this elementary criterion that I judge the notion of the absurd +to be essential and consider that it can stand as the first of my +truths. The rule of method alluded to above appears here. If I judge +that a thing is true, I must preserve it. If I attempt to solve a +problem, at least I must not by that very solution conjure away one +of the terms of the problem. For me the sole datum is the absurd. +The first and, after all, the only condition of my inquiry is to +preserve the very thing that crushes me, consequently to respect +what I consider essential in it. I have just defined it as a +confrontation and an unceasing struggle. +And carrying this absurd logic to its conclusion, I must admit +that that struggle implies a total absence of hope (which has +nothing to do with despair), a continual rejection (which must not +be confused with renunciation), and a conscious dissatisfaction +(which must not be compared to immature unrest). Everything that +destroys, conjures away, or exorcises these requirements (and, to +begin with, consent which overthrows divorce) ruins the absurd +and devaluates the attitude that may then be proposed. The absurd +has meaning only in so far as it is not agreed to. +*** +There exists an obvious fact that seems utterly moral: namely, +that a man is always a prey to his truths. Once he has admitted +them, he cannot free himself from them. One has to pay something. +A man who has be-come conscious of the absurd is forever bound +to it. A man devoid of hope and conscious of being so has ceased +to belong to the future. That is natural. But it is just as natural that +he should strive to escape the universe of which he is the creator. +All the foregoing has significance only on account of this paradox. +Certain men, starting from a critique of rationalism, have admitted +the absurd climate. Nothing is more instructive in this regard than +to scrutinize the way in which they have elaborated their +consequences. +Now, to limit myself to existential philosophies, I see that all of +them without exception suggest escape. Through an odd reasoning, +starting out from the absurd over the ruins of reason, in a closed +universe limited to the human, they deify what crushes them and +find reason to hope in what impoverishes them. That forced hope is +religious in all of them. It deserves attention. +I shall merely analyze here as examples a few themes dear to +Chestov and Kierkegaard. But Jaspers will provide us, in +caricatural form, a typical example of this attitude. As a result the +rest will be clearer. He is left powerless to realize the transcendent, +incapab le of plumbing the depth of experience, and conscious of +that universe upset by failure. Will he advance or at least draw the +conclusions from that failure? He contributes nothing new. He has +found nothing in experience but the confession of his own +impotence and no occasion to infer any satisfactory principle. Yet +without justification, as he says to himself, he suddenly asserts all +at once the transcendent, the essence of experience, and the +superhuman significance of life when he writes: “Does not the +failure reveal, beyond any possible explanation and interpretation, +not the absence but the existence of transcendence?” That +existence which, suddenly and through a blind act of human +confidence, explains everything, he defines as “the unthinkable +unity of the general and the particular.” Thus the absurd becomes +god (in the broadest meaning of this word) and that inability to +understand becomes the existence that illuminates everything. +Nothing logically prepares this reasoning. I can call it a leap. And +para-doxically can be understood Jaspers’s insistence, his infinite +patience devoted to making the experience of the transcendent +impossible to realize. For the more fleeting that approximation is, +the more empty that definition proves to be, and the more real that +transcendent is to him; for the passion he devotes to asserting it is +in direct proportion to the gap between his powers of explanation +and the irrationality of the world and of experience. It thus appears +that the more bitterly Jaspers destroys the reason’s preconceptions, +the more radically he will explain the world. That apostle of +humiliated thought will find at the very end of humiliation the +means of regenerating being to its very depth. +Mystical thought has familiarized us with such devices. They +are just as legitimate as any attitude of mind. But for the moment I +am acting as if I took a certain problem seriously. Without judging +beforehand the general value of this attitude or its educative power, +I mean simply to consider whether it answers the conditions I set +myself, whether it is worthy of the conflict that concerns me. Thus +I return to Chestov. A commentator relates a remark of his that +deserves interest: +“The only true solution,” he said, “is precisely where human +judgment sees no solution. Otherwise, what need would we have of +God? We turn toward God only to obtain the impossible. As for +the possible, men suffice.” If there is a Chestovian philosophy, I +can say that it is altogether summed up in this way. For when, at +the conclusion of his passionate analyses, Chestov discovers the +fundamental absurdity of all existence, he does not say: “This is +the absurd,” but rather: “This is God: we must rely on him even if +he does not correspond to any of our rational categories.” So that +confusion may not be possible, the Russian philosopher even hints +that this God is perhaps full of hatred and hateful, +incomprehensible and contradictory; but the more hideous is his +face, the more he asserts his power. His greatness is his +incoherence. His proof is his inhumanity. One must spring into him +and by this leap free oneself from rational illusions. Thus, for +Chestov acceptance of the absurd is contemporaneous with the +absurd itself. Being aware of it amounts to accepting it, and the +whole logical effort of his thought is to bring it out so that at the +same time the tremendous hope it involves may burst forth. Let me +repeat that this attitude is legitimate. But I am persisting here in +considering a single problem and all its consequences. I do not +have to examine the emotion of a thought or of an act of faith. I +have a whole lifetime to do that. I know that the rationalist finds +Chestov’s attitude annoying. But I also feel that Chestov is right +rather than the rationalist, and I merely want to know if he remains +faithful to the commandments of the absurd. +Now, if it is admitted that the absurd is the contrary of hope, it +is seen that existential thought for Chestov presupposes the absurd +but proves it only to dispel it. Such subtlety of thought is a +conjuror’s emotional trick. When Chestov elsewhere sets his +absurd in opposition to current morality and reason, he calls it truth +and redemption. Hence, there is basically in that definition of the +absurd an approbation that Chestov grants it. If it is admitted that +all the power of that notion lies in the way it runs counter to our +elementary hopes, if it is felt that to remain, the absurd requires not +to be consented to, then it can be clearly seen that it has lost its true +aspect, its human and relative character in order to enter an eternity +that is both incomprehensible and satisfying. If there is an absurd, +it is in man’s universe. The moment the notion transforms itself +into eternity’s springboard, it ceases to be linked to human lucidity. +The absurd is no longer that evidence that man ascertains without +consenting to it. The struggle is eluded. Man integrates the absurd +and in that communion causes to disappear its essential character, +which is opposition, laceration, and divorce. This leap is an escape. +Chestov, who is so fond of quoting Hamlet’s remark: “The time is +out of joint,” writes it down with a sort of savage hope that seems +to belong to him in particular. For it is not in this sense that Hamlet +says it or Shakespeare writes it. The intoxication of the irrational +and the vocation of rapture turn a lucid mind away from the +absurd. To Chestov reason is useless but there is something beyond +reason. To an absurd mind reason is useless and there is nothing +beyond reason. +This leap can at least enlighten us a little more as to the true +nature of the absurd. We know that it is worthless except in an +equilibrium, that it is, above all, in the comparison and not in the +terms of that comparison. But it so happens that Chestov puts all +the emphasis on one of the terms and destroys the equilibrium. Our +appetite for understanding, our nostalgia for the absolute are +explicable only in so far, precisely, as we can understand and +explain many things. It is useless to negate the reason absolutely. It +has its order in which it is efficacious. It is properly that of human +experience. Whence we wanted to make everything clear. If we +cannot do so, if the absurd is born on that occasion, it is born +precisely at the very meeting-point of that efficacious but limited +reason with the ever resurgent irrational. Now, when Chestov rises +up against a Hegelian proposition such as “the motion of the solar +system takes place in conformity with immutable laws and those +laws are its reason,” when he devotes all his passion to upsetting +Spinoza’s rationalism, he concludes, in effect, in favor of the +vanity of all reason. Whence, by a natural and illegitimate reversal, +to the pre-eminence of the irrational.[5] But the transition is not +evident. For here may intervene the notion of limit and the notion +of level. The laws of nature may be operative up to a certain limit, +beyond which they turn against themselves to give birth to the +absurd. Or else, they may justify themselves on the level of +description without for that reason being true on the level of +explanation. +Everything is sacrificed here to the irrational, and, the demand +for clarity being conjured away, the absurd disappears with one of +the terms of its comparison. The absurd man, on the other hand, +does not undertake such a leveling process. He recognizes the +struggle, does not absolutely scorn reason, and admits the +irrational. Thus he again embraces in a single glance all the data of +experience and he is little inclined to leap before knowing. He +knows simply that in that alert awareness there is no further place +for hope. +What is perceptible in Leo Chestov will be perhaps even more +so in Kierkegaard. To be sure, it is hard to outline clear +propositions in so elusive a writer. But, despite apparently opposed +writings, beyond the pseudonyms, the tricks, and the smiles, can be +felt throughout that work, as it were, the presentiment (at the same +time as the apprehension) of a truth which eventually bursts forth +in the last works: Kierkegaard likewise takes the leap. His +childhood having been so frightened by Christianity, he ultimately +returns to its harshest aspect. For him, too, antinomy and paradox +become criteria of the religious. Thus, the very thing that led to +despair of the meaning and depth of this life now gives it its truth +and its clarity. Christianity is the scandal, and what Kierkegaard +calls for quite plainly is the third sacrifice required by Ignatius +Loyola, the one in which God most rejoices: “The sacrifice of the +intellect.” [6] +This effect of the “leap” is odd, but must not surprise us any +longer. He makes of the absurd the criterion of the other world, +whereas it is simply a residue of the experience of this world. “In +his failure,” says Kierkegaard, “the believer finds his triumph.” +It is not for me to wonder to what stirring preaching this +attitude is linked. I merely have to wonder if the spectacle of the +absurd and its own character justifies it. On this point, I know that +it is not so. Upon considering again the content of the absurd, one +understands better the method that inspired Kierkegaard. Between +the irrational of the world and the insurgent nostalgia of the absurd, +he does not maintain the equilibrium. He does not respect the +relationship that constitutes, properly speaking, the feeling of +absurdity. Sure of being unable to escape the irrational, he wants at +least to save himself from that desperate nostalgia that seems to +him sterile and devoid of implication. But if he may be right on +this point in his judgment, he could not be in his negation. If he +substitutes for his cry of revolt a frantic adherence, at once he is +led to blind himself to the absurd which hitherto enlightened him +and to deify the only certainty he henceforth possesses, the +irrational. The important thing, as Abbe Galiani said to Mme +d’Epinay, is not to be cured, but to live with one’s ailments. +Kierkegaard wants to be cured. To be cured is his frenzied wish, +and it runs throughout his whole journal. The entire effort of his +intelligence is to escape the antinomy of the human condition. An +all the more desperate effort since he intermittently perceives its +vanity when he speaks of himself, as if neither fear of God nor +piety were capable of bringing him to peace. Thus it is that, +through a strained subterfuge, he gives the irrational the +appearance and God the attributes of the absurd: unjust, +incoherent, and incomprehensible. Intelligence alone in him strives +to stifle the underlying demands of the human heart. Since nothing +is proved, everything can be proved. +Indeed, Kierkegaard himself shows us the path taken. I do not +want to suggest anything here, but how can one fail to read in his +works the signs of an almost intentional mutilation of the soul to +balance the mutilation accepted in regard to the absurd? It is the +leitmotiv of the Journal. “What I lacked was the animal which also +belongs to human destiny .... But give me a body then.” And +further on: “Oh! especially in my early youth what should I not +have given to be a man, even for six months ... what I lack, +basically, is a body and the physical conditions of existence.” +Elsewhere, the same man nevertheless adopts the great cry of hope +that has come down through so many centuries and quickened so +many hearts, except that of the absurd man. “But for the Christian +death is certainly not the end of everything and it implies infinitely +more hope than life implies for us, even when that life is +overflowing with health and vigor.” Reconciliation through +scandal is still reconciliation. It allows one perhaps, as can be seen, +to derive hope of its contrary, which is death. But even if fellow- +feeling inclines one toward that attitude, still it must be said that +excess justifies nothing. That transcends, as the saying goes, the +human scale; therefore it must be superhuman. But this “therefore” +is superfluous. There is no logical certainty here. There is no +experimental probability either. All I can say is that, in fact, that +transcends my scale. If I do not draw a negation from it, at least I +do not want to found anything on the incomprehensible. I want to +know whether I can live with what I know and with that alone. I +am told again that here the intelligence must sacrifice its pride and +the reason bow down. But if I recognize the limits of the reason, I +do not therefore negate it, recognizing its relative powers. I merely +want to remain in this middle path where the intelligence can +remain clear. If that is its pride, I see no sufficient reason for +giving it up. Nothing more profound, for example, than +Kierkegaard’s view according to which despair is not a fact but a +state: the very state of sin. For sin is what alienates from God. The +absurd, which is the metaphysical state of the conscious man, does +not lead to God.[7] Perhaps this notion will become clearer if I risk +this shocking statement: the absurd is sin without God. +It is a matter of living in that state of the absurd I know on +what it is founded, this mind and this world straining against each +other without being able to embrace each other. I ask for the rule— +of life of that state, and what I am offered neglects its basis, +negates one of the terms of the painful opposition, demands of me +a resignation. I ask what is involved in the condition I recognize as +mine; I know it implies obscurity and ignorance; and I am assured +that this ignorance explains everything and that this darkness is my +light. But there is no reply here to my intent, and this stirring +lyricism cannot hide the paradox from me. One must therefore turn +away. Kierkegaard may shout in warning: “If man had no eternal +consciousness, if, at the bottom of everything, there were merely a +wild, seething force producing everything, both large and trifling, +in the storm of dark passions, if the bottomless void that nothing +can fill underlay all things, what would life be but despair?” This +cry is not likely to stop the absurd man. Seeking what is true is not +seeking what is desirable. If in order to elude the anxious question: +“What would life be?” one must, like the donkey, feed on the roses +of illusion, then the absurd mind, rather than resigning itself to +falsehood, prefers, to adopt fearlessly Kierkegaard’s reply: +“despair.” Everything considered, a determined soul will always +manage. +*** +I am taking the liberty at this point of calling the existential +attitude philosophical suicide. But this does not imply a judgment. +It is a convenient way of indicating the movement by which a +thought negates itself and tends to transcend itself in its very +negation. For the existentials negation is their God. To be precise, +that god is maintained only through the negation of human +reason.[8] But, like suicides, gods change with men. There are +many ways of leaping, the essential being to leap. Those +redeeming negations, those ultimate contradictions which negate +the obstacle that has not yet been leaped over, may spring just as +well (this is the paradox at which this reasoning aims) from a +certain religious inspiration as from the rational order. They always +lay claim to the eternal, and it is solely in this that they take the +leap. +It must be repeated that the reasoning developed in this essay +leaves out altogether the most widespread spiritual attitude of our +enlightened age: the one, based on the principle that all is reason, +which aims to explain the world. It is natural to give a clear view +of the world after accepting the idea that it must be clear. That is +even legitimate, but does not concern the reasoning we are +following out here. In fact, our aim is to shed light upon the step +taken by the mind when, starting from a philosophy of the world’s +lack of meaning, it ends up by finding a meaning and depth in it. +The most touching of those steps is religious in essence; it +becomes obvious in the theme of the irrational. But the most +paradoxical and most significant is certainly the one that attributes +rational reasons to a world it originally imagined as devoid of any +guiding principle. It is impossible in any case to reach the +consequences that concern us without having given an idea of this +new attainment of the spirit of nostalgia. +I shall examine merely the theme of “the Intention” made +fashionable by Husserl and the phenomenologists. I have already +alluded to it. Originally Husserl’s method negates the classic +procedure of the reason. Let me repeat. Thinking is not unifying or +making the appearance familiar under the guise of a great +principle. Thinking is learning all over again how to see, directing +one’s consciousness, making of every image a privileged place. In +other words, phenomenology declines to explain the world, it +wants to be merely a description of actual experience. It confirms +absurd thought in its initial assertion that there is no truth, but +merely truths. From the evening breeze to this hand on my +shoulder, everything has its truth. Consciousness illuminates it by +paying attention to it. Consciousness does not form the object of its +understanding, it merely focuses, it is the act of attention, and, to +borrow a Bergsonian image, it resembles the projector that +suddenly focuses on an image. The difference is that there is no +scenario, but a successive and incoherent illustration. In that magic +lantern all the pictures are privileged. Consciousness suspends in +experience the objects of its attention. Through its miracle it +isolates them. Henceforth they are beyond all judgments. This is +the “intention” that characterizes consciousness. But the word does +not imply any idea of finality; it is taken in its sense of “direction”: +its only value is topographical. +At first sight, it certainly seems that in this way nothing +contradicts the absurd spirit. That apparent modesty of thought that +limits itself to describing what it declines to explain, that +intentional discipline whence results paradoxically a profound +enrichment of experience and the rebirth of the world in its +prolixity are absurd procedures. At least at first sight. For methods +of thought, in this case as elsewhere, always assume two aspects, +one psychological and the other metaphysical.[9] Thereby they +harbor two truths. If the theme of the intentional claims to illustrate +merely a psychological attitude, by which reality is drained instead +of being explained, nothing in fact separates it from the absurd +spirit. It aims to enumerate what it cannot transcend. It affirms +solely that without any unifying principle thought can still take +delight in describing and understanding every aspect of experience. +The truth involved then for each of those aspects is psychological +in nature. It simply testifies to the “interest” that reality can offer. +It is a way of awaking a sleeping world and of making it vivid to +the mind. But if one attempts to extend and give a rational basis to +that notion of truth, if one claims to discover in this way the +“essence” of each object of knowledge, one restores its depth to +experience. For an absurd mind that is incomprehensible. Now, it +is this wavering between modesty and assurance that is noticeable +in the intentional attitude, and this shimmering of +phenomenological thought will illustrate the absurd reasoning +better than anything else. +For Husserl speaks likewise of “extra-temporal essences” +brought to light by the intention, and he sounds like Plato. All +things are not explained by one thing but by all things. I see no +difference. To be sure, those ideas or those essences that +consciousness “effectuates” at the end of every description are not +yet to be considered perfect models. But it is asserted that they are +directly present in each datum of perception. There is no longer a +single idea explaining everything, but an infinite number of +essences giving a meaning to an infinite number of objects. The +world comes to a stop, but also lights up. Platonic realism becomes +intuitive, but it is still realism. Kierkegaard was swallowed up in +his God; Parmenides plunged thought into the One. But here +thought hurls itself into an abstract polytheism. But this is not all: +hallucinations and fictions likewise belong to “extra-temporal +essences.” In the new world of ideas, the species of centaurs +collaborates with the more modest species of metropolitan man. +For the absurd man, there was a truth as well as a bitterness in +that purely psychological opinion that all aspects of the world are +privileged. To say that everything is privileged is tantamount to +saying that everything is equivalent. But the metaphysical aspect of +that truth is so far-reaching that through an elementary reaction he +feels closer perhaps to Plato. He is taught, in fact, that every image +presupposes an equally privileged essence. In this ideal world +without hierarchy, the formal army is composed solely of generals. +To be sure, transcendency had been eliminated. But a sudden shift +in thought brings back into the world a sort of fragmentary +immanence which restores to the universe its depth. +Am I to fear having carried too far a theme handled with +greater circumspection by its creators? I read merely these +assertions of Husserl, apparently paradoxical yet rigorously logical +if what precedes is accepted: “That which is true is true absolutely, +in itself; truth is one, identical with itself, however different the +creatures who perceive it, men, monsters, angels or gods.” Reason +triumphs and trumpets forth with that voice, I cannot deny. What +can its assertions mean in the absurd world? The perception of an +angel or a god has no meaning for me. That geometrical spot +where divine reason ratifies mine will always be incomprehensible +to me. There, too, I discern a leap, and though performed in the +abstract, it nonetheless means for me forgetting just what I do not +want to forget. When farther on Husserl exclaims: “If all masses +subject to attraction were to disappear, the law of attraction would +not be destroyed but would simply remain without any possible +application,” I know that I am faced with a metaphysic of +consolation. And if I want to discover the point where thought +leaves the path of evidence, I have only to reread the parallel +reasoning that Husserl voices regarding the mind: “If we could +contemplate clearly the exact laws of psychic processes, they +would be seen to be likewise eternal and invariable, like the basic +laws of theoretical natural science. Hence they would be valid even +if there were no psychic process.” Even if the mind were not, its +laws would be! I see then that of a psychological truth Husserl +aims to make a rational rule: after having denied the integrating +power of human reason, he leaps by this expedient to eternal +Reason. +Husserl’s theme of the “concrete universe” cannot then surprise +me. If I am told that all essences are not formal but that some are +material, that the first are the object of logic and the second of +science, this is merely a question of definition. The abstract, I am +told, indicates but a part, without consistency in itself, of a +concrete universal. But the wavering already noted allows me to +throw light on the confusion of these terms. For that may mean that +the concrete object of my attention, this sky, the reflection of that +water on this coat, alone preserve the prestige of the real that my +interest isolates in the world. And I shall not deny it. But that may +mean also that this coat itself is universal, has its particular and +sufficient essence, belongs to the world of forms. I then realize that +merely the order of the procession has been changed. This world +has ceased to have its reflection in a higher universe, but the +heaven of forms is figured in the host of images of this earth. This +changes nothing for me. Rather than encountering here a taste for +the concrete, the meaning of the human condition, I find an +intellectualism sufficiently unbridled to generalize the concrete +itself. +* * * +It is futile to be amazed by the apparent paradox that leads +thought to its own negation by the opposite paths of humiliated +reason and triumphal reason. From the abstract god of Husserl to +the dazzling god of Kierkegaard the distance is not so great. +Reason and the irrational lead to the same preaching. In truth the +way matters but little; the will to arrive suffices. The abstract +philosopher and the religious philosopher start out from the same +disorder and support each other in the same anxiety. But the +essential is to explain. Nostalgia is stronger here than knowledge. +It is significant that the thought of the epoch is at once one of the +most deeply imbued with a philosophy of the non-significance of +the world and one of the most divided in its conclusions. It is +constantly oscillating between extreme rationalization of reality +which tends to break up that thought into standard reasons and its +extreme irrationalization which tends to deify it. But this divorce is +only apparent. It is a matter of reconciliation, and, in both cases, +the leap suffices. It is always wrongly thought that the notion of +reason is a oneway notion. To tell the truth, however rigorous it +may be in its ambition, this concept is nonetheless just as unstable +as others. Reason bears a quite human aspect, but it also is able to +turn toward the divine. Since Plotinus, who was the first to +reconcile it with the eternal climate, it has learned to turn away +from the most cherished of its principles, which is contradiction, in +order to integrate into it the strangest, the quite magic one of +participation.[10] It is an instrument of thought and not thought +itself. Above all, a man’s thought is his nostalgia. +Just as reason was able to soothe the melancholy of Plotinus, it +provides modern anguish the means of calming itself in the +familiar setting of the eternal. The absurd mind has less luck. For it +the world is neither so rational nor so irrational. It is unreasonable +and only that. With Husserl the reason eventually has no limits at +all. The absurd, on the contrary, establishes its lim-its since it is +powerless to calm its anguish. Kierkegaard independently asserts +that a single limit is enough to negate that anguish. But the absurd +does not go so far. For it that limit is directed solely at the reason’s +ambitions. The theme of the irrational, as it is conceived by the +existentials, is reason becoming confused and escaping by negating +itself. The absurd is lucid reason noting its limits. +Only at the end of this difficult path does the absurd man +recognize his true motives. Upon comparing his inner exigence and +what is then offered him, he suddenly feels he is going to turn +away. In the universe of Husserl the world becomes clear and that +longing for familiarity that man’s heart harbors becomes useless. +In Kierkegaard’s apocalypse that desire for clarity must be given +up if it wants to be satisfied. Sin is not so much knowing (if it +were, everybody would be innocent) as wanting to know. Indeed, it +is the only sin of which the absurd man can feel that it constitutes +both his guilt and his innocence. He is offered a solution in which +all the past contradictions have become merely polemical games. +But this is not the way he experienced them. Their truth must be +preserved, which consists in not being satisfied. He does not want +preaching. +My reasoning wants to be faithful to the evidence that aroused +it. That evidence is the absurd. It is that divorce between the mind +that desires and the world that disappoints, my nostalgia for unity, +this fragmented universe and the contradiction that binds them +together. Kierkegaard suppresses my nostalgia and Husserl gathers +together that universe. That is not what I was expecting. It was a +matter of living and thinking with those dislocations, of knowing +whether one had to accept or refuse. There can be no question of +masking the evidence, of suppressing the absurd by denying one of +the terms of its equation. It is essential to know whether one can +live with it or whether, on the other hand, logic commands one to +die of it. I am not interested in philosophical suicide, but rather in +plain suicide. I merely wish to purge it of its emotional content and +know its logic and its integrity. Any other position implies for the +absurd mind deceit and the mind’s retreat before what the mind +itself has brought to light. Husserl claims to obey the desire to +escape “the inveterate habit of living and thinking in certain well- +known and convenient conditions of existence,” but the final leap +restores in him the eternal and its comfort. The leap does not +represent an extreme danger as Kierkegaard would like it to do. +The danger, on the contrary, lies in the subtle instant that precedes +the leap. Being able to remain on that dizzying crest—that is +integrity and the rest is subterfuge. I know also that never has +helplessness inspired such striking harmonies as those of +Kierkegaard. But if helplessness has its place in the indifferent +landscapes of history, it has none in a reasoning whose exigence is +now known. +Absurd Freedom +Now the main thing is done, I hold certain facts from which I +cannot separate. What I know, what is certain, what I cannot deny, +what I cannot reject—this is what counts. I can negate everything +of that part of me that lives on vague nostalgias, except this desire +for unity, this longing to solve, this need for clarity and cohesion. I +can refute everything in this world surrounding me that offends or +enraptures me, except this chaos, this sovereign chance and this +divine equivalence which springs from anarchy. I don’t know +whether this world has a meaning that transcends it. But I know +that I do not know that meaning and that it is impossible for me +just now to know it. What can a meaning outside my condition +mean to me? I can understand only in human terms. What I touch, +what resists me—that is what I understand. And these two +certainties—my appetite for the absolute and for unity and the +impossibility of reducing this world to a rational and reasonable +principle—I also know that I cannot reconcile them. What other +truth can I admit without lying, without bringing in a hope I lack +and which means nothing within the limits of my condition? +If I were a tree among trees, a cat among animals, this life +would have a meaning, or rather this problem would not arise, for I +should belong to this world. I should be this world to which I am +now opposed by my whole consciousness and my whole insistence +upon familiarity. This ridiculous reason is what sets me in +opposition to all creation. I cannot cross it out with a stroke of the +pen. What I believe to be true I must therefore preserve. What +seems to me so obvious, even against me, I must support. And +what constitutes the basis of that conflict, of that break between the +world and my mind, but the awareness of it? If therefore I want to +preserve it, I can through a constant awareness, ever revived, ever +alert. This is what, for the moment, I must remember. At this +moment the absurd, so obvious and yet so hard to win, returns to a +man’s life and finds its home there. At this moment, too, the mind +can leave the arid, dried-up path of lucid effort. That path now +emerges in daily life. It encounters the world of the anonymous +impersonal pronoun “one,” but henceforth man enters in with his +revolt and his lucidity. He has forgotten how to hope. This hell of +the present is his Kingdom at last. All problems recover their sharp +edge. Abstract evidence retreats before the poetry of forms and +colors. Spiritual conflicts become embodied and return to the +abject and magnificent shelter of man’s heart. None of them is +settled. But all are transfigured. Is one going to die, escape by the +leap, rebuild a mansion of ideas and forms to one’s own scale? Is +one, on the contrary, going to take up the heart-rending and +marvelous wager of the absurd? Let’s make a final effort in this +regard and draw all our conclusions. The body, affection, creation, +action, human nobility will then resume their places in this mad +world. At last man will again find there the wine of the absurd and +the bread of indifference on which he feeds his greatness. +Let us insist again on the method: it is a matter of persisting. At +a certain point on his path the absurd man is tempted. History is +not lacking in either religions or prophets, even without gods. He is +asked to leap. All he can reply is that he doesn’t fully understand, +that it is not obvious. Indeed, he does not want to do anything but +what he fully understands. He is assured that this is the sin of +pride, but he does not understand the notion of sin; that perhaps +hell is in store, but he has not enough imagination to visualize that +strange future; that he is losing immortal life, but that seems to him +an idle consideration. An attempt is made to get him to admit his +guilt. He feels innocent. To tell the truth, that is all he feels—his +irreparable innocence. This is what allows him everything. Hence, +what he demands of himself is to live solely with what he knows, +to accommodate himself to what is, and to bring in nothing that is +not certain. He is told that nothing is. But this at least is a certainty. +And it is with this that he is concerned: he wants to find out if it is +possible to live without appeal. +Now I can broach the notion of suicide. It has already been felt +what solution might be given. At this point the problem is +reversed. It was previously a question of finding out whether or not +life had to have a meaning to be lived. It now becomes clear, on +the contrary, that it will be lived all the better if it has no meaning. +Living an experience, a particular fate, is accepting it fully. Now, +no one will live this fate, knowing it to be absurd, unless he does +everything to keep before him that absurd brought to light by +consciousness. Negating one of the terms of the opposition on +which he lives amounts to escaping it. To abolish conscious revolt +is to elude the problem. The theme of permanent revolution is thus +carried into individual experience. Living is keeping the absurd +alive. Keeping it alive is, above all, contemplating it. Unlike +Eurydice, the absurd dies only when we turn away from it. One of +the only coherent philosophical positions is thus revolt. It is a +constant confrontation between man and his own obscurity. It is an +insistence upon an impossible transparency. It challenges the world +anew every second. Just as danger provided man the unique +opportunity of seizing awareness, so metaphysical revolt extends +awareness to the whole of experience. It is that constant presence +of man in his own eyes. It is not aspiration, for it is devoid of hope. +That revolt is the certainly of a crushing fate, without the +resignation that ought to accompany it. +This is where it is seen to what a degree absurd experience is +remote from suicide. It may be thought that suicide follows +revolt—but wrongly. For it does not represent the logical outcome +of revolt. It is just the contrary by the consent it presupposes. +Suicide, like the leap, is acceptance at its extreme. Everything is +over and man returns to his essential history. His future, his unique +and dreadful future—he sees and rushes toward it. In its way, +suicide settles the absurd. It engulfs the absurd in the same death. +But I know that in order to keep alive, the absurd cannot be settled. +It escapes suicide to the extent that it is simultaneously awareness +and rejection of death. It is, at the extreme limit of the condemned +man’s last thought, that shoelace that despite everything he sees a +few yards away, on the very brink of his dizzying fall. The +contrary of suicide, in fact, is the man condemned to death. +That revolt gives life its value. Spread out over the whole +length of a life, it restores its majesty to that life. To a man devoid +of blinders, there is no finer sight than that of the intelligence at +grips with a reality that transcends it. The sight of human pride is +unequaled. No disparagement is of any use. That discipline that the +mind imposes on itself, that will conjured up out of nothing, that +face-to-face struggle have something exceptional about them. To +impoverish that reality whose inhumanity constitutes man’s +majesty is tantamount to impoverishing him himself. I understand +then why the doctrines that explain everything to me also debilitate +me at the same time. They relieve me of the weight of my own life, +and yet I must carry it alone. At this juncture, I cannot conceive +that a skeptical metaphysics can be joined to an ethics of +renunciation. +Consciousness and revolt, these rejections are the contrary of +renunciation. Everything that is indomitable and passionate in a +human heart quickens them, on the contrary, with its own life. It is +essential to die unrecon-ciled and not of one’s own free will. +Suicide is a repudi—ation. The absurd man can only drain +everything to the bitter end, and deplete himself. The absurd is his +extreme tension, which he maintains constantly by solitary effort, +for he knows that in that consciousness and in that day-to-day +revolt he gives proof of his only truth, which is defiance. This is a +first consequence. +*** +If I remain in that prearranged position which consists in +drawing all the conclusions (and nothing else) involved in a newly +discovered notion, I am faced with a second paradox. In order to +remain faithful to that method, I have nothing to do with the +problem of metaphysical liberty. Knowing whether or not man is +free doesn’t interest me. I can experience only my own freedom. +As to it, I can have no general notions, but merely a few clear +insights. The problem of “freedom as such” has no meaning, for it +is linked in quite a different way with the problem of God. +Knowing whether or not man is free involves knowing whether he +can have a master. The absurdity peculiar to this problem comes +from the fact that the very notion that makes the problem of +freedom possible also takes away all its meaning. For in the +presence of God there is less a problem of freedom than a problem +of evil. You know the alternative: either we are not free and God +the all-powerful is responsible for evil. Or we are free and +responsible but God is not all powerful. All the scholastic +subtleties have neither added anything to nor subtracted anything +from the acuteness of this paradox. +This is why I cannot act lost in the glorification or the mere +definition of a notion which eludes me and loses its meaning as +soon as it goes beyond the frame of reference of my individual +experience. I cannot understand what kind of freedom would be +given me by a higher being. I have lost the sense of hierarchy. The +only conception of freedom I can have is that of the prisoner or the +individual in the midst of the State. The only one I know is +freedom of thought and action. Now if the absurd cancels all my +chances of eternal freedom, it restores and magnifies, on the other +hand, my freedom of action. That privation of hope and future +means an increase in man’s availability. +Before encountering the absurd, the everyday man lives with +aims, a concern for the future or for justification (with regard to +whom or what is not the question). He weighs his chances, he +counts on “someday,” his retirement or the labor of his sons. He +still thinks that something in his life can be directed. In truth, he +acts as if he were free, even if all the facts make a point of +contradicting that liberty. But after the absurd, everything is upset. +That idea that “I am,” my way of acting as if everything has a +meaning (even if, on occasion, I said that nothing has)—all that is +given the lie in vertiginous fashion by the absurdity of a possible +death. Thinking of the future, establishing aims for oneself, having +preferences—all this presupposes a belief in freedom, even if one +occasionally ascertains that one doesn’t feel it. But at that moment +I am well aware that that higher liberty, that freedom to be, which +alone can serve as basis for a truth, does not exist. Death is there as +the only reality. After death the chips are down. I am not even free, +either, to perpetuate myself, but a slave, and, above all, a slave +without hope of an eternal revolution, without recourse to +contempt. And who without revolution and without contempt can +remain a slave? What freedom can exist in the fullest sense without +assurance of eternity? +But at the same time the absurd man realizes that hitherto he +was bound to that postulate of freedom on the illusion of which he +was living. In a certain sense, that hampered him. To the extent to +which he imagined a purpose to his life, he adapted himself to the +demands of a purpose to be achieved and became the slave of his +liberty. Thus I could not act otherwise than as the father (or the +engineer or the leader of a nation, or the post-office sub-clerk) that +I am preparing to be. I think I can choose to be that rather than +something else. I think so unconsciously, to be sure. But at the +same time I strengthen my postulate with the beliefs of those +around me, with the presumptions of my human environment +(others are so sure of being free, and that cheerful mood is so +contagious!). However far one may remain from any presumption, +moral or social, one is partly influenced by them and even, for the +best among them (there are good and bad presumptions), one +adapts one’s life to them. Thus the absurd man realizes that he was +not really free. To speak clearly, to the extent to which I hope, to +which I worry about a truth that might be individual to me, about a +way of being or creating, to the extent to which I arrange my life +and prove thereby that I accept its having a meaning, I create for +myself barriers between which I confine my life. I do like so many +bureaucrats of the mind and heart who only fill me with disgust +and whose only vice, I now see clearly, is to take man’s freedom +seriously. +The absurd enlightens me on this point: there is no future. +Henceforth this is the reason for my inner freedom. I shall use two +comparisons here. Mystics, to begin with, find freedom in giving +themselves. By losing themselves in their god, by accepting his +rules, they become secretly free. In spontaneously accepted slavery +they recover a deeper independence. But what does that freedom +mean? It may be said, above all, that they feel free with regard to +themselves, and not so much free as liberated. Likewise, +completely turned toward death (taken here as the most obvious +absurdity), the absurd man feels released from everything outside +that passionate attention crystallizing in him. He enjoys a freedom +with regard to common rules. It can be seen at this point that the +initial themes of existential philosophy keep their entire value. The +return to consciousness, the escape from everyday sleep represent +the first steps of absurd freedom. But it is existential preaching that +is alluded to, and with it that spiritual leap which basically escapes +consciousness. In the same way (this is my second comparison) the +slaves of antiquity did not belong to themselves. But they knew +that freedom which consists in not feeling responsible.[11] Death, +too, has patrician hands which, while crushing, also liberate. +Losing oneself in that bottomless certainty, feeling henceforth +sufficiently remote from one’s own life to increase it and take a +broad view of it—this involves the principle of a liberation. Such +new independence has a definite time limit, like any freedom of +action. It does not write a check on eternity. But it takes the place +of the illusions of freedom, which all stopped with death. The +divine availability of the condemned man before whom the prison +doors open in a certain early dawn, that unbelievable +disinterestedness with regard to everything except for the pure +flame of life—it is clear that death and the absurd are here the +principles of the only reasonable freedom: that which a human +heart can experience and live. This is a second consequence. The +absurd man thus catches sight of a burning and frigid, transparent +and limited universe in which nothing is possible but everything is +given, and beyond which all is collapse and nothingness. He can +then decide to accept such a universe and draw from it his strength, +his refusal to hope, and the unyielding evidence of a life without +consolation. +*** +But what does life mean in such a universe? Nothing else for +the moment but indifference to the future and a desire to use up +everything that is given. Belief in the meaning of life always +implies a scale of values, a choice, our preferences. Belief in the +absurd, according to our definitions, teaches the contrary. But this +is worth examining. +Knowing whether or not one can live without appeal is all that +interests me. I do not want to get out of my depth. This aspect of +life being given me, can I adapt myself to it? Now, faced with this +particular concern, belief in the absurd is tantamount to +substituting the quantity of experiences for the quality. If I +convince myself that this life has no other aspect than that of the +absurd, if I feel that its whole equilibrium depends on that +perpetual opposition between my conscious revolt and the darkness +in which it struggles, if I admit that my freedom has no meaning +except in relation to its limited fate, then I must say that what +counts is not the best living but the most living. It is not up to me +to wonder if this is vulgar or revolting, elegant or deplorable. Once +and for all, value judgments are discarded here in favor of factual +judgments. I have merely to draw the conclusions from what I can +see and to risk nothing that is hypothetical. Supposing that living in +this way were not honorable, then true propriety would command +me to be dishonorable. +The most living; in the broadest sense, that rule means nothing. +It calls for definition. It seems to begin with the fact that the notion +of quantity has not been sufficiently explored. For it can account +for a large share of human experience. A man’s rule of conduct +and his scale of values have no meaning except through the +quantity and variety of experiences he has been in a position to +accumulate. Now, the conditions of modern life impose on the +majority of men the same quantity of experiences and +consequently the same profound experience. To be sure, there must +also be taken into consideration the individual’s spontaneous +contribution, the “given” element in him. But I cannot judge of +that, and let me repeat that my rule here is to get along with the +immediate evidence. I see, then, that the individual character of a +common code of ethics lies not so much in the ideal importance of +its basic principles as in the norm of an experience that it is +possible to measure. To stretch a point somewhat, the Greeks had +the code of their leisure just as we have the code of our eight-hour +day. But already many men among the most tragic cause us to +foresee that a longer experience changes this table of values. They +make us imagine that adventurer of the everyday who through +mere quantity of experiences would break all records (I am +purposely using this sports expression) and would thus win his +own code of ethics.[12] Yet let’s avoid romanticism and just ask +ourselves what such an attitude may mean to a man with his mind +made up to take up his bet and to observe strictly what he takes to +be the rules of the game. +Breaking all the records is first and foremost being faced with +the world as often as possible. How can that be done without +contradictions and without playing on words? For on the one hand +the absurd teaches that all experiences are unimportant, and on the +other it urges toward the greatest quantity of experiences. How, +then, can one fail to do as so many of those men I was speaking of +earlier—choose the form of life that brings us the most possible of +that human matter, thereby introducing a scale of values that on the +other hand one claims to reject? +But again it is the absurd and its contradictory life that teaches +us. For the mistake is thinking that that quantity of experiences +depends on the circumstances of our life when it depends solely on +us. Here we have to be over-simple. To two men living the same +number of years, the world always provides the same sum of +experiences. It is up to us to be conscious of them. Being aware of +one’s life, one’s revolt, one’s freedom, and to the maximum, is +living, and to the maximum. Where lucidity dominates, the scale of +values becomes useless. Let’s be even more simple. Let us say that +the sole obstacle, the sole deficiency to be made good, is +constituted by premature death. Thus it is that no depth, no +emotion, no passion, and no sacrifice could render equal in the +eyes of the absurd man (even if he wished it so) a conscious life of +forty years and a lucidity spread over sixty years.[13] Madness and +death are his irreparables. Man does not choose. The absurd and +the extra life it involves therefore do not defend on man’s will, but +on its contrary, which is death.[14] Weighing words carefully, it is +altogether a question of luck. One just has to be able to consent to +this. There will never be any substitute for twenty years of life and +experience. +By what is an odd inconsistency in such an alert race, the +Greeks claimed that those who died young were beloved of the +gods. And that is true only if you are willing to believe that +entering the ridiculous world of the gods is forever losing the +purest of joys, which is feeling, and feeling on this earth. The +present and the succession of presents before a constantly +conscious soul is the ideal of the absurd man. But the word “ideal” +rings false in this connection. It is not even his vocation, but +merely the third consequence of his reasoning. Having started from +an anguished awareness of the inhuman, the meditation on the +absurd returns at the end of its itinerary to the very heart of the +passionate flames of human revolt.[15] +* * * +Thus I draw from the absurd three consequences, which are my +revolt, my freedom, and my passion. By the mere activity of +consciousness I transform into a rule of life what was an invitation +to death—and I refuse suicide. I know, to be sure, the dull +resonance that vibrates throughout these days. Yet I have but a +word to say: that it is necessary. When Nietzsche writes: “It clearly +seems that the chief thing in heaven and on earth is to obey at +length and in a single direction: in the long run there results +something for which it is worth the trouble of living on this earth +as, for example, virtue, art, music, the dance, reason, the mind— +something that transfigures, something delicate, mad, or divine,” +he elucidates the rule of a really distinguished code of ethics. But +he also points the way of the absurd man. Obeying the flame is +both the easiest and the hardest thing to do. However, it is good for +man to judge himself occasionally. He is alone in being able to do +so. +“Prayer,” says Alain, “is when night descends over thought.” +“But the mind must meet the night,” reply the mystics and the +existentials. Yes, indeed, but not that night that is born under +closed eyelids and through the mere will of man—dark, +impenetrable night that the mind calls up in order to plunge into it. +If it must encounter a night, let it be rather that of despair, which +remains lucid—polar night, vigil of the mind, whence will arise +perhaps that white and virginal brightness which outlines every +object in the light of the intelligence. At that degree, equivalence +encounters passionate understanding. Then it is no longer even a +question of judging the existential leap. It resumes its place amid +the age-old fresco of human attitudes. For the spectator, if he is +conscious, that leap is still absurd. In so far as it thinks it solves the +paradox, it reinstates it intact. On this score, it is stirring. On this +score, everything resumes its place and the absurd world is reborn +in all its splendor and diversity. +But it is bad to stop, hard to be satisfied with a single way of +seeing, to go without contradiction, perhaps the most subtle of all +spiritual forces. The preceding merely defines a way of thinking. +But the point is to live. +The Absurd Man +If Stavrogin believes, he does not think he believes. If he does +not believe, he does not think he does not believe. +—The Possessed +My field,” said Goethe, “is time.” That is indeed the absurd +speech. What, in fact, is the absurd man? He who, without +negating it, does nothing for the eternal. Not that nostalgia is +foreign to him. But he prefers his courage and his reasoning. The +first teaches him to live without appeal and to get along with what +he has; the second informs him of his limits. Assured of his +temporally limited freedom, of his revolt devoid of future, and of +his mortal consciousness, he lives out his adventure within the +span of his lifetime. That is his field, that is his action, which he +shields from any judgment but his own. A greater life cannot mean +for him another life. That would be unfair. I am not even speaking +here of that paltry eternity that is called posterity. Mme Roland +relied on herself. That rashness was taught a lesson. Posterity is +glad to quote her remark, but forgets to judge it. Mme Roland is +indifferent to posterity. +There can be no question of holding forth on ethics. I have seen +people behave badly with great morality and I note every day that +integrity has no need of rules. There is but one moral code that the +absurd man can accept, the one that is not separated from God: the +one that is dictated. But it so happens that he lives outside that +God. As for the others (I mean also immoralism), the absurd man +sees nothing in them but justifications and he has nothing to +justify. I start out here from the principle of his innocence. +That innocence is to be feared. “Everything is permitted,” +exclaims Ivan Karamazov. That, too, smacks of the absurd. But on +condition that it not be taken in the vulgar sense. I don’t know +whether or not it has been sufficiently pointed out that it is not an +outburst of relief or of joy, but rather a bitter acknowledgment of a +fact. The certainty of a God giving a meaning to life far surpasses +in attractiveness the ability to behave badly with impunity. The +choice would not be hard to make. But there is no choice, and that +is where the bitterness comes in. The absurd does not liberate; it +binds. It does not authorize all actions. “Everything is permitted” +does not mean that nothing is forbidden. The absurd merely +confers an equivalence on the consequences of those actions. It +does not recommend crime, for this would be childish, but it +restores to remorse its futility. Likewise, if all experiences are +indifferent, that of duty is as legitimate as any other. One can be +virtuous through a whim. +All systems of morality are based on the idea that an action has +consequences that legitimize or cancel it. A mind imbued with the +absurd merely judges that those consequences must be considered +calmly. It is ready to pay up. In other words, there may be +responsible persons, but there are no guilty ones, in its opinion. At +very most, such a mind will consent to use past experience as a +basis for its future actions. Time will prolong time, and life will +serve life. In this field that is both limited and bulging with +possibilities, everything in himself, except his lucidity, seems +unforeseeable to him. What rule, then, could emanate from that +unreasonable order? The only truth that might seem instructive to +him is not formal: it comes to life and unfolds in men. The absurd +mind cannot so much expect ethical rules at the end of its +reasoning as, rather, illustrations and the breath of human lives. +The few following images are of this type. They prolong the +absurd reasoning by giving it a specific attitude and their warmth. +Do I need to develop the idea that an example is not necessarily +an example to be followed (even less so, if possible, in the absurd +world) and that these illustrations are not therefore models? +Besides the fact that a certain vocation is required for this, one +becomes ridiculous, with all due allowance, when drawing from +Rousseau the conclusion that one must walk on all fours and from +Nietzsche that one must maltreat one’s mother. “It is essential to be +absurd,” writes a modern author, “it is not essential to be a dupe.” +The attitudes of which I shall treat can assume their whole +meaning only through consideration of their contraries. A sub- +clerk in the post office is the equal of a conqueror if consciousness +is common to them. All experiences are indifferent in this regard. +There are some that do either a service or a disservice to man. +They do him a service if he is conscious. Otherwise, that has no +importance: a man’s failures imply judgment, not of +circumstances, but of himself. +I am choosing solely men who aim only to expend themselves +or whom I see to be expending themselves. That has no further +implications. For the moment I want to speak only of a world in +which thoughts, like lives, are devoid of future. Everything that +makes man work and get excited utilizes hope. The sole thought +that is not mendacious is therefore a sterile thought. In the absurd +world the value of a notion or of a life is measured by its sterility. +Don Juanism +If it were sufficient to love, things would be too easy. The more +one loves, the stronger the absurd grows. It is not through lack of +love that Don Juan goes from woman to woman. It is ridiculous to +represent him as a mystic in quest of total love. But it is indeed +because he loves them with the same passion and each time with +his whole self that he must repeat his gift and his profound quest. +Whence each woman hopes to give him what no one has ever +given him. Each time they are utterly wrong and merely manage to +make him feel the need of that repetition. “At last,” exclaims one +of them, “I have given you love.” Can we be surprised that Don +Juan laughs at this? “At last? No,” he says, “but once more.” Why +should it be essential to love rarely in order to love much? +Is Don Juan melancholy? This is not likely. I shall barely have +recourse to the legend. That laugh, the conquering insolence, that +playfulness and love of the theater are all clear and joyous. Every +healthy creature tends to multiply himself. So it is with Don Juan. +But, furthermore, melancholy people have two reasons for being +so: they don’t know or they hope. Don Juan knows and does not +hope. He reminds one of those artists who know their limits, never +go beyond them, and in that precarious interval in which they take +their spiritual stand enjoy all the wonderful ease of masters. And +that is indeed genius: the intelligence that knows its frontiers. Up +to the frontier of physical death Don Juan is ignorant of +melancholy. The moment he knows, his laugh bursts forth and +makes one forgive everything. He was melancholy at the time +when he hoped. Today, on the mouth of that woman he recognizes +the bitter and comforting taste of the only knowledge. Bitter? +Barely: that necessary imperfection that makes happiness +perceptible! +It is quite false to try to see in Don Juan a man brought up on +Ecclesiastes. For nothing is vanity to him except the hope of +another life. He proves this because he gambles that other life +against heaven itself. Longing for desire killed by satisfaction, that +commonplace of the impotent man, does not belong to him. That is +all right for Faust, who believed in God enough to sell himself to +the devil. For Don Juan the thing is simpler. Molina’s Burlador +ever replies to the threats of hell: “What a long respite you give +me!” What comes after death is futile, and what a long succession +of days for whoever knows how to be alive! Faust craved worldly +goods; the poor man had only to stretch out his hand. It already +amounted to selling his soul when he was unable to gladden it. As +for satiety, Don Juan insists upon it, on the contrary. If he leaves a +woman it is not absolutely because he has ceased to desire her. A +beautiful woman is always desirable. But he desires another, and +no, this is not the same thing. +This life gratifies his every wish, and nothing is worse than +losing it. This madman is a great wise man. But men who live on +hope do not thrive in this universe where kindness yields to +generosity, affection to virile silence, and communion to solitary +courage. And all hasten to say: “He was a weakling, an idealist or a +saint.” One has to disparage the greatness that insults. +* * * +People are sufficiently annoyed (or that smile of complicity +that debases what it admires) by Don Juan’s speeches and by that +same remark that he uses on all women. But to anyone who seeks +quantity in his joys, the only thing that matters is efficacy. What is +the use of complicating the passwords that have stood the test? No +one, neither the woman nor the man, listens to them, but rather to +the voice that pronounces them. They are the rule, the convention, +and the courtesy. After they are spoken the most important still +remains to be done. Don Juan is already getting ready for it. Why +should he give himself a problem in morality? He is not like +Milosz’s Manara, who damns himself through a desire to be a +saint. Hell for him is a thing to be provoked. He has but one reply +to divine wrath, and that is human honor: “I have honor,” he says +to the Commander, “and I am keeping my promise because I am a +knight.” But it would be just as great an error to make an +immoralist of him. In this regard, he is “like everyone else”: he has +the moral code of his likes and dislikes. Don Juan can be properly +understood only by constant reference to what he commonly +symbolizes: the ordinary seducer and the sexual athlete. He is an +ordinary seducer.[16] Except for the difference that he is conscious, +and that is why he is absurd. A seducer who has become lucid will +not change for all that. Seducing is his condition in life. Only in +novels does one change condition or become better. Yet it can be +said that at the same time nothing is changed and everything is +transformed. What Don Juan realizes in action is an ethic of +quantity, whereas the saint, on the contrary, tends toward quality. +Not to believe in the profound meaning of things belongs to the +absurd man. As for those cordial or wonder-struck faces, he eyes +them, stores them up, and does not pause over them. Time keeps +up with him. The absurd man is he who is not apart from time. Don +Juan does not think of “collecting” women. He exhausts their +number and with them his chances of life. “Collecting” amounts to +being capable of living off one’s past. But he rejects regret, that +other form of hope. He is incapable of looking at portraits. +* * * +Is he selfish for all that? In his way, probably. But here, too, it +is essential to understand one another. +There are those who are made for living and those who are +made for loving. At least Don Juan would be inclined to say so. +But he would do so in a very few words such as he is capable of +choosing. For the love we are speaking of here is clothed in +illusions of the eternal. As all the specialists in passion teach us, +there is no eternal love but what is thwarted. There is scarcely any +passion without struggle. Such a love culminates only in the +ultimate contradiction of death. One must be Werther or nothing. +There, too, there are several ways of committing suicide, one of +which is the total gift and forget-fulness of self. Don Juan, as well +as anyone else, knows that this can be stirring. But he is one of the +very few who know that this is not the important thing. He knows +just as well that those who turn away from all personal life through +a great love enrich themselves perhaps but certainly impoverish +those their love has chosen. A mother or a passionate wife +necessarily has a closed heart, for it is turned away from the world. +A single emotion, a single creature, a single face, but all is +devoured. Quite a different love disturbs Don Juan, and this one is +liberating. It brings with it all the faces in the world, and its tremor +comes from the fact that it knows itself to be mortal. Don Juan has +chosen to be nothing. +For him it is a matter of seeing clearly. We call love what binds +us to certain creatures only by reference to a collective way of +seeing for which books and legends are responsible. But of love I +know only that mixture of desire, affection, and intelligence that +binds me to this or that creature. That compound is not the same +for another person. I do not have the right to cover all these +experiences with the same name. This exempts one from +conducting them with the same gestures. The absurd man +multiplies here again what he cannot unify. Thus he discovers a +new way of being which liberates him at least as much as it +liberates those who approach him. There is no noble love but that +which recognizes itself to be both short-lived and exceptional. All +those deaths and all those rebirths gathered together as in a sheaf +make up for Don Juan the flowering of his life. It is his way of +giving and of vivifying. I let it be decided whether or not one can +speak of selfishness. +* * * +I think at this point of all those who absolutely insist that Don +Juan be punished. Not only in another life, but even in this one. I +think of all those tales, legends, and laughs about the aged Don +Juan. But Don Juan is already ready. To a conscious man old age +and what it portends are not a surprise. Indeed, he is conscious +only in so far as he does not conceal its horror from himself. There +was in Athens a temple dedicated to old age. Children were taken +there. As for Don Juan, the more people laugh at him, the more his +figure stands out. Thereby he rejects the one the romantics lent +him. No one wants to laugh at that tormented, pitiful Don Juan. He +is pitied; heaven itself will redeem him? But that’s not it. In the +universe of which Don Juan has a glimpse, ridicule too is included. +He would consider it normal to be chastised. That is the rule of the +game. And, indeed, it is typical of his nobility to have accepted all +the rules of the game. Yet he knows he is right and that there can +be no question of punishment. A fate is not a punishment. +That is his crime, and how easy it is to understand why the men +of God call down punishment on his head. He achieves a +knowledge without illusions which negates everything they +profess. Loving and possessing, conquering and consuming—that +is his way of knowing. (There is significance in that favorite +Scriptural word that calls the carnal act “knowing.”) He is their +worst enemy to the extent that he is ignorant of them. A chronicler +relates that the true Burlador died assassinated by Fransciscans +who wanted “to put an end to the excesses and blasphemies of Don +Juan, whose birth assured him impunity.” Then they proclaimed +that heaven had struck him down. No one has proved that strange +end. Nor has anyone proved the contrary. But without wondering if +it is probable, I can say that it is logical. I want merely to single out +at this point the word “birth” and to play on words: it was the fact +of living that assured his innocence. It was from death alone that +he derived a guilt now become legendary. +What else does that stone Commander signify, that cold statue +set in motion to punish the blood and courage that dared to think? +All the powers of eternal Reason, of order, of universal morality, +all the foreign grandeur of a God open to wrath are summed up in +him. That gigantic and soulless stone merely symbolizes the forces +that Don Juan negated forever. But the Commander’s mission +stops there. The thunder and lightning can return to the imitation +heaven whence they were called forth. The real tragedy takes place +quite apart from them. No, it was not under a stone hand that Don +Juan met his death. I am inclined to believe in the legendary +bravado, in that mad laughter of the healthy man provoking a non- +existent God. But, above all, I believe that on that evening when +Don Juan was waiting at Anna’s the Commander didn’t come, and +that after midnight the blasphemer must have felt the dreadful +bitterness of those who have been right. I accept even more readily +the account of his life that has him eventually burying himself in a +monastery. Not that the edifying aspect of the story can he +considered probable. What refuge can he go ask of God? But this +symbolizes rather the logical outcome of a life completely imbued +with the absurd, the grim ending of an existence turned toward +short lived joys. At this point sensual pleasure winds up in +asceticism. It is essential to realize that they may be, as it were, the +two aspects of the same destitution. What more ghastly image can +be called up than that of a man betrayed by his body who, simply +because he did not die in time, lives out the comedy while awaiting +the end, face to face with that God he does not adore, serving him +as he served life, kneeling before a void and arms outstretched +toward a heaven without eloquence that he knows to he also +without depth? +I see Don Juan in a cell of one of those Spanish monasteries +lost on a hilltop. And if he contemplates anything at all, it is not the +ghosts of past loves, but perhaps, through a narrow slit in the sun- +baked wall, some silent Spanish plain, a noble, soulless land in +which he recognizes himself. Yes, it is on this melancholy and +radiant image that the curtain must be rung down. The ultimate +end, awaited but never desired, the ultimate end is negligible. +Drama +“The play’s the thing,” says Hamlet, “wherein I’ll catch the +conscience of the king.” +“Catch” is indeed the word. For conscience moves swiftly or +withdraws within itself. It has to be caught on the wing, at that +barely perceptible moment when it glances fleetingly at itself. The +everyday man does not enjoy tarrying. Everything, on the contrary, +hurries him onward. But at the same time nothing interests him +more than himself, especially his potentialities. Whence his interest +in the theater, in the show, where so many fates are offered him, +where he can accept the poetry without feeling the sorrow. There at +least can be recognized the thoughtless man, and he continues to +hasten toward some hope or other. The absurd man begins where +that one leaves off, where, ceasing to admire the play, the mind +wants to enter in. Entering into all these lives, experiencing them +in their diversity, amounts to acting them out. I am not saying that +actors in general obey that impulse, that they are absurd men, but +that their fate is an absurd fate which might charm and attract a +lucid heart. It is necessary to establish this in order to grasp +without misunderstanding what will follow. +The actor’s realm is that of the fleeting. Of all kinds of fame, it +is known, his is the most ephemeral. At least, this is said in +conversation. But all kinds of fame are ephemeral. From the point +of view of Sirius, Goethe’s works in ten thousand years will be +dust and his name forgotten. Perhaps a handful of archaeologists +will look for “evidence” as to our era. That idea has always +contained a lesson. Seriously meditated upon, it reduces our +perturbations to the profound nobility that is found in indifference. +Above all, it directs our concerns toward what is most certain— +that is, toward the immediate. Of all kinds of fame the least +deceptive is the one that is lived. +Hence the actor has chosen multiple fame, the fame that is +hallowed and tested. From the fact that everything is to die +someday he draws the best conclusion. An actor succeeds or does +not succeed. A writer has some hope even if he is not appreciated. +He assumes that his works will bear witness to what he was. At +best the actor will leave us a photograph, and nothing of what he +was himself, his gestures and his silences, his gasping or his +panting with love, will come down to us. For him, not to be known +is not to act, and not acting is dying a hundred times with all the +creatures he would have brought to life or resuscitated. +*** +Why should we be surprised to find a fleeting fame built upon +the most ephemeral of creations? The actor has three hours to be +Iago or Alceste, Phedre or Gloucester. In that short space of time +he makes them come to life and die on fifty square yards of boards. +Never has the absurd been so well illustrated or at such length. +What more revelatory epitome can be imagined than those +marvelous lives, those exceptional and total desti— +nies unfolding for a few hours within a stage set? Off the stage, +Sigismundo ceases to count. Two hours later he is seen dining out. +Then it is, perhaps, that life is a dream. But after Sigismundo +comes another. The hero suffering from uncertainty takes the place +of the man roaring for his revenge. By thus sweeping over +centuries and minds, by miming man as he can be and as he is, the +actor has much in common with that other absurd individual, the +traveler. Like him, he drains something and is constantly on the +move. He is a traveler in time and, for the best, the hunted traveler, +pursued by souls. If ever the ethics of quantity could find +sustenance, it is indeed on that strange stage. To what degree the +actor benefits from the characters is hard to say. But that is not the +important thing. It is merely a matter of knowing how far he +identifies himself with those irreplaceable lives. It often happens +that he carries them with him, that they somewhat overflow the +time and place in which they were born. They accompany the +actor, who cannot very readily separate himself from what he has +been. Occasionally when reaching for his glass he resumes +Hamlet’s gesture of raising his cup. No, the distance separating +him from the creatures into whom he infuses life is not so great. He +abundantly illustrates every month or every day that so suggestive +truth that there is no frontier between what a man wants to be and +what he is. Always concerned with better representing, he +demonstrates to what a degree appearing creates being. For that is +his art—to simulate absolutely, to project himself as deeply as +possible into lives that are not his own. At the end of his effort his +vocation becomes clear: to apply himself wholeheartedly to being +nothing or to being several. The narrower the limits allotted him +for creating his character, the more necessary his talent. He will die +in three hours under the mask he has assumed today. Within three +hours he must experience and express a whole exceptional life. +That is called losing oneself to find oneself. In those three hours he +travels the whole course of the dead-end path that the man in the +audience takes a lifetime to cover. +* * * +A mime of the ephemeral, the actor trains and perfects himself +only in appearances. The theatrical convention is that the heart +expresses itself and communicates itself only through gestures and +in the body—or through the voice, which is as much of the soul as +of the body. The rule of that art insists that everything be +magnified and translated into flesh. If it were essential on the stage +to love as people really love, to employ that irreplaceable voice of +the heart, to look as people contemplate in life, our speech would +be in code. But here silences must make themselves heard. Love +speaks up louder, and immobility itself becomes spectacular. The +body is king, Not everyone can be “theatrical,” and this unjustly +maligned word covers a whole aesthetic and a whole ethic. Half a +man’s life is spent in implying, in turning away, and in keeping +silent. Here the actor is the intruder. He breaks the spell chaining +that soul, and at last the passions can rush onto their stage. They +speak in every gesture; they live only through shouts and cries. +Thus the actor creates his characters for display. He outlines or +sculptures them and slips into their imaginary form, transfusing his +blood into their phantoms. I am of course speaking of great drama, +the kind that gives the actor an opportunity to fulfill his wholly +physical fate. Take Shakespeare, for instance. In that impulsive +drama the physical passions lead the dance. They explain +everything. Without them all would collapse. Never would King +Lear keep the appointment set by madness without the brutal +gesture that exiles Cordelia and condemns Edgar. It is just that the +unfolding of that tragedy should thenceforth be dominated by +madness. Souls are given over to the demons and their saraband. +No fewer than four madmen: one by trade, another by intention, +and the last two through suffering—four disordered bodies, four +unutterable aspects of a single condition. +The very scale of the human body is inadequate. The mask and +the buskin, the make-up that reduces and accentuates the face in its +essential elements, the costume that exaggerates and simplifies— +that universe sacrifices everything to appearance and is made +solely for the eye. Through an absurd miracle, it is the body that +also brings knowledge. I should never really understand Iago +unless I played his part. It is not enough to hear him, for I grasp +him only at the moment when I see him. Of the absurd character +the actor consequently has the monotony, that single, oppressive +silhouette, simultaneously strange and familiar, that he carries +about from hero to hero. There, too, the great dramatic work +contributes to this unity of tone.[17] This is where the actor +contradicts himself: the same and yet so various, so many souls +summed up in a single body. Yet it is the absurd contradiction +itself, that individual who wants to achieve everything and live +everything, that useless attempt, that ineffectual persistence. What +always contradicts itself nevertheless joins in him. He is at that +point where body and mind converge, where the mind, tired of its +defeats, turns toward its most faithful ally. “And blest are those,” +says Hamlet, “whose blood and judgment are so well commingled +that they are not a pipe for fortune’s finger to sound what stop she +please.” +How could the Church have failed to condemn such a practice +on the part of the actor? She repudiated in that art the heretical +multiplication of souls, the emotional debauch, the scandalous +presumption of a mind that objects to living but one life and hurls +itself into all forms of excess. She proscribed in them that +preference for the present and that triumph of Proteus which are +the negation of everything she teaches. Eternity is not a game. A +mind foolish enough to prefer a comedy to eternity has lost its +salvation. Between “everywhere” and “forever” there is no +compromise. Whence that much maligned profession can give rise +to a tremendous spiritual conflict. “What matters,” said Nietzsche, +“is not eternal life but eternal vivacity.” All drama is, in fact, in +this choice. Celimene against Elianthe, the whole subject in the +absurd consequence of a nature carried to its extreme, and the +verse itself, the “bad verse,” barely accented like the monotony of +the character’s nature. +Adrienne Lecouvreur on her deathbed was willing to confess +and receive communion, but refused to abjure her profession. She +thereby lost the benefit of the confession. Did this not amount, in +effect, to choosing her absorbing passion in preference to God? +And that woman in the death throes refusing in tears to repudiate +what she called her art gave evidence of a greatness that she never +achieved behind the footlights. This was her finest role and the +hardest one to play. Choosing between heaven and a ridiculous +fidelity, preferring oneself to eternity or losing oneself in God is +the age-old tragedy in which each must play his part. +The actors of the era knew they were excommunicated. +Entering the profession amounted to choosing Hell. And the +Church discerned in them her worst enemies. A few men of letters +protest: “What! Refuse the last rites to Moliere!” But that was just, +and especially in one who died onstage and finished under the +actor’s make-up a life entirely devoted to dispersion. In his case +genius is invoked, which excuses everything. But genius excuses +nothing, just because it refuses to do so. +The actor knew at that time what punishment was in store for +him. But what significance could such vague threats have +compared to the final punishment that life itself was reserving for +him? This was the one that he felt in advance and accepted wholly. +To the actor as to the absurd man, a premature death is irreparable. +Nothing can make up for the sum of faces and centuries he would +otherwise have traversed. But in any case, one has to die. For the +actor is doubtless everywhere, but time sweeps him along, too, and +makes its impression with him. +It requires but a little imagination to feel what an actor’s fate +means. It is in time that he makes up and enumerates his +characters. It is in time likewise that he learns to dominate them. +The greater number of different lives he has lived, the more aloof +he can be from them. The time comes when he must die to the +stage and for the world. What he has lived faces him. He sees +clearly. He feels the harrowing and irreplaceable quality of that +adventure. He knows and can now die. There are homes for aged +actors. +Conquest +“No,” says the conqueror, “don’t assume that because I love +action I have had to forget how to think. On the contrary I can +throughly define what I believe. For I believe it firmly and I see it +surely and clearly. Beware of those who say: ‘I know this too well +to be able to express it.’ For if they cannot do so, this is because +they don’t know it or because out of laziness they stopped at the +outer crust. +“I have not many opinions. At the end of a life man notices that +he has spent years becoming sure of a single truth. But a single +truth, if it is obvious, is enough to guide an existence. As for me, I +decidedly have something to say about the individual. One must +speak of him bluntly and, if need be, with the appropriate +contempt. +“A man is more a man through the things he keeps to himself +than through those he says. There are many that I shall keep to +myself. But I firmly believe that all those who have judged the +individual have done so with much less experience than we on +which to base their judgment. The intelligence, the stirring +intelligence perhaps foresaw what it was essential to note. But the +era, its ruins, and its blood overwhelm us with facts. It was +possible for ancient nations, and even for more recent ones down +to our machine age, to weigh one against the other the virtues of +society and of the individual, to try to find out which was to serve +the other. To begin with, that was possible by virtue of that +stubborn aberration in man’s heart according to which human +beings were created to serve or be served. In the second place, it +was possible because neither society nor the individual had yet +revealed all their ability. +“I have seen bright minds express astonishment at the +masterpieces of Dutch painters born at the height of the bloody +wars in Flanders, be amazed by the prayers of Silesian mystics +brought up during the frightful Thirty Years’ War. Eternal values +survive secular turmoils before their astonished eyes. But there has +been progress since. The painters of today are deprived of such +serenity. Even if they have basically the heart the creator needs—I +mean the closed heart—it is of no use; for everyone, including the +saint himself, is mobilized. This is perhaps what I have felt most +deeply. At every form that miscarries in the trenches, at every +outline, metaphor, or prayer crushed under steel, the eternal loses a +round. Conscious that I cannot stand aloof from my time, I have +decided to be an integral part of it. This is why I esteem the +individual only because he strikes me as ridiculous and humiliated. +Knowing that there are no victorious causes, I have a liking for lost +causes: they require an uncontaminated soul, equal to its defeat as +to its temporary victories. For anyone who feels bound up with this +world’s fate, the clash of civilizations has something agonizing +about it. I have made that anguish mine at the same time that I +wanted to join in. Between history and the eternal I have chosen +history because I like certainties. Of it, at least, I am certain, and +how can I deny this force crushing me? +“There always comes a time when one must choose between +contemplation and action. This is called becoming a man. Such +wrenches are dreadful. But for a proud heart there can be no +compromise. There is God or time, that cross or this sword. This +world has a higher meaning that transcends its worries, or nothing +is true but those worries. One must live with time and die with it, +or else elude it for a greater life. I know that one can compromise +and live in the world while believing in the eternal. That is called +accepting. But I loathe this term and want all or nothing. If I +choose action, don’t think that contemplation is like an unknown +country to me. But it cannot give me everything, and, deprived of +the eternal, I want to ally myself with time. I do not want to put +down to my account either nostalgia or bitterness, and I merely +want to see clearly. I tell you, tomorrow you will be mobilized. For +you and for me that is a liberation. The individual can do nothing +and yet he can do everything. In that wonderful unattached state +you understand why I exalt and crush him at one and the same +time. It is the world that pulverizes him and I who liberate him. I +provide him with all his rights. +“Conquerors know that action is in itself useless. There is but +one useful action, that of remaking man and the earth. I shall never +remake men. But one must do ’as if.’ For the path of struggle leads +me to the flesh. Even humiliated, the flesh is my only certainty. I +can live only on it. The creature is my native land. This is why I +have chosen this absurd and ineffectual effort. This is why I am on +the side of the struggle. The epoch lends itself to this, as I have +said. Hitherto the greatness of a conqueror was geographical. It +was measured by the extent of the conquered territories. There is a +reason why the word has changed in meaning and has ceased to +signify the victorious general. The greatness has changed camp. It +lies in protest and the blind-alley sacrifice. There, too, it is not +through a preference for defeat. Victory would be desirable. But +there is but one victory, and it is eternal. That is the one I shall +never have. That is where I stumble and cling. A revolution is +always accomplished against the gods, beginning with the +revolution of Prometheus, the first of modern conquerors. It is +man’s demands made against his fate; the demands of the poor are +but a pretext. Yet I can seize that spirit only in its historical act, +and that is where I make contact with it. Don’t assume, however, +that I take pleasure in it: opposite the essential contradiction, I +maintain my human contradiction. I establish my lucidity in the +midst of what negates it. I exalt man be-fore what crushes him, and +my freedom, my revolt, and my passion come together then in that +tension, that lucidity, and that vast repetition. +“Yes, man is his own end. And he is his only end. If he aims to +be something, it is in this life. Now I know it only too well. +Conquerors sometimes talk of vanquishing and overcoming. But it +is always ‘overcoming oneself’ that they mean. You are well aware +of what that means. Every man has felt himself to be the equal of a +god at certain moments. At least, this is the way it is expressed. +But this comes from the fact that in a flash he felt the amazing +grandeur of the human mind. The conquerors are merely those +among men who are conscious enough of their strength to be sure +of living constantly on those heights and fully aware of that +grandeur. It is a question of arithmetic, of more or less. The +conquerors are capable of the more. But they are capable of no +more than man himself when he wants. This is why they never +leave the human crucible, plunging into the seething soul of +revolutions. +“There they find the creature mutilated, but they also encounter +there the only values they like and admire, man and his silence. +This is both their destitution and their wealth. There is but one +luxury for them—that of human relations. How can one fail to +realize that in this vulnerable universe everything that is human +and solely human assumes a more vivid meaning? Taut faces, +threatened fraternity, such strong and chaste friendship among +men—these are the true riches because they are transitory. In their +midst the mind is most aware of its powers and limitations. That is +to say, its efficacity. Some have spoken of genius. But genius is +easy to say; I prefer the intelligence. It must be said that it can be +magnificent then. It lights up this desert and dominates it. It knows +its obligations and illustrates them. It will die at the same time as +this body. But knowing this constitutes its freedom. +“We are not ignorant of the fact that all churches are against us. +A heart so keyed up eludes the eternal, and all churches, divine or +political, lay claim to the eternal. Happiness and courage, +retribution or justice are secondary ends for them. It is a doctrine +they bring, and one must subscribe to it. But I have no concern +with ideas or with the eternal. The truths that come within my +scope can be touched with the hand. I cannot separate from them. +This is why you cannot base anything on me: nothing of the +conqueror lasts, not even his doctrines. +“At the end of all that, despite everything, is death. We know +also that it ends everything. This is why those cemeteries all over +Europe, which obsess some among us, are hideous. People beautify +only what they love, and death repels us and tires our patience. It, +too, is to be conquered. The last Carrara, a prisoner in Padua +emptied by the plague and besieged by the Venetians, ran +screaming through the halls of his deserted palace: he was calling +on the devil and asking him for death. This was a way of +overcoming it. And it is likewise a mark of courage characteristic +of the Occident to have made so ugly the places where death thinks +itself honored. In the rebel s universe, death exalts injustice. It is +the supreme abuse. +“Others, without compromising either, have chosen the eternal +and denounced the illusion of this world. Their cemeteries smile +amid numerous flowers and birds. That suits the conqueror and +gives him a clear image of what he has rejected. He has chosen, on +the contrary, the black iron fence or the potter’s field. The best +among the men of God occasionally are seized with fright mingled +with consideration and pity for minds that can live with such an +image of their death. Yet those minds derive their strength and +justification from this. Our fate stands before us and we provoke +him. Less out of pride than out of awareness of our ineffectual +condition. We, too, sometimes feel pity for ourselves. It is the only +compassion that seems acceptable to us: a feeling that perhaps you +hardly understand and that seems to you scarcely virile. Yet the +most daring among us are the ones who feel it. But we call the +lucid ones virile and we do not want a strength that is apart from +lucidity.” +* * * +Let me repeat that these images do not propose moral codes +and involve no judgments: they are sketches. They merely +represent a style of life. The lover, the actor, or the adventurer +plays the absurd. But equally well, if he wishes, the chaste man, +the civil servant, or the president of the Republic. It is enough to +know and to mask nothing. In Italian museums are sometimes +found little painted screens that the priest used to hold in front of +the face of condemned men to hide the scaffold from them. The +leap in all its forms, rushing into the divine or the eternal, +surrendering to the illusions of the everyday or of the idea—all +these screens hide the absurd. But there are civil servants without +screens, and they are the ones of whom I mean to speak. I have +chosen the most extreme ones. At this level the absurd gives them +a royal power. It is true that those princes are without a kingdom. +But they have this advantage over others: they know that all +royalties are illusory. They know that is their whole nobility, and it +is useless to speak in relation to them of hidden misfortune or the +ashes of disillusion. Being deprived of hope is not despairing. The +flames of earth are surely worth celestial perfumes. Neither I nor +anyone can judge them here. They are not striving to be better; +they are attempting to be consistent. If the term “wise man” can be +applied to the man who lives on what he has without speculating +on what he has not, then they are wise men. One of them, a +conqueror but in the realm of mind, a Don Juan but of knowledge, +an actor but of the intelligence, knows this better than anyone: +“You nowise deserve a privilege on earth and in heaven for having +brought to perfection your dear little meek sheep; you nonetheless +continue to be at best a ridiculous dear little sheep with horns and +nothing more—even supposing that you do not burst with vanity +and do not create a scandal by posing as a judge.” +In any case, it was essential to restore to the absurd reasoning +more cordial examples. The imagination can add many others, +inseparable from time and exile, who likewise know how to live in +harmony with a universe without future and without weakness. +This absurd, godless world is, then, peopled with men who think +clearly and have ceased to hope. And I have not yet spoken of the +most absurd character, who is the creator. +Absurd Creation +Philosophy and Fiction +All those lives maintained in the rarefied air of the absurd +could not persevere without some profound and constant thought +to infuse its strength into them. Right here, it can be only a strange +feeling of fidelity. Conscious men have been seen to fulfill their +task amid the most stupid of wars without considering themselves +in contradiction. This is because it was essential to elude nothing. +There is thus a metaphysical honor in enduring the world’s +absurdity. Conquest or play-acting, multiple loves, absurd revolt +are tributes that man pays to his dignity in a campaign in which he +is defeated in advance. +It is merely a matter of being faithful to the rule of the battle. +That thought may suffice to sustain a mind; it has supported and +still supports whole civilizations. War cannot be negated. One +must live it or die of it. So it is with the absurd: it is a question of +breathing with it, of recognizing its lessons and recovering their +flesh. In this regard the absurd joy par excellence is creation. “Art +and nothing but art,” said Nietzsche; “we have art in order not to +die of the truth.” +In the experience that I am attempting to describe and to stress +on several modes, it is certain that a new torment arises wherever +another dies. The childish chasing after forgetfulness, the appeal of +satisfaction are now devoid of echo. But the constant tension that +keeps man face to face with the world, the ordered delirium that +urges him to be receptive to everything leave him another fever. In +this universe the work of art is then the sole chance of keeping his +consciousness and of fixing its adventures. Creating is living +doubly. The groping, anxious quest of a Proust, his meticulous +collecting of flowers, of wallpapers, and of anxieties, signifies +nothing else. At the same time, it has no more significance than the +continual and imperceptible creation in which the actor, the +conqueror, and all absurd men indulge every day of their lives. All +try their hands at miming, at repeating, and at recreating the reality +that is theirs. We always end up by having the appearance of our +truths. All existence for a man turned away from the eternal is but +a vast mime under the mask of the absurd. Creation is the great +mime. +Such men know to begin with, and then their whole effort is to +examine, to enlarge, and to enrich the ephemeral island on which +they have just landed. But first they must know. For the absurd +discovery coincides with a pause in which future passions are +prepared and justified. Even men without a gospel have their +Mount of Olives. And one must not fall asleep on theirs either. For +the absurd man it is not a matter of explaining and solving, but of +experiencing and describing. Everything begins with lucid +indifference. +Describing—that is the last ambition of an absurd thought. +Science likewise, having reached the end of its paradoxes, ceases +to propound and stops to contemplate and sketch the ever virgin +landscape of phenomena. The heart learns thus that the emotion +delighting us when we see the world’s aspects comes to us not +from its depth but from their diversity. Explanation is useless, but +the sensation remains and, with it, the constant attractions of a +universe inexhaustible in quantity. The place of the work of art can +be understood at this point. +It marks both the death of an experience and its multiplication. +It is a sort of monotonous and passionate repetition of the themes +already orchestrated by the world: the body, inexhaustible image +on the pediment of temples, forms or colors, number or grief. It is +therefore not indifferent, as a conclusion, to encounter once again +the principal themes of this essay in the wonderful and childish +world of the creator. It would be wrong to see a symbol in it and to +think that the work of art can be considered at last as a refuge for +the absurd. It is itself an absurd phenomenon, and we are +concerned merely with its description. It does not offer an escape +for the intellectual ailment. Rather, it is one of the symptoms of +that ailment which reflects it throughout a man’s whole thought. +But for the first time it makes the mind get outside of itself and +places it in opposition to others, not for it to get lost but to show it +clearly the blind path that all have entered upon. In the time of the +absurd reasoning, creation follows indifference and discovery. It +marks the point from which absurd passions spring and where the +reasoning stops. Its place in this essay is justified in this way. +It will suffice to bring to light a few themes common to the +creator and the thinker in order to find in the work of art all the +contradictions of thought involved in the absurd. Indeed, it is not +so much identical conclusions that prove minds to be related as the +contradictions that are common to them. So it is with thought and +creation. I hardly need to say that the same anguish urges man to +these two attitudes. This is where they coincide in the beginning. +But among all the thoughts that start from the absurd, I have seen +that very few remain within it. And through their deviations or +infidelities I have best been able to measure what belonged to the +absurd. Similarly I must wonder: is an absurd work of art possible? +* * * +It would be impossible to insist too much on the arbitrary +nature of the former opposition between art and philosophy. If you +insist on taking it in too limited a sense, it is certainly false. If you +mean merely that these two disciplines each have their peculiar +climate, that is probably true but remains vague. The only +acceptable argument used to lie in the contradiction brought up +between the philosopher enclosed within his system and the artist +placed before his work. But this was pertinent for a certain form of +art and of philosophy which we consider secondary here. The idea +of an art detached from its creator is not only outmoded; it is false. +In opposition to the artist, it is pointed out that no philosopher ever +created several systems. But that is true in so far, indeed, as no +artist ever expressed more than one thing under different aspects. +The instantaneous perfection of art, the necessity for its renewal— +this is true only through a preconceived notion. For the work of art +likewise is a construction and everyone knows how monotonous +the great creators can be. For the same reason as the thinker, the +artist commits himself and becomes himself in his work. That +osmosis raises the most important of aesthetic problems. +Moreover, to anyone who is convinced of the mind’s singleness of +purpose, nothing is more futile than these distinctions based on +methods and objects. There are no frontiers between the disciplines +that man sets himself for understanding and loving. They interlock, +and the same anxiety merges them. +It is necessary to state this to begin with. For an absurd work of +art to be possible, thought in its most lucid form must be involved +in it. But at the same time thought must not be apparent except as +the regulating intelligence. This paradox can be explained +according to the absurd. The work of art is born of the +intelligence’s refusal to reason the concrete. It marks the triumph +of the carnal. It is lucid thought that provokes it, but in that very +act that thought repudiates itself. It will not yield to the temptation +of adding to what is described a deeper meaning that it knows to be +illegitimate. The work of art embodies a drama of the intelligence, +but it proves this only indirectly. The absurd work requires an artist +conscious of these limitations and an art in which the concrete +signifies nothing more than itself. It cannot be the end, the +meaning, and the consolation of a life. Creating or not creating +changes nothing. The absurd creator does not prize his work. He +could repudiate it. He does sometimes repudiate it. An Abyssinia +suffices for this, as in the case of Rimbaud. +At the same time a rule of aesthetics can be seen in this. The +true work of art is always on the human scale. It is essentially the +one that says “less.” There is a certain relationship between the +global experience of the artist and the work that reflects that +experience, between Wilhelm Meister and Goethe’s maturity. That +relationship is bad when the work aims to give the whole +experience in the lace-paper of an explanatory literature. That +relationship is good when the work is but a piece cut out of +experience, a facet of the diamond in which the inner luster is +epitomized without being limited. In the first case there is +overloading and pretension to the eternal. In the second, a fecund +work because of a whole implied experience, the wealth of which +is suspected. The problem for the absurd artist is to acquire this +savoir-vivre which transcends savoir-faire. And in the end, the +great artist under this climate is, above all, a great living being, it +being understood that living in this case is just as much +experiencing as reflecting. The work then embodies an intellectual +drama. The absurd work illustrates thought’s renouncing of its +prestige and its resignation to being no more than the intelligence +that works up appearances and covers with images what has no +reason. If the world were clear, art would not exist. +I am not speaking here of the arts of form or color in which +description alone prevails in its splendid modesty.[18] Expression +begins where thought ends. Those adolescents with empty +eyesockets who people temples and museums—their philosophy +has been expressed in gestures. For an absurd man it is more +educative than all libraries. Under another aspect the same is true +for music. If any art is devoid of lessons, it is certainly music. It is +too closely related to mathematics not to have borrowed their +gratuitousness. That game the mind plays with itself according to +set and measured laws takes place in the sonorous compass that +belongs to us and beyond which the vibrations nevertheless meet in +an inhuman universe. There is no purer sensation. These examples +are too easy. The absurd man recognizes as his own these +harmonies and these forms. +But I should like to speak here of a work in which the +temptation to explain remains greatest, in which illusion offers +itself automatically, in which conclusion is almost inevitable. I +mean fictional creation. I propose to inquire whether or not the +absurd can hold its own there. +* * * +To think is first of all to create a world (or to limit one’s own +world, which comes to the same thing). It is starting out from the +basic disagreement that separates man from his experience in order +to find a common ground according to one’s nostalgia, a universe +hedged with reasons or lighted up with analogies but which, in any +case, gives an opportunity to rescind the unbearable divorce. The +philosopher, even if he is Kant, is a creator. He has his characters, +his symbols, and his secret action. He has his plot endings. On the +contrary, the lead taken by the novel over poetry and the essay +merely represents, despite appearances, a greater intellectualiza- +tion of the art. Let there be no mistake about it; I am speaking of +the greatest. The fecundity and the importance of a literary form +are often measured by the trash it contains. The number of bad +novels must not make us forget the value of the best. These, +indeed, carry with them their universe. The novel has its logic, its +reasonings, its intuition, and its postulates. It also has its +requirements of clarity.[19] +The classical opposition of which I was speaking above is even +less justified in this particular case. It held in the time when it was +easy to separate philosophy from its authors. Today when thought +has ceased to lay claim to the universal, when its best history +would be that of its repentances, we know that the system, when it +is worth while, cannot be separated from its author. The Ethics +itself, in one of its aspects, is but a long and reasoned personal +confession. Abstract thought at last returns to its prop of flesh. +And, likewise, the fictional activities of the body and of the +passions are regulated a little more according to the requirements +of a vision of the world. The writer has given up telling “stories” +and creates his universe. The great novelists are philosophical +novelists—that is, the contrary of thesis-writers. For instance, +Balzac, Sade, Melville, Stendhal, Dostoevsky, Proust, Malraux, +Kafka, to cite but a few. +But in fact the preference they have shown for writing in +images rather than in reasoned arguments is revelatory of a certain +thought that is common to them all, convinced of the uselessness +of any principle of explanation and sure of the educative message +of perceptible appearance. They consider the work of art both as an +end and a beginning. It is the outcome of an often unexpressed +philosophy, its illustration and its consummation. But it is +complete only through the implications of that philosophy. It +justifies at last that variant of an old theme that a little thought +estranges from life whereas much thought reconciles to life. +Incapable of refining the real, thought pauses to mimic it. The +novel in question is the instrument of that simultaneously relative +and inexhaustible knowledge, so like that of love. Of love, fictional +creation has the initial wonder and the fecund rumination. +*** +These at least are the charms I see in it at the outset. But I saw +them likewise in those princes of humiliated thought whose +suicides I was later able to witness. +What interests me, indeed, is knowing and describing the force +that leads them back toward the common path of illusion. The +same method will consequently help me here. The fact of having +already utilized it will allow me to shorten my argument and to +sum it up without delay in a particular example. I want to know +whether, accepting a life without appeal, one can also agree to +work and create without appeal and what is the way leading to +these liberties. I want to liberate my universe of its phantoms and +to people it solely with flesh-and-blood truths whose presence I +cannot deny. I can perform absurd work, choose the creative +attitude rather than another. But an absurd attitude, if it is to remain +so, must remain aware of its gratuitousness. So it is with the work +of art. If the commandments of the absurd are not respected, if the +work does not illustrate divorce and revolt, if it sacrifices to +illusions and arouses hope, it ceases to be gratuitous. I can no +longer detach myself from it. My life may find a meaning in it, but +that is trifling. It ceases to be that exercise in detachment and +passion which crowns the splendor and futility of a man’s life. +In the creation in which the temptation to explain is the +strongest, can one overcome that temptation? In the fictional world +in which awareness of the real world is keenest, can I remain +faithful to the absurd without sacrificing to the desire to judge? So +many questions to be taken into consideration in a last effort. It +must be already clear what they signify. They are the last scruples +of an awareness that fears to forsake its initial and difficult lesson +in favor of a final illusion. What holds for creation, looked upon as +one of the possible attitudes for the man conscious of the absurd, +holds for all the styles of life open to him. The conqueror or the +actor, the creator or Don Juan may forget that their exercise in +living could not do without awareness of its mad character. One +becomes accustomed so quickly. A man wants to earn money in +order to be happy, and his whole effort and the best of a life are +devoted to the earning of that money. Happiness is forgotten; the +means are taken for the end. Likewise, the whole effort of this +conqueror will be diverted to ambition, which was but a way +toward a greater life. Don Juan in turn will likewise yield to his +fate, be satisfied with that existence whose nobility is of value only +through revolt. For one it is awareness and for the other, revolt; in +both cases the absurd has disappeared. There is so much stubborn +hope in the human heart. The most destitute men often end up by +accepting illusion. That approval prompted by the need for peace +inwardly parallels the existential consent. There are thus gods of +light and idols of mud. But it is essential to find the middle path +leading to the faces of man. +So far, the failures of the absurd exigence have best informed +us as to what it is. In the same way, if we are to be informed, it will +suffice to notice that fictional creation can present the same +ambiguity as certain philosophies. Hence I can choose as +illustration a work comprising everything that denotes awareness +of the absurd, having a clear starting-point and a lucid climate. Its +consequences will enlighten us. If the absurd is not respected in it, +we shall know by what expedient illusion enters in. A particular +example, a theme, a creator’s fidelity will suffice, then. This +involves the same analysis that has already been made at greater +length. +I shall examine a favorite theme of Dostoevsky. I might just as +well have studied other works.[20] But in this work the problem is +treated directly, in the sense of nobility and emotion, as for the +existential philosophies already discussed. This parallelism serves +my purpose. +Kirilov +All of Dostoevsky’s heroes question themselves as to the +meaning of life. In this they are modern: they do not fear ridicule. +What distinguishes modern sensibility from classical sensibility is +that the latter thrives on moral problems and the former on +metaphysical problems. In Dostoevsky’s novels the question is +propounded with such intensity that it can only invite extreme +solutions. Existence is illusory or it is eternal. If Dostoevsky were +satisfied with this inquiry, he would be a philosopher. But he +illustrates the consequences that such intellectual pastimes may +have in a man’s life, and in this regard he is an artist. Among those +consequences, his attention is arrested particularly by the last one, +which he himself calls logical suicide in his Diary of a Writer. In +the installments for December 1876, indeed, he imagines the +reasoning of “logical suicide.” Convinced that human existence is +an utter absurdity for anyone without faith in immortality, the +desperate man comes to the following conclusions: +“Since in reply to my questions about happiness, I am told, +through the intermediary of my consciousness, that I cannot be +happy except in harmony with the great all, which I cannot +conceive and shall never be in a position to conceive, it is evident +...” +“Since, finally, in this connection, I assume both the role of the +plaintiff and that of the defendant, of the accused and of the judge, +and since I consider this comedy perpetrated by nature altogether +stupid, and since I even deem it humiliating for me to deign to play +it ...” +“In my indisputable capacity of plaintiff and defendant, of +judge and accused, I condemn that nature which, with such +impudent nerve, brought me into being in order to suffer—I +condemn it to be annihilated with me.” +There remains a little humor in that position. This suicide kills +himself because, on the metaphysical plane, he is vexed. In a +certain sense he is taking his revenge. This is his way of proving +that he “will not be had.” It is known, however, that the same +theme is embodied, but with the most wonderful generality, in +Kirilov of The Possessed, likewise an advocate of logical suicide. +Kirilov the engineer declares somewhere that he wants to take his +own life because it “is his idea.” Obviously the word must be taken +in its proper sense. It is for an idea, a thought, that he is getting +ready for death. This is the superior suicide. Progressively, in a +series of scenes in which Kirilov’s mask is gradually illuminated, +the fatal thought driving him is revealed to us. The engineer, in +fact, goes back to the arguments of the Diary. He feels that God is +necessary and that he must exist. But he knows that he does not +and cannot exist. “Why do you not realize,” he exclaims, “that this +is sufficient reason for killing oneself?” That attitude involves +likewise for him some of the absurd consequences. Through +indifference he accepts letting his suicide be used to the advantage +of a cause he despises. “I decided last night that I didn’t care.” And +finally he prepares his deed with a mixed feeling of revolt and +freedom. “I shall kill myself in order to assert my insubordination, +my new and dreadful liberty.” It is no longer a question of revenge, +but of revolt. Kirilov is consequently an absurd character—yet +with this essential reservation: he kills himself. But he himself +explains this contradiction, and in such a way that at the same time +he reveals the absurd secret in all its purity. In truth, he adds to his +fatal logic an extraordinary ambition which gives the character its +full perspective: he wants to kill himself to become god. +The reasoning is classic in its clarity. If God does not exist, +Kirilov is god. If God does not exist, Kirilov must kill himself. +Kirilov must therefore kill himself to become god. That logic is +absurd, but it is what is needed. The interesting thing, however, is +to give a meaning to that divinity brought to earth. That amounts to +clarifying the premise: “If God does not exist, I am god,” which +still remains rather obscure. It is important to note at the outset that +the man who flaunts that mad claim is indeed of this world. He +performs his gymnastics every morning to preserve his health. He +is stirred by the joy of Chatov recovering his wife. On a sheet of +paper to be found after his death he wants to draw a face sticking +out his tongue at “them.” He is childish and irascible, passionate, +methodical, and sensitive. Of the superman he has nothing but the +logic and the obsession, whereas of man he has the whole +catalogue. Yet it is he who speaks calmly of his divinity. He is not +mad, or else Dostoevsky is. Consequently it is not a +megalomaniac’s illusion that excites him. And taking the words in +their specific sense would, in this instance, be ridiculous. +Kirilov himself helps us to understand. In reply to a question +from Stavrogin, he makes clear that he is not talking of a god-man. +It might be thought that this springs from concern to distinguish +himself from Christ. But in reality it is a matter of annexing Christ. +Kirilov in fact fancies for a moment that Jesus at his death did not +find himself in Paradise. He found out then that his torture had +been useless. “The laws of nature,” says the engineer, “made +Christ live in the midst of falsehood and die for a falsehood.” +Solely in this sense Jesus indeed personifies the whole human +drama. He is the complete man, being the one who realized the +most absurd condition. He is not the God-man but the man-god. +And, like him, each of us can be crucified and victimized—and is +to a certain degree. +The divinity in question is therefore altogether terrestrial. “For +three years,” says Kirilov, “I sought the attribute of my divinity +and I have found it. The attribute of my divinity is independence.” +Now can be seen the meaning of Kirilov’s premise: “If God does +not exist, I am god.” To become god is merely to be free on this +earth, not to serve an immortal being. Above all, of course, it is +drawing all the inferences from that painful independence. If God +exists, all depends on him and we can do nothing against his will. +If he does not exist, everything depends on us. For Kirilov, as for +Nietzsche, to kill God is to become god oneself; it is to realize on +this earth the eternal life of which the Gospel speaks.[21] But if this +metaphysical crime is enough for man’s fulfillment, why add +suicide? Why kill oneself and leave this world after having won +freedom? That is contradictory. Kirilov is well aware of this, for he +adds: “If you feel that, you are a tsar and, far from killing yourself, +you will live covered with glory.” But men in general do not know +it. They do not feel “that.” As in the time of Prometheus, they +entertain blind hopes.[22] They need to be shown the way and +cannot do without preaching. Consequently, Kirilov must kill +himself out of love for humanity. He must show his brothers a +royal and difficult path on which he will be the first. It is a +pedagogical suicide. Kirilov sacrifices himself, then. But if he is +crucified, he will not be victimized. He remains the man-god, +convinced of a death without future, imbued with evangelical +melancholy. “I,” he says, “am unhappy because I am obliged to +assert my freedom.” +But once he is dead and men are at last enlightened, this earth +will be peopled with tsars and lighted up with human glory. +Kirilov’s pistol shot will be the signal for the last revolution. Thus, +it is not despair that urges him to death, but love of his neighbor +for his own sake. Before terminating in blood an indescribable +spiritual adventure, Kirilov makes a remark as old as human +suffering: “All is well.” +This theme of suicide in Dostoevsky, then, is indeed an absurd +theme. Let us merely note before going on that Kirilov reappears in +other characters who themselves set in motion additional absurd +themes. Stavrogin and Ivan Karamazov try out the absurd truths in +practical life. They are the ones liberated by Kirilov’s death. They +try their skill at being tsars. Stavrogin leads an “ironic” life, and it +is well known in what regard. He arouses hatred around him. And +yet the key to the character is found in his farewell letter: “I have +not been able to detest anything.” He is a tsar in indifference. Ivan +is likewise by refusing to surrender the royal powers of the mind. +To those who, like his brother, prove by their lives that it is +essential to humiliate oneself in order to believe, he might reply +that the condition is shameful. His key word is: “Everything is +permitted,” with the appropriate shade of melancholy. Of course, +like Nietzsche, the most famous of God’s assassins, he ends in +madness. But this is a risk worth running, and, faced with such +tragic ends, the essential impulse of the absurd mind is to ask: +“What does that prove?” +* * * +Thus the novels, like the Diary, propound the absurd question. +They establish logic unto death, exaltation, “dreadful” freedom, the +glory of the tsars become human. All is well, everything is +permitted, and nothing is hateful—these are absurd judgments. But +what an amazing creation in which those creatures of fire and ice +seem so familiar to us. The passionate world of indifference that +rumbles in their hearts does not seem at all monstrous to us. We +recognize in it our everyday anxieties. And probably no one so +much as Dostoevsky has managed to give the absurd world such +familiar and tormenting charms. +Yet what is his conclusion? Two quotations will show the +complete metaphysical reversal that leads the writer to other +revelations. The argument of the one who commits logical suicide +having provoked protests from the critics, Dostoevsky in the +following installments of the Diary amplifies his position and +concludes thus: “If faith in immortality is so necessary to the +human being (that without it he comes to the point of killing +himself), it must therefore be the normal state of humanity. Since +this is the case, the immortality of the human soul exists without +any doubt.” Then again in the last pages of his last novel, at the +conclusion of that gigantic combat with God, some children ask +Aliocha: “Karamazov, is it true what religion says, that we shall +rise from the dead, that we shall see one another again?” And +Aliocha answers: “Certainly, we shall see one another again, we +shall joyfully tell one another everything that has happened.’’ +Thus Kirilov, Stavrogin, and Ivan are defeated. The Brothers +Karamazov replies to The Possessed. And it is indeed a conclusion. +Aliocha’s case is not ambiguous, as is that of Prince Muichkin. Ill, +the latter lives in a perpetual present, tinged with smiles and +indifference, and that blissful state might be the eternal life of +which the Prince speaks. On the contrary, Aliocha clearly says: +“We shall meet again.” There is no longer any question of suicide +and of madness. What is the use, for anyone who is sure of +immortality and of its joys? Man exchanges his divinity for +happiness. “We shall joyfully tell one another everything that has +happened.” Thus again Kirilov’s pistol rang out somewhere in +Russia, but the world continued to cherish its blind hopes. Men did +not understand “that.” +Consequently, it is not an absurd novelist addressing us, but an +existential novelist. Here, too, the leap is touching and gives its +nobility to the art that inspires it. It is a stirring acquiescence, +riddled with doubts, uncertain and ardent. Speaking of The +Brothers Karamazov, Dostoevsky wrote: “The chief question that +will be pursued throughout this book is the very one from which I +have suffered consciously or unconsciously all life long: the +existence of God.” It is hard to believe that a novel sufficed to +transform into joyful certainty the suffering of a lifetime. One +commentator[23] correctly pointed out that Dostoevsky is on Ivan’s +side and that the affirmative chapters took three months of effort +whereas what he called “the blasphemies” were written in three +weeks in a state of excitement. There is not one of his characters +who does not have that thorn in the flesh, who does not aggravate +it or seek a remedy for it in sensation or immortality.[24] In any +case, let us remain with this doubt. Here is a work which, in a +chiaroscuro more gripping than the light of day, permits us to seize +man’s struggle against his hopes. Having reached the end, the +creator makes his choice against his characters. That contradiction +thus allows us to make a distinction. It is not an absurd work that is +involved here, but a work that propounds the absurd problem. +Dostoevsky’s reply is humiliation, “shame” according to +Stavrogin. An absurd work, on the contrary, does not provide a +reply; that is the whole difference. Let us note this carefully in +conclusion: what contradicts the absurd in that work is not its +Christian character, but rather its announcing a future life. It is +possible to be Christian and absurd. There are examples of +Christians who do not believe in a future life. In regard to the work +of art, it should therefore be possible to define one of the directions +of the absurd analysis that could have been anticipated in the +preceding pages. It leads to propounding “the absurdity of the +Gospel.” It throws light upon this idea, fertile in repercussions, that +convictions do not prevent incredulity. On the contrary, it is easy +to see that the author of The Possessed, familiar with these paths, +in conclusion took a quite different way. The surprising reply of +the creator to his characters, of Do-stoevsky to Kirilov, can indeed +be summed up thus: existence is illusory and it is eternal. +Ephemeral Creation +At this point I perceive, therefore, that hope cannot be eluded +forever and that it can beset even those who wanted to be free of it. +This is the interest I find in the works discussed up to this point. I +could, at least in the realm of creation, list some truly absurd +works.[25] But everything must have a beginning. The object of this +quest is a certain fidelity. The Church has been so harsh with +heretics only because she deemed that there is no worse enemy +than a child who has gone astray. But the record of Gnostic +effronteries and the persistence of Manichean currents have +contributed more to the construction of orthodox dogma than all +the prayers. With due allowance, the same is true of the absurd. +One recognizes one’s course by discovering the paths that stray +from it. At the very conclusion of the absurd reasoning, in one of +the attitudes dictated by its logic, it is not a matter of indifference +to find hope coming back in under one of its most touching guises. +That shows the difficulty of the absurd ascesis. Above all, it shows +the necessity of unfailing alertness and thus confirms the general +plan of this essay. +But if it is still too early to list absurd works, at least a +conclusion can be reached as to the creative attitude, one of those +which can complete absurd existence. Art can never be so well +served as by a negative thought. Its dark and humiliated +proceedings are as necessary to the understanding of a great work +as black is to white. To work and create “for nothing,” to sculpture +in clay, to know that one’s creation has no future, to see one’s +work destroyed in a day while being aware that fundamentally this +has no more importance than building for centuries—this is the +difficult wisdom that absurd thought sanctions. Performing these +two tasks simultaneously, negating on the one hand and +magnifying on the other, is the way open to the absurd creator. He +must give the void its colors. +This leads to a special conception of the work of art. Too often +the work of a creator is looked upon as a series of isolated +testimonies. Thus, artist and man of letters are confused. A +profound thought is in a constant state of becoming; it adopts the +experience of a life and assumes its shape, likewise, a man’s sole +creation is strengthened in its successive and multiple aspects: his +works. One after another, they complement one an-other, correct or +overtake one another, contradict one another too. If something +brings creation to an end, it is not the victorious and illusory cry of +the blinded artist: “I have said everything,” but the death of the +creator which closes his experience and the book of his genius. +That effort, that superhuman consciousness are not necessarily +apparent to the reader. There is no mystery in human creation. Will +performs this miracle. But at least there is no true creation without +a secret. To be sure, a succession of works can be but a series of +approximations of the same thought. But it is possible to conceive +of another type of creator proceeding by juxtaposition. Their works +may seem to be devoid of interrelations. To a certain degree, they +are contradictory. +But viewed all together, they resume their natural grouping. +From death, for instance, they derive their definitive significance. +They receive their most obvious light from the very life of their +author. At the moment of death, the succession of his works is but +a collection of failures. But if those failures all have the same +resonance, the creator has managed to repeat the image of his own +condition, to make the air echo with the sterile secret he possesses. +The effort to dominate is considerable here. But human +intelligence is up to much more. It will merely indicate clearly the +voluntary aspect of creation. Elsewhere I have brought out the fact +that human will had no other purpose than to maintain awareness. +But that could not do without discipline. Of all the schools of +patience and lucidity, creation is the most effective. It is also the +staggering evidence of man’s sole dignity: the dogged revolt +against his condition, perseverance in an effort considered sterile. +It calls for a daily effort, self-mastery, a precise estimate of the +limits of truth, measure, and strength. It constitutes an ascesis. All +that “for nothing,” in order to repeat and mark time. But perhaps +the great work of art has less importance in itself than in the ordeal +it demands of a man and the opportunity it provides him of +overcoming his phantoms and approaching a little closer to his +naked reality. +* * * +Let there be no mistake in aesthetics. It is not patient inquiry, +the unceasing, sterile illustration of a thesis that I am calling for +here. Quite the contrary, if I have made myself clearly understood. +The thesis-novel, the work that proves, the most hateful of all, is +the one that most often is inspired by a smug thought. You +demonstrate the truth you feel sure of possessing. But those are +ideas one launches, and ideas are the contrary of thought. Those +creators are philosophers, ashamed of themselves. Those I am +speaking of or whom I imagine are, on the contrary, lucid thinkers. +At a certain point where thought turns back on itself, they raise up +the images of their works like the obvious symbols of a limited, +mortal, and rebellious thought. +They perhaps prove something. But those proofs are ones that +the novelists provide for themselves rather than for the world in +general. The essential is that the novelists should triumph in the +concrete and that this constitute their nobility. This wholly carnal +triumph has been prepared for them by a thought in which abstract +powers have been humiliated. When they are completely so, at the +same time the flesh makes the creation shine forth in all its absurd +luster. After all, ironic philosophies produce passionate works. +Any thought that abandons unity glorifies diversity. And +diversity is the home of art. The only thought to liberate the mind +is that which leaves it alone, certain of its limits and of its +impending end. No doctrine tempts it. It awaits the ripening of the +work and of life. Detached from it, the work will once more give a +barely muffled voice to a soul Forever freed from hope. Or it will +give voice to nothing if the creator, tired of his activity, intends to +turn away. That is equivalent. +* * * +Thus, I ask of absurd creation what I required from thought— +revolt, freedom, and diversity. Later on it will manifest its utter +futility. In that daily effort in which intelligence and passion +mingle and delight each other, the absurd man discovers a +discipline that will make up the greatest of his strengths. The +required diligence, the doggedness and lucidity thus resemble the +conqueror’s attitude. To create is likewise to give a shape to one’s +fate. For all these characters, their work defines them at least as +much as it is defined by them. The actor taught us this: there is no +frontier between being and appearing. +Let me repeat. None of all this has any real meaning. On the +way to that liberty, there is still a progress to be made. The final +effort for these related minds, creator or conqueror, is to manage to +free themselves also from their undertakings: succeed in granting +that the very work, whether it be conquest, love, or creation, may +well not be; consummate thus the utter futility of any individual +life. Indeed, that gives them more freedom in the realization of that +work, just as becoming aware of the absurdity of life authorized +them to plunge into it with every excess. +All that remains is a fate whose outcome alone is fatal. Outside +of that single fatality of death, everything, joy or happiness, is +liberty. A world remains of which man is the sole master. What +bound him was the illusion of another world. The outcome of his +thought, ceasing to be renunciatory, flowers in images. It frolics— +in myths, to be sure, but myths with no other depth than that of +human suffering and, like it, inexhaustible. Not the divine fable +that amuses and blinds, but the terrestrial face, gesture, and drama +in which are summed up a difficult wisdom and an ephemeral +passion. +The Myth Of Sisyphus +The gods had condemned Sisyphus to ceaselessly rolling a rock +to the top of a mountain, whence the stone would fall back of its +own weight. They had thought with some reason that there is no +more dreadful punishment than futile and hopeless labor. +If one believes Homer, Sisyphus was the wisest and most +prudent of mortals. According to another tradition, however, he +was disposed to practice the profession of highwayman. I see no +contradiction in this. Opinions differ as to the reasons why he +became the futile laborer of the underworld. To begin with, he is +accused of a certain levity in regard to the gods. He stole their +secrets. AEgina, the daughter of AEsopus, was carried off by +Jupiter. The father was shocked by that disappearance and +complained to Sisyphus. He, who knew of the abduction, offered +to tell about it on condition that AEsopus would give water to the +citadel of Corinth. To the celestial thunderbolts he preferred the +benediction of water. He was punished for this in the underworld. +Homer tells us also that Sisyphus had put Death in chains. Pluto +could not endure the sight of his deserted, silent empire. He +dispatched the god of war, who liberated Death from the hands of +her conqueror. +It is said also that Sisyphus, being near to death, rashly wanted +to test his wife’s love. He ordered her to cast his unburied body +into the middle of the public square. Sisyphus woke up in the +underworld. And there, annoyed by an obedience so contrary to +human love, he obtained from Pluto permission to return to earth in +order to chastise his wife. But when he had seen again the face of +this world, enjoyed water and sun, warm stones and the sea, he no +longer wanted to go back to the infernal darkness. Recalls, signs of +anger, warnings were of no avail. Many years more he lived facing +the curve of the gulf, the sparkling sea, and the smiles of earth. A +decree of the gods was necessary. Mercury came and seized the +impudent man by the collar and, snatching him from his joys, led +him forcibly back to the underworld, where his rock was ready for +him. +You have already grasped that Sisyphus is the absurd hero. He +is, as much through his passions as through his torture. His scorn +of the gods, his hatred of death, and his passion for life won him +that unspeakable penalty in which the whole being is exerted +toward accomplishing nothing. This is the price that must be paid +for the passions of this earth. Nothing is told us about Sisyphus in +the underworld. Myths are made for the imagination to breathe life +into them. As for this myth, one sees merely the whole effort of a +body straining to raise the huge stone, to roll it and push it up a +slope a hundred times over; one sees the face screwed up, the +cheek tight against the stone, the shoulder bracing the clay-covered +mass, the foot wedging it, the fresh start with arms outstretched, +the wholly human security of two earth-clotted hands. At the very +end of his long effort measured by skyless space and time without +depth, the purpose is achieved. Then Sisyphus watches the stone +rush down in a few moments toward that lower world whence he +will have to push it up again toward the summit. He goes back +down to the plain. +It is during that return, that pause, that Sisyphus interests me. A +face that toils so close to stones is already stone itself! I see that +man going back down with a heavy yet measured step toward the +torment of which he will never know the end. That hour like a +breathing-space which returns as surely as his suffering, that is the +hour of consciousness. At each of those moments when he leaves +the heights and gradually sinks toward the lairs of the gods, he is +superior to his fate. He is stronger than his rock. +If this myth is tragic, that is because its hero is conscious. +Where would his torture be, indeed, if at every step the hope of +succeeding upheld him? The workman of today works every day in +his life at the same tasks, and this fate is no less absurd. But it is +tragic only at the rare moments when it becomes conscious. +Sisyphus, proletarian of the gods, powerless and rebellious, knows +the whole extent of his wretched condition: it is what he thinks of +during his descent. The lucidity that was to constitute his torture at +the same time crowns his victory. There is no fate that cannot be +surmounted by scorn. +* * * +If the descent is thus sometimes performed in sorrow, it can +also take place in joy. This word is not too much. Again I fancy +Sisyphus returning toward his rock, and the sorrow was in the +beginning. When the images of earth cling too tightly to memory, +when the call of happiness becomes too insistent, it happens that +melancholy rises in man’s heart: this is the rock’s victory, this is +the rock itself. The boundless grief is too heavy to bear. These are +our nights of Gethsemane. But crushing truths perish from being +acknowledged. Thus, CEdipus at the outset obeys fate without +knowing it. But from the moment he knows, his tragedy begins. +Yet at the same moment, blind and desperate, he realizes that the +only bond linking him to the world is the cool hand of a girl. Then +a tremendous remark rings out: “Despite so many ordeals, my +advanced age and the nobility of my soul make me conclude that +all is well.” Sophocles’ CEdipus, like Dostoevsky’s Kirilov, thus +gives the recipe for the absurd victory. Ancient wisdom confirms +modern heroism. +One does not discover the absurd without being tempted to +write a manual of happiness. “What! by such narrow ways—?” +There is but one world, however. Happiness and the absurd are two +sons of the same earth. They are inseparable. It would be a mistake +to say that happiness necessarily springs from the absurd +discovery. It happens as well that the feeling of the absurd springs +from happiness. “I conclude that all is well,” says CEdipus, and +that remark is sacred. It echoes in the wild and limited universe of +man. It teaches that all is not, has not been, exhausted. It drives out +of this world a god who had come into it with dissatisfaction and a +preference for futile sufferings. It makes of fate a human matter, +which must be settled among men. +All Sisyphus’ silent joy is contained therein. His fate belongs +to him. His rock is his thing. Likewise, the absurd man, when he +contemplates his torment, silences all the idols. In the universe +suddenly restored to its silence, the myriad wondering little voices +of the earth rise up. Unconscious, secret calls, invitations from all +the faces, they are the necessary reverse and price of victory. There +is no sun without shadow, and it is es-sential to know the night. +The absurd man says yes and his effort will henceforth be +unceasing. If there is a personal fate, there is no higher destiny, or +at least there is but one which he concludes is inevitable and +despicable. For the rest, he knows himself to be the master of his +days. At that subtle moment when man glances backward over his +life, Sisyphus returning toward his rock, in that slight pivoting he +contemplates that series of unrelated actions which becomes his +fate, created by him, combined under his memory’s eye and soon +sealed by his death. Thus, convinced of the wholly human origin of +all that is human, a blind man eager to see who knows that the +night has no end, he is still on the go. The rock is still rolling. +I leave Sisyphus at the foot of the mountain! One always finds +one’s burden again. But Sisyphus teaches the higher fidelity that +negates the gods and raises rocks. He too concludes that all is well. +This universe henceforth without a master seems to him neither +sterile nor futile. Each atom of that stone, each mineral flake of +that night-filled mountain, in itself forms a world. The struggle +itself toward the heights is enough to fill a man’s heart. One must +imagine Sisyphus happy. +Appendix: Hope and the Absurd in the Work of Franz Kafka +The whole art of Kafka consists in forcing the reader to reread. +His endings, or his absence of endings, suggest explanations +which, however, are not revealed in clear language but, before they +seem justified, require that the story be reread from another point +of view. Sometimes there is a double possibility of interpretation, +whence appears the necessity for two readings. This is what the +author wanted. But it would be wrong to try to interpret everything +in Kafka in detail. A symbol is always in general and, however +precise its translation, an artist can restore to it only its movement: +there is no word-for-word rendering. Moreover, nothing is harder +to understand than a symbolic work. A symbol always transcends +the one who makes use of it and makes him say in reality more +than he is aware of expressing. In this regard, the surest means of +getting hold of it is not to provoke it, to begin the work without a +preconceived attitude and not to look for its hidden currents. For +Kafka in particular it is fair to agree to his rules, to approach the +drama through its externals and the novel through its form. +At first glance and for a casual reader, they are disturbing +adventures that carry off quaking and dogged characters into +pursuit of problems they never formulate. In The Trial, Joseph K. +is accused. But he doesn’t know of what. He is doubtless eager to +defend himself, but he doesn’t know why. The lawyers find his +case difficult. Meanwhile, he does not neglect to love, to eat, or to +read his paper. Then he is judged. But the courtroom is very dark. +He doesn’t understand much. He merely assumes that he is +condemned, but to what he barely wonders. At times he suspects +just the same, and he continues living. Some time later two well- +dressed and polite gentlemen come to get him and invite him to +follow them. Most courteously they lead him into a wretched +suburb, put his head on a stone, and slit his throat. Before dying the +condemned man says merely: “Like a dog.” +You see that it is hard to speak of a symbol in a tale whose +most obvious quality just happens to be naturalness. But +naturalness is a hard category to understand. There are works in +which the event seems natural to the reader. But there are others +(rarer, to be sure) in which the character considers natural what +happens to him. By an odd but obvious paradox, the more +extraordinary the character’s adventures are, the more noticeable +will be the naturalness of the story: it is in proportion to the +divergence we feel between the strangeness of a man’s life and the +simplicity with which that man accepts it. It seems that this +naturalness is Kafka’s. And, precisely, one is well aware what The +Trial means. People have spoken of an image of the human +condition. To be sure. Yet it is both simpler and more complex. I +mean that the significance of the novel is more particular and more +personal to Kafka. To a certain degree, he is the one who does the +talking, even though it is me he confesses. He lives and he is +condemned. He learns this on the first pages of the novel he is +pursuing in this world, and if he tries to cope with this, he +nonetheless does so without surprise. He will never show sufficient +astonishment at this lack of astonishment. It is by such +contradictions that the first signs of the absurd work are +recognized. The mind projects into the concrete its spiritual +tragedy. And it can do so solely by means of a perpetual paradox +which confers on colors the power to express the void and on daily +gestures the strength to translate eternal ambitions. +Likewise, The Castle is perhaps a theology in action, but it is +first of all the individual adventure of a soul in quest of its grace, +of a man who asks of this world’s objects their royal secret and of +women the signs of the god that sleeps in them. Metamorphosis, in +turn, certainly represents the horrible imagery of an ethic of +lucidity. But it is also the product of that incalculable amazement +man feels at being conscious of the beast he becomes effortlessly. +In this fundamental ambiguity lies Kafka’s secret. These perpetual +oscillations between the natural and the extraordinary, the +individual and the universal, the tragic and the everyday, the +absurd and the logical, are found throughout his work and give it +both its resonance and its meaning. These are the paradoxes that +must be enumerated, the contradictions that must be strengthened, +in order to understand the absurd work. +A symbol, indeed, assumes two planes, two worlds of ideas +and sensations, and a dictionary of correspondences between them. +This lexicon is the hardest thing to draw up. But awaking to the +two worlds brought face to face is tantamount to getting on the trail +of their secret relationships. In Kafka these two worlds are that of +everyday life on the one hand and, on the other, that of +supernatural anxiety.[26] It seems that we are witnessing here an +interminable exploitation of Nietzsche’s remark: “Great problems +are in the street.” +There is in the human condition (and this is a commonplace of +all literatures) a basic absurdity as well as an implacable nobility. +The two coincide, as is natural. Both of them are represented, let +me repeat, in the ridiculous divorce separating our spiritual +excesses and the ephemeral joys of the body. The absurd thing is +that it should be the soul of this body which it transcends so +inordinately. Whoever would like to represent this absurdity must +give it life in a series of parallel contrasts. Thus it is that Kafka +expresses tragedy by the everyday and the absurd by the logical. +An actor lends more force to a tragic character the more careful +he is not to exaggerate it. If he is moderate, the horror he inspires +will be immoderate. In this regard Greek tragedy is rich in lessons. +In a tragic work fate always makes itself felt better in the guise of +logic and naturalness. CEdipus’s fate is announced in advance. It is +decided supernaturally that he will commit the murder and the +incest. The drama’s whole effort is to show the logical system +which, from deduction to deduction, will crown the hero’s +misfortune. Merely to announce to us that uncommon fate is +scarcely horrible, because it is improbable. But if its necessity is +demonstrated to us in the framework of everyday life, society, +state, familiar emotion, then the horror is hallowed. In that revolt +that shakes man and makes him say: “That is not possible,” there is +an element of desperate certainty that “that” can be. +This is the whole secret of Greek tragedy, or at least of one of +its aspects. For there is another which, by a reverse method, would +help us to understand Kafka better. The human heart has a tiresome +tendency to label as fate only what crushes it. But happiness +likewise, in its way, is without reason, since it is inevitable. +Modern man, however, takes the credit for it himself, when he +doesn’t fail to recognize it. Much could be said, on the contrary, +about the privileged fates of Greek tragedy and those favored in +legend who, like Ulysses, in the midst of the worst adventures are +saved from themselves. It was not so easy to return to Ithaca. +What must be remembered in any case is that secret complicity +that joins the logical and the everyday to the tragic. This is why +Samsa, the hero of Metamorphosis, is a traveling salesman. This is +why the only thing that disturbs him in the strange adventure that +makes a vermin of him is that his boss will be angry at his absence. +Legs and feelers grow out on him, his spine arches up, white spots +appear on his belly and—I shall not say that this does not astonish +him, for the effect would be spoiled—but it causes him a “slight +annoyance.” The whole art of Kafka is in that distinction. In his +central work, The Castle, the details of everyday life stand out, and +yet in that strange novel in which nothing concludes and +everything begins over again, it is the essential adventure of a soul +in quest of its grace that is represented. That translation of the +problem into action, that coincidence of the general and the +particular are recognized likewise in the little artifices that belong +to every great creator. In The Trial the hero might have been +named Schmidt or Franz Kafka. But he is named Joseph K. He is +not Kafka and yet he is Kafka. He is an average European. He is +like everybody else. But he is also the entity K. who is the x of this +flesh-and-blood equation. +Likewise, if Kafka wants to express the absurd, he will make +use of consistency. You know the story of the crazy man who was +fishing in a bathtub. A doctor with ideas as to psychiatric +treatments asked him “if they were biting,” to which he received +the harsh reply: “Of course not, you fool, since this is a bathtub.” +That story belongs to the baroque type. But in it can be grasped +quite clearly to what a degree the absurd effect is linked to an +excess of logic. Kafka’s world is in truth an indescribable universe +in which man allows himself the tormenting luxury of fishing in a +bathtub, knowing that nothing will come of it. +Consequently, I recognize here a work that is absurd in its +principles. As for The Trial, for instance, I can indeed say that it is +a complete success. Flesh wins out. +Nothing is lacking, neither the unexpressed revolt (but it is +what is writing), nor lucid and mute despair (but it is what is +creating), nor that amazing freedom of manner which the +characters of the novel exemplify until their ultimate death. +* * * +Yet this world is not so closed as it seems. Into this universe +devoid of progress, Kafka is going to introduce hope in a strange +form. In this regard The Trial and The Castle do not follow the +same direction. They complement each other. The barely +perceptible progression from one to the other represents a +tremendous conquest in the realm of evasion. The Trial propounds +a problem which The Castle, to a certain degree, solves. The first +describes according to a quasi scientific method and without +concluding. The second, to a certain degree, explains. The Trial +diagnoses, and The Castle imagines a treatment. But the remedy +proposed here does not cure. It merely brings the malady back into +normal life. It helps to accept it. In a certain sense (let us think of +Kierkegaard), it makes people cherish it. The Land Surveyor K. +cannot imagine another anxiety than the one that is tormenting +him. The very people around him become attached to that void and +that nameless pain, as if suffering assumed in this case a privileged +aspect. “How I need you,” Frieda says to K. “How forsaken I feel, +since knowing you, when you are not with me.” This subtle +remedy that makes us love what crushes us and makes hope spring +up in a world without issue, this sudden “leap” through which +everything is changed, is the secret of the existential revolution and +of The Castle itself. +Few works are more rigorous in their development than The +Castle. K. is named Land Surveyor to the Castle and he arrives in +the village. But from the village to the Castle it is impossible to +communicate. For hundreds of pages K. persists in seeking his +way, makes every advance, uses trickery and expedients, never +gets angry, and with disconcerting good will tries to assume the +duties entrusted to him. Each chapter is a new frustration. And also +a new beginning. It is not logic, but consistent method. The scope +of that insistence constitutes the work’s tragic quality. When K. +telephones to the Castle, he hears confused, mingled voices, vague +laughs, distant invitations. That is enough to feed his hope, like +those few signs appearing in summer skies or those evening +anticipations which make up our reason for living. Here is found +the secret of the melancholy peculiar to Kafka. The same, in truth, +that is found in Proust’s work or in the landscape of Plotinus: a +nostalgia for a lost paradise. “I become very sad,” says Olga, +“when Barnabas tells me in the morning that he is going to the +Castle: that probably futile trip, that probably wasted day, that +probably empty hope.” +“Probably”—on this implication Kafka gambles his entire +work. But nothing avails; the quest of the eternal here is +meticulous. And those inspired automata, Kafka’s characters, +provide us with a precise image of what we should be if we were +deprived of our distractions[27] and utterly consigned to the +humiliations of the divine. +In The Castle that surrender to the everyday becomes an ethic. +The great hope of K. is to get the Castle to adopt him. Unable to +achieve this alone, his whole effort is to deserve this favor by +becoming an inhabitant of the village, by losing the status of +foreigner that everyone makes him feel. What he wants is an +occupation, a home, the life of a healthy, normal man. He can’t +stand his madness any longer. He wants to be reasonable. He wants +to cast off the peculiar curse that makes him a stranger to the +village. The episode of Frieda is significant in this regard. If he +takes as his mistress this woman who has known one of the +Castle’s officials, this is because of her past. He derives from her +something that transcends him while being aware of what makes +her forever unworthy of the Castle. This makes one think of +Kierkegaard’s strange love for Regina Olsen. In certain men, the +fire of eternity consuming them is great enough for them to burn in +it the very heart of those closest to them. The fatal mistake that +consists in giving to God what is not God’s is likewise the subject +of this episode of The Castle. But for Kafka it seems that this is not +a mistake. It is a doctrine and a “leap.” There is nothing that is not +God’s. +Even more significant is the fact that the Land Surveyor breaks +with Frieda in order to go toward the Barnabas sisters. For the +Barnabas family is the only one in the village that is utterly +forsaken by the Castle and by the village itself. Amalia, the elder +sister, has rejected the shameful propositions made her by one of +the Castle’s officials. The immoral curse that followed has forever +cast her out from the love of God. Being incapable of losing one’s +honor for God amounts to making oneself unworthy of his grace. +You recognize a theme familiar to existential philosophy: truth +contrary to morality. At this point things are far-reaching. For the +path pursued by Kafka’s hero from Frieda to the Barnabas sisters is +the very one that leads from trusting love to the deification of the +absurd. Here again Kafka’s thought runs parallel to Kierkegaard. It +is not surprising that the “Barnabas story” is placed at the end of +the book. The Land Surveyor’s last attempt is to recapture God +through what negates him, to recognize him, not according to our +categories of goodness and beauty, but behind the empty and +hideous aspects of his indifference, of his injustice, and of his +hatred. That stranger who asks the Castle to adopt him is at the end +of his voyage a little more exiled because this time he is unfaithful +to himself, forsaking morality, logic, and intellectual truths in order +to try to enter, endowed solely with his mad hope, the desert of +divine grace.[28] +*** +The word “hope” used here is not ridiculous. On the contrary, +the more tragic the condition described by Kafka, the firmer and +more aggressive that hope becomes. The more truly absurd The +Trial is, the more moving and illegitimate the impassioned “leap” +of The Castle seems. But we find here again in a pure state the +paradox of existential thought as it is expressed, for instance, by +Kierkegaard: “Earthly hope must be killed; only then can one be +saved by true hope,” [29]which can be translated: “One has to have +written The Trial to undertake The Castle.” +Most of those who have spoken of Kafka have indeed defined +his work as a desperate cry with no recourse left to man. But this +calls for review. There is hope and hope. To me the optimistic +work of Henri Bordeaux seems peculiarly discouraging. This is +because it has nothing for the discriminating. Malraux’s thought, +on the other hand, is always bracing. But in these two cases neither +the same hope nor the same despair is at issue. I see merely that the +absurd work itself may lead to the infidelity I want to avoid. The +work which was but an ineffectual repetition of a sterile condition, +a lucid glorification ol the ephemeral, becomes here a cradle of +illusions. It explains, it gives a shape to hope. The creator can no +longer divorce himself from it. It is not the tragic game it was to +be. It gives a meaning to the author’s life. +It is strange in any case that works of related inspiration like +those of Kafka, Kierkegaard, or Chestov—those, in short, of +existential novelists and philosophers completely oriented toward +the Absurd and its consequences—should in the long run lead to +that tremendous cry of hope. +They embrace the God that consumes them. It is through +humility that hope enters in. For the absurd of this existence +assures them a little more of supernatural reality. If the course of +this life leads to God, there is an outcome after all. And the +perseverance, the insistence with which Kierkegaard, Chestov, and +Kafka’s heroes repeat their itineraries are a special warrant of the +uplifting power of that certainty.[30] +Kafka refuses his god moral nobility, evidence, virtue, +coherence, but only the better to fall into his arms. The absurd is +recognized, accepted, and man is resigned to it, but from then on +we know that it has ceased to be the absurd. Within the limits of +the human condition, what greater hope than the hope that allows +an escape from that condition? As I see once more, existential +thought in this regard (and contrary to current opinion) is steeped +in a vast hope. The very hope which at the time of early +Christianity and the spreading of the good news inflamed the +ancient world. But in that leap that characterizes all existential +thought, in that insistence, in that surveying of a divinity devoid of +surface, how can one fail to see the mark of a lucidity that +repudiates itself? It is merely claimed that this is pride abdicating +to save itself. Such a repudiation would be fecund. But this does +not change that. The moral value of lucidity cannot be diminished +in my eyes by calling it sterile like all pride. For a truth also, by its +very definition, is sterile. All facts are. In a world where everything +is given and nothing is explained, the fecundity of a value or of a +metaphysic is a notion devoid of meaning. +In any case, you see here in what tradition of thought Kafka’s +work takes its place. It would indeed be intelligent to consider as +inevitable the progression leading from The Trial to The Castle. +Joseph K. and the Land Surveyor K. are merely two poles that +attract Kafka.[31] I shall speak like him and say that his work is +probably not absurd. But that should not deter us from seeing its +nobility and universality. They come from the fact that he managed +to represent so fully the everyday passage from hope to grief and +from desperate wisdom to intentional blindness. His work is +universal (a really absurd work is not universal) to the extent to +which it represents the emotionally moving face of man fleeing +humanity, deriving from his contradictions reasons for believing, +reasons for hoping from his fecund despairs, and calling life his +terrifying apprenticeship in death. It is universal because its +inspiration is religious. As in all religions, man is freed of the +weight of his own life. But if I know that, if I can even admire it, I +also know that I am not seeking what is universal, but what is true. +The two may well not coincide. +This particular view will be better understood if I say that truly +hopeless thought just happens to be defined by the opposite criteria +and that the tragic work might be the work that, after all future +hope is exiled, describes the life of a happy man. The more +exciting life is, the more absurd is the idea of losing it. This is +perhaps the secret of that proud aridity felt in Nietzsche’s work. In +this connection, Nietzsche appears to be the only artist to have +derived the extreme consequences of an aesthetic of the Absurd, +inasmuch as his final message lies in a sterile and conquering +lucidity and an obstinate negation of any supernatural consolation. +The preceding should nevertheless suffice to bring out the +capital importance of Kafka in the framework of this essay. Here +we are carried to the confines of human thought. In the fullest +sense of the word, it can be said that everything in that work is +essential. In any case, it propounds the absurd problem altogether. +If one wants to compare these conclusions with our initial remarks, +the content with the form, the secret meaning of The Castle with +the natural art in which it is molded, K.’s passionate, proud quest +with the everyday setting against which it takes place, then one +will realize what may be its greatness. For if nostalgia is the mark +of the human, perhaps no one has given such flesh and volume to +these phantoms of regret. But at the same time will be sensed what +exceptional nobility the absurd work calls for, which is perhaps not +found here. If the nature of art is to bind the general to the +particular, ephemeral eternity of a drop of water to the play of its +lights, it is even truer to judge the greatness of the absurd writer by +the distance he is able to introduce between these two worlds. His +secret consists in being able to find the exact point where they +meet in their greatest disproportion. +And, to tell the truth, this geometrical locus of man and the +inhuman is seen everywhere by the pure in heart. If Faust and Don +Quixote are eminent creations of art, this is because of the +immeasurable nobilities they point out to us with their earthly +hands. Yet a moment always comes when the mind negates the +truths that those hands can touch. A moment comes when the +creation ceases to be taken tragically; it is merely taken seriously. +Then man is concerned with hope. But that is not his business. His +business is to turn away from subterfuge. Yet this is just what I +find at the conclusion of the vehement proceedings Kafka institutes +against the whole universe. His unbelievable verdict is this hideous +and upsetting world in which the very moles dare to hope.[32] +Summer In Algiers +for +JACQUES HEURGON +The loves we share with a city are often secret loves. Old +walled towns like Paris, Prague, and even Florence are closed in on +themselves and hence limit the world that belongs to them. But +Algiers (together with certain other privileged places such as cities +on the sea) opens to the sky like a mouth or a wound. In Algiers +one loves the commonplaces: the sea at the end of every street, a +certain volume of sunlight, the beauty of the race. And, as always, +in that unashamed offering there is a secret fragrance. In Paris it is +possible to be homesick for space and a beating of wings. Here at +least man is gratified in every wish and, sure of his desires, can at +last measure his possessions. +Probably one has to live in Algiers for some time in order to +realize how paralyzing an excess of nature’s bounty can be. There +is nothing here for whoever would learn, educate himself, or better +himself. This country has no lessons to teach. It neither promises +nor affords glimpses. It is satisfied to give, but in abundance. It is +completely accessible to the eyes, and you know it the moment you +enjoy it. Its pleasures are without remedy and its joys without +hope. Above all, it requires clairvoyant souls—that is, without +solace. It insists upon one’s performing an act of lucidity as one +performs an act of faith. Strange country that gives the man it +nourishes both his splendor and his misery! It is not surprising that +the sensual riches granted to a sensitive man of these regions +should coincide with the most extreme destitution. No truth fails to +carry with it its bitterness. How can one be surprised, then, if I +never feel more affection for the face of this country than amid its +poorest men? +During their entire youth men find here a life in proportion to +their beauty. Then, later on, the downhill slope and obscurity. They +wagered on the flesh, but knowing they were to lose. In Algiers +whoever is young and alive finds sanctuary and occasion for +triumphs everywhere: in the bay, the sun, the red and white games +on the seaward terraces, the flowers and sports stadiums, the cool- +legged girls. But for whoever has lost his youth there is nothing to +cling to and nowhere where melancholy can escape itself. +Elsewhere, Italian terraces, European cloisters, or the profile of the +Provencal hills—all places where man can flee his humanity and +gently liberate himself from himself. But everything here calls for +solitude and the blood of young men. Goethe on his deathbed calls +for light and this is a historic remark. At Belcourt and Bab-el-Oued +old men seated in the depths of cafes listen to the bragging of +young men with plastered hair. +Summer betrays these beginnings and ends to us in Algiers. +During those months the city is deserted. But the poor remain, and +the sky. We join the former as they go down toward the harbor and +man’s treasures: warmth of the water and the brown bodies of +women. In the evening, sated with such wealth, they return to the +oilcloth and kerosene lamp that constitute the whole setting of their +life. +In Algiers no one says “go for a swim,” but rather “indulge in a +swim.” The implications are clear. People swim in the harbor and +go to rest on the buoys. Anyone who passes near a buoy where a +pretty girl already is sunning herself shouts to his friends: “I tell +you it’s a seagull.” These are healthy amusements. They must +obviously constitute the ideal of those youths, since most of them +continue the same life in the winter, undressing every day at noon +for a frugal lunch in the sun. Not that they have read the boring +sermons of the nudists, those Protestants of the flesh (there is a +theory of the body quite as tiresome as that of the mind). But they +are simply “comfortable in the sunlight.” The importance of this +custom for our epoch can never be overestimated. For the first time +in two thousand years the body has appeared naked on beaches. +For twenty centuries men have striven to give decency to Greek +insolence and naivete, to diminish the flesh and complicate dress. +Today, despite that history, young men running on Mediterranean +beaches repeat the gestures of the athletes of Delos. And living +thus among bodies and through one’s body, one becomes aware +that it has its connotations, its life, and, to risk nonsense, a +psychology of its own.[33] The body’s evolution, like that of the +mind, has its history, its vicissitudes, its progress, and its +deficiency. With this distinction, however: color. When you +frequent the beach in summer you become aware of a simultaneous +progression of all skins from white to golden to tanned, ending up +in a tobacco color which marks the extreme limit of the effort of +transformation of which the body is capable. Above the harbor +stands the set of white cubes of the Kasbah. When you are at water +level, against the sharp while background of the Arab town the +bodies describe a copper-colored frieze. And as the month of +August progresses and the sun grows, the white of the houses +becomes more blinding and skins take on a darker warmth. How +can one fail to participate, then, in that dialogue of stone and flesh +in tune with the sun and seasons? The whole morning has been +spent in diving, in bursts of laughter amid splashing water, in +vigorous paddles around the red and black freighters (those from +Norway with all the scents of wood, those that come from +Germany full of the smell of oil, those that go up and down the +coast and smell of wine and old casks). At the hour when the sun +overflows from every corner of the sky at once, the orange canoe +loaded with brown bodies brings us home in a mad race. And +when, having suddenly interrupted the cadenced beat of the double +paddle’s bright-colored wings, we glide slowly in the calm water +of the inner harbor, how can I fail to feel that I am piloting through +the smooth waters a savage cargo of gods in whom I recognize my +brothers? +But at the other end of the city summer is already offering us, +by way of contrast, its other riches: I mean its silence and its +boredom. That silence is not always of the same quality, depending +on whether it springs from the shade or the sunlight. There is the +silence of noon on the Place du Gouvernement. In the shade of the +trees surrounding it, Arabs sell for five sous glasses of iced +lemonade flavored with orange-flowers. Their cry “Cool, cool” can +be heard across the empty square. After their cry silence again falls +under the burning sun: in the vendor’s jug the ice moves and I can +hear its tinkle. There is the silence of the siesta. In the streets of the +Marine, in front of the dirty barbershops it can be measured in the +melodious buzzing of flies behind the hollow reed curtains. +Elsewhere, in the Moorish cafes of the Kasbah the body is silent, +unable to tear itself away, to leave the glass of tea and rediscover +time with the pulsing of its own blood. But, above all, there is the +silence of summer evenings. +Those brief moments when day topples into night must be +peopled with secret signs and summons for my Algiers to be so +closely linked to them. When I spend some time far from that +town, I imagine its twilights as promises of happiness. On the hills +above the city there are paths among the mastics and olive trees. +And toward them my heart turns at such moments. I see flights of +black birds rise against the green horizon. In the sky suddenly +divested of its sun something relaxes. A whole little nation of red +clouds stretches out until it is absorbed in the air. Almost +immediately afterward appears the first star that had been seen +taking shape and consistency in the depth of the sky. And then +suddenly, all consuming, night. What exceptional quality do the +fugitive Algerian evenings possess to be able to release so many +things in me? I haven’t time to tire of that sweetness they leave on +my lips before it has disappeared into night. Is this the secret of its +persistence? This country’s affection is overwhelming and furtive. +But during the moment it is present, one’s heart at least surrenders +completely to it. At Padovani Beach the dance hall is open every +day. And in that huge rectangular box with its entire side open to +the sea, the poor young people of the neighborhood dance until +evening. Often I used to await there a moment of exceptional +beauty. During the day the hall is protected by sloping wooden +awnings. When the sun goes down they are raised. Then the hall is +filled with an odd green light born of the double shell of the sky +and the sea. When one is seated far from the windows, one sees +only the sky and, silhouetted against it, the faces of the dancers +passing in succession. Sometimes a waltz is being played, and +against the green background the black profiles whirl obstinately +like those cut-out silhouettes that are attached to a phonograph’s +turntable. Night comes rapidly after this, and with it the lights. But +I am unable to relate the thrill and secrecy that subtle instant holds +for me. I recall at least a magnificent tall girl who had danced all +afternoon. She was wearing a jasmine garland on her tight blue +dress, wet with perspiration from the small of her back to her legs. +She was laughing as she danced and throwing back her head. As +she passed the tables, she left behind her a mingled scent of +flowers and flesh. When evening came, I could no longer see her +body pressed tight to her partner, but against the sky whirled +alternating spots of white jasmine and black hair, and when she +would throw back her swelling breast I would hear her laugh and +see her partner’s profile suddenly plunge forward. I owe to such +evenings the idea I have of innocence. In any case, I learn not to +separate these creatures bursting with violent energy from the sky +where their desires whirl. +* * * +In the neighborhood movies in Algiers peppermint lozenges are +sometimes sold with, stamped in red, all that is necessary to the +awakening of love: (1) questions: “When will you marry me?” “Do +you love me?” and (2) replies: “Madly,” “Next spring.” After +having prepared the way, you pass them to your neighbor, who +answers likewise or else turns a deaf ear. At Belcourt marriages +have been arranged this way and whole lives been pledged by the +mere exchange of peppermint lozenges. And this really depicts the +childlike people of this region. +The distinguishing mark of youth is perhaps a magnificent +vocation for facile joys. But, above all, it is a haste to live that +borders on waste. At Belcourt, as at Bab-el-Oued, people get +married young. They go to work early and in ten years exhaust the +experience of a lifetime. A thirty-year-old workman has already +played all the cards in his hand. He awaits the end between his +wife and his children. His joys have been sudden and merciless, as +has been his life. One realizes that he is born of this country where +everything is given to be taken away. In that plenty and profusion +life follows the sweep of great passions, sudden, exacting, and +generous. It is not to be built up, but to be burned up. Stopping to +think and becoming better are out of the question. The notion of +hell, for instance, is merely a funny joke here. Such imaginings are +allowed only to the very virtuous. And I really think that virtue is a +meaningless word in all Algeria. Not that these men lack +principles. They have their code, and a very special one. You are +not disrespectful to your mother. You see that your wife is +respected in the street. You show consideration for a pregnant +woman. You don’t double up on an adversary, because “that looks +bad.” Whoever does not observe these elementary commandments +“is not a man,” and the question is decided. This strikes me as fair +and strong. There are still many of us who automatically observe +this code of the street, the only disinterested one I know. But at the +same time the shopkeeper’s ethics are unknown. I have always +seen faces around me filled with pity at the sight of a man between +two policemen. And before knowing whether the man had stolen, +killed his father, or was merely a nonconformist, they would say: +“The poor fellow,” or else, with a hint of admiration: “He’s a +pirate, all right.” +There are races born for pride and life. They are the ones that +nourish the strangest vocation for boredom. It is also among them +that the attitude toward death is the most repulsive. Aside from +sensual pleasure, the amusements of this race are among the +silliest. A society of bowlers and association banquets, the three- +franc movies and parish feasts have for years provided the +recreation of those over thirty. Algiers Sundays are among the +most sinister. How, then, could this race devoid of spirituality +clothe in myths the profound horror of its life? Everything related +to death is either ridiculous or hateful here. This populace without +religion and without idols dies alone after having lived in a crowd. +I know no more hideous spot than the cemetery on Boulevard Bru, +opposite one of the most beautiful landscapes in the world. An +accumulation of bad taste among the black fencings allows a +dreadful melancholy to rise from this spot where death shows her +true likeness. “Everything fades,” say the heart-shaped ex-votos, +“except memory.” And all insist on that paltry eternity provided us +cheaply by the hearts of those who loved us. The same words fit all +despairs. Addressed to the dead man, they speak to him in the +second person (our memory will never forsake you); lugubrious +pretense which attributes a body and desires to what is at best a +black liquid. Elsewhere, amid a deadly profusion of marble flowers +and birds, this bold assertion: “Never will your grave be without +flowers.” But never fear: the inscription surrounds a gilded stucco +bouquet, very time-saving for the living (like those immortelles +which owe their pompous name to the gratitude of those who still +jump onto moving buses). Inasmuch as it is essential to keep up +with the times, the classic warbler is sometimes replaced by an +astounding pearl airplane piloted by a silly angel who, without +regard for logic, is provided with an impressive pair of wings. +Yet how to bring out that these images of death are never +separated from life? Here the values are closely linked. The +favorite joke of Algerian undertakers, when driving an empty +hearse, is to shout: “Want a ride, sister?” to any pretty girls they +meet on the way. There is no objection to seeing a symbol in this, +even if somewhat untoward. It may seem blasphemous, likewise, +to reply to the announcement of a death while winking one’s left +eye: “Poor fellow, he’ll never sing again,” or, like that woman of +Oran who bad never loved her husband: “God gave him to me and +God has taken him from me.” But, all in all, I see nothing sacred in +death and am well aware, on the other hand, of the distance there is +between fear and respect. Everything here suggests the horror of +dying in a country that invites one to live. And yet it is under the +very walls of this cemetery that the young of Belcourt have their +assignations and that the girls offer themselves to kisses and +caresses. +I am well aware that such a race cannot be accepted by all. +Here intelligence has no place as in Italy. This race is indifferent to +the mind. It has a cult for and admiration of the body. Whence its +strength, its innocent cynicism, and a puerile vanity which explains +why it is so severely judged. It is commonly blamed for its +“mentality”—that is, a way of seeing and of living. And it is true +that a certain intensity of life is inseparable from injustice. Yet here +is a rate without past, without tradition, and yet not without +poetry—but a poetry whose quality I know well, harsh, carnal, far +from tenderness, that of their very sky, the only one in truth to +move me and bring me inner peace. The contrary of a civilized +nation is a creative nation. I have the mad hope that, without +knowing it perhaps, these barbarians lounging on beaches are +actually modeling the image of a culture in which the greatness of +man will at last find its true likeness. This race, wholly cast into its +present, lives without myths, without solace. It has put all its +possessions on this earth and therefore remains without defense +against death. All the gifts of physical beauty have been lavished +on it. And with them, the strange avidity that always accompanies +that wealth without future. Everything that is done here shows a +horror of stability and a disregard for the future. People are in haste +to live, and if an art were to be born here it would obey that hatred +of permanence that made the Dorians fashion their first column in +wood. And yet, yes, one can find measure as well as excess in the +violent and keen face of this race, in this summer sky with nothing +tender in it, before which all truths can be uttered and on which no +deceptive divinity has traced the signs of hope or of redemption. +Between this sky and these faces turned toward it, nothing on +which to hang a mythology, a literature, an ethic, or a religion, but +stones, flesh, stars, and those truths the hand can touch. +* * * +To feel one’s attachment to a certain region, one’s love for a +certain group of men, to know that there is always a spot where +one’s heart will feel at peace these are many certainties for a single +human life. And yet this is not enough. But at certain moments +everything yearns for that spiritual home. “Yes, we must go back +there—there, indeed.” Is there anything odd in finding on earth that +union that Plotinus longed for? Unity is expressed here in terms of +sun and sea. The heart is sensitive to it through a certain savor of +flesh which constitutes its bitterness and its grandeur. I learn that +there is no superhuman happiness, no eternity outside the sweep of +days. These paltry and essential belongings, these relative truths +are the only ones to stir me. As for the others, the “ideal” truths, I +have not enough soul to understand them. Not that one must be an +animal, but I find no meaning in the happiness of angels. I know +simply that this sky will last longer than I. And what shall I call +eternity except what will continue after my death? I am not +expressing here the creature’s satisfaction with his condition. It is +quite a different matter. It is not always easy to be a man, still less +to be a pure man. But being pure is recovering that spiritual home +where one can feel the world’s relationship, where one’s pulse- +beats coincide with the violent throbbing of the two-o’clock sun. It +is well known that one’s native land is always recognized at the +moment of losing it. For those who are too uneasy about +themselves, their native land is the one that negates them. I should +not like to be brutal or seem extravagant. But, after all, what +negates me in this life is first of all what kills me. Everything that +exalts life at the same time increases its absurdity. In the Algerian +summer I learn that one thing only is more tragic than suffering, +and that is the life of a happy man. But it may be also the way to a +greater life because it leads to not cheating. +Many, in fact, feign love of life to evade love itself. They try +their skill at enjoyment and at “indulging in experiences.” But this +is illusory. It requires a rare vocation to be a sensualist. The life of +a man is fulfilled without the aid of his mind, with its backward +and forward movements, at one and the same time its solitude and +its presences. To see these men of Belcourt working, protecting +their wives and children, and often without a reproach, I think one +can feel a secret shame. To be sure, I have no illusions about it. +There is not much love in the lives I am speaking of. I ought to say +that not much remains. But at least they have evaded nothing. +There are words I have never really understood, such as “sin.” Yet +I believe these men have never sinned against life. For if there is a +sin against life, it consists perhaps not so much in despairing of life +as in hoping for another life and in eluding the implacable +grandeur of this life. These men have not cheated. Gods of summer +they were at twenty by their enthusiasm for life, and they still are, +deprived of all hope. I have seen two of them die. They were full +of horror, but silent. It is better thus. From Pandora’s box, where +all the ills of humanity swarmed, the Greeks drew out hope after +all the others, as the most dreadful of all. I know no more stirring +symbol; for, contrary to the general belief, hope equals resignation. +And to live is not to resign oneself. This, at least, is the bitter +lesson of Algerian summers. But already the season is wavering +and summer totters. The first September rains, after such violence +and hardening, are like the liberated earth’s first tears, as if for a +few days this country tried its hand at tenderness. Yet at the same +period the carob trees cover all of Algeria with a scent of love. In +the evening or after the rain, the whole earth, its womb moist with +a seed redolent of bitter almond, rests after having given herself to +the sun all summer long. And again that scent hallows the union of +man and earth and awakens in us the only really virile love in this +world: ephemeral and noble. +(1936) +The Minotaur or The Stop In Oran +for +PIERRE GALINDO +This essay dates from 1939. The reader will have to bear this in +mind to judge of the present-day Oran. Impassioned protests from +that beautiful city assure me, as a matter of fact, that all the +imperfections have been (or will be) remedied. On the other hand, +the beauties extolled in this essay have been jealously respected. +Happy and realistic city, Oran has no further need of writers: she is +awaiting tourists. +(1953) +There are no more deserts. There are no more islands. Yet there +is a need for them. In order to understand the world, one has to turn +away from it on occasion; in order to serve men better, one has to +hold them at a distance for a time. But where can one find the +solitude necessary to vigor, the deep breath in which the mind +collects itself and courage gauges its strength? There remain big +cities. Simply, certain conditions are required. +The cities Europe offers us are too full of the din of the past. A +practiced ear can make out the flapping of wings, a fluttering of +souls. The giddy whirl of centuries, of revolutions, of fame can be +felt there. There one cannot forget that the Occident was forged in +a series of uproars. All that does not make for enough silence. +Paris is often a desert for the heart, but at certain moments +from the heights of Pere-Lachaise there blows a revolutionary +wind that suddenly fills that desert with flags and fallen glories. So +it is with certain Spanish towns, with Florence or with Prague. +Salzburg would be peaceful without Mozart. But from time to time +there rings out over the Salzach the great proud cry of Don Juan as +he plunges toward hell. Vienna seems more silent; she is a +youngster among cities. Her stones are no older than three +centuries and their youth is ignorant of melancholy. But Vienna +stands at a crossroads of history. Around her echoes the clash of +empires. Certain evenings when the sky is suffused with blood, the +stone horses on the Ring monuments seem to take wing. In that +fleeting moment when everything is reminiscent of power and +history, can he distinctly heard, under the charge of the Polish +squadrons, the crashing fall of the Ottoman Empire. That does not +make for enough silence either. +To be sure, it is just that solitude amid others that men come +looking for in European cities. At least, men with a purpose in life. +There they can choose their company, take it or leave it. How +many minds have been tempered in the trip between their hotel +room and the old stones of the Ile Saint Louis! It is true that others +have died there of isolation. As for the first, at any rate, there they +found their reasons for growing and asserting themselves. They +were alone and they weren’t alone. Centuries of history and +beauty, the ardent testimony of a thousand lives of the past +accompanied them along the Seine and spoke to them both of +traditions and of conquests. But their youth urged them to invite +such company. There comes a time, there come periods, when it is +unwelcome. “It’s between us two!” exclaims Rasti-gnac, facing the +vast mustiness of Paris. Two, yes, but that is still too many! +The desert itself has assumed significance; it has been glutted +with poetry. For all the world’s sorrows it is a hallowed spot. But +at certain moments the heart wants nothing so much as spots +devoid of poetry. Descartes, planning to meditate, chose his desert: +the most mercantile city of his era. There he found his solitude and +the occasion for perhaps the greatest of our virile poems: “The first +[precept] was never to accept anything as true unless I knew it to +be obviously so.” It is possible to have less ambition and the same +nostalgia. But during the last three centuries Amsterdam has +spawned museums. In order to flee poetry and yet recapture the +peace of stones, other deserts are needed, other spots without soul +and without reprieve. Oran is one of these. +The Street +I have often heard the people of Oran complain: “There is no +interesting circle.” No, indeed! You wouldn’t want one! A few +right-thinking people tried to introduce the customs of another +world into this desert, faithful to the principle that it is impossible +to advance art or ideas without grouping together.[34] The result is +such that the only instructive circles remain those of poker-players, +boxing enthusiasts, bowlers, and the local associations. There at +least the unsophisticated prevails. After all, there exists a certain +nobility that does not lend itself to the lofty. It is sterile by nature. +And those who want to find it leave the “circles” and go out into +the street. +The streets of Oran are doomed to dust, pebbles, and heat. If it +rains, there is a deluge and a sea of mud. But rain or shine, the +shops have the same extravagant and absurd look. All the bad taste +of Europe and the Orient has managed to converge in them. One +finds, helter-skelter, marble greyhounds, ballerinas with swans, +versions of Diana the huntress in green galalith, discus-throwers +and reapers, everything that is used for birthday and wedding gifts, +the whole race of painful figurines constantly called forth by a +commercial and playful genie on our mantelpieces. But such +perseverance in bad taste takes on a baroque aspect that makes one +forgive all. Here, presented in a casket of dust, are the contents of a +show window: frightful plaster models of deformed feet, a group +of Rembrandt drawings “sacrificed at 150 francs each,” practical +jokes, tricolored wallets, an eighteenth-century pastel, a +mechanical donkey made of plush, bottles of Provence water for +preserving green olives, and a wretched wooden virgin with an +indecent smile. (So that no one can go away ignorant, the +“management” has propped at its base a card saying: “Wooden +Virgin.”) There can be found in Oran: +1) Cafes with filter-glazed counters sprinkled with the legs and +wings of flies, the proprietor always smiling despite his always +empty cafe. A small black coffee used to cost twelve sous and a +large one eighteen. +2) Photographers’ studios where there has been no progress in +technique since the invention of sensitized paper. They exhibit a +strange fauna impossible to encounter in the streets, from the +pseudo-sailor leaning on a console table to the marriageable girl, +badly dressed and arms dangling, standing in front of a sylvan +background. It is possible to assume that these are not portraits +from life: they are creations. +3) An edifying abundance of funeral establishments. It is not +that people die more in Oran than elsewhere, but I fancy merely +that more is made of it. +The attractive naivete of this nation of merchants is displayed +even in their advertising. I read, in the handbill of an Oran movie +theater, the advertisement for a third-rate film. I note the adjectives +“sumptuous,” splendid, extraordinary, amazing, staggering, and +“tremendous.” At the end the management informs the public of +the considerable sacrifices it has undertaken to be able to present +this startling “realization.” Nevertheless, the price of tickets will +not be increased. +It would be wrong to assume that this is merely a manifestation +of that love of exaggeration characteristic of the south. Rather, the +authors of this marvelous handbill are revealing their sense of +psychology. It is essential to overcome the indifference and +profound apathy felt in this country the moment there is any +question of choosing between two shows, two careers, and, often, +even two women. People make up their minds only when forced to +do so. And advertising is well aware of this. It will assume +American proportions, having the same reasons, both here and +there, for getting desperate. +The streets of Oran inform us as to the two essential pleasures +of the local youth: getting one’s shoes shined and displaying those +same shoes on the boulevard. In order to have a clear idea of the +first of these delights, one has to entrust one’s shoes, at ten o’clock +on a Sunday morning, to the shoe-shiners in Boulevard Gal-lieni. +Perched on high armchairs, one can enjoy that peculiar satisfaction +produced, even upon a rank outsider, by the sight of men in love +with their job, as the shoe-shiners of Oran obviously are. +Everything is worked over in detail. Several brushes, three kinds of +cloths, the polish mixed with gasoline. One might think the +operation is finished when a perfect shine comes to life under the +soft brush. But the same insistent hand covers the glossy surface +again with polish, rubs it, dulls it, makes the cream penetrate the +heart of the leather, and then brings forth, under the same brush, a +double and really definitive gloss sprung from the depths of the +leather. The wonders achieved in this way are then exhibited to the +connoisseurs. In order to appreciate such pleasures of the +boulevard, you ought to see the masquerade of youth taking place +every evening on the main arteries of the city. Between the ages of +sixteen and twenty the young people of Oran “Society” borrow +their models of elegance from American films and put on their +fancy dress before going out to dinner. With wavy, oiled hair +protruding from under a felt hat slanted over the left ear and +peaked over the right eye, the neck encircled by a collar big +enough to accommodate the straggling hair, the microscopic knot +of the necktie kept in place by a regulation pin, with thigh-length +coat and waist close to the hips, with light-colored and noticeably +short trousers, with dazzlingly shiny triple-soled shoes, every +evening those youths make the sidewalks ring with their metal- +tipped soles. In all things they are bent on imitating the bearing, +forthrightness, and superiority of Mr. Clark Gable. For this reason +the local carpers commonly nickname those youths, by favor of a +casual pronunciation, “Clarques.” +At any rate, the main boulevards of Oran are invaded late in the +afternoon by an army of attractive adolescents who go to the +greatest trouble to look like a bad lot. Inasmuch as the girls of Oran +feel traditionally engaged to these softhearted gangsters, they +likewise flaunt the make-up and elegance of popular American +actresses. Consequently, the same wits call them “Marlenes.” Thus +on the evening boulevards when the sound of birds rises skyward +from the palm trees, dozens of Clarques and Marlenes meet, eye +and size up one another, happy to be alive and to cut a figure, +indulging for an hour in the intoxication of perfect existences. +There can then be witnessed, the jealous say, the meetings of the +American Commission. But in these words lies the bitterness of +those over thirty who have no connection with such diversions. +They fail to appreciate those daily congresses of youth and +romance. These are, in truth, the parliaments of birds that are met +in Hindu literature. But no one on the boulevards of Oran debates +the problem of being or worries about the way to perfection. There +remains nothing but flappings of wings, plumed struttings, +coquettish and victorious graces, a great burst of carefree song that +disappears with the night. +From here I can hear Klestakov: “I shall soon have to be +concerned with something lofty.” Alas, he is quite capable of it! If +he were urged, he would people this desert within a few years. But +for the moment a somewhat secret soul must liberate itself in this +facile city with its parade of painted girls unable, nevertheless, to +simulate emotion, feigning coyness so badly that the pretense is +immediately obvious. Be concerned with something lofty! Just see: +Santa-Cruz cut out of the rock, the mountains, the flat sea, the +violent wind and the sun, the great cranes of the harbor, the trains, +the hangars, the quays, and the huge ramps climbing up the city’s +rock, and in the city itself these diversions and this boredom, this +hubbub and this solitude. Perhaps, indeed, all this is not +sufficiently lofty. But the great value of such overpopulated islands +is that in them the heart strips bare. Silence is no longer possible +except in noisy cities. From Amsterdam Descartes writes to the +aged Guez de Balzac: “I go out walking every day amid the +confusion of a great crowd, with as much freedom and tranquillity +as you could do on your garden paths.” [35] +The Desert in Oran +Obliged to live facing a wonderful landscape, the people of +Oran have overcome this fearful ordeal by covering their city with +very ugly constructions. One expects to find a city open to the sea, +washed and refreshed by the evening breeze. And aside from the +Spanish quarter,[36] one finds a walled town that turns its back to +the sea, that has been built up by turning back on itself like a snail. +Oran is a great circular yellow wall covered over with a leaden +sky. In the beginning you wander in the labyrinth, seeking the sea +like the sign of Ariadne. But you turn round and round in pale and +oppressive streets, and eventually the Minotaur devours the people +of Oran: the Minotaur is boredom. For some time the citizens of +Oran have given up wandering. They have accepted being eaten. +It is impossible to know what stone is without coming to Oran. +In that dustiest of cities, the pebble is king. It is so much +appreciated that shopkeepers exhibit it in their show windows to +hold papers in place or even for mere display. Piles of them are set +up along the streets, doubtless for the eyes’ delight, since a year +later the pile is still there. Whatever elsewhere derives its poetry +from the vegetable kingdom here takes on a stone face. The +hundred or so trees that can be found in the business section have +been carefully covered with dust. They are petrified plants whose +branches give off an acrid, dusty smell. In Algiers the Arab +cemeteries have a well-known mellowness. In Oran, above the +Ras-el-Ain ravine, facing the sea this time, flat against the blue +sky, are fields of chalky, friable pebbles in which the sun blinds +with its fires. Amid these bare bones of the earth a purple +geranium, from time to time, contributes its life and fresh blood to +the landscape. The whole city has solidified in a stony matrix. Seen +from Les Planteurs, the depth of the cliffs surrounding it is so great +that the landscape becomes unreal, so mineral it is. Man is +outlawed from it. So much heavy beauty seems to come from +another world. +If the desert can be defined as a soulless place where the sky +alone is king, then Oran is awaiting her prophets. All around and +above the city the brutal nature of Africa is indeed clad in her +burning charms. She bursts the unfortunate stage setting with +which she is covered; she shrieks forth between all the houses and +over all the roofs. If one climbs one of the roads up the mountain +of Santa-Cruz, the first thing to be visible is the scattered colored +cubes of Oran. But a little higher and already the jagged cliffs that +surround the plateau crouch in the sea like red beasts. Still a little +higher and a great vortex of sun and wind sweeps over, airs out, +and obscures the untidy city scattered in disorder all over a rocky +landscape. The opposition here is between magnificent human +anarchy and the permanence of an unchanging sea. This is enough +to make a staggering scent of life rise toward the mountainside +road. +There is something implacable about the desert. The mineral +sky of Oran, her streets and trees in their coating of dust— +everything contributes to creating this dense and impassible +universe in which the heart and mind are never distracted from +themselves, nor from their sole object, which is man. I am +speaking here of difficult places of retreat. Books are written on +Florence or Athens. Those cities have formed so many European +minds that they must have a meaning. They have the means of +moving to tears or of uplifting. They quiet a certain spiritual +hunger whose bread is memory. But can one be moved by a city +where nothing attracts the mind, where the very ugliness is +anonymous, where the past is reduced to nothing? Emptiness, +boredom, an indifferent sky, what are the charms of such places? +Doubtless solitude and, perhaps, the human creature. +For a certain race of men, wherever the human creature is +beautiful is a bitter native land. Oran is one of its thousand capitals. +Sports +The Central Sporting Club, on rue du Fondouk in Oran, is +giving an evening of boxing which it insists will be appreciated by +real enthusiasts. Interpreted, this means that the boxers on the bill +are far from being stars, that some of them are entering the ring for +the first time, and that consequently you can count, if not on the +skill, at least on the courage of the opponents. A native having +thrilled me with the firm promise that “blood would flow,” I find +myself that evening among the real enthusiasts. +Apparently the latter never insist on comfort. To be sure, a ring +has been set up at the back of a sort of whitewashed garage, +covered with corrugated iron and violently lighted. Folding chairs +have been lined up in a square around the ropes. These are the +“honor rings.” Most of the length of the hall has been filled with +seats, and behind them opens a large free space called “lounge” by +reason of the fact that not one of the five hundred persons in it +could take out a handkerchief without causing serious accidents. In +this rectangular box live and breathe some thousand men and two +or three women—the kind who, according to my neighbor, always +insist on “attracting attention.” Everybody is sweating fiercely. +While waiting for the fights of the “young hopefuls” a gigantic +phonograph grinds out a Tino Rossi record. This is the sentimental +song before the murder. +The patience of a true enthusiast is unlimited. The fight +announced for nine o’clock has not even begun at nine thirty and +no one has protested. The spring weather is warm and the smell of +a humanity in shirt sleeves is exciting. Lively discussion goes on +among the periodic explosions of lemon-soda corks and the tireless +lament of the Corsican singer. A few late arrivals are wedged into +the audience when a spotlight throws a blinding light onto the ring. +The fights of the young hopefuls begin. +The young hopefuls, or beginners, who are fighting for the fun +of it, are always eager to prove this by massacring each other at the +earliest opportunity, in defiance of technique. They were never +able to last more than three rounds. The hero of the evening in this +regard is young “Kid Airplane,” who in regular life sells lottery +tickets on cafe terraces. His opponent, indeed, hurtled awkwardly +out of the ring at the beginning of the second round after contact +with a fist wielded like a propeller. +The crowd got somewhat excited, but this is still an act of +courtesy. Gravely it breathes in the hallowed air of the +embrocation. It watches these series of slow rites and unregulated +sacrifices, made even more authentic by the propitiatory designs, +on the white wall, of the fighters’ shadows. These are the +deliberate ceremonial prologues of a savage religion. The trance +will not come until later. +And it so happens that the loudspeaker announces Amar, “the +tough Oranese who has never disarmed,” against Perez, “the +slugger from Algiers.” An uninitiate would misinterpret the yelling +that greets the introduction of the boxers in the ring. He would +imagine some sensational combat in which the boxers were to +settle a personal quarrel known to the public. To tell the truth, it is +a quarrel they are going to settle. But it is the one that for the past +hundred years has mortally separated Algiers and Oran. Back in +history, these two North African cities would have already bled +each other white as Pisa and Florence did in happier times. Their +rivalry is all the stronger just because it probably has no basis. +Having every reason to like each other, they loathe each other +proportionately. The Oranese accuse the citizens of Algiers of +“sham.” The people of Algiers imply that the Oranese are rustic. +These are bloodier insults than they might seem because they are +metaphysical. And unable to lay siege to each other, Oran and +Algiers meet, compete, and insult each other on the field of sports, +statistics, and public works. +Thus a page of history is unfolding in the ring. And the tough +Oranese, backed by a thousand yelling voices, is defending against +Perez a way of life and the pride of a province. Truth forces me to +admit that Amar is not conducting his discussion well. His +argument has a flaw: he lacks reach. The slugger from Algiers, on +the contrary, has the required reach in his argument. It lands +persuasively between his contradictor’s eyes. The Oranese bleeds +magnificently amid the vociferations of a wild audience. Despite +the repeated encouragements of the gallery and of my neighbor, +despite the dauntless shouts of “Kill him!”, “Floor him!”, the +insidious “Below the belt,” +“Oh, the referee missed that one!”, the optimistic “He’s +pooped,” “He can’t take any more,” nevertheless the man from +Algiers is proclaimed the winner on points amid interminable +catcalls. My neighbor, who is inclined to talk of sportsmanship, +applauds ostensibly, while slipping to me in a voice made faint by +so many shouts: “So that he won’t be able to say back there that +we of Oran are savages.” +But throughout the audience, fights not included on the +program have already broken out. Chairs are brandished, the police +clear a path, excitement is at its height. In order to calm these good +people and contribute to the return of silence, the “management,” +without losing a moment, commissions the loudspeaker to boom +out “Sambre-et-Meuse.” For a few minutes the audience has a +really warlike look. Confused clusters of com-batants and +voluntary referees sway in the grip of policemen; the gallery exults +and calls for the rest of the program with wild cries, cock-a- +doodle-doo’s, and mocking catcalls drowned in the irresistible +flood from the military band. +But the announcement or the big fight is enough to restore +calm. This takes place suddenly, without flourishes, just as actors +leave the stage once the play is finished. With the greatest +unconcern, hats are dusted off, chairs are put back in place, and +without transition all faces assume the kindly expression of the +respectable member of the audience who has paid for his ticket to a +family concert. +The last fight pits a French champion of the Navy against an +Oran boxer. This time the difference in reach is to the advantage of +the latter. But his superiorities, during the first rounds, do not stir +the crowd. They are sleeping off the effects of their first +excitement; they are sobering up. They are still short of breath. If +they applaud, there is no passion in it. They hiss without animosity. +The audience is divided into two camps, as is appropriate in the +interest of fairness. But each individual’s choice obeys that +indifference that follows on great expenditures of energy. If the +Frenchman holds his own, if the Oranese forgets that one doesn’t +lead with the head, the boxer is bent under a volley of hisses, but +immediately pulled upright again by a burst of applause. Not until +the seventh round does sport rise to the surface again, at the same +time that the real enthusiasts begin to emerge from their fatigue. +The Frenchman, to tell the truth, has touched the mat and, eager to +win back points, has hurled himself on his opponent. “What did I +tell you?” said my neighbor; “it’s going to be a fight to the finish.” +Indeed, it is a fight to the finish. Covered with sweat under the +pitiless light, both boxers open their guard, close their eyes as they +hit, shove with shoulders and knees, swap their blood, and snort +with rage. As one man, the audience has stood up and punctuates +the efforts of its two heroes. It receives the blows, returns them, +echoes them in a thousand hollow, panting voices. The same ones +who had chosen their favorite in indifference cling to their choice +through obstinacy and defend it passionately. Every ten seconds a +shout from my neighbor pierces my right ear: “Go to it, gob; come +on, Navy!” while another man in front of us shouts to the Oranese: +“Anda! hombre!” The man and the gob go to it, and together with +them, in this temple of whitewash, iron, and cement, an audience +completely given over to gods with cauliflower ears. Every blow +that gives a dull sound on the shining pectorals echoes in vast +vibrations in the very body of the crowd, which, with the boxers, is +making its last effort. +In such an atmosphere a draw is badly received. Indeed, it runs +counter to a quite Manichean tendency in the audience. There is +good and there is evil, the winner and the loser. One must be either +right or wrong. The conclusion of this impeccable logic is +immediately provided by two thousand energetic lungs accusing +the judges of being sold, or bought. But the gob has walked over +and embraced his rival in the ring, drinking in his fraternal sweat. +This is enough to make the audience, reversing its view, burst out +in sudden applause. My neighbor is right: they are not savages. +The crowd pouring out, under a sky full of silence and stars, +has just fought the most exhausting fight. It keeps quiet and +disappears furtively, without any energy left for post mortems. +There is good and there is evil; that religion is merciless. The band +of faithful is now no more than a group of black-and-white +shadows disappearing into the night. For force and violence are +solitary gods. They contribute nothing to memory. On the contrary, +they distribute their miracles by the handful in the present. They +are made for this race without past which celebrates its +communions around the prize ring. These are rather difficult rites +but ones that simplify everything. Good and evil, winner and loser. +At Corinth two temples stood side by side, the temple of Violence +and the temple of Necessity. +Monuments +For many reasons due as much to economics as to metaphysics, +it may be said that the Oranese style, if there is one, forcefully and +clearly appears in the extraordinary edifice called the Maison du +Colon. Oran hardly lacks monuments. The city has its quota of +imperial marshals, ministers, and local benefactors. They are found +on dusty little squares, resigned to rain and sun, they too converted +to stone and boredom. But, in any case, they represent +contributions from the outside. In that happy barbary they are the +regrettable marks of civilization. +Oran, on the other hand, has raised up her altars and rostra to +her own honor. In the very heart of the mercantile city, having to +construct a common home for the innumerable agricultural +organizations that keep this country alive, the people of Oran +conceived the idea of building solidly a convincing image of their +virtues: the Maison du Colon. To judge from the edifice, those +virtues are three in number: boldness in taste, love of violence, and +a feeling for historical syntheses. Egypt, Byzantium, and Munich +collaborated in the delicate construction of a piece of pastry in the +shape of a bowl upside down. Multicolored stones, most vigorous +in effect, have been brought in to outline the roof. These mosaics +are so exuberantly persuasive that at first you see nothing but an +amorphous effulgence. But with a closer view and your attention +called to it, you discover that they have a meaning: a graceful +colonist, wearing a bow tie and white pith helmet, is receiving the +homage of a procession of slaves dressed in classical style.[37] The +edifice and its colored illustrations have been set down in the +middle of a square in the to-and-fro of the little two-car trams +whose filth is one of the charms of the city. +Oran greatly cherishes also the two lions of its Place d’Armes, +or parade ground. Since 1888 they have been sitting in state on +opposite sides of the municipal stairs. Their author was named ( +ain. They have majesty and a stubby torso. It is said that at night +they get down from their pedestal one after the other, silently pace +around the dark square, and on occasion uninate at length under the +big, dusty ficus trees. These, of course, are rumors to which the +people of Oran lend an indulgent ear. But it is unlikely. +Despite a certain amount of research, I have not been able to +get interested in Cain. I merely learned that he had the reputation +of being a skillful animal-sculptor. Yet I often think of him. This is +an intellectual bent that comes naturally in Oran. Here is a +sonorously named artist who left an unimportant work here. +Several hundred thousand people are familiar with the easygoing +beasts he put in front of a pretentious town hall. This is one way of +succeeding in art. To be sure, these two lions, like thousands of +works of the same type, are proof of something else than talent. +Others have created “The Night Watch,” “Saint Francis Receiving +the Stigmata,” “David,” or the Pharsalian bas-relief called “The +Glorification of the Flower.” Cain, on the other hand, set up two +hilarious snouts on the square of a mercantile province overseas. +But the David will go down one day with Florence and the lions +will perhaps be saved from the catastrophe. Let me repeat, they are +proof of something else. +Can one state this idea clearly? In this work there are +insignificance and solidity. Spirit counts for nothing and matter for +a great deal. Mediocrity insists upon lasting by all means, +including bronze. It is refused a right to eternity, and every day it +takes that right. Is it not eternity itself? In any event, such +perseverance is capable of stirring, and it involves its lesson, that +of all the monuments of Oran, and of Oran herself. An hour a day, +every so often, it forces you to pay attention to something that has +no importance. The mind profits from such recurrences. In a sense +this is its hygiene, and since it absolutely needs its moments of +humility, it seems to me that this chance to indulge in stupidity is +better than others. Everything that is ephemeral wants to last. Let +us say that everything wants to last. Human productions mean +nothing else, and in this regard Cain’s lions have the same chances +as the ruins of Angkor. This disposes one toward modesty. +There are other Oranese monuments. Or at least they deserve +this name because they, too, stand for their city, and perhaps in a +more significant way. They are the public works at present +covering the coast for some ten kilometers. Apparently it is a +matter of transforming the most luminous of bays into a gigantic +harbor. In reality it is one more chance for man to come to grips +with stone. +In the paintings of certain Flemish masters a theme of +strikingly general application recurs insistently: the building of the +Tower of Babel. Vast landscapes, rocks climbing up to heaven, +steep slopes teeming with workmen, animals, ladders, strange +machines, cords, pulleys. Man, moreover, is there only to give +scale to the inhuman scope of the construction. This is what the +Oran coast makes one think of, west of the city. +Clinging to vast slopes, rails, dump-cars, cranes, tiny trains ... +Under a broiling sun, toy-like locomotives round huge blocks of +stone amid whistles, dust, and smoke. Day and night a nation of +ants bustles about on the smoking carcass of the mountain. +Clinging all up and down a single cord against the side of the cliff, +dozens of men, their bellies pushing against the handles of +automatic drills, vibrate in empty space all day long and break off +whole masses of rock that hurtle down in dust and rumbling. +Farther on, dump-carts tip their loads over the slopes; and the +rocks, suddenly poured seaward, bound and roll into the water, +each large lump followed by a scattering of lighter stones. At +regular intervals, at dead of night or in broad daylight, detonations +shake the whole mountain and stir up the sea itself. +Man, in this vast construction field, makes a frontal attack on +stone. And if one could forget, for a moment at least, the harsh +slavery that makes this work possible, one would have to admire. +These stones, torn from the mountain, serve man in his plans. They +pile up under the first waves, gradually emerge, and finally take +their place to form a jetty, soon covered with men and machines +which advance, day after day, toward the open sea. Without +stopping, huge steel jaws bite into the cliff’s belly, turn round, and +disgorge into the water their overflowing gravel. As the coastal +cliff is lowered, the whole coast encroaches irresistibly on the sea. +Of course, destroying stone is not possible. It is merely moved +from one place to another. In any case, it will last longer than the +men who use it. For the moment, it satisfies their will to action. +That in itself is probably useless. But moving things about is the +work of men; one must choose doing that or nothing.[38] Obviously +the people of Oran have chosen. In front of that indifferent bay, for +many years more they will pile up stones along the coast. In a +hundred years—tomorrow, in other words—they will have to +begin again. But today these heaps of rocks testify for the men in +masks of dust and sweat who move about among them. The true +monuments of Oran are still her stones. +Ariadne’s Stone +It seems that the people of Oran are like that friend of Flaubert +who, on the point of death, casting a last glance at this +irreplaceable earth, exclaimed: “Close the window; it’s too +beautiful.” They have closed the window, they have walled +themselves in, they have cast out the landscape. But Flaubert’s +friend, Le Poittevin, died, and after him days continued to be added +to days. Likewise, beyond the yellow walls of Oran, land and sea +continue their indifferent dialogue. That permanence in the world +has always had contrary charms for man. It drives him to despair +and excites him. The world never says but one thing; first it +interests, then it bores. But eventually it wins out by dint of +obstinacy. It is always right. +Already, at the very gates of Oran, nature raises its voice. In +the direction of Canastel there are vast wastelands covered with +fragrant brush. There sun and wind speak only of solitude. Above +Oran there is the mountain of Santa-Cruz, the plateau and the +myriad ravines leading to it. Roads, once carriageable, cling to the +slopes overhanging the sea. In the month of January some are +covered with flowers. Daisies and buttercups turn them into +sumptuous paths, embroidered in yellow and white. About Sant- +Cruzz everything has been said. But if I were to speak of it, I +should forget the sacred processions that climb the rugged hill on +feast days, in order to recall other pilgrimages. Solitary, they walk +in the red stone, rise above the motionless bay, and come to +dedicate to nakedness a luminous, perfect hour. +Oran has also its deserts of sand: its beaches. Those +encountered near the gates are deserted only in winter and spring. +Then they are plateaus covered with asphodels, peopled with bare +little cottages among the flowers. The sea rumbles a bit, down +below. Yet already the sun, the faint breeze, the whiteness of the +asphodels, the sharp blue of the sky, everything makes one fancy +summer—the golden youth then covering the beach, the long hours +on the sand and the sudden softness of evening. Each year on these +shores there is a new harvest of girls in flower. Apparently they +have but one season. The following year, other cordial blossoms +take their place, which, the summer before, were still little girls +with bodies as hard as buds. At eleven a.m., coming down from the +plateau, all that young flesh, lightly clothed in motley materials, +breaks on the sand like a multicolored wave. +One has to go farther (strangely close, however, to that spot +where two hundred thousand men are laboring) to discover a still +virgin landscape: long, deserted dunes where the passage of men +has left no other trace than a worm-eaten hut. From time to time an +Arab shepherd drives along the top of the dunes the black and +beige spots of his flock of goats. On the beaches of the Oran +country every summer morning seems to be the first in the world. +Each twilight seems to be the last, solemn agony, announced at +sunset by a final glow that darkens every hue. The sea is +ultramarine, the road the color of clotted blood, the beach yellow. +Everything disappears with the green sun; an hour later the dunes +are bathed in moonlight. Then there are incomparable nights under +a rain of stars. Occasionally storms sweep over them, and the +lightning flashes flow along the dunes, whiten the sky, and give the +sand and one’s eyes orange-colored glints. +But this cannot be shared. One has to have lived it. So much +solitude and nobility give these places an unforgettable aspect. In +the warm moment before daybreak, after confronting the first +bitter, black waves, a new creature breasts night’s heavy, +enveloping water. The memory of those joys does not make me +regret them, and thus I recognize that they were good. After so +many years they still last, somewhere in this heart which finds +unswerving loyalty so difficult. And I know that today, if I were to +go to the deserted dune, the same sky would pour down on me its +cargo of breezes and stars. These are lands of innocence. +But innocence needs sand and stones. And man has forgotten +how to live among them. At least it seems so, for he has taken +refuge in this extraordinary city where boredom sleeps. +Nevertheless, that very confrontation constitutes the value of Oran. +The capital of boredom, besieged by innocence and beauty, it is +surrounded by an army in which every stone is a soldier. In the +city, and at certain hours, however, what a temptation to go over to +the enemy! What a temptation to identify oneself with those +stones, to melt into that burning and impassive universe that defies +history and its ferments! That is doubtless futile. But there is in +every man a profound instinct which is neither that of destruction +nor that of creation. It is merely a matter of resembling nothing. In +the shadow of the warm walls of Oran, on its dusty asphalt, that +invitation is sometimes heard. It seems that, for a time, the minds +that yield to it are never disappointed. This is the darkness of +Eurydice and the sleep of Isis. Here are the deserts where thought +will collect itself, the cool hand of evening on a troubled heart. On +this Mount of Olives, vigil is futile; the mind recalls and approves +the sleeping Apostles. Were they really wrong? They nonetheless +had their revelation. +Just think of Sakyamuni in the desert. He remained there for +years on end, squatting motionless with his eyes on heaven. The +very gods envied him that wisdom and that stone-like destiny. In +his outstretched hands the swallows had made their nest. But one +day they flew away, answering the call of distant lands. And he +who had stifled in himself desire and will, fame and suffering, +began to cry. It happens thus that flowers grow on rocks. Yes, let +us accept stone when it is necessary. That secret and that rapture +we ask of faces can also be given us by stone. To be sure, this +cannot last. But what can last, after all? The secret of faces fades +away, and there we are, cast back to the chain of desires. And if +stone can do no more for us than the human heart, at least it can do +just as much. +“Oh, to be nothing!” For thousands of years this great cry has +roused millions of men to revolt against desire and pain. Its dying +echoes have reached this far, across centuries and oceans, to the +oldest sea in the world. They still reverberate dully against the +compact cliffs of Oran. Everybody in this country follows this +advice without knowing it. Of course, it is almost futile. +Nothingness cannot be achieved any more than the absolute can. +But since we receive as favors the eternal signs brought us by roses +or by human suffering, let us not refuse either the rare invitations +to sleep that the earth addresses us. Each has as much truth as the +other. +This, perhaps, is the Ariadne’s thread of this somnambulist and +frantic city. Here one learns the virtues, provisional to be sure, of a +certain kind of boredom. In order to be spared, one must say “yes” +to the Minotaur. This is an old and fecund wisdom. Above the sea, +silent at the base of the red cliffs, it is enough to maintain a +delicate equilibrium halfway between the two massive headlands +which, on the right and left, dip into the clear water. In the puffing +of a coast-guard vessel crawling along the water far out bathed in +radiant light, is distinctly heard the muffled call of inhuman and +glittering forces: it is the Minotaur’s farewell. +It is noon; the very day is being weighed in the balance. His +rite accomplished, the traveler receives the reward of his liberation: +the little stone, dry and smooth as an asphodel, that he picks up on +the cliff. For the initiate the world is no heavier to bear than this +stone. Atlas’s task is easy; it is sufficient to choose one’s hour. +Then one realizes that for an hour, a month, a year, these shores +can indulge in freedom. They welcome pell-mell, without even +looking at them, the monk, the civil servant, or the conqueror. +There are days when I expected to meet, in the streets of Oran, +Descartes or Cesare Borgia. That did not happen. But perhaps +another will be more fortunate. A great deed, a great work, virile +meditation used to call for the solitude of sands or of the convent. +There were kept the spiritual vigils of arms. Where could they be +better celebrated now than in the emptiness of a big city +established for some time in unintellectual beauty? +Here is the little stone, smooth as an asphodel. It is at the +beginning of everything. Flowers, tears (if you insist), departures, +and struggles are for tomorrow. In the middle of the day when the +sky opens its fountains of light in the vast, sonorous space, all the +headlands of the coast look like a fleet about to set out. Those +heavy galleons of rock and light are trembling on their keels as if +they were preparing to steer for sunlit isles. O mornings in the +country of Oran! From the high plateaus the swallows plunge into +huge troughs where the air is seething. The whole coast is ready +for departure; a shiver of adventure ripples through it. Tomorrow, +perhaps, we shall leave together. +(1939) +Helen’s Exile +The mediterranean sun has something tragic about it, quite +different from the tragedy of fogs. Certain evenings at the base of +the seaside mountains, night falls over the flawless curve of a little +bay, and there rises from the silent waters a sense of anguished +fulfillment. In such spots one can understand that if the Greeks +knew despair, they always did so through beauty and its stifling +quality. In that gilded calamity, tragedy reaches its highest point. +Our time, on the other hand, has fed its despair on ugliness and +convulsions. This is why Europe would be vile, if suffering could +ever be so. We have exiled beauty; the Greeks took up arms for +her. First difference, but one that has a history. Greek thought +always took refuge behind the conception of limits. It never carried +anything to extremes, neither the sacred nor reason, because it +negated nothing, neither the sacred nor reason. It took everything +into consideration, balancing shadow with light. Our Europe, on +the other hand, off in the pursuit of totality, is the child of +disproportion. She negates beauty, as she negates whatever she +does not glorify. And, through all her diverse ways, she glorifies +but one thing, which is the future rule of reason. In her madness +she extends the eternal limits, and at that very moment dark +Erinyes fall upon her and tear her to pieces. Nemesis, the goddess +of measure and not of revenge, keeps watch. All those who +overstep the limit are pitilessly punished by her. +The Greeks, who for centuries questioned themselves as to +what is just, could understand nothing of our idea of justice. For +them equity implied a limit, whereas our whole continent is +convulsed in its search for a justice that must be total. At the dawn +of Greek thought Hera-clitus was already imagining that justice +sets limits for the physical universe itself: “The sun will not +overstep his measures; if he does, the Erinyes, the handmaids of +justice, will find him out.” 1 We who have cast the universe and +spirit out of our sphere laugh at that threat. In a drunken sky we +light up the suns we want. But nonetheless the boundaries exist, +and we know it. In our wildest aberrations we dream of an +equilibrium we have left behind, which we naively expect to find +at the end of our errors. Childish presumption which justifies the +fact that child-nations, inheriting our follies, are now directing our +history. +A fragment attributed to the same Heraclitus simply states: +“Presumption, regression of progress.” And, many centuries after +the man of Ephesus, Socrates, facing the threat of being +condemned to death, acknowledged only this one superiority in +himself: what he did not know he did not claim to know. The most +exemplary life and thought of those centuries close on a proud +confession of ignorance. Forgetting that, we have forgotten our +virility. We have preferred the power that apes greatness, first +Alexander and then the Roman conquerors whom the authors of +our schoolbooks, through some incomparable vulgarity, teach us to +admire. We, too, have conquered, moved boundaries, mastered 1 +Bywater’s translation. [Translator’s note.] +heaven and earth. Our reason has driven all away. Alone at last, +we end up by ruling over a desert. What imagination could we +have left for that higher equilibrium in which nature balanced +history, beauty, virtue, and which applied the music of numbers +even to blood-tragedy? We turn our backs on nature; we are +ashamed of beauty. Our wretched tragedies have a smell of the +office clinging to them, and the blood that trickles from them is the +color of printer’s ink. +This is why it is improper to proclaim today that we are the +sons of Greece. Or else we are the renegade sons. Placing history +on the throne of God, we are progressing toward theocracy like +those whom the Greeks called Barbarians and whom they fought to +death in the waters of Salamis. In order to realize how we differ, +one must turn to him among our philosophers who is the true rival +of Plato. “Only the modern city,” Hegel dares write, “offers the +mind a field in which it can become aware of itself.” We are thus +living in the period of big cities. Deliberately, the world has been +amputated of all that constitutes its permanence: nature, the sea, +hilltops, evening meditation. Consciousness is to be found only in +the streets, because history is to be found only in the streets—this +is the edict. And consequently our most significant works show the +same bias. Landscapes are not to be found in great European +literature since Dostoevsky. History explains neither the natural +universe that existed before it nor the beauty that exists above it. +Hence it chose to be ignorant of them. Whereas Plato contained +everything—nonsense, reason, and myth—our philosophers +contain nothing but nonsense or reason because they have closed +their eyes to the rest. The mole is meditating. +It is Christianity that began substituting the tragedy of the soul +for contemplation of the world. But, at least, Christianity referred +to a spiritual nature and thereby preserved a certain fixity. With +God dead, there remains only history and power. For some time +the entire effort of our philosophers has aimed solely at replacing +the notion of human nature with that of situation, and replacing +ancient harmony with the disorderly advance of chance or reason’s +pitiless progress. Whereas the Greeks gave to will the boundaries +of reason, we have come to put the will’s impulse in the very +center of reason, which has, as a result, become deadly. For the +Greeks, values pre-existed all action, of which they definitely set +the limits. Modern philosophy places its values at the end of +action. They are not but are becoming, and we shall know them +fully only at the completion of history. With values, all limit +disappears, and since conceptions differ as to what they will be, +since all struggles, without the brake of those same values, spread +indefinitely, today’s Messianisms confront one another and their +clamors mingle in the clash of empires. Disproportion is a +conflagration, according to Heraclitus. The conflagration is +spreading; Nietzsche is outdistanced. Europe no longer +philosophizes by striking a hammer, but by shooting a cannon. +Nature is still there, however. She contrasts her calm skies and +her reasons with the madness of men. Until the atom too catches +fire and history ends in the triumph of reason and the agony of the +species. But the Greeks never said that the limit could not he +overstepped. They said it existed and that whoever dared to exceed +it was mercilessly struck down. Nothing in present history can +contradict them. +The historical spirit and the artist both want to remake the +world. But the artist, through an obligation of his nature, knows his +limits, which the historical spirit fails to recognize. This is why the +latter’s aim is tyranny whereas the former’s passion is freedom. All +those who are struggling for freedom today are ultimately fighting +for beauty. Of course, it is not a question of defending beauty for +itself. Beauty cannot do without man, and we shall not give our era +its nobility and serenity unless we follow it in its misfortune. Never +again shall we be hermits. But it is no less true that man cannot do +without beauty, and this is what our era pretends to want to +disregard. It steels itself to attain the absolute and authority; it +wants to transfigure the world before having exhausted it, to set it +to rights before having understood it. Whatever it may say, our era +is deserting this world. Ulysses can choose at Calypso’s bidding +between immortality and the land of his fathers. He chooses the +land, and death with it. Such simple nobility is foreign to us today. +Others will say that we lack humility; but, all things considered, +this word is ambiguous. Like Dostoevsky’s fools who boast of +everything, soar to heaven, and end up flaunting their shame in any +public place, we merely lack man’s pride, which is fidelity to his +limits, lucid love of his condition. +“I hate my time,” Saint-Exupery wrote shortly before his death, +for reasons not far removed from those I have spoken of. But, +however upsetting that exclamation, coming from him who loved +men for their admirable qualities, we shall not accept responsibility +for it. Yet what a temptation, at certain moments, to turn one’s +back on this bleak, fleshless world! But this time is ours, and we +cannot live hating ourselves. It has fallen so low only through the +excess of its virtues as well as through the extent of its vices. We +shall fight for the virtue that has a history. What virtue? The horses +of Patroclus weep for their master killed in battle. All is lost. But +Achilles resumes the fight, and victory is the outcome, because +friendship has just been assassinated: friendship is a virtue. +Admission of ignorance, rejection of fanaticism, the limits of +the world and of man, the beloved face, and finally beauty—this is +where we shall be on the side of the Greeks. In a certain sense, the +direction history will take is not the one we think. It lies in the +struggle between creation and inquisition. Despite the price which +artists will pay for their empty hands, we may hope for their +victory. Once more the philosophy of darkness will break and fade +away over the dazzling sea. O midday thought, the Trojan war is +being fought far from the battlefields! Once more the dreadful +walls of the modern city will fall to deliver up—“soul serene as the +ocean’s calm”—the beauty of Helen. +(1948) +Return To Tipasa +You have navigated with raging soul far from the paternal +home, passing beyond the sea’s double rocks, and you now inhabit +a foreign land. +—Medea +For five days rain had been falling ceaselessly on Algiers and +had finally wet the sea itself. From an apparently inexhaustible +sky, constant downpours, viscous in their density, streamed down +upon the gulf. Gray and soft as a huge sponge, the sea rose slowly +in the ill-defined bay. But the surface of the water seemed almost +motionless under the steady rain. Only now and then a barely +perceptible swelling motion would raise above the sea’s surface a +vague puff of smoke that would come to dock in the harbor, under +an arc of wet boulevards. The city itself, all its white walls +dripping, gave off a different steam that went out to meet the first +steam. Whichever way you turned, you seemed to be breathing +water, to be drinking the air. +In front of the soaked sea I walked and waited in that +December Algiers, which was for me the city of summers. I had +fled Europe’s night, the winter of faces. But the summer city +herself had been emptied of her laughter and offered me only bent +and shining backs. In the evening, in the crudely lighted cafes +where I took refuge, I read my age in faces I recognized without +being able to name them. I merely knew that they had been young +with me and that they were no longer so. +Yet I persisted without very well knowing what I was waiting +for, unless perhaps the moment to go back to Tipasa. To be sure, it +is sheer madness, almost always punished, to return to the sites of +one’s youth and try to relive at forty what one loved or keenly +enjoyed at twenty. But I was forewarned of that madness. Once +already I had returned to Tipasa, soon after those war years that +marked for me the end of youth. I hoped, I think, to recapture there +a freedom I could not forget. In that spot, indeed, more than twenty +years ago, I had spent whole mornings wandering among the ruins, +breathing in the wormwood, warming myself against the stones, +discovering little roses, soon plucked of their petals, which outlive +the spring. Only at noon, at the hour when the cicadas themselves +fell silent as if overcome, I would flee the greedy glare of an all- +consuming light. Sometimes at night I would sleep open-eyed +under a sky dripping with stars. I was alive then. Fifteen years later +I found my ruins, a few feet from the first waves, I followed the +streets of the forgotten walled city through fields covered with +bitter trees, and on the slopes overlooking the hay I still caressed +the bread-colored columns. But the ruins were now surrounded +with barbed wire and could be entered only through certain +openings. It was also forbidden, for reasons which it appears that +morality approves, to walk there at night; by day one encountered +an official guardian. It just happened, that morning, that it was +raining over the whole extent of the ruins. +Disoriented, walking through the wet, solitary countryside, I +tried at least to recapture that strength, hitherto always at hand, that +helps me to accept what is when once I have admitted that I cannot +change it. And I could not, indeed, reverse the course of time and +restore to the world the appearance I had loved which had +disappeared in a day, long before. The second of September 1939, +in fact, I had not gone to Greece, as I was to do. War, on the +contrary, had come to us, then it had spread over Greece herself. +That distance, those years separating the warm ruins from the +barbed wire were to be found in me, too, that day as I stood before +the sarcophaguses full of black water or under the sodden +tamarisks. Originally brought up surrounded by beauty which was +my only wealth, I had begun in plenty. Then had come the barbed +wire—I mean tyrannies, war, police forces, the era of revolt. One +had had to put oneself right with the authorities of night: the day’s +beauty was but a memory. And in this muddy Tipasa the memory +itself was becoming dim. It was indeed a question of beauty, +plenty, or youth! In the light from conflagrations the world had +suddenly shown its wrinkles and its wounds, old and new. It had +aged all at once, and we with it. I had come here looking for a +certain “lift”; but I realized that it inspires only the man who is +unaware that he is about to launch forward. No love without a little +innocence. Where was the innocence? Empires were tumbling +down; nations and men were tearing at one another’s throats; our +hands were soiled. Originally innocent without knowing it, we +were now guilty without meaning to be: the mystery was +increasing with our knowledge. This is why, O mockery, we were +concerned with morality. Weak and disabled, I was dreaming of +virtue! In the days of innocence I didn’t even know that morality +existed. I knew it now, and I was not capable of living up to its +standard. On the promontory that I used to love, among the wet +columns of the ruined temple, I seemed to be walking behind +someone whose steps I could still hear on the stone slabs and +mosaics but whom I should never again overtake. I went back to +Paris and remained several years before returning home. +Yet I obscurely missed something during all those years. When +one has once had the good luck to love intensely, life is spent in +trying to recapture that ardor and that illumination. Forsaking +beauty and the sensual happiness attached to it, exclusively serving +misfortune, calls for a nobility I lack. But, after all, nothing is true +that forces one to exclude. Isolated beauty ends up simpering; +solitary justice ends up oppressing. Whoever aims to serve one +exclusive of the other serves no one, not even himself, and +eventually serves injustice twice. A day comes when, thanks to +rigidity, nothing causes wonder any more, everything is known, +and life is spent in beginning over again. These are the days of +exile, of desiccated life, of dead souls. To come alive again, one +needs a special grace, self-forgetfulness, or a homeland. Certain +mornings, on turning a corner, a delightful dew falls on the heart +and then evaporates. But its coolness remains, and this is what the +heart requires always. I had to set out again. +And in Algiers a second time, still walking under the same +downpour which seemed not to have ceased since a departure I had +thought definitive, amid the same vast melancholy smelling of rain +and sea, despite this misty sky, these backs fleeing under the +shower, these cafes whose sulphureous light distorted faces, I +persisted in hoping. Didn’t I know, besides, that Algiers rains, +despite their appearance of never meaning to end, nonetheless stop +in an instant, like those streams in my country which rise in two +hours, lay waste acres of land, and suddenly dry up? One evening, +in fact, the rain ceased. I waited one night more. A limpid morning +rose, dazzling, over the pure sea. From the sky, fresh as a daisy, +washed over and over again by the rains, reduced by these repeated +washings to its finest and clearest texture, emanated a vibrant light +that gave to each house and each tree a sharp outline, an astonished +newness. In the world’s morning the earth must have sprung forth +in such a light. I again took the road for Tipasa. +For me there is not a single one of those sixty-nine kilometers +that is not filled with memories and sensations. Turbulent +childhood, adolescent daydreams in the drone of the bus’s motor, +mornings, unspoiled girls, beaches, young muscles always at the +peak of their effort, evening’s slight anxiety in a sixteen-year-old +heart, lust for life, fame, and ever the same sky throughout the +years, unfailing in strength and light, itself insatiable, consuming +one by one over a period of months the victims stretched out in the +form of crosses on the beach at the deathlike hour of noon. Always +the same sea, too, almost impalpable in the morning light, which I +again saw on the horizon as soon as the road, leaving the Sahel and +its bronze-colored vineyards, sloped down toward the coast. But I +did not stop to look at it. I wanted to see again the Chenoua, that +solid, heavy mountain cut out of a single block of stone, which +borders the bay of Tipasa to the west before dropping down into +the sea itself. It is seen from a distance, long before arriving, a +light, blue haze still confused with the sky. But gradually it is +condensed, as you advance toward it, until it takes on the color of +the surrounding waters, a huge motionless wave whose amazing +leap upward has been brutally solidified above the sea calmed all +at once. Still nearer, almost at the gates of Tipasa, here is its +frowning bulk, brown and green, here is the old mossy god that +nothing will ever shake, a refuge and harbor for its sons, of whom I +am one. +While watching it I finally got through the barbed wire and +found myself among the ruins. And under the glorious December +light, as happens but once or twice in lives which ever after can +consider themselves favored to the full, I found exactly what I had +come seeking, what, despite the era and the world, was offered me, +truly to me alone, in that forsaken nature. From the forum strewn +with olives could be seen the village down below. No sound came +from it; wisps of smoke rose in the limpid air. The sea likewise +was silent as if smothered under the unbroken shower of dazzling, +cold light. From the Chenoua a distant cock’s crow alone +celebrated the day’s fragile glory. In the direction of the ruins, as +far as the eye could see, there was nothing but pock-marked stones +and wormwood, trees and perfect columns in the transparence of +the crystalline air. It seemed as if the morning were stabilized, the +sun stopped for an incalculable moment. In this light and this +silence, years of wrath and night melted slowly away. I listened to +an almost forgotten sound within myself as if my heart, long +stopped, were calmly beginning to beat again. And awake now, I +recognized one by one the imperceptible sounds of which the +silence was made up: the figured bass of the birds, the sea’s faint, +brief sighs at the foot of the rocks, the vibration of the trees, the +blind singing of the columns, the rustling of the wormwood plants, +the furtive lizards. I heard that; I also listened to the happy torrents +rising within me. It seemed to me that I had at last come to harbor, +for a moment at least, and that henceforth that moment would be +endless. But soon after, the sun rose visibly a degree in the sky. A +magpie preluded briefly, and at once, from all directions, birds’ +songs burst out with energy, jubilation, joyful discordance, and +infinite rapture. The day started up again. It was to carry me to +evening. +At noon on the half-sandy slopes covered with heliotropes like +a foam left by the furious waves of the last few days as they +withdrew, I watched the sea barely swelling at that hour with an +exhausted motion, and I satisfied the two thirsts one cannot long +neglect without drying up—I mean loving and admiring. For there +is merely bad luck in not being loved; there is misfortune in not +loving. All of us, today, are dying of this misfortune. For violence +and hatred dry up the heart itself; the long fight for justice exhausts +the love that nevertheless gave birth to it. In the clamor in which +we live, love is impossible and justice does not suffice. This is why +Europe hates daylight and is only able to set injustice up against +injustice. But in order to keep justice from shriveling up like a +beautiful orange fruit containing nothing but a bitter, dry pulp, I +discovered once more at Tipasa that one must keep intact in +oneself a freshness, a cool wellspring of joy, love the day that +escapes injustice, and return to combat having won that light. Here +I recaptured the former beauty, a young sky, and I measured my +luck, realizing at last that in the worst years of our madness the +memory of that sky had never left me. This was what in the end +had kept me from despairing. I had always known that the ruins of +Tipasa were younger than our new constructions or our bomb +damage. There the world began over again every day in an ever +new light. O light! This is the cry of all the characters of ancient +drama brought face to face with their fate. This last resort was +ours, too, and I knew it now. In the middle of winter I at last +discovered that there was in me an invincible summer. +* * * +I have again left Tipasa; I have returned to Europe and its +struggles. But the memory of that day still uplifts me and helps me +to welcome equally what delights and what crushes. In the difficult +hour we are living, what else can I desire than to exclude nothing +and to learn how to braid with white thread and black thread a +single cord stretched to the breaking-point? In everything I have +done or said up to now, I seem to recognize these two forces, even +when they work at cross-purposes. I have not been able to disown +the light into which I was born and yet I have not wanted to reject +the servitudes of this time. It would be too easy to contrast here +with the sweet name of Tipasa other more sonorous and crueler +names. For men of today there is an inner way, which I know well +from having taken it in both directions, leading from the spiritual +hilltops to the capitals of crime. And doubtless one can always rest, +fall asleep on the hilltop or board with crime. But if one forgoes a +part of what is, one must forgo being oneself; one must forgo +living or loving otherwise than by proxy. There is thus a will to +live without rejecting anything of life, which is the virtue I honor +most in this world. From time to time, at least, it is true that I +should like to have practiced it. Inasmuch as few epochs require as +much as ours that one should be equal to the best as to the worst, I +should like, indeed, to shirk nothing and to keep faithfully a double +memory. Yes, there is beauty and there are the humiliated. +Whatever may be the difficulties of the undertaking, I should like +never to be unfaithful either to one or to the others. +But this still resembles a moral code, and we live for something +that goes farther than morality. If we could only name it, what +silence! On the hill of Sainte-Salsa, to the east of Tipasa, the +evening is inhabited. It is still light, to tell the truth, but in this light +an almost invisible fading announces the day’s end. A wind rises, +young like the night, and suddenly the waveless sea chooses a +direction and flows like a great barren river from one end of the +horizon to the other. The sky darkens. Then begins the mystery, the +gods of night, the beyond-pleasure. But how to translate this? The +little coin I am carrying away from here has a visible surface, a +woman’s beautiful face which repeats to me all I have learned in +this day, and a worn surface which I feel under my fingers during +the return. What can that lipless mouth be saying, except what I am +told by another mysterious voice, within me, which every day +informs me of my ignorance and my happiness: +“The secret I am seeking lies hidden in a valley full of olive +trees, under the grass and the cold violets, around an old house that +smells of wood smoke. For more than twenty years I rambled over +that valley and others resembling it, I questioned mute goatherds, I +knocked at the door of deserted ruins. Occasionally, at the moment +of the first star in the still bright sky, under a shower of +shimmering light, I thought I knew. I did know, in truth. I still +know, perhaps. But no one wants any of this secret; I don’t want +any myself, doubtless; and I cannot stand apart from my people. I +live in my family, which thinks it rules over rich and hideous cities +built of stones and mists. Day and night it speaks up, and +everything bows before it, which bows before nothing: it is deaf to +all secrets. Its power that carries me bores me, nevertheless, and on +occasion its shouts weary me. But its misfortune is mine, and we +are of the same blood. A cripple, likewise, an accomplice and +noisy, have I not shouted among the stones? Consequently, I strive +to forget, I walk in our cities of iron and fire, I smile bravely at the +night, I hail the storms, I shall be faithful. I have forgotten, in truth: +active and deaf, henceforth. But perhaps someday, when we are +ready to die of exhaustion and ignorance, I shall be able to disown +our garish tombs and go and stretch out in the valley, under the +same light, and learn for the last time what I know.” +(1952) +The Artist And His Time +I. As an artist, have you chosen the role of witness? +This would take considerable presumption or a vocation I lack. +Personally I don’t ask for any role and I have but one real vocation. +As a man, I have a preference for happiness; as an artist, it seems +to me that I still have characters to bring to life without the help of +wars or of law-courts. But I have been sought out, as each +individual has been sought out. Artists of the past could at least +keep silent in the face of tyranny. The tyrannies of today are +improved; they no longer admit of silence or neutrality. One has to +take a stand, be either for or against. Well, in that case, I am +against. But this does not amount to choosing the comfortable role +of witness. It is merely accepting the time as it is, minding one’s +own business, in short. Moreover, you are forgetting that today +judges, accused, and witnesses exchange positions with exemplary +rapidity. My choice, if you think I am making one, would at least +be never to sit on a judge’s bench, or beneath it, like so many of +our philosophers. Aside from that, there is no dearth of +opportunities for action, in the relative. Trade-unionism is today +the first, and the most fruitful among them. +II. Is not the quixotism that has been criticized in your recent +works an idealistic and romantic definition of the artist’s role? +However words are perverted, they provisionally keep their +meaning. And it is clear to me that the romantic is the one who +chooses the perpetual motion of history, the grandiose epic, and the +announcement of a miraculous event at the end of time. If I have +tried to define something, it is, on the contrary, simply the common +existence of history and of man, everyday life with the most +possible light thrown upon it, the dogged struggle against one’s +own degradation and that of others. +It is likewise idealism, and of the worse kind, to end up by +hanging all action and all truth on a meaning of history that is not +implicit in events and that, in any case, implies a mythical aim. +Would it therefore be realism to take as the laws of history the +future—in other words, just what is not yet history, something of +whose nature we know nothing? +It seems to me, on the contrary, that I am arguing in favor of a +true realism against a mythology that is both illogical and deadly, +and against romantic nihilism whether it be bourgeois or allegedly +revolutionary. To tell the truth, far from being romantic, I believe +in the necessity of a rule and an order. I merely say that there can +be no question of just any rule whatsoever. And that it would be +surprising if the rule we need were given us by this disordered +society, or, on the other hand, by those doctrinaires who declare +themselves liberated from all rules and all scruples. +III. The Marxists and their followers likewise think they are +humanists. But for them human nature will be formed in the +classless society of the future. +To begin with, this proves that they reject at the present +moment what we all are: those humanists are accusers of man. +How can we be surprised that such a claim should have developed +in the world of court trials? They reject the man of today in the +name of the man of the future. That claim is religious in nature. +Why should it be more justified than the one which announces the +kingdom of heaven to come? In reality the end of history cannot +have, within the limits of our condition, any definable significance. +It can only be the object of a faith and of a new mystification. A +mystification that today is no less great than the one that of old +based colonial oppression on the necessity of saving the souls of +infidels. +IV. Is not that what in reality separates you from the +intellectuals of the left? +You mean that is what separates those intellectuals from the +left? Traditionally the left has always been at war against injustice, +obscurantism, and oppression. It always thought that those +phenomena were interdependent. The idea that obscurantism can +lead to justice, the national interest to liberty, is quite recent. The +truth is that certain intellectuals of the left (not all, fortunately) are +today hypnotized by force and efficacy as our intellectuals of the +right were before and during the war. Their attitudes are different, +but the act of resignation is the same. The first wanted to be +realistic nationalists; the second want to be realistic socialists. In +the end they betray nationalism and socialism alike in the name of +a realism henceforth without content and adored as a pure, and +illusory, technique of efficacy. +This is a temptation that can, after all, be understood. But still, +however the question is looked at, the new position of the people +who call themselves, or think themselves, leftists consists in +saying: certain oppressions are justifiable because they follow the +direction, which cannot be justified, of history. Hence there are +presumably privileged executioners, and privileged by nothing. +This is about what was said in another context by Joseph de +Maistre, who has never been taken for an incendiary. But this is a +thesis which, personally, I shall always reject. Allow me to set up +against it the traditional point of view of what has been hitherto +called the left: all executioners are of the same family. +V. What can the artist do in the world of today? +He is not asked either to write about co-operatives or, +conversely, to lull to sleep in himself the sufferings endured by +others throughout history. And since you have asked me to speak +personally, I am going to do so as simply as I can. Considered as +artists, we perhaps have no need to interfere in the affairs of the +world. But considered as men, yes. The miner who is exploited or +shot down, the slaves in the camps, those in the colonies, the +legions of persecuted throughout the world—they need all those +who can speak to communicate their silence and to keep in touch +with them. I have not written, day after day, fighting articles and +texts, I have not taken part in the common struggles because I +desire the world to be covered with Greek statues and +masterpieces. The man who has such a desire does exist in me. +Except that he has something better to do in trying to instill life +into the creatures of his imagination. But from my first articles to +my latest book I have written so much, and perhaps too much, only +because I cannot keep from being drawn toward everyday life, +toward those, whoever they may be, who are humiliated and +debased. They need to hope, and if all keep silent or if they are +given a choice between two kinds of humiliation, they will be +forever deprived of hope and we with them. It seems to me +impossible to endure that idea, nor can he who cannot endure it lie +down to sleep in his tower. Not through virtue, as you see, but +through a sort of almost organic intolerance, which you feel or do +not feel. Indeed, I see many who fail to feel it, but I cannot envy +their sleep. This does not mean, however, that we must sacrifice +our artist’s nature to some social preaching or other. I have said +elsewhere why the artist was more than ever necessary. But if we +intervene as men, that experience will have an effect upon our +language. And if we are not artists in our language first of all, what +sort of artists are we? Even if, militants in our lives, we speak in +our works of deserts and of selfish love, the mere fact that our lives +are militant causes a special tone of voice to people with men that +desert and that love. I shall certainly not choose the moment when +we are beginning to leave nihilism behind to stupidly deny the +values of creation in favor of the values of humanity, or vice versa. +In my mind neither one is ever separated from the other and I +measure the greatness of an artist (Moliere, Tolstoy, Melville) by +the balance he managed to maintain between the two. Today, under +the pressure of events, we are obliged to transport that tension into +our lives likewise. This is why so many artists, bending under the +burden, take refuge in the ivory tower or, conversely, in the social +church. But as for me, I see in both choices a like act of +resignation. We must simultaneously serve suffering and beauty. +The long patience, “The strength, the secret cunning such service +calls for are the virtues that establish the very renascence we need. +One word more. This undertaking, I know, cannot be +accomplished without dangers and bitterness. We must accept the +dangers: the era of chairbound artists is over. But we must reject +the bitterness. One of the temptations of the artist is to believe +himself solitary, and in truth he bears this shouted at him with a +certain base delight. But this is not true. He stands in the midst of +all, in the same rank, neither higher nor lower, with all those who +are working and struggling. His very vocation, in the face of +oppression, is to open the prisons and to give a voice to the +sorrows and joys of all. This is where art, against its enemies, +justifies itself by proving precisely that it is no one’s enemy. By +itself art could probably not produce the renascence which implies +justice and liberty. But without it, that renascence would be +without forms and, consequently, would be nothing. Without +culture, and the relative freedom it implies, society, even when +perfect, is but a jungle. This is why any authentic creation is a gift +to the future. +(1953) \ No newline at end of file diff --git a/model/logistic.ipynb b/model/logistic.ipynb new file mode 100644 index 0000000..d527845 --- /dev/null +++ b/model/logistic.ipynb @@ -0,0 +1,339 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 1. Import and data processing" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Import all necessary libraries" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import torch\n", + "import torch.nn as nn\n", + "from torch.utils.data import DataLoader, TensorDataset, random_split" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Load the training data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "data = np.load(\"./data.npy\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Define constants that describe the data and model" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "CONTEXT_SIZE = 10\n", + "ALPHABET = list(\"abcdefghijklmnopqrstuvwxyz\")\n", + "ALPHABET_SIZE = len(ALPHABET)\n", + "TRAINING_DATA_SIZE = 0.9\n", + "\n", + "# +1 is for unknown characters\n", + "VOCAB_SIZE = ALPHABET_SIZE + 1\n", + "\n", + "EMBEDDING_DIM = 10\n", + "\n", + "INPUT_SEQ_LEN = CONTEXT_SIZE\n", + "OUTPUT_SIZE = VOCAB_SIZE\n", + "\n", + "BATCH_SIZE = 2048\n", + "\n", + "EPOCHS = 30\n", + "LEARNING_RATE = 1e-3" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Process the data" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# Input: embeddings of the previous 10 letters\n", + "# shape: (num_samples, CONTEXT_SIZE)\n", + "X = data[:, :CONTEXT_SIZE]\n", + "\n", + "# Target: current letter index\n", + "# shape: (num_samples,)\n", + "y = data[:, CONTEXT_SIZE]\n", + "\n", + "# Torch dataset (important: use long/int64 for indices)\n", + "X_tensor = torch.tensor(X, dtype=torch.long) # for nn.Embedding\n", + "y_tensor = torch.tensor(y, dtype=torch.long) # for classification target\n", + "\n", + "dataset = TensorDataset(X_tensor, y_tensor)\n", + "\n", + "train_len = int(TRAINING_DATA_SIZE * len(dataset))\n", + "train_set, test_set = random_split(dataset, [train_len, len(dataset) - train_len])\n", + "\n", + "train_loader = DataLoader(train_set, batch_size=BATCH_SIZE, shuffle=True)\n", + "test_loader = DataLoader(test_set, batch_size=BATCH_SIZE)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 2. Model" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "class Logistic(nn.Module):\n", + " def __init__(self, *, embedding_count: int, embedding_dimension_size: int, context_size: int, output_shape: int):\n", + " super().__init__()\n", + " self.embedding = nn.Embedding(num_embeddings=embedding_count, embedding_dim=embedding_dimension_size)\n", + " self.linear = nn.Linear(context_size * embedding_dimension_size, output_shape)\n", + "\n", + " def forward(self, x):\n", + " embedded = self.embedding(x) # (BATCH_SIZE, CONTEXT_SIZE, EMBEDDING_DIM)\n", + " flattened = embedded.view(x.size(0), -1) # (BATCH_SIZE, CONTEXT_SIZE * EMBEDDING_DIM)\n", + " return self.linear(flattened) # (BATCH_SIZE, OUTPUT_SIZE)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Using device: cpu\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/thastertyn/Code/Skola/4-rocnik/programove-vybaveni/omega/.venv/lib/python3.12/site-packages/torch/cuda/__init__.py:129: UserWarning: CUDA initialization: CUDA unknown error - this may be due to an incorrectly set up environment, e.g. changing env variable CUDA_VISIBLE_DEVICES after program start. Setting the available devices to be zero. (Triggered internally at /pytorch/c10/cuda/CUDAFunctions.cpp:109.)\n", + " return torch._C._cuda_getDeviceCount() > 0\n" + ] + } + ], + "source": [ + "device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n", + "print(f\"Using device: {device}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 3. Training" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Create fresh instance of the model" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "model = Logistic(\n", + " embedding_count=VOCAB_SIZE, # e.g., 27 for a–z + unknown\n", + " embedding_dimension_size=EMBEDDING_DIM, # e.g., 10\n", + " context_size=CONTEXT_SIZE, # e.g., 10\n", + " output_shape=OUTPUT_SIZE # e.g., 27 (next character)\n", + ").to(device)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "criterion = nn.CrossEntropyLoss()\n", + "optimizer = torch.optim.Adam(model.parameters(), lr=LEARNING_RATE)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[Epoch 1] - Loss: 2.5968 | Accuracy: 23.06%\n", + "[Epoch 2] - Loss: 2.3218 | Accuracy: 30.02%\n", + "[Epoch 3] - Loss: 2.2600 | Accuracy: 31.25%\n", + "[Epoch 4] - Loss: 2.2325 | Accuracy: 31.55%\n", + "[Epoch 5] - Loss: 2.2171 | Accuracy: 31.75%\n", + "[Epoch 6] - Loss: 2.2076 | Accuracy: 31.98%\n", + "[Epoch 7] - Loss: 2.2006 | Accuracy: 32.22%\n", + "[Epoch 8] - Loss: 2.1962 | Accuracy: 32.36%\n", + "[Epoch 9] - Loss: 2.1925 | Accuracy: 32.42%\n", + "[Epoch 10] - Loss: 2.1900 | Accuracy: 32.48%\n", + "[Epoch 11] - Loss: 2.1876 | Accuracy: 32.54%\n", + "[Epoch 12] - Loss: 2.1859 | Accuracy: 32.64%\n", + "[Epoch 13] - Loss: 2.1847 | Accuracy: 32.65%\n", + "[Epoch 14] - Loss: 2.1833 | Accuracy: 32.76%\n", + "[Epoch 15] - Loss: 2.1821 | Accuracy: 32.75%\n", + "[Epoch 16] - Loss: 2.1813 | Accuracy: 32.74%\n", + "[Epoch 17] - Loss: 2.1806 | Accuracy: 32.84%\n", + "[Epoch 18] - Loss: 2.1799 | Accuracy: 32.81%\n", + "[Epoch 19] - Loss: 2.1792 | Accuracy: 32.80%\n", + "[Epoch 20] - Loss: 2.1786 | Accuracy: 32.81%\n", + "[Epoch 21] - Loss: 2.1780 | Accuracy: 32.77%\n", + "[Epoch 22] - Loss: 2.1776 | Accuracy: 32.85%\n", + "[Epoch 23] - Loss: 2.1770 | Accuracy: 32.81%\n", + "[Epoch 24] - Loss: 2.1767 | Accuracy: 32.81%\n", + "[Epoch 25] - Loss: 2.1764 | Accuracy: 32.81%\n", + "[Epoch 26] - Loss: 2.1757 | Accuracy: 32.80%\n", + "[Epoch 27] - Loss: 2.1755 | Accuracy: 32.81%\n", + "[Epoch 28] - Loss: 2.1751 | Accuracy: 32.79%\n", + "[Epoch 29] - Loss: 2.1748 | Accuracy: 32.82%\n", + "[Epoch 30] - Loss: 2.1744 | Accuracy: 32.80%\n" + ] + } + ], + "source": [ + "for epoch in range(EPOCHS):\n", + " model.train()\n", + " total_loss = 0\n", + " correct = 0\n", + " total = 0\n", + "\n", + " for batch_X, batch_y in train_loader:\n", + " batch_X, batch_y = batch_X.to(device), batch_y.to(device)\n", + "\n", + " optimizer.zero_grad()\n", + " logits = model(batch_X) # shape: (BATCH_SIZE, OUTPUT_SIZE)\n", + " loss = criterion(logits, batch_y)\n", + " loss.backward()\n", + " optimizer.step()\n", + "\n", + " total_loss += loss.item() * batch_X.size(0)\n", + "\n", + " # Compute accuracy\n", + " preds = torch.argmax(logits, dim=1)\n", + " correct += (preds == batch_y).sum().item()\n", + " total += batch_X.size(0)\n", + "\n", + " avg_loss = total_loss / total\n", + " accuracy = correct / total * 100\n", + " print(f\"[Epoch {epoch+1}] - Loss: {avg_loss:.4f} | Accuracy: {accuracy:.2f}%\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Top 1 prediction accuracy: 32.45%\n", + "Top 3 prediction accuracy: 58.55%\n", + "Top 5 prediction accuracy: 72.66%\n" + ] + } + ], + "source": [ + "model.eval()\n", + "correct_top1 = 0\n", + "correct_top3 = 0\n", + "correct_top5 = 0\n", + "total = 0\n", + "\n", + "with torch.no_grad():\n", + " for batch_X, batch_y in test_loader:\n", + " batch_X, batch_y = batch_X.to(device), batch_y.to(device)\n", + " outputs = model(batch_X)\n", + "\n", + " _, top_preds = outputs.topk(5, dim=1)\n", + "\n", + " for true, top5 in zip(batch_y, top_preds):\n", + " total += 1\n", + " if true == top5[0]:\n", + " correct_top1 += 1\n", + " if true in top5[:3]:\n", + " correct_top3 += 1\n", + " if true in top5:\n", + " correct_top5 += 1\n", + "\n", + "top1_acc = correct_top1 / total\n", + "top3_acc = correct_top3 / total\n", + "top5_acc = correct_top5 / total\n", + "\n", + "print(f\"Top 1 prediction accuracy: {(top1_acc * 100):.2f}%\")\n", + "print(f\"Top 3 prediction accuracy: {(top3_acc * 100):.2f}%\")\n", + "print(f\"Top 5 prediction accuracy: {(top5_acc * 100):.2f}%\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/model/mlp.ipynb b/model/mlp.ipynb new file mode 100644 index 0000000..0f5688b --- /dev/null +++ b/model/mlp.ipynb @@ -0,0 +1,601 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 1. Import and data processing" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Import all necessary libraries" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import torch\n", + "import torch.nn as nn\n", + "from torch.utils.data import DataLoader, TensorDataset, random_split" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Load the training data" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "data = np.load(\"./data.npy\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Define constants that describe the data and model" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "CONTEXT_SIZE = 10\n", + "ALPHABET = list(\"abcdefghijklmnopqrstuvwxyz\")\n", + "ALPHABET_SIZE = len(ALPHABET)\n", + "TRAINING_DATA_SIZE = 0.9\n", + "\n", + "# +1 is for unknown characters\n", + "VOCAB_SIZE = ALPHABET_SIZE + 1\n", + "\n", + "EMBEDDING_DIM = 16\n", + "\n", + "INPUT_SEQ_LEN = CONTEXT_SIZE\n", + "OUTPUT_SIZE = VOCAB_SIZE\n", + "\n", + "BATCH_SIZE = 2048 * 2 * 2\n", + "\n", + "EPOCHS = 50\n", + "LEARNING_RATE = 1e-3" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Process the data" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "# Input: embeddings of the previous 10 letters\n", + "# shape: (num_samples, CONTEXT_SIZE)\n", + "X = data[:, :CONTEXT_SIZE]\n", + "\n", + "# Target: current letter index\n", + "# shape: (num_samples,)\n", + "y = data[:, CONTEXT_SIZE]\n", + "\n", + "# Torch dataset (important: use long/int64 for indices)\n", + "X_tensor = torch.tensor(X, dtype=torch.long) # for nn.Embedding\n", + "y_tensor = torch.tensor(y, dtype=torch.long) # for classification target\n", + "\n", + "dataset = TensorDataset(X_tensor, y_tensor)\n", + "\n", + "train_len = int(TRAINING_DATA_SIZE * len(dataset))\n", + "train_set, test_set = random_split(dataset, [train_len, len(dataset) - train_len])\n", + "\n", + "train_loader = DataLoader(train_set, batch_size=BATCH_SIZE, shuffle=True)\n", + "test_loader = DataLoader(test_set, batch_size=BATCH_SIZE)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 2. Model" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "from dataclasses import dataclass\n", + "\n", + "@dataclass\n", + "class MlpHiddenLayer():\n", + " size: int\n", + " activation_function: nn.Module" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "class MLP(nn.Module):\n", + " def __init__(self, *,\n", + " embedding_count: int,\n", + " embedding_dimension_size: int,\n", + " input_shape_size: int,\n", + " output_shape: int,\n", + " hidden_layers: list[MlpHiddenLayer]\n", + " ):\n", + "\n", + " super().__init__()\n", + "\n", + " self.embedding_count = embedding_count\n", + " self.embedding_dimension_size = embedding_dimension_size\n", + " self.input_shape_size = input_shape_size\n", + " self.output_shape = output_shape\n", + " self.hidden_layers = hidden_layers\n", + "\n", + " layers = [\n", + " nn.Embedding(num_embeddings=embedding_count, embedding_dim=embedding_dimension_size),\n", + " nn.Flatten(),\n", + " ]\n", + "\n", + " input_dimensions = input_shape_size\n", + "\n", + " for layer in hidden_layers:\n", + " layers.append(nn.Linear(input_dimensions, layer.size))\n", + " layers.append(layer.activation_function())\n", + " input_dimensions = layer.size\n", + "\n", + " layers.append(nn.Linear(input_dimensions, output_shape))\n", + "\n", + " self.net = nn.Sequential(*layers)\n", + "\n", + " def forward(self, x):\n", + " return self.net(x)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Using device: cuda\n" + ] + } + ], + "source": [ + "device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n", + "print(f\"Using device: {device}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 3. Training" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Create fresh instance of the model" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Mass testing all hyperparams" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[31m---------------------------------------------------------------------------\u001b[39m", + "\u001b[31mKeyboardInterrupt\u001b[39m Traceback (most recent call last)", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[14]\u001b[39m\u001b[32m, line 73\u001b[39m\n\u001b[32m 64\u001b[39m model = MLP(\n\u001b[32m 65\u001b[39m hidden_layers=hidden_layers,\n\u001b[32m 66\u001b[39m embedding_count=VOCAB_SIZE,\n\u001b[32m (...)\u001b[39m\u001b[32m 69\u001b[39m output_shape=OUTPUT_SIZE,\n\u001b[32m 70\u001b[39m ).to(device)\n\u001b[32m 72\u001b[39m optimizer = torch.optim.Adam(model.parameters(), lr=learning_rate)\n\u001b[32m---> \u001b[39m\u001b[32m73\u001b[39m \u001b[43mtrain_model\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmodel\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43moptimizer\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 74\u001b[39m top1, top3, top5 = test_model(model)\n\u001b[32m 76\u001b[39m results.append({\n\u001b[32m 77\u001b[39m \u001b[33m\"\u001b[39m\u001b[33mconfig_id\u001b[39m\u001b[33m\"\u001b[39m: config_id,\n\u001b[32m 78\u001b[39m \u001b[33m\"\u001b[39m\u001b[33mactivation\u001b[39m\u001b[33m\"\u001b[39m: act_fn.\u001b[34m__name__\u001b[39m,\n\u001b[32m (...)\u001b[39m\u001b[32m 83\u001b[39m \u001b[33m\"\u001b[39m\u001b[33mtop5_acc\u001b[39m\u001b[33m\"\u001b[39m: top5\n\u001b[32m 84\u001b[39m })\n", + "\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[14]\u001b[39m\u001b[32m, line 16\u001b[39m, in \u001b[36mtrain_model\u001b[39m\u001b[34m(model, optimizer)\u001b[39m\n\u001b[32m 14\u001b[39m model.train()\n\u001b[32m 15\u001b[39m total_loss = \u001b[32m0\u001b[39m\n\u001b[32m---> \u001b[39m\u001b[32m16\u001b[39m \u001b[43m\u001b[49m\u001b[38;5;28;43;01mfor\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[43mbatch_X\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mbatch_y\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;129;43;01min\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[43mtrain_loader\u001b[49m\u001b[43m:\u001b[49m\n\u001b[32m 17\u001b[39m \u001b[43m \u001b[49m\u001b[43mbatch_X\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mbatch_y\u001b[49m\u001b[43m \u001b[49m\u001b[43m=\u001b[49m\u001b[43m \u001b[49m\u001b[43mbatch_X\u001b[49m\u001b[43m.\u001b[49m\u001b[43mto\u001b[49m\u001b[43m(\u001b[49m\u001b[43mdevice\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mbatch_y\u001b[49m\u001b[43m.\u001b[49m\u001b[43mto\u001b[49m\u001b[43m(\u001b[49m\u001b[43mdevice\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 18\u001b[39m \u001b[43m \u001b[49m\u001b[43moptimizer\u001b[49m\u001b[43m.\u001b[49m\u001b[43mzero_grad\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Code/Skola/4-rocnik/programove-vybaveni/omega/.venv/lib/python3.12/site-packages/torch/utils/data/dataloader.py:708\u001b[39m, in \u001b[36m_BaseDataLoaderIter.__next__\u001b[39m\u001b[34m(self)\u001b[39m\n\u001b[32m 705\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m._sampler_iter \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[32m 706\u001b[39m \u001b[38;5;66;03m# TODO(https://github.com/pytorch/pytorch/issues/76750)\u001b[39;00m\n\u001b[32m 707\u001b[39m \u001b[38;5;28mself\u001b[39m._reset() \u001b[38;5;66;03m# type: ignore[call-arg]\u001b[39;00m\n\u001b[32m--> \u001b[39m\u001b[32m708\u001b[39m data = \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43m_next_data\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 709\u001b[39m \u001b[38;5;28mself\u001b[39m._num_yielded += \u001b[32m1\u001b[39m\n\u001b[32m 710\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m (\n\u001b[32m 711\u001b[39m \u001b[38;5;28mself\u001b[39m._dataset_kind == _DatasetKind.Iterable\n\u001b[32m 712\u001b[39m \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;28mself\u001b[39m._IterableDataset_len_called \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[32m 713\u001b[39m \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;28mself\u001b[39m._num_yielded > \u001b[38;5;28mself\u001b[39m._IterableDataset_len_called\n\u001b[32m 714\u001b[39m ):\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Code/Skola/4-rocnik/programove-vybaveni/omega/.venv/lib/python3.12/site-packages/torch/utils/data/dataloader.py:764\u001b[39m, in \u001b[36m_SingleProcessDataLoaderIter._next_data\u001b[39m\u001b[34m(self)\u001b[39m\n\u001b[32m 762\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34m_next_data\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[32m 763\u001b[39m index = \u001b[38;5;28mself\u001b[39m._next_index() \u001b[38;5;66;03m# may raise StopIteration\u001b[39;00m\n\u001b[32m--> \u001b[39m\u001b[32m764\u001b[39m data = \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43m_dataset_fetcher\u001b[49m\u001b[43m.\u001b[49m\u001b[43mfetch\u001b[49m\u001b[43m(\u001b[49m\u001b[43mindex\u001b[49m\u001b[43m)\u001b[49m \u001b[38;5;66;03m# may raise StopIteration\u001b[39;00m\n\u001b[32m 765\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m._pin_memory:\n\u001b[32m 766\u001b[39m data = _utils.pin_memory.pin_memory(data, \u001b[38;5;28mself\u001b[39m._pin_memory_device)\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Code/Skola/4-rocnik/programove-vybaveni/omega/.venv/lib/python3.12/site-packages/torch/utils/data/_utils/fetch.py:50\u001b[39m, in \u001b[36m_MapDatasetFetcher.fetch\u001b[39m\u001b[34m(self, possibly_batched_index)\u001b[39m\n\u001b[32m 48\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m.auto_collation:\n\u001b[32m 49\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mhasattr\u001b[39m(\u001b[38;5;28mself\u001b[39m.dataset, \u001b[33m\"\u001b[39m\u001b[33m__getitems__\u001b[39m\u001b[33m\"\u001b[39m) \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;28mself\u001b[39m.dataset.__getitems__:\n\u001b[32m---> \u001b[39m\u001b[32m50\u001b[39m data = \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mdataset\u001b[49m\u001b[43m.\u001b[49m\u001b[43m__getitems__\u001b[49m\u001b[43m(\u001b[49m\u001b[43mpossibly_batched_index\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 51\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[32m 52\u001b[39m data = [\u001b[38;5;28mself\u001b[39m.dataset[idx] \u001b[38;5;28;01mfor\u001b[39;00m idx \u001b[38;5;129;01min\u001b[39;00m possibly_batched_index]\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Code/Skola/4-rocnik/programove-vybaveni/omega/.venv/lib/python3.12/site-packages/torch/utils/data/dataset.py:420\u001b[39m, in \u001b[36mSubset.__getitems__\u001b[39m\u001b[34m(self, indices)\u001b[39m\n\u001b[32m 418\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m.dataset.__getitems__([\u001b[38;5;28mself\u001b[39m.indices[idx] \u001b[38;5;28;01mfor\u001b[39;00m idx \u001b[38;5;129;01min\u001b[39;00m indices]) \u001b[38;5;66;03m# type: ignore[attr-defined]\u001b[39;00m\n\u001b[32m 419\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[32m--> \u001b[39m\u001b[32m420\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m [\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mdataset\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mindices\u001b[49m\u001b[43m[\u001b[49m\u001b[43midx\u001b[49m\u001b[43m]\u001b[49m\u001b[43m]\u001b[49m \u001b[38;5;28;01mfor\u001b[39;00m idx \u001b[38;5;129;01min\u001b[39;00m indices]\n", + "\u001b[36mFile \u001b[39m\u001b[32m~/Code/Skola/4-rocnik/programove-vybaveni/omega/.venv/lib/python3.12/site-packages/torch/utils/data/dataset.py:211\u001b[39m, in \u001b[36mTensorDataset.__getitem__\u001b[39m\u001b[34m(self, index)\u001b[39m\n\u001b[32m 210\u001b[39m \u001b[38;5;28;01mdef\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[34m__getitem__\u001b[39m(\u001b[38;5;28mself\u001b[39m, index):\n\u001b[32m--> \u001b[39m\u001b[32m211\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mtuple\u001b[39;49m\u001b[43m(\u001b[49m\u001b[43mtensor\u001b[49m\u001b[43m[\u001b[49m\u001b[43mindex\u001b[49m\u001b[43m]\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43;01mfor\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[43mtensor\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;129;43;01min\u001b[39;49;00m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43mtensors\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[31mKeyboardInterrupt\u001b[39m: " + ] + } + ], + "source": [ + "from itertools import product\n", + "\n", + "MHL = MlpHiddenLayer\n", + "\n", + "learning_rates = [1e-2, 5e-3, 1e-3, 5e-4, 1e-4]\n", + "layer_sizes = [32, 64, 128, 256]\n", + "depths = [1, 2, 3]\n", + "activation_functions = [nn.ReLU]\n", + "\n", + "all_models = []\n", + "\n", + "def train_model(model, optimizer):\n", + " for epoch in range(EPOCHS):\n", + " model.train()\n", + " total_loss = 0\n", + " for batch_X, batch_y in train_loader:\n", + " batch_X, batch_y = batch_X.to(device), batch_y.to(device)\n", + " optimizer.zero_grad()\n", + " output = model(batch_X)\n", + " loss = criterion(output, batch_y)\n", + " loss.backward()\n", + " optimizer.step()\n", + " total_loss += loss.item() / batch_X.size(0)\n", + "\n", + "def test_model(model):\n", + " model.eval()\n", + " correct_top1 = 0\n", + " correct_top3 = 0\n", + " correct_top5 = 0\n", + " total = 0\n", + "\n", + " with torch.no_grad():\n", + " for batch_X, batch_y in test_loader:\n", + " batch_X, batch_y = batch_X.to(device), batch_y.to(device)\n", + " outputs = model(batch_X)\n", + "\n", + " _, top_preds = outputs.topk(5, dim=1)\n", + "\n", + " for true, top5 in zip(batch_y, top_preds):\n", + " total += 1\n", + " if true == top5[0]:\n", + " correct_top1 += 1\n", + " if true in top5[:3]:\n", + " correct_top3 += 1\n", + " if true in top5:\n", + " correct_top5 += 1\n", + "\n", + " top1_acc = correct_top1 / total\n", + " top3_acc = correct_top3 / total\n", + " top5_acc = correct_top5 / total\n", + "\n", + " return top1_acc, top3_acc, top5_acc\n", + "\n", + "criterion = nn.CrossEntropyLoss()\n", + "\n", + "results = []\n", + "\n", + "config_id = 0\n", + "for act_fn in activation_functions:\n", + " for depth in depths:\n", + " for size_combo in product(layer_sizes, repeat=depth):\n", + " for learning_rate in learning_rates:\n", + " hidden_layers = [MlpHiddenLayer(size=s, activation_function=act_fn) for s in size_combo]\n", + " model = MLP(\n", + " hidden_layers=hidden_layers,\n", + " embedding_count=VOCAB_SIZE,\n", + " embedding_dimension_size=EMBEDDING_DIM,\n", + " input_shape_size=CONTEXT_SIZE * EMBEDDING_DIM,\n", + " output_shape=OUTPUT_SIZE,\n", + " ).to(device)\n", + "\n", + " optimizer = torch.optim.Adam(model.parameters(), lr=learning_rate)\n", + " train_model(model, optimizer)\n", + " top1, top3, top5 = test_model(model)\n", + "\n", + " results.append({\n", + " \"config_id\": config_id,\n", + " \"activation\": act_fn.__name__,\n", + " \"layer_sizes\": size_combo,\n", + " \"learning_rate\": learning_rate,\n", + " \"top1_acc\": top1,\n", + " \"top3_acc\": top3,\n", + " \"top5_acc\": top5\n", + " })\n", + "\n", + " print(f\"[#{config_id}] {act_fn.__name__} {size_combo} lr={learning_rate:.0e} → top1={top1:.2f}, top3={top3:.2f}, top5={top5:.2f}\")\n", + " config_id += 1\n", + "\n", + " del model\n", + " torch.cuda.empty_cache()\n", + "\n", + "\n", + "print(results)\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Model training" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [], + "source": [ + "MHL = MlpHiddenLayer\n", + "Relu = nn.ReLU\n", + "Gelu = nn.GELU\n", + "Silu = nn.SiLU\n", + "\n", + "sizes = [256, 128]\n", + "\n", + "\n", + "model = MLP(\n", + " hidden_layers=[MHL(size=size, activation_function=Relu) for size in sizes],\n", + " embedding_count=VOCAB_SIZE,\n", + " embedding_dimension_size=EMBEDDING_DIM,\n", + " input_shape_size=CONTEXT_SIZE * EMBEDDING_DIM,\n", + " output_shape=OUTPUT_SIZE,\n", + " ).to(device)\n", + "\n", + "criterion = nn.CrossEntropyLoss()\n", + "optimizer = torch.optim.Adam(model.parameters(), lr=LEARNING_RATE)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[Epoch #01] - Loss: 1.48195 | Accuracy: 51.54%\n", + "[Epoch #02] - Loss: 1.48260 | Accuracy: 51.51%\n", + "# Small loss difference detected (1/5)\n", + "[Epoch #03] - Loss: 1.48176 | Accuracy: 51.56%\n", + "# Small loss difference detected (2/5)\n", + "[Epoch #04] - Loss: 1.48150 | Accuracy: 51.54%\n", + "# Small loss difference detected (3/5)\n", + "[Epoch #05] - Loss: 1.48147 | Accuracy: 51.56%\n", + "# Small loss difference detected (4/5)\n", + "[Epoch #06] - Loss: 1.48097 | Accuracy: 51.60%\n", + "# Small loss difference detected (5/5)\n", + "# Loss has been too stagnant for 5 epochs.\n", + "## Ending now\n" + ] + } + ], + "source": [ + "prev_loss = float(\"inf\")\n", + "small_change_count = 0\n", + "SMALL_CHANGE_COUNT_TRIGGER = 5\n", + "\n", + "TOO_SMALL_CHANGE = 1e-3\n", + "\n", + "for epoch in range(EPOCHS):\n", + " if small_change_count >= SMALL_CHANGE_COUNT_TRIGGER:\n", + " print(f\"# Loss has been too stagnant for {SMALL_CHANGE_COUNT_TRIGGER} epochs.\\n## Ending now\")\n", + " break\n", + "\n", + " model.train()\n", + " total_loss = 0\n", + " correct = 0\n", + " total = 0\n", + "\n", + " for batch_X, batch_y in train_loader:\n", + " batch_X, batch_y = batch_X.to(device), batch_y.to(device)\n", + "\n", + " optimizer.zero_grad()\n", + " output = model(batch_X)\n", + " loss = criterion(output, batch_y)\n", + " loss.backward()\n", + " optimizer.step()\n", + "\n", + " total_loss += loss.item() * batch_X.size(0) # Multiply by batch size to sum loss\n", + " preds = torch.argmax(output, dim=1)\n", + " correct += (preds == batch_y).sum().item()\n", + " total += batch_X.size(0)\n", + "\n", + " avg_loss = total_loss / total\n", + " accuracy = correct / total * 100\n", + " print(f\"[Epoch #{(epoch+1):02}] - Loss: {avg_loss:.5f} | Accuracy: {accuracy:.2f}%\")\n", + "\n", + " if prev_loss - avg_loss < TOO_SMALL_CHANGE:\n", + " small_change_count += 1\n", + " print(f\"# Small loss difference detected ({small_change_count}/{SMALL_CHANGE_COUNT_TRIGGER})\")\n", + " else:\n", + " if small_change_count > 0:\n", + " print(\"# Loss difference increased again. Resetting counter\")\n", + " small_change_count = 0\n", + "\n", + " prev_loss = avg_loss\n" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Top 1 prediction accuracy: 49.92%\n", + "Top 3 prediction accuracy: 73.00%\n", + "Top 5 prediction accuracy: 82.72%\n" + ] + } + ], + "source": [ + "model.eval()\n", + "correct_top1 = 0\n", + "correct_top3 = 0\n", + "correct_top5 = 0\n", + "total = 0\n", + "\n", + "with torch.no_grad():\n", + " for batch_X, batch_y in test_loader:\n", + " batch_X, batch_y = batch_X.to(device), batch_y.to(device)\n", + " outputs = model(batch_X)\n", + "\n", + " _, top_preds = outputs.topk(5, dim=1)\n", + "\n", + " for true, top5 in zip(batch_y, top_preds):\n", + " total += 1\n", + " if true == top5[0]:\n", + " correct_top1 += 1\n", + " if true in top5[:3]:\n", + " correct_top3 += 1\n", + " if true in top5:\n", + " correct_top5 += 1\n", + "\n", + "top1_acc = correct_top1 / total\n", + "top3_acc = correct_top3 / total\n", + "top5_acc = correct_top5 / total\n", + "\n", + "print(f\"Top 1 prediction accuracy: {(top1_acc * 100):.2f}%\")\n", + "print(f\"Top 3 prediction accuracy: {(top3_acc * 100):.2f}%\")\n", + "print(f\"Top 5 prediction accuracy: {(top5_acc * 100):.2f}%\")" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [], + "source": [ + "embeddings = model.net[0].weight.detach().cpu().numpy()" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAj0AAAJOCAYAAABcJ7ZuAAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjEsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvc2/+5QAAAAlwSFlzAAAPYQAAD2EBqD+naQABAABJREFUeJzsnXd8JHX9/1+zNb3XS71Lcsn1yt0lB0c7qoIICIfSBdEvyg8EVEClg4gFFQVRelcOFBFPOhxFDu7Se6+Xupuym+3z+f0RPsPsZvvOZCeXz/PxuAdks/nse2dm5/Pad+UIIQQMBoPBYDAYRziqaBvAYDAYDAaDsRAw0cNgMBgMBmNJwEQPg8FgMBiMJQETPQwGg8FgMJYETPQwGAwGg8FYEjDRw2AwGAwGY0nARA+DwWAwGIwlARM9DAaDwWAwlgRM9DAYDAaDwVgSMNHDYIgoLi7GpZdeuuCv+8QTT4DjOPT09Cz4a4fC/fffjxUrVkCtVmPjxo2SrPnee++B4zi89NJLkqzHkA6O4/D9739f9teh18B7770X8LnHHXccjjvuOOHnnp4ecByHJ554Qjb7GEcOTPQolMbGRnzjG9/AihUrEBcXh4yMDOzatQv/+te/5j33uOOOA8dx4DgOKpUKSUlJKC8vx0UXXYQ333wz6Ne89NJLhXU4jkNSUhI2bNiAX//617DZbPOeX1NTgwsvvBAFBQXQ6/VIS0vD7t278fjjj8Plcs17/uTkJGJiYsBxHJqbm4O2iwoC+i8mJgYrV67E97//fYyMjAS9jhK455578I9//CPaZoTFG2+8gR/96EfYuXMnHn/8cdxzzz0B/+a9997D2WefjZycHOh0OmRlZeGMM87Ayy+/vAAWy8/HH3+M2267DZOTkwv2mrfddpvb58Hz3/Dw8ILZwmAsNjTRNoDhnd7eXszMzOCSSy7BsmXLMDs7i7179+LMM8/En//8Z3znO99xe35+fj7uvfdeAIDZbEZHRwdefvllPPPMMzjvvPPwzDPPQKvVBnxdvV6Pv/71rwDmRMrevXtxww034LPPPsMLL7wgPO+vf/0rvvvd7yI7OxsXXXQRysrKMDMzg7fffhvf/va3cfjwYdx8881ua//9738Hx3HIycnBs88+i7vuuiukY3LHHXdg+fLlsFqt+PDDD/HQQw/h9ddfR0NDA+Li4kJayxetra1QqeT7LnDPPffg3HPPxVlnneX2+EUXXYQ9e/ZAr9fL9tqR8s4770ClUuHRRx+FTqcL+Pxbb70Vd9xxB8rKynDVVVehqKgIExMTeP3113HOOefg2WefxTe/+c0FsFw+Pv74Y9x+++249NJLkZKSsqCv/dBDDyEhIWHe4wttR7QpKiqCxWIJ6v7GYIAwFg1Op5Ns2LCBlJeXuz1+7LHHkjVr1nh9/v/93/8RAORHP/pRwPUvueQSEh8f7/aYy+UiW7duJQDI4OAgIYSQTz75hKjVanL00UeT6enpeet89tln5PHHH5/3+K5du8jZZ59NrrvuOrJ8+fKA9lAef/xxAoB89tlnbo//8Ic/JADIc8895/NvTSZT0K+zEMTHx5NLLrkk2maExWWXXTbv+vDF3//+dwKAnHvuucRut8/7/b59+8i//vUvQggh7777LgFA/v73v0tqrydyXAv3338/AUC6u7slXddsNvv83a233koAkLGxMUlf0xsAyNVXXy3769Br4N133w343GOPPZYce+yxstvEODJh4a1FhFqtRkFBQdCudLVajd///vdYvXo1HnzwQUxNTYX8miqVSoif03yT22+/HRzH4dlnn0ViYuK8v9m6deu8vJi+vj7s378fe/bswZ49e9Dd3Y2PP/44ZHvEnHDCCQCA7u5uAHPhuYSEBHR2duL0009HYmIivvWtbwGY835df/31QiiuvLwcv/rVr0AIcVvTW07P5OQkrr32WuFvS0tLcd9994Hnebfn8TyP3/3ud1i3bh1iYmKQmZmJU089FZ9//jmAufwIs9mMJ598UghF0NfyldPzpz/9CWvWrIFer8eyZctw9dVXzzv/xx13HNauXYumpiYcf/zxiIuLQ15eHn75y18GdRydTifuvPNOlJSUQK/Xo7i4GDfffLNbSJPjODz++OMwm82C7f5yKH72s58hLS0Njz32mNdv4Keccgq++tWvzjt+d999N/Lz8xETE4MTTzwRHR0dbs/Zv38/vvGNb6CwsBB6vR4FBQW47rrrYLFY3J7n71oIdg0AaGlpwXnnnYfMzEzExsaivLwct9xyC4C5MNONN94IAFi+fLlwXMTn8JlnnsGWLVsQGxuLtLQ07NmzB/39/W6vQc/fwYMHsWvXLsTFxc3zkoYDzZP529/+httvvx15eXlITEzEueeei6mpKdhsNlx77bXIyspCQkICLrvsMq9hbAB49tlnUV5ejpiYGGzZsgUffPDBvOcMDg7i8ssvR3Z2NvR6PdasWYPHHnts3vMGBgZw1llnIT4+HllZWbjuuut8vu4jjzyCkpISxMbGYtu2bdi/f/+853jL6aHnf3BwEGeddRYSEhKQmZmJG264YV7ofWJiAhdddBGSkpKQkpKCSy65BLW1tfPWHB4exmWXXYb8/Hzo9Xrk5ubia1/7muLz8BjusPCWwjGbzbBYLJiamsKrr76K//znPzj//POD/nu1Wo0LLrgAP/vZz/Dhhx/iK1/5Ssg2dHZ2AgDS09MxOzuLt99+G7t27UJhYWHQazz//POIj4/HV7/6VcTGxqKkpATPPvssqqqqQrbHm10Up9OJU045BUcffTR+9atfIS4uDoQQnHnmmXj33Xfx7W9/Gxs3bsR///tf3HjjjRgcHMRvf/tbn68xOzuLY489FoODg7jqqqtQWFiIjz/+GDfddBMOHz6MBx54QHjut7/9bTzxxBM47bTTcMUVV8DpdGL//v343//+h61bt+Lpp5/GFVdcgW3btgnhyZKSEp+vfdttt+H222/H7t278b3vfQ+tra146KGH8Nlnn+Gjjz5yExNGoxGnnnoqzj77bJx33nl46aWX8OMf/xjr1q3Daaed5vc4XnHFFXjyySdx7rnn4vrrr8enn36Ke++9F83NzXjllVcAAE8//TQeeeQRHDhwQAh/+jp37e3taGlpweWXX+5VFPviF7/4BVQqFW644QZMTU3hl7/8Jb71rW/h008/FZ7z97//HbOzs/je976H9PR0HDhwAH/4wx8wMDCAv//9727rebsWQlmjrq4OxxxzDLRaLb7zne+guLgYnZ2d+Ne//oW7774bZ599Ntra2vD888/jt7/9LTIyMgAAmZmZAIC7774bP/vZz3DeeefhiiuuwNjYGP7whz9g165dqK6udgtDTUxM4LTTTsOePXtw4YUXIjs7O+DxMhgM8x7TaDTzwlv33nsvYmNj8ZOf/AQdHR34wx/+AK1WC5VKBaPRiNtuuw3/+9//8MQTT2D58uX4+c9/7vb377//Pl588UVcc8010Ov1+NOf/oRTTz0VBw4cwNq1awEAIyMj2LFjh5D4nJmZif/85z/49re/jenpaVx77bUAAIvFghNPPBF9fX245pprsGzZMjz99NN45513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E+bpUShXXXUVpqensWvXLuTl5WF4eBjPPvssWlpa8Otf/3ret+epqSnh28bs7KzQkbmzsxN79uzBnXfeKZltVVVV+OMf/4j/+7//Q0VFhVtH5vfeew+vvvoq7rrrLthsNuzduxcnnXQSYmJivK515pln4ne/+x1GR0eRlZUlmY1izjjjDBx//PG45ZZb0NPTgw0bNuCNN97AP//5T1x77bV+y8ZvvPFGvPrqq/jqV7+KSy+9FFu2bIHZbEZ9fT1eeukl9PT0ICMjA8cffzwuuugi/P73v0d7eztOPfVU8DyP/fv34/jjjxfmF23ZsgVvvfUWfvOb32DZsmVYvnw5tm/fPu91MzMzcdNNN+H222/HqaeeijPPPBOtra3405/+hKOOOkoyz9iGDRtwySWX4JFHHsHk5CSOPfZYHDhwAE8++STOOussHH/88WGte/7556O+vh533303qqurccEFFwgdmfft24e3334bzz33XEhrVlRUoKSkBDfccAMGBweRlJSEvXv3hpRYGsoav//973H00Udj8+bN+M53voPly5ejp6cH//73v1FTUwMAQoLvLbfcgj179kCr1eKMM85ASUkJ7rrrLtx0003o6enBWWedhcTERHR3d+OVV17Bd77zHdxwww0hvX9PXnrpJa9etJNOOimokvdgWbt2LU455RS3knUAbgL/F7/4Bd59911s374dV155JVavXg2DwYBDhw7hrbfeEsrrr7zySjz44IO4+OKLcfDgQeTm5uLpp5+el1Oj1Wpx11134aqrrsIJJ5yA888/H93d3Xj88ceDzukJhrPOOgvbtm3D9ddfj46ODlRUVODVV18V7KXeqLa2Npx44ok477zzsHr1amg0GrzyyisYGRnBnj17JLOHsQAsXKEYIxSef/55snv3bpKdnU00Gg1JTU0lu3fvJv/85z/nPZeWvNJ/CQkJpKysjFx44YXkjTfeCPo1gy1Jphw8eJB885vfJMuWLSNarZakpqaSE088kTz55JPE5XIJ5aCPPvqozzXee++9gOX0vjoyh2L/zMwMue666wRby8rKyP333+9WfkzI/JJ1+rc33XQTKS0tJTqdjmRkZJCqqiryq1/9yq0U2Ol0kvvvv59UVFQQnU5HMjMzyWmnnUYOHjwoPKelpYXs2rWLxMbGEgDCa3mWrFMefPBBUlFRQbRaLcnOzibf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", + "text/plain": [ + "

" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "def pca_torch(X: torch.Tensor, n_components=3):\n", + " # Center the data\n", + " X = X - X.mean(dim=0)\n", + " # Compute SVD\n", + " U, S, V = torch.pca_lowrank(X, q=n_components)\n", + " return torch.matmul(X, V[:, :n_components])\n", + "\n", + "# Extract and reduce embeddings\n", + "embeddings = model.net[0].weight.detach().cpu()\n", + "reduced = pca_torch(embeddings, n_components=3)\n", + "\n", + "# Plot using matplotlib 3D\n", + "import matplotlib.pyplot as plt\n", + "from mpl_toolkits.mplot3d import Axes3D\n", + "\n", + "fig = plt.figure(figsize=(8, 6))\n", + "ax = fig.add_subplot(111, projection='3d')\n", + "\n", + "for i, label in enumerate(ALPHABET + ['']):\n", + " x, y, z = reduced[i]\n", + " ax.scatter(x.item(), y.item(), z.item(), s=50)\n", + " ax.text(x.item(), y.item(), z.item(), label, fontsize=9)\n", + "\n", + "ax.set_title(\"3D PCA Projection of Character Embeddings\")\n", + "ax.set_xlabel(\"PC 1\")\n", + "ax.set_ylabel(\"PC 2\")\n", + "ax.set_zlabel(\"PC 3\")\n", + "plt.tight_layout()\n", + "plt.show()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Export successful -> 'model.onnx'\n" + ] + } + ], + "source": [ + "import torch.onnx\n", + "\n", + "FILENAME = \"model.onnx\"\n", + "model.eval()\n", + "\n", + "dummy_input = torch.randint(0, VOCAB_SIZE, (1, CONTEXT_SIZE), dtype=torch.long).to(device)\n", + "\n", + "torch.onnx.export(\n", + " model,\n", + " dummy_input,\n", + " FILENAME,\n", + " input_names=[\"input\"],\n", + " output_names=[\"output\"],\n", + " dynamic_axes={\n", + " \"input\": {0: \"batch_size\"},\n", + " \"output\": {0: \"batch_size\"},\n", + " },\n", + " opset_version=13\n", + ")\n", + "\n", + "print(f\"Export successful -> '{FILENAME}'\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/model/mlp_weights.pth b/model/mlp_weights.pth deleted file mode 100644 index dd6edb134a1d7101e8b4ab809078d5a0d0f4248f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 315056 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%0AM{|Gl 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

6(2^CY_H4utlP8lYTc<)%_9J$Ih&ZMX zW}@QP=eWH}4fl(;U@*7uIg0 zZ{t^ZH1Q6od3uo7`)j~t8`x;w#0 z@dx|#E!Ux)nnRA(w9~^1)9~M|(~#u-lC4*}0?n>tYo2y%dzLRGUkVNx}BazsyOOd>B=hf^HR0$T^@2UL9XS+V>op`P&YD zNM6HlTmd=&bXx!%q6&A9tP2$;SxMYRn|D7Hn2%FVt`?$?#Wd(5;4Lxa;S9+eVDaW24Ln*0;~IX0wYoX4wP6#kKeZSv?507+(^#@<;cND7 zK`zzWq=o7Fx#0cjC`e5GU(Q2^b=`9ghcd>o+PNmw(|QP$FWkg=Z@S2y!=cDuPN45e zEFGxX2a8Kifni=4BTF^#e!>S55tmMG=&d8ensR7ySp!wA@6lUwbAhi}OnsUgh{%z- zsNB7oY!bI2T@!whr6Hn%_PRng`QvrgDlwe>USo{bZ^NKxT^q*;+r!ORMrdxh9j3~r z;iJ6^pr8g|<7Zt)bhLv$U)IH(<=@6D-VcbilPwn9{f?(~7#zzx1cFuS=)O4&Yd&Vv ziF|#SW1IjbQ@zRba#QBj!2+^u%`(iDO@~-}D_q{p^{=H1X!HvqIDfgH?q1UZjb37~ zrZ@+a%desLZxQ%33G^1F=?``wAX z=bB0tRQHm@+Xg{u_6dA8*g*OhUBOkVqg3(wTRc+EG7`U+pnmv0yp~yo4<^qR-2eCt zj(+|MYnMmz^~UQGi$5}$p*al`B5h&iueHc)sw4T&kK@5*cj=owKiLH%YamZ)uHcgW z7ToEgg@F;}(4I36X$n+3h9KHs9Qe`oFUIAq6SOMR(J-E)RG(5i@gSWp-hN*WJ zVtpUS)V|XR1?xRvxuhiVRr7+`ou|og(iMKXaWSdzD@U=aQn;d_0RGE)7~OkD z$mx@G&ie=$%r2)#lV@@nBQt0{qJ@<^oFGf0lsaJ#G2qs7H{m#(4Hr}uyhf%ME{1{ApRXTq4P`bSI72r5DJP5U zdFbnu&bF}R}L#4TtMrzhT+w*wRx2zFAb?L%RgI93n(s{_%SPyphi$L93 z4xic-gZTWF7@$Du1`9o&y~b5wttH{^i9q~wK$!PxqYjiWlH*cvDh;;BZz8Y?{Wg67EzmQ*LO1Ud;(uidk6sy@_qHTa7wp46L|t9G!Ko zQ7Cl^szjcHrh^CYO??Y!WKV;lgO!YgLl~B>alj+vGs$WP1JE%wf�Bn7-4LYK|?! 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

?Cb_juP+2wT!>_4Lo-vlWe~34L2&M((-k_pfGD2 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 tuple[float]:\n", - " model.eval()\n", - " correct_top1 = 0\n", - " correct_top3 = 0\n", - " correct_top5 = 0\n", - " total = 0\n", - "\n", - " with torch.no_grad():\n", - " for batch_X, batch_y in test_loader:\n", - " batch_X, batch_y = batch_X.to(device), batch_y.to(device)\n", - " outputs = model(batch_X)\n", - "\n", - " _, top_preds = outputs.topk(5, dim=1)\n", - "\n", - " for true, top5 in zip(batch_y, top_preds):\n", - " total += 1\n", - " if true == top5[0]:\n", - " correct_top1 += 1\n", - " if true in top5[:3]:\n", - " correct_top3 += 1\n", - " if true in top5:\n", - " correct_top5 += 1\n", - "\n", - " top1_acc = correct_top1 / total\n", - " top3_acc = correct_top3 / total\n", - " top5_acc = correct_top5 / total\n", - "\n", - " return (top1_acc, top3_acc, top5_acc)\n" - ] - }, - { - "cell_type": "code", - "execution_count": 72, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Model with activation layers (, ) and learning rate 0.0001 had success of (0.44952931636286714, 0.6824383880407573, 0.788915135916511)\n", - "Model with activation layers (, ) and learning rate 0.0005 had success of (0.5080210132919649, 0.7299298381694461, 0.8241018227973064)\n", - "Model with activation layers (, ) and learning rate 0.001 had success of (0.5215950357860593, 0.7354299615696506, 0.826111483270458)\n", - "Model with activation layers (, ) and learning rate 0.005 had success of (0.5230758382399605, 0.7383563092761697, 0.8298840038077777)\n", - "Model with activation layers (, ) and learning rate 0.01 had success of (0.5206783485526919, 0.7364171632055847, 0.8278390861333428)\n", - "Model with activation layers (, ) and learning rate 0.05 had success of (0.12682015301625357, 0.29884003807777737, 0.45160949123858546)\n", - "Model with activation layers (, ) and learning rate 0.0001 had success of (0.44251313330747805, 0.6765504354264359, 0.7860240454112752)\n", - "Model with activation layers (, ) and learning rate 0.0005 had success of (0.5103127313753835, 0.7293304657476289, 0.8237492507844727)\n", - "Model with activation layers (, ) and learning rate 0.001 had success of (0.5211366921693756, 0.7379332228607693, 0.8288968021718436)\n", - "Model with activation layers (, ) and learning rate 0.005 had success of (0.5246271550964284, 0.739942883333921, 0.8305538906321617)\n", - "Model with activation layers (, ) and learning rate 0.01 had success of (0.5214892641822092, 0.7391319677044036, 0.8297077178013609)\n", - "Model with activation layers (, ) and learning rate 0.05 had success of (0.1655325600253852, 0.3544759017029228, 0.495469449635088)\n", - "Model with activation layers (, ) and learning rate 0.0001 had success of (0.44706131227303175, 0.6806755279765893, 0.7906427387793957)\n", - "Model with activation layers (, ) and learning rate 0.0005 had success of (0.5120050770369848, 0.7312343546169305, 0.8229735923562388)\n", - "Model with activation layers (, ) and learning rate 0.001 had success of (0.5179282868525896, 0.7381800232697528, 0.8289673165744104)\n", - "Model with activation layers (, ) and learning rate 0.005 had success of (0.5234636674540775, 0.7421640870147728, 0.8307654338398618)\n", - "Model with activation layers (, ) and learning rate 0.01 had success of (0.5197264041180412, 0.7384268236787364, 0.8286500017628601)\n", - "Model with activation layers (, ) and learning rate 0.05 had success of (0.12551563656876918, 0.29757077883157634, 0.45034023199238443)\n", - "Model with activation layers (, ) and learning rate 0.0001 had success of (0.4493530303564503, 0.683284560871558, 0.7907837675845292)\n", - "Model with activation layers (, ) and learning rate 0.0005 had success of (0.5151077107499207, 0.733808130310616, 0.8255121108486408)\n", - "Model with activation layers (, ) and learning rate 0.001 had success of (0.5195148609103409, 0.7389204244967035, 0.8294961745936608)\n", - "Model with activation layers (, ) and learning rate 0.005 had success of (0.5214892641822092, 0.7401896837429045, 0.8302365758206114)\n", - "Model with activation layers (, ) and learning rate 0.01 had success of (0.5198674329231746, 0.7398371117300708, 0.8258294256601911)\n", - "Model with activation layers (, ) and learning rate 0.05 had success of (0.3762648520960406, 0.6283538412720798, 0.7500617001022459)\n" - ] - } - ], - "source": [ - "for activation_layer_combination in all_activation_combinations:\n", - " for learning_rate in learning_rates:\n", - " model = MLP(activation_layer_combination).to(device)\n", - " optimizer = torch.optim.Adam(model.parameters(), lr=learning_rate)\n", - " train_model(model, optimizer)\n", - " results = test_model(model)\n", - " print(\"Model with activation layers\", activation_layer_combination, \"and learning rate\", learning_rate, \"had success of\", results)" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [], - "source": [ - "# Reuse same alphabet + mapping\n", - "alphabet = list(\"abcdefghijklmnopqrstuvwxyz\")\n", - "char_to_idx = {ch: idx for idx, ch in enumerate(alphabet)}\n", - "PAD_IDX = len(alphabet) # index 26 for OOV/padding\n", - "VOCAB_SIZE = len(alphabet) + 1 # 27 total (a–z + padding)\n", - "CONTEXT_SIZE = 10\n", - "\n", - "idx_to_char = {idx: ch for ch, idx in char_to_idx.items()}\n", - "idx_to_char[PAD_IDX] = \"_\" # for readability\n", - "\n", - "def preprocess_input(context: str) -> torch.Tensor:\n", - " context = context.lower()\n", - " padded = context.rjust(CONTEXT_SIZE, \"_\") # pad with underscores (or any 1-char symbol)\n", - "\n", - " indices = []\n", - " for ch in padded[-CONTEXT_SIZE:]:\n", - " idx = char_to_idx.get(ch, PAD_IDX) # if '_' or unknown → PAD_IDX (26)\n", - " indices.append(idx)\n", - "\n", - " return torch.tensor(indices, dtype=torch.long).unsqueeze(0).to(device)\n", - "\n", - "\n", - "def predict_next_chars(model, context: str, top_k=5):\n", - " model.eval()\n", - " input_tensor = preprocess_input(context)\n", - " with torch.no_grad():\n", - " logits = model(input_tensor)\n", - " probs = torch.softmax(logits, dim=-1)\n", - " top_probs, top_indices = probs.topk(top_k, dim=-1)\n", - "\n", - " predictions = [(idx_to_char[idx.item()], top_probs[0, i].item()) for i, idx in enumerate(top_indices[0])]\n", - " return predictions\n" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "I: 89.74 %\n", - "N: 4.42 %\n", - "Y: 1.88 %\n", - "M: 1.51 %\n", - "B: 0.90 %\n", - "E: 0.65 %\n", - "G: 0.21 %\n", - "R: 0.16 %\n", - "L: 0.15 %\n", - "O: 0.13 %\n", - "C: 0.09 %\n", - "U: 0.08 %\n", - "A: 0.05 %\n", - "V: 0.02 %\n", - "S: 0.01 %\n", - "F: 0.00 %\n", - "H: 0.00 %\n", - "T: 0.00 %\n", - "W: 0.00 %\n", - "P: 0.00 %\n" - ] - } - ], - "source": [ - "preds = predict_next_chars(model, \"susta\", top_k=20)\n", - "for char, prob in preds:\n", - " print(f\"{char.upper()}: {(prob * 100):.2f} %\")\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Model saving" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "torch.save(model, \"mlp_full_model.pth\")" - ] - }, - { - "cell_type": "code", - "execution_count": 38, - "metadata": {}, - "outputs": [], - "source": [ - "torch.save(model.state_dict(), \"mlp_weights.pth\")" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": ".venv", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.12.3" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/model/out.txt b/model/out.txt deleted file mode 100644 index 34a69a0..0000000 --- a/model/out.txt +++ /dev/null @@ -1,5817 +0,0 @@ -previous_5,previous_4,previous_3,previous_2,previous_1,current,is_start,previous_type,word_length -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,114,0,1,2 -0,0,0,97,114,99,0,2,3 -0,0,97,114,99,104,0,2,4 -0,97,114,99,104,97,0,2,5 -97,114,99,104,97,101,0,1,6 -114,99,104,97,101,97,0,1,7 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,115,0,1,2 -0,0,0,97,115,108,0,2,3 -0,0,97,115,108,101,0,2,4 -0,97,115,108,101,101,0,1,5 -97,115,108,101,101,112,0,1,6 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,115,0,1,2 -0,0,0,97,115,115,0,2,3 -0,0,97,115,115,101,0,2,4 -0,97,115,115,101,109,0,1,5 -97,115,115,101,109,98,0,2,6 -115,115,101,109,98,108,0,2,7 -115,101,109,98,108,121,0,2,8 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,115,0,1,2 -0,0,0,97,115,116,0,2,3 -0,0,97,115,116,101,0,2,4 -0,97,115,116,101,114,0,1,5 -97,115,116,101,114,111,0,2,6 -115,116,101,114,111,105,0,1,7 -116,101,114,111,105,100,0,1,8 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,119,0,1,2 -0,0,0,97,119,97,0,2,3 -0,0,97,119,97,114,0,1,4 -0,97,119,97,114,101,0,2,5 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,115,0,1,3 -0,0,98,101,115,105,0,2,4 -0,98,101,115,105,100,0,1,5 -98,101,115,105,100,101,0,2,6 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,105,0,2,2 -0,0,0,98,105,103,0,1,3 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,97,0,2,2 -0,0,0,99,97,114,0,1,3 -0,0,99,97,114,114,0,2,4 -0,99,97,114,114,105,0,2,5 -99,97,114,114,105,101,0,1,6 -97,114,114,105,101,100,0,1,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,101,0,2,2 -0,0,0,99,101,105,0,1,3 -0,0,99,101,105,108,0,1,4 -0,99,101,105,108,105,0,2,5 -99,101,105,108,105,110,0,1,6 -101,105,108,105,110,103,0,2,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,108,0,2,2 -0,0,0,99,108,97,0,2,3 -0,0,99,108,97,105,0,1,4 -0,99,108,97,105,109,0,1,5 -99,108,97,105,109,115,0,2,6 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,108,0,1,3 -0,0,99,111,108,111,0,2,4 -0,99,111,108,111,114,0,1,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,109,0,1,3 -0,0,99,111,109,112,0,2,4 -0,99,111,109,112,97,0,2,5 -99,111,109,112,97,110,0,1,6 -111,109,112,97,110,105,0,2,7 -109,112,97,110,105,101,0,1,8 -112,97,110,105,101,115,0,1,9 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,100,0,2,4 -0,99,111,110,100,105,0,2,5 -99,111,110,100,105,116,0,1,6 -111,110,100,105,116,105,0,2,7 -110,100,105,116,105,111,0,1,8 -100,105,116,105,111,110,0,1,9 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,115,0,2,4 -0,99,111,110,115,116,0,2,5 -99,111,110,115,116,114,0,2,6 -111,110,115,116,114,105,0,2,7 -110,115,116,114,105,99,0,1,8 -115,116,114,105,99,116,0,2,9 -116,114,105,99,116,111,0,2,10 -114,105,99,116,111,114,0,1,11 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,115,0,2,4 -0,99,111,110,115,117,0,2,5 -99,111,110,115,117,109,0,1,6 -111,110,115,117,109,101,0,2,7 -110,115,117,109,101,114,0,1,8 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,112,0,1,3 -0,0,99,111,112,121,0,2,4 -0,99,111,112,121,105,0,1,5 -99,111,112,121,105,110,0,1,6 -111,112,121,105,110,103,0,2,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,121,0,2,2 -0,0,0,99,121,97,0,1,3 -0,0,99,121,97,110,0,1,4 -0,99,121,97,110,111,0,2,5 -99,121,97,110,111,98,0,1,6 -121,97,110,111,98,97,0,2,7 -97,110,111,98,97,99,0,1,8 -110,111,98,97,99,116,0,2,9 -111,98,97,99,116,101,0,2,10 -98,97,99,116,101,114,0,1,11 -97,99,116,101,114,105,0,2,12 -99,116,101,114,105,97,0,1,13 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,97,0,2,2 -0,0,0,100,97,109,0,1,3 -0,0,100,97,109,97,0,2,4 -0,100,97,109,97,103,0,1,5 -100,97,109,97,103,101,0,2,6 -97,109,97,103,101,115,0,1,7 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,105,0,2,2 -0,0,0,100,105,115,0,1,3 -0,0,100,105,115,97,0,2,4 -0,100,105,115,97,112,0,1,5 -100,105,115,97,112,112,0,2,6 -105,115,97,112,112,101,0,2,7 -115,97,112,112,101,97,0,1,8 -97,112,112,101,97,114,0,1,9 -112,112,101,97,114,101,0,2,10 -112,101,97,114,101,100,0,1,11 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,105,0,2,2 -0,0,0,100,105,115,0,1,3 -0,0,100,105,115,116,0,2,4 -0,100,105,115,116,97,0,2,5 -100,105,115,116,97,110,0,1,6 -105,115,116,97,110,99,0,2,7 -115,116,97,110,99,101,0,2,8 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,105,0,2,2 -0,0,0,100,105,115,0,1,3 -0,0,100,105,115,116,0,2,4 -0,100,105,115,116,117,0,2,5 -100,105,115,116,117,114,0,1,6 -105,115,116,117,114,98,0,2,7 -115,116,117,114,98,101,0,2,8 -116,117,114,98,101,100,0,1,9 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,111,0,2,2 -0,0,0,100,111,111,0,1,3 -0,0,100,111,111,114,0,1,4 -0,100,111,111,114,119,0,2,5 -100,111,111,114,119,97,0,2,6 -111,111,114,119,97,121,0,1,7 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,114,0,2,2 -0,0,0,100,114,101,0,2,3 -0,0,100,114,101,119,0,1,4 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,114,0,2,2 -0,0,0,100,114,105,0,2,3 -0,0,100,114,105,118,0,1,4 -0,100,114,105,118,105,0,2,5 -100,114,105,118,105,110,0,1,6 -114,105,118,105,110,103,0,2,7 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,97,0,1,2 -0,0,0,101,97,115,0,1,3 -0,0,101,97,115,121,0,2,4 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,109,0,1,2 -0,0,0,101,109,105,0,2,3 -0,0,101,109,105,115,0,1,4 -0,101,109,105,115,115,0,2,5 -101,109,105,115,115,105,0,2,6 -109,105,115,115,105,111,0,1,7 -105,115,115,105,111,110,0,1,8 -115,115,105,111,110,115,0,2,9 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,110,0,1,2 -0,0,0,101,110,116,0,2,3 -0,0,101,110,116,105,0,2,4 -0,101,110,116,105,114,0,1,5 -101,110,116,105,114,101,0,2,6 -110,116,105,114,101,108,0,1,7 -116,105,114,101,108,121,0,2,8 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,115,0,1,2 -0,0,0,101,115,115,0,2,3 -0,0,101,115,115,101,0,2,4 -0,101,115,115,101,110,0,1,5 -101,115,115,101,110,116,0,2,6 -115,115,101,110,116,105,0,2,7 -115,101,110,116,105,97,0,1,8 -101,110,116,105,97,108,0,1,9 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,120,0,1,2 -0,0,0,101,120,99,0,2,3 -0,0,101,120,99,117,0,2,4 -0,101,120,99,117,115,0,1,5 -101,120,99,117,115,101,0,2,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,120,0,1,2 -0,0,0,101,120,101,0,2,3 -0,0,101,120,101,114,0,1,4 -0,101,120,101,114,99,0,2,5 -101,120,101,114,99,105,0,2,6 -120,101,114,99,105,115,0,1,7 -101,114,99,105,115,101,0,2,8 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,120,0,1,2 -0,0,0,101,120,116,0,2,3 -0,0,101,120,116,101,0,2,4 -0,101,120,116,101,110,0,1,5 -101,120,116,101,110,116,0,2,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,120,0,1,2 -0,0,0,101,120,116,0,2,3 -0,0,101,120,116,105,0,2,4 -0,101,120,116,105,110,0,1,5 -101,120,116,105,110,99,0,2,6 -120,116,105,110,99,116,0,2,7 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,120,0,1,2 -0,0,0,101,120,116,0,2,3 -0,0,101,120,116,114,0,2,4 -0,101,120,116,114,101,0,2,5 -101,120,116,114,101,109,0,1,6 -120,116,114,101,109,101,0,2,7 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,101,0,2,2 -0,0,0,102,101,101,0,1,3 -0,0,102,101,101,116,0,1,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,114,0,1,3 -0,0,102,111,114,99,0,2,4 -0,102,111,114,99,101,0,2,5 -102,111,114,99,101,100,0,1,6 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,114,0,1,3 -0,0,102,111,114,103,0,2,4 -0,102,111,114,103,111,0,2,5 -102,111,114,103,111,116,0,1,6 -111,114,103,111,116,116,0,2,7 -114,103,111,116,116,101,0,2,8 -103,111,116,116,101,110,0,1,9 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,101,0,2,2 -0,0,0,103,101,110,0,1,3 -0,0,103,101,110,101,0,2,4 -0,103,101,110,101,114,0,1,5 -103,101,110,101,114,97,0,2,6 -101,110,101,114,97,108,0,1,7 -110,101,114,97,108,108,0,2,8 -101,114,97,108,108,121,0,2,9 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,101,0,2,2 -0,0,0,103,101,116,0,1,3 -0,0,103,101,116,116,0,2,4 -0,103,101,116,116,105,0,2,5 -103,101,116,116,105,110,0,1,6 -101,116,116,105,110,103,0,2,7 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,108,0,2,2 -0,0,0,103,108,111,0,2,3 -0,0,103,108,111,98,0,1,4 -0,103,108,111,98,101,0,2,5 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,114,0,2,2 -0,0,0,103,114,101,0,2,3 -0,0,103,114,101,101,0,1,4 -0,103,114,101,101,110,0,1,5 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,114,0,2,2 -0,0,0,103,114,111,0,2,3 -0,0,103,114,111,117,0,1,4 -0,103,114,111,117,110,0,1,5 -103,114,111,117,110,100,0,2,6 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,111,0,2,2 -0,0,0,104,111,117,0,1,3 -0,0,104,111,117,114,0,1,4 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,117,0,2,2 -0,0,0,104,117,109,0,1,3 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,117,0,2,2 -0,0,0,104,117,114,0,1,3 -0,0,104,117,114,114,0,2,4 -0,104,117,114,114,105,0,2,5 -104,117,114,114,105,101,0,1,6 -117,114,114,105,101,100,0,1,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,104,0,2,2 -0,0,0,99,104,97,0,2,3 -0,0,99,104,97,114,0,1,4 -0,99,104,97,114,97,0,2,5 -99,104,97,114,97,99,0,1,6 -104,97,114,97,99,116,0,2,7 -97,114,97,99,116,101,0,2,8 -114,97,99,116,101,114,0,1,9 -97,99,116,101,114,105,0,2,10 -99,116,101,114,105,115,0,1,11 -116,101,114,105,115,116,0,2,12 -101,114,105,115,116,105,0,2,13 -114,105,115,116,105,99,0,1,14 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,104,0,2,2 -0,0,0,99,104,105,0,2,3 -0,0,99,104,105,110,0,1,4 -0,99,104,105,110,97,0,2,5 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,108,0,1,2 -0,0,0,105,108,108,0,2,3 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,100,0,2,3 -0,0,105,110,100,117,0,2,4 -0,105,110,100,117,115,0,1,5 -105,110,100,117,115,116,0,2,6 -110,100,117,115,116,114,0,2,7 -100,117,115,116,114,121,0,2,8 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,104,0,2,3 -0,0,105,110,104,97,0,2,4 -0,105,110,104,97,98,0,1,5 -105,110,104,97,98,105,0,2,6 -110,104,97,98,105,116,0,1,7 -104,97,98,105,116,101,0,2,8 -97,98,105,116,101,100,0,1,9 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,116,0,2,3 -0,0,105,110,116,101,0,2,4 -0,105,110,116,101,114,0,1,5 -105,110,116,101,114,97,0,2,6 -110,116,101,114,97,99,0,1,7 -116,101,114,97,99,116,0,2,8 -101,114,97,99,116,105,0,2,9 -114,97,99,116,105,118,0,1,10 -97,99,116,105,118,101,0,2,11 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,105,0,2,2 -0,0,0,107,105,110,0,1,3 -0,0,107,105,110,103,0,2,4 -0,107,105,110,103,100,0,2,5 -107,105,110,103,100,111,0,2,6 -105,110,103,100,111,109,0,1,7 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,110,0,2,2 -0,0,0,107,110,111,0,2,3 -0,0,107,110,111,119,0,1,4 -0,107,110,111,119,105,0,2,5 -107,110,111,119,105,110,0,1,6 -110,111,119,105,110,103,0,2,7 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,97,0,2,2 -0,0,0,108,97,116,0,1,3 -0,0,108,97,116,101,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,101,0,2,2 -0,0,0,108,101,97,0,1,3 -0,0,108,101,97,110,0,1,4 -0,108,101,97,110,116,0,2,5 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,118,0,1,3 -0,0,108,105,118,101,0,2,4 -0,108,105,118,101,115,0,1,5 -108,105,118,101,115,116,0,2,6 -105,118,101,115,116,111,0,2,7 -118,101,115,116,111,99,0,1,8 -101,115,116,111,99,107,0,2,9 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,111,0,2,2 -0,0,0,108,111,99,0,1,3 -0,0,108,111,99,97,0,2,4 -0,108,111,99,97,116,0,1,5 -108,111,99,97,116,105,0,2,6 -111,99,97,116,105,111,0,1,7 -99,97,116,105,111,110,0,1,8 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,111,0,2,2 -0,0,0,108,111,117,0,1,3 -0,0,108,111,117,100,0,1,4 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,103,0,1,3 -0,0,109,97,103,110,0,2,4 -0,109,97,103,110,105,0,2,5 -109,97,103,110,105,102,0,1,6 -97,103,110,105,102,105,0,2,7 -103,110,105,102,105,99,0,1,8 -110,105,102,105,99,101,0,2,9 -105,102,105,99,101,110,0,1,10 -102,105,99,101,110,116,0,2,11 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,105,0,1,3 -0,0,109,97,105,100,0,1,4 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,121,0,1,3 -0,0,109,97,121,98,0,1,4 -0,109,97,121,98,97,0,2,5 -109,97,121,98,97,99,0,1,6 -97,121,98,97,99,104,0,2,7 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,101,0,2,2 -0,0,0,109,101,116,0,1,3 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,105,0,2,2 -0,0,0,109,105,108,0,1,3 -0,0,109,105,108,108,0,2,4 -0,109,105,108,108,105,0,2,5 -109,105,108,108,105,111,0,1,6 -105,108,108,105,111,110,0,1,7 -108,108,105,111,110,115,0,2,8 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,105,0,2,2 -0,0,0,109,105,110,0,1,3 -0,0,109,105,110,105,0,2,4 -0,109,105,110,105,115,0,1,5 -109,105,110,105,115,116,0,2,6 -105,110,105,115,116,101,0,2,7 -110,105,115,116,101,114,0,1,8 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,105,0,2,2 -0,0,0,110,105,99,0,1,3 -0,0,110,105,99,101,0,2,4 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,105,0,2,2 -0,0,0,110,105,116,0,1,3 -0,0,110,105,116,114,0,2,4 -0,110,105,116,114,111,0,2,5 -110,105,116,114,111,103,0,1,6 -105,116,114,111,103,101,0,2,7 -116,114,111,103,101,110,0,1,8 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,111,0,2,2 -0,0,0,110,111,114,0,1,3 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,111,0,2,3 -0,0,112,114,111,98,0,1,4 -0,112,114,111,98,108,0,2,5 -112,114,111,98,108,101,0,2,6 -114,111,98,108,101,109,0,1,7 -111,98,108,101,109,115,0,2,8 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,111,0,2,3 -0,0,112,114,111,100,0,1,4 -0,112,114,111,100,117,0,2,5 -112,114,111,100,117,99,0,1,6 -114,111,100,117,99,101,0,2,7 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,111,0,2,3 -0,0,112,114,111,100,0,1,4 -0,112,114,111,100,117,0,2,5 -112,114,111,100,117,99,0,1,6 -114,111,100,117,99,101,0,2,7 -111,100,117,99,101,100,0,1,8 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,97,0,1,3 -0,0,114,101,97,99,0,1,4 -0,114,101,97,99,104,0,2,5 -114,101,97,99,104,101,0,2,6 -101,97,99,104,101,100,0,1,7 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,99,0,1,3 -0,0,114,101,99,101,0,2,4 -0,114,101,99,101,110,0,1,5 -114,101,99,101,110,116,0,2,6 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,99,0,1,3 -0,0,114,101,99,101,0,2,4 -0,114,101,99,101,110,0,1,5 -114,101,99,101,110,116,0,2,6 -101,99,101,110,116,108,0,2,7 -99,101,110,116,108,121,0,2,8 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,112,0,1,3 -0,0,114,101,112,101,0,2,4 -0,114,101,112,101,97,0,1,5 -114,101,112,101,97,116,0,1,6 -101,112,101,97,116,101,0,2,7 -112,101,97,116,101,100,0,1,8 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,112,0,1,3 -0,0,114,101,112,108,0,2,4 -0,114,101,112,108,121,0,2,5 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,115,0,1,3 -0,0,114,101,115,117,0,2,4 -0,114,101,115,117,108,0,1,5 -114,101,115,117,108,116,0,2,6 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,115,0,1,3 -0,0,114,101,115,117,0,2,4 -0,114,101,115,117,108,0,1,5 -114,101,115,117,108,116,0,2,6 -101,115,117,108,116,105,0,2,7 -115,117,108,116,105,110,0,1,8 -117,108,116,105,110,103,0,2,9 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,105,0,2,2 -0,0,0,114,105,115,0,1,3 -0,0,114,105,115,107,0,2,4 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,111,0,2,2 -0,0,0,114,111,108,0,1,3 -0,0,114,111,108,101,0,2,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,104,0,2,2 -0,0,0,115,104,111,0,2,3 -0,0,115,104,111,119,0,1,4 -0,115,104,111,119,101,0,2,5 -115,104,111,119,101,100,0,1,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,105,0,2,2 -0,0,0,115,105,103,0,1,3 -0,0,115,105,103,110,0,2,4 -0,115,105,103,110,105,0,2,5 -115,105,103,110,105,102,0,1,6 -105,103,110,105,102,105,0,2,7 -103,110,105,102,105,99,0,1,8 -110,105,102,105,99,97,0,2,9 -105,102,105,99,97,110,0,1,10 -102,105,99,97,110,116,0,2,11 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,115,111,109,0,1,3 -0,0,115,111,109,101,0,2,4 -0,115,111,109,101,111,0,1,5 -115,111,109,101,111,110,0,1,6 -111,109,101,111,110,101,0,2,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,112,0,2,2 -0,0,0,115,112,101,0,2,3 -0,0,115,112,101,97,0,1,4 -0,115,112,101,97,107,0,1,5 -115,112,101,97,107,105,0,2,6 -112,101,97,107,105,110,0,1,7 -101,97,107,105,110,103,0,2,8 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,112,0,2,2 -0,0,0,115,112,114,0,2,3 -0,0,115,112,114,101,0,2,4 -0,115,112,114,101,97,0,1,5 -115,112,114,101,97,100,0,1,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,97,0,2,3 -0,0,115,116,97,114,0,1,4 -0,115,116,97,114,116,0,2,5 -115,116,97,114,116,101,0,2,6 -116,97,114,116,101,100,0,1,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,111,0,2,3 -0,0,115,116,111,112,0,1,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,117,0,2,3 -0,0,115,116,117,100,0,1,4 -0,115,116,117,100,121,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,117,0,2,2 -0,0,0,115,117,98,0,1,3 -0,0,115,117,98,106,0,2,4 -0,115,117,98,106,101,0,2,5 -115,117,98,106,101,99,0,1,6 -117,98,106,101,99,116,0,2,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,117,0,2,2 -0,0,0,115,117,98,0,1,3 -0,0,115,117,98,115,0,2,4 -0,115,117,98,115,117,0,2,5 -115,117,98,115,117,114,0,1,6 -117,98,115,117,114,102,0,2,7 -98,115,117,114,102,97,0,2,8 -115,117,114,102,97,99,0,1,9 -117,114,102,97,99,101,0,2,10 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,117,0,2,2 -0,0,0,115,117,112,0,1,3 -0,0,115,117,112,112,0,2,4 -0,115,117,112,112,111,0,2,5 -115,117,112,112,111,114,0,1,6 -117,112,112,111,114,116,0,2,7 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,97,0,2,2 -0,0,0,116,97,108,0,1,3 -0,0,116,97,108,107,0,2,4 -0,116,97,108,107,105,0,2,5 -116,97,108,107,105,110,0,1,6 -97,108,107,105,110,103,0,2,7 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,97,0,2,2 -0,0,0,116,97,109,0,1,3 -0,0,116,97,109,101,0,2,4 -0,116,97,109,101,100,0,1,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,97,0,2,2 -0,0,0,116,97,120,0,1,3 -0,0,116,97,120,111,0,2,4 -0,116,97,120,111,110,0,1,5 -116,97,120,111,110,111,0,2,6 -97,120,111,110,111,109,0,1,7 -120,111,110,111,109,105,0,2,8 -111,110,111,109,105,99,0,1,9 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,105,0,2,2 -0,0,0,116,105,116,0,1,3 -0,0,116,105,116,97,0,2,4 -0,116,105,116,97,110,0,1,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,114,0,2,2 -0,0,0,116,114,97,0,2,3 -0,0,116,114,97,118,0,1,4 -0,116,114,97,118,101,0,2,5 -116,114,97,118,101,108,0,1,6 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,114,0,2,2 -0,0,0,116,114,97,0,2,3 -0,0,116,114,97,118,0,1,4 -0,116,114,97,118,101,0,2,5 -116,114,97,118,101,108,0,1,6 -114,97,118,101,108,108,0,2,7 -97,118,101,108,108,105,0,2,8 -118,101,108,108,105,110,0,1,9 -101,108,108,105,110,103,0,2,10 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,114,0,2,2 -0,0,0,116,114,101,0,2,3 -0,0,116,114,101,101,0,1,4 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,110,0,1,2 -0,0,0,117,110,97,0,2,3 -0,0,117,110,97,98,0,1,4 -0,117,110,97,98,108,0,2,5 -117,110,97,98,108,101,0,2,6 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,110,0,1,2 -0,0,0,117,110,102,0,2,3 -0,0,117,110,102,111,0,2,4 -0,117,110,102,111,114,0,1,5 -117,110,102,111,114,116,0,2,6 -110,102,111,114,116,117,0,2,7 -102,111,114,116,117,110,0,1,8 -111,114,116,117,110,97,0,2,9 -114,116,117,110,97,116,0,1,10 -116,117,110,97,116,101,0,2,11 -117,110,97,116,101,108,0,1,12 -110,97,116,101,108,121,0,2,13 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,110,0,1,2 -0,0,0,117,110,105,0,2,3 -0,0,117,110,105,102,0,1,4 -0,117,110,105,102,111,0,2,5 -117,110,105,102,111,114,0,1,6 -110,105,102,111,114,109,0,2,7 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,97,0,2,2 -0,0,0,119,97,108,0,1,3 -0,0,119,97,108,108,0,2,4 -0,119,97,108,108,115,0,2,5 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,101,0,2,2 -0,0,0,119,101,101,0,1,3 -0,0,119,101,101,107,0,1,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,104,0,2,2 -0,0,0,119,104,97,0,2,3 -0,0,119,104,97,116,0,1,4 -0,119,104,97,116,101,0,2,5 -119,104,97,116,101,118,0,1,6 -104,97,116,101,118,101,0,2,7 -97,116,101,118,101,114,0,1,8 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,104,0,2,2 -0,0,0,119,104,101,0,2,3 -0,0,119,104,101,114,0,1,4 -0,119,104,101,114,101,0,2,5 -119,104,101,114,101,97,0,1,6 -104,101,114,101,97,115,0,1,7 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,111,0,2,2 -0,0,0,119,111,114,0,1,3 -0,0,119,111,114,107,0,2,4 -0,119,111,114,107,105,0,2,5 -119,111,114,107,105,110,0,1,6 -111,114,107,105,110,103,0,2,7 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,99,0,1,2 -0,0,0,97,99,99,0,2,3 -0,0,97,99,99,101,0,2,4 -0,97,99,99,101,115,0,1,5 -97,99,99,101,115,115,0,2,6 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,99,0,1,2 -0,0,0,97,99,116,0,2,3 -0,0,97,99,116,117,0,2,4 -0,97,99,116,117,97,0,1,5 -97,99,116,117,97,108,0,1,6 -99,116,117,97,108,108,0,2,7 -116,117,97,108,108,121,0,2,8 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,109,0,1,2 -0,0,0,97,109,111,0,2,3 -0,0,97,109,111,117,0,1,4 -0,97,109,111,117,110,0,1,5 -97,109,111,117,110,116,0,2,6 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,117,0,1,2 -0,0,0,97,117,116,0,1,3 -0,0,97,117,116,104,0,2,4 -0,97,117,116,104,111,0,2,5 -97,117,116,104,111,114,0,1,6 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,117,0,1,2 -0,0,0,97,117,116,0,1,3 -0,0,97,117,116,104,0,2,4 -0,97,117,116,104,111,0,2,5 -97,117,116,104,111,114,0,1,6 -117,116,104,111,114,115,0,2,7 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,117,0,1,2 -0,0,0,97,117,116,0,1,3 -0,0,97,117,116,111,0,2,4 -0,97,117,116,111,109,0,1,5 -97,117,116,111,109,111,0,2,6 -117,116,111,109,111,98,0,1,7 -116,111,109,111,98,105,0,2,8 -111,109,111,98,105,108,0,1,9 -109,111,98,105,108,101,0,2,10 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,117,0,1,2 -0,0,0,97,117,116,0,1,3 -0,0,97,117,116,111,0,2,4 -0,97,117,116,111,109,0,1,5 -97,117,116,111,109,111,0,2,6 -117,116,111,109,111,116,0,1,7 -116,111,109,111,116,105,0,2,8 -111,109,111,116,105,118,0,1,9 -109,111,116,105,118,101,0,2,10 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,97,0,2,2 -0,0,0,98,97,99,0,1,3 -0,0,98,97,99,116,0,2,4 -0,98,97,99,116,101,0,2,5 -98,97,99,116,101,114,0,1,6 -97,99,116,101,114,105,0,2,7 -99,116,101,114,105,97,0,1,8 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,114,0,2,2 -0,0,0,98,114,101,0,2,3 -0,0,98,114,101,97,0,1,4 -0,98,114,101,97,107,0,1,5 -98,114,101,97,107,102,0,2,6 -114,101,97,107,102,97,0,2,7 -101,97,107,102,97,115,0,1,8 -97,107,102,97,115,116,0,2,9 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,97,0,2,2 -0,0,0,99,97,115,0,1,3 -0,0,99,97,115,101,0,2,4 -0,99,97,115,101,115,0,1,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,105,0,2,2 -0,0,0,99,105,116,0,1,3 -0,0,99,105,116,105,0,2,4 -0,99,105,116,105,101,0,1,5 -99,105,116,105,101,115,0,1,6 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,108,0,2,2 -0,0,0,99,108,101,0,2,3 -0,0,99,108,101,97,0,1,4 -0,99,108,101,97,110,0,1,5 -99,108,101,97,110,101,0,2,6 -108,101,97,110,101,114,0,1,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,108,0,1,3 -0,0,99,111,108,100,0,2,4 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,109,0,1,3 -0,0,99,111,109,101,0,2,4 -0,99,111,109,101,115,0,1,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,109,0,1,3 -0,0,99,111,109,109,0,2,4 -0,99,111,109,109,111,0,2,5 -99,111,109,109,111,110,0,1,6 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,109,0,1,3 -0,0,99,111,109,112,0,2,4 -0,99,111,109,112,108,0,2,5 -99,111,109,112,108,101,0,2,6 -111,109,112,108,101,120,0,1,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,109,0,1,3 -0,0,99,111,109,112,0,2,4 -0,99,111,109,112,111,0,2,5 -99,111,109,112,111,115,0,1,6 -111,109,112,111,115,105,0,2,7 -109,112,111,115,105,116,0,1,8 -112,111,115,105,116,105,0,2,9 -111,115,105,116,105,111,0,1,10 -115,105,116,105,111,110,0,1,11 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,115,0,2,4 -0,99,111,110,115,105,0,2,5 -99,111,110,115,105,100,0,1,6 -111,110,115,105,100,101,0,2,7 -110,115,105,100,101,114,0,1,8 -115,105,100,101,114,101,0,2,9 -105,100,101,114,101,100,0,1,10 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,116,0,2,4 -0,99,111,110,116,101,0,2,5 -99,111,110,116,101,110,0,1,6 -111,110,116,101,110,116,0,2,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,118,0,2,4 -0,99,111,110,118,101,0,2,5 -99,111,110,118,101,114,0,1,6 -111,110,118,101,114,115,0,2,7 -110,118,101,114,115,97,0,2,8 -118,101,114,115,97,116,0,1,9 -101,114,115,97,116,105,0,2,10 -114,115,97,116,105,111,0,1,11 -115,97,116,105,111,110,0,1,12 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,115,0,1,3 -0,0,99,111,115,116,0,2,4 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,101,0,2,2 -0,0,0,100,101,97,0,1,3 -0,0,100,101,97,116,0,1,4 -0,100,101,97,116,104,0,2,5 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,101,0,2,2 -0,0,0,100,101,118,0,1,3 -0,0,100,101,118,101,0,2,4 -0,100,101,118,101,108,0,1,5 -100,101,118,101,108,111,0,2,6 -101,118,101,108,111,112,0,1,7 -118,101,108,111,112,109,0,2,8 -101,108,111,112,109,101,0,2,9 -108,111,112,109,101,110,0,1,10 -111,112,109,101,110,116,0,2,11 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,114,0,2,2 -0,0,0,100,114,97,0,2,3 -0,0,100,114,97,119,0,1,4 -0,100,114,97,119,101,0,2,5 -100,114,97,119,101,114,0,1,6 -114,97,119,101,114,115,0,2,7 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,114,0,2,2 -0,0,0,100,114,97,0,2,3 -0,0,100,114,97,119,0,1,4 -0,100,114,97,119,110,0,2,5 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,114,0,2,2 -0,0,0,100,114,105,0,2,3 -0,0,100,114,105,118,0,1,4 -0,100,114,105,118,101,0,2,5 -100,114,105,118,101,110,0,1,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,97,0,1,2 -0,0,0,101,97,116,0,1,3 -0,0,101,97,116,105,0,2,4 -0,101,97,116,105,110,0,1,5 -101,97,116,105,110,103,0,2,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,102,0,1,2 -0,0,0,101,102,102,0,2,3 -0,0,101,102,102,111,0,2,4 -0,101,102,102,111,114,0,1,5 -101,102,102,111,114,116,0,2,6 -102,102,111,114,116,115,0,2,7 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,108,0,1,2 -0,0,0,101,108,101,0,2,3 -0,0,101,108,101,109,0,1,4 -0,101,108,101,109,101,0,2,5 -101,108,101,109,101,110,0,1,6 -108,101,109,101,110,116,0,2,7 -101,109,101,110,116,115,0,2,8 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,110,0,1,2 -0,0,0,101,110,118,0,2,3 -0,0,101,110,118,105,0,2,4 -0,101,110,118,105,114,0,1,5 -101,110,118,105,114,111,0,2,6 -110,118,105,114,111,110,0,1,7 -118,105,114,111,110,109,0,2,8 -105,114,111,110,109,101,0,2,9 -114,111,110,109,101,110,0,1,10 -111,110,109,101,110,116,0,2,11 -110,109,101,110,116,97,0,2,12 -109,101,110,116,97,108,0,1,13 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,115,0,1,2 -0,0,0,101,115,116,0,2,3 -0,0,101,115,116,105,0,2,4 -0,101,115,116,105,109,0,1,5 -101,115,116,105,109,97,0,2,6 -115,116,105,109,97,116,0,1,7 -116,105,109,97,116,101,0,2,8 -105,109,97,116,101,100,0,1,9 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,117,0,1,2 -0,0,0,101,117,114,0,1,3 -0,0,101,117,114,111,0,2,4 -0,101,117,114,111,112,0,1,5 -101,117,114,111,112,101,0,2,6 -117,114,111,112,101,97,0,1,7 -114,111,112,101,97,110,0,1,8 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,97,0,2,2 -0,0,0,102,97,99,0,1,3 -0,0,102,97,99,116,0,2,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,105,0,2,2 -0,0,0,102,105,101,0,1,3 -0,0,102,105,101,108,0,1,4 -0,102,105,101,108,100,0,2,5 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,108,0,1,3 -0,0,102,111,108,108,0,2,4 -0,102,111,108,108,111,0,2,5 -102,111,108,108,111,119,0,1,6 -111,108,108,111,119,101,0,2,7 -108,108,111,119,101,100,0,1,8 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,117,0,2,2 -0,0,0,102,117,108,0,1,3 -0,0,102,117,108,108,0,2,4 -0,102,117,108,108,121,0,2,5 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,108,0,2,2 -0,0,0,103,108,97,0,2,3 -0,0,103,108,97,100,0,1,4 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,108,0,2,2 -0,0,0,103,108,97,0,2,3 -0,0,103,108,97,115,0,1,4 -0,103,108,97,115,115,0,2,5 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,97,0,2,2 -0,0,0,104,97,98,0,1,3 -0,0,104,97,98,105,0,2,4 -0,104,97,98,105,116,0,1,5 -104,97,98,105,116,97,0,2,6 -97,98,105,116,97,98,0,1,7 -98,105,116,97,98,105,0,2,8 -105,116,97,98,105,108,0,1,9 -116,97,98,105,108,105,0,2,10 -97,98,105,108,105,116,0,1,11 -98,105,108,105,116,121,0,2,12 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,101,0,2,2 -0,0,0,104,101,97,0,1,3 -0,0,104,101,97,118,0,1,4 -0,104,101,97,118,121,0,2,5 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,105,0,2,2 -0,0,0,104,105,103,0,1,3 -0,0,104,105,103,104,0,2,4 -0,104,105,103,104,101,0,2,5 -104,105,103,104,101,114,0,1,6 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,111,0,2,2 -0,0,0,104,111,112,0,1,3 -0,0,104,111,112,101,0,2,4 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,104,0,2,2 -0,0,0,99,104,97,0,2,3 -0,0,99,104,97,114,0,1,4 -0,99,104,97,114,119,0,2,5 -99,104,97,114,119,111,0,2,6 -104,97,114,119,111,109,0,1,7 -97,114,119,111,109,97,0,2,8 -114,119,111,109,97,110,0,1,9 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,109,0,1,2 -0,0,0,105,109,112,0,2,3 -0,0,105,109,112,97,0,2,4 -0,105,109,112,97,99,0,1,5 -105,109,112,97,99,116,0,2,6 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,99,0,2,3 -0,0,105,110,99,114,0,2,4 -0,105,110,99,114,101,0,2,5 -105,110,99,114,101,97,0,1,6 -110,99,114,101,97,115,0,1,7 -99,114,101,97,115,101,0,2,8 -114,101,97,115,101,100,0,1,9 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,100,0,2,3 -0,0,105,110,100,105,0,2,4 -0,105,110,100,105,99,0,1,5 -105,110,100,105,99,97,0,2,6 -110,100,105,99,97,116,0,1,7 -100,105,99,97,116,101,0,2,8 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,100,0,2,3 -0,0,105,110,100,105,0,2,4 -0,105,110,100,105,118,0,1,5 -105,110,100,105,118,105,0,2,6 -110,100,105,118,105,100,0,1,7 -100,105,118,105,100,117,0,2,8 -105,118,105,100,117,97,0,1,9 -118,105,100,117,97,108,0,1,10 -105,100,117,97,108,115,0,2,11 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,116,0,2,3 -0,0,105,110,116,101,0,2,4 -0,105,110,116,101,110,0,1,5 -105,110,116,101,110,100,0,2,6 -110,116,101,110,100,101,0,2,7 -116,101,110,100,101,100,0,1,8 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,116,0,2,3 -0,0,105,110,116,101,0,2,4 -0,105,110,116,101,114,0,1,5 -105,110,116,101,114,102,0,2,6 -110,116,101,114,102,97,0,2,7 -116,101,114,102,97,99,0,1,8 -101,114,102,97,99,101,0,2,9 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,116,0,1,2 -0,0,0,105,116,115,0,2,3 -0,0,105,116,115,101,0,2,4 -0,105,116,115,101,108,0,1,5 -105,116,115,101,108,102,0,2,6 -0,0,0,0,0,106,1,0,1 -0,0,0,0,106,117,0,2,2 -0,0,0,106,117,100,0,1,3 -0,0,106,117,100,103,0,2,4 -0,106,117,100,103,101,0,2,5 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,105,0,2,2 -0,0,0,107,105,110,0,1,3 -0,0,107,105,110,103,0,2,4 -0,107,105,110,103,100,0,2,5 -107,105,110,103,100,111,0,2,6 -105,110,103,100,111,109,0,1,7 -110,103,100,111,109,115,0,2,8 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,97,0,2,2 -0,0,0,108,97,110,0,1,3 -0,0,108,97,110,100,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,115,0,1,3 -0,0,108,105,115,116,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,118,0,1,3 -0,0,108,105,118,101,0,2,4 -0,108,105,118,101,100,0,1,5 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,105,0,1,3 -0,0,109,97,105,110,0,1,4 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,105,0,2,2 -0,0,0,109,105,110,0,1,3 -0,0,109,105,110,117,0,2,4 -0,109,105,110,117,116,0,1,5 -109,105,110,117,116,101,0,2,6 -105,110,117,116,101,115,0,1,7 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,116,0,1,3 -0,0,109,111,116,111,0,2,4 -0,109,111,116,111,114,0,1,5 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,117,0,1,3 -0,0,109,111,117,116,0,1,4 -0,109,111,117,116,104,0,2,5 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,101,0,2,2 -0,0,0,110,101,97,0,1,3 -0,0,110,101,97,114,0,1,4 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,111,0,2,2 -0,0,0,110,111,116,0,1,3 -0,0,110,111,116,105,0,2,4 -0,110,111,116,105,99,0,1,5 -110,111,116,105,99,101,0,2,6 -111,116,105,99,101,100,0,1,7 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,97,0,2,2 -0,0,0,112,97,115,0,1,3 -0,0,112,97,115,116,0,2,4 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,101,0,2,2 -0,0,0,112,101,114,0,1,3 -0,0,112,101,114,109,0,2,4 -0,112,101,114,109,105,0,2,5 -112,101,114,109,105,116,0,1,6 -101,114,109,105,116,116,0,2,7 -114,109,105,116,116,101,0,2,8 -109,105,116,116,101,100,0,1,9 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,108,0,2,2 -0,0,0,112,108,97,0,2,3 -0,0,112,108,97,121,0,1,4 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,111,0,2,2 -0,0,0,112,111,119,0,1,3 -0,0,112,111,119,101,0,2,4 -0,112,111,119,101,114,0,1,5 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,101,0,2,3 -0,0,112,114,101,115,0,1,4 -0,112,114,101,115,101,0,2,5 -112,114,101,115,101,110,0,1,6 -114,101,115,101,110,99,0,2,7 -101,115,101,110,99,101,0,2,8 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,105,0,2,3 -0,0,112,114,105,99,0,1,4 -0,112,114,105,99,101,0,2,5 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,105,0,2,3 -0,0,112,114,105,109,0,1,4 -0,112,114,105,109,97,0,2,5 -112,114,105,109,97,114,0,1,6 -114,105,109,97,114,121,0,2,7 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,111,0,2,3 -0,0,112,114,111,116,0,1,4 -0,112,114,111,116,105,0,2,5 -112,114,111,116,105,115,0,1,6 -114,111,116,105,115,116,0,2,7 -111,116,105,115,116,115,0,2,8 -0,0,0,0,0,113,1,0,1 -0,0,0,0,113,117,0,2,2 -0,0,0,113,117,101,0,1,3 -0,0,113,117,101,115,0,1,4 -0,113,117,101,115,116,0,2,5 -113,117,101,115,116,105,0,2,6 -117,101,115,116,105,111,0,1,7 -101,115,116,105,111,110,0,1,8 -115,116,105,111,110,115,0,2,9 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,97,0,2,2 -0,0,0,114,97,100,0,1,3 -0,0,114,97,100,105,0,2,4 -0,114,97,100,105,97,0,1,5 -114,97,100,105,97,116,0,1,6 -97,100,105,97,116,105,0,2,7 -100,105,97,116,105,111,0,1,8 -105,97,116,105,111,110,0,1,9 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,97,0,1,3 -0,0,114,101,97,100,0,1,4 -0,114,101,97,100,121,0,2,5 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,100,0,1,3 -0,0,114,101,100,105,0,2,4 -0,114,101,100,105,115,0,1,5 -114,101,100,105,115,116,0,2,6 -101,100,105,115,116,114,0,2,7 -100,105,115,116,114,105,0,2,8 -105,115,116,114,105,98,0,1,9 -115,116,114,105,98,117,0,2,10 -116,114,105,98,117,116,0,1,11 -114,105,98,117,116,101,0,2,12 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,109,0,1,3 -0,0,114,101,109,101,0,2,4 -0,114,101,109,101,109,0,1,5 -114,101,109,101,109,98,0,2,6 -101,109,101,109,98,101,0,2,7 -109,101,109,98,101,114,0,1,8 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,113,0,1,3 -0,0,114,101,113,117,0,2,4 -0,114,101,113,117,105,0,1,5 -114,101,113,117,105,114,0,1,6 -101,113,117,105,114,101,0,2,7 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,115,0,1,3 -0,0,114,101,115,101,0,2,4 -0,114,101,115,101,97,0,1,5 -114,101,115,101,97,114,0,1,6 -101,115,101,97,114,99,0,2,7 -115,101,97,114,99,104,0,2,8 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,115,0,1,3 -0,0,114,101,115,112,0,2,4 -0,114,101,115,112,111,0,2,5 -114,101,115,112,111,110,0,1,6 -101,115,112,111,110,115,0,2,7 -115,112,111,110,115,105,0,2,8 -112,111,110,115,105,98,0,1,9 -111,110,115,105,98,108,0,2,10 -110,115,105,98,108,101,0,2,11 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,101,0,1,3 -0,0,115,101,101,109,0,1,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,110,0,1,3 -0,0,115,101,110,100,0,2,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,114,0,1,3 -0,0,115,101,114,118,0,2,4 -0,115,101,114,118,105,0,2,5 -115,101,114,118,105,99,0,1,6 -101,114,118,105,99,101,0,2,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,104,0,2,2 -0,0,0,115,104,97,0,2,3 -0,0,115,104,97,114,0,1,4 -0,115,104,97,114,101,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,105,0,2,2 -0,0,0,115,105,108,0,1,3 -0,0,115,105,108,101,0,2,4 -0,115,105,108,101,110,0,1,5 -115,105,108,101,110,116,0,2,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,105,0,2,2 -0,0,0,115,105,109,0,1,3 -0,0,115,105,109,112,0,2,4 -0,115,105,109,112,108,0,2,5 -115,105,109,112,108,121,0,2,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,105,0,2,2 -0,0,0,115,105,116,0,1,3 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,110,0,2,2 -0,0,0,115,110,111,0,2,3 -0,0,115,110,111,119,0,1,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,115,111,114,0,1,3 -0,0,115,111,114,116,0,2,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,112,0,2,2 -0,0,0,115,112,97,0,2,3 -0,0,115,112,97,99,0,1,4 -0,115,112,97,99,101,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,112,0,2,2 -0,0,0,115,112,101,0,2,3 -0,0,115,112,101,99,0,1,4 -0,115,112,101,99,105,0,2,5 -115,112,101,99,105,97,0,1,6 -112,101,99,105,97,108,0,1,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,117,0,2,3 -0,0,115,116,117,100,0,1,4 -0,115,116,117,100,105,0,2,5 -115,116,117,100,105,101,0,1,6 -116,117,100,105,101,115,0,1,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,117,0,2,2 -0,0,0,115,117,105,0,1,3 -0,0,115,117,105,116,0,1,4 -0,115,117,105,116,97,0,2,5 -115,117,105,116,97,98,0,1,6 -117,105,116,97,98,108,0,2,7 -105,116,97,98,108,101,0,2,8 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,119,0,2,2 -0,0,0,115,119,105,0,2,3 -0,0,115,119,105,116,0,1,4 -0,115,119,105,116,99,0,2,5 -115,119,105,116,99,104,0,2,6 -119,105,116,99,104,109,0,2,7 -105,116,99,104,109,97,0,2,8 -116,99,104,109,97,110,0,1,9 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,97,0,2,2 -0,0,0,116,97,109,0,1,3 -0,0,116,97,109,101,0,2,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,117,0,2,2 -0,0,0,116,117,114,0,1,3 -0,0,116,117,114,110,0,2,4 -0,116,117,114,110,105,0,2,5 -116,117,114,110,105,110,0,1,6 -117,114,110,105,110,103,0,2,7 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,110,0,1,2 -0,0,0,117,110,108,0,2,3 -0,0,117,110,108,101,0,2,4 -0,117,110,108,101,115,0,1,5 -117,110,108,101,115,115,0,2,6 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,115,0,1,2 -0,0,0,117,115,101,0,2,3 -0,0,117,115,101,102,0,1,4 -0,117,115,101,102,117,0,2,5 -117,115,101,102,117,108,0,1,6 -0,0,0,0,0,118,1,0,1 -0,0,0,0,118,97,0,2,2 -0,0,0,118,97,114,0,1,3 -0,0,118,97,114,105,0,2,4 -0,118,97,114,105,111,0,1,5 -118,97,114,105,111,117,0,1,6 -97,114,105,111,117,115,0,1,7 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,104,0,2,2 -0,0,0,119,104,101,0,2,3 -0,0,119,104,101,110,0,1,4 -0,119,104,101,110,101,0,2,5 -119,104,101,110,101,118,0,1,6 -104,101,110,101,118,101,0,2,7 -101,110,101,118,101,114,0,1,8 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,111,0,2,2 -0,0,0,119,111,114,0,1,3 -0,0,119,111,114,108,0,2,4 -0,119,111,114,108,100,0,2,5 -119,111,114,108,100,119,0,2,6 -111,114,108,100,119,105,0,2,7 -114,108,100,119,105,100,0,1,8 -108,100,119,105,100,101,0,2,9 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,114,0,2,2 -0,0,0,119,114,105,0,2,3 -0,0,119,114,105,116,0,1,4 -0,119,114,105,116,105,0,2,5 -119,114,105,116,105,110,0,1,6 -114,105,116,105,110,103,0,2,7 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,102,0,1,2 -0,0,0,97,102,114,0,2,3 -0,0,97,102,114,97,0,2,4 -0,97,102,114,97,105,0,1,5 -97,102,114,97,105,100,0,1,6 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,114,0,2,2 -0,0,0,98,114,97,0,2,3 -0,0,98,114,97,107,0,1,4 -0,98,114,97,107,101,0,2,5 -98,114,97,107,101,115,0,1,6 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,114,0,2,2 -0,0,0,98,114,111,0,2,3 -0,0,98,114,111,117,0,1,4 -0,98,114,111,117,103,0,1,5 -98,114,111,117,103,104,0,2,6 -114,111,117,103,104,116,0,2,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,108,0,2,2 -0,0,0,99,108,111,0,2,3 -0,0,99,108,111,115,0,1,4 -0,99,108,111,115,101,0,2,5 -99,108,111,115,101,100,0,1,6 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,115,0,2,4 -0,99,111,110,115,105,0,2,5 -99,111,110,115,105,100,0,1,6 -111,110,115,105,100,101,0,2,7 -110,115,105,100,101,114,0,1,8 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,115,0,1,3 -0,0,99,111,115,116,0,2,4 -0,99,111,115,116,115,0,2,5 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,101,0,2,2 -0,0,0,100,101,109,0,1,3 -0,0,100,101,109,97,0,2,4 -0,100,101,109,97,110,0,1,5 -100,101,109,97,110,100,0,2,6 -101,109,97,110,100,101,0,2,7 -109,97,110,100,101,100,0,1,8 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,101,0,2,2 -0,0,0,100,101,115,0,1,3 -0,0,100,101,115,107,0,2,4 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,101,0,2,2 -0,0,0,100,101,116,0,1,3 -0,0,100,101,116,97,0,2,4 -0,100,101,116,97,105,0,1,5 -100,101,116,97,105,108,0,1,6 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,117,0,2,2 -0,0,0,100,117,101,0,1,3 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,97,0,1,2 -0,0,0,101,97,115,0,1,3 -0,0,101,97,115,105,0,2,4 -0,101,97,115,105,108,0,1,5 -101,97,115,105,108,121,0,2,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,110,0,1,2 -0,0,0,101,110,103,0,2,3 -0,0,101,110,103,105,0,2,4 -0,101,110,103,105,110,0,1,5 -101,110,103,105,110,101,0,2,6 -110,103,105,110,101,115,0,1,7 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,110,0,1,2 -0,0,0,101,110,118,0,2,3 -0,0,101,110,118,105,0,2,4 -0,101,110,118,105,114,0,1,5 -101,110,118,105,114,111,0,2,6 -110,118,105,114,111,110,0,1,7 -118,105,114,111,110,109,0,2,8 -105,114,111,110,109,101,0,2,9 -114,111,110,109,101,110,0,1,10 -111,110,109,101,110,116,0,2,11 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,120,0,1,2 -0,0,0,101,120,101,0,2,3 -0,0,101,120,101,99,0,1,4 -0,101,120,101,99,117,0,2,5 -101,120,101,99,117,116,0,1,6 -120,101,99,117,116,97,0,2,7 -101,99,117,116,97,98,0,1,8 -99,117,116,97,98,108,0,2,9 -117,116,97,98,108,101,0,2,10 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,120,0,1,2 -0,0,0,101,120,112,0,2,3 -0,0,101,120,112,101,0,2,4 -0,101,120,112,101,99,0,1,5 -101,120,112,101,99,116,0,2,6 -120,112,101,99,116,101,0,2,7 -112,101,99,116,101,100,0,1,8 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,105,0,2,2 -0,0,0,102,105,110,0,1,3 -0,0,102,105,110,105,0,2,4 -0,102,105,110,105,115,0,1,5 -102,105,110,105,115,104,0,2,6 -105,110,105,115,104,101,0,2,7 -110,105,115,104,101,100,0,1,8 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,105,0,2,2 -0,0,0,102,105,115,0,1,3 -0,0,102,105,115,104,0,2,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,108,0,1,3 -0,0,102,111,108,108,0,2,4 -0,102,111,108,108,111,0,2,5 -102,111,108,108,111,119,0,1,6 -111,108,108,111,119,105,0,2,7 -108,108,111,119,105,110,0,1,8 -108,111,119,105,110,103,0,2,9 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,114,0,1,3 -0,0,102,111,114,99,0,2,4 -0,102,111,114,99,101,0,2,5 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,101,0,2,2 -0,0,0,103,101,110,0,1,3 -0,0,103,101,110,116,0,2,4 -0,103,101,110,116,108,0,2,5 -103,101,110,116,108,101,0,2,6 -101,110,116,108,101,109,0,1,7 -110,116,108,101,109,97,0,2,8 -116,108,101,109,97,110,0,1,9 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,114,0,2,2 -0,0,0,103,114,97,0,2,3 -0,0,103,114,97,110,0,1,4 -0,103,114,97,110,116,0,2,5 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,114,0,2,2 -0,0,0,103,114,111,0,2,3 -0,0,103,114,111,119,0,1,4 -0,103,114,111,119,116,0,2,5 -103,114,111,119,116,104,0,2,6 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,97,0,2,2 -0,0,0,104,97,112,0,1,3 -0,0,104,97,112,112,0,2,4 -0,104,97,112,112,121,0,2,5 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,111,0,2,2 -0,0,0,104,111,108,0,1,3 -0,0,104,111,108,100,0,2,4 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,104,0,2,2 -0,0,0,99,104,97,0,2,3 -0,0,99,104,97,110,0,1,4 -0,99,104,97,110,99,0,2,5 -99,104,97,110,99,101,0,2,6 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,100,0,2,3 -0,0,105,110,100,101,0,2,4 -0,105,110,100,101,101,0,1,5 -105,110,100,101,101,100,0,1,6 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,100,0,2,3 -0,0,105,110,100,105,0,2,4 -0,105,110,100,105,118,0,1,5 -105,110,100,105,118,105,0,2,6 -110,100,105,118,105,100,0,1,7 -100,105,118,105,100,117,0,2,8 -105,118,105,100,117,97,0,1,9 -118,105,100,117,97,108,0,1,10 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,110,0,2,2 -0,0,0,107,110,111,0,2,3 -0,0,107,110,111,119,0,1,4 -0,107,110,111,119,115,0,2,5 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,99,0,1,3 -0,0,108,105,99,101,0,2,4 -0,108,105,99,101,110,0,1,5 -108,105,99,101,110,115,0,2,6 -105,99,101,110,115,101,0,2,7 -99,101,110,115,101,115,0,1,8 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,115,0,1,3 -0,0,108,105,115,116,0,2,4 -0,108,105,115,116,101,0,2,5 -108,105,115,116,101,110,0,1,6 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,111,0,2,2 -0,0,0,108,111,99,0,1,3 -0,0,108,111,99,97,0,2,4 -0,108,111,99,97,108,0,1,5 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,111,0,2,2 -0,0,0,108,111,99,0,1,3 -0,0,108,111,99,107,0,2,4 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,101,0,2,2 -0,0,0,109,101,100,0,1,3 -0,0,109,101,100,105,0,2,4 -0,109,101,100,105,117,0,1,5 -109,101,100,105,117,109,0,1,6 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,105,0,2,2 -0,0,0,109,105,99,0,1,3 -0,0,109,105,99,114,0,2,4 -0,109,105,99,114,111,0,2,5 -109,105,99,114,111,98,0,1,6 -105,99,114,111,98,105,0,2,7 -99,114,111,98,105,97,0,1,8 -114,111,98,105,97,108,0,1,9 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,100,0,1,3 -0,0,109,111,100,105,0,2,4 -0,109,111,100,105,102,0,1,5 -109,111,100,105,102,105,0,2,6 -111,100,105,102,105,99,0,1,7 -100,105,102,105,99,97,0,2,8 -105,102,105,99,97,116,0,1,9 -102,105,99,97,116,105,0,2,10 -105,99,97,116,105,111,0,1,11 -99,97,116,105,111,110,0,1,12 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,114,0,2,2 -0,0,0,109,114,115,0,2,3 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,117,0,2,2 -0,0,0,109,117,115,0,1,3 -0,0,109,117,115,105,0,2,4 -0,109,117,115,105,99,0,1,5 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,97,0,2,2 -0,0,0,110,97,114,0,1,3 -0,0,110,97,114,114,0,2,4 -0,110,97,114,114,97,0,2,5 -110,97,114,114,97,116,0,1,6 -97,114,114,97,116,111,0,2,7 -114,114,97,116,111,114,0,1,8 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,101,0,2,2 -0,0,0,110,101,97,0,1,3 -0,0,110,101,97,114,0,1,4 -0,110,101,97,114,108,0,2,5 -110,101,97,114,108,121,0,2,6 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,101,0,2,2 -0,0,0,110,101,116,0,1,3 -0,0,110,101,116,119,0,2,4 -0,110,101,116,119,111,0,2,5 -110,101,116,119,111,114,0,1,6 -101,116,119,111,114,107,0,2,7 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,111,0,2,2 -0,0,0,110,111,110,0,1,3 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,117,0,1,2 -0,0,0,111,117,103,0,1,3 -0,0,111,117,103,104,0,2,4 -0,111,117,103,104,116,0,2,5 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,97,0,2,2 -0,0,0,112,97,112,0,1,3 -0,0,112,97,112,101,0,2,4 -0,112,97,112,101,114,0,1,5 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,97,0,2,2 -0,0,0,112,97,116,0,1,3 -0,0,112,97,116,101,0,2,4 -0,112,97,116,101,110,0,1,5 -112,97,116,101,110,116,0,2,6 -97,116,101,110,116,115,0,2,7 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,101,0,2,2 -0,0,0,112,101,97,0,1,3 -0,0,112,101,97,99,0,1,4 -0,112,101,97,99,101,0,2,5 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,101,0,2,2 -0,0,0,112,101,114,0,1,3 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,104,0,2,2 -0,0,0,112,104,111,0,2,3 -0,0,112,104,111,116,0,1,4 -0,112,104,111,116,111,0,2,5 -112,104,111,116,111,115,0,1,6 -104,111,116,111,115,121,0,2,7 -111,116,111,115,121,110,0,1,8 -116,111,115,121,110,116,0,2,9 -111,115,121,110,116,104,0,2,10 -115,121,110,116,104,101,0,2,11 -121,110,116,104,101,115,0,1,12 -110,116,104,101,115,105,0,2,13 -116,104,101,115,105,115,0,1,14 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,108,0,2,2 -0,0,0,112,108,97,0,2,3 -0,0,112,108,97,110,0,1,4 -0,112,108,97,110,116,0,2,5 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,108,0,2,2 -0,0,0,112,108,101,0,2,3 -0,0,112,108,101,97,0,1,4 -0,112,108,101,97,115,0,1,5 -112,108,101,97,115,117,0,2,6 -108,101,97,115,117,114,0,1,7 -101,97,115,117,114,101,0,2,8 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,101,0,2,3 -0,0,112,114,101,115,0,1,4 -0,112,114,101,115,115,0,2,5 -112,114,101,115,115,117,0,2,6 -114,101,115,115,117,114,0,1,7 -101,115,115,117,114,101,0,2,8 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,101,0,2,3 -0,0,112,114,101,118,0,1,4 -0,112,114,101,118,105,0,2,5 -112,114,101,118,105,111,0,1,6 -114,101,118,105,111,117,0,1,7 -101,118,105,111,117,115,0,1,8 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,111,0,2,3 -0,0,112,114,111,103,0,1,4 -0,112,114,111,103,114,0,2,5 -112,114,111,103,114,97,0,2,6 -114,111,103,114,97,109,0,1,7 -111,103,114,97,109,115,0,2,8 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,111,0,2,3 -0,0,112,114,111,112,0,1,4 -0,112,114,111,112,97,0,2,5 -112,114,111,112,97,103,0,1,6 -114,111,112,97,103,97,0,2,7 -111,112,97,103,97,116,0,1,8 -112,97,103,97,116,101,0,2,9 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,97,0,2,2 -0,0,0,114,97,110,0,1,3 -0,0,114,97,110,103,0,2,4 -0,114,97,110,103,101,0,2,5 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,97,0,1,3 -0,0,114,101,97,108,0,1,4 -0,114,101,97,108,105,0,2,5 -114,101,97,108,105,115,0,1,6 -101,97,108,105,115,101,0,2,7 -97,108,105,115,101,100,0,1,8 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,100,0,1,3 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,112,0,1,3 -0,0,114,101,112,111,0,2,4 -0,114,101,112,111,114,0,1,5 -114,101,112,111,114,116,0,2,6 -101,112,111,114,116,101,0,2,7 -112,111,114,116,101,100,0,1,8 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,111,0,2,2 -0,0,0,114,111,115,0,1,3 -0,0,114,111,115,101,0,2,4 -0,114,111,115,101,115,0,1,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,97,0,2,2 -0,0,0,115,97,110,0,1,3 -0,0,115,97,110,100,0,2,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,99,0,1,3 -0,0,115,101,99,111,0,2,4 -0,115,101,99,111,110,0,1,5 -115,101,99,111,110,100,0,2,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,99,0,1,3 -0,0,115,101,99,114,0,2,4 -0,115,101,99,114,101,0,2,5 -115,101,99,114,101,116,0,1,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,108,0,1,3 -0,0,115,101,108,102,0,2,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,104,0,2,2 -0,0,0,115,104,117,0,2,3 -0,0,115,104,117,116,0,1,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,107,0,2,2 -0,0,0,115,107,121,0,2,3 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,115,111,108,0,1,3 -0,0,115,111,108,97,0,2,4 -0,115,111,108,97,114,0,1,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,97,0,2,2 -0,0,0,116,97,108,0,1,3 -0,0,116,97,108,107,0,2,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,105,0,2,2 -0,0,0,116,105,112,0,1,3 -0,0,116,105,112,112,0,2,4 -0,116,105,112,112,108,0,2,5 -116,105,112,112,108,101,0,2,6 -105,112,112,108,101,114,0,1,7 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,111,0,2,2 -0,0,0,116,111,119,0,1,3 -0,0,116,111,119,97,0,2,4 -0,116,111,119,97,114,0,1,5 -116,111,119,97,114,100,0,2,6 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,114,0,2,2 -0,0,0,116,114,97,0,2,3 -0,0,116,114,97,105,0,1,4 -0,116,114,97,105,110,0,1,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,114,0,2,2 -0,0,0,116,114,97,0,2,3 -0,0,116,114,97,110,0,1,4 -0,116,114,97,110,115,0,2,5 -116,114,97,110,115,112,0,2,6 -114,97,110,115,112,111,0,2,7 -97,110,115,112,111,114,0,1,8 -110,115,112,111,114,116,0,2,9 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,121,0,2,2 -0,0,0,116,121,112,0,1,3 -0,0,116,121,112,101,0,2,4 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,110,0,1,2 -0,0,0,117,110,99,0,2,3 -0,0,117,110,99,101,0,2,4 -0,117,110,99,101,114,0,1,5 -117,110,99,101,114,116,0,2,6 -110,99,101,114,116,97,0,2,7 -99,101,114,116,97,105,0,1,8 -101,114,116,97,105,110,0,1,9 -114,116,97,105,110,116,0,2,10 -116,97,105,110,116,105,0,2,11 -97,105,110,116,105,101,0,1,12 -105,110,116,105,101,115,0,1,13 -0,0,0,0,0,118,1,0,1 -0,0,0,0,118,97,0,2,2 -0,0,0,118,97,108,0,1,3 -0,0,118,97,108,117,0,2,4 -0,118,97,108,117,101,0,1,5 -0,0,0,0,0,118,1,0,1 -0,0,0,0,118,101,0,2,2 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,97,0,2,2 -0,0,0,119,97,108,0,1,3 -0,0,119,97,108,107,0,2,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,114,0,2,2 -0,0,0,119,114,111,0,2,3 -0,0,119,114,111,110,0,1,4 -0,119,114,111,110,103,0,2,5 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,100,0,1,2 -0,0,0,97,100,100,0,2,3 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,108,0,1,2 -0,0,0,97,108,108,0,2,3 -0,0,97,108,108,111,0,2,4 -0,97,108,108,111,119,0,1,5 -97,108,108,111,119,101,0,2,6 -108,108,111,119,101,100,0,1,7 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,112,0,1,2 -0,0,0,97,112,112,0,2,3 -0,0,97,112,112,108,0,2,4 -0,97,112,112,108,105,0,2,5 -97,112,112,108,105,99,0,1,6 -112,112,108,105,99,97,0,2,7 -112,108,105,99,97,98,0,1,8 -108,105,99,97,98,108,0,2,9 -105,99,97,98,108,101,0,2,10 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,115,0,1,2 -0,0,0,97,115,115,0,2,3 -0,0,97,115,115,111,0,2,4 -0,97,115,115,111,99,0,1,5 -97,115,115,111,99,105,0,2,6 -115,115,111,99,105,97,0,1,7 -115,111,99,105,97,116,0,1,8 -111,99,105,97,116,101,0,2,9 -99,105,97,116,101,100,0,1,10 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,111,0,2,2 -0,0,0,98,111,115,0,1,3 -0,0,98,111,115,115,0,2,4 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,109,0,1,3 -0,0,99,111,109,105,0,2,4 -0,99,111,109,105,110,0,1,5 -99,111,109,105,110,103,0,2,6 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,109,0,1,3 -0,0,99,111,109,112,0,2,4 -0,99,111,109,112,108,0,2,5 -99,111,109,112,108,101,0,2,6 -111,109,112,108,101,116,0,1,7 -109,112,108,101,116,101,0,2,8 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,117,0,1,3 -0,0,99,111,117,108,0,1,4 -0,99,111,117,108,100,0,2,5 -99,111,117,108,100,110,0,2,6 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,105,0,2,2 -0,0,0,100,105,100,0,1,3 -0,0,100,105,100,110,0,2,4 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,105,0,2,2 -0,0,0,100,105,114,0,1,3 -0,0,100,105,114,101,0,2,4 -0,100,105,114,101,99,0,1,5 -100,105,114,101,99,116,0,2,6 -105,114,101,99,116,108,0,2,7 -114,101,99,116,108,121,0,2,8 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,114,0,2,2 -0,0,0,100,114,101,0,2,3 -0,0,100,114,101,115,0,1,4 -0,100,114,101,115,115,0,2,5 -100,114,101,115,115,101,0,2,6 -114,101,115,115,101,100,0,1,7 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,120,0,1,2 -0,0,0,101,120,97,0,2,3 -0,0,101,120,97,99,0,1,4 -0,101,120,97,99,116,0,2,5 -101,120,97,99,116,108,0,2,6 -120,97,99,116,108,121,0,2,7 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,120,0,1,2 -0,0,0,101,120,99,0,2,3 -0,0,101,120,99,101,0,2,4 -0,101,120,99,101,112,0,1,5 -101,120,99,101,112,116,0,2,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,120,0,1,2 -0,0,0,101,120,112,0,2,3 -0,0,101,120,112,108,0,2,4 -0,101,120,112,108,111,0,2,5 -101,120,112,108,111,114,0,1,6 -120,112,108,111,114,101,0,2,7 -112,108,111,114,101,114,0,1,8 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,97,0,2,2 -0,0,0,102,97,108,0,1,3 -0,0,102,97,108,108,0,2,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,114,0,2,2 -0,0,0,102,114,105,0,2,3 -0,0,102,114,105,101,0,1,4 -0,102,114,105,101,110,0,1,5 -102,114,105,101,110,100,0,2,6 -114,105,101,110,100,115,0,2,7 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,111,0,2,2 -0,0,0,103,111,118,0,1,3 -0,0,103,111,118,101,0,2,4 -0,103,111,118,101,114,0,1,5 -103,111,118,101,114,110,0,2,6 -111,118,101,114,110,109,0,2,7 -118,101,114,110,109,101,0,2,8 -101,114,110,109,101,110,0,1,9 -114,110,109,101,110,116,0,2,10 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,114,0,2,2 -0,0,0,103,114,97,0,2,3 -0,0,103,114,97,110,0,1,4 -0,103,114,97,110,116,0,2,5 -103,114,97,110,116,101,0,2,6 -114,97,110,116,101,100,0,1,7 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,114,0,2,2 -0,0,0,103,114,111,0,2,3 -0,0,103,114,111,117,0,1,4 -0,103,114,111,117,112,0,1,5 -103,114,111,117,112,115,0,2,6 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,116,0,2,3 -0,0,105,110,116,101,0,2,4 -0,105,110,116,101,114,0,1,5 -105,110,116,101,114,101,0,2,6 -110,116,101,114,101,115,0,1,7 -116,101,114,101,115,116,0,2,8 -0,0,0,0,0,106,1,0,1 -0,0,0,0,106,111,0,2,2 -0,0,0,106,111,98,0,1,3 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,101,0,2,2 -0,0,0,107,101,112,0,1,3 -0,0,107,101,112,116,0,2,4 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,105,0,2,2 -0,0,0,107,105,116,0,1,3 -0,0,107,105,116,99,0,2,4 -0,107,105,116,99,104,0,2,5 -107,105,116,99,104,101,0,2,6 -105,116,99,104,101,110,0,1,7 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,101,0,2,2 -0,0,0,110,101,99,0,1,3 -0,0,110,101,99,101,0,2,4 -0,110,101,99,101,115,0,1,5 -110,101,99,101,115,115,0,2,6 -101,99,101,115,115,97,0,2,7 -99,101,115,115,97,114,0,1,8 -101,115,115,97,114,121,0,2,9 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,102,0,1,2 -0,0,0,111,102,102,0,2,3 -0,0,111,102,102,105,0,2,4 -0,111,102,102,105,99,0,1,5 -111,102,102,105,99,101,0,2,6 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,116,0,1,2 -0,0,0,111,116,104,0,2,3 -0,0,111,116,104,101,0,2,4 -0,111,116,104,101,114,0,1,5 -111,116,104,101,114,119,0,2,6 -116,104,101,114,119,105,0,2,7 -104,101,114,119,105,115,0,1,8 -101,114,119,105,115,101,0,2,9 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,101,0,2,2 -0,0,0,112,101,114,0,1,3 -0,0,112,101,114,109,0,2,4 -0,112,101,114,109,105,0,2,5 -112,101,114,109,105,115,0,1,6 -101,114,109,105,115,115,0,2,7 -114,109,105,115,115,105,0,2,8 -109,105,115,115,105,111,0,1,9 -105,115,115,105,111,110,0,1,10 -115,115,105,111,110,115,0,2,11 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,104,0,2,2 -0,0,0,112,104,121,0,2,3 -0,0,112,104,121,115,0,1,4 -0,112,104,121,115,105,0,2,5 -112,104,121,115,105,99,0,1,6 -104,121,115,105,99,97,0,2,7 -121,115,105,99,97,108,0,1,8 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,111,0,2,2 -0,0,0,112,111,115,0,1,3 -0,0,112,111,115,105,0,2,4 -0,112,111,115,105,116,0,1,5 -112,111,115,105,116,105,0,2,6 -111,115,105,116,105,111,0,1,7 -115,105,116,105,111,110,0,1,8 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,117,0,2,2 -0,0,0,112,117,114,0,1,3 -0,0,112,117,114,112,0,2,4 -0,112,117,114,112,111,0,2,5 -112,117,114,112,111,115,0,1,6 -117,114,112,111,115,101,0,2,7 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,97,0,2,2 -0,0,0,114,97,110,0,1,3 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,97,0,1,3 -0,0,114,101,97,115,0,1,4 -0,114,101,97,115,111,0,2,5 -114,101,97,115,111,110,0,1,6 -101,97,115,111,110,97,0,2,7 -97,115,111,110,97,98,0,1,8 -115,111,110,97,98,108,0,2,9 -111,110,97,98,108,101,0,2,10 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,99,0,1,3 -0,0,114,101,99,105,0,2,4 -0,114,101,99,105,112,0,1,5 -114,101,99,105,112,105,0,2,6 -101,99,105,112,105,101,0,1,7 -99,105,112,105,101,110,0,1,8 -105,112,105,101,110,116,0,2,9 -112,105,101,110,116,115,0,2,10 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,99,0,1,3 -0,0,115,101,99,116,0,2,4 -0,115,101,99,116,105,0,2,5 -115,101,99,116,105,111,0,1,6 -101,99,116,105,111,110,0,1,7 -99,116,105,111,110,115,0,2,8 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,114,0,1,3 -0,0,115,101,114,105,0,2,4 -0,115,101,114,105,111,0,1,5 -115,101,114,105,111,117,0,1,6 -101,114,105,111,117,115,0,1,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,104,0,2,2 -0,0,0,115,104,111,0,2,3 -0,0,115,104,111,119,0,1,4 -0,115,104,111,119,110,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,105,0,2,2 -0,0,0,115,105,103,0,1,3 -0,0,115,105,103,110,0,2,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,108,0,2,2 -0,0,0,115,108,105,0,2,3 -0,0,115,108,105,103,0,1,4 -0,115,108,105,103,104,0,2,5 -115,108,105,103,104,116,0,2,6 -108,105,103,104,116,108,0,2,7 -105,103,104,116,108,121,0,2,8 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,115,111,109,0,1,3 -0,0,115,111,109,101,0,2,4 -0,115,111,109,101,119,0,1,5 -115,111,109,101,119,104,0,2,6 -111,109,101,119,104,101,0,2,7 -109,101,119,104,101,114,0,1,8 -101,119,104,101,114,101,0,2,9 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,112,0,2,2 -0,0,0,115,112,101,0,2,3 -0,0,115,112,101,99,0,1,4 -0,115,112,101,99,105,0,2,5 -115,112,101,99,105,101,0,1,6 -112,101,99,105,101,115,0,1,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,97,0,2,3 -0,0,115,116,97,114,0,1,4 -0,115,116,97,114,116,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,97,0,2,3 -0,0,115,116,97,121,0,1,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,114,0,2,3 -0,0,115,116,114,101,0,2,4 -0,115,116,114,101,101,0,1,5 -115,116,114,101,101,116,0,1,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,117,0,2,2 -0,0,0,115,117,110,0,1,3 -0,0,115,117,110,115,0,2,4 -0,115,117,110,115,101,0,2,5 -115,117,110,115,101,116,0,1,6 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,112,0,1,2 -0,0,0,117,112,111,0,2,3 -0,0,117,112,111,110,0,1,4 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,112,0,1,2 -0,0,0,117,112,114,0,2,3 -0,0,117,112,114,105,0,2,4 -0,117,112,114,105,103,0,1,5 -117,112,114,105,103,104,0,2,6 -112,114,105,103,104,116,0,2,7 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,97,0,2,2 -0,0,0,119,97,105,0,1,3 -0,0,119,97,105,116,0,1,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,105,0,2,2 -0,0,0,119,105,116,0,1,3 -0,0,119,105,116,104,0,2,4 -0,119,105,116,104,105,0,2,5 -119,105,116,104,105,110,0,1,6 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,108,0,1,2 -0,0,0,97,108,111,0,2,3 -0,0,97,108,111,110,0,1,4 -0,97,108,111,110,101,0,2,5 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,112,0,1,2 -0,0,0,97,112,112,0,2,3 -0,0,97,112,112,114,0,2,4 -0,97,112,112,114,111,0,2,5 -97,112,112,114,111,112,0,1,6 -112,112,114,111,112,114,0,2,7 -112,114,111,112,114,105,0,2,8 -114,111,112,114,105,97,0,1,9 -111,112,114,105,97,116,0,1,10 -112,114,105,97,116,101,0,2,11 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,115,0,1,2 -0,0,0,97,115,107,0,2,3 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,97,0,2,2 -0,0,0,98,97,100,0,1,3 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,108,0,1,3 -0,0,98,101,108,111,0,2,4 -0,98,101,108,111,119,0,1,5 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,110,0,1,3 -0,0,98,101,110,101,0,2,4 -0,98,101,110,101,102,0,1,5 -98,101,110,101,102,105,0,2,6 -101,110,101,102,105,116,0,1,7 -110,101,102,105,116,115,0,2,8 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,97,0,2,2 -0,0,0,99,97,117,0,1,3 -0,0,99,97,117,115,0,1,4 -0,99,97,117,115,101,0,2,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,108,0,2,2 -0,0,0,99,108,101,0,2,3 -0,0,99,108,101,97,0,1,4 -0,99,108,101,97,114,0,1,5 -99,108,101,97,114,108,0,2,6 -108,101,97,114,108,121,0,2,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,116,0,2,4 -0,99,111,110,116,105,0,2,5 -99,111,110,116,105,110,0,1,6 -111,110,116,105,110,117,0,2,7 -110,116,105,110,117,101,0,1,8 -116,105,110,117,101,100,0,1,9 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,116,0,2,4 -0,99,111,110,116,114,0,2,5 -99,111,110,116,114,105,0,2,6 -111,110,116,114,105,98,0,1,7 -110,116,114,105,98,117,0,2,8 -116,114,105,98,117,116,0,1,9 -114,105,98,117,116,111,0,2,10 -105,98,117,116,111,114,0,1,11 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,116,0,2,4 -0,99,111,110,116,114,0,2,5 -99,111,110,116,114,111,0,2,6 -111,110,116,114,111,108,0,1,7 -110,116,114,111,108,115,0,2,8 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,117,0,1,3 -0,0,99,111,117,110,0,1,4 -0,99,111,117,110,116,0,2,5 -99,111,117,110,116,114,0,2,6 -111,117,110,116,114,105,0,2,7 -117,110,116,114,105,101,0,1,8 -110,116,114,105,101,115,0,1,9 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,117,0,1,3 -0,0,99,111,117,110,0,1,4 -0,99,111,117,110,116,0,2,5 -99,111,117,110,116,114,0,2,6 -111,117,110,116,114,121,0,2,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,117,0,2,2 -0,0,0,99,117,114,0,1,3 -0,0,99,117,114,114,0,2,4 -0,99,117,114,114,101,0,2,5 -99,117,114,114,101,110,0,1,6 -117,114,114,101,110,116,0,2,7 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,97,0,2,2 -0,0,0,100,97,110,0,1,3 -0,0,100,97,110,103,0,2,4 -0,100,97,110,103,101,0,2,5 -100,97,110,103,101,114,0,1,6 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,101,0,2,2 -0,0,0,100,101,116,0,1,3 -0,0,100,101,116,97,0,2,4 -0,100,101,116,97,105,0,1,5 -100,101,116,97,105,108,0,1,6 -101,116,97,105,108,115,0,2,7 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,105,0,2,2 -0,0,0,100,105,115,0,1,3 -0,0,100,105,115,116,0,2,4 -0,100,105,115,116,114,0,2,5 -100,105,115,116,114,105,0,2,6 -105,115,116,114,105,98,0,1,7 -115,116,114,105,98,117,0,2,8 -116,114,105,98,117,116,0,1,9 -114,105,98,117,116,101,0,2,10 -105,98,117,116,101,100,0,1,11 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,111,0,2,2 -0,0,0,100,111,111,0,1,3 -0,0,100,111,111,114,0,1,4 -0,100,111,111,114,115,0,2,5 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,120,0,1,2 -0,0,0,101,120,111,0,2,3 -0,0,101,120,111,112,0,1,4 -0,101,120,111,112,108,0,2,5 -101,120,111,112,108,97,0,2,6 -120,111,112,108,97,110,0,1,7 -111,112,108,97,110,101,0,2,8 -112,108,97,110,101,116,0,1,9 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,115,0,1,3 -0,0,102,111,115,115,0,2,4 -0,102,111,115,115,105,0,2,5 -102,111,115,115,105,108,0,1,6 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,114,0,2,2 -0,0,0,102,114,97,0,2,3 -0,0,102,114,97,110,0,1,4 -0,102,114,97,110,99,0,2,5 -102,114,97,110,99,101,0,2,6 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,114,0,2,2 -0,0,0,102,114,101,0,2,3 -0,0,102,114,101,115,0,1,4 -0,102,114,101,115,104,0,2,5 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,117,0,2,2 -0,0,0,102,117,101,0,1,3 -0,0,102,117,101,108,0,1,4 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,97,0,2,2 -0,0,0,103,97,118,0,1,3 -0,0,103,97,118,101,0,2,4 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,111,0,2,2 -0,0,0,103,111,110,0,1,3 -0,0,103,111,110,101,0,2,4 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,97,0,2,2 -0,0,0,104,97,116,0,1,3 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,104,0,2,2 -0,0,0,99,104,97,0,2,3 -0,0,99,104,97,110,0,1,4 -0,99,104,97,110,103,0,2,5 -99,104,97,110,103,101,0,2,6 -104,97,110,103,101,100,0,1,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,104,0,2,2 -0,0,0,99,104,105,0,2,3 -0,0,99,104,105,108,0,1,4 -0,99,104,105,108,100,0,2,5 -99,104,105,108,100,114,0,2,6 -104,105,108,100,114,101,0,2,7 -105,108,100,114,101,110,0,1,8 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,116,0,2,3 -0,0,105,110,116,101,0,2,4 -0,105,110,116,101,114,0,1,5 -105,110,116,101,114,110,0,2,6 -110,116,101,114,110,97,0,2,7 -116,101,114,110,97,108,0,1,8 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,114,0,1,2 -0,0,0,105,114,101,0,2,3 -0,0,105,114,101,108,0,1,4 -0,105,114,101,108,97,0,2,5 -105,114,101,108,97,110,0,1,6 -114,101,108,97,110,100,0,2,7 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,110,0,2,2 -0,0,0,107,110,111,0,2,3 -0,0,107,110,111,119,0,1,4 -0,107,110,111,119,108,0,2,5 -107,110,111,119,108,101,0,2,6 -110,111,119,108,101,100,0,1,7 -111,119,108,101,100,103,0,2,8 -119,108,101,100,103,101,0,2,9 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,97,0,2,2 -0,0,0,108,97,114,0,1,3 -0,0,108,97,114,103,0,2,4 -0,108,97,114,103,101,0,2,5 -108,97,114,103,101,114,0,1,6 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,97,0,2,2 -0,0,0,108,97,117,0,1,3 -0,0,108,97,117,103,0,1,4 -0,108,97,117,103,104,0,2,5 -108,97,117,103,104,101,0,2,6 -97,117,103,104,101,100,0,1,7 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,103,0,1,3 -0,0,108,105,103,104,0,2,4 -0,108,105,103,104,116,0,2,5 -108,105,103,104,116,115,0,2,6 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,111,0,2,2 -0,0,0,108,111,119,0,1,3 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,100,0,1,3 -0,0,109,111,100,101,0,2,4 -0,109,111,100,101,108,0,1,5 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,118,0,1,3 -0,0,109,111,118,101,0,2,4 -0,109,111,118,101,100,0,1,5 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,97,0,2,2 -0,0,0,110,97,109,0,1,3 -0,0,110,97,109,101,0,2,4 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,111,0,2,2 -0,0,0,110,111,114,0,1,3 -0,0,110,111,114,109,0,2,4 -0,110,111,114,109,97,0,2,5 -110,111,114,109,97,108,0,1,6 -111,114,109,97,108,108,0,2,7 -114,109,97,108,108,121,0,2,8 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,114,0,1,2 -0,0,0,111,114,105,0,2,3 -0,0,111,114,105,103,0,1,4 -0,111,114,105,103,105,0,2,5 -111,114,105,103,105,110,0,1,6 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,97,0,2,2 -0,0,0,112,97,105,0,1,3 -0,0,112,97,105,110,0,1,4 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,117,0,2,2 -0,0,0,112,117,115,0,1,3 -0,0,112,117,115,104,0,2,4 -0,112,117,115,104,101,0,2,5 -112,117,115,104,101,100,0,1,6 -0,0,0,0,0,113,1,0,1 -0,0,0,0,113,117,0,2,2 -0,0,0,113,117,105,0,1,3 -0,0,113,117,105,101,0,1,4 -0,113,117,105,101,116,0,1,5 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,97,0,2,2 -0,0,0,114,97,105,0,1,3 -0,0,114,97,105,115,0,1,4 -0,114,97,105,115,101,0,2,5 -114,97,105,115,101,100,0,1,6 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,97,0,2,2 -0,0,0,114,97,116,0,1,3 -0,0,114,97,116,104,0,2,4 -0,114,97,116,104,101,0,2,5 -114,97,116,104,101,114,0,1,6 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,111,0,2,2 -0,0,0,114,111,99,0,1,3 -0,0,114,111,99,107,0,2,4 -0,114,111,99,107,115,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,97,0,2,2 -0,0,0,115,97,100,0,1,3 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,104,0,2,2 -0,0,0,115,104,111,0,2,3 -0,0,115,104,111,114,0,1,4 -0,115,104,111,114,116,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,105,0,2,2 -0,0,0,115,105,108,0,1,3 -0,0,115,105,108,101,0,2,4 -0,115,105,108,101,110,0,1,5 -115,105,108,101,110,99,0,2,6 -105,108,101,110,99,101,0,2,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,115,111,117,0,1,3 -0,0,115,111,117,110,0,1,4 -0,115,111,117,110,100,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,115,111,117,0,1,3 -0,0,115,111,117,114,0,1,4 -0,115,111,117,114,99,0,2,5 -115,111,117,114,99,101,0,2,6 -111,117,114,99,101,115,0,1,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,97,0,2,3 -0,0,115,116,97,110,0,1,4 -0,115,116,97,110,100,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,111,0,2,3 -0,0,115,116,111,112,0,1,4 -0,115,116,111,112,112,0,2,5 -115,116,111,112,112,101,0,2,6 -116,111,112,112,101,100,0,1,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,117,0,2,2 -0,0,0,115,117,100,0,1,3 -0,0,115,117,100,100,0,2,4 -0,115,117,100,100,101,0,2,5 -115,117,100,100,101,110,0,1,6 -117,100,100,101,110,108,0,2,7 -100,100,101,110,108,121,0,2,8 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,117,0,2,2 -0,0,0,115,117,103,0,1,3 -0,0,115,117,103,103,0,2,4 -0,115,117,103,103,101,0,2,5 -115,117,103,103,101,115,0,1,6 -117,103,103,101,115,116,0,2,7 -103,103,101,115,116,101,0,2,8 -103,101,115,116,101,100,0,1,9 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,117,0,2,2 -0,0,0,115,117,114,0,1,3 -0,0,115,117,114,102,0,2,4 -0,115,117,114,102,97,0,2,5 -115,117,114,102,97,99,0,1,6 -117,114,102,97,99,101,0,2,7 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,101,0,2,2 -0,0,0,116,101,97,0,1,3 -0,0,116,101,97,114,0,1,4 -0,116,101,97,114,115,0,2,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,101,0,2,3 -0,0,116,104,101,114,0,1,4 -0,116,104,101,114,101,0,2,5 -116,104,101,114,101,102,0,1,6 -104,101,114,101,102,111,0,2,7 -101,114,101,102,111,114,0,1,8 -114,101,102,111,114,101,0,2,9 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,105,0,2,2 -0,0,0,116,105,114,0,1,3 -0,0,116,105,114,101,0,2,4 -0,116,105,114,101,100,0,1,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,111,0,2,2 -0,0,0,116,111,119,0,1,3 -0,0,116,111,119,97,0,2,4 -0,116,111,119,97,114,0,1,5 -116,111,119,97,114,100,0,2,6 -111,119,97,114,100,115,0,2,7 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,114,0,2,2 -0,0,0,116,114,121,0,2,3 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,119,0,2,2 -0,0,0,116,119,101,0,2,3 -0,0,116,119,101,110,0,1,4 -0,116,119,101,110,116,0,2,5 -116,119,101,110,116,121,0,2,6 -0,0,0,0,0,118,1,0,1 -0,0,0,0,118,97,0,2,2 -0,0,0,118,97,108,0,1,3 -0,0,118,97,108,117,0,2,4 -0,118,97,108,117,101,0,1,5 -118,97,108,117,101,115,0,1,6 -0,0,0,0,0,118,1,0,1 -0,0,0,0,118,105,0,2,2 -0,0,0,118,105,111,0,1,3 -0,0,118,105,111,108,0,1,4 -0,118,105,111,108,105,0,2,5 -118,105,111,108,105,110,0,1,6 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,97,0,2,2 -0,0,0,119,97,108,0,1,3 -0,0,119,97,108,108,0,2,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,104,0,2,2 -0,0,0,119,104,105,0,2,3 -0,0,119,104,105,116,0,1,4 -0,119,104,105,116,101,0,2,5 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,105,0,2,2 -0,0,0,119,105,115,0,1,3 -0,0,119,105,115,104,0,2,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,111,0,2,2 -0,0,0,119,111,114,0,1,3 -0,0,119,111,114,100,0,2,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,111,0,2,2 -0,0,0,119,111,114,0,1,3 -0,0,119,111,114,108,0,2,4 -0,119,111,114,108,100,0,2,5 -119,111,114,108,100,115,0,2,6 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,110,0,1,2 -0,0,0,97,110,105,0,2,3 -0,0,97,110,105,109,0,1,4 -0,97,110,105,109,97,0,2,5 -97,110,105,109,97,108,0,1,6 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,110,0,1,2 -0,0,0,97,110,105,0,2,3 -0,0,97,110,105,109,0,1,4 -0,97,110,105,109,97,0,2,5 -97,110,105,109,97,108,0,1,6 -110,105,109,97,108,115,0,2,7 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,108,0,1,3 -0,0,98,101,108,105,0,2,4 -0,98,101,108,105,101,0,1,5 -98,101,108,105,101,118,0,1,6 -101,108,105,101,118,101,0,2,7 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,117,0,2,2 -0,0,0,98,117,115,0,1,3 -0,0,98,117,115,105,0,2,4 -0,98,117,115,105,110,0,1,5 -98,117,115,105,110,101,0,2,6 -117,115,105,110,101,115,0,1,7 -115,105,110,101,115,115,0,2,8 -105,110,101,115,115,109,0,2,9 -110,101,115,115,109,97,0,2,10 -101,115,115,109,97,110,0,1,11 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,101,0,2,2 -0,0,0,99,101,114,0,1,3 -0,0,99,101,114,116,0,2,4 -0,99,101,114,116,97,0,2,5 -99,101,114,116,97,105,0,1,6 -101,114,116,97,105,110,0,1,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,109,0,1,3 -0,0,99,111,109,98,0,2,4 -0,99,111,109,98,117,0,2,5 -99,111,109,98,117,115,0,1,6 -111,109,98,117,115,116,0,2,7 -109,98,117,115,116,105,0,2,8 -98,117,115,116,105,111,0,1,9 -117,115,116,105,111,110,0,1,10 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,109,0,1,3 -0,0,99,111,109,112,0,2,4 -0,99,111,109,112,108,0,2,5 -99,111,109,112,108,101,0,2,6 -111,109,112,108,101,116,0,1,7 -109,112,108,101,116,101,0,2,8 -112,108,101,116,101,108,0,1,9 -108,101,116,101,108,121,0,2,10 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,99,0,2,4 -0,99,111,110,99,101,0,2,5 -99,111,110,99,101,105,0,1,6 -111,110,99,101,105,116,0,1,7 -110,99,101,105,116,101,0,2,8 -99,101,105,116,101,100,0,1,9 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,102,0,2,4 -0,99,111,110,102,105,0,2,5 -99,111,110,102,105,100,0,1,6 -111,110,102,105,100,101,0,2,7 -110,102,105,100,101,110,0,1,8 -102,105,100,101,110,99,0,2,9 -105,100,101,110,99,101,0,2,10 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,116,0,2,4 -0,99,111,110,116,114,0,2,5 -99,111,110,116,114,111,0,2,6 -111,110,116,114,111,108,0,1,7 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,101,0,2,2 -0,0,0,100,101,115,0,1,3 -0,0,100,101,115,112,0,2,4 -0,100,101,115,112,105,0,2,5 -100,101,115,112,105,116,0,1,6 -101,115,112,105,116,101,0,2,7 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,111,0,2,2 -0,0,0,100,111,103,0,1,3 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,97,0,1,2 -0,0,0,101,97,114,0,1,3 -0,0,101,97,114,108,0,2,4 -0,101,97,114,108,105,0,2,5 -101,97,114,108,105,101,0,1,6 -97,114,108,105,101,114,0,1,7 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,101,0,2,2 -0,0,0,102,101,108,0,1,3 -0,0,102,101,108,108,0,2,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,114,0,1,3 -0,0,102,111,114,103,0,2,4 -0,102,111,114,103,101,0,2,5 -102,111,114,103,101,116,0,1,6 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,114,0,1,3 -0,0,102,111,114,119,0,2,4 -0,102,111,114,119,97,0,2,5 -102,111,114,119,97,114,0,1,6 -111,114,119,97,114,100,0,2,7 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,114,0,2,2 -0,0,0,102,114,101,0,2,3 -0,0,102,114,101,101,0,1,4 -0,102,114,101,101,100,0,1,5 -102,114,101,101,100,111,0,2,6 -114,101,101,100,111,109,0,1,7 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,117,0,2,2 -0,0,0,102,117,116,0,1,3 -0,0,102,117,116,117,0,2,4 -0,102,117,116,117,114,0,1,5 -102,117,116,117,114,101,0,2,6 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,111,0,2,2 -0,0,0,104,111,117,0,1,3 -0,0,104,111,117,114,0,1,4 -0,104,111,117,114,115,0,2,5 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,111,0,2,2 -0,0,0,104,111,117,0,1,3 -0,0,104,111,117,115,0,1,4 -0,104,111,117,115,101,0,2,5 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,105,0,2,2 -0,0,0,107,105,110,0,1,3 -0,0,107,105,110,100,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,97,0,2,2 -0,0,0,108,97,109,0,1,3 -0,0,108,97,109,112,0,2,4 -0,108,97,109,112,108,0,2,5 -108,97,109,112,108,105,0,2,6 -97,109,112,108,105,103,0,1,7 -109,112,108,105,103,104,0,2,8 -112,108,105,103,104,116,0,2,9 -108,105,103,104,116,101,0,2,10 -105,103,104,116,101,114,0,1,11 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,101,0,2,2 -0,0,0,108,101,97,0,1,3 -0,0,108,101,97,114,0,1,4 -0,108,101,97,114,110,0,2,5 -108,101,97,114,110,101,0,2,6 -101,97,114,110,101,100,0,1,7 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,111,0,2,2 -0,0,0,108,111,119,0,1,3 -0,0,108,111,119,101,0,2,4 -0,108,111,119,101,114,0,1,5 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,116,0,1,3 -0,0,109,97,116,116,0,2,4 -0,109,97,116,116,101,0,2,5 -109,97,116,116,101,114,0,1,6 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,116,0,1,3 -0,0,109,97,116,116,0,2,4 -0,109,97,116,116,101,0,2,5 -109,97,116,116,101,114,0,1,6 -97,116,116,101,114,115,0,2,7 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,118,0,1,3 -0,0,109,111,118,105,0,2,4 -0,109,111,118,105,110,0,1,5 -109,111,118,105,110,103,0,2,6 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,101,0,2,2 -0,0,0,110,101,116,0,1,3 -0,0,110,101,116,97,0,2,4 -0,110,101,116,97,110,0,1,5 -110,101,116,97,110,121,0,2,6 -101,116,97,110,121,97,0,1,7 -116,97,110,121,97,104,0,1,8 -97,110,121,97,104,117,0,2,9 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,117,0,1,2 -0,0,0,111,117,116,0,1,3 -0,0,111,117,116,115,0,2,4 -0,111,117,116,115,105,0,2,5 -111,117,116,115,105,100,0,1,6 -117,116,115,105,100,101,0,2,7 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,105,0,2,2 -0,0,0,112,105,99,0,1,3 -0,0,112,105,99,116,0,2,4 -0,112,105,99,116,117,0,2,5 -112,105,99,116,117,114,0,1,6 -105,99,116,117,114,101,0,2,7 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,111,0,2,2 -0,0,0,112,111,119,0,1,3 -0,0,112,111,119,101,0,2,4 -0,112,111,119,101,114,0,1,5 -112,111,119,101,114,101,0,2,6 -111,119,101,114,101,100,0,1,7 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,109,0,1,3 -0,0,114,101,109,97,0,2,4 -0,114,101,109,97,105,0,1,5 -114,101,109,97,105,110,0,1,6 -101,109,97,105,110,101,0,2,7 -109,97,105,110,101,100,0,1,8 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,112,0,1,3 -0,0,114,101,112,111,0,2,4 -0,114,101,112,111,114,0,1,5 -114,101,112,111,114,116,0,2,6 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,113,0,1,3 -0,0,114,101,113,117,0,2,4 -0,114,101,113,117,105,0,1,5 -114,101,113,117,105,114,0,1,6 -101,113,117,105,114,101,0,2,7 -113,117,105,114,101,100,0,1,8 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,97,0,2,2 -0,0,0,115,97,109,0,1,3 -0,0,115,97,109,112,0,2,4 -0,115,97,109,112,108,0,2,5 -115,97,109,112,108,105,0,2,6 -97,109,112,108,105,110,0,1,7 -109,112,108,105,110,103,0,2,8 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,115,111,108,0,1,3 -0,0,115,111,108,100,0,2,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,101,0,2,3 -0,0,115,116,101,112,0,1,4 -0,115,116,101,112,115,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,121,0,2,2 -0,0,0,115,121,115,0,1,3 -0,0,115,121,115,116,0,2,4 -0,115,121,115,116,101,0,2,5 -115,121,115,116,101,109,0,1,6 -121,115,116,101,109,115,0,2,7 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,111,0,2,3 -0,0,116,104,111,114,0,1,4 -0,116,104,111,114,110,0,2,5 -116,104,111,114,110,115,0,2,6 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,111,0,2,3 -0,0,116,104,111,117,0,1,4 -0,116,104,111,117,115,0,1,5 -116,104,111,117,115,97,0,2,6 -104,111,117,115,97,110,0,1,7 -111,117,115,97,110,100,0,2,8 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,115,0,1,2 -0,0,0,117,115,101,0,2,3 -0,0,117,115,101,114,0,1,4 -0,117,115,101,114,115,0,2,5 -0,0,0,0,0,118,1,0,1 -0,0,0,0,118,105,0,2,2 -0,0,0,118,105,101,0,1,3 -0,0,118,105,101,119,0,1,4 -0,0,0,0,0,118,1,0,1 -0,0,0,0,118,111,0,2,2 -0,0,0,118,111,108,0,1,3 -0,0,118,111,108,99,0,2,4 -0,118,111,108,99,97,0,2,5 -118,111,108,99,97,110,0,1,6 -111,108,99,97,110,111,0,2,7 -108,99,97,110,111,101,0,1,8 -99,97,110,111,101,115,0,1,9 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,101,0,2,2 -0,0,0,119,101,105,0,1,3 -0,0,119,101,105,103,0,1,4 -0,119,101,105,103,104,0,2,5 -119,101,105,103,104,116,0,2,6 -0,0,0,0,0,121,1,0,1 -0,0,0,0,121,101,0,1,2 -0,0,0,121,101,116,0,1,3 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,110,0,1,2 -0,0,0,97,110,115,0,2,3 -0,0,97,110,115,119,0,2,4 -0,97,110,115,119,101,0,2,5 -97,110,115,119,101,114,0,1,6 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,97,0,2,2 -0,0,0,98,97,114,0,1,3 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,111,0,2,2 -0,0,0,98,111,97,0,1,3 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,114,0,2,2 -0,0,0,98,114,105,0,2,3 -0,0,98,114,105,110,0,1,4 -0,98,114,105,110,103,0,2,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,97,0,2,2 -0,0,0,99,97,114,0,1,3 -0,0,99,97,114,101,0,2,4 -0,99,97,114,101,102,0,1,5 -99,97,114,101,102,117,0,2,6 -97,114,101,102,117,108,0,1,7 -114,101,102,117,108,108,0,2,8 -101,102,117,108,108,121,0,2,9 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,97,0,2,2 -0,0,0,99,97,115,0,1,3 -0,0,99,97,115,101,0,2,4 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,109,0,1,3 -0,0,99,111,109,112,0,2,4 -0,99,111,109,112,97,0,2,5 -99,111,109,112,97,110,0,1,6 -111,109,112,97,110,121,0,2,7 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,114,0,2,2 -0,0,0,100,114,97,0,2,3 -0,0,100,114,97,119,0,1,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,114,0,1,3 -0,0,102,111,114,100,0,2,4 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,104,0,2,2 -0,0,0,99,104,101,0,2,3 -0,0,99,104,101,115,0,1,4 -0,99,104,101,115,116,0,2,5 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,101,0,2,2 -0,0,0,108,101,115,0,1,3 -0,0,108,101,115,115,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,111,0,2,2 -0,0,0,108,111,115,0,1,3 -0,0,108,111,115,116,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,111,0,2,2 -0,0,0,108,111,118,0,1,3 -0,0,108,111,118,101,0,2,4 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,107,0,1,3 -0,0,109,97,107,101,0,2,4 -0,109,97,107,101,115,0,1,5 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,116,0,1,3 -0,0,109,97,116,101,0,2,4 -0,109,97,116,101,114,0,1,5 -109,97,116,101,114,105,0,2,6 -97,116,101,114,105,97,0,1,7 -116,101,114,105,97,108,0,1,8 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,105,0,2,2 -0,0,0,109,105,100,0,1,3 -0,0,109,105,100,100,0,2,4 -0,109,105,100,100,108,0,2,5 -109,105,100,100,108,101,0,2,6 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,110,0,1,3 -0,0,109,111,110,101,0,2,4 -0,109,111,110,101,121,0,1,5 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,101,0,2,2 -0,0,0,110,101,101,0,1,3 -0,0,110,101,101,100,0,1,4 -0,110,101,101,100,101,0,2,5 -110,101,101,100,101,100,0,1,6 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,111,0,2,2 -0,0,0,110,111,105,0,1,3 -0,0,110,111,105,115,0,1,4 -0,110,111,105,115,101,0,2,5 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,111,0,2,2 -0,0,0,110,111,116,0,1,3 -0,0,110,111,116,105,0,2,4 -0,110,111,116,105,99,0,1,5 -110,111,116,105,99,101,0,2,6 -111,116,105,99,101,115,0,1,7 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,114,0,1,2 -0,0,0,111,114,103,0,2,3 -0,0,111,114,103,97,0,2,4 -0,111,114,103,97,110,0,1,5 -111,114,103,97,110,105,0,2,6 -114,103,97,110,105,115,0,1,7 -103,97,110,105,115,109,0,2,8 -97,110,105,115,109,115,0,2,9 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,101,0,2,2 -0,0,0,112,101,116,0,1,3 -0,0,112,101,116,114,0,2,4 -0,112,101,116,114,111,0,2,5 -112,101,116,114,111,108,0,1,6 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,108,0,2,2 -0,0,0,112,108,97,0,2,3 -0,0,112,108,97,121,0,1,4 -0,112,108,97,121,105,0,1,5 -112,108,97,121,105,110,0,1,6 -108,97,121,105,110,103,0,2,7 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,111,0,2,2 -0,0,0,112,111,108,0,1,3 -0,0,112,111,108,108,0,2,4 -0,112,111,108,108,117,0,2,5 -112,111,108,108,117,116,0,1,6 -111,108,108,117,116,105,0,2,7 -108,108,117,116,105,111,0,1,8 -108,117,116,105,111,110,0,1,9 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,101,0,2,3 -0,0,112,114,101,115,0,1,4 -0,112,114,101,115,115,0,2,5 -112,114,101,115,115,101,0,2,6 -114,101,115,115,101,100,0,1,7 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,115,0,1,3 -0,0,114,101,115,116,0,2,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,97,0,2,2 -0,0,0,115,97,121,0,1,3 -0,0,115,97,121,105,0,1,4 -0,115,97,121,105,110,0,1,5 -115,97,121,105,110,103,0,2,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,105,0,2,2 -0,0,0,115,105,110,0,1,3 -0,0,115,105,110,103,0,2,4 -0,115,105,110,103,108,0,2,5 -115,105,110,103,108,101,0,2,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,112,0,2,2 -0,0,0,115,112,101,0,2,3 -0,0,115,112,101,97,0,1,4 -0,115,112,101,97,107,0,1,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,101,0,2,3 -0,0,115,116,101,97,0,1,4 -0,115,116,101,97,109,0,1,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,101,0,2,2 -0,0,0,116,101,114,0,1,3 -0,0,116,101,114,114,0,2,4 -0,116,101,114,114,101,0,2,5 -116,101,114,114,101,115,0,1,6 -101,114,114,101,115,116,0,2,7 -114,114,101,115,116,114,0,2,8 -114,101,115,116,114,105,0,2,9 -101,115,116,114,105,97,0,1,10 -115,116,114,105,97,108,0,1,11 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,114,0,2,2 -0,0,0,116,114,105,0,2,3 -0,0,116,114,105,101,0,1,4 -0,116,114,105,101,100,0,1,5 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,103,0,1,2 -0,0,0,97,103,111,0,2,3 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,97,0,1,3 -0,0,98,101,97,117,0,1,4 -0,98,101,97,117,116,0,1,5 -98,101,97,117,116,105,0,2,6 -101,97,117,116,105,102,0,1,7 -97,117,116,105,102,117,0,2,8 -117,116,105,102,117,108,0,1,9 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,108,0,2,2 -0,0,0,99,108,111,0,2,3 -0,0,99,108,111,99,0,1,4 -0,99,108,111,99,107,0,2,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,118,0,2,4 -0,99,111,110,118,101,0,2,5 -99,111,110,118,101,121,0,1,6 -111,110,118,101,121,105,0,1,7 -110,118,101,121,105,110,0,1,8 -118,101,121,105,110,103,0,2,9 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,97,0,2,2 -0,0,0,100,97,105,0,1,3 -0,0,100,97,105,109,0,1,4 -0,100,97,105,109,108,0,2,5 -100,97,105,109,108,101,0,2,6 -97,105,109,108,101,114,0,1,7 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,105,0,2,2 -0,0,0,100,105,102,0,1,3 -0,0,100,105,102,102,0,2,4 -0,100,105,102,102,105,0,2,5 -100,105,102,102,105,99,0,1,6 -105,102,102,105,99,117,0,2,7 -102,102,105,99,117,108,0,1,8 -102,105,99,117,108,116,0,2,9 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,111,0,2,2 -0,0,0,100,111,110,0,1,3 -0,0,100,111,110,101,0,2,4 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,102,0,1,2 -0,0,0,101,102,102,0,2,3 -0,0,101,102,102,111,0,2,4 -0,101,102,102,111,114,0,1,5 -101,102,102,111,114,116,0,2,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,118,0,1,2 -0,0,0,101,118,101,0,2,3 -0,0,101,118,101,114,0,1,4 -0,101,118,101,114,121,0,2,5 -101,118,101,114,121,111,0,1,6 -118,101,114,121,111,110,0,1,7 -101,114,121,111,110,101,0,2,8 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,108,0,2,2 -0,0,0,102,108,111,0,2,3 -0,0,102,108,111,119,0,1,4 -0,102,108,111,119,101,0,2,5 -102,108,111,119,101,114,0,1,6 -108,111,119,101,114,115,0,2,7 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,117,0,2,2 -0,0,0,102,117,108,0,1,3 -0,0,102,117,108,108,0,2,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,117,0,2,2 -0,0,0,102,117,114,0,1,3 -0,0,102,117,114,110,0,2,4 -0,102,117,114,110,105,0,2,5 -102,117,114,110,105,116,0,1,6 -117,114,110,105,116,117,0,2,7 -114,110,105,116,117,114,0,1,8 -110,105,116,117,114,101,0,2,9 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,111,0,2,2 -0,0,0,103,111,105,0,1,3 -0,0,103,111,105,110,0,1,4 -0,103,111,105,110,103,0,2,5 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,97,0,2,2 -0,0,0,104,97,108,0,1,3 -0,0,104,97,108,102,0,2,4 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,101,0,2,2 -0,0,0,104,101,97,0,1,3 -0,0,104,101,97,114,0,1,4 -0,104,101,97,114,116,0,2,5 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,111,0,2,2 -0,0,0,104,111,108,0,1,3 -0,0,104,111,108,100,0,2,4 -0,104,111,108,100,101,0,2,5 -104,111,108,100,101,114,0,1,6 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,104,0,2,2 -0,0,0,99,104,97,0,2,3 -0,0,99,104,97,114,0,1,4 -0,99,104,97,114,103,0,2,5 -99,104,97,114,103,101,0,2,6 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,100,0,1,2 -0,0,0,105,100,101,0,2,3 -0,0,105,100,101,97,0,1,4 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,102,0,2,3 -0,0,105,110,102,111,0,2,4 -0,105,110,102,111,114,0,1,5 -105,110,102,111,114,109,0,2,6 -110,102,111,114,109,97,0,2,7 -102,111,114,109,97,116,0,1,8 -111,114,109,97,116,105,0,2,9 -114,109,97,116,105,111,0,1,10 -109,97,116,105,111,110,0,1,11 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,115,0,2,3 -0,0,105,110,115,105,0,2,4 -0,105,110,115,105,100,0,1,5 -105,110,115,105,100,101,0,2,6 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,110,0,2,2 -0,0,0,107,110,101,0,2,3 -0,0,107,110,101,119,0,1,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,97,0,2,2 -0,0,0,108,97,119,0,1,3 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,101,0,2,2 -0,0,0,108,101,103,0,1,3 -0,0,108,101,103,97,0,2,4 -0,108,101,103,97,108,0,1,5 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,101,0,2,2 -0,0,0,108,101,118,0,1,3 -0,0,108,101,118,101,0,2,4 -0,108,101,118,101,108,0,1,5 -108,101,118,101,108,115,0,2,6 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,109,0,1,3 -0,0,108,105,109,105,0,2,4 -0,108,105,109,105,116,0,1,5 -108,105,109,105,116,115,0,2,6 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,109,0,1,3 -0,0,109,97,109,109,0,2,4 -0,109,97,109,109,97,0,2,5 -109,97,109,109,97,108,0,1,6 -97,109,109,97,108,115,0,2,7 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,99,0,2,2 -0,0,0,109,99,103,0,2,3 -0,0,109,99,103,114,0,2,4 -0,109,99,103,114,101,0,2,5 -109,99,103,114,101,103,0,1,6 -99,103,114,101,103,111,0,2,7 -103,114,101,103,111,114,0,1,8 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,111,0,2,2 -0,0,0,110,111,98,0,1,3 -0,0,110,111,98,111,0,2,4 -0,110,111,98,111,100,0,1,5 -110,111,98,111,100,121,0,2,6 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,97,0,2,2 -0,0,0,112,97,114,0,1,3 -0,0,112,97,114,116,0,2,4 -0,112,97,114,116,105,0,2,5 -112,97,114,116,105,101,0,1,6 -97,114,116,105,101,115,0,1,7 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,97,0,2,2 -0,0,0,112,97,114,0,1,3 -0,0,112,97,114,116,0,2,4 -0,112,97,114,116,115,0,2,5 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,97,0,2,2 -0,0,0,112,97,114,0,1,3 -0,0,112,97,114,116,0,2,4 -0,112,97,114,116,121,0,2,5 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,101,0,2,2 -0,0,0,112,101,114,0,1,3 -0,0,112,101,114,109,0,2,4 -0,112,101,114,109,105,0,2,5 -112,101,114,109,105,115,0,1,6 -101,114,109,105,115,115,0,2,7 -114,109,105,115,115,105,0,2,8 -109,105,115,115,105,111,0,1,9 -105,115,115,105,111,110,0,1,10 -0,0,0,0,0,113,1,0,1 -0,0,0,0,113,117,0,2,2 -0,0,0,113,117,105,0,1,3 -0,0,113,117,105,99,0,1,4 -0,113,117,105,99,107,0,2,5 -113,117,105,99,107,108,0,2,6 -117,105,99,107,108,121,0,2,7 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,117,0,2,2 -0,0,0,114,117,110,0,1,3 -0,0,114,117,110,110,0,2,4 -0,114,117,110,110,105,0,2,5 -114,117,110,110,105,110,0,1,6 -117,110,110,105,110,103,0,2,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,97,0,2,3 -0,0,115,116,97,116,0,1,4 -0,115,116,97,116,101,0,2,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,97,0,2,2 -0,0,0,116,97,120,0,1,3 -0,0,116,97,120,111,0,2,4 -0,116,97,120,111,110,0,1,5 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,110,0,1,2 -0,0,0,117,110,100,0,2,3 -0,0,117,110,100,101,0,2,4 -0,117,110,100,101,114,0,1,5 -117,110,100,101,114,115,0,2,6 -110,100,101,114,115,116,0,2,7 -100,101,114,115,116,97,0,2,8 -101,114,115,116,97,110,0,1,9 -114,115,116,97,110,100,0,2,10 -115,116,97,110,100,105,0,2,11 -116,97,110,100,105,110,0,1,12 -97,110,100,105,110,103,0,2,13 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,105,0,2,2 -0,0,0,119,105,108,0,1,3 -0,0,119,105,108,100,0,2,4 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,109,0,1,2 -0,0,0,97,109,111,0,2,3 -0,0,97,109,111,110,0,1,4 -0,97,109,111,110,103,0,2,5 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,117,0,2,2 -0,0,0,98,117,105,0,1,3 -0,0,98,117,105,108,0,1,4 -0,98,117,105,108,116,0,2,5 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,115,0,1,2 -0,0,0,101,115,112,0,2,3 -0,0,101,115,112,101,0,2,4 -0,101,115,112,101,99,0,1,5 -101,115,112,101,99,105,0,2,6 -115,112,101,99,105,97,0,1,7 -112,101,99,105,97,108,0,1,8 -101,99,105,97,108,108,0,2,9 -99,105,97,108,108,121,0,2,10 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,120,0,1,2 -0,0,0,101,120,111,0,2,3 -0,0,101,120,111,112,0,1,4 -0,101,120,111,112,108,0,2,5 -101,120,111,112,108,97,0,2,6 -120,111,112,108,97,110,0,1,7 -111,112,108,97,110,101,0,2,8 -112,108,97,110,101,116,0,1,9 -108,97,110,101,116,115,0,2,10 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,97,0,2,2 -0,0,0,104,97,112,0,1,3 -0,0,104,97,112,112,0,2,4 -0,104,97,112,112,101,0,2,5 -104,97,112,112,101,110,0,1,6 -97,112,112,101,110,101,0,2,7 -112,112,101,110,101,100,0,1,8 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,97,0,2,2 -0,0,0,104,97,114,0,1,3 -0,0,104,97,114,100,0,2,4 -0,104,97,114,100,108,0,2,5 -104,97,114,100,108,121,0,2,6 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,109,0,1,2 -0,0,0,105,109,109,0,2,3 -0,0,105,109,109,101,0,2,4 -0,105,109,109,101,100,0,1,5 -105,109,109,101,100,105,0,2,6 -109,109,101,100,105,97,0,1,7 -109,101,100,105,97,116,0,1,8 -101,100,105,97,116,101,0,2,9 -100,105,97,116,101,108,0,1,10 -105,97,116,101,108,121,0,2,11 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,100,0,2,3 -0,0,105,110,100,101,0,2,4 -0,105,110,100,101,112,0,1,5 -105,110,100,101,112,101,0,2,6 -110,100,101,112,101,110,0,1,7 -100,101,112,101,110,100,0,2,8 -101,112,101,110,100,101,0,2,9 -112,101,110,100,101,110,0,1,10 -101,110,100,101,110,116,0,2,11 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,97,0,2,2 -0,0,0,108,97,109,0,1,3 -0,0,108,97,109,112,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,109,0,1,3 -0,0,108,105,109,105,0,2,4 -0,108,105,109,105,116,0,1,5 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,109,0,1,3 -0,0,108,105,109,105,0,2,4 -0,108,105,109,105,116,0,1,5 -108,105,109,105,116,101,0,2,6 -105,109,105,116,101,100,0,1,7 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,102,0,1,2 -0,0,0,111,102,102,0,2,3 -0,0,111,102,102,101,0,2,4 -0,111,102,102,101,114,0,1,5 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,114,0,1,2 -0,0,0,111,114,100,0,2,3 -0,0,111,114,100,101,0,2,4 -0,111,114,100,101,114,0,1,5 -111,114,100,101,114,115,0,2,6 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,108,0,2,2 -0,0,0,112,108,101,0,2,3 -0,0,112,108,101,97,0,1,4 -0,112,108,101,97,115,0,1,5 -112,108,101,97,115,101,0,2,6 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,99,0,1,3 -0,0,114,101,99,101,0,2,4 -0,114,101,99,101,105,0,1,5 -114,101,99,101,105,118,0,1,6 -101,99,101,105,118,101,0,2,7 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,99,0,1,3 -0,0,114,101,99,101,0,2,4 -0,114,101,99,101,105,0,1,5 -114,101,99,101,105,118,0,1,6 -101,99,101,105,118,101,0,2,7 -99,101,105,118,101,100,0,1,8 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,111,0,2,2 -0,0,0,114,111,97,0,1,3 -0,0,114,111,97,100,0,1,4 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,111,0,2,2 -0,0,0,114,111,115,0,1,3 -0,0,114,111,115,101,0,2,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,110,0,2,2 -0,0,0,115,110,97,0,2,3 -0,0,115,110,97,107,0,1,4 -0,115,110,97,107,101,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,112,0,2,2 -0,0,0,115,112,101,0,2,3 -0,0,115,112,101,99,0,1,4 -0,115,112,101,99,105,0,2,5 -115,112,101,99,105,102,0,1,6 -112,101,99,105,102,105,0,2,7 -101,99,105,102,105,99,0,1,8 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,111,0,2,3 -0,0,115,116,111,111,0,1,4 -0,115,116,111,111,100,0,1,5 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,115,0,1,2 -0,0,0,117,115,101,0,2,3 -0,0,117,115,101,114,0,1,4 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,115,0,1,2 -0,0,0,117,115,117,0,2,3 -0,0,117,115,117,97,0,1,4 -0,117,115,117,97,108,0,1,5 -117,115,117,97,108,108,0,2,6 -115,117,97,108,108,121,0,2,7 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,111,0,2,2 -0,0,0,119,111,109,0,1,3 -0,0,119,111,109,101,0,2,4 -0,119,111,109,101,110,0,1,5 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,99,0,1,2 -0,0,0,97,99,114,0,2,3 -0,0,97,99,114,111,0,2,4 -0,97,99,114,111,115,0,1,5 -97,99,114,111,115,115,0,2,6 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,116,0,1,2 -0,0,0,97,116,116,0,2,3 -0,0,97,116,116,101,0,2,4 -0,97,116,116,101,110,0,1,5 -97,116,116,101,110,116,0,2,6 -116,116,101,110,116,105,0,2,7 -116,101,110,116,105,111,0,1,8 -101,110,116,105,111,110,0,1,9 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,97,0,2,2 -0,0,0,98,97,111,0,1,3 -0,0,98,97,111,98,0,1,4 -0,98,97,111,98,97,0,2,5 -98,97,111,98,97,98,0,1,6 -97,111,98,97,98,115,0,2,7 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,110,0,1,3 -0,0,98,101,110,122,0,2,4 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,97,0,2,2 -0,0,0,99,97,110,0,1,3 -0,0,99,97,110,110,0,2,4 -0,99,97,110,110,111,0,2,5 -99,97,110,110,111,116,0,1,6 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,97,0,2,2 -0,0,0,99,97,114,0,1,3 -0,0,99,97,114,114,0,2,4 -0,99,97,114,114,121,0,2,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,117,0,1,3 -0,0,99,111,117,99,0,1,4 -0,99,111,117,99,104,0,2,5 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,105,0,2,2 -0,0,0,102,105,110,0,1,3 -0,0,102,105,110,97,0,2,4 -0,102,105,110,97,108,0,1,5 -102,105,110,97,108,108,0,2,6 -105,110,97,108,108,121,0,2,7 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,111,0,1,3 -0,0,102,111,111,100,0,1,4 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,97,0,2,2 -0,0,0,104,97,114,0,1,3 -0,0,104,97,114,100,0,2,4 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,115,0,2,3 -0,0,105,110,115,116,0,2,4 -0,105,110,115,116,101,0,2,5 -105,110,115,116,101,97,0,1,6 -110,115,116,101,97,100,0,1,7 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,110,0,2,2 -0,0,0,107,110,111,0,2,3 -0,0,107,110,111,119,0,1,4 -0,107,110,111,119,110,0,2,5 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,106,0,1,3 -0,0,109,97,106,111,0,2,4 -0,109,97,106,111,114,0,1,5 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,115,0,1,3 -0,0,109,97,115,115,0,2,4 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,100,0,1,3 -0,0,109,111,100,105,0,2,4 -0,109,111,100,105,102,0,1,5 -109,111,100,105,102,105,0,2,6 -111,100,105,102,105,101,0,1,7 -100,105,102,105,101,100,0,1,8 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,97,0,2,2 -0,0,0,112,97,114,0,1,3 -0,0,112,97,114,116,0,2,4 -0,112,97,114,116,105,0,2,5 -112,97,114,116,105,99,0,1,6 -97,114,116,105,99,117,0,2,7 -114,116,105,99,117,108,0,1,8 -116,105,99,117,108,97,0,2,9 -105,99,117,108,97,114,0,1,10 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,108,0,2,2 -0,0,0,112,108,97,0,2,3 -0,0,112,108,97,110,0,1,4 -0,112,108,97,110,116,0,2,5 -112,108,97,110,116,115,0,2,6 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,111,0,2,3 -0,0,112,114,111,98,0,1,4 -0,112,114,111,98,97,0,2,5 -112,114,111,98,97,98,0,1,6 -114,111,98,97,98,108,0,2,7 -111,98,97,98,108,121,0,2,8 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,113,0,1,3 -0,0,114,101,113,117,0,2,4 -0,114,101,113,117,105,0,1,5 -114,101,113,117,105,114,0,1,6 -101,113,117,105,114,101,0,2,7 -113,117,105,114,101,109,0,1,8 -117,105,114,101,109,101,0,2,9 -105,114,101,109,101,110,0,1,10 -114,101,109,101,110,116,0,2,11 -101,109,101,110,116,115,0,2,12 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,118,0,1,3 -0,0,115,101,118,101,0,2,4 -0,115,101,118,101,110,0,1,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,97,0,2,2 -0,0,0,116,97,107,0,1,3 -0,0,116,97,107,101,0,2,4 -0,116,97,107,101,110,0,1,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,97,0,2,2 -0,0,0,116,97,107,0,1,3 -0,0,116,97,107,105,0,2,4 -0,116,97,107,105,110,0,1,5 -116,97,107,105,110,103,0,2,6 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,97,0,2,2 -0,0,0,116,97,120,0,1,3 -0,0,116,97,120,97,0,2,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,101,0,2,2 -0,0,0,116,101,108,0,1,3 -0,0,116,101,108,108,0,2,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,101,0,2,3 -0,0,116,104,101,109,0,1,4 -0,116,104,101,109,115,0,2,5 -116,104,101,109,115,101,0,2,6 -104,101,109,115,101,108,0,1,7 -101,109,115,101,108,118,0,2,8 -109,115,101,108,118,101,0,2,9 -115,101,108,118,101,115,0,1,10 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,111,0,2,2 -0,0,0,116,111,103,0,1,3 -0,0,116,111,103,101,0,2,4 -0,116,111,103,101,116,0,1,5 -116,111,103,101,116,104,0,2,6 -111,103,101,116,104,101,0,2,7 -103,101,116,104,101,114,0,1,8 -0,0,0,0,0,118,1,0,1 -0,0,0,0,118,101,0,2,2 -0,0,0,118,101,114,0,1,3 -0,0,118,101,114,115,0,2,4 -0,118,101,114,115,105,0,2,5 -118,101,114,115,105,111,0,1,6 -101,114,115,105,111,110,0,1,7 -114,115,105,111,110,115,0,2,8 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,98,0,1,2 -0,0,0,97,98,111,0,2,3 -0,0,97,98,111,118,0,1,4 -0,97,98,111,118,101,0,2,5 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,104,0,1,2 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,110,0,1,2 -0,0,0,97,110,121,0,2,3 -0,0,97,110,121,111,0,1,4 -0,97,110,121,111,110,0,1,5 -97,110,121,111,110,101,0,2,6 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,115,0,1,3 -0,0,98,101,115,116,0,2,4 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,105,0,2,2 -0,0,0,98,105,111,0,1,3 -0,0,98,105,111,115,0,1,4 -0,98,105,111,115,112,0,2,5 -98,105,111,115,112,104,0,2,6 -105,111,115,112,104,101,0,2,7 -111,115,112,104,101,114,0,1,8 -115,112,104,101,114,101,0,2,9 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,117,0,2,2 -0,0,0,98,117,115,0,1,3 -0,0,98,117,115,105,0,2,4 -0,98,117,115,105,110,0,1,5 -98,117,115,105,110,101,0,2,6 -117,115,105,110,101,115,0,1,7 -115,105,110,101,115,115,0,2,8 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,111,0,2,2 -0,0,0,100,111,105,0,1,3 -0,0,100,111,105,110,0,1,4 -0,100,111,105,110,103,0,2,5 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,117,0,2,2 -0,0,0,100,117,114,0,1,3 -0,0,100,117,114,105,0,2,4 -0,100,117,114,105,110,0,1,5 -100,117,114,105,110,103,0,2,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,97,0,1,2 -0,0,0,101,97,114,0,1,3 -0,0,101,97,114,108,0,2,4 -0,101,97,114,108,121,0,2,5 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,108,0,1,2 -0,0,0,101,108,115,0,2,3 -0,0,101,108,115,101,0,2,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,105,0,2,2 -0,0,0,102,105,103,0,1,3 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,117,0,1,3 -0,0,102,111,117,110,0,1,4 -0,102,111,117,110,100,0,2,5 -102,111,117,110,100,97,0,2,6 -111,117,110,100,97,116,0,1,7 -117,110,100,97,116,105,0,2,8 -110,100,97,116,105,111,0,1,9 -100,97,116,105,111,110,0,1,10 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,114,0,2,2 -0,0,0,102,114,105,0,2,3 -0,0,102,114,105,101,0,1,4 -0,102,114,105,101,110,0,1,5 -102,114,105,101,110,100,0,2,6 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,117,0,2,2 -0,0,0,102,117,114,0,1,3 -0,0,102,117,114,116,0,2,4 -0,102,117,114,116,104,0,2,5 -102,117,114,116,104,101,0,2,6 -117,114,116,104,101,114,0,1,7 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,101,0,2,2 -0,0,0,104,101,108,0,1,3 -0,0,104,101,108,100,0,2,4 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,101,0,2,2 -0,0,0,107,101,101,0,1,3 -0,0,107,101,101,112,0,1,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,97,0,2,2 -0,0,0,108,97,114,0,1,3 -0,0,108,97,114,103,0,2,4 -0,108,97,114,103,101,0,2,5 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,101,0,2,2 -0,0,0,108,101,97,0,1,3 -0,0,108,101,97,115,0,1,4 -0,108,101,97,115,116,0,2,5 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,110,0,1,3 -0,0,108,105,110,101,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,108,0,2,2 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,111,0,2,3 -0,0,112,114,111,118,0,1,4 -0,112,114,111,118,105,0,2,5 -112,114,111,118,105,100,0,1,6 -114,111,118,105,100,101,0,2,7 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,97,0,1,3 -0,0,114,101,97,115,0,1,4 -0,114,101,97,115,111,0,2,5 -114,101,97,115,111,110,0,1,6 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,101,0,2,2 -0,0,0,116,101,109,0,1,3 -0,0,116,101,109,112,0,2,4 -0,116,101,109,112,101,0,2,5 -116,101,109,112,101,114,0,1,6 -101,109,112,101,114,97,0,2,7 -109,112,101,114,97,116,0,1,8 -112,101,114,97,116,117,0,2,9 -101,114,97,116,117,114,0,1,10 -114,97,116,117,114,101,0,2,11 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,105,0,2,3 -0,0,116,104,105,114,0,1,4 -0,116,104,105,114,100,0,2,5 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,111,0,2,2 -0,0,0,119,111,114,0,1,3 -0,0,119,111,114,100,0,2,4 -0,119,111,114,100,115,0,2,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,108,0,2,2 -0,0,0,99,108,101,0,2,3 -0,0,99,108,101,97,0,1,4 -0,99,108,101,97,114,0,1,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,108,0,2,2 -0,0,0,99,108,111,0,2,3 -0,0,99,108,111,115,0,1,4 -0,99,108,111,115,101,0,2,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,117,0,1,3 -0,0,99,111,117,114,0,1,4 -0,99,111,117,114,115,0,2,5 -99,111,117,114,115,101,0,2,6 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,97,0,2,2 -0,0,0,100,97,121,0,1,3 -0,0,100,97,121,115,0,1,4 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,101,0,2,2 -0,0,0,100,101,115,0,1,3 -0,0,100,101,115,105,0,2,4 -0,100,101,115,105,103,0,1,5 -100,101,115,105,103,110,0,2,6 -101,115,105,103,110,101,0,2,7 -115,105,103,110,101,100,0,1,8 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,97,0,1,2 -0,0,0,101,97,116,0,1,3 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,110,0,1,2 -0,0,0,101,110,116,0,2,3 -0,0,101,110,116,105,0,2,4 -0,101,110,116,105,114,0,1,5 -101,110,116,105,114,101,0,2,6 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,97,0,2,2 -0,0,0,102,97,99,0,1,3 -0,0,102,97,99,101,0,2,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,114,0,2,2 -0,0,0,102,114,111,0,2,3 -0,0,102,114,111,110,0,1,4 -0,102,114,111,110,116,0,2,5 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,113,0,1,3 -0,0,108,105,113,117,0,2,4 -0,108,105,113,117,105,0,1,5 -108,105,113,117,105,100,0,1,6 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,105,0,2,2 -0,0,0,109,105,108,0,1,3 -0,0,109,105,108,108,0,2,4 -0,109,105,108,108,105,0,2,5 -109,105,108,108,105,111,0,1,6 -105,108,108,105,111,110,0,1,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,97,0,2,3 -0,0,115,116,97,114,0,1,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,111,0,2,2 -0,0,0,116,111,108,0,1,3 -0,0,116,111,108,100,0,2,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,111,0,2,2 -0,0,0,119,111,114,0,1,3 -0,0,119,111,114,107,0,2,4 -0,119,111,114,107,115,0,2,5 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,100,0,1,2 -0,0,0,97,100,100,0,2,3 -0,0,97,100,100,105,0,2,4 -0,97,100,100,105,116,0,1,5 -97,100,100,105,116,105,0,2,6 -100,100,105,116,105,111,0,1,7 -100,105,116,105,111,110,0,1,8 -105,116,105,111,110,97,0,2,9 -116,105,111,110,97,108,0,1,10 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,108,0,1,2 -0,0,0,97,108,109,0,2,3 -0,0,97,108,109,111,0,2,4 -0,97,108,109,111,115,0,1,5 -97,108,109,111,115,116,0,2,6 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,112,0,1,2 -0,0,0,97,112,112,0,2,3 -0,0,97,112,112,108,0,2,4 -0,97,112,112,108,121,0,2,5 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,114,0,1,2 -0,0,0,97,114,109,0,2,3 -0,0,97,114,109,115,0,2,4 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,104,0,1,3 -0,0,98,101,104,105,0,2,4 -0,98,101,104,105,110,0,1,5 -98,101,104,105,110,100,0,2,6 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,101,0,2,2 -0,0,0,100,101,101,0,1,3 -0,0,100,101,101,112,0,1,4 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,114,0,2,2 -0,0,0,100,114,121,0,2,3 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,114,0,1,3 -0,0,102,111,114,109,0,2,4 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,110,0,2,2 -0,0,0,103,110,117,0,2,3 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,97,0,2,2 -0,0,0,104,97,118,0,1,3 -0,0,104,97,118,105,0,2,4 -0,104,97,118,105,110,0,1,5 -104,97,118,105,110,103,0,2,6 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,104,0,2,2 -0,0,0,99,104,97,0,2,3 -0,0,99,104,97,105,0,1,4 -0,99,104,97,105,114,0,1,5 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,109,0,1,2 -0,0,0,105,109,112,0,2,3 -0,0,105,109,112,111,0,2,4 -0,105,109,112,111,114,0,1,5 -105,109,112,111,114,116,0,2,6 -109,112,111,114,116,97,0,2,7 -112,111,114,116,97,110,0,1,8 -111,114,116,97,110,116,0,2,9 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,99,0,2,3 -0,0,105,110,99,108,0,2,4 -0,105,110,99,108,117,0,2,5 -105,110,99,108,117,100,0,1,6 -110,99,108,117,100,105,0,2,7 -99,108,117,100,105,110,0,1,8 -108,117,100,105,110,103,0,2,9 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,101,0,2,2 -0,0,0,108,101,97,0,1,3 -0,0,108,101,97,118,0,1,4 -0,108,101,97,118,101,0,2,5 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,101,0,2,2 -0,0,0,108,101,103,0,1,3 -0,0,108,101,103,115,0,2,4 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,101,0,2,2 -0,0,0,109,101,97,0,1,3 -0,0,109,101,97,110,0,1,4 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,109,0,1,3 -0,0,109,111,109,101,0,2,4 -0,109,111,109,101,110,0,1,5 -109,111,109,101,110,116,0,2,6 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,121,0,2,2 -0,0,0,109,121,115,0,1,3 -0,0,109,121,115,101,0,2,4 -0,109,121,115,101,108,0,1,5 -109,121,115,101,108,102,0,2,6 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,111,0,2,3 -0,0,112,114,111,118,0,1,4 -0,112,114,111,118,105,0,2,5 -112,114,111,118,105,100,0,1,6 -114,111,118,105,100,101,0,2,7 -111,118,105,100,101,100,0,1,8 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,112,0,1,3 -0,0,114,101,112,108,0,2,4 -0,114,101,112,108,105,0,2,5 -114,101,112,108,105,101,0,1,6 -101,112,108,105,101,100,0,1,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,115,111,109,0,1,3 -0,0,115,111,109,101,0,2,4 -0,115,111,109,101,116,0,1,5 -115,111,109,101,116,105,0,2,6 -111,109,101,116,105,109,0,1,7 -109,101,116,105,109,101,0,2,8 -101,116,105,109,101,115,0,1,9 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,117,0,2,3 -0,0,116,104,117,115,0,1,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,117,0,2,2 -0,0,0,116,117,114,0,1,3 -0,0,116,117,114,110,0,2,4 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,112,0,1,2 -0,0,0,117,112,115,0,2,3 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,108,0,1,2 -0,0,0,101,108,101,0,2,3 -0,0,101,108,101,99,0,1,4 -0,101,108,101,99,116,0,2,5 -101,108,101,99,116,114,0,2,6 -108,101,99,116,114,105,0,2,7 -101,99,116,114,105,99,0,1,8 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,110,0,1,2 -0,0,0,101,110,100,0,2,3 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,108,0,2,2 -0,0,0,102,108,97,0,2,3 -0,0,102,108,97,116,0,1,4 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,117,0,2,2 -0,0,0,104,117,110,0,1,3 -0,0,104,117,110,100,0,2,4 -0,104,117,110,100,114,0,2,5 -104,117,110,100,114,101,0,2,6 -117,110,100,114,101,100,0,1,7 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,100,0,1,3 -0,0,109,111,100,105,0,2,4 -0,109,111,100,105,102,0,1,5 -109,111,100,105,102,121,0,2,6 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,110,0,1,2 -0,0,0,111,110,116,0,2,3 -0,0,111,110,116,111,0,2,4 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,112,0,1,2 -0,0,0,111,112,101,0,2,3 -0,0,111,112,101,110,0,1,4 -0,111,112,101,110,101,0,2,5 -111,112,101,110,101,100,0,1,6 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,111,0,2,3 -0,0,112,114,111,100,0,1,4 -0,112,114,111,100,117,0,2,5 -112,114,111,100,117,99,0,1,6 -114,111,100,117,99,116,0,2,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,97,0,2,2 -0,0,0,115,97,116,0,1,3 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,105,0,2,2 -0,0,0,115,105,110,0,1,3 -0,0,115,105,110,99,0,2,4 -0,115,105,110,99,101,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,105,0,2,2 -0,0,0,115,105,120,0,1,3 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,114,0,2,3 -0,0,115,116,114,97,0,2,4 -0,115,116,114,97,105,0,1,5 -115,116,114,97,105,103,0,1,6 -116,114,97,105,103,104,0,2,7 -114,97,105,103,104,116,0,2,8 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,121,0,2,2 -0,0,0,115,121,115,0,1,3 -0,0,115,121,115,116,0,2,4 -0,115,121,115,116,101,0,2,5 -115,121,115,116,101,109,0,1,6 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,114,0,2,2 -0,0,0,116,114,117,0,2,3 -0,0,116,114,117,101,0,1,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,105,0,2,2 -0,0,0,119,105,110,0,1,3 -0,0,119,105,110,100,0,2,4 -0,119,105,110,100,111,0,2,5 -119,105,110,100,111,119,0,1,6 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,105,0,1,2 -0,0,0,97,105,114,0,1,3 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,108,0,1,2 -0,0,0,97,108,111,0,2,3 -0,0,97,108,111,110,0,1,4 -0,97,108,111,110,103,0,2,5 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,99,0,1,3 -0,0,98,101,99,97,0,2,4 -0,98,101,99,97,109,0,1,5 -98,101,99,97,109,101,0,2,6 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,115,0,2,4 -0,99,111,110,115,101,0,2,5 -99,111,110,115,101,113,0,1,6 -111,110,115,101,113,117,0,2,7 -110,115,101,113,117,101,0,1,8 -115,101,113,117,101,110,0,1,9 -101,113,117,101,110,99,0,2,10 -113,117,101,110,99,101,0,2,11 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,112,0,1,3 -0,0,99,111,112,105,0,2,4 -0,99,111,112,105,101,0,1,5 -99,111,112,105,101,115,0,1,6 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,101,0,2,2 -0,0,0,102,101,101,0,1,3 -0,0,102,101,101,108,0,1,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,108,0,2,2 -0,0,0,102,108,111,0,2,3 -0,0,102,108,111,111,0,1,4 -0,102,108,111,111,114,0,1,5 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,105,0,2,2 -0,0,0,103,105,118,0,1,3 -0,0,103,105,118,101,0,2,4 -0,103,105,118,101,110,0,1,5 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,117,0,2,2 -0,0,0,104,117,109,0,1,3 -0,0,104,117,109,97,0,2,4 -0,104,117,109,97,110,0,1,5 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,101,0,2,2 -0,0,0,107,101,121,0,1,3 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,97,0,2,2 -0,0,0,108,97,121,0,1,3 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,111,0,2,2 -0,0,0,110,111,116,0,1,3 -0,0,110,111,116,105,0,2,4 -0,110,111,116,105,99,0,1,5 -110,111,116,105,99,101,0,2,6 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,117,0,2,2 -0,0,0,114,117,110,0,1,3 -0,0,0,0,0,118,1,0,1 -0,0,0,0,118,111,0,2,2 -0,0,0,118,111,105,0,1,3 -0,0,118,111,105,99,0,1,4 -0,118,111,105,99,101,0,2,5 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,112,0,1,2 -0,0,0,97,112,112,0,2,3 -0,0,97,112,112,101,0,2,4 -0,97,112,112,101,110,0,1,5 -97,112,112,101,110,100,0,2,6 -112,112,101,110,100,105,0,2,7 -112,101,110,100,105,120,0,1,8 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,118,0,1,2 -0,0,0,97,118,97,0,2,3 -0,0,97,118,97,105,0,1,4 -0,97,118,97,105,108,0,1,5 -97,118,97,105,108,97,0,2,6 -118,97,105,108,97,98,0,1,7 -97,105,108,97,98,108,0,2,8 -105,108,97,98,108,101,0,2,9 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,111,0,2,2 -0,0,0,100,111,110,0,1,3 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,101,0,2,2 -0,0,0,102,101,119,0,1,3 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,101,0,2,2 -0,0,0,103,101,111,0,1,3 -0,0,103,101,111,103,0,1,4 -0,103,101,111,103,114,0,2,5 -103,101,111,103,114,97,0,2,6 -101,111,103,114,97,112,0,1,7 -111,103,114,97,112,104,0,2,8 -103,114,97,112,104,101,0,2,9 -114,97,112,104,101,114,0,1,10 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,114,0,2,2 -0,0,0,103,114,111,0,2,3 -0,0,103,114,111,119,0,1,4 -0,103,114,111,119,110,0,2,5 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,101,0,2,2 -0,0,0,104,101,97,0,1,3 -0,0,104,101,97,114,0,1,4 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,101,0,2,2 -0,0,0,104,101,97,0,1,3 -0,0,104,101,97,114,0,1,4 -0,104,101,97,114,100,0,2,5 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,117,0,2,2 -0,0,0,104,117,109,0,1,3 -0,0,104,117,109,97,0,2,4 -0,104,117,109,97,110,0,1,5 -104,117,109,97,110,115,0,2,6 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,118,0,1,3 -0,0,108,105,118,105,0,2,4 -0,108,105,118,105,110,0,1,5 -108,105,118,105,110,103,0,2,6 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,114,0,2,2 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,111,0,2,3 -0,0,112,114,111,100,0,1,4 -0,112,114,111,100,117,0,2,5 -112,114,111,100,117,99,0,1,6 -114,111,100,117,99,116,0,2,7 -111,100,117,99,116,105,0,2,8 -100,117,99,116,105,111,0,1,9 -117,99,116,105,111,110,0,1,10 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,101,0,1,3 -0,0,115,101,101,110,0,1,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,105,0,2,2 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,117,0,2,2 -0,0,0,115,117,114,0,1,3 -0,0,115,117,114,101,0,2,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,105,0,2,2 -0,0,0,116,105,109,0,1,3 -0,0,116,105,109,101,0,2,4 -0,116,105,109,101,115,0,1,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,117,0,2,2 -0,0,0,116,117,114,0,1,3 -0,0,116,117,114,110,0,2,4 -0,116,117,114,110,101,0,2,5 -116,117,114,110,101,100,0,1,6 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,104,0,2,2 -0,0,0,119,104,101,0,2,3 -0,0,119,104,101,116,0,1,4 -0,119,104,101,116,104,0,2,5 -119,104,101,116,104,101,0,2,6 -104,101,116,104,101,114,0,1,7 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,110,0,1,2 -0,0,0,97,110,115,0,2,3 -0,0,97,110,115,119,0,2,4 -0,97,110,115,119,101,0,2,5 -97,110,115,119,101,114,0,1,6 -110,115,119,101,114,101,0,2,7 -115,119,101,114,101,100,0,1,8 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,101,0,2,2 -0,0,0,99,101,114,0,1,3 -0,0,99,101,114,116,0,2,4 -0,99,101,114,116,97,0,2,5 -99,101,114,116,97,105,0,1,6 -101,114,116,97,105,110,0,1,7 -114,116,97,105,110,108,0,2,8 -116,97,105,110,108,121,0,2,9 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,97,0,2,2 -0,0,0,100,97,116,0,1,3 -0,0,100,97,116,97,0,2,4 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,101,0,2,2 -0,0,0,100,101,115,0,1,3 -0,0,100,101,115,101,0,2,4 -0,100,101,115,101,114,0,1,5 -100,101,115,101,114,116,0,2,6 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,105,0,2,2 -0,0,0,100,105,115,0,1,3 -0,0,100,105,115,116,0,2,4 -0,100,105,115,116,114,0,2,5 -100,105,115,116,114,105,0,2,6 -105,115,116,114,105,98,0,1,7 -115,116,114,105,98,117,0,2,8 -116,114,105,98,117,116,0,1,9 -114,105,98,117,116,101,0,2,10 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,110,0,1,2 -0,0,0,101,110,101,0,2,3 -0,0,101,110,101,114,0,1,4 -0,101,110,101,114,103,0,2,5 -101,110,101,114,103,121,0,2,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,110,0,1,2 -0,0,0,101,110,103,0,2,3 -0,0,101,110,103,105,0,2,4 -0,101,110,103,105,110,0,1,5 -101,110,103,105,110,101,0,2,6 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,105,0,2,2 -0,0,0,102,105,110,0,1,3 -0,0,102,105,110,100,0,2,4 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,101,0,2,2 -0,0,0,103,101,110,0,1,3 -0,0,103,101,110,116,0,2,4 -0,103,101,110,116,108,0,2,5 -103,101,110,116,108,101,0,2,6 -101,110,116,108,101,109,0,1,7 -110,116,108,101,109,101,0,2,8 -116,108,101,109,101,110,0,1,9 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,97,0,2,2 -0,0,0,104,97,110,0,1,3 -0,0,104,97,110,100,0,2,4 -0,104,97,110,100,115,0,2,5 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,101,0,2,2 -0,0,0,104,101,108,0,1,3 -0,0,104,101,108,112,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,111,0,2,2 -0,0,0,108,111,111,0,1,3 -0,0,108,111,111,107,0,1,4 -0,108,111,111,107,105,0,2,5 -108,111,111,107,105,110,0,1,6 -111,111,107,105,110,103,0,2,7 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,114,0,1,3 -0,0,109,97,114,105,0,2,4 -0,109,97,114,105,110,0,1,5 -109,97,114,105,110,101,0,2,6 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,104,0,1,2 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,99,0,1,3 -0,0,115,101,99,116,0,2,4 -0,115,101,99,116,105,0,2,5 -115,101,99,116,105,111,0,1,6 -101,99,116,105,111,110,0,1,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,118,0,1,3 -0,0,115,101,118,101,0,2,4 -0,115,101,118,101,114,0,1,5 -115,101,118,101,114,97,0,2,6 -101,118,101,114,97,108,0,1,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,108,0,2,2 -0,0,0,115,108,101,0,2,3 -0,0,115,108,101,101,0,1,4 -0,115,108,101,101,112,0,1,5 -0,0,0,0,0,118,1,0,1 -0,0,0,0,118,101,0,2,2 -0,0,0,118,101,104,0,1,3 -0,0,118,101,104,105,0,2,4 -0,118,101,104,105,99,0,1,5 -118,101,104,105,99,108,0,2,6 -101,104,105,99,108,101,0,2,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,97,0,2,2 -0,0,0,99,97,114,0,1,3 -0,0,99,97,114,98,0,2,4 -0,99,97,114,98,111,0,2,5 -99,97,114,98,111,110,0,1,6 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,114,0,2,2 -0,0,0,100,114,97,0,2,3 -0,0,100,114,97,119,0,1,4 -0,100,114,97,119,105,0,2,5 -100,114,97,119,105,110,0,1,6 -114,97,119,105,110,103,0,2,7 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,118,0,1,2 -0,0,0,101,118,101,0,2,3 -0,0,101,118,101,114,0,1,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,101,0,2,2 -0,0,0,102,101,108,0,1,3 -0,0,102,101,108,116,0,2,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,105,0,2,2 -0,0,0,102,105,118,0,1,3 -0,0,102,105,118,101,0,2,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,117,0,1,3 -0,0,102,111,117,114,0,1,4 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,111,0,2,2 -0,0,0,103,111,116,0,1,3 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,114,0,2,2 -0,0,0,103,114,101,0,2,3 -0,0,103,114,101,116,0,1,4 -0,103,114,101,116,101,0,2,5 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,101,0,2,2 -0,0,0,104,101,114,0,1,3 -0,0,104,101,114,115,0,2,4 -0,104,101,114,115,101,0,2,5 -104,101,114,115,101,108,0,1,6 -101,114,115,101,108,102,0,2,7 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,111,0,2,2 -0,0,0,104,111,109,0,1,3 -0,0,104,111,109,101,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,111,0,2,2 -0,0,0,108,111,110,0,1,3 -0,0,108,111,110,103,0,2,4 -0,108,111,110,103,101,0,2,5 -108,111,110,103,101,114,0,1,6 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,101,0,2,2 -0,0,0,109,101,110,0,1,3 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,105,0,2,2 -0,0,0,115,105,100,0,1,3 -0,0,115,105,100,101,0,2,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,105,0,2,3 -0,0,116,104,105,110,0,1,4 -0,116,104,105,110,103,0,2,5 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,110,0,1,2 -0,0,0,117,110,116,0,2,3 -0,0,117,110,116,105,0,2,4 -0,117,110,116,105,108,0,1,5 -0,0,0,0,0,121,1,0,1 -0,0,0,0,121,101,0,1,2 -0,0,0,121,101,97,0,1,3 -0,0,121,101,97,114,0,1,4 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,100,0,1,2 -0,0,0,97,100,100,0,2,3 -0,0,97,100,100,101,0,2,4 -0,97,100,100,101,100,0,1,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,114,0,1,3 -0,0,99,111,114,114,0,2,4 -0,99,111,114,114,101,0,2,5 -99,111,114,114,101,115,0,1,6 -111,114,114,101,115,112,0,2,7 -114,114,101,115,112,111,0,2,8 -114,101,115,112,111,110,0,1,9 -101,115,112,111,110,100,0,2,10 -115,112,111,110,100,105,0,2,11 -112,111,110,100,105,110,0,1,12 -111,110,100,105,110,103,0,2,13 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,104,0,2,2 -0,0,0,99,104,97,0,2,3 -0,0,99,104,97,112,0,1,4 -0,99,104,97,112,116,0,2,5 -99,104,97,112,116,101,0,2,6 -104,97,112,116,101,114,0,1,7 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,101,0,2,2 -0,0,0,109,101,97,0,1,3 -0,0,109,101,97,110,0,1,4 -0,109,101,97,110,115,0,2,5 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,97,0,2,2 -0,0,0,112,97,114,0,1,3 -0,0,112,97,114,101,0,2,4 -0,112,97,114,101,110,0,1,5 -112,97,114,101,110,116,0,2,6 -97,114,101,110,116,115,0,2,7 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,97,0,2,2 -0,0,0,112,97,114,0,1,3 -0,0,112,97,114,116,0,2,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,104,0,2,2 -0,0,0,115,104,111,0,2,3 -0,0,115,104,111,119,0,1,4 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,115,0,1,2 -0,0,0,117,115,105,0,2,3 -0,0,117,115,105,110,0,1,4 -0,117,115,105,110,103,0,2,5 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,103,0,1,3 -0,0,98,101,103,97,0,2,4 -0,98,101,103,97,110,0,1,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,118,0,2,4 -0,99,111,110,118,101,0,2,5 -99,111,110,118,101,121,0,1,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,121,0,1,2 -0,0,0,101,121,101,0,1,3 -0,0,101,121,101,115,0,1,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,117,0,1,3 -0,0,102,111,117,110,0,1,4 -0,102,111,117,110,100,0,2,5 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,118,0,1,3 -0,0,109,111,118,101,0,2,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,97,0,2,2 -0,0,0,116,97,107,0,1,3 -0,0,116,97,107,101,0,2,4 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,108,0,1,2 -0,0,0,97,108,116,0,2,3 -0,0,97,108,116,104,0,2,4 -0,97,108,116,104,111,0,2,5 -97,108,116,104,111,117,0,1,6 -108,116,104,111,117,103,0,1,7 -116,104,111,117,103,104,0,2,8 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,105,0,1,2 -0,0,0,101,105,116,0,1,3 -0,0,101,105,116,104,0,2,4 -0,101,105,116,104,101,0,2,5 -101,105,116,104,101,114,0,1,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,118,0,1,2 -0,0,0,101,118,101,0,2,3 -0,0,101,118,101,110,0,1,4 -0,101,118,101,110,105,0,2,5 -101,118,101,110,105,110,0,1,6 -118,101,110,105,110,103,0,2,7 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,97,0,2,2 -0,0,0,102,97,114,0,1,3 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,101,0,2,2 -0,0,0,110,101,101,0,1,3 -0,0,110,101,101,100,0,1,4 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,101,0,2,2 -0,0,0,110,101,120,0,1,3 -0,0,110,101,120,116,0,2,4 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,105,0,2,2 -0,0,0,110,105,103,0,1,3 -0,0,110,105,103,104,0,2,4 -0,110,105,103,104,116,0,2,5 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,101,0,2,2 -0,0,0,112,101,114,0,1,3 -0,0,112,101,114,104,0,2,4 -0,112,101,114,104,97,0,2,5 -112,101,114,104,97,112,0,1,6 -101,114,104,97,112,115,0,2,7 -0,0,0,0,0,113,1,0,1 -0,0,0,0,113,117,0,2,2 -0,0,0,113,117,101,0,1,3 -0,0,113,117,101,115,0,1,4 -0,113,117,101,115,116,0,2,5 -113,117,101,115,116,105,0,2,6 -117,101,115,116,105,111,0,1,7 -101,115,116,105,111,110,0,1,8 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,111,0,2,2 -0,0,0,114,111,117,0,1,3 -0,0,114,111,117,110,0,1,4 -0,114,111,117,110,100,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,97,0,2,2 -0,0,0,115,97,119,0,1,3 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,108,0,2,2 -0,0,0,115,108,111,0,2,3 -0,0,115,108,111,119,0,1,4 -0,115,108,111,119,108,0,2,5 -115,108,111,119,108,121,0,2,6 -0,0,0,0,0,118,1,0,1 -0,0,0,0,118,101,0,2,2 -0,0,0,118,101,104,0,1,3 -0,0,118,101,104,105,0,2,4 -0,118,101,104,105,99,0,1,5 -118,101,104,105,99,108,0,2,6 -101,104,105,99,108,101,0,2,7 -104,105,99,108,101,115,0,1,8 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,97,0,2,2 -0,0,0,119,97,114,0,1,3 -0,0,119,97,114,114,0,2,4 -0,119,97,114,114,97,0,2,5 -119,97,114,114,97,110,0,1,6 -97,114,114,97,110,116,0,2,7 -114,114,97,110,116,121,0,2,8 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,104,0,2,2 -0,0,0,119,104,121,0,2,3 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,100,0,1,3 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,116,0,1,3 -0,0,98,101,116,119,0,2,4 -0,98,101,116,119,101,0,2,5 -98,101,116,119,101,101,0,1,6 -101,116,119,101,101,110,0,1,7 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,111,0,2,2 -0,0,0,98,111,116,0,1,3 -0,0,98,111,116,104,0,2,4 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,110,0,1,2 -0,0,0,101,110,118,0,2,3 -0,0,101,110,118,105,0,2,4 -0,101,110,118,105,114,0,1,5 -101,110,118,105,114,111,0,2,6 -110,118,105,114,111,110,0,1,7 -118,105,114,111,110,109,0,2,8 -105,114,111,110,109,101,0,2,9 -114,111,110,109,101,110,0,1,10 -111,110,109,101,110,116,0,2,11 -110,109,101,110,116,115,0,2,12 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,104,0,2,2 -0,0,0,99,104,97,0,2,3 -0,0,99,104,97,110,0,1,4 -0,99,104,97,110,103,0,2,5 -99,104,97,110,103,101,0,2,6 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,99,0,2,3 -0,0,105,110,99,108,0,2,4 -0,105,110,99,108,117,0,2,5 -105,110,99,108,117,100,0,1,6 -110,99,108,117,100,101,0,2,7 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,97,0,2,2 -0,0,0,108,97,116,0,1,3 -0,0,108,97,116,101,0,2,4 -0,108,97,116,101,114,0,1,5 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,118,0,1,3 -0,0,108,105,118,101,0,2,4 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,117,0,2,2 -0,0,0,110,117,109,0,1,3 -0,0,110,117,109,98,0,2,4 -0,110,117,109,98,101,0,2,5 -110,117,109,98,101,114,0,1,6 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,98,0,1,2 -0,0,0,111,98,106,0,2,3 -0,0,111,98,106,101,0,2,4 -0,111,98,106,101,99,0,1,5 -111,98,106,101,99,116,0,2,6 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,102,0,1,2 -0,0,0,111,102,102,0,2,3 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,114,0,1,2 -0,0,0,111,114,100,0,2,3 -0,0,111,114,100,101,0,2,4 -0,111,114,100,101,114,0,1,5 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,116,0,1,2 -0,0,0,111,116,104,0,2,3 -0,0,111,116,104,101,0,2,4 -0,111,116,104,101,114,0,1,5 -111,116,104,101,114,115,0,2,6 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,101,0,2,3 -0,0,112,114,101,115,0,1,4 -0,112,114,101,115,101,0,2,5 -112,114,101,115,101,110,0,1,6 -114,101,115,101,110,116,0,2,7 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,101,0,2,2 -0,0,0,114,101,97,0,1,3 -0,0,114,101,97,108,0,1,4 -0,114,101,97,108,108,0,2,5 -114,101,97,108,108,121,0,2,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,116,0,1,3 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,116,0,1,3 -0,0,98,101,116,116,0,2,4 -0,98,101,116,116,101,0,2,5 -98,101,116,116,101,114,0,1,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,118,0,1,2 -0,0,0,101,118,101,0,2,3 -0,0,101,118,101,114,0,1,4 -0,101,118,101,114,121,0,2,5 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,105,0,2,2 -0,0,0,103,105,118,0,1,3 -0,0,103,105,118,101,0,2,4 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,97,0,2,2 -0,0,0,104,97,110,0,1,3 -0,0,104,97,110,100,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,103,0,1,3 -0,0,108,105,103,104,0,2,4 -0,108,105,103,104,116,0,2,5 -0,0,0,0,0,113,1,0,1 -0,0,0,0,113,117,0,2,2 -0,0,0,113,117,105,0,1,3 -0,0,113,117,105,116,0,1,4 -0,113,117,105,116,101,0,2,5 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,110,0,1,2 -0,0,0,97,110,111,0,2,3 -0,0,97,110,111,116,0,1,4 -0,97,110,111,116,104,0,2,5 -97,110,111,116,104,101,0,2,6 -110,111,116,104,101,114,0,1,7 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,99,0,1,3 -0,0,98,101,99,111,0,2,4 -0,98,101,99,111,109,0,1,5 -98,101,99,111,109,101,0,2,6 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,111,0,2,2 -0,0,0,98,111,100,0,1,3 -0,0,98,111,100,121,0,2,4 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,97,0,2,2 -0,0,0,99,97,108,0,1,3 -0,0,99,97,108,108,0,2,4 -0,99,97,108,108,101,0,2,5 -99,97,108,108,101,100,0,1,6 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,116,0,2,2 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,105,0,2,2 -0,0,0,104,105,103,0,1,3 -0,0,104,105,103,104,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,97,0,2,2 -0,0,0,108,97,115,0,1,3 -0,0,108,97,115,116,0,2,4 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,119,0,1,2 -0,0,0,111,119,110,0,2,3 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,105,0,2,2 -0,0,0,114,105,103,0,1,3 -0,0,114,105,103,104,0,2,4 -0,114,105,103,104,116,0,2,5 -114,105,103,104,116,115,0,2,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,110,0,1,2 -0,0,0,101,110,111,0,2,3 -0,0,101,110,111,117,0,1,4 -0,101,110,111,117,103,0,1,5 -101,110,111,117,103,104,0,2,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,115,0,1,2 -0,0,0,101,115,116,0,2,3 -0,0,101,115,116,105,0,2,4 -0,101,115,116,105,109,0,1,5 -101,115,116,105,109,97,0,2,6 -115,116,105,109,97,116,0,1,7 -116,105,109,97,116,101,0,2,8 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,107,0,1,3 -0,0,109,97,107,105,0,2,4 -0,109,97,107,105,110,0,1,5 -109,97,107,105,110,103,0,2,6 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,105,0,2,2 -0,0,0,109,105,103,0,1,3 -0,0,109,105,103,104,0,2,4 -0,109,105,103,104,116,0,2,5 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,102,0,1,2 -0,0,0,111,102,116,0,2,3 -0,0,111,102,116,101,0,2,4 -0,111,102,116,101,110,0,1,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,111,0,2,2 -0,0,0,116,111,116,0,1,3 -0,0,116,111,116,97,0,2,4 -0,116,111,116,97,108,0,1,5 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,97,0,2,2 -0,0,0,119,97,110,0,1,3 -0,0,119,97,110,116,0,2,4 -0,119,97,110,116,101,0,2,5 -119,97,110,116,101,100,0,1,6 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,120,0,1,2 -0,0,0,101,120,97,0,2,3 -0,0,101,120,97,109,0,1,4 -0,101,120,97,109,112,0,2,5 -101,120,97,109,112,108,0,2,6 -120,97,109,112,108,101,0,2,7 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,110,0,1,2 -0,0,0,117,110,99,0,2,3 -0,0,117,110,99,101,0,2,4 -0,117,110,99,101,114,0,1,5 -117,110,99,101,114,116,0,2,6 -110,99,101,114,116,97,0,2,7 -99,101,114,116,97,105,0,1,8 -101,114,116,97,105,110,0,1,9 -114,116,97,105,110,116,0,2,10 -116,97,105,110,116,121,0,2,11 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,104,0,2,2 -0,0,0,119,104,111,0,2,3 -0,0,119,104,111,108,0,1,4 -0,119,104,111,108,101,0,2,5 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,105,0,2,2 -0,0,0,107,105,110,0,1,3 -0,0,107,105,110,103,0,2,4 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,108,0,1,2 -0,0,0,111,108,100,0,2,3 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,117,0,2,2 -0,0,0,112,117,116,0,1,3 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,97,0,2,2 -0,0,0,115,97,109,0,1,3 -0,0,115,97,109,115,0,2,4 -0,115,97,109,115,97,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,109,0,2,2 -0,0,0,115,109,97,0,2,3 -0,0,115,109,97,108,0,1,4 -0,115,109,97,108,108,0,2,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,105,0,2,3 -0,0,116,104,105,110,0,1,4 -0,116,104,105,110,107,0,2,5 -0,0,0,0,0,121,1,0,1 -0,0,0,0,121,101,0,1,2 -0,0,0,121,101,115,0,1,3 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,97,0,2,2 -0,0,0,102,97,109,0,1,3 -0,0,102,97,109,105,0,2,4 -0,102,97,109,105,108,0,1,5 -102,97,109,105,108,121,0,2,6 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,114,0,2,2 -0,0,0,103,114,101,0,2,3 -0,0,103,114,101,97,0,1,4 -0,103,114,101,97,116,0,1,5 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,108,0,2,2 -0,0,0,112,108,97,0,2,3 -0,0,112,108,97,99,0,1,4 -0,112,108,97,99,101,0,2,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,105,0,2,3 -0,0,116,104,105,110,0,1,4 -0,116,104,105,110,103,0,2,5 -116,104,105,110,103,115,0,2,6 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,111,0,2,2 -0,0,0,116,111,111,0,1,3 -0,0,116,111,111,107,0,1,4 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,110,0,1,2 -0,0,0,117,110,100,0,2,3 -0,0,117,110,100,101,0,2,4 -0,117,110,100,101,114,0,1,5 -117,110,100,101,114,115,0,2,6 -110,100,101,114,115,116,0,2,7 -100,101,114,115,116,97,0,2,8 -101,114,115,116,97,110,0,1,9 -114,115,116,97,110,100,0,2,10 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,97,0,2,2 -0,0,0,119,97,110,0,1,3 -0,0,119,97,110,116,0,2,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,120,0,1,3 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,111,0,2,2 -0,0,0,112,111,115,0,1,3 -0,0,112,111,115,115,0,2,4 -0,112,111,115,115,105,0,2,5 -112,111,115,115,105,98,0,1,6 -111,115,115,105,98,108,0,2,7 -115,115,105,98,108,101,0,2,8 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,111,0,2,3 -0,0,116,104,111,117,0,1,4 -0,116,104,111,117,103,0,1,5 -116,104,111,117,103,104,0,2,6 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,108,0,1,2 -0,0,0,97,108,114,0,2,3 -0,0,97,108,114,101,0,2,4 -0,97,108,114,101,97,0,1,5 -97,108,114,101,97,100,0,1,6 -108,114,101,97,100,121,0,2,7 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,108,0,2,2 -0,0,0,99,108,101,0,2,3 -0,0,99,108,101,114,0,1,4 -0,99,108,101,114,107,0,2,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,110,0,1,3 -0,0,99,111,110,100,0,2,4 -0,99,111,110,100,105,0,2,5 -99,111,110,100,105,116,0,1,6 -111,110,100,105,116,105,0,2,7 -110,100,105,116,105,111,0,1,8 -100,105,116,105,111,110,0,1,9 -105,116,105,111,110,115,0,2,10 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,101,0,2,2 -0,0,0,108,101,102,0,1,3 -0,0,108,101,102,116,0,2,4 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,110,0,1,3 -0,0,109,97,110,121,0,2,4 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,101,0,2,2 -0,0,0,112,101,111,0,1,3 -0,0,112,101,111,112,0,1,4 -0,112,101,111,112,108,0,2,5 -112,101,111,112,108,101,0,2,6 -0,0,0,0,0,118,1,0,1 -0,0,0,0,118,101,0,2,2 -0,0,0,118,101,114,0,1,3 -0,0,118,101,114,115,0,2,4 -0,118,101,114,115,105,0,2,5 -118,101,114,115,105,111,0,1,6 -101,114,115,105,111,110,0,1,7 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,98,0,1,2 -0,0,0,97,98,108,0,2,3 -0,0,97,98,108,101,0,2,4 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,108,0,1,2 -0,0,0,97,108,119,0,2,3 -0,0,97,108,119,97,0,2,4 -0,97,108,119,97,121,0,1,5 -97,108,119,97,121,115,0,1,6 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,105,0,1,3 -0,0,98,101,105,110,0,1,4 -0,98,101,105,110,103,0,2,5 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,105,0,2,2 -0,0,0,100,105,115,0,1,3 -0,0,100,105,115,116,0,2,4 -0,100,105,115,116,114,0,2,5 -100,105,115,116,114,105,0,2,6 -105,115,116,114,105,98,0,1,7 -115,116,114,105,98,117,0,2,8 -116,114,105,98,117,116,0,1,9 -114,105,98,117,116,105,0,2,10 -105,98,117,116,105,111,0,1,11 -98,117,116,105,111,110,0,1,12 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,104,0,2,2 -0,0,0,99,104,105,0,2,3 -0,0,99,104,105,101,0,1,4 -0,99,104,105,101,102,0,1,5 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,105,0,2,2 -0,0,0,114,105,103,0,1,3 -0,0,114,105,103,104,0,2,4 -0,114,105,103,104,116,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,101,0,1,3 -0,0,115,101,101,109,0,1,4 -0,115,101,101,109,101,0,2,5 -115,101,101,109,101,100,0,1,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,115,111,111,0,1,3 -0,0,115,111,111,110,0,1,4 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,111,0,2,2 -0,0,0,104,111,119,0,1,3 -0,0,104,111,119,101,0,2,4 -0,104,111,119,101,118,0,1,5 -104,111,119,101,118,101,0,2,6 -111,119,101,118,101,114,0,1,7 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,97,0,2,2 -0,0,0,112,97,116,0,1,3 -0,0,112,97,116,101,0,2,4 -0,112,97,116,101,110,0,1,5 -112,97,116,101,110,116,0,2,6 -0,0,0,0,0,121,1,0,1 -0,0,0,0,121,101,0,1,2 -0,0,0,121,101,97,0,1,3 -0,0,121,101,97,114,0,1,4 -0,121,101,97,114,115,0,2,5 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,110,0,1,2 -0,0,0,97,110,121,0,2,3 -0,0,97,110,121,116,0,1,4 -0,97,110,121,116,104,0,2,5 -97,110,121,116,104,105,0,2,6 -110,121,116,104,105,110,0,1,7 -121,116,104,105,110,103,0,2,8 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,112,0,1,3 -0,0,99,111,112,121,0,2,4 -0,99,111,112,121,114,0,1,5 -99,111,112,121,114,105,0,2,6 -111,112,121,114,105,103,0,1,7 -112,121,114,105,103,104,0,2,8 -121,114,105,103,104,116,0,2,9 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,105,0,2,2 -0,0,0,100,105,102,0,1,3 -0,0,100,105,102,102,0,2,4 -0,100,105,102,102,101,0,2,5 -100,105,102,102,101,114,0,1,6 -105,102,102,101,114,101,0,2,7 -102,102,101,114,101,110,0,1,8 -102,101,114,101,110,116,0,2,9 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,118,0,1,2 -0,0,0,101,118,101,0,2,3 -0,0,101,118,101,114,0,1,4 -0,101,118,101,114,121,0,2,5 -101,118,101,114,121,116,0,1,6 -118,101,114,121,116,104,0,2,7 -101,114,121,116,104,105,0,2,8 -114,121,116,104,105,110,0,1,9 -121,116,104,105,110,103,0,2,10 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,112,0,1,2 -0,0,0,111,112,101,0,2,3 -0,0,111,112,101,110,0,1,4 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,103,0,1,2 -0,0,0,97,103,97,0,2,3 -0,0,97,103,97,105,0,1,4 -0,97,103,97,105,110,0,1,5 -97,103,97,105,110,115,0,2,6 -103,97,105,110,115,116,0,2,7 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,111,0,2,2 -0,0,0,100,111,103,0,1,3 -0,0,100,111,103,115,0,2,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,104,0,2,2 -0,0,0,115,104,101,0,2,3 -0,0,115,104,101,101,0,1,4 -0,115,104,101,101,112,0,1,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,115,111,109,0,1,3 -0,0,115,111,109,101,0,2,4 -0,115,111,109,101,116,0,1,5 -115,111,109,101,116,104,0,2,6 -111,109,101,116,104,105,0,2,7 -109,101,116,104,105,110,0,1,8 -101,116,104,105,110,103,0,2,9 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,97,0,2,2 -0,0,0,116,97,98,0,1,3 -0,0,116,97,98,108,0,2,4 -0,116,97,98,108,101,0,2,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,114,0,2,3 -0,0,116,104,114,111,0,2,4 -0,116,104,114,111,117,0,1,5 -116,104,114,111,117,103,0,1,6 -104,114,111,117,103,104,0,2,7 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,115,0,1,2 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,114,0,1,2 -0,0,0,97,114,111,0,2,3 -0,0,97,114,111,117,0,1,4 -0,97,114,111,117,110,0,1,5 -97,114,111,117,110,100,0,2,6 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,101,0,2,2 -0,0,0,108,101,116,0,1,3 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,110,0,1,2 -0,0,0,111,110,99,0,2,3 -0,0,111,110,99,101,0,2,4 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,117,0,2,2 -0,0,0,112,117,98,0,1,3 -0,0,112,117,98,108,0,2,4 -0,112,117,98,108,105,0,2,5 -112,117,98,108,105,99,0,1,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,97,0,2,2 -0,0,0,115,97,109,0,1,3 -0,0,115,97,109,101,0,2,4 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,104,0,2,2 -0,0,0,115,104,97,0,2,3 -0,0,115,104,97,108,0,1,4 -0,115,104,97,108,108,0,2,5 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,115,0,1,2 -0,0,0,97,115,107,0,2,3 -0,0,97,115,107,101,0,2,4 -0,97,115,107,101,100,0,1,5 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,110,0,1,3 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,101,0,2,2 -0,0,0,110,101,119,0,1,3 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,97,0,2,2 -0,0,0,115,97,121,0,1,3 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,111,0,2,3 -0,0,116,104,111,115,0,1,4 -0,116,104,111,115,101,0,2,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,111,0,2,3 -0,0,116,104,111,117,0,1,4 -0,116,104,111,117,103,0,1,5 -116,104,111,117,103,104,0,2,6 -104,111,117,103,104,116,0,2,7 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,111,0,2,2 -0,0,0,100,111,101,0,1,3 -0,0,100,111,101,115,0,1,4 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,108,0,2,2 -0,0,0,103,108,111,0,2,3 -0,0,103,108,111,98,0,1,4 -0,103,108,111,98,97,0,2,5 -103,108,111,98,97,108,0,1,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,97,0,2,3 -0,0,115,116,97,114,0,1,4 -0,115,116,97,114,115,0,2,5 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,111,0,2,2 -0,0,0,119,111,114,0,1,3 -0,0,119,111,114,108,0,2,4 -0,119,111,114,108,100,0,2,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,112,0,1,3 -0,0,99,111,112,121,0,2,4 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,115,0,1,2 -0,0,0,101,115,116,0,2,3 -0,0,101,115,116,105,0,2,4 -0,101,115,116,105,109,0,1,5 -101,115,116,105,109,97,0,2,6 -115,116,105,109,97,116,0,1,7 -116,105,109,97,116,101,0,2,8 -105,109,97,116,101,115,0,1,9 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,97,0,2,2 -0,0,0,98,97,115,0,1,3 -0,0,98,97,115,101,0,2,4 -0,98,97,115,101,100,0,1,5 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,111,0,2,2 -0,0,0,108,111,111,0,1,3 -0,0,108,111,111,107,0,1,4 -0,108,111,111,107,101,0,2,5 -108,111,111,107,101,100,0,1,6 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,101,0,2,2 -0,0,0,103,101,110,0,1,3 -0,0,103,101,110,101,0,2,4 -0,103,101,110,101,114,0,1,5 -103,101,110,101,114,97,0,2,6 -101,110,101,114,97,108,0,1,7 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,101,0,2,2 -0,0,0,104,101,114,0,1,3 -0,0,104,101,114,101,0,2,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,101,0,2,2 -0,0,0,119,101,110,0,1,3 -0,0,119,101,110,116,0,2,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,114,0,2,3 -0,0,116,104,114,101,0,2,4 -0,116,104,114,101,101,0,1,5 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,100,0,1,3 -0,0,99,111,100,101,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,111,0,2,2 -0,0,0,108,111,111,0,1,3 -0,0,108,111,111,107,0,1,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,101,0,2,2 -0,0,0,116,101,114,0,1,3 -0,0,116,101,114,109,0,2,4 -0,116,101,114,109,115,0,2,5 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,104,0,2,2 -0,0,0,119,104,105,0,2,3 -0,0,119,104,105,108,0,1,4 -0,119,104,105,108,101,0,2,5 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,114,0,2,2 -0,0,0,102,114,101,0,2,3 -0,0,102,114,101,101,0,1,4 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,101,0,2,2 -0,0,0,104,101,97,0,1,3 -0,0,104,101,97,100,0,1,4 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,114,0,1,3 -0,0,109,111,114,110,0,2,4 -0,109,111,114,110,105,0,2,5 -109,111,114,110,105,110,0,1,6 -111,114,110,105,110,103,0,2,7 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,111,0,2,2 -0,0,0,110,111,116,0,1,3 -0,0,110,111,116,104,0,2,4 -0,110,111,116,104,105,0,2,5 -110,111,116,104,105,110,0,1,6 -111,116,104,105,110,103,0,2,7 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,104,0,2,2 -0,0,0,115,104,111,0,2,3 -0,0,115,104,111,117,0,1,4 -0,115,104,111,117,108,0,1,5 -115,104,111,117,108,100,0,2,6 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,118,0,1,3 -0,0,99,111,118,101,0,2,4 -0,99,111,118,101,114,0,1,5 -99,111,118,101,114,101,0,2,6 -111,118,101,114,101,100,0,1,7 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,108,0,2,2 -0,0,0,102,108,111,0,2,3 -0,0,102,108,111,119,0,1,4 -0,102,108,111,119,101,0,2,5 -102,108,111,119,101,114,0,1,6 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,97,0,2,2 -0,0,0,99,97,109,0,1,3 -0,0,99,97,109,101,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,111,0,2,2 -0,0,0,108,111,110,0,1,3 -0,0,108,111,110,103,0,2,4 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,119,0,1,2 -0,0,0,97,119,97,0,2,3 -0,0,97,119,97,121,0,1,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,97,0,2,2 -0,0,0,119,97,116,0,1,3 -0,0,119,97,116,101,0,2,4 -0,119,97,116,101,114,0,1,5 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,109,0,1,2 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,102,0,1,3 -0,0,98,101,102,111,0,2,4 -0,98,101,102,111,114,0,1,5 -98,101,102,111,114,101,0,2,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,115,111,102,0,1,3 -0,0,115,111,102,116,0,2,4 -0,115,111,102,116,119,0,2,5 -115,111,102,116,119,97,0,2,6 -111,102,116,119,97,114,0,1,7 -102,116,119,97,114,101,0,2,8 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,115,0,1,3 -0,0,109,111,115,116,0,2,4 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,111,0,2,2 -0,0,0,100,111,119,0,1,3 -0,0,100,111,119,110,0,2,4 -0,0,0,0,0,107,1,0,1 -0,0,0,0,107,110,0,2,2 -0,0,0,107,110,111,0,2,3 -0,0,107,110,111,119,0,1,4 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,117,0,1,2 -0,0,0,111,117,114,0,1,3 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,102,0,1,2 -0,0,0,97,102,116,0,2,3 -0,0,97,102,116,101,0,2,4 -0,97,102,116,101,114,0,1,5 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,101,0,2,2 -0,0,0,103,101,116,0,1,3 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,101,0,2,2 -0,0,0,110,101,118,0,1,3 -0,0,110,101,118,101,0,2,4 -0,110,101,118,101,114,0,1,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,116,0,2,2 -0,0,0,115,116,105,0,2,3 -0,0,115,116,105,108,0,1,4 -0,115,116,105,108,108,0,2,5 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,97,0,2,2 -0,0,0,100,97,121,0,1,3 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,111,0,2,2 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,115,111,117,0,1,3 -0,0,115,111,117,114,0,1,4 -0,115,111,117,114,99,0,2,5 -115,111,117,114,99,101,0,2,6 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,105,0,2,2 -0,0,0,119,105,116,0,1,3 -0,0,119,105,116,104,0,2,4 -0,119,105,116,104,111,0,2,5 -119,105,116,104,111,117,0,1,6 -105,116,104,111,117,116,0,1,7 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,115,0,1,2 -0,0,0,117,115,101,0,2,3 -0,0,117,115,101,100,0,1,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,101,0,2,2 -0,0,0,119,101,108,0,1,3 -0,0,119,101,108,108,0,2,4 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,111,0,2,2 -0,0,0,103,111,111,0,1,3 -0,0,103,111,111,100,0,1,4 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,117,0,2,2 -0,0,0,109,117,115,0,1,3 -0,0,109,117,115,116,0,2,4 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,109,0,1,3 -0,0,99,111,109,101,0,2,4 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,97,0,2,2 -0,0,0,99,97,114,0,1,3 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,119,0,2,2 -0,0,0,116,119,111,0,2,3 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,97,0,1,2 -0,0,0,101,97,99,0,1,3 -0,0,101,97,99,104,0,2,4 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,97,0,1,2 -0,0,0,101,97,114,0,1,3 -0,0,101,97,114,116,0,2,4 -0,101,97,114,116,104,0,2,5 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,116,0,1,2 -0,0,0,105,116,115,0,2,3 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,121,0,1,3 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,111,0,2,2 -0,0,0,104,111,119,0,1,3 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,103,0,1,2 -0,0,0,97,103,97,0,2,3 -0,0,97,103,97,105,0,1,4 -0,97,103,97,105,110,0,1,5 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,99,0,1,3 -0,0,98,101,99,97,0,2,4 -0,98,101,99,97,117,0,1,5 -98,101,99,97,117,115,0,1,6 -101,99,97,117,115,101,0,2,7 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,111,0,2,2 -0,0,0,116,111,111,0,1,3 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,108,0,2,2 -0,0,0,112,108,97,0,2,3 -0,0,112,108,97,110,0,1,4 -0,112,108,97,110,101,0,2,5 -112,108,97,110,101,116,0,1,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,101,0,2,2 -0,0,0,115,101,101,0,1,3 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,107,0,1,3 -0,0,109,97,107,101,0,2,4 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,117,0,2,2 -0,0,0,109,117,99,0,1,3 -0,0,109,117,99,104,0,2,4 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,118,0,1,2 -0,0,0,111,118,101,0,2,3 -0,0,111,118,101,114,0,1,4 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,108,0,1,2 -0,0,0,97,108,115,0,2,3 -0,0,97,108,115,111,0,2,4 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,111,0,2,2 -0,0,0,100,111,111,0,1,3 -0,0,100,111,111,114,0,1,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,104,0,2,2 -0,0,0,119,104,101,0,2,3 -0,0,119,104,101,114,0,1,4 -0,119,104,101,114,101,0,2,5 -0,0,0,0,0,106,1,0,1 -0,0,0,0,106,117,0,2,2 -0,0,0,106,117,115,0,1,3 -0,0,106,117,115,116,0,2,4 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,116,0,1,3 -0,0,109,111,116,104,0,2,4 -0,109,111,116,104,101,0,2,5 -109,111,116,104,101,114,0,1,6 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,115,0,1,2 -0,0,0,117,115,101,0,2,3 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,97,0,2,2 -0,0,0,119,97,121,0,1,3 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,97,0,2,2 -0,0,0,109,97,100,0,1,3 -0,0,109,97,100,101,0,2,4 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,97,0,2,2 -0,0,0,99,97,114,0,1,3 -0,0,99,97,114,115,0,2,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,101,0,2,3 -0,0,116,104,101,115,0,1,4 -0,116,104,101,115,101,0,2,5 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,97,0,2,2 -0,0,0,104,97,115,0,1,3 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,110,0,1,2 -0,0,0,117,110,100,0,2,3 -0,0,117,110,100,101,0,2,4 -0,117,110,100,101,114,0,1,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,105,0,2,2 -0,0,0,115,105,115,0,1,3 -0,0,115,105,115,116,0,2,4 -0,115,105,115,116,101,0,2,5 -115,105,115,116,101,114,0,1,6 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,97,0,2,2 -0,0,0,102,97,116,0,1,3 -0,0,102,97,116,104,0,2,4 -0,102,97,116,104,101,0,2,5 -102,97,116,104,101,114,0,1,6 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,104,0,2,2 -0,0,0,119,104,111,0,2,3 -0,0,0,0,0,121,1,0,1 -0,0,0,0,121,111,0,1,2 -0,0,0,121,111,117,0,1,3 -0,0,121,111,117,114,0,1,4 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,97,0,2,2 -0,0,0,98,97,99,0,1,3 -0,0,98,97,99,107,0,2,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,105,0,2,2 -0,0,0,102,105,114,0,1,3 -0,0,102,105,114,115,0,2,4 -0,102,105,114,115,116,0,2,5 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,115,111,109,0,1,3 -0,0,115,111,109,101,0,2,4 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,105,0,2,2 -0,0,0,100,105,100,0,1,3 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,117,0,2,2 -0,0,0,115,117,99,0,1,3 -0,0,115,117,99,104,0,2,4 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,105,110,116,0,2,3 -0,0,105,110,116,111,0,2,4 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,105,0,2,2 -0,0,0,104,105,109,0,1,3 -0,0,104,105,109,115,0,2,4 -0,104,105,109,115,101,0,2,5 -104,105,109,115,101,108,0,1,6 -105,109,115,101,108,102,0,2,7 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,97,0,2,3 -0,0,116,104,97,110,0,1,4 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,111,0,2,3 -0,0,112,114,111,103,0,1,4 -0,112,114,111,103,114,0,2,5 -112,114,111,103,114,97,0,2,6 -114,111,103,114,97,109,0,1,7 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,105,0,2,2 -0,0,0,119,105,108,0,1,3 -0,0,119,105,108,108,0,2,4 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,98,0,1,2 -0,0,0,97,98,111,0,2,3 -0,0,97,98,111,117,0,1,4 -0,97,98,111,117,116,0,1,5 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,107,0,1,3 -0,0,108,105,107,101,0,2,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,105,0,2,2 -0,0,0,116,105,109,0,1,3 -0,0,116,105,109,101,0,2,4 -0,0,0,0,0,118,1,0,1 -0,0,0,0,118,101,0,2,2 -0,0,0,118,101,114,0,1,3 -0,0,118,101,114,121,0,2,4 -0,0,0,0,0,117,1,0,1 -0,0,0,0,117,112,0,1,2 -0,0,0,0,0,101,1,0,1 -0,0,0,0,101,118,0,1,2 -0,0,0,101,118,101,0,2,3 -0,0,101,118,101,110,0,1,4 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,101,0,2,3 -0,0,116,104,101,105,0,1,4 -0,116,104,101,105,114,0,1,5 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,111,0,2,2 -0,0,0,110,111,119,0,1,3 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,110,0,1,2 -0,0,0,111,110,108,0,2,3 -0,0,111,110,108,121,0,2,4 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,97,0,2,2 -0,0,0,99,97,110,0,1,3 -0,0,0,0,0,114,1,0,1 -0,0,0,0,114,111,0,2,2 -0,0,0,114,111,111,0,1,3 -0,0,114,111,111,109,0,1,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,101,0,2,2 -0,0,0,119,101,114,0,1,3 -0,0,119,101,114,101,0,2,4 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,99,0,1,3 -0,0,108,105,99,101,0,2,4 -0,108,105,99,101,110,0,1,5 -108,105,99,101,110,115,0,2,6 -105,99,101,110,115,101,0,2,7 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,101,0,2,3 -0,0,116,104,101,109,0,1,4 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,105,0,2,2 -0,0,0,98,105,111,0,1,3 -0,0,98,105,111,109,0,1,4 -0,98,105,111,109,97,0,2,5 -98,105,111,109,97,115,0,1,6 -105,111,109,97,115,115,0,2,7 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,102,0,1,3 -0,0,108,105,102,101,0,2,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,101,0,2,2 -0,0,0,0,0,100,1,0,1 -0,0,0,0,100,111,0,2,2 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,116,0,1,2 -0,0,0,111,116,104,0,2,3 -0,0,111,116,104,101,0,2,4 -0,111,116,104,101,114,0,1,5 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,104,0,2,2 -0,0,0,119,104,101,0,2,3 -0,0,119,104,101,110,0,1,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,111,0,2,2 -0,0,0,119,111,114,0,1,3 -0,0,119,111,114,107,0,2,4 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,117,0,1,2 -0,0,0,111,117,116,0,1,3 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,104,0,2,2 -0,0,0,119,104,105,0,2,3 -0,0,119,104,105,99,0,1,4 -0,119,104,105,99,104,0,2,5 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,101,0,2,2 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,111,0,2,2 -0,0,0,109,111,114,0,1,3 -0,0,109,111,114,101,0,2,4 -0,0,0,0,0,99,1,0,1 -0,0,0,0,99,111,0,2,2 -0,0,0,99,111,117,0,1,3 -0,0,99,111,117,108,0,1,4 -0,99,111,117,108,100,0,2,5 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,101,0,2,3 -0,0,116,104,101,110,0,1,4 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,98,101,101,0,1,3 -0,0,98,101,101,110,0,1,4 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,104,0,2,2 -0,0,0,119,104,97,0,2,3 -0,0,119,104,97,116,0,1,4 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,110,0,1,2 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,111,0,2,2 -0,0,0,0,0,109,1,0,1 -0,0,0,0,109,121,0,2,2 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,110,0,1,2 -0,0,0,97,110,121,0,2,3 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,101,0,2,3 -0,0,116,104,101,114,0,1,4 -0,116,104,101,114,101,0,2,5 -0,0,0,0,0,112,1,0,1 -0,0,0,0,112,114,0,2,2 -0,0,0,112,114,105,0,2,3 -0,0,112,114,105,110,0,1,4 -0,112,114,105,110,99,0,2,5 -112,114,105,110,99,101,0,2,6 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,111,0,2,2 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,101,0,2,2 -0,0,0,104,101,114,0,1,3 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,110,0,1,2 -0,0,0,111,110,101,0,2,3 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,104,0,2,2 -0,0,0,115,104,101,0,2,3 -0,0,0,0,0,115,1,0,1 -0,0,0,0,115,97,0,2,2 -0,0,0,115,97,105,0,1,3 -0,0,115,97,105,100,0,1,4 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,102,0,1,2 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,105,0,2,2 -0,0,0,104,105,109,0,1,3 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,111,0,2,2 -0,0,0,119,111,117,0,1,3 -0,0,119,111,117,108,0,1,4 -0,119,111,117,108,100,0,2,5 -0,0,0,0,0,103,1,0,1 -0,0,0,0,103,114,0,2,2 -0,0,0,103,114,101,0,2,3 -0,0,103,114,101,103,0,1,4 -0,103,114,101,103,111,0,2,5 -103,114,101,103,111,114,0,1,6 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,108,0,1,2 -0,0,0,97,108,108,0,2,3 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,121,0,2,2 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,101,0,2,3 -0,0,116,104,101,121,0,1,4 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,114,0,2,2 -0,0,0,102,114,111,0,2,3 -0,0,102,114,111,109,0,1,4 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,114,0,1,2 -0,0,0,97,114,101,0,2,3 -0,0,0,0,0,108,1,0,1 -0,0,0,0,108,105,0,2,2 -0,0,0,108,105,116,0,1,3 -0,0,108,105,116,116,0,2,4 -0,108,105,116,116,108,0,2,5 -108,105,116,116,108,101,0,2,6 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,97,0,2,2 -0,0,0,104,97,118,0,1,3 -0,0,104,97,118,101,0,2,4 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,101,0,2,2 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,116,0,1,2 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,114,0,1,2 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,105,0,2,3 -0,0,116,104,105,115,0,1,4 -0,0,0,0,0,98,1,0,1 -0,0,0,0,98,117,0,2,2 -0,0,0,98,117,116,0,1,3 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,97,0,2,2 -0,0,0,104,97,100,0,1,3 -0,0,0,0,0,110,1,0,1 -0,0,0,0,110,111,0,2,2 -0,0,0,110,111,116,0,1,3 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,105,0,2,2 -0,0,0,119,105,116,0,1,3 -0,0,119,105,116,104,0,2,4 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,110,0,1,2 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,115,0,1,2 -0,0,0,0,0,121,1,0,1 -0,0,0,0,121,111,0,1,2 -0,0,0,121,111,117,0,1,3 -0,0,0,0,0,102,1,0,1 -0,0,0,0,102,111,0,2,2 -0,0,0,102,111,114,0,1,3 -0,0,0,0,0,105,1,0,1 -0,0,0,0,0,119,1,0,1 -0,0,0,0,119,97,0,2,2 -0,0,0,119,97,115,0,1,3 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,115,0,1,2 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,105,0,2,2 -0,0,0,104,105,115,0,1,3 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,116,0,1,2 -0,0,0,0,0,104,1,0,1 -0,0,0,0,104,101,0,2,2 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,104,0,2,2 -0,0,0,116,104,97,0,2,3 -0,0,116,104,97,116,0,1,4 -0,0,0,0,0,105,1,0,1 -0,0,0,0,105,110,0,1,2 -0,0,0,0,0,97,1,0,1 -0,0,0,0,0,97,1,0,1 -0,0,0,0,97,110,0,1,2 -0,0,0,97,110,100,0,2,3 -0,0,0,0,0,111,1,0,1 -0,0,0,0,111,102,0,1,2 -0,0,0,0,0,116,1,0,1 -0,0,0,0,116,111,0,2,2 diff --git a/model/predictor.pth b/model/predictor.pth deleted file mode 100644 index 10086b60b5962be02f079154d06da4df45e3ae4c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 317201 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%0Dhd=Jcz?{w^e0a|r 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 V`uB4KejVr{vi#4l*Z=Fa{{@|G{P+L> diff --git a/model/training_results/raw_2.txt b/model/training_results/raw_2.txt new file mode 100644 index 0000000..59d00cd --- /dev/null +++ b/model/training_results/raw_2.txt @@ -0,0 +1,1024 @@ +[#0] ReLU (32,) lr=1e-02 → top1=0.41, top3=0.65, top5=0.77 +[#1] ReLU (32,) lr=5e-03 → top1=0.43, top3=0.66, top5=0.78 +[#2] ReLU (32,) lr=1e-03 → top1=0.43, top3=0.67, top5=0.78 +[#3] ReLU (32,) lr=5e-04 → top1=0.42, top3=0.66, top5=0.77 +[#4] ReLU (32,) lr=1e-04 → top1=0.38, top3=0.62, top5=0.75 +[#5] ReLU (64,) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#6] ReLU (64,) lr=5e-03 → top1=0.46, top3=0.70, top5=0.81 +[#7] ReLU (64,) lr=1e-03 → top1=0.47, top3=0.70, top5=0.81 +[#8] ReLU (64,) lr=5e-04 → top1=0.46, top3=0.69, top5=0.80 +[#9] ReLU (64,) lr=1e-04 → top1=0.42, top3=0.66, top5=0.78 +[#10] ReLU (128,) lr=1e-02 → top1=0.47, top3=0.71, top5=0.81 +[#11] ReLU (128,) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#12] ReLU (128,) lr=1e-03 → top1=0.50, top3=0.72, top5=0.82 +[#13] ReLU (128,) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#14] ReLU (128,) lr=1e-04 → top1=0.45, top3=0.68, top5=0.79 +[#15] ReLU (256,) lr=1e-02 → top1=0.48, top3=0.72, top5=0.82 +[#16] ReLU (256,) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#17] ReLU (256,) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#18] ReLU (256,) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#19] ReLU (256,) lr=1e-04 → top1=0.47, top3=0.70, top5=0.81 +[#20] ReLU (32, 32) lr=1e-02 → top1=0.42, top3=0.66, top5=0.77 +[#21] ReLU (32, 32) lr=5e-03 → top1=0.44, top3=0.68, top5=0.79 +[#22] ReLU (32, 32) lr=1e-03 → top1=0.44, top3=0.68, top5=0.79 +[#23] ReLU (32, 32) lr=5e-04 → top1=0.44, top3=0.68, top5=0.79 +[#24] ReLU (32, 32) lr=1e-04 → top1=0.39, top3=0.63, top5=0.76 +[#25] ReLU (32, 64) lr=1e-02 → top1=0.43, top3=0.67, top5=0.79 +[#26] ReLU (32, 64) lr=5e-03 → top1=0.45, top3=0.69, top5=0.80 +[#27] ReLU (32, 64) lr=1e-03 → top1=0.46, top3=0.69, top5=0.81 +[#28] ReLU (32, 64) lr=5e-04 → top1=0.45, top3=0.69, top5=0.80 +[#29] ReLU (32, 64) lr=1e-04 → top1=0.41, top3=0.65, top5=0.77 +[#30] ReLU (32, 128) lr=1e-02 → top1=0.44, top3=0.68, top5=0.80 +[#31] ReLU (32, 128) lr=5e-03 → top1=0.47, top3=0.71, top5=0.81 +[#32] ReLU (32, 128) lr=1e-03 → top1=0.48, top3=0.71, top5=0.82 +[#33] ReLU (32, 128) lr=5e-04 → top1=0.47, top3=0.71, top5=0.81 +[#34] ReLU (32, 128) lr=1e-04 → top1=0.42, top3=0.67, top5=0.78 +[#35] ReLU (32, 256) lr=1e-02 → top1=0.44, top3=0.69, top5=0.80 +[#36] ReLU (32, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#37] ReLU (32, 256) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#38] ReLU (32, 256) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#39] ReLU (32, 256) lr=1e-04 → top1=0.43, top3=0.67, top5=0.79 +[#40] ReLU (64, 32) lr=1e-02 → top1=0.45, top3=0.68, top5=0.79 +[#41] ReLU (64, 32) lr=5e-03 → top1=0.47, top3=0.70, top5=0.81 +[#42] ReLU (64, 32) lr=1e-03 → top1=0.48, top3=0.70, top5=0.81 +[#43] ReLU (64, 32) lr=5e-04 → top1=0.47, top3=0.70, top5=0.81 +[#44] ReLU (64, 32) lr=1e-04 → top1=0.42, top3=0.66, top5=0.78 +[#45] ReLU (64, 64) lr=1e-02 → top1=0.46, top3=0.69, top5=0.80 +[#46] ReLU (64, 64) lr=5e-03 → top1=0.48, top3=0.71, top5=0.82 +[#47] ReLU (64, 64) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#48] ReLU (64, 64) lr=5e-04 → top1=0.48, top3=0.71, top5=0.82 +[#49] ReLU (64, 64) lr=1e-04 → top1=0.43, top3=0.67, top5=0.78 +[#50] ReLU (64, 128) lr=1e-02 → top1=0.46, top3=0.69, top5=0.80 +[#51] ReLU (64, 128) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#52] ReLU (64, 128) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#53] ReLU (64, 128) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#54] ReLU (64, 128) lr=1e-04 → top1=0.44, top3=0.68, top5=0.79 +[#55] ReLU (64, 256) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#56] ReLU (64, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#57] ReLU (64, 256) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#58] ReLU (64, 256) lr=5e-04 → top1=0.50, top3=0.73, top5=0.83 +[#59] ReLU (64, 256) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#60] ReLU (128, 32) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#61] ReLU (128, 32) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#62] ReLU (128, 32) lr=1e-03 → top1=0.50, top3=0.72, top5=0.82 +[#63] ReLU (128, 32) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#64] ReLU (128, 32) lr=1e-04 → top1=0.44, top3=0.68, top5=0.79 +[#65] ReLU (128, 64) lr=1e-02 → top1=0.46, top3=0.70, top5=0.80 +[#66] ReLU (128, 64) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#67] ReLU (128, 64) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#68] ReLU (128, 64) lr=5e-04 → top1=0.50, top3=0.73, top5=0.82 +[#69] ReLU (128, 64) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#70] ReLU (128, 128) lr=1e-02 → top1=0.47, top3=0.70, top5=0.81 +[#71] ReLU (128, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#72] ReLU (128, 128) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#73] ReLU (128, 128) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#74] ReLU (128, 128) lr=1e-04 → top1=0.47, top3=0.70, top5=0.80 +[#75] ReLU (128, 256) lr=1e-02 → top1=0.46, top3=0.70, top5=0.80 +[#76] ReLU (128, 256) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#77] ReLU (128, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#78] ReLU (128, 256) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#79] ReLU (128, 256) lr=1e-04 → top1=0.48, top3=0.71, top5=0.81 +[#80] ReLU (256, 32) lr=1e-02 → top1=0.48, top3=0.70, top5=0.80 +[#81] ReLU (256, 32) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#82] ReLU (256, 32) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#83] ReLU (256, 32) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#84] ReLU (256, 32) lr=1e-04 → top1=0.47, top3=0.70, top5=0.80 +[#85] ReLU (256, 64) lr=1e-02 → top1=0.47, top3=0.70, top5=0.81 +[#86] ReLU (256, 64) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#87] ReLU (256, 64) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#88] ReLU (256, 64) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#89] ReLU (256, 64) lr=1e-04 → top1=0.48, top3=0.71, top5=0.81 +[#90] ReLU (256, 128) lr=1e-02 → top1=0.48, top3=0.71, top5=0.81 +[#91] ReLU (256, 128) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#92] ReLU (256, 128) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#93] ReLU (256, 128) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#94] ReLU (256, 128) lr=1e-04 → top1=0.49, top3=0.72, top5=0.82 +[#95] ReLU (256, 256) lr=1e-02 → top1=0.47, top3=0.70, top5=0.81 +[#96] ReLU (256, 256) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#97] ReLU (256, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.84 +[#98] ReLU (256, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#99] ReLU (256, 256) lr=1e-04 → top1=0.50, top3=0.72, top5=0.82 +[#100] ReLU (32, 32, 32) lr=1e-02 → top1=0.41, top3=0.65, top5=0.77 +[#101] ReLU (32, 32, 32) lr=5e-03 → top1=0.44, top3=0.68, top5=0.79 +[#102] ReLU (32, 32, 32) lr=1e-03 → top1=0.45, top3=0.69, top5=0.80 +[#103] ReLU (32, 32, 32) lr=5e-04 → top1=0.44, top3=0.68, top5=0.80 +[#104] ReLU (32, 32, 32) lr=1e-04 → top1=0.40, top3=0.64, top5=0.76 +[#105] ReLU (32, 32, 64) lr=1e-02 → top1=0.41, top3=0.65, top5=0.77 +[#106] ReLU (32, 32, 64) lr=5e-03 → top1=0.45, top3=0.69, top5=0.80 +[#107] ReLU (32, 32, 64) lr=1e-03 → top1=0.47, top3=0.70, top5=0.81 +[#108] ReLU (32, 32, 64) lr=5e-04 → top1=0.46, top3=0.69, top5=0.80 +[#109] ReLU (32, 32, 64) lr=1e-04 → top1=0.40, top3=0.64, top5=0.76 +[#110] ReLU (32, 32, 128) lr=1e-02 → top1=0.40, top3=0.65, top5=0.77 +[#111] ReLU (32, 32, 128) lr=5e-03 → top1=0.46, top3=0.70, top5=0.81 +[#112] ReLU (32, 32, 128) lr=1e-03 → top1=0.48, top3=0.72, top5=0.82 +[#113] ReLU (32, 32, 128) lr=5e-04 → top1=0.47, top3=0.70, top5=0.81 +[#114] ReLU (32, 32, 128) lr=1e-04 → top1=0.41, top3=0.65, top5=0.78 +[#115] ReLU (32, 32, 256) lr=1e-02 → top1=0.39, top3=0.64, top5=0.76 +[#116] ReLU (32, 32, 256) lr=5e-03 → top1=0.47, top3=0.71, top5=0.81 +[#117] ReLU (32, 32, 256) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#118] ReLU (32, 32, 256) lr=5e-04 → top1=0.48, top3=0.71, top5=0.82 +[#119] ReLU (32, 32, 256) lr=1e-04 → top1=0.42, top3=0.66, top5=0.78 +[#120] ReLU (32, 64, 32) lr=1e-02 → top1=0.41, top3=0.66, top5=0.77 +[#121] ReLU (32, 64, 32) lr=5e-03 → top1=0.45, top3=0.68, top5=0.79 +[#122] ReLU (32, 64, 32) lr=1e-03 → top1=0.47, top3=0.70, top5=0.81 +[#123] ReLU (32, 64, 32) lr=5e-04 → top1=0.46, top3=0.70, top5=0.80 +[#124] ReLU (32, 64, 32) lr=1e-04 → top1=0.40, top3=0.65, top5=0.77 +[#125] ReLU (32, 64, 64) lr=1e-02 → top1=0.41, top3=0.66, top5=0.78 +[#126] ReLU (32, 64, 64) lr=5e-03 → top1=0.46, top3=0.70, top5=0.81 +[#127] ReLU (32, 64, 64) lr=1e-03 → top1=0.48, top3=0.71, top5=0.82 +[#128] ReLU (32, 64, 64) lr=5e-04 → top1=0.47, top3=0.70, top5=0.81 +[#129] ReLU (32, 64, 64) lr=1e-04 → top1=0.41, top3=0.65, top5=0.77 +[#130] ReLU (32, 64, 128) lr=1e-02 → top1=0.40, top3=0.64, top5=0.76 +[#131] ReLU (32, 64, 128) lr=5e-03 → top1=0.47, top3=0.71, top5=0.81 +[#132] ReLU (32, 64, 128) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#133] ReLU (32, 64, 128) lr=5e-04 → top1=0.48, top3=0.71, top5=0.82 +[#134] ReLU (32, 64, 128) lr=1e-04 → top1=0.42, top3=0.66, top5=0.78 +[#135] ReLU (32, 64, 256) lr=1e-02 → top1=0.38, top3=0.63, top5=0.76 +[#136] ReLU (32, 64, 256) lr=5e-03 → top1=0.48, top3=0.71, top5=0.82 +[#137] ReLU (32, 64, 256) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#138] ReLU (32, 64, 256) lr=5e-04 → top1=0.49, top3=0.72, top5=0.83 +[#139] ReLU (32, 64, 256) lr=1e-04 → top1=0.44, top3=0.68, top5=0.79 +[#140] ReLU (32, 128, 32) lr=1e-02 → top1=0.43, top3=0.66, top5=0.77 +[#141] ReLU (32, 128, 32) lr=5e-03 → top1=0.47, top3=0.70, top5=0.81 +[#142] ReLU (32, 128, 32) lr=1e-03 → top1=0.48, top3=0.72, top5=0.82 +[#143] ReLU (32, 128, 32) lr=5e-04 → top1=0.47, top3=0.71, top5=0.81 +[#144] ReLU (32, 128, 32) lr=1e-04 → top1=0.41, top3=0.65, top5=0.77 +[#145] ReLU (32, 128, 64) lr=1e-02 → top1=0.42, top3=0.67, top5=0.78 +[#146] ReLU (32, 128, 64) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#147] ReLU (32, 128, 64) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#148] ReLU (32, 128, 64) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#149] ReLU (32, 128, 64) lr=1e-04 → top1=0.43, top3=0.67, top5=0.78 +[#150] ReLU (32, 128, 128) lr=1e-02 → top1=0.42, top3=0.66, top5=0.78 +[#151] ReLU (32, 128, 128) lr=5e-03 → top1=0.48, top3=0.71, top5=0.82 +[#152] ReLU (32, 128, 128) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#153] ReLU (32, 128, 128) lr=5e-04 → top1=0.50, top3=0.72, top5=0.82 +[#154] ReLU (32, 128, 128) lr=1e-04 → top1=0.43, top3=0.68, top5=0.79 +[#155] ReLU (32, 128, 256) lr=1e-02 → top1=0.39, top3=0.64, top5=0.76 +[#156] ReLU (32, 128, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#157] ReLU (32, 128, 256) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#158] ReLU (32, 128, 256) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#159] ReLU (32, 128, 256) lr=1e-04 → top1=0.45, top3=0.69, top5=0.80 +[#160] ReLU (32, 256, 32) lr=1e-02 → top1=0.42, top3=0.66, top5=0.78 +[#161] ReLU (32, 256, 32) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#162] ReLU (32, 256, 32) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#163] ReLU (32, 256, 32) lr=5e-04 → top1=0.48, top3=0.71, top5=0.81 +[#164] ReLU (32, 256, 32) lr=1e-04 → top1=0.43, top3=0.67, top5=0.78 +[#165] ReLU (32, 256, 64) lr=1e-02 → top1=0.43, top3=0.67, top5=0.78 +[#166] ReLU (32, 256, 64) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#167] ReLU (32, 256, 64) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#168] ReLU (32, 256, 64) lr=5e-04 → top1=0.50, top3=0.72, top5=0.82 +[#169] ReLU (32, 256, 64) lr=1e-04 → top1=0.44, top3=0.68, top5=0.79 +[#170] ReLU (32, 256, 128) lr=1e-02 → top1=0.42, top3=0.66, top5=0.78 +[#171] ReLU (32, 256, 128) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#172] ReLU (32, 256, 128) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#173] ReLU (32, 256, 128) lr=5e-04 → top1=0.50, top3=0.73, top5=0.83 +[#174] ReLU (32, 256, 128) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#175] ReLU (32, 256, 256) lr=1e-02 → top1=0.41, top3=0.64, top5=0.77 +[#176] ReLU (32, 256, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#177] ReLU (32, 256, 256) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#178] ReLU (32, 256, 256) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#179] ReLU (32, 256, 256) lr=1e-04 → top1=0.47, top3=0.70, top5=0.81 +[#180] ReLU (64, 32, 32) lr=1e-02 → top1=0.43, top3=0.66, top5=0.78 +[#181] ReLU (64, 32, 32) lr=5e-03 → top1=0.47, top3=0.70, top5=0.80 +[#182] ReLU (64, 32, 32) lr=1e-03 → top1=0.48, top3=0.71, top5=0.81 +[#183] ReLU (64, 32, 32) lr=5e-04 → top1=0.47, top3=0.70, top5=0.81 +[#184] ReLU (64, 32, 32) lr=1e-04 → top1=0.41, top3=0.65, top5=0.77 +[#185] ReLU (64, 32, 64) lr=1e-02 → top1=0.43, top3=0.67, top5=0.78 +[#186] ReLU (64, 32, 64) lr=5e-03 → top1=0.47, top3=0.70, top5=0.81 +[#187] ReLU (64, 32, 64) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#188] ReLU (64, 32, 64) lr=5e-04 → top1=0.47, top3=0.71, top5=0.81 +[#189] ReLU (64, 32, 64) lr=1e-04 → top1=0.42, top3=0.66, top5=0.78 +[#190] ReLU (64, 32, 128) lr=1e-02 → top1=0.41, top3=0.65, top5=0.77 +[#191] ReLU (64, 32, 128) lr=5e-03 → top1=0.47, top3=0.71, top5=0.81 +[#192] ReLU (64, 32, 128) lr=1e-03 → top1=0.49, top3=0.73, top5=0.82 +[#193] ReLU (64, 32, 128) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#194] ReLU (64, 32, 128) lr=1e-04 → top1=0.43, top3=0.67, top5=0.78 +[#195] ReLU (64, 32, 256) lr=1e-02 → top1=0.40, top3=0.65, top5=0.77 +[#196] ReLU (64, 32, 256) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#197] ReLU (64, 32, 256) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#198] ReLU (64, 32, 256) lr=5e-04 → top1=0.50, top3=0.73, top5=0.82 +[#199] ReLU (64, 32, 256) lr=1e-04 → top1=0.44, top3=0.68, top5=0.79 +[#200] ReLU (64, 64, 32) lr=1e-02 → top1=0.43, top3=0.67, top5=0.78 +[#201] ReLU (64, 64, 32) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#202] ReLU (64, 64, 32) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#203] ReLU (64, 64, 32) lr=5e-04 → top1=0.49, top3=0.71, top5=0.81 +[#204] ReLU (64, 64, 32) lr=1e-04 → top1=0.43, top3=0.67, top5=0.78 +[#205] ReLU (64, 64, 64) lr=1e-02 → top1=0.44, top3=0.67, top5=0.78 +[#206] ReLU (64, 64, 64) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#207] ReLU (64, 64, 64) lr=1e-03 → top1=0.50, top3=0.73, top5=0.82 +[#208] ReLU (64, 64, 64) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#209] ReLU (64, 64, 64) lr=1e-04 → top1=0.43, top3=0.67, top5=0.79 +[#210] ReLU (64, 64, 128) lr=1e-02 → top1=0.41, top3=0.65, top5=0.77 +[#211] ReLU (64, 64, 128) lr=5e-03 → top1=0.48, top3=0.71, top5=0.82 +[#212] ReLU (64, 64, 128) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#213] ReLU (64, 64, 128) lr=5e-04 → top1=0.50, top3=0.73, top5=0.82 +[#214] ReLU (64, 64, 128) lr=1e-04 → top1=0.44, top3=0.68, top5=0.79 +[#215] ReLU (64, 64, 256) lr=1e-02 → top1=0.41, top3=0.65, top5=0.77 +[#216] ReLU (64, 64, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#217] ReLU (64, 64, 256) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#218] ReLU (64, 64, 256) lr=5e-04 → top1=0.50, top3=0.73, top5=0.83 +[#219] ReLU (64, 64, 256) lr=1e-04 → top1=0.45, top3=0.69, top5=0.80 +[#220] ReLU (64, 128, 32) lr=1e-02 → top1=0.44, top3=0.67, top5=0.78 +[#221] ReLU (64, 128, 32) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#222] ReLU (64, 128, 32) lr=1e-03 → top1=0.50, top3=0.73, top5=0.82 +[#223] ReLU (64, 128, 32) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#224] ReLU (64, 128, 32) lr=1e-04 → top1=0.44, top3=0.67, top5=0.79 +[#225] ReLU (64, 128, 64) lr=1e-02 → top1=0.44, top3=0.67, top5=0.78 +[#226] ReLU (64, 128, 64) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#227] ReLU (64, 128, 64) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#228] ReLU (64, 128, 64) lr=5e-04 → top1=0.50, top3=0.73, top5=0.83 +[#229] ReLU (64, 128, 64) lr=1e-04 → top1=0.45, top3=0.68, top5=0.79 +[#230] ReLU (64, 128, 128) lr=1e-02 → top1=0.43, top3=0.67, top5=0.78 +[#231] ReLU (64, 128, 128) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#232] ReLU (64, 128, 128) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#233] ReLU (64, 128, 128) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#234] ReLU (64, 128, 128) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#235] ReLU (64, 128, 256) lr=1e-02 → top1=0.38, top3=0.61, top5=0.74 +[#236] ReLU (64, 128, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#237] ReLU (64, 128, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#238] ReLU (64, 128, 256) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#239] ReLU (64, 128, 256) lr=1e-04 → top1=0.46, top3=0.70, top5=0.81 +[#240] ReLU (64, 256, 32) lr=1e-02 → top1=0.45, top3=0.68, top5=0.79 +[#241] ReLU (64, 256, 32) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#242] ReLU (64, 256, 32) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#243] ReLU (64, 256, 32) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#244] ReLU (64, 256, 32) lr=1e-04 → top1=0.45, top3=0.68, top5=0.80 +[#245] ReLU (64, 256, 64) lr=1e-02 → top1=0.44, top3=0.67, top5=0.78 +[#246] ReLU (64, 256, 64) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#247] ReLU (64, 256, 64) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#248] ReLU (64, 256, 64) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#249] ReLU (64, 256, 64) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#250] ReLU (64, 256, 128) lr=1e-02 → top1=0.43, top3=0.66, top5=0.78 +[#251] ReLU (64, 256, 128) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#252] ReLU (64, 256, 128) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#253] ReLU (64, 256, 128) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#254] ReLU (64, 256, 128) lr=1e-04 → top1=0.47, top3=0.70, top5=0.81 +[#255] ReLU (64, 256, 256) lr=1e-02 → top1=0.41, top3=0.65, top5=0.76 +[#256] ReLU (64, 256, 256) lr=5e-03 → top1=0.49, top3=0.73, top5=0.82 +[#257] ReLU (64, 256, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#258] ReLU (64, 256, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#259] ReLU (64, 256, 256) lr=1e-04 → top1=0.48, top3=0.71, top5=0.81 +[#260] ReLU (128, 32, 32) lr=1e-02 → top1=0.45, top3=0.67, top5=0.78 +[#261] ReLU (128, 32, 32) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#262] ReLU (128, 32, 32) lr=1e-03 → top1=0.50, top3=0.72, top5=0.82 +[#263] ReLU (128, 32, 32) lr=5e-04 → top1=0.50, top3=0.72, top5=0.82 +[#264] ReLU (128, 32, 32) lr=1e-04 → top1=0.44, top3=0.67, top5=0.78 +[#265] ReLU (128, 32, 64) lr=1e-02 → top1=0.44, top3=0.66, top5=0.78 +[#266] ReLU (128, 32, 64) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#267] ReLU (128, 32, 64) lr=1e-03 → top1=0.50, top3=0.73, top5=0.82 +[#268] ReLU (128, 32, 64) lr=5e-04 → top1=0.50, top3=0.72, top5=0.82 +[#269] ReLU (128, 32, 64) lr=1e-04 → top1=0.45, top3=0.68, top5=0.79 +[#270] ReLU (128, 32, 128) lr=1e-02 → top1=0.41, top3=0.64, top5=0.75 +[#271] ReLU (128, 32, 128) lr=5e-03 → top1=0.48, top3=0.71, top5=0.82 +[#272] ReLU (128, 32, 128) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#273] ReLU (128, 32, 128) lr=5e-04 → top1=0.50, top3=0.73, top5=0.82 +[#274] ReLU (128, 32, 128) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#275] ReLU (128, 32, 256) lr=1e-02 → top1=0.43, top3=0.66, top5=0.77 +[#276] ReLU (128, 32, 256) lr=5e-03 → top1=0.48, top3=0.71, top5=0.82 +[#277] ReLU (128, 32, 256) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#278] ReLU (128, 32, 256) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#279] ReLU (128, 32, 256) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#280] ReLU (128, 64, 32) lr=1e-02 → top1=0.45, top3=0.67, top5=0.79 +[#281] ReLU (128, 64, 32) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#282] ReLU (128, 64, 32) lr=1e-03 → top1=0.51, top3=0.73, top5=0.82 +[#283] ReLU (128, 64, 32) lr=5e-04 → top1=0.50, top3=0.73, top5=0.82 +[#284] ReLU (128, 64, 32) lr=1e-04 → top1=0.45, top3=0.68, top5=0.79 +[#285] ReLU (128, 64, 64) lr=1e-02 → top1=0.45, top3=0.67, top5=0.78 +[#286] ReLU (128, 64, 64) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#287] ReLU (128, 64, 64) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#288] ReLU (128, 64, 64) lr=5e-04 → top1=0.51, top3=0.73, top5=0.82 +[#289] ReLU (128, 64, 64) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#290] ReLU (128, 64, 128) lr=1e-02 → top1=0.43, top3=0.66, top5=0.77 +[#291] ReLU (128, 64, 128) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#292] ReLU (128, 64, 128) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#293] ReLU (128, 64, 128) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#294] ReLU (128, 64, 128) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#295] ReLU (128, 64, 256) lr=1e-02 → top1=0.42, top3=0.66, top5=0.78 +[#296] ReLU (128, 64, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#297] ReLU (128, 64, 256) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#298] ReLU (128, 64, 256) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#299] ReLU (128, 64, 256) lr=1e-04 → top1=0.47, top3=0.70, top5=0.81 +[#300] ReLU (128, 128, 32) lr=1e-02 → top1=0.45, top3=0.68, top5=0.79 +[#301] ReLU (128, 128, 32) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#302] ReLU (128, 128, 32) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#303] ReLU (128, 128, 32) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#304] ReLU (128, 128, 32) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#305] ReLU (128, 128, 64) lr=1e-02 → top1=0.44, top3=0.67, top5=0.78 +[#306] ReLU (128, 128, 64) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#307] ReLU (128, 128, 64) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#308] ReLU (128, 128, 64) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#309] ReLU (128, 128, 64) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#310] ReLU (128, 128, 128) lr=1e-02 → top1=0.44, top3=0.66, top5=0.77 +[#311] ReLU (128, 128, 128) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#312] ReLU (128, 128, 128) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#313] ReLU (128, 128, 128) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#314] ReLU (128, 128, 128) lr=1e-04 → top1=0.47, top3=0.70, top5=0.81 +[#315] ReLU (128, 128, 256) lr=1e-02 → top1=0.42, top3=0.66, top5=0.77 +[#316] ReLU (128, 128, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#317] ReLU (128, 128, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#318] ReLU (128, 128, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#319] ReLU (128, 128, 256) lr=1e-04 → top1=0.48, top3=0.71, top5=0.81 +[#320] ReLU (128, 256, 32) lr=1e-02 → top1=0.46, top3=0.68, top5=0.78 +[#321] ReLU (128, 256, 32) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#322] ReLU (128, 256, 32) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#323] ReLU (128, 256, 32) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#324] ReLU (128, 256, 32) lr=1e-04 → top1=0.47, top3=0.70, top5=0.80 +[#325] ReLU (128, 256, 64) lr=1e-02 → top1=0.45, top3=0.68, top5=0.78 +[#326] ReLU (128, 256, 64) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#327] ReLU (128, 256, 64) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#328] ReLU (128, 256, 64) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#329] ReLU (128, 256, 64) lr=1e-04 → top1=0.48, top3=0.70, top5=0.81 +[#330] ReLU (128, 256, 128) lr=1e-02 → top1=0.44, top3=0.67, top5=0.78 +[#331] ReLU (128, 256, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#332] ReLU (128, 256, 128) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#333] ReLU (128, 256, 128) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#334] ReLU (128, 256, 128) lr=1e-04 → top1=0.49, top3=0.71, top5=0.81 +[#335] ReLU (128, 256, 256) lr=1e-02 → top1=0.38, top3=0.61, top5=0.73 +[#336] ReLU (128, 256, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#337] ReLU (128, 256, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#338] ReLU (128, 256, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#339] ReLU (128, 256, 256) lr=1e-04 → top1=0.50, top3=0.72, top5=0.82 +[#340] ReLU (256, 32, 32) lr=1e-02 → top1=0.46, top3=0.68, top5=0.79 +[#341] ReLU (256, 32, 32) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#342] ReLU (256, 32, 32) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#343] ReLU (256, 32, 32) lr=5e-04 → top1=0.50, top3=0.73, top5=0.83 +[#344] ReLU (256, 32, 32) lr=1e-04 → top1=0.47, top3=0.69, top5=0.80 +[#345] ReLU (256, 32, 64) lr=1e-02 → top1=0.44, top3=0.67, top5=0.78 +[#346] ReLU (256, 32, 64) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#347] ReLU (256, 32, 64) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#348] ReLU (256, 32, 64) lr=5e-04 → top1=0.50, top3=0.73, top5=0.83 +[#349] ReLU (256, 32, 64) lr=1e-04 → top1=0.46, top3=0.70, top5=0.80 +[#350] ReLU (256, 32, 128) lr=1e-02 → top1=0.44, top3=0.66, top5=0.77 +[#351] ReLU (256, 32, 128) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#352] ReLU (256, 32, 128) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#353] ReLU (256, 32, 128) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#354] ReLU (256, 32, 128) lr=1e-04 → top1=0.48, top3=0.71, top5=0.80 +[#355] ReLU (256, 32, 256) lr=1e-02 → top1=0.43, top3=0.66, top5=0.77 +[#356] ReLU (256, 32, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#357] ReLU (256, 32, 256) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#358] ReLU (256, 32, 256) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#359] ReLU (256, 32, 256) lr=1e-04 → top1=0.49, top3=0.71, top5=0.81 +[#360] ReLU (256, 64, 32) lr=1e-02 → top1=0.47, top3=0.68, top5=0.79 +[#361] ReLU (256, 64, 32) lr=5e-03 → top1=0.51, top3=0.72, top5=0.82 +[#362] ReLU (256, 64, 32) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#363] ReLU (256, 64, 32) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#364] ReLU (256, 64, 32) lr=1e-04 → top1=0.48, top3=0.70, top5=0.81 +[#365] ReLU (256, 64, 64) lr=1e-02 → top1=0.45, top3=0.67, top5=0.78 +[#366] ReLU (256, 64, 64) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#367] ReLU (256, 64, 64) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#368] ReLU (256, 64, 64) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#369] ReLU (256, 64, 64) lr=1e-04 → top1=0.48, top3=0.70, top5=0.81 +[#370] ReLU (256, 64, 128) lr=1e-02 → top1=0.45, top3=0.68, top5=0.78 +[#371] ReLU (256, 64, 128) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#372] ReLU (256, 64, 128) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#373] ReLU (256, 64, 128) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#374] ReLU (256, 64, 128) lr=1e-04 → top1=0.49, top3=0.71, top5=0.81 +[#375] ReLU (256, 64, 256) lr=1e-02 → top1=0.42, top3=0.65, top5=0.76 +[#376] ReLU (256, 64, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#377] ReLU (256, 64, 256) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#378] ReLU (256, 64, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#379] ReLU (256, 64, 256) lr=1e-04 → top1=0.49, top3=0.71, top5=0.82 +[#380] ReLU (256, 128, 32) lr=1e-02 → top1=0.47, top3=0.69, top5=0.79 +[#381] ReLU (256, 128, 32) lr=5e-03 → top1=0.51, top3=0.73, top5=0.82 +[#382] ReLU (256, 128, 32) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#383] ReLU (256, 128, 32) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#384] ReLU (256, 128, 32) lr=1e-04 → top1=0.49, top3=0.71, top5=0.81 +[#385] ReLU (256, 128, 64) lr=1e-02 → top1=0.45, top3=0.68, top5=0.79 +[#386] ReLU (256, 128, 64) lr=5e-03 → top1=0.51, top3=0.73, top5=0.82 +[#387] ReLU (256, 128, 64) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#388] ReLU (256, 128, 64) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#389] ReLU (256, 128, 64) lr=1e-04 → top1=0.49, top3=0.71, top5=0.81 +[#390] ReLU (256, 128, 128) lr=1e-02 → top1=0.45, top3=0.68, top5=0.79 +[#391] ReLU (256, 128, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#392] ReLU (256, 128, 128) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#393] ReLU (256, 128, 128) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#394] ReLU (256, 128, 128) lr=1e-04 → top1=0.50, top3=0.72, top5=0.82 +[#395] ReLU (256, 128, 256) lr=1e-02 → top1=0.42, top3=0.65, top5=0.77 +[#396] ReLU (256, 128, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#397] ReLU (256, 128, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#398] ReLU (256, 128, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#399] ReLU (256, 128, 256) lr=1e-04 → top1=0.50, top3=0.72, top5=0.82 +[#400] ReLU (256, 256, 32) lr=1e-02 → top1=0.47, top3=0.69, top5=0.79 +[#401] ReLU (256, 256, 32) lr=5e-03 → top1=0.51, top3=0.73, top5=0.82 +[#402] ReLU (256, 256, 32) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#403] ReLU (256, 256, 32) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#404] ReLU (256, 256, 32) lr=1e-04 → top1=0.49, top3=0.72, top5=0.82 +[#405] ReLU (256, 256, 64) lr=1e-02 → top1=0.45, top3=0.68, top5=0.79 +[#406] ReLU (256, 256, 64) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#407] ReLU (256, 256, 64) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#408] ReLU (256, 256, 64) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#409] ReLU (256, 256, 64) lr=1e-04 → top1=0.50, top3=0.72, top5=0.82 +[#410] ReLU (256, 256, 128) lr=1e-02 → top1=0.44, top3=0.67, top5=0.78 +[#411] ReLU (256, 256, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#412] ReLU (256, 256, 128) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#413] ReLU (256, 256, 128) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#414] ReLU (256, 256, 128) lr=1e-04 → top1=0.50, top3=0.72, top5=0.82 +[#415] ReLU (256, 256, 256) lr=1e-02 → top1=0.44, top3=0.66, top5=0.77 +[#416] ReLU (256, 256, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#417] ReLU (256, 256, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#418] ReLU (256, 256, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#419] ReLU (256, 256, 256) lr=1e-04 → top1=0.50, top3=0.73, top5=0.83 +[#420] GELU (32,) lr=1e-02 → top1=0.41, top3=0.66, top5=0.77 +[#421] GELU (32,) lr=5e-03 → top1=0.42, top3=0.67, top5=0.79 +[#422] GELU (32,) lr=1e-03 → top1=0.42, top3=0.67, top5=0.78 +[#423] GELU (32,) lr=5e-04 → top1=0.43, top3=0.67, top5=0.78 +[#424] GELU (32,) lr=1e-04 → top1=0.39, top3=0.63, top5=0.76 +[#425] GELU (64,) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#426] GELU (64,) lr=5e-03 → top1=0.47, top3=0.70, top5=0.80 +[#427] GELU (64,) lr=1e-03 → top1=0.47, top3=0.70, top5=0.81 +[#428] GELU (64,) lr=5e-04 → top1=0.46, top3=0.70, top5=0.80 +[#429] GELU (64,) lr=1e-04 → top1=0.41, top3=0.65, top5=0.78 +[#430] GELU (128,) lr=1e-02 → top1=0.48, top3=0.71, top5=0.82 +[#431] GELU (128,) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#432] GELU (128,) lr=1e-03 → top1=0.50, top3=0.72, top5=0.82 +[#433] GELU (128,) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#434] GELU (128,) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#435] GELU (256,) lr=1e-02 → top1=0.50, top3=0.72, top5=0.82 +[#436] GELU (256,) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#437] GELU (256,) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#438] GELU (256,) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#439] GELU (256,) lr=1e-04 → top1=0.48, top3=0.71, top5=0.81 +[#440] GELU (32, 32) lr=1e-02 → top1=0.42, top3=0.66, top5=0.78 +[#441] GELU (32, 32) lr=5e-03 → top1=0.45, top3=0.68, top5=0.79 +[#442] GELU (32, 32) lr=1e-03 → top1=0.45, top3=0.68, top5=0.80 +[#443] GELU (32, 32) lr=5e-04 → top1=0.44, top3=0.68, top5=0.79 +[#444] GELU (32, 32) lr=1e-04 → top1=0.40, top3=0.64, top5=0.76 +[#445] GELU (32, 64) lr=1e-02 → top1=0.43, top3=0.68, top5=0.79 +[#446] GELU (32, 64) lr=5e-03 → top1=0.46, top3=0.70, top5=0.81 +[#447] GELU (32, 64) lr=1e-03 → top1=0.47, top3=0.70, top5=0.81 +[#448] GELU (32, 64) lr=5e-04 → top1=0.46, top3=0.69, top5=0.80 +[#449] GELU (32, 64) lr=1e-04 → top1=0.40, top3=0.64, top5=0.77 +[#450] GELU (32, 128) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#451] GELU (32, 128) lr=5e-03 → top1=0.48, top3=0.71, top5=0.82 +[#452] GELU (32, 128) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#453] GELU (32, 128) lr=5e-04 → top1=0.48, top3=0.71, top5=0.81 +[#454] GELU (32, 128) lr=1e-04 → top1=0.42, top3=0.66, top5=0.78 +[#455] GELU (32, 256) lr=1e-02 → top1=0.45, top3=0.70, top5=0.81 +[#456] GELU (32, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.81 +[#457] GELU (32, 256) lr=1e-03 → top1=0.50, top3=0.73, top5=0.82 +[#458] GELU (32, 256) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#459] GELU (32, 256) lr=1e-04 → top1=0.43, top3=0.67, top5=0.79 +[#460] GELU (64, 32) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#461] GELU (64, 32) lr=5e-03 → top1=0.48, top3=0.70, top5=0.81 +[#462] GELU (64, 32) lr=1e-03 → top1=0.48, top3=0.71, top5=0.81 +[#463] GELU (64, 32) lr=5e-04 → top1=0.48, top3=0.70, top5=0.81 +[#464] GELU (64, 32) lr=1e-04 → top1=0.43, top3=0.66, top5=0.78 +[#465] GELU (64, 64) lr=1e-02 → top1=0.46, top3=0.70, top5=0.80 +[#466] GELU (64, 64) lr=5e-03 → top1=0.48, top3=0.71, top5=0.82 +[#467] GELU (64, 64) lr=1e-03 → top1=0.50, top3=0.72, top5=0.82 +[#468] GELU (64, 64) lr=5e-04 → top1=0.49, top3=0.72, top5=0.81 +[#469] GELU (64, 64) lr=1e-04 → top1=0.43, top3=0.67, top5=0.78 +[#470] GELU (64, 128) lr=1e-02 → top1=0.46, top3=0.70, top5=0.81 +[#471] GELU (64, 128) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#472] GELU (64, 128) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#473] GELU (64, 128) lr=5e-04 → top1=0.50, top3=0.73, top5=0.82 +[#474] GELU (64, 128) lr=1e-04 → top1=0.45, top3=0.68, top5=0.79 +[#475] GELU (64, 256) lr=1e-02 → top1=0.47, top3=0.71, top5=0.81 +[#476] GELU (64, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#477] GELU (64, 256) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#478] GELU (64, 256) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#479] GELU (64, 256) lr=1e-04 → top1=0.46, top3=0.70, top5=0.80 +[#480] GELU (128, 32) lr=1e-02 → top1=0.46, top3=0.70, top5=0.80 +[#481] GELU (128, 32) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#482] GELU (128, 32) lr=1e-03 → top1=0.50, top3=0.73, top5=0.82 +[#483] GELU (128, 32) lr=5e-04 → top1=0.50, top3=0.72, top5=0.82 +[#484] GELU (128, 32) lr=1e-04 → top1=0.45, top3=0.69, top5=0.79 +[#485] GELU (128, 64) lr=1e-02 → top1=0.47, top3=0.70, top5=0.80 +[#486] GELU (128, 64) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#487] GELU (128, 64) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#488] GELU (128, 64) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#489] GELU (128, 64) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#490] GELU (128, 128) lr=1e-02 → top1=0.47, top3=0.70, top5=0.81 +[#491] GELU (128, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#492] GELU (128, 128) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#493] GELU (128, 128) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#494] GELU (128, 128) lr=1e-04 → top1=0.48, top3=0.70, top5=0.81 +[#495] GELU (128, 256) lr=1e-02 → top1=0.47, top3=0.71, top5=0.81 +[#496] GELU (128, 256) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#497] GELU (128, 256) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#498] GELU (128, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#499] GELU (128, 256) lr=1e-04 → top1=0.48, top3=0.71, top5=0.82 +[#500] GELU (256, 32) lr=1e-02 → top1=0.49, top3=0.71, top5=0.81 +[#501] GELU (256, 32) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#502] GELU (256, 32) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#503] GELU (256, 32) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#504] GELU (256, 32) lr=1e-04 → top1=0.48, top3=0.71, top5=0.81 +[#505] GELU (256, 64) lr=1e-02 → top1=0.48, top3=0.71, top5=0.81 +[#506] GELU (256, 64) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#507] GELU (256, 64) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#508] GELU (256, 64) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#509] GELU (256, 64) lr=1e-04 → top1=0.48, top3=0.71, top5=0.81 +[#510] GELU (256, 128) lr=1e-02 → top1=0.48, top3=0.71, top5=0.81 +[#511] GELU (256, 128) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#512] GELU (256, 128) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#513] GELU (256, 128) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#514] GELU (256, 128) lr=1e-04 → top1=0.49, top3=0.72, top5=0.82 +[#515] GELU (256, 256) lr=1e-02 → top1=0.47, top3=0.70, top5=0.81 +[#516] GELU (256, 256) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#517] GELU (256, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#518] GELU (256, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#519] GELU (256, 256) lr=1e-04 → top1=0.50, top3=0.72, top5=0.82 +[#520] GELU (32, 32, 32) lr=1e-02 → top1=0.41, top3=0.66, top5=0.78 +[#521] GELU (32, 32, 32) lr=5e-03 → top1=0.45, top3=0.68, top5=0.80 +[#522] GELU (32, 32, 32) lr=1e-03 → top1=0.46, top3=0.69, top5=0.80 +[#523] GELU (32, 32, 32) lr=5e-04 → top1=0.45, top3=0.69, top5=0.80 +[#524] GELU (32, 32, 32) lr=1e-04 → top1=0.39, top3=0.64, top5=0.76 +[#525] GELU (32, 32, 64) lr=1e-02 → top1=0.42, top3=0.66, top5=0.78 +[#526] GELU (32, 32, 64) lr=5e-03 → top1=0.46, top3=0.69, top5=0.80 +[#527] GELU (32, 32, 64) lr=1e-03 → top1=0.47, top3=0.70, top5=0.81 +[#528] GELU (32, 32, 64) lr=5e-04 → top1=0.47, top3=0.70, top5=0.80 +[#529] GELU (32, 32, 64) lr=1e-04 → top1=0.41, top3=0.65, top5=0.77 +[#530] GELU (32, 32, 128) lr=1e-02 → top1=0.42, top3=0.67, top5=0.79 +[#531] GELU (32, 32, 128) lr=5e-03 → top1=0.47, top3=0.71, top5=0.81 +[#532] GELU (32, 32, 128) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#533] GELU (32, 32, 128) lr=5e-04 → top1=0.47, top3=0.71, top5=0.81 +[#534] GELU (32, 32, 128) lr=1e-04 → top1=0.41, top3=0.66, top5=0.78 +[#535] GELU (32, 32, 256) lr=1e-02 → top1=0.44, top3=0.69, top5=0.80 +[#536] GELU (32, 32, 256) lr=5e-03 → top1=0.47, top3=0.71, top5=0.81 +[#537] GELU (32, 32, 256) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#538] GELU (32, 32, 256) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#539] GELU (32, 32, 256) lr=1e-04 → top1=0.44, top3=0.67, top5=0.79 +[#540] GELU (32, 64, 32) lr=1e-02 → top1=0.42, top3=0.65, top5=0.77 +[#541] GELU (32, 64, 32) lr=5e-03 → top1=0.46, top3=0.70, top5=0.81 +[#542] GELU (32, 64, 32) lr=1e-03 → top1=0.47, top3=0.71, top5=0.81 +[#543] GELU (32, 64, 32) lr=5e-04 → top1=0.47, top3=0.70, top5=0.80 +[#544] GELU (32, 64, 32) lr=1e-04 → top1=0.41, top3=0.65, top5=0.77 +[#545] GELU (32, 64, 64) lr=1e-02 → top1=0.42, top3=0.66, top5=0.78 +[#546] GELU (32, 64, 64) lr=5e-03 → top1=0.47, top3=0.70, top5=0.81 +[#547] GELU (32, 64, 64) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#548] GELU (32, 64, 64) lr=5e-04 → top1=0.48, top3=0.71, top5=0.81 +[#549] GELU (32, 64, 64) lr=1e-04 → top1=0.42, top3=0.65, top5=0.77 +[#550] GELU (32, 64, 128) lr=1e-02 → top1=0.44, top3=0.68, top5=0.80 +[#551] GELU (32, 64, 128) lr=5e-03 → top1=0.48, top3=0.72, top5=0.82 +[#552] GELU (32, 64, 128) lr=1e-03 → top1=0.50, top3=0.73, top5=0.82 +[#553] GELU (32, 64, 128) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#554] GELU (32, 64, 128) lr=1e-04 → top1=0.42, top3=0.67, top5=0.79 +[#555] GELU (32, 64, 256) lr=1e-02 → top1=0.44, top3=0.69, top5=0.80 +[#556] GELU (32, 64, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#557] GELU (32, 64, 256) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#558] GELU (32, 64, 256) lr=5e-04 → top1=0.50, top3=0.73, top5=0.83 +[#559] GELU (32, 64, 256) lr=1e-04 → top1=0.44, top3=0.68, top5=0.79 +[#560] GELU (32, 128, 32) lr=1e-02 → top1=0.42, top3=0.67, top5=0.78 +[#561] GELU (32, 128, 32) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#562] GELU (32, 128, 32) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#563] GELU (32, 128, 32) lr=5e-04 → top1=0.48, top3=0.71, top5=0.81 +[#564] GELU (32, 128, 32) lr=1e-04 → top1=0.41, top3=0.66, top5=0.77 +[#565] GELU (32, 128, 64) lr=1e-02 → top1=0.43, top3=0.67, top5=0.78 +[#566] GELU (32, 128, 64) lr=5e-03 → top1=0.48, top3=0.71, top5=0.82 +[#567] GELU (32, 128, 64) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#568] GELU (32, 128, 64) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#569] GELU (32, 128, 64) lr=1e-04 → top1=0.44, top3=0.67, top5=0.79 +[#570] GELU (32, 128, 128) lr=1e-02 → top1=0.44, top3=0.68, top5=0.79 +[#571] GELU (32, 128, 128) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#572] GELU (32, 128, 128) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#573] GELU (32, 128, 128) lr=5e-04 → top1=0.50, top3=0.73, top5=0.83 +[#574] GELU (32, 128, 128) lr=1e-04 → top1=0.44, top3=0.68, top5=0.79 +[#575] GELU (32, 128, 256) lr=1e-02 → top1=0.44, top3=0.69, top5=0.80 +[#576] GELU (32, 128, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#577] GELU (32, 128, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#578] GELU (32, 128, 256) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#579] GELU (32, 128, 256) lr=1e-04 → top1=0.46, top3=0.70, top5=0.80 +[#580] GELU (32, 256, 32) lr=1e-02 → top1=0.44, top3=0.68, top5=0.78 +[#581] GELU (32, 256, 32) lr=5e-03 → top1=0.48, top3=0.72, top5=0.82 +[#582] GELU (32, 256, 32) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#583] GELU (32, 256, 32) lr=5e-04 → top1=0.50, top3=0.72, top5=0.82 +[#584] GELU (32, 256, 32) lr=1e-04 → top1=0.44, top3=0.67, top5=0.79 +[#585] GELU (32, 256, 64) lr=1e-02 → top1=0.44, top3=0.67, top5=0.79 +[#586] GELU (32, 256, 64) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#587] GELU (32, 256, 64) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#588] GELU (32, 256, 64) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#589] GELU (32, 256, 64) lr=1e-04 → top1=0.45, top3=0.68, top5=0.79 +[#590] GELU (32, 256, 128) lr=1e-02 → top1=0.42, top3=0.67, top5=0.78 +[#591] GELU (32, 256, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#592] GELU (32, 256, 128) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#593] GELU (32, 256, 128) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#594] GELU (32, 256, 128) lr=1e-04 → top1=0.45, top3=0.69, top5=0.80 +[#595] GELU (32, 256, 256) lr=1e-02 → top1=0.40, top3=0.65, top5=0.77 +[#596] GELU (32, 256, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#597] GELU (32, 256, 256) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#598] GELU (32, 256, 256) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#599] GELU (32, 256, 256) lr=1e-04 → top1=0.48, top3=0.71, top5=0.81 +[#600] GELU (64, 32, 32) lr=1e-02 → top1=0.44, top3=0.67, top5=0.78 +[#601] GELU (64, 32, 32) lr=5e-03 → top1=0.47, top3=0.70, top5=0.81 +[#602] GELU (64, 32, 32) lr=1e-03 → top1=0.48, top3=0.71, top5=0.81 +[#603] GELU (64, 32, 32) lr=5e-04 → top1=0.48, top3=0.71, top5=0.81 +[#0] SiLU (32,) lr=1e-02 → top1=0.42, top3=0.66, top5=0.78 +[#1] SiLU (32,) lr=5e-03 → top1=0.43, top3=0.67, top5=0.78 +[#2] SiLU (32,) lr=1e-03 → top1=0.43, top3=0.67, top5=0.78 +[#3] SiLU (32,) lr=5e-04 → top1=0.43, top3=0.66, top5=0.78 +[#4] SiLU (32,) lr=1e-04 → top1=0.38, top3=0.63, top5=0.75 +[#5] SiLU (64,) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#6] SiLU (64,) lr=5e-03 → top1=0.47, top3=0.70, top5=0.81 +[#7] SiLU (64,) lr=1e-03 → top1=0.47, top3=0.70, top5=0.81 +[#8] SiLU (64,) lr=5e-04 → top1=0.47, top3=0.70, top5=0.81 +[#9] SiLU (64,) lr=1e-04 → top1=0.41, top3=0.65, top5=0.77 +[#10] SiLU (128,) lr=1e-02 → top1=0.48, top3=0.72, top5=0.81 +[#11] SiLU (128,) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#12] SiLU (128,) lr=1e-03 → top1=0.50, top3=0.72, top5=0.82 +[#13] SiLU (128,) lr=5e-04 → top1=0.50, top3=0.72, top5=0.82 +[#14] SiLU (128,) lr=1e-04 → top1=0.44, top3=0.68, top5=0.79 +[#15] SiLU (256,) lr=1e-02 → top1=0.50, top3=0.73, top5=0.82 +[#16] SiLU (256,) lr=5e-03 → top1=0.51, top3=0.74, top5=0.83 +[#17] SiLU (256,) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#18] SiLU (256,) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#19] SiLU (256,) lr=1e-04 → top1=0.47, top3=0.70, top5=0.80 +[#20] SiLU (32, 32) lr=1e-02 → top1=0.43, top3=0.67, top5=0.78 +[#21] SiLU (32, 32) lr=5e-03 → top1=0.45, top3=0.69, top5=0.80 +[#22] SiLU (32, 32) lr=1e-03 → top1=0.45, top3=0.69, top5=0.79 +[#23] SiLU (32, 32) lr=5e-04 → top1=0.44, top3=0.68, top5=0.79 +[#24] SiLU (32, 32) lr=1e-04 → top1=0.39, top3=0.63, top5=0.75 +[#25] SiLU (32, 64) lr=1e-02 → top1=0.44, top3=0.69, top5=0.80 +[#26] SiLU (32, 64) lr=5e-03 → top1=0.46, top3=0.70, top5=0.81 +[#27] SiLU (32, 64) lr=1e-03 → top1=0.47, top3=0.71, top5=0.81 +[#28] SiLU (32, 64) lr=5e-04 → top1=0.46, top3=0.70, top5=0.81 +[#29] SiLU (32, 64) lr=1e-04 → top1=0.39, top3=0.64, top5=0.76 +[#30] SiLU (32, 128) lr=1e-02 → top1=0.46, top3=0.70, top5=0.80 +[#31] SiLU (32, 128) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#32] SiLU (32, 128) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#33] SiLU (32, 128) lr=5e-04 → top1=0.48, top3=0.71, top5=0.82 +[#34] SiLU (32, 128) lr=1e-04 → top1=0.40, top3=0.65, top5=0.78 +[#35] SiLU (32, 256) lr=1e-02 → top1=0.47, top3=0.71, top5=0.81 +[#36] SiLU (32, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#37] SiLU (32, 256) lr=1e-03 → top1=0.49, top3=0.73, top5=0.82 +[#38] SiLU (32, 256) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#39] SiLU (32, 256) lr=1e-04 → top1=0.42, top3=0.66, top5=0.78 +[#40] SiLU (64, 32) lr=1e-02 → top1=0.45, top3=0.68, top5=0.80 +[#41] SiLU (64, 32) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#42] SiLU (64, 32) lr=1e-03 → top1=0.48, top3=0.71, top5=0.81 +[#43] SiLU (64, 32) lr=5e-04 → top1=0.48, top3=0.71, top5=0.81 +[#44] SiLU (64, 32) lr=1e-04 → top1=0.41, top3=0.65, top5=0.77 +[#45] SiLU (64, 64) lr=1e-02 → top1=0.47, top3=0.70, top5=0.81 +[#46] SiLU (64, 64) lr=5e-03 → top1=0.48, top3=0.72, top5=0.82 +[#47] SiLU (64, 64) lr=1e-03 → top1=0.50, top3=0.72, top5=0.82 +[#48] SiLU (64, 64) lr=5e-04 → top1=0.49, top3=0.71, top5=0.82 +[#49] SiLU (64, 64) lr=1e-04 → top1=0.41, top3=0.66, top5=0.78 +[#50] SiLU (64, 128) lr=1e-02 → top1=0.47, top3=0.71, top5=0.81 +[#51] SiLU (64, 128) lr=5e-03 → top1=0.49, top3=0.73, top5=0.82 +[#52] SiLU (64, 128) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#53] SiLU (64, 128) lr=5e-04 → top1=0.50, top3=0.72, top5=0.82 +[#54] SiLU (64, 128) lr=1e-04 → top1=0.43, top3=0.67, top5=0.79 +[#55] SiLU (64, 256) lr=1e-02 → top1=0.47, top3=0.71, top5=0.82 +[#56] SiLU (64, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#57] SiLU (64, 256) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#58] SiLU (64, 256) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#59] SiLU (64, 256) lr=1e-04 → top1=0.44, top3=0.68, top5=0.80 +[#60] SiLU (128, 32) lr=1e-02 → top1=0.48, top3=0.71, top5=0.81 +[#61] SiLU (128, 32) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#62] SiLU (128, 32) lr=1e-03 → top1=0.50, top3=0.72, top5=0.82 +[#63] SiLU (128, 32) lr=5e-04 → top1=0.50, top3=0.73, top5=0.82 +[#64] SiLU (128, 32) lr=1e-04 → top1=0.45, top3=0.68, top5=0.79 +[#65] SiLU (128, 64) lr=1e-02 → top1=0.48, top3=0.71, top5=0.81 +[#66] SiLU (128, 64) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#67] SiLU (128, 64) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#68] SiLU (128, 64) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#69] SiLU (128, 64) lr=1e-04 → top1=0.45, top3=0.68, top5=0.79 +[#70] SiLU (128, 128) lr=1e-02 → top1=0.48, top3=0.72, top5=0.82 +[#71] SiLU (128, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#72] SiLU (128, 128) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#73] SiLU (128, 128) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#74] SiLU (128, 128) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#75] SiLU (128, 256) lr=1e-02 → top1=0.48, top3=0.71, top5=0.81 +[#76] SiLU (128, 256) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#77] SiLU (128, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#78] SiLU (128, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#79] SiLU (128, 256) lr=1e-04 → top1=0.47, top3=0.70, top5=0.81 +[#80] SiLU (256, 32) lr=1e-02 → top1=0.49, top3=0.71, top5=0.81 +[#81] SiLU (256, 32) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#82] SiLU (256, 32) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#83] SiLU (256, 32) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#84] SiLU (256, 32) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#85] SiLU (256, 64) lr=1e-02 → top1=0.49, top3=0.72, top5=0.82 +[#86] SiLU (256, 64) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#87] SiLU (256, 64) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#88] SiLU (256, 64) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#89] SiLU (256, 64) lr=1e-04 → top1=0.48, top3=0.71, top5=0.81 +[#90] SiLU (256, 128) lr=1e-02 → top1=0.49, top3=0.72, top5=0.82 +[#91] SiLU (256, 128) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#92] SiLU (256, 128) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#93] SiLU (256, 128) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#94] SiLU (256, 128) lr=1e-04 → top1=0.48, top3=0.71, top5=0.82 +[#95] SiLU (256, 256) lr=1e-02 → top1=0.48, top3=0.71, top5=0.82 +[#96] SiLU (256, 256) lr=5e-03 → top1=0.51, top3=0.74, top5=0.83 +[#97] SiLU (256, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#98] SiLU (256, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.84 +[#99] SiLU (256, 256) lr=1e-04 → top1=0.49, top3=0.72, top5=0.82 +[#100] SiLU (32, 32, 32) lr=1e-02 → top1=0.43, top3=0.67, top5=0.78 +[#101] SiLU (32, 32, 32) lr=5e-03 → top1=0.45, top3=0.69, top5=0.80 +[#102] SiLU (32, 32, 32) lr=1e-03 → top1=0.46, top3=0.70, top5=0.80 +[#103] SiLU (32, 32, 32) lr=5e-04 → top1=0.45, top3=0.68, top5=0.79 +[#104] SiLU (32, 32, 32) lr=1e-04 → top1=0.38, top3=0.62, top5=0.75 +[#105] SiLU (32, 32, 64) lr=1e-02 → top1=0.44, top3=0.68, top5=0.80 +[#106] SiLU (32, 32, 64) lr=5e-03 → top1=0.46, top3=0.70, top5=0.80 +[#107] SiLU (32, 32, 64) lr=1e-03 → top1=0.47, top3=0.70, top5=0.81 +[#108] SiLU (32, 32, 64) lr=5e-04 → top1=0.46, top3=0.70, top5=0.80 +[#109] SiLU (32, 32, 64) lr=1e-04 → top1=0.40, top3=0.65, top5=0.76 +[#110] SiLU (32, 32, 128) lr=1e-02 → top1=0.43, top3=0.69, top5=0.80 +[#111] SiLU (32, 32, 128) lr=5e-03 → top1=0.47, top3=0.71, top5=0.81 +[#112] SiLU (32, 32, 128) lr=1e-03 → top1=0.48, top3=0.72, top5=0.82 +[#113] SiLU (32, 32, 128) lr=5e-04 → top1=0.48, top3=0.71, top5=0.82 +[#114] SiLU (32, 32, 128) lr=1e-04 → top1=0.40, top3=0.65, top5=0.77 +[#115] SiLU (32, 32, 256) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#116] SiLU (32, 32, 256) lr=5e-03 → top1=0.48, top3=0.71, top5=0.82 +[#117] SiLU (32, 32, 256) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#118] SiLU (32, 32, 256) lr=5e-04 → top1=0.48, top3=0.72, top5=0.82 +[#119] SiLU (32, 32, 256) lr=1e-04 → top1=0.40, top3=0.66, top5=0.78 +[#120] SiLU (32, 64, 32) lr=1e-02 → top1=0.43, top3=0.68, top5=0.79 +[#121] SiLU (32, 64, 32) lr=5e-03 → top1=0.46, top3=0.70, top5=0.81 +[#122] SiLU (32, 64, 32) lr=1e-03 → top1=0.47, top3=0.71, top5=0.81 +[#123] SiLU (32, 64, 32) lr=5e-04 → top1=0.47, top3=0.70, top5=0.81 +[#124] SiLU (32, 64, 32) lr=1e-04 → top1=0.39, top3=0.63, top5=0.76 +[#125] SiLU (32, 64, 64) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#126] SiLU (32, 64, 64) lr=5e-03 → top1=0.48, top3=0.71, top5=0.82 +[#127] SiLU (32, 64, 64) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#128] SiLU (32, 64, 64) lr=5e-04 → top1=0.48, top3=0.71, top5=0.81 +[#129] SiLU (32, 64, 64) lr=1e-04 → top1=0.41, top3=0.66, top5=0.77 +[#130] SiLU (32, 64, 128) lr=1e-02 → top1=0.46, top3=0.70, top5=0.80 +[#131] SiLU (32, 64, 128) lr=5e-03 → top1=0.48, top3=0.72, top5=0.82 +[#132] SiLU (32, 64, 128) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#133] SiLU (32, 64, 128) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#134] SiLU (32, 64, 128) lr=1e-04 → top1=0.41, top3=0.66, top5=0.78 +[#135] SiLU (32, 64, 256) lr=1e-02 → top1=0.46, top3=0.70, top5=0.81 +[#136] SiLU (32, 64, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#137] SiLU (32, 64, 256) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#138] SiLU (32, 64, 256) lr=5e-04 → top1=0.50, top3=0.73, top5=0.83 +[#139] SiLU (32, 64, 256) lr=1e-04 → top1=0.42, top3=0.66, top5=0.78 +[#140] SiLU (32, 128, 32) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#141] SiLU (32, 128, 32) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#142] SiLU (32, 128, 32) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#143] SiLU (32, 128, 32) lr=5e-04 → top1=0.49, top3=0.71, top5=0.81 +[#144] SiLU (32, 128, 32) lr=1e-04 → top1=0.40, top3=0.65, top5=0.77 +[#145] SiLU (32, 128, 64) lr=1e-02 → top1=0.43, top3=0.68, top5=0.80 +[#146] SiLU (32, 128, 64) lr=5e-03 → top1=0.48, top3=0.72, top5=0.82 +[#147] SiLU (32, 128, 64) lr=1e-03 → top1=0.50, top3=0.73, top5=0.82 +[#148] SiLU (32, 128, 64) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#149] SiLU (32, 128, 64) lr=1e-04 → top1=0.41, top3=0.66, top5=0.77 +[#150] SiLU (32, 128, 128) lr=1e-02 → top1=0.44, top3=0.68, top5=0.80 +[#151] SiLU (32, 128, 128) lr=5e-03 → top1=0.49, top3=0.73, top5=0.83 +[#152] SiLU (32, 128, 128) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#153] SiLU (32, 128, 128) lr=5e-04 → top1=0.50, top3=0.73, top5=0.83 +[#154] SiLU (32, 128, 128) lr=1e-04 → top1=0.42, top3=0.67, top5=0.79 +[#155] SiLU (32, 128, 256) lr=1e-02 → top1=0.46, top3=0.69, top5=0.81 +[#156] SiLU (32, 128, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#157] SiLU (32, 128, 256) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#158] SiLU (32, 128, 256) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#159] SiLU (32, 128, 256) lr=1e-04 → top1=0.44, top3=0.68, top5=0.80 +[#160] SiLU (32, 256, 32) lr=1e-02 → top1=0.46, top3=0.69, top5=0.80 +[#161] SiLU (32, 256, 32) lr=5e-03 → top1=0.48, top3=0.72, top5=0.82 +[#162] SiLU (32, 256, 32) lr=1e-03 → top1=0.50, top3=0.73, top5=0.82 +[#163] SiLU (32, 256, 32) lr=5e-04 → top1=0.50, top3=0.72, top5=0.82 +[#164] SiLU (32, 256, 32) lr=1e-04 → top1=0.42, top3=0.66, top5=0.78 +[#165] SiLU (32, 256, 64) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#166] SiLU (32, 256, 64) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#167] SiLU (32, 256, 64) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#168] SiLU (32, 256, 64) lr=5e-04 → top1=0.50, top3=0.73, top5=0.83 +[#169] SiLU (32, 256, 64) lr=1e-04 → top1=0.42, top3=0.67, top5=0.79 +[#170] SiLU (32, 256, 128) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#171] SiLU (32, 256, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#172] SiLU (32, 256, 128) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#173] SiLU (32, 256, 128) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#174] SiLU (32, 256, 128) lr=1e-04 → top1=0.44, top3=0.68, top5=0.80 +[#175] SiLU (32, 256, 256) lr=1e-02 → top1=0.42, top3=0.65, top5=0.77 +[#176] SiLU (32, 256, 256) lr=5e-03 → top1=0.49, top3=0.73, top5=0.82 +[#177] SiLU (32, 256, 256) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#178] SiLU (32, 256, 256) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#179] SiLU (32, 256, 256) lr=1e-04 → top1=0.46, top3=0.70, top5=0.80 +[#180] SiLU (64, 32, 32) lr=1e-02 → top1=0.45, top3=0.68, top5=0.79 +[#181] SiLU (64, 32, 32) lr=5e-03 → top1=0.48, top3=0.70, top5=0.81 +[#182] SiLU (64, 32, 32) lr=1e-03 → top1=0.49, top3=0.72, top5=0.82 +[#183] SiLU (64, 32, 32) lr=5e-04 → top1=0.48, top3=0.71, top5=0.81 +[#184] SiLU (64, 32, 32) lr=1e-04 → top1=0.41, top3=0.65, top5=0.77 +[#185] SiLU (64, 32, 64) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#186] SiLU (64, 32, 64) lr=5e-03 → top1=0.48, top3=0.71, top5=0.81 +[#187] SiLU (64, 32, 64) lr=1e-03 → top1=0.50, top3=0.72, top5=0.82 +[#188] SiLU (64, 32, 64) lr=5e-04 → top1=0.49, top3=0.71, top5=0.82 +[#189] SiLU (64, 32, 64) lr=1e-04 → top1=0.42, top3=0.66, top5=0.78 +[#190] SiLU (64, 32, 128) lr=1e-02 → top1=0.46, top3=0.69, top5=0.80 +[#191] SiLU (64, 32, 128) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#192] SiLU (64, 32, 128) lr=1e-03 → top1=0.50, top3=0.72, top5=0.83 +[#193] SiLU (64, 32, 128) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#194] SiLU (64, 32, 128) lr=1e-04 → top1=0.42, top3=0.66, top5=0.78 +[#195] SiLU (64, 32, 256) lr=1e-02 → top1=0.46, top3=0.69, top5=0.80 +[#196] SiLU (64, 32, 256) lr=5e-03 → top1=0.49, top3=0.72, top5=0.81 +[#197] SiLU (64, 32, 256) lr=1e-03 → top1=0.50, top3=0.73, top5=0.83 +[#198] SiLU (64, 32, 256) lr=5e-04 → top1=0.50, top3=0.73, top5=0.82 +[#199] SiLU (64, 32, 256) lr=1e-04 → top1=0.43, top3=0.67, top5=0.79 +[#200] SiLU (64, 64, 32) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#201] SiLU (64, 64, 32) lr=5e-03 → top1=0.48, top3=0.71, top5=0.82 +[#202] SiLU (64, 64, 32) lr=1e-03 → top1=0.50, top3=0.72, top5=0.82 +[#203] SiLU (64, 64, 32) lr=5e-04 → top1=0.49, top3=0.72, top5=0.82 +[#204] SiLU (64, 64, 32) lr=1e-04 → top1=0.42, top3=0.65, top5=0.77 +[#205] SiLU (64, 64, 64) lr=1e-02 → top1=0.46, top3=0.69, top5=0.80 +[#206] SiLU (64, 64, 64) lr=5e-03 → top1=0.48, top3=0.72, top5=0.82 +[#207] SiLU (64, 64, 64) lr=1e-03 → top1=0.50, top3=0.73, top5=0.82 +[#208] SiLU (64, 64, 64) lr=5e-04 → top1=0.50, top3=0.72, top5=0.82 +[#209] SiLU (64, 64, 64) lr=1e-04 → top1=0.41, top3=0.66, top5=0.78 +[#210] SiLU (64, 64, 128) lr=1e-02 → top1=0.47, top3=0.70, top5=0.81 +[#211] SiLU (64, 64, 128) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#212] SiLU (64, 64, 128) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#213] SiLU (64, 64, 128) lr=5e-04 → top1=0.50, top3=0.73, top5=0.83 +[#214] SiLU (64, 64, 128) lr=1e-04 → top1=0.43, top3=0.67, top5=0.79 +[#215] SiLU (64, 64, 256) lr=1e-02 → top1=0.47, top3=0.71, top5=0.81 +[#216] SiLU (64, 64, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#217] SiLU (64, 64, 256) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#218] SiLU (64, 64, 256) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#219] SiLU (64, 64, 256) lr=1e-04 → top1=0.44, top3=0.69, top5=0.80 +[#220] SiLU (64, 128, 32) lr=1e-02 → top1=0.46, top3=0.70, top5=0.80 +[#221] SiLU (64, 128, 32) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#222] SiLU (64, 128, 32) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#223] SiLU (64, 128, 32) lr=5e-04 → top1=0.50, top3=0.73, top5=0.82 +[#224] SiLU (64, 128, 32) lr=1e-04 → top1=0.42, top3=0.67, top5=0.78 +[#225] SiLU (64, 128, 64) lr=1e-02 → top1=0.45, top3=0.70, top5=0.80 +[#226] SiLU (64, 128, 64) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#227] SiLU (64, 128, 64) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#228] SiLU (64, 128, 64) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#229] SiLU (64, 128, 64) lr=1e-04 → top1=0.44, top3=0.68, top5=0.79 +[#230] SiLU (64, 128, 128) lr=1e-02 → top1=0.46, top3=0.70, top5=0.81 +[#231] SiLU (64, 128, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#232] SiLU (64, 128, 128) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#233] SiLU (64, 128, 128) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#234] SiLU (64, 128, 128) lr=1e-04 → top1=0.45, top3=0.69, top5=0.80 +[#235] SiLU (64, 128, 256) lr=1e-02 → top1=0.42, top3=0.66, top5=0.78 +[#236] SiLU (64, 128, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#237] SiLU (64, 128, 256) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#238] SiLU (64, 128, 256) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#239] SiLU (64, 128, 256) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#240] SiLU (64, 256, 32) lr=1e-02 → top1=0.46, top3=0.70, top5=0.80 +[#241] SiLU (64, 256, 32) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#242] SiLU (64, 256, 32) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#243] SiLU (64, 256, 32) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#244] SiLU (64, 256, 32) lr=1e-04 → top1=0.44, top3=0.68, top5=0.79 +[#245] SiLU (64, 256, 64) lr=1e-02 → top1=0.43, top3=0.67, top5=0.78 +[#246] SiLU (64, 256, 64) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#247] SiLU (64, 256, 64) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#248] SiLU (64, 256, 64) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#249] SiLU (64, 256, 64) lr=1e-04 → top1=0.45, top3=0.68, top5=0.79 +[#250] SiLU (64, 256, 128) lr=1e-02 → top1=0.30, top3=0.55, top5=0.68 +[#251] SiLU (64, 256, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#252] SiLU (64, 256, 128) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#253] SiLU (64, 256, 128) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#254] SiLU (64, 256, 128) lr=1e-04 → top1=0.46, top3=0.70, top5=0.80 +[#255] SiLU (64, 256, 256) lr=1e-02 → top1=0.40, top3=0.62, top5=0.75 +[#256] SiLU (64, 256, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#257] SiLU (64, 256, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#258] SiLU (64, 256, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#259] SiLU (64, 256, 256) lr=1e-04 → top1=0.47, top3=0.71, top5=0.81 +[#260] SiLU (128, 32, 32) lr=1e-02 → top1=0.46, top3=0.69, top5=0.80 +[#261] SiLU (128, 32, 32) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#262] SiLU (128, 32, 32) lr=1e-03 → top1=0.50, top3=0.73, top5=0.82 +[#263] SiLU (128, 32, 32) lr=5e-04 → top1=0.50, top3=0.72, top5=0.82 +[#264] SiLU (128, 32, 32) lr=1e-04 → top1=0.44, top3=0.67, top5=0.78 +[#265] SiLU (128, 32, 64) lr=1e-02 → top1=0.47, top3=0.69, top5=0.80 +[#266] SiLU (128, 32, 64) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#267] SiLU (128, 32, 64) lr=1e-03 → top1=0.51, top3=0.73, top5=0.82 +[#268] SiLU (128, 32, 64) lr=5e-04 → top1=0.50, top3=0.73, top5=0.83 +[#269] SiLU (128, 32, 64) lr=1e-04 → top1=0.44, top3=0.67, top5=0.79 +[#270] SiLU (128, 32, 128) lr=1e-02 → top1=0.46, top3=0.70, top5=0.80 +[#271] SiLU (128, 32, 128) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#272] SiLU (128, 32, 128) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#273] SiLU (128, 32, 128) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#274] SiLU (128, 32, 128) lr=1e-04 → top1=0.45, top3=0.68, top5=0.79 +[#275] SiLU (128, 32, 256) lr=1e-02 → top1=0.46, top3=0.70, top5=0.80 +[#276] SiLU (128, 32, 256) lr=5e-03 → top1=0.49, top3=0.73, top5=0.82 +[#277] SiLU (128, 32, 256) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#278] SiLU (128, 32, 256) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#279] SiLU (128, 32, 256) lr=1e-04 → top1=0.45, top3=0.69, top5=0.80 +[#280] SiLU (128, 64, 32) lr=1e-02 → top1=0.48, top3=0.70, top5=0.80 +[#281] SiLU (128, 64, 32) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#282] SiLU (128, 64, 32) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#283] SiLU (128, 64, 32) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#284] SiLU (128, 64, 32) lr=1e-04 → top1=0.44, top3=0.68, top5=0.79 +[#285] SiLU (128, 64, 64) lr=1e-02 → top1=0.46, top3=0.69, top5=0.80 +[#286] SiLU (128, 64, 64) lr=5e-03 → top1=0.49, top3=0.72, top5=0.82 +[#287] SiLU (128, 64, 64) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#288] SiLU (128, 64, 64) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#289] SiLU (128, 64, 64) lr=1e-04 → top1=0.45, top3=0.69, top5=0.79 +[#290] SiLU (128, 64, 128) lr=1e-02 → top1=0.46, top3=0.70, top5=0.80 +[#291] SiLU (128, 64, 128) lr=5e-03 → top1=0.49, top3=0.73, top5=0.82 +[#292] SiLU (128, 64, 128) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#293] SiLU (128, 64, 128) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#294] SiLU (128, 64, 128) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#295] SiLU (128, 64, 256) lr=1e-02 → top1=0.45, top3=0.69, top5=0.80 +[#296] SiLU (128, 64, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#297] SiLU (128, 64, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#298] SiLU (128, 64, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#299] SiLU (128, 64, 256) lr=1e-04 → top1=0.46, top3=0.70, top5=0.81 +[#300] SiLU (128, 128, 32) lr=1e-02 → top1=0.46, top3=0.69, top5=0.80 +[#301] SiLU (128, 128, 32) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#302] SiLU (128, 128, 32) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#303] SiLU (128, 128, 32) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#304] SiLU (128, 128, 32) lr=1e-04 → top1=0.45, top3=0.69, top5=0.79 +[#305] SiLU (128, 128, 64) lr=1e-02 → top1=0.46, top3=0.69, top5=0.80 +[#306] SiLU (128, 128, 64) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#307] SiLU (128, 128, 64) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#308] SiLU (128, 128, 64) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#309] SiLU (128, 128, 64) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#310] SiLU (128, 128, 128) lr=1e-02 → top1=0.33, top3=0.58, top5=0.71 +[#311] SiLU (128, 128, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#312] SiLU (128, 128, 128) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#313] SiLU (128, 128, 128) lr=5e-04 → top1=0.51, top3=0.74, top5=0.83 +[#314] SiLU (128, 128, 128) lr=1e-04 → top1=0.46, top3=0.70, top5=0.81 +[#315] SiLU (128, 128, 256) lr=1e-02 → top1=0.38, top3=0.60, top5=0.73 +[#316] SiLU (128, 128, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#317] SiLU (128, 128, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#318] SiLU (128, 128, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#319] SiLU (128, 128, 256) lr=1e-04 → top1=0.47, top3=0.71, top5=0.81 +[#320] SiLU (128, 256, 32) lr=1e-02 → top1=0.47, top3=0.70, top5=0.80 +[#321] SiLU (128, 256, 32) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#322] SiLU (128, 256, 32) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#323] SiLU (128, 256, 32) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#324] SiLU (128, 256, 32) lr=1e-04 → top1=0.47, top3=0.70, top5=0.80 +[#325] SiLU (128, 256, 64) lr=1e-02 → top1=0.38, top3=0.61, top5=0.73 +[#326] SiLU (128, 256, 64) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#327] SiLU (128, 256, 64) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#328] SiLU (128, 256, 64) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#329] SiLU (128, 256, 64) lr=1e-04 → top1=0.47, top3=0.70, top5=0.81 +[#330] SiLU (128, 256, 128) lr=1e-02 → top1=0.40, top3=0.63, top5=0.75 +[#331] SiLU (128, 256, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#332] SiLU (128, 256, 128) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#333] SiLU (128, 256, 128) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#334] SiLU (128, 256, 128) lr=1e-04 → top1=0.48, top3=0.71, top5=0.82 +[#335] SiLU (128, 256, 256) lr=1e-02 → top1=0.29, top3=0.56, top5=0.70 +[#336] SiLU (128, 256, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#337] SiLU (128, 256, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#338] SiLU (128, 256, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.84 +[#339] SiLU (128, 256, 256) lr=1e-04 → top1=0.49, top3=0.72, top5=0.82 +[#340] SiLU (256, 32, 32) lr=1e-02 → top1=0.47, top3=0.69, top5=0.80 +[#341] SiLU (256, 32, 32) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#342] SiLU (256, 32, 32) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#343] SiLU (256, 32, 32) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#344] SiLU (256, 32, 32) lr=1e-04 → top1=0.46, top3=0.69, top5=0.79 +[#345] SiLU (256, 32, 64) lr=1e-02 → top1=0.47, top3=0.70, top5=0.80 +[#346] SiLU (256, 32, 64) lr=5e-03 → top1=0.50, top3=0.72, top5=0.82 +[#347] SiLU (256, 32, 64) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#348] SiLU (256, 32, 64) lr=5e-04 → top1=0.51, top3=0.73, top5=0.83 +[#349] SiLU (256, 32, 64) lr=1e-04 → top1=0.46, top3=0.69, top5=0.80 +[#350] SiLU (256, 32, 128) lr=1e-02 → top1=0.46, top3=0.70, top5=0.80 +[#351] SiLU (256, 32, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#352] SiLU (256, 32, 128) lr=1e-03 → top1=0.51, top3=0.73, top5=0.83 +[#353] SiLU (256, 32, 128) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#354] SiLU (256, 32, 128) lr=1e-04 → top1=0.47, top3=0.70, top5=0.81 +[#355] SiLU (256, 32, 256) lr=1e-02 → top1=0.47, top3=0.69, top5=0.80 +[#356] SiLU (256, 32, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#357] SiLU (256, 32, 256) lr=1e-03 → top1=0.51, top3=0.74, top5=0.83 +[#358] SiLU (256, 32, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#359] SiLU (256, 32, 256) lr=1e-04 → top1=0.47, top3=0.70, top5=0.81 +[#360] SiLU (256, 64, 32) lr=1e-02 → top1=0.47, top3=0.69, top5=0.80 +[#361] SiLU (256, 64, 32) lr=5e-03 → top1=0.51, top3=0.73, top5=0.82 +[#362] SiLU (256, 64, 32) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#363] SiLU (256, 64, 32) lr=5e-04 → top1=0.52, top3=0.73, top5=0.83 +[#364] SiLU (256, 64, 32) lr=1e-04 → top1=0.47, top3=0.69, top5=0.80 +[#365] SiLU (256, 64, 64) lr=1e-02 → top1=0.46, top3=0.69, top5=0.79 +[#366] SiLU (256, 64, 64) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#367] SiLU (256, 64, 64) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#368] SiLU (256, 64, 64) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#369] SiLU (256, 64, 64) lr=1e-04 → top1=0.47, top3=0.70, top5=0.80 +[#370] SiLU (256, 64, 128) lr=1e-02 → top1=0.46, top3=0.69, top5=0.79 +[#371] SiLU (256, 64, 128) lr=5e-03 → top1=0.50, top3=0.73, top5=0.83 +[#372] SiLU (256, 64, 128) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#373] SiLU (256, 64, 128) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#374] SiLU (256, 64, 128) lr=1e-04 → top1=0.47, top3=0.71, top5=0.81 +[#375] SiLU (256, 64, 256) lr=1e-02 → top1=0.45, top3=0.67, top5=0.79 +[#376] SiLU (256, 64, 256) lr=5e-03 → top1=0.49, top3=0.73, top5=0.83 +[#377] SiLU (256, 64, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#378] SiLU (256, 64, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#379] SiLU (256, 64, 256) lr=1e-04 → top1=0.48, top3=0.71, top5=0.81 +[#380] SiLU (256, 128, 32) lr=1e-02 → top1=0.46, top3=0.69, top5=0.80 +[#381] SiLU (256, 128, 32) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#382] SiLU (256, 128, 32) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#383] SiLU (256, 128, 32) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#384] SiLU (256, 128, 32) lr=1e-04 → top1=0.48, top3=0.71, top5=0.81 +[#385] SiLU (256, 128, 64) lr=1e-02 → top1=0.46, top3=0.69, top5=0.79 +[#386] SiLU (256, 128, 64) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#387] SiLU (256, 128, 64) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#388] SiLU (256, 128, 64) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#389] SiLU (256, 128, 64) lr=1e-04 → top1=0.48, top3=0.71, top5=0.81 +[#390] SiLU (256, 128, 128) lr=1e-02 → top1=0.38, top3=0.61, top5=0.73 +[#391] SiLU (256, 128, 128) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#392] SiLU (256, 128, 128) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#393] SiLU (256, 128, 128) lr=5e-04 → top1=0.52, top3=0.74, top5=0.84 +[#394] SiLU (256, 128, 128) lr=1e-04 → top1=0.49, top3=0.71, top5=0.81 +[#395] SiLU (256, 128, 256) lr=1e-02 → top1=0.38, top3=0.63, top5=0.75 +[#396] SiLU (256, 128, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#397] SiLU (256, 128, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#398] SiLU (256, 128, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#399] SiLU (256, 128, 256) lr=1e-04 → top1=0.49, top3=0.72, top5=0.82 +[#400] SiLU (256, 256, 32) lr=1e-02 → top1=0.47, top3=0.69, top5=0.80 +[#401] SiLU (256, 256, 32) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#402] SiLU (256, 256, 32) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#403] SiLU (256, 256, 32) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#404] SiLU (256, 256, 32) lr=1e-04 → top1=0.49, top3=0.71, top5=0.81 +[#405] SiLU (256, 256, 64) lr=1e-02 → top1=0.37, top3=0.61, top5=0.74 +[#406] SiLU (256, 256, 64) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#407] SiLU (256, 256, 64) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#408] SiLU (256, 256, 64) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#409] SiLU (256, 256, 64) lr=1e-04 → top1=0.49, top3=0.72, top5=0.82 +[#410] SiLU (256, 256, 128) lr=1e-02 → top1=0.38, top3=0.61, top5=0.73 +[#411] SiLU (256, 256, 128) lr=5e-03 → top1=0.51, top3=0.73, top5=0.83 +[#412] SiLU (256, 256, 128) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#413] SiLU (256, 256, 128) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#414] SiLU (256, 256, 128) lr=1e-04 → top1=0.50, top3=0.72, top5=0.82 +[#415] SiLU (256, 256, 256) lr=1e-02 → top1=0.12, top3=0.30, top5=0.45 +[#416] SiLU (256, 256, 256) lr=5e-03 → top1=0.50, top3=0.73, top5=0.82 +[#417] SiLU (256, 256, 256) lr=1e-03 → top1=0.52, top3=0.74, top5=0.83 +[#418] SiLU (256, 256, 256) lr=5e-04 → top1=0.52, top3=0.74, top5=0.83 +[#419] SiLU (256, 256, 256) lr=1e-04 → top1=0.50, top3=0.73, top5=0.82 diff --git a/model/training_results/silu.json b/model/training_results/silu.json new file mode 100644 index 0000000..bbf6163 --- /dev/null +++ b/model/training_results/silu.json @@ -0,0 +1,3782 @@ +[ + { + "config_id": 0, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.01, + "top1_acc": 0.4184677220322251, + "top3_acc": 0.6588865775834715, + "top5_acc": 0.7752705990198498 + }, + { + "config_id": 1, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.005, + "top1_acc": 0.42858653880055003, + "top3_acc": 0.6654444170221768, + "top5_acc": 0.7788668335507527 + }, + { + "config_id": 2, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.001, + "top1_acc": 0.42583647710044775, + "top3_acc": 0.6656207030285936, + "top5_acc": 0.7806649508162042 + }, + { + "config_id": 3, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.0005, + "top1_acc": 0.42566019109403097, + "top3_acc": 0.6612840672707401, + "top5_acc": 0.7763988294609174 + }, + { + "config_id": 4, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.0001, + "top1_acc": 0.37605330888834043, + "top3_acc": 0.6273313824348623, + "top5_acc": 0.7534463914254487 + }, + { + "config_id": 5, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.01, + "top1_acc": 0.4533370941014702, + "top3_acc": 0.6949194372950676, + "top5_acc": 0.8033000740401227 + }, + { + "config_id": 6, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.005, + "top1_acc": 0.47322215562528647, + "top3_acc": 0.7028170503825406, + "top5_acc": 0.8064732221556253 + }, + { + "config_id": 7, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.001, + "top1_acc": 0.47315164122271974, + "top3_acc": 0.7037689948171915, + "top5_acc": 0.8100341994852449 + }, + { + "config_id": 8, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.0005, + "top1_acc": 0.46821563304304903, + "top3_acc": 0.697598984592603, + "top5_acc": 0.8050981913055741 + }, + { + "config_id": 9, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.0001, + "top1_acc": 0.40972393611395125, + "top3_acc": 0.6539858266050841, + "top5_acc": 0.7744596833903324 + }, + { + "config_id": 10, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.01, + "top1_acc": 0.4829531431794944, + "top3_acc": 0.7151923280330007, + "top5_acc": 0.8106688291083454 + }, + { + "config_id": 11, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.005, + "top1_acc": 0.4975848817120897, + "top3_acc": 0.725346402002609, + "top5_acc": 0.8215280471036209 + }, + { + "config_id": 12, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.001, + "top1_acc": 0.5025914042943271, + "top3_acc": 0.7236187991397243, + "top5_acc": 0.8216690759087544 + }, + { + "config_id": 13, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.0005, + "top1_acc": 0.49864259775059055, + "top3_acc": 0.7222790254909566, + "top5_acc": 0.8214927899023375 + }, + { + "config_id": 14, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.0001, + "top1_acc": 0.43955152839967565, + "top3_acc": 0.6762331206148856, + "top5_acc": 0.7895497655396114 + }, + { + "config_id": 15, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.01, + "top1_acc": 0.5000881430032084, + "top3_acc": 0.7251348587949089, + "top5_acc": 0.8247011952191236 + }, + { + "config_id": 16, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.005, + "top1_acc": 0.5102069597715333, + "top3_acc": 0.7357120191799175, + "top5_acc": 0.8291083453795438 + }, + { + "config_id": 17, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.001, + "top1_acc": 0.5122518774459683, + "top3_acc": 0.7359588195889011, + "top5_acc": 0.8292846313859605 + }, + { + "config_id": 18, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.0005, + "top1_acc": 0.5146846243345203, + "top3_acc": 0.7336671015054825, + "top5_acc": 0.8278743433346261 + }, + { + "config_id": 19, + "activation": "SiLU", + "layer_sizes": "(32,)", + "learning_rate": 0.0001, + "top1_acc": 0.4678983182314988, + "top3_acc": 0.6969996121707859, + "top5_acc": 0.8046751048901738 + }, + { + "config_id": 20, + "activation": "SiLU", + "layer_sizes": "(32, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4320770017276029, + "top3_acc": 0.6733067729083665, + "top5_acc": 0.7838380989317068 + }, + { + "config_id": 21, + "activation": "SiLU", + "layer_sizes": "(32, 32)", + "learning_rate": 0.005, + "top1_acc": 0.4491767443500335, + "top3_acc": 0.6861756513767937, + "top5_acc": 0.7958960617706167 + }, + { + "config_id": 22, + "activation": "SiLU", + "layer_sizes": "(32, 32)", + "learning_rate": 0.001, + "top1_acc": 0.45443006734125446, + "top3_acc": 0.6865634805909107, + "top5_acc": 0.7927581708563974 + }, + { + "config_id": 23, + "activation": "SiLU", + "layer_sizes": "(32, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.4390579275817086, + "top3_acc": 0.6826146740471741, + "top5_acc": 0.7908542819870958 + }, + { + "config_id": 24, + "activation": "SiLU", + "layer_sizes": "(32, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.38701829848746605, + "top3_acc": 0.6346296231005183, + "top5_acc": 0.7545746218665162 + }, + { + "config_id": 25, + "activation": "SiLU", + "layer_sizes": "(32, 64)", + "learning_rate": 0.01, + "top1_acc": 0.4424778761061947, + "top3_acc": 0.685223706942143, + "top5_acc": 0.7976236646335014 + }, + { + "config_id": 26, + "activation": "SiLU", + "layer_sizes": "(32, 64)", + "learning_rate": 0.005, + "top1_acc": 0.46320911046081165, + "top3_acc": 0.7000669886824384, + "top5_acc": 0.8067552797658922 + }, + { + "config_id": 27, + "activation": "SiLU", + "layer_sizes": "(32, 64)", + "learning_rate": 0.001, + "top1_acc": 0.4700137503085005, + "top3_acc": 0.7056023692839263, + "top5_acc": 0.8135599196135811 + }, + { + "config_id": 28, + "activation": "SiLU", + "layer_sizes": "(32, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.46130522159151005, + "top3_acc": 0.6950252088989176, + "top5_acc": 0.805274477311991 + }, + { + "config_id": 29, + "activation": "SiLU", + "layer_sizes": "(32, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.3936819095300215, + "top3_acc": 0.642104149772591, + "top5_acc": 0.7641998378168741 + }, + { + "config_id": 30, + "activation": "SiLU", + "layer_sizes": "(32, 128)", + "learning_rate": 0.01, + "top1_acc": 0.4557698409900222, + "top3_acc": 0.6972816697810528, + "top5_acc": 0.8044283044811903 + }, + { + "config_id": 31, + "activation": "SiLU", + "layer_sizes": "(32, 128)", + "learning_rate": 0.005, + "top1_acc": 0.4812960547191764, + "top3_acc": 0.7113845502943976, + "top5_acc": 0.8148996932623488 + }, + { + "config_id": 32, + "activation": "SiLU", + "layer_sizes": "(32, 128)", + "learning_rate": 0.001, + "top1_acc": 0.488171208969432, + "top3_acc": 0.7164615872792017, + "top5_acc": 0.8184254133906851 + }, + { + "config_id": 33, + "activation": "SiLU", + "layer_sizes": "(32, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.48080245390120935, + "top3_acc": 0.7127243239431654, + "top5_acc": 0.8176850121637345 + }, + { + "config_id": 34, + "activation": "SiLU", + "layer_sizes": "(32, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.40249620985086204, + "top3_acc": 0.6507774212882982, + "top5_acc": 0.7756936854352502 + }, + { + "config_id": 35, + "activation": "SiLU", + "layer_sizes": "(32, 256)", + "learning_rate": 0.01, + "top1_acc": 0.4700137503085005, + "top3_acc": 0.7050735112646758, + "top5_acc": 0.8060148785389416 + }, + { + "config_id": 36, + "activation": "SiLU", + "layer_sizes": "(32, 256)", + "learning_rate": 0.005, + "top1_acc": 0.4928251595388358, + "top3_acc": 0.7216796530691394, + "top5_acc": 0.8186722137996686 + }, + { + "config_id": 37, + "activation": "SiLU", + "layer_sizes": "(32, 256)", + "learning_rate": 0.001, + "top1_acc": 0.49391813277862, + "top3_acc": 0.7278144060924444, + "top5_acc": 0.8239960511934563 + }, + { + "config_id": 38, + "activation": "SiLU", + "layer_sizes": "(32, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.49204950111060186, + "top3_acc": 0.7233719987307408, + "top5_acc": 0.8211049606882206 + }, + { + "config_id": 39, + "activation": "SiLU", + "layer_sizes": "(32, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.4190318372527589, + "top3_acc": 0.6608257236540563, + "top5_acc": 0.7815816380495716 + }, + { + "config_id": 40, + "activation": "SiLU", + "layer_sizes": "(64, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4502697175898177, + "top3_acc": 0.683284560871558, + "top5_acc": 0.7954729753552163 + }, + { + "config_id": 41, + "activation": "SiLU", + "layer_sizes": "(64, 32)", + "learning_rate": 0.005, + "top1_acc": 0.4781581638049572, + "top3_acc": 0.7061312273031767, + "top5_acc": 0.8116207735429961 + }, + { + "config_id": 42, + "activation": "SiLU", + "layer_sizes": "(64, 32)", + "learning_rate": 0.001, + "top1_acc": 0.48291788597821106, + "top3_acc": 0.7072594577442443, + "top5_acc": 0.812678489581497 + }, + { + "config_id": 43, + "activation": "SiLU", + "layer_sizes": "(64, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.4750555300920213, + "top3_acc": 0.7051087684659592, + "top5_acc": 0.8072841377851426 + }, + { + "config_id": 44, + "activation": "SiLU", + "layer_sizes": "(64, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.40732644642668264, + "top3_acc": 0.6466170715368614, + "top5_acc": 0.767796072347777 + }, + { + "config_id": 45, + "activation": "SiLU", + "layer_sizes": "(64, 64)", + "learning_rate": 0.01, + "top1_acc": 0.4693086062828333, + "top3_acc": 0.7014420195324895, + "top5_acc": 0.8055565349222579 + }, + { + "config_id": 46, + "activation": "SiLU", + "layer_sizes": "(64, 64)", + "learning_rate": 0.005, + "top1_acc": 0.4846454888410958, + "top3_acc": 0.7154391284419843, + "top5_acc": 0.8184254133906851 + }, + { + "config_id": 47, + "activation": "SiLU", + "layer_sizes": "(64, 64)", + "learning_rate": 0.001, + "top1_acc": 0.4993477417762578, + "top3_acc": 0.7195642209921377, + "top5_acc": 0.8218101047138878 + }, + { + "config_id": 48, + "activation": "SiLU", + "layer_sizes": "(64, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.48982829742975004, + "top3_acc": 0.7133942107675493, + "top5_acc": 0.8152522652751825 + }, + { + "config_id": 49, + "activation": "SiLU", + "layer_sizes": "(64, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.4149067447026055, + "top3_acc": 0.6587808059796213, + "top5_acc": 0.7789020907520361 + }, + { + "config_id": 50, + "activation": "SiLU", + "layer_sizes": "(64, 128)", + "learning_rate": 0.01, + "top1_acc": 0.471811867573952, + "top3_acc": 0.710644149067447, + "top5_acc": 0.8122554031660967 + }, + { + "config_id": 51, + "activation": "SiLU", + "layer_sizes": "(64, 128)", + "learning_rate": 0.005, + "top1_acc": 0.4941296759863202, + "top3_acc": 0.726122060430843, + "top5_acc": 0.8220216479215879 + }, + { + "config_id": 52, + "activation": "SiLU", + "layer_sizes": "(64, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5058350668123964, + "top3_acc": 0.7296477805591792, + "top5_acc": 0.8280506293410429 + }, + { + "config_id": 53, + "activation": "SiLU", + "layer_sizes": "(64, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.5014984310545428, + "top3_acc": 0.7245354863730917, + "top5_acc": 0.823572964778056 + }, + { + "config_id": 54, + "activation": "SiLU", + "layer_sizes": "(64, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4338046045904876, + "top3_acc": 0.6723900856749991, + "top5_acc": 0.7878221626767267 + }, + { + "config_id": 55, + "activation": "SiLU", + "layer_sizes": "(64, 256)", + "learning_rate": 0.01, + "top1_acc": 0.4699079787046504, + "top3_acc": 0.7122307231251983, + "top5_acc": 0.8160984381059831 + }, + { + "config_id": 56, + "activation": "SiLU", + "layer_sizes": "(64, 256)", + "learning_rate": 0.005, + "top1_acc": 0.5029087191058774, + "top3_acc": 0.7285900645206783, + "top5_acc": 0.827380742516659 + }, + { + "config_id": 57, + "activation": "SiLU", + "layer_sizes": "(64, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5101364453689666, + "top3_acc": 0.7362761344004513, + "top5_acc": 0.8319641786834961 + }, + { + "config_id": 58, + "activation": "SiLU", + "layer_sizes": "(64, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5076684412791312, + "top3_acc": 0.7356767619786342, + "top5_acc": 0.8298840038077777 + }, + { + "config_id": 59, + "activation": "SiLU", + "layer_sizes": "(64, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.4437823925536791, + "top3_acc": 0.6846948489228925, + "top5_acc": 0.7967422346014174 + }, + { + "config_id": 60, + "activation": "SiLU", + "layer_sizes": "(128, 32)", + "learning_rate": 0.01, + "top1_acc": 0.47946268025244154, + "top3_acc": 0.7070831717378274, + "top5_acc": 0.8121496315622466 + }, + { + "config_id": 61, + "activation": "SiLU", + "layer_sizes": "(128, 32)", + "learning_rate": 0.005, + "top1_acc": 0.4986073405493072, + "top3_acc": 0.7219264534781229, + "top5_acc": 0.8194831294291859 + }, + { + "config_id": 62, + "activation": "SiLU", + "layer_sizes": "(128, 32)", + "learning_rate": 0.001, + "top1_acc": 0.5021330606776434, + "top3_acc": 0.7249585727884921, + "top5_acc": 0.8248069668229736 + }, + { + "config_id": 63, + "activation": "SiLU", + "layer_sizes": "(128, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.5000528858019251, + "top3_acc": 0.7256989740154427, + "top5_acc": 0.823572964778056 + }, + { + "config_id": 64, + "activation": "SiLU", + "layer_sizes": "(128, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.44688502626661497, + "top3_acc": 0.679970383950922, + "top5_acc": 0.7904311955716955 + }, + { + "config_id": 65, + "activation": "SiLU", + "layer_sizes": "(128, 64)", + "learning_rate": 0.01, + "top1_acc": 0.4817543983358601, + "top3_acc": 0.709480661425096, + "top5_acc": 0.810633571907062 + }, + { + "config_id": 66, + "activation": "SiLU", + "layer_sizes": "(128, 64)", + "learning_rate": 0.005, + "top1_acc": 0.5043895215597786, + "top3_acc": 0.7293657229489123, + "top5_acc": 0.8247364524204068 + }, + { + "config_id": 67, + "activation": "SiLU", + "layer_sizes": "(128, 64)", + "learning_rate": 0.001, + "top1_acc": 0.5085851285124987, + "top3_acc": 0.7331735006875154, + "top5_acc": 0.8292493741846773 + }, + { + "config_id": 68, + "activation": "SiLU", + "layer_sizes": "(128, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.5103127313753835, + "top3_acc": 0.7324683566618482, + "top5_acc": 0.8280153721397595 + }, + { + "config_id": 69, + "activation": "SiLU", + "layer_sizes": "(128, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.44857737192821634, + "top3_acc": 0.6836371328843917, + "top5_acc": 0.7949793745372492 + }, + { + "config_id": 70, + "activation": "SiLU", + "layer_sizes": "(128, 128)", + "learning_rate": 0.01, + "top1_acc": 0.48468074604237915, + "top3_acc": 0.7163558156753517, + "top5_acc": 0.8173324401509008 + }, + { + "config_id": 71, + "activation": "SiLU", + "layer_sizes": "(128, 128)", + "learning_rate": 0.005, + "top1_acc": 0.503261291118711, + "top3_acc": 0.729436237351479, + "top5_acc": 0.8269929133025421 + }, + { + "config_id": 72, + "activation": "SiLU", + "layer_sizes": "(128, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5138384515037197, + "top3_acc": 0.7396608257236541, + "top5_acc": 0.8306244050347283 + }, + { + "config_id": 73, + "activation": "SiLU", + "layer_sizes": "(128, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.5105947889856504, + "top3_acc": 0.7356062475760674, + "top5_acc": 0.8300250326129112 + }, + { + "config_id": 74, + "activation": "SiLU", + "layer_sizes": "(128, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4592955611183584, + "top3_acc": 0.691957832387265, + "top5_acc": 0.8035468744491062 + }, + { + "config_id": 75, + "activation": "SiLU", + "layer_sizes": "(128, 256)", + "learning_rate": 0.01, + "top1_acc": 0.47586644572153863, + "top3_acc": 0.71424038359835, + "top5_acc": 0.8145471212495152 + }, + { + "config_id": 76, + "activation": "SiLU", + "layer_sizes": "(128, 256)", + "learning_rate": 0.005, + "top1_acc": 0.5079152416881147, + "top3_acc": 0.7320805274477312, + "top5_acc": 0.828156400944893 + }, + { + "config_id": 77, + "activation": "SiLU", + "layer_sizes": "(128, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5158128547755879, + "top3_acc": 0.736840249620985, + "top5_acc": 0.8316116066706625 + }, + { + "config_id": 78, + "activation": "SiLU", + "layer_sizes": "(128, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5181398300602899, + "top3_acc": 0.7384620808800197, + "top5_acc": 0.8316468638719459 + }, + { + "config_id": 79, + "activation": "SiLU", + "layer_sizes": "(128, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.4739625568522371, + "top3_acc": 0.7009131615132391, + "top5_acc": 0.8096463702711278 + }, + { + "config_id": 80, + "activation": "SiLU", + "layer_sizes": "(256, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4894052110143497, + "top3_acc": 0.71424038359835, + "top5_acc": 0.8136304340161478 + }, + { + "config_id": 81, + "activation": "SiLU", + "layer_sizes": "(256, 32)", + "learning_rate": 0.005, + "top1_acc": 0.5117582766280012, + "top3_acc": 0.7298593237668793, + "top5_acc": 0.8252653104396573 + }, + { + "config_id": 82, + "activation": "SiLU", + "layer_sizes": "(256, 32)", + "learning_rate": 0.001, + "top1_acc": 0.5104185029792335, + "top3_acc": 0.737897965659486, + "top5_acc": 0.8300955470154779 + }, + { + "config_id": 83, + "activation": "SiLU", + "layer_sizes": "(256, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.5114057046151677, + "top3_acc": 0.7333145294926489, + "top5_acc": 0.8290730881782604 + }, + { + "config_id": 84, + "activation": "SiLU", + "layer_sizes": "(256, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.4646193985121461, + "top3_acc": 0.6918168035821316, + "top5_acc": 0.8018192715862215 + }, + { + "config_id": 85, + "activation": "SiLU", + "layer_sizes": "(256, 64)", + "learning_rate": 0.01, + "top1_acc": 0.486901949723231, + "top3_acc": 0.7177661037266861, + "top5_acc": 0.8201882734548531 + }, + { + "config_id": 86, + "activation": "SiLU", + "layer_sizes": "(256, 64)", + "learning_rate": 0.005, + "top1_acc": 0.5081972992983816, + "top3_acc": 0.7331735006875154, + "top5_acc": 0.8260057116666079 + }, + { + "config_id": 87, + "activation": "SiLU", + "layer_sizes": "(256, 64)", + "learning_rate": 0.001, + "top1_acc": 0.5145788527306703, + "top3_acc": 0.7377569368543525, + "top5_acc": 0.83273983711173 + }, + { + "config_id": 88, + "activation": "SiLU", + "layer_sizes": "(256, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.5119698198357014, + "top3_acc": 0.7385678524838698, + "top5_acc": 0.8316821210732293 + }, + { + "config_id": 89, + "activation": "SiLU", + "layer_sizes": "(256, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.4759722173253887, + "top3_acc": 0.7051440256672425, + "top5_acc": 0.8074956809928427 + }, + { + "config_id": 90, + "activation": "SiLU", + "layer_sizes": "(256, 128)", + "learning_rate": 0.01, + "top1_acc": 0.4887705813912492, + "top3_acc": 0.7159679864612347, + "top5_acc": 0.8170856397419173 + }, + { + "config_id": 91, + "activation": "SiLU", + "layer_sizes": "(256, 128)", + "learning_rate": 0.005, + "top1_acc": 0.505799809611113, + "top3_acc": 0.733808130310616, + "top5_acc": 0.82854423015901 + }, + { + "config_id": 92, + "activation": "SiLU", + "layer_sizes": "(256, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5189860028910905, + "top3_acc": 0.7410358565737052, + "top5_acc": 0.8335154955399641 + }, + { + "config_id": 93, + "activation": "SiLU", + "layer_sizes": "(256, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.519620632514191, + "top3_acc": 0.7396960829249374, + "top5_acc": 0.8333744667348306 + }, + { + "config_id": 94, + "activation": "SiLU", + "layer_sizes": "(256, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4848922892500793, + "top3_acc": 0.712583295138032, + "top5_acc": 0.8162394669111166 + }, + { + "config_id": 95, + "activation": "SiLU", + "layer_sizes": "(256, 256)", + "learning_rate": 0.01, + "top1_acc": 0.4781934210062405, + "top3_acc": 0.711419807495681, + "top5_acc": 0.8171208969432007 + }, + { + "config_id": 96, + "activation": "SiLU", + "layer_sizes": "(256, 256)", + "learning_rate": 0.005, + "top1_acc": 0.5091492437330325, + "top3_acc": 0.7379332228607693, + "top5_acc": 0.8286852589641435 + }, + { + "config_id": 97, + "activation": "SiLU", + "layer_sizes": "(256, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5206430913514085, + "top3_acc": 0.7418115150019391, + "top5_acc": 0.8316821210732293 + }, + { + "config_id": 98, + "activation": "SiLU", + "layer_sizes": "(256, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5189860028910905, + "top3_acc": 0.7409653421711384, + "top5_acc": 0.8356309276169658 + }, + { + "config_id": 99, + "activation": "SiLU", + "layer_sizes": "(256, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.48951098261819975, + "top3_acc": 0.7182244473433699, + "top5_acc": 0.8164510101188168 + }, + { + "config_id": 100, + "activation": "SiLU", + "layer_sizes": "(32, 32, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4256954482953143, + "top3_acc": 0.668970137150513, + "top5_acc": 0.7829566688996228 + }, + { + "config_id": 101, + "activation": "SiLU", + "layer_sizes": "(32, 32, 32)", + "learning_rate": 0.005, + "top1_acc": 0.4523498924655361, + "top3_acc": 0.6853999929485597, + "top5_acc": 0.7972710926206678 + }, + { + "config_id": 102, + "activation": "SiLU", + "layer_sizes": "(32, 32, 32)", + "learning_rate": 0.001, + "top1_acc": 0.4626449952402778, + "top3_acc": 0.6969996121707859, + "top5_acc": 0.8034058456439728 + }, + { + "config_id": 103, + "activation": "SiLU", + "layer_sizes": "(32, 32, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.4536191517117371, + "top3_acc": 0.683284560871558, + "top5_acc": 0.7940979445051651 + }, + { + "config_id": 104, + "activation": "SiLU", + "layer_sizes": "(32, 32, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.37883862778972605, + "top3_acc": 0.6188696541268555, + "top5_acc": 0.7467827803828933 + }, + { + "config_id": 105, + "activation": "SiLU", + "layer_sizes": "(32, 32, 64)", + "learning_rate": 0.01, + "top1_acc": 0.44374713535239574, + "top3_acc": 0.6843070197087755, + "top5_acc": 0.7965306913937171 + }, + { + "config_id": 106, + "activation": "SiLU", + "layer_sizes": "(32, 32, 64)", + "learning_rate": 0.005, + "top1_acc": 0.4593308183196418, + "top3_acc": 0.696823326164369, + "top5_acc": 0.804498818883757 + }, + { + "config_id": 107, + "activation": "SiLU", + "layer_sizes": "(32, 32, 64)", + "learning_rate": 0.001, + "top1_acc": 0.4733279272291365, + "top3_acc": 0.7040510524274584, + "top5_acc": 0.8113387159327292 + }, + { + "config_id": 108, + "activation": "SiLU", + "layer_sizes": "(32, 32, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.4594013327222085, + "top3_acc": 0.6977400133977365, + "top5_acc": 0.8028769876247224 + }, + { + "config_id": 109, + "activation": "SiLU", + "layer_sizes": "(32, 32, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.40045129217642705, + "top3_acc": 0.6455593554983605, + "top5_acc": 0.7646934386348412 + }, + { + "config_id": 110, + "activation": "SiLU", + "layer_sizes": "(32, 32, 128)", + "learning_rate": 0.01, + "top1_acc": 0.4335225469802207, + "top3_acc": 0.6917462891795649, + "top5_acc": 0.7996333251066531 + }, + { + "config_id": 111, + "activation": "SiLU", + "layer_sizes": "(32, 32, 128)", + "learning_rate": 0.005, + "top1_acc": 0.4748087296830378, + "top3_acc": 0.7111730070866975, + "top5_acc": 0.8139124916264147 + }, + { + "config_id": 112, + "activation": "SiLU", + "layer_sizes": "(32, 32, 128)", + "learning_rate": 0.001, + "top1_acc": 0.48443394563339565, + "top3_acc": 0.7170962169023023, + "top5_acc": 0.8153580368790325 + }, + { + "config_id": 113, + "activation": "SiLU", + "layer_sizes": "(32, 32, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.47745301977928994, + "top3_acc": 0.7102915770546134, + "top5_acc": 0.8155695800867327 + }, + { + "config_id": 114, + "activation": "SiLU", + "layer_sizes": "(32, 32, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.3992525473327927, + "top3_acc": 0.6468286147445615, + "top5_acc": 0.7683954447695942 + }, + { + "config_id": 115, + "activation": "SiLU", + "layer_sizes": "(32, 32, 256)", + "learning_rate": 0.01, + "top1_acc": 0.4504812607975179, + "top3_acc": 0.693121320029616, + "top5_acc": 0.8012198991644043 + }, + { + "config_id": 116, + "activation": "SiLU", + "layer_sizes": "(32, 32, 256)", + "learning_rate": 0.005, + "top1_acc": 0.47921587984345804, + "top3_acc": 0.7130416387547156, + "top5_acc": 0.8179670697740014 + }, + { + "config_id": 117, + "activation": "SiLU", + "layer_sizes": "(32, 32, 256)", + "learning_rate": 0.001, + "top1_acc": 0.500440715016042, + "top3_acc": 0.7284490357155449, + "top5_acc": 0.8262172548743081 + }, + { + "config_id": 118, + "activation": "SiLU", + "layer_sizes": "(32, 32, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.48372880160772835, + "top3_acc": 0.7213623382575891, + "top5_acc": 0.8208229030779537 + }, + { + "config_id": 119, + "activation": "SiLU", + "layer_sizes": "(32, 32, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.39988717695589326, + "top3_acc": 0.6555018862602686, + "top5_acc": 0.776751401473751 + }, + { + "config_id": 120, + "activation": "SiLU", + "layer_sizes": "(32, 64, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4272467651517822, + "top3_acc": 0.6797588407432218, + "top5_acc": 0.7913831400063462 + }, + { + "config_id": 121, + "activation": "SiLU", + "layer_sizes": "(32, 64, 32)", + "learning_rate": 0.005, + "top1_acc": 0.463632196876212, + "top3_acc": 0.7026760215774072, + "top5_acc": 0.8055212777209745 + }, + { + "config_id": 122, + "activation": "SiLU", + "layer_sizes": "(32, 64, 32)", + "learning_rate": 0.001, + "top1_acc": 0.47294009801501957, + "top3_acc": 0.7066953425237105, + "top5_acc": 0.8140535204315481 + }, + { + "config_id": 123, + "activation": "SiLU", + "layer_sizes": "(32, 64, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.4670168881994147, + "top3_acc": 0.6978105278003032, + "top5_acc": 0.8054507633184078 + }, + { + "config_id": 124, + "activation": "SiLU", + "layer_sizes": "(32, 64, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.3869830412861827, + "top3_acc": 0.6314564749850157, + "top5_acc": 0.7605683460846878 + }, + { + "config_id": 125, + "activation": "SiLU", + "layer_sizes": "(32, 64, 64)", + "learning_rate": 0.01, + "top1_acc": 0.450587032401368, + "top3_acc": 0.6938264640552833, + "top5_acc": 0.8005852695413038 + }, + { + "config_id": 126, + "activation": "SiLU", + "layer_sizes": "(32, 64, 64)", + "learning_rate": 0.005, + "top1_acc": 0.47537284490357157, + "top3_acc": 0.7103268342558968, + "top5_acc": 0.8159926665021331 + }, + { + "config_id": 127, + "activation": "SiLU", + "layer_sizes": "(32, 64, 64)", + "learning_rate": 0.001, + "top1_acc": 0.4876070937488982, + "top3_acc": 0.7165673588830519, + "top5_acc": 0.8170151253393506 + }, + { + "config_id": 128, + "activation": "SiLU", + "layer_sizes": "(32, 64, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.48076719669992596, + "top3_acc": 0.7110319782815641, + "top5_acc": 0.8144413496456652 + }, + { + "config_id": 129, + "activation": "SiLU", + "layer_sizes": "(32, 64, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.4130381130345873, + "top3_acc": 0.656806402707753, + "top5_acc": 0.7741423685787823 + }, + { + "config_id": 130, + "activation": "SiLU", + "layer_sizes": "(32, 64, 128)", + "learning_rate": 0.01, + "top1_acc": 0.45739167224905686, + "top3_acc": 0.69798681380672, + "top5_acc": 0.804886648097874 + }, + { + "config_id": 131, + "activation": "SiLU", + "layer_sizes": "(32, 64, 128)", + "learning_rate": 0.005, + "top1_acc": 0.4837993160102951, + "top3_acc": 0.7162147868702182, + "top5_acc": 0.8165567817226669 + }, + { + "config_id": 132, + "activation": "SiLU", + "layer_sizes": "(32, 64, 128)", + "learning_rate": 0.001, + "top1_acc": 0.500828544230159, + "top3_acc": 0.7261925748334097, + "top5_acc": 0.8267108556922751 + }, + { + "config_id": 133, + "activation": "SiLU", + "layer_sizes": "(32, 64, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.4919084723054684, + "top3_acc": 0.717554560518986, + "top5_acc": 0.8200825018510031 + }, + { + "config_id": 134, + "activation": "SiLU", + "layer_sizes": "(32, 64, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4123329690089201, + "top3_acc": 0.6607552092514896, + "top5_acc": 0.7791488911610196 + }, + { + "config_id": 135, + "activation": "SiLU", + "layer_sizes": "(32, 64, 256)", + "learning_rate": 0.01, + "top1_acc": 0.46465465571342945, + "top3_acc": 0.7045446532454254, + "top5_acc": 0.8110566583224623 + }, + { + "config_id": 136, + "activation": "SiLU", + "layer_sizes": "(32, 64, 256)", + "learning_rate": 0.005, + "top1_acc": 0.4942001903888869, + "top3_acc": 0.7248880583859253, + "top5_acc": 0.8214575327010541 + }, + { + "config_id": 137, + "activation": "SiLU", + "layer_sizes": "(32, 64, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5093607869407326, + "top3_acc": 0.7325036138631316, + "top5_acc": 0.8291436025808271 + }, + { + "config_id": 138, + "activation": "SiLU", + "layer_sizes": "(32, 64, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.503367062722561, + "top3_acc": 0.7298945809681627, + "top5_acc": 0.825230053238374 + }, + { + "config_id": 139, + "activation": "SiLU", + "layer_sizes": "(32, 64, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.4162112611500899, + "top3_acc": 0.6616366392835736, + "top5_acc": 0.7830271833021895 + }, + { + "config_id": 140, + "activation": "SiLU", + "layer_sizes": "(32, 128, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4511511476219018, + "top3_acc": 0.6886789126679124, + "top5_acc": 0.8006910411451539 + }, + { + "config_id": 141, + "activation": "SiLU", + "layer_sizes": "(32, 128, 32)", + "learning_rate": 0.005, + "top1_acc": 0.4777703345908402, + "top3_acc": 0.7087755173994288, + "top5_acc": 0.8136304340161478 + }, + { + "config_id": 142, + "activation": "SiLU", + "layer_sizes": "(32, 128, 32)", + "learning_rate": 0.001, + "top1_acc": 0.49063921305926733, + "top3_acc": 0.717166731304869, + "top5_acc": 0.8166625533265169 + }, + { + "config_id": 143, + "activation": "SiLU", + "layer_sizes": "(32, 128, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.48524486126291294, + "top3_acc": 0.7136762683778162, + "top5_acc": 0.8145471212495152 + }, + { + "config_id": 144, + "activation": "SiLU", + "layer_sizes": "(32, 128, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.39727814406092443, + "top3_acc": 0.6453478122906604, + "top5_acc": 0.7696294468145118 + }, + { + "config_id": 145, + "activation": "SiLU", + "layer_sizes": "(32, 128, 64)", + "learning_rate": 0.01, + "top1_acc": 0.43348728977893736, + "top3_acc": 0.6825089024433241, + "top5_acc": 0.7951909177449494 + }, + { + "config_id": 146, + "activation": "SiLU", + "layer_sizes": "(32, 128, 64)", + "learning_rate": 0.005, + "top1_acc": 0.48439868843211226, + "top3_acc": 0.721150795049889, + "top5_acc": 0.822409477135705 + }, + { + "config_id": 147, + "activation": "SiLU", + "layer_sizes": "(32, 128, 64)", + "learning_rate": 0.001, + "top1_acc": 0.49903042696470756, + "top3_acc": 0.72650988964496, + "top5_acc": 0.8243486232062899 + }, + { + "config_id": 148, + "activation": "SiLU", + "layer_sizes": "(32, 128, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.49296618834396927, + "top3_acc": 0.7192821633818708, + "top5_acc": 0.8168035821316504 + }, + { + "config_id": 149, + "activation": "SiLU", + "layer_sizes": "(32, 128, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.41222719740506997, + "top3_acc": 0.65719423192187, + "top5_acc": 0.7737545393646652 + }, + { + "config_id": 150, + "activation": "SiLU", + "layer_sizes": "(32, 128, 128)", + "learning_rate": 0.01, + "top1_acc": 0.4382822691534746, + "top3_acc": 0.6832140464689913, + "top5_acc": 0.7968832634065508 + }, + { + "config_id": 151, + "activation": "SiLU", + "layer_sizes": "(32, 128, 128)", + "learning_rate": 0.005, + "top1_acc": 0.4928251595388358, + "top3_acc": 0.7258400028205761, + "top5_acc": 0.8250185100306737 + }, + { + "config_id": 152, + "activation": "SiLU", + "layer_sizes": "(32, 128, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5083030709022318, + "top3_acc": 0.731868984240031, + "top5_acc": 0.8278743433346261 + }, + { + "config_id": 153, + "activation": "SiLU", + "layer_sizes": "(32, 128, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.49952402778267463, + "top3_acc": 0.7280964637027113, + "top5_acc": 0.8259351972640412 + }, + { + "config_id": 154, + "activation": "SiLU", + "layer_sizes": "(32, 128, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.42396784543242955, + "top3_acc": 0.6675245918978951, + "top5_acc": 0.7857772450022917 + }, + { + "config_id": 155, + "activation": "SiLU", + "layer_sizes": "(32, 128, 256)", + "learning_rate": 0.01, + "top1_acc": 0.4606000775658428, + "top3_acc": 0.6947078940873673, + "top5_acc": 0.8058738497338082 + }, + { + "config_id": 156, + "activation": "SiLU", + "layer_sizes": "(32, 128, 256)", + "learning_rate": 0.005, + "top1_acc": 0.5005464866198921, + "top3_acc": 0.7286253217219617, + "top5_acc": 0.8273454853153757 + }, + { + "config_id": 157, + "activation": "SiLU", + "layer_sizes": "(32, 128, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5141205091139865, + "top3_acc": 0.7366639636145683, + "top5_acc": 0.8303776046257448 + }, + { + "config_id": 158, + "activation": "SiLU", + "layer_sizes": "(32, 128, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5091492437330325, + "top3_acc": 0.7368049924197018, + "top5_acc": 0.8316116066706625 + }, + { + "config_id": 159, + "activation": "SiLU", + "layer_sizes": "(32, 128, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.44254839050876144, + "top3_acc": 0.6837076472869583, + "top5_acc": 0.8009025843528541 + }, + { + "config_id": 160, + "activation": "SiLU", + "layer_sizes": "(32, 256, 32)", + "learning_rate": 0.01, + "top1_acc": 0.46102316398124316, + "top3_acc": 0.6940380072629835, + "top5_acc": 0.8019603003913549 + }, + { + "config_id": 161, + "activation": "SiLU", + "layer_sizes": "(32, 256, 32)", + "learning_rate": 0.005, + "top1_acc": 0.48450446003596237, + "top3_acc": 0.7170257024997355, + "top5_acc": 0.8180023269752847 + }, + { + "config_id": 162, + "activation": "SiLU", + "layer_sizes": "(32, 256, 32)", + "learning_rate": 0.001, + "top1_acc": 0.5010048302365758, + "top3_acc": 0.725346402002609, + "top5_acc": 0.8244896520114233 + }, + { + "config_id": 163, + "activation": "SiLU", + "layer_sizes": "(32, 256, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.4966681944787223, + "top3_acc": 0.7231957127243239, + "top5_acc": 0.8215985615061876 + }, + { + "config_id": 164, + "activation": "SiLU", + "layer_sizes": "(32, 256, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.41642280435779006, + "top3_acc": 0.659133377992455, + "top5_acc": 0.7760462574480838 + }, + { + "config_id": 165, + "activation": "SiLU", + "layer_sizes": "(32, 256, 64)", + "learning_rate": 0.01, + "top1_acc": 0.4450516517998801, + "top3_acc": 0.6915347459718647, + "top5_acc": 0.8012551563656877 + }, + { + "config_id": 166, + "activation": "SiLU", + "layer_sizes": "(32, 256, 64)", + "learning_rate": 0.005, + "top1_acc": 0.4968444804851391, + "top3_acc": 0.7270740048654938, + "top5_acc": 0.8239255367908895 + }, + { + "config_id": 167, + "activation": "SiLU", + "layer_sizes": "(32, 256, 64)", + "learning_rate": 0.001, + "top1_acc": 0.5066459824419137, + "top3_acc": 0.7328914430772485, + "top5_acc": 0.8297782322039277 + }, + { + "config_id": 168, + "activation": "SiLU", + "layer_sizes": "(32, 256, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.5046010647674788, + "top3_acc": 0.7309170398053803, + "top5_acc": 0.8259351972640412 + }, + { + "config_id": 169, + "activation": "SiLU", + "layer_sizes": "(32, 256, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.4244261890491133, + "top3_acc": 0.670239396396714, + "top5_acc": 0.7864118746253922 + }, + { + "config_id": 170, + "activation": "SiLU", + "layer_sizes": "(32, 256, 128)", + "learning_rate": 0.01, + "top1_acc": 0.44921200155131685, + "top3_acc": 0.6866339949934774, + "top5_acc": 0.796812749003984 + }, + { + "config_id": 171, + "activation": "SiLU", + "layer_sizes": "(32, 256, 128)", + "learning_rate": 0.005, + "top1_acc": 0.4999823713993583, + "top3_acc": 0.7277086344885942, + "top5_acc": 0.8268871416986919 + }, + { + "config_id": 172, + "activation": "SiLU", + "layer_sizes": "(32, 256, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5165885132038219, + "top3_acc": 0.7379684800620526, + "top5_acc": 0.8318936642809294 + }, + { + "config_id": 173, + "activation": "SiLU", + "layer_sizes": "(32, 256, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.5073158692662977, + "top3_acc": 0.737510136445369, + "top5_acc": 0.8309417198462786 + }, + { + "config_id": 174, + "activation": "SiLU", + "layer_sizes": "(32, 256, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4433240489369954, + "top3_acc": 0.6842365053062088, + "top5_acc": 0.7976589218347847 + }, + { + "config_id": 175, + "activation": "SiLU", + "layer_sizes": "(32, 256, 256)", + "learning_rate": 0.01, + "top1_acc": 0.4210767549271939, + "top3_acc": 0.6534217113845503, + "top5_acc": 0.77139230687868 + }, + { + "config_id": 176, + "activation": "SiLU", + "layer_sizes": "(32, 256, 256)", + "learning_rate": 0.005, + "top1_acc": 0.4938476183760533, + "top3_acc": 0.7257694884180094, + "top5_acc": 0.8242781088037232 + }, + { + "config_id": 177, + "activation": "SiLU", + "layer_sizes": "(32, 256, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5116525050241512, + "top3_acc": 0.738391566477453, + "top5_acc": 0.8325988083065966 + }, + { + "config_id": 178, + "activation": "SiLU", + "layer_sizes": "(32, 256, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5142967951204034, + "top3_acc": 0.7371575644325353, + "top5_acc": 0.8334449811373973 + }, + { + "config_id": 179, + "activation": "SiLU", + "layer_sizes": "(32, 256, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.45985967633889224, + "top3_acc": 0.6966117829566689, + "top5_acc": 0.8046398476888904 + }, + { + "config_id": 180, + "activation": "SiLU", + "layer_sizes": "(64, 32, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4505517752000846, + "top3_acc": 0.6806050135740225, + "top5_acc": 0.7939569157000317 + }, + { + "config_id": 181, + "activation": "SiLU", + "layer_sizes": "(64, 32, 32)", + "learning_rate": 0.005, + "top1_acc": 0.47706519056517294, + "top3_acc": 0.7049324824595423, + "top5_acc": 0.8107040863096288 + }, + { + "config_id": 182, + "activation": "SiLU", + "layer_sizes": "(64, 32, 32)", + "learning_rate": 0.001, + "top1_acc": 0.4863730917039805, + "top3_acc": 0.7156859288509678, + "top5_acc": 0.816768324930367 + }, + { + "config_id": 183, + "activation": "SiLU", + "layer_sizes": "(64, 32, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.4796742234601417, + "top3_acc": 0.7058844268941932, + "top5_acc": 0.8076719669992596 + }, + { + "config_id": 184, + "activation": "SiLU", + "layer_sizes": "(64, 32, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.41071113774988544, + "top3_acc": 0.6486972464125798, + "top5_acc": 0.7658921834784754 + }, + { + "config_id": 185, + "activation": "SiLU", + "layer_sizes": "(64, 32, 64)", + "learning_rate": 0.01, + "top1_acc": 0.44734336988329865, + "top3_acc": 0.6906533159397807, + "top5_acc": 0.7976236646335014 + }, + { + "config_id": 186, + "activation": "SiLU", + "layer_sizes": "(64, 32, 64)", + "learning_rate": 0.005, + "top1_acc": 0.4768889045587561, + "top3_acc": 0.7096569474315129, + "top5_acc": 0.8118323167506963 + }, + { + "config_id": 187, + "activation": "SiLU", + "layer_sizes": "(64, 32, 64)", + "learning_rate": 0.001, + "top1_acc": 0.49592779325177166, + "top3_acc": 0.7222790254909566, + "top5_acc": 0.8233614215703557 + }, + { + "config_id": 188, + "activation": "SiLU", + "layer_sizes": "(64, 32, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.4863025773014138, + "top3_acc": 0.7144871840073335, + "top5_acc": 0.8160631809046998 + }, + { + "config_id": 189, + "activation": "SiLU", + "layer_sizes": "(64, 32, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.4205478969079435, + "top3_acc": 0.6631879561400416, + "top5_acc": 0.7805239220110708 + }, + { + "config_id": 190, + "activation": "SiLU", + "layer_sizes": "(64, 32, 128)", + "learning_rate": 0.01, + "top1_acc": 0.46042379155942603, + "top3_acc": 0.694390579275817, + "top5_acc": 0.8026301872157389 + }, + { + "config_id": 191, + "activation": "SiLU", + "layer_sizes": "(64, 32, 128)", + "learning_rate": 0.005, + "top1_acc": 0.48739555054119804, + "top3_acc": 0.7160032436625181, + "top5_acc": 0.8172266685470507 + }, + { + "config_id": 192, + "activation": "SiLU", + "layer_sizes": "(64, 32, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5004759722173254, + "top3_acc": 0.7243239431653915, + "top5_acc": 0.8260409688678912 + }, + { + "config_id": 193, + "activation": "SiLU", + "layer_sizes": "(64, 32, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.4924020731234355, + "top3_acc": 0.7180129041356698, + "top5_acc": 0.8200825018510031 + }, + { + "config_id": 194, + "activation": "SiLU", + "layer_sizes": "(64, 32, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.41550611712442265, + "top3_acc": 0.6594859500052885, + "top5_acc": 0.7770687162853013 + }, + { + "config_id": 195, + "activation": "SiLU", + "layer_sizes": "(64, 32, 256)", + "learning_rate": 0.01, + "top1_acc": 0.4575679582554737, + "top3_acc": 0.6941085216655501, + "top5_acc": 0.8045340760850404 + }, + { + "config_id": 196, + "activation": "SiLU", + "layer_sizes": "(64, 32, 256)", + "learning_rate": 0.005, + "top1_acc": 0.48711349293093115, + "top3_acc": 0.722913655114057, + "top5_acc": 0.8145471212495152 + }, + { + "config_id": 197, + "activation": "SiLU", + "layer_sizes": "(64, 32, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5011458590417093, + "top3_acc": 0.7298240665655961, + "top5_acc": 0.8278743433346261 + }, + { + "config_id": 198, + "activation": "SiLU", + "layer_sizes": "(64, 32, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.504424778761062, + "top3_acc": 0.727003490462927, + "top5_acc": 0.8235024503754892 + }, + { + "config_id": 199, + "activation": "SiLU", + "layer_sizes": "(64, 32, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.4315834009096358, + "top3_acc": 0.6727074004865494, + "top5_acc": 0.7858477594048584 + }, + { + "config_id": 200, + "activation": "SiLU", + "layer_sizes": "(64, 64, 32)", + "learning_rate": 0.01, + "top1_acc": 0.45132743362831856, + "top3_acc": 0.6887494270704791, + "top5_acc": 0.8004442407361704 + }, + { + "config_id": 201, + "activation": "SiLU", + "layer_sizes": "(64, 64, 32)", + "learning_rate": 0.005, + "top1_acc": 0.4817543983358601, + "top3_acc": 0.7145929556111836, + "top5_acc": 0.8170856397419173 + }, + { + "config_id": 202, + "activation": "SiLU", + "layer_sizes": "(64, 64, 32)", + "learning_rate": 0.001, + "top1_acc": 0.4972675669005394, + "top3_acc": 0.7241829143602581, + "top5_acc": 0.8202587878574199 + }, + { + "config_id": 203, + "activation": "SiLU", + "layer_sizes": "(64, 64, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.491873215104185, + "top3_acc": 0.7184712477523534, + "top5_acc": 0.818037584176568 + }, + { + "config_id": 204, + "activation": "SiLU", + "layer_sizes": "(64, 64, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.41702217677960723, + "top3_acc": 0.6541268554102175, + "top5_acc": 0.7744949405916158 + }, + { + "config_id": 205, + "activation": "SiLU", + "layer_sizes": "(64, 64, 64)", + "learning_rate": 0.01, + "top1_acc": 0.45915453231322495, + "top3_acc": 0.6934738920424497, + "top5_acc": 0.8010436131579876 + }, + { + "config_id": 206, + "activation": "SiLU", + "layer_sizes": "(64, 64, 64)", + "learning_rate": 0.005, + "top1_acc": 0.4843634312308289, + "top3_acc": 0.7180834185382364, + "top5_acc": 0.8217748475126044 + }, + { + "config_id": 207, + "activation": "SiLU", + "layer_sizes": "(64, 64, 64)", + "learning_rate": 0.001, + "top1_acc": 0.5017452314635265, + "top3_acc": 0.7291541797412121, + "top5_acc": 0.824842224024257 + }, + { + "config_id": 208, + "activation": "SiLU", + "layer_sizes": "(64, 64, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.4963861368684554, + "top3_acc": 0.7235482847371576, + "top5_acc": 0.8220569051228713 + }, + { + "config_id": 209, + "activation": "SiLU", + "layer_sizes": "(64, 64, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.41300285583330393, + "top3_acc": 0.6635757853541586, + "top5_acc": 0.782780382893206 + }, + { + "config_id": 210, + "activation": "SiLU", + "layer_sizes": "(64, 64, 128)", + "learning_rate": 0.01, + "top1_acc": 0.4662764869724641, + "top3_acc": 0.7014420195324895, + "top5_acc": 0.8083418538236434 + }, + { + "config_id": 211, + "activation": "SiLU", + "layer_sizes": "(64, 64, 128)", + "learning_rate": 0.005, + "top1_acc": 0.4914501286887847, + "top3_acc": 0.7205514226280718, + "top5_acc": 0.8191305574163523 + }, + { + "config_id": 212, + "activation": "SiLU", + "layer_sizes": "(64, 64, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5055882664034129, + "top3_acc": 0.7303881817861299, + "top5_acc": 0.8278743433346261 + }, + { + "config_id": 213, + "activation": "SiLU", + "layer_sizes": "(64, 64, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.5008638014314424, + "top3_acc": 0.7297535521630293, + "top5_acc": 0.8270986849063922 + }, + { + "config_id": 214, + "activation": "SiLU", + "layer_sizes": "(64, 64, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4275640799633325, + "top3_acc": 0.6687233367415295, + "top5_acc": 0.7856009589958749 + }, + { + "config_id": 215, + "activation": "SiLU", + "layer_sizes": "(64, 64, 256)", + "learning_rate": 0.01, + "top1_acc": 0.46793357543278213, + "top3_acc": 0.7057433980890597, + "top5_acc": 0.8125022035750802 + }, + { + "config_id": 216, + "activation": "SiLU", + "layer_sizes": "(64, 64, 256)", + "learning_rate": 0.005, + "top1_acc": 0.4952579064273878, + "top3_acc": 0.7315869266297641, + "top5_acc": 0.8274512569192257 + }, + { + "config_id": 217, + "activation": "SiLU", + "layer_sizes": "(64, 64, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5111236470049008, + "top3_acc": 0.7360998483940345, + "top5_acc": 0.8317173782745125 + }, + { + "config_id": 218, + "activation": "SiLU", + "layer_sizes": "(64, 64, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5112999330113176, + "top3_acc": 0.7359588195889011, + "top5_acc": 0.82854423015901 + }, + { + "config_id": 219, + "activation": "SiLU", + "layer_sizes": "(64, 64, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.4430419913267285, + "top3_acc": 0.6853647357472764, + "top5_acc": 0.7964249197898671 + }, + { + "config_id": 220, + "activation": "SiLU", + "layer_sizes": "(64, 128, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4605648203645595, + "top3_acc": 0.6968938405669358, + "top5_acc": 0.7989281810809858 + }, + { + "config_id": 221, + "activation": "SiLU", + "layer_sizes": "(64, 128, 32)", + "learning_rate": 0.005, + "top1_acc": 0.4940239043824701, + "top3_acc": 0.7178366181292529, + "top5_acc": 0.8183548989881183 + }, + { + "config_id": 222, + "activation": "SiLU", + "layer_sizes": "(64, 128, 32)", + "learning_rate": 0.001, + "top1_acc": 0.5065402108380637, + "top3_acc": 0.7294009801501957, + "top5_acc": 0.8251242816345239 + }, + { + "config_id": 223, + "activation": "SiLU", + "layer_sizes": "(64, 128, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.5030144907097275, + "top3_acc": 0.7259457744244262, + "top5_acc": 0.8243133660050065 + }, + { + "config_id": 224, + "activation": "SiLU", + "layer_sizes": "(64, 128, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.4190318372527589, + "top3_acc": 0.6660437894439939, + "top5_acc": 0.7796424919789867 + }, + { + "config_id": 225, + "activation": "SiLU", + "layer_sizes": "(64, 128, 64)", + "learning_rate": 0.01, + "top1_acc": 0.4542185241335543, + "top3_acc": 0.6960476677361351, + "top5_acc": 0.8018545287875048 + }, + { + "config_id": 226, + "activation": "SiLU", + "layer_sizes": "(64, 128, 64)", + "learning_rate": 0.005, + "top1_acc": 0.4966329372774389, + "top3_acc": 0.7233367415294574, + "top5_acc": 0.8213165038959207 + }, + { + "config_id": 227, + "activation": "SiLU", + "layer_sizes": "(64, 128, 64)", + "learning_rate": 0.001, + "top1_acc": 0.5093255297394493, + "top3_acc": 0.7331735006875154, + "top5_acc": 0.8283326869513098 + }, + { + "config_id": 228, + "activation": "SiLU", + "layer_sizes": "(64, 128, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.5061876388252301, + "top3_acc": 0.7269682332616437, + "top5_acc": 0.8273454853153757 + }, + { + "config_id": 229, + "activation": "SiLU", + "layer_sizes": "(64, 128, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.4406092444381765, + "top3_acc": 0.6811691287945563, + "top5_acc": 0.7943447449141487 + }, + { + "config_id": 230, + "activation": "SiLU", + "layer_sizes": "(64, 128, 128)", + "learning_rate": 0.01, + "top1_acc": 0.4586609314952579, + "top3_acc": 0.6978105278003032, + "top5_acc": 0.8070725945774424 + }, + { + "config_id": 231, + "activation": "SiLU", + "layer_sizes": "(64, 128, 128)", + "learning_rate": 0.005, + "top1_acc": 0.5013574022494094, + "top3_acc": 0.7260515460282763, + "top5_acc": 0.8267108556922751 + }, + { + "config_id": 232, + "activation": "SiLU", + "layer_sizes": "(64, 128, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5108063321933505, + "top3_acc": 0.7349011035504002, + "top5_acc": 0.830589147833445 + }, + { + "config_id": 233, + "activation": "SiLU", + "layer_sizes": "(64, 128, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.513098050276769, + "top3_acc": 0.7359588195889011, + "top5_acc": 0.8306596622360117 + }, + { + "config_id": 234, + "activation": "SiLU", + "layer_sizes": "(64, 128, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4482247999153827, + "top3_acc": 0.686986567006311, + "top5_acc": 0.7958960617706167 + }, + { + "config_id": 235, + "activation": "SiLU", + "layer_sizes": "(64, 128, 256)", + "learning_rate": 0.01, + "top1_acc": 0.4192786376617424, + "top3_acc": 0.6625180693156577, + "top5_acc": 0.7778091175122519 + }, + { + "config_id": 236, + "activation": "SiLU", + "layer_sizes": "(64, 128, 256)", + "learning_rate": 0.005, + "top1_acc": 0.49836054014032366, + "top3_acc": 0.727779148891161, + "top5_acc": 0.8263582836794415 + }, + { + "config_id": 237, + "activation": "SiLU", + "layer_sizes": "(64, 128, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5135563938934528, + "top3_acc": 0.7372985932376688, + "top5_acc": 0.8317173782745125 + }, + { + "config_id": 238, + "activation": "SiLU", + "layer_sizes": "(64, 128, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5144378239255368, + "top3_acc": 0.7377216796530691, + "top5_acc": 0.8315410922680958 + }, + { + "config_id": 239, + "activation": "SiLU", + "layer_sizes": "(64, 128, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.4579205302683073, + "top3_acc": 0.6936854352501498, + "top5_acc": 0.80400521806579 + }, + { + "config_id": 240, + "activation": "SiLU", + "layer_sizes": "(64, 256, 32)", + "learning_rate": 0.01, + "top1_acc": 0.46119944998766, + "top3_acc": 0.6966470401579523, + "top5_acc": 0.8022423580016218 + }, + { + "config_id": 241, + "activation": "SiLU", + "layer_sizes": "(64, 256, 32)", + "learning_rate": 0.005, + "top1_acc": 0.4959983076543384, + "top3_acc": 0.7219264534781229, + "top5_acc": 0.8184254133906851 + }, + { + "config_id": 242, + "activation": "SiLU", + "layer_sizes": "(64, 256, 32)", + "learning_rate": 0.001, + "top1_acc": 0.5125339350562352, + "top3_acc": 0.7320452702464478, + "top5_acc": 0.8299897754116278 + }, + { + "config_id": 243, + "activation": "SiLU", + "layer_sizes": "(64, 256, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.5084088425060819, + "top3_acc": 0.7334908154990657, + "top5_acc": 0.8288615449705602 + }, + { + "config_id": 244, + "activation": "SiLU", + "layer_sizes": "(64, 256, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.4365194090893065, + "top3_acc": 0.678701124704721, + "top5_acc": 0.7934280576807813 + }, + { + "config_id": 245, + "activation": "SiLU", + "layer_sizes": "(64, 256, 64)", + "learning_rate": 0.01, + "top1_acc": 0.42583647710044775, + "top3_acc": 0.6700278531890138, + "top5_acc": 0.7793604343687198 + }, + { + "config_id": 246, + "activation": "SiLU", + "layer_sizes": "(64, 256, 64)", + "learning_rate": 0.005, + "top1_acc": 0.5032260339174276, + "top3_acc": 0.7263688608398265, + "top5_acc": 0.8218101047138878 + }, + { + "config_id": 247, + "activation": "SiLU", + "layer_sizes": "(64, 256, 64)", + "learning_rate": 0.001, + "top1_acc": 0.5141557663152699, + "top3_acc": 0.7364171632055847, + "top5_acc": 0.8309064626449952 + }, + { + "config_id": 248, + "activation": "SiLU", + "layer_sizes": "(64, 256, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.5107358177907838, + "top3_acc": 0.737510136445369, + "top5_acc": 0.8309417198462786 + }, + { + "config_id": 249, + "activation": "SiLU", + "layer_sizes": "(64, 256, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.44716708387688187, + "top3_acc": 0.6824736452420407, + "top5_acc": 0.7945562881218489 + }, + { + "config_id": 250, + "activation": "SiLU", + "layer_sizes": "(64, 256, 128)", + "learning_rate": 0.01, + "top1_acc": 0.3047279906920989, + "top3_acc": 0.5537848605577689, + "top5_acc": 0.683672390085675 + }, + { + "config_id": 251, + "activation": "SiLU", + "layer_sizes": "(64, 256, 128)", + "learning_rate": 0.005, + "top1_acc": 0.5008990586327258, + "top3_acc": 0.7268624616577936, + "top5_acc": 0.8224447343369883 + }, + { + "config_id": 252, + "activation": "SiLU", + "layer_sizes": "(64, 256, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5182456016641399, + "top3_acc": 0.7391319677044036, + "top5_acc": 0.8334449811373973 + }, + { + "config_id": 253, + "activation": "SiLU", + "layer_sizes": "(64, 256, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.5173289144307724, + "top3_acc": 0.736734478017135, + "top5_acc": 0.8292493741846773 + }, + { + "config_id": 254, + "activation": "SiLU", + "layer_sizes": "(64, 256, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4642315692980291, + "top3_acc": 0.6969643549695025, + "top5_acc": 0.8046751048901738 + }, + { + "config_id": 255, + "activation": "SiLU", + "layer_sizes": "(64, 256, 256)", + "learning_rate": 0.01, + "top1_acc": 0.39830060289814195, + "top3_acc": 0.6238761767090928, + "top5_acc": 0.7499206712971125 + }, + { + "config_id": 256, + "activation": "SiLU", + "layer_sizes": "(64, 256, 256)", + "learning_rate": 0.005, + "top1_acc": 0.5016394598596763, + "top3_acc": 0.7319394986425978, + "top5_acc": 0.8270634277051088 + }, + { + "config_id": 257, + "activation": "SiLU", + "layer_sizes": "(64, 256, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5172584000282058, + "top3_acc": 0.7403659697493213, + "top5_acc": 0.83273983711173 + }, + { + "config_id": 258, + "activation": "SiLU", + "layer_sizes": "(64, 256, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5160596551845714, + "top3_acc": 0.7413531713852555, + "top5_acc": 0.8336917815463808 + }, + { + "config_id": 259, + "activation": "SiLU", + "layer_sizes": "(64, 256, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.4735747276381201, + "top3_acc": 0.7092691182173959, + "top5_acc": 0.8137362056199979 + }, + { + "config_id": 260, + "activation": "SiLU", + "layer_sizes": "(128, 32, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4617635652081938, + "top3_acc": 0.6927687480167825, + "top5_acc": 0.7993865246976695 + }, + { + "config_id": 261, + "activation": "SiLU", + "layer_sizes": "(128, 32, 32)", + "learning_rate": 0.005, + "top1_acc": 0.4873250361386313, + "top3_acc": 0.7169904452984522, + "top5_acc": 0.81638049571625 + }, + { + "config_id": 262, + "activation": "SiLU", + "layer_sizes": "(128, 32, 32)", + "learning_rate": 0.001, + "top1_acc": 0.5039311779430948, + "top3_acc": 0.7268624616577936, + "top5_acc": 0.8224447343369883 + }, + { + "config_id": 263, + "activation": "SiLU", + "layer_sizes": "(128, 32, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.5047068363713288, + "top3_acc": 0.7235130275358742, + "top5_acc": 0.8215633043049043 + }, + { + "config_id": 264, + "activation": "SiLU", + "layer_sizes": "(128, 32, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.43831752635475796, + "top3_acc": 0.6732715157070832, + "top5_acc": 0.7845785001586574 + }, + { + "config_id": 265, + "activation": "SiLU", + "layer_sizes": "(128, 32, 64)", + "learning_rate": 0.01, + "top1_acc": 0.46528928533652997, + "top3_acc": 0.6926982336142157, + "top5_acc": 0.7976236646335014 + }, + { + "config_id": 266, + "activation": "SiLU", + "layer_sizes": "(128, 32, 64)", + "learning_rate": 0.005, + "top1_acc": 0.495081620420971, + "top3_acc": 0.7215738814652893, + "top5_acc": 0.8221274195254381 + }, + { + "config_id": 267, + "activation": "SiLU", + "layer_sizes": "(128, 32, 64)", + "learning_rate": 0.001, + "top1_acc": 0.5069985544547474, + "top3_acc": 0.7286605789232451, + "top5_acc": 0.8242428516024398 + }, + { + "config_id": 268, + "activation": "SiLU", + "layer_sizes": "(128, 32, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.5043190071572119, + "top3_acc": 0.7283785213129782, + "top5_acc": 0.8257589112576244 + }, + { + "config_id": 269, + "activation": "SiLU", + "layer_sizes": "(128, 32, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.4350386066354053, + "top3_acc": 0.6710503120262313, + "top5_acc": 0.7877869054754434 + }, + { + "config_id": 270, + "activation": "SiLU", + "layer_sizes": "(128, 32, 128)", + "learning_rate": 0.01, + "top1_acc": 0.45982441913760885, + "top3_acc": 0.6957303529245848, + "top5_acc": 0.8014666995733879 + }, + { + "config_id": 271, + "activation": "SiLU", + "layer_sizes": "(128, 32, 128)", + "learning_rate": 0.005, + "top1_acc": 0.49511687762225437, + "top3_acc": 0.7172372457074357, + "top5_acc": 0.8209639318830871 + }, + { + "config_id": 272, + "activation": "SiLU", + "layer_sizes": "(128, 32, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5104185029792335, + "top3_acc": 0.7332087578887988, + "top5_acc": 0.8281211437436097 + }, + { + "config_id": 273, + "activation": "SiLU", + "layer_sizes": "(128, 32, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.5103127313753835, + "top3_acc": 0.7300003525720128, + "top5_acc": 0.8256178824524909 + }, + { + "config_id": 274, + "activation": "SiLU", + "layer_sizes": "(128, 32, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4475549130909988, + "top3_acc": 0.6822973592356238, + "top5_acc": 0.7932165144730812 + }, + { + "config_id": 275, + "activation": "SiLU", + "layer_sizes": "(128, 32, 256)", + "learning_rate": 0.01, + "top1_acc": 0.45647498501568945, + "top3_acc": 0.6951662377040511, + "top5_acc": 0.7959665761731833 + }, + { + "config_id": 276, + "activation": "SiLU", + "layer_sizes": "(128, 32, 256)", + "learning_rate": 0.005, + "top1_acc": 0.4918379579029017, + "top3_acc": 0.7263336036385432, + "top5_acc": 0.8186369565983852 + }, + { + "config_id": 277, + "activation": "SiLU", + "layer_sizes": "(128, 32, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5103479885766667, + "top3_acc": 0.7357472763812009, + "top5_acc": 0.8286147445615767 + }, + { + "config_id": 278, + "activation": "SiLU", + "layer_sizes": "(128, 32, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5098896449599831, + "top3_acc": 0.7356767619786342, + "top5_acc": 0.8310122342488453 + }, + { + "config_id": 279, + "activation": "SiLU", + "layer_sizes": "(128, 32, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.4508690900116349, + "top3_acc": 0.6880442830448119, + "top5_acc": 0.7952261749462328 + }, + { + "config_id": 280, + "activation": "SiLU", + "layer_sizes": "(128, 64, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4752318160984381, + "top3_acc": 0.6956598385220181, + "top5_acc": 0.8016429855798046 + }, + { + "config_id": 281, + "activation": "SiLU", + "layer_sizes": "(128, 64, 32)", + "learning_rate": 0.005, + "top1_acc": 0.4971970524979727, + "top3_acc": 0.7189295913690371, + "top5_acc": 0.8184959277932518 + }, + { + "config_id": 282, + "activation": "SiLU", + "layer_sizes": "(128, 64, 32)", + "learning_rate": 0.001, + "top1_acc": 0.5119698198357014, + "top3_acc": 0.73070549659768, + "top5_acc": 0.8285794873602933 + }, + { + "config_id": 283, + "activation": "SiLU", + "layer_sizes": "(128, 64, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.5085146141099319, + "top3_acc": 0.7287310933258118, + "top5_acc": 0.825723654056341 + }, + { + "config_id": 284, + "activation": "SiLU", + "layer_sizes": "(128, 64, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.4414201600676938, + "top3_acc": 0.6757747769982019, + "top5_acc": 0.7874695906638931 + }, + { + "config_id": 285, + "activation": "SiLU", + "layer_sizes": "(128, 64, 64)", + "learning_rate": 0.01, + "top1_acc": 0.4584493882875577, + "top3_acc": 0.6878679970383951, + "top5_acc": 0.7985756090681522 + }, + { + "config_id": 286, + "activation": "SiLU", + "layer_sizes": "(128, 64, 64)", + "learning_rate": 0.005, + "top1_acc": 0.4911328138772344, + "top3_acc": 0.7247117723795086, + "top5_acc": 0.8211049606882206 + }, + { + "config_id": 287, + "activation": "SiLU", + "layer_sizes": "(128, 64, 64)", + "learning_rate": 0.001, + "top1_acc": 0.5103832457779501, + "top3_acc": 0.734301731128583, + "top5_acc": 0.8295666889962274 + }, + { + "config_id": 288, + "activation": "SiLU", + "layer_sizes": "(128, 64, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.511440961816451, + "top3_acc": 0.7334908154990657, + "top5_acc": 0.8274512569192257 + }, + { + "config_id": 289, + "activation": "SiLU", + "layer_sizes": "(128, 64, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.45012868878468426, + "top3_acc": 0.6877974826358284, + "top5_acc": 0.7945210309205655 + }, + { + "config_id": 290, + "activation": "SiLU", + "layer_sizes": "(128, 64, 128)", + "learning_rate": 0.01, + "top1_acc": 0.4592250467157917, + "top3_acc": 0.6959771533335684, + "top5_acc": 0.8012198991644043 + }, + { + "config_id": 291, + "activation": "SiLU", + "layer_sizes": "(128, 64, 128)", + "learning_rate": 0.005, + "top1_acc": 0.49494059161583753, + "top3_acc": 0.727673377287311, + "top5_acc": 0.8237845079857561 + }, + { + "config_id": 292, + "activation": "SiLU", + "layer_sizes": "(128, 64, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5136621654973028, + "top3_acc": 0.7365229348094349, + "top5_acc": 0.8297077178013609 + }, + { + "config_id": 293, + "activation": "SiLU", + "layer_sizes": "(128, 64, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.5102422169728167, + "top3_acc": 0.733913901914466, + "top5_acc": 0.8286147445615767 + }, + { + "config_id": 294, + "activation": "SiLU", + "layer_sizes": "(128, 64, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4578500158657406, + "top3_acc": 0.6920283467898318, + "top5_acc": 0.7993512674963862 + }, + { + "config_id": 295, + "activation": "SiLU", + "layer_sizes": "(128, 64, 256)", + "learning_rate": 0.01, + "top1_acc": 0.45224412086168597, + "top3_acc": 0.6892430278884463, + "top5_acc": 0.7960018333744667 + }, + { + "config_id": 296, + "activation": "SiLU", + "layer_sizes": "(128, 64, 256)", + "learning_rate": 0.005, + "top1_acc": 0.4980432253287734, + "top3_acc": 0.7263688608398265, + "top5_acc": 0.8253710820435074 + }, + { + "config_id": 297, + "activation": "SiLU", + "layer_sizes": "(128, 64, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5166237704051052, + "top3_acc": 0.7396255685223707, + "top5_acc": 0.8332334379296972 + }, + { + "config_id": 298, + "activation": "SiLU", + "layer_sizes": "(128, 64, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5150019391460706, + "top3_acc": 0.7386031096851532, + "top5_acc": 0.8284032013538766 + }, + { + "config_id": 299, + "activation": "SiLU", + "layer_sizes": "(128, 64, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.46440785530444595, + "top3_acc": 0.69788104220287, + "top5_acc": 0.8056270493248245 + }, + { + "config_id": 300, + "activation": "SiLU", + "layer_sizes": "(128, 128, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4646193985121461, + "top3_acc": 0.6936149208475831, + "top5_acc": 0.8002679547297535 + }, + { + "config_id": 301, + "activation": "SiLU", + "layer_sizes": "(128, 128, 32)", + "learning_rate": 0.005, + "top1_acc": 0.5003702006134753, + "top3_acc": 0.7221732538871064, + "top5_acc": 0.8208229030779537 + }, + { + "config_id": 302, + "activation": "SiLU", + "layer_sizes": "(128, 128, 32)", + "learning_rate": 0.001, + "top1_acc": 0.5145788527306703, + "top3_acc": 0.7358530479850509, + "top5_acc": 0.8297782322039277 + }, + { + "config_id": 303, + "activation": "SiLU", + "layer_sizes": "(128, 128, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.5110178754010507, + "top3_acc": 0.735465218770934, + "top5_acc": 0.8311532630539787 + }, + { + "config_id": 304, + "activation": "SiLU", + "layer_sizes": "(128, 128, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.45220886366040264, + "top3_acc": 0.6863519373832105, + "top5_acc": 0.7949441173359658 + }, + { + "config_id": 305, + "activation": "SiLU", + "layer_sizes": "(128, 128, 64)", + "learning_rate": 0.01, + "top1_acc": 0.4641610548954624, + "top3_acc": 0.6931565772308994, + "top5_acc": 0.8002679547297535 + }, + { + "config_id": 306, + "activation": "SiLU", + "layer_sizes": "(128, 128, 64)", + "learning_rate": 0.005, + "top1_acc": 0.5007932870288756, + "top3_acc": 0.7268272044565103, + "top5_acc": 0.8242428516024398 + }, + { + "config_id": 307, + "activation": "SiLU", + "layer_sizes": "(128, 128, 64)", + "learning_rate": 0.001, + "top1_acc": 0.51436730952297, + "top3_acc": 0.7377216796530691, + "top5_acc": 0.8327750943130134 + }, + { + "config_id": 308, + "activation": "SiLU", + "layer_sizes": "(128, 128, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.5161301695871382, + "top3_acc": 0.7376159080492191, + "top5_acc": 0.8293198885872439 + }, + { + "config_id": 309, + "activation": "SiLU", + "layer_sizes": "(128, 128, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.4615167647992102, + "top3_acc": 0.6942495504706836, + "top5_acc": 0.8030180164298558 + }, + { + "config_id": 310, + "activation": "SiLU", + "layer_sizes": "(128, 128, 128)", + "learning_rate": 0.01, + "top1_acc": 0.33127666325847055, + "top3_acc": 0.5753975249444699, + "top5_acc": 0.7053555688749427 + }, + { + "config_id": 311, + "activation": "SiLU", + "layer_sizes": "(128, 128, 128)", + "learning_rate": 0.005, + "top1_acc": 0.5003702006134753, + "top3_acc": 0.7306702393963967, + "top5_acc": 0.8256883968550577 + }, + { + "config_id": 312, + "activation": "SiLU", + "layer_sizes": "(128, 128, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5139089659062863, + "top3_acc": 0.7371223072312519, + "top5_acc": 0.8334802383386807 + }, + { + "config_id": 313, + "activation": "SiLU", + "layer_sizes": "(128, 128, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.5141910235165532, + "top3_acc": 0.7405422557557381, + "top5_acc": 0.8349610407925819 + }, + { + "config_id": 314, + "activation": "SiLU", + "layer_sizes": "(128, 128, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4614462503966435, + "top3_acc": 0.7001022458837217, + "top5_acc": 0.8070725945774424 + }, + { + "config_id": 315, + "activation": "SiLU", + "layer_sizes": "(128, 128, 256)", + "learning_rate": 0.01, + "top1_acc": 0.3772167965306914, + "top3_acc": 0.6038853435814265, + "top5_acc": 0.7328561858759651 + }, + { + "config_id": 316, + "activation": "SiLU", + "layer_sizes": "(128, 128, 256)", + "learning_rate": 0.005, + "top1_acc": 0.5023798610866269, + "top3_acc": 0.7284137785142616, + "top5_acc": 0.826111483270458 + }, + { + "config_id": 317, + "activation": "SiLU", + "layer_sizes": "(128, 128, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5170468568205056, + "top3_acc": 0.741599971794239, + "top5_acc": 0.8336917815463808 + }, + { + "config_id": 318, + "activation": "SiLU", + "layer_sizes": "(128, 128, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5190565172936572, + "top3_acc": 0.7393082537108204, + "top5_acc": 0.8320346930860628 + }, + { + "config_id": 319, + "activation": "SiLU", + "layer_sizes": "(128, 128, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.47135352395726826, + "top3_acc": 0.706942142932694, + "top5_acc": 0.8129605471917639 + }, + { + "config_id": 320, + "activation": "SiLU", + "layer_sizes": "(128, 256, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4657123717519303, + "top3_acc": 0.6962944681451186, + "top5_acc": 0.8004794979374538 + }, + { + "config_id": 321, + "activation": "SiLU", + "layer_sizes": "(128, 256, 32)", + "learning_rate": 0.005, + "top1_acc": 0.5046715791700455, + "top3_acc": 0.7267919472552269, + "top5_acc": 0.8230088495575221 + }, + { + "config_id": 322, + "activation": "SiLU", + "layer_sizes": "(128, 256, 32)", + "learning_rate": 0.001, + "top1_acc": 0.5173994288333392, + "top3_acc": 0.739272996509537, + "top5_acc": 0.8319994358847794 + }, + { + "config_id": 323, + "activation": "SiLU", + "layer_sizes": "(128, 256, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.5163417127948383, + "top3_acc": 0.7385678524838698, + "top5_acc": 0.8301660614180446 + }, + { + "config_id": 324, + "activation": "SiLU", + "layer_sizes": "(128, 256, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.46923809188026655, + "top3_acc": 0.6970348693720693, + "top5_acc": 0.8039347036632232 + }, + { + "config_id": 325, + "activation": "SiLU", + "layer_sizes": "(128, 256, 64)", + "learning_rate": 0.01, + "top1_acc": 0.3757359940767902, + "top3_acc": 0.6117124422663329, + "top5_acc": 0.7306349821951134 + }, + { + "config_id": 326, + "activation": "SiLU", + "layer_sizes": "(128, 256, 64)", + "learning_rate": 0.005, + "top1_acc": 0.5018510030673765, + "top3_acc": 0.7293304657476289, + "top5_acc": 0.8244896520114233 + }, + { + "config_id": 327, + "activation": "SiLU", + "layer_sizes": "(128, 256, 64)", + "learning_rate": 0.001, + "top1_acc": 0.5192680605013574, + "top3_acc": 0.7404012269506046, + "top5_acc": 0.8340796107604979 + }, + { + "config_id": 328, + "activation": "SiLU", + "layer_sizes": "(128, 256, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.5182808588654233, + "top3_acc": 0.7394492825159539, + "top5_acc": 0.8324577795014632 + }, + { + "config_id": 329, + "activation": "SiLU", + "layer_sizes": "(128, 256, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.4733279272291365, + "top3_acc": 0.7030638507915241, + "top5_acc": 0.8083771110249268 + }, + { + "config_id": 330, + "activation": "SiLU", + "layer_sizes": "(128, 256, 128)", + "learning_rate": 0.01, + "top1_acc": 0.39858266050840885, + "top3_acc": 0.6346296231005183, + "top5_acc": 0.7548214222754998 + }, + { + "config_id": 331, + "activation": "SiLU", + "layer_sizes": "(128, 256, 128)", + "learning_rate": 0.005, + "top1_acc": 0.5010753446391425, + "top3_acc": 0.7292599513450623, + "top5_acc": 0.827274970912809 + }, + { + "config_id": 332, + "activation": "SiLU", + "layer_sizes": "(128, 256, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5197264041180412, + "top3_acc": 0.7429397454430068, + "top5_acc": 0.8345732115784649 + }, + { + "config_id": 333, + "activation": "SiLU", + "layer_sizes": "(128, 256, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.5181398300602899, + "top3_acc": 0.7398018545287876, + "top5_acc": 0.8347494975848817 + }, + { + "config_id": 334, + "activation": "SiLU", + "layer_sizes": "(128, 256, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4800620526742587, + "top3_acc": 0.7126538095405986, + "top5_acc": 0.8150759792687656 + }, + { + "config_id": 335, + "activation": "SiLU", + "layer_sizes": "(128, 256, 256)", + "learning_rate": 0.01, + "top1_acc": 0.2907308817826041, + "top3_acc": 0.5624581320734761, + "top5_acc": 0.6957656101258682 + }, + { + "config_id": 336, + "activation": "SiLU", + "layer_sizes": "(128, 256, 256)", + "learning_rate": 0.005, + "top1_acc": 0.5012516306455593, + "top3_acc": 0.7309170398053803, + "top5_acc": 0.827380742516659 + }, + { + "config_id": 337, + "activation": "SiLU", + "layer_sizes": "(128, 256, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5189860028910905, + "top3_acc": 0.7412473997814053, + "top5_acc": 0.8327045799104467 + }, + { + "config_id": 338, + "activation": "SiLU", + "layer_sizes": "(128, 256, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5206078341501251, + "top3_acc": 0.7418467722032225, + "top5_acc": 0.8352783556041321 + }, + { + "config_id": 339, + "activation": "SiLU", + "layer_sizes": "(128, 256, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.4891936678066495, + "top3_acc": 0.7181186757395198, + "top5_acc": 0.8221626767267214 + }, + { + "config_id": 340, + "activation": "SiLU", + "layer_sizes": "(256, 32, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4667700877904312, + "top3_acc": 0.693015548425766, + "top5_acc": 0.796812749003984 + }, + { + "config_id": 341, + "activation": "SiLU", + "layer_sizes": "(256, 32, 32)", + "learning_rate": 0.005, + "top1_acc": 0.5016394598596763, + "top3_acc": 0.7275676056834608, + "top5_acc": 0.8228325635511053 + }, + { + "config_id": 342, + "activation": "SiLU", + "layer_sizes": "(256, 32, 32)", + "learning_rate": 0.001, + "top1_acc": 0.5140147375101365, + "top3_acc": 0.7369460212248352, + "top5_acc": 0.8275217713217925 + }, + { + "config_id": 343, + "activation": "SiLU", + "layer_sizes": "(256, 32, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.509008214927899, + "top3_acc": 0.733808130310616, + "top5_acc": 0.8266403412897084 + }, + { + "config_id": 344, + "activation": "SiLU", + "layer_sizes": "(256, 32, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.46292705285054475, + "top3_acc": 0.6897366287064133, + "top5_acc": 0.7948030885308324 + }, + { + "config_id": 345, + "activation": "SiLU", + "layer_sizes": "(256, 32, 64)", + "learning_rate": 0.01, + "top1_acc": 0.4737510136445369, + "top3_acc": 0.6957656101258682, + "top5_acc": 0.7989986954835525 + }, + { + "config_id": 346, + "activation": "SiLU", + "layer_sizes": "(256, 32, 64)", + "learning_rate": 0.005, + "top1_acc": 0.500334943412192, + "top3_acc": 0.7244297147692417, + "top5_acc": 0.8230088495575221 + }, + { + "config_id": 347, + "activation": "SiLU", + "layer_sizes": "(256, 32, 64)", + "learning_rate": 0.001, + "top1_acc": 0.5145788527306703, + "top3_acc": 0.7360645911927511, + "top5_acc": 0.8279448577371928 + }, + { + "config_id": 348, + "activation": "SiLU", + "layer_sizes": "(256, 32, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.5098543877586997, + "top3_acc": 0.7335260727003491, + "top5_acc": 0.8272397137115256 + }, + { + "config_id": 349, + "activation": "SiLU", + "layer_sizes": "(256, 32, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.4614815075979269, + "top3_acc": 0.6897718859076967, + "top5_acc": 0.7996333251066531 + }, + { + "config_id": 350, + "activation": "SiLU", + "layer_sizes": "(256, 32, 128)", + "learning_rate": 0.01, + "top1_acc": 0.46186933681204384, + "top3_acc": 0.6953072665091845, + "top5_acc": 0.8020308147939217 + }, + { + "config_id": 351, + "activation": "SiLU", + "layer_sizes": "(256, 32, 128)", + "learning_rate": 0.005, + "top1_acc": 0.5017099742622431, + "top3_acc": 0.7296125233578958, + "top5_acc": 0.8235024503754892 + }, + { + "config_id": 352, + "activation": "SiLU", + "layer_sizes": "(256, 32, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5119698198357014, + "top3_acc": 0.7346543031414167, + "top5_acc": 0.8292493741846773 + }, + { + "config_id": 353, + "activation": "SiLU", + "layer_sizes": "(256, 32, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.5152134823537707, + "top3_acc": 0.7384620808800197, + "top5_acc": 0.8313295490603956 + }, + { + "config_id": 354, + "activation": "SiLU", + "layer_sizes": "(256, 32, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4677925466276487, + "top3_acc": 0.700313789091422, + "top5_acc": 0.806543736558192 + }, + { + "config_id": 355, + "activation": "SiLU", + "layer_sizes": "(256, 32, 256)", + "learning_rate": 0.01, + "top1_acc": 0.46585340055706376, + "top3_acc": 0.6935091492437331, + "top5_acc": 0.8032648168388393 + }, + { + "config_id": 356, + "activation": "SiLU", + "layer_sizes": "(256, 32, 256)", + "learning_rate": 0.005, + "top1_acc": 0.49952402778267463, + "top3_acc": 0.7283080069104114, + "top5_acc": 0.8246659380178402 + }, + { + "config_id": 357, + "activation": "SiLU", + "layer_sizes": "(256, 32, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5139442231075697, + "top3_acc": 0.7395197969185207, + "top5_acc": 0.8304128618270282 + }, + { + "config_id": 358, + "activation": "SiLU", + "layer_sizes": "(256, 32, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5181750872615731, + "top3_acc": 0.7369460212248352, + "top5_acc": 0.8297429750026443 + }, + { + "config_id": 359, + "activation": "SiLU", + "layer_sizes": "(256, 32, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.4709656947431513, + "top3_acc": 0.7020061347530233, + "top5_acc": 0.8061911645453584 + }, + { + "config_id": 360, + "activation": "SiLU", + "layer_sizes": "(256, 64, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4709304375418679, + "top3_acc": 0.6889962274794627, + "top5_acc": 0.796213376582167 + }, + { + "config_id": 361, + "activation": "SiLU", + "layer_sizes": "(256, 64, 32)", + "learning_rate": 0.005, + "top1_acc": 0.5063286676303635, + "top3_acc": 0.7272150336706272, + "top5_acc": 0.8212107322920706 + }, + { + "config_id": 362, + "activation": "SiLU", + "layer_sizes": "(256, 64, 32)", + "learning_rate": 0.001, + "top1_acc": 0.5170468568205056, + "top3_acc": 0.7387088812890032, + "top5_acc": 0.8303423474244614 + }, + { + "config_id": 363, + "activation": "SiLU", + "layer_sizes": "(256, 64, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.5164827415999718, + "top3_acc": 0.7345485315375665, + "top5_acc": 0.8274159997179424 + }, + { + "config_id": 364, + "activation": "SiLU", + "layer_sizes": "(256, 64, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.4667700877904312, + "top3_acc": 0.6949899516976342, + "top5_acc": 0.8017134999823714 + }, + { + "config_id": 365, + "activation": "SiLU", + "layer_sizes": "(256, 64, 64)", + "learning_rate": 0.01, + "top1_acc": 0.46476042731727957, + "top3_acc": 0.6854352501498431, + "top5_acc": 0.7945915453231323 + }, + { + "config_id": 366, + "activation": "SiLU", + "layer_sizes": "(256, 64, 64)", + "learning_rate": 0.005, + "top1_acc": 0.5066107252406304, + "top3_acc": 0.7280259493001445, + "top5_acc": 0.8254415964460741 + }, + { + "config_id": 367, + "activation": "SiLU", + "layer_sizes": "(256, 64, 64)", + "learning_rate": 0.001, + "top1_acc": 0.5178930296513062, + "top3_acc": 0.7396255685223707, + "top5_acc": 0.8305186334308783 + }, + { + "config_id": 368, + "activation": "SiLU", + "layer_sizes": "(256, 64, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.516306455593555, + "top3_acc": 0.738003737263336, + "top5_acc": 0.8306949194372951 + }, + { + "config_id": 369, + "activation": "SiLU", + "layer_sizes": "(256, 64, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.4687092338610161, + "top3_acc": 0.6965412685541021, + "top5_acc": 0.8039347036632232 + }, + { + "config_id": 370, + "activation": "SiLU", + "layer_sizes": "(256, 64, 128)", + "learning_rate": 0.01, + "top1_acc": 0.4607058491696929, + "top3_acc": 0.6879737686422451, + "top5_acc": 0.7889503931177944 + }, + { + "config_id": 371, + "activation": "SiLU", + "layer_sizes": "(256, 64, 128)", + "learning_rate": 0.005, + "top1_acc": 0.49762013891337303, + "top3_acc": 0.7262278320346931, + "top5_acc": 0.8255826252512075 + }, + { + "config_id": 372, + "activation": "SiLU", + "layer_sizes": "(256, 64, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5195501181116243, + "top3_acc": 0.7402601981454712, + "top5_acc": 0.8333392095335472 + }, + { + "config_id": 373, + "activation": "SiLU", + "layer_sizes": "(256, 64, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.5168353136128054, + "top3_acc": 0.7401896837429045, + "top5_acc": 0.83273983711173 + }, + { + "config_id": 374, + "activation": "SiLU", + "layer_sizes": "(256, 64, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.47435038606635405, + "top3_acc": 0.7070831717378274, + "top5_acc": 0.8112682015301625 + }, + { + "config_id": 375, + "activation": "SiLU", + "layer_sizes": "(256, 64, 256)", + "learning_rate": 0.01, + "top1_acc": 0.4507633184077848, + "top3_acc": 0.6731304869019498, + "top5_acc": 0.7856009589958749 + }, + { + "config_id": 376, + "activation": "SiLU", + "layer_sizes": "(256, 64, 256)", + "learning_rate": 0.005, + "top1_acc": 0.49374184677220323, + "top3_acc": 0.7285195501181116, + "top5_acc": 0.8250537672319571 + }, + { + "config_id": 377, + "activation": "SiLU", + "layer_sizes": "(256, 64, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5201847477347248, + "top3_acc": 0.7374396220428022, + "top5_acc": 0.8329161231181469 + }, + { + "config_id": 378, + "activation": "SiLU", + "layer_sizes": "(256, 64, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5197969185206078, + "top3_acc": 0.739942883333921, + "top5_acc": 0.8322109790924797 + }, + { + "config_id": 379, + "activation": "SiLU", + "layer_sizes": "(256, 64, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.48263582836794416, + "top3_acc": 0.7090223178084124, + "top5_acc": 0.8132778620033142 + }, + { + "config_id": 380, + "activation": "SiLU", + "layer_sizes": "(256, 128, 32)", + "learning_rate": 0.01, + "top1_acc": 0.4615520220004936, + "top3_acc": 0.6887846842717625, + "top5_acc": 0.7964954341924338 + }, + { + "config_id": 381, + "activation": "SiLU", + "layer_sizes": "(256, 128, 32)", + "learning_rate": 0.005, + "top1_acc": 0.5043542643584952, + "top3_acc": 0.7275323484821775, + "top5_acc": 0.822797306349822 + }, + { + "config_id": 382, + "activation": "SiLU", + "layer_sizes": "(256, 128, 32)", + "learning_rate": 0.001, + "top1_acc": 0.5162359411909883, + "top3_acc": 0.737897965659486, + "top5_acc": 0.8319641786834961 + }, + { + "config_id": 383, + "activation": "SiLU", + "layer_sizes": "(256, 128, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.5175757148397561, + "top3_acc": 0.7377921940556359, + "top5_acc": 0.8317526354757959 + }, + { + "config_id": 384, + "activation": "SiLU", + "layer_sizes": "(256, 128, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.48291788597821106, + "top3_acc": 0.7069774001339774, + "top5_acc": 0.8094348270634277 + }, + { + "config_id": 385, + "activation": "SiLU", + "layer_sizes": "(256, 128, 64)", + "learning_rate": 0.01, + "top1_acc": 0.4617283080069104, + "top3_acc": 0.6909706307513309, + "top5_acc": 0.793780629693615 + }, + { + "config_id": 386, + "activation": "SiLU", + "layer_sizes": "(256, 128, 64)", + "learning_rate": 0.005, + "top1_acc": 0.505306208793146, + "top3_acc": 0.729436237351479, + "top5_acc": 0.8252653104396573 + }, + { + "config_id": 387, + "activation": "SiLU", + "layer_sizes": "(256, 128, 64)", + "learning_rate": 0.001, + "top1_acc": 0.5183866304692734, + "top3_acc": 0.7389909388992701, + "top5_acc": 0.8298487466064943 + }, + { + "config_id": 388, + "activation": "SiLU", + "layer_sizes": "(256, 128, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.5178225152487396, + "top3_acc": 0.7419878010083559, + "top5_acc": 0.8328103515142968 + }, + { + "config_id": 389, + "activation": "SiLU", + "layer_sizes": "(256, 128, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.48020308147939217, + "top3_acc": 0.7104326058597469, + "top5_acc": 0.8133131192045976 + }, + { + "config_id": 390, + "activation": "SiLU", + "layer_sizes": "(256, 128, 128)", + "learning_rate": 0.01, + "top1_acc": 0.37577125127807354, + "top3_acc": 0.6106194690265486, + "top5_acc": 0.732644642668265 + }, + { + "config_id": 391, + "activation": "SiLU", + "layer_sizes": "(256, 128, 128)", + "learning_rate": 0.005, + "top1_acc": 0.5070690688573141, + "top3_acc": 0.7302824101822797, + "top5_acc": 0.8264640552832916 + }, + { + "config_id": 392, + "activation": "SiLU", + "layer_sizes": "(256, 128, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5188802312872404, + "top3_acc": 0.741705743398089, + "top5_acc": 0.833021894721997 + }, + { + "config_id": 393, + "activation": "SiLU", + "layer_sizes": "(256, 128, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.5200789761308747, + "top3_acc": 0.7403659697493213, + "top5_acc": 0.8350315551951486 + }, + { + "config_id": 394, + "activation": "SiLU", + "layer_sizes": "(256, 128, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.48774812255403166, + "top3_acc": 0.7129711243521489, + "top5_acc": 0.8147939216584987 + }, + { + "config_id": 395, + "activation": "SiLU", + "layer_sizes": "(256, 128, 256)", + "learning_rate": 0.01, + "top1_acc": 0.3830694919437295, + "top3_acc": 0.6288121848887636, + "top5_acc": 0.7510841589394633 + }, + { + "config_id": 396, + "activation": "SiLU", + "layer_sizes": "(256, 128, 256)", + "learning_rate": 0.005, + "top1_acc": 0.4976553961146564, + "top3_acc": 0.7264746324436766, + "top5_acc": 0.8237845079857561 + }, + { + "config_id": 397, + "activation": "SiLU", + "layer_sizes": "(256, 128, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5197264041180412, + "top3_acc": 0.7407185417621549, + "top5_acc": 0.8329161231181469 + }, + { + "config_id": 398, + "activation": "SiLU", + "layer_sizes": "(256, 128, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5214187497796425, + "top3_acc": 0.7426576878327399, + "top5_acc": 0.8332334379296972 + }, + { + "config_id": 399, + "activation": "SiLU", + "layer_sizes": "(256, 128, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.49444699079787047, + "top3_acc": 0.718823819765187, + "top5_acc": 0.8191658146176356 + }, + { + "config_id": 400, + "activation": "SiLU", + "layer_sizes": "(256, 256, 32)", + "learning_rate": 0.01, + "top1_acc": 0.46832140464689914, + "top3_acc": 0.6938617212565666, + "top5_acc": 0.7957902901667666 + }, + { + "config_id": 401, + "activation": "SiLU", + "layer_sizes": "(256, 256, 32)", + "learning_rate": 0.005, + "top1_acc": 0.5066459824419137, + "top3_acc": 0.7315516694284808, + "top5_acc": 0.8269223988999753 + }, + { + "config_id": 402, + "activation": "SiLU", + "layer_sizes": "(256, 256, 32)", + "learning_rate": 0.001, + "top1_acc": 0.5201494905334415, + "top3_acc": 0.7404717413531714, + "top5_acc": 0.8324930367027465 + }, + { + "config_id": 403, + "activation": "SiLU", + "layer_sizes": "(256, 256, 32)", + "learning_rate": 0.0005, + "top1_acc": 0.5173994288333392, + "top3_acc": 0.7390967105031203, + "top5_acc": 0.83263406550788 + }, + { + "config_id": 404, + "activation": "SiLU", + "layer_sizes": "(256, 256, 32)", + "learning_rate": 0.0001, + "top1_acc": 0.48573846208088, + "top3_acc": 0.7114903218982477, + "top5_acc": 0.8133483764058809 + }, + { + "config_id": 405, + "activation": "SiLU", + "layer_sizes": "(256, 256, 64)", + "learning_rate": 0.01, + "top1_acc": 0.36896661143038467, + "top3_acc": 0.6082572365405634, + "top5_acc": 0.7442795190917745 + }, + { + "config_id": 406, + "activation": "SiLU", + "layer_sizes": "(256, 256, 64)", + "learning_rate": 0.005, + "top1_acc": 0.5043190071572119, + "top3_acc": 0.7307760110002468, + "top5_acc": 0.8249832528293904 + }, + { + "config_id": 407, + "activation": "SiLU", + "layer_sizes": "(256, 256, 64)", + "learning_rate": 0.001, + "top1_acc": 0.5185981736769735, + "top3_acc": 0.7428339738391566, + "top5_acc": 0.8344674399746148 + }, + { + "config_id": 408, + "activation": "SiLU", + "layer_sizes": "(256, 256, 64)", + "learning_rate": 0.0005, + "top1_acc": 0.5226880090258436, + "top3_acc": 0.7419878010083559, + "top5_acc": 0.8349962979938652 + }, + { + "config_id": 409, + "activation": "SiLU", + "layer_sizes": "(256, 256, 64)", + "learning_rate": 0.0001, + "top1_acc": 0.49465853400557064, + "top3_acc": 0.7195289637908543, + "top5_acc": 0.8214927899023375 + }, + { + "config_id": 410, + "activation": "SiLU", + "layer_sizes": "(256, 256, 128)", + "learning_rate": 0.01, + "top1_acc": 0.37855657017945915, + "top3_acc": 0.6131227303176674, + "top5_acc": 0.7334203010964989 + }, + { + "config_id": 411, + "activation": "SiLU", + "layer_sizes": "(256, 256, 128)", + "learning_rate": 0.005, + "top1_acc": 0.5050594083841624, + "top3_acc": 0.733913901914466, + "top5_acc": 0.8274159997179424 + }, + { + "config_id": 412, + "activation": "SiLU", + "layer_sizes": "(256, 256, 128)", + "learning_rate": 0.001, + "top1_acc": 0.5205725769488418, + "top3_acc": 0.743257060254557, + "top5_acc": 0.8320346930860628 + }, + { + "config_id": 413, + "activation": "SiLU", + "layer_sizes": "(256, 256, 128)", + "learning_rate": 0.0005, + "top1_acc": 0.5205725769488418, + "top3_acc": 0.7421288298134894, + "top5_acc": 0.8329513803194303 + }, + { + "config_id": 414, + "activation": "SiLU", + "layer_sizes": "(256, 256, 128)", + "learning_rate": 0.0001, + "top1_acc": 0.4972675669005394, + "top3_acc": 0.7232662271268907, + "top5_acc": 0.8232556499665057 + }, + { + "config_id": 415, + "activation": "SiLU", + "layer_sizes": "(256, 256, 256)", + "learning_rate": 0.01, + "top1_acc": 0.12378803370588443, + "top3_acc": 0.29785283644184324, + "top5_acc": 0.4521030920565525 + }, + { + "config_id": 416, + "activation": "SiLU", + "layer_sizes": "(256, 256, 256)", + "learning_rate": 0.005, + "top1_acc": 0.4996297993865247, + "top3_acc": 0.725734231216726, + "top5_acc": 0.8241370799985898 + }, + { + "config_id": 417, + "activation": "SiLU", + "layer_sizes": "(256, 256, 256)", + "learning_rate": 0.001, + "top1_acc": 0.5235341818566442, + "top3_acc": 0.7429044882417234, + "top5_acc": 0.8348905263900152 + }, + { + "config_id": 418, + "activation": "SiLU", + "layer_sizes": "(256, 256, 256)", + "learning_rate": 0.0005, + "top1_acc": 0.5201847477347248, + "top3_acc": 0.7436096322673906, + "top5_acc": 0.834678983182315 + }, + { + "config_id": 419, + "activation": "SiLU", + "layer_sizes": "(256, 256, 256)", + "learning_rate": 0.0001, + "top1_acc": 0.5014279166519762, + "top3_acc": 0.7276028628847442, + "top5_acc": 0.8246306808165568 + } +] diff --git a/model/transform.py b/model/transform.py index 9ff016e..d378bcc 100755 --- a/model/transform.py +++ b/model/transform.py @@ -3,22 +3,13 @@ from typing import Literal, List, Dict import numpy as np -INPUT_FILE: str = "./data/all_cleaned_words.txt" +INPUT_FILE: str = "./data/all_cleaned_words_shuffled.txt" OUTPUT_FILE: str = "./data.npy" alphabet: List[str] = list("abcdefghijklmnopqrstuvwxyz") -vowels: set[str] = set("aeiouy") char_to_index: Dict[str, int] = {ch: idx for idx, ch in enumerate(alphabet)} -default_index: int = len(alphabet) # Out-of-vocabulary token (e.g., for "") - - -def get_prev_type(c: str) -> Literal[0, 1, 2]: - if c in vowels: - return 1 - elif c in alphabet: - return 2 - return 0 +default_index: int = len(alphabet) # 26 + 1 -> Unknown character def encode_letter(c: str) -> int: @@ -43,12 +34,6 @@ def build_dataset(input_path: str) -> np.ndarray: # Append current char index (target for classification) features.append(encode_letter(curr_char)) - # Word position features - # is_start: int = 1 if i == 0 else 0 - prev1: str = prev_chars[-1] - prev_type: int = get_prev_type(prev1) - # word_length: int = i + 1 - # features.extend([prev_type]) all_features.append(features) diff --git a/pyproject.toml b/pyproject.toml index 548370f..3d5d54f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,14 +3,16 @@ name = "app" version = "0.1.0" description = "Add your description here" readme = "README.md" -requires-python = ">=3.12" +requires-python = ">=3.8" dependencies = [ + "onnxruntime>=1.21.0", "pydantic-settings>=2.8.1", "pyside6>=6.8.3", ] [project.optional-dependencies] train = [ + "onnx>=1.17.0", "torch>=2.6.0", "ipykernel>=6.29.5", "numpy>=2.2.4" @@ -22,4 +24,4 @@ visualization = [ ] [tool.mypy] -plugins = "pydantic.mypy" \ No newline at end of file +plugins = "pydantic.mypy" diff --git a/uv.lock b/uv.lock index 02d4a56..e89d6f9 100644 --- a/uv.lock +++ b/uv.lock @@ -16,6 +16,8 @@ name = "app" version = "0.1.0" source = { virtual = "." } dependencies = [ + { name = "onnx" }, + { name = "onnxruntime" }, { name = "pydantic-settings" }, { name = "pyside6" }, ] @@ -38,6 +40,8 @@ requires-dist = [ { name = "matplotlib", marker = "extra == 'visualization'", specifier = ">=3.10.1" }, { name = "numpy", marker = "extra == 'train'", specifier = ">=2.2.4" }, { name = "numpy", marker = "extra == 'visualization'", specifier = ">=2.2.4" }, + { name = "onnx", specifier = ">=1.17.0" }, + { name = "onnxruntime", specifier = ">=1.21.0" }, { name = "pandas", marker = "extra == 'visualization'", specifier = ">=2.2.3" }, { name = "pydantic-settings", specifier = ">=2.8.1" }, { name = "pyside6", specifier = ">=6.8.3" }, @@ -105,6 +109,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, ] +[[package]] +name = "coloredlogs" +version = "15.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "humanfriendly" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/c7/eed8f27100517e8c0e6b923d5f0845d0cb99763da6fdee00478f91db7325/coloredlogs-15.0.1.tar.gz", hash = "sha256:7c991aa71a4577af2f82600d8f8f3a89f936baeaf9b50a9c197da014e5bf16b0", size = 278520 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/06/3d6badcf13db419e25b07041d9c7b4a2c331d3f4e7134445ec5df57714cd/coloredlogs-15.0.1-py2.py3-none-any.whl", hash = "sha256:612ee75c546f53e92e70049c9dbfcc18c935a2b9a53b66085ce9ef6a6e5c0934", size = 46018 }, +] + [[package]] name = "comm" version = "0.2.2" @@ -211,6 +227,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl", hash = "sha256:c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de", size = 16215 }, ] +[[package]] +name = "flatbuffers" +version = "25.2.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/30/eb5dce7994fc71a2f685d98ec33cc660c0a5887db5610137e60d8cbc4489/flatbuffers-25.2.10.tar.gz", hash = "sha256:97e451377a41262f8d9bd4295cc836133415cc03d8cb966410a4af92eb00d26e", size = 22170 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/25/155f9f080d5e4bc0082edfda032ea2bc2b8fab3f4d25d46c1e9dd22a1a89/flatbuffers-25.2.10-py2.py3-none-any.whl", hash = "sha256:ebba5f4d5ea615af3f7fd70fc310636fbb2bbd1f566ac0a23d98dd412de50051", size = 30953 }, +] + [[package]] name = "fonttools" version = "4.56.0" @@ -245,6 +270,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/56/53/eb690efa8513166adef3e0669afd31e95ffde69fb3c52ec2ac7223ed6018/fsspec-2025.3.0-py3-none-any.whl", hash = "sha256:efb87af3efa9103f94ca91a7f8cb7a4df91af9f74fc106c9c7ea0efd7277c1b3", size = 193615 }, ] +[[package]] +name = "humanfriendly" +version = "10.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyreadline3", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/3f/2c29224acb2e2df4d2046e4c73ee2662023c58ff5b113c4c1adac0886c43/humanfriendly-10.0.tar.gz", hash = "sha256:6b0b831ce8f15f7300721aa49829fc4e83921a9a301cc7f606be6686a2288ddc", size = 360702 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl", hash = "sha256:1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477", size = 86794 }, +] + [[package]] name = "ipykernel" version = "6.29.5" @@ -677,6 +714,48 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/87/20/199b8713428322a2f22b722c62b8cc278cc53dffa9705d744484b5035ee9/nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl", hash = "sha256:781e950d9b9f60d8241ccea575b32f5105a5baf4c2351cab5256a24869f12a1a", size = 99144 }, ] +[[package]] +name = "onnx" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "protobuf" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9a/54/0e385c26bf230d223810a9c7d06628d954008a5e5e4b73ee26ef02327282/onnx-1.17.0.tar.gz", hash = "sha256:48ca1a91ff73c1d5e3ea2eef20ae5d0e709bb8a2355ed798ffc2169753013fd3", size = 12165120 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b4/dd/c416a11a28847fafb0db1bf43381979a0f522eb9107b831058fde012dd56/onnx-1.17.0-cp312-cp312-macosx_12_0_universal2.whl", hash = "sha256:0e906e6a83437de05f8139ea7eaf366bf287f44ae5cc44b2850a30e296421f2f", size = 16651271 }, + { url = "https://files.pythonhosted.org/packages/f0/6c/f040652277f514ecd81b7251841f96caa5538365af7df07f86c6018cda2b/onnx-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d955ba2939878a520a97614bcf2e79c1df71b29203e8ced478fa78c9a9c63c2", size = 15907522 }, + { url = "https://files.pythonhosted.org/packages/3d/7c/67f4952d1b56b3f74a154b97d0dd0630d525923b354db117d04823b8b49b/onnx-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f3fb5cc4e2898ac5312a7dc03a65133dd2abf9a5e520e69afb880a7251ec97a", size = 16046307 }, + { url = "https://files.pythonhosted.org/packages/ae/20/6da11042d2ab870dfb4ce4a6b52354d7651b6b4112038b6d2229ab9904c4/onnx-1.17.0-cp312-cp312-win32.whl", hash = "sha256:317870fca3349d19325a4b7d1b5628f6de3811e9710b1e3665c68b073d0e68d7", size = 14424235 }, + { url = "https://files.pythonhosted.org/packages/35/55/c4d11bee1fdb0c4bd84b4e3562ff811a19b63266816870ae1f95567aa6e1/onnx-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:659b8232d627a5460d74fd3c96947ae83db6d03f035ac633e20cd69cfa029227", size = 14530453 }, +] + +[[package]] +name = "onnxruntime" +version = "1.21.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "coloredlogs" }, + { name = "flatbuffers" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "sympy" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/21/593c9bc56002a6d1ea7c2236f4a648e081ec37c8d51db2383a9e83a63325/onnxruntime-1.21.0-cp312-cp312-macosx_13_0_universal2.whl", hash = "sha256:893d67c68ca9e7a58202fa8d96061ed86a5815b0925b5a97aef27b8ba246a20b", size = 33658780 }, + { url = "https://files.pythonhosted.org/packages/4a/b4/33ec675a8ac150478091262824413e5d4acc359e029af87f9152e7c1c092/onnxruntime-1.21.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:37b7445c920a96271a8dfa16855e258dc5599235b41c7bbde0d262d55bcc105f", size = 14159975 }, + { url = "https://files.pythonhosted.org/packages/8b/08/eead6895ed83b56711ca6c0d31d82f109401b9937558b425509e497d6fb4/onnxruntime-1.21.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9a04aafb802c1e5573ba4552f8babcb5021b041eb4cfa802c9b7644ca3510eca", size = 16019285 }, + { url = "https://files.pythonhosted.org/packages/77/39/e83d56e3c215713b5263cb4d4f0c69e3964bba11634233d8ae04fc7e6bf3/onnxruntime-1.21.0-cp312-cp312-win_amd64.whl", hash = "sha256:7f801318476cd7003d636a5b392f7a37c08b6c8d2f829773f3c3887029e03f32", size = 11760975 }, + { url = "https://files.pythonhosted.org/packages/f2/25/93f65617b06c741a58eeac9e373c99df443b02a774f4cb6511889757c0da/onnxruntime-1.21.0-cp313-cp313-macosx_13_0_universal2.whl", hash = "sha256:85718cbde1c2912d3a03e3b3dc181b1480258a229c32378408cace7c450f7f23", size = 33659581 }, + { url = "https://files.pythonhosted.org/packages/f9/03/6b6829ee8344490ab5197f39a6824499ed097d1fc8c85b1f91c0e6767819/onnxruntime-1.21.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:94dff3a61538f3b7b0ea9a06bc99e1410e90509c76e3a746f039e417802a12ae", size = 14160534 }, + { url = "https://files.pythonhosted.org/packages/a6/81/e280ddf05f83ad5e0d066ef08e31515b17bd50bb52ef2ea713d9e455e67a/onnxruntime-1.21.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c1e704b0eda5f2bbbe84182437315eaec89a450b08854b5a7762c85d04a28a0a", size = 16018947 }, + { url = "https://files.pythonhosted.org/packages/d3/ea/011dfc2536e46e2ea984d2c0256dc585ebb1352366dffdd98764f1f44ee4/onnxruntime-1.21.0-cp313-cp313-win_amd64.whl", hash = "sha256:19b630c6a8956ef97fb7c94948b17691167aa1aaf07b5f214fa66c3e4136c108", size = 11760731 }, + { url = "https://files.pythonhosted.org/packages/47/6b/a00f31322e91c610c7825377ef0cad884483c30d1370b896d57e7032e912/onnxruntime-1.21.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3995c4a2d81719623c58697b9510f8de9fa42a1da6b4474052797b0d712324fe", size = 14172215 }, + { url = "https://files.pythonhosted.org/packages/58/4b/98214f13ac1cd675dfc2713ba47b5722f55ce4fba526d2b2826f2682a42e/onnxruntime-1.21.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:36b18b8f39c0f84e783902112a0dd3c102466897f96d73bb83f6a6bff283a423", size = 15990612 }, +] + [[package]] name = "packaging" version = "24.2" @@ -800,6 +879,20 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl", hash = "sha256:9b6427eb19e479d98acff65196a307c555eb567989e6d88ebbb1b509d9779198", size = 387816 }, ] +[[package]] +name = "protobuf" +version = "6.30.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c8/8c/cf2ac658216eebe49eaedf1e06bc06cbf6a143469236294a1171a51357c3/protobuf-6.30.2.tar.gz", hash = "sha256:35c859ae076d8c56054c25b59e5e59638d86545ed6e2b6efac6be0b6ea3ba048", size = 429315 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/be/85/cd53abe6a6cbf2e0029243d6ae5fb4335da2996f6c177bb2ce685068e43d/protobuf-6.30.2-cp310-abi3-win32.whl", hash = "sha256:b12ef7df7b9329886e66404bef5e9ce6a26b54069d7f7436a0853ccdeb91c103", size = 419148 }, + { url = "https://files.pythonhosted.org/packages/97/e9/7b9f1b259d509aef2b833c29a1f3c39185e2bf21c9c1be1cd11c22cb2149/protobuf-6.30.2-cp310-abi3-win_amd64.whl", hash = "sha256:7653c99774f73fe6b9301b87da52af0e69783a2e371e8b599b3e9cb4da4b12b9", size = 431003 }, + { url = "https://files.pythonhosted.org/packages/8e/66/7f3b121f59097c93267e7f497f10e52ced7161b38295137a12a266b6c149/protobuf-6.30.2-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:0eb523c550a66a09a0c20f86dd554afbf4d32b02af34ae53d93268c1f73bc65b", size = 417579 }, + { url = "https://files.pythonhosted.org/packages/d0/89/bbb1bff09600e662ad5b384420ad92de61cab2ed0f12ace1fd081fd4c295/protobuf-6.30.2-cp39-abi3-manylinux2014_aarch64.whl", hash = "sha256:50f32cc9fd9cb09c783ebc275611b4f19dfdfb68d1ee55d2f0c7fa040df96815", size = 317319 }, + { url = "https://files.pythonhosted.org/packages/28/50/1925de813499546bc8ab3ae857e3ec84efe7d2f19b34529d0c7c3d02d11d/protobuf-6.30.2-cp39-abi3-manylinux2014_x86_64.whl", hash = "sha256:4f6c687ae8efae6cf6093389a596548214467778146b7245e886f35e1485315d", size = 316212 }, + { url = "https://files.pythonhosted.org/packages/e5/a1/93c2acf4ade3c5b557d02d500b06798f4ed2c176fa03e3c34973ca92df7f/protobuf-6.30.2-py3-none-any.whl", hash = "sha256:ae86b030e69a98e08c77beab574cbcb9fff6d031d57209f574a5aea1445f4b51", size = 167062 }, +] + [[package]] name = "psutil" version = "7.0.0" @@ -930,6 +1023,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/05/e7/df2285f3d08fee213f2d041540fa4fc9ca6c2d44cf36d3a035bf2a8d2bcc/pyparsing-3.2.3-py3-none-any.whl", hash = "sha256:a749938e02d6fd0b59b356ca504a24982314bb090c383e3cf201c95ef7e2bfcf", size = 111120 }, ] +[[package]] +name = "pyreadline3" +version = "3.5.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/49/4cea918a08f02817aabae639e3d0ac046fef9f9180518a3ad394e22da148/pyreadline3-3.5.4.tar.gz", hash = "sha256:8d57d53039a1c75adba8e50dd3d992b28143480816187ea5efbd5c78e6c885b7", size = 99839 } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/dc/491b7661614ab97483abf2056be1deee4dc2490ecbf7bff9ab5cdbac86e1/pyreadline3-3.5.4-py3-none-any.whl", hash = "sha256:eaf8e6cc3c49bcccf145fc6067ba8643d1df34d604a1ec0eccbf7a18e6d3fae6", size = 83178 }, +] + [[package]] name = "pyside6" version = "6.8.3"

w3R!T_Qn|z)kA!yHbM*cjA)bb(VSD~ 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 pc^rw3oD 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