diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 00000000..07585251 Binary files /dev/null and b/.DS_Store differ diff --git a/module-1/.DS_Store b/module-1/.DS_Store new file mode 100644 index 00000000..022f513b Binary files /dev/null and b/module-1/.DS_Store differ diff --git a/module-1/Functional-Programming/.DS_Store b/module-1/Functional-Programming/.DS_Store new file mode 100644 index 00000000..815596fb Binary files /dev/null and b/module-1/Functional-Programming/.DS_Store differ diff --git a/module-1/Functional-Programming/your-code/.ipynb_checkpoints/Q1-checkpoint.ipynb b/module-1/Functional-Programming/your-code/.ipynb_checkpoints/Q1-checkpoint.ipynb new file mode 100644 index 00000000..372ec61b --- /dev/null +++ b/module-1/Functional-Programming/your-code/.ipynb_checkpoints/Q1-checkpoint.ipynb @@ -0,0 +1,178 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, create a Python function that wraps your previous solution for the Bag of Words lab.\n", + "\n", + "Requirements:\n", + "\n", + "1. Your function should accept the following parameters:\n", + " * `docs` [REQUIRED] - array of document paths.\n", + " * `stop_words` [OPTIONAL] - array of stop words. The default value is an empty array.\n", + "\n", + "1. Your function should return a Python object that contains the following:\n", + " * `bag_of_words` - array of strings of normalized unique words in the corpus.\n", + " * `term_freq` - array of the term-frequency vectors." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Import required libraries\n", + "\n", + "# Define function\n", + "def get_bow_from_docs(docs, stop_words=[]):\n", + " \n", + " # In the function, first define the variables you will use such as `corpus`, `bag_of_words`, and `term_freq`.\n", + " \n", + " \n", + " \n", + " \"\"\"\n", + " Loop `docs` and read the content of each doc into a string in `corpus`.\n", + " Remember to convert the doc content to lowercases and remove punctuation.\n", + " \"\"\"\n", + "\n", + " \n", + " \n", + " \"\"\"\n", + " Loop `corpus`. Append the terms in each doc into the `bag_of_words` array. The terms in `bag_of_words` \n", + " should be unique which means before adding each term you need to check if it's already added to the array.\n", + " In addition, check if each term is in the `stop_words` array. Only append the term to `bag_of_words`\n", + " if it is not a stop word.\n", + " \"\"\"\n", + "\n", + " \n", + " \n", + " \n", + " \"\"\"\n", + " Loop `corpus` again. For each doc string, count the number of occurrences of each term in `bag_of_words`. \n", + " Create an array for each doc's term frequency and append it to `term_freq`.\n", + " \"\"\"\n", + "\n", + " \n", + " \n", + " # Now return your output as an object\n", + " return {\n", + " \"bag_of_words\": bag_of_words,\n", + " \"term_freq\": term_freq\n", + " }\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Test your function without stop words. You should see the output like below:\n", + "\n", + "```{'bag_of_words': ['ironhack', 'is', 'cool', 'i', 'love', 'am', 'a', 'student', 'at'], 'term_freq': [[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]}```" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Define doc paths array\n", + "docs = []\n", + "\n", + "# Obtain BoW from your function\n", + "bow = get_bow_from_docs(docs)\n", + "\n", + "# Print BoW\n", + "print(bow)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If your attempt above is successful, nice work done!\n", + "\n", + "Now test your function again with the stop words. In the previous lab we defined the stop words in a large array. In this lab, we'll import the stop words from Scikit-Learn." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.feature_extraction import stop_words\n", + "print(stop_words.ENGLISH_STOP_WORDS)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You should have seen a large list of words that looks like:\n", + "\n", + "```frozenset({'across', 'mine', 'cannot', ...})```\n", + "\n", + "`frozenset` is a type of Python object that is immutable. In this lab you can use it just like an array without conversion." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, test your function with supplying `stop_words.ENGLISH_STOP_WORDS` as the second parameter." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "bow = get_bow_from_docs(bow, stop_words.ENGLISH_STOP_WORDS)\n", + "\n", + "print(bow)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You should have seen:\n", + "\n", + "```{'bag_of_words': ['ironhack', 'cool', 'love', 'student'], 'term_freq': [[1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]]}```" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1/Functional-Programming/your-code/.ipynb_checkpoints/main-checkpoint.ipynb b/module-1/Functional-Programming/your-code/.ipynb_checkpoints/main-checkpoint.ipynb new file mode 100644 index 00000000..1a157d49 --- /dev/null +++ b/module-1/Functional-Programming/your-code/.ipynb_checkpoints/main-checkpoint.ipynb @@ -0,0 +1,456 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Before your start:\n", + "- Read the README.md file\n", + "- Comment as much as you can and use the resources in the README.md file\n", + "- Happy learning!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 - Iterators, Generators and `yield`. \n", + "\n", + "In iterator in Python is an object that represents a stream of data. However, iterators contain a countable number of values. We traverse through the iterator and return one value at a time. All iterators support a `next` function that allows us to traverse through the iterator. We can create an iterator using the `iter` function that comes with the base package of Python. Below is an example of an iterator." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# We first define our iterator:\n", + "\n", + "iterator = iter([1,2,3])\n", + "\n", + "# We can now iterate through the object using the next function\n", + "\n", + "print(next(iterator))" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2\n" + ] + } + ], + "source": [ + "# We continue to iterate through the iterator.\n", + "\n", + "print(next(iterator))" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3\n" + ] + } + ], + "source": [ + "print(next(iterator))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "ename": "StopIteration", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mStopIteration\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;31m# After we have iterated through all elements, we will get a StopIteration Error\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 3\u001b[1;33m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mnext\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0miterator\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[1;31mStopIteration\u001b[0m: " + ] + } + ], + "source": [ + "# After we have iterated through all elements, we will get a StopIteration Error\n", + "\n", + "print(next(iterator))" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "2\n", + "3\n" + ] + } + ], + "source": [ + "# We can also iterate through an iterator using a for loop like this:\n", + "# Note: we cannot go back directly in an iterator once we have traversed through the elements. \n", + "# This is why we are redefining the iterator below\n", + "\n", + "iterator = iter([1,2,3])\n", + "\n", + "for i in iterator:\n", + " print(i)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, write a function that takes an iterator and returns the first element in the iterator and returns the first element in the iterator that is divisible by 2. Assume that all iterators contain only numeric data. If we have not found a single element that is divisible by 2, return zero." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "def divisible2(iterator):\n", + " # This function takes an iterable and returns the first element that is divisible by 2 and zero otherwise\n", + " # Input: Iterable\n", + " # Output: Integer\n", + " \n", + " # Sample Input: iter([1,2,3])\n", + " # Sample Output: 2\n", + " \n", + " # Your code here:\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Generators\n", + "\n", + "It is quite difficult to create your own iterator since you would have to implement a `next` function. Generators are functions that enable us to create iterators. The difference between a function and a generator is that instead of using `return`, we use `yield`. For example, below we have a function that returns an iterator containing the numbers 0 through n:" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "def firstn(n):\n", + " number = 0\n", + " while number < n:\n", + " yield number\n", + " number = number + 1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If we pass 5 to the function, we will see that we have a iterator containing the numbers 0 through 4." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "1\n", + "2\n", + "3\n", + "4\n" + ] + } + ], + "source": [ + "iterator = firstn(5)\n", + "\n", + "for i in iterator:\n", + " print(i)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, create a generator that takes a number and returns an iterator containing all even numbers between 0 and the number you passed to the generator." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "def even_iterator(n):\n", + " # This function produces an iterator containing all even numbers between 0 and n\n", + " # Input: integer\n", + " # Output: iterator\n", + " \n", + " # Sample Input: 5\n", + " # Sample Output: iter([0, 2, 4])\n", + " \n", + " # Your code here:\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Applying Functions to DataFrames\n", + "\n", + "In this challenge, we will look at how to transform cells or entire columns at once.\n", + "\n", + "First, let's load a dataset. We will download the famous Iris classification dataset in the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "columns = ['sepal_length', 'sepal_width', 'petal_length','petal_width','iris_type']\n", + "iris = pd.read_csv(\"https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data\", names=columns)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's look at the dataset using the `head` function." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's start off by using built-in functions. Try to apply the numpy mean function and describe what happens in the comments of the code." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, we'll apply the standard deviation function in numpy (`np.std`). Describe what happened in the comments." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The measurements are in centimeters. Let's convert them all to inches. First, we will create a dataframe that contains only the numeric columns. Assign this new dataframe to `iris_numeric`." + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, we will write a function that converts centimeters to inches in the cell below. Recall that 1cm = 0.393701in." + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "def cm_to_in(x):\n", + " # This function takes in a numeric value in centimeters and converts it to inches\n", + " # Input: numeric value\n", + " # Output: float\n", + " \n", + " # Sample Input: 1.0\n", + " # Sample Output: 0.393701\n", + " \n", + " # Your code here:\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now convert all columns in `iris_numeric` to inches in the cell below. We like to think of functional transformations as immutable. Therefore, save the transformed data in a dataframe called `iris_inch`." + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We have just found that the original measurements were off by a constant. Define the global constant `error` and set it to 2. Write a function that uses the global constant and adds it to each cell in the dataframe. Apply this function to `iris_numeric` and save the result in `iris_constant`." + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "# Define constant below:\n", + "\n", + "\n", + "def add_constant(x):\n", + " # This function adds a global constant to our input.\n", + " # Input: numeric value\n", + " # Output: numeric value\n", + " \n", + " # Your code here:\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge - Applying Functions to Columns\n", + "\n", + "Read more about applying functions to either rows or columns [here](https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.apply.html) and write a function that computes the maximum value for each row of `iris_numeric`" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Compute the combined lengths for each row and the combined widths for each row using a function. Assign these values to new columns `total_length` and `total_width`." + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.6.6" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1/Functional-Programming/your-code/Q1.ipynb b/module-1/Functional-Programming/your-code/Q1.ipynb index 8b07d3db..372ec61b 100644 --- a/module-1/Functional-Programming/your-code/Q1.ipynb +++ b/module-1/Functional-Programming/your-code/Q1.ipynb @@ -170,7 +170,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.8.3" } }, "nbformat": 4, diff --git a/module-1/Functional-Programming/your-code/main.ipynb b/module-1/Functional-Programming/your-code/main.ipynb index 8017d6e6..16b31ad0 100644 --- a/module-1/Functional-Programming/your-code/main.ipynb +++ b/module-1/Functional-Programming/your-code/main.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -31,14 +31,14 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 19, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "1\n" + "\n" ] } ], @@ -49,12 +49,12 @@ "\n", "# We can now iterate through the object using the next function\n", "\n", - "print(next(iterator))" + "print(next(iterator))\n" ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 8, "metadata": {}, "outputs": [ { @@ -73,7 +73,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 9, "metadata": {}, "outputs": [ { @@ -113,13 +113,14 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ + "\n", "1\n", "2\n", "3\n" @@ -132,7 +133,7 @@ "# This is why we are redefining the iterator below\n", "\n", "iterator = iter([1,2,3])\n", - "\n", + "print(iterator)\n", "for i in iterator:\n", " print(i)" ] @@ -146,9 +147,27 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 22, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n" + ] + }, + { + "data": { + "text/plain": [ + "2" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "def divisible2(iterator):\n", " # This function takes an iterable and returns the first element that is divisible by 2 and zero otherwise\n", @@ -159,7 +178,17 @@ " # Sample Output: 2\n", " \n", " # Your code here:\n", - " " + " \n", + " for i in iterator:\n", + " if i %2 == 0:\n", + " return i\n", + " else: \n", + " print('0')\n", + " \n", + "divisible2(iter([1,2,3]))\n", + "\n", + "\n", + "\n" ] }, { @@ -173,7 +202,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 24, "metadata": {}, "outputs": [], "source": [ @@ -181,7 +210,8 @@ " number = 0\n", " while number < n:\n", " yield number\n", - " number = number + 1" + " number = number + 1 # n +=1\n", + " " ] }, { @@ -193,13 +223,14 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 26, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ + "\n", "0\n", "1\n", "2\n", @@ -211,7 +242,9 @@ "source": [ "iterator = firstn(5)\n", "\n", - "for i in iterator:\n", + "print(iterator) # I print iterator to check the content \n", + "\n", + "for i in iterator: # Calling a generator function, creates an iterator \n", " print(i)" ] }, @@ -224,20 +257,36 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 1, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "2\n", + "4\n" + ] + } + ], "source": [ "def even_iterator(n):\n", " # This function produces an iterator containing all even numbers between 0 and n\n", " # Input: integer\n", " # Output: iterator\n", - " \n", " # Sample Input: 5\n", " # Sample Output: iter([0, 2, 4])\n", - " \n", " # Your code here:\n", - " " + " number = 0 \n", + " while number < n:\n", + " if number %2== 0:\n", + " yield number\n", + " number += 1 \n", + " \n", + "result = even_iterator(5)\n", + "for i in result:\n", + " print(i)" ] }, { @@ -253,7 +302,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 34, "metadata": {}, "outputs": [], "source": [ @@ -270,12 +319,99 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 35, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_lengthsepal_widthpetal_lengthpetal_widthiris_type
05.13.51.40.2Iris-setosa
14.93.01.40.2Iris-setosa
24.73.21.30.2Iris-setosa
34.63.11.50.2Iris-setosa
45.03.61.40.2Iris-setosa
\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width iris_type\n", + "0 5.1 3.5 1.4 0.2 Iris-setosa\n", + "1 4.9 3.0 1.4 0.2 Iris-setosa\n", + "2 4.7 3.2 1.3 0.2 Iris-setosa\n", + "3 4.6 3.1 1.5 0.2 Iris-setosa\n", + "4 5.0 3.6 1.4 0.2 Iris-setosa" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "iris.head()" ] }, { @@ -287,12 +423,27 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 37, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "sepal_length 5.843333\n", + "sepal_width 3.054000\n", + "petal_length 3.758667\n", + "petal_width 1.198667\n", + "dtype: float64\n" + ] + } + ], "source": [ "# Your code here:\n", - "\n" + "a = iris.mean()\n", + "print(a)\n", + "\n", + "#The function mean is applied to each column of the data set iris" ] }, { @@ -304,12 +455,26 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 38, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "sepal_length 0.828066\n", + "sepal_width 0.433594\n", + "petal_length 1.764420\n", + "petal_width 0.763161\n", + "dtype: float64\n" + ] + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "b = iris.std()\n", + "print(b)" ] }, { @@ -321,12 +486,146 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 39, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_lengthsepal_widthpetal_lengthpetal_width
05.13.51.40.2
14.93.01.40.2
24.73.21.30.2
34.63.11.50.2
45.03.61.40.2
...............
1456.73.05.22.3
1466.32.55.01.9
1476.53.05.22.0
1486.23.45.42.3
1495.93.05.11.8
\n", + "

150 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width\n", + "0 5.1 3.5 1.4 0.2\n", + "1 4.9 3.0 1.4 0.2\n", + "2 4.7 3.2 1.3 0.2\n", + "3 4.6 3.1 1.5 0.2\n", + "4 5.0 3.6 1.4 0.2\n", + ".. ... ... ... ...\n", + "145 6.7 3.0 5.2 2.3\n", + "146 6.3 2.5 5.0 1.9\n", + "147 6.5 3.0 5.2 2.0\n", + "148 6.2 3.4 5.4 2.3\n", + "149 5.9 3.0 5.1 1.8\n", + "\n", + "[150 rows x 4 columns]" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "iris_numeric = iris.select_dtypes(include=[np.number])\n", + "iris_numeric\n" ] }, { @@ -338,7 +637,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 40, "metadata": {}, "outputs": [], "source": [ @@ -351,6 +650,9 @@ " # Sample Output: 0.393701\n", " \n", " # Your code here:\n", + " conv = x * 0.393701\n", + " return conv \n", + "\n", " " ] }, @@ -363,12 +665,145 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 41, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_lengthsepal_widthpetal_lengthpetal_width
02.0078751.3779540.5511810.078740
11.9291351.1811030.5511810.078740
21.8503951.2598430.5118110.078740
31.8110251.2204730.5905520.078740
41.9685051.4173240.5511810.078740
...............
1452.6377971.1811032.0472450.905512
1462.4803160.9842531.9685050.748032
1472.5590571.1811032.0472450.787402
1482.4409461.3385832.1259850.905512
1492.3228361.1811032.0078750.708662
\n", + "

150 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width\n", + "0 2.007875 1.377954 0.551181 0.078740\n", + "1 1.929135 1.181103 0.551181 0.078740\n", + "2 1.850395 1.259843 0.511811 0.078740\n", + "3 1.811025 1.220473 0.590552 0.078740\n", + "4 1.968505 1.417324 0.551181 0.078740\n", + ".. ... ... ... ...\n", + "145 2.637797 1.181103 2.047245 0.905512\n", + "146 2.480316 0.984253 1.968505 0.748032\n", + "147 2.559057 1.181103 2.047245 0.787402\n", + "148 2.440946 1.338583 2.125985 0.905512\n", + "149 2.322836 1.181103 2.007875 0.708662\n", + "\n", + "[150 rows x 4 columns]" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "iris_inch = cm_to_in(iris_numeric)\n", + "iris_inch\n" ] }, { @@ -380,19 +815,153 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 42, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_lengthsepal_widthpetal_lengthpetal_width
07.15.53.42.2
16.95.03.42.2
26.75.23.32.2
36.65.13.52.2
47.05.63.42.2
...............
1458.75.07.24.3
1468.34.57.03.9
1478.55.07.24.0
1488.25.47.44.3
1497.95.07.13.8
\n", + "

150 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width\n", + "0 7.1 5.5 3.4 2.2\n", + "1 6.9 5.0 3.4 2.2\n", + "2 6.7 5.2 3.3 2.2\n", + "3 6.6 5.1 3.5 2.2\n", + "4 7.0 5.6 3.4 2.2\n", + ".. ... ... ... ...\n", + "145 8.7 5.0 7.2 4.3\n", + "146 8.3 4.5 7.0 3.9\n", + "147 8.5 5.0 7.2 4.0\n", + "148 8.2 5.4 7.4 4.3\n", + "149 7.9 5.0 7.1 3.8\n", + "\n", + "[150 rows x 4 columns]" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Define constant below:\n", - "\n", - "\n", + "error = 2\n", "def add_constant(x):\n", " # This function adds a global constant to our input.\n", " # Input: numeric value\n", " # Output: numeric value\n", - " \n", " # Your code here:\n", + " constant_error = error + x\n", + " return constant_error\n", + "iris_constant = add_constant(iris_numeric)\n", + "iris_constant\n", " " ] }, @@ -407,12 +976,28 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 44, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "sepal_length 7.9\n", + "sepal_width 4.4\n", + "petal_length 6.9\n", + "petal_width 2.5\n", + "dtype: float64" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "a = iris_numeric.apply(np.max,axis=0)\n", + "a\n" ] }, { @@ -424,12 +1009,35 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 54, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "sepal_length 876.5\n", + "sepal_width 458.1\n", + "petal_length 563.8\n", + "petal_width 179.8\n", + "dtype: float64\n", + "1440.3\n", + "637.9000000000001\n" + ] + } + ], "source": [ "# Your code here:\n", - "\n" + "b = iris_numeric.apply(np.sum,axis=0)\n", + "print(b)\n", + "type(b)\n", + "# Since b is series, I can index it using index\n", + "\n", + "total_l = b[0]+ b[2]\n", + "print(total_l)\n", + "\n", + "total_w = b[1]+ b[3]\n", + "print(total_w)\n" ] }, { @@ -456,7 +1064,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.8.3" } }, "nbformat": 4, diff --git a/module-1/Importing-Exporting-Data/your-code/.ipynb_checkpoints/main-checkpoint.ipynb b/module-1/Importing-Exporting-Data/your-code/.ipynb_checkpoints/main-checkpoint.ipynb new file mode 100644 index 00000000..53558f5f --- /dev/null +++ b/module-1/Importing-Exporting-Data/your-code/.ipynb_checkpoints/main-checkpoint.ipynb @@ -0,0 +1,288 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Before your start:\n", + "- Read the README.md file\n", + "- Comment as much as you can and use the resources in the README.md file\n", + "- Happy learning!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 - Accessing our database\n", + "Create a connection to access the sakila database with the ip, user and password provided in class. Take a look at the data. Do some joins in order to have more elaborated tables in a dataframe (you can try first the query in the DBMS and then use it in your notebook).\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Working with JSON files\n", + "\n", + "Import the pandas library." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here\n", + "import pandas as pd\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the next cell, load the data in `nasa.json` in the `data` folder and load it into a pandas dataframe. Name the dataframe `nasa`." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here\n", + "nasa = pd.read_json('DocumentsGitHubdataV2-labsmodule-1Importing-Exporting-Datadata')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now that we have loaded the data, let's examine it using the `head()` function." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### The `value_counts()` function is commonly used in pandas to find the frequency of every value in a column.\n", + "\n", + "In the cell below, use the `value_counts()` function to determine the frequency of all types of asteroid landings by applying the function to the `fall` column." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finally, let's save the dataframe as a json file again. Save the dataframe using the `orient=records` argument and name the file `nasa-output.json`. Remember to save the file inside the `data` folder." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Working with CSV and Other Separated Files\n", + "\n", + "CSV files are more commonly used as dataframes. In the cell below, load the file from the URL provided using the `read_csv()` function in pandas. Starting version 0.19 of pandas, you can load a CSV file into a dataframe directly from a URL without having to load the file first and then transform it. The dataset we will be using contains information about NASA shuttles.\n", + "\n", + "In the cell below, we define the column names and the URL of the data. Following this cell, read the tst file to a variable called `shuttle`. Since the file does not contain the column names, you must add them yourself using the column names declared in `cols` using the `names` argument. Additionally, a tst file is space separated, make sure you pass ` sep=' '` to the function." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "cols = ['time', 'rad_flow', 'fpv_close', 'fpv_open', 'high', 'bypass', 'bpv_close', 'bpv_open', 'class']\n", + "tst_url = 'https://archive.ics.uci.edu/ml/machine-learning-databases/statlog/shuttle/shuttle.tst'" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's verify that this worked by looking at the `head()` function." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "To make life easier for us, let's turn this dataframe into a comma separated file by saving it using the `to_csv()` function. Save `shuttle` into the file `shuttle.csv` and ensure the file is comma separated, that we are not saving the index column and that the file is saved inside the `data` folder." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 3 - Working with Excel Files\n", + "\n", + "We can also use pandas to convert excel spreadsheets to dataframes. Let's use the `read_excel()` function. In this case, `astronauts.xls` is in the `data` folder. Read this file into a variable called `astronaut`. \n", + "\n", + "Note: Make sure to install the `xlrd` library if it is not yet installed." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Use the `head()` function to inspect the dataframe." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Use the `value_counts()` function to find the most popular undergraduate major among all astronauts." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Due to all the commas present in the cells of this file, let's save it as a tab separated csv file. In the cell below, save `astronaut` as a **tab separated file** using the `to_csv` function. Call the file `astronaut.csv`. Remember to remove the index column and save the file in the `data` folder." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge - Fertility Dataset\n", + "\n", + "Visit the following [URL](https://archive.ics.uci.edu/ml/datasets/Fertility) and retrieve the dataset as well as the column headers. Determine the correct separator and read the file into a variable called `fertility`. Examine the dataframe using the `head()` function. \n", + "\n", + "Look in Google for a way to retrieve this data!" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1/Importing-Exporting-Data/your-code/main.ipynb b/module-1/Importing-Exporting-Data/your-code/main.ipynb index ff984a8f..3c8c1d5e 100644 --- a/module-1/Importing-Exporting-Data/your-code/main.ipynb +++ b/module-1/Importing-Exporting-Data/your-code/main.ipynb @@ -38,11 +38,12 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "# your code here\n", + "import pandas as pd\n" ] }, { @@ -54,11 +55,30 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "ValueError", + "evalue": "Expected object or value", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0;31m# your code here\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 2\u001b[0;31m \u001b[0mnasa\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mpd\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mread_json\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'DocumentsGitHubdataV2-labsmodule-1Importing-Exporting-Datadata'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;32m~/opt/anaconda3/lib/python3.8/site-packages/pandas/util/_decorators.py\u001b[0m in \u001b[0;36mwrapper\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m 212\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 213\u001b[0m \u001b[0mkwargs\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mnew_arg_name\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnew_arg_value\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 214\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mfunc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 215\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 216\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mcast\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mF\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mwrapper\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/lib/python3.8/site-packages/pandas/io/json/_json.py\u001b[0m in \u001b[0;36mread_json\u001b[0;34m(path_or_buf, orient, typ, dtype, convert_axes, convert_dates, keep_default_dates, numpy, precise_float, date_unit, encoding, lines, chunksize, compression)\u001b[0m\n\u001b[1;32m 606\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mjson_reader\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 607\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 608\u001b[0;31m \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mjson_reader\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mread\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 609\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mshould_close\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 610\u001b[0m \u001b[0mfilepath_or_buffer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mclose\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/lib/python3.8/site-packages/pandas/io/json/_json.py\u001b[0m in \u001b[0;36mread\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 729\u001b[0m \u001b[0mobj\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_get_object_parser\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_combine_lines\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msplit\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"\\n\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 730\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 731\u001b[0;31m \u001b[0mobj\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_get_object_parser\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 732\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mclose\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 733\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mobj\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/lib/python3.8/site-packages/pandas/io/json/_json.py\u001b[0m in \u001b[0;36m_get_object_parser\u001b[0;34m(self, json)\u001b[0m\n\u001b[1;32m 751\u001b[0m \u001b[0mobj\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 752\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mtyp\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m\"frame\"\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 753\u001b[0;31m \u001b[0mobj\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mFrameParser\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mjson\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mparse\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 754\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 755\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mtyp\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m\"series\"\u001b[0m \u001b[0;32mor\u001b[0m \u001b[0mobj\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/lib/python3.8/site-packages/pandas/io/json/_json.py\u001b[0m in \u001b[0;36mparse\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 855\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 856\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 857\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_parse_no_numpy\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 858\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 859\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mobj\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/opt/anaconda3/lib/python3.8/site-packages/pandas/io/json/_json.py\u001b[0m in \u001b[0;36m_parse_no_numpy\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1087\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0morient\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m\"columns\"\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1088\u001b[0m self.obj = DataFrame(\n\u001b[0;32m-> 1089\u001b[0;31m \u001b[0mloads\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mjson\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mprecise_float\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mprecise_float\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdtype\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1090\u001b[0m )\n\u001b[1;32m 1091\u001b[0m \u001b[0;32melif\u001b[0m \u001b[0morient\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m\"split\"\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mValueError\u001b[0m: Expected object or value" + ] + } + ], "source": [ - "# your code here" + "# your code here\n", + "nasa = pd.read_json('')" ] }, { @@ -70,11 +90,12 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "# your code here\n", + "nasa.head()" ] }, { @@ -88,11 +109,12 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "# your code here\n", + "a = nasa.value_counts(subset='fall')" ] }, { @@ -104,11 +126,24 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'nasa' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0;31m# your code here\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 2\u001b[0;31m \u001b[0mnasa\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mto_json\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'documents/file/namde_of_file.json'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mNameError\u001b[0m: name 'nasa' is not defined" + ] + } + ], "source": [ - "# your code here" + "# your code here\n", + "nasa.to_json('documents/file/namde_of_file.json')" ] }, { @@ -134,11 +169,24 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 2, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'pd' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0;31m# your code here\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 2\u001b[0;31m \u001b[0mshuttle\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mpd\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mread_csv\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtst_url\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mnames\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mcols\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0msep\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m' '\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mNameError\u001b[0m: name 'pd' is not defined" + ] + } + ], "source": [ - "# your code here" + "# your code here\n", + "shuttle = pd.read_csv(tst_url,names=cols,sep=' ')\n" ] }, { @@ -150,11 +198,130 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
timerad_flowfpv_closefpv_openhighbypassbpv_closebpv_openclass
550810-6112588644
56096052-4404444
50-189-7500394021
53979042-22537124
55282054-6262821
\n", + "
" + ], + "text/plain": [ + " time rad_flow fpv_close fpv_open high bypass bpv_close bpv_open \\\n", + "55 0 81 0 -6 11 25 88 64 \n", + "56 0 96 0 52 -4 40 44 4 \n", + "50 -1 89 -7 50 0 39 40 2 \n", + "53 9 79 0 42 -2 25 37 12 \n", + "55 2 82 0 54 -6 26 28 2 \n", + "\n", + " class \n", + "55 4 \n", + "56 4 \n", + "50 1 \n", + "53 4 \n", + "55 1 " + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your code here" + "# your code here\n", + "shuttle.head()" ] }, { @@ -170,7 +337,8 @@ "metadata": {}, "outputs": [], "source": [ - "# your code here" + "# your code here\n", + "shuttle = pd.to_csv(r'C:/Users/Geralt/Desktop/DataGip/Jossue/repo/', header = False)" ] }, { @@ -258,7 +426,8 @@ "metadata": {}, "outputs": [], "source": [ - "# your code here" + "# your code here\n", + "feritility = https://archive.ics.uci.edu/ml/datasets/Fertility" ] } ], @@ -278,7 +447,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.8.3" } }, "nbformat": 4, diff --git a/module-1/Map-Reduce-Filter/.DS_Store b/module-1/Map-Reduce-Filter/.DS_Store new file mode 100644 index 00000000..17fe7963 Binary files /dev/null and b/module-1/Map-Reduce-Filter/.DS_Store differ diff --git a/module-1/Map-Reduce-Filter/your-code/.ipynb_checkpoints/Untitled-checkpoint.ipynb b/module-1/Map-Reduce-Filter/your-code/.ipynb_checkpoints/Untitled-checkpoint.ipynb new file mode 100644 index 00000000..7fec5150 --- /dev/null +++ b/module-1/Map-Reduce-Filter/your-code/.ipynb_checkpoints/Untitled-checkpoint.ipynb @@ -0,0 +1,6 @@ +{ + "cells": [], + "metadata": {}, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/module-1/Map-Reduce-Filter/your-code/.ipynb_checkpoints/main-checkpoint.ipynb b/module-1/Map-Reduce-Filter/your-code/.ipynb_checkpoints/main-checkpoint.ipynb new file mode 100644 index 00000000..43292b53 --- /dev/null +++ b/module-1/Map-Reduce-Filter/your-code/.ipynb_checkpoints/main-checkpoint.ipynb @@ -0,0 +1,420 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Before your start:\n", + "- Read the README.md file\n", + "- Comment as much as you can and use the resources in the README.md file\n", + "- Happy learning!" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Import reduce from functools, numpy and pandas" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 - Mapping\n", + "\n", + "#### We will use the map function to clean up words in a book.\n", + "\n", + "In the following cell, we will read a text file containing the book The Prophet by Khalil Gibran." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Run this code:\n", + "\n", + "location = '../data/58585-0.txt'\n", + "with open(location, 'r', encoding=\"utf8\") as f:\n", + " prophet = f.read().split(' ')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Let's remove the first 568 words since they contain information about the book but are not part of the book itself. \n", + "\n", + "Do this by removing from `prophet` elements 0 through 567 of the list (you can also do this by keeping elements 568 through the last element)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If you look through the words, you will find that many words have a reference attached to them. For example, let's look at words 1 through 10." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### The next step is to create a function that will remove references. \n", + "\n", + "We will do this by splitting the string on the `{` character and keeping only the part before this character. Write your function below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def reference(x):\n", + " '''\n", + " Input: A string\n", + " Output: The string with references removed\n", + " \n", + " Example:\n", + " Input: 'the{7}'\n", + " Output: 'the'\n", + " '''\n", + " \n", + " # your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now that we have our function, use the `map()` function to apply this function to our book, The Prophet. Return the resulting list to a new list called `prophet_reference`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Another thing you may have noticed is that some words contain a line break. Let's write a function to split those words. Our function will return the string split on the character `\\n`. Write your function in the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def line_break(x):\n", + " '''\n", + " Input: A string\n", + " Output: A list of strings split on the line break (\\n) character\n", + " \n", + " Example:\n", + " Input: 'the\\nbeloved'\n", + " Output: ['the', 'beloved']\n", + " '''\n", + " \n", + " # your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Apply the `line_break` function to the `prophet_reference` list. Name the new list `prophet_line`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If you look at the elements of `prophet_line`, you will see that the function returned lists and not strings. Our list is now a list of lists. Flatten the list using list comprehension. Assign this new list to `prophet_flat`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Filtering\n", + "\n", + "When printing out a few words from the book, we see that there are words that we may not want to keep if we choose to analyze the corpus of text. Below is a list of words that we would like to get rid of. Create a function that will return false if it contains a word from the list of words specified and true otherwise." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def word_filter(x):\n", + " '''\n", + " Input: A string\n", + " Output: True if the word is not in the specified list \n", + " and False if the word is in the list.\n", + " \n", + " Example:\n", + " word list = ['and', 'the']\n", + " Input: 'and'\n", + " Output: False\n", + " \n", + " Input: 'John'\n", + " Output: True\n", + " '''\n", + " \n", + " word_list = ['and', 'the', 'a', 'an']\n", + " \n", + " # your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Use the `filter()` function to filter out the words speficied in the `word_filter()` function. Store the filtered list in the variable `prophet_filter`." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge\n", + "\n", + "Rewrite the `word_filter` function above to not be case sensitive." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def word_filter_case(x):\n", + " \n", + " word_list = ['and', 'the', 'a', 'an']\n", + " \n", + " # your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 3 - Reducing\n", + "\n", + "#### Now that we have significantly cleaned up our text corpus, let's use the `reduce()` function to put the words back together into one long string separated by spaces. \n", + "\n", + "We will start by writing a function that takes two strings and concatenates them together with a space between the two strings." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def concat_space(a, b):\n", + " '''\n", + " Input:Two strings\n", + " Output: A single string separated by a space\n", + " \n", + " Example:\n", + " Input: 'John', 'Smith'\n", + " Output: 'John Smith'\n", + " '''\n", + " \n", + " # your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Use the function above to reduce the text corpus in the list `prophet_filter` into a single string. Assign this new string to the variable `prophet_string`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 4 - Applying Functions to DataFrames\n", + "\n", + "#### Our next step is to use the apply function to a dataframe and transform all cells.\n", + "\n", + "To do this, we will connect to Ironhack's database and retrieve the data from the *pollution* database. Select the *beijing_pollution* table and retrieve its data." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's look at the data using the `head()` function." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The next step is to create a function that divides a cell by 24 to produce an hourly figure. Write the function below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def hourly(x):\n", + " '''\n", + " Input: A numerical value\n", + " Output: The value divided by 24\n", + " \n", + " Example:\n", + " Input: 48\n", + " Output: 2.0\n", + " '''\n", + " \n", + " # your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Apply this function to the columns `Iws`, `Is`, and `Ir`. Store this new dataframe in the variable `pm25_hourly`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Our last challenge will be to create an aggregate function and apply it to a select group of columns in our dataframe.\n", + "\n", + "Write a function that returns the standard deviation of a column divided by the length of a column minus 1. Since we are using pandas, do not use the `len()` function. One alternative is to use `count()`. Also, use the numpy version of standard deviation." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def sample_sd(x):\n", + " '''\n", + " Input: A Pandas series of values\n", + " Output: the standard deviation divided by the number of elements in the series\n", + " \n", + " Example:\n", + " Input: pd.Series([1,2,3,4])\n", + " Output: 0.3726779962\n", + " '''\n", + " \n", + " # your code here" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1/Map-Reduce-Filter/your-code/Untitled.ipynb b/module-1/Map-Reduce-Filter/your-code/Untitled.ipynb new file mode 100644 index 00000000..5ccd4e53 --- /dev/null +++ b/module-1/Map-Reduce-Filter/your-code/Untitled.ipynb @@ -0,0 +1,116 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "import re" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['a', 'a', 'a']" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = 'That Person wears marvelous trousers'\n", + "\n", + "pattern ='a'\n", + "re.findall(pattern, text)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "pattern = '[er]'#either e or r" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['e', 'r', 'e', 'r', 'r', 'e', 'r', 'e', 'r']" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "re.findall(pattern,text)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['gray', 'grey']" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "text = \"Is it spelled gray or grey?\"\n", + "\n", + "pattern = 'gr[ae]y'\n", + "re.findall(pattern,text)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/module-1/Map-Reduce-Filter/your-code/main.ipynb b/module-1/Map-Reduce-Filter/your-code/main.ipynb index 51d50b0d..6a6fce64 100644 --- a/module-1/Map-Reduce-Filter/your-code/main.ipynb +++ b/module-1/Map-Reduce-Filter/your-code/main.ipynb @@ -12,11 +12,14 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 12, "metadata": {}, "outputs": [], "source": [ - "# Import reduce from functools, numpy and pandas" + "# Import reduce from functools, numpy and pandas\n", + "import pandas as pd \n", + "import numpy as np \n", + "from functools import reduce\n" ] }, { @@ -32,15 +35,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13637\n" + ] + } + ], "source": [ "# Run this code:\n", "\n", "location = '../data/58585-0.txt'\n", "with open(location, 'r', encoding=\"utf8\") as f:\n", - " prophet = f.read().split(' ')" + " prophet = f.read().split(' ')\n", + " \n", + " #I print the lenght of the list to verify\n", + " \n", + "print(len(prophet))" ] }, { @@ -54,11 +69,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "13069\n" + ] + } + ], "source": [ - "# your code here" + "# your code here\n", + "\n", + "del prophet[0:568]\n", + " #I print the lenght of the list to verify if words were removed\n", + "print(len(prophet)) #Lenght is 13,070, is 13,637 - 568 -1 =13,070\n" ] }, { @@ -70,11 +97,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['the{7}', 'chosen', 'and', 'the\\nbeloved,', 'who', 'was', 'a', 'dawn', 'unto']\n" + ] + } + ], "source": [ - "# your code here" + "# your code here\n", + "print(prophet[1:10])" ] }, { @@ -88,12 +124,40 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "\"\\n Input: A string\\n Output: The string with references removed\\n \\n Example:\\n Input: 'the{7}'\\n Output: 'the'\\n \"" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "def reference(x):\n", - " '''\n", + "#Notes to myself: \n", + "#Strings in Python are immutable, .replace will just to create a new string\n", + "#rather than changing the original one. \n", + "\n", + "#Pablo's answer\n", + "#Clean = [x[:x.find('{')] if '{' in x else x for x in prophet]\n", + "\n", + "\n", + "def reference (x):\n", + " return x.split('{')[0] #everything before \n", + "\n", + "#How to do the function for two parameters\n", + "\n", + "#Now with lambdas\n", + "#rmv = ['{'] \n", + "#reference = lambda x:x is in rmv \n", + "\n", + "\n", + "'''\n", " Input: A string\n", " Output: The string with references removed\n", " \n", @@ -101,7 +165,6 @@ " Input: 'the{7}'\n", " Output: 'the'\n", " '''\n", - " \n", " # your code here" ] }, @@ -114,13 +177,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 17, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "# your code here\n", + "prophet_reference = list(map(reference,prophet))\n", + "#A map will return an object, to be safe change to\n", + "# a list from the a list from " ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "markdown", "metadata": {}, @@ -130,21 +203,36 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "metadata": {}, "outputs": [], "source": [ - "def line_break(x):\n", - " '''\n", - " Input: A string\n", - " Output: A list of strings split on the line break (\\n) character\n", - " \n", - " Example:\n", - " Input: 'the\\nbeloved'\n", - " Output: ['the', 'beloved']\n", - " '''\n", - " \n", - " # your code here" + "#[0] #What is the Zero doing? - \n", + "\n", + "def line_break (x):\n", + " return x.split('\\n')\n", + "\n", + "#prophet_references = \n", + "#for line in prophet_reference:\n", + "#prophet_reference.append(line.strip().split('\\n'))\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['PROPHET\\n\\n|Almustafa,', 'the', 'chosen', 'and', 'the\\nbeloved,', 'who', 'was', 'a', 'dawn', 'unto', 'his', 'own\\nday,', 'had', 'waited', 'twelve', 'years', 'in', 'the', 'city\\nof', 'Orphalese', 'for', 'his', 'ship', 'that', 'was', 'to\\nreturn', 'and', 'bear', 'him', 'back', 'to', 'the', 'isle', 'of\\nhis', 'birth.\\n\\nAnd', 'in', 'the', 'twelfth', 'year,', 'on', 'the', 'seventh\\nday', 'of', 'Ielool,', 'the', 'month', 'of', 'reaping,', 'he\\nclimbed', 'the', 'hill', 'without', 'the', 'city', 'walls\\nand', 'looked', 'seaward;', 'and', 'he', 'beheld', 'his\\nship', 'coming', 'with', 'the', 'mist.\\n\\nThen', 'the', 'gates', 'of', 'his', 'heart', 'were', 'flung\\nopen,', 'and', 'his', 'joy', 'flew', 'far', 'over', 'the', 'sea.\\nAnd', 'he', 'closed', 'his', 'eyes', 'and', 'prayed', 'in', 'the\\nsilences', 'of', 'his', 'soul.\\n\\n*****\\n\\nBut', 'as', 'he', 'descended', 'the', 'hill,', 'a', 'sadness\\ncame', 'upon', 'him,', 'and', 'he', 'thought', 'in', 'his\\nheart:\\n\\nHow', 'shall', 'I', 'go', 'in', 'peace', 'and', 'without\\nsorrow?', 'Nay,', 'not', 'without', 'a', 'wound', 'in', 'the\\nspirit', 'shall', 'I', 'leave', 'this', 'city.', '', 'the', 'days', 'of', 'pain', 'I', 'have', 'spent\\nwithin', 'its', 'walls,', 'and', 'long', 'were', 'the\\nnights', 'of', 'aloneness;', 'and', 'who', 'can', 'depart\\nfrom', 'his', 'pain', 'and', 'his', 'aloneness', 'without\\nregret?\\n\\nToo', 'many', 'fragments', 'of', 'the', 'spirit', 'have', 'I\\nscattered', 'in', 'these', 'streets,', 'and', 'too', 'many\\nare', 'the', 'children', 'of', 'my', 'longing', 'that', 'walk\\nnaked', 'among', 'these', 'hills,', 'and', 'I', 'cannot\\nwithdraw', 'from', 'them', 'without', 'a', 'burden', 'and\\nan', 'ache.\\n\\nIt', 'is', 'not', 'a', 'garment', 'I', 'cast', 'off', 'this\\nday,', 'but', 'a', 'skin', 'that', 'I', 'tear', 'with', 'my', 'own\\nhands.\\n\\nNor', 'is', 'it', 'a', 'thought', 'I', 'leave', 'behind', 'me,\\nbut', 'a', 'heart', 'made', 'sweet', 'with', 'hunger', 'and\\nwith', 'thirst.\\n\\n*****\\n\\nYet', 'I', 'cannot', 'tarry', 'longer.\\n\\nThe', 'sea', 'that', 'calls', 'all', 'things', 'unto', 'her\\ncalls', 'me,', 'and', 'I', 'must', 'embark.\\n\\nFor', 'to', 'stay,', 'though', 'the', 'hours', 'burn', 'in\\nthe', 'night,', 'is', 'to', 'freeze', 'and', 'crystallize\\nand', 'be', 'bound', 'in', 'a', 'mould.\\n\\nFain', 'would', 'I', 'take', 'with', 'me', 'all', 'that', 'is\\nhere.', 'But', 'how', 'shall', 'I?\\n\\nA', 'voice', 'cannot', 'carry', 'the', 'tongue', 'and\\n', 'lips', 'that', 'gave', 'it', 'wings.', 'Alone\\nmust', 'it', 'seek', 'the', 'ether.\\n\\nAnd', 'alone', 'and', 'without', 'his', 'nest', 'shall', 'the\\neagle', 'fly', 'across', 'the', 'sun.\\n\\n*****\\n\\nNow', 'when', 'he', 'reached', 'the', 'foot', 'of', 'the\\nhill,', 'he', 'turned', 'again', 'towards', 'the', 'sea,\\nand', 'he', 'saw', 'his', 'ship', 'approaching', 'the\\nharbour,', 'and', 'upon', 'her', 'prow', 'the', 'mariners,\\nthe', 'men', 'of', 'his', 'own', 'land.\\n\\nAnd', 'his', 'soul', 'cried', 'out', 'to', 'them,', 'and', 'he\\nsaid:\\n\\nSons', 'of', 'my', 'ancient', 'mother,', 'you', 'riders', 'of\\nthe', 'tides,\\n\\nHow', 'often', 'have', 'you', 'sailed', 'in', 'my', 'dreams.\\nAnd', 'now', 'you', 'come', 'in', 'my', 'awakening,', 'which\\nis', 'my', 'deeper', 'dream.\\n\\nReady', 'am', 'I', 'to', 'go,', 'and', 'my', 'eagerness', 'with\\nsails', 'full', 'set', 'awaits', 'the', 'wind.\\n\\nOnly', 'another', 'breath', 'will', 'I', 'breathe', 'in\\nthis', 'still', 'air,', 'only', 'another', 'loving', 'look\\ncast', 'backward,\\n\\nAnd', 'then', 'I', 'shall', 'stand', 'among', 'you,', 'a\\nseafarer', 'among', 'seafarers.', '', 'you,\\nvast', 'sea,', 'sleepless', 'mother,\\n\\nWho', 'alone', 'are', 'peace', 'and', 'freedom', 'to', 'the\\nriver', 'and', 'the', 'stream,\\n\\nOnly', 'another', 'winding', 'will', 'this', 'stream\\nmake,', 'only', 'another', 'murmur', 'in', 'this', 'glade,\\n\\nAnd', 'then', 'shall', 'I', 'come', 'to', 'you,', 'a\\nboundless', 'drop', 'to', 'a', 'boundless', 'ocean.\\n\\n*****\\n\\nAnd', 'as', 'he', 'walked', 'he', 'saw', 'from', 'afar', 'men\\nand', 'women', 'leaving', 'their', 'fields', 'and', 'their\\nvineyards', 'and', 'hastening', 'towards', 'the', 'city\\ngates.\\n\\nAnd', 'he', 'heard', 'their', 'voices', 'calling', 'his\\nname,', 'and', 'shouting', 'from', 'field', 'to', 'field\\ntelling', 'one', 'another', 'of', 'the', 'coming', 'of', 'his\\nship.\\n\\nAnd', 'he', 'said', 'to', 'himself:\\n\\nShall', 'the', 'day', 'of', 'parting', 'be', 'the', 'day', 'of\\ngathering?\\n\\nAnd', 'shall', 'it', 'be', 'said', 'that', 'my', 'eve', 'was', 'in\\ntruth', 'my', 'dawn?\\n\\nAnd', 'what', 'shall', 'I', 'give', 'unto', 'him', 'who', 'has\\nleft', 'his', 'plough', 'in', 'midfurrow,', 'or', 'to\\nhim', 'who', 'has', 'stopped', 'the', 'wheel', 'of', 'his\\nwinepress?', '', 'my', 'heart', 'become', 'a\\ntree', 'heavy-laden', 'with', 'fruit', 'that', 'I', 'may\\ngather', 'and', 'give', 'unto', 'them?\\n\\nAnd', 'shall', 'my', 'desires', 'flow', 'like', 'a\\nfountain', 'that', 'I', 'may', 'fill', 'their', 'cups?\\n\\nAm', 'I', 'a', 'harp', 'that', 'the', 'hand', 'of', 'the', 'mighty\\nmay', 'touch', 'me,', 'or', 'a', 'flute', 'that', 'his', 'breath\\nmay', 'pass', 'through', 'me?\\n\\nA', 'seeker', 'of', 'silences', 'am', 'I,', 'and', 'what\\ntreasure', 'have', 'I', 'found', 'in', 'silences', 'that', 'I\\nmay', 'dispense', 'with', 'confidence?\\n\\nIf', 'this', 'is', 'my', 'day', 'of', 'harvest,', 'in', 'what\\nfields', 'have', 'I', 'sowed', 'the', 'seed,', 'and', 'in\\nwhat', 'unremembered', 'seasons?\\n\\nIf', 'this', 'indeed', 'be', 'the', 'hour', 'in', 'which', 'I\\nlift', 'up', 'my', 'lantern,', 'it', 'is', 'not', 'my', 'flame\\nthat', 'shall', 'burn', 'therein.\\n\\nEmpty', 'and', 'dark', 'shall', 'I', 'raise', 'my', 'lantern,\\n\\nAnd', 'the', 'guardian', 'of', 'the', 'night', 'shall', 'fill\\nit', 'with', 'oil', 'and', 'he', 'shall', 'light', 'it', 'also.\\n\\n*****\\n\\nThese', 'things', 'he', 'said', 'in', 'words.', 'But', 'much\\nin', 'his', 'heart', 'remained', 'unsaid.', 'For', '', 'could', 'not', 'speak', 'his', 'deeper\\nsecret.\\n\\n*****\\n\\n[Illustration:', '0020]\\n\\nAnd', 'when', 'he', 'entered', 'into', 'the', 'city', 'all\\nthe', 'people', 'came', 'to', 'meet', 'him,', 'and', 'they\\nwere', 'crying', 'out', 'to', 'him', 'as', 'with', 'one\\nvoice.\\n\\nAnd', 'the', 'elders', 'of', 'the', 'city', 'stood', 'forth\\nand', 'said:\\n\\nGo', 'not', 'yet', 'away', 'from', 'us.\\n\\nA', 'noontide', 'have', 'you', 'been', 'in', 'our\\ntwilight,', 'and', 'your', 'youth', 'has', 'given', 'us\\ndreams', 'to', 'dream.\\n\\nNo', 'stranger', 'are', 'you', 'among', 'us,', 'nor\\na', 'guest,', 'but', 'our', 'son', 'and', 'our', 'dearly\\nbeloved.\\n\\nSuffer', 'not', 'yet', 'our', 'eyes', 'to', 'hunger', 'for\\nyour', 'face.\\n\\n*****\\n\\nAnd', 'the', 'priests', 'and', 'the', 'priestesses', 'said\\nunto', 'him:\\n\\nLet', 'not', 'the', 'waves', 'of', 'the', 'sea', 'separate', 'us\\nnow,', 'and', 'the', 'years', 'you', 'have', 'spent', 'in', 'our\\nmidst', 'become', 'a', 'memory.\\n\\nYou', 'have', 'walked', 'among', 'us', 'a', 'spirit,\\n', 'your', 'shadow', 'has', 'been', 'a', 'light\\nupon', 'our', 'faces.\\n\\nMuch', 'have', 'we', 'loved', 'you.', 'But', 'speechless\\nwas', 'our', 'love,', 'and', 'with', 'veils', 'has', 'it', 'been\\nveiled.\\n\\nYet', 'now', 'it', 'cries', 'aloud', 'unto', 'you,', 'and\\nwould', 'stand', 'revealed', 'before', 'you.\\n\\nAnd', 'ever', 'has', 'it', 'been', 'that', 'love', 'knows\\nnot', 'its', 'own', 'depth', 'until', 'the', 'hour', 'of\\nseparation.\\n\\n*****\\n\\nAnd', 'others', 'came', 'also', 'and', 'entreated', 'him.\\nBut', 'he', 'answered', 'them', 'not.', 'He', 'only', 'bent\\nhis', 'head;', 'and', 'those', 'who', 'stood', 'near', 'saw\\nhis', 'tears', 'falling', 'upon', 'his', 'breast.\\n\\nAnd', 'he', 'and', 'the', 'people', 'proceeded', 'towards\\nthe', 'great', 'square', 'before', 'the', 'temple.\\n\\nAnd', 'there', 'came', 'out', 'of', 'the', 'sanctuary', 'a\\nwoman', 'whose', 'name', 'was', 'Almitra.', 'And', 'she\\nwas', 'a', 'seeress.\\n\\nAnd', 'he', 'looked', 'upon', 'her', 'with', 'exceeding\\ntenderness,', 'for', 'it', 'was', 'she', 'who', 'had', 'first\\nsought', 'and', 'believed', 'in', 'him', 'when', 'he', 'had\\nbeen', 'but', 'a', 'day', 'in', 'their', 'city.', '', 'hailed', 'him,', 'saying:\\n\\nProphet', 'of', 'God,', 'in', 'quest', 'of', 'the\\nuttermost,', 'long', 'have', 'you', 'searched', 'the\\ndistances', 'for', 'your', 'ship.\\n\\nAnd', 'now', 'your', 'ship', 'has', 'come,', 'and', 'you', 'must\\nneeds', 'go.\\n\\nDeep', 'is', 'your', 'longing', 'for', 'the', 'land', 'of\\nyour', 'memories', 'and', 'the', 'dwelling', 'place\\nof', 'your', 'greater', 'desires;', 'and', 'our', 'love\\nwould', 'not', 'bind', 'you', 'nor', 'our', 'needs', 'hold\\nyou.\\n\\nYet', 'this', 'we', 'ask', 'ere', 'you', 'leave', 'us,', 'that\\nyou', 'speak', 'to', 'us', 'and', 'give', 'us', 'of', 'your\\ntruth.\\n\\nAnd', 'we', 'will', 'give', 'it', 'unto', 'our', 'children,\\nand', 'they', 'unto', 'their', 'children,', 'and', 'it\\nshall', 'not', 'perish.\\n\\nIn', 'your', 'aloneness', 'you', 'have', 'watched', 'with\\nour', 'days,', 'and', 'in', 'your', 'wakefulness', 'you\\nhave', 'listened', 'to', 'the', 'weeping', 'and', 'the\\nlaughter', 'of', 'our', 'sleep.\\n\\nNow', 'therefore', 'disclose', 'us', 'to', 'ourselves,\\nand', 'tell', 'us', 'all', 'that', 'has', 'been', 'shown\\nyou', 'of', 'that', 'which', 'is', 'between', 'birth', 'and\\ndeath.\\n\\n*****\\n\\nAnd', 'he', 'answered,\\n\\nPeople', 'of', 'Orphalese,', 'of', 'what', 'can', 'I\\n', 'save', 'of', 'that', 'which', 'is', 'even', 'now\\nmoving', 'within', 'your', 'souls?\\n\\n*****', '*****\\n\\nThen', 'said', 'Almitra,', 'Speak', 'to', 'us', 'of\\n_Love_.\\n\\nAnd', 'he', 'raised', 'his', 'head', 'and', 'looked', 'upon\\nthe', 'people,', 'and', 'there', 'fell', 'a', 'stillness\\nupon', 'them.', 'And', 'with', 'a', 'great', 'voice', 'he\\nsaid:\\n\\nWhen', 'love', 'beckons', 'to', 'you,', 'follow', 'him,\\n\\nThough', 'his', 'ways', 'are', 'hard', 'and', 'steep.\\n\\nAnd', 'when', 'his', 'wings', 'enfold', 'you', 'yield', 'to\\nhim,\\n\\nThough', 'the', 'sword', 'hidden', 'among', 'his\\npinions', 'may', 'wound', 'you.\\n\\nAnd', 'when', 'he', 'speaks', 'to', 'you', 'believe', 'in\\nhim,\\n\\nThough', 'his', 'voice', 'may', 'shatter', 'your', 'dreams\\nas', 'the', 'north', 'wind', 'lays', 'waste', 'the', 'garden.\\n\\nFor', 'even', 'as', 'love', 'crowns', 'you', 'so', 'shall\\nhe', 'crucify', 'you.', 'Even', 'as', 'he', 'is', 'for', 'your\\ngrowth', 'so', 'is', 'he', 'for', 'your', 'pruning.\\n\\nEven', 'as', 'he', 'ascends', 'to', 'your', 'height', 'and\\n', 'your', 'tenderest', 'branches\\nthat', 'quiver', 'in', 'the', 'sun,\\n\\nSo', 'shall', 'he', 'descend', 'to', 'your', 'roots', 'and\\nshake', 'them', 'in', 'their', 'clinging', 'to', 'the\\nearth.\\n\\n*****\\n\\nLike', 'sheaves', 'of', 'corn', 'he', 'gathers', 'you', 'unto\\nhimself.\\n\\nHe', 'threshes', 'you', 'to', 'make', 'you', 'naked.\\n\\nHe', 'sifts', 'you', 'to', 'free', 'you', 'from', 'your\\nhusks.\\n\\nHe', 'grinds', 'you', 'to', 'whiteness.\\n\\nHe', 'kneads', 'you', 'until', 'you', 'are', 'pliant;\\n\\nAnd', 'then', 'he', 'assigns', 'you', 'to', 'his', 'sacred\\nfire,', 'that', 'you', 'may', 'become', 'sacred', 'bread\\nfor', 'God’s', 'sacred', 'feast.\\n\\n*****\\n\\nAll', 'these', 'things', 'shall', 'love', 'do', 'unto', 'you\\nthat', 'you', 'may', 'know', 'the', 'secrets', 'of', 'your\\nheart,', 'and', 'in', 'that', 'knowledge', 'become', 'a\\nfragment', 'of', 'Life’s', 'heart.\\n\\nBut', 'if', 'in', 'your', 'fear', 'you', 'would', 'seek', 'only\\nlove’s', 'peace', 'and', 'love’s', 'pleasure,\\n\\nThen', 'it', 'is', 'better', 'for', 'you', 'that', 'you\\ncover', '', 'nakedness', 'and', 'pass', 'out', 'of\\nlove’s', 'threshing-floor,\\n\\nInto', 'the', 'seasonless', 'world', 'where', 'you\\nshall', 'laugh,', 'but', 'not', 'all', 'of', 'your\\nlaughter,', 'and', 'weep,', 'but', 'not', 'all', 'of', 'your\\ntears.\\n\\n*****\\n\\nLove', 'gives', 'naught', 'but', 'itself', 'and', 'takes\\nnaught', 'but', 'from', 'itself.\\n\\nLove', 'possesses', 'not', 'nor', 'would', 'it', 'be\\npossessed;\\n\\nFor', 'love', 'is', 'sufficient', 'unto', 'love.\\n\\nWhen', 'you', 'love', 'you', 'should', 'not', 'say,', '“God\\nis', 'in', 'my', 'heart,”', 'but', 'rather,', '“I', 'am', 'in\\nthe', 'heart', 'of', 'God.”\\n\\nAnd', 'think', 'not', 'you', 'can', 'direct', 'the', 'course\\nof', 'love,', 'for', 'love,', 'if', 'it', 'finds', 'you\\nworthy,', 'directs', 'your', 'course.\\n\\nLove', 'has', 'no', 'other', 'desire', 'but', 'to', 'fulfil\\nitself.\\n\\nBut', 'if', 'you', 'love', 'and', 'must', 'needs', 'have\\ndesires,', 'let', 'these', 'be', 'your', 'desires:\\n\\nTo', 'melt', 'and', 'be', 'like', 'a', 'running', 'brook', 'that\\nsings', 'its', 'melody', 'to', 'the', 'night.', '', 'the', 'pain', 'of', 'too', 'much', 'tenderness.\\n\\nTo', 'be', 'wounded', 'by', 'your', 'own', 'understanding\\nof', 'love;\\n\\nAnd', 'to', 'bleed', 'willingly', 'and', 'joyfully.\\n\\nTo', 'wake', 'at', 'dawn', 'with', 'a', 'winged', 'heart', 'and\\ngive', 'thanks', 'for', 'another', 'day', 'of', 'loving;\\n\\nTo', 'rest', 'at', 'the', 'noon', 'hour', 'and', 'meditate\\nlove’s', 'ecstacy;\\n\\nTo', 'return', 'home', 'at', 'eventide', 'with\\ngratitude;\\n\\nAnd', 'then', 'to', 'sleep', 'with', 'a', 'prayer', 'for\\nthe', 'beloved', 'in', 'your', 'heart', 'and', 'a', 'song', 'of\\npraise', 'upon', 'your', 'lips.\\n\\n[Illustration:', '0029]\\n\\n*****', '*****\\n\\n', 'Almitra', 'spoke', 'again', 'and', 'said,\\nAnd', 'what', 'of', '_Marriage_', 'master?\\n\\nAnd', 'he', 'answered', 'saying:\\n\\nYou', 'were', 'born', 'together,', 'and', 'together', 'you\\nshall', 'be', 'forevermore.\\n\\nYou', 'shall', 'be', 'together', 'when', 'the', 'white\\nwings', 'of', 'death', 'scatter', 'your', 'days.\\n\\nAye,', 'you', 'shall', 'be', 'together', 'even', 'in', 'the\\nsilent', 'memory', 'of', 'God.\\n\\nBut', 'let', 'there', 'be', 'spaces', 'in', 'your\\ntogetherness,\\n\\nAnd', 'let', 'the', 'winds', 'of', 'the', 'heavens', 'dance\\nbetween', 'you.\\n\\n*****\\n\\nLove', 'one', 'another,', 'but', 'make', 'not', 'a', 'bond', 'of\\nlove:\\n\\nLet', 'it', 'rather', 'be', 'a', 'moving', 'sea', 'between\\nthe', 'shores', 'of', 'your', 'souls.\\n\\nFill', 'each', 'other’s', 'cup', 'but', 'drink', 'not', 'from\\none', 'cup.\\n\\nGive', 'one', 'another', 'of', 'your', 'bread', 'but', 'eat\\nnot', 'from', 'the', 'same', 'loaf.', '', 'and\\ndance', 'together', 'and', 'be', 'joyous,', 'but', 'let\\neach', 'one', 'of', 'you', 'be', 'alone,\\n\\nEven', 'as', 'the', 'strings', 'of', 'a', 'lute', 'are', 'alone\\nthough', 'they', 'quiver', 'with', 'the', 'same', 'music.\\n\\n*****\\n\\nGive', 'your', 'hearts,', 'but', 'not', 'into', 'each\\nother’s', 'keeping.\\n\\nFor', 'only', 'the', 'hand', 'of', 'Life', 'can', 'contain\\nyour', 'hearts.\\n\\nAnd', 'stand', 'together', 'yet', 'not', 'too', 'near\\ntogether:\\n\\nFor', 'the', 'pillars', 'of', 'the', 'temple', 'stand\\napart,\\n\\nAnd', 'the', 'oak', 'tree', 'and', 'the', 'cypress', 'grow\\nnot', 'in', 'each', 'other’s', 'shadow.\\n\\n[Illustration:', '0032]\\n\\n*****', '*****\\n\\n', 'a', 'woman', 'who', 'held', 'a', 'babe\\nagainst', 'her', 'bosom', 'said,', 'Speak', 'to', 'us', 'of\\n_Children_.\\n\\nAnd', 'he', 'said:\\n\\nYour', 'children', 'are', 'not', 'your', 'children.\\n\\nThey', 'are', 'the', 'sons', 'and', 'daughters', 'of\\nLife’s', 'longing', 'for', 'itself.\\n\\nThey', 'come', 'through', 'you', 'but', 'not', 'from', 'you,\\n\\nAnd', 'though', 'they', 'are', 'with', 'you', 'yet', 'they\\nbelong', 'not', 'to', 'you.\\n\\n*****\\n\\nYou', 'may', 'give', 'them', 'your', 'love', 'but', 'not', 'your\\nthoughts,\\n\\nFor', 'they', 'have', 'their', 'own', 'thoughts.\\n\\nYou', 'may', 'house', 'their', 'bodies', 'but', 'not', 'their\\nsouls,\\n\\nFor', 'their', 'souls', 'dwell', 'in', 'the', 'house', 'of\\ntomorrow,', 'which', 'you', 'cannot', 'visit,', 'not\\neven', 'in', 'your', 'dreams.\\n\\nYou', 'may', 'strive', 'to', 'be', 'like', 'them,', 'but', 'seek\\nnot', 'to', 'make', 'them', 'like', 'you.', '', 'goes', 'not', 'backward', 'nor', 'tarries', 'with\\nyesterday.\\n\\nYou', 'are', 'the', 'bows', 'from', 'which', 'your\\nchildren', 'as', 'living', 'arrows', 'are', 'sent\\nforth.\\n\\nThe', 'archer', 'sees', 'the', 'mark', 'upon', 'the', 'path\\nof', 'the', 'infinite,', 'and', 'He', 'bends', 'you', 'with\\nHis', 'might', 'that', 'His', 'arrows', 'may', 'go', 'swift\\nand', 'far.\\n\\nLet', 'your', 'bending', 'in', 'the', 'Archer’s', 'hand', 'be\\nfor', 'gladness;\\n\\nFor', 'even', 'as', 'he', 'loves', 'the', 'arrow', 'that\\nflies,', 'so', 'He', 'loves', 'also', 'the', 'bow', 'that', 'is\\nstable.\\n\\n*****', '*****\\n\\n', 'said', 'a', 'rich', 'man,', 'Speak', 'to', 'us', 'of\\n_Giving_.\\n\\nAnd', 'he', 'answered:\\n\\nYou', 'give', 'but', 'little', 'when', 'you', 'give', 'of\\nyour', 'possessions.\\n\\nIt', 'is', 'when', 'you', 'give', 'of', 'yourself', 'that', 'you\\ntruly', 'give.\\n\\nFor', 'what', 'are', 'your', 'possessions', 'but', 'things\\nyou', 'keep', 'and', 'guard', 'for', 'fear', 'you', 'may', 'need\\nthem', 'tomorrow?\\n\\nAnd', 'tomorrow,', 'what', 'shall', 'tomorrow', 'bring\\nto', 'the', 'overprudent', 'dog', 'burying', 'bones\\nin', 'the', 'trackless', 'sand', 'as', 'he', 'follows', 'the\\npilgrims', 'to', 'the', 'holy', 'city?\\n\\nAnd', 'what', 'is', 'fear', 'of', 'need', 'but', 'need\\nitself?\\n\\nIs', 'not', 'dread', 'of', 'thirst', 'when', 'your', 'well', 'is\\nfull,', 'the', 'thirst', 'that', 'is', 'unquenchable?\\n\\nThere', 'are', 'those', 'who', 'give', 'little', 'of', 'the\\n', 'which', 'they', 'have--and', 'they', 'give\\nit', 'for', 'recognition', 'and', 'their', 'hidden\\ndesire', 'makes', 'their', 'gifts', 'unwholesome.\\n\\nAnd', 'there', 'are', 'those', 'who', 'have', 'little', 'and\\ngive', 'it', 'all.\\n\\nThese', 'are', 'the', 'believers', 'in', 'life', 'and\\nthe', 'bounty', 'of', 'life,', 'and', 'their', 'coffer', 'is\\nnever', 'empty.\\n\\nThere', 'are', 'those', 'who', 'give', 'with', 'joy,', 'and\\nthat', 'joy', 'is', 'their', 'reward.\\n\\nAnd', 'there', 'are', 'those', 'who', 'give', 'with', 'pain,\\nand', 'that', 'pain', 'is', 'their', 'baptism.\\n\\nAnd', 'there', 'are', 'those', 'who', 'give', 'and', 'know\\nnot', 'pain', 'in', 'giving,', 'nor', 'do', 'they', 'seek\\njoy,', 'nor', 'give', 'with', 'mindfulness', 'of\\nvirtue;\\n\\nThey', 'give', 'as', 'in', 'yonder', 'valley', 'the', 'myrtle\\nbreathes', 'its', 'fragrance', 'into', 'space.\\n\\nThrough', 'the', 'hands', 'of', 'such', 'as', 'these', 'God\\nspeaks,', 'and', 'from', 'behind', 'their', 'eyes', 'He\\nsmiles', 'upon', 'the', 'earth.\\n\\n[Illustration:', '0039]\\n\\nIt', 'is', 'well', 'to', 'give', 'when', 'asked,', 'but', 'it\\nis', 'better', 'to', 'give', 'unasked,', 'through\\nunderstanding;\\n\\nAnd', 'to', 'the', 'open-handed', 'the', 'search', 'for\\n', 'who', 'shall', 'receive', 'is', 'joy', 'greater\\nthan', 'giving.\\n\\nAnd', 'is', 'there', 'aught', 'you', 'would', 'withhold?\\n\\nAll', 'you', 'have', 'shall', 'some', 'day', 'be', 'given;\\n\\nTherefore', 'give', 'now,', 'that', 'the', 'season\\nof', 'giving', 'may', 'be', 'yours', 'and', 'not', 'your\\ninheritors’.\\n\\nYou', 'often', 'say,', '“I', 'would', 'give,', 'but', 'only\\nto', 'the', 'deserving.”\\n\\nThe', 'trees', 'in', 'your', 'orchard', 'say', 'not', 'so,\\nnor', 'the', 'flocks', 'in', 'your', 'pasture.\\n\\nThey', 'give', 'that', 'they', 'may', 'live,', 'for', 'to\\nwithhold', 'is', 'to', 'perish.\\n\\nSurely', 'he', 'who', 'is', 'worthy', 'to', 'receive', 'his\\ndays', 'and', 'his', 'nights,', 'is', 'worthy', 'of', 'all\\nelse', 'from', 'you.\\n\\nAnd', 'he', 'who', 'has', 'deserved', 'to', 'drink', 'from\\nthe', 'ocean', 'of', 'life', 'deserves', 'to', 'fill', 'his\\ncup', 'from', 'your', 'little', 'stream.\\n\\nAnd', 'what', 'desert', 'greater', 'shall', 'there', 'be,\\nthan', 'that', 'which', 'lies', 'in', 'the', 'courage\\nand', 'the', 'confidence,', 'nay', 'the', 'charity,', 'of\\nreceiving?\\n\\nAnd', 'who', 'are', 'you', 'that', 'men', 'should', 'rend\\n', 'bosom', 'and', 'unveil', 'their', 'pride,\\nthat', 'you', 'may', 'see', 'their', 'worth', 'naked', 'and\\ntheir', 'pride', 'unabashed?\\n\\nSee', 'first', 'that', 'you', 'yourself', 'deserve', 'to\\nbe', 'a', 'giver,', 'and', 'an', 'instrument', 'of', 'giving.\\n\\nFor', 'in', 'truth', 'it', 'is', 'life', 'that', 'gives', 'unto\\nlife--while', 'you,', 'who', 'deem', 'yourself', 'a\\ngiver,', 'are', 'but', 'a', 'witness.\\n\\nAnd', 'you', 'receivers--and', 'you', 'are\\nall', 'receivers--assume', 'no', 'weight', 'of\\ngratitude,', 'lest', 'you', 'lay', 'a', 'yoke', 'upon\\nyourself', 'and', 'upon', 'him', 'who', 'gives.\\n\\nRather', 'rise', 'together', 'with', 'the', 'giver', 'on\\nhis', 'gifts', 'as', 'on', 'wings;\\n\\nFor', 'to', 'be', 'overmindful', 'of', 'your', 'debt,', 'is\\nito', 'doubt', 'his', 'generosity', 'who', 'has', 'the\\nfreehearted', 'earth', 'for', 'mother,', 'and', 'God\\nfor', 'father.\\n\\n[Illustration:', '0042]\\n\\n*****', '*****\\n\\n', 'an', 'old', 'man,', 'a', 'keeper', 'of', 'an\\ninn,', 'said,', 'Speak', 'to', 'us', 'of', '_Eating', 'and\\nDrinking_.\\n\\nAnd', 'he', 'said:\\n\\nWould', 'that', 'you', 'could', 'live', 'on', 'the\\nfragrance', 'of', 'the', 'earth,', 'and', 'like', 'an', 'air\\nplant', 'be', 'sustained', 'by', 'the', 'light.\\n\\nBut', 'since', 'you', 'must', 'kill', 'to', 'eat,', 'and', 'rob\\nthe', 'newly', 'born', 'of', 'its', 'mother’s', 'milk', 'to\\nquench', 'your', 'thirst,', 'let', 'it', 'then', 'be', 'an\\nact', 'of', 'worship,\\n\\nAnd', 'let', 'your', 'board', 'stand', 'an', 'altar', 'on\\nwhich', 'the', 'pure', 'and', 'the', 'innocent', 'of\\nforest', 'and', 'plain', 'are', 'sacrificed', 'for', 'that\\nwhich', 'is', 'purer', 'and', 'still', 'more', 'innocent\\nin', 'man.\\n\\n*****\\n\\nWhen', 'you', 'kill', 'a', 'beast', 'say', 'to', 'him', 'in', 'your\\nheart,\\n\\n“By', 'the', 'same', 'power', 'that', 'slays', 'you,', 'I', 'too\\nam', 'slain;', 'and', 'I', 'too', 'shall', 'be', 'consumed.\\n', 'the', 'law', 'that', 'delivered', 'you', 'into\\nmy', 'hand', 'shall', 'deliver', 'me', 'into', 'a', 'mightier\\nhand.\\n\\nYour', 'blood', 'and', 'my', 'blood', 'is', 'naught', 'but\\nthe', 'sap', 'that', 'feeds', 'the', 'tree', 'of', 'heaven.”\\n\\n*****\\n\\nAnd', 'when', 'you', 'crush', 'an', 'apple', 'with', 'your\\nteeth,', 'say', 'to', 'it', 'in', 'your', 'heart,\\n\\n“Your', 'seeds', 'shall', 'live', 'in', 'my', 'body,\\n\\nAnd', 'the', 'buds', 'of', 'your', 'tomorrow', 'shall\\nblossom', 'in', 'my', 'heart,\\n\\nAnd', 'your', 'fragrance', 'shall', 'be', 'my', 'breath,\\nAnd', 'together', 'we', 'shall', 'rejoice', 'through\\nall', 'the', 'seasons.”\\n\\n*****\\n\\nAnd', 'in', 'the', 'autumn,', 'when', 'you', 'gather\\nthe', 'grapes', 'of', 'your', 'vineyards', 'for', 'the\\nwinepress,', 'say', 'in', 'your', 'heart,\\n\\n“I', 'too', 'am', 'a', 'vineyard,', 'and', 'my', 'fruit', 'shall\\nbe', 'gathered', 'for', 'the', 'winepress,\\n\\nAnd', 'like', 'new', 'wine', 'I', 'shall', 'be', 'kept', 'in\\neternal', 'vessels.”\\n\\nAnd', 'in', 'winter,', 'when', 'you', 'draw', 'the', 'wine,\\n', 'there', 'be', 'in', 'your', 'heart', 'a', 'song\\nfor', 'each', 'cup;\\n\\nAnd', 'let', 'there', 'be', 'in', 'the', 'song', 'a\\nremembrance', 'for', 'the', 'autumn', 'days,', 'and', 'for\\nthe', 'vineyard,', 'and', 'for', 'the', 'winepress.\\n\\n*****\\n*****\\n\\n', 'Then', 'a', 'ploughman', 'said,', 'Speak\\nto', 'us', 'of', '_Work_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYou', 'work', 'that', 'you', 'may', 'keep', 'pace', 'with', 'the\\nearth', 'and', 'the', 'soul', 'of', 'the', 'earth.\\n\\nFor', 'to', 'be', 'idle', 'is', 'to', 'become', 'a', 'stranger\\nunto', 'the', 'seasons,', 'and', 'to', 'step', 'out', 'of\\nlife’s', 'procession,', 'that', 'marches', 'in\\nmajesty', 'and', 'proud', 'submission', 'towards', 'the\\ninfinite.\\n\\nWhen', 'you', 'work', 'you', 'are', 'a', 'flute', 'through\\nwhose', 'heart', 'the', 'whispering', 'of', 'the', 'hours\\nturns', 'to', 'music.\\n\\nWhich', 'of', 'you', 'would', 'be', 'a', 'reed,', 'dumb', 'and\\nsilent,', 'when', 'all', 'else', 'sings', 'together', 'in\\nunison?\\n\\nAlways', 'you', 'have', 'been', 'told', 'that', 'work', 'is', 'a\\ncurse', 'and', 'labour', 'a', 'misfortune.\\n\\nBut', 'I', 'say', 'to', 'you', 'that', 'when', 'you', 'work', 'you\\nfulfil', 'a', 'part', 'of', 'earth’s', 'furthest', 'dream,\\n', 'to', 'you', 'when', 'that', 'dream', 'was\\nborn,\\n\\nAnd', 'in', 'keeping', 'yourself', 'with', 'labour', 'you\\nare', 'in', 'truth', 'loving', 'life,\\n\\nAnd', 'to', 'love', 'life', 'through', 'labour', 'is', 'to', 'be\\nintimate', 'with', 'life’s', 'inmost', 'secret.\\n\\n*****\\n\\nBut', 'if', 'you', 'in', 'your', 'pain', 'call', 'birth', 'an\\naffliction', 'and', 'the', 'support', 'of', 'the', 'flesh\\na', 'curse', 'written', 'upon', 'your', 'brow,', 'then', 'I\\nanswer', 'that', 'naught', 'but', 'the', 'sweat', 'of\\nyour', 'brow', 'shall', 'wash', 'away', 'that', 'which', 'is\\nwritten.\\n\\nYou', 'have', 'been', 'told', 'also', 'that', 'life', 'is\\ndarkness,', 'and', 'in', 'your', 'weariness', 'you', 'echo\\nwhat', 'was', 'said', 'by', 'the', 'weary.\\n\\nAnd', 'I', 'say', 'that', 'life', 'is', 'indeed', 'darkness\\n‘save', 'when', 'there', 'is', 'urge,\\n\\nAnd', 'all', 'urge', 'is', 'blind', 'save', 'when', 'there', 'is\\nknowledge,\\n\\nAnd', 'all', 'knowledge', 'is', 'vain', 'save', 'when\\nthere', 'is', 'work,\\n\\nAnd', 'all', 'work', 'is', 'empty', 'save', 'when', 'there', 'is\\nlove;\\n\\nAnd', 'when', 'you', 'work', 'with', 'love', 'you', 'bind\\n', 'to', 'yourself,', 'and', 'to', 'one\\nanother,', 'and', 'to', 'God.\\n\\n*****\\n\\nAnd', 'what', 'is', 'it', 'to', 'work', 'with', 'love?\\n\\nIt', 'is', 'to', 'weave', 'the', 'cloth', 'with', 'threads\\ndrawn', 'from', 'your', 'heart,', 'even', 'as', 'if', 'your\\nbeloved', 'were', 'to', 'wear', 'that', 'cloth.\\n\\nIt', 'is', 'to', 'build', 'a', 'house', 'with', 'affection,\\neven', 'as', 'if', 'your', 'beloved', 'were', 'to', 'dwell', 'in\\nthat', 'house.\\n\\nIt', 'is', 'to', 'sow', 'seeds', 'with', 'tenderness', 'and\\nreap', 'the', 'harvest', 'with', 'joy,', 'even', 'as', 'if\\nyour', 'beloved', 'were', 'to', 'eat', 'the', 'fruit.\\n\\nIt', 'is', 'to', 'charge', 'all', 'things', 'you', 'fashion\\nwith', 'a', 'breath', 'of', 'your', 'own', 'spirit,\\n\\nAnd', 'to', 'know', 'that', 'all', 'the', 'blessed', 'dead\\nare', 'standing', 'about', 'you', 'and', 'watching.\\n\\nOften', 'have', 'I', 'heard', 'you', 'say,', 'as', 'if\\nspeaking', 'in', 'sleep,', '“He', 'who', 'works', 'in\\nmarble,', 'and', 'finds', 'the', 'shape', 'of', 'his', 'own\\nsoul', 'in', 'the', 'stone,', 'is', 'nobler', 'than', 'he', 'who\\nploughs', 'the', 'soil.', '', 'he', 'who', 'seizes\\nthe', 'rainbow', 'to', 'lay', 'it', 'on', 'a', 'cloth', 'in', 'the\\nlikeness', 'of', 'man,', 'is', 'more', 'than', 'he', 'who\\nmakes', 'the', 'sandals', 'for', 'our', 'feet.”\\n\\nBut', 'I', 'say,', 'not', 'in', 'sleep', 'but', 'in', 'the\\noverwakefulness', 'of', 'noontide,', 'that', 'the\\nwind', 'speaks', 'not', 'more', 'sweetly', 'to', 'the\\ngiant', 'oaks', 'than', 'to', 'the', 'least', 'of', 'all', 'the\\nblades', 'of', 'grass;\\n\\nAnd', 'he', 'alone', 'is', 'great', 'who', 'turns', 'the\\nvoice', 'of', 'the', 'wind', 'into', 'a', 'song', 'made\\nsweeter', 'by', 'his', 'own', 'loving.\\n\\n*****\\n\\nWork', 'is', 'love', 'made', 'visible.\\n\\nAnd', 'if', 'you', 'cannot', 'work', 'with', 'love', 'but\\nonly', 'with', 'distaste,', 'it', 'is', 'better', 'that\\nyou', 'should', 'leave', 'your', 'work', 'and', 'sit', 'at\\nthe', 'gate', 'of', 'the', 'temple', 'and', 'take', 'alms', 'of\\nthose', 'who', 'work', 'with', 'joy.\\n\\nFor', 'if', 'you', 'bake', 'bread', 'with', 'indifference,\\nyou', 'bake', 'a', 'bitter', 'bread', 'that', 'feeds', 'but\\nhalf', 'man’s', 'hunger.\\n\\nAnd', 'if', 'you', 'grudge', 'the', 'crushing', 'of', 'the\\ngrapes,', 'your', 'grudge', 'distils', 'a', 'poison', 'in\\nthe', 'wine.', '', 'if', 'you', 'sing', 'though', 'as\\nangels,', 'and', 'love', 'not', 'the', 'singing,', 'you\\nmuffle', 'man’s', 'ears', 'to', 'the', 'voices', 'of', 'the\\nday', 'and', 'the', 'voices', 'of', 'the', 'night.\\n\\n*****', '*****\\n\\n', 'a', 'woman', 'said,', 'Speak', 'to', 'us', 'of\\n_Joy', 'and', 'Sorrow_.\\n\\nAnd', 'he', 'answered:\\n\\nYour', 'joy', 'is', 'your', 'sorrow', 'unmasked.\\n\\nAnd', 'the', 'selfsame', 'well', 'from', 'which', 'your\\nlaughter', 'rises', 'was', 'oftentimes', 'filled\\nwith', 'your', 'tears.\\n\\nAnd', 'how', 'else', 'can', 'it', 'be?\\n\\nThe', 'deeper', 'that', 'sorrow', 'carves', 'into', 'your\\nbeing,', 'the', 'more', 'joy', 'you', 'can', 'contain.\\n\\nIs', 'not', 'the', 'cup', 'that', 'holds', 'your', 'wine', 'the\\nvery', 'cup', 'that', 'was', 'burned', 'in', 'the', 'potter’s\\noven?\\n\\nAnd', 'is', 'not', 'the', 'lute', 'that', 'soothes', 'your\\nspirit,', 'the', 'very', 'wood', 'that', 'was', 'hollowed\\nwith', 'knives?\\n\\nWhen', 'you', 'are', 'joyous,', 'look', 'deep', 'into', 'your\\nheart', 'and', 'you', 'shall', 'find', 'it', 'is', 'only\\nthat', 'which', 'has', 'given', 'you', 'sorrow', 'that', 'is\\ngiving', 'you', 'joy.\\n\\nWhen', 'you', 'are', 'sorrowful', 'look', 'again', 'in\\n', 'heart,', 'and', 'you', 'shall', 'see', 'that\\nin', 'truth', 'you', 'are', 'weeping', 'for', 'that', 'which\\nhas', 'been', 'your', 'delight.\\n\\n*****\\n\\nSome', 'of', 'you', 'say,', '“Joy', 'is', 'greater', 'than\\nsorrow,”', 'and', 'others', 'say,', '“Nay,', 'sorrow', 'is\\nthe', 'greater.”\\n\\nBut', 'I', 'say', 'unto', 'you,', 'they', 'are\\ninseparable.\\n\\nTogether', 'they', 'come,', 'and', 'when', 'one', 'sits\\nalone', 'with', 'you', 'at', 'your', 'board,', 'remember\\nthat', 'the', 'other', 'is', 'asleep', 'upon', 'your', 'bed.\\n\\nVerily', 'you', 'are', 'suspended', 'like', 'scales\\nbetween', 'your', 'sorrow', 'and', 'your', 'joy.\\n\\nOnly', 'when', 'you', 'are', 'empty', 'are', 'you', 'at\\nstandstill', 'and', 'balanced.\\n\\nWhen', 'the', 'treasure-keeper', 'lifts', 'you', 'to\\nweigh', 'his', 'gold', 'and', 'his', 'silver,', 'needs\\nmust', 'your', 'joy', 'or', 'your', 'sorrow', 'rise', 'or\\nfall.\\n\\n*****', '*****\\n\\n', 'a', 'mason', 'came', 'forth', 'and', 'said,\\nSpeak', 'to', 'us', 'of', '_Houses_.\\n\\nAnd', 'he', 'answered', 'and', 'said:\\n\\nBuild', 'of', 'your', 'imaginings', 'a', 'bower', 'in', 'the\\nwilderness', 'ere', 'you', 'build', 'a', 'house', 'within\\nthe', 'city', 'walls.\\n\\nFor', 'even', 'as', 'you', 'have', 'home-comings', 'in\\nyour', 'twilight,', 'so', 'has', 'the', 'wanderer', 'in\\nyou,', 'the', 'ever', 'distant', 'and', 'alone.\\n\\nYour', 'house', 'is', 'your', 'larger', 'body.\\n\\nIt', 'grows', 'in', 'the', 'sun', 'and', 'sleeps', 'in', 'the\\nstillness', 'of', 'the', 'night;', 'and', 'it', 'is', 'not\\ndreamless.', 'Does', 'not', 'your', 'house', 'dream?\\nand', 'dreaming,', 'leave', 'the', 'city', 'for', 'grove\\nor', 'hilltop?\\n\\nWould', 'that', 'I', 'could', 'gather', 'your', 'houses\\ninto', 'my', 'hand,', 'and', 'like', 'a', 'sower', 'scatter\\nthem', 'in', 'forest', 'and', 'meadow.\\n\\nWould', 'the', 'valleys', 'were', 'your', 'streets,', 'and\\nthe', 'green', 'paths', 'your', 'alleys,', 'that', 'you\\n', 'seek', 'one', 'another', 'through\\nvineyards,', 'and', 'come', 'with', 'the', 'fragrance\\nof', 'the', 'earth', 'in', 'your', 'garments.\\n\\nBut', 'these', 'things', 'are', 'not', 'yet', 'to', 'be.\\n\\nIn', 'their', 'fear', 'your', 'forefathers', 'gathered\\nyou', 'too', 'near', 'together.', 'And', 'that', 'fear\\nshall', 'endure', 'a', 'little', 'longer.', 'A', 'little\\nlonger', 'shall', 'your', 'city', 'walls', 'separate\\nyour', 'hearths', 'from', 'your', 'fields.\\n\\n*****\\n\\nAnd', 'tell', 'me,', 'people', 'of', 'Orphalese,', 'what\\nhave', 'you', 'in', 'these', 'houses?', 'And', 'what', 'is', 'it\\nyou', 'guard', 'with', 'fastened', 'doors?\\n\\nHave', 'you', 'peace,', 'the', 'quiet', 'urge', 'that\\nreveals', 'your', 'power?\\n\\nHave', 'you', 'remembrances,', 'the', 'glimmering\\narches', 'that', 'span', 'the', 'summits', 'of', 'the\\nmind?\\n\\nHave', 'you', 'beauty,', 'that', 'leads', 'the', 'heart\\nfrom', 'things', 'fashioned', 'of', 'wood', 'and', 'stone\\nto', 'the', 'holy', 'mountain?\\n\\nTell', 'me,', 'have', 'you', 'these', 'in', 'your', 'houses?\\n\\nOr', 'have', 'you', 'only', 'comfort,', 'and', 'the', 'lust\\nfor', 'comfort,', 'that', 'stealthy', 'thing', 'that\\n', 'the', 'house', 'a', 'guest,', 'and', 'then\\nbecomes', 'a', 'host,', 'and', 'then', 'a', 'master?\\n\\n*****\\n\\nAy,', 'and', 'it', 'becomes', 'a', 'tamer,', 'and', 'with\\nhook', 'and', 'scourge', 'makes', 'puppets', 'of', 'your\\nlarger', 'desires.\\n\\nThough', 'its', 'hands', 'are', 'silken,', 'its', 'heart\\nis', 'of', 'iron.\\n\\nIt', 'lulls', 'you', 'to', 'sleep', 'only', 'to', 'stand', 'by\\nyour', 'bed', 'and', 'jeer', 'at', 'the', 'dignity', 'of', 'the\\nflesh.\\n\\nIt', 'makes', 'mock', 'of', 'your', 'sound', 'senses,', 'and\\nlays', 'them', 'in', 'thistledown', 'like', 'fragile\\nvessels.\\n\\nVerily', 'the', 'lust', 'for', 'comfort', 'murders\\nthe', 'passion', 'of', 'the', 'soul,', 'and', 'then', 'walks\\ngrinning', 'in', 'the', 'funeral.\\n\\nBut', 'you,', 'children', 'of', 'space,', 'you', 'restless\\nin', 'rest,', 'you', 'shall', 'not', 'be', 'trapped', 'nor\\ntamed.\\n\\nYour', 'house', 'shall', 'be', 'not', 'an', 'anchor', 'but', 'a\\nmast.\\n\\nIt', 'shall', 'not', 'be', 'a', 'glistening', 'film', 'that\\n', 'a', 'wound,', 'but', 'an', 'eyelid', 'that\\nguards', 'the', 'eye.\\n\\nYou', 'shall', 'not', 'fold', 'your', 'wings', 'that', 'you\\nmay', 'pass', 'through', 'doors,', 'nor', 'bend', 'your\\nheads', 'that', 'they', 'strike', 'not', 'against', 'a\\nceiling,', 'nor', 'fear', 'to', 'breathe', 'lest', 'walls\\nshould', 'crack', 'and', 'fall', 'down.\\n\\nYou', 'shall', 'not', 'dwell', 'in', 'tombs', 'made', 'by', 'the\\ndead', 'for', 'the', 'living.\\n\\nAnd', 'though', 'of', 'magnificence', 'and\\nsplendour,', 'your', 'house', 'shall', 'not', 'hold\\nyour', 'secret', 'nor', 'shelter', 'your', 'longing.\\n\\nFor', 'that', 'which', 'is', 'boundless', 'in', 'you\\nabides', 'in', 'the', 'mansion', 'of', 'the', 'sky,', 'whose\\ndoor', 'is', 'the', 'morning', 'mist,', 'and', 'whose\\nwindows', 'are', 'the', 'songs', 'and', 'the', 'silences\\nof', 'night.\\n\\n*****', '*****\\n\\n', 'the', 'weaver', 'said,', 'Speak', 'to', 'us', 'of\\n_Clothes_.\\n\\nAnd', 'he', 'answered:\\n\\nYour', 'clothes', 'conceal', 'much', 'of', 'your\\nbeauty,', 'yet', 'they', 'hide', 'not', 'the\\nunbeautiful.\\n\\nAnd', 'though', 'you', 'seek', 'in', 'garments', 'the\\nfreedom', 'of', 'privacy', 'you', 'may', 'find', 'in', 'them\\na', 'harness', 'and', 'a', 'chain.\\n\\nWould', 'that', 'you', 'could', 'meet', 'the', 'sun', 'and\\nthe', 'wind', 'with', 'more', 'of', 'your', 'skin', 'and', 'less\\nof', 'your', 'raiment,\\n\\nFor', 'the', 'breath', 'of', 'life', 'is', 'in', 'the\\nsunlight', 'and', 'the', 'hand', 'of', 'life', 'is', 'in', 'the\\nwind.\\n\\nSome', 'of', 'you', 'say,', '“It', 'is', 'the', 'north', 'wind\\nwho', 'has', 'woven', 'the', 'clothes', 'we', 'wear.”\\n\\nAnd', 'I', 'say,', 'Ay,', 'it', 'was', 'the', 'north', 'wind,\\n\\nBut', 'shame', 'was', 'his', 'loom,', 'and', 'the\\nsoftening', 'of', 'the', 'sinews', 'was', 'his', 'thread.\\n\\nAnd', 'when', 'his', 'work', 'was', 'done', 'he', 'laughed', 'in\\nthe', 'forest.', '', 'not', 'that', 'modesty\\nis', 'for', 'a', 'shield', 'against', 'the', 'eye', 'of', 'the\\nunclean.\\n\\nAnd', 'when', 'the', 'unclean', 'shall', 'be', 'no', 'more,\\nwhat', 'were', 'modesty', 'but', 'a', 'fetter', 'and', 'a\\nfouling', 'of', 'the', 'mind?\\n\\nAnd', 'forget', 'not', 'that', 'the', 'earth', 'delights\\nto', 'feel', 'your', 'bare', 'feet', 'and', 'the', 'winds\\nlong', 'to', 'play', 'with', 'your', 'hair.\\n\\n*****', '*****\\n\\n', 'a', 'merchant', 'said,', 'Speak', 'to', 'us', 'of\\n_Buying', 'and', 'Selling_.\\n\\nAnd', 'he', 'answered', 'and', 'said:\\n\\nTo', 'you', 'the', 'earth', 'yields', 'her', 'fruit,', 'and\\nyou', 'shall', 'not', 'want', 'if', 'you', 'but', 'know', 'how\\nto', 'fill', 'your', 'hands.\\n\\nIt', 'is', 'in', 'exchanging', 'the', 'gifts', 'of', 'the\\nearth', 'that', 'you', 'shall', 'find', 'abundance', 'and\\nbe', 'satisfied.\\n\\nYet', 'unless', 'the', 'exchange', 'be', 'in', 'love', 'and\\nkindly', 'justice,', 'it', 'will', 'but', 'lead', 'some', 'to\\ngreed', 'and', 'others', 'to', 'hunger.\\n\\nWhen', 'in', 'the', 'market', 'place', 'you', 'toilers', 'of\\nthe', 'sea', 'and', 'fields', 'and', 'vineyards', 'meet\\nthe', 'weavers', 'and', 'the', 'potters', 'and', 'the\\ngatherers', 'of', 'spices,--\\n\\nInvoke', 'then', 'the', 'master', 'spirit', 'of', 'the\\nearth,', 'to', 'come', 'into', 'your', 'midst', 'and\\nsanctify', 'the', 'scales', 'and', 'the', 'reckoning\\nthat', 'weighs', 'value', 'against', 'value.', '', 'not', 'the', 'barren-handed', 'to', 'take\\npart', 'in', 'your', 'transactions,', 'who', 'would\\nsell', 'their', 'words', 'for', 'your', 'labour.\\n\\nTo', 'such', 'men', 'you', 'should', 'say,\\n\\n“Come', 'with', 'us', 'to', 'the', 'field,', 'or', 'go', 'with\\nour', 'brothers', 'to', 'the', 'sea', 'and', 'cast', 'your\\nnet;\\n\\nFor', 'the', 'land', 'and', 'the', 'sea', 'shall', 'be\\nbountiful', 'to', 'you', 'even', 'as', 'to', 'us.”\\n\\n*****\\n\\nAnd', 'if', 'there', 'come', 'the', 'singers', 'and', 'the\\ndancers', 'and', 'the', 'flute', 'players,--buy', 'of\\ntheir', 'gifts', 'also.\\n\\nFor', 'they', 'too', 'are', 'gatherers', 'of', 'fruit', 'and\\nfrankincense,', 'and', 'that', 'which', 'they', 'bring,\\nthough', 'fashioned', 'of', 'dreams,', 'is', 'raiment\\nand', 'food', 'for', 'your', 'soul.\\n\\nAnd', 'before', 'you', 'leave', 'the', 'market', 'place,\\nsee', 'that', 'no', 'one', 'has', 'gone', 'his', 'way', 'with\\nempty', 'hands.\\n\\nFor', 'the', 'master', 'spirit', 'of', 'the', 'earth', 'shall\\nnot', 'sleep', 'peacefully', 'upon', 'the', 'wind\\ntill', 'the', 'needs', 'of', 'the', 'least', 'of', 'you', 'are\\nsatisfied.\\n\\n*****', '*****\\n\\n', 'one', 'of', 'the', 'judges', 'of', 'the', 'city\\nstood', 'forth', 'and', 'said,', 'Speak', 'to', 'us', 'of\\n_Crime', 'and', 'Punishment_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nIt', 'is', 'when', 'your', 'spirit', 'goes', 'wandering\\nupon', 'the', 'wind,\\n\\nThat', 'you,', 'alone', 'and', 'unguarded,', 'commit\\na', 'wrong', 'unto', 'others', 'and', 'therefore', 'unto\\nyourself.\\n\\nAnd', 'for', 'that', 'wrong', 'committed', 'must', 'you\\nknock', 'and', 'wait', 'a', 'while', 'unheeded', 'at', 'the\\ngate', 'of', 'the', 'blessed.\\n\\nLike', 'the', 'ocean', 'is', 'your', 'god-self;\\n\\nIt', 'remains', 'for', 'ever', 'undefiled.\\n\\nAnd', 'like', 'the', 'ether', 'it', 'lifts', 'but', 'the\\nwinged.\\n\\nEven', 'like', 'the', 'sun', 'is', 'your', 'god-self;\\n\\nIt', 'knows', 'not', 'the', 'ways', 'of', 'the', 'mole', 'nor\\nseeks', 'it', 'the', 'holes', 'of', 'the', 'serpent.\\n', 'your', 'god-self', 'dwells', 'not', 'alone\\nin', 'your', 'being.\\n\\nMuch', 'in', 'you', 'is', 'still', 'man,', 'and', 'much', 'in\\nyou', 'is', 'not', 'yet', 'man,\\n\\nBut', 'a', 'shapeless', 'pigmy', 'that', 'walks', 'asleep\\nin', 'the', 'mist', 'searching', 'for', 'its', 'own\\nawakening.\\n\\nAnd', 'of', 'the', 'man', 'in', 'you', 'would', 'I', 'now', 'speak.\\n\\nFor', 'it', 'is', 'he', 'and', 'not', 'your', 'god-self', 'nor\\nthe', 'pigmy', 'in', 'the', 'mist,', 'that', 'knows', 'crime\\nand', 'the', 'punishment', 'of', 'crime.\\n\\n*****\\n\\nOftentimes', 'have', 'I', 'heard', 'you', 'speak', 'of', 'one\\nwho', 'commits', 'a', 'wrong', 'as', 'though', 'he', 'were\\nnot', 'one', 'of', 'you,', 'but', 'a', 'stranger', 'unto', 'you\\nand', 'an', 'intruder', 'upon', 'your', 'world.\\n\\nBut', 'I', 'say', 'that', 'even', 'as', 'the', 'holy', 'and', 'the\\nrighteous', 'cannot', 'rise', 'beyond', 'the', 'highest\\nwhich', 'is', 'in', 'each', 'one', 'of', 'you,\\n\\nSo', 'the', 'wicked', 'and', 'the', 'weak', 'cannot', 'fall\\nlower', 'than', 'the', 'lowest', 'which', 'is', 'in', 'you\\nalso.\\n\\nAnd', 'as', 'a', 'single', 'leaf', 'turns', 'not', 'yellow\\nbut', 'with', 'the', 'silent', 'knowledge', 'of', 'the\\nwhole', 'tree,', '', 'the', 'wrong-doer', 'cannot\\ndo', 'wrong', 'without', 'the', 'hidden', 'will', 'of', 'you\\nall.\\n\\nLike', 'a', 'procession', 'you', 'walk', 'together\\ntowards', 'your', 'god-self.\\n\\n[Illustration:', '0064]\\n\\nYou', 'are', 'the', 'way', 'and', 'the', 'wayfarers.\\n\\nAnd', 'when', 'one', 'of', 'you', 'falls', 'down', 'he', 'falls\\nfor', 'those', 'behind', 'him,', 'a', 'caution', 'against\\nthe', 'stumbling', 'stone.\\n\\nAy,', 'and', 'he', 'falls', 'for', 'those', 'ahead', 'of', 'him,\\nwho', 'though', 'faster', 'and', 'surer', 'of', 'foot,', 'yet\\nremoved', 'not', 'the', 'stumbling', 'stone.\\n\\nAnd', 'this', 'also,', 'though', 'the', 'word', 'lie', 'heavy\\nupon', 'your', 'hearts:\\n\\nThe', 'murdered', 'is', 'not', 'unaccountable', 'for\\nhis', 'own', 'murder,\\n\\nAnd', 'the', 'robbed', 'is', 'not', 'blameless', 'in', 'being\\nrobbed.\\n\\nThe', 'righteous', 'is', 'not', 'innocent', 'of', 'the\\ndeeds', 'of', 'the', 'wicked,\\n\\nAnd', 'the', 'white-handed', 'is', 'not', 'clean', 'in', 'the\\ndoings', 'of', 'the', 'felon.\\n\\nYea,', 'the', 'guilty', 'is', 'oftentimes', 'the', 'victim\\nof', 'the', 'injured,\\n\\nAnd', 'still', 'more', 'often', 'the', 'condemned', 'is\\n', 'burden', 'bearer', 'for', 'the', 'guiltless\\nand', 'unblamed.\\n\\nYou', 'cannot', 'separate', 'the', 'just', 'from', 'the\\nunjust', 'and', 'the', 'good', 'from', 'the', 'wicked;\\n\\nFor', 'they', 'stand', 'together', 'before', 'the', 'face\\nof', 'the', 'sun', 'even', 'as', 'the', 'black', 'thread', 'and\\nthe', 'white', 'are', 'woven', 'together.\\n\\nAnd', 'when', 'the', 'black', 'thread', 'breaks,', 'the\\nweaver', 'shall', 'look', 'into', 'the', 'whole', 'cloth,\\nand', 'he', 'shall', 'examine', 'the', 'loom', 'also.\\n\\n*****\\n\\nIf', 'any', 'of', 'you', 'would', 'bring', 'to', 'judgment\\nthe', 'unfaithful', 'wife,\\n\\nLet', 'him', 'also', 'weigh', 'the', 'heart', 'of', 'her\\nhusband', 'in', 'scales,', 'and', 'measure', 'his', 'soul\\nwith', 'measurements.\\n\\nAnd', 'let', 'him', 'who', 'would', 'lash', 'the', 'offender\\nlook', 'unto', 'the', 'spirit', 'of', 'the', 'offended.\\n\\nAnd', 'if', 'any', 'of', 'you', 'would', 'punish', 'in', 'the\\nname', 'of', 'righteousness', 'and', 'lay', 'the', 'ax\\nunto', 'the', 'evil', 'tree,', 'let', 'him', 'see', 'to', 'its\\nroots;\\n\\nAnd', 'verily', 'he', 'will', 'find', 'the', 'roots', 'of', 'the\\ngood', 'and', 'the', 'bad,', 'the', 'fruitful', 'and', 'the\\n', 'all', 'entwined', 'together', 'in\\nthe', 'silent', 'heart', 'of', 'the', 'earth.\\n\\nAnd', 'you', 'judges', 'who', 'would', 'be', 'just,\\n\\nWhat', 'judgment', 'pronounce', 'you', 'upon', 'him\\nwho', 'though', 'honest', 'in', 'the', 'flesh', 'yet', 'is', 'a\\nthief', 'in', 'spirit?\\n\\nWhat', 'penalty', 'lay', 'you', 'upon', 'him', 'who', 'slays\\nin', 'the', 'flesh', 'yet', 'is', 'himself', 'slain', 'in', 'the\\nspirit?\\n\\nAnd', 'how', 'prosecute', 'you', 'him', 'who', 'in', 'action\\nis', 'a', 'deceiver', 'and', 'an', 'oppressor,\\n\\nYet', 'who', 'also', 'is', 'aggrieved', 'and', 'outraged?\\n\\n*****\\n\\nAnd', 'how', 'shall', 'you', 'punish', 'those', 'whose\\nremorse', 'is', 'already', 'greater', 'than', 'their\\nmisdeeds?\\n\\nIs', 'not', 'remorse', 'the', 'justice', 'which', 'is\\nadministered', 'by', 'that', 'very', 'law', 'which', 'you\\nwould', 'fain', 'serve?\\n\\nYet', 'you', 'cannot', 'lay', 'remorse', 'upon', 'the\\ninnocent', 'nor', 'lift', 'it', 'from', 'the', 'heart', 'of\\nthe', 'guilty.\\n\\nUnbidden', 'shall', 'it', 'call', 'in', 'the', 'night,\\nthat', 'men', 'may', 'wake', 'and', 'gaze', 'upon\\nthemselves.', '', 'you', 'who', 'would\\nunderstand', 'justice,', 'how', 'shall', 'you', 'unless\\nyou', 'look', 'upon', 'all', 'deeds', 'in', 'the', 'fullness\\nof', 'light?\\n\\nOnly', 'then', 'shall', 'you', 'know', 'that', 'the', 'erect\\nand', 'the', 'fallen', 'are', 'but', 'one', 'man', 'standing\\nin', 'twilight', 'between', 'the', 'night', 'of', 'his\\npigmy-self', 'and', 'the', 'day', 'of', 'his', 'god-self,\\nAnd', 'that', 'the', 'corner-stone', 'of', 'the', 'temple\\nis', 'not', 'higher', 'than', 'the', 'lowest', 'stone', 'in\\nits', 'foundation.\\n\\n*****', '*****\\n\\n', 'a', 'lawyer', 'said,', 'But', 'what', 'of', 'our\\n_Laws_,', 'master?\\n\\nAnd', 'he', 'answered:\\n\\nYou', 'delight', 'in', 'laying', 'down', 'laws,\\n\\nYet', 'you', 'delight', 'more', 'in', 'breaking', 'them.\\n\\nLike', 'children', 'playing', 'by', 'the', 'ocean', 'who\\nbuild', 'sand-towers', 'with', 'constancy', 'and\\nthen', 'destroy', 'them', 'with', 'laughter.\\n\\nBut', 'while', 'you', 'build', 'your', 'sand-towers', 'the\\nocean', 'brings', 'more', 'sand', 'to', 'the', 'shore,\\n\\nAnd', 'when', 'you', 'destroy', 'them', 'the', 'ocean\\nlaughs', 'with', 'you.\\n\\nVerily', 'the', 'ocean', 'laughs', 'always', 'with', 'the\\ninnocent.\\n\\nBut', 'what', 'of', 'those', 'to', 'whom', 'life', 'is', 'not\\nan', 'ocean,', 'and', 'man-made', 'laws', 'are', 'not\\nsand-towers,\\n\\nBut', 'to', 'whom', 'life', 'is', 'a', 'rock,', 'and', 'the', 'law\\na', 'chisel', 'with', 'which', 'they', 'would', 'carve', 'it\\nin', 'their', 'own', 'likeness?', '', 'of', 'the\\ncripple', 'who', 'hates', 'dancers?\\n\\nWhat', 'of', 'the', 'ox', 'who', 'loves', 'his', 'yoke', 'and\\ndeems', 'the', 'elk', 'and', 'deer', 'of', 'the', 'forest\\nstray', 'and', 'vagrant', 'things?\\n\\nWhat', 'of', 'the', 'old', 'serpent', 'who', 'cannot', 'shed\\nhis', 'skin,', 'and', 'calls', 'all', 'others', 'naked', 'and\\nshameless?\\n\\nAnd', 'of', 'him', 'who', 'comes', 'early', 'to', 'the\\nwedding-feast,', 'and', 'when', 'over-fed', 'and\\ntired', 'goes', 'his', 'way', 'saying', 'that', 'all\\nfeasts', 'are', 'violation', 'and', 'all', 'feasters\\nlawbreakers?\\n\\n*****\\n\\nWhat', 'shall', 'I', 'say', 'of', 'these', 'save', 'that\\nthey', 'too', 'stand', 'in', 'the', 'sunlight,', 'but', 'with\\ntheir', 'backs', 'to', 'the', 'sun?\\n\\nThey', 'see', 'only', 'their', 'shadows,', 'and', 'their\\nshadows', 'are', 'their', 'laws.\\n\\nAnd', 'what', 'is', 'the', 'sun', 'to', 'them', 'but', 'a', 'caster\\nof', 'shadows?\\n\\nAnd', 'what', 'is', 'it', 'to', 'acknowledge', 'the\\nlaws', 'but', 'to', 'stoop', 'down', 'and', 'trace', 'their\\nshadows', 'upon', 'the', 'earth?\\n\\nBut', 'you', 'who', 'walk', 'facing', 'the', 'sun,', 'what\\n', 'drawn', 'on', 'the', 'earth', 'can', 'hold\\nyou?\\n\\nYou', 'who', 'travel', 'with', 'the', 'wind,', 'what\\nweather-vane', 'shall', 'direct', 'your', 'course?\\n\\nWhat', 'man’s', 'law', 'shall', 'bind', 'you', 'if', 'you\\nbreak', 'your', 'yoke', 'but', 'upon', 'no', 'man’s', 'prison\\ndoor?\\n\\nWhat', 'laws', 'shall', 'you', 'fear', 'if', 'you', 'dance\\nbut', 'stumble', 'against', 'no', 'man’s', 'iron\\nchains?\\n\\nAnd', 'who', 'is', 'he', 'that', 'shall', 'bring', 'you', 'to\\njudgment', 'if', 'you', 'tear', 'off', 'your', 'garment\\nyet', 'leave', 'it', 'in', 'no', 'man’s', 'path?\\n\\n*****\\n\\nPeople', 'of', 'Orphalese,', 'you', 'can', 'muffle', 'the\\ndrum,', 'and', 'you', 'can', 'loosen', 'the', 'strings\\nof', 'the', 'lyre,', 'but', 'who', 'shall', 'command', 'the\\nskylark', 'not', 'to', 'sing?\\n\\n*****', '*****\\n\\n', 'an', 'orator', 'said,', 'Speak', 'to', 'us', 'of\\n_Freedom_.\\n\\nAnd', 'he', 'answered:\\n\\nAt', 'the', 'city', 'gate', 'and', 'by', 'your', 'fireside\\nI', 'have', 'seen', 'you', 'prostrate', 'yourself', 'and\\nworship', 'your', 'own', 'freedom,\\n\\nEven', 'as', 'slaves', 'humble', 'themselves', 'before\\na', 'tyrant', 'and', 'praise', 'him', 'though', 'he', 'slays\\nthem.\\n\\nAy,', 'in', 'the', 'grove', 'of', 'the', 'temple', 'and', 'in\\nthe', 'shadow', 'of', 'the', 'citadel', 'I', 'have', 'seen\\nthe', 'freest', 'among', 'you', 'wear', 'their', 'freedom\\nas', 'a', 'yoke', 'and', 'a', 'handcuff.\\n\\nAnd', 'my', 'heart', 'bled', 'within', 'me;', 'for', 'you\\ncan', 'only', 'be', 'free', 'when', 'even', 'the', 'desire\\nof', 'seeking', 'freedom', 'becomes', 'a', 'harness\\nto', 'you,', 'and', 'when', 'you', 'cease', 'to', 'speak', 'of\\nfreedom', 'as', 'a', 'goal', 'and', 'a', 'fulfilment.\\n\\nYou', 'shall', 'be', 'free', 'indeed', 'when', 'your\\ndays', 'are', 'not', 'without', 'a', 'care', 'nor', 'your\\n', 'without', 'a', 'want', 'and', 'a', 'grief,\\n\\nBut', 'rather', 'when', 'these', 'things', 'girdle', 'your\\nlife', 'and', 'yet', 'you', 'rise', 'above', 'them', 'naked\\nand', 'unbound.\\n\\n*****\\n\\nAnd', 'how', 'shall', 'you', 'rise', 'beyond', 'your', 'days\\nand', 'nights', 'unless', 'you', 'break', 'the\\nchains', 'which', 'you', 'at', 'the', 'dawn', 'of', 'your\\nunderstanding', 'have', 'fastened', 'around', 'your\\nnoon', 'hour?\\n\\nIn', 'truth', 'that', 'which', 'you', 'call', 'freedom', 'is\\nthe', 'strongest', 'of', 'these', 'chains,', 'though\\nits', 'links', 'glitter', 'in', 'the', 'sun', 'and', 'dazzle\\nyour', 'eyes.\\n\\nAnd', 'what', 'is', 'it', 'but', 'fragments', 'of', 'your\\nown', 'self', 'you', 'would', 'discard', 'that', 'you', 'may\\nbecome', 'free?\\n\\nIf', 'it', 'is', 'an', 'unjust', 'law', 'you', 'would\\nabolish,', 'that', 'law', 'was', 'written', 'with', 'your\\nown', 'hand', 'upon', 'your', 'own', 'forehead.\\n\\nYou', 'cannot', 'erase', 'it', 'by', 'burning', 'your', 'law\\nbooks', 'nor', 'by', 'washing', 'the', 'foreheads', 'of\\nyour', 'judges,', 'though', 'you', 'pour', 'the', 'sea\\nupon', 'them.\\n\\nAnd', 'if', 'it', 'is', 'a', 'despot', 'you', 'would\\n', 'see', 'first', 'that', 'his', 'throne\\nerected', 'within', 'you', 'is', 'destroyed.\\n\\nFor', 'how', 'can', 'a', 'tyrant', 'rule', 'the', 'free', 'and\\nthe', 'proud,', 'but', 'for', 'a', 'tyranny', 'in', 'their\\nown', 'freedom', 'and', 'a', 'shame', 'in', 'their', 'own\\npride?\\n\\nAnd', 'if', 'it', 'is', 'a', 'care', 'you', 'would', 'cast', 'off,\\nthat', 'cart', 'has', 'been', 'chosen', 'by', 'you', 'rather\\nthan', 'imposed', 'upon', 'you.\\n\\nAnd', 'if', 'it', 'is', 'a', 'fear', 'you', 'would', 'dispel,\\nthe', 'seat', 'of', 'that', 'fear', 'is', 'in', 'your', 'heart\\nand', 'not', 'in', 'the', 'hand', 'of', 'the', 'feared.\\n\\n*****\\n\\nVerily', 'all', 'things', 'move', 'within', 'your', 'being\\nin', 'constant', 'half', 'embrace,', 'the', 'desired\\nand', 'the', 'dreaded,', 'the', 'repugnant', 'and', 'the\\ncherished,', 'the', 'pursued', 'and', 'that', 'which\\nyou', 'would', 'escape.\\n\\nThese', 'things', 'move', 'within', 'you', 'as', 'lights\\nand', 'shadows', 'in', 'pairs', 'that', 'cling.\\n\\nAnd', 'when', 'the', 'shadow', 'fades', 'and', 'is', 'no\\nmore,', 'the', 'light', 'that', 'lingers', 'becomes', 'a\\nshadow', 'to', 'another', 'light.\\n\\nAnd', 'thus', 'your', 'freedom', 'when', 'it', 'loses', 'its\\nfetters', 'becomes', 'itself', 'the', 'fetter', 'of', 'a\\ngreater', 'freedom.\\n\\n*****', '*****\\n\\n', 'the', 'priestess', 'spoke', 'again\\nand', 'said:', 'Speak', 'to', 'us', 'of', '_Reason', 'and\\nPassion_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYour', 'soul', 'is', 'oftentimes', 'a', 'battlefield,\\nupon', 'which', 'your', 'reason', 'and', 'your', 'judgment\\nwage', 'war', 'against', 'your', 'passion', 'and', 'your\\nappetite.\\n\\nWould', 'that', 'I', 'could', 'be', 'the', 'peacemaker', 'in\\nyour', 'soul,', 'that', 'I', 'might', 'turn', 'the', 'discord\\nand', 'the', 'rivalry', 'of', 'your', 'elements', 'into\\noneness', 'and', 'melody.\\n\\nBut', 'how', 'shall', 'I,', 'unless', 'you', 'yourselves\\nbe', 'also', 'the', 'peacemakers,', 'nay,', 'the', 'lovers\\nof', 'all', 'your', 'elements?\\n\\nYour', 'reason', 'and', 'your', 'passion', 'are', 'the\\nrudder', 'and', 'the', 'sails', 'of', 'your', 'seafaring\\nsoul.\\n\\nIf', 'either', 'your', 'sails', 'or', 'your', 'rudder', 'be\\nbroken,', 'you', 'can', 'but', 'toss', 'and', 'drift,\\nor', 'else', 'be', 'held', 'at', 'a', 'standstill', 'in\\nmid-seas.', '', 'reason,', 'ruling', 'alone,\\nis', 'a', 'force', 'confining;', 'and', 'passion,\\nunattended,', 'is', 'a', 'flame', 'that', 'burns', 'to', 'its\\nown', 'destruction.\\n\\nTherefore', 'let', 'your', 'soul', 'exalt', 'your\\nreason', 'to', 'the', 'height', 'of', 'passion,', 'that', 'it\\nmay', 'sing;\\n\\nAnd', 'let', 'it', 'direct', 'your', 'passion', 'with\\nreason,', 'that', 'your', 'passion', 'may', 'live\\nthrough', 'its', 'own', 'daily', 'resurrection,\\nand', 'like', 'the', 'phoenix', 'rise', 'above', 'its', 'own\\nashes.\\n\\n*****\\n\\nI', 'would', 'have', 'you', 'consider', 'your', 'judgment\\nand', 'your', 'appetite', 'even', 'as', 'you', 'would', 'two\\nloved', 'guests', 'in', 'your', 'house.\\n\\nSurely', 'you', 'would', 'not', 'honour', 'one', 'guest\\nabove', 'the', 'other;', 'for', 'he', 'who', 'is', 'more\\nmindful', 'of', 'one', 'loses', 'the', 'love', 'and', 'the\\nfaith', 'of', 'both\\n\\nAmong', 'the', 'hills,', 'when', 'you', 'sit', 'in', 'the\\ncool', 'shade', 'of', 'the', 'white', 'poplars,', 'sharing\\nthe', 'peace', 'and', 'serenity', 'of', 'distant', 'fields\\nand', 'meadows--then', 'let', 'your', 'heart', 'say', 'in\\nsilence,', '“God', 'rests', 'in', 'reason.”\\n\\nAnd', 'when', 'the', 'storm', 'comes,', 'and', 'the\\n', 'wind', 'shakes', 'the', 'forest,\\nand', 'thunder', 'and', 'lightning', 'proclaim', 'the\\nmajesty', 'of', 'the', 'sky,--then', 'let', 'your', 'heart\\nsay', 'in', 'awe,', '“God', 'moves', 'in', 'passion.”\\n\\nAnd', 'since', 'you', 'are', 'a', 'breath', 'in', 'God’s\\nsphere,', 'and', 'a', 'leaf', 'in', 'God’s', 'forest,', 'you\\ntoo', 'should', 'rest', 'in', 'reason', 'and', 'move', 'in\\npassion.\\n\\n*****', '*****\\n\\n', 'a', 'woman', 'spoke,', 'saying,', 'Tell', 'us\\nof', '_Pain_.\\n\\nAnd', 'he', 'said:\\n\\nYour', 'pain', 'is', 'the', 'breaking', 'of', 'the', 'shell\\nthat', 'encloses', 'your', 'understanding.\\n\\nEven', 'as', 'the', 'stone', 'of', 'the', 'fruit', 'must\\nbreak,', 'that', 'its', 'heart', 'may', 'stand', 'in', 'the\\nsun,', 'so', 'must', 'you', 'know', 'pain.\\n\\nAnd', 'could', 'you', 'keep', 'your', 'heart', 'in', 'wonder\\nat', 'the', 'daily', 'miracles', 'of', 'your', 'life,', 'your\\npain', 'would', 'not', 'seem', 'less', 'wondrous', 'than\\nyour', 'joy;\\n\\nAnd', 'you', 'would', 'accept', 'the', 'seasons', 'of', 'your\\nheart,', 'even', 'as', 'you', 'have', 'always', 'accepted\\nthe', 'seasons', 'that', 'pass', 'over', 'your', 'fields.\\n\\nAnd', 'you', 'would', 'watch', 'with', 'serenity\\nthrough', 'the', 'winters', 'of', 'your', 'grief.\\n\\nMuch', 'of', 'your', 'pain', 'is', 'self-chosen.\\n\\nIt', 'is', 'the', 'bitter', 'potion', 'by', 'which', 'the\\nphysician', '', 'you', 'heals', 'your', 'sick\\nself.\\n\\nTherefore', 'trust', 'the', 'physician,', 'and', 'drink\\nhis', 'remedy', 'in', 'silence', 'and', 'tranquillity:\\nFor', 'his', 'hand,', 'though', 'heavy', 'and', 'hard,', 'is\\nguided', 'by', 'the', 'tender', 'hand', 'of', 'the', 'Unseen,\\nAnd', 'the', 'cup', 'he', 'brings,', 'though', 'it', 'burn\\nyour', 'lips,', 'has', 'been', 'fashioned', 'of', 'the\\nclay', 'which', 'the', 'Potter', 'has', 'moistened', 'with\\nHis', 'own', 'sacred', 'tears.\\n\\n*****', '*****\\n\\n', 'a', 'man', 'said,', 'Speak', 'to', 'us', 'of\\n_Self-Knowledge_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYour', 'hearts', 'know', 'in', 'silence', 'the', 'secrets\\nof', 'the', 'days', 'and', 'the', 'nights.\\n\\nBut', 'your', 'ears', 'thirst', 'for', 'the', 'sound', 'of\\nyour', 'heart’s', 'knowledge.\\n\\nYou', 'would', 'know', 'in', 'words', 'that', 'which', 'you\\nhave', 'always', 'known', 'in', 'thought.\\n\\nYou', 'would', 'touch', 'with', 'your', 'fingers', 'the\\nnaked', 'body', 'of', 'your', 'dreams.\\n\\nAnd', 'it', 'is', 'well', 'you', 'should.\\n\\nThe', 'hidden', 'well-spring', 'of', 'your', 'soul', 'must\\nneeds', 'rise', 'and', 'run', 'murmuring', 'to', 'the', 'sea;\\n\\nAnd', 'the', 'treasure', 'of', 'your', 'infinite', 'depths\\nwould', 'be', 'revealed', 'to', 'your', 'eyes.\\n\\nBut', 'let', 'there', 'be', 'no', 'scales', 'to', 'weigh', 'your\\nunknown', 'treasure;\\n\\nAnd', 'seek', 'not', 'the', 'depths', 'of', 'your\\n', 'with', 'staff', 'or', 'sounding\\nline.\\n\\nFor', 'self', 'is', 'a', 'sea', 'boundless', 'and\\nmeasureless.\\n\\n*****\\n\\nSay', 'not,', '“I', 'have', 'found', 'the', 'truth,”', 'but\\nrather,', '“I', 'have', 'found', 'a', 'truth.”\\n\\nSay', 'not,', '“I', 'have', 'found', 'the', 'path', 'of', 'the\\nsoul.”', 'Say', 'rather,', '“I', 'have', 'met', 'the', 'soul\\nwalking', 'upon', 'my', 'path.”\\n\\nFor', 'the', 'soul', 'walks', 'upon', 'all', 'paths.\\n\\nThe', 'soul', 'walks', 'not', 'upon', 'a', 'line,', 'neither\\ndoes', 'it', 'grow', 'like', 'a', 'reed.\\n\\nThe', 'soul', 'unfolds', 'itself,', 'like', 'a', 'lotus', 'of\\ncountless', 'petals.\\n\\n[Illustration:', '0083]\\n\\n*****', '*****\\n\\n', 'said', 'a', 'teacher,', 'Speak', 'to', 'us', 'of\\n_Teaching_.\\n\\nAnd', 'he', 'said:\\n\\n“No', 'man', 'can', 'reveal', 'to', 'you', 'aught', 'but', 'that\\nwhich', 'already', 'lies', 'half', 'asleep', 'in', 'the\\ndawning', 'of', 'your', 'knowledge.\\n\\nThe', 'teacher', 'who', 'walks', 'in', 'the', 'shadow', 'of\\nthe', 'temple,', 'among', 'his', 'followers,', 'gives\\nnot', 'of', 'his', 'wisdom', 'but', 'rather', 'of', 'his\\nfaith', 'and', 'his', 'lovingness.\\n\\nIf', 'he', 'is', 'indeed', 'wise', 'he', 'does', 'not', 'bid\\nyou', 'enter', 'the', 'house', 'of', 'his', 'wisdom,', 'but\\nrather', 'leads', 'you', 'to', 'the', 'threshold', 'of\\nyour', 'own', 'mind.\\n\\nThe', 'astronomer', 'may', 'speak', 'to', 'you', 'of', 'his\\nunderstanding', 'of', 'space,', 'but', 'he', 'cannot\\ngive', 'you', 'his', 'understanding.\\n\\nThe', 'musician', 'may', 'sing', 'to', 'you', 'of', 'the\\nrhythm', 'which', 'is', 'in', 'all', 'space,', 'but', 'he\\ncannot', 'give', 'you', 'the', 'ear', 'which', 'arrests\\nthe', 'rhythm', 'nor', 'the', 'voice', 'that', 'echoes', 'it.\\n', 'he', 'who', 'is', 'versed', 'in', 'the', 'science\\nof', 'numbers', 'can', 'tell', 'of', 'the', 'regions\\nof', 'weight', 'and', 'measure,', 'but', 'he', 'cannot\\nconduct', 'you', 'thither.\\n\\nFor', 'the', 'vision', 'of', 'one', 'man', 'lends', 'not', 'its\\nwings', 'to', 'another', 'man.\\n\\nAnd', 'even', 'as', 'each', 'one', 'of', 'you', 'stands', 'alone\\nin', 'God’s', 'knowledge,', 'so', 'must', 'each', 'one', 'of\\nyou', 'be', 'alone', 'in', 'his', 'knowledge', 'of', 'God', 'and\\nin', 'his', 'understanding', 'of', 'the', 'earth.\\n\\n*****', '*****\\n\\n', 'a', 'youth', 'said,', 'Speak', 'to', 'us', 'of\\n_Friendship_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYour', 'friend', 'is', 'your', 'needs', 'answered.\\n\\nHe', 'is', 'your', 'field', 'which', 'you', 'sow', 'with', 'love\\nand', 'reap', 'with', 'thanksgiving.\\n\\nAnd', 'he', 'is', 'your', 'board', 'and', 'your', 'fireside.\\n\\nFor', 'you', 'come', 'to', 'him', 'with', 'your', 'hunger,\\nand', 'you', 'seek', 'him', 'for', 'peace.\\n\\nWhen', 'your', 'friend', 'speaks', 'his', 'mind', 'you\\nfear', 'not', 'the', '“nay”', 'in', 'your', 'own', 'mind,', 'nor\\ndo', 'you', 'withhold', 'the', '“ay.”\\n\\nAnd', 'when', 'he', 'is', 'silent', 'your', 'heart', 'ceases\\nnot', 'to', 'listen', 'to', 'his', 'heart;\\n\\nFor', 'without', 'words,', 'in', 'friendship,', 'all\\nthoughts,', 'all', 'desires,', 'all', 'expectations\\nare', 'born', 'and', 'shared,', 'with', 'joy', 'that', 'is\\nunacclaimed.\\n\\nWhen', 'you', 'part', 'from', 'your', 'friend,', 'you\\ngrieve', 'not;\\n\\nFor', 'that', 'which', 'you', 'love', 'most', 'in', 'him\\nmay', 'be', 'clearer', 'in', 'his', 'absence,', 'as', 'the\\nmountain', 'to', 'the', 'climber', 'is', 'clearer\\nfrom', 'the', 'plain.', '', 'let', 'there', 'be', 'no\\npurpose', 'in', 'friendship', 'save', 'the', 'deepening\\nof', 'the', 'spirit.\\n\\nFor', 'love', 'that', 'seeks', 'aught', 'but', 'the\\ndisclosure', 'of', 'its', 'own', 'mystery', 'is', 'not\\nlove', 'but', 'a', 'net', 'cast', 'forth:', 'and', 'only', 'the\\nunprofitable', 'is', 'caught.\\n\\n*****\\n\\nAnd', 'let', 'your', 'best', 'be', 'for', 'your', 'friend.\\n\\nIf', 'he', 'must', 'know', 'the', 'ebb', 'of', 'your', 'tide,\\nlet', 'him', 'know', 'its', 'flood', 'also.\\n\\nFor', 'what', 'is', 'your', 'friend', 'that', 'you', 'should\\nseek', 'him', 'with', 'hours', 'to', 'kill?\\n\\nSeek', 'him', 'always', 'with', 'hours', 'to', 'live.\\n\\nFor', 'it', 'is', 'his', 'to', 'fill', 'your', 'need,', 'but', 'not\\nyour', 'emptiness.\\n\\nAnd', 'in', 'the', 'sweetness', 'of', 'friendship\\nlet', 'there', 'be', 'laughter,', 'and', 'sharing', 'of\\npleasures.\\n\\nFor', 'in', 'the', 'dew', 'of', 'little', 'things\\nthe', 'heart', 'finds', 'its', 'morning', 'and', 'is\\nrefreshed.\\n\\n*****', '*****\\n\\n', 'then', 'a', 'scholar', 'said,', 'Speak', 'of\\n_Talking_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYou', 'talk', 'when', 'you', 'cease', 'to', 'be', 'at', 'peace\\nwith', 'your', 'thoughts;\\n\\nAnd', 'when', 'you', 'can', 'no', 'longer', 'dwell', 'in', 'the\\nsolitude', 'of', 'your', 'heart', 'you', 'live', 'in', 'your\\nlips,', 'and', 'sound', 'is', 'a', 'diversion', 'and', 'a\\npastime.\\n\\nAnd', 'in', 'much', 'of', 'your', 'talking,', 'thinking', 'is\\nhalf', 'murdered.\\n\\nFor', 'thought', 'is', 'a', 'bird', 'of', 'space,', 'that', 'in\\na', 'cage', 'of', 'words', 'may', 'indeed', 'unfold', 'its\\nwings', 'but', 'cannot', 'fly.\\n\\nThere', 'are', 'those', 'among', 'you', 'who', 'seek', 'the\\ntalkative', 'through', 'fear', 'of', 'being', 'alone.\\n\\nThe', 'silence', 'of', 'aloneness', 'reveals', 'to\\ntheir', 'eyes', 'their', 'naked', 'selves', 'and', 'they\\nwould', 'escape.\\n\\nAnd', 'there', 'are', 'those', 'who', 'talk,', 'and\\n', 'knowledge', 'or', 'forethought', 'reveal\\na', 'truth', 'which', 'they', 'themselves', 'do', 'not\\nunderstand.\\n\\nAnd', 'there', 'are', 'those', 'who', 'have', 'the', 'truth\\nwithin', 'them,', 'but', 'they', 'tell', 'it', 'not', 'in\\nwords.\\n\\nIn', 'the', 'bosom', 'of', 'such', 'as', 'these', 'the', 'spirit\\ndwells', 'in', 'rhythmic', 'silence.\\n\\n*****\\n\\nWhen', 'you', 'meet', 'your', 'friend', 'on', 'the\\nroadside', 'or', 'in', 'the', 'market', 'place,', 'let', 'the\\nspirit', 'in', 'you', 'move', 'your', 'lips', 'and', 'direct\\nyour', 'tongue.\\n\\nLet', 'the', 'voice', 'within', 'your', 'voice', 'speak', 'to\\nthe', 'ear', 'of', 'his', 'ear;\\n\\nFor', 'his', 'soul', 'will', 'keep', 'the', 'truth', 'of\\nyour', 'heart', 'as', 'the', 'taste', 'of', 'the', 'wine', 'is\\nremembered\\n\\nWhen', 'the', 'colour', 'is', 'forgotten', 'and', 'the\\nvessel', 'is', 'no', 'more.\\n\\n*****', '*****\\n\\n', 'an', 'astronomer', 'said,', 'Master,', 'what\\nof', '_Time_?\\n\\nAnd', 'he', 'answered:\\n\\nYou', 'would', 'measure', 'time', 'the', 'measureless\\nand', 'the', 'immeasurable.\\n\\nYou', 'would', 'adjust', 'your', 'conduct', 'and\\neven', 'direct', 'the', 'course', 'of', 'your', 'spirit\\naccording', 'to', 'hours', 'and', 'seasons.\\n\\nOf', 'time', 'you', 'would', 'make', 'a', 'stream', 'upon\\nwhose', 'bank', 'you', 'would', 'sit', 'and', 'watch', 'its\\nflowing.\\n\\nYet', 'the', 'timeless', 'in', 'you', 'is', 'aware', 'of\\nlife’s', 'timelessness,\\n\\nAnd', 'knows', 'that', 'yesterday', 'is', 'but', 'today’s\\nmemory', 'and', 'tomorrow', 'is', 'today’s', 'dream.\\n\\nAnd', 'that', 'that', 'which', 'sings', 'and\\ncontemplates', 'in', 'you', 'is', 'still', 'dwelling\\nwithin', 'the', 'bounds', 'of', 'that', 'first', 'moment\\nwhich', 'scattered', 'the', 'stars', 'into', 'space.\\n', 'among', 'you', 'does', 'not', 'feel', 'that', 'his\\npower', 'to', 'love', 'is', 'boundless?\\n\\nAnd', 'yet', 'who', 'does', 'not', 'feel', 'that', 'very\\nlove,', 'though', 'boundless,', 'encompassed\\nwithin', 'the', 'centre', 'of', 'his', 'being,', 'and\\nmoving', 'not', 'from', 'love', 'thought', 'to', 'love\\nthought,', 'nor', 'from', 'love', 'deeds', 'to', 'other\\nlove', 'deeds?\\n\\nAnd', 'is', 'not', 'time', 'even', 'as', 'love', 'is,\\nundivided', 'and', 'paceless?\\n\\n*****\\n\\nBut', 'if', 'in', 'your', 'thought', 'you', 'must', 'measure\\ntime', 'into', 'seasons,', 'let', 'each', 'season\\nencircle', 'all', 'the', 'other', 'seasons,\\n\\nAnd', 'let', 'today', 'embrace', 'the', 'past', 'with\\nremembrance', 'and', 'the', 'future', 'with', 'longing.\\n\\n*****', '*****\\n\\n', 'one', 'of', 'the', 'elders', 'of', 'the', 'city\\nsaid,', 'Speak', 'to', 'us', 'of', '_Good', 'and', 'Evil_.\\n\\nAnd', 'he', 'answered:\\n\\nOf', 'the', 'good', 'in', 'you', 'I', 'can', 'speak,', 'but', 'not\\nof', 'the', 'evil.\\n\\nFor', 'what', 'is', 'evil', 'but', 'good', 'tortured', 'by\\nits', 'own', 'hunger', 'and', 'thirst?\\n\\nVerily', 'when', 'good', 'is', 'hungry', 'it', 'seeks', 'food\\neven', 'in', 'dark', 'caves,', 'and', 'when', 'it', 'thirsts\\nit', 'drinks', 'even', 'of', 'dead', 'waters.\\n\\nYou', 'are', 'good', 'when', 'you', 'are', 'one', 'with\\nyourself.\\n\\nYet', 'when', 'you', 'are', 'not', 'one', 'with', 'yourself\\nyou', 'are', 'not', 'evil.\\n\\nFor', 'a', 'divided', 'house', 'is', 'not', 'a', 'den', 'of\\nthieves;', 'it', 'is', 'only', 'a', 'divided', 'house.\\n\\nAnd', 'a', 'ship', 'without', 'rudder', 'may', 'wander\\naimlessly', 'among', 'perilous', 'isles', 'yet', 'sink\\nnot', 'to', 'the', 'bottom.', '', 'are', 'good', 'when\\nyou', 'strive', 'to', 'give', 'of', 'yourself.\\n\\nYet', 'you', 'are', 'not', 'evil', 'when', 'you', 'seek', 'gain\\nfor', 'yourself.\\n\\nFor', 'when', 'you', 'strive', 'for', 'gain', 'you', 'are\\nbut', 'a', 'root', 'that', 'clings', 'to', 'the', 'earth', 'and\\nsucks', 'at', 'her', 'breast.\\n\\nSurely', 'the', 'fruit', 'cannot', 'say', 'to', 'the', 'root,\\n“Be', 'like', 'me,', 'ripe', 'and', 'full', 'and', 'ever\\ngiving', 'of', 'your', 'abundance.”\\n\\nFor', 'to', 'the', 'fruit', 'giving', 'is', 'a', 'need,', 'as\\nreceiving', 'is', 'a', 'need', 'to', 'the', 'root.\\n\\n*****\\n\\nYou', 'are', 'good', 'when', 'you', 'are', 'fully', 'awake', 'in\\nyour', 'speech,\\n\\nYet', 'you', 'are', 'not', 'evil', 'when', 'you', 'sleep\\nwhile', 'your', 'tongue', 'staggers', 'without\\npurpose.\\n\\nAnd', 'even', 'stumbling', 'speech', 'may', 'strengthen\\na', 'weak', 'tongue.\\n\\nYou', 'are', 'good', 'when', 'you', 'walk', 'to', 'your', 'goal\\nfirmly', 'and', 'with', 'bold', 'steps.\\n\\nYet', 'you', 'are', 'not', 'evil', 'when', 'you', 'go', 'thither\\nlimping.', '', 'those', 'who', 'limp', 'go', 'not\\nbackward.\\n\\nBut', 'you', 'who', 'are', 'strong', 'and', 'swift,', 'see\\nthat', 'you', 'do', 'not', 'limp', 'before', 'the', 'lame,\\ndeeming', 'it', 'kindness.\\n\\n*****\\n\\nYou', 'are', 'good', 'in', 'countless', 'ways,', 'and', 'you\\nare', 'not', 'evil', 'when', 'you', 'are', 'not', 'good,\\n\\nYou', 'are', 'only', 'loitering', 'and', 'sluggard.\\n\\nPity', 'that', 'the', 'stags', 'cannot', 'teach\\nswiftness', 'to', 'the', 'turtles.\\n\\nIn', 'your', 'longing', 'for', 'your', 'giant', 'self', 'lies\\nyour', 'goodness:', 'and', 'that', 'longing', 'is', 'in\\nall', 'of', 'you.\\n\\nBut', 'in', 'some', 'of', 'you', 'that', 'longing', 'is', 'a\\ntorrent', 'rushing', 'with', 'might', 'to', 'the', 'sea,\\ncarrying', 'the', 'secrets', 'of', 'the', 'hillsides\\nand', 'the', 'songs', 'of', 'the', 'forest.\\n\\nAnd', 'in', 'others', 'it', 'is', 'a', 'flat', 'stream', 'that\\nloses', 'itself', 'in', 'angles', 'and', 'bends', 'and\\nlingers', 'before', 'it', 'reaches', 'the', 'shore.\\n\\nBut', 'let', 'not', 'him', 'who', 'longs', 'much', 'say', 'to\\n', 'who', 'longs', 'little,', '“Wherefore', 'are\\nyou', 'slow', 'and', 'halting?”\\n\\nFor', 'the', 'truly', 'good', 'ask', 'not', 'the', 'naked,\\n“Where', 'is', 'your', 'garment?”', 'nor', 'the\\nhouseless,', '“What', 'has', 'befallen', 'your\\nhouse?”\\n\\n*****', '*****\\n\\n', 'a', 'priestess', 'said,', 'Speak', 'to', 'us\\nof', '_Prayer_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYou', 'pray', 'in', 'your', 'distress', 'and', 'in', 'your\\nneed;', 'would', 'that', 'you', 'might', 'pray', 'also\\nin', 'the', 'fullness', 'of', 'your', 'joy', 'and', 'in', 'your\\ndays', 'of', 'abundance.\\n\\nFor', 'what', 'is', 'prayer', 'but', 'the', 'expansion', 'of\\nyourself', 'into', 'the', 'living', 'ether?\\n\\nAnd', 'if', 'it', 'is', 'for', 'your', 'comfort', 'to', 'pour\\nyour', 'darkness', 'into', 'space,', 'it', 'is', 'also', 'for\\nyour', 'delight', 'to', 'pour', 'forth', 'the', 'dawning\\nof', 'your', 'heart.\\n\\nAnd', 'if', 'you', 'cannot', 'but', 'weep', 'when', 'your\\nsoul', 'summons', 'you', 'to', 'prayer,', 'she', 'should\\nspur', 'you', 'again', 'and', 'yet', 'again,', 'though\\nweeping,', 'until', 'you', 'shall', 'come', 'laughing.\\n\\nWhen', 'you', 'pray', 'you', 'rise', 'to', 'meet', 'in', 'the\\nair', 'those', 'who', 'are', 'praying', 'at', 'that', 'very\\n', 'and', 'whom', 'save', 'in', 'prayer', 'you\\nmay', 'not', 'meet.\\n\\nTherefore', 'let', 'your', 'visit', 'to', 'that', 'temple\\ninvisible', 'be', 'for', 'naught', 'but', 'ecstasy', 'and\\nsweet', 'communion.\\n\\nFor', 'if', 'you', 'should', 'enter', 'the', 'temple', 'for\\nno', 'other', 'purpose', 'than', 'asking', 'you', 'shall\\nnot', 'receive:\\n\\nAnd', 'if', 'you', 'should', 'enter', 'into', 'it', 'to\\nhumble', 'yourself', 'you', 'shall', 'not', 'be', 'lifted:\\n\\nOr', 'even', 'if', 'you', 'should', 'enter', 'into', 'it', 'to\\nbeg', 'for', 'the', 'good', 'of', 'others', 'you', 'shall', 'not\\nbe', 'heard.\\n\\nIt', 'is', 'enough', 'that', 'you', 'enter', 'the', 'temple\\ninvisible.\\n\\n*****\\n\\nI', 'cannot', 'teach', 'you', 'how', 'to', 'pray', 'in', 'words.\\n\\nGod', 'listens', 'not', 'to', 'your', 'words', 'save', 'when\\nHe', 'Himself', 'utters', 'them', 'through', 'your\\nlips.\\n\\nAnd', 'I', 'cannot', 'teach', 'you', 'the', 'prayer', 'of', 'the\\nseas', 'and', 'the', 'forests', 'and', 'the', 'mountains.\\n', 'you', 'who', 'are', 'born', 'of', 'the\\nmountains', 'and', 'the', 'forests', 'and', 'the', 'seas\\ncan', 'find', 'their', 'prayer', 'in', 'your', 'heart,\\n\\nAnd', 'if', 'you', 'but', 'listen', 'in', 'the', 'stillness\\nof', 'the', 'night', 'you', 'shall', 'hear', 'them', 'saying\\nin', 'silence,\\n\\n“Our', 'God,', 'who', 'art', 'our', 'winged', 'self,', 'it', 'is\\nthy', 'will', 'in', 'us', 'that', 'willeth.\\n\\nIt', 'is', 'thy', 'desire', 'in', 'us', 'that', 'desireth.\\n\\nIt', 'is', 'thy', 'urge', 'in', 'us', 'that', 'would', 'turn', 'our\\nnights,', 'which', 'are', 'thine,', 'into', 'days', 'which\\nare', 'thine', 'also.\\n\\nWe', 'cannot', 'ask', 'thee', 'for', 'aught,', 'for', 'thou\\nknowest', 'our', 'needs', 'before', 'they', 'are', 'born\\nin', 'us:\\n\\nThou', 'art', 'our', 'need;', 'and', 'in', 'giving', 'us', 'more\\nof', 'thyself', 'thou', 'givest', 'us', 'all.”\\n\\n[Illustration:', '0100]\\n\\n*****', '*****\\n\\n', 'a', 'hermit,', 'who', 'visited', 'the', 'city\\nonce', 'a', 'year,', 'came', 'forth', 'and', 'said,', 'Speak\\nto', 'us', 'of', '_Pleasure_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nPleasure', 'is', 'a', 'freedom-song,\\n\\nBut', 'it', 'is', 'not', 'freedom.\\n\\nIt', 'is', 'the', 'blossoming', 'of', 'your', 'desires,\\n\\nBut', 'it', 'is', 'not', 'their', 'fruit.\\n\\nIt', 'is', 'a', 'depth', 'calling', 'unto', 'a', 'height,\\n\\nBut', 'it', 'is', 'not', 'the', 'deep', 'nor', 'the', 'high.\\n\\nIt', 'is', 'the', 'caged', 'taking', 'wing,\\n\\nBut', 'it', 'is', 'not', 'space', 'encompassed.\\n\\nAy,', 'in', 'very', 'truth,', 'pleasure', 'is', 'a\\nfreedom-song.\\n\\nAnd', 'I', 'fain', 'would', 'have', 'you', 'sing', 'it', 'with\\nfullness', 'of', 'heart;', 'yet', 'I', 'would', 'not', 'have\\nyou', 'lose', 'your', 'hearts', 'in', 'the', 'singing.\\n\\nSome', 'of', 'your', 'youth', 'seek', 'pleasure', 'as', 'if\\nit', 'were', 'all,', 'and', 'they', 'are', 'judged', 'and\\nrebuked.', '', 'would', 'not', 'judge', 'nor\\nrebuke', 'them.', 'I', 'would', 'have', 'them', 'seek.\\n\\nFor', 'they', 'shall', 'find', 'pleasure,', 'but', 'not\\nher', 'alone;\\n\\nSeven', 'are', 'her', 'sisters,', 'and', 'the', 'least', 'of\\nthem', 'is', 'more', 'beautiful', 'than', 'pleasure.\\n\\nHave', 'you', 'not', 'heard', 'of', 'the', 'man', 'who', 'was\\ndigging', 'in', 'the', 'earth', 'for', 'roots', 'and', 'found\\na', 'treasure?\\n\\n*****\\n\\nAnd', 'some', 'of', 'your', 'elders', 'remember\\npleasures', 'with', 'regret', 'like', 'wrongs\\ncommitted', 'in', 'drunkenness.\\n\\nBut', 'regret', 'is', 'the', 'beclouding', 'of', 'the', 'mind\\nand', 'not', 'its', 'chastisement.\\n\\nThey', 'should', 'remember', 'their', 'pleasures\\nwith', 'gratitude,', 'as', 'they', 'would', 'the\\nharvest', 'of', 'a', 'summer.\\n\\nYet', 'if', 'it', 'comforts', 'them', 'to', 'regret,', 'let\\nthem', 'be', 'comforted.\\n\\nAnd', 'there', 'are', 'among', 'you', 'those', 'who\\nare', 'neither', 'young', 'to', 'seek', 'nor', 'old', 'to\\nremember;\\n\\nAnd', 'in', 'their', 'fear', 'of', 'seeking', 'and\\nremembering', '', 'shun', 'all', 'pleasures,\\nlest', 'they', 'neglect', 'the', 'spirit', 'or', 'offend\\nagainst', 'it.\\n\\nBut', 'even', 'in', 'their', 'foregoing', 'is', 'their\\npleasure.\\n\\nAnd', 'thus', 'they', 'too', 'find', 'a', 'treasure', 'though\\nthey', 'dig', 'for', 'roots', 'with', 'quivering', 'hands.\\n\\nBut', 'tell', 'me,', 'who', 'is', 'he', 'that', 'can', 'offend\\nthe', 'spirit?\\n\\nShall', 'the', 'nightingale', 'offend', 'the\\nstillness', 'of', 'the', 'night,', 'or', 'the', 'firefly\\nthe', 'stars?\\n\\nAnd', 'shall', 'your', 'flame', 'or', 'your', 'smoke\\nburden', 'the', 'wind?\\n\\nThink', 'you', 'the', 'spirit', 'is', 'a', 'still', 'pool\\nwhich', 'you', 'can', 'trouble', 'with', 'a', 'staff?\\n\\n*****\\n\\nOftentimes', 'in', 'denying', 'yourself', 'pleasure\\nyou', 'do', 'but', 'store', 'the', 'desire', 'in', 'the\\nrecesses', 'of', 'your', 'being.\\n\\nWho', 'knows', 'but', 'that', 'which', 'seems', 'omitted\\ntoday,', 'waits', 'for', 'tomorrow?\\n\\nEven', 'your', 'body', 'knows', 'its', 'heritage\\nand', 'its', 'rightful', 'need', 'and', 'will', 'not', 'be\\ndeceived.\\n\\nAnd', 'your', 'body', 'is', 'the', 'harp', 'of', 'your', 'soul,\\n\\nAnd', 'it', 'is', 'yours', 'to', 'bring', 'forth', '', 'from', 'it', 'or', 'confused', 'sounds.\\n\\n*****\\n\\nAnd', 'now', 'you', 'ask', 'in', 'your', 'heart,', '“How\\nshall', 'we', 'distinguish', 'that', 'which', 'is\\ngood', 'in', 'pleasure', 'from', 'that', 'which', 'is', 'not\\ngood?”\\n\\nGo', 'to', 'your', 'fields', 'and', 'your', 'gardens,', 'and\\nyou', 'shall', 'learn', 'that', 'it', 'is', 'the', 'pleasure\\nof', 'the', 'bee', 'to', 'gather', 'honey', 'of', 'the\\nflower,\\n\\nBut', 'it', 'is', 'also', 'the', 'pleasure', 'of', 'the\\nflower', 'to', 'yield', 'its', 'honey', 'to', 'the', 'bee.\\n\\nFor', 'to', 'the', 'bee', 'a', 'flower', 'is', 'a', 'fountain', 'of\\nlife,\\n\\nAnd', 'to', 'the', 'flower', 'a', 'bee', 'is', 'a', 'messenger\\nof', 'love,\\n\\nAnd', 'to', 'both,', 'bee', 'and', 'flower,', 'the', 'giving\\nand', 'the', 'receiving', 'of', 'pleasure', 'is', 'a', 'need\\nand', 'an', 'ecstasy.\\n\\nPeople', 'of', 'Orphalese,', 'be', 'in', 'your\\npleasures', 'like', 'the', 'flowers', 'and', 'the', 'bees.\\n\\n*****', '*****\\n\\n', 'a', 'poet', 'said,', 'Speak', 'to', 'us', 'of\\n_Beauty_.\\n\\nAnd', 'he', 'answered:\\n\\nWhere', 'shall', 'you', 'seek', 'beauty,', 'and', 'how\\nshall', 'you', 'find', 'her', 'unless', 'she', 'herself', 'be\\nyour', 'way', 'and', 'your', 'guide?\\n\\nAnd', 'how', 'shall', 'you', 'speak', 'of', 'her', 'except\\nshe', 'be', 'the', 'weaver', 'of', 'your', 'speech?\\n\\nThe', 'aggrieved', 'and', 'the', 'injured', 'say,\\n“Beauty', 'is', 'kind', 'and', 'gentle.\\n\\nLike', 'a', 'young', 'mother', 'half-shy', 'of', 'her', 'own\\nglory', 'she', 'walks', 'among', 'us.”\\n\\nAnd', 'the', 'passionate', 'say,', '“Nay,', 'beauty', 'is\\na', 'thing', 'of', 'might', 'and', 'dread.\\n\\nLike', 'the', 'tempest', 'she', 'shakes', 'the', 'earth\\nbeneath', 'us', 'and', 'the', 'sky', 'above', 'us.”\\n\\nThe', 'tired', 'and', 'the', 'weary', 'say,', '“Beauty', 'is\\nof', 'soft', 'whisperings.', 'She', 'speaks', 'in', 'our\\nspirit.', '', 'voice', 'yields', 'to', 'our\\nsilences', 'like', 'a', 'faint', 'light', 'that', 'quivers\\nin', 'fear', 'of', 'the', 'shadow.”\\n\\nBut', 'the', 'restless', 'say,', '“We', 'have', 'heard', 'her\\nshouting', 'among', 'the', 'mountains,\\n\\nAnd', 'with', 'her', 'cries', 'came', 'the', 'sound', 'of\\nhoofs,', 'and', 'the', 'beating', 'of', 'wings', 'and', 'the\\nroaring', 'of', 'lions.”\\n\\nAt', 'night', 'the', 'watchmen', 'of', 'the', 'city', 'say,\\n“Beauty', 'shall', 'rise', 'with', 'the', 'dawn', 'from\\nthe', 'east.”\\n\\nAnd', 'at', 'noontide', 'the', 'toilers', 'and', 'the\\nwayfarers', 'say,', '“We', 'have', 'seen', 'her', 'leaning\\nover', 'the', 'earth', 'from', 'the', 'windows', 'of', 'the\\nsunset.”\\n\\n*****\\n\\nIn', 'winter', 'say', 'the', 'snow-bound,', '“She', 'shall\\ncome', 'with', 'the', 'spring', 'leaping', 'upon', 'the\\nhills.”\\n\\nAnd', 'in', 'the', 'summer', 'heat', 'the', 'reapers\\nsay,', '“We', 'have', 'seen', 'her', 'dancing', 'with', 'the\\nautumn', 'leaves,', 'and', 'we', 'saw', 'a', 'drift', 'of\\nsnow', 'in', 'her', 'hair.”', '', 'these', 'things\\nhave', 'you', 'said', 'of', 'beauty,\\n\\nYet', 'in', 'truth', 'you', 'spoke', 'not', 'of', 'her', 'but', 'of\\nneeds', 'unsatisfied,\\n\\nAnd', 'beauty', 'is', 'not', 'a', 'need', 'but', 'an', 'ecstasy.\\n\\nIt', 'is', 'not', 'a', 'mouth', 'thirsting', 'nor', 'an', 'empty\\nhand', 'stretched', 'forth,\\n\\nBut', 'rather', 'a', 'heart', 'enflamed', 'and', 'a', 'soul\\nenchanted.\\n\\nIt', 'is', 'not', 'the', 'image', 'you', 'would', 'see', 'nor\\nthe', 'song', 'you', 'would', 'hear,\\n\\nBut', 'rather', 'an', 'image', 'you', 'see', 'though', 'you\\nclose', 'your', 'eyes', 'and', 'a', 'song', 'you', 'hear\\nthough', 'you', 'shut', 'your', 'ears.\\n\\nIt', 'is', 'not', 'the', 'sap', 'within', 'the', 'furrowed\\nbark,', 'nor', 'a', 'wing', 'attached', 'to', 'a', 'claw,\\n\\nBut', 'rather', 'a', 'garden', 'for', 'ever', 'in', 'bloom\\nand', 'a', 'flock', 'of', 'angels', 'for', 'ever', 'in\\nflight.\\n\\n*****\\n\\nPeople', 'of', 'Orphalese,', 'beauty', 'is', 'life', 'when\\nlife', 'unveils', 'her', 'holy', 'face.\\n\\nBut', 'you', 'are', 'life', 'and', 'you', 'are', 'the', 'veil.\\n', 'is', 'eternity', 'gazing', 'at', 'itself\\nin', 'a', 'mirror.\\n\\nBut', 'you', 'are', 'eternity', 'and', 'you', 'are', 'the\\nmirror.\\n\\n*****', '*****\\n\\n', 'an', 'old', 'priest', 'said,', 'Speak', 'to', 'us\\nof', '_Religion_.\\n\\nAnd', 'he', 'said:\\n\\nHave', 'I', 'spoken', 'this', 'day', 'of', 'aught', 'else?\\n\\nIs', 'not', 'religion', 'all', 'deeds', 'and', 'all\\nreflection,\\n\\nAnd', 'that', 'which', 'is', 'neither', 'deed', 'nor\\nreflection,', 'but', 'a', 'wonder', 'and', 'a', 'surprise\\never', 'springing', 'in', 'the', 'soul,', 'even', 'while\\nthe', 'hands', 'hew', 'the', 'stone', 'or', 'tend', 'the\\nloom?\\n\\nWho', 'can', 'separate', 'his', 'faith', 'from\\nhis', 'actions,', 'or', 'his', 'belief', 'from', 'his\\noccupations?\\n\\nWho', 'can', 'spread', 'his', 'hours', 'before', 'him,\\nsaving,', '“This', 'for', 'God', 'and', 'this', 'for\\nmyself;', 'This', 'for', 'my', 'soul,', 'and', 'this', 'other\\nfor', 'my', 'body?”\\n\\nAll', 'your', 'hours', 'are', 'wings', 'that', 'beat\\nthrough', 'space', 'from', 'self', 'to', 'self.', '', 'wears', 'his', 'morality', 'but', 'as', 'his', 'best\\ngarment', 'were', 'better', 'naked.\\n\\nThe', 'wind', 'and', 'the', 'sun', 'will', 'tear', 'no', 'holes\\nin', 'his', 'skin.\\n\\nAnd', 'he', 'who', 'defines', 'his', 'conduct', 'by', 'ethics\\nimprisons', 'his', 'song-bird', 'in', 'a', 'cage.\\n\\nThe', 'freest', 'song', 'comes', 'not', 'through', 'bars\\nand', 'wires.\\n\\nAnd', 'he', 'to', 'whom', 'worshipping', 'is', 'a', 'window,\\nto', 'open', 'but', 'also', 'to', 'shut,', 'has', 'not', 'yet\\nvisited', 'the', 'house', 'of', 'his', 'soul', 'whose\\nwindows', 'are', 'from', 'dawn', 'to', 'dawn.\\n\\n*****\\n\\nYour', 'daily', 'life', 'is', 'your', 'temple', 'and', 'your\\nreligion.\\n\\nWhenever', 'you', 'enter', 'into', 'it', 'take', 'with', 'you\\nyour', 'all.\\n\\nTake', 'the', 'plough', 'and', 'the', 'forge', 'and', 'the\\nmallet', 'and', 'the', 'lute,\\n\\nThe', 'things', 'you', 'have', 'fashioned', 'in\\nnecessity', 'or', 'for', 'delight.\\n\\nFor', 'in', 'revery', 'you', 'cannot', 'rise', 'above', 'your\\nachievements', 'nor', 'fall', 'lower', 'than', 'your\\nfailures.\\n\\nAnd', 'take', 'with', 'you', 'all', 'men:', '', 'in\\nadoration', 'you', 'cannot', 'fly', 'higher', 'than\\ntheir', 'hopes', 'nor', 'humble', 'yourself', 'lower\\nthan', 'their', 'despair.\\n\\n*****\\n\\nAnd', 'if', 'you', 'would', 'know', 'God', 'be', 'not\\ntherefore', 'a', 'solver', 'of', 'riddles.\\n\\nRather', 'look', 'about', 'you', 'and', 'you', 'shall', 'see\\nHim', 'playing', 'with', 'your', 'children.\\n\\nAnd', 'look', 'into', 'space;', 'you', 'shall', 'see', 'Him\\nwalking', 'in', 'the', 'cloud,', 'outstretching', 'His\\narms', 'in', 'the', 'lightning', 'and', 'descending', 'in\\nrain.\\n\\nYou', 'shall', 'see', 'Him', 'smiling', 'in', 'flowers,\\nthen', 'rising', 'and', 'waving', 'His', 'hands', 'in\\ntrees.\\n\\n*****', '*****\\n\\n', 'Almitra', 'spoke,', 'saying,', 'We', 'would\\nask', 'now', 'of', '_Death_.\\n\\nAnd', 'he', 'said:\\n\\nYou', 'would', 'know', 'the', 'secret', 'of', 'death.\\n\\nBut', 'how', 'shall', 'you', 'find', 'it', 'unless', 'you\\nseek', 'it', 'in', 'the', 'heart', 'of', 'life?\\n\\nThe', 'owl', 'whose', 'night-bound', 'eyes', 'are', 'blind\\nunto', 'the', 'day', 'cannot', 'unveil', 'the', 'mystery\\nof', 'light.\\n\\nIf', 'you', 'would', 'indeed', 'behold', 'the', 'spirit\\nof', 'death,', 'open', 'your', 'heart', 'wide', 'unto', 'the\\nbody', 'of', 'life.\\n\\nFor', 'life', 'and', 'death', 'are', 'one,', 'even', 'as', 'the\\nriver', 'and', 'the', 'sea', 'are', 'one.\\n\\nIn', 'the', 'depth', 'of', 'your', 'hopes', 'and', 'desires\\nlies', 'your', 'silent', 'knowledge', 'of', 'the\\nbeyond;\\n\\nAnd', 'like', 'seeds', 'dreaming', 'beneath', 'the', 'snow\\nyour', 'heart', 'dreams', 'of', 'spring.\\n\\nTrust', 'the', 'dreams,', 'for', 'in', 'them', 'is', 'hidden\\nthe', 'gate', 'to', 'eternity.', '', 'fear\\nof', 'death', 'is', 'but', 'the', 'trembling', 'of', 'the\\nshepherd', 'when', 'he', 'stands', 'before', 'the', 'king\\nwhose', 'hand', 'is', 'to', 'be', 'laid', 'upon', 'him', 'in\\nhonour.\\n\\nIs', 'the', 'shepherd', 'not', 'joyful', 'beneath', 'his\\ntrembling,', 'that', 'he', 'shall', 'wear', 'the', 'mark\\nof', 'the', 'king?\\n\\nYet', 'is', 'he', 'not', 'more', 'mindful', 'of', 'his\\ntrembling?\\n\\n*****\\n\\nFor', 'what', 'is', 'it', 'to', 'die', 'but', 'to', 'stand', 'naked\\nin', 'the', 'wind', 'and', 'to', 'melt', 'into', 'the', 'sun?\\n\\nAnd', 'what', 'is', 'it', 'to', 'cease', 'breathing,', 'but\\nto', 'free', 'the', 'breath', 'from', 'its', 'restless\\ntides,', 'that', 'it', 'may', 'rise', 'and', 'expand', 'and\\nseek', 'God', 'unencumbered?\\n\\nOnly', 'when', 'you', 'drink', 'from', 'the', 'river', 'of\\nsilence', 'shall', 'you', 'indeed', 'sing.\\n\\nAnd', 'when', 'you', 'have', 'reached', 'the', 'mountain\\ntop,', 'then', 'you', 'shall', 'begin', 'to', 'climb.\\n\\nAnd', 'when', 'the', 'earth', 'shall', 'claim', 'your\\nlimbs,', 'then', 'shall', 'you', 'truly', 'dance.\\n', 'now', 'it', 'was', 'evening.\\n\\nAnd', 'Almitra', 'the', 'seeress', 'said,', 'Blessed', 'be\\nthis', 'day', 'and', 'this', 'place', 'and', 'your', 'spirit\\nthat', 'has', 'spoken.\\n\\nAnd', 'he', 'answered,', 'Was', 'it', 'I', 'who', 'spoke?', 'Was\\nI', 'not', 'also', 'a', 'listener?\\n\\n*****\\n\\nThen', 'he', 'descended', 'the', 'steps', 'of', 'the\\nTemple', 'and', 'all', 'the', 'people', 'followed', 'him.\\nAnd', 'he', 'reached', 'his', 'ship', 'and', 'stood', 'upon\\nthe', 'deck.\\n\\nAnd', 'facing', 'the', 'people', 'again,', 'he', 'raised\\nhis', 'voice', 'and', 'said:\\n\\nPeople', 'of', 'Orphalese,', 'the', 'wind', 'bids', 'me\\nleave', 'you.\\n\\nLess', 'hasty', 'am', 'I', 'than', 'the', 'wind,', 'yet', 'I\\nmust', 'go.\\n\\nWe', 'wanderers,', 'ever', 'seeking', 'the', 'lonelier\\nway,', 'begin', 'no', 'day', 'where', 'we', 'have', 'ended\\nanother', 'day;', 'and', 'no', 'sunrise', 'finds', 'us\\nwhere', 'sunset', 'left', 'us.', '', 'while', 'the\\nearth', 'sleeps', 'we', 'travel.\\n\\nWe', 'are', 'the', 'seeds', 'of', 'the', 'tenacious\\nplant,', 'and', 'it', 'is', 'in', 'our', 'ripeness', 'and', 'our\\nfullness', 'of', 'heart', 'that', 'we', 'are', 'given', 'to\\nthe', 'wind', 'and', 'are', 'scattered.\\n\\n*****\\n\\nBrief', 'were', 'my', 'days', 'among', 'you,', 'and\\nbriefer', 'still', 'the', 'words', 'I', 'have', 'spoken.\\n\\nBut', 'should', 'my', 'voice', 'fade', 'in', 'your', 'ears,\\nand', 'my', 'love', 'vanish', 'in', 'your', 'memory,', 'then\\nI', 'will', 'come', 'again,\\n\\nAnd', 'with', 'a', 'richer', 'heart', 'and', 'lips', 'more\\nyielding', 'to', 'the', 'spirit', 'will', 'I', 'speak.\\n\\nYea,', 'I', 'shall', 'return', 'with', 'the', 'tide,\\n\\nAnd', 'though', 'death', 'may', 'hide', 'me,', 'and', 'the\\ngreater', 'silence', 'enfold', 'me,', 'yet', 'again\\nwill', 'I', 'seek', 'your', 'understanding.\\n\\nAnd', 'not', 'in', 'vain', 'will', 'I', 'seek.\\n\\nIf', 'aught', 'I', 'have', 'said', 'is', 'truth,', 'that\\ntruth', 'shall', 'reveal', 'itself', 'in', 'a', 'clearer\\nvoice,', 'and', 'in', 'words', 'more', 'kin', 'to', 'your\\nthoughts.\\n\\nI', 'go', 'with', 'the', 'wind,', 'people', 'of\\nOrphalese,', 'but', 'not', 'down', 'into', 'emptiness;\\n', 'if', 'this', 'day', 'is', 'not', 'a', 'fulfilment\\nof', 'your', 'needs', 'and', 'my', 'love,', 'then', 'let', 'it\\nbe', 'a', 'promise', 'till', 'another', 'day.\\n\\nMan’s', 'needs', 'change,', 'but', 'not', 'his', 'love,\\nnor', 'his', 'desire', 'that', 'his', 'love', 'should\\nsatisfy', 'his', 'needs.\\n\\nKnow', 'therefore,', 'that', 'from', 'the', 'greater\\nsilence', 'I', 'shall', 'return.\\n\\nThe', 'mist', 'that', 'drifts', 'away', 'at', 'dawn,\\nleaving', 'but', 'dew', 'in', 'the', 'fields,', 'shall\\nrise', 'and', 'gather', 'into', 'a', 'cloud', 'and', 'then\\nfall', 'down', 'in', 'rain.\\n\\nAnd', 'not', 'unlike', 'the', 'mist', 'have', 'I', 'been.\\n\\nIn', 'the', 'stillness', 'of', 'the', 'night', 'I', 'have\\nwalked', 'in', 'your', 'streets,', 'and', 'my', 'spirit\\nhas', 'entered', 'your', 'houses,\\n\\nAnd', 'your', 'heart-beats', 'were', 'in', 'my', 'heart,\\nand', 'your', 'breath', 'was', 'upon', 'my', 'face,', 'and', 'I\\nknew', 'you', 'all.\\n\\nAy,', 'I', 'knew', 'your', 'joy', 'and', 'your', 'pain,\\nand', 'in', 'your', 'sleep', 'your', 'dreams', 'were', 'my\\ndreams.\\n\\nAnd', 'oftentimes', 'I', 'was', 'among', 'you', 'a', 'lake\\namong', 'the', 'mountains.\\n\\nI', 'mirrored', 'the', 'summits', 'in', 'you', 'and', 'the\\n', 'slopes,', 'and', 'even', 'the\\npassing', 'flocks', 'of', 'your', 'thoughts', 'and', 'your\\ndesires.\\n\\nAnd', 'to', 'my', 'silence', 'came', 'the', 'laughter\\nof', 'your', 'children', 'in', 'streams,', 'and', 'the\\nlonging', 'of', 'your', 'youths', 'in', 'rivers.\\n\\nAnd', 'when', 'they', 'reached', 'my', 'depth', 'the\\nstreams', 'and', 'the', 'rivers', 'ceased', 'not', 'yet', 'to\\nsing.\\n\\n[Illustration:', '0119]\\n\\nBut', 'sweeter', 'still', 'than', 'laughter', 'and\\ngreater', 'than', 'longing', 'came', 'to', 'me.\\n\\nIt', 'was', 'the', 'boundless', 'in', 'you;\\n\\nThe', 'vast', 'man', 'in', 'whom', 'you', 'are', 'all', 'but\\ncells', 'and', 'sinews;\\n\\nHe', 'in', 'whose', 'chant', 'all', 'your', 'singing', 'is\\nbut', 'a', 'soundless', 'throbbing.\\n\\nIt', 'is', 'in', 'the', 'vast', 'man', 'that', 'you', 'are', 'vast,\\n\\nAnd', 'in', 'beholding', 'him', 'that', 'I', 'beheld', 'you\\nand', 'loved', 'you.\\n\\nFor', 'what', 'distances', 'can', 'love', 'reach', 'that\\nare', 'not', 'in', 'that', 'vast', 'sphere?\\n\\nWhat', 'visions,', 'what', 'expectations', 'and', 'what\\npresumptions', 'can', 'outsoar', 'that', 'flight?\\n\\nLike', 'a', 'giant', 'oak', 'tree', 'covered', 'with', 'apple\\nblossoms', 'is', 'the', 'vast', 'man', 'in', 'you.', '', 'binds', 'you', 'to', 'the', 'earth,', 'his\\nfragrance', 'lifts', 'you', 'into', 'space,', 'and', 'in\\nhis', 'durability', 'you', 'are', 'deathless.\\n\\n*****\\n\\nYou', 'have', 'been', 'told', 'that,', 'even', 'like', 'a\\nchain,', 'you', 'are', 'as', 'weak', 'as', 'your', 'weakest\\nlink.\\n\\nThis', 'is', 'but', 'half', 'the', 'truth.', 'You', 'are', 'also\\nas', 'strong', 'as', 'your', 'strongest', 'link.\\n\\nTo', 'measure', 'you', 'by', 'your', 'smallest', 'deed\\nis', 'to', 'reckon', 'the', 'power', 'of', 'ocean', 'by', 'the\\nfrailty', 'of', 'its', 'foam.\\n\\nTo', 'judge', 'you', 'by', 'your', 'failures', 'is', 'to\\ncast', 'blame', 'upon', 'the', 'seasons', 'for', 'their\\ninconstancy.\\n\\nAy,', 'you', 'are', 'like', 'an', 'ocean,\\n\\nAnd', 'though', 'heavy-grounded', 'ships', 'await\\nthe', 'tide', 'upon', 'your', 'shores,', 'yet,', 'even\\nlike', 'an', 'ocean,', 'you', 'cannot', 'hasten', 'your\\ntides.\\n\\nAnd', 'like', 'the', 'seasons', 'you', 'are', 'also,\\n\\nAnd', 'though', 'in', 'your', 'winter', 'you', 'deny', 'your\\nspring,\\n\\nYet', 'spring,', 'reposing', 'within', 'you,', 'smiles\\nin', 'her', 'drowsiness', 'and', 'is', 'not', 'offended.\\n', 'not', 'I', 'say', 'these', 'things', 'in\\norder', 'that', 'you', 'may', 'say', 'the', 'one', 'to', 'the\\nother,', '“He', 'praised', 'us', 'well.', 'He', 'saw', 'but\\nthe', 'good', 'in', 'us.”\\n\\nI', 'only', 'speak', 'to', 'you', 'in', 'words', 'of', 'that\\nwhich', 'you', 'yourselves', 'know', 'in', 'thought.\\n\\nAnd', 'what', 'is', 'word', 'knowledge', 'but', 'a', 'shadow\\nof', 'wordless', 'knowledge?\\n\\nYour', 'thoughts', 'and', 'my', 'words', 'are', 'waves\\nfrom', 'a', 'sealed', 'memory', 'that', 'keeps', 'records\\nof', 'our', 'yesterdays,\\n\\nAnd', 'of', 'the', 'ancient', 'days', 'when', 'the', 'earth\\nknew', 'not', 'us', 'nor', 'herself,\\n\\nAnd', 'of', 'nights', 'when', 'earth', 'was', 'up-wrought\\nwith', 'confusion.\\n\\n*****\\n\\nWise', 'men', 'have', 'come', 'to', 'you', 'to', 'give', 'you\\nof', 'their', 'wisdom.', 'I', 'came', 'to', 'take', 'of', 'your\\nwisdom:\\n\\nAnd', 'behold', 'I', 'have', 'found', 'that', 'which', 'is\\ngreater', 'than', 'wisdom.\\n\\nIt', 'is', 'a', 'flame', 'spirit', 'in', 'you', 'ever\\ngathering', 'more', 'of', 'itself,\\n\\nWhile', 'you,', 'heedless', 'of', 'its', 'expansion,\\nbewail', 'the', 'withering', 'of', 'your', 'days.\\n', 'is', 'life', 'in', 'quest', 'of', 'life', 'in\\nbodies', 'that', 'fear', 'the', 'grave.\\n\\n*****\\n\\nThere', 'are', 'no', 'graves', 'here.\\n\\nThese', 'mountains', 'and', 'plains', 'are', 'a', 'cradle\\nand', 'a', 'stepping-stone.\\n\\nWhenever', 'you', 'pass', 'by', 'the', 'field', 'where\\nyou', 'have', 'laid', 'your', 'ancestors', 'look', 'well\\nthereupon,', 'and', 'you', 'shall', 'see', 'yourselves\\nand', 'your', 'children', 'dancing', 'hand', 'in', 'hand.\\n\\nVerily', 'you', 'often', 'make', 'merry', 'without\\nknowing.\\n\\nOthers', 'have', 'come', 'to', 'you', 'to', 'whom', 'for\\ngolden', 'promises', 'made', 'unto', 'your', 'faith\\nyou', 'have', 'given', 'but', 'riches', 'and', 'power', 'and\\nglory.\\n\\nLess', 'than', 'a', 'promise', 'have', 'I', 'given,', 'and\\nyet', 'more', 'generous', 'have', 'you', 'been', 'to', 'me.\\n\\nYou', 'have', 'given', 'me', 'my', 'deeper', 'thirsting\\nafter', 'life.\\n\\nSurely', 'there', 'is', 'no', 'greater', 'gift', 'to', 'a', 'man\\nthan', 'that', 'which', 'turns', 'all', 'his', 'aims\\ninto', 'parching', 'lips', 'and', 'all', 'life', 'into', 'a\\nfountain.\\n\\n[Illustration:', '0125]\\n\\n', 'in', 'this', 'lies', 'my', 'honour', 'and', 'my\\nreward,--\\n\\nThat', 'whenever', 'I', 'come', 'to', 'the', 'fountain\\nto', 'drink', 'I', 'find', 'the', 'living', 'water', 'itself\\nthirsty;\\n\\nAnd', 'it', 'drinks', 'me', 'while', 'I', 'drink', 'it.\\n\\n*****\\n\\nSome', 'of', 'you', 'have', 'deemed', 'me', 'proud', 'and\\nover-shy', 'to', 'receive', 'gifts.\\n\\nToo', 'proud', 'indeed', 'am', 'I', 'to', 'receive', 'wages,\\nbut', 'not', 'gifts.\\n\\nAnd', 'though', 'I', 'have', 'eaten', 'berries', 'among\\nthe', 'hills', 'when', 'you', 'would', 'have', 'had', 'me', 'sit\\nat', 'your', 'board,\\n\\nAnd', 'slept', 'in', 'the', 'portico', 'of', 'the', 'temple\\nwhen', 'you', 'would', 'gladly', 'have', 'sheltered', 'me,\\n\\nYet', 'was', 'it', 'not', 'your', 'loving', 'mindfulness\\nof', 'my', 'days', 'and', 'my', 'nights', 'that', 'made', 'food\\nsweet', 'to', 'my', 'mouth', 'and', 'girdled', 'my', 'sleep\\nwith', 'visions?\\n\\nFor', 'this', 'I', 'bless', 'you', 'most:\\n\\nYou', 'give', 'much', 'and', 'know', 'not', 'that', 'you', 'give\\nat', 'all.', '', 'the', 'kindness', 'that\\ngazes', 'upon', 'itself', 'in', 'a', 'mirror', 'turns', 'to\\nstone,\\n\\nAnd', 'a', 'good', 'deed', 'that', 'calls', 'itself', 'by\\ntender', 'names', 'becomes', 'the', 'parent', 'to', 'a\\ncurse.\\n\\n*****\\n\\nAnd', 'some', 'of', 'you', 'have', 'called', 'me', 'aloof,\\nand', 'drunk', 'with', 'my', 'own', 'aloneness,\\n\\nAnd', 'you', 'have', 'said,', '“He', 'holds', 'council\\nwith', 'the', 'trees', 'of', 'the', 'forest,', 'but', 'not\\nwith', 'men.\\n\\nHe', 'sits', 'alone', 'on', 'hill-tops', 'and', 'looks\\ndown', 'upon', 'our', 'city.”\\n\\nTrue', 'it', 'is', 'that', 'I', 'have', 'climbed', 'the', 'hills\\nand', 'walked', 'in', 'remote', 'places.\\n\\nHow', 'could', 'I', 'have', 'seen', 'you', 'save', 'from', 'a\\ngreat', 'height', 'or', 'a', 'great', 'distance?\\n\\nHow', 'can', 'one', 'be', 'indeed', 'near', 'unless', 'he', 'be\\ntar?\\n\\nAnd', 'others', 'among', 'you', 'called', 'unto', 'me,', 'not\\nin', 'words,', 'and', 'they', 'said,\\n\\n“Stranger,', 'stranger,', 'lover', 'of\\nunreachable', 'heights,', 'why', 'dwell', 'you', 'among\\nthe', 'summits', 'where', 'eagles', 'build\\ntheir', 'nests?', '', 'seek', 'you', 'the\\nunattainable?\\n\\nWhat', 'storms', 'would', 'you', 'trap', 'in', 'your', 'net,\\n\\nAnd', 'what', 'vaporous', 'birds', 'do', 'you', 'hunt', 'in\\nthe', 'sky?\\n\\nCome', 'and', 'be', 'one', 'of', 'us.\\n\\nDescend', 'and', 'appease', 'your', 'hunger', 'with', 'our\\nbread', 'and', 'quench', 'your', 'thirst', 'with', 'our\\nwine.”\\n\\nIn', 'the', 'solitude', 'of', 'their', 'souls', 'they', 'said\\nthese', 'things;\\n\\nBut', 'were', 'their', 'solitude', 'deeper', 'they\\nwould', 'have', 'known', 'that', 'I', 'sought', 'but', 'the\\nsecret', 'of', 'your', 'joy', 'and', 'your', 'pain,\\n\\nAnd', 'I', 'hunted', 'only', 'your', 'larger', 'selves\\nthat', 'walk', 'the', 'sky.\\n\\n*****\\n\\nBut', 'the', 'hunter', 'was', 'also', 'the', 'hunted;\\n\\nFor', 'many', 'of', 'my', 'arrows', 'left', 'my', 'bow', 'only\\nto', 'seek', 'my', 'own', 'breast.\\n\\nAnd', 'the', 'flier', 'was', 'also', 'the', 'creeper;\\n\\nFor', 'when', 'my', 'wings', 'were', 'spread', 'in', 'the\\nsun', 'their', 'shadow', 'upon', 'the', 'earth', 'was', 'a\\nturtle.\\n\\nAnd', 'I', 'the', 'believer', 'was', 'also', 'the', 'doubter;\\n', 'often', 'have', 'I', 'put', 'my', 'finger\\nin', 'my', 'own', 'wound', 'that', 'I', 'might', 'have', 'the\\ngreater', 'belief', 'in', 'you', 'and', 'the', 'greater\\nknowledge', 'of', 'you.\\n\\n*****\\n\\nAnd', 'it', 'is', 'with', 'this', 'belief', 'and', 'this\\nknowledge', 'that', 'I', 'say,\\n\\nYou', 'are', 'not', 'enclosed', 'within', 'your', 'bodies,\\nnor', 'confined', 'to', 'houses', 'or', 'fields.\\n\\nThat', 'which', 'is', 'you', 'dwells', 'above', 'the\\nmountain', 'and', 'roves', 'with', 'the', 'wind.\\n\\nIt', 'is', 'not', 'a', 'thing', 'that', 'crawls', 'into\\nthe', 'sun', 'for', 'warmth', 'or', 'digs', 'holes', 'into\\ndarkness', 'for', 'safety,\\n\\nBut', 'a', 'thing', 'free,', 'a', 'spirit', 'that', 'envelops\\nthe', 'earth', 'and', 'moves', 'in', 'the', 'ether.\\n\\nIf', 'these', 'be', 'vague', 'words,', 'then', 'seek', 'not\\nto', 'clear', 'them.\\n\\nVague', 'and', 'nebulous', 'is', 'the', 'beginning', 'of\\nall', 'things,', 'but', 'not', 'their', 'end,\\n\\nAnd', 'I', 'fain', 'would', 'have', 'you', 'remember', 'me', 'as\\na', 'beginning.\\n\\nLife,', 'and', 'all', 'that', 'lives,', 'is', 'conceived\\nin', 'the', 'mist', 'and', 'not', 'in', 'the', 'crystal.\\n', 'who', 'knows', 'but', 'a', 'crystal', 'is', 'mist\\nin', 'decay?\\n\\n*****\\n\\nThis', 'would', 'I', 'have', 'you', 'remember', 'in\\nremembering', 'me:\\n\\nThat', 'which', 'seems', 'most', 'feeble', 'and\\nbewildered', 'in', 'you', 'is', 'the', 'strongest', 'and\\nmost', 'determined.\\n\\nIs', 'it', 'not', 'your', 'breath', 'that', 'has', 'erected\\nand', 'hardened', 'the', 'structure', 'of', 'your\\nbones?\\n\\nAnd', 'is', 'it', 'not', 'a', 'dream', 'which', 'none', 'of', 'you\\nremember', 'having', 'dreamt,', 'that', 'builded\\nyour', 'city', 'and', 'fashioned', 'all', 'there', 'is', 'in\\nit?\\n\\nCould', 'you', 'but', 'see', 'the', 'tides', 'of', 'that\\nbreath', 'you', 'would', 'cease', 'to', 'see', 'all', 'else,\\n\\nAnd', 'if', 'you', 'could', 'hear', 'the', 'whispering', 'of\\nthe', 'dream', 'you', 'would', 'hear', 'no', 'other', 'sound.\\n\\nBut', 'you', 'do', 'not', 'see,', 'nor', 'do', 'you', 'hear,', 'and\\nit', 'is', 'well.\\n\\nThe', 'veil', 'that', 'clouds', 'your', 'eyes', 'shall', 'be\\nlifted', 'by', 'the', 'hands', 'that', 'wove', 'it,\\n\\nAnd', 'the', 'clay', 'that', 'fills', 'your', 'ears', 'shall\\nbe', 'pierced', 'by', 'those', 'fingers', 'that', 'kneaded\\nit.', '', 'you', 'shall', 'see.\\n\\nAnd', 'you', 'shall', 'hear.\\n\\nYet', 'you', 'shall', 'not', 'deplore', 'having', 'known\\nblindness,', 'nor', 'regret', 'having', 'been', 'deaf.\\n\\nFor', 'in', 'that', 'day', 'you', 'shall', 'know', 'the\\nhidden', 'purposes', 'in', 'all', 'things,\\n\\nAnd', 'you', 'shall', 'bless', 'darkness', 'as', 'you\\nwould', 'bless', 'light.\\n\\nAfter', 'saying', 'these', 'things', 'he', 'looked\\nabout', 'him,', 'and', 'he', 'saw', 'the', 'pilot', 'of', 'his\\nship', 'standing', 'by', 'the', 'helm', 'and', 'gazing\\nnow', 'at', 'the', 'full', 'sails', 'and', 'now', 'at', 'the\\ndistance.\\n\\nAnd', 'he', 'said:\\n\\nPatient,', 'over', 'patient,', 'is', 'the', 'captain', 'of\\nmy', 'ship.\\n\\nThe', 'wind', 'blows,', 'and', 'restless', 'are', 'the\\nsails;\\n\\nEven', 'the', 'rudder', 'begs', 'direction;\\n\\nYet', 'quietly', 'my', 'captain', 'awaits', 'my\\nsilence.\\n\\nAnd', 'these', 'my', 'mariners,', 'who', 'have', 'heard\\nthe', 'choir', 'of', 'the', 'greater', 'sea,', 'they', 'too\\nhave', 'heard', 'me', 'patiently.', '', 'they\\nshall', 'wait', 'no', 'longer.\\n\\nI', 'am', 'ready.\\n\\nThe', 'stream', 'has', 'reached', 'the', 'sea,', 'and\\nonce', 'more', 'the', 'great', 'mother', 'holds', 'her', 'son\\nagainst', 'her', 'breast.\\n\\n*****\\n\\nFare', 'you', 'well,', 'people', 'of', 'Orphalese.\\n\\nThis', 'day', 'has', 'ended.\\n\\nIt', 'is', 'closing', 'upon', 'us', 'even', 'as', 'the\\nwater-lily', 'upon', 'its', 'own', 'tomorrow.\\n\\nWhat', 'was', 'given', 'us', 'here', 'we', 'shall', 'keep,\\n\\nAnd', 'if', 'it', 'suffices', 'not,', 'then', 'again', 'must\\nwe', 'come', 'together', 'and', 'together', 'stretch\\nour', 'hands', 'unto', 'the', 'giver.\\n\\nForget', 'not', 'that', 'I', 'shall', 'come', 'back', 'to\\nyou.\\n\\nA', 'little', 'while,', 'and', 'my', 'longing', 'shall\\ngather', 'dust', 'and', 'foam', 'for', 'another', 'body.\\n\\nA', 'little', 'while,', 'a', 'moment', 'of', 'rest', 'upon\\nthe', 'wind,', 'and', 'another', 'woman', 'shall', 'bear\\nme.\\n\\nFarewell', 'to', 'you', 'and', 'the', 'youth', 'I', 'have\\nspent', 'with', 'you.\\n\\nIt', 'was', 'but', 'yesterday', 'we', 'met', 'in', 'a\\ndream.', '', 'have', 'sung', 'to', 'me', 'in', 'my\\naloneness,', 'and', 'I', 'of', 'your', 'longings', 'have\\nbuilt', 'a', 'tower', 'in', 'the', 'sky.\\n\\nBut', 'now', 'our', 'sleep', 'has', 'fled', 'and', 'our', 'dream\\nis', 'over,', 'and', 'it', 'is', 'no', 'longer', 'dawn.\\n\\nThe', 'noontide', 'is', 'upon', 'us', 'and', 'our', 'half\\nwaking', 'has', 'turned', 'to', 'fuller', 'day,', 'and', 'we\\nmust', 'part.\\n\\nIf', 'in', 'the', 'twilight', 'of', 'memory', 'we', 'should\\nmeet', 'once', 'more,', 'we', 'shall', 'speak', 'again\\ntogether', 'and', 'you', 'shall', 'sing', 'to', 'me', 'a\\ndeeper', 'song.\\n\\nAnd', 'if', 'our', 'hands', 'should', 'meet', 'in', 'another\\ndream', 'we', 'shall', 'build', 'another', 'tower', 'in\\nthe', 'sky.\\n\\n*****\\n\\nSo', 'saying', 'he', 'made', 'a', 'signal', 'to', 'the\\nseamen,', 'and', 'straightway', 'they', 'weighed\\nanchor', 'and', 'cast', 'the', 'ship', 'loose', 'from', 'its\\nmoorings,', 'and', 'they', 'moved', 'eastward.\\n\\nAnd', 'a', 'cry', 'came', 'from', 'the', 'people', 'as', 'from', 'a\\nsingle', 'heart,', 'and', 'it', 'rose', 'into', 'the', 'dusk\\nand', 'was', 'carried', 'out', 'over', 'the', 'sea', 'like', 'a\\ngreat', 'trumpeting.\\n\\nOnly', 'Almitra', 'was', 'silent,', 'gazing', 'after\\n', 'ship', 'until', 'it', 'had', 'vanished', 'into\\nthe', 'mist.\\n\\nAnd', 'when', 'all', 'the', 'people', 'were', 'dispersed\\nshe', 'still', 'stood', 'alone', 'upon', 'the', 'sea-wall,\\nremembering', 'in', 'her', 'heart', 'his', 'saying,\\n\\n“A', 'little', 'while,', 'a', 'moment', 'of', 'rest', 'upon\\nthe', 'wind,', 'and', 'another', 'woman', 'shall', 'bear\\nme.”\\n\\n[Illustration:', '0134]\\n\\n\\n\\n\\n\\n\\n\\n\\nEnd', 'of', 'the', 'Project', 'Gutenberg', 'EBook', 'of', 'The', 'Prophet,', 'by', 'Kahlil', 'Gibran\\n\\n***', 'END', 'OF', 'THIS', 'PROJECT', 'GUTENBERG', 'EBOOK', 'THE', 'PROPHET', '***\\n\\n*****', 'This', 'file', 'should', 'be', 'named', '58585-0.txt', 'or', '58585-0.zip', '*****\\nThis', 'and', 'all', 'associated', 'files', 'of', 'various', 'formats', 'will', 'be', 'found', 'in:\\n', '', '', '', '', '', '', '', 'http://www.gutenberg.org/5/8/5/8/58585/\\n\\nProduced', 'by', 'David', 'Widger', 'from', 'page', 'images', 'generously\\nprovided', 'by', 'the', 'Internet', 'Archive\\n\\n\\nUpdated', 'editions', 'will', 'replace', 'the', 'previous', 'one--the', 'old', 'editions', 'will\\nbe', 'renamed.\\n\\nCreating', 'the', 'works', 'from', 'print', 'editions', 'not', 'protected', 'by', 'U.S.', 'copyright\\nlaw', 'means', 'that', 'no', 'one', 'owns', 'a', 'United', 'States', 'copyright', 'in', 'these', 'works,\\nso', 'the', 'Foundation', '(and', 'you!)', 'can', 'copy', 'and', 'distribute', 'it', 'in', 'the', 'United\\nStates', 'without', 'permission', 'and', 'without', 'paying', 'copyright\\nroyalties.', 'Special', 'rules,', 'set', 'forth', 'in', 'the', 'General', 'Terms', 'of', 'Use', 'part\\nof', 'this', 'license,', 'apply', 'to', 'copying', 'and', 'distributing', 'Project\\nGutenberg-tm', 'electronic', 'works', 'to', 'protect', 'the', 'PROJECT', 'GUTENBERG-tm\\nconcept', 'and', 'trademark.', 'Project', 'Gutenberg', 'is', 'a', 'registered', 'trademark,\\nand', 'may', 'not', 'be', 'used', 'if', 'you', 'charge', 'for', 'the', 'eBooks,', 'unless', 'you', 'receive\\nspecific', 'permission.', 'If', 'you', 'do', 'not', 'charge', 'anything', 'for', 'copies', 'of', 'this\\neBook,', 'complying', 'with', 'the', 'rules', 'is', 'very', 'easy.', 'You', 'may', 'use', 'this', 'eBook\\nfor', 'nearly', 'any', 'purpose', 'such', 'as', 'creation', 'of', 'derivative', 'works,', 'reports,\\nperformances', 'and', 'research.', 'They', 'may', 'be', 'modified', 'and', 'printed', 'and', 'given\\naway--you', 'may', 'do', 'practically', 'ANYTHING', 'in', 'the', 'United', 'States', 'with', 'eBooks\\nnot', 'protected', 'by', 'U.S.', 'copyright', 'law.', 'Redistribution', 'is', 'subject', 'to', 'the\\ntrademark', 'license,', 'especially', 'commercial', 'redistribution.\\n\\nSTART:', 'FULL', 'LICENSE\\n\\nTHE', 'FULL', 'PROJECT', 'GUTENBERG', 'LICENSE\\nPLEASE', 'READ', 'THIS', 'BEFORE', 'YOU', 'DISTRIBUTE', 'OR', 'USE', 'THIS', 'WORK\\n\\nTo', 'protect', 'the', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting', 'the', 'free\\ndistribution', 'of', 'electronic', 'works,', 'by', 'using', 'or', 'distributing', 'this', 'work\\n(or', 'any', 'other', 'work', 'associated', 'in', 'any', 'way', 'with', 'the', 'phrase', '\"Project\\nGutenberg\"),', 'you', 'agree', 'to', 'comply', 'with', 'all', 'the', 'terms', 'of', 'the', 'Full\\nProject', 'Gutenberg-tm', 'License', 'available', 'with', 'this', 'file', 'or', 'online', 'at\\nwww.gutenberg.org/license.\\n\\nSection', '1.', 'General', 'Terms', 'of', 'Use', 'and', 'Redistributing', 'Project\\nGutenberg-tm', 'electronic', 'works\\n\\n1.A.', 'By', 'reading', 'or', 'using', 'any', 'part', 'of', 'this', 'Project', 'Gutenberg-tm\\nelectronic', 'work,', 'you', 'indicate', 'that', 'you', 'have', 'read,', 'understand,', 'agree', 'to\\nand', 'accept', 'all', 'the', 'terms', 'of', 'this', 'license', 'and', 'intellectual', 'property\\n(trademark/copyright)', 'agreement.', 'If', 'you', 'do', 'not', 'agree', 'to', 'abide', 'by', 'all\\nthe', 'terms', 'of', 'this', 'agreement,', 'you', 'must', 'cease', 'using', 'and', 'return', 'or\\ndestroy', 'all', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in', 'your\\npossession.', 'If', 'you', 'paid', 'a', 'fee', 'for', 'obtaining', 'a', 'copy', 'of', 'or', 'access', 'to', 'a\\nProject', 'Gutenberg-tm', 'electronic', 'work', 'and', 'you', 'do', 'not', 'agree', 'to', 'be', 'bound\\nby', 'the', 'terms', 'of', 'this', 'agreement,', 'you', 'may', 'obtain', 'a', 'refund', 'from', 'the\\nperson', 'or', 'entity', 'to', 'whom', 'you', 'paid', 'the', 'fee', 'as', 'set', 'forth', 'in', 'paragraph\\n1.E.8.\\n\\n1.B.', '\"Project', 'Gutenberg\"', 'is', 'a', 'registered', 'trademark.', 'It', 'may', 'only', 'be\\nused', 'on', 'or', 'associated', 'in', 'any', 'way', 'with', 'an', 'electronic', 'work', 'by', 'people', 'who\\nagree', 'to', 'be', 'bound', 'by', 'the', 'terms', 'of', 'this', 'agreement.', 'There', 'are', 'a', 'few\\nthings', 'that', 'you', 'can', 'do', 'with', 'most', 'Project', 'Gutenberg-tm', 'electronic', 'works\\neven', 'without', 'complying', 'with', 'the', 'full', 'terms', 'of', 'this', 'agreement.', 'See\\nparagraph', '1.C', 'below.', 'There', 'are', 'a', 'lot', 'of', 'things', 'you', 'can', 'do', 'with', 'Project\\nGutenberg-tm', 'electronic', 'works', 'if', 'you', 'follow', 'the', 'terms', 'of', 'this\\nagreement', 'and', 'help', 'preserve', 'free', 'future', 'access', 'to', 'Project', 'Gutenberg-tm\\nelectronic', 'works.', 'See', 'paragraph', '1.E', 'below.\\n\\n1.C.', 'The', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', '(\"the\\nFoundation\"', 'or', 'PGLAF),', 'owns', 'a', 'compilation', 'copyright', 'in', 'the', 'collection\\nof', 'Project', 'Gutenberg-tm', 'electronic', 'works.', 'Nearly', 'all', 'the', 'individual\\nworks', 'in', 'the', 'collection', 'are', 'in', 'the', 'public', 'domain', 'in', 'the', 'United\\nStates.', 'If', 'an', 'individual', 'work', 'is', 'unprotected', 'by', 'copyright', 'law', 'in', 'the\\nUnited', 'States', 'and', 'you', 'are', 'located', 'in', 'the', 'United', 'States,', 'we', 'do', 'not\\nclaim', 'a', 'right', 'to', 'prevent', 'you', 'from', 'copying,', 'distributing,', 'performing,\\ndisplaying', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'the', 'work', 'as', 'long', 'as\\nall', 'references', 'to', 'Project', 'Gutenberg', 'are', 'removed.', 'Of', 'course,', 'we', 'hope\\nthat', 'you', 'will', 'support', 'the', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting\\nfree', 'access', 'to', 'electronic', 'works', 'by', 'freely', 'sharing', 'Project', 'Gutenberg-tm\\nworks', 'in', 'compliance', 'with', 'the', 'terms', 'of', 'this', 'agreement', 'for', 'keeping', 'the\\nProject', 'Gutenberg-tm', 'name', 'associated', 'with', 'the', 'work.', 'You', 'can', 'easily\\ncomply', 'with', 'the', 'terms', 'of', 'this', 'agreement', 'by', 'keeping', 'this', 'work', 'in', 'the\\nsame', 'format', 'with', 'its', 'attached', 'full', 'Project', 'Gutenberg-tm', 'License', 'when\\nyou', 'share', 'it', 'without', 'charge', 'with', 'others.\\n\\n1.D.', 'The', 'copyright', 'laws', 'of', 'the', 'place', 'where', 'you', 'are', 'located', 'also', 'govern\\nwhat', 'you', 'can', 'do', 'with', 'this', 'work.', 'Copyright', 'laws', 'in', 'most', 'countries', 'are\\nin', 'a', 'constant', 'state', 'of', 'change.', 'If', 'you', 'are', 'outside', 'the', 'United', 'States,\\ncheck', 'the', 'laws', 'of', 'your', 'country', 'in', 'addition', 'to', 'the', 'terms', 'of', 'this\\nagreement', 'before', 'downloading,', 'copying,', 'displaying,', 'performing,\\ndistributing', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'this', 'work', 'or', 'any\\nother', 'Project', 'Gutenberg-tm', 'work.', 'The', 'Foundation', 'makes', 'no\\nrepresentations', 'concerning', 'the', 'copyright', 'status', 'of', 'any', 'work', 'in', 'any\\ncountry', 'outside', 'the', 'United', 'States.\\n\\n1.E.', 'Unless', 'you', 'have', 'removed', 'all', 'references', 'to', 'Project', 'Gutenberg:\\n\\n1.E.1.', 'The', 'following', 'sentence,', 'with', 'active', 'links', 'to,', 'or', 'other\\nimmediate', 'access', 'to,', 'the', 'full', 'Project', 'Gutenberg-tm', 'License', 'must', 'appear\\nprominently', 'whenever', 'any', 'copy', 'of', 'a', 'Project', 'Gutenberg-tm', 'work', '(any', 'work\\non', 'which', 'the', 'phrase', '\"Project', 'Gutenberg\"', 'appears,', 'or', 'with', 'which', 'the\\nphrase', '\"Project', 'Gutenberg\"', 'is', 'associated)', 'is', 'accessed,', 'displayed,\\nperformed,', 'viewed,', 'copied', 'or', 'distributed:\\n\\n', '', 'This', 'eBook', 'is', 'for', 'the', 'use', 'of', 'anyone', 'anywhere', 'in', 'the', 'United', 'States', 'and\\n', '', 'most', 'other', 'parts', 'of', 'the', 'world', 'at', 'no', 'cost', 'and', 'with', 'almost', 'no\\n', '', 'restrictions', 'whatsoever.', 'You', 'may', 'copy', 'it,', 'give', 'it', 'away', 'or', 're-use', 'it\\n', '', 'under', 'the', 'terms', 'of', 'the', 'Project', 'Gutenberg', 'License', 'included', 'with', 'this\\n', '', 'eBook', 'or', 'online', 'at', 'www.gutenberg.org.', 'If', 'you', 'are', 'not', 'located', 'in', 'the\\n', '', 'United', 'States,', \"you'll\", 'have', 'to', 'check', 'the', 'laws', 'of', 'the', 'country', 'where', 'you\\n', '', 'are', 'located', 'before', 'using', 'this', 'ebook.\\n\\n1.E.2.', 'If', 'an', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is\\nderived', 'from', 'texts', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', '(does', 'not\\ncontain', 'a', 'notice', 'indicating', 'that', 'it', 'is', 'posted', 'with', 'permission', 'of', 'the\\ncopyright', 'holder),', 'the', 'work', 'can', 'be', 'copied', 'and', 'distributed', 'to', 'anyone', 'in\\nthe', 'United', 'States', 'without', 'paying', 'any', 'fees', 'or', 'charges.', 'If', 'you', 'are\\nredistributing', 'or', 'providing', 'access', 'to', 'a', 'work', 'with', 'the', 'phrase', '\"Project\\nGutenberg\"', 'associated', 'with', 'or', 'appearing', 'on', 'the', 'work,', 'you', 'must', 'comply\\neither', 'with', 'the', 'requirements', 'of', 'paragraphs', '1.E.1', 'through', '1.E.7', 'or\\nobtain', 'permission', 'for', 'the', 'use', 'of', 'the', 'work', 'and', 'the', 'Project', 'Gutenberg-tm\\ntrademark', 'as', 'set', 'forth', 'in', 'paragraphs', '1.E.8', 'or', '1.E.9.\\n\\n1.E.3.', 'If', 'an', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is', 'posted\\nwith', 'the', 'permission', 'of', 'the', 'copyright', 'holder,', 'your', 'use', 'and', 'distribution\\nmust', 'comply', 'with', 'both', 'paragraphs', '1.E.1', 'through', '1.E.7', 'and', 'any\\nadditional', 'terms', 'imposed', 'by', 'the', 'copyright', 'holder.', 'Additional', 'terms\\nwill', 'be', 'linked', 'to', 'the', 'Project', 'Gutenberg-tm', 'License', 'for', 'all', 'works\\nposted', 'with', 'the', 'permission', 'of', 'the', 'copyright', 'holder', 'found', 'at', 'the\\nbeginning', 'of', 'this', 'work.\\n\\n1.E.4.', 'Do', 'not', 'unlink', 'or', 'detach', 'or', 'remove', 'the', 'full', 'Project', 'Gutenberg-tm\\nLicense', 'terms', 'from', 'this', 'work,', 'or', 'any', 'files', 'containing', 'a', 'part', 'of', 'this\\nwork', 'or', 'any', 'other', 'work', 'associated', 'with', 'Project', 'Gutenberg-tm.\\n\\n1.E.5.', 'Do', 'not', 'copy,', 'display,', 'perform,', 'distribute', 'or', 'redistribute', 'this\\nelectronic', 'work,', 'or', 'any', 'part', 'of', 'this', 'electronic', 'work,', 'without\\nprominently', 'displaying', 'the', 'sentence', 'set', 'forth', 'in', 'paragraph', '1.E.1', 'with\\nactive', 'links', 'or', 'immediate', 'access', 'to', 'the', 'full', 'terms', 'of', 'the', 'Project\\nGutenberg-tm', 'License.\\n\\n1.E.6.', 'You', 'may', 'convert', 'to', 'and', 'distribute', 'this', 'work', 'in', 'any', 'binary,\\ncompressed,', 'marked', 'up,', 'nonproprietary', 'or', 'proprietary', 'form,', 'including\\nany', 'word', 'processing', 'or', 'hypertext', 'form.', 'However,', 'if', 'you', 'provide', 'access\\nto', 'or', 'distribute', 'copies', 'of', 'a', 'Project', 'Gutenberg-tm', 'work', 'in', 'a', 'format\\nother', 'than', '\"Plain', 'Vanilla', 'ASCII\"', 'or', 'other', 'format', 'used', 'in', 'the', 'official\\nversion', 'posted', 'on', 'the', 'official', 'Project', 'Gutenberg-tm', 'web', 'site\\n(www.gutenberg.org),', 'you', 'must,', 'at', 'no', 'additional', 'cost,', 'fee', 'or', 'expense\\nto', 'the', 'user,', 'provide', 'a', 'copy,', 'a', 'means', 'of', 'exporting', 'a', 'copy,', 'or', 'a', 'means\\nof', 'obtaining', 'a', 'copy', 'upon', 'request,', 'of', 'the', 'work', 'in', 'its', 'original', '\"Plain\\nVanilla', 'ASCII\"', 'or', 'other', 'form.', 'Any', 'alternate', 'format', 'must', 'include', 'the\\nfull', 'Project', 'Gutenberg-tm', 'License', 'as', 'specified', 'in', 'paragraph', '1.E.1.\\n\\n1.E.7.', 'Do', 'not', 'charge', 'a', 'fee', 'for', 'access', 'to,', 'viewing,', 'displaying,\\nperforming,', 'copying', 'or', 'distributing', 'any', 'Project', 'Gutenberg-tm', 'works\\nunless', 'you', 'comply', 'with', 'paragraph', '1.E.8', 'or', '1.E.9.\\n\\n1.E.8.', 'You', 'may', 'charge', 'a', 'reasonable', 'fee', 'for', 'copies', 'of', 'or', 'providing\\naccess', 'to', 'or', 'distributing', 'Project', 'Gutenberg-tm', 'electronic', 'works\\nprovided', 'that\\n\\n*', 'You', 'pay', 'a', 'royalty', 'fee', 'of', '20%', 'of', 'the', 'gross', 'profits', 'you', 'derive', 'from\\n', '', 'the', 'use', 'of', 'Project', 'Gutenberg-tm', 'works', 'calculated', 'using', 'the', 'method\\n', '', 'you', 'already', 'use', 'to', 'calculate', 'your', 'applicable', 'taxes.', 'The', 'fee', 'is', 'owed\\n', '', 'to', 'the', 'owner', 'of', 'the', 'Project', 'Gutenberg-tm', 'trademark,', 'but', 'he', 'has\\n', '', 'agreed', 'to', 'donate', 'royalties', 'under', 'this', 'paragraph', 'to', 'the', 'Project\\n', '', 'Gutenberg', 'Literary', 'Archive', 'Foundation.', 'Royalty', 'payments', 'must', 'be', 'paid\\n', '', 'within', '60', 'days', 'following', 'each', 'date', 'on', 'which', 'you', 'prepare', '(or', 'are\\n', '', 'legally', 'required', 'to', 'prepare)', 'your', 'periodic', 'tax', 'returns.', 'Royalty\\n', '', 'payments', 'should', 'be', 'clearly', 'marked', 'as', 'such', 'and', 'sent', 'to', 'the', 'Project\\n', '', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'at', 'the', 'address', 'specified', 'in\\n', '', 'Section', '4,', '\"Information', 'about', 'donations', 'to', 'the', 'Project', 'Gutenberg\\n', '', 'Literary', 'Archive', 'Foundation.\"\\n\\n*', 'You', 'provide', 'a', 'full', 'refund', 'of', 'any', 'money', 'paid', 'by', 'a', 'user', 'who', 'notifies\\n', '', 'you', 'in', 'writing', '(or', 'by', 'e-mail)', 'within', '30', 'days', 'of', 'receipt', 'that', 's/he\\n', '', 'does', 'not', 'agree', 'to', 'the', 'terms', 'of', 'the', 'full', 'Project', 'Gutenberg-tm\\n', '', 'License.', 'You', 'must', 'require', 'such', 'a', 'user', 'to', 'return', 'or', 'destroy', 'all\\n', '', 'copies', 'of', 'the', 'works', 'possessed', 'in', 'a', 'physical', 'medium', 'and', 'discontinue\\n', '', 'all', 'use', 'of', 'and', 'all', 'access', 'to', 'other', 'copies', 'of', 'Project', 'Gutenberg-tm\\n', '', 'works.\\n\\n*', 'You', 'provide,', 'in', 'accordance', 'with', 'paragraph', '1.F.3,', 'a', 'full', 'refund', 'of\\n', '', 'any', 'money', 'paid', 'for', 'a', 'work', 'or', 'a', 'replacement', 'copy,', 'if', 'a', 'defect', 'in', 'the\\n', '', 'electronic', 'work', 'is', 'discovered', 'and', 'reported', 'to', 'you', 'within', '90', 'days', 'of\\n', '', 'receipt', 'of', 'the', 'work.\\n\\n*', 'You', 'comply', 'with', 'all', 'other', 'terms', 'of', 'this', 'agreement', 'for', 'free\\n', '', 'distribution', 'of', 'Project', 'Gutenberg-tm', 'works.\\n\\n1.E.9.', 'If', 'you', 'wish', 'to', 'charge', 'a', 'fee', 'or', 'distribute', 'a', 'Project\\nGutenberg-tm', 'electronic', 'work', 'or', 'group', 'of', 'works', 'on', 'different', 'terms', 'than\\nare', 'set', 'forth', 'in', 'this', 'agreement,', 'you', 'must', 'obtain', 'permission', 'in', 'writing\\nfrom', 'both', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'and', 'The\\nProject', 'Gutenberg', 'Trademark', 'LLC,', 'the', 'owner', 'of', 'the', 'Project', 'Gutenberg-tm\\ntrademark.', 'Contact', 'the', 'Foundation', 'as', 'set', 'forth', 'in', 'Section', '3', 'below.\\n\\n1.F.\\n\\n1.F.1.', 'Project', 'Gutenberg', 'volunteers', 'and', 'employees', 'expend', 'considerable\\neffort', 'to', 'identify,', 'do', 'copyright', 'research', 'on,', 'transcribe', 'and', 'proofread\\nworks', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', 'in', 'creating', 'the', 'Project\\nGutenberg-tm', 'collection.', 'Despite', 'these', 'efforts,', 'Project', 'Gutenberg-tm\\nelectronic', 'works,', 'and', 'the', 'medium', 'on', 'which', 'they', 'may', 'be', 'stored,', 'may\\ncontain', '\"Defects,\"', 'such', 'as,', 'but', 'not', 'limited', 'to,', 'incomplete,', 'inaccurate\\nor', 'corrupt', 'data,', 'transcription', 'errors,', 'a', 'copyright', 'or', 'other\\nintellectual', 'property', 'infringement,', 'a', 'defective', 'or', 'damaged', 'disk', 'or\\nother', 'medium,', 'a', 'computer', 'virus,', 'or', 'computer', 'codes', 'that', 'damage', 'or\\ncannot', 'be', 'read', 'by', 'your', 'equipment.\\n\\n1.F.2.', 'LIMITED', 'WARRANTY,', 'DISCLAIMER', 'OF', 'DAMAGES', '-', 'Except', 'for', 'the', '\"Right\\nof', 'Replacement', 'or', 'Refund\"', 'described', 'in', 'paragraph', '1.F.3,', 'the', 'Project\\nGutenberg', 'Literary', 'Archive', 'Foundation,', 'the', 'owner', 'of', 'the', 'Project\\nGutenberg-tm', 'trademark,', 'and', 'any', 'other', 'party', 'distributing', 'a', 'Project\\nGutenberg-tm', 'electronic', 'work', 'under', 'this', 'agreement,', 'disclaim', 'all\\nliability', 'to', 'you', 'for', 'damages,', 'costs', 'and', 'expenses,', 'including', 'legal\\nfees.', 'YOU', 'AGREE', 'THAT', 'YOU', 'HAVE', 'NO', 'REMEDIES', 'FOR', 'NEGLIGENCE,', 'STRICT\\nLIABILITY,', 'BREACH', 'OF', 'WARRANTY', 'OR', 'BREACH', 'OF', 'CONTRACT', 'EXCEPT', 'THOSE\\nPROVIDED', 'IN', 'PARAGRAPH', '1.F.3.', 'YOU', 'AGREE', 'THAT', 'THE', 'FOUNDATION,', 'THE\\nTRADEMARK', 'OWNER,', 'AND', 'ANY', 'DISTRIBUTOR', 'UNDER', 'THIS', 'AGREEMENT', 'WILL', 'NOT', 'BE\\nLIABLE', 'TO', 'YOU', 'FOR', 'ACTUAL,', 'DIRECT,', 'INDIRECT,', 'CONSEQUENTIAL,', 'PUNITIVE', 'OR\\nINCIDENTAL', 'DAMAGES', 'EVEN', 'IF', 'YOU', 'GIVE', 'NOTICE', 'OF', 'THE', 'POSSIBILITY', 'OF', 'SUCH\\nDAMAGE.\\n\\n1.F.3.', 'LIMITED', 'RIGHT', 'OF', 'REPLACEMENT', 'OR', 'REFUND', '-', 'If', 'you', 'discover', 'a\\ndefect', 'in', 'this', 'electronic', 'work', 'within', '90', 'days', 'of', 'receiving', 'it,', 'you', 'can\\nreceive', 'a', 'refund', 'of', 'the', 'money', '(if', 'any)', 'you', 'paid', 'for', 'it', 'by', 'sending', 'a\\nwritten', 'explanation', 'to', 'the', 'person', 'you', 'received', 'the', 'work', 'from.', 'If', 'you\\nreceived', 'the', 'work', 'on', 'a', 'physical', 'medium,', 'you', 'must', 'return', 'the', 'medium\\nwith', 'your', 'written', 'explanation.', 'The', 'person', 'or', 'entity', 'that', 'provided', 'you\\nwith', 'the', 'defective', 'work', 'may', 'elect', 'to', 'provide', 'a', 'replacement', 'copy', 'in\\nlieu', 'of', 'a', 'refund.', 'If', 'you', 'received', 'the', 'work', 'electronically,', 'the', 'person\\nor', 'entity', 'providing', 'it', 'to', 'you', 'may', 'choose', 'to', 'give', 'you', 'a', 'second\\nopportunity', 'to', 'receive', 'the', 'work', 'electronically', 'in', 'lieu', 'of', 'a', 'refund.', 'If\\nthe', 'second', 'copy', 'is', 'also', 'defective,', 'you', 'may', 'demand', 'a', 'refund', 'in', 'writing\\nwithout', 'further', 'opportunities', 'to', 'fix', 'the', 'problem.\\n\\n1.F.4.', 'Except', 'for', 'the', 'limited', 'right', 'of', 'replacement', 'or', 'refund', 'set', 'forth\\nin', 'paragraph', '1.F.3,', 'this', 'work', 'is', 'provided', 'to', 'you', \"'AS-IS',\", 'WITH', 'NO\\nOTHER', 'WARRANTIES', 'OF', 'ANY', 'KIND,', 'EXPRESS', 'OR', 'IMPLIED,', 'INCLUDING', 'BUT', 'NOT\\nLIMITED', 'TO', 'WARRANTIES', 'OF', 'MERCHANTABILITY', 'OR', 'FITNESS', 'FOR', 'ANY', 'PURPOSE.\\n\\n1.F.5.', 'Some', 'states', 'do', 'not', 'allow', 'disclaimers', 'of', 'certain', 'implied\\nwarranties', 'or', 'the', 'exclusion', 'or', 'limitation', 'of', 'certain', 'types', 'of\\ndamages.', 'If', 'any', 'disclaimer', 'or', 'limitation', 'set', 'forth', 'in', 'this', 'agreement\\nviolates', 'the', 'law', 'of', 'the', 'state', 'applicable', 'to', 'this', 'agreement,', 'the\\nagreement', 'shall', 'be', 'interpreted', 'to', 'make', 'the', 'maximum', 'disclaimer', 'or\\nlimitation', 'permitted', 'by', 'the', 'applicable', 'state', 'law.', 'The', 'invalidity', 'or\\nunenforceability', 'of', 'any', 'provision', 'of', 'this', 'agreement', 'shall', 'not', 'void', 'the\\nremaining', 'provisions.\\n\\n1.F.6.', 'INDEMNITY', '-', 'You', 'agree', 'to', 'indemnify', 'and', 'hold', 'the', 'Foundation,', 'the\\ntrademark', 'owner,', 'any', 'agent', 'or', 'employee', 'of', 'the', 'Foundation,', 'anyone\\nproviding', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in\\naccordance', 'with', 'this', 'agreement,', 'and', 'any', 'volunteers', 'associated', 'with', 'the\\nproduction,', 'promotion', 'and', 'distribution', 'of', 'Project', 'Gutenberg-tm\\nelectronic', 'works,', 'harmless', 'from', 'all', 'liability,', 'costs', 'and', 'expenses,\\nincluding', 'legal', 'fees,', 'that', 'arise', 'directly', 'or', 'indirectly', 'from', 'any', 'of\\nthe', 'following', 'which', 'you', 'do', 'or', 'cause', 'to', 'occur:', '(a)', 'distribution', 'of', 'this\\nor', 'any', 'Project', 'Gutenberg-tm', 'work,', '(b)', 'alteration,', 'modification,', 'or\\nadditions', 'or', 'deletions', 'to', 'any', 'Project', 'Gutenberg-tm', 'work,', 'and', '(c)', 'any\\nDefect', 'you', 'cause.\\n\\nSection', '2.', 'Information', 'about', 'the', 'Mission', 'of', 'Project', 'Gutenberg-tm\\n\\nProject', 'Gutenberg-tm', 'is', 'synonymous', 'with', 'the', 'free', 'distribution', 'of\\nelectronic', 'works', 'in', 'formats', 'readable', 'by', 'the', 'widest', 'variety', 'of\\ncomputers', 'including', 'obsolete,', 'old,', 'middle-aged', 'and', 'new', 'computers.', 'It\\nexists', 'because', 'of', 'the', 'efforts', 'of', 'hundreds', 'of', 'volunteers', 'and', 'donations\\nfrom', 'people', 'in', 'all', 'walks', 'of', 'life.\\n\\nVolunteers', 'and', 'financial', 'support', 'to', 'provide', 'volunteers', 'with', 'the\\nassistance', 'they', 'need', 'are', 'critical', 'to', 'reaching', 'Project', \"Gutenberg-tm's\\ngoals\", 'and', 'ensuring', 'that', 'the', 'Project', 'Gutenberg-tm', 'collection', 'will\\nremain', 'freely', 'available', 'for', 'generations', 'to', 'come.', 'In', '2001,', 'the', 'Project\\nGutenberg', 'Literary', 'Archive', 'Foundation', 'was', 'created', 'to', 'provide', 'a', 'secure\\nand', 'permanent', 'future', 'for', 'Project', 'Gutenberg-tm', 'and', 'future\\ngenerations.', 'To', 'learn', 'more', 'about', 'the', 'Project', 'Gutenberg', 'Literary\\nArchive', 'Foundation', 'and', 'how', 'your', 'efforts', 'and', 'donations', 'can', 'help,', 'see\\nSections', '3', 'and', '4', 'and', 'the', 'Foundation', 'information', 'page', 'at\\nwww.gutenberg.org', 'Section', '3.', 'Information', 'about', 'the', 'Project', 'Gutenberg\\nLiterary', 'Archive', 'Foundation\\n\\nThe', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'is', 'a', 'non', 'profit\\n501(c)(3)', 'educational', 'corporation', 'organized', 'under', 'the', 'laws', 'of', 'the\\nstate', 'of', 'Mississippi', 'and', 'granted', 'tax', 'exempt', 'status', 'by', 'the', 'Internal\\nRevenue', 'Service.', 'The', \"Foundation's\", 'EIN', 'or', 'federal', 'tax', 'identification\\nnumber', 'is', '64-6221541.', 'Contributions', 'to', 'the', 'Project', 'Gutenberg', 'Literary\\nArchive', 'Foundation', 'are', 'tax', 'deductible', 'to', 'the', 'full', 'extent', 'permitted', 'by\\nU.S.', 'federal', 'laws', 'and', 'your', \"state's\", 'laws.\\n\\nThe', \"Foundation's\", 'principal', 'office', 'is', 'in', 'Fairbanks,', 'Alaska,', 'with', 'the\\nmailing', 'address:', 'PO', 'Box', '750175,', 'Fairbanks,', 'AK', '99775,', 'but', 'its\\nvolunteers', 'and', 'employees', 'are', 'scattered', 'throughout', 'numerous\\nlocations.', 'Its', 'business', 'office', 'is', 'located', 'at', '809', 'North', '1500', 'West,', 'Salt\\nLake', 'City,', 'UT', '84116,', '(801)', '596-1887.', 'Email', 'contact', 'links', 'and', 'up', 'to\\ndate', 'contact', 'information', 'can', 'be', 'found', 'at', 'the', \"Foundation's\", 'web', 'site', 'and\\nofficial', 'page', 'at', 'www.gutenberg.org/contact\\n\\nFor', 'additional', 'contact', 'information:\\n\\n', '', '', '', 'Dr.', 'Gregory', 'B.', 'Newby\\n', '', '', '', 'Chief', 'Executive', 'and', 'Director\\n', '', '', '', 'gbnewby@pglaf.org\\n\\nSection', '4.', 'Information', 'about', 'Donations', 'to', 'the', 'Project', 'Gutenberg\\nLiterary', 'Archive', 'Foundation\\n\\nProject', 'Gutenberg-tm', 'depends', 'upon', 'and', 'cannot', 'survive', 'without', 'wide\\nspread', 'public', 'support', 'and', 'donations', 'to', 'carry', 'out', 'its', 'mission', 'of\\nincreasing', 'the', 'number', 'of', 'public', 'domain', 'and', 'licensed', 'works', 'that', 'can', 'be\\nfreely', 'distributed', 'in', 'machine', 'readable', 'form', 'accessible', 'by', 'the', 'widest\\narray', 'of', 'equipment', 'including', 'outdated', 'equipment.', 'Many', 'small', 'donations\\n($1', 'to', '$5,000)', 'are', 'particularly', 'important', 'to', 'maintaining', 'tax', 'exempt\\nstatus', 'with', 'the', 'IRS.\\n\\nThe', 'Foundation', 'is', 'committed', 'to', 'complying', 'with', 'the', 'laws', 'regulating\\ncharities', 'and', 'charitable', 'donations', 'in', 'all', '50', 'states', 'of', 'the', 'United\\nStates.', 'Compliance', 'requirements', 'are', 'not', 'uniform', 'and', 'it', 'takes', 'a\\nconsiderable', 'effort,', 'much', 'paperwork', 'and', 'many', 'fees', 'to', 'meet', 'and', 'keep', 'up\\nwith', 'these', 'requirements.', 'We', 'do', 'not', 'solicit', 'donations', 'in', 'locations\\nwhere', 'we', 'have', 'not', 'received', 'written', 'confirmation', 'of', 'compliance.', 'To', 'SEND\\nDONATIONS', 'or', 'determine', 'the', 'status', 'of', 'compliance', 'for', 'any', 'particular\\nstate', 'visit', 'www.gutenberg.org/donate\\n\\nWhile', 'we', 'cannot', 'and', 'do', 'not', 'solicit', 'contributions', 'from', 'states', 'where', 'we\\nhave', 'not', 'met', 'the', 'solicitation', 'requirements,', 'we', 'know', 'of', 'no', 'prohibition\\nagainst', 'accepting', 'unsolicited', 'donations', 'from', 'donors', 'in', 'such', 'states', 'who\\napproach', 'us', 'with', 'offers', 'to', 'donate.\\n\\nInternational', 'donations', 'are', 'gratefully', 'accepted,', 'but', 'we', 'cannot', 'make\\nany', 'statements', 'concerning', 'tax', 'treatment', 'of', 'donations', 'received', 'from\\noutside', 'the', 'United', 'States.', 'U.S.', 'laws', 'alone', 'swamp', 'our', 'small', 'staff.\\n\\nPlease', 'check', 'the', 'Project', 'Gutenberg', 'Web', 'pages', 'for', 'current', 'donation\\nmethods', 'and', 'addresses.', 'Donations', 'are', 'accepted', 'in', 'a', 'number', 'of', 'other\\nways', 'including', 'checks,', 'online', 'payments', 'and', 'credit', 'card', 'donations.', 'To\\ndonate,', 'please', 'visit:', 'www.gutenberg.org/donate\\n\\nSection', '5.', 'General', 'Information', 'About', 'Project', 'Gutenberg-tm', 'electronic', 'works.\\n\\nProfessor', 'Michael', 'S.', 'Hart', 'was', 'the', 'originator', 'of', 'the', 'Project\\nGutenberg-tm', 'concept', 'of', 'a', 'library', 'of', 'electronic', 'works', 'that', 'could', 'be\\nfreely', 'shared', 'with', 'anyone.', 'For', 'forty', 'years,', 'he', 'produced', 'and\\ndistributed', 'Project', 'Gutenberg-tm', 'eBooks', 'with', 'only', 'a', 'loose', 'network', 'of\\nvolunteer', 'support.\\n\\nProject', 'Gutenberg-tm', 'eBooks', 'are', 'often', 'created', 'from', 'several', 'printed\\neditions,', 'all', 'of', 'which', 'are', 'confirmed', 'as', 'not', 'protected', 'by', 'copyright', 'in\\nthe', 'U.S.', 'unless', 'a', 'copyright', 'notice', 'is', 'included.', 'Thus,', 'we', 'do', 'not\\nnecessarily', 'keep', 'eBooks', 'in', 'compliance', 'with', 'any', 'particular', 'paper\\nedition.\\n\\nMost', 'people', 'start', 'at', 'our', 'Web', 'site', 'which', 'has', 'the', 'main', 'PG', 'search\\nfacility:', 'www.gutenberg.org\\n\\nThis', 'Web', 'site', 'includes', 'information', 'about', 'Project', 'Gutenberg-tm,\\nincluding', 'how', 'to', 'make', 'donations', 'to', 'the', 'Project', 'Gutenberg', 'Literary\\nArchive', 'Foundation,', 'how', 'to', 'help', 'produce', 'our', 'new', 'eBooks,', 'and', 'how', 'to\\nsubscribe', 'to', 'our', 'email', 'newsletter', 'to', 'hear', 'about', 'new', 'eBooks.\\n\\n']\n" + ] + } + ], + "source": [ + "print(list(prophet_reference))" ] }, { @@ -156,11 +244,1024 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 20, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[['PROPHET', '', '|Almustafa,'],\n", + " ['the'],\n", + " ['chosen'],\n", + " ['and'],\n", + " ['the', 'beloved,'],\n", + " ['who'],\n", + " ['was'],\n", + " ['a'],\n", + " ['dawn'],\n", + " ['unto'],\n", + " ['his'],\n", + " ['own', 'day,'],\n", + " ['had'],\n", + " ['waited'],\n", + " ['twelve'],\n", + " ['years'],\n", + " ['in'],\n", + " ['the'],\n", + " ['city', 'of'],\n", + " ['Orphalese'],\n", + " ['for'],\n", + " ['his'],\n", + " ['ship'],\n", + " ['that'],\n", + " ['was'],\n", + " ['to', 'return'],\n", + " ['and'],\n", + " ['bear'],\n", + " ['him'],\n", + " ['back'],\n", + " ['to'],\n", + " ['the'],\n", + " ['isle'],\n", + " ['of', 'his'],\n", + " ['birth.', '', 'And'],\n", + " ['in'],\n", + " ['the'],\n", + " ['twelfth'],\n", + " ['year,'],\n", + " ['on'],\n", + " ['the'],\n", + " ['seventh', 'day'],\n", + " ['of'],\n", + " ['Ielool,'],\n", + " ['the'],\n", + " ['month'],\n", + " ['of'],\n", + " ['reaping,'],\n", + " ['he', 'climbed'],\n", + " ['the'],\n", + " ['hill'],\n", + " ['without'],\n", + " ['the'],\n", + " ['city'],\n", + " ['walls', 'and'],\n", + " ['looked'],\n", + " ['seaward;'],\n", + " ['and'],\n", + " ['he'],\n", + " ['beheld'],\n", + " ['his', 'ship'],\n", + " ['coming'],\n", + " ['with'],\n", + " ['the'],\n", + " ['mist.', '', 'Then'],\n", + " ['the'],\n", + " ['gates'],\n", + " ['of'],\n", + " ['his'],\n", + " ['heart'],\n", + " ['were'],\n", + " ['flung', 'open,'],\n", + " ['and'],\n", + " ['his'],\n", + " ['joy'],\n", + " ['flew'],\n", + " ['far'],\n", + " ['over'],\n", + " ['the'],\n", + " ['sea.', 'And'],\n", + " ['he'],\n", + " ['closed'],\n", + " ['his'],\n", + " ['eyes'],\n", + " ['and'],\n", + " ['prayed'],\n", + " ['in'],\n", + " ['the', 'silences'],\n", + " ['of'],\n", + " ['his'],\n", + " ['soul.', '', '*****', '', 'But'],\n", + " ['as'],\n", + " ['he'],\n", + " ['descended'],\n", + " ['the'],\n", + " ['hill,'],\n", + " ['a'],\n", + " ['sadness', 'came'],\n", + " ['upon'],\n", + " ['him,'],\n", + " ['and'],\n", + " ['he'],\n", + " ['thought'],\n", + " ['in'],\n", + " ['his', 'heart:', '', 'How'],\n", + " ['shall'],\n", + " ['I'],\n", + " ['go'],\n", + " ['in'],\n", + " ['peace'],\n", + " ['and'],\n", + " ['without', 'sorrow?'],\n", + " ['Nay,'],\n", + " ['not'],\n", + " ['without'],\n", + " ['a'],\n", + " ['wound'],\n", + " ['in'],\n", + " ['the', 'spirit'],\n", + " ['shall'],\n", + " ['I'],\n", + " ['leave'],\n", + " ['this'],\n", + " ['city.'],\n", + " [''],\n", + " ['the'],\n", + " ['days'],\n", + " ['of'],\n", + " ['pain'],\n", + " ['I'],\n", + " ['have'],\n", + " ['spent', 'within'],\n", + " ['its'],\n", + " ['walls,'],\n", + " ['and'],\n", + " ['long'],\n", + " ['were'],\n", + " ['the', 'nights'],\n", + " ['of'],\n", + " ['aloneness;'],\n", + " ['and'],\n", + " ['who'],\n", + " ['can'],\n", + " ['depart', 'from'],\n", + " ['his'],\n", + " ['pain'],\n", + " ['and'],\n", + " ['his'],\n", + " ['aloneness'],\n", + " ['without', 'regret?', '', 'Too'],\n", + " ['many'],\n", + " ['fragments'],\n", + " ['of'],\n", + " ['the'],\n", + " ['spirit'],\n", + " ['have'],\n", + " ['I', 'scattered'],\n", + " ['in'],\n", + " ['these'],\n", + " ['streets,'],\n", + " ['and'],\n", + " ['too'],\n", + " ['many', 'are'],\n", + " ['the'],\n", + " ['children'],\n", + " ['of'],\n", + " ['my'],\n", + " ['longing'],\n", + " ['that'],\n", + " ['walk', 'naked'],\n", + " ['among'],\n", + " ['these'],\n", + " ['hills,'],\n", + " ['and'],\n", + " ['I'],\n", + " ['cannot', 'withdraw'],\n", + " ['from'],\n", + " ['them'],\n", + " ['without'],\n", + " ['a'],\n", + " ['burden'],\n", + " ['and', 'an'],\n", + " ['ache.', '', 'It'],\n", + " ['is'],\n", + " ['not'],\n", + " ['a'],\n", + " ['garment'],\n", + " ['I'],\n", + " ['cast'],\n", + " ['off'],\n", + " ['this', 'day,'],\n", + " ['but'],\n", + " ['a'],\n", + " ['skin'],\n", + " ['that'],\n", + " ['I'],\n", + " ['tear'],\n", + " ['with'],\n", + " ['my'],\n", + " ['own', 'hands.', '', 'Nor'],\n", + " ['is'],\n", + " ['it'],\n", + " ['a'],\n", + " ['thought'],\n", + " ['I'],\n", + " ['leave'],\n", + " ['behind'],\n", + " ['me,', 'but'],\n", + " ['a'],\n", + " ['heart'],\n", + " ['made'],\n", + " ['sweet'],\n", + " ['with'],\n", + " ['hunger'],\n", + " ['and', 'with'],\n", + " ['thirst.', '', '*****', '', 'Yet'],\n", + " ['I'],\n", + " ['cannot'],\n", + " ['tarry'],\n", + " ['longer.', '', 'The'],\n", + " ['sea'],\n", + " ['that'],\n", + " ['calls'],\n", + " ['all'],\n", + " ['things'],\n", + " ['unto'],\n", + " ['her', 'calls'],\n", + " ['me,'],\n", + " ['and'],\n", + " ['I'],\n", + " ['must'],\n", + " ['embark.', '', 'For'],\n", + " ['to'],\n", + " ['stay,'],\n", + " ['though'],\n", + " ['the'],\n", + " ['hours'],\n", + " ['burn'],\n", + " ['in', 'the'],\n", + " ['night,'],\n", + " ['is'],\n", + " ['to'],\n", + " ['freeze'],\n", + " ['and'],\n", + " ['crystallize', 'and'],\n", + " ['be'],\n", + " ['bound'],\n", + " ['in'],\n", + " ['a'],\n", + " ['mould.', '', 'Fain'],\n", + " ['would'],\n", + " ['I'],\n", + " ['take'],\n", + " ['with'],\n", + " ['me'],\n", + " ['all'],\n", + " ['that'],\n", + " ['is', 'here.'],\n", + " ['But'],\n", + " ['how'],\n", + " ['shall'],\n", + " ['I?', '', 'A'],\n", + " ['voice'],\n", + " ['cannot'],\n", + " ['carry'],\n", + " ['the'],\n", + " ['tongue'],\n", + " ['and', ''],\n", + " ['lips'],\n", + " ['that'],\n", + " ['gave'],\n", + " ['it'],\n", + " ['wings.'],\n", + " ['Alone', 'must'],\n", + " ['it'],\n", + " ['seek'],\n", + " ['the'],\n", + " ['ether.', '', 'And'],\n", + " ['alone'],\n", + " ['and'],\n", + " ['without'],\n", + " ['his'],\n", + " ['nest'],\n", + " ['shall'],\n", + " ['the', 'eagle'],\n", + " ['fly'],\n", + " ['across'],\n", + " ['the'],\n", + " ['sun.', '', '*****', '', 'Now'],\n", + " ['when'],\n", + " ['he'],\n", + " ['reached'],\n", + " ['the'],\n", + " ['foot'],\n", + " ['of'],\n", + " ['the', 'hill,'],\n", + " ['he'],\n", + " ['turned'],\n", + " ['again'],\n", + " ['towards'],\n", + " ['the'],\n", + " ['sea,', 'and'],\n", + " ['he'],\n", + " ['saw'],\n", + " ['his'],\n", + " ['ship'],\n", + " ['approaching'],\n", + " ['the', 'harbour,'],\n", + " ['and'],\n", + " ['upon'],\n", + " ['her'],\n", + " ['prow'],\n", + " ['the'],\n", + " ['mariners,', 'the'],\n", + " ['men'],\n", + " ['of'],\n", + " ['his'],\n", + " ['own'],\n", + " ['land.', '', 'And'],\n", + " ['his'],\n", + " ['soul'],\n", + " ['cried'],\n", + " ['out'],\n", + " ['to'],\n", + " ['them,'],\n", + " ['and'],\n", + " ['he', 'said:', '', 'Sons'],\n", + " ['of'],\n", + " ['my'],\n", + " ['ancient'],\n", + " ['mother,'],\n", + " ['you'],\n", + " ['riders'],\n", + " ['of', 'the'],\n", + " ['tides,', '', 'How'],\n", + " ['often'],\n", + " ['have'],\n", + " ['you'],\n", + " ['sailed'],\n", + " ['in'],\n", + " ['my'],\n", + " ['dreams.', 'And'],\n", + " ['now'],\n", + " ['you'],\n", + " ['come'],\n", + " ['in'],\n", + " ['my'],\n", + " ['awakening,'],\n", + " ['which', 'is'],\n", + " ['my'],\n", + " ['deeper'],\n", + " ['dream.', '', 'Ready'],\n", + " ['am'],\n", + " ['I'],\n", + " ['to'],\n", + " ['go,'],\n", + " ['and'],\n", + " ['my'],\n", + " ['eagerness'],\n", + " ['with', 'sails'],\n", + " ['full'],\n", + " ['set'],\n", + " ['awaits'],\n", + " ['the'],\n", + " ['wind.', '', 'Only'],\n", + " ['another'],\n", + " ['breath'],\n", + " ['will'],\n", + " ['I'],\n", + " ['breathe'],\n", + " ['in', 'this'],\n", + " ['still'],\n", + " ['air,'],\n", + " ['only'],\n", + " ['another'],\n", + " ['loving'],\n", + " ['look', 'cast'],\n", + " ['backward,', '', 'And'],\n", + " ['then'],\n", + " ['I'],\n", + " ['shall'],\n", + " ['stand'],\n", + " ['among'],\n", + " ['you,'],\n", + " ['a', 'seafarer'],\n", + " ['among'],\n", + " ['seafarers.'],\n", + " [''],\n", + " ['you,', 'vast'],\n", + " ['sea,'],\n", + " ['sleepless'],\n", + " ['mother,', '', 'Who'],\n", + " ['alone'],\n", + " ['are'],\n", + " ['peace'],\n", + " ['and'],\n", + " ['freedom'],\n", + " ['to'],\n", + " ['the', 'river'],\n", + " ['and'],\n", + " ['the'],\n", + " ['stream,', '', 'Only'],\n", + " ['another'],\n", + " ['winding'],\n", + " ['will'],\n", + " ['this'],\n", + " ['stream', 'make,'],\n", + " ['only'],\n", + " ['another'],\n", + " ['murmur'],\n", + " ['in'],\n", + " ['this'],\n", + " ['glade,', '', 'And'],\n", + " ['then'],\n", + " ['shall'],\n", + " ['I'],\n", + " ['come'],\n", + " ['to'],\n", + " ['you,'],\n", + " ['a', 'boundless'],\n", + " ['drop'],\n", + " ['to'],\n", + " ['a'],\n", + " ['boundless'],\n", + " ['ocean.', '', '*****', '', 'And'],\n", + " ['as'],\n", + " ['he'],\n", + " ['walked'],\n", + " ['he'],\n", + " ['saw'],\n", + " ['from'],\n", + " ['afar'],\n", + " ['men', 'and'],\n", + " ['women'],\n", + " ['leaving'],\n", + " ['their'],\n", + " ['fields'],\n", + " ['and'],\n", + " ['their', 'vineyards'],\n", + " ['and'],\n", + " ['hastening'],\n", + " ['towards'],\n", + " ['the'],\n", + " ['city', 'gates.', '', 'And'],\n", + " ['he'],\n", + " ['heard'],\n", + " ['their'],\n", + " ['voices'],\n", + " ['calling'],\n", + " ['his', 'name,'],\n", + " ['and'],\n", + " ['shouting'],\n", + " ['from'],\n", + " ['field'],\n", + " ['to'],\n", + " ['field', 'telling'],\n", + " ['one'],\n", + " ['another'],\n", + " ['of'],\n", + " ['the'],\n", + " ['coming'],\n", + " ['of'],\n", + " ['his', 'ship.', '', 'And'],\n", + " ['he'],\n", + " ['said'],\n", + " ['to'],\n", + " ['himself:', '', 'Shall'],\n", + " ['the'],\n", + " ['day'],\n", + " ['of'],\n", + " ['parting'],\n", + " ['be'],\n", + " ['the'],\n", + " ['day'],\n", + " ['of', 'gathering?', '', 'And'],\n", + " ['shall'],\n", + " ['it'],\n", + " ['be'],\n", + " ['said'],\n", + " ['that'],\n", + " ['my'],\n", + " ['eve'],\n", + " ['was'],\n", + " ['in', 'truth'],\n", + " ['my'],\n", + " ['dawn?', '', 'And'],\n", + " ['what'],\n", + " ['shall'],\n", + " ['I'],\n", + " ['give'],\n", + " ['unto'],\n", + " ['him'],\n", + " ['who'],\n", + " ['has', 'left'],\n", + " ['his'],\n", + " ['plough'],\n", + " ['in'],\n", + " ['midfurrow,'],\n", + " ['or'],\n", + " ['to', 'him'],\n", + " ['who'],\n", + " ['has'],\n", + " ['stopped'],\n", + " ['the'],\n", + " ['wheel'],\n", + " ['of'],\n", + " ['his', 'winepress?'],\n", + " [''],\n", + " ['my'],\n", + " ['heart'],\n", + " ['become'],\n", + " ['a', 'tree'],\n", + " ['heavy-laden'],\n", + " ['with'],\n", + " ['fruit'],\n", + " ['that'],\n", + " ['I'],\n", + " ['may', 'gather'],\n", + " ['and'],\n", + " ['give'],\n", + " ['unto'],\n", + " ['them?', '', 'And'],\n", + " ['shall'],\n", + " ['my'],\n", + " ['desires'],\n", + " ['flow'],\n", + " ['like'],\n", + " ['a', 'fountain'],\n", + " ['that'],\n", + " ['I'],\n", + " ['may'],\n", + " ['fill'],\n", + " ['their'],\n", + " ['cups?', '', 'Am'],\n", + " ['I'],\n", + " ['a'],\n", + " ['harp'],\n", + " ['that'],\n", + " ['the'],\n", + " ['hand'],\n", + " ['of'],\n", + " ['the'],\n", + " ['mighty', 'may'],\n", + " ['touch'],\n", + " ['me,'],\n", + " ['or'],\n", + " ['a'],\n", + " ['flute'],\n", + " ['that'],\n", + " ['his'],\n", + " ['breath', 'may'],\n", + " ['pass'],\n", + " ['through'],\n", + " ['me?', '', 'A'],\n", + " ['seeker'],\n", + " ['of'],\n", + " ['silences'],\n", + " ['am'],\n", + " ['I,'],\n", + " ['and'],\n", + " ['what', 'treasure'],\n", + " ['have'],\n", + " ['I'],\n", + " ['found'],\n", + " ['in'],\n", + " ['silences'],\n", + " ['that'],\n", + " ['I', 'may'],\n", + " ['dispense'],\n", + " ['with'],\n", + " ['confidence?', '', 'If'],\n", + " ['this'],\n", + " ['is'],\n", + " ['my'],\n", + " ['day'],\n", + " ['of'],\n", + " ['harvest,'],\n", + " ['in'],\n", + " ['what', 'fields'],\n", + " ['have'],\n", + " ['I'],\n", + " ['sowed'],\n", + " ['the'],\n", + " ['seed,'],\n", + " ['and'],\n", + " ['in', 'what'],\n", + " ['unremembered'],\n", + " ['seasons?', '', 'If'],\n", + " ['this'],\n", + " ['indeed'],\n", + " ['be'],\n", + " ['the'],\n", + " ['hour'],\n", + " ['in'],\n", + " ['which'],\n", + " ['I', 'lift'],\n", + " ['up'],\n", + " ['my'],\n", + " ['lantern,'],\n", + " ['it'],\n", + " ['is'],\n", + " ['not'],\n", + " ['my'],\n", + " ['flame', 'that'],\n", + " ['shall'],\n", + " ['burn'],\n", + " ['therein.', '', 'Empty'],\n", + " ['and'],\n", + " ['dark'],\n", + " ['shall'],\n", + " ['I'],\n", + " ['raise'],\n", + " ['my'],\n", + " ['lantern,', '', 'And'],\n", + " ['the'],\n", + " ['guardian'],\n", + " ['of'],\n", + " ['the'],\n", + " ['night'],\n", + " ['shall'],\n", + " ['fill', 'it'],\n", + " ['with'],\n", + " ['oil'],\n", + " ['and'],\n", + " ['he'],\n", + " ['shall'],\n", + " ['light'],\n", + " ['it'],\n", + " ['also.', '', '*****', '', 'These'],\n", + " ['things'],\n", + " ['he'],\n", + " ['said'],\n", + " ['in'],\n", + " ['words.'],\n", + " ['But'],\n", + " ['much', 'in'],\n", + " ['his'],\n", + " ['heart'],\n", + " ['remained'],\n", + " ['unsaid.'],\n", + " ['For'],\n", + " [''],\n", + " ['could'],\n", + " ['not'],\n", + " ['speak'],\n", + " ['his'],\n", + " ['deeper', 'secret.', '', '*****', '', '[Illustration:'],\n", + " ['0020]', '', 'And'],\n", + " ['when'],\n", + " ['he'],\n", + " ['entered'],\n", + " ['into'],\n", + " ['the'],\n", + " ['city'],\n", + " ['all', 'the'],\n", + " ['people'],\n", + " ['came'],\n", + " ['to'],\n", + " ['meet'],\n", + " ['him,'],\n", + " ['and'],\n", + " ['they', 'were'],\n", + " ['crying'],\n", + " ['out'],\n", + " ['to'],\n", + " ['him'],\n", + " ['as'],\n", + " ['with'],\n", + " ['one', 'voice.', '', 'And'],\n", + " ['the'],\n", + " ['elders'],\n", + " ['of'],\n", + " ['the'],\n", + " ['city'],\n", + " ['stood'],\n", + " ['forth', 'and'],\n", + " ['said:', '', 'Go'],\n", + " ['not'],\n", + " ['yet'],\n", + " ['away'],\n", + " ['from'],\n", + " ['us.', '', 'A'],\n", + " ['noontide'],\n", + " ['have'],\n", + " ['you'],\n", + " ['been'],\n", + " ['in'],\n", + " ['our', 'twilight,'],\n", + " ['and'],\n", + " ['your'],\n", + " ['youth'],\n", + " ['has'],\n", + " ['given'],\n", + " ['us', 'dreams'],\n", + " ['to'],\n", + " ['dream.', '', 'No'],\n", + " ['stranger'],\n", + " ['are'],\n", + " ['you'],\n", + " ['among'],\n", + " ['us,'],\n", + " ['nor', 'a'],\n", + " ['guest,'],\n", + " ['but'],\n", + " ['our'],\n", + " ['son'],\n", + " ['and'],\n", + " ['our'],\n", + " ['dearly', 'beloved.', '', 'Suffer'],\n", + " ['not'],\n", + " ['yet'],\n", + " ['our'],\n", + " ['eyes'],\n", + " ['to'],\n", + " ['hunger'],\n", + " ['for', 'your'],\n", + " ['face.', '', '*****', '', 'And'],\n", + " ['the'],\n", + " ['priests'],\n", + " ['and'],\n", + " ['the'],\n", + " ['priestesses'],\n", + " ['said', 'unto'],\n", + " ['him:', '', 'Let'],\n", + " ['not'],\n", + " ['the'],\n", + " ['waves'],\n", + " ['of'],\n", + " ['the'],\n", + " ['sea'],\n", + " ['separate'],\n", + " ['us', 'now,'],\n", + " ['and'],\n", + " ['the'],\n", + " ['years'],\n", + " ['you'],\n", + " ['have'],\n", + " ['spent'],\n", + " ['in'],\n", + " ['our', 'midst'],\n", + " ['become'],\n", + " ['a'],\n", + " ['memory.', '', 'You'],\n", + " ['have'],\n", + " ['walked'],\n", + " ['among'],\n", + " ['us'],\n", + " ['a'],\n", + " ['spirit,', ''],\n", + " ['your'],\n", + " ['shadow'],\n", + " ['has'],\n", + " ['been'],\n", + " ['a'],\n", + " ['light', 'upon'],\n", + " ['our'],\n", + " ['faces.', '', 'Much'],\n", + " ['have'],\n", + " ['we'],\n", + " ['loved'],\n", + " ['you.'],\n", + " ['But'],\n", + " ['speechless', 'was'],\n", + " ['our'],\n", + " ['love,'],\n", + " ['and'],\n", + " ['with'],\n", + " ['veils'],\n", + " ['has'],\n", + " ['it'],\n", + " ['been', 'veiled.', '', 'Yet'],\n", + " ['now'],\n", + " ['it'],\n", + " ['cries'],\n", + " ['aloud'],\n", + " ['unto'],\n", + " ['you,'],\n", + " ['and', 'would'],\n", + " ['stand'],\n", + " ['revealed'],\n", + " ['before'],\n", + " ['you.', '', 'And'],\n", + " ['ever'],\n", + " ['has'],\n", + " ['it'],\n", + " ['been'],\n", + " ['that'],\n", + " ['love'],\n", + " ['knows', 'not'],\n", + " ['its'],\n", + " ['own'],\n", + " ['depth'],\n", + " ['until'],\n", + " ['the'],\n", + " ['hour'],\n", + " ['of', 'separation.', '', '*****', '', 'And'],\n", + " ['others'],\n", + " ['came'],\n", + " ['also'],\n", + " ['and'],\n", + " ['entreated'],\n", + " ['him.', 'But'],\n", + " ['he'],\n", + " ['answered'],\n", + " ['them'],\n", + " ['not.'],\n", + " ['He'],\n", + " ['only'],\n", + " ['bent', 'his'],\n", + " ['head;'],\n", + " ['and'],\n", + " ['those'],\n", + " ['who'],\n", + " ['stood'],\n", + " ['near'],\n", + " ['saw', 'his'],\n", + " ['tears'],\n", + " ['falling'],\n", + " ['upon'],\n", + " ['his'],\n", + " ['breast.', '', 'And'],\n", + " ['he'],\n", + " ['and'],\n", + " ['the'],\n", + " ['people'],\n", + " ['proceeded'],\n", + " ['towards', 'the'],\n", + " ['great'],\n", + " ['square'],\n", + " ['before'],\n", + " ['the'],\n", + " ['temple.', '', 'And'],\n", + " ['there'],\n", + " ['came'],\n", + " ['out'],\n", + " ['of'],\n", + " ['the'],\n", + " ['sanctuary'],\n", + " ['a', 'woman'],\n", + " ['whose'],\n", + " ['name'],\n", + " ['was'],\n", + " ['Almitra.'],\n", + " ['And'],\n", + " ['she', 'was'],\n", + " ['a'],\n", + " ['seeress.', '', 'And'],\n", + " ['he'],\n", + " ['looked'],\n", + " ['upon'],\n", + " ['her'],\n", + " ['with'],\n", + " ['exceeding', 'tenderness,'],\n", + " ['for'],\n", + " ['it'],\n", + " ['was'],\n", + " ['she'],\n", + " ['who'],\n", + " ['had'],\n", + " ['first', 'sought'],\n", + " ['and'],\n", + " ['believed'],\n", + " ['in'],\n", + " ['him'],\n", + " ['when'],\n", + " ['he'],\n", + " ['had', 'been'],\n", + " ['but'],\n", + " ['a'],\n", + " ['day'],\n", + " ['in'],\n", + " ['their'],\n", + " ['city.'],\n", + " [''],\n", + " ['hailed'],\n", + " ['him,'],\n", + " ['saying:', '', 'Prophet'],\n", + " ['of'],\n", + " ['God,'],\n", + " ['in'],\n", + " ['quest'],\n", + " ['of'],\n", + " ['the', 'uttermost,'],\n", + " ['long'],\n", + " ['have'],\n", + " ['you'],\n", + " ['searched'],\n", + " ['the', 'distances'],\n", + " ['for'],\n", + " ['your'],\n", + " ['ship.', '', 'And'],\n", + " ['now'],\n", + " ['your'],\n", + " ['ship'],\n", + " ['has'],\n", + " ['come,'],\n", + " ['and'],\n", + " ['you'],\n", + " ['must', 'needs'],\n", + " ['go.', '', 'Deep'],\n", + " ['is'],\n", + " ['your'],\n", + " ['longing'],\n", + " ['for'],\n", + " ['the'],\n", + " ['land'],\n", + " ['of', 'your'],\n", + " ['memories'],\n", + " ['and'],\n", + " ['the'],\n", + " ['dwelling'],\n", + " ['place', 'of'],\n", + " ['your'],\n", + " ['greater'],\n", + " ['desires;'],\n", + " ['and'],\n", + " ['our'],\n", + " ['love', 'would'],\n", + " ['not'],\n", + " ['bind'],\n", + " ['you'],\n", + " ['nor'],\n", + " ['our'],\n", + " ['needs'],\n", + " ['hold', 'you.', '', 'Yet'],\n", + " ['this'],\n", + " ['we'],\n", + " ['ask'],\n", + " ['ere'],\n", + " ['you'],\n", + " ['leave'],\n", + " ['us,'],\n", + " ['that', 'you'],\n", + " ['speak'],\n", + " ['to'],\n", + " ['us'],\n", + " ['and'],\n", + " ['give'],\n", + " ['us'],\n", + " ['of'],\n", + " ['your', 'truth.', '', 'And'],\n", + " ['we'],\n", + " ['will'],\n", + " ['give'],\n", + " ['it'],\n", + " ['unto'],\n", + " ['our'],\n", + " ['children,', 'and'],\n", + " ['they'],\n", + " ['unto'],\n", + " ['their'],\n", + " ['children,'],\n", + " ['and'],\n", + " ['it', 'shall'],\n", + " ['not'],\n", + " ['perish.', '', 'In'],\n", + " ['your'],\n", + " ['aloneness'],\n", + " ['you'],\n", + " ['have'],\n", + " ['watched'],\n", + " ['with', 'our'],\n", + " ['days,'],\n", + " ['and'],\n", + " ['in'],\n", + " ['your'],\n", + " ['wakefulness'],\n", + " ['you', 'have'],\n", + " ['listened'],\n", + " ['to'],\n", + " ['the'],\n", + " ['weeping'],\n", + " ['and'],\n", + " ['the', 'laughter'],\n", + " ['of'],\n", + " ['our'],\n", + " ['sleep.', '', 'Now'],\n", + " ['therefore'],\n", + " ['disclose'],\n", + " ['us'],\n", + " ['to'],\n", + " ['ourselves,', 'and'],\n", + " ['tell'],\n", + " ['us'],\n", + " ['all'],\n", + " ['that'],\n", + " ['has'],\n", + " ['been'],\n", + " ['shown', 'you'],\n", + " ['of'],\n", + " ['that'],\n", + " ['which'],\n", + " ['is'],\n", + " ['between'],\n", + " ['birth'],\n", + " ['and', 'death.', '', '*****', '', 'And'],\n", + " ['he'],\n", + " ['answered,', '', 'People'],\n", + " ['of'],\n", + " ['Orphalese,'],\n", + " ...]" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your code here" + "# your code here\n", + "prophet_line = list(map(line_break, prophet_reference))\n", + "prophet_line" ] }, { @@ -172,11 +1273,1034 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 21, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['PROPHET',\n", + " '',\n", + " '|Almustafa,',\n", + " 'the',\n", + " 'chosen',\n", + " 'and',\n", + " 'the',\n", + " 'beloved,',\n", + " 'who',\n", + " 'was',\n", + " 'a',\n", + " 'dawn',\n", + " 'unto',\n", + " 'his',\n", + " 'own',\n", + " 'day,',\n", + " 'had',\n", + " 'waited',\n", + " 'twelve',\n", + " 'years',\n", + " 'in',\n", + " 'the',\n", + " 'city',\n", + " 'of',\n", + " 'Orphalese',\n", + " 'for',\n", + " 'his',\n", + " 'ship',\n", + " 'that',\n", + " 'was',\n", + " 'to',\n", + " 'return',\n", + " 'and',\n", + " 'bear',\n", + " 'him',\n", + " 'back',\n", + " 'to',\n", + " 'the',\n", + " 'isle',\n", + " 'of',\n", + " 'his',\n", + " 'birth.',\n", + " '',\n", + " 'And',\n", + " 'in',\n", + " 'the',\n", + " 'twelfth',\n", + " 'year,',\n", + " 'on',\n", + " 'the',\n", + " 'seventh',\n", + " 'day',\n", + " 'of',\n", + " 'Ielool,',\n", + " 'the',\n", + " 'month',\n", + " 'of',\n", + " 'reaping,',\n", + " 'he',\n", + " 'climbed',\n", + " 'the',\n", + " 'hill',\n", + " 'without',\n", + " 'the',\n", + " 'city',\n", + " 'walls',\n", + " 'and',\n", + " 'looked',\n", + " 'seaward;',\n", + " 'and',\n", + " 'he',\n", + " 'beheld',\n", + " 'his',\n", + " 'ship',\n", + " 'coming',\n", + " 'with',\n", + " 'the',\n", + " 'mist.',\n", + " '',\n", + " 'Then',\n", + " 'the',\n", + " 'gates',\n", + " 'of',\n", + " 'his',\n", + " 'heart',\n", + " 'were',\n", + " 'flung',\n", + " 'open,',\n", + " 'and',\n", + " 'his',\n", + " 'joy',\n", + " 'flew',\n", + " 'far',\n", + " 'over',\n", + " 'the',\n", + " 'sea.',\n", + " 'And',\n", + " 'he',\n", + " 'closed',\n", + " 'his',\n", + " 'eyes',\n", + " 'and',\n", + " 'prayed',\n", + " 'in',\n", + " 'the',\n", + " 'silences',\n", + " 'of',\n", + " 'his',\n", + " 'soul.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'But',\n", + " 'as',\n", + " 'he',\n", + " 'descended',\n", + " 'the',\n", + " 'hill,',\n", + " 'a',\n", + " 'sadness',\n", + " 'came',\n", + " 'upon',\n", + " 'him,',\n", + " 'and',\n", + " 'he',\n", + " 'thought',\n", + " 'in',\n", + " 'his',\n", + " 'heart:',\n", + " '',\n", + " 'How',\n", + " 'shall',\n", + " 'I',\n", + " 'go',\n", + " 'in',\n", + " 'peace',\n", + " 'and',\n", + " 'without',\n", + " 'sorrow?',\n", + " 'Nay,',\n", + " 'not',\n", + " 'without',\n", + " 'a',\n", + " 'wound',\n", + " 'in',\n", + " 'the',\n", + " 'spirit',\n", + " 'shall',\n", + " 'I',\n", + " 'leave',\n", + " 'this',\n", + " 'city.',\n", + " '',\n", + " 'the',\n", + " 'days',\n", + " 'of',\n", + " 'pain',\n", + " 'I',\n", + " 'have',\n", + " 'spent',\n", + " 'within',\n", + " 'its',\n", + " 'walls,',\n", + " 'and',\n", + " 'long',\n", + " 'were',\n", + " 'the',\n", + " 'nights',\n", + " 'of',\n", + " 'aloneness;',\n", + " 'and',\n", + " 'who',\n", + " 'can',\n", + " 'depart',\n", + " 'from',\n", + " 'his',\n", + " 'pain',\n", + " 'and',\n", + " 'his',\n", + " 'aloneness',\n", + " 'without',\n", + " 'regret?',\n", + " '',\n", + " 'Too',\n", + " 'many',\n", + " 'fragments',\n", + " 'of',\n", + " 'the',\n", + " 'spirit',\n", + " 'have',\n", + " 'I',\n", + " 'scattered',\n", + " 'in',\n", + " 'these',\n", + " 'streets,',\n", + " 'and',\n", + " 'too',\n", + " 'many',\n", + " 'are',\n", + " 'the',\n", + " 'children',\n", + " 'of',\n", + " 'my',\n", + " 'longing',\n", + " 'that',\n", + " 'walk',\n", + " 'naked',\n", + " 'among',\n", + " 'these',\n", + " 'hills,',\n", + " 'and',\n", + " 'I',\n", + " 'cannot',\n", + " 'withdraw',\n", + " 'from',\n", + " 'them',\n", + " 'without',\n", + " 'a',\n", + " 'burden',\n", + " 'and',\n", + " 'an',\n", + " 'ache.',\n", + " '',\n", + " 'It',\n", + " 'is',\n", + " 'not',\n", + " 'a',\n", + " 'garment',\n", + " 'I',\n", + " 'cast',\n", + " 'off',\n", + " 'this',\n", + " 'day,',\n", + " 'but',\n", + " 'a',\n", + " 'skin',\n", + " 'that',\n", + " 'I',\n", + " 'tear',\n", + " 'with',\n", + " 'my',\n", + " 'own',\n", + " 'hands.',\n", + " '',\n", + " 'Nor',\n", + " 'is',\n", + " 'it',\n", + " 'a',\n", + " 'thought',\n", + " 'I',\n", + " 'leave',\n", + " 'behind',\n", + " 'me,',\n", + " 'but',\n", + " 'a',\n", + " 'heart',\n", + " 'made',\n", + " 'sweet',\n", + " 'with',\n", + " 'hunger',\n", + " 'and',\n", + " 'with',\n", + " 'thirst.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'Yet',\n", + " 'I',\n", + " 'cannot',\n", + " 'tarry',\n", + " 'longer.',\n", + " '',\n", + " 'The',\n", + " 'sea',\n", + " 'that',\n", + " 'calls',\n", + " 'all',\n", + " 'things',\n", + " 'unto',\n", + " 'her',\n", + " 'calls',\n", + " 'me,',\n", + " 'and',\n", + " 'I',\n", + " 'must',\n", + " 'embark.',\n", + " '',\n", + " 'For',\n", + " 'to',\n", + " 'stay,',\n", + " 'though',\n", + " 'the',\n", + " 'hours',\n", + " 'burn',\n", + " 'in',\n", + " 'the',\n", + " 'night,',\n", + " 'is',\n", + " 'to',\n", + " 'freeze',\n", + " 'and',\n", + " 'crystallize',\n", + " 'and',\n", + " 'be',\n", + " 'bound',\n", + " 'in',\n", + " 'a',\n", + " 'mould.',\n", + " '',\n", + " 'Fain',\n", + " 'would',\n", + " 'I',\n", + " 'take',\n", + " 'with',\n", + " 'me',\n", + " 'all',\n", + " 'that',\n", + " 'is',\n", + " 'here.',\n", + " 'But',\n", + " 'how',\n", + " 'shall',\n", + " 'I?',\n", + " '',\n", + " 'A',\n", + " 'voice',\n", + " 'cannot',\n", + " 'carry',\n", + " 'the',\n", + " 'tongue',\n", + " 'and',\n", + " '',\n", + " 'lips',\n", + " 'that',\n", + " 'gave',\n", + " 'it',\n", + " 'wings.',\n", + " 'Alone',\n", + " 'must',\n", + " 'it',\n", + " 'seek',\n", + " 'the',\n", + " 'ether.',\n", + " '',\n", + " 'And',\n", + " 'alone',\n", + " 'and',\n", + " 'without',\n", + " 'his',\n", + " 'nest',\n", + " 'shall',\n", + " 'the',\n", + " 'eagle',\n", + " 'fly',\n", + " 'across',\n", + " 'the',\n", + " 'sun.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'Now',\n", + " 'when',\n", + " 'he',\n", + " 'reached',\n", + " 'the',\n", + " 'foot',\n", + " 'of',\n", + " 'the',\n", + " 'hill,',\n", + " 'he',\n", + " 'turned',\n", + " 'again',\n", + " 'towards',\n", + " 'the',\n", + " 'sea,',\n", + " 'and',\n", + " 'he',\n", + " 'saw',\n", + " 'his',\n", + " 'ship',\n", + " 'approaching',\n", + " 'the',\n", + " 'harbour,',\n", + " 'and',\n", + " 'upon',\n", + " 'her',\n", + " 'prow',\n", + " 'the',\n", + " 'mariners,',\n", + " 'the',\n", + " 'men',\n", + " 'of',\n", + " 'his',\n", + " 'own',\n", + " 'land.',\n", + " '',\n", + " 'And',\n", + " 'his',\n", + " 'soul',\n", + " 'cried',\n", + " 'out',\n", + " 'to',\n", + " 'them,',\n", + " 'and',\n", + " 'he',\n", + " 'said:',\n", + " '',\n", + " 'Sons',\n", + " 'of',\n", + " 'my',\n", + " 'ancient',\n", + " 'mother,',\n", + " 'you',\n", + " 'riders',\n", + " 'of',\n", + " 'the',\n", + " 'tides,',\n", + " '',\n", + " 'How',\n", + " 'often',\n", + " 'have',\n", + " 'you',\n", + " 'sailed',\n", + " 'in',\n", + " 'my',\n", + " 'dreams.',\n", + " 'And',\n", + " 'now',\n", + " 'you',\n", + " 'come',\n", + " 'in',\n", + " 'my',\n", + " 'awakening,',\n", + " 'which',\n", + " 'is',\n", + " 'my',\n", + " 'deeper',\n", + " 'dream.',\n", + " '',\n", + " 'Ready',\n", + " 'am',\n", + " 'I',\n", + " 'to',\n", + " 'go,',\n", + " 'and',\n", + " 'my',\n", + " 'eagerness',\n", + " 'with',\n", + " 'sails',\n", + " 'full',\n", + " 'set',\n", + " 'awaits',\n", + " 'the',\n", + " 'wind.',\n", + " '',\n", + " 'Only',\n", + " 'another',\n", + " 'breath',\n", + " 'will',\n", + " 'I',\n", + " 'breathe',\n", + " 'in',\n", + " 'this',\n", + " 'still',\n", + " 'air,',\n", + " 'only',\n", + " 'another',\n", + " 'loving',\n", + " 'look',\n", + " 'cast',\n", + " 'backward,',\n", + " '',\n", + " 'And',\n", + " 'then',\n", + " 'I',\n", + " 'shall',\n", + " 'stand',\n", + " 'among',\n", + " 'you,',\n", + " 'a',\n", + " 'seafarer',\n", + " 'among',\n", + " 'seafarers.',\n", + " '',\n", + " 'you,',\n", + " 'vast',\n", + " 'sea,',\n", + " 'sleepless',\n", + " 'mother,',\n", + " '',\n", + " 'Who',\n", + " 'alone',\n", + " 'are',\n", + " 'peace',\n", + " 'and',\n", + " 'freedom',\n", + " 'to',\n", + " 'the',\n", + " 'river',\n", + " 'and',\n", + " 'the',\n", + " 'stream,',\n", + " '',\n", + " 'Only',\n", + " 'another',\n", + " 'winding',\n", + " 'will',\n", + " 'this',\n", + " 'stream',\n", + " 'make,',\n", + " 'only',\n", + " 'another',\n", + " 'murmur',\n", + " 'in',\n", + " 'this',\n", + " 'glade,',\n", + " '',\n", + " 'And',\n", + " 'then',\n", + " 'shall',\n", + " 'I',\n", + " 'come',\n", + " 'to',\n", + " 'you,',\n", + " 'a',\n", + " 'boundless',\n", + " 'drop',\n", + " 'to',\n", + " 'a',\n", + " 'boundless',\n", + " 'ocean.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'And',\n", + " 'as',\n", + " 'he',\n", + " 'walked',\n", + " 'he',\n", + " 'saw',\n", + " 'from',\n", + " 'afar',\n", + " 'men',\n", + " 'and',\n", + " 'women',\n", + " 'leaving',\n", + " 'their',\n", + " 'fields',\n", + " 'and',\n", + " 'their',\n", + " 'vineyards',\n", + " 'and',\n", + " 'hastening',\n", + " 'towards',\n", + " 'the',\n", + " 'city',\n", + " 'gates.',\n", + " '',\n", + " 'And',\n", + " 'he',\n", + " 'heard',\n", + " 'their',\n", + " 'voices',\n", + " 'calling',\n", + " 'his',\n", + " 'name,',\n", + " 'and',\n", + " 'shouting',\n", + " 'from',\n", + " 'field',\n", + " 'to',\n", + " 'field',\n", + " 'telling',\n", + " 'one',\n", + " 'another',\n", + " 'of',\n", + " 'the',\n", + " 'coming',\n", + " 'of',\n", + " 'his',\n", + " 'ship.',\n", + " '',\n", + " 'And',\n", + " 'he',\n", + " 'said',\n", + " 'to',\n", + " 'himself:',\n", + " '',\n", + " 'Shall',\n", + " 'the',\n", + " 'day',\n", + " 'of',\n", + " 'parting',\n", + " 'be',\n", + " 'the',\n", + " 'day',\n", + " 'of',\n", + " 'gathering?',\n", + " '',\n", + " 'And',\n", + " 'shall',\n", + " 'it',\n", + " 'be',\n", + " 'said',\n", + " 'that',\n", + " 'my',\n", + " 'eve',\n", + " 'was',\n", + " 'in',\n", + " 'truth',\n", + " 'my',\n", + " 'dawn?',\n", + " '',\n", + " 'And',\n", + " 'what',\n", + " 'shall',\n", + " 'I',\n", + " 'give',\n", + " 'unto',\n", + " 'him',\n", + " 'who',\n", + " 'has',\n", + " 'left',\n", + " 'his',\n", + " 'plough',\n", + " 'in',\n", + " 'midfurrow,',\n", + " 'or',\n", + " 'to',\n", + " 'him',\n", + " 'who',\n", + " 'has',\n", + " 'stopped',\n", + " 'the',\n", + " 'wheel',\n", + " 'of',\n", + " 'his',\n", + " 'winepress?',\n", + " '',\n", + " 'my',\n", + " 'heart',\n", + " 'become',\n", + " 'a',\n", + " 'tree',\n", + " 'heavy-laden',\n", + " 'with',\n", + " 'fruit',\n", + " 'that',\n", + " 'I',\n", + " 'may',\n", + " 'gather',\n", + " 'and',\n", + " 'give',\n", + " 'unto',\n", + " 'them?',\n", + " '',\n", + " 'And',\n", + " 'shall',\n", + " 'my',\n", + " 'desires',\n", + " 'flow',\n", + " 'like',\n", + " 'a',\n", + " 'fountain',\n", + " 'that',\n", + " 'I',\n", + " 'may',\n", + " 'fill',\n", + " 'their',\n", + " 'cups?',\n", + " '',\n", + " 'Am',\n", + " 'I',\n", + " 'a',\n", + " 'harp',\n", + " 'that',\n", + " 'the',\n", + " 'hand',\n", + " 'of',\n", + " 'the',\n", + " 'mighty',\n", + " 'may',\n", + " 'touch',\n", + " 'me,',\n", + " 'or',\n", + " 'a',\n", + " 'flute',\n", + " 'that',\n", + " 'his',\n", + " 'breath',\n", + " 'may',\n", + " 'pass',\n", + " 'through',\n", + " 'me?',\n", + " '',\n", + " 'A',\n", + " 'seeker',\n", + " 'of',\n", + " 'silences',\n", + " 'am',\n", + " 'I,',\n", + " 'and',\n", + " 'what',\n", + " 'treasure',\n", + " 'have',\n", + " 'I',\n", + " 'found',\n", + " 'in',\n", + " 'silences',\n", + " 'that',\n", + " 'I',\n", + " 'may',\n", + " 'dispense',\n", + " 'with',\n", + " 'confidence?',\n", + " '',\n", + " 'If',\n", + " 'this',\n", + " 'is',\n", + " 'my',\n", + " 'day',\n", + " 'of',\n", + " 'harvest,',\n", + " 'in',\n", + " 'what',\n", + " 'fields',\n", + " 'have',\n", + " 'I',\n", + " 'sowed',\n", + " 'the',\n", + " 'seed,',\n", + " 'and',\n", + " 'in',\n", + " 'what',\n", + " 'unremembered',\n", + " 'seasons?',\n", + " '',\n", + " 'If',\n", + " 'this',\n", + " 'indeed',\n", + " 'be',\n", + " 'the',\n", + " 'hour',\n", + " 'in',\n", + " 'which',\n", + " 'I',\n", + " 'lift',\n", + " 'up',\n", + " 'my',\n", + " 'lantern,',\n", + " 'it',\n", + " 'is',\n", + " 'not',\n", + " 'my',\n", + " 'flame',\n", + " 'that',\n", + " 'shall',\n", + " 'burn',\n", + " 'therein.',\n", + " '',\n", + " 'Empty',\n", + " 'and',\n", + " 'dark',\n", + " 'shall',\n", + " 'I',\n", + " 'raise',\n", + " 'my',\n", + " 'lantern,',\n", + " '',\n", + " 'And',\n", + " 'the',\n", + " 'guardian',\n", + " 'of',\n", + " 'the',\n", + " 'night',\n", + " 'shall',\n", + " 'fill',\n", + " 'it',\n", + " 'with',\n", + " 'oil',\n", + " 'and',\n", + " 'he',\n", + " 'shall',\n", + " 'light',\n", + " 'it',\n", + " 'also.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'These',\n", + " 'things',\n", + " 'he',\n", + " 'said',\n", + " 'in',\n", + " 'words.',\n", + " 'But',\n", + " 'much',\n", + " 'in',\n", + " 'his',\n", + " 'heart',\n", + " 'remained',\n", + " 'unsaid.',\n", + " 'For',\n", + " '',\n", + " 'could',\n", + " 'not',\n", + " 'speak',\n", + " 'his',\n", + " 'deeper',\n", + " 'secret.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " '[Illustration:',\n", + " '0020]',\n", + " '',\n", + " 'And',\n", + " 'when',\n", + " 'he',\n", + " 'entered',\n", + " 'into',\n", + " 'the',\n", + " 'city',\n", + " 'all',\n", + " 'the',\n", + " 'people',\n", + " 'came',\n", + " 'to',\n", + " 'meet',\n", + " 'him,',\n", + " 'and',\n", + " 'they',\n", + " 'were',\n", + " 'crying',\n", + " 'out',\n", + " 'to',\n", + " 'him',\n", + " 'as',\n", + " 'with',\n", + " 'one',\n", + " 'voice.',\n", + " '',\n", + " 'And',\n", + " 'the',\n", + " 'elders',\n", + " 'of',\n", + " 'the',\n", + " 'city',\n", + " 'stood',\n", + " 'forth',\n", + " 'and',\n", + " 'said:',\n", + " '',\n", + " 'Go',\n", + " 'not',\n", + " 'yet',\n", + " 'away',\n", + " 'from',\n", + " 'us.',\n", + " '',\n", + " 'A',\n", + " 'noontide',\n", + " 'have',\n", + " 'you',\n", + " 'been',\n", + " 'in',\n", + " 'our',\n", + " 'twilight,',\n", + " 'and',\n", + " 'your',\n", + " 'youth',\n", + " 'has',\n", + " 'given',\n", + " 'us',\n", + " 'dreams',\n", + " 'to',\n", + " 'dream.',\n", + " '',\n", + " 'No',\n", + " 'stranger',\n", + " 'are',\n", + " 'you',\n", + " 'among',\n", + " 'us,',\n", + " 'nor',\n", + " 'a',\n", + " 'guest,',\n", + " 'but',\n", + " 'our',\n", + " 'son',\n", + " 'and',\n", + " 'our',\n", + " 'dearly',\n", + " 'beloved.',\n", + " '',\n", + " 'Suffer',\n", + " 'not',\n", + " 'yet',\n", + " 'our',\n", + " 'eyes',\n", + " 'to',\n", + " 'hunger',\n", + " 'for',\n", + " 'your',\n", + " 'face.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'And',\n", + " 'the',\n", + " 'priests',\n", + " 'and',\n", + " 'the',\n", + " 'priestesses',\n", + " 'said',\n", + " 'unto',\n", + " 'him:',\n", + " '',\n", + " 'Let',\n", + " 'not',\n", + " 'the',\n", + " 'waves',\n", + " 'of',\n", + " 'the',\n", + " 'sea',\n", + " 'separate',\n", + " 'us',\n", + " 'now,',\n", + " 'and',\n", + " 'the',\n", + " 'years',\n", + " 'you',\n", + " 'have',\n", + " 'spent',\n", + " 'in',\n", + " 'our',\n", + " 'midst',\n", + " 'become',\n", + " 'a',\n", + " 'memory.',\n", + " '',\n", + " 'You',\n", + " 'have',\n", + " 'walked',\n", + " 'among',\n", + " 'us',\n", + " 'a',\n", + " 'spirit,',\n", + " '',\n", + " 'your',\n", + " 'shadow',\n", + " 'has',\n", + " 'been',\n", + " 'a',\n", + " 'light',\n", + " 'upon',\n", + " 'our',\n", + " 'faces.',\n", + " '',\n", + " 'Much',\n", + " 'have',\n", + " 'we',\n", + " 'loved',\n", + " 'you.',\n", + " 'But',\n", + " 'speechless',\n", + " 'was',\n", + " 'our',\n", + " 'love,',\n", + " 'and',\n", + " 'with',\n", + " 'veils',\n", + " 'has',\n", + " 'it',\n", + " 'been',\n", + " 'veiled.',\n", + " '',\n", + " 'Yet',\n", + " 'now',\n", + " 'it',\n", + " 'cries',\n", + " 'aloud',\n", + " 'unto',\n", + " 'you,',\n", + " 'and',\n", + " 'would',\n", + " 'stand',\n", + " 'revealed',\n", + " 'before',\n", + " 'you.',\n", + " '',\n", + " 'And',\n", + " 'ever',\n", + " 'has',\n", + " 'it',\n", + " 'been',\n", + " 'that',\n", + " 'love',\n", + " 'knows',\n", + " 'not',\n", + " ...]" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your code here" + "#Your code here\n", + "\n", + "\n", + "#From StackOverflow \n", + "#The list of lists\n", + "#list_of_lists = [range(4), range(7)]\n", + "#flatten the lists\n", + "#prophet_list = [y for x in list_of_lists for y in x]\n", + "\n", + "\n", + "prophet_flat = [n for x in prophet_line for n in x]\n", + "prophet_flat\n", + "\n" ] }, { @@ -190,28 +2314,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 22, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['PROPHET', '', '|Almustafa,', 'chosen', 'beloved,', 'who', 'was', 'dawn', 'unto', 'his', 'own', 'day,', 'had', 'waited', 'twelve', 'years', 'in', 'city', 'of', 'Orphalese', 'for', 'his', 'ship', 'that', 'was', 'to', 'return', 'bear', 'him', 'back', 'to', 'isle', 'of', 'his', 'birth.', '', 'And', 'in', 'twelfth', 'year,', 'on', 'seventh', 'day', 'of', 'Ielool,', 'month', 'of', 'reaping,', 'he', 'climbed', 'hill', 'without', 'city', 'walls', 'looked', 'seaward;', 'he', 'beheld', 'his', 'ship', 'coming', 'with', 'mist.', '', 'Then', 'gates', 'of', 'his', 'heart', 'were', 'flung', 'open,', 'his', 'joy', 'flew', 'far', 'over', 'sea.', 'And', 'he', 'closed', 'his', 'eyes', 'prayed', 'in', 'silences', 'of', 'his', 'soul.', '', '*****', '', 'But', 'as', 'he', 'descended', 'hill,', 'sadness', 'came', 'upon', 'him,', 'he', 'thought', 'in', 'his', 'heart:', '', 'How', 'shall', 'I', 'go', 'in', 'peace', 'without', 'sorrow?', 'Nay,', 'not', 'without', 'wound', 'in', 'spirit', 'shall', 'I', 'leave', 'this', 'city.', '', 'days', 'of', 'pain', 'I', 'have', 'spent', 'within', 'its', 'walls,', 'long', 'were', 'nights', 'of', 'aloneness;', 'who', 'can', 'depart', 'from', 'his', 'pain', 'his', 'aloneness', 'without', 'regret?', '', 'Too', 'many', 'fragments', 'of', 'spirit', 'have', 'I', 'scattered', 'in', 'these', 'streets,', 'too', 'many', 'are', 'children', 'of', 'my', 'longing', 'that', 'walk', 'naked', 'among', 'these', 'hills,', 'I', 'cannot', 'withdraw', 'from', 'them', 'without', 'burden', 'ache.', '', 'It', 'is', 'not', 'garment', 'I', 'cast', 'off', 'this', 'day,', 'but', 'skin', 'that', 'I', 'tear', 'with', 'my', 'own', 'hands.', '', 'Nor', 'is', 'it', 'thought', 'I', 'leave', 'behind', 'me,', 'but', 'heart', 'made', 'sweet', 'with', 'hunger', 'with', 'thirst.', '', '*****', '', 'Yet', 'I', 'cannot', 'tarry', 'longer.', '', 'The', 'sea', 'that', 'calls', 'all', 'things', 'unto', 'her', 'calls', 'me,', 'I', 'must', 'embark.', '', 'For', 'to', 'stay,', 'though', 'hours', 'burn', 'in', 'night,', 'is', 'to', 'freeze', 'crystallize', 'be', 'bound', 'in', 'mould.', '', 'Fain', 'would', 'I', 'take', 'with', 'me', 'all', 'that', 'is', 'here.', 'But', 'how', 'shall', 'I?', '', 'A', 'voice', 'cannot', 'carry', 'tongue', '', 'lips', 'that', 'gave', 'it', 'wings.', 'Alone', 'must', 'it', 'seek', 'ether.', '', 'And', 'alone', 'without', 'his', 'nest', 'shall', 'eagle', 'fly', 'across', 'sun.', '', '*****', '', 'Now', 'when', 'he', 'reached', 'foot', 'of', 'hill,', 'he', 'turned', 'again', 'towards', 'sea,', 'he', 'saw', 'his', 'ship', 'approaching', 'harbour,', 'upon', 'her', 'prow', 'mariners,', 'men', 'of', 'his', 'own', 'land.', '', 'And', 'his', 'soul', 'cried', 'out', 'to', 'them,', 'he', 'said:', '', 'Sons', 'of', 'my', 'ancient', 'mother,', 'you', 'riders', 'of', 'tides,', '', 'How', 'often', 'have', 'you', 'sailed', 'in', 'my', 'dreams.', 'And', 'now', 'you', 'come', 'in', 'my', 'awakening,', 'which', 'is', 'my', 'deeper', 'dream.', '', 'Ready', 'am', 'I', 'to', 'go,', 'my', 'eagerness', 'with', 'sails', 'full', 'set', 'awaits', 'wind.', '', 'Only', 'another', 'breath', 'will', 'I', 'breathe', 'in', 'this', 'still', 'air,', 'only', 'another', 'loving', 'look', 'cast', 'backward,', '', 'And', 'then', 'I', 'shall', 'stand', 'among', 'you,', 'seafarer', 'among', 'seafarers.', '', 'you,', 'vast', 'sea,', 'sleepless', 'mother,', '', 'Who', 'alone', 'are', 'peace', 'freedom', 'to', 'river', 'stream,', '', 'Only', 'another', 'winding', 'will', 'this', 'stream', 'make,', 'only', 'another', 'murmur', 'in', 'this', 'glade,', '', 'And', 'then', 'shall', 'I', 'come', 'to', 'you,', 'boundless', 'drop', 'to', 'boundless', 'ocean.', '', '*****', '', 'And', 'as', 'he', 'walked', 'he', 'saw', 'from', 'afar', 'men', 'women', 'leaving', 'their', 'fields', 'their', 'vineyards', 'hastening', 'towards', 'city', 'gates.', '', 'And', 'he', 'heard', 'their', 'voices', 'calling', 'his', 'name,', 'shouting', 'from', 'field', 'to', 'field', 'telling', 'one', 'another', 'of', 'coming', 'of', 'his', 'ship.', '', 'And', 'he', 'said', 'to', 'himself:', '', 'Shall', 'day', 'of', 'parting', 'be', 'day', 'of', 'gathering?', '', 'And', 'shall', 'it', 'be', 'said', 'that', 'my', 'eve', 'was', 'in', 'truth', 'my', 'dawn?', '', 'And', 'what', 'shall', 'I', 'give', 'unto', 'him', 'who', 'has', 'left', 'his', 'plough', 'in', 'midfurrow,', 'or', 'to', 'him', 'who', 'has', 'stopped', 'wheel', 'of', 'his', 'winepress?', '', 'my', 'heart', 'become', 'tree', 'heavy-laden', 'with', 'fruit', 'that', 'I', 'may', 'gather', 'give', 'unto', 'them?', '', 'And', 'shall', 'my', 'desires', 'flow', 'like', 'fountain', 'that', 'I', 'may', 'fill', 'their', 'cups?', '', 'Am', 'I', 'harp', 'that', 'hand', 'of', 'mighty', 'may', 'touch', 'me,', 'or', 'flute', 'that', 'his', 'breath', 'may', 'pass', 'through', 'me?', '', 'A', 'seeker', 'of', 'silences', 'am', 'I,', 'what', 'treasure', 'have', 'I', 'found', 'in', 'silences', 'that', 'I', 'may', 'dispense', 'with', 'confidence?', '', 'If', 'this', 'is', 'my', 'day', 'of', 'harvest,', 'in', 'what', 'fields', 'have', 'I', 'sowed', 'seed,', 'in', 'what', 'unremembered', 'seasons?', '', 'If', 'this', 'indeed', 'be', 'hour', 'in', 'which', 'I', 'lift', 'up', 'my', 'lantern,', 'it', 'is', 'not', 'my', 'flame', 'that', 'shall', 'burn', 'therein.', '', 'Empty', 'dark', 'shall', 'I', 'raise', 'my', 'lantern,', '', 'And', 'guardian', 'of', 'night', 'shall', 'fill', 'it', 'with', 'oil', 'he', 'shall', 'light', 'it', 'also.', '', '*****', '', 'These', 'things', 'he', 'said', 'in', 'words.', 'But', 'much', 'in', 'his', 'heart', 'remained', 'unsaid.', 'For', '', 'could', 'not', 'speak', 'his', 'deeper', 'secret.', '', '*****', '', '[Illustration:', '0020]', '', 'And', 'when', 'he', 'entered', 'into', 'city', 'all', 'people', 'came', 'to', 'meet', 'him,', 'they', 'were', 'crying', 'out', 'to', 'him', 'as', 'with', 'one', 'voice.', '', 'And', 'elders', 'of', 'city', 'stood', 'forth', 'said:', '', 'Go', 'not', 'yet', 'away', 'from', 'us.', '', 'A', 'noontide', 'have', 'you', 'been', 'in', 'our', 'twilight,', 'your', 'youth', 'has', 'given', 'us', 'dreams', 'to', 'dream.', '', 'No', 'stranger', 'are', 'you', 'among', 'us,', 'nor', 'guest,', 'but', 'our', 'son', 'our', 'dearly', 'beloved.', '', 'Suffer', 'not', 'yet', 'our', 'eyes', 'to', 'hunger', 'for', 'your', 'face.', '', '*****', '', 'And', 'priests', 'priestesses', 'said', 'unto', 'him:', '', 'Let', 'not', 'waves', 'of', 'sea', 'separate', 'us', 'now,', 'years', 'you', 'have', 'spent', 'in', 'our', 'midst', 'become', 'memory.', '', 'You', 'have', 'walked', 'among', 'us', 'spirit,', '', 'your', 'shadow', 'has', 'been', 'light', 'upon', 'our', 'faces.', '', 'Much', 'have', 'we', 'loved', 'you.', 'But', 'speechless', 'was', 'our', 'love,', 'with', 'veils', 'has', 'it', 'been', 'veiled.', '', 'Yet', 'now', 'it', 'cries', 'aloud', 'unto', 'you,', 'would', 'stand', 'revealed', 'before', 'you.', '', 'And', 'ever', 'has', 'it', 'been', 'that', 'love', 'knows', 'not', 'its', 'own', 'depth', 'until', 'hour', 'of', 'separation.', '', '*****', '', 'And', 'others', 'came', 'also', 'entreated', 'him.', 'But', 'he', 'answered', 'them', 'not.', 'He', 'only', 'bent', 'his', 'head;', 'those', 'who', 'stood', 'near', 'saw', 'his', 'tears', 'falling', 'upon', 'his', 'breast.', '', 'And', 'he', 'people', 'proceeded', 'towards', 'great', 'square', 'before', 'temple.', '', 'And', 'there', 'came', 'out', 'of', 'sanctuary', 'woman', 'whose', 'name', 'was', 'Almitra.', 'And', 'she', 'was', 'seeress.', '', 'And', 'he', 'looked', 'upon', 'her', 'with', 'exceeding', 'tenderness,', 'for', 'it', 'was', 'she', 'who', 'had', 'first', 'sought', 'believed', 'in', 'him', 'when', 'he', 'had', 'been', 'but', 'day', 'in', 'their', 'city.', '', 'hailed', 'him,', 'saying:', '', 'Prophet', 'of', 'God,', 'in', 'quest', 'of', 'uttermost,', 'long', 'have', 'you', 'searched', 'distances', 'for', 'your', 'ship.', '', 'And', 'now', 'your', 'ship', 'has', 'come,', 'you', 'must', 'needs', 'go.', '', 'Deep', 'is', 'your', 'longing', 'for', 'land', 'of', 'your', 'memories', 'dwelling', 'place', 'of', 'your', 'greater', 'desires;', 'our', 'love', 'would', 'not', 'bind', 'you', 'nor', 'our', 'needs', 'hold', 'you.', '', 'Yet', 'this', 'we', 'ask', 'ere', 'you', 'leave', 'us,', 'that', 'you', 'speak', 'to', 'us', 'give', 'us', 'of', 'your', 'truth.', '', 'And', 'we', 'will', 'give', 'it', 'unto', 'our', 'children,', 'they', 'unto', 'their', 'children,', 'it', 'shall', 'not', 'perish.', '', 'In', 'your', 'aloneness', 'you', 'have', 'watched', 'with', 'our', 'days,', 'in', 'your', 'wakefulness', 'you', 'have', 'listened', 'to', 'weeping', 'laughter', 'of', 'our', 'sleep.', '', 'Now', 'therefore', 'disclose', 'us', 'to', 'ourselves,', 'tell', 'us', 'all', 'that', 'has', 'been', 'shown', 'you', 'of', 'that', 'which', 'is', 'between', 'birth', 'death.', '', '*****', '', 'And', 'he', 'answered,', '', 'People', 'of', 'Orphalese,', 'of', 'what', 'can', 'I', '', 'save', 'of', 'that', 'which', 'is', 'even', 'now', 'moving', 'within', 'your', 'souls?', '', '*****', '*****', '', 'Then', 'said', 'Almitra,', 'Speak', 'to', 'us', 'of', '_Love_.', '', 'And', 'he', 'raised', 'his', 'head', 'looked', 'upon', 'people,', 'there', 'fell', 'stillness', 'upon', 'them.', 'And', 'with', 'great', 'voice', 'he', 'said:', '', 'When', 'love', 'beckons', 'to', 'you,', 'follow', 'him,', '', 'Though', 'his', 'ways', 'are', 'hard', 'steep.', '', 'And', 'when', 'his', 'wings', 'enfold', 'you', 'yield', 'to', 'him,', '', 'Though', 'sword', 'hidden', 'among', 'his', 'pinions', 'may', 'wound', 'you.', '', 'And', 'when', 'he', 'speaks', 'to', 'you', 'believe', 'in', 'him,', '', 'Though', 'his', 'voice', 'may', 'shatter', 'your', 'dreams', 'as', 'north', 'wind', 'lays', 'waste', 'garden.', '', 'For', 'even', 'as', 'love', 'crowns', 'you', 'so', 'shall', 'he', 'crucify', 'you.', 'Even', 'as', 'he', 'is', 'for', 'your', 'growth', 'so', 'is', 'he', 'for', 'your', 'pruning.', '', 'Even', 'as', 'he', 'ascends', 'to', 'your', 'height', '', 'your', 'tenderest', 'branches', 'that', 'quiver', 'in', 'sun,', '', 'So', 'shall', 'he', 'descend', 'to', 'your', 'roots', 'shake', 'them', 'in', 'their', 'clinging', 'to', 'earth.', '', '*****', '', 'Like', 'sheaves', 'of', 'corn', 'he', 'gathers', 'you', 'unto', 'himself.', '', 'He', 'threshes', 'you', 'to', 'make', 'you', 'naked.', '', 'He', 'sifts', 'you', 'to', 'free', 'you', 'from', 'your', 'husks.', '', 'He', 'grinds', 'you', 'to', 'whiteness.', '', 'He', 'kneads', 'you', 'until', 'you', 'are', 'pliant;', '', 'And', 'then', 'he', 'assigns', 'you', 'to', 'his', 'sacred', 'fire,', 'that', 'you', 'may', 'become', 'sacred', 'bread', 'for', 'God’s', 'sacred', 'feast.', '', '*****', '', 'All', 'these', 'things', 'shall', 'love', 'do', 'unto', 'you', 'that', 'you', 'may', 'know', 'secrets', 'of', 'your', 'heart,', 'in', 'that', 'knowledge', 'become', 'fragment', 'of', 'Life’s', 'heart.', '', 'But', 'if', 'in', 'your', 'fear', 'you', 'would', 'seek', 'only', 'love’s', 'peace', 'love’s', 'pleasure,', '', 'Then', 'it', 'is', 'better', 'for', 'you', 'that', 'you', 'cover', '', 'nakedness', 'pass', 'out', 'of', 'love’s', 'threshing-floor,', '', 'Into', 'seasonless', 'world', 'where', 'you', 'shall', 'laugh,', 'but', 'not', 'all', 'of', 'your', 'laughter,', 'weep,', 'but', 'not', 'all', 'of', 'your', 'tears.', '', '*****', '', 'Love', 'gives', 'naught', 'but', 'itself', 'takes', 'naught', 'but', 'from', 'itself.', '', 'Love', 'possesses', 'not', 'nor', 'would', 'it', 'be', 'possessed;', '', 'For', 'love', 'is', 'sufficient', 'unto', 'love.', '', 'When', 'you', 'love', 'you', 'should', 'not', 'say,', '“God', 'is', 'in', 'my', 'heart,”', 'but', 'rather,', '“I', 'am', 'in', 'heart', 'of', 'God.”', '', 'And', 'think', 'not', 'you', 'can', 'direct', 'course', 'of', 'love,', 'for', 'love,', 'if', 'it', 'finds', 'you', 'worthy,', 'directs', 'your', 'course.', '', 'Love', 'has', 'no', 'other', 'desire', 'but', 'to', 'fulfil', 'itself.', '', 'But', 'if', 'you', 'love', 'must', 'needs', 'have', 'desires,', 'let', 'these', 'be', 'your', 'desires:', '', 'To', 'melt', 'be', 'like', 'running', 'brook', 'that', 'sings', 'its', 'melody', 'to', 'night.', '', 'pain', 'of', 'too', 'much', 'tenderness.', '', 'To', 'be', 'wounded', 'by', 'your', 'own', 'understanding', 'of', 'love;', '', 'And', 'to', 'bleed', 'willingly', 'joyfully.', '', 'To', 'wake', 'at', 'dawn', 'with', 'winged', 'heart', 'give', 'thanks', 'for', 'another', 'day', 'of', 'loving;', '', 'To', 'rest', 'at', 'noon', 'hour', 'meditate', 'love’s', 'ecstacy;', '', 'To', 'return', 'home', 'at', 'eventide', 'with', 'gratitude;', '', 'And', 'then', 'to', 'sleep', 'with', 'prayer', 'for', 'beloved', 'in', 'your', 'heart', 'song', 'of', 'praise', 'upon', 'your', 'lips.', '', '[Illustration:', '0029]', '', '*****', '*****', '', '', 'Almitra', 'spoke', 'again', 'said,', 'And', 'what', 'of', '_Marriage_', 'master?', '', 'And', 'he', 'answered', 'saying:', '', 'You', 'were', 'born', 'together,', 'together', 'you', 'shall', 'be', 'forevermore.', '', 'You', 'shall', 'be', 'together', 'when', 'white', 'wings', 'of', 'death', 'scatter', 'your', 'days.', '', 'Aye,', 'you', 'shall', 'be', 'together', 'even', 'in', 'silent', 'memory', 'of', 'God.', '', 'But', 'let', 'there', 'be', 'spaces', 'in', 'your', 'togetherness,', '', 'And', 'let', 'winds', 'of', 'heavens', 'dance', 'between', 'you.', '', '*****', '', 'Love', 'one', 'another,', 'but', 'make', 'not', 'bond', 'of', 'love:', '', 'Let', 'it', 'rather', 'be', 'moving', 'sea', 'between', 'shores', 'of', 'your', 'souls.', '', 'Fill', 'each', 'other’s', 'cup', 'but', 'drink', 'not', 'from', 'one', 'cup.', '', 'Give', 'one', 'another', 'of', 'your', 'bread', 'but', 'eat', 'not', 'from', 'same', 'loaf.', '', 'dance', 'together', 'be', 'joyous,', 'but', 'let', 'each', 'one', 'of', 'you', 'be', 'alone,', '', 'Even', 'as', 'strings', 'of', 'lute', 'are', 'alone', 'though', 'they', 'quiver', 'with', 'same', 'music.', '', '*****', '', 'Give', 'your', 'hearts,', 'but', 'not', 'into', 'each', 'other’s', 'keeping.', '', 'For', 'only', 'hand', 'of', 'Life', 'can', 'contain', 'your', 'hearts.', '', 'And', 'stand', 'together', 'yet', 'not', 'too', 'near', 'together:', '', 'For', 'pillars', 'of', 'temple', 'stand', 'apart,', '', 'And', 'oak', 'tree', 'cypress', 'grow', 'not', 'in', 'each', 'other’s', 'shadow.', '', '[Illustration:', '0032]', '', '*****', '*****', '', '', 'woman', 'who', 'held', 'babe', 'against', 'her', 'bosom', 'said,', 'Speak', 'to', 'us', 'of', '_Children_.', '', 'And', 'he', 'said:', '', 'Your', 'children', 'are', 'not', 'your', 'children.', '', 'They', 'are', 'sons', 'daughters', 'of', 'Life’s', 'longing', 'for', 'itself.', '', 'They', 'come', 'through', 'you', 'but', 'not', 'from', 'you,', '', 'And', 'though', 'they', 'are', 'with', 'you', 'yet', 'they', 'belong', 'not', 'to', 'you.', '', '*****', '', 'You', 'may', 'give', 'them', 'your', 'love', 'but', 'not', 'your', 'thoughts,', '', 'For', 'they', 'have', 'their', 'own', 'thoughts.', '', 'You', 'may', 'house', 'their', 'bodies', 'but', 'not', 'their', 'souls,', '', 'For', 'their', 'souls', 'dwell', 'in', 'house', 'of', 'tomorrow,', 'which', 'you', 'cannot', 'visit,', 'not', 'even', 'in', 'your', 'dreams.', '', 'You', 'may', 'strive', 'to', 'be', 'like', 'them,', 'but', 'seek', 'not', 'to', 'make', 'them', 'like', 'you.', '', 'goes', 'not', 'backward', 'nor', 'tarries', 'with', 'yesterday.', '', 'You', 'are', 'bows', 'from', 'which', 'your', 'children', 'as', 'living', 'arrows', 'are', 'sent', 'forth.', '', 'The', 'archer', 'sees', 'mark', 'upon', 'path', 'of', 'infinite,', 'He', 'bends', 'you', 'with', 'His', 'might', 'that', 'His', 'arrows', 'may', 'go', 'swift', 'far.', '', 'Let', 'your', 'bending', 'in', 'Archer’s', 'hand', 'be', 'for', 'gladness;', '', 'For', 'even', 'as', 'he', 'loves', 'arrow', 'that', 'flies,', 'so', 'He', 'loves', 'also', 'bow', 'that', 'is', 'stable.', '', '*****', '*****', '', '', 'said', 'rich', 'man,', 'Speak', 'to', 'us', 'of', '_Giving_.', '', 'And', 'he', 'answered:', '', 'You', 'give', 'but', 'little', 'when', 'you', 'give', 'of', 'your', 'possessions.', '', 'It', 'is', 'when', 'you', 'give', 'of', 'yourself', 'that', 'you', 'truly', 'give.', '', 'For', 'what', 'are', 'your', 'possessions', 'but', 'things', 'you', 'keep', 'guard', 'for', 'fear', 'you', 'may', 'need', 'them', 'tomorrow?', '', 'And', 'tomorrow,', 'what', 'shall', 'tomorrow', 'bring', 'to', 'overprudent', 'dog', 'burying', 'bones', 'in', 'trackless', 'sand', 'as', 'he', 'follows', 'pilgrims', 'to', 'holy', 'city?', '', 'And', 'what', 'is', 'fear', 'of', 'need', 'but', 'need', 'itself?', '', 'Is', 'not', 'dread', 'of', 'thirst', 'when', 'your', 'well', 'is', 'full,', 'thirst', 'that', 'is', 'unquenchable?', '', 'There', 'are', 'those', 'who', 'give', 'little', 'of', '', 'which', 'they', 'have--and', 'they', 'give', 'it', 'for', 'recognition', 'their', 'hidden', 'desire', 'makes', 'their', 'gifts', 'unwholesome.', '', 'And', 'there', 'are', 'those', 'who', 'have', 'little', 'give', 'it', 'all.', '', 'These', 'are', 'believers', 'in', 'life', 'bounty', 'of', 'life,', 'their', 'coffer', 'is', 'never', 'empty.', '', 'There', 'are', 'those', 'who', 'give', 'with', 'joy,', 'that', 'joy', 'is', 'their', 'reward.', '', 'And', 'there', 'are', 'those', 'who', 'give', 'with', 'pain,', 'that', 'pain', 'is', 'their', 'baptism.', '', 'And', 'there', 'are', 'those', 'who', 'give', 'know', 'not', 'pain', 'in', 'giving,', 'nor', 'do', 'they', 'seek', 'joy,', 'nor', 'give', 'with', 'mindfulness', 'of', 'virtue;', '', 'They', 'give', 'as', 'in', 'yonder', 'valley', 'myrtle', 'breathes', 'its', 'fragrance', 'into', 'space.', '', 'Through', 'hands', 'of', 'such', 'as', 'these', 'God', 'speaks,', 'from', 'behind', 'their', 'eyes', 'He', 'smiles', 'upon', 'earth.', '', '[Illustration:', '0039]', '', 'It', 'is', 'well', 'to', 'give', 'when', 'asked,', 'but', 'it', 'is', 'better', 'to', 'give', 'unasked,', 'through', 'understanding;', '', 'And', 'to', 'open-handed', 'search', 'for', '', 'who', 'shall', 'receive', 'is', 'joy', 'greater', 'than', 'giving.', '', 'And', 'is', 'there', 'aught', 'you', 'would', 'withhold?', '', 'All', 'you', 'have', 'shall', 'some', 'day', 'be', 'given;', '', 'Therefore', 'give', 'now,', 'that', 'season', 'of', 'giving', 'may', 'be', 'yours', 'not', 'your', 'inheritors’.', '', 'You', 'often', 'say,', '“I', 'would', 'give,', 'but', 'only', 'to', 'deserving.”', '', 'The', 'trees', 'in', 'your', 'orchard', 'say', 'not', 'so,', 'nor', 'flocks', 'in', 'your', 'pasture.', '', 'They', 'give', 'that', 'they', 'may', 'live,', 'for', 'to', 'withhold', 'is', 'to', 'perish.', '', 'Surely', 'he', 'who', 'is', 'worthy', 'to', 'receive', 'his', 'days', 'his', 'nights,', 'is', 'worthy', 'of', 'all', 'else', 'from', 'you.', '', 'And', 'he', 'who', 'has', 'deserved', 'to', 'drink', 'from', 'ocean', 'of', 'life', 'deserves', 'to', 'fill', 'his', 'cup', 'from', 'your', 'little', 'stream.', '', 'And', 'what', 'desert', 'greater', 'shall', 'there', 'be,', 'than', 'that', 'which', 'lies', 'in', 'courage', 'confidence,', 'nay', 'charity,', 'of', 'receiving?', '', 'And', 'who', 'are', 'you', 'that', 'men', 'should', 'rend', '', 'bosom', 'unveil', 'their', 'pride,', 'that', 'you', 'may', 'see', 'their', 'worth', 'naked', 'their', 'pride', 'unabashed?', '', 'See', 'first', 'that', 'you', 'yourself', 'deserve', 'to', 'be', 'giver,', 'instrument', 'of', 'giving.', '', 'For', 'in', 'truth', 'it', 'is', 'life', 'that', 'gives', 'unto', 'life--while', 'you,', 'who', 'deem', 'yourself', 'giver,', 'are', 'but', 'witness.', '', 'And', 'you', 'receivers--and', 'you', 'are', 'all', 'receivers--assume', 'no', 'weight', 'of', 'gratitude,', 'lest', 'you', 'lay', 'yoke', 'upon', 'yourself', 'upon', 'him', 'who', 'gives.', '', 'Rather', 'rise', 'together', 'with', 'giver', 'on', 'his', 'gifts', 'as', 'on', 'wings;', '', 'For', 'to', 'be', 'overmindful', 'of', 'your', 'debt,', 'is', 'ito', 'doubt', 'his', 'generosity', 'who', 'has', 'freehearted', 'earth', 'for', 'mother,', 'God', 'for', 'father.', '', '[Illustration:', '0042]', '', '*****', '*****', '', '', 'old', 'man,', 'keeper', 'of', 'inn,', 'said,', 'Speak', 'to', 'us', 'of', '_Eating', 'Drinking_.', '', 'And', 'he', 'said:', '', 'Would', 'that', 'you', 'could', 'live', 'on', 'fragrance', 'of', 'earth,', 'like', 'air', 'plant', 'be', 'sustained', 'by', 'light.', '', 'But', 'since', 'you', 'must', 'kill', 'to', 'eat,', 'rob', 'newly', 'born', 'of', 'its', 'mother’s', 'milk', 'to', 'quench', 'your', 'thirst,', 'let', 'it', 'then', 'be', 'act', 'of', 'worship,', '', 'And', 'let', 'your', 'board', 'stand', 'altar', 'on', 'which', 'pure', 'innocent', 'of', 'forest', 'plain', 'are', 'sacrificed', 'for', 'that', 'which', 'is', 'purer', 'still', 'more', 'innocent', 'in', 'man.', '', '*****', '', 'When', 'you', 'kill', 'beast', 'say', 'to', 'him', 'in', 'your', 'heart,', '', '“By', 'same', 'power', 'that', 'slays', 'you,', 'I', 'too', 'am', 'slain;', 'I', 'too', 'shall', 'be', 'consumed.', '', 'law', 'that', 'delivered', 'you', 'into', 'my', 'hand', 'shall', 'deliver', 'me', 'into', 'mightier', 'hand.', '', 'Your', 'blood', 'my', 'blood', 'is', 'naught', 'but', 'sap', 'that', 'feeds', 'tree', 'of', 'heaven.”', '', '*****', '', 'And', 'when', 'you', 'crush', 'apple', 'with', 'your', 'teeth,', 'say', 'to', 'it', 'in', 'your', 'heart,', '', '“Your', 'seeds', 'shall', 'live', 'in', 'my', 'body,', '', 'And', 'buds', 'of', 'your', 'tomorrow', 'shall', 'blossom', 'in', 'my', 'heart,', '', 'And', 'your', 'fragrance', 'shall', 'be', 'my', 'breath,', 'And', 'together', 'we', 'shall', 'rejoice', 'through', 'all', 'seasons.”', '', '*****', '', 'And', 'in', 'autumn,', 'when', 'you', 'gather', 'grapes', 'of', 'your', 'vineyards', 'for', 'winepress,', 'say', 'in', 'your', 'heart,', '', '“I', 'too', 'am', 'vineyard,', 'my', 'fruit', 'shall', 'be', 'gathered', 'for', 'winepress,', '', 'And', 'like', 'new', 'wine', 'I', 'shall', 'be', 'kept', 'in', 'eternal', 'vessels.”', '', 'And', 'in', 'winter,', 'when', 'you', 'draw', 'wine,', '', 'there', 'be', 'in', 'your', 'heart', 'song', 'for', 'each', 'cup;', '', 'And', 'let', 'there', 'be', 'in', 'song', 'remembrance', 'for', 'autumn', 'days,', 'for', 'vineyard,', 'for', 'winepress.', '', '*****', '*****', '', '', 'Then', 'ploughman', 'said,', 'Speak', 'to', 'us', 'of', '_Work_.', '', 'And', 'he', 'answered,', 'saying:', '', 'You', 'work', 'that', 'you', 'may', 'keep', 'pace', 'with', 'earth', 'soul', 'of', 'earth.', '', 'For', 'to', 'be', 'idle', 'is', 'to', 'become', 'stranger', 'unto', 'seasons,', 'to', 'step', 'out', 'of', 'life’s', 'procession,', 'that', 'marches', 'in', 'majesty', 'proud', 'submission', 'towards', 'infinite.', '', 'When', 'you', 'work', 'you', 'are', 'flute', 'through', 'whose', 'heart', 'whispering', 'of', 'hours', 'turns', 'to', 'music.', '', 'Which', 'of', 'you', 'would', 'be', 'reed,', 'dumb', 'silent,', 'when', 'all', 'else', 'sings', 'together', 'in', 'unison?', '', 'Always', 'you', 'have', 'been', 'told', 'that', 'work', 'is', 'curse', 'labour', 'misfortune.', '', 'But', 'I', 'say', 'to', 'you', 'that', 'when', 'you', 'work', 'you', 'fulfil', 'part', 'of', 'earth’s', 'furthest', 'dream,', '', 'to', 'you', 'when', 'that', 'dream', 'was', 'born,', '', 'And', 'in', 'keeping', 'yourself', 'with', 'labour', 'you', 'are', 'in', 'truth', 'loving', 'life,', '', 'And', 'to', 'love', 'life', 'through', 'labour', 'is', 'to', 'be', 'intimate', 'with', 'life’s', 'inmost', 'secret.', '', '*****', '', 'But', 'if', 'you', 'in', 'your', 'pain', 'call', 'birth', 'affliction', 'support', 'of', 'flesh', 'curse', 'written', 'upon', 'your', 'brow,', 'then', 'I', 'answer', 'that', 'naught', 'but', 'sweat', 'of', 'your', 'brow', 'shall', 'wash', 'away', 'that', 'which', 'is', 'written.', '', 'You', 'have', 'been', 'told', 'also', 'that', 'life', 'is', 'darkness,', 'in', 'your', 'weariness', 'you', 'echo', 'what', 'was', 'said', 'by', 'weary.', '', 'And', 'I', 'say', 'that', 'life', 'is', 'indeed', 'darkness', '‘save', 'when', 'there', 'is', 'urge,', '', 'And', 'all', 'urge', 'is', 'blind', 'save', 'when', 'there', 'is', 'knowledge,', '', 'And', 'all', 'knowledge', 'is', 'vain', 'save', 'when', 'there', 'is', 'work,', '', 'And', 'all', 'work', 'is', 'empty', 'save', 'when', 'there', 'is', 'love;', '', 'And', 'when', 'you', 'work', 'with', 'love', 'you', 'bind', '', 'to', 'yourself,', 'to', 'one', 'another,', 'to', 'God.', '', '*****', '', 'And', 'what', 'is', 'it', 'to', 'work', 'with', 'love?', '', 'It', 'is', 'to', 'weave', 'cloth', 'with', 'threads', 'drawn', 'from', 'your', 'heart,', 'even', 'as', 'if', 'your', 'beloved', 'were', 'to', 'wear', 'that', 'cloth.', '', 'It', 'is', 'to', 'build', 'house', 'with', 'affection,', 'even', 'as', 'if', 'your', 'beloved', 'were', 'to', 'dwell', 'in', 'that', 'house.', '', 'It', 'is', 'to', 'sow', 'seeds', 'with', 'tenderness', 'reap', 'harvest', 'with', 'joy,', 'even', 'as', 'if', 'your', 'beloved', 'were', 'to', 'eat', 'fruit.', '', 'It', 'is', 'to', 'charge', 'all', 'things', 'you', 'fashion', 'with', 'breath', 'of', 'your', 'own', 'spirit,', '', 'And', 'to', 'know', 'that', 'all', 'blessed', 'dead', 'are', 'standing', 'about', 'you', 'watching.', '', 'Often', 'have', 'I', 'heard', 'you', 'say,', 'as', 'if', 'speaking', 'in', 'sleep,', '“He', 'who', 'works', 'in', 'marble,', 'finds', 'shape', 'of', 'his', 'own', 'soul', 'in', 'stone,', 'is', 'nobler', 'than', 'he', 'who', 'ploughs', 'soil.', '', 'he', 'who', 'seizes', 'rainbow', 'to', 'lay', 'it', 'on', 'cloth', 'in', 'likeness', 'of', 'man,', 'is', 'more', 'than', 'he', 'who', 'makes', 'sandals', 'for', 'our', 'feet.”', '', 'But', 'I', 'say,', 'not', 'in', 'sleep', 'but', 'in', 'overwakefulness', 'of', 'noontide,', 'that', 'wind', 'speaks', 'not', 'more', 'sweetly', 'to', 'giant', 'oaks', 'than', 'to', 'least', 'of', 'all', 'blades', 'of', 'grass;', '', 'And', 'he', 'alone', 'is', 'great', 'who', 'turns', 'voice', 'of', 'wind', 'into', 'song', 'made', 'sweeter', 'by', 'his', 'own', 'loving.', '', '*****', '', 'Work', 'is', 'love', 'made', 'visible.', '', 'And', 'if', 'you', 'cannot', 'work', 'with', 'love', 'but', 'only', 'with', 'distaste,', 'it', 'is', 'better', 'that', 'you', 'should', 'leave', 'your', 'work', 'sit', 'at', 'gate', 'of', 'temple', 'take', 'alms', 'of', 'those', 'who', 'work', 'with', 'joy.', '', 'For', 'if', 'you', 'bake', 'bread', 'with', 'indifference,', 'you', 'bake', 'bitter', 'bread', 'that', 'feeds', 'but', 'half', 'man’s', 'hunger.', '', 'And', 'if', 'you', 'grudge', 'crushing', 'of', 'grapes,', 'your', 'grudge', 'distils', 'poison', 'in', 'wine.', '', 'if', 'you', 'sing', 'though', 'as', 'angels,', 'love', 'not', 'singing,', 'you', 'muffle', 'man’s', 'ears', 'to', 'voices', 'of', 'day', 'voices', 'of', 'night.', '', '*****', '*****', '', '', 'woman', 'said,', 'Speak', 'to', 'us', 'of', '_Joy', 'Sorrow_.', '', 'And', 'he', 'answered:', '', 'Your', 'joy', 'is', 'your', 'sorrow', 'unmasked.', '', 'And', 'selfsame', 'well', 'from', 'which', 'your', 'laughter', 'rises', 'was', 'oftentimes', 'filled', 'with', 'your', 'tears.', '', 'And', 'how', 'else', 'can', 'it', 'be?', '', 'The', 'deeper', 'that', 'sorrow', 'carves', 'into', 'your', 'being,', 'more', 'joy', 'you', 'can', 'contain.', '', 'Is', 'not', 'cup', 'that', 'holds', 'your', 'wine', 'very', 'cup', 'that', 'was', 'burned', 'in', 'potter’s', 'oven?', '', 'And', 'is', 'not', 'lute', 'that', 'soothes', 'your', 'spirit,', 'very', 'wood', 'that', 'was', 'hollowed', 'with', 'knives?', '', 'When', 'you', 'are', 'joyous,', 'look', 'deep', 'into', 'your', 'heart', 'you', 'shall', 'find', 'it', 'is', 'only', 'that', 'which', 'has', 'given', 'you', 'sorrow', 'that', 'is', 'giving', 'you', 'joy.', '', 'When', 'you', 'are', 'sorrowful', 'look', 'again', 'in', '', 'heart,', 'you', 'shall', 'see', 'that', 'in', 'truth', 'you', 'are', 'weeping', 'for', 'that', 'which', 'has', 'been', 'your', 'delight.', '', '*****', '', 'Some', 'of', 'you', 'say,', '“Joy', 'is', 'greater', 'than', 'sorrow,”', 'others', 'say,', '“Nay,', 'sorrow', 'is', 'greater.”', '', 'But', 'I', 'say', 'unto', 'you,', 'they', 'are', 'inseparable.', '', 'Together', 'they', 'come,', 'when', 'one', 'sits', 'alone', 'with', 'you', 'at', 'your', 'board,', 'remember', 'that', 'other', 'is', 'asleep', 'upon', 'your', 'bed.', '', 'Verily', 'you', 'are', 'suspended', 'like', 'scales', 'between', 'your', 'sorrow', 'your', 'joy.', '', 'Only', 'when', 'you', 'are', 'empty', 'are', 'you', 'at', 'standstill', 'balanced.', '', 'When', 'treasure-keeper', 'lifts', 'you', 'to', 'weigh', 'his', 'gold', 'his', 'silver,', 'needs', 'must', 'your', 'joy', 'or', 'your', 'sorrow', 'rise', 'or', 'fall.', '', '*****', '*****', '', '', 'mason', 'came', 'forth', 'said,', 'Speak', 'to', 'us', 'of', '_Houses_.', '', 'And', 'he', 'answered', 'said:', '', 'Build', 'of', 'your', 'imaginings', 'bower', 'in', 'wilderness', 'ere', 'you', 'build', 'house', 'within', 'city', 'walls.', '', 'For', 'even', 'as', 'you', 'have', 'home-comings', 'in', 'your', 'twilight,', 'so', 'has', 'wanderer', 'in', 'you,', 'ever', 'distant', 'alone.', '', 'Your', 'house', 'is', 'your', 'larger', 'body.', '', 'It', 'grows', 'in', 'sun', 'sleeps', 'in', 'stillness', 'of', 'night;', 'it', 'is', 'not', 'dreamless.', 'Does', 'not', 'your', 'house', 'dream?', 'dreaming,', 'leave', 'city', 'for', 'grove', 'or', 'hilltop?', '', 'Would', 'that', 'I', 'could', 'gather', 'your', 'houses', 'into', 'my', 'hand,', 'like', 'sower', 'scatter', 'them', 'in', 'forest', 'meadow.', '', 'Would', 'valleys', 'were', 'your', 'streets,', 'green', 'paths', 'your', 'alleys,', 'that', 'you', '', 'seek', 'one', 'another', 'through', 'vineyards,', 'come', 'with', 'fragrance', 'of', 'earth', 'in', 'your', 'garments.', '', 'But', 'these', 'things', 'are', 'not', 'yet', 'to', 'be.', '', 'In', 'their', 'fear', 'your', 'forefathers', 'gathered', 'you', 'too', 'near', 'together.', 'And', 'that', 'fear', 'shall', 'endure', 'little', 'longer.', 'A', 'little', 'longer', 'shall', 'your', 'city', 'walls', 'separate', 'your', 'hearths', 'from', 'your', 'fields.', '', '*****', '', 'And', 'tell', 'me,', 'people', 'of', 'Orphalese,', 'what', 'have', 'you', 'in', 'these', 'houses?', 'And', 'what', 'is', 'it', 'you', 'guard', 'with', 'fastened', 'doors?', '', 'Have', 'you', 'peace,', 'quiet', 'urge', 'that', 'reveals', 'your', 'power?', '', 'Have', 'you', 'remembrances,', 'glimmering', 'arches', 'that', 'span', 'summits', 'of', 'mind?', '', 'Have', 'you', 'beauty,', 'that', 'leads', 'heart', 'from', 'things', 'fashioned', 'of', 'wood', 'stone', 'to', 'holy', 'mountain?', '', 'Tell', 'me,', 'have', 'you', 'these', 'in', 'your', 'houses?', '', 'Or', 'have', 'you', 'only', 'comfort,', 'lust', 'for', 'comfort,', 'that', 'stealthy', 'thing', 'that', '', 'house', 'guest,', 'then', 'becomes', 'host,', 'then', 'master?', '', '*****', '', 'Ay,', 'it', 'becomes', 'tamer,', 'with', 'hook', 'scourge', 'makes', 'puppets', 'of', 'your', 'larger', 'desires.', '', 'Though', 'its', 'hands', 'are', 'silken,', 'its', 'heart', 'is', 'of', 'iron.', '', 'It', 'lulls', 'you', 'to', 'sleep', 'only', 'to', 'stand', 'by', 'your', 'bed', 'jeer', 'at', 'dignity', 'of', 'flesh.', '', 'It', 'makes', 'mock', 'of', 'your', 'sound', 'senses,', 'lays', 'them', 'in', 'thistledown', 'like', 'fragile', 'vessels.', '', 'Verily', 'lust', 'for', 'comfort', 'murders', 'passion', 'of', 'soul,', 'then', 'walks', 'grinning', 'in', 'funeral.', '', 'But', 'you,', 'children', 'of', 'space,', 'you', 'restless', 'in', 'rest,', 'you', 'shall', 'not', 'be', 'trapped', 'nor', 'tamed.', '', 'Your', 'house', 'shall', 'be', 'not', 'anchor', 'but', 'mast.', '', 'It', 'shall', 'not', 'be', 'glistening', 'film', 'that', '', 'wound,', 'but', 'eyelid', 'that', 'guards', 'eye.', '', 'You', 'shall', 'not', 'fold', 'your', 'wings', 'that', 'you', 'may', 'pass', 'through', 'doors,', 'nor', 'bend', 'your', 'heads', 'that', 'they', 'strike', 'not', 'against', 'ceiling,', 'nor', 'fear', 'to', 'breathe', 'lest', 'walls', 'should', 'crack', 'fall', 'down.', '', 'You', 'shall', 'not', 'dwell', 'in', 'tombs', 'made', 'by', 'dead', 'for', 'living.', '', 'And', 'though', 'of', 'magnificence', 'splendour,', 'your', 'house', 'shall', 'not', 'hold', 'your', 'secret', 'nor', 'shelter', 'your', 'longing.', '', 'For', 'that', 'which', 'is', 'boundless', 'in', 'you', 'abides', 'in', 'mansion', 'of', 'sky,', 'whose', 'door', 'is', 'morning', 'mist,', 'whose', 'windows', 'are', 'songs', 'silences', 'of', 'night.', '', '*****', '*****', '', '', 'weaver', 'said,', 'Speak', 'to', 'us', 'of', '_Clothes_.', '', 'And', 'he', 'answered:', '', 'Your', 'clothes', 'conceal', 'much', 'of', 'your', 'beauty,', 'yet', 'they', 'hide', 'not', 'unbeautiful.', '', 'And', 'though', 'you', 'seek', 'in', 'garments', 'freedom', 'of', 'privacy', 'you', 'may', 'find', 'in', 'them', 'harness', 'chain.', '', 'Would', 'that', 'you', 'could', 'meet', 'sun', 'wind', 'with', 'more', 'of', 'your', 'skin', 'less', 'of', 'your', 'raiment,', '', 'For', 'breath', 'of', 'life', 'is', 'in', 'sunlight', 'hand', 'of', 'life', 'is', 'in', 'wind.', '', 'Some', 'of', 'you', 'say,', '“It', 'is', 'north', 'wind', 'who', 'has', 'woven', 'clothes', 'we', 'wear.”', '', 'And', 'I', 'say,', 'Ay,', 'it', 'was', 'north', 'wind,', '', 'But', 'shame', 'was', 'his', 'loom,', 'softening', 'of', 'sinews', 'was', 'his', 'thread.', '', 'And', 'when', 'his', 'work', 'was', 'done', 'he', 'laughed', 'in', 'forest.', '', 'not', 'that', 'modesty', 'is', 'for', 'shield', 'against', 'eye', 'of', 'unclean.', '', 'And', 'when', 'unclean', 'shall', 'be', 'no', 'more,', 'what', 'were', 'modesty', 'but', 'fetter', 'fouling', 'of', 'mind?', '', 'And', 'forget', 'not', 'that', 'earth', 'delights', 'to', 'feel', 'your', 'bare', 'feet', 'winds', 'long', 'to', 'play', 'with', 'your', 'hair.', '', '*****', '*****', '', '', 'merchant', 'said,', 'Speak', 'to', 'us', 'of', '_Buying', 'Selling_.', '', 'And', 'he', 'answered', 'said:', '', 'To', 'you', 'earth', 'yields', 'her', 'fruit,', 'you', 'shall', 'not', 'want', 'if', 'you', 'but', 'know', 'how', 'to', 'fill', 'your', 'hands.', '', 'It', 'is', 'in', 'exchanging', 'gifts', 'of', 'earth', 'that', 'you', 'shall', 'find', 'abundance', 'be', 'satisfied.', '', 'Yet', 'unless', 'exchange', 'be', 'in', 'love', 'kindly', 'justice,', 'it', 'will', 'but', 'lead', 'some', 'to', 'greed', 'others', 'to', 'hunger.', '', 'When', 'in', 'market', 'place', 'you', 'toilers', 'of', 'sea', 'fields', 'vineyards', 'meet', 'weavers', 'potters', 'gatherers', 'of', 'spices,--', '', 'Invoke', 'then', 'master', 'spirit', 'of', 'earth,', 'to', 'come', 'into', 'your', 'midst', 'sanctify', 'scales', 'reckoning', 'that', 'weighs', 'value', 'against', 'value.', '', 'not', 'barren-handed', 'to', 'take', 'part', 'in', 'your', 'transactions,', 'who', 'would', 'sell', 'their', 'words', 'for', 'your', 'labour.', '', 'To', 'such', 'men', 'you', 'should', 'say,', '', '“Come', 'with', 'us', 'to', 'field,', 'or', 'go', 'with', 'our', 'brothers', 'to', 'sea', 'cast', 'your', 'net;', '', 'For', 'land', 'sea', 'shall', 'be', 'bountiful', 'to', 'you', 'even', 'as', 'to', 'us.”', '', '*****', '', 'And', 'if', 'there', 'come', 'singers', 'dancers', 'flute', 'players,--buy', 'of', 'their', 'gifts', 'also.', '', 'For', 'they', 'too', 'are', 'gatherers', 'of', 'fruit', 'frankincense,', 'that', 'which', 'they', 'bring,', 'though', 'fashioned', 'of', 'dreams,', 'is', 'raiment', 'food', 'for', 'your', 'soul.', '', 'And', 'before', 'you', 'leave', 'market', 'place,', 'see', 'that', 'no', 'one', 'has', 'gone', 'his', 'way', 'with', 'empty', 'hands.', '', 'For', 'master', 'spirit', 'of', 'earth', 'shall', 'not', 'sleep', 'peacefully', 'upon', 'wind', 'till', 'needs', 'of', 'least', 'of', 'you', 'are', 'satisfied.', '', '*****', '*****', '', '', 'one', 'of', 'judges', 'of', 'city', 'stood', 'forth', 'said,', 'Speak', 'to', 'us', 'of', '_Crime', 'Punishment_.', '', 'And', 'he', 'answered,', 'saying:', '', 'It', 'is', 'when', 'your', 'spirit', 'goes', 'wandering', 'upon', 'wind,', '', 'That', 'you,', 'alone', 'unguarded,', 'commit', 'wrong', 'unto', 'others', 'therefore', 'unto', 'yourself.', '', 'And', 'for', 'that', 'wrong', 'committed', 'must', 'you', 'knock', 'wait', 'while', 'unheeded', 'at', 'gate', 'of', 'blessed.', '', 'Like', 'ocean', 'is', 'your', 'god-self;', '', 'It', 'remains', 'for', 'ever', 'undefiled.', '', 'And', 'like', 'ether', 'it', 'lifts', 'but', 'winged.', '', 'Even', 'like', 'sun', 'is', 'your', 'god-self;', '', 'It', 'knows', 'not', 'ways', 'of', 'mole', 'nor', 'seeks', 'it', 'holes', 'of', 'serpent.', '', 'your', 'god-self', 'dwells', 'not', 'alone', 'in', 'your', 'being.', '', 'Much', 'in', 'you', 'is', 'still', 'man,', 'much', 'in', 'you', 'is', 'not', 'yet', 'man,', '', 'But', 'shapeless', 'pigmy', 'that', 'walks', 'asleep', 'in', 'mist', 'searching', 'for', 'its', 'own', 'awakening.', '', 'And', 'of', 'man', 'in', 'you', 'would', 'I', 'now', 'speak.', '', 'For', 'it', 'is', 'he', 'not', 'your', 'god-self', 'nor', 'pigmy', 'in', 'mist,', 'that', 'knows', 'crime', 'punishment', 'of', 'crime.', '', '*****', '', 'Oftentimes', 'have', 'I', 'heard', 'you', 'speak', 'of', 'one', 'who', 'commits', 'wrong', 'as', 'though', 'he', 'were', 'not', 'one', 'of', 'you,', 'but', 'stranger', 'unto', 'you', 'intruder', 'upon', 'your', 'world.', '', 'But', 'I', 'say', 'that', 'even', 'as', 'holy', 'righteous', 'cannot', 'rise', 'beyond', 'highest', 'which', 'is', 'in', 'each', 'one', 'of', 'you,', '', 'So', 'wicked', 'weak', 'cannot', 'fall', 'lower', 'than', 'lowest', 'which', 'is', 'in', 'you', 'also.', '', 'And', 'as', 'single', 'leaf', 'turns', 'not', 'yellow', 'but', 'with', 'silent', 'knowledge', 'of', 'whole', 'tree,', '', 'wrong-doer', 'cannot', 'do', 'wrong', 'without', 'hidden', 'will', 'of', 'you', 'all.', '', 'Like', 'procession', 'you', 'walk', 'together', 'towards', 'your', 'god-self.', '', '[Illustration:', '0064]', '', 'You', 'are', 'way', 'wayfarers.', '', 'And', 'when', 'one', 'of', 'you', 'falls', 'down', 'he', 'falls', 'for', 'those', 'behind', 'him,', 'caution', 'against', 'stumbling', 'stone.', '', 'Ay,', 'he', 'falls', 'for', 'those', 'ahead', 'of', 'him,', 'who', 'though', 'faster', 'surer', 'of', 'foot,', 'yet', 'removed', 'not', 'stumbling', 'stone.', '', 'And', 'this', 'also,', 'though', 'word', 'lie', 'heavy', 'upon', 'your', 'hearts:', '', 'The', 'murdered', 'is', 'not', 'unaccountable', 'for', 'his', 'own', 'murder,', '', 'And', 'robbed', 'is', 'not', 'blameless', 'in', 'being', 'robbed.', '', 'The', 'righteous', 'is', 'not', 'innocent', 'of', 'deeds', 'of', 'wicked,', '', 'And', 'white-handed', 'is', 'not', 'clean', 'in', 'doings', 'of', 'felon.', '', 'Yea,', 'guilty', 'is', 'oftentimes', 'victim', 'of', 'injured,', '', 'And', 'still', 'more', 'often', 'condemned', 'is', '', 'burden', 'bearer', 'for', 'guiltless', 'unblamed.', '', 'You', 'cannot', 'separate', 'just', 'from', 'unjust', 'good', 'from', 'wicked;', '', 'For', 'they', 'stand', 'together', 'before', 'face', 'of', 'sun', 'even', 'as', 'black', 'thread', 'white', 'are', 'woven', 'together.', '', 'And', 'when', 'black', 'thread', 'breaks,', 'weaver', 'shall', 'look', 'into', 'whole', 'cloth,', 'he', 'shall', 'examine', 'loom', 'also.', '', '*****', '', 'If', 'any', 'of', 'you', 'would', 'bring', 'to', 'judgment', 'unfaithful', 'wife,', '', 'Let', 'him', 'also', 'weigh', 'heart', 'of', 'her', 'husband', 'in', 'scales,', 'measure', 'his', 'soul', 'with', 'measurements.', '', 'And', 'let', 'him', 'who', 'would', 'lash', 'offender', 'look', 'unto', 'spirit', 'of', 'offended.', '', 'And', 'if', 'any', 'of', 'you', 'would', 'punish', 'in', 'name', 'of', 'righteousness', 'lay', 'ax', 'unto', 'evil', 'tree,', 'let', 'him', 'see', 'to', 'its', 'roots;', '', 'And', 'verily', 'he', 'will', 'find', 'roots', 'of', 'good', 'bad,', 'fruitful', '', 'all', 'entwined', 'together', 'in', 'silent', 'heart', 'of', 'earth.', '', 'And', 'you', 'judges', 'who', 'would', 'be', 'just,', '', 'What', 'judgment', 'pronounce', 'you', 'upon', 'him', 'who', 'though', 'honest', 'in', 'flesh', 'yet', 'is', 'thief', 'in', 'spirit?', '', 'What', 'penalty', 'lay', 'you', 'upon', 'him', 'who', 'slays', 'in', 'flesh', 'yet', 'is', 'himself', 'slain', 'in', 'spirit?', '', 'And', 'how', 'prosecute', 'you', 'him', 'who', 'in', 'action', 'is', 'deceiver', 'oppressor,', '', 'Yet', 'who', 'also', 'is', 'aggrieved', 'outraged?', '', '*****', '', 'And', 'how', 'shall', 'you', 'punish', 'those', 'whose', 'remorse', 'is', 'already', 'greater', 'than', 'their', 'misdeeds?', '', 'Is', 'not', 'remorse', 'justice', 'which', 'is', 'administered', 'by', 'that', 'very', 'law', 'which', 'you', 'would', 'fain', 'serve?', '', 'Yet', 'you', 'cannot', 'lay', 'remorse', 'upon', 'innocent', 'nor', 'lift', 'it', 'from', 'heart', 'of', 'guilty.', '', 'Unbidden', 'shall', 'it', 'call', 'in', 'night,', 'that', 'men', 'may', 'wake', 'gaze', 'upon', 'themselves.', '', 'you', 'who', 'would', 'understand', 'justice,', 'how', 'shall', 'you', 'unless', 'you', 'look', 'upon', 'all', 'deeds', 'in', 'fullness', 'of', 'light?', '', 'Only', 'then', 'shall', 'you', 'know', 'that', 'erect', 'fallen', 'are', 'but', 'one', 'man', 'standing', 'in', 'twilight', 'between', 'night', 'of', 'his', 'pigmy-self', 'day', 'of', 'his', 'god-self,', 'And', 'that', 'corner-stone', 'of', 'temple', 'is', 'not', 'higher', 'than', 'lowest', 'stone', 'in', 'its', 'foundation.', '', '*****', '*****', '', '', 'lawyer', 'said,', 'But', 'what', 'of', 'our', '_Laws_,', 'master?', '', 'And', 'he', 'answered:', '', 'You', 'delight', 'in', 'laying', 'down', 'laws,', '', 'Yet', 'you', 'delight', 'more', 'in', 'breaking', 'them.', '', 'Like', 'children', 'playing', 'by', 'ocean', 'who', 'build', 'sand-towers', 'with', 'constancy', 'then', 'destroy', 'them', 'with', 'laughter.', '', 'But', 'while', 'you', 'build', 'your', 'sand-towers', 'ocean', 'brings', 'more', 'sand', 'to', 'shore,', '', 'And', 'when', 'you', 'destroy', 'them', 'ocean', 'laughs', 'with', 'you.', '', 'Verily', 'ocean', 'laughs', 'always', 'with', 'innocent.', '', 'But', 'what', 'of', 'those', 'to', 'whom', 'life', 'is', 'not', 'ocean,', 'man-made', 'laws', 'are', 'not', 'sand-towers,', '', 'But', 'to', 'whom', 'life', 'is', 'rock,', 'law', 'chisel', 'with', 'which', 'they', 'would', 'carve', 'it', 'in', 'their', 'own', 'likeness?', '', 'of', 'cripple', 'who', 'hates', 'dancers?', '', 'What', 'of', 'ox', 'who', 'loves', 'his', 'yoke', 'deems', 'elk', 'deer', 'of', 'forest', 'stray', 'vagrant', 'things?', '', 'What', 'of', 'old', 'serpent', 'who', 'cannot', 'shed', 'his', 'skin,', 'calls', 'all', 'others', 'naked', 'shameless?', '', 'And', 'of', 'him', 'who', 'comes', 'early', 'to', 'wedding-feast,', 'when', 'over-fed', 'tired', 'goes', 'his', 'way', 'saying', 'that', 'all', 'feasts', 'are', 'violation', 'all', 'feasters', 'lawbreakers?', '', '*****', '', 'What', 'shall', 'I', 'say', 'of', 'these', 'save', 'that', 'they', 'too', 'stand', 'in', 'sunlight,', 'but', 'with', 'their', 'backs', 'to', 'sun?', '', 'They', 'see', 'only', 'their', 'shadows,', 'their', 'shadows', 'are', 'their', 'laws.', '', 'And', 'what', 'is', 'sun', 'to', 'them', 'but', 'caster', 'of', 'shadows?', '', 'And', 'what', 'is', 'it', 'to', 'acknowledge', 'laws', 'but', 'to', 'stoop', 'down', 'trace', 'their', 'shadows', 'upon', 'earth?', '', 'But', 'you', 'who', 'walk', 'facing', 'sun,', 'what', '', 'drawn', 'on', 'earth', 'can', 'hold', 'you?', '', 'You', 'who', 'travel', 'with', 'wind,', 'what', 'weather-vane', 'shall', 'direct', 'your', 'course?', '', 'What', 'man’s', 'law', 'shall', 'bind', 'you', 'if', 'you', 'break', 'your', 'yoke', 'but', 'upon', 'no', 'man’s', 'prison', 'door?', '', 'What', 'laws', 'shall', 'you', 'fear', 'if', 'you', 'dance', 'but', 'stumble', 'against', 'no', 'man’s', 'iron', 'chains?', '', 'And', 'who', 'is', 'he', 'that', 'shall', 'bring', 'you', 'to', 'judgment', 'if', 'you', 'tear', 'off', 'your', 'garment', 'yet', 'leave', 'it', 'in', 'no', 'man’s', 'path?', '', '*****', '', 'People', 'of', 'Orphalese,', 'you', 'can', 'muffle', 'drum,', 'you', 'can', 'loosen', 'strings', 'of', 'lyre,', 'but', 'who', 'shall', 'command', 'skylark', 'not', 'to', 'sing?', '', '*****', '*****', '', '', 'orator', 'said,', 'Speak', 'to', 'us', 'of', '_Freedom_.', '', 'And', 'he', 'answered:', '', 'At', 'city', 'gate', 'by', 'your', 'fireside', 'I', 'have', 'seen', 'you', 'prostrate', 'yourself', 'worship', 'your', 'own', 'freedom,', '', 'Even', 'as', 'slaves', 'humble', 'themselves', 'before', 'tyrant', 'praise', 'him', 'though', 'he', 'slays', 'them.', '', 'Ay,', 'in', 'grove', 'of', 'temple', 'in', 'shadow', 'of', 'citadel', 'I', 'have', 'seen', 'freest', 'among', 'you', 'wear', 'their', 'freedom', 'as', 'yoke', 'handcuff.', '', 'And', 'my', 'heart', 'bled', 'within', 'me;', 'for', 'you', 'can', 'only', 'be', 'free', 'when', 'even', 'desire', 'of', 'seeking', 'freedom', 'becomes', 'harness', 'to', 'you,', 'when', 'you', 'cease', 'to', 'speak', 'of', 'freedom', 'as', 'goal', 'fulfilment.', '', 'You', 'shall', 'be', 'free', 'indeed', 'when', 'your', 'days', 'are', 'not', 'without', 'care', 'nor', 'your', '', 'without', 'want', 'grief,', '', 'But', 'rather', 'when', 'these', 'things', 'girdle', 'your', 'life', 'yet', 'you', 'rise', 'above', 'them', 'naked', 'unbound.', '', '*****', '', 'And', 'how', 'shall', 'you', 'rise', 'beyond', 'your', 'days', 'nights', 'unless', 'you', 'break', 'chains', 'which', 'you', 'at', 'dawn', 'of', 'your', 'understanding', 'have', 'fastened', 'around', 'your', 'noon', 'hour?', '', 'In', 'truth', 'that', 'which', 'you', 'call', 'freedom', 'is', 'strongest', 'of', 'these', 'chains,', 'though', 'its', 'links', 'glitter', 'in', 'sun', 'dazzle', 'your', 'eyes.', '', 'And', 'what', 'is', 'it', 'but', 'fragments', 'of', 'your', 'own', 'self', 'you', 'would', 'discard', 'that', 'you', 'may', 'become', 'free?', '', 'If', 'it', 'is', 'unjust', 'law', 'you', 'would', 'abolish,', 'that', 'law', 'was', 'written', 'with', 'your', 'own', 'hand', 'upon', 'your', 'own', 'forehead.', '', 'You', 'cannot', 'erase', 'it', 'by', 'burning', 'your', 'law', 'books', 'nor', 'by', 'washing', 'foreheads', 'of', 'your', 'judges,', 'though', 'you', 'pour', 'sea', 'upon', 'them.', '', 'And', 'if', 'it', 'is', 'despot', 'you', 'would', '', 'see', 'first', 'that', 'his', 'throne', 'erected', 'within', 'you', 'is', 'destroyed.', '', 'For', 'how', 'can', 'tyrant', 'rule', 'free', 'proud,', 'but', 'for', 'tyranny', 'in', 'their', 'own', 'freedom', 'shame', 'in', 'their', 'own', 'pride?', '', 'And', 'if', 'it', 'is', 'care', 'you', 'would', 'cast', 'off,', 'that', 'cart', 'has', 'been', 'chosen', 'by', 'you', 'rather', 'than', 'imposed', 'upon', 'you.', '', 'And', 'if', 'it', 'is', 'fear', 'you', 'would', 'dispel,', 'seat', 'of', 'that', 'fear', 'is', 'in', 'your', 'heart', 'not', 'in', 'hand', 'of', 'feared.', '', '*****', '', 'Verily', 'all', 'things', 'move', 'within', 'your', 'being', 'in', 'constant', 'half', 'embrace,', 'desired', 'dreaded,', 'repugnant', 'cherished,', 'pursued', 'that', 'which', 'you', 'would', 'escape.', '', 'These', 'things', 'move', 'within', 'you', 'as', 'lights', 'shadows', 'in', 'pairs', 'that', 'cling.', '', 'And', 'when', 'shadow', 'fades', 'is', 'no', 'more,', 'light', 'that', 'lingers', 'becomes', 'shadow', 'to', 'another', 'light.', '', 'And', 'thus', 'your', 'freedom', 'when', 'it', 'loses', 'its', 'fetters', 'becomes', 'itself', 'fetter', 'of', 'greater', 'freedom.', '', '*****', '*****', '', '', 'priestess', 'spoke', 'again', 'said:', 'Speak', 'to', 'us', 'of', '_Reason', 'Passion_.', '', 'And', 'he', 'answered,', 'saying:', '', 'Your', 'soul', 'is', 'oftentimes', 'battlefield,', 'upon', 'which', 'your', 'reason', 'your', 'judgment', 'wage', 'war', 'against', 'your', 'passion', 'your', 'appetite.', '', 'Would', 'that', 'I', 'could', 'be', 'peacemaker', 'in', 'your', 'soul,', 'that', 'I', 'might', 'turn', 'discord', 'rivalry', 'of', 'your', 'elements', 'into', 'oneness', 'melody.', '', 'But', 'how', 'shall', 'I,', 'unless', 'you', 'yourselves', 'be', 'also', 'peacemakers,', 'nay,', 'lovers', 'of', 'all', 'your', 'elements?', '', 'Your', 'reason', 'your', 'passion', 'are', 'rudder', 'sails', 'of', 'your', 'seafaring', 'soul.', '', 'If', 'either', 'your', 'sails', 'or', 'your', 'rudder', 'be', 'broken,', 'you', 'can', 'but', 'toss', 'drift,', 'or', 'else', 'be', 'held', 'at', 'standstill', 'in', 'mid-seas.', '', 'reason,', 'ruling', 'alone,', 'is', 'force', 'confining;', 'passion,', 'unattended,', 'is', 'flame', 'that', 'burns', 'to', 'its', 'own', 'destruction.', '', 'Therefore', 'let', 'your', 'soul', 'exalt', 'your', 'reason', 'to', 'height', 'of', 'passion,', 'that', 'it', 'may', 'sing;', '', 'And', 'let', 'it', 'direct', 'your', 'passion', 'with', 'reason,', 'that', 'your', 'passion', 'may', 'live', 'through', 'its', 'own', 'daily', 'resurrection,', 'like', 'phoenix', 'rise', 'above', 'its', 'own', 'ashes.', '', '*****', '', 'I', 'would', 'have', 'you', 'consider', 'your', 'judgment', 'your', 'appetite', 'even', 'as', 'you', 'would', 'two', 'loved', 'guests', 'in', 'your', 'house.', '', 'Surely', 'you', 'would', 'not', 'honour', 'one', 'guest', 'above', 'other;', 'for', 'he', 'who', 'is', 'more', 'mindful', 'of', 'one', 'loses', 'love', 'faith', 'of', 'both', '', 'Among', 'hills,', 'when', 'you', 'sit', 'in', 'cool', 'shade', 'of', 'white', 'poplars,', 'sharing', 'peace', 'serenity', 'of', 'distant', 'fields', 'meadows--then', 'let', 'your', 'heart', 'say', 'in', 'silence,', '“God', 'rests', 'in', 'reason.”', '', 'And', 'when', 'storm', 'comes,', '', 'wind', 'shakes', 'forest,', 'thunder', 'lightning', 'proclaim', 'majesty', 'of', 'sky,--then', 'let', 'your', 'heart', 'say', 'in', 'awe,', '“God', 'moves', 'in', 'passion.”', '', 'And', 'since', 'you', 'are', 'breath', 'in', 'God’s', 'sphere,', 'leaf', 'in', 'God’s', 'forest,', 'you', 'too', 'should', 'rest', 'in', 'reason', 'move', 'in', 'passion.', '', '*****', '*****', '', '', 'woman', 'spoke,', 'saying,', 'Tell', 'us', 'of', '_Pain_.', '', 'And', 'he', 'said:', '', 'Your', 'pain', 'is', 'breaking', 'of', 'shell', 'that', 'encloses', 'your', 'understanding.', '', 'Even', 'as', 'stone', 'of', 'fruit', 'must', 'break,', 'that', 'its', 'heart', 'may', 'stand', 'in', 'sun,', 'so', 'must', 'you', 'know', 'pain.', '', 'And', 'could', 'you', 'keep', 'your', 'heart', 'in', 'wonder', 'at', 'daily', 'miracles', 'of', 'your', 'life,', 'your', 'pain', 'would', 'not', 'seem', 'less', 'wondrous', 'than', 'your', 'joy;', '', 'And', 'you', 'would', 'accept', 'seasons', 'of', 'your', 'heart,', 'even', 'as', 'you', 'have', 'always', 'accepted', 'seasons', 'that', 'pass', 'over', 'your', 'fields.', '', 'And', 'you', 'would', 'watch', 'with', 'serenity', 'through', 'winters', 'of', 'your', 'grief.', '', 'Much', 'of', 'your', 'pain', 'is', 'self-chosen.', '', 'It', 'is', 'bitter', 'potion', 'by', 'which', 'physician', '', 'you', 'heals', 'your', 'sick', 'self.', '', 'Therefore', 'trust', 'physician,', 'drink', 'his', 'remedy', 'in', 'silence', 'tranquillity:', 'For', 'his', 'hand,', 'though', 'heavy', 'hard,', 'is', 'guided', 'by', 'tender', 'hand', 'of', 'Unseen,', 'And', 'cup', 'he', 'brings,', 'though', 'it', 'burn', 'your', 'lips,', 'has', 'been', 'fashioned', 'of', 'clay', 'which', 'Potter', 'has', 'moistened', 'with', 'His', 'own', 'sacred', 'tears.', '', '*****', '*****', '', '', 'man', 'said,', 'Speak', 'to', 'us', 'of', '_Self-Knowledge_.', '', 'And', 'he', 'answered,', 'saying:', '', 'Your', 'hearts', 'know', 'in', 'silence', 'secrets', 'of', 'days', 'nights.', '', 'But', 'your', 'ears', 'thirst', 'for', 'sound', 'of', 'your', 'heart’s', 'knowledge.', '', 'You', 'would', 'know', 'in', 'words', 'that', 'which', 'you', 'have', 'always', 'known', 'in', 'thought.', '', 'You', 'would', 'touch', 'with', 'your', 'fingers', 'naked', 'body', 'of', 'your', 'dreams.', '', 'And', 'it', 'is', 'well', 'you', 'should.', '', 'The', 'hidden', 'well-spring', 'of', 'your', 'soul', 'must', 'needs', 'rise', 'run', 'murmuring', 'to', 'sea;', '', 'And', 'treasure', 'of', 'your', 'infinite', 'depths', 'would', 'be', 'revealed', 'to', 'your', 'eyes.', '', 'But', 'let', 'there', 'be', 'no', 'scales', 'to', 'weigh', 'your', 'unknown', 'treasure;', '', 'And', 'seek', 'not', 'depths', 'of', 'your', '', 'with', 'staff', 'or', 'sounding', 'line.', '', 'For', 'self', 'is', 'sea', 'boundless', 'measureless.', '', '*****', '', 'Say', 'not,', '“I', 'have', 'found', 'truth,”', 'but', 'rather,', '“I', 'have', 'found', 'truth.”', '', 'Say', 'not,', '“I', 'have', 'found', 'path', 'of', 'soul.”', 'Say', 'rather,', '“I', 'have', 'met', 'soul', 'walking', 'upon', 'my', 'path.”', '', 'For', 'soul', 'walks', 'upon', 'all', 'paths.', '', 'The', 'soul', 'walks', 'not', 'upon', 'line,', 'neither', 'does', 'it', 'grow', 'like', 'reed.', '', 'The', 'soul', 'unfolds', 'itself,', 'like', 'lotus', 'of', 'countless', 'petals.', '', '[Illustration:', '0083]', '', '*****', '*****', '', '', 'said', 'teacher,', 'Speak', 'to', 'us', 'of', '_Teaching_.', '', 'And', 'he', 'said:', '', '“No', 'man', 'can', 'reveal', 'to', 'you', 'aught', 'but', 'that', 'which', 'already', 'lies', 'half', 'asleep', 'in', 'dawning', 'of', 'your', 'knowledge.', '', 'The', 'teacher', 'who', 'walks', 'in', 'shadow', 'of', 'temple,', 'among', 'his', 'followers,', 'gives', 'not', 'of', 'his', 'wisdom', 'but', 'rather', 'of', 'his', 'faith', 'his', 'lovingness.', '', 'If', 'he', 'is', 'indeed', 'wise', 'he', 'does', 'not', 'bid', 'you', 'enter', 'house', 'of', 'his', 'wisdom,', 'but', 'rather', 'leads', 'you', 'to', 'threshold', 'of', 'your', 'own', 'mind.', '', 'The', 'astronomer', 'may', 'speak', 'to', 'you', 'of', 'his', 'understanding', 'of', 'space,', 'but', 'he', 'cannot', 'give', 'you', 'his', 'understanding.', '', 'The', 'musician', 'may', 'sing', 'to', 'you', 'of', 'rhythm', 'which', 'is', 'in', 'all', 'space,', 'but', 'he', 'cannot', 'give', 'you', 'ear', 'which', 'arrests', 'rhythm', 'nor', 'voice', 'that', 'echoes', 'it.', '', 'he', 'who', 'is', 'versed', 'in', 'science', 'of', 'numbers', 'can', 'tell', 'of', 'regions', 'of', 'weight', 'measure,', 'but', 'he', 'cannot', 'conduct', 'you', 'thither.', '', 'For', 'vision', 'of', 'one', 'man', 'lends', 'not', 'its', 'wings', 'to', 'another', 'man.', '', 'And', 'even', 'as', 'each', 'one', 'of', 'you', 'stands', 'alone', 'in', 'God’s', 'knowledge,', 'so', 'must', 'each', 'one', 'of', 'you', 'be', 'alone', 'in', 'his', 'knowledge', 'of', 'God', 'in', 'his', 'understanding', 'of', 'earth.', '', '*****', '*****', '', '', 'youth', 'said,', 'Speak', 'to', 'us', 'of', '_Friendship_.', '', 'And', 'he', 'answered,', 'saying:', '', 'Your', 'friend', 'is', 'your', 'needs', 'answered.', '', 'He', 'is', 'your', 'field', 'which', 'you', 'sow', 'with', 'love', 'reap', 'with', 'thanksgiving.', '', 'And', 'he', 'is', 'your', 'board', 'your', 'fireside.', '', 'For', 'you', 'come', 'to', 'him', 'with', 'your', 'hunger,', 'you', 'seek', 'him', 'for', 'peace.', '', 'When', 'your', 'friend', 'speaks', 'his', 'mind', 'you', 'fear', 'not', '“nay”', 'in', 'your', 'own', 'mind,', 'nor', 'do', 'you', 'withhold', '“ay.”', '', 'And', 'when', 'he', 'is', 'silent', 'your', 'heart', 'ceases', 'not', 'to', 'listen', 'to', 'his', 'heart;', '', 'For', 'without', 'words,', 'in', 'friendship,', 'all', 'thoughts,', 'all', 'desires,', 'all', 'expectations', 'are', 'born', 'shared,', 'with', 'joy', 'that', 'is', 'unacclaimed.', '', 'When', 'you', 'part', 'from', 'your', 'friend,', 'you', 'grieve', 'not;', '', 'For', 'that', 'which', 'you', 'love', 'most', 'in', 'him', 'may', 'be', 'clearer', 'in', 'his', 'absence,', 'as', 'mountain', 'to', 'climber', 'is', 'clearer', 'from', 'plain.', '', 'let', 'there', 'be', 'no', 'purpose', 'in', 'friendship', 'save', 'deepening', 'of', 'spirit.', '', 'For', 'love', 'that', 'seeks', 'aught', 'but', 'disclosure', 'of', 'its', 'own', 'mystery', 'is', 'not', 'love', 'but', 'net', 'cast', 'forth:', 'only', 'unprofitable', 'is', 'caught.', '', '*****', '', 'And', 'let', 'your', 'best', 'be', 'for', 'your', 'friend.', '', 'If', 'he', 'must', 'know', 'ebb', 'of', 'your', 'tide,', 'let', 'him', 'know', 'its', 'flood', 'also.', '', 'For', 'what', 'is', 'your', 'friend', 'that', 'you', 'should', 'seek', 'him', 'with', 'hours', 'to', 'kill?', '', 'Seek', 'him', 'always', 'with', 'hours', 'to', 'live.', '', 'For', 'it', 'is', 'his', 'to', 'fill', 'your', 'need,', 'but', 'not', 'your', 'emptiness.', '', 'And', 'in', 'sweetness', 'of', 'friendship', 'let', 'there', 'be', 'laughter,', 'sharing', 'of', 'pleasures.', '', 'For', 'in', 'dew', 'of', 'little', 'things', 'heart', 'finds', 'its', 'morning', 'is', 'refreshed.', '', '*****', '*****', '', '', 'then', 'scholar', 'said,', 'Speak', 'of', '_Talking_.', '', 'And', 'he', 'answered,', 'saying:', '', 'You', 'talk', 'when', 'you', 'cease', 'to', 'be', 'at', 'peace', 'with', 'your', 'thoughts;', '', 'And', 'when', 'you', 'can', 'no', 'longer', 'dwell', 'in', 'solitude', 'of', 'your', 'heart', 'you', 'live', 'in', 'your', 'lips,', 'sound', 'is', 'diversion', 'pastime.', '', 'And', 'in', 'much', 'of', 'your', 'talking,', 'thinking', 'is', 'half', 'murdered.', '', 'For', 'thought', 'is', 'bird', 'of', 'space,', 'that', 'in', 'cage', 'of', 'words', 'may', 'indeed', 'unfold', 'its', 'wings', 'but', 'cannot', 'fly.', '', 'There', 'are', 'those', 'among', 'you', 'who', 'seek', 'talkative', 'through', 'fear', 'of', 'being', 'alone.', '', 'The', 'silence', 'of', 'aloneness', 'reveals', 'to', 'their', 'eyes', 'their', 'naked', 'selves', 'they', 'would', 'escape.', '', 'And', 'there', 'are', 'those', 'who', 'talk,', '', 'knowledge', 'or', 'forethought', 'reveal', 'truth', 'which', 'they', 'themselves', 'do', 'not', 'understand.', '', 'And', 'there', 'are', 'those', 'who', 'have', 'truth', 'within', 'them,', 'but', 'they', 'tell', 'it', 'not', 'in', 'words.', '', 'In', 'bosom', 'of', 'such', 'as', 'these', 'spirit', 'dwells', 'in', 'rhythmic', 'silence.', '', '*****', '', 'When', 'you', 'meet', 'your', 'friend', 'on', 'roadside', 'or', 'in', 'market', 'place,', 'let', 'spirit', 'in', 'you', 'move', 'your', 'lips', 'direct', 'your', 'tongue.', '', 'Let', 'voice', 'within', 'your', 'voice', 'speak', 'to', 'ear', 'of', 'his', 'ear;', '', 'For', 'his', 'soul', 'will', 'keep', 'truth', 'of', 'your', 'heart', 'as', 'taste', 'of', 'wine', 'is', 'remembered', '', 'When', 'colour', 'is', 'forgotten', 'vessel', 'is', 'no', 'more.', '', '*****', '*****', '', '', 'astronomer', 'said,', 'Master,', 'what', 'of', '_Time_?', '', 'And', 'he', 'answered:', '', 'You', 'would', 'measure', 'time', 'measureless', 'immeasurable.', '', 'You', 'would', 'adjust', 'your', 'conduct', 'even', 'direct', 'course', 'of', 'your', 'spirit', 'according', 'to', 'hours', 'seasons.', '', 'Of', 'time', 'you', 'would', 'make', 'stream', 'upon', 'whose', 'bank', 'you', 'would', 'sit', 'watch', 'its', 'flowing.', '', 'Yet', 'timeless', 'in', 'you', 'is', 'aware', 'of', 'life’s', 'timelessness,', '', 'And', 'knows', 'that', 'yesterday', 'is', 'but', 'today’s', 'memory', 'tomorrow', 'is', 'today’s', 'dream.', '', 'And', 'that', 'that', 'which', 'sings', 'contemplates', 'in', 'you', 'is', 'still', 'dwelling', 'within', 'bounds', 'of', 'that', 'first', 'moment', 'which', 'scattered', 'stars', 'into', 'space.', '', 'among', 'you', 'does', 'not', 'feel', 'that', 'his', 'power', 'to', 'love', 'is', 'boundless?', '', 'And', 'yet', 'who', 'does', 'not', 'feel', 'that', 'very', 'love,', 'though', 'boundless,', 'encompassed', 'within', 'centre', 'of', 'his', 'being,', 'moving', 'not', 'from', 'love', 'thought', 'to', 'love', 'thought,', 'nor', 'from', 'love', 'deeds', 'to', 'other', 'love', 'deeds?', '', 'And', 'is', 'not', 'time', 'even', 'as', 'love', 'is,', 'undivided', 'paceless?', '', '*****', '', 'But', 'if', 'in', 'your', 'thought', 'you', 'must', 'measure', 'time', 'into', 'seasons,', 'let', 'each', 'season', 'encircle', 'all', 'other', 'seasons,', '', 'And', 'let', 'today', 'embrace', 'past', 'with', 'remembrance', 'future', 'with', 'longing.', '', '*****', '*****', '', '', 'one', 'of', 'elders', 'of', 'city', 'said,', 'Speak', 'to', 'us', 'of', '_Good', 'Evil_.', '', 'And', 'he', 'answered:', '', 'Of', 'good', 'in', 'you', 'I', 'can', 'speak,', 'but', 'not', 'of', 'evil.', '', 'For', 'what', 'is', 'evil', 'but', 'good', 'tortured', 'by', 'its', 'own', 'hunger', 'thirst?', '', 'Verily', 'when', 'good', 'is', 'hungry', 'it', 'seeks', 'food', 'even', 'in', 'dark', 'caves,', 'when', 'it', 'thirsts', 'it', 'drinks', 'even', 'of', 'dead', 'waters.', '', 'You', 'are', 'good', 'when', 'you', 'are', 'one', 'with', 'yourself.', '', 'Yet', 'when', 'you', 'are', 'not', 'one', 'with', 'yourself', 'you', 'are', 'not', 'evil.', '', 'For', 'divided', 'house', 'is', 'not', 'den', 'of', 'thieves;', 'it', 'is', 'only', 'divided', 'house.', '', 'And', 'ship', 'without', 'rudder', 'may', 'wander', 'aimlessly', 'among', 'perilous', 'isles', 'yet', 'sink', 'not', 'to', 'bottom.', '', 'are', 'good', 'when', 'you', 'strive', 'to', 'give', 'of', 'yourself.', '', 'Yet', 'you', 'are', 'not', 'evil', 'when', 'you', 'seek', 'gain', 'for', 'yourself.', '', 'For', 'when', 'you', 'strive', 'for', 'gain', 'you', 'are', 'but', 'root', 'that', 'clings', 'to', 'earth', 'sucks', 'at', 'her', 'breast.', '', 'Surely', 'fruit', 'cannot', 'say', 'to', 'root,', '“Be', 'like', 'me,', 'ripe', 'full', 'ever', 'giving', 'of', 'your', 'abundance.”', '', 'For', 'to', 'fruit', 'giving', 'is', 'need,', 'as', 'receiving', 'is', 'need', 'to', 'root.', '', '*****', '', 'You', 'are', 'good', 'when', 'you', 'are', 'fully', 'awake', 'in', 'your', 'speech,', '', 'Yet', 'you', 'are', 'not', 'evil', 'when', 'you', 'sleep', 'while', 'your', 'tongue', 'staggers', 'without', 'purpose.', '', 'And', 'even', 'stumbling', 'speech', 'may', 'strengthen', 'weak', 'tongue.', '', 'You', 'are', 'good', 'when', 'you', 'walk', 'to', 'your', 'goal', 'firmly', 'with', 'bold', 'steps.', '', 'Yet', 'you', 'are', 'not', 'evil', 'when', 'you', 'go', 'thither', 'limping.', '', 'those', 'who', 'limp', 'go', 'not', 'backward.', '', 'But', 'you', 'who', 'are', 'strong', 'swift,', 'see', 'that', 'you', 'do', 'not', 'limp', 'before', 'lame,', 'deeming', 'it', 'kindness.', '', '*****', '', 'You', 'are', 'good', 'in', 'countless', 'ways,', 'you', 'are', 'not', 'evil', 'when', 'you', 'are', 'not', 'good,', '', 'You', 'are', 'only', 'loitering', 'sluggard.', '', 'Pity', 'that', 'stags', 'cannot', 'teach', 'swiftness', 'to', 'turtles.', '', 'In', 'your', 'longing', 'for', 'your', 'giant', 'self', 'lies', 'your', 'goodness:', 'that', 'longing', 'is', 'in', 'all', 'of', 'you.', '', 'But', 'in', 'some', 'of', 'you', 'that', 'longing', 'is', 'torrent', 'rushing', 'with', 'might', 'to', 'sea,', 'carrying', 'secrets', 'of', 'hillsides', 'songs', 'of', 'forest.', '', 'And', 'in', 'others', 'it', 'is', 'flat', 'stream', 'that', 'loses', 'itself', 'in', 'angles', 'bends', 'lingers', 'before', 'it', 'reaches', 'shore.', '', 'But', 'let', 'not', 'him', 'who', 'longs', 'much', 'say', 'to', '', 'who', 'longs', 'little,', '“Wherefore', 'are', 'you', 'slow', 'halting?”', '', 'For', 'truly', 'good', 'ask', 'not', 'naked,', '“Where', 'is', 'your', 'garment?”', 'nor', 'houseless,', '“What', 'has', 'befallen', 'your', 'house?”', '', '*****', '*****', '', '', 'priestess', 'said,', 'Speak', 'to', 'us', 'of', '_Prayer_.', '', 'And', 'he', 'answered,', 'saying:', '', 'You', 'pray', 'in', 'your', 'distress', 'in', 'your', 'need;', 'would', 'that', 'you', 'might', 'pray', 'also', 'in', 'fullness', 'of', 'your', 'joy', 'in', 'your', 'days', 'of', 'abundance.', '', 'For', 'what', 'is', 'prayer', 'but', 'expansion', 'of', 'yourself', 'into', 'living', 'ether?', '', 'And', 'if', 'it', 'is', 'for', 'your', 'comfort', 'to', 'pour', 'your', 'darkness', 'into', 'space,', 'it', 'is', 'also', 'for', 'your', 'delight', 'to', 'pour', 'forth', 'dawning', 'of', 'your', 'heart.', '', 'And', 'if', 'you', 'cannot', 'but', 'weep', 'when', 'your', 'soul', 'summons', 'you', 'to', 'prayer,', 'she', 'should', 'spur', 'you', 'again', 'yet', 'again,', 'though', 'weeping,', 'until', 'you', 'shall', 'come', 'laughing.', '', 'When', 'you', 'pray', 'you', 'rise', 'to', 'meet', 'in', 'air', 'those', 'who', 'are', 'praying', 'at', 'that', 'very', '', 'whom', 'save', 'in', 'prayer', 'you', 'may', 'not', 'meet.', '', 'Therefore', 'let', 'your', 'visit', 'to', 'that', 'temple', 'invisible', 'be', 'for', 'naught', 'but', 'ecstasy', 'sweet', 'communion.', '', 'For', 'if', 'you', 'should', 'enter', 'temple', 'for', 'no', 'other', 'purpose', 'than', 'asking', 'you', 'shall', 'not', 'receive:', '', 'And', 'if', 'you', 'should', 'enter', 'into', 'it', 'to', 'humble', 'yourself', 'you', 'shall', 'not', 'be', 'lifted:', '', 'Or', 'even', 'if', 'you', 'should', 'enter', 'into', 'it', 'to', 'beg', 'for', 'good', 'of', 'others', 'you', 'shall', 'not', 'be', 'heard.', '', 'It', 'is', 'enough', 'that', 'you', 'enter', 'temple', 'invisible.', '', '*****', '', 'I', 'cannot', 'teach', 'you', 'how', 'to', 'pray', 'in', 'words.', '', 'God', 'listens', 'not', 'to', 'your', 'words', 'save', 'when', 'He', 'Himself', 'utters', 'them', 'through', 'your', 'lips.', '', 'And', 'I', 'cannot', 'teach', 'you', 'prayer', 'of', 'seas', 'forests', 'mountains.', '', 'you', 'who', 'are', 'born', 'of', 'mountains', 'forests', 'seas', 'can', 'find', 'their', 'prayer', 'in', 'your', 'heart,', '', 'And', 'if', 'you', 'but', 'listen', 'in', 'stillness', 'of', 'night', 'you', 'shall', 'hear', 'them', 'saying', 'in', 'silence,', '', '“Our', 'God,', 'who', 'art', 'our', 'winged', 'self,', 'it', 'is', 'thy', 'will', 'in', 'us', 'that', 'willeth.', '', 'It', 'is', 'thy', 'desire', 'in', 'us', 'that', 'desireth.', '', 'It', 'is', 'thy', 'urge', 'in', 'us', 'that', 'would', 'turn', 'our', 'nights,', 'which', 'are', 'thine,', 'into', 'days', 'which', 'are', 'thine', 'also.', '', 'We', 'cannot', 'ask', 'thee', 'for', 'aught,', 'for', 'thou', 'knowest', 'our', 'needs', 'before', 'they', 'are', 'born', 'in', 'us:', '', 'Thou', 'art', 'our', 'need;', 'in', 'giving', 'us', 'more', 'of', 'thyself', 'thou', 'givest', 'us', 'all.”', '', '[Illustration:', '0100]', '', '*****', '*****', '', '', 'hermit,', 'who', 'visited', 'city', 'once', 'year,', 'came', 'forth', 'said,', 'Speak', 'to', 'us', 'of', '_Pleasure_.', '', 'And', 'he', 'answered,', 'saying:', '', 'Pleasure', 'is', 'freedom-song,', '', 'But', 'it', 'is', 'not', 'freedom.', '', 'It', 'is', 'blossoming', 'of', 'your', 'desires,', '', 'But', 'it', 'is', 'not', 'their', 'fruit.', '', 'It', 'is', 'depth', 'calling', 'unto', 'height,', '', 'But', 'it', 'is', 'not', 'deep', 'nor', 'high.', '', 'It', 'is', 'caged', 'taking', 'wing,', '', 'But', 'it', 'is', 'not', 'space', 'encompassed.', '', 'Ay,', 'in', 'very', 'truth,', 'pleasure', 'is', 'freedom-song.', '', 'And', 'I', 'fain', 'would', 'have', 'you', 'sing', 'it', 'with', 'fullness', 'of', 'heart;', 'yet', 'I', 'would', 'not', 'have', 'you', 'lose', 'your', 'hearts', 'in', 'singing.', '', 'Some', 'of', 'your', 'youth', 'seek', 'pleasure', 'as', 'if', 'it', 'were', 'all,', 'they', 'are', 'judged', 'rebuked.', '', 'would', 'not', 'judge', 'nor', 'rebuke', 'them.', 'I', 'would', 'have', 'them', 'seek.', '', 'For', 'they', 'shall', 'find', 'pleasure,', 'but', 'not', 'her', 'alone;', '', 'Seven', 'are', 'her', 'sisters,', 'least', 'of', 'them', 'is', 'more', 'beautiful', 'than', 'pleasure.', '', 'Have', 'you', 'not', 'heard', 'of', 'man', 'who', 'was', 'digging', 'in', 'earth', 'for', 'roots', 'found', 'treasure?', '', '*****', '', 'And', 'some', 'of', 'your', 'elders', 'remember', 'pleasures', 'with', 'regret', 'like', 'wrongs', 'committed', 'in', 'drunkenness.', '', 'But', 'regret', 'is', 'beclouding', 'of', 'mind', 'not', 'its', 'chastisement.', '', 'They', 'should', 'remember', 'their', 'pleasures', 'with', 'gratitude,', 'as', 'they', 'would', 'harvest', 'of', 'summer.', '', 'Yet', 'if', 'it', 'comforts', 'them', 'to', 'regret,', 'let', 'them', 'be', 'comforted.', '', 'And', 'there', 'are', 'among', 'you', 'those', 'who', 'are', 'neither', 'young', 'to', 'seek', 'nor', 'old', 'to', 'remember;', '', 'And', 'in', 'their', 'fear', 'of', 'seeking', 'remembering', '', 'shun', 'all', 'pleasures,', 'lest', 'they', 'neglect', 'spirit', 'or', 'offend', 'against', 'it.', '', 'But', 'even', 'in', 'their', 'foregoing', 'is', 'their', 'pleasure.', '', 'And', 'thus', 'they', 'too', 'find', 'treasure', 'though', 'they', 'dig', 'for', 'roots', 'with', 'quivering', 'hands.', '', 'But', 'tell', 'me,', 'who', 'is', 'he', 'that', 'can', 'offend', 'spirit?', '', 'Shall', 'nightingale', 'offend', 'stillness', 'of', 'night,', 'or', 'firefly', 'stars?', '', 'And', 'shall', 'your', 'flame', 'or', 'your', 'smoke', 'burden', 'wind?', '', 'Think', 'you', 'spirit', 'is', 'still', 'pool', 'which', 'you', 'can', 'trouble', 'with', 'staff?', '', '*****', '', 'Oftentimes', 'in', 'denying', 'yourself', 'pleasure', 'you', 'do', 'but', 'store', 'desire', 'in', 'recesses', 'of', 'your', 'being.', '', 'Who', 'knows', 'but', 'that', 'which', 'seems', 'omitted', 'today,', 'waits', 'for', 'tomorrow?', '', 'Even', 'your', 'body', 'knows', 'its', 'heritage', 'its', 'rightful', 'need', 'will', 'not', 'be', 'deceived.', '', 'And', 'your', 'body', 'is', 'harp', 'of', 'your', 'soul,', '', 'And', 'it', 'is', 'yours', 'to', 'bring', 'forth', '', 'from', 'it', 'or', 'confused', 'sounds.', '', '*****', '', 'And', 'now', 'you', 'ask', 'in', 'your', 'heart,', '“How', 'shall', 'we', 'distinguish', 'that', 'which', 'is', 'good', 'in', 'pleasure', 'from', 'that', 'which', 'is', 'not', 'good?”', '', 'Go', 'to', 'your', 'fields', 'your', 'gardens,', 'you', 'shall', 'learn', 'that', 'it', 'is', 'pleasure', 'of', 'bee', 'to', 'gather', 'honey', 'of', 'flower,', '', 'But', 'it', 'is', 'also', 'pleasure', 'of', 'flower', 'to', 'yield', 'its', 'honey', 'to', 'bee.', '', 'For', 'to', 'bee', 'flower', 'is', 'fountain', 'of', 'life,', '', 'And', 'to', 'flower', 'bee', 'is', 'messenger', 'of', 'love,', '', 'And', 'to', 'both,', 'bee', 'flower,', 'giving', 'receiving', 'of', 'pleasure', 'is', 'need', 'ecstasy.', '', 'People', 'of', 'Orphalese,', 'be', 'in', 'your', 'pleasures', 'like', 'flowers', 'bees.', '', '*****', '*****', '', '', 'poet', 'said,', 'Speak', 'to', 'us', 'of', '_Beauty_.', '', 'And', 'he', 'answered:', '', 'Where', 'shall', 'you', 'seek', 'beauty,', 'how', 'shall', 'you', 'find', 'her', 'unless', 'she', 'herself', 'be', 'your', 'way', 'your', 'guide?', '', 'And', 'how', 'shall', 'you', 'speak', 'of', 'her', 'except', 'she', 'be', 'weaver', 'of', 'your', 'speech?', '', 'The', 'aggrieved', 'injured', 'say,', '“Beauty', 'is', 'kind', 'gentle.', '', 'Like', 'young', 'mother', 'half-shy', 'of', 'her', 'own', 'glory', 'she', 'walks', 'among', 'us.”', '', 'And', 'passionate', 'say,', '“Nay,', 'beauty', 'is', 'thing', 'of', 'might', 'dread.', '', 'Like', 'tempest', 'she', 'shakes', 'earth', 'beneath', 'us', 'sky', 'above', 'us.”', '', 'The', 'tired', 'weary', 'say,', '“Beauty', 'is', 'of', 'soft', 'whisperings.', 'She', 'speaks', 'in', 'our', 'spirit.', '', 'voice', 'yields', 'to', 'our', 'silences', 'like', 'faint', 'light', 'that', 'quivers', 'in', 'fear', 'of', 'shadow.”', '', 'But', 'restless', 'say,', '“We', 'have', 'heard', 'her', 'shouting', 'among', 'mountains,', '', 'And', 'with', 'her', 'cries', 'came', 'sound', 'of', 'hoofs,', 'beating', 'of', 'wings', 'roaring', 'of', 'lions.”', '', 'At', 'night', 'watchmen', 'of', 'city', 'say,', '“Beauty', 'shall', 'rise', 'with', 'dawn', 'from', 'east.”', '', 'And', 'at', 'noontide', 'toilers', 'wayfarers', 'say,', '“We', 'have', 'seen', 'her', 'leaning', 'over', 'earth', 'from', 'windows', 'of', 'sunset.”', '', '*****', '', 'In', 'winter', 'say', 'snow-bound,', '“She', 'shall', 'come', 'with', 'spring', 'leaping', 'upon', 'hills.”', '', 'And', 'in', 'summer', 'heat', 'reapers', 'say,', '“We', 'have', 'seen', 'her', 'dancing', 'with', 'autumn', 'leaves,', 'we', 'saw', 'drift', 'of', 'snow', 'in', 'her', 'hair.”', '', 'these', 'things', 'have', 'you', 'said', 'of', 'beauty,', '', 'Yet', 'in', 'truth', 'you', 'spoke', 'not', 'of', 'her', 'but', 'of', 'needs', 'unsatisfied,', '', 'And', 'beauty', 'is', 'not', 'need', 'but', 'ecstasy.', '', 'It', 'is', 'not', 'mouth', 'thirsting', 'nor', 'empty', 'hand', 'stretched', 'forth,', '', 'But', 'rather', 'heart', 'enflamed', 'soul', 'enchanted.', '', 'It', 'is', 'not', 'image', 'you', 'would', 'see', 'nor', 'song', 'you', 'would', 'hear,', '', 'But', 'rather', 'image', 'you', 'see', 'though', 'you', 'close', 'your', 'eyes', 'song', 'you', 'hear', 'though', 'you', 'shut', 'your', 'ears.', '', 'It', 'is', 'not', 'sap', 'within', 'furrowed', 'bark,', 'nor', 'wing', 'attached', 'to', 'claw,', '', 'But', 'rather', 'garden', 'for', 'ever', 'in', 'bloom', 'flock', 'of', 'angels', 'for', 'ever', 'in', 'flight.', '', '*****', '', 'People', 'of', 'Orphalese,', 'beauty', 'is', 'life', 'when', 'life', 'unveils', 'her', 'holy', 'face.', '', 'But', 'you', 'are', 'life', 'you', 'are', 'veil.', '', 'is', 'eternity', 'gazing', 'at', 'itself', 'in', 'mirror.', '', 'But', 'you', 'are', 'eternity', 'you', 'are', 'mirror.', '', '*****', '*****', '', '', 'old', 'priest', 'said,', 'Speak', 'to', 'us', 'of', '_Religion_.', '', 'And', 'he', 'said:', '', 'Have', 'I', 'spoken', 'this', 'day', 'of', 'aught', 'else?', '', 'Is', 'not', 'religion', 'all', 'deeds', 'all', 'reflection,', '', 'And', 'that', 'which', 'is', 'neither', 'deed', 'nor', 'reflection,', 'but', 'wonder', 'surprise', 'ever', 'springing', 'in', 'soul,', 'even', 'while', 'hands', 'hew', 'stone', 'or', 'tend', 'loom?', '', 'Who', 'can', 'separate', 'his', 'faith', 'from', 'his', 'actions,', 'or', 'his', 'belief', 'from', 'his', 'occupations?', '', 'Who', 'can', 'spread', 'his', 'hours', 'before', 'him,', 'saving,', '“This', 'for', 'God', 'this', 'for', 'myself;', 'This', 'for', 'my', 'soul,', 'this', 'other', 'for', 'my', 'body?”', '', 'All', 'your', 'hours', 'are', 'wings', 'that', 'beat', 'through', 'space', 'from', 'self', 'to', 'self.', '', 'wears', 'his', 'morality', 'but', 'as', 'his', 'best', 'garment', 'were', 'better', 'naked.', '', 'The', 'wind', 'sun', 'will', 'tear', 'no', 'holes', 'in', 'his', 'skin.', '', 'And', 'he', 'who', 'defines', 'his', 'conduct', 'by', 'ethics', 'imprisons', 'his', 'song-bird', 'in', 'cage.', '', 'The', 'freest', 'song', 'comes', 'not', 'through', 'bars', 'wires.', '', 'And', 'he', 'to', 'whom', 'worshipping', 'is', 'window,', 'to', 'open', 'but', 'also', 'to', 'shut,', 'has', 'not', 'yet', 'visited', 'house', 'of', 'his', 'soul', 'whose', 'windows', 'are', 'from', 'dawn', 'to', 'dawn.', '', '*****', '', 'Your', 'daily', 'life', 'is', 'your', 'temple', 'your', 'religion.', '', 'Whenever', 'you', 'enter', 'into', 'it', 'take', 'with', 'you', 'your', 'all.', '', 'Take', 'plough', 'forge', 'mallet', 'lute,', '', 'The', 'things', 'you', 'have', 'fashioned', 'in', 'necessity', 'or', 'for', 'delight.', '', 'For', 'in', 'revery', 'you', 'cannot', 'rise', 'above', 'your', 'achievements', 'nor', 'fall', 'lower', 'than', 'your', 'failures.', '', 'And', 'take', 'with', 'you', 'all', 'men:', '', 'in', 'adoration', 'you', 'cannot', 'fly', 'higher', 'than', 'their', 'hopes', 'nor', 'humble', 'yourself', 'lower', 'than', 'their', 'despair.', '', '*****', '', 'And', 'if', 'you', 'would', 'know', 'God', 'be', 'not', 'therefore', 'solver', 'of', 'riddles.', '', 'Rather', 'look', 'about', 'you', 'you', 'shall', 'see', 'Him', 'playing', 'with', 'your', 'children.', '', 'And', 'look', 'into', 'space;', 'you', 'shall', 'see', 'Him', 'walking', 'in', 'cloud,', 'outstretching', 'His', 'arms', 'in', 'lightning', 'descending', 'in', 'rain.', '', 'You', 'shall', 'see', 'Him', 'smiling', 'in', 'flowers,', 'then', 'rising', 'waving', 'His', 'hands', 'in', 'trees.', '', '*****', '*****', '', '', 'Almitra', 'spoke,', 'saying,', 'We', 'would', 'ask', 'now', 'of', '_Death_.', '', 'And', 'he', 'said:', '', 'You', 'would', 'know', 'secret', 'of', 'death.', '', 'But', 'how', 'shall', 'you', 'find', 'it', 'unless', 'you', 'seek', 'it', 'in', 'heart', 'of', 'life?', '', 'The', 'owl', 'whose', 'night-bound', 'eyes', 'are', 'blind', 'unto', 'day', 'cannot', 'unveil', 'mystery', 'of', 'light.', '', 'If', 'you', 'would', 'indeed', 'behold', 'spirit', 'of', 'death,', 'open', 'your', 'heart', 'wide', 'unto', 'body', 'of', 'life.', '', 'For', 'life', 'death', 'are', 'one,', 'even', 'as', 'river', 'sea', 'are', 'one.', '', 'In', 'depth', 'of', 'your', 'hopes', 'desires', 'lies', 'your', 'silent', 'knowledge', 'of', 'beyond;', '', 'And', 'like', 'seeds', 'dreaming', 'beneath', 'snow', 'your', 'heart', 'dreams', 'of', 'spring.', '', 'Trust', 'dreams,', 'for', 'in', 'them', 'is', 'hidden', 'gate', 'to', 'eternity.', '', 'fear', 'of', 'death', 'is', 'but', 'trembling', 'of', 'shepherd', 'when', 'he', 'stands', 'before', 'king', 'whose', 'hand', 'is', 'to', 'be', 'laid', 'upon', 'him', 'in', 'honour.', '', 'Is', 'shepherd', 'not', 'joyful', 'beneath', 'his', 'trembling,', 'that', 'he', 'shall', 'wear', 'mark', 'of', 'king?', '', 'Yet', 'is', 'he', 'not', 'more', 'mindful', 'of', 'his', 'trembling?', '', '*****', '', 'For', 'what', 'is', 'it', 'to', 'die', 'but', 'to', 'stand', 'naked', 'in', 'wind', 'to', 'melt', 'into', 'sun?', '', 'And', 'what', 'is', 'it', 'to', 'cease', 'breathing,', 'but', 'to', 'free', 'breath', 'from', 'its', 'restless', 'tides,', 'that', 'it', 'may', 'rise', 'expand', 'seek', 'God', 'unencumbered?', '', 'Only', 'when', 'you', 'drink', 'from', 'river', 'of', 'silence', 'shall', 'you', 'indeed', 'sing.', '', 'And', 'when', 'you', 'have', 'reached', 'mountain', 'top,', 'then', 'you', 'shall', 'begin', 'to', 'climb.', '', 'And', 'when', 'earth', 'shall', 'claim', 'your', 'limbs,', 'then', 'shall', 'you', 'truly', 'dance.', '', 'now', 'it', 'was', 'evening.', '', 'And', 'Almitra', 'seeress', 'said,', 'Blessed', 'be', 'this', 'day', 'this', 'place', 'your', 'spirit', 'that', 'has', 'spoken.', '', 'And', 'he', 'answered,', 'Was', 'it', 'I', 'who', 'spoke?', 'Was', 'I', 'not', 'also', 'listener?', '', '*****', '', 'Then', 'he', 'descended', 'steps', 'of', 'Temple', 'all', 'people', 'followed', 'him.', 'And', 'he', 'reached', 'his', 'ship', 'stood', 'upon', 'deck.', '', 'And', 'facing', 'people', 'again,', 'he', 'raised', 'his', 'voice', 'said:', '', 'People', 'of', 'Orphalese,', 'wind', 'bids', 'me', 'leave', 'you.', '', 'Less', 'hasty', 'am', 'I', 'than', 'wind,', 'yet', 'I', 'must', 'go.', '', 'We', 'wanderers,', 'ever', 'seeking', 'lonelier', 'way,', 'begin', 'no', 'day', 'where', 'we', 'have', 'ended', 'another', 'day;', 'no', 'sunrise', 'finds', 'us', 'where', 'sunset', 'left', 'us.', '', 'while', 'earth', 'sleeps', 'we', 'travel.', '', 'We', 'are', 'seeds', 'of', 'tenacious', 'plant,', 'it', 'is', 'in', 'our', 'ripeness', 'our', 'fullness', 'of', 'heart', 'that', 'we', 'are', 'given', 'to', 'wind', 'are', 'scattered.', '', '*****', '', 'Brief', 'were', 'my', 'days', 'among', 'you,', 'briefer', 'still', 'words', 'I', 'have', 'spoken.', '', 'But', 'should', 'my', 'voice', 'fade', 'in', 'your', 'ears,', 'my', 'love', 'vanish', 'in', 'your', 'memory,', 'then', 'I', 'will', 'come', 'again,', '', 'And', 'with', 'richer', 'heart', 'lips', 'more', 'yielding', 'to', 'spirit', 'will', 'I', 'speak.', '', 'Yea,', 'I', 'shall', 'return', 'with', 'tide,', '', 'And', 'though', 'death', 'may', 'hide', 'me,', 'greater', 'silence', 'enfold', 'me,', 'yet', 'again', 'will', 'I', 'seek', 'your', 'understanding.', '', 'And', 'not', 'in', 'vain', 'will', 'I', 'seek.', '', 'If', 'aught', 'I', 'have', 'said', 'is', 'truth,', 'that', 'truth', 'shall', 'reveal', 'itself', 'in', 'clearer', 'voice,', 'in', 'words', 'more', 'kin', 'to', 'your', 'thoughts.', '', 'I', 'go', 'with', 'wind,', 'people', 'of', 'Orphalese,', 'but', 'not', 'down', 'into', 'emptiness;', '', 'if', 'this', 'day', 'is', 'not', 'fulfilment', 'of', 'your', 'needs', 'my', 'love,', 'then', 'let', 'it', 'be', 'promise', 'till', 'another', 'day.', '', 'Man’s', 'needs', 'change,', 'but', 'not', 'his', 'love,', 'nor', 'his', 'desire', 'that', 'his', 'love', 'should', 'satisfy', 'his', 'needs.', '', 'Know', 'therefore,', 'that', 'from', 'greater', 'silence', 'I', 'shall', 'return.', '', 'The', 'mist', 'that', 'drifts', 'away', 'at', 'dawn,', 'leaving', 'but', 'dew', 'in', 'fields,', 'shall', 'rise', 'gather', 'into', 'cloud', 'then', 'fall', 'down', 'in', 'rain.', '', 'And', 'not', 'unlike', 'mist', 'have', 'I', 'been.', '', 'In', 'stillness', 'of', 'night', 'I', 'have', 'walked', 'in', 'your', 'streets,', 'my', 'spirit', 'has', 'entered', 'your', 'houses,', '', 'And', 'your', 'heart-beats', 'were', 'in', 'my', 'heart,', 'your', 'breath', 'was', 'upon', 'my', 'face,', 'I', 'knew', 'you', 'all.', '', 'Ay,', 'I', 'knew', 'your', 'joy', 'your', 'pain,', 'in', 'your', 'sleep', 'your', 'dreams', 'were', 'my', 'dreams.', '', 'And', 'oftentimes', 'I', 'was', 'among', 'you', 'lake', 'among', 'mountains.', '', 'I', 'mirrored', 'summits', 'in', 'you', '', 'slopes,', 'even', 'passing', 'flocks', 'of', 'your', 'thoughts', 'your', 'desires.', '', 'And', 'to', 'my', 'silence', 'came', 'laughter', 'of', 'your', 'children', 'in', 'streams,', 'longing', 'of', 'your', 'youths', 'in', 'rivers.', '', 'And', 'when', 'they', 'reached', 'my', 'depth', 'streams', 'rivers', 'ceased', 'not', 'yet', 'to', 'sing.', '', '[Illustration:', '0119]', '', 'But', 'sweeter', 'still', 'than', 'laughter', 'greater', 'than', 'longing', 'came', 'to', 'me.', '', 'It', 'was', 'boundless', 'in', 'you;', '', 'The', 'vast', 'man', 'in', 'whom', 'you', 'are', 'all', 'but', 'cells', 'sinews;', '', 'He', 'in', 'whose', 'chant', 'all', 'your', 'singing', 'is', 'but', 'soundless', 'throbbing.', '', 'It', 'is', 'in', 'vast', 'man', 'that', 'you', 'are', 'vast,', '', 'And', 'in', 'beholding', 'him', 'that', 'I', 'beheld', 'you', 'loved', 'you.', '', 'For', 'what', 'distances', 'can', 'love', 'reach', 'that', 'are', 'not', 'in', 'that', 'vast', 'sphere?', '', 'What', 'visions,', 'what', 'expectations', 'what', 'presumptions', 'can', 'outsoar', 'that', 'flight?', '', 'Like', 'giant', 'oak', 'tree', 'covered', 'with', 'apple', 'blossoms', 'is', 'vast', 'man', 'in', 'you.', '', 'binds', 'you', 'to', 'earth,', 'his', 'fragrance', 'lifts', 'you', 'into', 'space,', 'in', 'his', 'durability', 'you', 'are', 'deathless.', '', '*****', '', 'You', 'have', 'been', 'told', 'that,', 'even', 'like', 'chain,', 'you', 'are', 'as', 'weak', 'as', 'your', 'weakest', 'link.', '', 'This', 'is', 'but', 'half', 'truth.', 'You', 'are', 'also', 'as', 'strong', 'as', 'your', 'strongest', 'link.', '', 'To', 'measure', 'you', 'by', 'your', 'smallest', 'deed', 'is', 'to', 'reckon', 'power', 'of', 'ocean', 'by', 'frailty', 'of', 'its', 'foam.', '', 'To', 'judge', 'you', 'by', 'your', 'failures', 'is', 'to', 'cast', 'blame', 'upon', 'seasons', 'for', 'their', 'inconstancy.', '', 'Ay,', 'you', 'are', 'like', 'ocean,', '', 'And', 'though', 'heavy-grounded', 'ships', 'await', 'tide', 'upon', 'your', 'shores,', 'yet,', 'even', 'like', 'ocean,', 'you', 'cannot', 'hasten', 'your', 'tides.', '', 'And', 'like', 'seasons', 'you', 'are', 'also,', '', 'And', 'though', 'in', 'your', 'winter', 'you', 'deny', 'your', 'spring,', '', 'Yet', 'spring,', 'reposing', 'within', 'you,', 'smiles', 'in', 'her', 'drowsiness', 'is', 'not', 'offended.', '', 'not', 'I', 'say', 'these', 'things', 'in', 'order', 'that', 'you', 'may', 'say', 'one', 'to', 'other,', '“He', 'praised', 'us', 'well.', 'He', 'saw', 'but', 'good', 'in', 'us.”', '', 'I', 'only', 'speak', 'to', 'you', 'in', 'words', 'of', 'that', 'which', 'you', 'yourselves', 'know', 'in', 'thought.', '', 'And', 'what', 'is', 'word', 'knowledge', 'but', 'shadow', 'of', 'wordless', 'knowledge?', '', 'Your', 'thoughts', 'my', 'words', 'are', 'waves', 'from', 'sealed', 'memory', 'that', 'keeps', 'records', 'of', 'our', 'yesterdays,', '', 'And', 'of', 'ancient', 'days', 'when', 'earth', 'knew', 'not', 'us', 'nor', 'herself,', '', 'And', 'of', 'nights', 'when', 'earth', 'was', 'up-wrought', 'with', 'confusion.', '', '*****', '', 'Wise', 'men', 'have', 'come', 'to', 'you', 'to', 'give', 'you', 'of', 'their', 'wisdom.', 'I', 'came', 'to', 'take', 'of', 'your', 'wisdom:', '', 'And', 'behold', 'I', 'have', 'found', 'that', 'which', 'is', 'greater', 'than', 'wisdom.', '', 'It', 'is', 'flame', 'spirit', 'in', 'you', 'ever', 'gathering', 'more', 'of', 'itself,', '', 'While', 'you,', 'heedless', 'of', 'its', 'expansion,', 'bewail', 'withering', 'of', 'your', 'days.', '', 'is', 'life', 'in', 'quest', 'of', 'life', 'in', 'bodies', 'that', 'fear', 'grave.', '', '*****', '', 'There', 'are', 'no', 'graves', 'here.', '', 'These', 'mountains', 'plains', 'are', 'cradle', 'stepping-stone.', '', 'Whenever', 'you', 'pass', 'by', 'field', 'where', 'you', 'have', 'laid', 'your', 'ancestors', 'look', 'well', 'thereupon,', 'you', 'shall', 'see', 'yourselves', 'your', 'children', 'dancing', 'hand', 'in', 'hand.', '', 'Verily', 'you', 'often', 'make', 'merry', 'without', 'knowing.', '', 'Others', 'have', 'come', 'to', 'you', 'to', 'whom', 'for', 'golden', 'promises', 'made', 'unto', 'your', 'faith', 'you', 'have', 'given', 'but', 'riches', 'power', 'glory.', '', 'Less', 'than', 'promise', 'have', 'I', 'given,', 'yet', 'more', 'generous', 'have', 'you', 'been', 'to', 'me.', '', 'You', 'have', 'given', 'me', 'my', 'deeper', 'thirsting', 'after', 'life.', '', 'Surely', 'there', 'is', 'no', 'greater', 'gift', 'to', 'man', 'than', 'that', 'which', 'turns', 'all', 'his', 'aims', 'into', 'parching', 'lips', 'all', 'life', 'into', 'fountain.', '', '[Illustration:', '0125]', '', '', 'in', 'this', 'lies', 'my', 'honour', 'my', 'reward,--', '', 'That', 'whenever', 'I', 'come', 'to', 'fountain', 'to', 'drink', 'I', 'find', 'living', 'water', 'itself', 'thirsty;', '', 'And', 'it', 'drinks', 'me', 'while', 'I', 'drink', 'it.', '', '*****', '', 'Some', 'of', 'you', 'have', 'deemed', 'me', 'proud', 'over-shy', 'to', 'receive', 'gifts.', '', 'Too', 'proud', 'indeed', 'am', 'I', 'to', 'receive', 'wages,', 'but', 'not', 'gifts.', '', 'And', 'though', 'I', 'have', 'eaten', 'berries', 'among', 'hills', 'when', 'you', 'would', 'have', 'had', 'me', 'sit', 'at', 'your', 'board,', '', 'And', 'slept', 'in', 'portico', 'of', 'temple', 'when', 'you', 'would', 'gladly', 'have', 'sheltered', 'me,', '', 'Yet', 'was', 'it', 'not', 'your', 'loving', 'mindfulness', 'of', 'my', 'days', 'my', 'nights', 'that', 'made', 'food', 'sweet', 'to', 'my', 'mouth', 'girdled', 'my', 'sleep', 'with', 'visions?', '', 'For', 'this', 'I', 'bless', 'you', 'most:', '', 'You', 'give', 'much', 'know', 'not', 'that', 'you', 'give', 'at', 'all.', '', 'kindness', 'that', 'gazes', 'upon', 'itself', 'in', 'mirror', 'turns', 'to', 'stone,', '', 'And', 'good', 'deed', 'that', 'calls', 'itself', 'by', 'tender', 'names', 'becomes', 'parent', 'to', 'curse.', '', '*****', '', 'And', 'some', 'of', 'you', 'have', 'called', 'me', 'aloof,', 'drunk', 'with', 'my', 'own', 'aloneness,', '', 'And', 'you', 'have', 'said,', '“He', 'holds', 'council', 'with', 'trees', 'of', 'forest,', 'but', 'not', 'with', 'men.', '', 'He', 'sits', 'alone', 'on', 'hill-tops', 'looks', 'down', 'upon', 'our', 'city.”', '', 'True', 'it', 'is', 'that', 'I', 'have', 'climbed', 'hills', 'walked', 'in', 'remote', 'places.', '', 'How', 'could', 'I', 'have', 'seen', 'you', 'save', 'from', 'great', 'height', 'or', 'great', 'distance?', '', 'How', 'can', 'one', 'be', 'indeed', 'near', 'unless', 'he', 'be', 'tar?', '', 'And', 'others', 'among', 'you', 'called', 'unto', 'me,', 'not', 'in', 'words,', 'they', 'said,', '', '“Stranger,', 'stranger,', 'lover', 'of', 'unreachable', 'heights,', 'why', 'dwell', 'you', 'among', 'summits', 'where', 'eagles', 'build', 'their', 'nests?', '', 'seek', 'you', 'unattainable?', '', 'What', 'storms', 'would', 'you', 'trap', 'in', 'your', 'net,', '', 'And', 'what', 'vaporous', 'birds', 'do', 'you', 'hunt', 'in', 'sky?', '', 'Come', 'be', 'one', 'of', 'us.', '', 'Descend', 'appease', 'your', 'hunger', 'with', 'our', 'bread', 'quench', 'your', 'thirst', 'with', 'our', 'wine.”', '', 'In', 'solitude', 'of', 'their', 'souls', 'they', 'said', 'these', 'things;', '', 'But', 'were', 'their', 'solitude', 'deeper', 'they', 'would', 'have', 'known', 'that', 'I', 'sought', 'but', 'secret', 'of', 'your', 'joy', 'your', 'pain,', '', 'And', 'I', 'hunted', 'only', 'your', 'larger', 'selves', 'that', 'walk', 'sky.', '', '*****', '', 'But', 'hunter', 'was', 'also', 'hunted;', '', 'For', 'many', 'of', 'my', 'arrows', 'left', 'my', 'bow', 'only', 'to', 'seek', 'my', 'own', 'breast.', '', 'And', 'flier', 'was', 'also', 'creeper;', '', 'For', 'when', 'my', 'wings', 'were', 'spread', 'in', 'sun', 'their', 'shadow', 'upon', 'earth', 'was', 'turtle.', '', 'And', 'I', 'believer', 'was', 'also', 'doubter;', '', 'often', 'have', 'I', 'put', 'my', 'finger', 'in', 'my', 'own', 'wound', 'that', 'I', 'might', 'have', 'greater', 'belief', 'in', 'you', 'greater', 'knowledge', 'of', 'you.', '', '*****', '', 'And', 'it', 'is', 'with', 'this', 'belief', 'this', 'knowledge', 'that', 'I', 'say,', '', 'You', 'are', 'not', 'enclosed', 'within', 'your', 'bodies,', 'nor', 'confined', 'to', 'houses', 'or', 'fields.', '', 'That', 'which', 'is', 'you', 'dwells', 'above', 'mountain', 'roves', 'with', 'wind.', '', 'It', 'is', 'not', 'thing', 'that', 'crawls', 'into', 'sun', 'for', 'warmth', 'or', 'digs', 'holes', 'into', 'darkness', 'for', 'safety,', '', 'But', 'thing', 'free,', 'spirit', 'that', 'envelops', 'earth', 'moves', 'in', 'ether.', '', 'If', 'these', 'be', 'vague', 'words,', 'then', 'seek', 'not', 'to', 'clear', 'them.', '', 'Vague', 'nebulous', 'is', 'beginning', 'of', 'all', 'things,', 'but', 'not', 'their', 'end,', '', 'And', 'I', 'fain', 'would', 'have', 'you', 'remember', 'me', 'as', 'beginning.', '', 'Life,', 'all', 'that', 'lives,', 'is', 'conceived', 'in', 'mist', 'not', 'in', 'crystal.', '', 'who', 'knows', 'but', 'crystal', 'is', 'mist', 'in', 'decay?', '', '*****', '', 'This', 'would', 'I', 'have', 'you', 'remember', 'in', 'remembering', 'me:', '', 'That', 'which', 'seems', 'most', 'feeble', 'bewildered', 'in', 'you', 'is', 'strongest', 'most', 'determined.', '', 'Is', 'it', 'not', 'your', 'breath', 'that', 'has', 'erected', 'hardened', 'structure', 'of', 'your', 'bones?', '', 'And', 'is', 'it', 'not', 'dream', 'which', 'none', 'of', 'you', 'remember', 'having', 'dreamt,', 'that', 'builded', 'your', 'city', 'fashioned', 'all', 'there', 'is', 'in', 'it?', '', 'Could', 'you', 'but', 'see', 'tides', 'of', 'that', 'breath', 'you', 'would', 'cease', 'to', 'see', 'all', 'else,', '', 'And', 'if', 'you', 'could', 'hear', 'whispering', 'of', 'dream', 'you', 'would', 'hear', 'no', 'other', 'sound.', '', 'But', 'you', 'do', 'not', 'see,', 'nor', 'do', 'you', 'hear,', 'it', 'is', 'well.', '', 'The', 'veil', 'that', 'clouds', 'your', 'eyes', 'shall', 'be', 'lifted', 'by', 'hands', 'that', 'wove', 'it,', '', 'And', 'clay', 'that', 'fills', 'your', 'ears', 'shall', 'be', 'pierced', 'by', 'those', 'fingers', 'that', 'kneaded', 'it.', '', 'you', 'shall', 'see.', '', 'And', 'you', 'shall', 'hear.', '', 'Yet', 'you', 'shall', 'not', 'deplore', 'having', 'known', 'blindness,', 'nor', 'regret', 'having', 'been', 'deaf.', '', 'For', 'in', 'that', 'day', 'you', 'shall', 'know', 'hidden', 'purposes', 'in', 'all', 'things,', '', 'And', 'you', 'shall', 'bless', 'darkness', 'as', 'you', 'would', 'bless', 'light.', '', 'After', 'saying', 'these', 'things', 'he', 'looked', 'about', 'him,', 'he', 'saw', 'pilot', 'of', 'his', 'ship', 'standing', 'by', 'helm', 'gazing', 'now', 'at', 'full', 'sails', 'now', 'at', 'distance.', '', 'And', 'he', 'said:', '', 'Patient,', 'over', 'patient,', 'is', 'captain', 'of', 'my', 'ship.', '', 'The', 'wind', 'blows,', 'restless', 'are', 'sails;', '', 'Even', 'rudder', 'begs', 'direction;', '', 'Yet', 'quietly', 'my', 'captain', 'awaits', 'my', 'silence.', '', 'And', 'these', 'my', 'mariners,', 'who', 'have', 'heard', 'choir', 'of', 'greater', 'sea,', 'they', 'too', 'have', 'heard', 'me', 'patiently.', '', 'they', 'shall', 'wait', 'no', 'longer.', '', 'I', 'am', 'ready.', '', 'The', 'stream', 'has', 'reached', 'sea,', 'once', 'more', 'great', 'mother', 'holds', 'her', 'son', 'against', 'her', 'breast.', '', '*****', '', 'Fare', 'you', 'well,', 'people', 'of', 'Orphalese.', '', 'This', 'day', 'has', 'ended.', '', 'It', 'is', 'closing', 'upon', 'us', 'even', 'as', 'water-lily', 'upon', 'its', 'own', 'tomorrow.', '', 'What', 'was', 'given', 'us', 'here', 'we', 'shall', 'keep,', '', 'And', 'if', 'it', 'suffices', 'not,', 'then', 'again', 'must', 'we', 'come', 'together', 'together', 'stretch', 'our', 'hands', 'unto', 'giver.', '', 'Forget', 'not', 'that', 'I', 'shall', 'come', 'back', 'to', 'you.', '', 'A', 'little', 'while,', 'my', 'longing', 'shall', 'gather', 'dust', 'foam', 'for', 'another', 'body.', '', 'A', 'little', 'while,', 'moment', 'of', 'rest', 'upon', 'wind,', 'another', 'woman', 'shall', 'bear', 'me.', '', 'Farewell', 'to', 'you', 'youth', 'I', 'have', 'spent', 'with', 'you.', '', 'It', 'was', 'but', 'yesterday', 'we', 'met', 'in', 'dream.', '', 'have', 'sung', 'to', 'me', 'in', 'my', 'aloneness,', 'I', 'of', 'your', 'longings', 'have', 'built', 'tower', 'in', 'sky.', '', 'But', 'now', 'our', 'sleep', 'has', 'fled', 'our', 'dream', 'is', 'over,', 'it', 'is', 'no', 'longer', 'dawn.', '', 'The', 'noontide', 'is', 'upon', 'us', 'our', 'half', 'waking', 'has', 'turned', 'to', 'fuller', 'day,', 'we', 'must', 'part.', '', 'If', 'in', 'twilight', 'of', 'memory', 'we', 'should', 'meet', 'once', 'more,', 'we', 'shall', 'speak', 'again', 'together', 'you', 'shall', 'sing', 'to', 'me', 'deeper', 'song.', '', 'And', 'if', 'our', 'hands', 'should', 'meet', 'in', 'another', 'dream', 'we', 'shall', 'build', 'another', 'tower', 'in', 'sky.', '', '*****', '', 'So', 'saying', 'he', 'made', 'signal', 'to', 'seamen,', 'straightway', 'they', 'weighed', 'anchor', 'cast', 'ship', 'loose', 'from', 'its', 'moorings,', 'they', 'moved', 'eastward.', '', 'And', 'cry', 'came', 'from', 'people', 'as', 'from', 'single', 'heart,', 'it', 'rose', 'into', 'dusk', 'was', 'carried', 'out', 'over', 'sea', 'like', 'great', 'trumpeting.', '', 'Only', 'Almitra', 'was', 'silent,', 'gazing', 'after', '', 'ship', 'until', 'it', 'had', 'vanished', 'into', 'mist.', '', 'And', 'when', 'all', 'people', 'were', 'dispersed', 'she', 'still', 'stood', 'alone', 'upon', 'sea-wall,', 'remembering', 'in', 'her', 'heart', 'his', 'saying,', '', '“A', 'little', 'while,', 'moment', 'of', 'rest', 'upon', 'wind,', 'another', 'woman', 'shall', 'bear', 'me.”', '', '[Illustration:', '0134]', '', '', '', '', '', '', '', '', 'End', 'of', 'Project', 'Gutenberg', 'EBook', 'of', 'The', 'Prophet,', 'by', 'Kahlil', 'Gibran', '', '***', 'END', 'OF', 'THIS', 'PROJECT', 'GUTENBERG', 'EBOOK', 'THE', 'PROPHET', '***', '', '*****', 'This', 'file', 'should', 'be', 'named', '58585-0.txt', 'or', '58585-0.zip', '*****', 'This', 'all', 'associated', 'files', 'of', 'various', 'formats', 'will', 'be', 'found', 'in:', '', '', '', '', '', '', '', '', 'http://www.gutenberg.org/5/8/5/8/58585/', '', 'Produced', 'by', 'David', 'Widger', 'from', 'page', 'images', 'generously', 'provided', 'by', 'Internet', 'Archive', '', '', 'Updated', 'editions', 'will', 'replace', 'previous', 'one--the', 'old', 'editions', 'will', 'be', 'renamed.', '', 'Creating', 'works', 'from', 'print', 'editions', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', 'means', 'that', 'no', 'one', 'owns', 'United', 'States', 'copyright', 'in', 'these', 'works,', 'so', 'Foundation', '(and', 'you!)', 'can', 'copy', 'distribute', 'it', 'in', 'United', 'States', 'without', 'permission', 'without', 'paying', 'copyright', 'royalties.', 'Special', 'rules,', 'set', 'forth', 'in', 'General', 'Terms', 'of', 'Use', 'part', 'of', 'this', 'license,', 'apply', 'to', 'copying', 'distributing', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'to', 'protect', 'PROJECT', 'GUTENBERG-tm', 'concept', 'trademark.', 'Project', 'Gutenberg', 'is', 'registered', 'trademark,', 'may', 'not', 'be', 'used', 'if', 'you', 'charge', 'for', 'eBooks,', 'unless', 'you', 'receive', 'specific', 'permission.', 'If', 'you', 'do', 'not', 'charge', 'anything', 'for', 'copies', 'of', 'this', 'eBook,', 'complying', 'with', 'rules', 'is', 'very', 'easy.', 'You', 'may', 'use', 'this', 'eBook', 'for', 'nearly', 'any', 'purpose', 'such', 'as', 'creation', 'of', 'derivative', 'works,', 'reports,', 'performances', 'research.', 'They', 'may', 'be', 'modified', 'printed', 'given', 'away--you', 'may', 'do', 'practically', 'ANYTHING', 'in', 'United', 'States', 'with', 'eBooks', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law.', 'Redistribution', 'is', 'subject', 'to', 'trademark', 'license,', 'especially', 'commercial', 'redistribution.', '', 'START:', 'FULL', 'LICENSE', '', 'THE', 'FULL', 'PROJECT', 'GUTENBERG', 'LICENSE', 'PLEASE', 'READ', 'THIS', 'BEFORE', 'YOU', 'DISTRIBUTE', 'OR', 'USE', 'THIS', 'WORK', '', 'To', 'protect', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting', 'free', 'distribution', 'of', 'electronic', 'works,', 'by', 'using', 'or', 'distributing', 'this', 'work', '(or', 'any', 'other', 'work', 'associated', 'in', 'any', 'way', 'with', 'phrase', '\"Project', 'Gutenberg\"),', 'you', 'agree', 'to', 'comply', 'with', 'all', 'terms', 'of', 'Full', 'Project', 'Gutenberg-tm', 'License', 'available', 'with', 'this', 'file', 'or', 'online', 'at', 'www.gutenberg.org/license.', '', 'Section', '1.', 'General', 'Terms', 'of', 'Use', 'Redistributing', 'Project', 'Gutenberg-tm', 'electronic', 'works', '', '1.A.', 'By', 'reading', 'or', 'using', 'any', 'part', 'of', 'this', 'Project', 'Gutenberg-tm', 'electronic', 'work,', 'you', 'indicate', 'that', 'you', 'have', 'read,', 'understand,', 'agree', 'to', 'accept', 'all', 'terms', 'of', 'this', 'license', 'intellectual', 'property', '(trademark/copyright)', 'agreement.', 'If', 'you', 'do', 'not', 'agree', 'to', 'abide', 'by', 'all', 'terms', 'of', 'this', 'agreement,', 'you', 'must', 'cease', 'using', 'return', 'or', 'destroy', 'all', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in', 'your', 'possession.', 'If', 'you', 'paid', 'fee', 'for', 'obtaining', 'copy', 'of', 'or', 'access', 'to', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'you', 'do', 'not', 'agree', 'to', 'be', 'bound', 'by', 'terms', 'of', 'this', 'agreement,', 'you', 'may', 'obtain', 'refund', 'from', 'person', 'or', 'entity', 'to', 'whom', 'you', 'paid', 'fee', 'as', 'set', 'forth', 'in', 'paragraph', '1.E.8.', '', '1.B.', '\"Project', 'Gutenberg\"', 'is', 'registered', 'trademark.', 'It', 'may', 'only', 'be', 'used', 'on', 'or', 'associated', 'in', 'any', 'way', 'with', 'electronic', 'work', 'by', 'people', 'who', 'agree', 'to', 'be', 'bound', 'by', 'terms', 'of', 'this', 'agreement.', 'There', 'are', 'few', 'things', 'that', 'you', 'can', 'do', 'with', 'most', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'even', 'without', 'complying', 'with', 'full', 'terms', 'of', 'this', 'agreement.', 'See', 'paragraph', '1.C', 'below.', 'There', 'are', 'lot', 'of', 'things', 'you', 'can', 'do', 'with', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'if', 'you', 'follow', 'terms', 'of', 'this', 'agreement', 'help', 'preserve', 'free', 'future', 'access', 'to', 'Project', 'Gutenberg-tm', 'electronic', 'works.', 'See', 'paragraph', '1.E', 'below.', '', '1.C.', 'The', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', '(\"the', 'Foundation\"', 'or', 'PGLAF),', 'owns', 'compilation', 'copyright', 'in', 'collection', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works.', 'Nearly', 'all', 'individual', 'works', 'in', 'collection', 'are', 'in', 'public', 'domain', 'in', 'United', 'States.', 'If', 'individual', 'work', 'is', 'unprotected', 'by', 'copyright', 'law', 'in', 'United', 'States', 'you', 'are', 'located', 'in', 'United', 'States,', 'we', 'do', 'not', 'claim', 'right', 'to', 'prevent', 'you', 'from', 'copying,', 'distributing,', 'performing,', 'displaying', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'work', 'as', 'long', 'as', 'all', 'references', 'to', 'Project', 'Gutenberg', 'are', 'removed.', 'Of', 'course,', 'we', 'hope', 'that', 'you', 'will', 'support', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting', 'free', 'access', 'to', 'electronic', 'works', 'by', 'freely', 'sharing', 'Project', 'Gutenberg-tm', 'works', 'in', 'compliance', 'with', 'terms', 'of', 'this', 'agreement', 'for', 'keeping', 'Project', 'Gutenberg-tm', 'name', 'associated', 'with', 'work.', 'You', 'can', 'easily', 'comply', 'with', 'terms', 'of', 'this', 'agreement', 'by', 'keeping', 'this', 'work', 'in', 'same', 'format', 'with', 'its', 'attached', 'full', 'Project', 'Gutenberg-tm', 'License', 'when', 'you', 'share', 'it', 'without', 'charge', 'with', 'others.', '', '1.D.', 'The', 'copyright', 'laws', 'of', 'place', 'where', 'you', 'are', 'located', 'also', 'govern', 'what', 'you', 'can', 'do', 'with', 'this', 'work.', 'Copyright', 'laws', 'in', 'most', 'countries', 'are', 'in', 'constant', 'state', 'of', 'change.', 'If', 'you', 'are', 'outside', 'United', 'States,', 'check', 'laws', 'of', 'your', 'country', 'in', 'addition', 'to', 'terms', 'of', 'this', 'agreement', 'before', 'downloading,', 'copying,', 'displaying,', 'performing,', 'distributing', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'this', 'work', 'or', 'any', 'other', 'Project', 'Gutenberg-tm', 'work.', 'The', 'Foundation', 'makes', 'no', 'representations', 'concerning', 'copyright', 'status', 'of', 'any', 'work', 'in', 'any', 'country', 'outside', 'United', 'States.', '', '1.E.', 'Unless', 'you', 'have', 'removed', 'all', 'references', 'to', 'Project', 'Gutenberg:', '', '1.E.1.', 'The', 'following', 'sentence,', 'with', 'active', 'links', 'to,', 'or', 'other', 'immediate', 'access', 'to,', 'full', 'Project', 'Gutenberg-tm', 'License', 'must', 'appear', 'prominently', 'whenever', 'any', 'copy', 'of', 'Project', 'Gutenberg-tm', 'work', '(any', 'work', 'on', 'which', 'phrase', '\"Project', 'Gutenberg\"', 'appears,', 'or', 'with', 'which', 'phrase', '\"Project', 'Gutenberg\"', 'is', 'associated)', 'is', 'accessed,', 'displayed,', 'performed,', 'viewed,', 'copied', 'or', 'distributed:', '', '', '', 'This', 'eBook', 'is', 'for', 'use', 'of', 'anyone', 'anywhere', 'in', 'United', 'States', '', '', 'most', 'other', 'parts', 'of', 'world', 'at', 'no', 'cost', 'with', 'almost', 'no', '', '', 'restrictions', 'whatsoever.', 'You', 'may', 'copy', 'it,', 'give', 'it', 'away', 'or', 're-use', 'it', '', '', 'under', 'terms', 'of', 'Project', 'Gutenberg', 'License', 'included', 'with', 'this', '', '', 'eBook', 'or', 'online', 'at', 'www.gutenberg.org.', 'If', 'you', 'are', 'not', 'located', 'in', '', '', 'United', 'States,', \"you'll\", 'have', 'to', 'check', 'laws', 'of', 'country', 'where', 'you', '', '', 'are', 'located', 'before', 'using', 'this', 'ebook.', '', '1.E.2.', 'If', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is', 'derived', 'from', 'texts', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', '(does', 'not', 'contain', 'notice', 'indicating', 'that', 'it', 'is', 'posted', 'with', 'permission', 'of', 'copyright', 'holder),', 'work', 'can', 'be', 'copied', 'distributed', 'to', 'anyone', 'in', 'United', 'States', 'without', 'paying', 'any', 'fees', 'or', 'charges.', 'If', 'you', 'are', 'redistributing', 'or', 'providing', 'access', 'to', 'work', 'with', 'phrase', '\"Project', 'Gutenberg\"', 'associated', 'with', 'or', 'appearing', 'on', 'work,', 'you', 'must', 'comply', 'either', 'with', 'requirements', 'of', 'paragraphs', '1.E.1', 'through', '1.E.7', 'or', 'obtain', 'permission', 'for', 'use', 'of', 'work', 'Project', 'Gutenberg-tm', 'trademark', 'as', 'set', 'forth', 'in', 'paragraphs', '1.E.8', 'or', '1.E.9.', '', '1.E.3.', 'If', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is', 'posted', 'with', 'permission', 'of', 'copyright', 'holder,', 'your', 'use', 'distribution', 'must', 'comply', 'with', 'both', 'paragraphs', '1.E.1', 'through', '1.E.7', 'any', 'additional', 'terms', 'imposed', 'by', 'copyright', 'holder.', 'Additional', 'terms', 'will', 'be', 'linked', 'to', 'Project', 'Gutenberg-tm', 'License', 'for', 'all', 'works', 'posted', 'with', 'permission', 'of', 'copyright', 'holder', 'found', 'at', 'beginning', 'of', 'this', 'work.', '', '1.E.4.', 'Do', 'not', 'unlink', 'or', 'detach', 'or', 'remove', 'full', 'Project', 'Gutenberg-tm', 'License', 'terms', 'from', 'this', 'work,', 'or', 'any', 'files', 'containing', 'part', 'of', 'this', 'work', 'or', 'any', 'other', 'work', 'associated', 'with', 'Project', 'Gutenberg-tm.', '', '1.E.5.', 'Do', 'not', 'copy,', 'display,', 'perform,', 'distribute', 'or', 'redistribute', 'this', 'electronic', 'work,', 'or', 'any', 'part', 'of', 'this', 'electronic', 'work,', 'without', 'prominently', 'displaying', 'sentence', 'set', 'forth', 'in', 'paragraph', '1.E.1', 'with', 'active', 'links', 'or', 'immediate', 'access', 'to', 'full', 'terms', 'of', 'Project', 'Gutenberg-tm', 'License.', '', '1.E.6.', 'You', 'may', 'convert', 'to', 'distribute', 'this', 'work', 'in', 'any', 'binary,', 'compressed,', 'marked', 'up,', 'nonproprietary', 'or', 'proprietary', 'form,', 'including', 'any', 'word', 'processing', 'or', 'hypertext', 'form.', 'However,', 'if', 'you', 'provide', 'access', 'to', 'or', 'distribute', 'copies', 'of', 'Project', 'Gutenberg-tm', 'work', 'in', 'format', 'other', 'than', '\"Plain', 'Vanilla', 'ASCII\"', 'or', 'other', 'format', 'used', 'in', 'official', 'version', 'posted', 'on', 'official', 'Project', 'Gutenberg-tm', 'web', 'site', '(www.gutenberg.org),', 'you', 'must,', 'at', 'no', 'additional', 'cost,', 'fee', 'or', 'expense', 'to', 'user,', 'provide', 'copy,', 'means', 'of', 'exporting', 'copy,', 'or', 'means', 'of', 'obtaining', 'copy', 'upon', 'request,', 'of', 'work', 'in', 'its', 'original', '\"Plain', 'Vanilla', 'ASCII\"', 'or', 'other', 'form.', 'Any', 'alternate', 'format', 'must', 'include', 'full', 'Project', 'Gutenberg-tm', 'License', 'as', 'specified', 'in', 'paragraph', '1.E.1.', '', '1.E.7.', 'Do', 'not', 'charge', 'fee', 'for', 'access', 'to,', 'viewing,', 'displaying,', 'performing,', 'copying', 'or', 'distributing', 'any', 'Project', 'Gutenberg-tm', 'works', 'unless', 'you', 'comply', 'with', 'paragraph', '1.E.8', 'or', '1.E.9.', '', '1.E.8.', 'You', 'may', 'charge', 'reasonable', 'fee', 'for', 'copies', 'of', 'or', 'providing', 'access', 'to', 'or', 'distributing', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'provided', 'that', '', '*', 'You', 'pay', 'royalty', 'fee', 'of', '20%', 'of', 'gross', 'profits', 'you', 'derive', 'from', '', '', 'use', 'of', 'Project', 'Gutenberg-tm', 'works', 'calculated', 'using', 'method', '', '', 'you', 'already', 'use', 'to', 'calculate', 'your', 'applicable', 'taxes.', 'The', 'fee', 'is', 'owed', '', '', 'to', 'owner', 'of', 'Project', 'Gutenberg-tm', 'trademark,', 'but', 'he', 'has', '', '', 'agreed', 'to', 'donate', 'royalties', 'under', 'this', 'paragraph', 'to', 'Project', '', '', 'Gutenberg', 'Literary', 'Archive', 'Foundation.', 'Royalty', 'payments', 'must', 'be', 'paid', '', '', 'within', '60', 'days', 'following', 'each', 'date', 'on', 'which', 'you', 'prepare', '(or', 'are', '', '', 'legally', 'required', 'to', 'prepare)', 'your', 'periodic', 'tax', 'returns.', 'Royalty', '', '', 'payments', 'should', 'be', 'clearly', 'marked', 'as', 'such', 'sent', 'to', 'Project', '', '', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'at', 'address', 'specified', 'in', '', '', 'Section', '4,', '\"Information', 'about', 'donations', 'to', 'Project', 'Gutenberg', '', '', 'Literary', 'Archive', 'Foundation.\"', '', '*', 'You', 'provide', 'full', 'refund', 'of', 'any', 'money', 'paid', 'by', 'user', 'who', 'notifies', '', '', 'you', 'in', 'writing', '(or', 'by', 'e-mail)', 'within', '30', 'days', 'of', 'receipt', 'that', 's/he', '', '', 'does', 'not', 'agree', 'to', 'terms', 'of', 'full', 'Project', 'Gutenberg-tm', '', '', 'License.', 'You', 'must', 'require', 'such', 'user', 'to', 'return', 'or', 'destroy', 'all', '', '', 'copies', 'of', 'works', 'possessed', 'in', 'physical', 'medium', 'discontinue', '', '', 'all', 'use', 'of', 'all', 'access', 'to', 'other', 'copies', 'of', 'Project', 'Gutenberg-tm', '', '', 'works.', '', '*', 'You', 'provide,', 'in', 'accordance', 'with', 'paragraph', '1.F.3,', 'full', 'refund', 'of', '', '', 'any', 'money', 'paid', 'for', 'work', 'or', 'replacement', 'copy,', 'if', 'defect', 'in', '', '', 'electronic', 'work', 'is', 'discovered', 'reported', 'to', 'you', 'within', '90', 'days', 'of', '', '', 'receipt', 'of', 'work.', '', '*', 'You', 'comply', 'with', 'all', 'other', 'terms', 'of', 'this', 'agreement', 'for', 'free', '', '', 'distribution', 'of', 'Project', 'Gutenberg-tm', 'works.', '', '1.E.9.', 'If', 'you', 'wish', 'to', 'charge', 'fee', 'or', 'distribute', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'or', 'group', 'of', 'works', 'on', 'different', 'terms', 'than', 'are', 'set', 'forth', 'in', 'this', 'agreement,', 'you', 'must', 'obtain', 'permission', 'in', 'writing', 'from', 'both', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'The', 'Project', 'Gutenberg', 'Trademark', 'LLC,', 'owner', 'of', 'Project', 'Gutenberg-tm', 'trademark.', 'Contact', 'Foundation', 'as', 'set', 'forth', 'in', 'Section', '3', 'below.', '', '1.F.', '', '1.F.1.', 'Project', 'Gutenberg', 'volunteers', 'employees', 'expend', 'considerable', 'effort', 'to', 'identify,', 'do', 'copyright', 'research', 'on,', 'transcribe', 'proofread', 'works', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', 'in', 'creating', 'Project', 'Gutenberg-tm', 'collection.', 'Despite', 'these', 'efforts,', 'Project', 'Gutenberg-tm', 'electronic', 'works,', 'medium', 'on', 'which', 'they', 'may', 'be', 'stored,', 'may', 'contain', '\"Defects,\"', 'such', 'as,', 'but', 'not', 'limited', 'to,', 'incomplete,', 'inaccurate', 'or', 'corrupt', 'data,', 'transcription', 'errors,', 'copyright', 'or', 'other', 'intellectual', 'property', 'infringement,', 'defective', 'or', 'damaged', 'disk', 'or', 'other', 'medium,', 'computer', 'virus,', 'or', 'computer', 'codes', 'that', 'damage', 'or', 'cannot', 'be', 'read', 'by', 'your', 'equipment.', '', '1.F.2.', 'LIMITED', 'WARRANTY,', 'DISCLAIMER', 'OF', 'DAMAGES', '-', 'Except', 'for', '\"Right', 'of', 'Replacement', 'or', 'Refund\"', 'described', 'in', 'paragraph', '1.F.3,', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation,', 'owner', 'of', 'Project', 'Gutenberg-tm', 'trademark,', 'any', 'other', 'party', 'distributing', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'under', 'this', 'agreement,', 'disclaim', 'all', 'liability', 'to', 'you', 'for', 'damages,', 'costs', 'expenses,', 'including', 'legal', 'fees.', 'YOU', 'AGREE', 'THAT', 'YOU', 'HAVE', 'NO', 'REMEDIES', 'FOR', 'NEGLIGENCE,', 'STRICT', 'LIABILITY,', 'BREACH', 'OF', 'WARRANTY', 'OR', 'BREACH', 'OF', 'CONTRACT', 'EXCEPT', 'THOSE', 'PROVIDED', 'IN', 'PARAGRAPH', '1.F.3.', 'YOU', 'AGREE', 'THAT', 'THE', 'FOUNDATION,', 'THE', 'TRADEMARK', 'OWNER,', 'AND', 'ANY', 'DISTRIBUTOR', 'UNDER', 'THIS', 'AGREEMENT', 'WILL', 'NOT', 'BE', 'LIABLE', 'TO', 'YOU', 'FOR', 'ACTUAL,', 'DIRECT,', 'INDIRECT,', 'CONSEQUENTIAL,', 'PUNITIVE', 'OR', 'INCIDENTAL', 'DAMAGES', 'EVEN', 'IF', 'YOU', 'GIVE', 'NOTICE', 'OF', 'THE', 'POSSIBILITY', 'OF', 'SUCH', 'DAMAGE.', '', '1.F.3.', 'LIMITED', 'RIGHT', 'OF', 'REPLACEMENT', 'OR', 'REFUND', '-', 'If', 'you', 'discover', 'defect', 'in', 'this', 'electronic', 'work', 'within', '90', 'days', 'of', 'receiving', 'it,', 'you', 'can', 'receive', 'refund', 'of', 'money', '(if', 'any)', 'you', 'paid', 'for', 'it', 'by', 'sending', 'written', 'explanation', 'to', 'person', 'you', 'received', 'work', 'from.', 'If', 'you', 'received', 'work', 'on', 'physical', 'medium,', 'you', 'must', 'return', 'medium', 'with', 'your', 'written', 'explanation.', 'The', 'person', 'or', 'entity', 'that', 'provided', 'you', 'with', 'defective', 'work', 'may', 'elect', 'to', 'provide', 'replacement', 'copy', 'in', 'lieu', 'of', 'refund.', 'If', 'you', 'received', 'work', 'electronically,', 'person', 'or', 'entity', 'providing', 'it', 'to', 'you', 'may', 'choose', 'to', 'give', 'you', 'second', 'opportunity', 'to', 'receive', 'work', 'electronically', 'in', 'lieu', 'of', 'refund.', 'If', 'second', 'copy', 'is', 'also', 'defective,', 'you', 'may', 'demand', 'refund', 'in', 'writing', 'without', 'further', 'opportunities', 'to', 'fix', 'problem.', '', '1.F.4.', 'Except', 'for', 'limited', 'right', 'of', 'replacement', 'or', 'refund', 'set', 'forth', 'in', 'paragraph', '1.F.3,', 'this', 'work', 'is', 'provided', 'to', 'you', \"'AS-IS',\", 'WITH', 'NO', 'OTHER', 'WARRANTIES', 'OF', 'ANY', 'KIND,', 'EXPRESS', 'OR', 'IMPLIED,', 'INCLUDING', 'BUT', 'NOT', 'LIMITED', 'TO', 'WARRANTIES', 'OF', 'MERCHANTABILITY', 'OR', 'FITNESS', 'FOR', 'ANY', 'PURPOSE.', '', '1.F.5.', 'Some', 'states', 'do', 'not', 'allow', 'disclaimers', 'of', 'certain', 'implied', 'warranties', 'or', 'exclusion', 'or', 'limitation', 'of', 'certain', 'types', 'of', 'damages.', 'If', 'any', 'disclaimer', 'or', 'limitation', 'set', 'forth', 'in', 'this', 'agreement', 'violates', 'law', 'of', 'state', 'applicable', 'to', 'this', 'agreement,', 'agreement', 'shall', 'be', 'interpreted', 'to', 'make', 'maximum', 'disclaimer', 'or', 'limitation', 'permitted', 'by', 'applicable', 'state', 'law.', 'The', 'invalidity', 'or', 'unenforceability', 'of', 'any', 'provision', 'of', 'this', 'agreement', 'shall', 'not', 'void', 'remaining', 'provisions.', '', '1.F.6.', 'INDEMNITY', '-', 'You', 'agree', 'to', 'indemnify', 'hold', 'Foundation,', 'trademark', 'owner,', 'any', 'agent', 'or', 'employee', 'of', 'Foundation,', 'anyone', 'providing', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in', 'accordance', 'with', 'this', 'agreement,', 'any', 'volunteers', 'associated', 'with', 'production,', 'promotion', 'distribution', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works,', 'harmless', 'from', 'all', 'liability,', 'costs', 'expenses,', 'including', 'legal', 'fees,', 'that', 'arise', 'directly', 'or', 'indirectly', 'from', 'any', 'of', 'following', 'which', 'you', 'do', 'or', 'cause', 'to', 'occur:', '(a)', 'distribution', 'of', 'this', 'or', 'any', 'Project', 'Gutenberg-tm', 'work,', '(b)', 'alteration,', 'modification,', 'or', 'additions', 'or', 'deletions', 'to', 'any', 'Project', 'Gutenberg-tm', 'work,', '(c)', 'any', 'Defect', 'you', 'cause.', '', 'Section', '2.', 'Information', 'about', 'Mission', 'of', 'Project', 'Gutenberg-tm', '', 'Project', 'Gutenberg-tm', 'is', 'synonymous', 'with', 'free', 'distribution', 'of', 'electronic', 'works', 'in', 'formats', 'readable', 'by', 'widest', 'variety', 'of', 'computers', 'including', 'obsolete,', 'old,', 'middle-aged', 'new', 'computers.', 'It', 'exists', 'because', 'of', 'efforts', 'of', 'hundreds', 'of', 'volunteers', 'donations', 'from', 'people', 'in', 'all', 'walks', 'of', 'life.', '', 'Volunteers', 'financial', 'support', 'to', 'provide', 'volunteers', 'with', 'assistance', 'they', 'need', 'are', 'critical', 'to', 'reaching', 'Project', \"Gutenberg-tm's\", 'goals', 'ensuring', 'that', 'Project', 'Gutenberg-tm', 'collection', 'will', 'remain', 'freely', 'available', 'for', 'generations', 'to', 'come.', 'In', '2001,', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'was', 'created', 'to', 'provide', 'secure', 'permanent', 'future', 'for', 'Project', 'Gutenberg-tm', 'future', 'generations.', 'To', 'learn', 'more', 'about', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'how', 'your', 'efforts', 'donations', 'can', 'help,', 'see', 'Sections', '3', '4', 'Foundation', 'information', 'page', 'at', 'www.gutenberg.org', 'Section', '3.', 'Information', 'about', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', '', 'The', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'is', 'non', 'profit', '501(c)(3)', 'educational', 'corporation', 'organized', 'under', 'laws', 'of', 'state', 'of', 'Mississippi', 'granted', 'tax', 'exempt', 'status', 'by', 'Internal', 'Revenue', 'Service.', 'The', \"Foundation's\", 'EIN', 'or', 'federal', 'tax', 'identification', 'number', 'is', '64-6221541.', 'Contributions', 'to', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'are', 'tax', 'deductible', 'to', 'full', 'extent', 'permitted', 'by', 'U.S.', 'federal', 'laws', 'your', \"state's\", 'laws.', '', 'The', \"Foundation's\", 'principal', 'office', 'is', 'in', 'Fairbanks,', 'Alaska,', 'with', 'mailing', 'address:', 'PO', 'Box', '750175,', 'Fairbanks,', 'AK', '99775,', 'but', 'its', 'volunteers', 'employees', 'are', 'scattered', 'throughout', 'numerous', 'locations.', 'Its', 'business', 'office', 'is', 'located', 'at', '809', 'North', '1500', 'West,', 'Salt', 'Lake', 'City,', 'UT', '84116,', '(801)', '596-1887.', 'Email', 'contact', 'links', 'up', 'to', 'date', 'contact', 'information', 'can', 'be', 'found', 'at', \"Foundation's\", 'web', 'site', 'official', 'page', 'at', 'www.gutenberg.org/contact', '', 'For', 'additional', 'contact', 'information:', '', '', '', '', '', 'Dr.', 'Gregory', 'B.', 'Newby', '', '', '', '', 'Chief', 'Executive', 'Director', '', '', '', '', 'gbnewby@pglaf.org', '', 'Section', '4.', 'Information', 'about', 'Donations', 'to', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', '', 'Project', 'Gutenberg-tm', 'depends', 'upon', 'cannot', 'survive', 'without', 'wide', 'spread', 'public', 'support', 'donations', 'to', 'carry', 'out', 'its', 'mission', 'of', 'increasing', 'number', 'of', 'public', 'domain', 'licensed', 'works', 'that', 'can', 'be', 'freely', 'distributed', 'in', 'machine', 'readable', 'form', 'accessible', 'by', 'widest', 'array', 'of', 'equipment', 'including', 'outdated', 'equipment.', 'Many', 'small', 'donations', '($1', 'to', '$5,000)', 'are', 'particularly', 'important', 'to', 'maintaining', 'tax', 'exempt', 'status', 'with', 'IRS.', '', 'The', 'Foundation', 'is', 'committed', 'to', 'complying', 'with', 'laws', 'regulating', 'charities', 'charitable', 'donations', 'in', 'all', '50', 'states', 'of', 'United', 'States.', 'Compliance', 'requirements', 'are', 'not', 'uniform', 'it', 'takes', 'considerable', 'effort,', 'much', 'paperwork', 'many', 'fees', 'to', 'meet', 'keep', 'up', 'with', 'these', 'requirements.', 'We', 'do', 'not', 'solicit', 'donations', 'in', 'locations', 'where', 'we', 'have', 'not', 'received', 'written', 'confirmation', 'of', 'compliance.', 'To', 'SEND', 'DONATIONS', 'or', 'determine', 'status', 'of', 'compliance', 'for', 'any', 'particular', 'state', 'visit', 'www.gutenberg.org/donate', '', 'While', 'we', 'cannot', 'do', 'not', 'solicit', 'contributions', 'from', 'states', 'where', 'we', 'have', 'not', 'met', 'solicitation', 'requirements,', 'we', 'know', 'of', 'no', 'prohibition', 'against', 'accepting', 'unsolicited', 'donations', 'from', 'donors', 'in', 'such', 'states', 'who', 'approach', 'us', 'with', 'offers', 'to', 'donate.', '', 'International', 'donations', 'are', 'gratefully', 'accepted,', 'but', 'we', 'cannot', 'make', 'any', 'statements', 'concerning', 'tax', 'treatment', 'of', 'donations', 'received', 'from', 'outside', 'United', 'States.', 'U.S.', 'laws', 'alone', 'swamp', 'our', 'small', 'staff.', '', 'Please', 'check', 'Project', 'Gutenberg', 'Web', 'pages', 'for', 'current', 'donation', 'methods', 'addresses.', 'Donations', 'are', 'accepted', 'in', 'number', 'of', 'other', 'ways', 'including', 'checks,', 'online', 'payments', 'credit', 'card', 'donations.', 'To', 'donate,', 'please', 'visit:', 'www.gutenberg.org/donate', '', 'Section', '5.', 'General', 'Information', 'About', 'Project', 'Gutenberg-tm', 'electronic', 'works.', '', 'Professor', 'Michael', 'S.', 'Hart', 'was', 'originator', 'of', 'Project', 'Gutenberg-tm', 'concept', 'of', 'library', 'of', 'electronic', 'works', 'that', 'could', 'be', 'freely', 'shared', 'with', 'anyone.', 'For', 'forty', 'years,', 'he', 'produced', 'distributed', 'Project', 'Gutenberg-tm', 'eBooks', 'with', 'only', 'loose', 'network', 'of', 'volunteer', 'support.', '', 'Project', 'Gutenberg-tm', 'eBooks', 'are', 'often', 'created', 'from', 'several', 'printed', 'editions,', 'all', 'of', 'which', 'are', 'confirmed', 'as', 'not', 'protected', 'by', 'copyright', 'in', 'U.S.', 'unless', 'copyright', 'notice', 'is', 'included.', 'Thus,', 'we', 'do', 'not', 'necessarily', 'keep', 'eBooks', 'in', 'compliance', 'with', 'any', 'particular', 'paper', 'edition.', '', 'Most', 'people', 'start', 'at', 'our', 'Web', 'site', 'which', 'has', 'main', 'PG', 'search', 'facility:', 'www.gutenberg.org', '', 'This', 'Web', 'site', 'includes', 'information', 'about', 'Project', 'Gutenberg-tm,', 'including', 'how', 'to', 'make', 'donations', 'to', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation,', 'how', 'to', 'help', 'produce', 'our', 'new', 'eBooks,', 'how', 'to', 'subscribe', 'to', 'our', 'email', 'newsletter', 'to', 'hear', 'about', 'new', 'eBooks.', '', '']\n" + ] + } + ], "source": [ + "word_list = ['and', 'the', 'a', 'an']\n", + "\n", "def word_filter(x):\n", - " '''\n", - " Input: A string\n", - " Output: True if the word is not in the specified list \n", - " and False if the word is in the list.\n", - " \n", - " Example:\n", - " word list = ['and', 'the']\n", - " Input: 'and'\n", - " Output: False\n", - " \n", - " Input: 'John'\n", - " Output: True\n", - " '''\n", - " \n", - " word_list = ['and', 'the', 'a', 'an']\n", - " \n", - " # your code here" + " return x not in word_list\n", + "\n", + "prophet_filter = list(filter(word_filter,prophet_flat))\n", + "print(prophet_filter)\n" ] }, { @@ -232,15 +2353,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 32, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['', '|Almustafa,', 'chosen', 'beloved,', 'who', 'was', 'dawn', 'unto', 'his', 'own', 'day,', 'had', 'waited', 'twelve', 'years', 'in', 'city', 'of', 'Orphalese', 'for', 'his', 'ship', 'that', 'was', 'to', 'return', 'bear', 'him', 'back', 'to', 'isle', 'of', 'his', 'birth.', '', 'in', 'twelfth', 'year,', 'on', 'seventh', 'day', 'of', 'Ielool,', 'month', 'of', 'reaping,', 'he', 'climbed', 'hill', 'without', 'city', 'walls', 'looked', 'seaward;', 'he', 'beheld', 'his', 'ship', 'coming', 'with', 'mist.', '', 'Then', 'gates', 'of', 'his', 'heart', 'were', 'flung', 'open,', 'his', 'joy', 'flew', 'far', 'over', 'sea.', 'he', 'closed', 'his', 'eyes', 'prayed', 'in', 'silences', 'of', 'his', 'soul.', '', '*****', '', 'But', 'as', 'he', 'descended', 'hill,', 'sadness', 'came', 'upon', 'him,', 'he', 'thought', 'in', 'his', 'heart:', '', 'How', 'shall', 'I', 'go', 'in', 'peace', 'without', 'sorrow?', 'Nay,', 'not', 'without', 'wound', 'in', 'spirit', 'shall', 'I', 'leave', 'this', 'city.', '', 'days', 'of', 'pain', 'I', 'have', 'spent', 'within', 'its', 'walls,', 'long', 'were', 'nights', 'of', 'aloneness;', 'who', 'can', 'depart', 'from', 'his', 'pain', 'his', 'aloneness', 'without', 'regret?', '', 'Too', 'many', 'fragments', 'of', 'spirit', 'have', 'I', 'scattered', 'in', 'these', 'streets,', 'too', 'many', 'are', 'children', 'of', 'my', 'longing', 'that', 'walk', 'naked', 'among', 'these', 'hills,', 'I', 'cannot', 'withdraw', 'from', 'them', 'without', 'burden', 'ache.', '', 'It', 'is', 'not', 'garment', 'I', 'cast', 'off', 'this', 'day,', 'but', 'skin', 'that', 'I', 'tear', 'with', 'my', 'own', 'hands.', '', 'Nor', 'is', 'it', 'thought', 'I', 'leave', 'behind', 'me,', 'but', 'heart', 'made', 'sweet', 'with', 'hunger', 'with', 'thirst.', '', '*****', '', 'Yet', 'I', 'cannot', 'tarry', 'longer.', '', 'sea', 'that', 'calls', 'all', 'things', 'unto', 'her', 'calls', 'me,', 'I', 'must', 'embark.', '', 'For', 'to', 'stay,', 'though', 'hours', 'burn', 'in', 'night,', 'is', 'to', 'freeze', 'crystallize', 'be', 'bound', 'in', 'mould.', '', 'Fain', 'would', 'I', 'take', 'with', 'me', 'all', 'that', 'is', 'here.', 'But', 'how', 'shall', 'I?', '', 'voice', 'cannot', 'carry', 'tongue', '', 'lips', 'that', 'gave', 'it', 'wings.', 'Alone', 'must', 'it', 'seek', 'ether.', '', 'alone', 'without', 'his', 'nest', 'shall', 'eagle', 'fly', 'across', 'sun.', '', '*****', '', 'Now', 'when', 'he', 'reached', 'foot', 'of', 'hill,', 'he', 'turned', 'again', 'towards', 'sea,', 'he', 'saw', 'his', 'ship', 'approaching', 'harbour,', 'upon', 'her', 'prow', 'mariners,', 'men', 'of', 'his', 'own', 'land.', '', 'his', 'soul', 'cried', 'out', 'to', 'them,', 'he', 'said:', '', 'Sons', 'of', 'my', 'ancient', 'mother,', 'you', 'riders', 'of', 'tides,', '', 'How', 'often', 'have', 'you', 'sailed', 'in', 'my', 'dreams.', 'now', 'you', 'come', 'in', 'my', 'awakening,', 'which', 'is', 'my', 'deeper', 'dream.', '', 'Ready', 'am', 'I', 'to', 'go,', 'my', 'eagerness', 'with', 'sails', 'full', 'set', 'awaits', 'wind.', '', 'Only', 'another', 'breath', 'will', 'I', 'breathe', 'in', 'this', 'still', 'air,', 'only', 'another', 'loving', 'look', 'cast', 'backward,', '', 'then', 'I', 'shall', 'stand', 'among', 'you,', 'seafarer', 'among', 'seafarers.', '', 'you,', 'vast', 'sea,', 'sleepless', 'mother,', '', 'Who', 'alone', 'are', 'peace', 'freedom', 'to', 'river', 'stream,', '', 'Only', 'another', 'winding', 'will', 'this', 'stream', 'make,', 'only', 'another', 'murmur', 'in', 'this', 'glade,', '', 'then', 'shall', 'I', 'come', 'to', 'you,', 'boundless', 'drop', 'to', 'boundless', 'ocean.', '', '*****', '', 'as', 'he', 'walked', 'he', 'saw', 'from', 'afar', 'men', 'women', 'leaving', 'their', 'fields', 'their', 'vineyards', 'hastening', 'towards', 'city', 'gates.', '', 'he', 'heard', 'their', 'voices', 'calling', 'his', 'name,', 'shouting', 'from', 'field', 'to', 'field', 'telling', 'one', 'another', 'of', 'coming', 'of', 'his', 'ship.', '', 'he', 'said', 'to', 'himself:', '', 'Shall', 'day', 'of', 'parting', 'be', 'day', 'of', 'gathering?', '', 'shall', 'it', 'be', 'said', 'that', 'my', 'eve', 'was', 'in', 'truth', 'my', 'dawn?', '', 'what', 'shall', 'I', 'give', 'unto', 'him', 'who', 'has', 'left', 'his', 'plough', 'in', 'midfurrow,', 'or', 'to', 'him', 'who', 'has', 'stopped', 'wheel', 'of', 'his', 'winepress?', '', 'my', 'heart', 'become', 'tree', 'heavy-laden', 'with', 'fruit', 'that', 'I', 'may', 'gather', 'give', 'unto', 'them?', '', 'shall', 'my', 'desires', 'flow', 'like', 'fountain', 'that', 'I', 'may', 'fill', 'their', 'cups?', '', 'Am', 'I', 'harp', 'that', 'hand', 'of', 'mighty', 'may', 'touch', 'me,', 'or', 'flute', 'that', 'his', 'breath', 'may', 'pass', 'through', 'me?', '', 'seeker', 'of', 'silences', 'am', 'I,', 'what', 'treasure', 'have', 'I', 'found', 'in', 'silences', 'that', 'I', 'may', 'dispense', 'with', 'confidence?', '', 'If', 'this', 'is', 'my', 'day', 'of', 'harvest,', 'in', 'what', 'fields', 'have', 'I', 'sowed', 'seed,', 'in', 'what', 'unremembered', 'seasons?', '', 'If', 'this', 'indeed', 'be', 'hour', 'in', 'which', 'I', 'lift', 'up', 'my', 'lantern,', 'it', 'is', 'not', 'my', 'flame', 'that', 'shall', 'burn', 'therein.', '', 'Empty', 'dark', 'shall', 'I', 'raise', 'my', 'lantern,', '', 'guardian', 'of', 'night', 'shall', 'fill', 'it', 'with', 'oil', 'he', 'shall', 'light', 'it', 'also.', '', '*****', '', 'These', 'things', 'he', 'said', 'in', 'words.', 'But', 'much', 'in', 'his', 'heart', 'remained', 'unsaid.', 'For', '', 'could', 'not', 'speak', 'his', 'deeper', 'secret.', '', '*****', '', '[Illustration:', '0020]', '', 'when', 'he', 'entered', 'into', 'city', 'all', 'people', 'came', 'to', 'meet', 'him,', 'they', 'were', 'crying', 'out', 'to', 'him', 'as', 'with', 'one', 'voice.', '', 'elders', 'of', 'city', 'stood', 'forth', 'said:', '', 'Go', 'not', 'yet', 'away', 'from', 'us.', '', 'noontide', 'have', 'you', 'been', 'in', 'our', 'twilight,', 'your', 'youth', 'has', 'given', 'us', 'dreams', 'to', 'dream.', '', 'No', 'stranger', 'are', 'you', 'among', 'us,', 'nor', 'guest,', 'but', 'our', 'son', 'our', 'dearly', 'beloved.', '', 'Suffer', 'not', 'yet', 'our', 'eyes', 'to', 'hunger', 'for', 'your', 'face.', '', '*****', '', 'priests', 'priestesses', 'said', 'unto', 'him:', '', 'Let', 'not', 'waves', 'of', 'sea', 'separate', 'us', 'now,', 'years', 'you', 'have', 'spent', 'in', 'our', 'midst', 'become', 'memory.', '', 'You', 'have', 'walked', 'among', 'us', 'spirit,', '', 'your', 'shadow', 'has', 'been', 'light', 'upon', 'our', 'faces.', '', 'Much', 'have', 'we', 'loved', 'you.', 'But', 'speechless', 'was', 'our', 'love,', 'with', 'veils', 'has', 'it', 'been', 'veiled.', '', 'Yet', 'now', 'it', 'cries', 'aloud', 'unto', 'you,', 'would', 'stand', 'revealed', 'before', 'you.', '', 'ever', 'has', 'it', 'been', 'that', 'love', 'knows', 'not', 'its', 'own', 'depth', 'until', 'hour', 'of', 'separation.', '', '*****', '', 'others', 'came', 'also', 'entreated', 'him.', 'But', 'he', 'answered', 'them', 'not.', 'He', 'only', 'bent', 'his', 'head;', 'those', 'who', 'stood', 'near', 'saw', 'his', 'tears', 'falling', 'upon', 'his', 'breast.', '', 'he', 'people', 'proceeded', 'towards', 'great', 'square', 'before', 'temple.', '', 'there', 'came', 'out', 'of', 'sanctuary', 'woman', 'whose', 'name', 'was', 'Almitra.', 'she', 'was', 'seeress.', '', 'he', 'looked', 'upon', 'her', 'with', 'exceeding', 'tenderness,', 'for', 'it', 'was', 'she', 'who', 'had', 'first', 'sought', 'believed', 'in', 'him', 'when', 'he', 'had', 'been', 'but', 'day', 'in', 'their', 'city.', '', 'hailed', 'him,', 'saying:', '', 'of', 'God,', 'in', 'quest', 'of', 'uttermost,', 'long', 'have', 'you', 'searched', 'distances', 'for', 'your', 'ship.', '', 'now', 'your', 'ship', 'has', 'come,', 'you', 'must', 'needs', 'go.', '', 'Deep', 'is', 'your', 'longing', 'for', 'land', 'of', 'your', 'memories', 'dwelling', 'place', 'of', 'your', 'greater', 'desires;', 'our', 'love', 'would', 'not', 'bind', 'you', 'nor', 'our', 'needs', 'hold', 'you.', '', 'Yet', 'this', 'we', 'ask', 'ere', 'you', 'leave', 'us,', 'that', 'you', 'speak', 'to', 'us', 'give', 'us', 'of', 'your', 'truth.', '', 'we', 'will', 'give', 'it', 'unto', 'our', 'children,', 'they', 'unto', 'their', 'children,', 'it', 'shall', 'not', 'perish.', '', 'In', 'your', 'aloneness', 'you', 'have', 'watched', 'with', 'our', 'days,', 'in', 'your', 'wakefulness', 'you', 'have', 'listened', 'to', 'weeping', 'laughter', 'of', 'our', 'sleep.', '', 'Now', 'therefore', 'disclose', 'us', 'to', 'ourselves,', 'tell', 'us', 'all', 'that', 'has', 'been', 'shown', 'you', 'of', 'that', 'which', 'is', 'between', 'birth', 'death.', '', '*****', '', 'he', 'answered,', '', 'People', 'of', 'Orphalese,', 'of', 'what', 'can', 'I', '', 'save', 'of', 'that', 'which', 'is', 'even', 'now', 'moving', 'within', 'your', 'souls?', '', '*****', '*****', '', 'Then', 'said', 'Almitra,', 'Speak', 'to', 'us', 'of', '_Love_.', '', 'he', 'raised', 'his', 'head', 'looked', 'upon', 'people,', 'there', 'fell', 'stillness', 'upon', 'them.', 'with', 'great', 'voice', 'he', 'said:', '', 'When', 'love', 'beckons', 'to', 'you,', 'follow', 'him,', '', 'Though', 'his', 'ways', 'are', 'hard', 'steep.', '', 'when', 'his', 'wings', 'enfold', 'you', 'yield', 'to', 'him,', '', 'Though', 'sword', 'hidden', 'among', 'his', 'pinions', 'may', 'wound', 'you.', '', 'when', 'he', 'speaks', 'to', 'you', 'believe', 'in', 'him,', '', 'Though', 'his', 'voice', 'may', 'shatter', 'your', 'dreams', 'as', 'north', 'wind', 'lays', 'waste', 'garden.', '', 'For', 'even', 'as', 'love', 'crowns', 'you', 'so', 'shall', 'he', 'crucify', 'you.', 'Even', 'as', 'he', 'is', 'for', 'your', 'growth', 'so', 'is', 'he', 'for', 'your', 'pruning.', '', 'Even', 'as', 'he', 'ascends', 'to', 'your', 'height', '', 'your', 'tenderest', 'branches', 'that', 'quiver', 'in', 'sun,', '', 'So', 'shall', 'he', 'descend', 'to', 'your', 'roots', 'shake', 'them', 'in', 'their', 'clinging', 'to', 'earth.', '', '*****', '', 'Like', 'sheaves', 'of', 'corn', 'he', 'gathers', 'you', 'unto', 'himself.', '', 'He', 'threshes', 'you', 'to', 'make', 'you', 'naked.', '', 'He', 'sifts', 'you', 'to', 'free', 'you', 'from', 'your', 'husks.', '', 'He', 'grinds', 'you', 'to', 'whiteness.', '', 'He', 'kneads', 'you', 'until', 'you', 'are', 'pliant;', '', 'then', 'he', 'assigns', 'you', 'to', 'his', 'sacred', 'fire,', 'that', 'you', 'may', 'become', 'sacred', 'bread', 'for', 'God’s', 'sacred', 'feast.', '', '*****', '', 'All', 'these', 'things', 'shall', 'love', 'do', 'unto', 'you', 'that', 'you', 'may', 'know', 'secrets', 'of', 'your', 'heart,', 'in', 'that', 'knowledge', 'become', 'fragment', 'of', 'Life’s', 'heart.', '', 'But', 'if', 'in', 'your', 'fear', 'you', 'would', 'seek', 'only', 'love’s', 'peace', 'love’s', 'pleasure,', '', 'Then', 'it', 'is', 'better', 'for', 'you', 'that', 'you', 'cover', '', 'nakedness', 'pass', 'out', 'of', 'love’s', 'threshing-floor,', '', 'Into', 'seasonless', 'world', 'where', 'you', 'shall', 'laugh,', 'but', 'not', 'all', 'of', 'your', 'laughter,', 'weep,', 'but', 'not', 'all', 'of', 'your', 'tears.', '', '*****', '', 'Love', 'gives', 'naught', 'but', 'itself', 'takes', 'naught', 'but', 'from', 'itself.', '', 'Love', 'possesses', 'not', 'nor', 'would', 'it', 'be', 'possessed;', '', 'For', 'love', 'is', 'sufficient', 'unto', 'love.', '', 'When', 'you', 'love', 'you', 'should', 'not', 'say,', '“God', 'is', 'in', 'my', 'heart,”', 'but', 'rather,', '“I', 'am', 'in', 'heart', 'of', 'God.”', '', 'think', 'not', 'you', 'can', 'direct', 'course', 'of', 'love,', 'for', 'love,', 'if', 'it', 'finds', 'you', 'worthy,', 'directs', 'your', 'course.', '', 'Love', 'has', 'no', 'other', 'desire', 'but', 'to', 'fulfil', 'itself.', '', 'But', 'if', 'you', 'love', 'must', 'needs', 'have', 'desires,', 'let', 'these', 'be', 'your', 'desires:', '', 'To', 'melt', 'be', 'like', 'running', 'brook', 'that', 'sings', 'its', 'melody', 'to', 'night.', '', 'pain', 'of', 'too', 'much', 'tenderness.', '', 'To', 'be', 'wounded', 'by', 'your', 'own', 'understanding', 'of', 'love;', '', 'to', 'bleed', 'willingly', 'joyfully.', '', 'To', 'wake', 'at', 'dawn', 'with', 'winged', 'heart', 'give', 'thanks', 'for', 'another', 'day', 'of', 'loving;', '', 'To', 'rest', 'at', 'noon', 'hour', 'meditate', 'love’s', 'ecstacy;', '', 'To', 'return', 'home', 'at', 'eventide', 'with', 'gratitude;', '', 'then', 'to', 'sleep', 'with', 'prayer', 'for', 'beloved', 'in', 'your', 'heart', 'song', 'of', 'praise', 'upon', 'your', 'lips.', '', '[Illustration:', '0029]', '', '*****', '*****', '', '', 'Almitra', 'spoke', 'again', 'said,', 'what', 'of', '_Marriage_', 'master?', '', 'he', 'answered', 'saying:', '', 'You', 'were', 'born', 'together,', 'together', 'you', 'shall', 'be', 'forevermore.', '', 'You', 'shall', 'be', 'together', 'when', 'white', 'wings', 'of', 'death', 'scatter', 'your', 'days.', '', 'Aye,', 'you', 'shall', 'be', 'together', 'even', 'in', 'silent', 'memory', 'of', 'God.', '', 'But', 'let', 'there', 'be', 'spaces', 'in', 'your', 'togetherness,', '', 'let', 'winds', 'of', 'heavens', 'dance', 'between', 'you.', '', '*****', '', 'Love', 'one', 'another,', 'but', 'make', 'not', 'bond', 'of', 'love:', '', 'Let', 'it', 'rather', 'be', 'moving', 'sea', 'between', 'shores', 'of', 'your', 'souls.', '', 'Fill', 'each', 'other’s', 'cup', 'but', 'drink', 'not', 'from', 'one', 'cup.', '', 'Give', 'one', 'another', 'of', 'your', 'bread', 'but', 'eat', 'not', 'from', 'same', 'loaf.', '', 'dance', 'together', 'be', 'joyous,', 'but', 'let', 'each', 'one', 'of', 'you', 'be', 'alone,', '', 'Even', 'as', 'strings', 'of', 'lute', 'are', 'alone', 'though', 'they', 'quiver', 'with', 'same', 'music.', '', '*****', '', 'Give', 'your', 'hearts,', 'but', 'not', 'into', 'each', 'other’s', 'keeping.', '', 'For', 'only', 'hand', 'of', 'Life', 'can', 'contain', 'your', 'hearts.', '', 'stand', 'together', 'yet', 'not', 'too', 'near', 'together:', '', 'For', 'pillars', 'of', 'temple', 'stand', 'apart,', '', 'oak', 'tree', 'cypress', 'grow', 'not', 'in', 'each', 'other’s', 'shadow.', '', '[Illustration:', '0032]', '', '*****', '*****', '', '', 'woman', 'who', 'held', 'babe', 'against', 'her', 'bosom', 'said,', 'Speak', 'to', 'us', 'of', '_Children_.', '', 'he', 'said:', '', 'Your', 'children', 'are', 'not', 'your', 'children.', '', 'They', 'are', 'sons', 'daughters', 'of', 'Life’s', 'longing', 'for', 'itself.', '', 'They', 'come', 'through', 'you', 'but', 'not', 'from', 'you,', '', 'though', 'they', 'are', 'with', 'you', 'yet', 'they', 'belong', 'not', 'to', 'you.', '', '*****', '', 'You', 'may', 'give', 'them', 'your', 'love', 'but', 'not', 'your', 'thoughts,', '', 'For', 'they', 'have', 'their', 'own', 'thoughts.', '', 'You', 'may', 'house', 'their', 'bodies', 'but', 'not', 'their', 'souls,', '', 'For', 'their', 'souls', 'dwell', 'in', 'house', 'of', 'tomorrow,', 'which', 'you', 'cannot', 'visit,', 'not', 'even', 'in', 'your', 'dreams.', '', 'You', 'may', 'strive', 'to', 'be', 'like', 'them,', 'but', 'seek', 'not', 'to', 'make', 'them', 'like', 'you.', '', 'goes', 'not', 'backward', 'nor', 'tarries', 'with', 'yesterday.', '', 'You', 'are', 'bows', 'from', 'which', 'your', 'children', 'as', 'living', 'arrows', 'are', 'sent', 'forth.', '', 'archer', 'sees', 'mark', 'upon', 'path', 'of', 'infinite,', 'He', 'bends', 'you', 'with', 'His', 'might', 'that', 'His', 'arrows', 'may', 'go', 'swift', 'far.', '', 'Let', 'your', 'bending', 'in', 'Archer’s', 'hand', 'be', 'for', 'gladness;', '', 'For', 'even', 'as', 'he', 'loves', 'arrow', 'that', 'flies,', 'so', 'He', 'loves', 'also', 'bow', 'that', 'is', 'stable.', '', '*****', '*****', '', '', 'said', 'rich', 'man,', 'Speak', 'to', 'us', 'of', '_Giving_.', '', 'he', 'answered:', '', 'You', 'give', 'but', 'little', 'when', 'you', 'give', 'of', 'your', 'possessions.', '', 'It', 'is', 'when', 'you', 'give', 'of', 'yourself', 'that', 'you', 'truly', 'give.', '', 'For', 'what', 'are', 'your', 'possessions', 'but', 'things', 'you', 'keep', 'guard', 'for', 'fear', 'you', 'may', 'need', 'them', 'tomorrow?', '', 'tomorrow,', 'what', 'shall', 'tomorrow', 'bring', 'to', 'overprudent', 'dog', 'burying', 'bones', 'in', 'trackless', 'sand', 'as', 'he', 'follows', 'pilgrims', 'to', 'holy', 'city?', '', 'what', 'is', 'fear', 'of', 'need', 'but', 'need', 'itself?', '', 'Is', 'not', 'dread', 'of', 'thirst', 'when', 'your', 'well', 'is', 'full,', 'thirst', 'that', 'is', 'unquenchable?', '', 'There', 'are', 'those', 'who', 'give', 'little', 'of', '', 'which', 'they', 'have--and', 'they', 'give', 'it', 'for', 'recognition', 'their', 'hidden', 'desire', 'makes', 'their', 'gifts', 'unwholesome.', '', 'there', 'are', 'those', 'who', 'have', 'little', 'give', 'it', 'all.', '', 'These', 'are', 'believers', 'in', 'life', 'bounty', 'of', 'life,', 'their', 'coffer', 'is', 'never', 'empty.', '', 'There', 'are', 'those', 'who', 'give', 'with', 'joy,', 'that', 'joy', 'is', 'their', 'reward.', '', 'there', 'are', 'those', 'who', 'give', 'with', 'pain,', 'that', 'pain', 'is', 'their', 'baptism.', '', 'there', 'are', 'those', 'who', 'give', 'know', 'not', 'pain', 'in', 'giving,', 'nor', 'do', 'they', 'seek', 'joy,', 'nor', 'give', 'with', 'mindfulness', 'of', 'virtue;', '', 'They', 'give', 'as', 'in', 'yonder', 'valley', 'myrtle', 'breathes', 'its', 'fragrance', 'into', 'space.', '', 'Through', 'hands', 'of', 'such', 'as', 'these', 'God', 'speaks,', 'from', 'behind', 'their', 'eyes', 'He', 'smiles', 'upon', 'earth.', '', '[Illustration:', '0039]', '', 'It', 'is', 'well', 'to', 'give', 'when', 'asked,', 'but', 'it', 'is', 'better', 'to', 'give', 'unasked,', 'through', 'understanding;', '', 'to', 'open-handed', 'search', 'for', '', 'who', 'shall', 'receive', 'is', 'joy', 'greater', 'than', 'giving.', '', 'is', 'there', 'aught', 'you', 'would', 'withhold?', '', 'All', 'you', 'have', 'shall', 'some', 'day', 'be', 'given;', '', 'Therefore', 'give', 'now,', 'that', 'season', 'of', 'giving', 'may', 'be', 'yours', 'not', 'your', 'inheritors’.', '', 'You', 'often', 'say,', '“I', 'would', 'give,', 'but', 'only', 'to', 'deserving.”', '', 'trees', 'in', 'your', 'orchard', 'say', 'not', 'so,', 'nor', 'flocks', 'in', 'your', 'pasture.', '', 'They', 'give', 'that', 'they', 'may', 'live,', 'for', 'to', 'withhold', 'is', 'to', 'perish.', '', 'Surely', 'he', 'who', 'is', 'worthy', 'to', 'receive', 'his', 'days', 'his', 'nights,', 'is', 'worthy', 'of', 'all', 'else', 'from', 'you.', '', 'he', 'who', 'has', 'deserved', 'to', 'drink', 'from', 'ocean', 'of', 'life', 'deserves', 'to', 'fill', 'his', 'cup', 'from', 'your', 'little', 'stream.', '', 'what', 'desert', 'greater', 'shall', 'there', 'be,', 'than', 'that', 'which', 'lies', 'in', 'courage', 'confidence,', 'nay', 'charity,', 'of', 'receiving?', '', 'who', 'are', 'you', 'that', 'men', 'should', 'rend', '', 'bosom', 'unveil', 'their', 'pride,', 'that', 'you', 'may', 'see', 'their', 'worth', 'naked', 'their', 'pride', 'unabashed?', '', 'See', 'first', 'that', 'you', 'yourself', 'deserve', 'to', 'be', 'giver,', 'instrument', 'of', 'giving.', '', 'For', 'in', 'truth', 'it', 'is', 'life', 'that', 'gives', 'unto', 'life--while', 'you,', 'who', 'deem', 'yourself', 'giver,', 'are', 'but', 'witness.', '', 'you', 'receivers--and', 'you', 'are', 'all', 'receivers--assume', 'no', 'weight', 'of', 'gratitude,', 'lest', 'you', 'lay', 'yoke', 'upon', 'yourself', 'upon', 'him', 'who', 'gives.', '', 'Rather', 'rise', 'together', 'with', 'giver', 'on', 'his', 'gifts', 'as', 'on', 'wings;', '', 'For', 'to', 'be', 'overmindful', 'of', 'your', 'debt,', 'is', 'ito', 'doubt', 'his', 'generosity', 'who', 'has', 'freehearted', 'earth', 'for', 'mother,', 'God', 'for', 'father.', '', '[Illustration:', '0042]', '', '*****', '*****', '', '', 'old', 'man,', 'keeper', 'of', 'inn,', 'said,', 'Speak', 'to', 'us', 'of', '_Eating', 'Drinking_.', '', 'he', 'said:', '', 'Would', 'that', 'you', 'could', 'live', 'on', 'fragrance', 'of', 'earth,', 'like', 'air', 'plant', 'be', 'sustained', 'by', 'light.', '', 'But', 'since', 'you', 'must', 'kill', 'to', 'eat,', 'rob', 'newly', 'born', 'of', 'its', 'mother’s', 'milk', 'to', 'quench', 'your', 'thirst,', 'let', 'it', 'then', 'be', 'act', 'of', 'worship,', '', 'let', 'your', 'board', 'stand', 'altar', 'on', 'which', 'pure', 'innocent', 'of', 'forest', 'plain', 'are', 'sacrificed', 'for', 'that', 'which', 'is', 'purer', 'still', 'more', 'innocent', 'in', 'man.', '', '*****', '', 'When', 'you', 'kill', 'beast', 'say', 'to', 'him', 'in', 'your', 'heart,', '', '“By', 'same', 'power', 'that', 'slays', 'you,', 'I', 'too', 'am', 'slain;', 'I', 'too', 'shall', 'be', 'consumed.', '', 'law', 'that', 'delivered', 'you', 'into', 'my', 'hand', 'shall', 'deliver', 'me', 'into', 'mightier', 'hand.', '', 'Your', 'blood', 'my', 'blood', 'is', 'naught', 'but', 'sap', 'that', 'feeds', 'tree', 'of', 'heaven.”', '', '*****', '', 'when', 'you', 'crush', 'apple', 'with', 'your', 'teeth,', 'say', 'to', 'it', 'in', 'your', 'heart,', '', '“Your', 'seeds', 'shall', 'live', 'in', 'my', 'body,', '', 'buds', 'of', 'your', 'tomorrow', 'shall', 'blossom', 'in', 'my', 'heart,', '', 'your', 'fragrance', 'shall', 'be', 'my', 'breath,', 'together', 'we', 'shall', 'rejoice', 'through', 'all', 'seasons.”', '', '*****', '', 'in', 'autumn,', 'when', 'you', 'gather', 'grapes', 'of', 'your', 'vineyards', 'for', 'winepress,', 'say', 'in', 'your', 'heart,', '', '“I', 'too', 'am', 'vineyard,', 'my', 'fruit', 'shall', 'be', 'gathered', 'for', 'winepress,', '', 'like', 'new', 'wine', 'I', 'shall', 'be', 'kept', 'in', 'eternal', 'vessels.”', '', 'in', 'winter,', 'when', 'you', 'draw', 'wine,', '', 'there', 'be', 'in', 'your', 'heart', 'song', 'for', 'each', 'cup;', '', 'let', 'there', 'be', 'in', 'song', 'remembrance', 'for', 'autumn', 'days,', 'for', 'vineyard,', 'for', 'winepress.', '', '*****', '*****', '', '', 'Then', 'ploughman', 'said,', 'Speak', 'to', 'us', 'of', '_Work_.', '', 'he', 'answered,', 'saying:', '', 'You', 'work', 'that', 'you', 'may', 'keep', 'pace', 'with', 'earth', 'soul', 'of', 'earth.', '', 'For', 'to', 'be', 'idle', 'is', 'to', 'become', 'stranger', 'unto', 'seasons,', 'to', 'step', 'out', 'of', 'life’s', 'procession,', 'that', 'marches', 'in', 'majesty', 'proud', 'submission', 'towards', 'infinite.', '', 'When', 'you', 'work', 'you', 'are', 'flute', 'through', 'whose', 'heart', 'whispering', 'of', 'hours', 'turns', 'to', 'music.', '', 'Which', 'of', 'you', 'would', 'be', 'reed,', 'dumb', 'silent,', 'when', 'all', 'else', 'sings', 'together', 'in', 'unison?', '', 'Always', 'you', 'have', 'been', 'told', 'that', 'work', 'is', 'curse', 'labour', 'misfortune.', '', 'But', 'I', 'say', 'to', 'you', 'that', 'when', 'you', 'work', 'you', 'fulfil', 'part', 'of', 'earth’s', 'furthest', 'dream,', '', 'to', 'you', 'when', 'that', 'dream', 'was', 'born,', '', 'in', 'keeping', 'yourself', 'with', 'labour', 'you', 'are', 'in', 'truth', 'loving', 'life,', '', 'to', 'love', 'life', 'through', 'labour', 'is', 'to', 'be', 'intimate', 'with', 'life’s', 'inmost', 'secret.', '', '*****', '', 'But', 'if', 'you', 'in', 'your', 'pain', 'call', 'birth', 'affliction', 'support', 'of', 'flesh', 'curse', 'written', 'upon', 'your', 'brow,', 'then', 'I', 'answer', 'that', 'naught', 'but', 'sweat', 'of', 'your', 'brow', 'shall', 'wash', 'away', 'that', 'which', 'is', 'written.', '', 'You', 'have', 'been', 'told', 'also', 'that', 'life', 'is', 'darkness,', 'in', 'your', 'weariness', 'you', 'echo', 'what', 'was', 'said', 'by', 'weary.', '', 'I', 'say', 'that', 'life', 'is', 'indeed', 'darkness', '‘save', 'when', 'there', 'is', 'urge,', '', 'all', 'urge', 'is', 'blind', 'save', 'when', 'there', 'is', 'knowledge,', '', 'all', 'knowledge', 'is', 'vain', 'save', 'when', 'there', 'is', 'work,', '', 'all', 'work', 'is', 'empty', 'save', 'when', 'there', 'is', 'love;', '', 'when', 'you', 'work', 'with', 'love', 'you', 'bind', '', 'to', 'yourself,', 'to', 'one', 'another,', 'to', 'God.', '', '*****', '', 'what', 'is', 'it', 'to', 'work', 'with', 'love?', '', 'It', 'is', 'to', 'weave', 'cloth', 'with', 'threads', 'drawn', 'from', 'your', 'heart,', 'even', 'as', 'if', 'your', 'beloved', 'were', 'to', 'wear', 'that', 'cloth.', '', 'It', 'is', 'to', 'build', 'house', 'with', 'affection,', 'even', 'as', 'if', 'your', 'beloved', 'were', 'to', 'dwell', 'in', 'that', 'house.', '', 'It', 'is', 'to', 'sow', 'seeds', 'with', 'tenderness', 'reap', 'harvest', 'with', 'joy,', 'even', 'as', 'if', 'your', 'beloved', 'were', 'to', 'eat', 'fruit.', '', 'It', 'is', 'to', 'charge', 'all', 'things', 'you', 'fashion', 'with', 'breath', 'of', 'your', 'own', 'spirit,', '', 'to', 'know', 'that', 'all', 'blessed', 'dead', 'are', 'standing', 'about', 'you', 'watching.', '', 'Often', 'have', 'I', 'heard', 'you', 'say,', 'as', 'if', 'speaking', 'in', 'sleep,', '“He', 'who', 'works', 'in', 'marble,', 'finds', 'shape', 'of', 'his', 'own', 'soul', 'in', 'stone,', 'is', 'nobler', 'than', 'he', 'who', 'ploughs', 'soil.', '', 'he', 'who', 'seizes', 'rainbow', 'to', 'lay', 'it', 'on', 'cloth', 'in', 'likeness', 'of', 'man,', 'is', 'more', 'than', 'he', 'who', 'makes', 'sandals', 'for', 'our', 'feet.”', '', 'But', 'I', 'say,', 'not', 'in', 'sleep', 'but', 'in', 'overwakefulness', 'of', 'noontide,', 'that', 'wind', 'speaks', 'not', 'more', 'sweetly', 'to', 'giant', 'oaks', 'than', 'to', 'least', 'of', 'all', 'blades', 'of', 'grass;', '', 'he', 'alone', 'is', 'great', 'who', 'turns', 'voice', 'of', 'wind', 'into', 'song', 'made', 'sweeter', 'by', 'his', 'own', 'loving.', '', '*****', '', 'Work', 'is', 'love', 'made', 'visible.', '', 'if', 'you', 'cannot', 'work', 'with', 'love', 'but', 'only', 'with', 'distaste,', 'it', 'is', 'better', 'that', 'you', 'should', 'leave', 'your', 'work', 'sit', 'at', 'gate', 'of', 'temple', 'take', 'alms', 'of', 'those', 'who', 'work', 'with', 'joy.', '', 'For', 'if', 'you', 'bake', 'bread', 'with', 'indifference,', 'you', 'bake', 'bitter', 'bread', 'that', 'feeds', 'but', 'half', 'man’s', 'hunger.', '', 'if', 'you', 'grudge', 'crushing', 'of', 'grapes,', 'your', 'grudge', 'distils', 'poison', 'in', 'wine.', '', 'if', 'you', 'sing', 'though', 'as', 'angels,', 'love', 'not', 'singing,', 'you', 'muffle', 'man’s', 'ears', 'to', 'voices', 'of', 'day', 'voices', 'of', 'night.', '', '*****', '*****', '', '', 'woman', 'said,', 'Speak', 'to', 'us', 'of', '_Joy', 'Sorrow_.', '', 'he', 'answered:', '', 'Your', 'joy', 'is', 'your', 'sorrow', 'unmasked.', '', 'selfsame', 'well', 'from', 'which', 'your', 'laughter', 'rises', 'was', 'oftentimes', 'filled', 'with', 'your', 'tears.', '', 'how', 'else', 'can', 'it', 'be?', '', 'deeper', 'that', 'sorrow', 'carves', 'into', 'your', 'being,', 'more', 'joy', 'you', 'can', 'contain.', '', 'Is', 'not', 'cup', 'that', 'holds', 'your', 'wine', 'very', 'cup', 'that', 'was', 'burned', 'in', 'potter’s', 'oven?', '', 'is', 'not', 'lute', 'that', 'soothes', 'your', 'spirit,', 'very', 'wood', 'that', 'was', 'hollowed', 'with', 'knives?', '', 'When', 'you', 'are', 'joyous,', 'look', 'deep', 'into', 'your', 'heart', 'you', 'shall', 'find', 'it', 'is', 'only', 'that', 'which', 'has', 'given', 'you', 'sorrow', 'that', 'is', 'giving', 'you', 'joy.', '', 'When', 'you', 'are', 'sorrowful', 'look', 'again', 'in', '', 'heart,', 'you', 'shall', 'see', 'that', 'in', 'truth', 'you', 'are', 'weeping', 'for', 'that', 'which', 'has', 'been', 'your', 'delight.', '', '*****', '', 'Some', 'of', 'you', 'say,', '“Joy', 'is', 'greater', 'than', 'sorrow,”', 'others', 'say,', '“Nay,', 'sorrow', 'is', 'greater.”', '', 'But', 'I', 'say', 'unto', 'you,', 'they', 'are', 'inseparable.', '', 'Together', 'they', 'come,', 'when', 'one', 'sits', 'alone', 'with', 'you', 'at', 'your', 'board,', 'remember', 'that', 'other', 'is', 'asleep', 'upon', 'your', 'bed.', '', 'Verily', 'you', 'are', 'suspended', 'like', 'scales', 'between', 'your', 'sorrow', 'your', 'joy.', '', 'Only', 'when', 'you', 'are', 'empty', 'are', 'you', 'at', 'standstill', 'balanced.', '', 'When', 'treasure-keeper', 'lifts', 'you', 'to', 'weigh', 'his', 'gold', 'his', 'silver,', 'needs', 'must', 'your', 'joy', 'or', 'your', 'sorrow', 'rise', 'or', 'fall.', '', '*****', '*****', '', '', 'mason', 'came', 'forth', 'said,', 'Speak', 'to', 'us', 'of', '_Houses_.', '', 'he', 'answered', 'said:', '', 'Build', 'of', 'your', 'imaginings', 'bower', 'in', 'wilderness', 'ere', 'you', 'build', 'house', 'within', 'city', 'walls.', '', 'For', 'even', 'as', 'you', 'have', 'home-comings', 'in', 'your', 'twilight,', 'so', 'has', 'wanderer', 'in', 'you,', 'ever', 'distant', 'alone.', '', 'Your', 'house', 'is', 'your', 'larger', 'body.', '', 'It', 'grows', 'in', 'sun', 'sleeps', 'in', 'stillness', 'of', 'night;', 'it', 'is', 'not', 'dreamless.', 'Does', 'not', 'your', 'house', 'dream?', 'dreaming,', 'leave', 'city', 'for', 'grove', 'or', 'hilltop?', '', 'Would', 'that', 'I', 'could', 'gather', 'your', 'houses', 'into', 'my', 'hand,', 'like', 'sower', 'scatter', 'them', 'in', 'forest', 'meadow.', '', 'Would', 'valleys', 'were', 'your', 'streets,', 'green', 'paths', 'your', 'alleys,', 'that', 'you', '', 'seek', 'one', 'another', 'through', 'vineyards,', 'come', 'with', 'fragrance', 'of', 'earth', 'in', 'your', 'garments.', '', 'But', 'these', 'things', 'are', 'not', 'yet', 'to', 'be.', '', 'In', 'their', 'fear', 'your', 'forefathers', 'gathered', 'you', 'too', 'near', 'together.', 'that', 'fear', 'shall', 'endure', 'little', 'longer.', 'little', 'longer', 'shall', 'your', 'city', 'walls', 'separate', 'your', 'hearths', 'from', 'your', 'fields.', '', '*****', '', 'tell', 'me,', 'people', 'of', 'Orphalese,', 'what', 'have', 'you', 'in', 'these', 'houses?', 'what', 'is', 'it', 'you', 'guard', 'with', 'fastened', 'doors?', '', 'Have', 'you', 'peace,', 'quiet', 'urge', 'that', 'reveals', 'your', 'power?', '', 'Have', 'you', 'remembrances,', 'glimmering', 'arches', 'that', 'span', 'summits', 'of', 'mind?', '', 'Have', 'you', 'beauty,', 'that', 'leads', 'heart', 'from', 'things', 'fashioned', 'of', 'wood', 'stone', 'to', 'holy', 'mountain?', '', 'Tell', 'me,', 'have', 'you', 'these', 'in', 'your', 'houses?', '', 'Or', 'have', 'you', 'only', 'comfort,', 'lust', 'for', 'comfort,', 'that', 'stealthy', 'thing', 'that', '', 'house', 'guest,', 'then', 'becomes', 'host,', 'then', 'master?', '', '*****', '', 'Ay,', 'it', 'becomes', 'tamer,', 'with', 'hook', 'scourge', 'makes', 'puppets', 'of', 'your', 'larger', 'desires.', '', 'Though', 'its', 'hands', 'are', 'silken,', 'its', 'heart', 'is', 'of', 'iron.', '', 'It', 'lulls', 'you', 'to', 'sleep', 'only', 'to', 'stand', 'by', 'your', 'bed', 'jeer', 'at', 'dignity', 'of', 'flesh.', '', 'It', 'makes', 'mock', 'of', 'your', 'sound', 'senses,', 'lays', 'them', 'in', 'thistledown', 'like', 'fragile', 'vessels.', '', 'Verily', 'lust', 'for', 'comfort', 'murders', 'passion', 'of', 'soul,', 'then', 'walks', 'grinning', 'in', 'funeral.', '', 'But', 'you,', 'children', 'of', 'space,', 'you', 'restless', 'in', 'rest,', 'you', 'shall', 'not', 'be', 'trapped', 'nor', 'tamed.', '', 'Your', 'house', 'shall', 'be', 'not', 'anchor', 'but', 'mast.', '', 'It', 'shall', 'not', 'be', 'glistening', 'film', 'that', '', 'wound,', 'but', 'eyelid', 'that', 'guards', 'eye.', '', 'You', 'shall', 'not', 'fold', 'your', 'wings', 'that', 'you', 'may', 'pass', 'through', 'doors,', 'nor', 'bend', 'your', 'heads', 'that', 'they', 'strike', 'not', 'against', 'ceiling,', 'nor', 'fear', 'to', 'breathe', 'lest', 'walls', 'should', 'crack', 'fall', 'down.', '', 'You', 'shall', 'not', 'dwell', 'in', 'tombs', 'made', 'by', 'dead', 'for', 'living.', '', 'though', 'of', 'magnificence', 'splendour,', 'your', 'house', 'shall', 'not', 'hold', 'your', 'secret', 'nor', 'shelter', 'your', 'longing.', '', 'For', 'that', 'which', 'is', 'boundless', 'in', 'you', 'abides', 'in', 'mansion', 'of', 'sky,', 'whose', 'door', 'is', 'morning', 'mist,', 'whose', 'windows', 'are', 'songs', 'silences', 'of', 'night.', '', '*****', '*****', '', '', 'weaver', 'said,', 'Speak', 'to', 'us', 'of', '_Clothes_.', '', 'he', 'answered:', '', 'Your', 'clothes', 'conceal', 'much', 'of', 'your', 'beauty,', 'yet', 'they', 'hide', 'not', 'unbeautiful.', '', 'though', 'you', 'seek', 'in', 'garments', 'freedom', 'of', 'privacy', 'you', 'may', 'find', 'in', 'them', 'harness', 'chain.', '', 'Would', 'that', 'you', 'could', 'meet', 'sun', 'wind', 'with', 'more', 'of', 'your', 'skin', 'less', 'of', 'your', 'raiment,', '', 'For', 'breath', 'of', 'life', 'is', 'in', 'sunlight', 'hand', 'of', 'life', 'is', 'in', 'wind.', '', 'Some', 'of', 'you', 'say,', '“It', 'is', 'north', 'wind', 'who', 'has', 'woven', 'clothes', 'we', 'wear.”', '', 'I', 'say,', 'Ay,', 'it', 'was', 'north', 'wind,', '', 'But', 'shame', 'was', 'his', 'loom,', 'softening', 'of', 'sinews', 'was', 'his', 'thread.', '', 'when', 'his', 'work', 'was', 'done', 'he', 'laughed', 'in', 'forest.', '', 'not', 'that', 'modesty', 'is', 'for', 'shield', 'against', 'eye', 'of', 'unclean.', '', 'when', 'unclean', 'shall', 'be', 'no', 'more,', 'what', 'were', 'modesty', 'but', 'fetter', 'fouling', 'of', 'mind?', '', 'forget', 'not', 'that', 'earth', 'delights', 'to', 'feel', 'your', 'bare', 'feet', 'winds', 'long', 'to', 'play', 'with', 'your', 'hair.', '', '*****', '*****', '', '', 'merchant', 'said,', 'Speak', 'to', 'us', 'of', '_Buying', 'Selling_.', '', 'he', 'answered', 'said:', '', 'To', 'you', 'earth', 'yields', 'her', 'fruit,', 'you', 'shall', 'not', 'want', 'if', 'you', 'but', 'know', 'how', 'to', 'fill', 'your', 'hands.', '', 'It', 'is', 'in', 'exchanging', 'gifts', 'of', 'earth', 'that', 'you', 'shall', 'find', 'abundance', 'be', 'satisfied.', '', 'Yet', 'unless', 'exchange', 'be', 'in', 'love', 'kindly', 'justice,', 'it', 'will', 'but', 'lead', 'some', 'to', 'greed', 'others', 'to', 'hunger.', '', 'When', 'in', 'market', 'place', 'you', 'toilers', 'of', 'sea', 'fields', 'vineyards', 'meet', 'weavers', 'potters', 'gatherers', 'of', 'spices,--', '', 'Invoke', 'then', 'master', 'spirit', 'of', 'earth,', 'to', 'come', 'into', 'your', 'midst', 'sanctify', 'scales', 'reckoning', 'that', 'weighs', 'value', 'against', 'value.', '', 'not', 'barren-handed', 'to', 'take', 'part', 'in', 'your', 'transactions,', 'who', 'would', 'sell', 'their', 'words', 'for', 'your', 'labour.', '', 'To', 'such', 'men', 'you', 'should', 'say,', '', '“Come', 'with', 'us', 'to', 'field,', 'or', 'go', 'with', 'our', 'brothers', 'to', 'sea', 'cast', 'your', 'net;', '', 'For', 'land', 'sea', 'shall', 'be', 'bountiful', 'to', 'you', 'even', 'as', 'to', 'us.”', '', '*****', '', 'if', 'there', 'come', 'singers', 'dancers', 'flute', 'players,--buy', 'of', 'their', 'gifts', 'also.', '', 'For', 'they', 'too', 'are', 'gatherers', 'of', 'fruit', 'frankincense,', 'that', 'which', 'they', 'bring,', 'though', 'fashioned', 'of', 'dreams,', 'is', 'raiment', 'food', 'for', 'your', 'soul.', '', 'before', 'you', 'leave', 'market', 'place,', 'see', 'that', 'no', 'one', 'has', 'gone', 'his', 'way', 'with', 'empty', 'hands.', '', 'For', 'master', 'spirit', 'of', 'earth', 'shall', 'not', 'sleep', 'peacefully', 'upon', 'wind', 'till', 'needs', 'of', 'least', 'of', 'you', 'are', 'satisfied.', '', '*****', '*****', '', '', 'one', 'of', 'judges', 'of', 'city', 'stood', 'forth', 'said,', 'Speak', 'to', 'us', 'of', '_Crime', 'Punishment_.', '', 'he', 'answered,', 'saying:', '', 'It', 'is', 'when', 'your', 'spirit', 'goes', 'wandering', 'upon', 'wind,', '', 'That', 'you,', 'alone', 'unguarded,', 'commit', 'wrong', 'unto', 'others', 'therefore', 'unto', 'yourself.', '', 'for', 'that', 'wrong', 'committed', 'must', 'you', 'knock', 'wait', 'while', 'unheeded', 'at', 'gate', 'of', 'blessed.', '', 'Like', 'ocean', 'is', 'your', 'god-self;', '', 'It', 'remains', 'for', 'ever', 'undefiled.', '', 'like', 'ether', 'it', 'lifts', 'but', 'winged.', '', 'Even', 'like', 'sun', 'is', 'your', 'god-self;', '', 'It', 'knows', 'not', 'ways', 'of', 'mole', 'nor', 'seeks', 'it', 'holes', 'of', 'serpent.', '', 'your', 'god-self', 'dwells', 'not', 'alone', 'in', 'your', 'being.', '', 'Much', 'in', 'you', 'is', 'still', 'man,', 'much', 'in', 'you', 'is', 'not', 'yet', 'man,', '', 'But', 'shapeless', 'pigmy', 'that', 'walks', 'asleep', 'in', 'mist', 'searching', 'for', 'its', 'own', 'awakening.', '', 'of', 'man', 'in', 'you', 'would', 'I', 'now', 'speak.', '', 'For', 'it', 'is', 'he', 'not', 'your', 'god-self', 'nor', 'pigmy', 'in', 'mist,', 'that', 'knows', 'crime', 'punishment', 'of', 'crime.', '', '*****', '', 'Oftentimes', 'have', 'I', 'heard', 'you', 'speak', 'of', 'one', 'who', 'commits', 'wrong', 'as', 'though', 'he', 'were', 'not', 'one', 'of', 'you,', 'but', 'stranger', 'unto', 'you', 'intruder', 'upon', 'your', 'world.', '', 'But', 'I', 'say', 'that', 'even', 'as', 'holy', 'righteous', 'cannot', 'rise', 'beyond', 'highest', 'which', 'is', 'in', 'each', 'one', 'of', 'you,', '', 'So', 'wicked', 'weak', 'cannot', 'fall', 'lower', 'than', 'lowest', 'which', 'is', 'in', 'you', 'also.', '', 'as', 'single', 'leaf', 'turns', 'not', 'yellow', 'but', 'with', 'silent', 'knowledge', 'of', 'whole', 'tree,', '', 'wrong-doer', 'cannot', 'do', 'wrong', 'without', 'hidden', 'will', 'of', 'you', 'all.', '', 'Like', 'procession', 'you', 'walk', 'together', 'towards', 'your', 'god-self.', '', '[Illustration:', '0064]', '', 'You', 'are', 'way', 'wayfarers.', '', 'when', 'one', 'of', 'you', 'falls', 'down', 'he', 'falls', 'for', 'those', 'behind', 'him,', 'caution', 'against', 'stumbling', 'stone.', '', 'Ay,', 'he', 'falls', 'for', 'those', 'ahead', 'of', 'him,', 'who', 'though', 'faster', 'surer', 'of', 'foot,', 'yet', 'removed', 'not', 'stumbling', 'stone.', '', 'this', 'also,', 'though', 'word', 'lie', 'heavy', 'upon', 'your', 'hearts:', '', 'murdered', 'is', 'not', 'unaccountable', 'for', 'his', 'own', 'murder,', '', 'robbed', 'is', 'not', 'blameless', 'in', 'being', 'robbed.', '', 'righteous', 'is', 'not', 'innocent', 'of', 'deeds', 'of', 'wicked,', '', 'white-handed', 'is', 'not', 'clean', 'in', 'doings', 'of', 'felon.', '', 'Yea,', 'guilty', 'is', 'oftentimes', 'victim', 'of', 'injured,', '', 'still', 'more', 'often', 'condemned', 'is', '', 'burden', 'bearer', 'for', 'guiltless', 'unblamed.', '', 'You', 'cannot', 'separate', 'just', 'from', 'unjust', 'good', 'from', 'wicked;', '', 'For', 'they', 'stand', 'together', 'before', 'face', 'of', 'sun', 'even', 'as', 'black', 'thread', 'white', 'are', 'woven', 'together.', '', 'when', 'black', 'thread', 'breaks,', 'weaver', 'shall', 'look', 'into', 'whole', 'cloth,', 'he', 'shall', 'examine', 'loom', 'also.', '', '*****', '', 'If', 'any', 'of', 'you', 'would', 'bring', 'to', 'judgment', 'unfaithful', 'wife,', '', 'Let', 'him', 'also', 'weigh', 'heart', 'of', 'her', 'husband', 'in', 'scales,', 'measure', 'his', 'soul', 'with', 'measurements.', '', 'let', 'him', 'who', 'would', 'lash', 'offender', 'look', 'unto', 'spirit', 'of', 'offended.', '', 'if', 'any', 'of', 'you', 'would', 'punish', 'in', 'name', 'of', 'righteousness', 'lay', 'ax', 'unto', 'evil', 'tree,', 'let', 'him', 'see', 'to', 'its', 'roots;', '', 'verily', 'he', 'will', 'find', 'roots', 'of', 'good', 'bad,', 'fruitful', '', 'all', 'entwined', 'together', 'in', 'silent', 'heart', 'of', 'earth.', '', 'you', 'judges', 'who', 'would', 'be', 'just,', '', 'What', 'judgment', 'pronounce', 'you', 'upon', 'him', 'who', 'though', 'honest', 'in', 'flesh', 'yet', 'is', 'thief', 'in', 'spirit?', '', 'What', 'penalty', 'lay', 'you', 'upon', 'him', 'who', 'slays', 'in', 'flesh', 'yet', 'is', 'himself', 'slain', 'in', 'spirit?', '', 'how', 'prosecute', 'you', 'him', 'who', 'in', 'action', 'is', 'deceiver', 'oppressor,', '', 'Yet', 'who', 'also', 'is', 'aggrieved', 'outraged?', '', '*****', '', 'how', 'shall', 'you', 'punish', 'those', 'whose', 'remorse', 'is', 'already', 'greater', 'than', 'their', 'misdeeds?', '', 'Is', 'not', 'remorse', 'justice', 'which', 'is', 'administered', 'by', 'that', 'very', 'law', 'which', 'you', 'would', 'fain', 'serve?', '', 'Yet', 'you', 'cannot', 'lay', 'remorse', 'upon', 'innocent', 'nor', 'lift', 'it', 'from', 'heart', 'of', 'guilty.', '', 'Unbidden', 'shall', 'it', 'call', 'in', 'night,', 'that', 'men', 'may', 'wake', 'gaze', 'upon', 'themselves.', '', 'you', 'who', 'would', 'understand', 'justice,', 'how', 'shall', 'you', 'unless', 'you', 'look', 'upon', 'all', 'deeds', 'in', 'fullness', 'of', 'light?', '', 'Only', 'then', 'shall', 'you', 'know', 'that', 'erect', 'fallen', 'are', 'but', 'one', 'man', 'standing', 'in', 'twilight', 'between', 'night', 'of', 'his', 'pigmy-self', 'day', 'of', 'his', 'god-self,', 'that', 'corner-stone', 'of', 'temple', 'is', 'not', 'higher', 'than', 'lowest', 'stone', 'in', 'its', 'foundation.', '', '*****', '*****', '', '', 'lawyer', 'said,', 'But', 'what', 'of', 'our', '_Laws_,', 'master?', '', 'he', 'answered:', '', 'You', 'delight', 'in', 'laying', 'down', 'laws,', '', 'Yet', 'you', 'delight', 'more', 'in', 'breaking', 'them.', '', 'Like', 'children', 'playing', 'by', 'ocean', 'who', 'build', 'sand-towers', 'with', 'constancy', 'then', 'destroy', 'them', 'with', 'laughter.', '', 'But', 'while', 'you', 'build', 'your', 'sand-towers', 'ocean', 'brings', 'more', 'sand', 'to', 'shore,', '', 'when', 'you', 'destroy', 'them', 'ocean', 'laughs', 'with', 'you.', '', 'Verily', 'ocean', 'laughs', 'always', 'with', 'innocent.', '', 'But', 'what', 'of', 'those', 'to', 'whom', 'life', 'is', 'not', 'ocean,', 'man-made', 'laws', 'are', 'not', 'sand-towers,', '', 'But', 'to', 'whom', 'life', 'is', 'rock,', 'law', 'chisel', 'with', 'which', 'they', 'would', 'carve', 'it', 'in', 'their', 'own', 'likeness?', '', 'of', 'cripple', 'who', 'hates', 'dancers?', '', 'What', 'of', 'ox', 'who', 'loves', 'his', 'yoke', 'deems', 'elk', 'deer', 'of', 'forest', 'stray', 'vagrant', 'things?', '', 'What', 'of', 'old', 'serpent', 'who', 'cannot', 'shed', 'his', 'skin,', 'calls', 'all', 'others', 'naked', 'shameless?', '', 'of', 'him', 'who', 'comes', 'early', 'to', 'wedding-feast,', 'when', 'over-fed', 'tired', 'goes', 'his', 'way', 'saying', 'that', 'all', 'feasts', 'are', 'violation', 'all', 'feasters', 'lawbreakers?', '', '*****', '', 'What', 'shall', 'I', 'say', 'of', 'these', 'save', 'that', 'they', 'too', 'stand', 'in', 'sunlight,', 'but', 'with', 'their', 'backs', 'to', 'sun?', '', 'They', 'see', 'only', 'their', 'shadows,', 'their', 'shadows', 'are', 'their', 'laws.', '', 'what', 'is', 'sun', 'to', 'them', 'but', 'caster', 'of', 'shadows?', '', 'what', 'is', 'it', 'to', 'acknowledge', 'laws', 'but', 'to', 'stoop', 'down', 'trace', 'their', 'shadows', 'upon', 'earth?', '', 'But', 'you', 'who', 'walk', 'facing', 'sun,', 'what', '', 'drawn', 'on', 'earth', 'can', 'hold', 'you?', '', 'You', 'who', 'travel', 'with', 'wind,', 'what', 'weather-vane', 'shall', 'direct', 'your', 'course?', '', 'What', 'man’s', 'law', 'shall', 'bind', 'you', 'if', 'you', 'break', 'your', 'yoke', 'but', 'upon', 'no', 'man’s', 'prison', 'door?', '', 'What', 'laws', 'shall', 'you', 'fear', 'if', 'you', 'dance', 'but', 'stumble', 'against', 'no', 'man’s', 'iron', 'chains?', '', 'who', 'is', 'he', 'that', 'shall', 'bring', 'you', 'to', 'judgment', 'if', 'you', 'tear', 'off', 'your', 'garment', 'yet', 'leave', 'it', 'in', 'no', 'man’s', 'path?', '', '*****', '', 'People', 'of', 'Orphalese,', 'you', 'can', 'muffle', 'drum,', 'you', 'can', 'loosen', 'strings', 'of', 'lyre,', 'but', 'who', 'shall', 'command', 'skylark', 'not', 'to', 'sing?', '', '*****', '*****', '', '', 'orator', 'said,', 'Speak', 'to', 'us', 'of', '_Freedom_.', '', 'he', 'answered:', '', 'At', 'city', 'gate', 'by', 'your', 'fireside', 'I', 'have', 'seen', 'you', 'prostrate', 'yourself', 'worship', 'your', 'own', 'freedom,', '', 'Even', 'as', 'slaves', 'humble', 'themselves', 'before', 'tyrant', 'praise', 'him', 'though', 'he', 'slays', 'them.', '', 'Ay,', 'in', 'grove', 'of', 'temple', 'in', 'shadow', 'of', 'citadel', 'I', 'have', 'seen', 'freest', 'among', 'you', 'wear', 'their', 'freedom', 'as', 'yoke', 'handcuff.', '', 'my', 'heart', 'bled', 'within', 'me;', 'for', 'you', 'can', 'only', 'be', 'free', 'when', 'even', 'desire', 'of', 'seeking', 'freedom', 'becomes', 'harness', 'to', 'you,', 'when', 'you', 'cease', 'to', 'speak', 'of', 'freedom', 'as', 'goal', 'fulfilment.', '', 'You', 'shall', 'be', 'free', 'indeed', 'when', 'your', 'days', 'are', 'not', 'without', 'care', 'nor', 'your', '', 'without', 'want', 'grief,', '', 'But', 'rather', 'when', 'these', 'things', 'girdle', 'your', 'life', 'yet', 'you', 'rise', 'above', 'them', 'naked', 'unbound.', '', '*****', '', 'how', 'shall', 'you', 'rise', 'beyond', 'your', 'days', 'nights', 'unless', 'you', 'break', 'chains', 'which', 'you', 'at', 'dawn', 'of', 'your', 'understanding', 'have', 'fastened', 'around', 'your', 'noon', 'hour?', '', 'In', 'truth', 'that', 'which', 'you', 'call', 'freedom', 'is', 'strongest', 'of', 'these', 'chains,', 'though', 'its', 'links', 'glitter', 'in', 'sun', 'dazzle', 'your', 'eyes.', '', 'what', 'is', 'it', 'but', 'fragments', 'of', 'your', 'own', 'self', 'you', 'would', 'discard', 'that', 'you', 'may', 'become', 'free?', '', 'If', 'it', 'is', 'unjust', 'law', 'you', 'would', 'abolish,', 'that', 'law', 'was', 'written', 'with', 'your', 'own', 'hand', 'upon', 'your', 'own', 'forehead.', '', 'You', 'cannot', 'erase', 'it', 'by', 'burning', 'your', 'law', 'books', 'nor', 'by', 'washing', 'foreheads', 'of', 'your', 'judges,', 'though', 'you', 'pour', 'sea', 'upon', 'them.', '', 'if', 'it', 'is', 'despot', 'you', 'would', '', 'see', 'first', 'that', 'his', 'throne', 'erected', 'within', 'you', 'is', 'destroyed.', '', 'For', 'how', 'can', 'tyrant', 'rule', 'free', 'proud,', 'but', 'for', 'tyranny', 'in', 'their', 'own', 'freedom', 'shame', 'in', 'their', 'own', 'pride?', '', 'if', 'it', 'is', 'care', 'you', 'would', 'cast', 'off,', 'that', 'cart', 'has', 'been', 'chosen', 'by', 'you', 'rather', 'than', 'imposed', 'upon', 'you.', '', 'if', 'it', 'is', 'fear', 'you', 'would', 'dispel,', 'seat', 'of', 'that', 'fear', 'is', 'in', 'your', 'heart', 'not', 'in', 'hand', 'of', 'feared.', '', '*****', '', 'Verily', 'all', 'things', 'move', 'within', 'your', 'being', 'in', 'constant', 'half', 'embrace,', 'desired', 'dreaded,', 'repugnant', 'cherished,', 'pursued', 'that', 'which', 'you', 'would', 'escape.', '', 'These', 'things', 'move', 'within', 'you', 'as', 'lights', 'shadows', 'in', 'pairs', 'that', 'cling.', '', 'when', 'shadow', 'fades', 'is', 'no', 'more,', 'light', 'that', 'lingers', 'becomes', 'shadow', 'to', 'another', 'light.', '', 'thus', 'your', 'freedom', 'when', 'it', 'loses', 'its', 'fetters', 'becomes', 'itself', 'fetter', 'of', 'greater', 'freedom.', '', '*****', '*****', '', '', 'priestess', 'spoke', 'again', 'said:', 'Speak', 'to', 'us', 'of', '_Reason', 'Passion_.', '', 'he', 'answered,', 'saying:', '', 'Your', 'soul', 'is', 'oftentimes', 'battlefield,', 'upon', 'which', 'your', 'reason', 'your', 'judgment', 'wage', 'war', 'against', 'your', 'passion', 'your', 'appetite.', '', 'Would', 'that', 'I', 'could', 'be', 'peacemaker', 'in', 'your', 'soul,', 'that', 'I', 'might', 'turn', 'discord', 'rivalry', 'of', 'your', 'elements', 'into', 'oneness', 'melody.', '', 'But', 'how', 'shall', 'I,', 'unless', 'you', 'yourselves', 'be', 'also', 'peacemakers,', 'nay,', 'lovers', 'of', 'all', 'your', 'elements?', '', 'Your', 'reason', 'your', 'passion', 'are', 'rudder', 'sails', 'of', 'your', 'seafaring', 'soul.', '', 'If', 'either', 'your', 'sails', 'or', 'your', 'rudder', 'be', 'broken,', 'you', 'can', 'but', 'toss', 'drift,', 'or', 'else', 'be', 'held', 'at', 'standstill', 'in', 'mid-seas.', '', 'reason,', 'ruling', 'alone,', 'is', 'force', 'confining;', 'passion,', 'unattended,', 'is', 'flame', 'that', 'burns', 'to', 'its', 'own', 'destruction.', '', 'Therefore', 'let', 'your', 'soul', 'exalt', 'your', 'reason', 'to', 'height', 'of', 'passion,', 'that', 'it', 'may', 'sing;', '', 'let', 'it', 'direct', 'your', 'passion', 'with', 'reason,', 'that', 'your', 'passion', 'may', 'live', 'through', 'its', 'own', 'daily', 'resurrection,', 'like', 'phoenix', 'rise', 'above', 'its', 'own', 'ashes.', '', '*****', '', 'I', 'would', 'have', 'you', 'consider', 'your', 'judgment', 'your', 'appetite', 'even', 'as', 'you', 'would', 'two', 'loved', 'guests', 'in', 'your', 'house.', '', 'Surely', 'you', 'would', 'not', 'honour', 'one', 'guest', 'above', 'other;', 'for', 'he', 'who', 'is', 'more', 'mindful', 'of', 'one', 'loses', 'love', 'faith', 'of', 'both', '', 'Among', 'hills,', 'when', 'you', 'sit', 'in', 'cool', 'shade', 'of', 'white', 'poplars,', 'sharing', 'peace', 'serenity', 'of', 'distant', 'fields', 'meadows--then', 'let', 'your', 'heart', 'say', 'in', 'silence,', '“God', 'rests', 'in', 'reason.”', '', 'when', 'storm', 'comes,', '', 'wind', 'shakes', 'forest,', 'thunder', 'lightning', 'proclaim', 'majesty', 'of', 'sky,--then', 'let', 'your', 'heart', 'say', 'in', 'awe,', '“God', 'moves', 'in', 'passion.”', '', 'since', 'you', 'are', 'breath', 'in', 'God’s', 'sphere,', 'leaf', 'in', 'God’s', 'forest,', 'you', 'too', 'should', 'rest', 'in', 'reason', 'move', 'in', 'passion.', '', '*****', '*****', '', '', 'woman', 'spoke,', 'saying,', 'Tell', 'us', 'of', '_Pain_.', '', 'he', 'said:', '', 'Your', 'pain', 'is', 'breaking', 'of', 'shell', 'that', 'encloses', 'your', 'understanding.', '', 'Even', 'as', 'stone', 'of', 'fruit', 'must', 'break,', 'that', 'its', 'heart', 'may', 'stand', 'in', 'sun,', 'so', 'must', 'you', 'know', 'pain.', '', 'could', 'you', 'keep', 'your', 'heart', 'in', 'wonder', 'at', 'daily', 'miracles', 'of', 'your', 'life,', 'your', 'pain', 'would', 'not', 'seem', 'less', 'wondrous', 'than', 'your', 'joy;', '', 'you', 'would', 'accept', 'seasons', 'of', 'your', 'heart,', 'even', 'as', 'you', 'have', 'always', 'accepted', 'seasons', 'that', 'pass', 'over', 'your', 'fields.', '', 'you', 'would', 'watch', 'with', 'serenity', 'through', 'winters', 'of', 'your', 'grief.', '', 'Much', 'of', 'your', 'pain', 'is', 'self-chosen.', '', 'It', 'is', 'bitter', 'potion', 'by', 'which', 'physician', '', 'you', 'heals', 'your', 'sick', 'self.', '', 'Therefore', 'trust', 'physician,', 'drink', 'his', 'remedy', 'in', 'silence', 'tranquillity:', 'For', 'his', 'hand,', 'though', 'heavy', 'hard,', 'is', 'guided', 'by', 'tender', 'hand', 'of', 'Unseen,', 'cup', 'he', 'brings,', 'though', 'it', 'burn', 'your', 'lips,', 'has', 'been', 'fashioned', 'of', 'clay', 'which', 'Potter', 'has', 'moistened', 'with', 'His', 'own', 'sacred', 'tears.', '', '*****', '*****', '', '', 'man', 'said,', 'Speak', 'to', 'us', 'of', '_Self-Knowledge_.', '', 'he', 'answered,', 'saying:', '', 'Your', 'hearts', 'know', 'in', 'silence', 'secrets', 'of', 'days', 'nights.', '', 'But', 'your', 'ears', 'thirst', 'for', 'sound', 'of', 'your', 'heart’s', 'knowledge.', '', 'You', 'would', 'know', 'in', 'words', 'that', 'which', 'you', 'have', 'always', 'known', 'in', 'thought.', '', 'You', 'would', 'touch', 'with', 'your', 'fingers', 'naked', 'body', 'of', 'your', 'dreams.', '', 'it', 'is', 'well', 'you', 'should.', '', 'hidden', 'well-spring', 'of', 'your', 'soul', 'must', 'needs', 'rise', 'run', 'murmuring', 'to', 'sea;', '', 'treasure', 'of', 'your', 'infinite', 'depths', 'would', 'be', 'revealed', 'to', 'your', 'eyes.', '', 'But', 'let', 'there', 'be', 'no', 'scales', 'to', 'weigh', 'your', 'unknown', 'treasure;', '', 'seek', 'not', 'depths', 'of', 'your', '', 'with', 'staff', 'or', 'sounding', 'line.', '', 'For', 'self', 'is', 'sea', 'boundless', 'measureless.', '', '*****', '', 'Say', 'not,', '“I', 'have', 'found', 'truth,”', 'but', 'rather,', '“I', 'have', 'found', 'truth.”', '', 'Say', 'not,', '“I', 'have', 'found', 'path', 'of', 'soul.”', 'Say', 'rather,', '“I', 'have', 'met', 'soul', 'walking', 'upon', 'my', 'path.”', '', 'For', 'soul', 'walks', 'upon', 'all', 'paths.', '', 'soul', 'walks', 'not', 'upon', 'line,', 'neither', 'does', 'it', 'grow', 'like', 'reed.', '', 'soul', 'unfolds', 'itself,', 'like', 'lotus', 'of', 'countless', 'petals.', '', '[Illustration:', '0083]', '', '*****', '*****', '', '', 'said', 'teacher,', 'Speak', 'to', 'us', 'of', '_Teaching_.', '', 'he', 'said:', '', '“No', 'man', 'can', 'reveal', 'to', 'you', 'aught', 'but', 'that', 'which', 'already', 'lies', 'half', 'asleep', 'in', 'dawning', 'of', 'your', 'knowledge.', '', 'teacher', 'who', 'walks', 'in', 'shadow', 'of', 'temple,', 'among', 'his', 'followers,', 'gives', 'not', 'of', 'his', 'wisdom', 'but', 'rather', 'of', 'his', 'faith', 'his', 'lovingness.', '', 'If', 'he', 'is', 'indeed', 'wise', 'he', 'does', 'not', 'bid', 'you', 'enter', 'house', 'of', 'his', 'wisdom,', 'but', 'rather', 'leads', 'you', 'to', 'threshold', 'of', 'your', 'own', 'mind.', '', 'astronomer', 'may', 'speak', 'to', 'you', 'of', 'his', 'understanding', 'of', 'space,', 'but', 'he', 'cannot', 'give', 'you', 'his', 'understanding.', '', 'musician', 'may', 'sing', 'to', 'you', 'of', 'rhythm', 'which', 'is', 'in', 'all', 'space,', 'but', 'he', 'cannot', 'give', 'you', 'ear', 'which', 'arrests', 'rhythm', 'nor', 'voice', 'that', 'echoes', 'it.', '', 'he', 'who', 'is', 'versed', 'in', 'science', 'of', 'numbers', 'can', 'tell', 'of', 'regions', 'of', 'weight', 'measure,', 'but', 'he', 'cannot', 'conduct', 'you', 'thither.', '', 'For', 'vision', 'of', 'one', 'man', 'lends', 'not', 'its', 'wings', 'to', 'another', 'man.', '', 'even', 'as', 'each', 'one', 'of', 'you', 'stands', 'alone', 'in', 'God’s', 'knowledge,', 'so', 'must', 'each', 'one', 'of', 'you', 'be', 'alone', 'in', 'his', 'knowledge', 'of', 'God', 'in', 'his', 'understanding', 'of', 'earth.', '', '*****', '*****', '', '', 'youth', 'said,', 'Speak', 'to', 'us', 'of', '_Friendship_.', '', 'he', 'answered,', 'saying:', '', 'Your', 'friend', 'is', 'your', 'needs', 'answered.', '', 'He', 'is', 'your', 'field', 'which', 'you', 'sow', 'with', 'love', 'reap', 'with', 'thanksgiving.', '', 'he', 'is', 'your', 'board', 'your', 'fireside.', '', 'For', 'you', 'come', 'to', 'him', 'with', 'your', 'hunger,', 'you', 'seek', 'him', 'for', 'peace.', '', 'When', 'your', 'friend', 'speaks', 'his', 'mind', 'you', 'fear', 'not', '“nay”', 'in', 'your', 'own', 'mind,', 'nor', 'do', 'you', 'withhold', '“ay.”', '', 'when', 'he', 'is', 'silent', 'your', 'heart', 'ceases', 'not', 'to', 'listen', 'to', 'his', 'heart;', '', 'For', 'without', 'words,', 'in', 'friendship,', 'all', 'thoughts,', 'all', 'desires,', 'all', 'expectations', 'are', 'born', 'shared,', 'with', 'joy', 'that', 'is', 'unacclaimed.', '', 'When', 'you', 'part', 'from', 'your', 'friend,', 'you', 'grieve', 'not;', '', 'For', 'that', 'which', 'you', 'love', 'most', 'in', 'him', 'may', 'be', 'clearer', 'in', 'his', 'absence,', 'as', 'mountain', 'to', 'climber', 'is', 'clearer', 'from', 'plain.', '', 'let', 'there', 'be', 'no', 'purpose', 'in', 'friendship', 'save', 'deepening', 'of', 'spirit.', '', 'For', 'love', 'that', 'seeks', 'aught', 'but', 'disclosure', 'of', 'its', 'own', 'mystery', 'is', 'not', 'love', 'but', 'net', 'cast', 'forth:', 'only', 'unprofitable', 'is', 'caught.', '', '*****', '', 'let', 'your', 'best', 'be', 'for', 'your', 'friend.', '', 'If', 'he', 'must', 'know', 'ebb', 'of', 'your', 'tide,', 'let', 'him', 'know', 'its', 'flood', 'also.', '', 'For', 'what', 'is', 'your', 'friend', 'that', 'you', 'should', 'seek', 'him', 'with', 'hours', 'to', 'kill?', '', 'Seek', 'him', 'always', 'with', 'hours', 'to', 'live.', '', 'For', 'it', 'is', 'his', 'to', 'fill', 'your', 'need,', 'but', 'not', 'your', 'emptiness.', '', 'in', 'sweetness', 'of', 'friendship', 'let', 'there', 'be', 'laughter,', 'sharing', 'of', 'pleasures.', '', 'For', 'in', 'dew', 'of', 'little', 'things', 'heart', 'finds', 'its', 'morning', 'is', 'refreshed.', '', '*****', '*****', '', '', 'then', 'scholar', 'said,', 'Speak', 'of', '_Talking_.', '', 'he', 'answered,', 'saying:', '', 'You', 'talk', 'when', 'you', 'cease', 'to', 'be', 'at', 'peace', 'with', 'your', 'thoughts;', '', 'when', 'you', 'can', 'no', 'longer', 'dwell', 'in', 'solitude', 'of', 'your', 'heart', 'you', 'live', 'in', 'your', 'lips,', 'sound', 'is', 'diversion', 'pastime.', '', 'in', 'much', 'of', 'your', 'talking,', 'thinking', 'is', 'half', 'murdered.', '', 'For', 'thought', 'is', 'bird', 'of', 'space,', 'that', 'in', 'cage', 'of', 'words', 'may', 'indeed', 'unfold', 'its', 'wings', 'but', 'cannot', 'fly.', '', 'There', 'are', 'those', 'among', 'you', 'who', 'seek', 'talkative', 'through', 'fear', 'of', 'being', 'alone.', '', 'silence', 'of', 'aloneness', 'reveals', 'to', 'their', 'eyes', 'their', 'naked', 'selves', 'they', 'would', 'escape.', '', 'there', 'are', 'those', 'who', 'talk,', '', 'knowledge', 'or', 'forethought', 'reveal', 'truth', 'which', 'they', 'themselves', 'do', 'not', 'understand.', '', 'there', 'are', 'those', 'who', 'have', 'truth', 'within', 'them,', 'but', 'they', 'tell', 'it', 'not', 'in', 'words.', '', 'In', 'bosom', 'of', 'such', 'as', 'these', 'spirit', 'dwells', 'in', 'rhythmic', 'silence.', '', '*****', '', 'When', 'you', 'meet', 'your', 'friend', 'on', 'roadside', 'or', 'in', 'market', 'place,', 'let', 'spirit', 'in', 'you', 'move', 'your', 'lips', 'direct', 'your', 'tongue.', '', 'Let', 'voice', 'within', 'your', 'voice', 'speak', 'to', 'ear', 'of', 'his', 'ear;', '', 'For', 'his', 'soul', 'will', 'keep', 'truth', 'of', 'your', 'heart', 'as', 'taste', 'of', 'wine', 'is', 'remembered', '', 'When', 'colour', 'is', 'forgotten', 'vessel', 'is', 'no', 'more.', '', '*****', '*****', '', '', 'astronomer', 'said,', 'Master,', 'what', 'of', '_Time_?', '', 'he', 'answered:', '', 'You', 'would', 'measure', 'time', 'measureless', 'immeasurable.', '', 'You', 'would', 'adjust', 'your', 'conduct', 'even', 'direct', 'course', 'of', 'your', 'spirit', 'according', 'to', 'hours', 'seasons.', '', 'Of', 'time', 'you', 'would', 'make', 'stream', 'upon', 'whose', 'bank', 'you', 'would', 'sit', 'watch', 'its', 'flowing.', '', 'Yet', 'timeless', 'in', 'you', 'is', 'aware', 'of', 'life’s', 'timelessness,', '', 'knows', 'that', 'yesterday', 'is', 'but', 'today’s', 'memory', 'tomorrow', 'is', 'today’s', 'dream.', '', 'that', 'that', 'which', 'sings', 'contemplates', 'in', 'you', 'is', 'still', 'dwelling', 'within', 'bounds', 'of', 'that', 'first', 'moment', 'which', 'scattered', 'stars', 'into', 'space.', '', 'among', 'you', 'does', 'not', 'feel', 'that', 'his', 'power', 'to', 'love', 'is', 'boundless?', '', 'yet', 'who', 'does', 'not', 'feel', 'that', 'very', 'love,', 'though', 'boundless,', 'encompassed', 'within', 'centre', 'of', 'his', 'being,', 'moving', 'not', 'from', 'love', 'thought', 'to', 'love', 'thought,', 'nor', 'from', 'love', 'deeds', 'to', 'other', 'love', 'deeds?', '', 'is', 'not', 'time', 'even', 'as', 'love', 'is,', 'undivided', 'paceless?', '', '*****', '', 'But', 'if', 'in', 'your', 'thought', 'you', 'must', 'measure', 'time', 'into', 'seasons,', 'let', 'each', 'season', 'encircle', 'all', 'other', 'seasons,', '', 'let', 'today', 'embrace', 'past', 'with', 'remembrance', 'future', 'with', 'longing.', '', '*****', '*****', '', '', 'one', 'of', 'elders', 'of', 'city', 'said,', 'Speak', 'to', 'us', 'of', '_Good', 'Evil_.', '', 'he', 'answered:', '', 'Of', 'good', 'in', 'you', 'I', 'can', 'speak,', 'but', 'not', 'of', 'evil.', '', 'For', 'what', 'is', 'evil', 'but', 'good', 'tortured', 'by', 'its', 'own', 'hunger', 'thirst?', '', 'Verily', 'when', 'good', 'is', 'hungry', 'it', 'seeks', 'food', 'even', 'in', 'dark', 'caves,', 'when', 'it', 'thirsts', 'it', 'drinks', 'even', 'of', 'dead', 'waters.', '', 'You', 'are', 'good', 'when', 'you', 'are', 'one', 'with', 'yourself.', '', 'Yet', 'when', 'you', 'are', 'not', 'one', 'with', 'yourself', 'you', 'are', 'not', 'evil.', '', 'For', 'divided', 'house', 'is', 'not', 'den', 'of', 'thieves;', 'it', 'is', 'only', 'divided', 'house.', '', 'ship', 'without', 'rudder', 'may', 'wander', 'aimlessly', 'among', 'perilous', 'isles', 'yet', 'sink', 'not', 'to', 'bottom.', '', 'are', 'good', 'when', 'you', 'strive', 'to', 'give', 'of', 'yourself.', '', 'Yet', 'you', 'are', 'not', 'evil', 'when', 'you', 'seek', 'gain', 'for', 'yourself.', '', 'For', 'when', 'you', 'strive', 'for', 'gain', 'you', 'are', 'but', 'root', 'that', 'clings', 'to', 'earth', 'sucks', 'at', 'her', 'breast.', '', 'Surely', 'fruit', 'cannot', 'say', 'to', 'root,', '“Be', 'like', 'me,', 'ripe', 'full', 'ever', 'giving', 'of', 'your', 'abundance.”', '', 'For', 'to', 'fruit', 'giving', 'is', 'need,', 'as', 'receiving', 'is', 'need', 'to', 'root.', '', '*****', '', 'You', 'are', 'good', 'when', 'you', 'are', 'fully', 'awake', 'in', 'your', 'speech,', '', 'Yet', 'you', 'are', 'not', 'evil', 'when', 'you', 'sleep', 'while', 'your', 'tongue', 'staggers', 'without', 'purpose.', '', 'even', 'stumbling', 'speech', 'may', 'strengthen', 'weak', 'tongue.', '', 'You', 'are', 'good', 'when', 'you', 'walk', 'to', 'your', 'goal', 'firmly', 'with', 'bold', 'steps.', '', 'Yet', 'you', 'are', 'not', 'evil', 'when', 'you', 'go', 'thither', 'limping.', '', 'those', 'who', 'limp', 'go', 'not', 'backward.', '', 'But', 'you', 'who', 'are', 'strong', 'swift,', 'see', 'that', 'you', 'do', 'not', 'limp', 'before', 'lame,', 'deeming', 'it', 'kindness.', '', '*****', '', 'You', 'are', 'good', 'in', 'countless', 'ways,', 'you', 'are', 'not', 'evil', 'when', 'you', 'are', 'not', 'good,', '', 'You', 'are', 'only', 'loitering', 'sluggard.', '', 'Pity', 'that', 'stags', 'cannot', 'teach', 'swiftness', 'to', 'turtles.', '', 'In', 'your', 'longing', 'for', 'your', 'giant', 'self', 'lies', 'your', 'goodness:', 'that', 'longing', 'is', 'in', 'all', 'of', 'you.', '', 'But', 'in', 'some', 'of', 'you', 'that', 'longing', 'is', 'torrent', 'rushing', 'with', 'might', 'to', 'sea,', 'carrying', 'secrets', 'of', 'hillsides', 'songs', 'of', 'forest.', '', 'in', 'others', 'it', 'is', 'flat', 'stream', 'that', 'loses', 'itself', 'in', 'angles', 'bends', 'lingers', 'before', 'it', 'reaches', 'shore.', '', 'But', 'let', 'not', 'him', 'who', 'longs', 'much', 'say', 'to', '', 'who', 'longs', 'little,', '“Wherefore', 'are', 'you', 'slow', 'halting?”', '', 'For', 'truly', 'good', 'ask', 'not', 'naked,', '“Where', 'is', 'your', 'garment?”', 'nor', 'houseless,', '“What', 'has', 'befallen', 'your', 'house?”', '', '*****', '*****', '', '', 'priestess', 'said,', 'Speak', 'to', 'us', 'of', '_Prayer_.', '', 'he', 'answered,', 'saying:', '', 'You', 'pray', 'in', 'your', 'distress', 'in', 'your', 'need;', 'would', 'that', 'you', 'might', 'pray', 'also', 'in', 'fullness', 'of', 'your', 'joy', 'in', 'your', 'days', 'of', 'abundance.', '', 'For', 'what', 'is', 'prayer', 'but', 'expansion', 'of', 'yourself', 'into', 'living', 'ether?', '', 'if', 'it', 'is', 'for', 'your', 'comfort', 'to', 'pour', 'your', 'darkness', 'into', 'space,', 'it', 'is', 'also', 'for', 'your', 'delight', 'to', 'pour', 'forth', 'dawning', 'of', 'your', 'heart.', '', 'if', 'you', 'cannot', 'but', 'weep', 'when', 'your', 'soul', 'summons', 'you', 'to', 'prayer,', 'she', 'should', 'spur', 'you', 'again', 'yet', 'again,', 'though', 'weeping,', 'until', 'you', 'shall', 'come', 'laughing.', '', 'When', 'you', 'pray', 'you', 'rise', 'to', 'meet', 'in', 'air', 'those', 'who', 'are', 'praying', 'at', 'that', 'very', '', 'whom', 'save', 'in', 'prayer', 'you', 'may', 'not', 'meet.', '', 'Therefore', 'let', 'your', 'visit', 'to', 'that', 'temple', 'invisible', 'be', 'for', 'naught', 'but', 'ecstasy', 'sweet', 'communion.', '', 'For', 'if', 'you', 'should', 'enter', 'temple', 'for', 'no', 'other', 'purpose', 'than', 'asking', 'you', 'shall', 'not', 'receive:', '', 'if', 'you', 'should', 'enter', 'into', 'it', 'to', 'humble', 'yourself', 'you', 'shall', 'not', 'be', 'lifted:', '', 'Or', 'even', 'if', 'you', 'should', 'enter', 'into', 'it', 'to', 'beg', 'for', 'good', 'of', 'others', 'you', 'shall', 'not', 'be', 'heard.', '', 'It', 'is', 'enough', 'that', 'you', 'enter', 'temple', 'invisible.', '', '*****', '', 'I', 'cannot', 'teach', 'you', 'how', 'to', 'pray', 'in', 'words.', '', 'God', 'listens', 'not', 'to', 'your', 'words', 'save', 'when', 'He', 'Himself', 'utters', 'them', 'through', 'your', 'lips.', '', 'I', 'cannot', 'teach', 'you', 'prayer', 'of', 'seas', 'forests', 'mountains.', '', 'you', 'who', 'are', 'born', 'of', 'mountains', 'forests', 'seas', 'can', 'find', 'their', 'prayer', 'in', 'your', 'heart,', '', 'if', 'you', 'but', 'listen', 'in', 'stillness', 'of', 'night', 'you', 'shall', 'hear', 'them', 'saying', 'in', 'silence,', '', '“Our', 'God,', 'who', 'art', 'our', 'winged', 'self,', 'it', 'is', 'thy', 'will', 'in', 'us', 'that', 'willeth.', '', 'It', 'is', 'thy', 'desire', 'in', 'us', 'that', 'desireth.', '', 'It', 'is', 'thy', 'urge', 'in', 'us', 'that', 'would', 'turn', 'our', 'nights,', 'which', 'are', 'thine,', 'into', 'days', 'which', 'are', 'thine', 'also.', '', 'We', 'cannot', 'ask', 'thee', 'for', 'aught,', 'for', 'thou', 'knowest', 'our', 'needs', 'before', 'they', 'are', 'born', 'in', 'us:', '', 'Thou', 'art', 'our', 'need;', 'in', 'giving', 'us', 'more', 'of', 'thyself', 'thou', 'givest', 'us', 'all.”', '', '[Illustration:', '0100]', '', '*****', '*****', '', '', 'hermit,', 'who', 'visited', 'city', 'once', 'year,', 'came', 'forth', 'said,', 'Speak', 'to', 'us', 'of', '_Pleasure_.', '', 'he', 'answered,', 'saying:', '', 'Pleasure', 'is', 'freedom-song,', '', 'But', 'it', 'is', 'not', 'freedom.', '', 'It', 'is', 'blossoming', 'of', 'your', 'desires,', '', 'But', 'it', 'is', 'not', 'their', 'fruit.', '', 'It', 'is', 'depth', 'calling', 'unto', 'height,', '', 'But', 'it', 'is', 'not', 'deep', 'nor', 'high.', '', 'It', 'is', 'caged', 'taking', 'wing,', '', 'But', 'it', 'is', 'not', 'space', 'encompassed.', '', 'Ay,', 'in', 'very', 'truth,', 'pleasure', 'is', 'freedom-song.', '', 'I', 'fain', 'would', 'have', 'you', 'sing', 'it', 'with', 'fullness', 'of', 'heart;', 'yet', 'I', 'would', 'not', 'have', 'you', 'lose', 'your', 'hearts', 'in', 'singing.', '', 'Some', 'of', 'your', 'youth', 'seek', 'pleasure', 'as', 'if', 'it', 'were', 'all,', 'they', 'are', 'judged', 'rebuked.', '', 'would', 'not', 'judge', 'nor', 'rebuke', 'them.', 'I', 'would', 'have', 'them', 'seek.', '', 'For', 'they', 'shall', 'find', 'pleasure,', 'but', 'not', 'her', 'alone;', '', 'Seven', 'are', 'her', 'sisters,', 'least', 'of', 'them', 'is', 'more', 'beautiful', 'than', 'pleasure.', '', 'Have', 'you', 'not', 'heard', 'of', 'man', 'who', 'was', 'digging', 'in', 'earth', 'for', 'roots', 'found', 'treasure?', '', '*****', '', 'some', 'of', 'your', 'elders', 'remember', 'pleasures', 'with', 'regret', 'like', 'wrongs', 'committed', 'in', 'drunkenness.', '', 'But', 'regret', 'is', 'beclouding', 'of', 'mind', 'not', 'its', 'chastisement.', '', 'They', 'should', 'remember', 'their', 'pleasures', 'with', 'gratitude,', 'as', 'they', 'would', 'harvest', 'of', 'summer.', '', 'Yet', 'if', 'it', 'comforts', 'them', 'to', 'regret,', 'let', 'them', 'be', 'comforted.', '', 'there', 'are', 'among', 'you', 'those', 'who', 'are', 'neither', 'young', 'to', 'seek', 'nor', 'old', 'to', 'remember;', '', 'in', 'their', 'fear', 'of', 'seeking', 'remembering', '', 'shun', 'all', 'pleasures,', 'lest', 'they', 'neglect', 'spirit', 'or', 'offend', 'against', 'it.', '', 'But', 'even', 'in', 'their', 'foregoing', 'is', 'their', 'pleasure.', '', 'thus', 'they', 'too', 'find', 'treasure', 'though', 'they', 'dig', 'for', 'roots', 'with', 'quivering', 'hands.', '', 'But', 'tell', 'me,', 'who', 'is', 'he', 'that', 'can', 'offend', 'spirit?', '', 'Shall', 'nightingale', 'offend', 'stillness', 'of', 'night,', 'or', 'firefly', 'stars?', '', 'shall', 'your', 'flame', 'or', 'your', 'smoke', 'burden', 'wind?', '', 'Think', 'you', 'spirit', 'is', 'still', 'pool', 'which', 'you', 'can', 'trouble', 'with', 'staff?', '', '*****', '', 'Oftentimes', 'in', 'denying', 'yourself', 'pleasure', 'you', 'do', 'but', 'store', 'desire', 'in', 'recesses', 'of', 'your', 'being.', '', 'Who', 'knows', 'but', 'that', 'which', 'seems', 'omitted', 'today,', 'waits', 'for', 'tomorrow?', '', 'Even', 'your', 'body', 'knows', 'its', 'heritage', 'its', 'rightful', 'need', 'will', 'not', 'be', 'deceived.', '', 'your', 'body', 'is', 'harp', 'of', 'your', 'soul,', '', 'it', 'is', 'yours', 'to', 'bring', 'forth', '', 'from', 'it', 'or', 'confused', 'sounds.', '', '*****', '', 'now', 'you', 'ask', 'in', 'your', 'heart,', '“How', 'shall', 'we', 'distinguish', 'that', 'which', 'is', 'good', 'in', 'pleasure', 'from', 'that', 'which', 'is', 'not', 'good?”', '', 'Go', 'to', 'your', 'fields', 'your', 'gardens,', 'you', 'shall', 'learn', 'that', 'it', 'is', 'pleasure', 'of', 'bee', 'to', 'gather', 'honey', 'of', 'flower,', '', 'But', 'it', 'is', 'also', 'pleasure', 'of', 'flower', 'to', 'yield', 'its', 'honey', 'to', 'bee.', '', 'For', 'to', 'bee', 'flower', 'is', 'fountain', 'of', 'life,', '', 'to', 'flower', 'bee', 'is', 'messenger', 'of', 'love,', '', 'to', 'both,', 'bee', 'flower,', 'giving', 'receiving', 'of', 'pleasure', 'is', 'need', 'ecstasy.', '', 'People', 'of', 'Orphalese,', 'be', 'in', 'your', 'pleasures', 'like', 'flowers', 'bees.', '', '*****', '*****', '', '', 'poet', 'said,', 'Speak', 'to', 'us', 'of', '_Beauty_.', '', 'he', 'answered:', '', 'Where', 'shall', 'you', 'seek', 'beauty,', 'how', 'shall', 'you', 'find', 'her', 'unless', 'she', 'herself', 'be', 'your', 'way', 'your', 'guide?', '', 'how', 'shall', 'you', 'speak', 'of', 'her', 'except', 'she', 'be', 'weaver', 'of', 'your', 'speech?', '', 'aggrieved', 'injured', 'say,', '“Beauty', 'is', 'kind', 'gentle.', '', 'Like', 'young', 'mother', 'half-shy', 'of', 'her', 'own', 'glory', 'she', 'walks', 'among', 'us.”', '', 'passionate', 'say,', '“Nay,', 'beauty', 'is', 'thing', 'of', 'might', 'dread.', '', 'Like', 'tempest', 'she', 'shakes', 'earth', 'beneath', 'us', 'sky', 'above', 'us.”', '', 'tired', 'weary', 'say,', '“Beauty', 'is', 'of', 'soft', 'whisperings.', 'She', 'speaks', 'in', 'our', 'spirit.', '', 'voice', 'yields', 'to', 'our', 'silences', 'like', 'faint', 'light', 'that', 'quivers', 'in', 'fear', 'of', 'shadow.”', '', 'But', 'restless', 'say,', '“We', 'have', 'heard', 'her', 'shouting', 'among', 'mountains,', '', 'with', 'her', 'cries', 'came', 'sound', 'of', 'hoofs,', 'beating', 'of', 'wings', 'roaring', 'of', 'lions.”', '', 'At', 'night', 'watchmen', 'of', 'city', 'say,', '“Beauty', 'shall', 'rise', 'with', 'dawn', 'from', 'east.”', '', 'at', 'noontide', 'toilers', 'wayfarers', 'say,', '“We', 'have', 'seen', 'her', 'leaning', 'over', 'earth', 'from', 'windows', 'of', 'sunset.”', '', '*****', '', 'In', 'winter', 'say', 'snow-bound,', '“She', 'shall', 'come', 'with', 'spring', 'leaping', 'upon', 'hills.”', '', 'in', 'summer', 'heat', 'reapers', 'say,', '“We', 'have', 'seen', 'her', 'dancing', 'with', 'autumn', 'leaves,', 'we', 'saw', 'drift', 'of', 'snow', 'in', 'her', 'hair.”', '', 'these', 'things', 'have', 'you', 'said', 'of', 'beauty,', '', 'Yet', 'in', 'truth', 'you', 'spoke', 'not', 'of', 'her', 'but', 'of', 'needs', 'unsatisfied,', '', 'beauty', 'is', 'not', 'need', 'but', 'ecstasy.', '', 'It', 'is', 'not', 'mouth', 'thirsting', 'nor', 'empty', 'hand', 'stretched', 'forth,', '', 'But', 'rather', 'heart', 'enflamed', 'soul', 'enchanted.', '', 'It', 'is', 'not', 'image', 'you', 'would', 'see', 'nor', 'song', 'you', 'would', 'hear,', '', 'But', 'rather', 'image', 'you', 'see', 'though', 'you', 'close', 'your', 'eyes', 'song', 'you', 'hear', 'though', 'you', 'shut', 'your', 'ears.', '', 'It', 'is', 'not', 'sap', 'within', 'furrowed', 'bark,', 'nor', 'wing', 'attached', 'to', 'claw,', '', 'But', 'rather', 'garden', 'for', 'ever', 'in', 'bloom', 'flock', 'of', 'angels', 'for', 'ever', 'in', 'flight.', '', '*****', '', 'People', 'of', 'Orphalese,', 'beauty', 'is', 'life', 'when', 'life', 'unveils', 'her', 'holy', 'face.', '', 'But', 'you', 'are', 'life', 'you', 'are', 'veil.', '', 'is', 'eternity', 'gazing', 'at', 'itself', 'in', 'mirror.', '', 'But', 'you', 'are', 'eternity', 'you', 'are', 'mirror.', '', '*****', '*****', '', '', 'old', 'priest', 'said,', 'Speak', 'to', 'us', 'of', '_Religion_.', '', 'he', 'said:', '', 'Have', 'I', 'spoken', 'this', 'day', 'of', 'aught', 'else?', '', 'Is', 'not', 'religion', 'all', 'deeds', 'all', 'reflection,', '', 'that', 'which', 'is', 'neither', 'deed', 'nor', 'reflection,', 'but', 'wonder', 'surprise', 'ever', 'springing', 'in', 'soul,', 'even', 'while', 'hands', 'hew', 'stone', 'or', 'tend', 'loom?', '', 'Who', 'can', 'separate', 'his', 'faith', 'from', 'his', 'actions,', 'or', 'his', 'belief', 'from', 'his', 'occupations?', '', 'Who', 'can', 'spread', 'his', 'hours', 'before', 'him,', 'saving,', '“This', 'for', 'God', 'this', 'for', 'myself;', 'This', 'for', 'my', 'soul,', 'this', 'other', 'for', 'my', 'body?”', '', 'All', 'your', 'hours', 'are', 'wings', 'that', 'beat', 'through', 'space', 'from', 'self', 'to', 'self.', '', 'wears', 'his', 'morality', 'but', 'as', 'his', 'best', 'garment', 'were', 'better', 'naked.', '', 'wind', 'sun', 'will', 'tear', 'no', 'holes', 'in', 'his', 'skin.', '', 'he', 'who', 'defines', 'his', 'conduct', 'by', 'ethics', 'imprisons', 'his', 'song-bird', 'in', 'cage.', '', 'freest', 'song', 'comes', 'not', 'through', 'bars', 'wires.', '', 'he', 'to', 'whom', 'worshipping', 'is', 'window,', 'to', 'open', 'but', 'also', 'to', 'shut,', 'has', 'not', 'yet', 'visited', 'house', 'of', 'his', 'soul', 'whose', 'windows', 'are', 'from', 'dawn', 'to', 'dawn.', '', '*****', '', 'Your', 'daily', 'life', 'is', 'your', 'temple', 'your', 'religion.', '', 'Whenever', 'you', 'enter', 'into', 'it', 'take', 'with', 'you', 'your', 'all.', '', 'Take', 'plough', 'forge', 'mallet', 'lute,', '', 'things', 'you', 'have', 'fashioned', 'in', 'necessity', 'or', 'for', 'delight.', '', 'For', 'in', 'revery', 'you', 'cannot', 'rise', 'above', 'your', 'achievements', 'nor', 'fall', 'lower', 'than', 'your', 'failures.', '', 'take', 'with', 'you', 'all', 'men:', '', 'in', 'adoration', 'you', 'cannot', 'fly', 'higher', 'than', 'their', 'hopes', 'nor', 'humble', 'yourself', 'lower', 'than', 'their', 'despair.', '', '*****', '', 'if', 'you', 'would', 'know', 'God', 'be', 'not', 'therefore', 'solver', 'of', 'riddles.', '', 'Rather', 'look', 'about', 'you', 'you', 'shall', 'see', 'Him', 'playing', 'with', 'your', 'children.', '', 'look', 'into', 'space;', 'you', 'shall', 'see', 'Him', 'walking', 'in', 'cloud,', 'outstretching', 'His', 'arms', 'in', 'lightning', 'descending', 'in', 'rain.', '', 'You', 'shall', 'see', 'Him', 'smiling', 'in', 'flowers,', 'then', 'rising', 'waving', 'His', 'hands', 'in', 'trees.', '', '*****', '*****', '', '', 'Almitra', 'spoke,', 'saying,', 'We', 'would', 'ask', 'now', 'of', '_Death_.', '', 'he', 'said:', '', 'You', 'would', 'know', 'secret', 'of', 'death.', '', 'But', 'how', 'shall', 'you', 'find', 'it', 'unless', 'you', 'seek', 'it', 'in', 'heart', 'of', 'life?', '', 'owl', 'whose', 'night-bound', 'eyes', 'are', 'blind', 'unto', 'day', 'cannot', 'unveil', 'mystery', 'of', 'light.', '', 'If', 'you', 'would', 'indeed', 'behold', 'spirit', 'of', 'death,', 'open', 'your', 'heart', 'wide', 'unto', 'body', 'of', 'life.', '', 'For', 'life', 'death', 'are', 'one,', 'even', 'as', 'river', 'sea', 'are', 'one.', '', 'In', 'depth', 'of', 'your', 'hopes', 'desires', 'lies', 'your', 'silent', 'knowledge', 'of', 'beyond;', '', 'like', 'seeds', 'dreaming', 'beneath', 'snow', 'your', 'heart', 'dreams', 'of', 'spring.', '', 'Trust', 'dreams,', 'for', 'in', 'them', 'is', 'hidden', 'gate', 'to', 'eternity.', '', 'fear', 'of', 'death', 'is', 'but', 'trembling', 'of', 'shepherd', 'when', 'he', 'stands', 'before', 'king', 'whose', 'hand', 'is', 'to', 'be', 'laid', 'upon', 'him', 'in', 'honour.', '', 'Is', 'shepherd', 'not', 'joyful', 'beneath', 'his', 'trembling,', 'that', 'he', 'shall', 'wear', 'mark', 'of', 'king?', '', 'Yet', 'is', 'he', 'not', 'more', 'mindful', 'of', 'his', 'trembling?', '', '*****', '', 'For', 'what', 'is', 'it', 'to', 'die', 'but', 'to', 'stand', 'naked', 'in', 'wind', 'to', 'melt', 'into', 'sun?', '', 'what', 'is', 'it', 'to', 'cease', 'breathing,', 'but', 'to', 'free', 'breath', 'from', 'its', 'restless', 'tides,', 'that', 'it', 'may', 'rise', 'expand', 'seek', 'God', 'unencumbered?', '', 'Only', 'when', 'you', 'drink', 'from', 'river', 'of', 'silence', 'shall', 'you', 'indeed', 'sing.', '', 'when', 'you', 'have', 'reached', 'mountain', 'top,', 'then', 'you', 'shall', 'begin', 'to', 'climb.', '', 'when', 'earth', 'shall', 'claim', 'your', 'limbs,', 'then', 'shall', 'you', 'truly', 'dance.', '', 'now', 'it', 'was', 'evening.', '', 'Almitra', 'seeress', 'said,', 'Blessed', 'be', 'this', 'day', 'this', 'place', 'your', 'spirit', 'that', 'has', 'spoken.', '', 'he', 'answered,', 'Was', 'it', 'I', 'who', 'spoke?', 'Was', 'I', 'not', 'also', 'listener?', '', '*****', '', 'Then', 'he', 'descended', 'steps', 'of', 'Temple', 'all', 'people', 'followed', 'him.', 'he', 'reached', 'his', 'ship', 'stood', 'upon', 'deck.', '', 'facing', 'people', 'again,', 'he', 'raised', 'his', 'voice', 'said:', '', 'People', 'of', 'Orphalese,', 'wind', 'bids', 'me', 'leave', 'you.', '', 'Less', 'hasty', 'am', 'I', 'than', 'wind,', 'yet', 'I', 'must', 'go.', '', 'We', 'wanderers,', 'ever', 'seeking', 'lonelier', 'way,', 'begin', 'no', 'day', 'where', 'we', 'have', 'ended', 'another', 'day;', 'no', 'sunrise', 'finds', 'us', 'where', 'sunset', 'left', 'us.', '', 'while', 'earth', 'sleeps', 'we', 'travel.', '', 'We', 'are', 'seeds', 'of', 'tenacious', 'plant,', 'it', 'is', 'in', 'our', 'ripeness', 'our', 'fullness', 'of', 'heart', 'that', 'we', 'are', 'given', 'to', 'wind', 'are', 'scattered.', '', '*****', '', 'Brief', 'were', 'my', 'days', 'among', 'you,', 'briefer', 'still', 'words', 'I', 'have', 'spoken.', '', 'But', 'should', 'my', 'voice', 'fade', 'in', 'your', 'ears,', 'my', 'love', 'vanish', 'in', 'your', 'memory,', 'then', 'I', 'will', 'come', 'again,', '', 'with', 'richer', 'heart', 'lips', 'more', 'yielding', 'to', 'spirit', 'will', 'I', 'speak.', '', 'Yea,', 'I', 'shall', 'return', 'with', 'tide,', '', 'though', 'death', 'may', 'hide', 'me,', 'greater', 'silence', 'enfold', 'me,', 'yet', 'again', 'will', 'I', 'seek', 'your', 'understanding.', '', 'not', 'in', 'vain', 'will', 'I', 'seek.', '', 'If', 'aught', 'I', 'have', 'said', 'is', 'truth,', 'that', 'truth', 'shall', 'reveal', 'itself', 'in', 'clearer', 'voice,', 'in', 'words', 'more', 'kin', 'to', 'your', 'thoughts.', '', 'I', 'go', 'with', 'wind,', 'people', 'of', 'Orphalese,', 'but', 'not', 'down', 'into', 'emptiness;', '', 'if', 'this', 'day', 'is', 'not', 'fulfilment', 'of', 'your', 'needs', 'my', 'love,', 'then', 'let', 'it', 'be', 'promise', 'till', 'another', 'day.', '', 'Man’s', 'needs', 'change,', 'but', 'not', 'his', 'love,', 'nor', 'his', 'desire', 'that', 'his', 'love', 'should', 'satisfy', 'his', 'needs.', '', 'Know', 'therefore,', 'that', 'from', 'greater', 'silence', 'I', 'shall', 'return.', '', 'mist', 'that', 'drifts', 'away', 'at', 'dawn,', 'leaving', 'but', 'dew', 'in', 'fields,', 'shall', 'rise', 'gather', 'into', 'cloud', 'then', 'fall', 'down', 'in', 'rain.', '', 'not', 'unlike', 'mist', 'have', 'I', 'been.', '', 'In', 'stillness', 'of', 'night', 'I', 'have', 'walked', 'in', 'your', 'streets,', 'my', 'spirit', 'has', 'entered', 'your', 'houses,', '', 'your', 'heart-beats', 'were', 'in', 'my', 'heart,', 'your', 'breath', 'was', 'upon', 'my', 'face,', 'I', 'knew', 'you', 'all.', '', 'Ay,', 'I', 'knew', 'your', 'joy', 'your', 'pain,', 'in', 'your', 'sleep', 'your', 'dreams', 'were', 'my', 'dreams.', '', 'oftentimes', 'I', 'was', 'among', 'you', 'lake', 'among', 'mountains.', '', 'I', 'mirrored', 'summits', 'in', 'you', '', 'slopes,', 'even', 'passing', 'flocks', 'of', 'your', 'thoughts', 'your', 'desires.', '', 'to', 'my', 'silence', 'came', 'laughter', 'of', 'your', 'children', 'in', 'streams,', 'longing', 'of', 'your', 'youths', 'in', 'rivers.', '', 'when', 'they', 'reached', 'my', 'depth', 'streams', 'rivers', 'ceased', 'not', 'yet', 'to', 'sing.', '', '[Illustration:', '0119]', '', 'But', 'sweeter', 'still', 'than', 'laughter', 'greater', 'than', 'longing', 'came', 'to', 'me.', '', 'It', 'was', 'boundless', 'in', 'you;', '', 'vast', 'man', 'in', 'whom', 'you', 'are', 'all', 'but', 'cells', 'sinews;', '', 'He', 'in', 'whose', 'chant', 'all', 'your', 'singing', 'is', 'but', 'soundless', 'throbbing.', '', 'It', 'is', 'in', 'vast', 'man', 'that', 'you', 'are', 'vast,', '', 'in', 'beholding', 'him', 'that', 'I', 'beheld', 'you', 'loved', 'you.', '', 'For', 'what', 'distances', 'can', 'love', 'reach', 'that', 'are', 'not', 'in', 'that', 'vast', 'sphere?', '', 'What', 'visions,', 'what', 'expectations', 'what', 'presumptions', 'can', 'outsoar', 'that', 'flight?', '', 'Like', 'giant', 'oak', 'tree', 'covered', 'with', 'apple', 'blossoms', 'is', 'vast', 'man', 'in', 'you.', '', 'binds', 'you', 'to', 'earth,', 'his', 'fragrance', 'lifts', 'you', 'into', 'space,', 'in', 'his', 'durability', 'you', 'are', 'deathless.', '', '*****', '', 'You', 'have', 'been', 'told', 'that,', 'even', 'like', 'chain,', 'you', 'are', 'as', 'weak', 'as', 'your', 'weakest', 'link.', '', 'This', 'is', 'but', 'half', 'truth.', 'You', 'are', 'also', 'as', 'strong', 'as', 'your', 'strongest', 'link.', '', 'To', 'measure', 'you', 'by', 'your', 'smallest', 'deed', 'is', 'to', 'reckon', 'power', 'of', 'ocean', 'by', 'frailty', 'of', 'its', 'foam.', '', 'To', 'judge', 'you', 'by', 'your', 'failures', 'is', 'to', 'cast', 'blame', 'upon', 'seasons', 'for', 'their', 'inconstancy.', '', 'Ay,', 'you', 'are', 'like', 'ocean,', '', 'though', 'heavy-grounded', 'ships', 'await', 'tide', 'upon', 'your', 'shores,', 'yet,', 'even', 'like', 'ocean,', 'you', 'cannot', 'hasten', 'your', 'tides.', '', 'like', 'seasons', 'you', 'are', 'also,', '', 'though', 'in', 'your', 'winter', 'you', 'deny', 'your', 'spring,', '', 'Yet', 'spring,', 'reposing', 'within', 'you,', 'smiles', 'in', 'her', 'drowsiness', 'is', 'not', 'offended.', '', 'not', 'I', 'say', 'these', 'things', 'in', 'order', 'that', 'you', 'may', 'say', 'one', 'to', 'other,', '“He', 'praised', 'us', 'well.', 'He', 'saw', 'but', 'good', 'in', 'us.”', '', 'I', 'only', 'speak', 'to', 'you', 'in', 'words', 'of', 'that', 'which', 'you', 'yourselves', 'know', 'in', 'thought.', '', 'what', 'is', 'word', 'knowledge', 'but', 'shadow', 'of', 'wordless', 'knowledge?', '', 'Your', 'thoughts', 'my', 'words', 'are', 'waves', 'from', 'sealed', 'memory', 'that', 'keeps', 'records', 'of', 'our', 'yesterdays,', '', 'of', 'ancient', 'days', 'when', 'earth', 'knew', 'not', 'us', 'nor', 'herself,', '', 'of', 'nights', 'when', 'earth', 'was', 'up-wrought', 'with', 'confusion.', '', '*****', '', 'Wise', 'men', 'have', 'come', 'to', 'you', 'to', 'give', 'you', 'of', 'their', 'wisdom.', 'I', 'came', 'to', 'take', 'of', 'your', 'wisdom:', '', 'behold', 'I', 'have', 'found', 'that', 'which', 'is', 'greater', 'than', 'wisdom.', '', 'It', 'is', 'flame', 'spirit', 'in', 'you', 'ever', 'gathering', 'more', 'of', 'itself,', '', 'While', 'you,', 'heedless', 'of', 'its', 'expansion,', 'bewail', 'withering', 'of', 'your', 'days.', '', 'is', 'life', 'in', 'quest', 'of', 'life', 'in', 'bodies', 'that', 'fear', 'grave.', '', '*****', '', 'There', 'are', 'no', 'graves', 'here.', '', 'These', 'mountains', 'plains', 'are', 'cradle', 'stepping-stone.', '', 'Whenever', 'you', 'pass', 'by', 'field', 'where', 'you', 'have', 'laid', 'your', 'ancestors', 'look', 'well', 'thereupon,', 'you', 'shall', 'see', 'yourselves', 'your', 'children', 'dancing', 'hand', 'in', 'hand.', '', 'Verily', 'you', 'often', 'make', 'merry', 'without', 'knowing.', '', 'Others', 'have', 'come', 'to', 'you', 'to', 'whom', 'for', 'golden', 'promises', 'made', 'unto', 'your', 'faith', 'you', 'have', 'given', 'but', 'riches', 'power', 'glory.', '', 'Less', 'than', 'promise', 'have', 'I', 'given,', 'yet', 'more', 'generous', 'have', 'you', 'been', 'to', 'me.', '', 'You', 'have', 'given', 'me', 'my', 'deeper', 'thirsting', 'after', 'life.', '', 'Surely', 'there', 'is', 'no', 'greater', 'gift', 'to', 'man', 'than', 'that', 'which', 'turns', 'all', 'his', 'aims', 'into', 'parching', 'lips', 'all', 'life', 'into', 'fountain.', '', '[Illustration:', '0125]', '', '', 'in', 'this', 'lies', 'my', 'honour', 'my', 'reward,--', '', 'That', 'whenever', 'I', 'come', 'to', 'fountain', 'to', 'drink', 'I', 'find', 'living', 'water', 'itself', 'thirsty;', '', 'it', 'drinks', 'me', 'while', 'I', 'drink', 'it.', '', '*****', '', 'Some', 'of', 'you', 'have', 'deemed', 'me', 'proud', 'over-shy', 'to', 'receive', 'gifts.', '', 'Too', 'proud', 'indeed', 'am', 'I', 'to', 'receive', 'wages,', 'but', 'not', 'gifts.', '', 'though', 'I', 'have', 'eaten', 'berries', 'among', 'hills', 'when', 'you', 'would', 'have', 'had', 'me', 'sit', 'at', 'your', 'board,', '', 'slept', 'in', 'portico', 'of', 'temple', 'when', 'you', 'would', 'gladly', 'have', 'sheltered', 'me,', '', 'Yet', 'was', 'it', 'not', 'your', 'loving', 'mindfulness', 'of', 'my', 'days', 'my', 'nights', 'that', 'made', 'food', 'sweet', 'to', 'my', 'mouth', 'girdled', 'my', 'sleep', 'with', 'visions?', '', 'For', 'this', 'I', 'bless', 'you', 'most:', '', 'You', 'give', 'much', 'know', 'not', 'that', 'you', 'give', 'at', 'all.', '', 'kindness', 'that', 'gazes', 'upon', 'itself', 'in', 'mirror', 'turns', 'to', 'stone,', '', 'good', 'deed', 'that', 'calls', 'itself', 'by', 'tender', 'names', 'becomes', 'parent', 'to', 'curse.', '', '*****', '', 'some', 'of', 'you', 'have', 'called', 'me', 'aloof,', 'drunk', 'with', 'my', 'own', 'aloneness,', '', 'you', 'have', 'said,', '“He', 'holds', 'council', 'with', 'trees', 'of', 'forest,', 'but', 'not', 'with', 'men.', '', 'He', 'sits', 'alone', 'on', 'hill-tops', 'looks', 'down', 'upon', 'our', 'city.”', '', 'True', 'it', 'is', 'that', 'I', 'have', 'climbed', 'hills', 'walked', 'in', 'remote', 'places.', '', 'How', 'could', 'I', 'have', 'seen', 'you', 'save', 'from', 'great', 'height', 'or', 'great', 'distance?', '', 'How', 'can', 'one', 'be', 'indeed', 'near', 'unless', 'he', 'be', 'tar?', '', 'others', 'among', 'you', 'called', 'unto', 'me,', 'not', 'in', 'words,', 'they', 'said,', '', '“Stranger,', 'stranger,', 'lover', 'of', 'unreachable', 'heights,', 'why', 'dwell', 'you', 'among', 'summits', 'where', 'eagles', 'build', 'their', 'nests?', '', 'seek', 'you', 'unattainable?', '', 'What', 'storms', 'would', 'you', 'trap', 'in', 'your', 'net,', '', 'what', 'vaporous', 'birds', 'do', 'you', 'hunt', 'in', 'sky?', '', 'Come', 'be', 'one', 'of', 'us.', '', 'Descend', 'appease', 'your', 'hunger', 'with', 'our', 'bread', 'quench', 'your', 'thirst', 'with', 'our', 'wine.”', '', 'In', 'solitude', 'of', 'their', 'souls', 'they', 'said', 'these', 'things;', '', 'But', 'were', 'their', 'solitude', 'deeper', 'they', 'would', 'have', 'known', 'that', 'I', 'sought', 'but', 'secret', 'of', 'your', 'joy', 'your', 'pain,', '', 'I', 'hunted', 'only', 'your', 'larger', 'selves', 'that', 'walk', 'sky.', '', '*****', '', 'But', 'hunter', 'was', 'also', 'hunted;', '', 'For', 'many', 'of', 'my', 'arrows', 'left', 'my', 'bow', 'only', 'to', 'seek', 'my', 'own', 'breast.', '', 'flier', 'was', 'also', 'creeper;', '', 'For', 'when', 'my', 'wings', 'were', 'spread', 'in', 'sun', 'their', 'shadow', 'upon', 'earth', 'was', 'turtle.', '', 'I', 'believer', 'was', 'also', 'doubter;', '', 'often', 'have', 'I', 'put', 'my', 'finger', 'in', 'my', 'own', 'wound', 'that', 'I', 'might', 'have', 'greater', 'belief', 'in', 'you', 'greater', 'knowledge', 'of', 'you.', '', '*****', '', 'it', 'is', 'with', 'this', 'belief', 'this', 'knowledge', 'that', 'I', 'say,', '', 'You', 'are', 'not', 'enclosed', 'within', 'your', 'bodies,', 'nor', 'confined', 'to', 'houses', 'or', 'fields.', '', 'That', 'which', 'is', 'you', 'dwells', 'above', 'mountain', 'roves', 'with', 'wind.', '', 'It', 'is', 'not', 'thing', 'that', 'crawls', 'into', 'sun', 'for', 'warmth', 'or', 'digs', 'holes', 'into', 'darkness', 'for', 'safety,', '', 'But', 'thing', 'free,', 'spirit', 'that', 'envelops', 'earth', 'moves', 'in', 'ether.', '', 'If', 'these', 'be', 'vague', 'words,', 'then', 'seek', 'not', 'to', 'clear', 'them.', '', 'Vague', 'nebulous', 'is', 'beginning', 'of', 'all', 'things,', 'but', 'not', 'their', 'end,', '', 'I', 'fain', 'would', 'have', 'you', 'remember', 'me', 'as', 'beginning.', '', 'Life,', 'all', 'that', 'lives,', 'is', 'conceived', 'in', 'mist', 'not', 'in', 'crystal.', '', 'who', 'knows', 'but', 'crystal', 'is', 'mist', 'in', 'decay?', '', '*****', '', 'This', 'would', 'I', 'have', 'you', 'remember', 'in', 'remembering', 'me:', '', 'That', 'which', 'seems', 'most', 'feeble', 'bewildered', 'in', 'you', 'is', 'strongest', 'most', 'determined.', '', 'Is', 'it', 'not', 'your', 'breath', 'that', 'has', 'erected', 'hardened', 'structure', 'of', 'your', 'bones?', '', 'is', 'it', 'not', 'dream', 'which', 'none', 'of', 'you', 'remember', 'having', 'dreamt,', 'that', 'builded', 'your', 'city', 'fashioned', 'all', 'there', 'is', 'in', 'it?', '', 'Could', 'you', 'but', 'see', 'tides', 'of', 'that', 'breath', 'you', 'would', 'cease', 'to', 'see', 'all', 'else,', '', 'if', 'you', 'could', 'hear', 'whispering', 'of', 'dream', 'you', 'would', 'hear', 'no', 'other', 'sound.', '', 'But', 'you', 'do', 'not', 'see,', 'nor', 'do', 'you', 'hear,', 'it', 'is', 'well.', '', 'veil', 'that', 'clouds', 'your', 'eyes', 'shall', 'be', 'lifted', 'by', 'hands', 'that', 'wove', 'it,', '', 'clay', 'that', 'fills', 'your', 'ears', 'shall', 'be', 'pierced', 'by', 'those', 'fingers', 'that', 'kneaded', 'it.', '', 'you', 'shall', 'see.', '', 'you', 'shall', 'hear.', '', 'Yet', 'you', 'shall', 'not', 'deplore', 'having', 'known', 'blindness,', 'nor', 'regret', 'having', 'been', 'deaf.', '', 'For', 'in', 'that', 'day', 'you', 'shall', 'know', 'hidden', 'purposes', 'in', 'all', 'things,', '', 'you', 'shall', 'bless', 'darkness', 'as', 'you', 'would', 'bless', 'light.', '', 'After', 'saying', 'these', 'things', 'he', 'looked', 'about', 'him,', 'he', 'saw', 'pilot', 'of', 'his', 'ship', 'standing', 'by', 'helm', 'gazing', 'now', 'at', 'full', 'sails', 'now', 'at', 'distance.', '', 'he', 'said:', '', 'Patient,', 'over', 'patient,', 'is', 'captain', 'of', 'my', 'ship.', '', 'wind', 'blows,', 'restless', 'are', 'sails;', '', 'Even', 'rudder', 'begs', 'direction;', '', 'Yet', 'quietly', 'my', 'captain', 'awaits', 'my', 'silence.', '', 'these', 'my', 'mariners,', 'who', 'have', 'heard', 'choir', 'of', 'greater', 'sea,', 'they', 'too', 'have', 'heard', 'me', 'patiently.', '', 'they', 'shall', 'wait', 'no', 'longer.', '', 'I', 'am', 'ready.', '', 'stream', 'has', 'reached', 'sea,', 'once', 'more', 'great', 'mother', 'holds', 'her', 'son', 'against', 'her', 'breast.', '', '*****', '', 'Fare', 'you', 'well,', 'people', 'of', 'Orphalese.', '', 'This', 'day', 'has', 'ended.', '', 'It', 'is', 'closing', 'upon', 'us', 'even', 'as', 'water-lily', 'upon', 'its', 'own', 'tomorrow.', '', 'What', 'was', 'given', 'us', 'here', 'we', 'shall', 'keep,', '', 'if', 'it', 'suffices', 'not,', 'then', 'again', 'must', 'we', 'come', 'together', 'together', 'stretch', 'our', 'hands', 'unto', 'giver.', '', 'Forget', 'not', 'that', 'I', 'shall', 'come', 'back', 'to', 'you.', '', 'little', 'while,', 'my', 'longing', 'shall', 'gather', 'dust', 'foam', 'for', 'another', 'body.', '', 'little', 'while,', 'moment', 'of', 'rest', 'upon', 'wind,', 'another', 'woman', 'shall', 'bear', 'me.', '', 'Farewell', 'to', 'you', 'youth', 'I', 'have', 'spent', 'with', 'you.', '', 'It', 'was', 'but', 'yesterday', 'we', 'met', 'in', 'dream.', '', 'have', 'sung', 'to', 'me', 'in', 'my', 'aloneness,', 'I', 'of', 'your', 'longings', 'have', 'built', 'tower', 'in', 'sky.', '', 'But', 'now', 'our', 'sleep', 'has', 'fled', 'our', 'dream', 'is', 'over,', 'it', 'is', 'no', 'longer', 'dawn.', '', 'noontide', 'is', 'upon', 'us', 'our', 'half', 'waking', 'has', 'turned', 'to', 'fuller', 'day,', 'we', 'must', 'part.', '', 'If', 'in', 'twilight', 'of', 'memory', 'we', 'should', 'meet', 'once', 'more,', 'we', 'shall', 'speak', 'again', 'together', 'you', 'shall', 'sing', 'to', 'me', 'deeper', 'song.', '', 'if', 'our', 'hands', 'should', 'meet', 'in', 'another', 'dream', 'we', 'shall', 'build', 'another', 'tower', 'in', 'sky.', '', '*****', '', 'So', 'saying', 'he', 'made', 'signal', 'to', 'seamen,', 'straightway', 'they', 'weighed', 'anchor', 'cast', 'ship', 'loose', 'from', 'its', 'moorings,', 'they', 'moved', 'eastward.', '', 'cry', 'came', 'from', 'people', 'as', 'from', 'single', 'heart,', 'it', 'rose', 'into', 'dusk', 'was', 'carried', 'out', 'over', 'sea', 'like', 'great', 'trumpeting.', '', 'Only', 'Almitra', 'was', 'silent,', 'gazing', 'after', '', 'ship', 'until', 'it', 'had', 'vanished', 'into', 'mist.', '', 'when', 'all', 'people', 'were', 'dispersed', 'she', 'still', 'stood', 'alone', 'upon', 'sea-wall,', 'remembering', 'in', 'her', 'heart', 'his', 'saying,', '', '“A', 'little', 'while,', 'moment', 'of', 'rest', 'upon', 'wind,', 'another', 'woman', 'shall', 'bear', 'me.”', '', '[Illustration:', '0134]', '', '', '', '', '', '', '', '', 'End', 'of', 'Project', 'Gutenberg', 'EBook', 'of', 'Prophet,', 'by', 'Kahlil', 'Gibran', '', '***', 'END', 'OF', 'THIS', 'PROJECT', 'GUTENBERG', 'EBOOK', '***', '', '*****', 'This', 'file', 'should', 'be', 'named', '58585-0.txt', 'or', '58585-0.zip', '*****', 'This', 'all', 'associated', 'files', 'of', 'various', 'formats', 'will', 'be', 'found', 'in:', '', '', '', '', '', '', '', '', 'http://www.gutenberg.org/5/8/5/8/58585/', '', 'Produced', 'by', 'David', 'Widger', 'from', 'page', 'images', 'generously', 'provided', 'by', 'Internet', 'Archive', '', '', 'Updated', 'editions', 'will', 'replace', 'previous', 'one--the', 'old', 'editions', 'will', 'be', 'renamed.', '', 'Creating', 'works', 'from', 'print', 'editions', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', 'means', 'that', 'no', 'one', 'owns', 'United', 'States', 'copyright', 'in', 'these', 'works,', 'so', 'Foundation', '(and', 'you!)', 'can', 'copy', 'distribute', 'it', 'in', 'United', 'States', 'without', 'permission', 'without', 'paying', 'copyright', 'royalties.', 'Special', 'rules,', 'set', 'forth', 'in', 'General', 'Terms', 'of', 'Use', 'part', 'of', 'this', 'license,', 'apply', 'to', 'copying', 'distributing', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'to', 'protect', 'PROJECT', 'GUTENBERG-tm', 'concept', 'trademark.', 'Project', 'Gutenberg', 'is', 'registered', 'trademark,', 'may', 'not', 'be', 'used', 'if', 'you', 'charge', 'for', 'eBooks,', 'unless', 'you', 'receive', 'specific', 'permission.', 'If', 'you', 'do', 'not', 'charge', 'anything', 'for', 'copies', 'of', 'this', 'eBook,', 'complying', 'with', 'rules', 'is', 'very', 'easy.', 'You', 'may', 'use', 'this', 'eBook', 'for', 'nearly', 'any', 'purpose', 'such', 'as', 'creation', 'of', 'derivative', 'works,', 'reports,', 'performances', 'research.', 'They', 'may', 'be', 'modified', 'printed', 'given', 'away--you', 'may', 'do', 'practically', 'ANYTHING', 'in', 'United', 'States', 'with', 'eBooks', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law.', 'Redistribution', 'is', 'subject', 'to', 'trademark', 'license,', 'especially', 'commercial', 'redistribution.', '', 'START:', 'FULL', 'LICENSE', '', 'FULL', 'PROJECT', 'GUTENBERG', 'LICENSE', 'PLEASE', 'READ', 'THIS', 'BEFORE', 'YOU', 'DISTRIBUTE', 'OR', 'USE', 'THIS', 'WORK', '', 'To', 'protect', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting', 'free', 'distribution', 'of', 'electronic', 'works,', 'by', 'using', 'or', 'distributing', 'this', 'work', '(or', 'any', 'other', 'work', 'associated', 'in', 'any', 'way', 'with', 'phrase', '\"Project', 'Gutenberg\"),', 'you', 'agree', 'to', 'comply', 'with', 'all', 'terms', 'of', 'Full', 'Project', 'Gutenberg-tm', 'License', 'available', 'with', 'this', 'file', 'or', 'online', 'at', 'www.gutenberg.org/license.', '', 'Section', '1.', 'General', 'Terms', 'of', 'Use', 'Redistributing', 'Project', 'Gutenberg-tm', 'electronic', 'works', '', '1.A.', 'By', 'reading', 'or', 'using', 'any', 'part', 'of', 'this', 'Project', 'Gutenberg-tm', 'electronic', 'work,', 'you', 'indicate', 'that', 'you', 'have', 'read,', 'understand,', 'agree', 'to', 'accept', 'all', 'terms', 'of', 'this', 'license', 'intellectual', 'property', '(trademark/copyright)', 'agreement.', 'If', 'you', 'do', 'not', 'agree', 'to', 'abide', 'by', 'all', 'terms', 'of', 'this', 'agreement,', 'you', 'must', 'cease', 'using', 'return', 'or', 'destroy', 'all', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in', 'your', 'possession.', 'If', 'you', 'paid', 'fee', 'for', 'obtaining', 'copy', 'of', 'or', 'access', 'to', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'you', 'do', 'not', 'agree', 'to', 'be', 'bound', 'by', 'terms', 'of', 'this', 'agreement,', 'you', 'may', 'obtain', 'refund', 'from', 'person', 'or', 'entity', 'to', 'whom', 'you', 'paid', 'fee', 'as', 'set', 'forth', 'in', 'paragraph', '1.E.8.', '', '1.B.', '\"Project', 'Gutenberg\"', 'is', 'registered', 'trademark.', 'It', 'may', 'only', 'be', 'used', 'on', 'or', 'associated', 'in', 'any', 'way', 'with', 'electronic', 'work', 'by', 'people', 'who', 'agree', 'to', 'be', 'bound', 'by', 'terms', 'of', 'this', 'agreement.', 'There', 'are', 'few', 'things', 'that', 'you', 'can', 'do', 'with', 'most', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'even', 'without', 'complying', 'with', 'full', 'terms', 'of', 'this', 'agreement.', 'See', 'paragraph', '1.C', 'below.', 'There', 'are', 'lot', 'of', 'things', 'you', 'can', 'do', 'with', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'if', 'you', 'follow', 'terms', 'of', 'this', 'agreement', 'help', 'preserve', 'free', 'future', 'access', 'to', 'Project', 'Gutenberg-tm', 'electronic', 'works.', 'See', 'paragraph', '1.E', 'below.', '', '1.C.', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', '(\"the', 'Foundation\"', 'or', 'PGLAF),', 'owns', 'compilation', 'copyright', 'in', 'collection', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works.', 'Nearly', 'all', 'individual', 'works', 'in', 'collection', 'are', 'in', 'public', 'domain', 'in', 'United', 'States.', 'If', 'individual', 'work', 'is', 'unprotected', 'by', 'copyright', 'law', 'in', 'United', 'States', 'you', 'are', 'located', 'in', 'United', 'States,', 'we', 'do', 'not', 'claim', 'right', 'to', 'prevent', 'you', 'from', 'copying,', 'distributing,', 'performing,', 'displaying', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'work', 'as', 'long', 'as', 'all', 'references', 'to', 'Project', 'Gutenberg', 'are', 'removed.', 'Of', 'course,', 'we', 'hope', 'that', 'you', 'will', 'support', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting', 'free', 'access', 'to', 'electronic', 'works', 'by', 'freely', 'sharing', 'Project', 'Gutenberg-tm', 'works', 'in', 'compliance', 'with', 'terms', 'of', 'this', 'agreement', 'for', 'keeping', 'Project', 'Gutenberg-tm', 'name', 'associated', 'with', 'work.', 'You', 'can', 'easily', 'comply', 'with', 'terms', 'of', 'this', 'agreement', 'by', 'keeping', 'this', 'work', 'in', 'same', 'format', 'with', 'its', 'attached', 'full', 'Project', 'Gutenberg-tm', 'License', 'when', 'you', 'share', 'it', 'without', 'charge', 'with', 'others.', '', '1.D.', 'copyright', 'laws', 'of', 'place', 'where', 'you', 'are', 'located', 'also', 'govern', 'what', 'you', 'can', 'do', 'with', 'this', 'work.', 'Copyright', 'laws', 'in', 'most', 'countries', 'are', 'in', 'constant', 'state', 'of', 'change.', 'If', 'you', 'are', 'outside', 'United', 'States,', 'check', 'laws', 'of', 'your', 'country', 'in', 'addition', 'to', 'terms', 'of', 'this', 'agreement', 'before', 'downloading,', 'copying,', 'displaying,', 'performing,', 'distributing', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'this', 'work', 'or', 'any', 'other', 'Project', 'Gutenberg-tm', 'work.', 'Foundation', 'makes', 'no', 'representations', 'concerning', 'copyright', 'status', 'of', 'any', 'work', 'in', 'any', 'country', 'outside', 'United', 'States.', '', '1.E.', 'Unless', 'you', 'have', 'removed', 'all', 'references', 'to', 'Project', 'Gutenberg:', '', '1.E.1.', 'following', 'sentence,', 'with', 'active', 'links', 'to,', 'or', 'other', 'immediate', 'access', 'to,', 'full', 'Project', 'Gutenberg-tm', 'License', 'must', 'appear', 'prominently', 'whenever', 'any', 'copy', 'of', 'Project', 'Gutenberg-tm', 'work', '(any', 'work', 'on', 'which', 'phrase', '\"Project', 'Gutenberg\"', 'appears,', 'or', 'with', 'which', 'phrase', '\"Project', 'Gutenberg\"', 'is', 'associated)', 'is', 'accessed,', 'displayed,', 'performed,', 'viewed,', 'copied', 'or', 'distributed:', '', '', '', 'This', 'eBook', 'is', 'for', 'use', 'of', 'anyone', 'anywhere', 'in', 'United', 'States', '', '', 'most', 'other', 'parts', 'of', 'world', 'at', 'no', 'cost', 'with', 'almost', 'no', '', '', 'restrictions', 'whatsoever.', 'You', 'may', 'copy', 'it,', 'give', 'it', 'away', 'or', 're-use', 'it', '', '', 'under', 'terms', 'of', 'Project', 'Gutenberg', 'License', 'included', 'with', 'this', '', '', 'eBook', 'or', 'online', 'at', 'www.gutenberg.org.', 'If', 'you', 'are', 'not', 'located', 'in', '', '', 'United', 'States,', \"you'll\", 'have', 'to', 'check', 'laws', 'of', 'country', 'where', 'you', '', '', 'are', 'located', 'before', 'using', 'this', 'ebook.', '', '1.E.2.', 'If', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is', 'derived', 'from', 'texts', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', '(does', 'not', 'contain', 'notice', 'indicating', 'that', 'it', 'is', 'posted', 'with', 'permission', 'of', 'copyright', 'holder),', 'work', 'can', 'be', 'copied', 'distributed', 'to', 'anyone', 'in', 'United', 'States', 'without', 'paying', 'any', 'fees', 'or', 'charges.', 'If', 'you', 'are', 'redistributing', 'or', 'providing', 'access', 'to', 'work', 'with', 'phrase', '\"Project', 'Gutenberg\"', 'associated', 'with', 'or', 'appearing', 'on', 'work,', 'you', 'must', 'comply', 'either', 'with', 'requirements', 'of', 'paragraphs', '1.E.1', 'through', '1.E.7', 'or', 'obtain', 'permission', 'for', 'use', 'of', 'work', 'Project', 'Gutenberg-tm', 'trademark', 'as', 'set', 'forth', 'in', 'paragraphs', '1.E.8', 'or', '1.E.9.', '', '1.E.3.', 'If', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is', 'posted', 'with', 'permission', 'of', 'copyright', 'holder,', 'your', 'use', 'distribution', 'must', 'comply', 'with', 'both', 'paragraphs', '1.E.1', 'through', '1.E.7', 'any', 'additional', 'terms', 'imposed', 'by', 'copyright', 'holder.', 'Additional', 'terms', 'will', 'be', 'linked', 'to', 'Project', 'Gutenberg-tm', 'License', 'for', 'all', 'works', 'posted', 'with', 'permission', 'of', 'copyright', 'holder', 'found', 'at', 'beginning', 'of', 'this', 'work.', '', '1.E.4.', 'Do', 'not', 'unlink', 'or', 'detach', 'or', 'remove', 'full', 'Project', 'Gutenberg-tm', 'License', 'terms', 'from', 'this', 'work,', 'or', 'any', 'files', 'containing', 'part', 'of', 'this', 'work', 'or', 'any', 'other', 'work', 'associated', 'with', 'Project', 'Gutenberg-tm.', '', '1.E.5.', 'Do', 'not', 'copy,', 'display,', 'perform,', 'distribute', 'or', 'redistribute', 'this', 'electronic', 'work,', 'or', 'any', 'part', 'of', 'this', 'electronic', 'work,', 'without', 'prominently', 'displaying', 'sentence', 'set', 'forth', 'in', 'paragraph', '1.E.1', 'with', 'active', 'links', 'or', 'immediate', 'access', 'to', 'full', 'terms', 'of', 'Project', 'Gutenberg-tm', 'License.', '', '1.E.6.', 'You', 'may', 'convert', 'to', 'distribute', 'this', 'work', 'in', 'any', 'binary,', 'compressed,', 'marked', 'up,', 'nonproprietary', 'or', 'proprietary', 'form,', 'including', 'any', 'word', 'processing', 'or', 'hypertext', 'form.', 'However,', 'if', 'you', 'provide', 'access', 'to', 'or', 'distribute', 'copies', 'of', 'Project', 'Gutenberg-tm', 'work', 'in', 'format', 'other', 'than', '\"Plain', 'Vanilla', 'ASCII\"', 'or', 'other', 'format', 'used', 'in', 'official', 'version', 'posted', 'on', 'official', 'Project', 'Gutenberg-tm', 'web', 'site', '(www.gutenberg.org),', 'you', 'must,', 'at', 'no', 'additional', 'cost,', 'fee', 'or', 'expense', 'to', 'user,', 'provide', 'copy,', 'means', 'of', 'exporting', 'copy,', 'or', 'means', 'of', 'obtaining', 'copy', 'upon', 'request,', 'of', 'work', 'in', 'its', 'original', '\"Plain', 'Vanilla', 'ASCII\"', 'or', 'other', 'form.', 'Any', 'alternate', 'format', 'must', 'include', 'full', 'Project', 'Gutenberg-tm', 'License', 'as', 'specified', 'in', 'paragraph', '1.E.1.', '', '1.E.7.', 'Do', 'not', 'charge', 'fee', 'for', 'access', 'to,', 'viewing,', 'displaying,', 'performing,', 'copying', 'or', 'distributing', 'any', 'Project', 'Gutenberg-tm', 'works', 'unless', 'you', 'comply', 'with', 'paragraph', '1.E.8', 'or', '1.E.9.', '', '1.E.8.', 'You', 'may', 'charge', 'reasonable', 'fee', 'for', 'copies', 'of', 'or', 'providing', 'access', 'to', 'or', 'distributing', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'provided', 'that', '', '*', 'You', 'pay', 'royalty', 'fee', 'of', '20%', 'of', 'gross', 'profits', 'you', 'derive', 'from', '', '', 'use', 'of', 'Project', 'Gutenberg-tm', 'works', 'calculated', 'using', 'method', '', '', 'you', 'already', 'use', 'to', 'calculate', 'your', 'applicable', 'taxes.', 'fee', 'is', 'owed', '', '', 'to', 'owner', 'of', 'Project', 'Gutenberg-tm', 'trademark,', 'but', 'he', 'has', '', '', 'agreed', 'to', 'donate', 'royalties', 'under', 'this', 'paragraph', 'to', 'Project', '', '', 'Gutenberg', 'Literary', 'Archive', 'Foundation.', 'Royalty', 'payments', 'must', 'be', 'paid', '', '', 'within', '60', 'days', 'following', 'each', 'date', 'on', 'which', 'you', 'prepare', '(or', 'are', '', '', 'legally', 'required', 'to', 'prepare)', 'your', 'periodic', 'tax', 'returns.', 'Royalty', '', '', 'payments', 'should', 'be', 'clearly', 'marked', 'as', 'such', 'sent', 'to', 'Project', '', '', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'at', 'address', 'specified', 'in', '', '', 'Section', '4,', '\"Information', 'about', 'donations', 'to', 'Project', 'Gutenberg', '', '', 'Literary', 'Archive', 'Foundation.\"', '', '*', 'You', 'provide', 'full', 'refund', 'of', 'any', 'money', 'paid', 'by', 'user', 'who', 'notifies', '', '', 'you', 'in', 'writing', '(or', 'by', 'e-mail)', 'within', '30', 'days', 'of', 'receipt', 'that', 's/he', '', '', 'does', 'not', 'agree', 'to', 'terms', 'of', 'full', 'Project', 'Gutenberg-tm', '', '', 'License.', 'You', 'must', 'require', 'such', 'user', 'to', 'return', 'or', 'destroy', 'all', '', '', 'copies', 'of', 'works', 'possessed', 'in', 'physical', 'medium', 'discontinue', '', '', 'all', 'use', 'of', 'all', 'access', 'to', 'other', 'copies', 'of', 'Project', 'Gutenberg-tm', '', '', 'works.', '', '*', 'You', 'provide,', 'in', 'accordance', 'with', 'paragraph', '1.F.3,', 'full', 'refund', 'of', '', '', 'any', 'money', 'paid', 'for', 'work', 'or', 'replacement', 'copy,', 'if', 'defect', 'in', '', '', 'electronic', 'work', 'is', 'discovered', 'reported', 'to', 'you', 'within', '90', 'days', 'of', '', '', 'receipt', 'of', 'work.', '', '*', 'You', 'comply', 'with', 'all', 'other', 'terms', 'of', 'this', 'agreement', 'for', 'free', '', '', 'distribution', 'of', 'Project', 'Gutenberg-tm', 'works.', '', '1.E.9.', 'If', 'you', 'wish', 'to', 'charge', 'fee', 'or', 'distribute', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'or', 'group', 'of', 'works', 'on', 'different', 'terms', 'than', 'are', 'set', 'forth', 'in', 'this', 'agreement,', 'you', 'must', 'obtain', 'permission', 'in', 'writing', 'from', 'both', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'Project', 'Gutenberg', 'Trademark', 'LLC,', 'owner', 'of', 'Project', 'Gutenberg-tm', 'trademark.', 'Contact', 'Foundation', 'as', 'set', 'forth', 'in', 'Section', '3', 'below.', '', '1.F.', '', '1.F.1.', 'Project', 'Gutenberg', 'volunteers', 'employees', 'expend', 'considerable', 'effort', 'to', 'identify,', 'do', 'copyright', 'research', 'on,', 'transcribe', 'proofread', 'works', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', 'in', 'creating', 'Project', 'Gutenberg-tm', 'collection.', 'Despite', 'these', 'efforts,', 'Project', 'Gutenberg-tm', 'electronic', 'works,', 'medium', 'on', 'which', 'they', 'may', 'be', 'stored,', 'may', 'contain', '\"Defects,\"', 'such', 'as,', 'but', 'not', 'limited', 'to,', 'incomplete,', 'inaccurate', 'or', 'corrupt', 'data,', 'transcription', 'errors,', 'copyright', 'or', 'other', 'intellectual', 'property', 'infringement,', 'defective', 'or', 'damaged', 'disk', 'or', 'other', 'medium,', 'computer', 'virus,', 'or', 'computer', 'codes', 'that', 'damage', 'or', 'cannot', 'be', 'read', 'by', 'your', 'equipment.', '', '1.F.2.', 'LIMITED', 'WARRANTY,', 'DISCLAIMER', 'OF', 'DAMAGES', '-', 'Except', 'for', '\"Right', 'of', 'Replacement', 'or', 'Refund\"', 'described', 'in', 'paragraph', '1.F.3,', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation,', 'owner', 'of', 'Project', 'Gutenberg-tm', 'trademark,', 'any', 'other', 'party', 'distributing', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'under', 'this', 'agreement,', 'disclaim', 'all', 'liability', 'to', 'you', 'for', 'damages,', 'costs', 'expenses,', 'including', 'legal', 'fees.', 'YOU', 'AGREE', 'THAT', 'YOU', 'HAVE', 'NO', 'REMEDIES', 'FOR', 'NEGLIGENCE,', 'STRICT', 'LIABILITY,', 'BREACH', 'OF', 'WARRANTY', 'OR', 'BREACH', 'OF', 'CONTRACT', 'EXCEPT', 'THOSE', 'PROVIDED', 'IN', 'PARAGRAPH', '1.F.3.', 'YOU', 'AGREE', 'THAT', 'FOUNDATION,', 'TRADEMARK', 'OWNER,', 'ANY', 'DISTRIBUTOR', 'UNDER', 'THIS', 'AGREEMENT', 'WILL', 'NOT', 'BE', 'LIABLE', 'TO', 'YOU', 'FOR', 'ACTUAL,', 'DIRECT,', 'INDIRECT,', 'CONSEQUENTIAL,', 'PUNITIVE', 'OR', 'INCIDENTAL', 'DAMAGES', 'EVEN', 'IF', 'YOU', 'GIVE', 'NOTICE', 'OF', 'POSSIBILITY', 'OF', 'SUCH', 'DAMAGE.', '', '1.F.3.', 'LIMITED', 'RIGHT', 'OF', 'REPLACEMENT', 'OR', 'REFUND', '-', 'If', 'you', 'discover', 'defect', 'in', 'this', 'electronic', 'work', 'within', '90', 'days', 'of', 'receiving', 'it,', 'you', 'can', 'receive', 'refund', 'of', 'money', '(if', 'any)', 'you', 'paid', 'for', 'it', 'by', 'sending', 'written', 'explanation', 'to', 'person', 'you', 'received', 'work', 'from.', 'If', 'you', 'received', 'work', 'on', 'physical', 'medium,', 'you', 'must', 'return', 'medium', 'with', 'your', 'written', 'explanation.', 'person', 'or', 'entity', 'that', 'provided', 'you', 'with', 'defective', 'work', 'may', 'elect', 'to', 'provide', 'replacement', 'copy', 'in', 'lieu', 'of', 'refund.', 'If', 'you', 'received', 'work', 'electronically,', 'person', 'or', 'entity', 'providing', 'it', 'to', 'you', 'may', 'choose', 'to', 'give', 'you', 'second', 'opportunity', 'to', 'receive', 'work', 'electronically', 'in', 'lieu', 'of', 'refund.', 'If', 'second', 'copy', 'is', 'also', 'defective,', 'you', 'may', 'demand', 'refund', 'in', 'writing', 'without', 'further', 'opportunities', 'to', 'fix', 'problem.', '', '1.F.4.', 'Except', 'for', 'limited', 'right', 'of', 'replacement', 'or', 'refund', 'set', 'forth', 'in', 'paragraph', '1.F.3,', 'this', 'work', 'is', 'provided', 'to', 'you', \"'AS-IS',\", 'WITH', 'NO', 'OTHER', 'WARRANTIES', 'OF', 'ANY', 'KIND,', 'EXPRESS', 'OR', 'IMPLIED,', 'INCLUDING', 'BUT', 'NOT', 'LIMITED', 'TO', 'WARRANTIES', 'OF', 'MERCHANTABILITY', 'OR', 'FITNESS', 'FOR', 'ANY', 'PURPOSE.', '', '1.F.5.', 'Some', 'states', 'do', 'not', 'allow', 'disclaimers', 'of', 'certain', 'implied', 'warranties', 'or', 'exclusion', 'or', 'limitation', 'of', 'certain', 'types', 'of', 'damages.', 'If', 'any', 'disclaimer', 'or', 'limitation', 'set', 'forth', 'in', 'this', 'agreement', 'violates', 'law', 'of', 'state', 'applicable', 'to', 'this', 'agreement,', 'agreement', 'shall', 'be', 'interpreted', 'to', 'make', 'maximum', 'disclaimer', 'or', 'limitation', 'permitted', 'by', 'applicable', 'state', 'law.', 'invalidity', 'or', 'unenforceability', 'of', 'any', 'provision', 'of', 'this', 'agreement', 'shall', 'not', 'void', 'remaining', 'provisions.', '', '1.F.6.', 'INDEMNITY', '-', 'You', 'agree', 'to', 'indemnify', 'hold', 'Foundation,', 'trademark', 'owner,', 'any', 'agent', 'or', 'employee', 'of', 'Foundation,', 'anyone', 'providing', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in', 'accordance', 'with', 'this', 'agreement,', 'any', 'volunteers', 'associated', 'with', 'production,', 'promotion', 'distribution', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works,', 'harmless', 'from', 'all', 'liability,', 'costs', 'expenses,', 'including', 'legal', 'fees,', 'that', 'arise', 'directly', 'or', 'indirectly', 'from', 'any', 'of', 'following', 'which', 'you', 'do', 'or', 'cause', 'to', 'occur:', '(a)', 'distribution', 'of', 'this', 'or', 'any', 'Project', 'Gutenberg-tm', 'work,', '(b)', 'alteration,', 'modification,', 'or', 'additions', 'or', 'deletions', 'to', 'any', 'Project', 'Gutenberg-tm', 'work,', '(c)', 'any', 'Defect', 'you', 'cause.', '', 'Section', '2.', 'Information', 'about', 'Mission', 'of', 'Project', 'Gutenberg-tm', '', 'Project', 'Gutenberg-tm', 'is', 'synonymous', 'with', 'free', 'distribution', 'of', 'electronic', 'works', 'in', 'formats', 'readable', 'by', 'widest', 'variety', 'of', 'computers', 'including', 'obsolete,', 'old,', 'middle-aged', 'new', 'computers.', 'It', 'exists', 'because', 'of', 'efforts', 'of', 'hundreds', 'of', 'volunteers', 'donations', 'from', 'people', 'in', 'all', 'walks', 'of', 'life.', '', 'Volunteers', 'financial', 'support', 'to', 'provide', 'volunteers', 'with', 'assistance', 'they', 'need', 'are', 'critical', 'to', 'reaching', 'Project', \"Gutenberg-tm's\", 'goals', 'ensuring', 'that', 'Project', 'Gutenberg-tm', 'collection', 'will', 'remain', 'freely', 'available', 'for', 'generations', 'to', 'come.', 'In', '2001,', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'was', 'created', 'to', 'provide', 'secure', 'permanent', 'future', 'for', 'Project', 'Gutenberg-tm', 'future', 'generations.', 'To', 'learn', 'more', 'about', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'how', 'your', 'efforts', 'donations', 'can', 'help,', 'see', 'Sections', '3', '4', 'Foundation', 'information', 'page', 'at', 'www.gutenberg.org', 'Section', '3.', 'Information', 'about', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', '', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'is', 'non', 'profit', '501(c)(3)', 'educational', 'corporation', 'organized', 'under', 'laws', 'of', 'state', 'of', 'Mississippi', 'granted', 'tax', 'exempt', 'status', 'by', 'Internal', 'Revenue', 'Service.', \"Foundation's\", 'EIN', 'or', 'federal', 'tax', 'identification', 'number', 'is', '64-6221541.', 'Contributions', 'to', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'are', 'tax', 'deductible', 'to', 'full', 'extent', 'permitted', 'by', 'U.S.', 'federal', 'laws', 'your', \"state's\", 'laws.', '', \"Foundation's\", 'principal', 'office', 'is', 'in', 'Fairbanks,', 'Alaska,', 'with', 'mailing', 'address:', 'PO', 'Box', '750175,', 'Fairbanks,', 'AK', '99775,', 'but', 'its', 'volunteers', 'employees', 'are', 'scattered', 'throughout', 'numerous', 'locations.', 'Its', 'business', 'office', 'is', 'located', 'at', '809', 'North', '1500', 'West,', 'Salt', 'Lake', 'City,', 'UT', '84116,', '(801)', '596-1887.', 'Email', 'contact', 'links', 'up', 'to', 'date', 'contact', 'information', 'can', 'be', 'found', 'at', \"Foundation's\", 'web', 'site', 'official', 'page', 'at', 'www.gutenberg.org/contact', '', 'For', 'additional', 'contact', 'information:', '', '', '', '', '', 'Dr.', 'Gregory', 'B.', 'Newby', '', '', '', '', 'Chief', 'Executive', 'Director', '', '', '', '', 'gbnewby@pglaf.org', '', 'Section', '4.', 'Information', 'about', 'Donations', 'to', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', '', 'Project', 'Gutenberg-tm', 'depends', 'upon', 'cannot', 'survive', 'without', 'wide', 'spread', 'public', 'support', 'donations', 'to', 'carry', 'out', 'its', 'mission', 'of', 'increasing', 'number', 'of', 'public', 'domain', 'licensed', 'works', 'that', 'can', 'be', 'freely', 'distributed', 'in', 'machine', 'readable', 'form', 'accessible', 'by', 'widest', 'array', 'of', 'equipment', 'including', 'outdated', 'equipment.', 'Many', 'small', 'donations', '($1', 'to', '$5,000)', 'are', 'particularly', 'important', 'to', 'maintaining', 'tax', 'exempt', 'status', 'with', 'IRS.', '', 'Foundation', 'is', 'committed', 'to', 'complying', 'with', 'laws', 'regulating', 'charities', 'charitable', 'donations', 'in', 'all', '50', 'states', 'of', 'United', 'States.', 'Compliance', 'requirements', 'are', 'not', 'uniform', 'it', 'takes', 'considerable', 'effort,', 'much', 'paperwork', 'many', 'fees', 'to', 'meet', 'keep', 'up', 'with', 'these', 'requirements.', 'We', 'do', 'not', 'solicit', 'donations', 'in', 'locations', 'where', 'we', 'have', 'not', 'received', 'written', 'confirmation', 'of', 'compliance.', 'To', 'SEND', 'DONATIONS', 'or', 'determine', 'status', 'of', 'compliance', 'for', 'any', 'particular', 'state', 'visit', 'www.gutenberg.org/donate', '', 'While', 'we', 'cannot', 'do', 'not', 'solicit', 'contributions', 'from', 'states', 'where', 'we', 'have', 'not', 'met', 'solicitation', 'requirements,', 'we', 'know', 'of', 'no', 'prohibition', 'against', 'accepting', 'unsolicited', 'donations', 'from', 'donors', 'in', 'such', 'states', 'who', 'approach', 'us', 'with', 'offers', 'to', 'donate.', '', 'International', 'donations', 'are', 'gratefully', 'accepted,', 'but', 'we', 'cannot', 'make', 'any', 'statements', 'concerning', 'tax', 'treatment', 'of', 'donations', 'received', 'from', 'outside', 'United', 'States.', 'U.S.', 'laws', 'alone', 'swamp', 'our', 'small', 'staff.', '', 'Please', 'check', 'Project', 'Gutenberg', 'Web', 'pages', 'for', 'current', 'donation', 'methods', 'addresses.', 'Donations', 'are', 'accepted', 'in', 'number', 'of', 'other', 'ways', 'including', 'checks,', 'online', 'payments', 'credit', 'card', 'donations.', 'To', 'donate,', 'please', 'visit:', 'www.gutenberg.org/donate', '', 'Section', '5.', 'General', 'Information', 'About', 'Project', 'Gutenberg-tm', 'electronic', 'works.', '', 'Professor', 'Michael', 'S.', 'Hart', 'was', 'originator', 'of', 'Project', 'Gutenberg-tm', 'concept', 'of', 'library', 'of', 'electronic', 'works', 'that', 'could', 'be', 'freely', 'shared', 'with', 'anyone.', 'For', 'forty', 'years,', 'he', 'produced', 'distributed', 'Project', 'Gutenberg-tm', 'eBooks', 'with', 'only', 'loose', 'network', 'of', 'volunteer', 'support.', '', 'Project', 'Gutenberg-tm', 'eBooks', 'are', 'often', 'created', 'from', 'several', 'printed', 'editions,', 'all', 'of', 'which', 'are', 'confirmed', 'as', 'not', 'protected', 'by', 'copyright', 'in', 'U.S.', 'unless', 'copyright', 'notice', 'is', 'included.', 'Thus,', 'we', 'do', 'not', 'necessarily', 'keep', 'eBooks', 'in', 'compliance', 'with', 'any', 'particular', 'paper', 'edition.', '', 'Most', 'people', 'start', 'at', 'our', 'Web', 'site', 'which', 'has', 'main', 'PG', 'search', 'facility:', 'www.gutenberg.org', '', 'This', 'Web', 'site', 'includes', 'information', 'about', 'Project', 'Gutenberg-tm,', 'including', 'how', 'to', 'make', 'donations', 'to', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation,', 'how', 'to', 'help', 'produce', 'our', 'new', 'eBooks,', 'how', 'to', 'subscribe', 'to', 'our', 'email', 'newsletter', 'to', 'hear', 'about', 'new', 'eBooks.', '', '']\n" + ] + } + ], "source": [ "def word_filter_case(x):\n", - " \n", - " word_list = ['and', 'the', 'a', 'an']\n", - " \n", - " # your code here" + " word_list = ['and', 'the', 'a', 'an','prophet']\n", + " return x.lower() not in word_list\n", + "\n", + "prophet_filter_case = list(filter(word_filter_case,prophet_filter))\n", + "print(prophet_filter_case) " ] }, { @@ -256,11 +2386,12 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "def concat_space(a, b):\n", + " return a+' '+b\n", " '''\n", " Input:Two strings\n", " Output: A single string separated by a space\n", @@ -269,6 +2400,9 @@ " Input: 'John', 'Smith'\n", " Output: 'John Smith'\n", " '''\n", + " prophet_string = reduce(lambda a,b: a + ' ' + b, prophet_filter)\n", + " \n", + " \n", " \n", " # your code here" ] @@ -282,11 +2416,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 40, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "PROPHET |Almustafa, chosen beloved, who was dawn unto his own day, had waited twelve years in city of Orphalese for his ship that was to return bear him back to isle of his birth. And in twelfth year, on seventh day of Ielool, month of reaping, he climbed hill without city walls looked seaward; he beheld his ship coming with mist. Then gates of his heart were flung open, his joy flew far over sea. And he closed his eyes prayed in silences of his soul. ***** But as he descended hill, sadness came upon him, he thought in his heart: How shall I go in peace without sorrow? Nay, not without wound in spirit shall I leave this city. days of pain I have spent within its walls, long were nights of aloneness; who can depart from his pain his aloneness without regret? Too many fragments of spirit have I scattered in these streets, too many are children of my longing that walk naked among these hills, I cannot withdraw from them without burden ache. It is not garment I cast off this day, but skin that I tear with my own hands. Nor is it thought I leave behind me, but heart made sweet with hunger with thirst. ***** Yet I cannot tarry longer. The sea that calls all things unto her calls me, I must embark. For to stay, though hours burn in night, is to freeze crystallize be bound in mould. Fain would I take with me all that is here. But how shall I? A voice cannot carry tongue lips that gave it wings. Alone must it seek ether. And alone without his nest shall eagle fly across sun. ***** Now when he reached foot of hill, he turned again towards sea, he saw his ship approaching harbour, upon her prow mariners, men of his own land. And his soul cried out to them, he said: Sons of my ancient mother, you riders of tides, How often have you sailed in my dreams. And now you come in my awakening, which is my deeper dream. Ready am I to go, my eagerness with sails full set awaits wind. Only another breath will I breathe in this still air, only another loving look cast backward, And then I shall stand among you, seafarer among seafarers. you, vast sea, sleepless mother, Who alone are peace freedom to river stream, Only another winding will this stream make, only another murmur in this glade, And then shall I come to you, boundless drop to boundless ocean. ***** And as he walked he saw from afar men women leaving their fields their vineyards hastening towards city gates. And he heard their voices calling his name, shouting from field to field telling one another of coming of his ship. And he said to himself: Shall day of parting be day of gathering? And shall it be said that my eve was in truth my dawn? And what shall I give unto him who has left his plough in midfurrow, or to him who has stopped wheel of his winepress? my heart become tree heavy-laden with fruit that I may gather give unto them? And shall my desires flow like fountain that I may fill their cups? Am I harp that hand of mighty may touch me, or flute that his breath may pass through me? A seeker of silences am I, what treasure have I found in silences that I may dispense with confidence? If this is my day of harvest, in what fields have I sowed seed, in what unremembered seasons? If this indeed be hour in which I lift up my lantern, it is not my flame that shall burn therein. Empty dark shall I raise my lantern, And guardian of night shall fill it with oil he shall light it also. ***** These things he said in words. But much in his heart remained unsaid. For could not speak his deeper secret. ***** [Illustration: 0020] And when he entered into city all people came to meet him, they were crying out to him as with one voice. And elders of city stood forth said: Go not yet away from us. A noontide have you been in our twilight, your youth has given us dreams to dream. No stranger are you among us, nor guest, but our son our dearly beloved. Suffer not yet our eyes to hunger for your face. ***** And priests priestesses said unto him: Let not waves of sea separate us now, years you have spent in our midst become memory. You have walked among us spirit, your shadow has been light upon our faces. Much have we loved you. But speechless was our love, with veils has it been veiled. Yet now it cries aloud unto you, would stand revealed before you. And ever has it been that love knows not its own depth until hour of separation. ***** And others came also entreated him. But he answered them not. He only bent his head; those who stood near saw his tears falling upon his breast. And he people proceeded towards great square before temple. And there came out of sanctuary woman whose name was Almitra. And she was seeress. And he looked upon her with exceeding tenderness, for it was she who had first sought believed in him when he had been but day in their city. hailed him, saying: Prophet of God, in quest of uttermost, long have you searched distances for your ship. And now your ship has come, you must needs go. Deep is your longing for land of your memories dwelling place of your greater desires; our love would not bind you nor our needs hold you. Yet this we ask ere you leave us, that you speak to us give us of your truth. And we will give it unto our children, they unto their children, it shall not perish. In your aloneness you have watched with our days, in your wakefulness you have listened to weeping laughter of our sleep. Now therefore disclose us to ourselves, tell us all that has been shown you of that which is between birth death. ***** And he answered, People of Orphalese, of what can I save of that which is even now moving within your souls? ***** ***** Then said Almitra, Speak to us of _Love_. And he raised his head looked upon people, there fell stillness upon them. And with great voice he said: When love beckons to you, follow him, Though his ways are hard steep. And when his wings enfold you yield to him, Though sword hidden among his pinions may wound you. And when he speaks to you believe in him, Though his voice may shatter your dreams as north wind lays waste garden. For even as love crowns you so shall he crucify you. Even as he is for your growth so is he for your pruning. Even as he ascends to your height your tenderest branches that quiver in sun, So shall he descend to your roots shake them in their clinging to earth. ***** Like sheaves of corn he gathers you unto himself. He threshes you to make you naked. He sifts you to free you from your husks. He grinds you to whiteness. He kneads you until you are pliant; And then he assigns you to his sacred fire, that you may become sacred bread for God’s sacred feast. ***** All these things shall love do unto you that you may know secrets of your heart, in that knowledge become fragment of Life’s heart. But if in your fear you would seek only love’s peace love’s pleasure, Then it is better for you that you cover nakedness pass out of love’s threshing-floor, Into seasonless world where you shall laugh, but not all of your laughter, weep, but not all of your tears. ***** Love gives naught but itself takes naught but from itself. Love possesses not nor would it be possessed; For love is sufficient unto love. When you love you should not say, “God is in my heart,” but rather, “I am in heart of God.” And think not you can direct course of love, for love, if it finds you worthy, directs your course. Love has no other desire but to fulfil itself. But if you love must needs have desires, let these be your desires: To melt be like running brook that sings its melody to night. pain of too much tenderness. To be wounded by your own understanding of love; And to bleed willingly joyfully. To wake at dawn with winged heart give thanks for another day of loving; To rest at noon hour meditate love’s ecstacy; To return home at eventide with gratitude; And then to sleep with prayer for beloved in your heart song of praise upon your lips. [Illustration: 0029] ***** ***** Almitra spoke again said, And what of _Marriage_ master? And he answered saying: You were born together, together you shall be forevermore. You shall be together when white wings of death scatter your days. Aye, you shall be together even in silent memory of God. But let there be spaces in your togetherness, And let winds of heavens dance between you. ***** Love one another, but make not bond of love: Let it rather be moving sea between shores of your souls. Fill each other’s cup but drink not from one cup. Give one another of your bread but eat not from same loaf. dance together be joyous, but let each one of you be alone, Even as strings of lute are alone though they quiver with same music. ***** Give your hearts, but not into each other’s keeping. For only hand of Life can contain your hearts. And stand together yet not too near together: For pillars of temple stand apart, And oak tree cypress grow not in each other’s shadow. [Illustration: 0032] ***** ***** woman who held babe against her bosom said, Speak to us of _Children_. And he said: Your children are not your children. They are sons daughters of Life’s longing for itself. They come through you but not from you, And though they are with you yet they belong not to you. ***** You may give them your love but not your thoughts, For they have their own thoughts. You may house their bodies but not their souls, For their souls dwell in house of tomorrow, which you cannot visit, not even in your dreams. You may strive to be like them, but seek not to make them like you. goes not backward nor tarries with yesterday. You are bows from which your children as living arrows are sent forth. The archer sees mark upon path of infinite, He bends you with His might that His arrows may go swift far. Let your bending in Archer’s hand be for gladness; For even as he loves arrow that flies, so He loves also bow that is stable. ***** ***** said rich man, Speak to us of _Giving_. And he answered: You give but little when you give of your possessions. It is when you give of yourself that you truly give. For what are your possessions but things you keep guard for fear you may need them tomorrow? And tomorrow, what shall tomorrow bring to overprudent dog burying bones in trackless sand as he follows pilgrims to holy city? And what is fear of need but need itself? Is not dread of thirst when your well is full, thirst that is unquenchable? There are those who give little of which they have--and they give it for recognition their hidden desire makes their gifts unwholesome. And there are those who have little give it all. These are believers in life bounty of life, their coffer is never empty. There are those who give with joy, that joy is their reward. And there are those who give with pain, that pain is their baptism. And there are those who give know not pain in giving, nor do they seek joy, nor give with mindfulness of virtue; They give as in yonder valley myrtle breathes its fragrance into space. Through hands of such as these God speaks, from behind their eyes He smiles upon earth. [Illustration: 0039] It is well to give when asked, but it is better to give unasked, through understanding; And to open-handed search for who shall receive is joy greater than giving. And is there aught you would withhold? All you have shall some day be given; Therefore give now, that season of giving may be yours not your inheritors’. You often say, “I would give, but only to deserving.” The trees in your orchard say not so, nor flocks in your pasture. They give that they may live, for to withhold is to perish. Surely he who is worthy to receive his days his nights, is worthy of all else from you. And he who has deserved to drink from ocean of life deserves to fill his cup from your little stream. And what desert greater shall there be, than that which lies in courage confidence, nay charity, of receiving? And who are you that men should rend bosom unveil their pride, that you may see their worth naked their pride unabashed? See first that you yourself deserve to be giver, instrument of giving. For in truth it is life that gives unto life--while you, who deem yourself giver, are but witness. And you receivers--and you are all receivers--assume no weight of gratitude, lest you lay yoke upon yourself upon him who gives. Rather rise together with giver on his gifts as on wings; For to be overmindful of your debt, is ito doubt his generosity who has freehearted earth for mother, God for father. [Illustration: 0042] ***** ***** old man, keeper of inn, said, Speak to us of _Eating Drinking_. And he said: Would that you could live on fragrance of earth, like air plant be sustained by light. But since you must kill to eat, rob newly born of its mother’s milk to quench your thirst, let it then be act of worship, And let your board stand altar on which pure innocent of forest plain are sacrificed for that which is purer still more innocent in man. ***** When you kill beast say to him in your heart, “By same power that slays you, I too am slain; I too shall be consumed. law that delivered you into my hand shall deliver me into mightier hand. Your blood my blood is naught but sap that feeds tree of heaven.” ***** And when you crush apple with your teeth, say to it in your heart, “Your seeds shall live in my body, And buds of your tomorrow shall blossom in my heart, And your fragrance shall be my breath, And together we shall rejoice through all seasons.” ***** And in autumn, when you gather grapes of your vineyards for winepress, say in your heart, “I too am vineyard, my fruit shall be gathered for winepress, And like new wine I shall be kept in eternal vessels.” And in winter, when you draw wine, there be in your heart song for each cup; And let there be in song remembrance for autumn days, for vineyard, for winepress. ***** ***** Then ploughman said, Speak to us of _Work_. And he answered, saying: You work that you may keep pace with earth soul of earth. For to be idle is to become stranger unto seasons, to step out of life’s procession, that marches in majesty proud submission towards infinite. When you work you are flute through whose heart whispering of hours turns to music. Which of you would be reed, dumb silent, when all else sings together in unison? Always you have been told that work is curse labour misfortune. But I say to you that when you work you fulfil part of earth’s furthest dream, to you when that dream was born, And in keeping yourself with labour you are in truth loving life, And to love life through labour is to be intimate with life’s inmost secret. ***** But if you in your pain call birth affliction support of flesh curse written upon your brow, then I answer that naught but sweat of your brow shall wash away that which is written. You have been told also that life is darkness, in your weariness you echo what was said by weary. And I say that life is indeed darkness ‘save when there is urge, And all urge is blind save when there is knowledge, And all knowledge is vain save when there is work, And all work is empty save when there is love; And when you work with love you bind to yourself, to one another, to God. ***** And what is it to work with love? It is to weave cloth with threads drawn from your heart, even as if your beloved were to wear that cloth. It is to build house with affection, even as if your beloved were to dwell in that house. It is to sow seeds with tenderness reap harvest with joy, even as if your beloved were to eat fruit. It is to charge all things you fashion with breath of your own spirit, And to know that all blessed dead are standing about you watching. Often have I heard you say, as if speaking in sleep, “He who works in marble, finds shape of his own soul in stone, is nobler than he who ploughs soil. he who seizes rainbow to lay it on cloth in likeness of man, is more than he who makes sandals for our feet.” But I say, not in sleep but in overwakefulness of noontide, that wind speaks not more sweetly to giant oaks than to least of all blades of grass; And he alone is great who turns voice of wind into song made sweeter by his own loving. ***** Work is love made visible. And if you cannot work with love but only with distaste, it is better that you should leave your work sit at gate of temple take alms of those who work with joy. For if you bake bread with indifference, you bake bitter bread that feeds but half man’s hunger. And if you grudge crushing of grapes, your grudge distils poison in wine. if you sing though as angels, love not singing, you muffle man’s ears to voices of day voices of night. ***** ***** woman said, Speak to us of _Joy Sorrow_. And he answered: Your joy is your sorrow unmasked. And selfsame well from which your laughter rises was oftentimes filled with your tears. And how else can it be? The deeper that sorrow carves into your being, more joy you can contain. Is not cup that holds your wine very cup that was burned in potter’s oven? And is not lute that soothes your spirit, very wood that was hollowed with knives? When you are joyous, look deep into your heart you shall find it is only that which has given you sorrow that is giving you joy. When you are sorrowful look again in heart, you shall see that in truth you are weeping for that which has been your delight. ***** Some of you say, “Joy is greater than sorrow,” others say, “Nay, sorrow is greater.” But I say unto you, they are inseparable. Together they come, when one sits alone with you at your board, remember that other is asleep upon your bed. Verily you are suspended like scales between your sorrow your joy. Only when you are empty are you at standstill balanced. When treasure-keeper lifts you to weigh his gold his silver, needs must your joy or your sorrow rise or fall. ***** ***** mason came forth said, Speak to us of _Houses_. And he answered said: Build of your imaginings bower in wilderness ere you build house within city walls. For even as you have home-comings in your twilight, so has wanderer in you, ever distant alone. Your house is your larger body. It grows in sun sleeps in stillness of night; it is not dreamless. Does not your house dream? dreaming, leave city for grove or hilltop? Would that I could gather your houses into my hand, like sower scatter them in forest meadow. Would valleys were your streets, green paths your alleys, that you seek one another through vineyards, come with fragrance of earth in your garments. But these things are not yet to be. In their fear your forefathers gathered you too near together. And that fear shall endure little longer. A little longer shall your city walls separate your hearths from your fields. ***** And tell me, people of Orphalese, what have you in these houses? And what is it you guard with fastened doors? Have you peace, quiet urge that reveals your power? Have you remembrances, glimmering arches that span summits of mind? Have you beauty, that leads heart from things fashioned of wood stone to holy mountain? Tell me, have you these in your houses? Or have you only comfort, lust for comfort, that stealthy thing that house guest, then becomes host, then master? ***** Ay, it becomes tamer, with hook scourge makes puppets of your larger desires. Though its hands are silken, its heart is of iron. It lulls you to sleep only to stand by your bed jeer at dignity of flesh. It makes mock of your sound senses, lays them in thistledown like fragile vessels. Verily lust for comfort murders passion of soul, then walks grinning in funeral. But you, children of space, you restless in rest, you shall not be trapped nor tamed. Your house shall be not anchor but mast. It shall not be glistening film that wound, but eyelid that guards eye. You shall not fold your wings that you may pass through doors, nor bend your heads that they strike not against ceiling, nor fear to breathe lest walls should crack fall down. You shall not dwell in tombs made by dead for living. And though of magnificence splendour, your house shall not hold your secret nor shelter your longing. For that which is boundless in you abides in mansion of sky, whose door is morning mist, whose windows are songs silences of night. ***** ***** weaver said, Speak to us of _Clothes_. And he answered: Your clothes conceal much of your beauty, yet they hide not unbeautiful. And though you seek in garments freedom of privacy you may find in them harness chain. Would that you could meet sun wind with more of your skin less of your raiment, For breath of life is in sunlight hand of life is in wind. Some of you say, “It is north wind who has woven clothes we wear.” And I say, Ay, it was north wind, But shame was his loom, softening of sinews was his thread. And when his work was done he laughed in forest. not that modesty is for shield against eye of unclean. And when unclean shall be no more, what were modesty but fetter fouling of mind? And forget not that earth delights to feel your bare feet winds long to play with your hair. ***** ***** merchant said, Speak to us of _Buying Selling_. And he answered said: To you earth yields her fruit, you shall not want if you but know how to fill your hands. It is in exchanging gifts of earth that you shall find abundance be satisfied. Yet unless exchange be in love kindly justice, it will but lead some to greed others to hunger. When in market place you toilers of sea fields vineyards meet weavers potters gatherers of spices,-- Invoke then master spirit of earth, to come into your midst sanctify scales reckoning that weighs value against value. not barren-handed to take part in your transactions, who would sell their words for your labour. To such men you should say, “Come with us to field, or go with our brothers to sea cast your net; For land sea shall be bountiful to you even as to us.” ***** And if there come singers dancers flute players,--buy of their gifts also. For they too are gatherers of fruit frankincense, that which they bring, though fashioned of dreams, is raiment food for your soul. And before you leave market place, see that no one has gone his way with empty hands. For master spirit of earth shall not sleep peacefully upon wind till needs of least of you are satisfied. ***** ***** one of judges of city stood forth said, Speak to us of _Crime Punishment_. And he answered, saying: It is when your spirit goes wandering upon wind, That you, alone unguarded, commit wrong unto others therefore unto yourself. And for that wrong committed must you knock wait while unheeded at gate of blessed. Like ocean is your god-self; It remains for ever undefiled. And like ether it lifts but winged. Even like sun is your god-self; It knows not ways of mole nor seeks it holes of serpent. your god-self dwells not alone in your being. Much in you is still man, much in you is not yet man, But shapeless pigmy that walks asleep in mist searching for its own awakening. And of man in you would I now speak. For it is he not your god-self nor pigmy in mist, that knows crime punishment of crime. ***** Oftentimes have I heard you speak of one who commits wrong as though he were not one of you, but stranger unto you intruder upon your world. But I say that even as holy righteous cannot rise beyond highest which is in each one of you, So wicked weak cannot fall lower than lowest which is in you also. And as single leaf turns not yellow but with silent knowledge of whole tree, wrong-doer cannot do wrong without hidden will of you all. Like procession you walk together towards your god-self. [Illustration: 0064] You are way wayfarers. And when one of you falls down he falls for those behind him, caution against stumbling stone. Ay, he falls for those ahead of him, who though faster surer of foot, yet removed not stumbling stone. And this also, though word lie heavy upon your hearts: The murdered is not unaccountable for his own murder, And robbed is not blameless in being robbed. The righteous is not innocent of deeds of wicked, And white-handed is not clean in doings of felon. Yea, guilty is oftentimes victim of injured, And still more often condemned is burden bearer for guiltless unblamed. You cannot separate just from unjust good from wicked; For they stand together before face of sun even as black thread white are woven together. And when black thread breaks, weaver shall look into whole cloth, he shall examine loom also. ***** If any of you would bring to judgment unfaithful wife, Let him also weigh heart of her husband in scales, measure his soul with measurements. And let him who would lash offender look unto spirit of offended. And if any of you would punish in name of righteousness lay ax unto evil tree, let him see to its roots; And verily he will find roots of good bad, fruitful all entwined together in silent heart of earth. And you judges who would be just, What judgment pronounce you upon him who though honest in flesh yet is thief in spirit? What penalty lay you upon him who slays in flesh yet is himself slain in spirit? And how prosecute you him who in action is deceiver oppressor, Yet who also is aggrieved outraged? ***** And how shall you punish those whose remorse is already greater than their misdeeds? Is not remorse justice which is administered by that very law which you would fain serve? Yet you cannot lay remorse upon innocent nor lift it from heart of guilty. Unbidden shall it call in night, that men may wake gaze upon themselves. you who would understand justice, how shall you unless you look upon all deeds in fullness of light? Only then shall you know that erect fallen are but one man standing in twilight between night of his pigmy-self day of his god-self, And that corner-stone of temple is not higher than lowest stone in its foundation. ***** ***** lawyer said, But what of our _Laws_, master? And he answered: You delight in laying down laws, Yet you delight more in breaking them. Like children playing by ocean who build sand-towers with constancy then destroy them with laughter. But while you build your sand-towers ocean brings more sand to shore, And when you destroy them ocean laughs with you. Verily ocean laughs always with innocent. But what of those to whom life is not ocean, man-made laws are not sand-towers, But to whom life is rock, law chisel with which they would carve it in their own likeness? of cripple who hates dancers? What of ox who loves his yoke deems elk deer of forest stray vagrant things? What of old serpent who cannot shed his skin, calls all others naked shameless? And of him who comes early to wedding-feast, when over-fed tired goes his way saying that all feasts are violation all feasters lawbreakers? ***** What shall I say of these save that they too stand in sunlight, but with their backs to sun? They see only their shadows, their shadows are their laws. And what is sun to them but caster of shadows? And what is it to acknowledge laws but to stoop down trace their shadows upon earth? But you who walk facing sun, what drawn on earth can hold you? You who travel with wind, what weather-vane shall direct your course? What man’s law shall bind you if you break your yoke but upon no man’s prison door? What laws shall you fear if you dance but stumble against no man’s iron chains? And who is he that shall bring you to judgment if you tear off your garment yet leave it in no man’s path? ***** People of Orphalese, you can muffle drum, you can loosen strings of lyre, but who shall command skylark not to sing? ***** ***** orator said, Speak to us of _Freedom_. And he answered: At city gate by your fireside I have seen you prostrate yourself worship your own freedom, Even as slaves humble themselves before tyrant praise him though he slays them. Ay, in grove of temple in shadow of citadel I have seen freest among you wear their freedom as yoke handcuff. And my heart bled within me; for you can only be free when even desire of seeking freedom becomes harness to you, when you cease to speak of freedom as goal fulfilment. You shall be free indeed when your days are not without care nor your without want grief, But rather when these things girdle your life yet you rise above them naked unbound. ***** And how shall you rise beyond your days nights unless you break chains which you at dawn of your understanding have fastened around your noon hour? In truth that which you call freedom is strongest of these chains, though its links glitter in sun dazzle your eyes. And what is it but fragments of your own self you would discard that you may become free? If it is unjust law you would abolish, that law was written with your own hand upon your own forehead. You cannot erase it by burning your law books nor by washing foreheads of your judges, though you pour sea upon them. And if it is despot you would see first that his throne erected within you is destroyed. For how can tyrant rule free proud, but for tyranny in their own freedom shame in their own pride? And if it is care you would cast off, that cart has been chosen by you rather than imposed upon you. And if it is fear you would dispel, seat of that fear is in your heart not in hand of feared. ***** Verily all things move within your being in constant half embrace, desired dreaded, repugnant cherished, pursued that which you would escape. These things move within you as lights shadows in pairs that cling. And when shadow fades is no more, light that lingers becomes shadow to another light. And thus your freedom when it loses its fetters becomes itself fetter of greater freedom. ***** ***** priestess spoke again said: Speak to us of _Reason Passion_. And he answered, saying: Your soul is oftentimes battlefield, upon which your reason your judgment wage war against your passion your appetite. Would that I could be peacemaker in your soul, that I might turn discord rivalry of your elements into oneness melody. But how shall I, unless you yourselves be also peacemakers, nay, lovers of all your elements? Your reason your passion are rudder sails of your seafaring soul. If either your sails or your rudder be broken, you can but toss drift, or else be held at standstill in mid-seas. reason, ruling alone, is force confining; passion, unattended, is flame that burns to its own destruction. Therefore let your soul exalt your reason to height of passion, that it may sing; And let it direct your passion with reason, that your passion may live through its own daily resurrection, like phoenix rise above its own ashes. ***** I would have you consider your judgment your appetite even as you would two loved guests in your house. Surely you would not honour one guest above other; for he who is more mindful of one loses love faith of both Among hills, when you sit in cool shade of white poplars, sharing peace serenity of distant fields meadows--then let your heart say in silence, “God rests in reason.” And when storm comes, wind shakes forest, thunder lightning proclaim majesty of sky,--then let your heart say in awe, “God moves in passion.” And since you are breath in God’s sphere, leaf in God’s forest, you too should rest in reason move in passion. ***** ***** woman spoke, saying, Tell us of _Pain_. And he said: Your pain is breaking of shell that encloses your understanding. Even as stone of fruit must break, that its heart may stand in sun, so must you know pain. And could you keep your heart in wonder at daily miracles of your life, your pain would not seem less wondrous than your joy; And you would accept seasons of your heart, even as you have always accepted seasons that pass over your fields. And you would watch with serenity through winters of your grief. Much of your pain is self-chosen. It is bitter potion by which physician you heals your sick self. Therefore trust physician, drink his remedy in silence tranquillity: For his hand, though heavy hard, is guided by tender hand of Unseen, And cup he brings, though it burn your lips, has been fashioned of clay which Potter has moistened with His own sacred tears. ***** ***** man said, Speak to us of _Self-Knowledge_. And he answered, saying: Your hearts know in silence secrets of days nights. But your ears thirst for sound of your heart’s knowledge. You would know in words that which you have always known in thought. You would touch with your fingers naked body of your dreams. And it is well you should. The hidden well-spring of your soul must needs rise run murmuring to sea; And treasure of your infinite depths would be revealed to your eyes. But let there be no scales to weigh your unknown treasure; And seek not depths of your with staff or sounding line. For self is sea boundless measureless. ***** Say not, “I have found truth,” but rather, “I have found truth.” Say not, “I have found path of soul.” Say rather, “I have met soul walking upon my path.” For soul walks upon all paths. The soul walks not upon line, neither does it grow like reed. The soul unfolds itself, like lotus of countless petals. [Illustration: 0083] ***** ***** said teacher, Speak to us of _Teaching_. And he said: “No man can reveal to you aught but that which already lies half asleep in dawning of your knowledge. The teacher who walks in shadow of temple, among his followers, gives not of his wisdom but rather of his faith his lovingness. If he is indeed wise he does not bid you enter house of his wisdom, but rather leads you to threshold of your own mind. The astronomer may speak to you of his understanding of space, but he cannot give you his understanding. The musician may sing to you of rhythm which is in all space, but he cannot give you ear which arrests rhythm nor voice that echoes it. he who is versed in science of numbers can tell of regions of weight measure, but he cannot conduct you thither. For vision of one man lends not its wings to another man. And even as each one of you stands alone in God’s knowledge, so must each one of you be alone in his knowledge of God in his understanding of earth. ***** ***** youth said, Speak to us of _Friendship_. And he answered, saying: Your friend is your needs answered. He is your field which you sow with love reap with thanksgiving. And he is your board your fireside. For you come to him with your hunger, you seek him for peace. When your friend speaks his mind you fear not “nay” in your own mind, nor do you withhold “ay.” And when he is silent your heart ceases not to listen to his heart; For without words, in friendship, all thoughts, all desires, all expectations are born shared, with joy that is unacclaimed. When you part from your friend, you grieve not; For that which you love most in him may be clearer in his absence, as mountain to climber is clearer from plain. let there be no purpose in friendship save deepening of spirit. For love that seeks aught but disclosure of its own mystery is not love but net cast forth: only unprofitable is caught. ***** And let your best be for your friend. If he must know ebb of your tide, let him know its flood also. For what is your friend that you should seek him with hours to kill? Seek him always with hours to live. For it is his to fill your need, but not your emptiness. And in sweetness of friendship let there be laughter, sharing of pleasures. For in dew of little things heart finds its morning is refreshed. ***** ***** then scholar said, Speak of _Talking_. And he answered, saying: You talk when you cease to be at peace with your thoughts; And when you can no longer dwell in solitude of your heart you live in your lips, sound is diversion pastime. And in much of your talking, thinking is half murdered. For thought is bird of space, that in cage of words may indeed unfold its wings but cannot fly. There are those among you who seek talkative through fear of being alone. The silence of aloneness reveals to their eyes their naked selves they would escape. And there are those who talk, knowledge or forethought reveal truth which they themselves do not understand. And there are those who have truth within them, but they tell it not in words. In bosom of such as these spirit dwells in rhythmic silence. ***** When you meet your friend on roadside or in market place, let spirit in you move your lips direct your tongue. Let voice within your voice speak to ear of his ear; For his soul will keep truth of your heart as taste of wine is remembered When colour is forgotten vessel is no more. ***** ***** astronomer said, Master, what of _Time_? And he answered: You would measure time measureless immeasurable. You would adjust your conduct even direct course of your spirit according to hours seasons. Of time you would make stream upon whose bank you would sit watch its flowing. Yet timeless in you is aware of life’s timelessness, And knows that yesterday is but today’s memory tomorrow is today’s dream. And that that which sings contemplates in you is still dwelling within bounds of that first moment which scattered stars into space. among you does not feel that his power to love is boundless? And yet who does not feel that very love, though boundless, encompassed within centre of his being, moving not from love thought to love thought, nor from love deeds to other love deeds? And is not time even as love is, undivided paceless? ***** But if in your thought you must measure time into seasons, let each season encircle all other seasons, And let today embrace past with remembrance future with longing. ***** ***** one of elders of city said, Speak to us of _Good Evil_. And he answered: Of good in you I can speak, but not of evil. For what is evil but good tortured by its own hunger thirst? Verily when good is hungry it seeks food even in dark caves, when it thirsts it drinks even of dead waters. You are good when you are one with yourself. Yet when you are not one with yourself you are not evil. For divided house is not den of thieves; it is only divided house. And ship without rudder may wander aimlessly among perilous isles yet sink not to bottom. are good when you strive to give of yourself. Yet you are not evil when you seek gain for yourself. For when you strive for gain you are but root that clings to earth sucks at her breast. Surely fruit cannot say to root, “Be like me, ripe full ever giving of your abundance.” For to fruit giving is need, as receiving is need to root. ***** You are good when you are fully awake in your speech, Yet you are not evil when you sleep while your tongue staggers without purpose. And even stumbling speech may strengthen weak tongue. You are good when you walk to your goal firmly with bold steps. Yet you are not evil when you go thither limping. those who limp go not backward. But you who are strong swift, see that you do not limp before lame, deeming it kindness. ***** You are good in countless ways, you are not evil when you are not good, You are only loitering sluggard. Pity that stags cannot teach swiftness to turtles. In your longing for your giant self lies your goodness: that longing is in all of you. But in some of you that longing is torrent rushing with might to sea, carrying secrets of hillsides songs of forest. And in others it is flat stream that loses itself in angles bends lingers before it reaches shore. But let not him who longs much say to who longs little, “Wherefore are you slow halting?” For truly good ask not naked, “Where is your garment?” nor houseless, “What has befallen your house?” ***** ***** priestess said, Speak to us of _Prayer_. And he answered, saying: You pray in your distress in your need; would that you might pray also in fullness of your joy in your days of abundance. For what is prayer but expansion of yourself into living ether? And if it is for your comfort to pour your darkness into space, it is also for your delight to pour forth dawning of your heart. And if you cannot but weep when your soul summons you to prayer, she should spur you again yet again, though weeping, until you shall come laughing. When you pray you rise to meet in air those who are praying at that very whom save in prayer you may not meet. Therefore let your visit to that temple invisible be for naught but ecstasy sweet communion. For if you should enter temple for no other purpose than asking you shall not receive: And if you should enter into it to humble yourself you shall not be lifted: Or even if you should enter into it to beg for good of others you shall not be heard. It is enough that you enter temple invisible. ***** I cannot teach you how to pray in words. God listens not to your words save when He Himself utters them through your lips. And I cannot teach you prayer of seas forests mountains. you who are born of mountains forests seas can find their prayer in your heart, And if you but listen in stillness of night you shall hear them saying in silence, “Our God, who art our winged self, it is thy will in us that willeth. It is thy desire in us that desireth. It is thy urge in us that would turn our nights, which are thine, into days which are thine also. We cannot ask thee for aught, for thou knowest our needs before they are born in us: Thou art our need; in giving us more of thyself thou givest us all.” [Illustration: 0100] ***** ***** hermit, who visited city once year, came forth said, Speak to us of _Pleasure_. And he answered, saying: Pleasure is freedom-song, But it is not freedom. It is blossoming of your desires, But it is not their fruit. It is depth calling unto height, But it is not deep nor high. It is caged taking wing, But it is not space encompassed. Ay, in very truth, pleasure is freedom-song. And I fain would have you sing it with fullness of heart; yet I would not have you lose your hearts in singing. Some of your youth seek pleasure as if it were all, they are judged rebuked. would not judge nor rebuke them. I would have them seek. For they shall find pleasure, but not her alone; Seven are her sisters, least of them is more beautiful than pleasure. Have you not heard of man who was digging in earth for roots found treasure? ***** And some of your elders remember pleasures with regret like wrongs committed in drunkenness. But regret is beclouding of mind not its chastisement. They should remember their pleasures with gratitude, as they would harvest of summer. Yet if it comforts them to regret, let them be comforted. And there are among you those who are neither young to seek nor old to remember; And in their fear of seeking remembering shun all pleasures, lest they neglect spirit or offend against it. But even in their foregoing is their pleasure. And thus they too find treasure though they dig for roots with quivering hands. But tell me, who is he that can offend spirit? Shall nightingale offend stillness of night, or firefly stars? And shall your flame or your smoke burden wind? Think you spirit is still pool which you can trouble with staff? ***** Oftentimes in denying yourself pleasure you do but store desire in recesses of your being. Who knows but that which seems omitted today, waits for tomorrow? Even your body knows its heritage its rightful need will not be deceived. And your body is harp of your soul, And it is yours to bring forth from it or confused sounds. ***** And now you ask in your heart, “How shall we distinguish that which is good in pleasure from that which is not good?” Go to your fields your gardens, you shall learn that it is pleasure of bee to gather honey of flower, But it is also pleasure of flower to yield its honey to bee. For to bee flower is fountain of life, And to flower bee is messenger of love, And to both, bee flower, giving receiving of pleasure is need ecstasy. People of Orphalese, be in your pleasures like flowers bees. ***** ***** poet said, Speak to us of _Beauty_. And he answered: Where shall you seek beauty, how shall you find her unless she herself be your way your guide? And how shall you speak of her except she be weaver of your speech? The aggrieved injured say, “Beauty is kind gentle. Like young mother half-shy of her own glory she walks among us.” And passionate say, “Nay, beauty is thing of might dread. Like tempest she shakes earth beneath us sky above us.” The tired weary say, “Beauty is of soft whisperings. She speaks in our spirit. voice yields to our silences like faint light that quivers in fear of shadow.” But restless say, “We have heard her shouting among mountains, And with her cries came sound of hoofs, beating of wings roaring of lions.” At night watchmen of city say, “Beauty shall rise with dawn from east.” And at noontide toilers wayfarers say, “We have seen her leaning over earth from windows of sunset.” ***** In winter say snow-bound, “She shall come with spring leaping upon hills.” And in summer heat reapers say, “We have seen her dancing with autumn leaves, we saw drift of snow in her hair.” these things have you said of beauty, Yet in truth you spoke not of her but of needs unsatisfied, And beauty is not need but ecstasy. It is not mouth thirsting nor empty hand stretched forth, But rather heart enflamed soul enchanted. It is not image you would see nor song you would hear, But rather image you see though you close your eyes song you hear though you shut your ears. It is not sap within furrowed bark, nor wing attached to claw, But rather garden for ever in bloom flock of angels for ever in flight. ***** People of Orphalese, beauty is life when life unveils her holy face. But you are life you are veil. is eternity gazing at itself in mirror. But you are eternity you are mirror. ***** ***** old priest said, Speak to us of _Religion_. And he said: Have I spoken this day of aught else? Is not religion all deeds all reflection, And that which is neither deed nor reflection, but wonder surprise ever springing in soul, even while hands hew stone or tend loom? Who can separate his faith from his actions, or his belief from his occupations? Who can spread his hours before him, saving, “This for God this for myself; This for my soul, this other for my body?” All your hours are wings that beat through space from self to self. wears his morality but as his best garment were better naked. The wind sun will tear no holes in his skin. And he who defines his conduct by ethics imprisons his song-bird in cage. The freest song comes not through bars wires. And he to whom worshipping is window, to open but also to shut, has not yet visited house of his soul whose windows are from dawn to dawn. ***** Your daily life is your temple your religion. Whenever you enter into it take with you your all. Take plough forge mallet lute, The things you have fashioned in necessity or for delight. For in revery you cannot rise above your achievements nor fall lower than your failures. And take with you all men: in adoration you cannot fly higher than their hopes nor humble yourself lower than their despair. ***** And if you would know God be not therefore solver of riddles. Rather look about you you shall see Him playing with your children. And look into space; you shall see Him walking in cloud, outstretching His arms in lightning descending in rain. You shall see Him smiling in flowers, then rising waving His hands in trees. ***** ***** Almitra spoke, saying, We would ask now of _Death_. And he said: You would know secret of death. But how shall you find it unless you seek it in heart of life? The owl whose night-bound eyes are blind unto day cannot unveil mystery of light. If you would indeed behold spirit of death, open your heart wide unto body of life. For life death are one, even as river sea are one. In depth of your hopes desires lies your silent knowledge of beyond; And like seeds dreaming beneath snow your heart dreams of spring. Trust dreams, for in them is hidden gate to eternity. fear of death is but trembling of shepherd when he stands before king whose hand is to be laid upon him in honour. Is shepherd not joyful beneath his trembling, that he shall wear mark of king? Yet is he not more mindful of his trembling? ***** For what is it to die but to stand naked in wind to melt into sun? And what is it to cease breathing, but to free breath from its restless tides, that it may rise expand seek God unencumbered? Only when you drink from river of silence shall you indeed sing. And when you have reached mountain top, then you shall begin to climb. And when earth shall claim your limbs, then shall you truly dance. now it was evening. And Almitra seeress said, Blessed be this day this place your spirit that has spoken. And he answered, Was it I who spoke? Was I not also listener? ***** Then he descended steps of Temple all people followed him. And he reached his ship stood upon deck. And facing people again, he raised his voice said: People of Orphalese, wind bids me leave you. Less hasty am I than wind, yet I must go. We wanderers, ever seeking lonelier way, begin no day where we have ended another day; no sunrise finds us where sunset left us. while earth sleeps we travel. We are seeds of tenacious plant, it is in our ripeness our fullness of heart that we are given to wind are scattered. ***** Brief were my days among you, briefer still words I have spoken. But should my voice fade in your ears, my love vanish in your memory, then I will come again, And with richer heart lips more yielding to spirit will I speak. Yea, I shall return with tide, And though death may hide me, greater silence enfold me, yet again will I seek your understanding. And not in vain will I seek. If aught I have said is truth, that truth shall reveal itself in clearer voice, in words more kin to your thoughts. I go with wind, people of Orphalese, but not down into emptiness; if this day is not fulfilment of your needs my love, then let it be promise till another day. Man’s needs change, but not his love, nor his desire that his love should satisfy his needs. Know therefore, that from greater silence I shall return. The mist that drifts away at dawn, leaving but dew in fields, shall rise gather into cloud then fall down in rain. And not unlike mist have I been. In stillness of night I have walked in your streets, my spirit has entered your houses, And your heart-beats were in my heart, your breath was upon my face, I knew you all. Ay, I knew your joy your pain, in your sleep your dreams were my dreams. And oftentimes I was among you lake among mountains. I mirrored summits in you slopes, even passing flocks of your thoughts your desires. And to my silence came laughter of your children in streams, longing of your youths in rivers. And when they reached my depth streams rivers ceased not yet to sing. [Illustration: 0119] But sweeter still than laughter greater than longing came to me. It was boundless in you; The vast man in whom you are all but cells sinews; He in whose chant all your singing is but soundless throbbing. It is in vast man that you are vast, And in beholding him that I beheld you loved you. For what distances can love reach that are not in that vast sphere? What visions, what expectations what presumptions can outsoar that flight? Like giant oak tree covered with apple blossoms is vast man in you. binds you to earth, his fragrance lifts you into space, in his durability you are deathless. ***** You have been told that, even like chain, you are as weak as your weakest link. This is but half truth. You are also as strong as your strongest link. To measure you by your smallest deed is to reckon power of ocean by frailty of its foam. To judge you by your failures is to cast blame upon seasons for their inconstancy. Ay, you are like ocean, And though heavy-grounded ships await tide upon your shores, yet, even like ocean, you cannot hasten your tides. And like seasons you are also, And though in your winter you deny your spring, Yet spring, reposing within you, smiles in her drowsiness is not offended. not I say these things in order that you may say one to other, “He praised us well. He saw but good in us.” I only speak to you in words of that which you yourselves know in thought. And what is word knowledge but shadow of wordless knowledge? Your thoughts my words are waves from sealed memory that keeps records of our yesterdays, And of ancient days when earth knew not us nor herself, And of nights when earth was up-wrought with confusion. ***** Wise men have come to you to give you of their wisdom. I came to take of your wisdom: And behold I have found that which is greater than wisdom. It is flame spirit in you ever gathering more of itself, While you, heedless of its expansion, bewail withering of your days. is life in quest of life in bodies that fear grave. ***** There are no graves here. These mountains plains are cradle stepping-stone. Whenever you pass by field where you have laid your ancestors look well thereupon, you shall see yourselves your children dancing hand in hand. Verily you often make merry without knowing. Others have come to you to whom for golden promises made unto your faith you have given but riches power glory. Less than promise have I given, yet more generous have you been to me. You have given me my deeper thirsting after life. Surely there is no greater gift to man than that which turns all his aims into parching lips all life into fountain. [Illustration: 0125] in this lies my honour my reward,-- That whenever I come to fountain to drink I find living water itself thirsty; And it drinks me while I drink it. ***** Some of you have deemed me proud over-shy to receive gifts. Too proud indeed am I to receive wages, but not gifts. And though I have eaten berries among hills when you would have had me sit at your board, And slept in portico of temple when you would gladly have sheltered me, Yet was it not your loving mindfulness of my days my nights that made food sweet to my mouth girdled my sleep with visions? For this I bless you most: You give much know not that you give at all. kindness that gazes upon itself in mirror turns to stone, And good deed that calls itself by tender names becomes parent to curse. ***** And some of you have called me aloof, drunk with my own aloneness, And you have said, “He holds council with trees of forest, but not with men. He sits alone on hill-tops looks down upon our city.” True it is that I have climbed hills walked in remote places. How could I have seen you save from great height or great distance? How can one be indeed near unless he be tar? And others among you called unto me, not in words, they said, “Stranger, stranger, lover of unreachable heights, why dwell you among summits where eagles build their nests? seek you unattainable? What storms would you trap in your net, And what vaporous birds do you hunt in sky? Come be one of us. Descend appease your hunger with our bread quench your thirst with our wine.” In solitude of their souls they said these things; But were their solitude deeper they would have known that I sought but secret of your joy your pain, And I hunted only your larger selves that walk sky. ***** But hunter was also hunted; For many of my arrows left my bow only to seek my own breast. And flier was also creeper; For when my wings were spread in sun their shadow upon earth was turtle. And I believer was also doubter; often have I put my finger in my own wound that I might have greater belief in you greater knowledge of you. ***** And it is with this belief this knowledge that I say, You are not enclosed within your bodies, nor confined to houses or fields. That which is you dwells above mountain roves with wind. It is not thing that crawls into sun for warmth or digs holes into darkness for safety, But thing free, spirit that envelops earth moves in ether. If these be vague words, then seek not to clear them. Vague nebulous is beginning of all things, but not their end, And I fain would have you remember me as beginning. Life, all that lives, is conceived in mist not in crystal. who knows but crystal is mist in decay? ***** This would I have you remember in remembering me: That which seems most feeble bewildered in you is strongest most determined. Is it not your breath that has erected hardened structure of your bones? And is it not dream which none of you remember having dreamt, that builded your city fashioned all there is in it? Could you but see tides of that breath you would cease to see all else, And if you could hear whispering of dream you would hear no other sound. But you do not see, nor do you hear, it is well. The veil that clouds your eyes shall be lifted by hands that wove it, And clay that fills your ears shall be pierced by those fingers that kneaded it. you shall see. And you shall hear. Yet you shall not deplore having known blindness, nor regret having been deaf. For in that day you shall know hidden purposes in all things, And you shall bless darkness as you would bless light. After saying these things he looked about him, he saw pilot of his ship standing by helm gazing now at full sails now at distance. And he said: Patient, over patient, is captain of my ship. The wind blows, restless are sails; Even rudder begs direction; Yet quietly my captain awaits my silence. And these my mariners, who have heard choir of greater sea, they too have heard me patiently. they shall wait no longer. I am ready. The stream has reached sea, once more great mother holds her son against her breast. ***** Fare you well, people of Orphalese. This day has ended. It is closing upon us even as water-lily upon its own tomorrow. What was given us here we shall keep, And if it suffices not, then again must we come together together stretch our hands unto giver. Forget not that I shall come back to you. A little while, my longing shall gather dust foam for another body. A little while, moment of rest upon wind, another woman shall bear me. Farewell to you youth I have spent with you. It was but yesterday we met in dream. have sung to me in my aloneness, I of your longings have built tower in sky. But now our sleep has fled our dream is over, it is no longer dawn. The noontide is upon us our half waking has turned to fuller day, we must part. If in twilight of memory we should meet once more, we shall speak again together you shall sing to me deeper song. And if our hands should meet in another dream we shall build another tower in sky. ***** So saying he made signal to seamen, straightway they weighed anchor cast ship loose from its moorings, they moved eastward. And cry came from people as from single heart, it rose into dusk was carried out over sea like great trumpeting. Only Almitra was silent, gazing after ship until it had vanished into mist. And when all people were dispersed she still stood alone upon sea-wall, remembering in her heart his saying, “A little while, moment of rest upon wind, another woman shall bear me.” [Illustration: 0134] End of Project Gutenberg EBook of The Prophet, by Kahlil Gibran *** END OF THIS PROJECT GUTENBERG EBOOK THE PROPHET *** ***** This file should be named 58585-0.txt or 58585-0.zip ***** This all associated files of various formats will be found in: http://www.gutenberg.org/5/8/5/8/58585/ Produced by David Widger from page images generously provided by Internet Archive Updated editions will replace previous one--the old editions will be renamed. Creating works from print editions not protected by U.S. copyright law means that no one owns United States copyright in these works, so Foundation (and you!) can copy distribute it in United States without permission without paying copyright royalties. Special rules, set forth in General Terms of Use part of this license, apply to copying distributing Project Gutenberg-tm electronic works to protect PROJECT GUTENBERG-tm concept trademark. Project Gutenberg is registered trademark, may not be used if you charge for eBooks, unless you receive specific permission. If you do not charge anything for copies of this eBook, complying with rules is very easy. You may use this eBook for nearly any purpose such as creation of derivative works, reports, performances research. They may be modified printed given away--you may do practically ANYTHING in United States with eBooks not protected by U.S. copyright law. Redistribution is subject to trademark license, especially commercial redistribution. START: FULL LICENSE THE FULL PROJECT GUTENBERG LICENSE PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK To protect Project Gutenberg-tm mission of promoting free distribution of electronic works, by using or distributing this work (or any other work associated in any way with phrase \"Project Gutenberg\"), you agree to comply with all terms of Full Project Gutenberg-tm License available with this file or online at www.gutenberg.org/license. Section 1. General Terms of Use Redistributing Project Gutenberg-tm electronic works 1.A. By reading or using any part of this Project Gutenberg-tm electronic work, you indicate that you have read, understand, agree to accept all terms of this license intellectual property (trademark/copyright) agreement. If you do not agree to abide by all terms of this agreement, you must cease using return or destroy all copies of Project Gutenberg-tm electronic works in your possession. If you paid fee for obtaining copy of or access to Project Gutenberg-tm electronic work you do not agree to be bound by terms of this agreement, you may obtain refund from person or entity to whom you paid fee as set forth in paragraph 1.E.8. 1.B. \"Project Gutenberg\" is registered trademark. It may only be used on or associated in any way with electronic work by people who agree to be bound by terms of this agreement. There are few things that you can do with most Project Gutenberg-tm electronic works even without complying with full terms of this agreement. See paragraph 1.C below. There are lot of things you can do with Project Gutenberg-tm electronic works if you follow terms of this agreement help preserve free future access to Project Gutenberg-tm electronic works. See paragraph 1.E below. 1.C. The Project Gutenberg Literary Archive Foundation (\"the Foundation\" or PGLAF), owns compilation copyright in collection of Project Gutenberg-tm electronic works. Nearly all individual works in collection are in public domain in United States. If individual work is unprotected by copyright law in United States you are located in United States, we do not claim right to prevent you from copying, distributing, performing, displaying or creating derivative works based on work as long as all references to Project Gutenberg are removed. Of course, we hope that you will support Project Gutenberg-tm mission of promoting free access to electronic works by freely sharing Project Gutenberg-tm works in compliance with terms of this agreement for keeping Project Gutenberg-tm name associated with work. You can easily comply with terms of this agreement by keeping this work in same format with its attached full Project Gutenberg-tm License when you share it without charge with others. 1.D. The copyright laws of place where you are located also govern what you can do with this work. Copyright laws in most countries are in constant state of change. If you are outside United States, check laws of your country in addition to terms of this agreement before downloading, copying, displaying, performing, distributing or creating derivative works based on this work or any other Project Gutenberg-tm work. The Foundation makes no representations concerning copyright status of any work in any country outside United States. 1.E. Unless you have removed all references to Project Gutenberg: 1.E.1. The following sentence, with active links to, or other immediate access to, full Project Gutenberg-tm License must appear prominently whenever any copy of Project Gutenberg-tm work (any work on which phrase \"Project Gutenberg\" appears, or with which phrase \"Project Gutenberg\" is associated) is accessed, displayed, performed, viewed, copied or distributed: This eBook is for use of anyone anywhere in United States most other parts of world at no cost with almost no restrictions whatsoever. You may copy it, give it away or re-use it under terms of Project Gutenberg License included with this eBook or online at www.gutenberg.org. If you are not located in United States, you'll have to check laws of country where you are located before using this ebook. 1.E.2. If individual Project Gutenberg-tm electronic work is derived from texts not protected by U.S. copyright law (does not contain notice indicating that it is posted with permission of copyright holder), work can be copied distributed to anyone in United States without paying any fees or charges. If you are redistributing or providing access to work with phrase \"Project Gutenberg\" associated with or appearing on work, you must comply either with requirements of paragraphs 1.E.1 through 1.E.7 or obtain permission for use of work Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or 1.E.9. 1.E.3. If individual Project Gutenberg-tm electronic work is posted with permission of copyright holder, your use distribution must comply with both paragraphs 1.E.1 through 1.E.7 any additional terms imposed by copyright holder. Additional terms will be linked to Project Gutenberg-tm License for all works posted with permission of copyright holder found at beginning of this work. 1.E.4. Do not unlink or detach or remove full Project Gutenberg-tm License terms from this work, or any files containing part of this work or any other work associated with Project Gutenberg-tm. 1.E.5. Do not copy, display, perform, distribute or redistribute this electronic work, or any part of this electronic work, without prominently displaying sentence set forth in paragraph 1.E.1 with active links or immediate access to full terms of Project Gutenberg-tm License. 1.E.6. You may convert to distribute this work in any binary, compressed, marked up, nonproprietary or proprietary form, including any word processing or hypertext form. However, if you provide access to or distribute copies of Project Gutenberg-tm work in format other than \"Plain Vanilla ASCII\" or other format used in official version posted on official Project Gutenberg-tm web site (www.gutenberg.org), you must, at no additional cost, fee or expense to user, provide copy, means of exporting copy, or means of obtaining copy upon request, of work in its original \"Plain Vanilla ASCII\" or other form. Any alternate format must include full Project Gutenberg-tm License as specified in paragraph 1.E.1. 1.E.7. Do not charge fee for access to, viewing, displaying, performing, copying or distributing any Project Gutenberg-tm works unless you comply with paragraph 1.E.8 or 1.E.9. 1.E.8. You may charge reasonable fee for copies of or providing access to or distributing Project Gutenberg-tm electronic works provided that * You pay royalty fee of 20% of gross profits you derive from use of Project Gutenberg-tm works calculated using method you already use to calculate your applicable taxes. The fee is owed to owner of Project Gutenberg-tm trademark, but he has agreed to donate royalties under this paragraph to Project Gutenberg Literary Archive Foundation. Royalty payments must be paid within 60 days following each date on which you prepare (or are legally required to prepare) your periodic tax returns. Royalty payments should be clearly marked as such sent to Project Gutenberg Literary Archive Foundation at address specified in Section 4, \"Information about donations to Project Gutenberg Literary Archive Foundation.\" * You provide full refund of any money paid by user who notifies you in writing (or by e-mail) within 30 days of receipt that s/he does not agree to terms of full Project Gutenberg-tm License. You must require such user to return or destroy all copies of works possessed in physical medium discontinue all use of all access to other copies of Project Gutenberg-tm works. * You provide, in accordance with paragraph 1.F.3, full refund of any money paid for work or replacement copy, if defect in electronic work is discovered reported to you within 90 days of receipt of work. * You comply with all other terms of this agreement for free distribution of Project Gutenberg-tm works. 1.E.9. If you wish to charge fee or distribute Project Gutenberg-tm electronic work or group of works on different terms than are set forth in this agreement, you must obtain permission in writing from both Project Gutenberg Literary Archive Foundation The Project Gutenberg Trademark LLC, owner of Project Gutenberg-tm trademark. Contact Foundation as set forth in Section 3 below. 1.F. 1.F.1. Project Gutenberg volunteers employees expend considerable effort to identify, do copyright research on, transcribe proofread works not protected by U.S. copyright law in creating Project Gutenberg-tm collection. Despite these efforts, Project Gutenberg-tm electronic works, medium on which they may be stored, may contain \"Defects,\" such as, but not limited to, incomplete, inaccurate or corrupt data, transcription errors, copyright or other intellectual property infringement, defective or damaged disk or other medium, computer virus, or computer codes that damage or cannot be read by your equipment. 1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for \"Right of Replacement or Refund\" described in paragraph 1.F.3, Project Gutenberg Literary Archive Foundation, owner of Project Gutenberg-tm trademark, any other party distributing Project Gutenberg-tm electronic work under this agreement, disclaim all liability to you for damages, costs expenses, including legal fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGE. 1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover defect in this electronic work within 90 days of receiving it, you can receive refund of money (if any) you paid for it by sending written explanation to person you received work from. If you received work on physical medium, you must return medium with your written explanation. The person or entity that provided you with defective work may elect to provide replacement copy in lieu of refund. If you received work electronically, person or entity providing it to you may choose to give you second opportunity to receive work electronically in lieu of refund. If second copy is also defective, you may demand refund in writing without further opportunities to fix problem. 1.F.4. Except for limited right of replacement or refund set forth in paragraph 1.F.3, this work is provided to you 'AS-IS', WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE. 1.F.5. Some states do not allow disclaimers of certain implied warranties or exclusion or limitation of certain types of damages. If any disclaimer or limitation set forth in this agreement violates law of state applicable to this agreement, agreement shall be interpreted to make maximum disclaimer or limitation permitted by applicable state law. The invalidity or unenforceability of any provision of this agreement shall not void remaining provisions. 1.F.6. INDEMNITY - You agree to indemnify hold Foundation, trademark owner, any agent or employee of Foundation, anyone providing copies of Project Gutenberg-tm electronic works in accordance with this agreement, any volunteers associated with production, promotion distribution of Project Gutenberg-tm electronic works, harmless from all liability, costs expenses, including legal fees, that arise directly or indirectly from any of following which you do or cause to occur: (a) distribution of this or any Project Gutenberg-tm work, (b) alteration, modification, or additions or deletions to any Project Gutenberg-tm work, (c) any Defect you cause. Section 2. Information about Mission of Project Gutenberg-tm Project Gutenberg-tm is synonymous with free distribution of electronic works in formats readable by widest variety of computers including obsolete, old, middle-aged new computers. It exists because of efforts of hundreds of volunteers donations from people in all walks of life. Volunteers financial support to provide volunteers with assistance they need are critical to reaching Project Gutenberg-tm's goals ensuring that Project Gutenberg-tm collection will remain freely available for generations to come. In 2001, Project Gutenberg Literary Archive Foundation was created to provide secure permanent future for Project Gutenberg-tm future generations. To learn more about Project Gutenberg Literary Archive Foundation how your efforts donations can help, see Sections 3 4 Foundation information page at www.gutenberg.org Section 3. Information about Project Gutenberg Literary Archive Foundation The Project Gutenberg Literary Archive Foundation is non profit 501(c)(3) educational corporation organized under laws of state of Mississippi granted tax exempt status by Internal Revenue Service. The Foundation's EIN or federal tax identification number is 64-6221541. Contributions to Project Gutenberg Literary Archive Foundation are tax deductible to full extent permitted by U.S. federal laws your state's laws. The Foundation's principal office is in Fairbanks, Alaska, with mailing address: PO Box 750175, Fairbanks, AK 99775, but its volunteers employees are scattered throughout numerous locations. Its business office is located at 809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887. Email contact links up to date contact information can be found at Foundation's web site official page at www.gutenberg.org/contact For additional contact information: Dr. Gregory B. Newby Chief Executive Director gbnewby@pglaf.org Section 4. Information about Donations to Project Gutenberg Literary Archive Foundation Project Gutenberg-tm depends upon cannot survive without wide spread public support donations to carry out its mission of increasing number of public domain licensed works that can be freely distributed in machine readable form accessible by widest array of equipment including outdated equipment. Many small donations ($1 to $5,000) are particularly important to maintaining tax exempt status with IRS. The Foundation is committed to complying with laws regulating charities charitable donations in all 50 states of United States. Compliance requirements are not uniform it takes considerable effort, much paperwork many fees to meet keep up with these requirements. We do not solicit donations in locations where we have not received written confirmation of compliance. To SEND DONATIONS or determine status of compliance for any particular state visit www.gutenberg.org/donate While we cannot do not solicit contributions from states where we have not met solicitation requirements, we know of no prohibition against accepting unsolicited donations from donors in such states who approach us with offers to donate. International donations are gratefully accepted, but we cannot make any statements concerning tax treatment of donations received from outside United States. U.S. laws alone swamp our small staff. Please check Project Gutenberg Web pages for current donation methods addresses. Donations are accepted in number of other ways including checks, online payments credit card donations. To donate, please visit: www.gutenberg.org/donate Section 5. General Information About Project Gutenberg-tm electronic works. Professor Michael S. Hart was originator of Project Gutenberg-tm concept of library of electronic works that could be freely shared with anyone. For forty years, he produced distributed Project Gutenberg-tm eBooks with only loose network of volunteer support. Project Gutenberg-tm eBooks are often created from several printed editions, all of which are confirmed as not protected by copyright in U.S. unless copyright notice is included. Thus, we do not necessarily keep eBooks in compliance with any particular paper edition. Most people start at our Web site which has main PG search facility: www.gutenberg.org This Web site includes information about Project Gutenberg-tm, including how to make donations to Project Gutenberg Literary Archive Foundation, how to help produce our new eBooks, how to subscribe to our email newsletter to hear about new eBooks. \n" + ] + } + ], "source": [ - "# your code here" + "prophet_string = reduce(concat_space,prophet_filter)\n", + "print(prophet_string)" ] }, { @@ -412,7 +2555,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.8.3" } }, "nbformat": 4, diff --git a/module-3/Data-Cleaning-Challenge/Data-Cleaning-Jossue.ipynb b/module-3/Data-Cleaning-Challenge/Data-Cleaning-Jossue.ipynb new file mode 100644 index 00000000..02b2d9e2 --- /dev/null +++ b/module-3/Data-Cleaning-Challenge/Data-Cleaning-Jossue.ipynb @@ -0,0 +1,606 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import seaborn as sns\n", + "sns.set_palette('husl')\n", + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "import warnings\n", + "warnings.filterwarnings('ignore')\n", + "\n", + "data = pd.read_csv('iris-data.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_length_cmsepal_width_cmpetal_length_cmpetal_width_cmclass
05.13.51.40.2Iris-setosa
14.93.01.40.2Iris-setosa
24.73.21.30.2Iris-setosa
34.63.11.50.2Iris-setosa
45.03.61.40.2Iris-setosa
\n", + "
" + ], + "text/plain": [ + " sepal_length_cm sepal_width_cm petal_length_cm petal_width_cm \\\n", + "0 5.1 3.5 1.4 0.2 \n", + "1 4.9 3.0 1.4 0.2 \n", + "2 4.7 3.2 1.3 0.2 \n", + "3 4.6 3.1 1.5 0.2 \n", + "4 5.0 3.6 1.4 0.2 \n", + "\n", + " class \n", + "0 Iris-setosa \n", + "1 Iris-setosa \n", + "2 Iris-setosa \n", + "3 Iris-setosa \n", + "4 Iris-setosa " + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "sepal_length_cm float64\n", + "sepal_width_cm float64\n", + "petal_length_cm float64\n", + "petal_width_cm float64\n", + "class object\n", + "dtype: object" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.dtypes" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_length_cmsepal_width_cmpetal_length_cmpetal_width_cm
count150.000000150.000000150.000000145.000000
mean5.6446273.0546673.7586671.236552
std1.3127810.4331231.7644200.755058
min0.0550002.0000001.0000000.100000
25%5.1000002.8000001.6000000.400000
50%5.7000003.0000004.3500001.300000
75%6.4000003.3000005.1000001.800000
max7.9000004.4000006.9000002.500000
\n", + "
" + ], + "text/plain": [ + " sepal_length_cm sepal_width_cm petal_length_cm petal_width_cm\n", + "count 150.000000 150.000000 150.000000 145.000000\n", + "mean 5.644627 3.054667 3.758667 1.236552\n", + "std 1.312781 0.433123 1.764420 0.755058\n", + "min 0.055000 2.000000 1.000000 0.100000\n", + "25% 5.100000 2.800000 1.600000 0.400000\n", + "50% 5.700000 3.000000 4.350000 1.300000\n", + "75% 6.400000 3.300000 5.100000 1.800000\n", + "max 7.900000 4.400000 6.900000 2.500000" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(150, 5)" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Iris-virginica 50\n", + "Iris-setosa 49\n", + "Iris-versicolor 45\n", + "versicolor 5\n", + "Iris-setossa 1\n", + "Name: class, dtype: int64" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data['class'].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "sepal_length_cm 0\n", + "sepal_width_cm 0\n", + "petal_length_cm 0\n", + "petal_width_cm 5\n", + "class 0\n", + "dtype: int64" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.isna().sum()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "data= data.dropna(axis=0, subset=['petal_width_cm'])" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "sns.pairplot(data,hue='class')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#Cleaning Data\n", + "#Verifying Outliers " + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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jL4CjI2nzwYeMMZcCTjjae8DNxpjfgIMVsMkIiIZTO2jyEFQ8CbSNQywp9vaDwDfttaOB34BZAFYa68GfgYMAhbFeyAfAc4FWoDXjDGndGXFRUREupDaR5GDoOBNpGu8CVxojCkCiA8LaSsPqDTGuIn1LBLPN8xa+6G19ufADmCQMWYoUGGtvR14HjiqWz6BiIjIoaf2UeQguFJdAZGeyFq71Bjza+AdY0wEWAisb5Plv4EPgQ3AEmKNFcAf4hOuDbEGbjFwPXCJMSYEbAV+2S0fQkRE5BBT+yhycLRgiYiIiIiISAbQsEkREREREZEMoOBNREREREQkAyh4ExERERERyQAK3kRERERERDKAgjcREREREZEMoOBNREREREQkAyh4ExERERERyQAK3kRERERERDKAgjcREREREZEMoOBNREREREQkAyh4ExERERERyQAK3kRERERERDKAgjcREREREZEMoOBNREREREQkAyh4ExERERERyQAK3kRERERERDKAgjcREREREZEMoOBNREREREQkAyh4ExERERERyQAK3kRERERERDKAK9UVaKu4uNiWlZWluhoiItIN5s+fv8Na2yfV9cgUaiNFRA4Pe2of0yp4KysrY968eamuhoiIdANjzIZU1yGTqI0UETk87Kl91LBJERERERGRDNClwZsxZpQxZlGbn3pjzHVd+Z4iIiIiIiI9UZcOm7TWrgQmAhhjnMBm4NmufE8REREREZGeqDuHTZ4KrLXWao6DiIiIiIjIfurO4O1i4NFufD8REREREZEeo1uCN2OMBzgXeLKT164yxswzxsyrqqrqjuqIiIh0GWPMIGPM28aY5caYpcaY73aS5yRjTF2bOeE/T0VdRUQks3TXVgFnAQustdvav2CtvRe4F6C8vNx2U31ERHq8TQ0RXqsI4HMbzh7mJd+rBYa7SRj4gbV2gTEmD5hvjHnDWrusXb73rLVnp6B+IiKHjaZglJcrAtT4LaeVeRha6CJqLW9vCLKyOszkEjfTBngAWFIVYtamIIPynJwxxIvbaVJc+466K3j7EhoyKSLSbTbURfivV2ppCceeP7/az4NnF+JNw4aop7HWVgKV8ccNxpjlwBFA++BNRES6UNRarn2jnlU1EQAeXdbCX2fm88b6IE+u8APwyDI/3zk6m345Dn72biO77iTN3hTktyflp6jmu9fl3bDGmGzgdOCZrn4vERGJeXGNPxG4AWxqiPL+5mDqKnSYMsaUAZOADzt5+VhjzGJjzCvGmLHdWjERkcPA4u3hROAGEIrC0yv9PLfKn5TvyRV+nlrpp+0QwPc2hdjaGCHddPmdN2ttM1DU1e8jIiKtOhvq4XHorlt3MsbkAk8D11lr69u9vAAYbK1tNMZ8BvgXMKKTMq4CrgIoLS3t4hqLiPQs7k5uU3mdBqcDiLameZwGd7s20mHAlYbtpiZAiIj0QOeN8NI7q7XRGVPsYuoAdwprdHgxxriJBW4PW2s7jDyx1tZbaxvjj18G3MaY4k7y3WutLbfWlvfp06fL6y0i0pOM6+Nmav/Wti/XY7hwdBaXjvMl0gzw1fE+Lhnrw9MmMjp7mJfi7PQLlbprzpuIiHSjfjlO/nlOIe9uDJLtNhw/0JOWPYg9kTHGAPcDy621t+0mTwmwzVprjTFTiXWm7uzGaoqIHBZ+f3Ie728OUe2PcsJAD719DsoKXEzu52ZldZhJ/dwMLYyFRA+fW8j7m0MMyndQXpKeHZ4K3kREeqh8r4Ozh2eluhqHo+nApcASY8yieNqNQCmAtfZu4ALgGmNMGGgBLrbWasVlEZFDzOUwnDDI0yF9XB834/okB2j9c518fpSzu6p2QBS8iYiIHELW2lnERuLsKc+dwJ3dUyMREekpFLyJiPQQ25oi/GluE59UhTmqr4sfTs1NjNdfuiPE7fOa2dwQYUaph++U52jbABERkQyTfrPwRETkgPzm/UbmbA5RH7TM2hTidx80AhCKWG74TwNLd4SpDVieWx3ggSUtKa6tiIhI96jxR9lQl7zsf0vYsqYmTDjaOmI9ai0VtWEagtH2RaQN3XkTEekhFmwNt3seAmB9XYRqf/J0qoXx10RERHqy+xc389AnLUQsjC5y8adT8lhSFeZXsxtpDFmKfIbfzcgn32v4wVv1bGqI4nXCd8tzOHdE+s0bV/AmItJDHFnkZPnO1p7FUUUuavxRemUZct2GxpBtk1eXfxER6dk+rYvw9zYjTZbvDPPoshZeXRdMtIk7Wyy3z2+iX46DTQ2xO26BCNw+r4lTBnvI9aTXQMX0qo2IiBywG47NZXiv2CpZI3o58bkM5z5Vwxf/VcsxA9z0zXZggOOOcPO1o3x7LkxERCTDbW6MdEjb2BClqjl5WOTmhgibG5LT/JFYYJdu1PUqItJDDC108cBnCwmELS+u9fPnj5oBCEXhzQ1B7jszn6G9XFqoREREDgsT+7kp9BpqA61B2MmDPbSELR9uaZ0+cGKph5IcJ8t3tk4/KCtwUpqffve5FLyJiPQwXpdhXV3H3sb19VFGFytwExGRw4PPZfjLafk8sKSFGn+Us4Z6OXWwlyklbu5b3MzK6ghHl7i5fLwPtyM2JPHdjUEG5Tv5+lE+jEm/NlPBm4hID3TsAA//WhVIPPc4YEqJew9HiIiI9DzDe7m45cS8pLR8r4MfTM3tkPfLY318eWx6TytQ8CYi0gNNH+jhR8fk8NwqP9luw+XjsxN7vomIiEhmUvAmItJDnTcii/PScJljEREROTDqhhUREREREckAuvMmItKDfLAlyCdVYSb0dTGlvyfV1RERETko1S1R7l7YzMrqMJNL3Fw1MRu3Ax5c0sJ7m4IMzHNy9aRsBuY5eWNdgKdW+vE44bJxPqb097BiZ5i/LW5OLFhywZG+bivT5zr0C54oeBMR6SEe+LiZv33cuhnpNZOy+UqaT7wWERHZk1/MbmD+1tgS/mtrI7SELCU5jsTm22tqIqypCfPjY3L4xezGxHFLqhr425n5XPdmA43B2FYBK6ubyfM4eLnCf8Bl3ndmAde9Wb9PZV5/bMdFUQ6Whk2KiPQQjy33Jz1/dFnLbnKKiIikP3/YJgKiXWZvDjJ7czApbVNDlNfWBZLSwlF4bk0gEWTt8u7G4EGV+fwafydlBjotsysoeBMR6SEc7UZnaC9uERHJZF4nlOQkhyuD852U5juT0nwuGNm744DCccUu2jeFQwod+1zmqN4dt9gZV+zuWGaBs9Myu4KCNxGRHuKScclDJGeUevn5ew387v1GNnSyabeIiEg6M8bwk2k5FHpj4VL/HAffnZLDVROzGVYYC45y3IYfTs3lvBFZnFzqwRDrvLxgVBZnDM3iG5Oy8cQjnsn9XFw82rfPZZ47wttJmd6OZY7pvMwuOSfW2r3n6ibl5eV23rx5qa6GiEjGWrw9xNKqMLke+OPcZqLxS3y+x/DYeYXke9Onz84YM99aW57qemQKtZEicrgKRSzbmqMMyHXgMK33vTY3RCjyOchqszDIjuYoLgcUZrW2d43BKI0hS0mOMyVl7q89tY/p04qLiMhBm9DXzZfH+lhbG00EbgD1QcsHW0Kpq5iIiMgBcjsNA/OcHQKiI/KcSUEWQHG2IynIAsj1OJKCrO4u81BS8CYi0gMV+zpe3vtk65IvIiKSydSSi4j0QOeN8DKiV2uP4KmDPUzq13HitYiIiGQO7fMmItID5Xsd3P+ZApbuCJPtMgzrpcu9iIgcfoIRy38+DVLrjzKj1EO/+FDHeZWh2Iba/dyMLo61kevrwszZHGJQnpPpA91dOvzxQKk1FxHpoRzGML6P7raJiMjhyVrL99+sZ9H22B5s9y1u5u4zCnj70yAPLGndC/X6aTn0zXbwo7cbiMTni5851MvPjjv0m2wfLA2bFBHJUKGIpT4Q3ef84ailrpP8Nf4o0TRaeVhERORQWFIVTgRuAC1heGKFn8eWtSTl++fSFh5Z5k8EbgCvVQSoak6/bXZ0501EJAO9stbP7fObaQhapvZ388sTcsn17L4/7u0NAf40t4nagGViXxe/OjGPWn+U/36vkfV1EfrnOrj5+FzGFutOnYiI9AyddUtaC+27Ma0F2y63haRVm9OF7ryJiGSYGn+U33/YREMw1qrMrQzxj6Utu83fHLL85v1GagOx/Iu2h7l/cTN/mtvE+vjm3ZWNUX4zp6nrKy8iItJNxvdxMba49V6V1wlfGJXFBaOykvJ9aYyPC4/04Wgzxe3Uwa3z49JJl995M8YUAn8DxhELYr9mrX2/q99XRKSn2lAXIdSu23BNze6HdmxujNASTk5bUxNhfX3yMRvqI4QiFrcz/SZoi4iI7C+HMfzPafn8e32Aan+UUwZ7GZjnZFSRi6P6ulm5M8zRJW4mxldjvv+sAmZtCjIo38lJpZ4U175z3TFs8n+AV621FxhjPEB2N7yniEiPdWSRi3yPoT7YOp5jYl83H1XGGpxdm4ZGrWVJVRiPI7bHW1Vza8Q3dYCbvjkO3toQTKRN6udS4CYiIj1Klstw9vCsDunHD/Rw/MDkAG1Ebxcjeqf3rLIurZ0xJh84EbgcwFobBIJ7OkZERPYsy2X4wyl53LWgme3NUSb1c/Pw0mYaQ+AwcO3R2ZwxxMu1b9SztjZ2d21KiYvB+Q42N8SWSr50rI+WsMXjNCzcFmJ0kYvvlqtvTUREJJ11dWg5FKgC/m6MmQDMB75rrdXEChGRgzC22M2dMwsA+N6b9TSGYulRC/csbKY+EE0EbgAfbQ1z+2n5TC5pXZDE7TRpuQyyiIiIdK6rFyxxAZOBu6y1k4Am4Pq2GYwxVxlj5hlj5lVVVXVxdUREep7qluQJcP4IbG/uuETWzpZ931ZAREQk3e1siRKKJLd39YEozaHkNH/YUuNPbgMjUcuO5ii23VY5+1pmqnT1nbdNwCZr7Yfx50/RLniz1t4L3AtQXl6eHmdFRCTNhaOWdz4Nsq05yrQB7qS7bEeXuDlnuJdXKwKJPWsKvIaItTyytIXpAz0MLki/FbRERET2xY7mKDe+28CyHWEKvIYfTs3hhEEefvdBE6+vC+A0cOHoLK6ZlMOTK1q4d1EzLWE4doCbX5yQx6rqML+Y3UhVc5TB+U5uOTGXPI9jn8tMpS4N3qy1W40xG40xo6y1K4FTgWVd+Z4iIoeD6//TwAdbYmMl3Q64dGwW6+sjDClw8eUxWeR6HPz51HyeX+Mn22XY3hzllvhWAPcubuaPJ+dT3l97uomISOa5d3Ezy3bEllGuC1h+90ET9UHLqxUBIDaF4OGlfkb2cnHH/ObEfm3vbwnx+PIWXqkIJBbx2lAf4S/zmuiX4+xQZkMnZR53hIcJfVPXfnbHcirXAg/HV5qsAK7ohvcUEemx1tSEE4EbQCgKWxqj/HZGflK+ySVuJpe4qWyM8MV/1SbSw1F4bHmLgjcREclIFTXJ+980hSxLq0Id8i3cFuqw0fbqmghbGpOHUK6tidAUTM7YFLJ80kmZa2siKQ3eunyTbmvtImttubX2KGvt+dbamq5+TxGRnsx2MsB8T2POO3utfWMmIiKSKaYdkbzEf/9cB6cP8SalOQ2cPdxLtjt5C5zpA91M6Jt8/2raEZ59LnNKijs+03sjAxERSZhXGeKVCj8FXgdH9XHxcVWs59HtgEF5Tm56r4GyAicXjfaR7TZ8vD3EC2sCZLsNU/u7mVsZ60F0GrhodMc9b0RERDLBV8f5CEYs724MUprv5JuTsykrcHH9tByeWunH4zRcNs7HkUVu/nhyHvctbqbGbzlrqJfPDstian83d8xvTmzS/a3J2XicZp/KHJSf2jnjpv0KK6lUXl5u582bl+pqiIiknQVbQ3z33/WJu2h9fIavT8im2h9bAeufS/2JvFP7u7lyQjZXv1aXWLCk0AtXT8phR0uUEwZ6GNYr9X13xpj51tryVNcjU6iNFBE5POypfUx96y0iInv1akUgafhjVYulyOfg7OFZfPXF2qS8cytD9Mn203al49pAbHPvy8drI24REZFM1eVz3kRE5OAVZpkOab2yHEn/7uJ1xu7M7S6/iIiIZCa15CIiGeDCI330z229ZE8b4OaeRc1c8kIt/XMMOfEJ2Qb4rwnZfHG0j8FtxuVP7ufi0aXNfPn5Gu5Z1Ew4amkMRrn1g0Yufq6GX8xq0Cbeh4gxZpAx5m1jzHJjzFJjzHc7yWOMMbcbY9YYYz42xkxORV1FRCSzaNikiEgGKM528Mg5hSzcFsLnMtzwTgO1gdi4yPV1Ea6e6GNIoYuyAidH5MWCtgfPLmDhthBZTsNNsxrZHt/T5h+ftOB1xo779/ogAJsaglT7Lf9zWn7nFZD9EQZ+YK1dYIzJA+YbY96w1rbd5/QsYET85xjgrvi/IiKyF9Zanlnl592NIQblObh8fDbF2Q4+3BLk6fjiIl8ek8WYYjcb6iI89EnrgiWnD/HSGIzy4JIWVlaHmVzi5itjfLgc7HOZqaTgTUQkQ7idhqkDPCzeHkoEbrss3B7mknHJ89lcDsOU/h5W14QTgdsuH24Jsa4ukpQ2f2uIUMTidnYccin7zlpbCVTGHzcYY5YDRwBtg7fzgIdsbNWwD4wxhcaY/vFjRURkD55Y4eeO+c0AzN8Kn+wIc/20XH70dkNiK5wPNgd54LOFXPtGHdX+WOLcyhAeJ7xSEWDWptgKzAu2han1W/rnOvapzEfOLaRvTupWnNSwSRGRNNUcsrRfETgQtgzIceBqd/UeWuCkJdxJ/oilb7YDX7uuuiEFToYWJDc+g/IcWCDcbhO4SNQSCKfPysSZxBhTBkwCPmz30hHAxjbPN8XTRERkL97cEEx6vqYmwnOrW5L2MPVH4MmVLYnAbZd/rw8ye1Py5ttvbwjspkx/hzLnbO64cXd30p03EZE0s7Uxws9nNbJsR5iBeQ5+dlwuI3u7+N37jby5IUiO23DqYA+zNoVoClnG93GxpCrE6Y9V0z/HwQ3H5nJUXxd/mtvEKxUBspyGEwd5mLM5REPQMrbYxdcnZFPrj/LTdxvY1BClb7aD4b1cnPl4NU4HXDLWx1fHZ/PKWj9/XdBMfdBycqmHG4/NxevSnbl9YYzJBZ4GrrPW1rd/uZNDOkTIxpirgKsASktLD3kdRUQyUUmOg2U7Wp97nFCa7wKSA7BhhR3vkA3IddDbZ9jZ0nrJLcl10q/TMjse33b+eSooeBMRSTN//qiJZTtiG3Bvaojyq9mNnD/Cy+vx+Wn1Qcsb64M8dHYBeR4Hf53flHitsinKL2Y1cMV4Hy+sCQDQGLW8ti7I/WflU+RzUpwda3iKfA4ePbeQquYoi6tC/GJWU6wCUbhvcQtDC5387oOmxJYDb24IMqxXC5eN03YDe2OMcRML3B621j7TSZZNwKA2zwcCW9pnstbeC9wLsX3euqCqIiIZ578mZLN0R5htTVFcDvjW5GzOHpbF+5uDLNgWaz9PL/Nw9vAsNjVEeWx57A7asEInF4/xMabYxa9mN+KPQIHX8O2jsynwOvapzCn9NedNRETaWFkdTnq+uTHK0h3JaVELG+oizCh1sbI6ee7aTr/l46rk/AAVtRFGFSU3OsYY+uY4Wb3S3yH/B1tCSXvFAazcGemQT5IZYwxwP7DcWnvbbrI9D3zbGPMYsYVK6jTfTURk35TmO3n8vEJWVYfpn+tMbIVz++kFrK0J43EaBsXvmn1zcg6fH5VFnd8ysrcTYwwzSr1MLoktZjKilysxomRfy0wlzXkTEUkzR5ckB1gjezmZdoQnKc3jjA0b+aQqxKR+yf1wA/McTB+YXIbTQGm+g4+3h5LmtDWHLIu3hxhdlFyGAWaWechq105NLkltj2OGmA5cCpxijFkU//mMMeZqY8zV8TwvAxXAGuA+4JspqquISEZyOQxjit0d9jAd1svVIcgqyXEyqshFrG8tJs/jYFwfd9JUgP0pM1V0501EJM18tzyHiIV5lSFG9nbx/ak5HJHrYGtTlJfXBijwGkrznVz5aj1RC/1zDCeXeli0PcSQAifXTclhaKGLLY2Wf632k+M2jOjl5JuvNxCx0DfbwV9Oy2dHc5Qb3mmgKWTxOuGzwzws2BbG4zB8dbyPCf08/PakPO5a2Ex1S5Qzh3r53Ehvqk9P2rPWzqLzOW1t81jgW91TIxER6SlM+5XJUqm8vNzOmzcv1dUQEUlrWxsjfPFftUmrW5w/0ssPp+Z2mr/WH+X8Z2oIt9kt4PQyD+vrIqyuaR0G2SfbwTOfK0zqmexKxpj51trybnmzHkBtpIjI4WFP7aOGTYqIZJiqlmiHZQm3N0U7zQtQ7Y8mBW4A25ujHfZ+q26JdpjjJiIikilawpY31wd4b2MwMUUgai1ztwR5rSJAfaC13VtdHebFNX42NbR2Yu5ojvLyWj8fb0/tdgB7omGTIiIZZnSRiwG5DrY0tjZCE/u6eWpFC2UFLsrjK2HVBaK882kQnyu2D1xFm025Tyvzsr4uwtNtFiqZUerB5dA2ACIiknlq/VGufLWOynjbOLrIyV9nFvDz9xoSG3IXeg13nVHA7E1B7lwQ25DbaeDm43Mp8jn43pv1BOJN5QWjsrhuSk5KPsueKHgTEckwLofh9tPy+cfSFrY3RRlc4OSeRc2Ju2YXHpnFhaOzuPKVOmrim5MO7+XgcyO9bGmMctIgD+eMyCIUsRT7HCzcFuLIIheXjvOl8FOJiIgcuJfWBhKBG8DynREeW96SCNwAagOWx5e38Mb61v3gIhbu/7iFkhxHInADeGaVn0vH+SjypddARQVvIiIZqCTXyY+Oic1xu+a1uqThjk+v9IMhEbgBrKmJcuUED9MHtq5a6XYaLh3nU9AmIiIZzx/uOO6/KdgxrSVsCbSbI+AP2w7HRy0d8qWD9AolRURkv4XaNS4WCHfSiLXdIkBERKQnOWOoF1+b21JFPsOXxmQxtLB1iX+ngfNGZHH2sOSVk88fmcX5I7OS0o4Z4GZAbnpsD9CW7ryJiGSgukCUp1f62d4Upby/hxXVLYnXTi/zcMGRPl5ZF6Alvlf3wDwHa2vDzNkcYsYgD8cN9OymZBERkcwzMM/J/WcV8uJaP16n4dwRXgqznNx5ej7PrQ5Q649y+hAvRxa5GFvsYnSxi5U7wxxd4mZGaSyY65Xl4L2NQQbmOThneNZe3jE1tFWAiEiGiVrL116uY018mX8DfGOij8aQZUiBi1PLYguPbG6I8Pq6ANluw5vrAyzb2TqY/+fTc5k5JLV7tmmrgP2jNlJEFDgifQAAIABJREFU5PCgrQJERHqQ5TvDicANYsMkl+4Ic/WkHM4Y6k2sGHlEnpMrjspm2gBPUuAG8OIaPyIiIpJZFLyJiGSYPE/HS3eed/eX8xy3of0OAJ2VISIiIulNrbeISIYpzXdyzvDWIY8FXoPLAZe/VMvNsxrY2hS7y/bKWj9XvVrHLXMaOam0dY5brtvw1fFaYVJE0pu1lnA0fTdLlq4R+713nNbVfnGu3aWFo5Zou2lh6VjmgdKCJSIiGegn03I5d3gW25sjLN4e4okVAQDW1ETYUBfhG5Oy+fX7TYn8XifcdkoeTSFLeX+37ryJSFr7sPJt7lvye2r8VRzT/xSunXQzPld2qqslXey1igB/XdBEXcBy+hAvPz4mh/V1EW6Z00hFbYTxfVzcND2XbLfhljmNvL85REmugx8fk0N5iZs7FzTz7Co/HofhsvE+vjzGl3ZlTul/cAuGacESEZEMd8kLtayvS57TNnOIh9fXBZPSfnZcLmcOTe0iJW1pwZL9ozZSDhdNoQa+/voZBCKtc3M/P/wKLh1zbQprJV2tqjnCBc/WJu1b+s1J2bxcEUhq444d4KZfroN/rQok0vI9hu9MyeaW2U1ti+T3J+VywzuNB1zmd6dk86sOZeZxwzsNB1zms1/ohdfZbi5DO1qwRCSNRW001VWQNNJ+WAZAZA/7s0WtpTQ/eR+afI9hRK+Oe9MMznfuc/md5bPWkk4dfiLSM21sqEgK3ADW1C5NUW2ku6yujtB+dOGSHaEOnZPLd4ZZsSOclFYftCyo7DjEds7m0EGVOa+TMmdvDnYss2rfy9zckJxvfyl4E0mR5lAjt370Q774wlSu/ve5LNr+fqqrJCn0+roA5z1dzSmPVvO79xsJRSyrq8Nc/lItMx6p5tuv17GtqfWC/+7GIF94toaTH6kmErWU5scu57kew4+n5fD5kT6OO8INxDYlPaXUw02zGjjpkWp++k4DTcEolY0RvvlaHTMeqeZrL9dSURsmELH8ek4jpzxazeeeqeGtDbEew0eWtXDWkzXMfLyaexY1d/8JEpHDRln+SHLceUlp44p1k76nG1PswtOu37G8xMOo3smJE/u5mdjPnZRW5DMc327/UgOcVuY9qDJPGNSxzJlDPB3L7L/vZbbvcN1fmvMmkiKPrbybDyrfAmBb8yb+OP967j/9VbwuLSRxuKlqjvDrOa3DOl5cG6CswMmLa1uHYCzaHua2uU3cenI+9YEov5jVQCAey83eHOLycVmcOSyLYp+DLFdsOMbvT85ne1MEC3z1pToag7E3eGdjkH45DtbXRfi4KtYruKo6wq9mN3LKYC+vVATi9Yryq9mN+FyG/13QGrD945MWxhS5OjRqIiKHQpbLx/VTbuPvS/9EVctWpg84nfOHXZbqakkXK8xy8OsT8/jfBc3U+KOcNdTL+SO8TO3v5o9zG1m5M8LkEjc/mJpDlstQH7TxDbWdfG9KNmOK3VwzKcqTK1rwOg2Xj/cxsZ/7kJc5oa/noMp0tV/+eT91+Zw3Y8x6oAGIAOE9zW/QeH45nFz/3uWsrPk4Ke22GY8ypGBUaiokKTNrU5Dr/9OQlDZjkId3NibPWeuVZXjhgt4s3Bbi2jfqk16b2t/Nbafmd1r+6uowV7xcl5Q2rtjF+roIjaHkNmD6EW5mb04eJnLeCC/PrQ4kpV061sc3Jh3c4gGa87Z/1EaKiBwe0mHO28nW2olqpEVajSmanPQ839MLr9PHp/VrU1QjSZWxxS7aL/44ucTdYd7ahL5u1taE6Z1lyHYn99wd1dfFip1h6gPJcygrasNkuaDQm5x/Qj8XE/omD74YU+xiUrshHl4nnDK44x22Cf00cENERKS7qfUVSZGLRl5JXaCaDyrfoiRnIMVZJXz7rc9hsYzpPYmfTbsdnysn1dWUbtAry8EvT8jjroXxIRjDYkMwppS4+f2HjaysDjOhr5tN9WG++lIdDgMnDXKzvj7K9uYoU/u7eW6Vn78tbsHjhB9NzWFGqZcfvV3P4u1hDHD8QDfbmqJsbowyo9TDFeOzaQxa7IeNLNwWYnSRix9Py6Ukx8HWpiivrQtQ5HPwrcnZHF3i4UfH5PDQJy2EI5YLR/uYNkBDJkVERLpbdwybXAfUABa4x1p77+7yakiIHK5WVC/mhllXJKVdPuZ7nDf80hTVSNLN/Yub+fuSlqS0h84uYGihix+/Xc+cNkMdc9yGS8Zmcc+i5Px3nZHP+D7Jd9ZSScMm94/aSBGRw8Oe2sfuuPM23Vq7xRjTF3jDGLPCWvtum8pdBVwFUFpa2g3VEUk/25o3d0jb2rwpBTWRdLWlsePSwlsaogwthMrG5KGSTSHLhrrO84/v02VVFBE5ZGoD1Ty/9p9UtVRy/IAzOKb/SamukvQggYjlyRV+Vu4Mc3SJm3NHeHGYg1tIpLt0+Zw3a+2W+L/bgWeBqe1ev9daW26tLe/TR/+rkMNLtb+Kf2/4F1lOX4chksMLxvD6+qfZUL86RbWTdHJyafLm2gVeA1heWutn2oDku2lji118ZlhWUlq225DlghfX+NnR3BrsbaiL8PxqP6urk/eiERFJlaiNctOcq3l2zQPM2vwav/vo+8ze/HqqqyU9yG/fb+Tuhc28/WmQP85t4r7FLXs/KE3s8503Y0whcBlQ1vY4a+139nBMDuCw1jbEH88EfnnAtRXpQVZUL+bm969JbEQ6reRkjHHSEm6kf04pf138SyyxYc3fOOpGziy7IJXVlRQ7fpCHn0/P5eW1AQq8hsZglOvfaQQg2wVfPDKL1dVhygqdfG18Nr19Dn59Yi7PrQ6Q7TZEo5afvhvLn+Vs4i+n5bOlMcotcxrZtUf3d8qzufBIbVUhIqlVUbeCTxvWJKW9tfEFph8xM0U1kp4kELG8vSF5NedXKwJ8Y+LBraDcXfZn2OTLwAfAEiC6l7y79AOeNbHbkC7gEWvtq/tVQ5Ee6pk1DyQCN4APt/6He09/iWJfCVe+8ZlE4Abw2Iq7FbwJM4d4mTnEy/q6MJe80Lr0f3MY6gNR7pxZkJR/RqmXGaVetjdF+MKztYl0fwT+ubSF9XWRROAG8PePW7hgVFbGDB3pLsaYXsAgkjsuF6SuRiI9W76nEINJagcLvL1TWCPpSVwG8jyG2kDr96uXN3Pavf0J3rKstd/fn8KttRXAhP2rksjhIRj2Jz23WAKR2F5a/nDy7fu2QZ6Iv5MRjp2l7RKIQPulqVrC4A/bdvksUQsHuX9oj2KM+RVwObCW1tNogVNSVSeRnq5v9gDOGfoVnq/4JwC9vMV8YcTXUlwr6SmcDsM1k7P5/QdNRGxsS5yrD3Lf0u60P8HbP4wxVwIvAondWq211Ye8ViI9VCDcwusbnqGyaSOje0/k4x1zEz2LY4sm896mV2gJNzN9wGm8tuHpxHFnDbkwVVWWNDSqt5OxxS6W7ohFbE4DI3s7+dPcRsoKXJwz3IvHaVhbE+bligDZLsPEvi4WbY/lN8DnR3rZUO/i3jYrUp43IguXIrf2LgSGWWuDe80pIofMFeO+z2mDz6eqpZKxRUfjdWbt/SCRffTZYVmUl7hZUxNhXB8XBd7u2vr64O1P8BYE/gD8lOTex6GHulIiPdVv536fxTs+TDy/aORVNIebKM7qxwsVD7N0Z2wklsfh5atjrmNHyzZG9T6K4wdonL+0Msbw51PzeXGNn+3NUdwO2ky2DrBwW4grxvu48tU6gvFFJ/tmG759dDZVTVFOLPUwoW9skZPB+U4WbgszptjFaWXau60TnwCFwPZUV0TkcDMobyiD8vTfTOka/XKc9Mtxproa+21/grfvA8OttTu6qjIiPVll08akwA3gk53zuWX6fcze8gY7/NsS6cFogGp/Ff81/kfdXU3JENluw4WjY4uLfO2l2qTX3vk0SIHHJAI3gO3Nlr7ZDi4enbwgya55cbJbvwUWGmM+IXnUybmpq5KIiByu9id4Wwo0d1VFRHo6rzMLBw6ibdb7yY5vD+BzdRxr3VmaSGey3clDHV0OyPV0HP7YPp/skweBW9m/xbpERES6xP4EbxFgkTHmbZJ7H3e7VYBIT1UXqOGRFf/L+vpVTOwzjQtG/hcODM+ueZCPtr3LoLyhfGnUNRT5+iaO6Z3Vh7OGXMRL6x4FIMvpo49vADe8dwV9swcwsnA8q2qXAFCU1Ze6QDU/ee8yRvU6iotHXU22O5dX1j3Bu5tfpdjXj4tHfYMjcstS8fElzVw+Ppsfv11PMB5afHmMj8+NzOKN9UG2x/d0m9jXxZQS9x5Kkd3YYa29PdWVEOnJojbKsp0LARhTNAmHic0/2lC/hqqWSsYXleN1xUYNVPurWFO7jOGFY+idpf2B5cBtbYqwpjrC2D4uemVlzpw3Y237Nch2k9GYr3aWbq198FBVpry83M6bN+9QFSfSZX42+0qW7pyfeH7u0EvwubJ5fNW9ibShBUfypxmPdDh2RfVitjZtZGvzZh5feU8ivX92KV8b9wMCkRY+qHyLWVtaNyQ9bsDpTOpzLH9d3LpNYlFWX+467QXcDv2HXKCqOcK8yhBDCl0cWRTrl2sJW+ZsDpLjNkwpceNMs8VIjDHzrbXlqa7HnhhjbiPWYfk8yR2X3b5VgNpI6YmCkQA3zbmaFTWLARjZazy/PO4eHl7+V16oeBiAQm8Rt0y/jw31a/jz/BsJ2zAu4+K6o3/N9AGnp7L6kqFeXOPnDx/GVpv0OOG3M/I4ZkD6zPveU/u4P3fengL81tpIvFAnoIkScthpCNYlBW4A71e+mRgCuUtF3Qq2N2+hb/aApPQje0/gyN4TuHFW8rLHlc2fUuzrR1nBSO5YdHPSax9Wvk2g3fYBO/3bWV3zCWOKJh3kJ5KeoE+2k7OGJU+89rkMpw7WZfog7foDm9YmTVsFiBwisza/ngjcAFbVLOGVdU/wYkVr52dtYCdPr/47S3fOJ2xjq+aGbZgHl/5FwZvst0jUctfCZiLx+1fBCNy9sDmtgrc92Z97hG8CbWe6+4B/H9rqiKQ/nyubfE+vpLT+OYMoyRmUlJbtyqWgXb622ud3OzwU+frFXsse2C7vQEpyktMcxtkhMBSRQ8tae3InPwrcRA6R+mBNh7Sqlq1JG3QD1AWqqQ8k563r5FiRvQlbaAwmf7/abtid7vYneMuy1jbuehJ/rBUV5LDjcri5+qgb8cXvtBVl9ePysd/n0jHX0i8edGU5fRxTchLXvHkel75yMo+vjA2nXLZzAd99+0IuevFYGoP1DMgZDMS2Bpg+4HS+95+L+crLJ1KaPyIRIOa6C7hq/PV8YcTXGJI/KlGHS0Z/m+J4sCciXcMY8xtjTGGb572MMbeksk4iPclxA04jy9l6byDL6ePcoV+hLH9EUr5TSs/llNLkRV5PGXROt9RRehav03Dq4OS7bGcNzZxRKvsz5202cO2ucf7GmKOBO621xx6qymg8v2SSlnAz25o2MShvKE5HbARyxEbY1FBBQ7Ce/55zZVL+H5f/nrs//m1SL+PZQ77MaYPPJxQJ8pP3LktaifJbE25ieOFoBuQOxuNsvahsbKigwNOLfO/u7+qJZIIMmfO20Fo7qV3aAmvt5O6ui9pI6ak21K/m5XVPAJazyi6krGAkdYEaXqj4J1XNWzn+iJlMKZlBJBrm1fVPsaJ6EaN6T+Cssi8m2l+R/RGIWJ5e4WdldZjJJW7OGe7FYdJnXvihmvN2HfCkMWZL/Hl/4KKDrZxIpvK5sikrGJmU5jROBueP4KWKxzrkn7dtVofhIStrPubr43/I2xtfTArcAFbXfsJpg8/rUI42LBXpVk5jjNdaGwAwxvjQfG+RQ2pw/giumfDTpLQCby8uGX1tUprT4eKzQy/ms0Mv7s7qSQ/kdRq+PNa394xpaJ+HTVprPwKOBK4BvgmMttYmVm0wxmjGqPRYdYEaKps2JqUFwi1sbKggYlt3Qo7aKBsbKijLH9m+CCb3nU6+pzApbWSv8WxqWMegvKEYknt8juw9odO6bG7cQGOwPiltZ8t2drRsS0prCjWwuXH9Xj+b9GxbGiNUt2h7soPwT+BNY8zXjTFfA94gtvebiIhIt9uve83W2hDwyW5evpVYoybSozy8/K88u+ZBIjbMuKJybph6G0t2fMTtC2+iOdxIH19/fnrMX3A7vNzy4XeobPqULGc2Jw08m4Xb5xCKBjl76JeYfsTpFHh7cc/Hv2Vr00Ym9j2WRVUf8NK6R/E4s5gx8DMsrvqQlnAzZ5R9gZMGfjapHrX+ndzy4XdYW7cct8PDV0Z/m3OGfpk7Ft7MO5tewmI5/ogzuG7Sr3htw1M8uPR/CEYDlOWP5L+n3aH9cA4z/rDlxncamFsZwmngglFZXFues/cDJYm19vfGmI+B0wAD/Mpa+1qKqyUiIoepQzlQOH0GioocIhvqV/PU6vsTzz/ZOY8XKx7h5XVP0ByOrd9T1VLJ3z+5DZ87h8qmTwHwR5qZu/U//N/M1xIbiwKMKy7njlOeBuCOhTcxb9t7AAQjfuZs+Tf3z3yNXE9+p3V5es3/sbZuOQChaJCHlv0POa5c/rPpxUSeWZtfY3xROX//5LbEcsrr61fxxMr7uHrCjYfqtEgGeH61n7mVIQAiFh5f4eeUMg9ji7Uv4P6y1r4KvNrZa8aY99vP/TbG/B9wNrDdWjuuk2NOAp4D1sWTnrHW/rJ9PhERkfYOZfCWOWtsiuyjLY2fdkjb2LCOumB1cr6mTzvs89YcbqQuWENfV+djqre0G4YZjAbY0bJ1t8FbZWNy/qiNsLZ2WYd8a2tXJAK31vfa0GmZ0nNtbIh0TKuPMrY4BZXp2bI6SXsAuBN4aA/HvWetPbtLaiTShV5e9zjPromNHD5/2GV8dujFLNnxEf/3yZ/Y0bKV6QNm8vVxP6QuWM3/Lr6FFdWLObLXUVwz4WcUZhXzf5/8kVmbX6PYV8IVY7/PUX2mprRMtzMz9vaSAzd7U5C7FjZT449y5lAv35yUzebGKH/4sJGV1RGO7ufix9Ny6ZW1P4vwp46W6BHZg/HFU8h25SbusgEcf8RMqv3bWVa9MJF2TP+T8Lly2dCwJpFWlj+SjQ3rWFe3ksl9pycaiNU1S6ls+pQJxcewonpRIn9JziBq/DuobNrI5L7HJe7YratbyacNaxlbfDTzt89K5O+d1YeZZV/gjU//RSQerDmMk9PLPs/CqjlUtVQm8k7rf/IhPjOS7k4Y6OHZVYHE8ywnTO2vu25doEPHpbX2XWNMWfdXRaRrLdu5kPuW3Jp4/rdPfk//3FL+NO/6RDv52oan6J3Vh6U75/PxjrkALKx6nzsW3cz44im8uv5JABpD9dz60Q/5Yfmt3VTmIP4074YOZV44KnllaOlZavxR/vu9BoLx/szHl/sZkOvgpbUBVlXHEt/bFMI5t4lbTsxLYU333aEM3tYfwrJE0kKuJ59fHHc3T6y6j4ZgHaeVnscx/U9mVK+jeHjFX1lfv4oJfaZx0circBgHTuNk3rb3GJA7mI0Na7nlw9hKWUfklvG74x/giVX38ULFwwB4HT7OKruINbVL6ZdzBFXNlfzyw28D0MfXn1tPeJDXNzzNYyvvAWJ7wX1myEWsqV1GUVY/vnTk1QzKG8pPj/kLz635B1GinDP0KwwvHM1Nx/4vj624i+0tWzhuwEzOKtPCsIebqQM8/Hx6Ls+t9pPtMlw23kdvX2b0Kh4mjjXGLAa2AD+01i5NdYVE9mbZzgUd0j7Y8mZSByfA0p3zO+RdunMBDuNMSmsON/L+ln93QZlvdlLmW52WCQreerLlO8KJwG2XeVtDicBtl0XbQt1Yq4OzX8GbMeY4oKztcdbah+L/fv6Q1kwkTQwvHMONU/+clFaYVcS3Jv68Q96LRl3FRaOuYvaWN3h308uJ9M2N63mx4hFeqng0kRaItrCjpZLfn/gQC7fP4ZcffDvxWlVLJS+ufYQX1j2SSAtGA2yoX8OtJyQvdDep73FM6ntcUtoRuYP5QfnvDuwDS48xc4iXmUO0qn0XO5D53guAwdbaRmPMZ4B/ASM6y2iMuQq4CqC0tPSAKylyKIzo1WEKJ5P7Tue9za/ij7S0yTeWYDSYNLpkROFYRhSOZXHVB4k0rzOLyf2O541Pnz2kZR7dbzpvfPrMPpUpPdvI3i6cJjb3e5fxxW421kdZX9cawI0uypzBiPvcDWuM+QfwR+B4YEr8J603VxVJleZQY4e0hmBdh73cmsNNu83fGKojFA3utVwRSalL9/cAa229tbYx/vhlwG2M6XQ2orX2XmttubW2vE8frRgrqTWhzzF8adQ1+Fw5+Fw5XDzqG0wbcArfO/o3FPtKcBgn0weczhdGfJ1vT7yJEYWxYG944ViunXQzXxjxNY4fMBOHcVLsK+F7k3/NtP4nH/Iyj9mPMqVnK8528NPjcinKMrgc8JmhXi44MoubpucyrDB213ZCXxc/OCZzVmM21u7bOiPGmOXAGLuvBxyA8vJyO2/evK4qXqTb1Adr+c5bFyQWNsly+rhtxqPc9fGvWbLjo0S+i0ZehT/SQpGvH/9a8xDV/u0AuB0ebj3hIR5feQ8fbn07kf8bR93ImWUXdO+HSSOraqt5Y9MGemf5OGfwMHLdmsOVyYwx8621ad0JaIz5PLGtcPoSu8tmAGut7XxlodbjyoAXd7PaZAmwzVprjTFTgaeI3YnbY/uqNlLSRdTGOiIdJvkeQCQaxulwHVBaqsuUni8StTgdyYMlwlGLy5F+C+bvqX3cn+DtSeA71trKvWY+QGqYpCfZ3ryF19Y/TSga5PTBn2NQ3lBaws28vv5ptjR9SqG3iCdX3YeNr3cwrqic0UUTaQ41cWrpuQwpGEUwEuD1Dc+wsWEtR/c7gaklM1L8qVJn8c7tfPPdNwnHG+NRhb154OQzcZj0u+jKvsmQ4G0NcI61dvl+HPMocBJQDGwDbgLcANbau40x3wauAcJAC/B9a+2cvZWrNlJE5PCwp/Zxr90OxpgXiK2mlQcsM8bMBRJLmFlrzz1UFRXpSfpmD+DSMdcmpflc2Zw3PDbK6uY51yQCN4jtIXfNhJ8xILd1XovH6eXsoV/qngqnuWcqVicCN4CVtdV8vLOKicV9U1grOQxs25/ADcBau8c/WmvtncS2EhAREdkv+3LP+I9dXguRw5DHmbyQhMHg0X4zu+V1drxceZ3OTnKKHLz4cEmAecaYx4ktKtK24/KZTg8UERHpQnsN3qy17wAYY2611v6k7WvGmFuBd7qobiI9zs6W7Tyx6j62Nm1kcP4IPA4vwWjs/4Onlp5Hsa8kKX9doIYnVt3LxoYKju57PGcP+zJOc/gELHXBAP+34hNW19UwMr8XuS43jeHYcr5HF/fjibUr2en385nSIZxZOiTFtZUe5pw2j5uBmW2eW0DBm8geWGt5d/MrrKhezKheRzFj4GcwxrBs50LmbHmDYl8JMwd/nmx3LlubNvHv+IqTp5V+jpKcgTSHGnl9wzPsaNnKcQNOY0zR5IMuU2SXcNTyakWAFdVhju7n5uTBmbMy8/7MeVtgrZ3cLu1ja+1Rh6oyGs8vPZm1luv+cxGfttnI+6KRV9E7qw8lOQMZXzwV027+1g3vXcGKmsWJ5xePupqLRl3VbXVOtW+992/mVW1LPP/i0JGMLOxFvtvLHxbNZUfAn3jtN1OP59SBg1NRTTlAGTLnbbq1dvbe0rqD2kjJJA8tu51n1zyQeP654V/l/9u77/A4qrPv4997dlWt6t57lzsyxlTTO4RAQqjphCQkpJCeJ0DeJ3lSSIUkhB5IAgmdEMD0YsDGxg3bGPfeJHfZKlvO+8eMZa2KLdmSViv9Ptelyztnzpw9ezTa8T1zSlGXYn426+vVQwaGF47he5N/w42vfZKyyG4ActLy+P20f/OrOd9h2c4PAL9nyg+n/J4l2+cdVZldstTNXny/mlnGMyuqO1PwpQnZXDMmK4k1SnSo6+Nhlwowsy+b2QfACDNbWONnNbCwuSsr0l5tKFudELgBzC+ZyVkDL2Vctyl1Arft5dsSAjeAtze91OL1bCt2V1YmBG4A72zdxEUDh5KdFk4I3ABe3riuNasnHcftjUwTkRqmr3ksYfv51Y8yfe1jCWO9l+1cxFMrHqwOsgDKInt4euVD1YEbgMMxfc1jjS7z6XrKnLFxerN9NkltVTHHc6sqE9KeWl7RQO62pzFj3v4JPA/8H/D9Gul7nXM7WqRWIu1QYUZX0rz0hLXbumf3bjB/TlouWeFOlAdrwfn5e7VoHduS7LQweenp7Kk62F69sv11WHpm1V2P5cA+keZgZlOB44FuZvatGrvygI7Td1nkCGWFs9kfLUvYzgpl18mXm55fJy0nre5KHP6abY0rM6eeMrPCdfNJx+QZZIaMsvjBoD87nDozVx/2yZtzbrdzbg3wVWBvjR/MTIssiTRSTnoe146+kbD590y6ZvUkFo9xzfOn8p03r2bpDv8p29Mr/84XXjyXG1//JMf1PI00z5/EpDCjK1ePvCFp9W9taV6Ib48rJsPz/59cmJFB14wszvnvY/xg1luc0bc/Hv6X7ZC8fK4aNiqZ1ZX2Jx3Iwb/JmVvjZw/QcRdbFGmkK0d+BQu+ow3jylFf4ZKhnyY7nFOdZ1rfC7hg8JUMyB1andYvdwgXDrmK0/odHHaaHc7hkqGfOaoyT+p7bot9VkktYc/43LiDXSRDBp8f33a6TB5OU8a8rQH6ATvxFyktADYD24AvOufeP9rKqD+/dAS7KndQsn8z725+mSdX/K06PT+9MzdMuJmfvXdjQv6fHv9XMkKZDMofSZrX8e6X7K6qZH3ZXuaXbuP2RfOq0zNDIe6ddjbRuGNEQWGdbqfS9qXImLcBzrm1ya4H6BopqWdj2Ro+2rGQEZ3H0SdnIAB7qnYxd+vbdMvuSVGXYwCIxCMkCfDHAAAgAElEQVTM3ToDh+OY7ieSFsy8vHj7+5Ts38Kk7seTl1HYLGWKHLBiZ5RlO6KM755Gn9y21aHiqNZ5q+EF4Enn3PSg0LOAc4B/A38GphyiAiFgDrDROXdBE95TpN0pyOhMQUZn7l3064T03VU7mLn51Tr51+xexoVDrmqt6rU5+ekZ5HfO4KFlSxLSK2IxSsrLmdqz4a6nIkeqxhqn9d4Y0BqnIofXJ2dgdYB1QF56AdP6nZ+QlualMaXXqXWOL+pyDHRp3jJFDhhaGGZoYVNCobbhsN0mayg+ELgBOOdeBE52zs0EDje/5o1AkxY5FUkV5dH9lJZvSUiLxaNs3beRWDxaJ39ltJxt+zcxrLAoIT07nMP4bsfVyT8gbxjb9m+i5lNy5xxb920kEquqk7+9GlXYOWE7bB7DCwqTVBvpAG4DfgOsBsqBu4OfMmBREuslIiIdWFPCzR1m9j3gkWD7cmBn8FQt3tBBZtYXOB/4GfCthvKJpKLpax7jgcW/oyJWzojCcfzg2N+xZd96fj3ne2yv2EqXzB58d/KvGF44FoDX1/+Xuz/4JfujZQzIG8aEbsexoGQWXbN68qVxP+SYHiewes9HPLf6EUIWZnLPk/n1nO9RFtlNv9wh/ODY3xJ3cf7vvW+ysWwNuekFfG3CLUzueXKSW6LlXTF0FKv37OalDWspSM/gxnHH0CUzdfqoS2qpscbp/3PO1fwD+4+ZvZmkaomISAfXlDFvXYGbgRPxx7zNAG4FdgP9nXMrGjjuMfyZKnOBmw7VbVL9+SWV7KrYzhdfOpeoO/h07YLBV7CodA5r9iyvThuYN5zfTXuE/ZEyPv/i2VTEyqv3ndbvIr48/keEa41li7kY0ViEL758HnurdlWnH9frNCLxKt7fOqM6rSCjC/ec+TwhL/Ue/R+JaDxOyExj3NqBFBnz9iFwvnNuVbA9CHjOOdfqM+ToGiltxfq9qwDolzu4Om17+Ta2V2xjSMEoQuaPHyqP7mPtnhUMyBtKVtifETjmYqzc9SFdMrsnrLuWzDJT0bqyPVREowwvONgrZUdFBRv3lzGyoJC0YLKviliU5bt20j83j/z01FmIuqNrljFvzrlS4GsN7G4ocLsA2Oace9/MpjWQ5zrgOoD+/fs3tjoiSbdl/4aEwA1gw97VbNi7OjGtzN8uKd+SELj5+1bVCdwAQhZiZ6QkIXA7UH4kHklI21W5nb2RPRRkJHYrbK/CXlN6e4sctW8Cr5vZqmB7IPCl5FVHJHmi8Qi/nH0Tc7a+BcAx3U/k+8f+hidX/I1HPvorcRejV6d+3DL1L2wqW8uv5nyX8ug+ssKduKn4F/TLGczN736ZzfvW4VmITw7/IpcO+2xSyzzUkj1tkXOOn77/Ls+t8/9vMa5zV/5w4mm8sG4Nv1kwh6iL0y0ziz+ccBoVsSjfeud1dlVVkuGF+NExUzi736DkfgA5ao0O3sxsOHAT/oWr+jjn3GmHOOwE4CIzOw/IBPLM7O/OuatrHH8XcBf4dxWbVHuRJBqSP4rCjK7srCytTivucTIZoSxmbXmtOm1S9xN4f+vbZIQy6JHdh637N1bvG9d1CrM2v0bPTn0ZkDcM8MfLfVA6m5AXZkDeMNbWeIpX3OMkIvEI/139cHXa0IKiDhO4ibQ259wLZjYMGBkkLXXOVR7qGJH26t3Nr1YHRADvb5vBi2ueqA6IADbvW89jy+9lyfZ51euUlkf3cc8Hv2Zs18ls3rcOgLiL8e+P7iI3Pb+Vyny83jK/Mv5/Wqq5WsT7pVurAzeAhTtKeXTlR9y/dDFR549iKqko5y9LFlAWqWJXlf91VRmP8dsF73N6nwG6CZrimtLP6lHgTuAeINaYA5xzPwB+ABA8ebupZuAmksrSQun85Lg7+MfSP1FavoUT+5zNuYM+ySl9zyPvwwKW7ljA4PxRLNu5kP+d5T+0HlU4gYF5w9mybz0jOo/j+dX/Zl90LwCXDP00lw37PD96+wus2bMMgKH5o5na6ww2lK2muMeJXDHiy8SJE/bCzN32DgPzhnHt6K8nrQ1E2iszO80596qZfbzWriFmhnPuiaRUTCSJSvZvrpO2vmxldUBUM1/tvKXlWygpT0yLE2f9nlXUdtRl7l1ZT5mr6i0z1Wzdv79O2rqyvZTHEnsCbdm/j7JI4qRmu6oqKY9GyU3XsgmprCnBW9Q595cWq4lIChqYP5wfTflDQlpOel71nbzHlt3LGxv+W73vw53z+Z/jbmdS9xP41ezvVAdu4C/OnRXuVB24AazYvYSPDb2WE/qclfAenyn6Jp8p+mZLfCQR8Z0CvApcWM8+Byh4kw5nSq9TefijvxANuu+HvTTOHXQ587fNZMv+DdX5TuxzNoWZ3Xht/X+q007ofRZjuxYzb9s71Wk9svty7qDLeXn9U81a5nkDL+fldU8nlHleA2Wmmqk9epMdDrM/6gdrHsbFA4eyes9uFu/cXp3vzL4DKItU8WCNZXaO695LgVs70JTg7T9m9hXgSaC6y4hzbkdjDnbOvQ683pTKiaS6vVW7G0yrvS/uYuysKG0wv4i0HufczcG/n012XUTaij45A7h16p08u+qfOBwXDr6S/rlDuPX4O3ls+b2U7t/CCX3O4vT+F3Nin7PpltWTpTsWMKLzeC4d9lkyQpkAzNg4na7ZPbls2Ofpnt27Vcrs10CZqaZzZiZ3nnwmf1+2hPJolEsGD2Ncl27cNnUa93+0iDV7d3Nizz58YsgI4s6Rl57OrK1bGFZQyOdGjEl29aUZNGW2ydX1JDvn3OB60o+IZtKS9mbV7qV8781rqyc2yU8v5IqRX2Z7RQlhC/HwR3dW5x1ROI6vTbyVb71xBVWxCgBy0vK4/dTHKcjsUm/5IqksRWabXAnMBN4C3nTOLTnMIS1G10gRkY6huWab1PQ0Ik00OH8kPz/xfl5e9ySZoWzW7V3JnQt/DoCHx2XDvkBp+RZ6durLBYOvoFNaLr848QFeXPs4IQtz7qBPKnATSa7RwBTgJOA2MxsJLHDOXZLcaomISEfUlNkms/EX2e7vnLsumH1rhHPu2RarnUg7MKywiGGFRWzbv4kvvXxwmcM4cZbtXMitx9+ZkH9Q/nC+NO4HrV1NEalfDIgE/8aBrcC2pNZIREQ6rKaMebsfeB84PtjegD8DpYI3kUbwLIRhOA52Ve4oC2uLpLA9wAfAb4G7nXPbD5NfRESkxTTlf45DnHOXm9kVAM65cjOzFqqXSLvTNasH0/pdUD1TVthLY0DuUH4260Z6durLx4d+lsLMrkmupYjUcgVwIvAV4Atm9g7+2LdXklstkdQTczH+9dFdzNg4nW5ZPblm9NcZWjCatza8wFMrHwTg4iHXcHLfc1m5awkPLvkjJeVbOLHPWVw+4kvsq9rDfYt/409YUjiOz425ifyMwiR/qrZh7d49/OGD91mzdw8n9uzDV8dMJCMUSna1pAU0JXirMrMs/CmSMbMh1Jh1UkQO74YJN3N87zPYXLaO8ui+hAlLFpW+z29PeRjdExFpO5xzTwNPB2PdzgW+AXwXyEpqxURS0LOrHubRZXcDsHnfOv7fzBv4weTf8ru5P6rulfL7uT+ma1ZPfjn7JvZU7QTg0WX3kB3OYcn2ucze+iYAW/dvZF90Lz+e8sfkfJg2xDnHTe++zroyf/mhf638iLDn8fWxk5JcM2kJTVli/WbgBaCfmf0DeAX/AiYijeSZR3GPk7hwyFUsKH0vYd+aPctYV8/CoiKSPGb2eDDj5B+ATsC1gG71ixyBmuuxAeyp2sWr659NGE7gcLyx4b/VgdsB87e9W+f4+dtmtlxlU8im/WXVgdsBs7am3gLk0jiNDt6ccy8BHwc+AzwMFAdrt4nIEeiS2T1hO2xhCjI0s6RIG/MLYLhz7mzn3P86595wzlUc2GlmZyaxbiIpZWDesITtNC+d0V3qPh0a1XkiaV7iYtL984YyoNbxA/KGNn8lU1DXzGzyai2+PSS/IEm1kZZ22ODNzCYd+AEGAJuBTUD/IE1EjsDlI66rDuA8PE7ofRa3vPtlrn/5Qp5c8bck105EAJxzs51zsUNk+WWrVUYkxV027POM63osAJ3Scrl+3A85pe+5nD/oCsIWJmxhzht0Oaf0PY/rx/2ITmm5AIztOplPDP8CX5nwP/TM7gtAz+y+fGX8j5P2WdqSjFCInxwzlcIMf8Hy0YVd+GrRxCTXSlrKYRfpNrPXDrHbOedOa67KaAFS6Wgi8QjLdi4kZCF+/PZ1xILFvAG+W/xrpvY+PYm1E2lZqbBI9+GY2TznXKv8L0nXSGkvdlfuJDvcibTQwadF+yNlAGSn5VSnRWJV7I/uS5iUxDnHrsrtFGR00RjxWqLxOLurKumSqSG5qe6oFul2zp3ayDc5M+haKSKNlOalUdTlGF5b/2xC4AawoGSWgjeRtu/Qd0BFpI76ZoisGbQdkBZKJz+U2B3QzDQzcwPCnqfArQNoyoQlh6OuIyKHEHdxdlaUUvtp9+7KnfTPHVIn/+D8Ea1VNRERERFJAc25QrCeXYs04KMdC/nN+z+gpHwzfXIG8t3iX5OXUcivZt/Ehzvmk5tewCl9z+O9LW9QFatkWr/zOb3/xcmutogc3ppkV0BERDqO5gze1HVEpAG3z7+FknJ/2t6NZWv468Kf0zd3MB/umA/A3qpdzNr8On894z9khDLJCKvbg0gymdnHD7XfOfdE8O8h84nI4e2q3MEbG54D4JS+51GQ0ZlIrIq3Nr5ASfkWjut1mmaWPIyYi/PKhnWs2buHE3r2pqizupa2V80ZvIlIPSLxCBvL1iSkrd27griLJ6RVxPazvaKEQfnDW7F2ItKACw+xzwFPtFZFRNqzPZU7+fYbV7CjogSAp1c8yO+m/Yvfz/0R80v8ddweW3YPN0/9M2O6pvT8Ri3q/70/k+fXrQbgvqUf8LMpJ3F6n/5JrpW0hOYM3tY0Y1ki7Uaal8aYrsUsKj04S9zEblPpmzuYpTsXVKd1yexB/9zByaiiiNTinPtssusg0hHM2DS9OnAD2FlZytMrH6oO3ACiLsqzqx5W8NaA7RXlvBAEbuDfXXpk+YcK3tqpwwZv6joicvS+Oeln3LfoNlbsWkJRl0l8tujbZIazqIyV8+6mV+jZqS+fHv0NQp4ehou0NWZ2PlAEZB5Ic879NHk1Emk/rJ6580IWqpPm1ZMmPs8Mw3A1RjB5Wkah3WrM/xTVdUTkKHXO7MZNxXUnZL129I1cO/rGJNRIRBrDzO4EsoFTgXuAy4D3klopkXbk5L7n8vTKh9i6fyMA3bN7c/GQa1i/dxWztvhLDad7GVw05KpkVrNNK8zI5OJBQ3hy9QoAQmZcM3x0kmslLeWwi3S3Ji1AKiLScaTCIt1mttA5N67GvznAE865s1q7LrpGSnu1L7KXdza9jMNxQu8z6ZSWSywe5b0tb1BavoVje06jR6c+ya5mm+ac452tm1izdw/H9+jNoLz8ZFdJjsJRLdJdqyB1HRE5QvO3zWT5rkUUdTmG0V0mArB+7yre2/IGPbP7cFyv09RtUqTtKQ/+3W9mvYHtwKAk1kek3emUlsuZAy5JSAt5Yab2Pj1JNUo9ZsYJPftwQk8Fue1do/+nqK4jIkfukaV38q9ld1VvXzf2+/TOGcD/m/k1Yi4KwPG9z+Q79XStFJGketbMCoBfA3Pxhwvck9wqiYhIR1V3lGjDjnfOXQvsdM7dCkwF+rVMtUTaj5iL8fTKvyekPbniAZ5Z+ffqwA3gnU0vsXXfxtaunogc2q+cc7ucc48DA4CRwP8e6gAzu8/MtpnZogb2m5n90cxWmNlCM5vUAvUWEZF2qCnBW+2uIxHUdURERNq3dw+8cM5VOud210xrwAPAOYfYfy4wLPi5DvjLUdZRpE2KxiNsLFtLNB5JSN+ybwP7I2UJaTsrStlZUZqQtj9SxpZ9G5q1TJFU15QBNuo6InIEQhbi4iFXJ3Sb/NjQT9O70wAWlMyqfvo2tdcZGpAt0kaYWU+gD5BlZhOBA/Nu5+EPIWiQc+5NMxt4iCwXAw86f8awmWZWYGa9nHObj77mIm3D0h0L+NXs77CzspTCjK58p/hX9Mrpz89m3ciKXYtJD2Xy6dFf55yBn+RP82/ltfXPAnBK3/O5YeLNvLjmcf625PdUxioYWjCaHx37B7bs33BUZda3BIFIqmlK8PYr51wl8LiZPYs/aUlFy1RLpH351MjrGdl5PMt3LU6YsOR30x7hvS2v0zO7L8f1Oi3JtRSRGs4GPgP0BX5bI30P8MOjLLsPsL7G9oYgTcGbtBt/Xfhzdlb6T712VpZy58KfM7brZFbsWgxAVayC+xf9lvRQJq+u/0/1ca9veJaiLpO4b9FtRIObmyt2LeHR5fewZPvcxpXp1S3z2J6naAIUaReaEry9C0wCv+sIUGlmcw+kicihTeg+lQndpyak9csdTL/cwUmqkYg0xDn3N+BvZnZpMN6tOdW3em696/aY2XX4XSvp379/M1dDpOVsKFuTsL2pbA2dM7smpEVdlOU7F9c5dvmuRdWB2wEb965pfJm76pa5oWx1E2ov0nYddsybmfU0s2MIuo6Y2aTgZxqH6ToiIiKS4t42s3vN7HkAMxttZp8/yjI3kDjhV19gU30ZnXN3OeeKnXPF3bp1O8q3FWk9k3uckrjd8xQm90xM65zZjTP7X4JXozujh8cZAy6hS2b3hLzH9jql8WUOqFtmcY+Tj+rziLQVjXny1pJdR0RERNqy+4OfHwXby4B/AfceRZnPADeY2SPAFGC3xrtJe/PVCf9DfkYhS3csYGTn8Vw96gaywzlUxSqZsXE6XbN6cuXIr9A/bwjfn3wbT6/8Ow7HxUOuYVhBETdP/TP/+PBPlJZv4YQ+Z3HuwMs5pe/5R1zmoPzhyW4SkWZh/njpRmRsma4jCYqLi92cOXNa8i1ERKSNMLP3nXPFya7HoZjZbOfcZDOb55ybGKTNd85NOMQxDwPTgK7AVuBmIA3AOXenmRlwB/6MlPuBzzrnDnvx0zVSRKRjONT1sSlj3t42s3uB3s65c81sNDDVOXc0dx9FRETasn1m1oVgTJqZHQfsPtQBzrkrDrPfAV9tthqKiEiH0ZR13u4HpgO9g+1lwDcOdYCZZZrZe2a2wMwWm9mtR1hPEREAyqNRovF4sqshHce38Ls5Djazt4EHga8lt0oiItJRNeXJW1fn3L/N7AcAzrmomcUOc0wlcJpzrszM0oAZZva8c27mkVZYRDqmimiUW+a8wxubNpCbns7XxkzkwoFDkl0taf+WAE/id2/cCzyFf/NSRESk1TXlyduRdB1xzrkDy92nBT+NG2QnIlLDP5Z/yGub1hPHsbuqkv+bN4uS8v3Jrpa0fw8CI4GfA7cDw4CHklojERHpsJry5K1215FuwGWHO8jMQsD7wFDgT865WbX2aw0bETmsZbt3JmzHnGPlnl10y9KKJdKiRjjnxtfYfs3MFiStNiIi0qE15cnbga4js/Fnz7qbRnQdcc7Fglm5+gLHmtmYWvu1ho2IHFZxtx4J29nhMEWFXRvILdJs5gU9TQAwsynA20msj4iIdGBNefL2IP7abj8Ptq/A7zryicYc7JzbZWav40+NvKgJ7ysiwqWDh7O9opzn1q2ma2YWXxkzgdz09GRXS9q/KcC1ZrYu2O4PfGhmH+CPDhiXvKqJiEhH05TgrcldR8ysGxAJArcs4Azgl0dQTxHp4Dwzri+awPVFDS6vJdISzkl2BURERA5oSvA2z8yOOzBTZCO7jvQC/haMe/OAfzvnnj2yqoqIiLQu59zaZNdBRETkgKYEb03uOuKcWwhMPPpqioiIiIiIdGxNCd7UdURERERERCRJGh28qeuIiIiIiIhI8jRlqQARERERERFJEgVvIiIiIiIiKUDBm4iIiIiISApQ8CYiIiIiIpICFLyJiIiIiIikAAVvIiIiIiIiKUDBm4iIiIiISApQ8CYiIiIiIpICFLyJiIiIiIikAAVvIiIiIiIiKUDBm4iIiIiISApQ8CYiIiIiIpICFLyJiIiIiIikAAVvIiIiIiIiKUDBm4iIiIiISApQ8CYiIiIiIpICFLyJiIiIiIikAAVvIiIiIiIiKUDBm4iIiIiISAoIJ7sCIiIiknriG7cRfWM2RKKEjp9AaNiAZFdJRKTdU/AmIiIiTeL2lFF1xz+hsgqA+AfLsG9cg9e3Z5JrJiLSvqnbpIiIiDRJbMnK6sANgLgjNm9p8iokItJBKHgTERGRJrH83LppBXXTRESkeSl4ExERkSbxRgzCGze8etsG9CZ07Ngk1khEpGPQmDcRERFpEvOM9M98jPjmEohE8fr3SnaVREQ6BAVvIiIickS8Xt2SXQURkQ5F3SZFRERERERSQIsGb2bWz8xeM7MPzWyxmd3Yku8nIiLSFpjZOWb2kZmtMLPv17N/mpntNrP5wc9PklFPERFJLS3dbTIKfNs5N9fMcoH3zewl59ySFn5fERGRpDCzEPAn4ExgAzDbzJ6p59r3lnPuglavYDNx8Tjx5Wv9MW8jB2FhjcQQEWlpLfpN65zbDGwOXu81sw+BPoCCNxERaa+OBVY451YBmNkjwMW0o2ufi8Wo+su/cKs2AGDdCkn/+tVYp6wk10xEpH1rtTFvZjYQmAjMqpV+nZnNMbM5JSUlrVUdERGRltIHWF9je0OQVttUM1tgZs+bWVHrVK15xJesqg7cAFzJTmKzFiaxRiIiHUOrBG9mlgM8DnzDOben5j7n3F3OuWLnXHG3bsmdtcrtryC+pRTn3MG0aJT4pm24qkgSayYiIinE6klztbbnAgOcc+OB24Gn6i2ojd7gdOUVddMqKpNQExGRjqXFO6ibWRp+4PYP59wTLf1+Ryr61lyi/3kNojGsZ1fSv3gZbtcequ5/Csr2Q3YmaddeRGj4wGRXVURE2rYNQL8a232BTTUz1LyR6Zx7zsz+bGZdnXOltfLdBdwFUFxcXDsATJpQ0VCiOdn+9REgLUzomJR6eCgikpJaNHgzMwPuBT50zv22Jd/raLiy/USfeQ1iMX97SynRF98hvmHLwQvT/gqij71I6IfXJbGmIiKSAmYDw8xsELAR+BRwZc0MZtYT2Oqcc2Z2LH5PmO2tXtMjZJ2yyPjGNUTfmQ+RKKEp4/B6dEl2tURE2r2WfvJ2AnAN8IGZzQ/Sfuice66F37dJ3K491YFbdVrpTlzprsS07btxcYd59fWIERERAedc1MxuAKYDIeA+59xiM7s+2H8ncBnwZTOLAuXAp1zNPvspwDrnk3bBKcmuhohIh9LSs03OoP6+/22K9e6OdSnAbT8YrHljh0NhHvE5iw+mjRmqwE1ERA4ruEn5XK20O2u8vgO4o7XrJSIiqU2LsgDmeaR96RNEX3gbt2M3ofHDCZ00iVBVhGhONvFVG/D69yJ87knJrqqIiIiIiHRQCt4CXtdC0q+utVZqRjppF52anAqJiIiIiIjUoOBNRESkA4qvXE/ksRdxJTvwioaR9qlzoaqKyMPPEV++DuvTnbRPnYf16Ez0yVeIvbcIcrJIu3AaoYmjiL49j+j0t/0JS06aRPjck3CrNhxVmSIicmgdOniLbyklNmcxlpVBaMo4LCcbV7af2MyFuIpKQsVFeD27HrIMV17h5y/bT2jSKLw+PVqp9iIiIkfGRWNU/e3p6hmV4x8sI5rXCbd7L/Fla/08G7YS+ft/CE0ZR+ydYM6xXXuJ/PO/kJ1J9PGXqsuLvTwT69mN6FOvHHGZ3uC+WH5uK7WAiEhq6rDBW3xTCVW/fwiiUQBiMxeS9s1rifzh79UTl8Teep/0G6/B613/4uEuHqfq9n/itvjL8sTenEP6V6/EG9i7dT5EG7R/zwaWvH4ru7cuIL/HeEZPu5nsvL7JrpaIiNTgtu86uBROIL52E27X3sR8W0qJrVqfeHAsTmzh8jplxpeuanSZ8XrKjG/YSkjBm4jIIXnJrkCyxGYtrA7cwL+QxV6ZmTDjJJGon68B8RXrqwM3v9A4sZkLWqK6KWPJ67eya/NcXDzGrs1zWfL6rcmukoiI1GJdCiC3U0KaN7AP3qA+ifl6dSM0pH/iwaEQofHD65TpjRrS6DK9esr0+vVs4qcQEel4OuyTN9Lq+ehZmXXTMtIaLMLS6ymjvnI7kN1bFxxyW0REks/CIdI/8zEij7/kj08bM5TweSdBVYRINEZ8+Vqsbw/SPnkO1q0zrnQnsdmLsJxswhdOIzR8IO4TZxN90R/zFj7pGMITR+IV5B5xmZaXk+xmERFp86wtrQlaXFzs5syZc8g80bfnEV/wEdY5n/BZx2Od84l9tIbYW3PA8whPm4w3uN9h38vt3EPl7x+CvfsAsMF9Sbv+ciJ3/gu3aoOfKTcbb/xI3KZteAN6Ez5zKpaZQXTWQuJzl0B+Lm7H7oP5szNJv/FqvG6dD/v+8bWbib46CyIRQidMJFQ0FLenjOj0t4lv24F16wy790LIIzztWLzBqdH1cM4zX2TX5rnV2wW9JlF80d1JrJGItFVm9r5zrjjZ9UgVjblGiohI6jvU9TGlgrfojLlEn3i5etu6FRK+5iIiv38Q4sHnCIdI/+7n8LoWHvb9XHkl8UXLISsDb9QQLOThYnHiH66EiipiS1f7QVrAGz+CUNFQf7D2Afk5hD9+JpRXECoainXKOvz77imj8ud3Q1Uk+CCQfsNVRJ54CbdxW90DwiHSv/d5vC4Fhy072TTmTUQaS8Fb0yh4ExHpGA51fUypPn6xBR8lbLuSnf5sVfEaAWg0RnzxSrxTDv//AcvKIDR5TGJayCM0ZhgAkSdeStgX/2AZRGOJhewuw8vKwBs7rPGfY8mqg4EbgIPorAX1B24QfKYVeCe3/f/jZOf11ZM2EREREZEWkFITlnid8xMTQiG8XnWn8qdy25cAABroSURBVLcu+XXSjoQV5tfZttp1MIPaaYcrt576WfeukH6I8XVNfA8REREREWlfUuLJW8Uv7oFtO/wNM3DOHwt2wcmEpk4g/tFq4ktWAeANH0jklZlE/vFfvFGDSPvE2eAg8th04h+uxnp1Je2ys7Be3Yg+P4PYzAVYZjrh804mNGEksXkfEn3+LVxFFd6Igbjde2F/BWSmE/74GXh9uhNfvtafZdIzvAkjidz1KG5fOaHiIsIXTsOV7iTy6Iu4DVvwhg3w65CeRuTxl/xuml0L8UYPIb5kpV/nof0JnzgRy0on+uQrdZ/uZWfijR7Smk0uIiLtnKuoJDZjHvGSHYTGDCM0dhjOOeJzFhNbvhavbw9Cx0/EwiHiK9cTm7MYcrIJnzQJy8shvn0XsRlz/UW6jxuP17dHk8oUEZGma/Nj3iIvzCD24juJGbt3JuOrV2A1piSOb9sOZkTufgxXenC6/9CUseAg9t4H1WnWtYDQmccTffi5g2V6RtqXP0XkL48kdMMMf/IcvN7dsB5dsIx0AJxzuE3bwCxYK+5gsBX++BnEZi1M6ALpjR+B5ecQe/P9g++X14n0r14BsXjCQuBuXzlVDz+HCwK76s9x1vGknXPioZpPRCSlaMxb0zT3mLeqPz9CfMW66u3w5efArr1Ep79dneYVFxGaPIbInf/2b5ziLzOQdsOVVN12P+wrDw4Ok/6ta4k+8XKjyky/8vxm+xypQmPCRaSxDnV9bPPdJmNzFtdN3LE7IXAD8Lp3wdLSEgI3gPjK9cRXJi4G6kp3+YuJJmR0xOd+mDh+DnBrN+H171UduAGYGV6fHrgdu+s8JYstX1Nn7Fp9dWDPPoi7hMANwDpl4TZurfOR47XG+4mIiByp+PZdCUEW+OufRmvc6ASIz11CdNbC6sAN/HVRo6+/dzBwA4hGic6Y2+gyXc1x3x2E1kEVkebQ5oM3b+zQuon5ubjKqoQkt6cMZ0BhXkK69e+NDeiVeHxhHlZ7gVDDn3TEaiX360m8ZAculhikxXfs9qfz9xKbMDSoL9ajS+Jn6N8Lb0DvxII7ZUFGut8ts+bnqIpgvbpRmzdycJ00ERGRI2EZ6XWuX5adhWXXWu80I73eWZS9/LprslludqPLJNTxuk1qHVQRaQ5tfsxb+sWnU/HG+4mJ23dRefOfCH/sdL87x8PPEZ+3BDC8oiG49DTc1u14IwaSdvGpAET2lRP/aA3Wowtpl5+D9e8Fm0uIzVoImRmEzzuJ0MhBuMvOJvr8W1BRiVc0lOhL78BjL0JuJ9KvvQjr2ZWqe5/ArdkIaWG8iSOJL18L+8oJHVNE6MRj8IYNIPLP53CbS7Ah/Ui79MzqQC2+ZCXWpQDr3Z2q//0rxON4Y4eRds2FxBcuI/LYi1CRGJhi4F1wcus0uIiItHuWk03o9CnEXnrXT8hMJ3zm8bh9+4k88JTfq8Twx4OPGkzlwmWwuwwAb+JIQicVE1+yqvpJm/XoQvikYoi7RpVpoTZ/77jZ5fcYn7AOan6P8UmsjYikqrY/5u2Z14m9/l79B4TDhC85jeijLyYkp33xMrwRA7FadwBdPF5PmsO8Wo/bgvSqPzyEW7+lOs26d8YbPYTY67MPZvSMjB9fD3mdGvl+cdyaTVTd8c+E9NAlpxF7fkbdwO3A2xxTRPpVHW+MgIi0Xxrz1jQtsc5bfHMJrmQn3tD+1U/I3J4y4qs3Yr2743Xz10x1VRHiy9ZgOZ3wBvo9SZxz/pCASBRv+AAseJrW2DI7Go15E5HGSul13uJrNja8MxolXiO4OsBt3Y6NqtvNsHYg5afVDdwOpLtt2xPLLdmB21rrohN3xEt3EirIbeT7ecRqlQvgNmxtMHAD6h0HJyIicjS8Xt2gVld9y8shNH5EYlp6WvUaqNVpZoSG1hqC0IQyOxqtgyoizaHN91sIn3pswzsL8whNHps4Ts3zsO6diS34CFe2vzrZ7d1HbP5S4lsPBk4uEiW2eAXxVes58ATywJ3E2OIVeLUCQG/UELwxtabsz8kG54gtWp4wADtespPY/KW4PWUH329fObEFH2EFeVBrmmTvmKI6Y+VqCp00qeF2EBERERGRdq/NP3kLjR1G7PjxxGcuBIc/2UhWBtY5n/B5J+P16ALXXkz0jTngGdalgMg9j/sHp6eR9oVLAYjc/RhEogCELziFUHERVX/8hz9jJOCNHkz4cx8neu8TxD8MZqIszMObPAa3YSte/16ELzgFsjOhMkJs7hIsLwcXixH5y7/8/Pk5ZHztKmIfriL6xEt+fUMh0j77MaxTNlV3/guCiVa8SaNhbxmuKkr4xImEhg/E+8KlRP/7Bm7rDlwkAtuDuk0aRXjqhFZpbxERERERaZva/Ji3pnCVVVT+5I7qIA3ABvv9yd2qDQczpoXxTppE/NXEsXShi6YRe+b1xLRDrK8WX7+Zqt89lJDmnTCJ+NzFUF55sA69u2MFOdULifsZPTJu+QqWk92Ujygi0m5ozFvTNHSNrFy0HPf4S1jREDIuOxsXi+NWb4Cc7ITlaOIbtkIkig3sjZnfZSW+YzeudCfewD5YehoArryS+LrNeL26Ynn+rJJtrcyqmQuJv/Iu3qlTSD9eNzdFpH1J6TFvTRKJJgRuAOyvqJsvGoWy8rrpe/bVTavv+ICrZ58rL69+unYwrQLSazV1PI6rrFLwJiIiR6zitvthUwkA7p0FVMxciHUpwJXsBCB03HjCl51J5P6niC9eAfhL4KR/+XJi78wn+t83/TXccrJJv/6TuH3lRO57AiojEPJI++Q5eCMGUvWnh9tMmQAEwyLij71IxfQZZN56Q+s0uIhIkrWr4M1ysvHGDCW+aEV1Wui4ceAg+vSr1Wle0TDCx0+gas5iiMf9xPwcQqceS2zeh9XTIRPyoGsBkWffwBvQm9BYf7B2fFMJsQVLIbcTdMmv7t6IGeHjxhPzPOI1FhcPTxkH+TlE12w6WIdh/fG6FLRQS4iISIcQBG7V4q46IAKIzVyA9epaHRABuPVbiM6YR2z62wcX3y7bT/SFt/21RyuD8duxOJFnXsMrLmpkmXOJTX+nUWWGjqLMOvbWkyYi0k61q+ANIO3qC4m9PY/4llJCIwcRmjgKAMvrRGzparyeXQmdMBFLTyP9a1cSe+8DyMokfOIkLLcTGV+/muiMuVBRCZ5H7Ck/6IsB8TOmEho5iKq/PAKxIOjr14vQxNFQto9QcRHe4H54A/sQ69uT+IYt/li2Y0ZjZlinLOIfLMe6dyZ0wsQktZCIiHQk8dKdddLcjt0QiyWm7SlLmGQLgP0VuN210hosc89RlelKdzWqTBGRjqzdBW+WnlbvDJWhiaOqA7kDvAG98Qb0Tjy+MI+0C6cBUHHznxL2xd6agyvdeTBwA1i/mdClZ+D173WwjHCI8MnH1K3DmGF1ploWERE5YmYHn0rVpyCX8CmTqZq92L8pCeB5hE+YQGRzCW7twR4hoeIi3K69xF6dVZ3mjRtOaPIYIvOXNnuZ8Vplhk4pJjZ70WHLFBHpyNpd8NasQrVWUvBCddMAQqG6aSIiIi3Mfv513I/vqH46ZVeeTzg7k9jsRVhONqFTj8XrnO/3NHlzDi4SJXz8BLw+PUj/wqVEX3sPt20HobHDCE0eg4vHsfwc4svW4vXtQejUY/1JR75waZspMzagN/Ff3ecPe/A8vJs+neTfgohI62lXs002h/iWUqKvzoKKSqwgl9iMedX7whedije0P1V3/BOCNd28oiGkf/7SZFVXRCRlabbJpmkL10gREWl5HWe2yaPkyiv8wOzALJIG4U+cBZEoXv/eeAP9LpYZ3/8CscUrsLwcvKIhhyhRRERERESkeSh4qyG+dHXi0gAO3MZtpF12VkI+K8glrAlHRERERESkFdUzgKv5mNl9ZrbNzBa15Ps0FyvIbVSaiIiIiIhIa2vpJ28PAHcAD7bw+zQLb1BfQseO9ZcPAKxXN2JrNxH9yR14A3qR9vEzscK8JNdSRESkZbh95USeeJn4cn9ykfClZ2KF+USnz/AnF+mURfiCUwiNGERs3odEX3wHIlFCJ00ifMpk4hu2EnnqFVzJTkJjhhK++DSIROuUqXVORUSOTIsGb865N81sYEu+R3NL+9S5hE6bAhWVRF58G7d4JQDxxSuJVFSR/tUrklxDERGRlhF54iXi8/wp/ONLVxN58BlCU8YRe+ldANyuvUTuexKuv5zI35+tXqYg+vRr0KWA6BMvw669AMTeXQAZ6bjde+uUmfHNa5Pw6UREUp/GvNXD694ZALdifUJ6fOV6XNxhniWjWiIiIi0qvnxdwrZbv4VY7eEDkSixOYvrrC8XX7isOnCrTluxDlcrza3fgquoxDIzmq/iIiIdRIuOeWsMM7vOzOaY2ZySkpJkVyeB9e2RuN2nuwI3ERFpt7y+PRO2rVshXv9etTIZoZGD6x47tB9kZyam9elRb5lkpDdPhUVEOpikB2/Oubucc8XOueJu3boluzoJ0j5xNtanOwDWowtpnzovyTUSERFpOeFLz8D6+cGWdSsk7coLCJ9cjDdxFHgGnbIIX3Y2obFDCZ93MmSkQShE6ISJhIrHknbVBRA8qfOGDyB8/sn1lmmmG6EiIkeixRfpDsa8PeucG3O4vG11AVJ17xARaX5apLtpWvMa6SoqISM9IchyVREIhbDQwfu+LhaDuMPSDo7CcHEHkQhW6+lafWWKiEhdh7o+tvRSAQ8D7wIjzGyDmX2+Jd+vpShwExGRjsQyM+oEWZaelhC4AVgolBC4AZhndQK3hsoUEZGmaenZJjU1o4iIiIiISDNI+pg3ERGR9sbMzjGzj8xshZl9v579ZmZ/DPYvNLNJyainiIikFgVvIiIizcjMQsCfgHOB0cAVZja6VrZzgWHBz3XAX1q1kiIikpIUvImIiDSvY4EVzrlVzrkq4BHg4lp5LgYedL6ZQIGZ9apdkIiISE0K3kRERJpXH2B9je0NQVpT84iIiCRQ8CYiItK86ptSsfa6PI3Jg5ldZ2ZzzGxOSUlJs1RORERSl4I3ERGR5rUB6Fdjuy+w6Qjy4Jy7yzlX7Jwr7tatW7NXVEREUkuLL9LdFGZWAqxNdj0a0BUoTXYlUojaq2nUXk2j9mqattpeA5xz7S4iMbMwsAw4HdgIzAaudM4trpHnfOAG4DxgCvBH59yxhym3rV4j2+r51VapvZpG7dU0aq+maavt1eD1sUXXeWuqtnwRN7M5Da10LnWpvZpG7dU0aq+mUXu1Ludc1MxuAKYDIeA+59xiM7s+2H8n8Bx+4LYC2A98thHltslrpM6vplF7NY3aq2nUXk2Tiu3VpoI3ERGR9sA59xx+gFYz7c4arx3w1daul4iIpDaNeRMREREREUkBCt4a765kVyDFqL2aRu3VNGqvplF7SUvS+dU0aq+mUXs1jdqraVKuvdrUhCUiIiIiIiJSPz15ExERERERSQHtIngzs7JD7HunBd/3hy1VdnNTGzUsWW3TGGbW28weO8JjXzezlJpB6VDM7KdmdsYRHDfNzJ5tiTo1VUufa0fSRmZ2kZl9/zB5jvg8lOTSd3/jqJ0apmtk29cero+ga2Sj69Qeuk2aWZlzLqdWWsg5F2vt922r1EYNS1bb1Hq/sHMu2sxlvg7c5Jyb08j8rfqZG6iD4X8vxZuxzGn47XBBI/M3+++iRtnJ+jtM+u9WkkPf/Y2jdmqYrpHV+ZP6Pdrer49B+bpGNkK7ePJ2QHAH4TUz+yfwQZBWFvzby8zeNLP5ZrbIzE6q5/giM3svyLPQzIYF6VfXSP+rmYXM7BdAVpD2jyDft4KyF5nZN4K0Tmb2XzNbEKRfHqT/xMxmB2l3BX+UaqPENvqFmS0J3ue2IO1CM5tlZvPM7GUz69EW2sbM8s1sjZl5wXa2ma03szQzG2JmL5jZ+2b2lpmNDPI8YGa/NbPXgF+a2SlB+fODz5drZgPNbFGQP2Rmt5nZB0GbfC1IPz3I/4GZ3WdmGfV8tiuC/YvM7Jc10svMvxM1C5jajG35SzP7So3tW8zs22b2neC8X2hmtwb7BprZh2b2Z2Au0C9om0VBnb9Zo70uC15PNrN3gnPmvaCtMs3s/uCYeWZ2aj316mxmTwXvP9PMxtWo311m9iLwYHO1wyHap6XOtZpttMb875kZwCfM7DwzW2pmM8zsjxbcbTWzz5jZHcHrB4J975jZqhplNeY8TMp3mjTO0ZxzQZ52f30M3juV2knXyBS8Rpquj4fVguda+7hGOudS/gcoC/6dBuwDBtWz79vAj4LXISC3nnJuB64KXqcDWcAo4D9AWpD+Z+DammUHr48JTrBOQA6wGJgIXArcXSNffvBv5xppDwEXqo0OthHQGfgIqp8OFwT/FtZI+wLwmzbUNk8DpwavLwfuCV6/AgwLXk8BXg1ePwA8C4SC7f8AJwSvc/DXYRwILArSvgw8DoQPnENAJrAeGB6kPQh8I3j9OlAM9AbWAd2CMl8FPhbkccAnW+B8mwi8UWN7CXAt/qxOhn/j6Fng5OAzxoHjapwnL9U49sDv/gHgsuC8WwVMDtLzgs/1beD+IG1k8Jkzg9/rszXO35uD16cB84PXtwDvA1kp8nfY0Ln2AHBZ8HoN8N3g9YHzZFCw/XCNNvkMcEeN4x8Nfj+jgRVB+iHPw5r/Bq9b/DtNP61+zrXb62MqthO6RqbsNRJdH5N5rj1AO7hGtqsnb4H3nHOr60mfDXzWzG4Bxjrn9taT513gh2b2PWCAc64cOB3/j2W2mc0PtgfXc+yJwJPOuX3OuTLgCeAk/C/iM4I7LSc553YH+U81/+7YB/h/JEVH/ImbLhXaaA9QAdxjZh8H9gdl9AWmB+32HZq/3Y6mbf6F/yUB8CngX2aWAxwPPBq0zV+BXjWOedQdfFT/NvBbM/s6/hdy7a4JZwB3Hkh3zu0ARgCrnXPLgjx/w//Cr2ky8LpzriQ49h818sTwv2SalXNuHtDd/H7g44GdwDjgLGAe/h3EkcCw4JC1zrmZwetVwGAzu93MzsE/F2oaAWx2zs0O3mtP8LlOxP9CxDm3FFgLDK91bM08rwJdzCw/2PdMcD63lmY91xp4jwPpI4FVNd7v4UPU6ynnXNw5twSo7659fechJPc7TRonFb77IfnnUiq0k66RKXqN1PWx0XSNbEB7DN721ZfonHsT/49xI/CQmV1rZpfYwUfwxc65fwIXAeX4X36n4d8F+ZtzbkLwM8I5d0s9b1Hv48/gC+PA3bT/Cx6bZuLfebvMOTcWuBs/6m8tbb6NgpP+WPwvzY8BLwTZb8e/AzIW+BLN325H3DbAM8C5ZtY5+Dyv4v+N7arRNhOcc6Pqez/n3C/w75RmATMt6DpSg+HfBayddjiHylPhWq6f92P4dwIvBx4J6vF/NdphqHPu3iBvzXbYCYzHvyv6VeCeWuXW1w4H0g+nvjwHyqr3d9+CmvtcO9R7NKV7RmWN1/UdV6f928B3mjROm//ubyPnUptvJ10jU/4aqevj4eka2YD2GLzVy8wGANucc3cD9wKTnHNP1vhDmWNmg/Ej7z/i/+LH4T/Ov8zMugfldA7KAoiYWVrw+k3gY+b3re0EXAK8ZWa9gf3Oub8DtwGTOPgLKw3uOl3W4g3QCG2pjYJ2yXfOPQd8A5gQlJGP/wcL8OmWa41EjWmb4E7pe8Af8B+3x5xze4DVZvaJoBwL7rTV9x5DnHMfOOd+CczBvxNU04vA9WYWDvJ3BpYCA81saJDnGuCNWsfNAk4xs65mFgKuqCdPS3gE/47XZfgXqunA54LfLWbW58A5U5OZdQU859zjwP/g/83UtBTobWaTg/y5QZu8CVwVpA0H+uN3K6qpZp5pQGnwO2ozjvRcO0yxS/Hv1g4Mti9vOOth1XcetsnvNGmctvTdTxs+l9pSO+kamfLXSF0fj5CukX4/2I5iGvAdM4sAZfj9i2u7HLg6yLMF+KlzboeZ/Rh40fzBjxH8ux1r8fsnLzSzuc65q8zsAfyTBfz+tfPM7Gzg12YWD479snNul5ndjX8XbQ3+I+C2YBptpI2AXODp4G6FAd8MjrkFv3vFRmAmMKhZW6Bh0zh824D/CP7RIP8BVwF/CdooDf9Le0E9x37D/EHEMfw+8M+T2H3kHvxuDguDetztnLvDzD6L3yZh/HPpzpqFOuc2m9kPgNfw2/I559zTjf3gR8o5t9jMcoGNzrnNwGYzGwW8a/443TLgavzPW1Mf4P7gXAL4Qa1yq8wfsH+7mWXh3+E+A/+u1p3md0mIAp9xzlVa4pjgW4KyF+J3M2q1/9w0wTSO/Fyrl3Ou3PwB8i+YWSkH/waPREPnYVv8TpPGmUYb+e5vw9dHaEPthK6RKX2N1PXxqEyjg18j28VSASIicmhmluOcKzP/av0nYLlz7nfJrpeIiEiypdI1ssN0mxQR6eC+aP6EAIvxu1b9Ncn1ERERaStS5hqpJ28iIiIiIiIpQE/eREREREREUoCCNxERERERkRSg4E1ERERERCQFKHgTaSVmdouZ3ZTseoiIiLQluj6KNJ6CNxERERERkRSg4E2khZjZtWa20MwWmNlDtfZ90cxmB/seN7PsIP0TZrYoSH8zSCsys/fMbH5Q3rBkfB4REZHmoOujyJHTUgEiLcDMioAngBOcc6Vm1hn4OlDmnLvNzLo457YHef8X2Oqcu93MPgDOcc5tNLMC59wuM7sdmOmc+4eZpQMh51x5sj6biIjIkdL1UeTo6MmbSMs4DXjMOVcK4JzbUWv/GDN7K7gYXQUUBelvAw+Y2ReBUJD2LvBDM/seMEAXJhERSWG6PoocBQVvIi3DgEM91n4AuME5Nxa4FcgEcM5dD/wY6AfMD+5A/hO4CCgHppvZaS1ZcRERkRak66PIUVDwJtIyXgE+aWZdAIJuITXlApvNLA3/ziJBviHOuVnOuZ8ApUA/MxsMrHLO/RF4BhjXKp9ARESk+en6KHIUwsmugEh75JxbbGY/A94wsxgwD1hTI8v/ALOAtcAH+BcrgF8HA64N/wK3APg+cLWZRYAtwE9b5UOIiIg0M10fRY6OJiwRERERERFJAeo2KSIiIiIikgIUvImIiIiIiKQABW8iIiIiIiIpQMGbiIiIiIhIClDwJiIiIiIikgIUvImIiIiIiKQABW8iIiIiIiIpQMGbiIiIiIhICvj/PXSbYelUYoEAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=(15,10))\n", + "plt.subplot(2,2,1)\n", + "sns.swarmplot(x='class',y='sepal_length_cm',data=data)\n", + "plt.subplot(2,2,2)\n", + "sns.swarmplot(x='class',y='sepal_width_cm',data=data)\n", + "plt.subplot(2,2,3)\n", + "sns.swarmplot(x='class',y='petal_length_cm',data=data)\n", + "plt.subplot(2,2,4)\n", + "sns.swarmplot(x='class',y='petal_width_cm',data=data)" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [], + "source": [ + "#Cleaning Outliers \n", + "def drop_outliers(df, field, threshold=.5):\n", + " df[field+'_rank'] = df[field].rank(pct=True)\n", + " df = df[\n", + " (df[field+'_rank'].ge(threshold)) &\n", + " (df[field+'_rank'].le(1-threshold))]\n", + " df.drop(field+'_rank', axis=1, inplace=True)\n", + " return df.reset_index()" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
indexsepal_length_cmsepal_width_cmpetal_length_cmpetal_width_cmclasssepal_length_cm_ranksepal_width_cm_rankpetal_length_cm_rank
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [index, sepal_length_cm, sepal_width_cm, petal_length_cm, petal_width_cm, class, sepal_length_cm_rank, sepal_width_cm_rank, petal_length_cm_rank]\n", + "Index: []" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "drop_outliers(data,'sepal_length_cm')\n", + "drop_outliers(data,'sepal_width_cm')\n", + "drop_outliers(data,'petal_length_cm')\n", + "drop_outliers(data,'petal_width_cm')\n" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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jL4CjI2nzwYeMMZcCTjjae8DNxpjfgIMVsMkIiIZTO2jyEFQ8CbSNQywp9vaDwDfttaOB34BZAFYa68GfgYMAhbFeyAfAc4FWoDXjDGndGXFRUREupDaR5GDoOBNpGu8CVxojCkCiA8LaSsPqDTGuIn1LBLPN8xa+6G19ufADmCQMWYoUGGtvR14HjiqWz6BiIjIoaf2UeQguFJdAZGeyFq71Bjza+AdY0wEWAisb5Plv4EPgQ3AEmKNFcAf4hOuDbEGbjFwPXCJMSYEbAV+2S0fQkRE5BBT+yhycLRgiYiIiIiISAbQsEkREREREZEMoOBNREREREQkAyh4ExERERERyQAK3kRERERERDKAgjcREREREZEMoOBNREREREQkAyh4ExERERERyQAK3kRERERERDKAgjcREREREZEMoOBNREREREQkAyh4ExERERERyQAK3kRERERERDKAgjcREREREZEMoOBNREREREQkAyh4ExERERERyQAK3kRERERERDKAgjcREREREZEMoOBNREREREQkAyh4ExERERERyQAK3kRERERERDKAK9UVaKu4uNiWlZWluhoiItIN5s+fv8Na2yfV9cgUaiNFRA4Pe2of0yp4KysrY968eamuhoiIdANjzIZU1yGTqI0UETk87Kl91LBJERERERGRDNClwZsxZpQxZlGbn3pjzHVd+Z4iIiIiIiI9UZcOm7TWrgQmAhhjnMBm4NmufE8REREREZGeqDuHTZ4KrLXWao6DiIiIiIjIfurO4O1i4NFufD8REREREZEeo1uCN2OMBzgXeLKT164yxswzxsyrqqrqjuqIiIh0GWPMIGPM28aY5caYpcaY73aS5yRjTF2bOeE/T0VdRUQks3TXVgFnAQustdvav2CtvRe4F6C8vNx2U31ERHq8TQ0RXqsI4HMbzh7mJd+rBYa7SRj4gbV2gTEmD5hvjHnDWrusXb73rLVnp6B+IiKHjaZglJcrAtT4LaeVeRha6CJqLW9vCLKyOszkEjfTBngAWFIVYtamIIPynJwxxIvbaVJc+466K3j7EhoyKSLSbTbURfivV2ppCceeP7/az4NnF+JNw4aop7HWVgKV8ccNxpjlwBFA++BNRES6UNRarn2jnlU1EQAeXdbCX2fm88b6IE+u8APwyDI/3zk6m345Dn72biO77iTN3hTktyflp6jm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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "#Plotting Again after eliminating Outliers \n", + "plt.figure(figsize=(15,10))\n", + "plt.subplot(2,2,1)\n", + "sns.swarmplot(x='class',y='sepal_length_cm',data=data)\n", + "plt.subplot(2,2,2)\n", + "sns.swarmplot(x='class',y='sepal_width_cm',data=data)\n", + "plt.subplot(2,2,3)\n", + "sns.swarmplot(x='class',y='petal_length_cm',data=data)\n", + "plt.subplot(2,2,4)\n", + "sns.swarmplot(x='class',y='petal_width_cm',data=data)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(150, 9)" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [], + "source": [ + "data.to_csv('final_out.csv', index=False) " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/module-3/Data-Cleaning-Challenge/final_out.csv b/module-3/Data-Cleaning-Challenge/final_out.csv new file mode 100644 index 00000000..eb32d60e --- /dev/null +++ b/module-3/Data-Cleaning-Challenge/final_out.csv @@ -0,0 +1,151 @@ +sepal_length_cm,sepal_width_cm,petal_length_cm,petal_width_cm,class,sepal_length_cm_rank,sepal_width_cm_rank,petal_length_cm_rank,petal_width_cm_rank +5.1,3.5,1.4,0.2,Iris-setosa,0.2733333333333333,0.8633333333333333,0.11666666666666667,0.1206896551724138 +4.9,3.0,1.4,0.2,Iris-setosa,0.15666666666666668,0.47,0.11666666666666667,0.1206896551724138 +4.7,3.2,1.3,0.2,Iris-setosa,0.09666666666666666,0.68,0.05333333333333334,0.1206896551724138 +4.6,3.1,1.5,0.2,Iris-setosa,0.07666666666666666,0.5966666666666667,0.20333333333333334,0.1206896551724138 +5.0,3.6,1.4,0.2,Iris-setosa,0.21,0.8933333333333333,0.11666666666666667,0.1206896551724138 +5.4,3.9,1.7,0.4,Iris-setosa,0.3566666666666667,0.97,0.31,0.27586206896551724 +4.6,3.4,1.4,0.3,Iris-setosa,0.07666666666666666,0.8033333333333333,0.11666666666666667,0.22758620689655173 +5.0,3.4,1.5,,Iris-setosa,0.21,0.8033333333333333,0.20333333333333334, +4.4,2.9,1.4,,Iris-setosa,0.04666666666666667,0.35,0.11666666666666667, +4.9,3.1,1.5,,Iris-setosa,0.15666666666666668,0.5966666666666667,0.20333333333333334, +5.4,3.7,1.5,,Iris-setosa,0.3566666666666667,0.9133333333333333,0.20333333333333334, +4.8,3.4,1.6,,Iris-setosa,0.12,0.8033333333333333,0.2733333333333333, +4.8,3.0,1.4,0.1,Iris-setosa,0.12,0.47,0.11666666666666667,0.020689655172413793 +5.7,3.0,1.1,0.1,Iris-setosa,0.48333333333333334,0.47,0.013333333333333334,0.020689655172413793 +5.8,4.0,1.2,0.2,Iris-setosa,0.5333333333333333,0.98,0.023333333333333334,0.1206896551724138 +5.7,4.4,1.5,0.4,Iris-setosa,0.48333333333333334,1.0,0.20333333333333334,0.27586206896551724 +5.4,3.9,1.3,0.4,Iris-setosa,0.3566666666666667,0.97,0.05333333333333334,0.27586206896551724 +5.1,3.5,1.4,0.3,Iris-setosa,0.2733333333333333,0.8633333333333333,0.11666666666666667,0.22758620689655173 +5.7,3.8,1.7,0.3,Iris-setossa,0.48333333333333334,0.9433333333333334,0.31,0.22758620689655173 +5.1,3.8,1.5,0.3,Iris-setosa,0.2733333333333333,0.9433333333333334,0.20333333333333334,0.22758620689655173 +5.4,3.4,1.7,0.2,Iris-setosa,0.3566666666666667,0.8033333333333333,0.31,0.1206896551724138 +5.1,3.7,1.5,0.4,Iris-setosa,0.2733333333333333,0.9133333333333333,0.20333333333333334,0.27586206896551724 +4.6,3.6,1.0,0.2,Iris-setosa,0.07666666666666666,0.8933333333333333,0.006666666666666667,0.1206896551724138 +5.1,3.3,1.7,0.5,Iris-setosa,0.2733333333333333,0.7433333333333333,0.31,0.30344827586206896 +4.8,3.4,1.9,0.2,Iris-setosa,0.12,0.8033333333333333,0.33,0.1206896551724138 +5.0,3.0,1.6,0.2,Iris-setosa,0.21,0.47,0.2733333333333333,0.1206896551724138 +5.0,3.4,1.6,0.4,Iris-setosa,0.21,0.8033333333333333,0.2733333333333333,0.27586206896551724 +5.2,3.5,1.5,0.2,Iris-setosa,0.31666666666666665,0.8633333333333333,0.20333333333333334,0.1206896551724138 +5.2,3.4,1.4,0.2,Iris-setosa,0.31666666666666665,0.8033333333333333,0.11666666666666667,0.1206896551724138 +4.7,3.2,1.6,0.2,Iris-setosa,0.09666666666666666,0.68,0.2733333333333333,0.1206896551724138 +4.8,3.1,1.6,0.2,Iris-setosa,0.12,0.5966666666666667,0.2733333333333333,0.1206896551724138 +5.4,3.4,1.5,0.4,Iris-setosa,0.3566666666666667,0.8033333333333333,0.20333333333333334,0.27586206896551724 +5.2,4.1,1.5,0.1,Iris-setosa,0.31666666666666665,0.9866666666666667,0.20333333333333334,0.020689655172413793 +5.5,4.2,1.4,0.2,Iris-setosa,0.3933333333333333,0.9933333333333333,0.11666666666666667,0.1206896551724138 +4.9,3.1,1.5,0.1,Iris-setosa,0.15666666666666668,0.5966666666666667,0.20333333333333334,0.020689655172413793 +5.0,3.2,1.2,0.2,Iris-setosa,0.21,0.68,0.023333333333333334,0.1206896551724138 +5.5,3.5,1.3,0.2,Iris-setosa,0.3933333333333333,0.8633333333333333,0.05333333333333334,0.1206896551724138 +4.9,3.1,1.5,0.1,Iris-setosa,0.15666666666666668,0.5966666666666667,0.20333333333333334,0.020689655172413793 +4.4,3.0,1.3,0.2,Iris-setosa,0.04666666666666667,0.47,0.05333333333333334,0.1206896551724138 +5.1,3.4,1.5,0.2,Iris-setosa,0.2733333333333333,0.8033333333333333,0.20333333333333334,0.1206896551724138 +5.0,3.5,1.3,0.3,Iris-setosa,0.21,0.8633333333333333,0.05333333333333334,0.22758620689655173 +4.5,2.3,1.3,0.3,Iris-setosa,0.06,0.043333333333333335,0.05333333333333334,0.22758620689655173 +4.4,3.2,1.3,0.2,Iris-setosa,0.04666666666666667,0.68,0.05333333333333334,0.1206896551724138 +5.0,3.5,1.6,0.6,Iris-setosa,0.21,0.8633333333333333,0.2733333333333333,0.3103448275862069 +5.1,3.8,1.9,0.4,Iris-setosa,0.2733333333333333,0.9433333333333334,0.33,0.27586206896551724 +4.8,3.0,1.4,0.3,Iris-setosa,0.12,0.47,0.11666666666666667,0.22758620689655173 +5.1,3.8,1.6,0.2,Iris-setosa,0.2733333333333333,0.9433333333333334,0.2733333333333333,0.1206896551724138 +4.6,3.2,1.4,0.2,Iris-setosa,0.07666666666666666,0.68,0.11666666666666667,0.1206896551724138 +5.3,3.7,1.5,0.2,Iris-setosa,0.3333333333333333,0.9133333333333333,0.20333333333333334,0.1206896551724138 +5.0,3.3,1.4,0.2,Iris-setosa,0.21,0.7433333333333333,0.11666666666666667,0.1206896551724138 +7.0,3.2,4.7,1.4,Iris-versicolor,0.9266666666666666,0.68,0.62,0.5344827586206896 +6.4,3.2,4.5,1.5,Iris-versicolor,0.76,0.68,0.5566666666666666,0.603448275862069 +6.9,3.1,4.9,1.5,Iris-versicolor,0.91,0.5966666666666667,0.68,0.603448275862069 +5.5,2.3,4.0,1.3,Iris-versicolor,0.3933333333333333,0.043333333333333335,0.4266666666666667,0.46206896551724136 +6.5,2.8,4.6,1.5,Iris-versicolor,0.8,0.26666666666666666,0.5933333333333334,0.603448275862069 +5.7,2.8,4.5,1.3,Iris-versicolor,0.48333333333333334,0.26666666666666666,0.5566666666666666,0.46206896551724136 +6.3,3.3,4.7,1.6,Iris-versicolor,0.7066666666666667,0.7433333333333333,0.62,0.6586206896551724 +4.9,2.4,3.3,1.0,Iris-versicolor,0.15666666666666668,0.06666666666666667,0.35,0.33793103448275863 +6.6,2.9,4.6,1.3,Iris-versicolor,0.8233333333333334,0.35,0.5933333333333334,0.46206896551724136 +5.2,2.7,3.9,1.4,Iris-versicolor,0.31666666666666665,0.19,0.4,0.5344827586206896 +5.0,2.0,3.5,1.0,Iris-versicolor,0.21,0.006666666666666667,0.36333333333333334,0.33793103448275863 +5.9,3.0,4.2,1.5,Iris-versicolor,0.5666666666666667,0.47,0.4766666666666667,0.603448275862069 +6.0,2.2,4.0,1.0,Iris-versicolor,0.5933333333333334,0.02,0.4266666666666667,0.33793103448275863 +6.1,2.9,4.7,1.4,Iris-versicolor,0.63,0.35,0.62,0.5344827586206896 +5.6,2.9,3.6,1.3,Iris-versicolor,0.43333333333333335,0.35,0.37333333333333335,0.46206896551724136 +6.7,3.1,4.4,1.4,Iris-versicolor,0.8533333333333334,0.5966666666666667,0.5166666666666667,0.5344827586206896 +5.6,3.0,4.5,1.5,Iris-versicolor,0.43333333333333335,0.47,0.5566666666666666,0.603448275862069 +5.8,2.7,4.1,1.0,Iris-versicolor,0.5333333333333333,0.19,0.4533333333333333,0.33793103448275863 +6.2,2.2,4.5,1.5,Iris-versicolor,0.6633333333333333,0.02,0.5566666666666666,0.603448275862069 +5.6,2.5,3.9,1.1,Iris-versicolor,0.43333333333333335,0.10333333333333333,0.4,0.3724137931034483 +5.9,3.2,4.8,1.8,Iris-versicolor,0.5666666666666667,0.68,0.65,0.7275862068965517 +6.1,2.8,4.0,1.3,Iris-versicolor,0.63,0.26666666666666666,0.4266666666666667,0.46206896551724136 +6.3,2.5,4.9,1.5,Iris-versicolor,0.7066666666666667,0.10333333333333333,0.68,0.603448275862069 +6.1,2.8,4.7,1.2,Iris-versicolor,0.63,0.26666666666666666,0.62,0.4 +6.4,2.9,4.3,1.3,Iris-versicolor,0.76,0.35,0.49666666666666665,0.46206896551724136 +6.6,3.0,4.4,1.4,Iris-versicolor,0.8233333333333334,0.47,0.5166666666666667,0.5344827586206896 +6.8,2.8,4.8,1.4,Iris-versicolor,0.8866666666666667,0.26666666666666666,0.65,0.5344827586206896 +0.067,3.0,5.0,1.7,Iris-versicolor,0.03333333333333333,0.47,0.71,0.6793103448275862 +0.06,2.9,4.5,1.5,Iris-versicolor,0.02666666666666667,0.35,0.5566666666666666,0.603448275862069 +0.057,2.6,3.5,1.0,Iris-versicolor,0.02,0.14666666666666667,0.36333333333333334,0.33793103448275863 +0.055,2.4,3.8,1.1,Iris-versicolor,0.01,0.06666666666666667,0.38666666666666666,0.3724137931034483 +0.055,2.4,3.7,1.0,Iris-versicolor,0.01,0.06666666666666667,0.38,0.33793103448275863 +5.8,2.7,3.9,1.2,Iris-versicolor,0.5333333333333333,0.19,0.4,0.4 +6.0,2.8,5.1,1.6,Iris-versicolor,0.5933333333333334,0.26666666666666666,0.75,0.6586206896551724 +5.4,3.0,4.5,1.5,Iris-versicolor,0.3566666666666667,0.47,0.5566666666666666,0.603448275862069 +6.0,3.4,4.5,1.6,Iris-versicolor,0.5933333333333334,0.8033333333333333,0.5566666666666666,0.6586206896551724 +6.7,3.1,4.7,1.5,Iris-versicolor,0.8533333333333334,0.5966666666666667,0.62,0.603448275862069 +6.3,2.3,4.4,1.3,Iris-versicolor,0.7066666666666667,0.043333333333333335,0.5166666666666667,0.46206896551724136 +5.6,3.0,4.1,1.3,Iris-versicolor,0.43333333333333335,0.47,0.4533333333333333,0.46206896551724136 +5.5,2.5,4.0,1.3,Iris-versicolor,0.3933333333333333,0.10333333333333333,0.4266666666666667,0.46206896551724136 +5.5,2.6,4.4,1.2,Iris-versicolor,0.3933333333333333,0.14666666666666667,0.5166666666666667,0.4 +6.1,3.0,4.6,1.4,Iris-versicolor,0.63,0.47,0.5933333333333334,0.5344827586206896 +5.8,2.6,4.0,1.2,Iris-versicolor,0.5333333333333333,0.14666666666666667,0.4266666666666667,0.4 +5.0,2.3,3.3,1.0,Iris-versicolor,0.21,0.043333333333333335,0.35,0.33793103448275863 +5.6,2.7,4.2,1.3,Iris-versicolor,0.43333333333333335,0.19,0.4766666666666667,0.46206896551724136 +5.7,3.0,4.2,1.2,versicolor,0.48333333333333334,0.47,0.4766666666666667,0.4 +5.7,2.9,4.2,1.3,versicolor,0.48333333333333334,0.35,0.4766666666666667,0.46206896551724136 +6.2,2.9,4.3,1.3,versicolor,0.6633333333333333,0.35,0.49666666666666665,0.46206896551724136 +5.1,2.5,3.0,1.1,versicolor,0.2733333333333333,0.10333333333333333,0.34,0.3724137931034483 +5.7,2.8,4.1,1.3,versicolor,0.48333333333333334,0.26666666666666666,0.4533333333333333,0.46206896551724136 +6.3,3.3,6.0,2.5,Iris-virginica,0.7066666666666667,0.7433333333333333,0.9366666666666666,0.993103448275862 +5.8,2.7,5.1,1.9,Iris-virginica,0.5333333333333333,0.19,0.75,0.7827586206896552 +7.1,3.0,5.9,2.1,Iris-virginica,0.9333333333333333,0.47,0.9233333333333333,0.8586206896551725 +6.3,2.9,5.6,1.8,Iris-virginica,0.7066666666666667,0.35,0.8566666666666667,0.7275862068965517 +6.5,3.0,5.8,2.2,Iris-virginica,0.8,0.47,0.9066666666666666,0.8896551724137931 +7.6,3.0,6.6,2.1,Iris-virginica,0.9733333333333334,0.47,0.98,0.8586206896551725 +4.9,2.5,4.5,1.7,Iris-virginica,0.15666666666666668,0.10333333333333333,0.5566666666666666,0.6793103448275862 +7.3,2.9,6.3,1.8,Iris-virginica,0.96,0.35,0.9666666666666667,0.7275862068965517 +6.7,2.5,5.8,1.8,Iris-virginica,0.8533333333333334,0.10333333333333333,0.9066666666666666,0.7275862068965517 +7.2,3.6,6.1,2.5,Iris-virginica,0.9466666666666667,0.8933333333333333,0.9533333333333334,0.993103448275862 +6.5,3.2,5.1,2.0,Iris-virginica,0.8,0.68,0.75,0.8172413793103448 +6.4,2.7,5.3,1.9,Iris-virginica,0.76,0.19,0.7966666666666666,0.7827586206896552 +6.8,3.0,5.5,2.1,Iris-virginica,0.8866666666666667,0.47,0.8266666666666667,0.8586206896551725 +5.7,2.5,5.0,2.0,Iris-virginica,0.48333333333333334,0.10333333333333333,0.71,0.8172413793103448 +5.8,2.8,5.1,2.4,Iris-virginica,0.5333333333333333,0.26666666666666666,0.75,0.9724137931034482 +6.4,3.2,5.3,2.3,Iris-virginica,0.76,0.68,0.7966666666666666,0.9310344827586207 +6.5,3.0,5.5,1.8,Iris-virginica,0.8,0.47,0.8266666666666667,0.7275862068965517 +7.7,3.8,6.7,2.2,Iris-virginica,0.9866666666666667,0.9433333333333334,0.99,0.8896551724137931 +7.7,2.6,6.9,2.3,Iris-virginica,0.9866666666666667,0.14666666666666667,1.0,0.9310344827586207 +6.0,2.2,5.0,1.5,Iris-virginica,0.5933333333333334,0.02,0.71,0.603448275862069 +6.9,3.2,5.7,2.3,Iris-virginica,0.91,0.68,0.8866666666666667,0.9310344827586207 +5.6,2.8,4.9,2.0,Iris-virginica,0.43333333333333335,0.26666666666666666,0.68,0.8172413793103448 +5.6,2.8,6.7,2.0,Iris-virginica,0.43333333333333335,0.26666666666666666,0.99,0.8172413793103448 +6.3,2.7,4.9,1.8,Iris-virginica,0.7066666666666667,0.19,0.68,0.7275862068965517 +6.7,3.3,5.7,2.1,Iris-virginica,0.8533333333333334,0.7433333333333333,0.8866666666666667,0.8586206896551725 +7.2,3.2,6.0,1.8,Iris-virginica,0.9466666666666667,0.68,0.9366666666666666,0.7275862068965517 +6.2,2.8,4.8,1.8,Iris-virginica,0.6633333333333333,0.26666666666666666,0.65,0.7275862068965517 +6.1,3.0,4.9,1.8,Iris-virginica,0.63,0.47,0.68,0.7275862068965517 +6.4,2.8,5.6,2.1,Iris-virginica,0.76,0.26666666666666666,0.8566666666666667,0.8586206896551725 +7.2,3.0,5.8,1.6,Iris-virginica,0.9466666666666667,0.47,0.9066666666666666,0.6586206896551724 +7.4,2.8,6.1,1.9,Iris-virginica,0.9666666666666667,0.26666666666666666,0.9533333333333334,0.7827586206896552 +7.9,3.8,6.4,2.0,Iris-virginica,1.0,0.9433333333333334,0.9733333333333334,0.8172413793103448 +6.4,2.8,5.6,2.2,Iris-virginica,0.76,0.26666666666666666,0.8566666666666667,0.8896551724137931 +6.3,2.8,5.1,1.5,Iris-virginica,0.7066666666666667,0.26666666666666666,0.75,0.603448275862069 +6.1,2.6,5.6,1.4,Iris-virginica,0.63,0.14666666666666667,0.8566666666666667,0.5344827586206896 +7.7,3.0,6.1,2.3,Iris-virginica,0.9866666666666667,0.47,0.9533333333333334,0.9310344827586207 +6.3,3.4,5.6,2.4,Iris-virginica,0.7066666666666667,0.8033333333333333,0.8566666666666667,0.9724137931034482 +6.4,3.1,5.5,1.8,Iris-virginica,0.76,0.5966666666666667,0.8266666666666667,0.7275862068965517 +6.0,3.0,4.8,1.8,Iris-virginica,0.5933333333333334,0.47,0.65,0.7275862068965517 +6.9,3.1,5.4,2.1,Iris-virginica,0.91,0.5966666666666667,0.81,0.8586206896551725 +6.7,3.1,5.6,2.4,Iris-virginica,0.8533333333333334,0.5966666666666667,0.8566666666666667,0.9724137931034482 +6.9,3.1,5.1,2.3,Iris-virginica,0.91,0.5966666666666667,0.75,0.9310344827586207 +5.8,2.7,5.1,1.9,Iris-virginica,0.5333333333333333,0.19,0.75,0.7827586206896552 +6.8,3.2,5.9,2.3,Iris-virginica,0.8866666666666667,0.68,0.9233333333333333,0.9310344827586207 +6.7,3.3,5.7,2.5,Iris-virginica,0.8533333333333334,0.7433333333333333,0.8866666666666667,0.993103448275862 +6.7,3.0,5.2,2.3,Iris-virginica,0.8533333333333334,0.47,0.7833333333333333,0.9310344827586207 +6.3,2.5,5.0,2.3,Iris-virginica,0.7066666666666667,0.10333333333333333,0.71,0.9310344827586207 +6.5,3.0,5.2,2.0,Iris-virginica,0.8,0.47,0.7833333333333333,0.8172413793103448 +6.2,3.4,5.4,2.3,Iris-virginica,0.6633333333333333,0.8033333333333333,0.81,0.9310344827586207 +5.9,3.0,5.1,1.8,Iris-virginica,0.5666666666666667,0.47,0.75,0.7275862068965517