From a02903565a86e54befc56f9d416d11de824ecc8e Mon Sep 17 00:00:00 2001 From: Saifobai Date: Wed, 23 Jul 2025 15:42:46 +0200 Subject: [PATCH] map-reduce-filter-done --- your-code/main.ipynb | 1216 +++++++++++++++++++++++++++++++++++++++--- 1 file changed, 1145 insertions(+), 71 deletions(-) diff --git a/your-code/main.ipynb b/your-code/main.ipynb index 9f0e67b..302c3b2 100644 --- a/your-code/main.ipynb +++ b/your-code/main.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -35,7 +35,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ @@ -43,14 +43,26 @@ "\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", + " " ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "13637" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "len(prophet)" ] @@ -66,11 +78,12 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 25, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "# your code here\n", + "prophet = prophet[568:]" ] }, { @@ -82,11 +95,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 26, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['dispense', 'with', 'confidence?\\n\\nIf', 'this', 'is', 'my', 'day', 'of', 'harvest,', 'in']\n" + ] + } + ], "source": [ - "# your code here" + "# your code here\n", + "print(prophet[:10])" ] }, { @@ -100,30 +122,31 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 27, "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" + " return ''.join(char for char in x if char.isalpha())" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 28, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['dispense', 'with', 'confidenceif', 'this', 'is', 'my', 'day', 'of', 'harvest', 'in', 'whatfields', 'have', 'i', 'sowed', 'the', 'seed', 'and', 'inwhat', 'unremembered', 'seasonsif', 'this', 'indeed', 'be', 'the', 'hour', 'in', 'which', 'ilift', 'up', 'my', 'lantern', 'it', 'is', 'not', 'my', 'flamethat', 'shall', 'burn', 'thereinempty', 'and', 'dark', 'shall', 'i', 'raise', 'my', 'lanternand', 'the', 'guardian', 'of', 'the', 'night', 'shall', 'fillit', 'with', 'oil', 'and', 'he', 'shall', 'light', 'it', 'alsothese', 'things', 'he', 'said', 'in', 'words', 'but', 'muchin', 'his', 'heart', 'remained', 'unsaid', 'for', 'hehimself', 'could', 'not', 'speak', 'his', 'deepersecretillustration', 'and', 'when', 'he', 'entered', 'into', 'the', 'city', 'allthe', 'people', 'came', 'to', 'meet', 'him', 'and', 'theywere', 'crying', 'out', 'to', 'him', 'as', 'with', 'onevoiceand', 'the', 'elders', 'of', 'the', 'city', 'stood', 'forthand', 'saidgo', 'not', 'yet', 'away', 'from', 'usa', 'noontide', 'have', 'you', 'been', 'in', 'ourtwilight', 'and', 'your', 'youth', 'has', 'given', 'usdreams', 'to', 'dreamno', 'stranger', 'are', 'you', 'among', 'us', 'nora', 'guest', 'but', 'our', 'son', 'and', 'our', 'dearlybelovedsuffer', 'not', 'yet', 'our', 'eyes', 'to', 'hunger', 'foryour', 'faceand', 'the', 'priests', 'and', 'the', 'priestesses', 'saidunto', 'himlet', 'not', 'the', 'waves', 'of', 'the', 'sea', 'separate', 'usnow', 'and', 'the', 'years', 'you', 'have', 'spent', 'in', 'ourmidst', 'become', 'a', 'memoryyou', 'have', 'walked', 'among', 'us', 'a', 'spiritand', 'your', 'shadow', 'has', 'been', 'a', 'lightupon', 'our', 'facesmuch', 'have', 'we', 'loved', 'you', 'but', 'speechlesswas', 'our', 'love', 'and', 'with', 'veils', 'has', 'it', 'beenveiledyet', 'now', 'it', 'cries', 'aloud', 'unto', 'you', 'andwould', 'stand', 'revealed', 'before', 'youand', 'ever', 'has', 'it', 'been', 'that', 'love', 'knowsnot', 'its', 'own', 'depth', 'until', 'the', 'hour', 'ofseparationand', 'others', 'came', 'also', 'and', 'entreated', 'himbut', 'he', 'answered', 'them', 'not', 'he', 'only', 'benthis', 'head', 'and', 'those', 'who', 'stood', 'near', 'sawhis', 'tears', 'falling', 'upon', 'his', 'breastand', 'he', 'and', 'the', 'people', 'proceeded', 'towardsthe', 'great', 'square', 'before', 'the', 'templeand', 'there', 'came', 'out', 'of', 'the', 'sanctuary', 'awoman', 'whose', 'name', 'was', 'almitra', 'and', 'shewas', 'a', 'seeressand', 'he', 'looked', 'upon', 'her', 'with', 'exceedingtenderness', 'for', 'it', 'was', 'she', 'who', 'had', 'firstsought', 'and', 'believed', 'in', 'him', 'when', 'he', 'hadbeen', 'but', 'a', 'day', 'in', 'their', 'city', 'andshe', 'hailed', 'him', 'sayingprophet', 'of', 'god', 'in', 'quest', 'of', 'theuttermost', 'long', 'have', 'you', 'searched', 'thedistances', 'for', 'your', 'shipand', 'now', 'your', 'ship', 'has', 'come', 'and', 'you', 'mustneeds', 'godeep', 'is', 'your', 'longing', 'for', 'the', 'land', 'ofyour', 'memories', 'and', 'the', 'dwelling', 'placeof', 'your', 'greater', 'desires', 'and', 'our', 'lovewould', 'not', 'bind', 'you', 'nor', 'our', 'needs', 'holdyouyet', 'this', 'we', 'ask', 'ere', 'you', 'leave', 'us', 'thatyou', 'speak', 'to', 'us', 'and', 'give', 'us', 'of', 'yourtruthand', 'we', 'will', 'give', 'it', 'unto', 'our', 'childrenand', 'they', 'unto', 'their', 'children', 'and', 'itshall', 'not', 'perishin', 'your', 'aloneness', 'you', 'have', 'watched', 'withour', 'days', 'and', 'in', 'your', 'wakefulness', 'youhave', 'listened', 'to', 'the', 'weeping', 'and', 'thelaughter', 'of', 'our', 'sleepnow', 'therefore', 'disclose', 'us', 'to', 'ourselvesand', 'tell', 'us', 'all', 'that', 'has', 'been', 'shownyou', 'of', 'that', 'which', 'is', 'between', 'birth', 'anddeathand', 'he', 'answeredpeople', 'of', 'orphalese', 'of', 'what', 'can', 'ispeak', 'save', 'of', 'that', 'which', 'is', 'even', 'nowmoving', 'within', 'your', 'souls', 'then', 'said', 'almitra', 'speak', 'to', 'us', 'ofloveand', 'he', 'raised', 'his', 'head', 'and', 'looked', 'uponthe', 'people', 'and', 'there', 'fell', 'a', 'stillnessupon', 'them', 'and', 'with', 'a', 'great', 'voice', 'hesaidwhen', 'love', 'beckons', 'to', 'you', 'follow', 'himthough', 'his', 'ways', 'are', 'hard', 'and', 'steepand', 'when', 'his', 'wings', 'enfold', 'you', 'yield', 'tohimthough', 'the', 'sword', 'hidden', 'among', 'hispinions', 'may', 'wound', 'youand', 'when', 'he', 'speaks', 'to', 'you', 'believe', 'inhimthough', 'his', 'voice', 'may', 'shatter', 'your', 'dreamsas', 'the', 'north', 'wind', 'lays', 'waste', 'the', 'gardenfor', 'even', 'as', 'love', 'crowns', 'you', 'so', 'shallhe', 'crucify', 'you', 'even', 'as', 'he', 'is', 'for', 'yourgrowth', 'so', 'is', 'he', 'for', 'your', 'pruningeven', 'as', 'he', 'ascends', 'to', 'your', 'height', 'andcaresses', 'your', 'tenderest', 'branchesthat', 'quiver', 'in', 'the', 'sunso', 'shall', 'he', 'descend', 'to', 'your', 'roots', 'andshake', 'them', 'in', 'their', 'clinging', 'to', 'theearthlike', 'sheaves', 'of', 'corn', 'he', 'gathers', 'you', 'untohimselfhe', 'threshes', 'you', 'to', 'make', 'you', 'nakedhe', 'sifts', 'you', 'to', 'free', 'you', 'from', 'yourhuskshe', 'grinds', 'you', 'to', 'whitenesshe', 'kneads', 'you', 'until', 'you', 'are', 'pliantand', 'then', 'he', 'assigns', 'you', 'to', 'his', 'sacredfire', 'that', 'you', 'may', 'become', 'sacred', 'breadfor', 'gods', 'sacred', 'feastall', 'these', 'things', 'shall', 'love', 'do', 'unto', 'youthat', 'you', 'may', 'know', 'the', 'secrets', 'of', 'yourheart', 'and', 'in', 'that', 'knowledge', 'become', 'afragment', 'of', 'lifes', 'heartbut', 'if', 'in', 'your', 'fear', 'you', 'would', 'seek', 'onlyloves', 'peace', 'and', 'loves', 'pleasurethen', 'it', 'is', 'better', 'for', 'you', 'that', 'youcover', 'your', 'nakedness', 'and', 'pass', 'out', 'ofloves', 'threshingfloorinto', 'the', 'seasonless', 'world', 'where', 'youshall', 'laugh', 'but', 'not', 'all', 'of', 'yourlaughter', 'and', 'weep', 'but', 'not', 'all', 'of', 'yourtearslove', 'gives', 'naught', 'but', 'itself', 'and', 'takesnaught', 'but', 'from', 'itselflove', 'possesses', 'not', 'nor', 'would', 'it', 'bepossessedfor', 'love', 'is', 'sufficient', 'unto', 'lovewhen', 'you', 'love', 'you', 'should', 'not', 'say', 'godis', 'in', 'my', 'heart', 'but', 'rather', 'i', 'am', 'inthe', 'heart', 'of', 'godand', 'think', 'not', 'you', 'can', 'direct', 'the', 'courseof', 'love', 'for', 'love', 'if', 'it', 'finds', 'youworthy', 'directs', 'your', 'courselove', 'has', 'no', 'other', 'desire', 'but', 'to', 'fulfilitselfbut', 'if', 'you', 'love', 'and', 'must', 'needs', 'havedesires', 'let', 'these', 'be', 'your', 'desiresto', 'melt', 'and', 'be', 'like', 'a', 'running', 'brook', 'thatsings', 'its', 'melody', 'to', 'the', 'night', 'toknow', 'the', 'pain', 'of', 'too', 'much', 'tendernessto', 'be', 'wounded', 'by', 'your', 'own', 'understandingof', 'loveand', 'to', 'bleed', 'willingly', 'and', 'joyfullyto', 'wake', 'at', 'dawn', 'with', 'a', 'winged', 'heart', 'andgive', 'thanks', 'for', 'another', 'day', 'of', 'lovingto', 'rest', 'at', 'the', 'noon', 'hour', 'and', 'meditateloves', 'ecstacyto', 'return', 'home', 'at', 'eventide', 'withgratitudeand', 'then', 'to', 'sleep', 'with', 'a', 'prayer', 'forthe', 'beloved', 'in', 'your', 'heart', 'and', 'a', 'song', 'ofpraise', 'upon', 'your', 'lipsillustration', '', 'then', 'almitra', 'spoke', 'again', 'and', 'saidand', 'what', 'of', 'marriage', 'masterand', 'he', 'answered', 'sayingyou', 'were', 'born', 'together', 'and', 'together', 'youshall', 'be', 'forevermoreyou', 'shall', 'be', 'together', 'when', 'the', 'whitewings', 'of', 'death', 'scatter', 'your', 'daysaye', 'you', 'shall', 'be', 'together', 'even', 'in', 'thesilent', 'memory', 'of', 'godbut', 'let', 'there', 'be', 'spaces', 'in', 'yourtogethernessand', 'let', 'the', 'winds', 'of', 'the', 'heavens', 'dancebetween', 'youlove', 'one', 'another', 'but', 'make', 'not', 'a', 'bond', 'oflovelet', 'it', 'rather', 'be', 'a', 'moving', 'sea', 'betweenthe', 'shores', 'of', 'your', 'soulsfill', 'each', 'others', 'cup', 'but', 'drink', 'not', 'fromone', 'cupgive', 'one', 'another', 'of', 'your', 'bread', 'but', 'eatnot', 'from', 'the', 'same', 'loaf', 'sing', 'anddance', 'together', 'and', 'be', 'joyous', 'but', 'leteach', 'one', 'of', 'you', 'be', 'aloneeven', 'as', 'the', 'strings', 'of', 'a', 'lute', 'are', 'alonethough', 'they', 'quiver', 'with', 'the', 'same', 'musicgive', 'your', 'hearts', 'but', 'not', 'into', 'eachothers', 'keepingfor', 'only', 'the', 'hand', 'of', 'life', 'can', 'containyour', 'heartsand', 'stand', 'together', 'yet', 'not', 'too', 'neartogetherfor', 'the', 'pillars', 'of', 'the', 'temple', 'standapartand', 'the', 'oak', 'tree', 'and', 'the', 'cypress', 'grownot', 'in', 'each', 'others', 'shadowillustration', '', 'and', 'a', 'woman', 'who', 'held', 'a', 'babeagainst', 'her', 'bosom', 'said', 'speak', 'to', 'us', 'ofchildrenand', 'he', 'saidyour', 'children', 'are', 'not', 'your', 'childrenthey', 'are', 'the', 'sons', 'and', 'daughters', 'oflifes', 'longing', 'for', 'itselfthey', 'come', 'through', 'you', 'but', 'not', 'from', 'youand', 'though', 'they', 'are', 'with', 'you', 'yet', 'theybelong', 'not', 'to', 'youyou', 'may', 'give', 'them', 'your', 'love', 'but', 'not', 'yourthoughtsfor', 'they', 'have', 'their', 'own', 'thoughtsyou', 'may', 'house', 'their', 'bodies', 'but', 'not', 'theirsoulsfor', 'their', 'souls', 'dwell', 'in', 'the', 'house', 'oftomorrow', 'which', 'you', 'cannot', 'visit', 'noteven', 'in', 'your', 'dreamsyou', 'may', 'strive', 'to', 'be', 'like', 'them', 'but', 'seeknot', 'to', 'make', 'them', 'like', 'you', 'forlife', 'goes', 'not', 'backward', 'nor', 'tarries', 'withyesterdayyou', 'are', 'the', 'bows', 'from', 'which', 'yourchildren', 'as', 'living', 'arrows', 'are', 'sentforththe', 'archer', 'sees', 'the', 'mark', 'upon', 'the', 'pathof', 'the', 'infinite', 'and', 'he', 'bends', 'you', 'withhis', 'might', 'that', 'his', 'arrows', 'may', 'go', 'swiftand', 'farlet', 'your', 'bending', 'in', 'the', 'archers', 'hand', 'befor', 'gladnessfor', 'even', 'as', 'he', 'loves', 'the', 'arrow', 'thatflies', 'so', 'he', 'loves', 'also', 'the', 'bow', 'that', 'isstable', 'then', 'said', 'a', 'rich', 'man', 'speak', 'to', 'us', 'ofgivingand', 'he', 'answeredyou', 'give', 'but', 'little', 'when', 'you', 'give', 'ofyour', 'possessionsit', 'is', 'when', 'you', 'give', 'of', 'yourself', 'that', 'youtruly', 'givefor', 'what', 'are', 'your', 'possessions', 'but', 'thingsyou', 'keep', 'and', 'guard', 'for', 'fear', 'you', 'may', 'needthem', 'tomorrowand', 'tomorrow', 'what', 'shall', 'tomorrow', 'bringto', 'the', 'overprudent', 'dog', 'burying', 'bonesin', 'the', 'trackless', 'sand', 'as', 'he', 'follows', 'thepilgrims', 'to', 'the', 'holy', 'cityand', 'what', 'is', 'fear', 'of', 'need', 'but', 'needitselfis', 'not', 'dread', 'of', 'thirst', 'when', 'your', 'well', 'isfull', 'the', 'thirst', 'that', 'is', 'unquenchablethere', 'are', 'those', 'who', 'give', 'little', 'of', 'themuch', 'which', 'they', 'haveand', 'they', 'giveit', 'for', 'recognition', 'and', 'their', 'hiddendesire', 'makes', 'their', 'gifts', 'unwholesomeand', 'there', 'are', 'those', 'who', 'have', 'little', 'andgive', 'it', 'allthese', 'are', 'the', 'believers', 'in', 'life', 'andthe', 'bounty', 'of', 'life', 'and', 'their', 'coffer', 'isnever', 'emptythere', 'are', 'those', 'who', 'give', 'with', 'joy', 'andthat', 'joy', 'is', 'their', 'rewardand', 'there', 'are', 'those', 'who', 'give', 'with', 'painand', 'that', 'pain', 'is', 'their', 'baptismand', 'there', 'are', 'those', 'who', 'give', 'and', 'knownot', 'pain', 'in', 'giving', 'nor', 'do', 'they', 'seekjoy', 'nor', 'give', 'with', 'mindfulness', 'ofvirtuethey', 'give', 'as', 'in', 'yonder', 'valley', 'the', 'myrtlebreathes', 'its', 'fragrance', 'into', 'spacethrough', 'the', 'hands', 'of', 'such', 'as', 'these', 'godspeaks', 'and', 'from', 'behind', 'their', 'eyes', 'hesmiles', 'upon', 'the', 'earthillustration', 'it', 'is', 'well', 'to', 'give', 'when', 'asked', 'but', 'itis', 'better', 'to', 'give', 'unasked', 'throughunderstandingand', 'to', 'the', 'openhanded', 'the', 'search', 'forone', 'who', 'shall', 'receive', 'is', 'joy', 'greaterthan', 'givingand', 'is', 'there', 'aught', 'you', 'would', 'withholdall', 'you', 'have', 'shall', 'some', 'day', 'be', 'giventherefore', 'give', 'now', 'that', 'the', 'seasonof', 'giving', 'may', 'be', 'yours', 'and', 'not', 'yourinheritorsyou', 'often', 'say', 'i', 'would', 'give', 'but', 'onlyto', 'the', 'deservingthe', 'trees', 'in', 'your', 'orchard', 'say', 'not', 'sonor', 'the', 'flocks', 'in', 'your', 'pasturethey', 'give', 'that', 'they', 'may', 'live', 'for', 'towithhold', 'is', 'to', 'perishsurely', 'he', 'who', 'is', 'worthy', 'to', 'receive', 'hisdays', 'and', 'his', 'nights', 'is', 'worthy', 'of', 'allelse', 'from', 'youand', 'he', 'who', 'has', 'deserved', 'to', 'drink', 'fromthe', 'ocean', 'of', 'life', 'deserves', 'to', 'fill', 'hiscup', 'from', 'your', 'little', 'streamand', 'what', 'desert', 'greater', 'shall', 'there', 'bethan', 'that', 'which', 'lies', 'in', 'the', 'courageand', 'the', 'confidence', 'nay', 'the', 'charity', 'ofreceivingand', 'who', 'are', 'you', 'that', 'men', 'should', 'rendtheir', 'bosom', 'and', 'unveil', 'their', 'pridethat', 'you', 'may', 'see', 'their', 'worth', 'naked', 'andtheir', 'pride', 'unabashedsee', 'first', 'that', 'you', 'yourself', 'deserve', 'tobe', 'a', 'giver', 'and', 'an', 'instrument', 'of', 'givingfor', 'in', 'truth', 'it', 'is', 'life', 'that', 'gives', 'untolifewhile', 'you', 'who', 'deem', 'yourself', 'agiver', 'are', 'but', 'a', 'witnessand', 'you', 'receiversand', 'you', 'areall', 'receiversassume', 'no', 'weight', 'ofgratitude', 'lest', 'you', 'lay', 'a', 'yoke', 'uponyourself', 'and', 'upon', 'him', 'who', 'givesrather', 'rise', 'together', 'with', 'the', 'giver', 'onhis', 'gifts', 'as', 'on', 'wingsfor', 'to', 'be', 'overmindful', 'of', 'your', 'debt', 'isito', 'doubt', 'his', 'generosity', 'who', 'has', 'thefreehearted', 'earth', 'for', 'mother', 'and', 'godfor', 'fatherillustration', '', 'then', 'an', 'old', 'man', 'a', 'keeper', 'of', 'aninn', 'said', 'speak', 'to', 'us', 'of', 'eating', 'anddrinkingand', 'he', 'saidwould', 'that', 'you', 'could', 'live', 'on', 'thefragrance', 'of', 'the', 'earth', 'and', 'like', 'an', 'airplant', 'be', 'sustained', 'by', 'the', 'lightbut', 'since', 'you', 'must', 'kill', 'to', 'eat', 'and', 'robthe', 'newly', 'born', 'of', 'its', 'mothers', 'milk', 'toquench', 'your', 'thirst', 'let', 'it', 'then', 'be', 'anact', 'of', 'worshipand', 'let', 'your', 'board', 'stand', 'an', 'altar', 'onwhich', 'the', 'pure', 'and', 'the', 'innocent', 'offorest', 'and', 'plain', 'are', 'sacrificed', 'for', 'thatwhich', 'is', 'purer', 'and', 'still', 'more', 'innocentin', 'manwhen', 'you', 'kill', 'a', 'beast', 'say', 'to', 'him', 'in', 'yourheartby', 'the', 'same', 'power', 'that', 'slays', 'you', 'i', 'tooam', 'slain', 'and', 'i', 'too', 'shall', 'be', 'consumedfor', 'the', 'law', 'that', 'delivered', 'you', 'intomy', 'hand', 'shall', 'deliver', 'me', 'into', 'a', 'mightierhandyour', 'blood', 'and', 'my', 'blood', 'is', 'naught', 'butthe', 'sap', 'that', 'feeds', 'the', 'tree', 'of', 'heavenand', 'when', 'you', 'crush', 'an', 'apple', 'with', 'yourteeth', 'say', 'to', 'it', 'in', 'your', 'heartyour', 'seeds', 'shall', 'live', 'in', 'my', 'bodyand', 'the', 'buds', 'of', 'your', 'tomorrow', 'shallblossom', 'in', 'my', 'heartand', 'your', 'fragrance', 'shall', 'be', 'my', 'breathand', 'together', 'we', 'shall', 'rejoice', 'throughall', 'the', 'seasonsand', 'in', 'the', 'autumn', 'when', 'you', 'gatherthe', 'grapes', 'of', 'your', 'vineyards', 'for', 'thewinepress', 'say', 'in', 'your', 'hearti', 'too', 'am', 'a', 'vineyard', 'and', 'my', 'fruit', 'shallbe', 'gathered', 'for', 'the', 'winepressand', 'like', 'new', 'wine', 'i', 'shall', 'be', 'kept', 'ineternal', 'vesselsand', 'in', 'winter', 'when', 'you', 'draw', 'the', 'winelet', 'there', 'be', 'in', 'your', 'heart', 'a', 'songfor', 'each', 'cupand', 'let', 'there', 'be', 'in', 'the', 'song', 'aremembrance', 'for', 'the', 'autumn', 'days', 'and', 'forthe', 'vineyard', 'and', 'for', 'the', 'winepress', 'then', 'a', 'ploughman', 'said', 'speakto', 'us', 'of', 'workand', 'he', 'answered', 'sayingyou', 'work', 'that', 'you', 'may', 'keep', 'pace', 'with', 'theearth', 'and', 'the', 'soul', 'of', 'the', 'earthfor', 'to', 'be', 'idle', 'is', 'to', 'become', 'a', 'strangerunto', 'the', 'seasons', 'and', 'to', 'step', 'out', 'oflifes', 'procession', 'that', 'marches', 'inmajesty', 'and', 'proud', 'submission', 'towards', 'theinfinitewhen', 'you', 'work', 'you', 'are', 'a', 'flute', 'throughwhose', 'heart', 'the', 'whispering', 'of', 'the', 'hoursturns', 'to', 'musicwhich', 'of', 'you', 'would', 'be', 'a', 'reed', 'dumb', 'andsilent', 'when', 'all', 'else', 'sings', 'together', 'inunisonalways', 'you', 'have', 'been', 'told', 'that', 'work', 'is', 'acurse', 'and', 'labour', 'a', 'misfortunebut', 'i', 'say', 'to', 'you', 'that', 'when', 'you', 'work', 'youfulfil', 'a', 'part', 'of', 'earths', 'furthest', 'dreamassigned', 'to', 'you', 'when', 'that', 'dream', 'wasbornand', 'in', 'keeping', 'yourself', 'with', 'labour', 'youare', 'in', 'truth', 'loving', 'lifeand', 'to', 'love', 'life', 'through', 'labour', 'is', 'to', 'beintimate', 'with', 'lifes', 'inmost', 'secretbut', 'if', 'you', 'in', 'your', 'pain', 'call', 'birth', 'anaffliction', 'and', 'the', 'support', 'of', 'the', 'flesha', 'curse', 'written', 'upon', 'your', 'brow', 'then', 'ianswer', 'that', 'naught', 'but', 'the', 'sweat', 'ofyour', 'brow', 'shall', 'wash', 'away', 'that', 'which', 'iswrittenyou', 'have', 'been', 'told', 'also', 'that', 'life', 'isdarkness', 'and', 'in', 'your', 'weariness', 'you', 'echowhat', 'was', 'said', 'by', 'the', 'wearyand', 'i', 'say', 'that', 'life', 'is', 'indeed', 'darknesssave', 'when', 'there', 'is', 'urgeand', 'all', 'urge', 'is', 'blind', 'save', 'when', 'there', 'isknowledgeand', 'all', 'knowledge', 'is', 'vain', 'save', 'whenthere', 'is', 'workand', 'all', 'work', 'is', 'empty', 'save', 'when', 'there', 'isloveand', 'when', 'you', 'work', 'with', 'love', 'you', 'bindyourself', 'to', 'yourself', 'and', 'to', 'oneanother', 'and', 'to', 'godand', 'what', 'is', 'it', 'to', 'work', 'with', 'loveit', 'is', 'to', 'weave', 'the', 'cloth', 'with', 'threadsdrawn', 'from', 'your', 'heart', 'even', 'as', 'if', 'yourbeloved', 'were', 'to', 'wear', 'that', 'clothit', 'is', 'to', 'build', 'a', 'house', 'with', 'affectioneven', 'as', 'if', 'your', 'beloved', 'were', 'to', 'dwell', 'inthat', 'houseit', 'is', 'to', 'sow', 'seeds', 'with', 'tenderness', 'andreap', 'the', 'harvest', 'with', 'joy', 'even', 'as', 'ifyour', 'beloved', 'were', 'to', 'eat', 'the', 'fruitit', 'is', 'to', 'charge', 'all', 'things', 'you', 'fashionwith', 'a', 'breath', 'of', 'your', 'own', 'spiritand', 'to', 'know', 'that', 'all', 'the', 'blessed', 'deadare', 'standing', 'about', 'you', 'and', 'watchingoften', 'have', 'i', 'heard', 'you', 'say', 'as', 'ifspeaking', 'in', 'sleep', 'he', 'who', 'works', 'inmarble', 'and', 'finds', 'the', 'shape', 'of', 'his', 'ownsoul', 'in', 'the', 'stone', 'is', 'nobler', 'than', 'he', 'whoploughs', 'the', 'soil', 'and', 'he', 'who', 'seizesthe', 'rainbow', 'to', 'lay', 'it', 'on', 'a', 'cloth', 'in', 'thelikeness', 'of', 'man', 'is', 'more', 'than', 'he', 'whomakes', 'the', 'sandals', 'for', 'our', 'feetbut', 'i', 'say', 'not', 'in', 'sleep', 'but', 'in', 'theoverwakefulness', 'of', 'noontide', 'that', 'thewind', 'speaks', 'not', 'more', 'sweetly', 'to', 'thegiant', 'oaks', 'than', 'to', 'the', 'least', 'of', 'all', 'theblades', 'of', 'grassand', 'he', 'alone', 'is', 'great', 'who', 'turns', 'thevoice', 'of', 'the', 'wind', 'into', 'a', 'song', 'madesweeter', 'by', 'his', 'own', 'lovingwork', 'is', 'love', 'made', 'visibleand', 'if', 'you', 'cannot', 'work', 'with', 'love', 'butonly', 'with', 'distaste', 'it', 'is', 'better', 'thatyou', 'should', 'leave', 'your', 'work', 'and', 'sit', 'atthe', 'gate', 'of', 'the', 'temple', 'and', 'take', 'alms', 'ofthose', 'who', 'work', 'with', 'joyfor', 'if', 'you', 'bake', 'bread', 'with', 'indifferenceyou', 'bake', 'a', 'bitter', 'bread', 'that', 'feeds', 'buthalf', 'mans', 'hungerand', 'if', 'you', 'grudge', 'the', 'crushing', 'of', 'thegrapes', 'your', 'grudge', 'distils', 'a', 'poison', 'inthe', 'wine', 'and', 'if', 'you', 'sing', 'though', 'asangels', 'and', 'love', 'not', 'the', 'singing', 'youmuffle', 'mans', 'ears', 'to', 'the', 'voices', 'of', 'theday', 'and', 'the', 'voices', 'of', 'the', 'night', 'then', 'a', 'woman', 'said', 'speak', 'to', 'us', 'ofjoy', 'and', 'sorrowand', 'he', 'answeredyour', 'joy', 'is', 'your', 'sorrow', 'unmaskedand', 'the', 'selfsame', 'well', 'from', 'which', 'yourlaughter', 'rises', 'was', 'oftentimes', 'filledwith', 'your', 'tearsand', 'how', 'else', 'can', 'it', 'bethe', 'deeper', 'that', 'sorrow', 'carves', 'into', 'yourbeing', 'the', 'more', 'joy', 'you', 'can', 'containis', 'not', 'the', 'cup', 'that', 'holds', 'your', 'wine', 'thevery', 'cup', 'that', 'was', 'burned', 'in', 'the', 'pottersovenand', 'is', 'not', 'the', 'lute', 'that', 'soothes', 'yourspirit', 'the', 'very', 'wood', 'that', 'was', 'hollowedwith', 'kniveswhen', 'you', 'are', 'joyous', 'look', 'deep', 'into', 'yourheart', 'and', 'you', 'shall', 'find', 'it', 'is', 'onlythat', 'which', 'has', 'given', 'you', 'sorrow', 'that', 'isgiving', 'you', 'joywhen', 'you', 'are', 'sorrowful', 'look', 'again', 'inyour', 'heart', 'and', 'you', 'shall', 'see', 'thatin', 'truth', 'you', 'are', 'weeping', 'for', 'that', 'whichhas', 'been', 'your', 'delightsome', 'of', 'you', 'say', 'joy', 'is', 'greater', 'thansorrow', 'and', 'others', 'say', 'nay', 'sorrow', 'isthe', 'greaterbut', 'i', 'say', 'unto', 'you', 'they', 'areinseparabletogether', 'they', 'come', 'and', 'when', 'one', 'sitsalone', 'with', 'you', 'at', 'your', 'board', 'rememberthat', 'the', 'other', 'is', 'asleep', 'upon', 'your', 'bedverily', 'you', 'are', 'suspended', 'like', 'scalesbetween', 'your', 'sorrow', 'and', 'your', 'joyonly', 'when', 'you', 'are', 'empty', 'are', 'you', 'atstandstill', 'and', 'balancedwhen', 'the', 'treasurekeeper', 'lifts', 'you', 'toweigh', 'his', 'gold', 'and', 'his', 'silver', 'needsmust', 'your', 'joy', 'or', 'your', 'sorrow', 'rise', 'orfall', 'then', 'a', 'mason', 'came', 'forth', 'and', 'saidspeak', 'to', 'us', 'of', 'housesand', 'he', 'answered', 'and', 'saidbuild', 'of', 'your', 'imaginings', 'a', 'bower', 'in', 'thewilderness', 'ere', 'you', 'build', 'a', 'house', 'withinthe', 'city', 'wallsfor', 'even', 'as', 'you', 'have', 'homecomings', 'inyour', 'twilight', 'so', 'has', 'the', 'wanderer', 'inyou', 'the', 'ever', 'distant', 'and', 'aloneyour', 'house', 'is', 'your', 'larger', 'bodyit', 'grows', 'in', 'the', 'sun', 'and', 'sleeps', 'in', 'thestillness', 'of', 'the', 'night', 'and', 'it', 'is', 'notdreamless', 'does', 'not', 'your', 'house', 'dreamand', 'dreaming', 'leave', 'the', 'city', 'for', 'groveor', 'hilltopwould', 'that', 'i', 'could', 'gather', 'your', 'housesinto', 'my', 'hand', 'and', 'like', 'a', 'sower', 'scatterthem', 'in', 'forest', 'and', 'meadowwould', 'the', 'valleys', 'were', 'your', 'streets', 'andthe', 'green', 'paths', 'your', 'alleys', 'that', 'youmight', 'seek', 'one', 'another', 'throughvineyards', 'and', 'come', 'with', 'the', 'fragranceof', 'the', 'earth', 'in', 'your', 'garmentsbut', 'these', 'things', 'are', 'not', 'yet', 'to', 'bein', 'their', 'fear', 'your', 'forefathers', 'gatheredyou', 'too', 'near', 'together', 'and', 'that', 'fearshall', 'endure', 'a', 'little', 'longer', 'a', 'littlelonger', 'shall', 'your', 'city', 'walls', 'separateyour', 'hearths', 'from', 'your', 'fieldsand', 'tell', 'me', 'people', 'of', 'orphalese', 'whathave', 'you', 'in', 'these', 'houses', 'and', 'what', 'is', 'ityou', 'guard', 'with', 'fastened', 'doorshave', 'you', 'peace', 'the', 'quiet', 'urge', 'thatreveals', 'your', 'powerhave', 'you', 'remembrances', 'the', 'glimmeringarches', 'that', 'span', 'the', 'summits', 'of', 'themindhave', 'you', 'beauty', 'that', 'leads', 'the', 'heartfrom', 'things', 'fashioned', 'of', 'wood', 'and', 'stoneto', 'the', 'holy', 'mountaintell', 'me', 'have', 'you', 'these', 'in', 'your', 'housesor', 'have', 'you', 'only', 'comfort', 'and', 'the', 'lustfor', 'comfort', 'that', 'stealthy', 'thing', 'thatenters', 'the', 'house', 'a', 'guest', 'and', 'thenbecomes', 'a', 'host', 'and', 'then', 'a', 'masteray', 'and', 'it', 'becomes', 'a', 'tamer', 'and', 'withhook', 'and', 'scourge', 'makes', 'puppets', 'of', 'yourlarger', 'desiresthough', 'its', 'hands', 'are', 'silken', 'its', 'heartis', 'of', 'ironit', 'lulls', 'you', 'to', 'sleep', 'only', 'to', 'stand', 'byyour', 'bed', 'and', 'jeer', 'at', 'the', 'dignity', 'of', 'thefleshit', 'makes', 'mock', 'of', 'your', 'sound', 'senses', 'andlays', 'them', 'in', 'thistledown', 'like', 'fragilevesselsverily', 'the', 'lust', 'for', 'comfort', 'murdersthe', 'passion', 'of', 'the', 'soul', 'and', 'then', 'walksgrinning', 'in', 'the', 'funeralbut', 'you', 'children', 'of', 'space', 'you', 'restlessin', 'rest', 'you', 'shall', 'not', 'be', 'trapped', 'nortamedyour', 'house', 'shall', 'be', 'not', 'an', 'anchor', 'but', 'amastit', 'shall', 'not', 'be', 'a', 'glistening', 'film', 'thatcovers', 'a', 'wound', 'but', 'an', 'eyelid', 'thatguards', 'the', 'eyeyou', 'shall', 'not', 'fold', 'your', 'wings', 'that', 'youmay', 'pass', 'through', 'doors', 'nor', 'bend', 'yourheads', 'that', 'they', 'strike', 'not', 'against', 'aceiling', 'nor', 'fear', 'to', 'breathe', 'lest', 'wallsshould', 'crack', 'and', 'fall', 'downyou', 'shall', 'not', 'dwell', 'in', 'tombs', 'made', 'by', 'thedead', 'for', 'the', 'livingand', 'though', 'of', 'magnificence', 'andsplendour', 'your', 'house', 'shall', 'not', 'holdyour', 'secret', 'nor', 'shelter', 'your', 'longingfor', 'that', 'which', 'is', 'boundless', 'in', 'youabides', 'in', 'the', 'mansion', 'of', 'the', 'sky', 'whosedoor', 'is', 'the', 'morning', 'mist', 'and', 'whosewindows', 'are', 'the', 'songs', 'and', 'the', 'silencesof', 'night', 'and', 'the', 'weaver', 'said', 'speak', 'to', 'us', 'ofclothesand', 'he', 'answeredyour', 'clothes', 'conceal', 'much', 'of', 'yourbeauty', 'yet', 'they', 'hide', 'not', 'theunbeautifuland', 'though', 'you', 'seek', 'in', 'garments', 'thefreedom', 'of', 'privacy', 'you', 'may', 'find', 'in', 'thema', 'harness', 'and', 'a', 'chainwould', 'that', 'you', 'could', 'meet', 'the', 'sun', 'andthe', 'wind', 'with', 'more', 'of', 'your', 'skin', 'and', 'lessof', 'your', 'raimentfor', 'the', 'breath', 'of', 'life', 'is', 'in', 'thesunlight', 'and', 'the', 'hand', 'of', 'life', 'is', 'in', 'thewindsome', 'of', 'you', 'say', 'it', 'is', 'the', 'north', 'windwho', 'has', 'woven', 'the', 'clothes', 'we', 'wearand', 'i', 'say', 'ay', 'it', 'was', 'the', 'north', 'windbut', 'shame', 'was', 'his', 'loom', 'and', 'thesoftening', 'of', 'the', 'sinews', 'was', 'his', 'threadand', 'when', 'his', 'work', 'was', 'done', 'he', 'laughed', 'inthe', 'forest', 'forget', 'not', 'that', 'modestyis', 'for', 'a', 'shield', 'against', 'the', 'eye', 'of', 'theuncleanand', 'when', 'the', 'unclean', 'shall', 'be', 'no', 'morewhat', 'were', 'modesty', 'but', 'a', 'fetter', 'and', 'afouling', 'of', 'the', 'mindand', 'forget', 'not', 'that', 'the', 'earth', 'delightsto', 'feel', 'your', 'bare', 'feet', 'and', 'the', 'windslong', 'to', 'play', 'with', 'your', 'hair', 'and', 'a', 'merchant', 'said', 'speak', 'to', 'us', 'ofbuying', 'and', 'sellingand', 'he', 'answered', 'and', 'saidto', 'you', 'the', 'earth', 'yields', 'her', 'fruit', 'andyou', 'shall', 'not', 'want', 'if', 'you', 'but', 'know', 'howto', 'fill', 'your', 'handsit', 'is', 'in', 'exchanging', 'the', 'gifts', 'of', 'theearth', 'that', 'you', 'shall', 'find', 'abundance', 'andbe', 'satisfiedyet', 'unless', 'the', 'exchange', 'be', 'in', 'love', 'andkindly', 'justice', 'it', 'will', 'but', 'lead', 'some', 'togreed', 'and', 'others', 'to', 'hungerwhen', 'in', 'the', 'market', 'place', 'you', 'toilers', 'ofthe', 'sea', 'and', 'fields', 'and', 'vineyards', 'meetthe', 'weavers', 'and', 'the', 'potters', 'and', 'thegatherers', 'of', 'spicesinvoke', 'then', 'the', 'master', 'spirit', 'of', 'theearth', 'to', 'come', 'into', 'your', 'midst', 'andsanctify', 'the', 'scales', 'and', 'the', 'reckoningthat', 'weighs', 'value', 'against', 'value', 'andsuffer', 'not', 'the', 'barrenhanded', 'to', 'takepart', 'in', 'your', 'transactions', 'who', 'wouldsell', 'their', 'words', 'for', 'your', 'labourto', 'such', 'men', 'you', 'should', 'saycome', 'with', 'us', 'to', 'the', 'field', 'or', 'go', 'withour', 'brothers', 'to', 'the', 'sea', 'and', 'cast', 'yournetfor', 'the', 'land', 'and', 'the', 'sea', 'shall', 'bebountiful', 'to', 'you', 'even', 'as', 'to', 'usand', 'if', 'there', 'come', 'the', 'singers', 'and', 'thedancers', 'and', 'the', 'flute', 'playersbuy', 'oftheir', 'gifts', 'alsofor', 'they', 'too', 'are', 'gatherers', 'of', 'fruit', 'andfrankincense', 'and', 'that', 'which', 'they', 'bringthough', 'fashioned', 'of', 'dreams', 'is', 'raimentand', 'food', 'for', 'your', 'souland', 'before', 'you', 'leave', 'the', 'market', 'placesee', 'that', 'no', 'one', 'has', 'gone', 'his', 'way', 'withempty', 'handsfor', 'the', 'master', 'spirit', 'of', 'the', 'earth', 'shallnot', 'sleep', 'peacefully', 'upon', 'the', 'windtill', 'the', 'needs', 'of', 'the', 'least', 'of', 'you', 'aresatisfied', 'then', 'one', 'of', 'the', 'judges', 'of', 'the', 'citystood', 'forth', 'and', 'said', 'speak', 'to', 'us', 'ofcrime', 'and', 'punishmentand', 'he', 'answered', 'sayingit', 'is', 'when', 'your', 'spirit', 'goes', 'wanderingupon', 'the', 'windthat', 'you', 'alone', 'and', 'unguarded', 'commita', 'wrong', 'unto', 'others', 'and', 'therefore', 'untoyourselfand', 'for', 'that', 'wrong', 'committed', 'must', 'youknock', 'and', 'wait', 'a', 'while', 'unheeded', 'at', 'thegate', 'of', 'the', 'blessedlike', 'the', 'ocean', 'is', 'your', 'godselfit', 'remains', 'for', 'ever', 'undefiledand', 'like', 'the', 'ether', 'it', 'lifts', 'but', 'thewingedeven', 'like', 'the', 'sun', 'is', 'your', 'godselfit', 'knows', 'not', 'the', 'ways', 'of', 'the', 'mole', 'norseeks', 'it', 'the', 'holes', 'of', 'the', 'serpentbut', 'your', 'godself', 'dwells', 'not', 'alonein', 'your', 'beingmuch', 'in', 'you', 'is', 'still', 'man', 'and', 'much', 'inyou', 'is', 'not', 'yet', 'manbut', 'a', 'shapeless', 'pigmy', 'that', 'walks', 'asleepin', 'the', 'mist', 'searching', 'for', 'its', 'ownawakeningand', 'of', 'the', 'man', 'in', 'you', 'would', 'i', 'now', 'speakfor', 'it', 'is', 'he', 'and', 'not', 'your', 'godself', 'northe', 'pigmy', 'in', 'the', 'mist', 'that', 'knows', 'crimeand', 'the', 'punishment', 'of', 'crimeoftentimes', 'have', 'i', 'heard', 'you', 'speak', 'of', 'onewho', 'commits', 'a', 'wrong', 'as', 'though', 'he', 'werenot', 'one', 'of', 'you', 'but', 'a', 'stranger', 'unto', 'youand', 'an', 'intruder', 'upon', 'your', 'worldbut', 'i', 'say', 'that', 'even', 'as', 'the', 'holy', 'and', 'therighteous', 'cannot', 'rise', 'beyond', 'the', 'highestwhich', 'is', 'in', 'each', 'one', 'of', 'youso', 'the', 'wicked', 'and', 'the', 'weak', 'cannot', 'falllower', 'than', 'the', 'lowest', 'which', 'is', 'in', 'youalsoand', 'as', 'a', 'single', 'leaf', 'turns', 'not', 'yellowbut', 'with', 'the', 'silent', 'knowledge', 'of', 'thewhole', 'tree', 'so', 'the', 'wrongdoer', 'cannotdo', 'wrong', 'without', 'the', 'hidden', 'will', 'of', 'youalllike', 'a', 'procession', 'you', 'walk', 'togethertowards', 'your', 'godselfillustration', 'you', 'are', 'the', 'way', 'and', 'the', 'wayfarersand', 'when', 'one', 'of', 'you', 'falls', 'down', 'he', 'fallsfor', 'those', 'behind', 'him', 'a', 'caution', 'againstthe', 'stumbling', 'stoneay', 'and', 'he', 'falls', 'for', 'those', 'ahead', 'of', 'himwho', 'though', 'faster', 'and', 'surer', 'of', 'foot', 'yetremoved', 'not', 'the', 'stumbling', 'stoneand', 'this', 'also', 'though', 'the', 'word', 'lie', 'heavyupon', 'your', 'heartsthe', 'murdered', 'is', 'not', 'unaccountable', 'forhis', 'own', 'murderand', 'the', 'robbed', 'is', 'not', 'blameless', 'in', 'beingrobbedthe', 'righteous', 'is', 'not', 'innocent', 'of', 'thedeeds', 'of', 'the', 'wickedand', 'the', 'whitehanded', 'is', 'not', 'clean', 'in', 'thedoings', 'of', 'the', 'felonyea', 'the', 'guilty', 'is', 'oftentimes', 'the', 'victimof', 'the', 'injuredand', 'still', 'more', 'often', 'the', 'condemned', 'isthe', 'burden', 'bearer', 'for', 'the', 'guiltlessand', 'unblamedyou', 'cannot', 'separate', 'the', 'just', 'from', 'theunjust', 'and', 'the', 'good', 'from', 'the', 'wickedfor', 'they', 'stand', 'together', 'before', 'the', 'faceof', 'the', 'sun', 'even', 'as', 'the', 'black', 'thread', 'andthe', 'white', 'are', 'woven', 'togetherand', 'when', 'the', 'black', 'thread', 'breaks', 'theweaver', 'shall', 'look', 'into', 'the', 'whole', 'clothand', 'he', 'shall', 'examine', 'the', 'loom', 'alsoif', 'any', 'of', 'you', 'would', 'bring', 'to', 'judgmentthe', 'unfaithful', 'wifelet', 'him', 'also', 'weigh', 'the', 'heart', 'of', 'herhusband', 'in', 'scales', 'and', 'measure', 'his', 'soulwith', 'measurementsand', 'let', 'him', 'who', 'would', 'lash', 'the', 'offenderlook', 'unto', 'the', 'spirit', 'of', 'the', 'offendedand', 'if', 'any', 'of', 'you', 'would', 'punish', 'in', 'thename', 'of', 'righteousness', 'and', 'lay', 'the', 'axunto', 'the', 'evil', 'tree', 'let', 'him', 'see', 'to', 'itsrootsand', 'verily', 'he', 'will', 'find', 'the', 'roots', 'of', 'thegood', 'and', 'the', 'bad', 'the', 'fruitful', 'and', 'thefruitless', 'all', 'entwined', 'together', 'inthe', 'silent', 'heart', 'of', 'the', 'earthand', 'you', 'judges', 'who', 'would', 'be', 'justwhat', 'judgment', 'pronounce', 'you', 'upon', 'himwho', 'though', 'honest', 'in', 'the', 'flesh', 'yet', 'is', 'athief', 'in', 'spiritwhat', 'penalty', 'lay', 'you', 'upon', 'him', 'who', 'slaysin', 'the', 'flesh', 'yet', 'is', 'himself', 'slain', 'in', 'thespiritand', 'how', 'prosecute', 'you', 'him', 'who', 'in', 'actionis', 'a', 'deceiver', 'and', 'an', 'oppressoryet', 'who', 'also', 'is', 'aggrieved', 'and', 'outragedand', 'how', 'shall', 'you', 'punish', 'those', 'whoseremorse', 'is', 'already', 'greater', 'than', 'theirmisdeedsis', 'not', 'remorse', 'the', 'justice', 'which', 'isadministered', 'by', 'that', 'very', 'law', 'which', 'youwould', 'fain', 'serveyet', 'you', 'cannot', 'lay', 'remorse', 'upon', 'theinnocent', 'nor', 'lift', 'it', 'from', 'the', 'heart', 'ofthe', 'guiltyunbidden', 'shall', 'it', 'call', 'in', 'the', 'nightthat', 'men', 'may', 'wake', 'and', 'gaze', 'uponthemselves', 'and', 'you', 'who', 'wouldunderstand', 'justice', 'how', 'shall', 'you', 'unlessyou', 'look', 'upon', 'all', 'deeds', 'in', 'the', 'fullnessof', 'lightonly', 'then', 'shall', 'you', 'know', 'that', 'the', 'erectand', 'the', 'fallen', 'are', 'but', 'one', 'man', 'standingin', 'twilight', 'between', 'the', 'night', 'of', 'hispigmyself', 'and', 'the', 'day', 'of', 'his', 'godselfand', 'that', 'the', 'cornerstone', 'of', 'the', 'templeis', 'not', 'higher', 'than', 'the', 'lowest', 'stone', 'inits', 'foundation', 'then', 'a', 'lawyer', 'said', 'but', 'what', 'of', 'ourlaws', 'masterand', 'he', 'answeredyou', 'delight', 'in', 'laying', 'down', 'lawsyet', 'you', 'delight', 'more', 'in', 'breaking', 'themlike', 'children', 'playing', 'by', 'the', 'ocean', 'whobuild', 'sandtowers', 'with', 'constancy', 'andthen', 'destroy', 'them', 'with', 'laughterbut', 'while', 'you', 'build', 'your', 'sandtowers', 'theocean', 'brings', 'more', 'sand', 'to', 'the', 'shoreand', 'when', 'you', 'destroy', 'them', 'the', 'oceanlaughs', 'with', 'youverily', 'the', 'ocean', 'laughs', 'always', 'with', 'theinnocentbut', 'what', 'of', 'those', 'to', 'whom', 'life', 'is', 'notan', 'ocean', 'and', 'manmade', 'laws', 'are', 'notsandtowersbut', 'to', 'whom', 'life', 'is', 'a', 'rock', 'and', 'the', 'lawa', 'chisel', 'with', 'which', 'they', 'would', 'carve', 'itin', 'their', 'own', 'likeness', 'what', 'of', 'thecripple', 'who', 'hates', 'dancerswhat', 'of', 'the', 'ox', 'who', 'loves', 'his', 'yoke', 'anddeems', 'the', 'elk', 'and', 'deer', 'of', 'the', 'foreststray', 'and', 'vagrant', 'thingswhat', 'of', 'the', 'old', 'serpent', 'who', 'cannot', 'shedhis', 'skin', 'and', 'calls', 'all', 'others', 'naked', 'andshamelessand', 'of', 'him', 'who', 'comes', 'early', 'to', 'theweddingfeast', 'and', 'when', 'overfed', 'andtired', 'goes', 'his', 'way', 'saying', 'that', 'allfeasts', 'are', 'violation', 'and', 'all', 'feasterslawbreakerswhat', 'shall', 'i', 'say', 'of', 'these', 'save', 'thatthey', 'too', 'stand', 'in', 'the', 'sunlight', 'but', 'withtheir', 'backs', 'to', 'the', 'sunthey', 'see', 'only', 'their', 'shadows', 'and', 'theirshadows', 'are', 'their', 'lawsand', 'what', 'is', 'the', 'sun', 'to', 'them', 'but', 'a', 'casterof', 'shadowsand', 'what', 'is', 'it', 'to', 'acknowledge', 'thelaws', 'but', 'to', 'stoop', 'down', 'and', 'trace', 'theirshadows', 'upon', 'the', 'earthbut', 'you', 'who', 'walk', 'facing', 'the', 'sun', 'whatimages', 'drawn', 'on', 'the', 'earth', 'can', 'holdyouyou', 'who', 'travel', 'with', 'the', 'wind', 'whatweathervane', 'shall', 'direct', 'your', 'coursewhat', 'mans', 'law', 'shall', 'bind', 'you', 'if', 'youbreak', 'your', 'yoke', 'but', 'upon', 'no', 'mans', 'prisondoorwhat', 'laws', 'shall', 'you', 'fear', 'if', 'you', 'dancebut', 'stumble', 'against', 'no', 'mans', 'ironchainsand', 'who', 'is', 'he', 'that', 'shall', 'bring', 'you', 'tojudgment', 'if', 'you', 'tear', 'off', 'your', 'garmentyet', 'leave', 'it', 'in', 'no', 'mans', 'pathpeople', 'of', 'orphalese', 'you', 'can', 'muffle', 'thedrum', 'and', 'you', 'can', 'loosen', 'the', 'stringsof', 'the', 'lyre', 'but', 'who', 'shall', 'command', 'theskylark', 'not', 'to', 'sing', 'and', 'an', 'orator', 'said', 'speak', 'to', 'us', 'offreedomand', 'he', 'answeredat', 'the', 'city', 'gate', 'and', 'by', 'your', 'firesidei', 'have', 'seen', 'you', 'prostrate', 'yourself', 'andworship', 'your', 'own', 'freedomeven', 'as', 'slaves', 'humble', 'themselves', 'beforea', 'tyrant', 'and', 'praise', 'him', 'though', 'he', 'slaysthemay', 'in', 'the', 'grove', 'of', 'the', 'temple', 'and', 'inthe', 'shadow', 'of', 'the', 'citadel', 'i', 'have', 'seenthe', 'freest', 'among', 'you', 'wear', 'their', 'freedomas', 'a', 'yoke', 'and', 'a', 'handcuffand', 'my', 'heart', 'bled', 'within', 'me', 'for', 'youcan', 'only', 'be', 'free', 'when', 'even', 'the', 'desireof', 'seeking', 'freedom', 'becomes', 'a', 'harnessto', 'you', 'and', 'when', 'you', 'cease', 'to', 'speak', 'offreedom', 'as', 'a', 'goal', 'and', 'a', 'fulfilmentyou', 'shall', 'be', 'free', 'indeed', 'when', 'yourdays', 'are', 'not', 'without', 'a', 'care', 'nor', 'yournights', 'without', 'a', 'want', 'and', 'a', 'griefbut', 'rather', 'when', 'these', 'things', 'girdle', 'yourlife', 'and', 'yet', 'you', 'rise', 'above', 'them', 'nakedand', 'unboundand', 'how', 'shall', 'you', 'rise', 'beyond', 'your', 'daysand', 'nights', 'unless', 'you', 'break', 'thechains', 'which', 'you', 'at', 'the', 'dawn', 'of', 'yourunderstanding', 'have', 'fastened', 'around', 'yournoon', 'hourin', 'truth', 'that', 'which', 'you', 'call', 'freedom', 'isthe', 'strongest', 'of', 'these', 'chains', 'thoughits', 'links', 'glitter', 'in', 'the', 'sun', 'and', 'dazzleyour', 'eyesand', 'what', 'is', 'it', 'but', 'fragments', 'of', 'yourown', 'self', 'you', 'would', 'discard', 'that', 'you', 'maybecome', 'freeif', 'it', 'is', 'an', 'unjust', 'law', 'you', 'wouldabolish', 'that', 'law', 'was', 'written', 'with', 'yourown', 'hand', 'upon', 'your', 'own', 'foreheadyou', 'cannot', 'erase', 'it', 'by', 'burning', 'your', 'lawbooks', 'nor', 'by', 'washing', 'the', 'foreheads', 'ofyour', 'judges', 'though', 'you', 'pour', 'the', 'seaupon', 'themand', 'if', 'it', 'is', 'a', 'despot', 'you', 'woulddethrone', 'see', 'first', 'that', 'his', 'throneerected', 'within', 'you', 'is', 'destroyedfor', 'how', 'can', 'a', 'tyrant', 'rule', 'the', 'free', 'andthe', 'proud', 'but', 'for', 'a', 'tyranny', 'in', 'theirown', 'freedom', 'and', 'a', 'shame', 'in', 'their', 'ownprideand', 'if', 'it', 'is', 'a', 'care', 'you', 'would', 'cast', 'offthat', 'cart', 'has', 'been', 'chosen', 'by', 'you', 'ratherthan', 'imposed', 'upon', 'youand', 'if', 'it', 'is', 'a', 'fear', 'you', 'would', 'dispelthe', 'seat', 'of', 'that', 'fear', 'is', 'in', 'your', 'heartand', 'not', 'in', 'the', 'hand', 'of', 'the', 'fearedverily', 'all', 'things', 'move', 'within', 'your', 'beingin', 'constant', 'half', 'embrace', 'the', 'desiredand', 'the', 'dreaded', 'the', 'repugnant', 'and', 'thecherished', 'the', 'pursued', 'and', 'that', 'whichyou', 'would', 'escapethese', 'things', 'move', 'within', 'you', 'as', 'lightsand', 'shadows', 'in', 'pairs', 'that', 'clingand', 'when', 'the', 'shadow', 'fades', 'and', 'is', 'nomore', 'the', 'light', 'that', 'lingers', 'becomes', 'ashadow', 'to', 'another', 'lightand', 'thus', 'your', 'freedom', 'when', 'it', 'loses', 'itsfetters', 'becomes', 'itself', 'the', 'fetter', 'of', 'agreater', 'freedom', 'and', 'the', 'priestess', 'spoke', 'againand', 'said', 'speak', 'to', 'us', 'of', 'reason', 'andpassionand', 'he', 'answered', 'sayingyour', 'soul', 'is', 'oftentimes', 'a', 'battlefieldupon', 'which', 'your', 'reason', 'and', 'your', 'judgmentwage', 'war', 'against', 'your', 'passion', 'and', 'yourappetitewould', 'that', 'i', 'could', 'be', 'the', 'peacemaker', 'inyour', 'soul', 'that', 'i', 'might', 'turn', 'the', 'discordand', 'the', 'rivalry', 'of', 'your', 'elements', 'intooneness', 'and', 'melodybut', 'how', 'shall', 'i', 'unless', 'you', 'yourselvesbe', 'also', 'the', 'peacemakers', 'nay', 'the', 'loversof', 'all', 'your', 'elementsyour', 'reason', 'and', 'your', 'passion', 'are', 'therudder', 'and', 'the', 'sails', 'of', 'your', 'seafaringsoulif', 'either', 'your', 'sails', 'or', 'your', 'rudder', 'bebroken', 'you', 'can', 'but', 'toss', 'and', 'driftor', 'else', 'be', 'held', 'at', 'a', 'standstill', 'inmidseas', 'for', 'reason', 'ruling', 'aloneis', 'a', 'force', 'confining', 'and', 'passionunattended', 'is', 'a', 'flame', 'that', 'burns', 'to', 'itsown', 'destructiontherefore', 'let', 'your', 'soul', 'exalt', 'yourreason', 'to', 'the', 'height', 'of', 'passion', 'that', 'itmay', 'singand', 'let', 'it', 'direct', 'your', 'passion', 'withreason', 'that', 'your', 'passion', 'may', 'livethrough', 'its', 'own', 'daily', 'resurrectionand', 'like', 'the', 'phoenix', 'rise', 'above', 'its', 'ownashesi', 'would', 'have', 'you', 'consider', 'your', 'judgmentand', 'your', 'appetite', 'even', 'as', 'you', 'would', 'twoloved', 'guests', 'in', 'your', 'housesurely', 'you', 'would', 'not', 'honour', 'one', 'guestabove', 'the', 'other', 'for', 'he', 'who', 'is', 'moremindful', 'of', 'one', 'loses', 'the', 'love', 'and', 'thefaith', 'of', 'bothamong', 'the', 'hills', 'when', 'you', 'sit', 'in', 'thecool', 'shade', 'of', 'the', 'white', 'poplars', 'sharingthe', 'peace', 'and', 'serenity', 'of', 'distant', 'fieldsand', 'meadowsthen', 'let', 'your', 'heart', 'say', 'insilence', 'god', 'rests', 'in', 'reasonand', 'when', 'the', 'storm', 'comes', 'and', 'themighty', 'wind', 'shakes', 'the', 'forestand', 'thunder', 'and', 'lightning', 'proclaim', 'themajesty', 'of', 'the', 'skythen', 'let', 'your', 'heartsay', 'in', 'awe', 'god', 'moves', 'in', 'passionand', 'since', 'you', 'are', 'a', 'breath', 'in', 'godssphere', 'and', 'a', 'leaf', 'in', 'gods', 'forest', 'youtoo', 'should', 'rest', 'in', 'reason', 'and', 'move', 'inpassion', 'and', 'a', 'woman', 'spoke', 'saying', 'tell', 'usof', 'painand', 'he', 'saidyour', 'pain', 'is', 'the', 'breaking', 'of', 'the', 'shellthat', 'encloses', 'your', 'understandingeven', 'as', 'the', 'stone', 'of', 'the', 'fruit', 'mustbreak', 'that', 'its', 'heart', 'may', 'stand', 'in', 'thesun', 'so', 'must', 'you', 'know', 'painand', 'could', 'you', 'keep', 'your', 'heart', 'in', 'wonderat', 'the', 'daily', 'miracles', 'of', 'your', 'life', 'yourpain', 'would', 'not', 'seem', 'less', 'wondrous', 'thanyour', 'joyand', 'you', 'would', 'accept', 'the', 'seasons', 'of', 'yourheart', 'even', 'as', 'you', 'have', 'always', 'acceptedthe', 'seasons', 'that', 'pass', 'over', 'your', 'fieldsand', 'you', 'would', 'watch', 'with', 'serenitythrough', 'the', 'winters', 'of', 'your', 'griefmuch', 'of', 'your', 'pain', 'is', 'selfchosenit', 'is', 'the', 'bitter', 'potion', 'by', 'which', 'thephysician', 'within', 'you', 'heals', 'your', 'sickselftherefore', 'trust', 'the', 'physician', 'and', 'drinkhis', 'remedy', 'in', 'silence', 'and', 'tranquillityfor', 'his', 'hand', 'though', 'heavy', 'and', 'hard', 'isguided', 'by', 'the', 'tender', 'hand', 'of', 'the', 'unseenand', 'the', 'cup', 'he', 'brings', 'though', 'it', 'burnyour', 'lips', 'has', 'been', 'fashioned', 'of', 'theclay', 'which', 'the', 'potter', 'has', 'moistened', 'withhis', 'own', 'sacred', 'tears', 'and', 'a', 'man', 'said', 'speak', 'to', 'us', 'ofselfknowledgeand', 'he', 'answered', 'sayingyour', 'hearts', 'know', 'in', 'silence', 'the', 'secretsof', 'the', 'days', 'and', 'the', 'nightsbut', 'your', 'ears', 'thirst', 'for', 'the', 'sound', 'ofyour', 'hearts', 'knowledgeyou', 'would', 'know', 'in', 'words', 'that', 'which', 'youhave', 'always', 'known', 'in', 'thoughtyou', 'would', 'touch', 'with', 'your', 'fingers', 'thenaked', 'body', 'of', 'your', 'dreamsand', 'it', 'is', 'well', 'you', 'shouldthe', 'hidden', 'wellspring', 'of', 'your', 'soul', 'mustneeds', 'rise', 'and', 'run', 'murmuring', 'to', 'the', 'seaand', 'the', 'treasure', 'of', 'your', 'infinite', 'depthswould', 'be', 'revealed', 'to', 'your', 'eyesbut', 'let', 'there', 'be', 'no', 'scales', 'to', 'weigh', 'yourunknown', 'treasureand', 'seek', 'not', 'the', 'depths', 'of', 'yourknowledge', 'with', 'staff', 'or', 'soundinglinefor', 'self', 'is', 'a', 'sea', 'boundless', 'andmeasurelesssay', 'not', 'i', 'have', 'found', 'the', 'truth', 'butrather', 'i', 'have', 'found', 'a', 'truthsay', 'not', 'i', 'have', 'found', 'the', 'path', 'of', 'thesoul', 'say', 'rather', 'i', 'have', 'met', 'the', 'soulwalking', 'upon', 'my', 'pathfor', 'the', 'soul', 'walks', 'upon', 'all', 'pathsthe', 'soul', 'walks', 'not', 'upon', 'a', 'line', 'neitherdoes', 'it', 'grow', 'like', 'a', 'reedthe', 'soul', 'unfolds', 'itself', 'like', 'a', 'lotus', 'ofcountless', 'petalsillustration', '', 'then', 'said', 'a', 'teacher', 'speak', 'to', 'us', 'ofteachingand', 'he', 'saidno', 'man', 'can', 'reveal', 'to', 'you', 'aught', 'but', 'thatwhich', 'already', 'lies', 'half', 'asleep', 'in', 'thedawning', 'of', 'your', 'knowledgethe', 'teacher', 'who', 'walks', 'in', 'the', 'shadow', 'ofthe', 'temple', 'among', 'his', 'followers', 'givesnot', 'of', 'his', 'wisdom', 'but', 'rather', 'of', 'hisfaith', 'and', 'his', 'lovingnessif', 'he', 'is', 'indeed', 'wise', 'he', 'does', 'not', 'bidyou', 'enter', 'the', 'house', 'of', 'his', 'wisdom', 'butrather', 'leads', 'you', 'to', 'the', 'threshold', 'ofyour', 'own', 'mindthe', 'astronomer', 'may', 'speak', 'to', 'you', 'of', 'hisunderstanding', 'of', 'space', 'but', 'he', 'cannotgive', 'you', 'his', 'understandingthe', 'musician', 'may', 'sing', 'to', 'you', 'of', 'therhythm', 'which', 'is', 'in', 'all', 'space', 'but', 'hecannot', 'give', 'you', 'the', 'ear', 'which', 'arreststhe', 'rhythm', 'nor', 'the', 'voice', 'that', 'echoes', 'itand', 'he', 'who', 'is', 'versed', 'in', 'the', 'scienceof', 'numbers', 'can', 'tell', 'of', 'the', 'regionsof', 'weight', 'and', 'measure', 'but', 'he', 'cannotconduct', 'you', 'thitherfor', 'the', 'vision', 'of', 'one', 'man', 'lends', 'not', 'itswings', 'to', 'another', 'manand', 'even', 'as', 'each', 'one', 'of', 'you', 'stands', 'alonein', 'gods', 'knowledge', 'so', 'must', 'each', 'one', 'ofyou', 'be', 'alone', 'in', 'his', 'knowledge', 'of', 'god', 'andin', 'his', 'understanding', 'of', 'the', 'earth', 'and', 'a', 'youth', 'said', 'speak', 'to', 'us', 'offriendshipand', 'he', 'answered', 'sayingyour', 'friend', 'is', 'your', 'needs', 'answeredhe', 'is', 'your', 'field', 'which', 'you', 'sow', 'with', 'loveand', 'reap', 'with', 'thanksgivingand', 'he', 'is', 'your', 'board', 'and', 'your', 'firesidefor', 'you', 'come', 'to', 'him', 'with', 'your', 'hungerand', 'you', 'seek', 'him', 'for', 'peacewhen', 'your', 'friend', 'speaks', 'his', 'mind', 'youfear', 'not', 'the', 'nay', 'in', 'your', 'own', 'mind', 'nordo', 'you', 'withhold', 'the', 'ayand', 'when', 'he', 'is', 'silent', 'your', 'heart', 'ceasesnot', 'to', 'listen', 'to', 'his', 'heartfor', 'without', 'words', 'in', 'friendship', 'allthoughts', 'all', 'desires', 'all', 'expectationsare', 'born', 'and', 'shared', 'with', 'joy', 'that', 'isunacclaimedwhen', 'you', 'part', 'from', 'your', 'friend', 'yougrieve', 'notfor', 'that', 'which', 'you', 'love', 'most', 'in', 'himmay', 'be', 'clearer', 'in', 'his', 'absence', 'as', 'themountain', 'to', 'the', 'climber', 'is', 'clearerfrom', 'the', 'plain', 'and', 'let', 'there', 'be', 'nopurpose', 'in', 'friendship', 'save', 'the', 'deepeningof', 'the', 'spiritfor', 'love', 'that', 'seeks', 'aught', 'but', 'thedisclosure', 'of', 'its', 'own', 'mystery', 'is', 'notlove', 'but', 'a', 'net', 'cast', 'forth', 'and', 'only', 'theunprofitable', 'is', 'caughtand', 'let', 'your', 'best', 'be', 'for', 'your', 'friendif', 'he', 'must', 'know', 'the', 'ebb', 'of', 'your', 'tidelet', 'him', 'know', 'its', 'flood', 'alsofor', 'what', 'is', 'your', 'friend', 'that', 'you', 'shouldseek', 'him', 'with', 'hours', 'to', 'killseek', 'him', 'always', 'with', 'hours', 'to', 'livefor', 'it', 'is', 'his', 'to', 'fill', 'your', 'need', 'but', 'notyour', 'emptinessand', 'in', 'the', 'sweetness', 'of', 'friendshiplet', 'there', 'be', 'laughter', 'and', 'sharing', 'ofpleasuresfor', 'in', 'the', 'dew', 'of', 'little', 'thingsthe', 'heart', 'finds', 'its', 'morning', 'and', 'isrefreshed', 'and', 'then', 'a', 'scholar', 'said', 'speak', 'oftalkingand', 'he', 'answered', 'sayingyou', 'talk', 'when', 'you', 'cease', 'to', 'be', 'at', 'peacewith', 'your', 'thoughtsand', 'when', 'you', 'can', 'no', 'longer', 'dwell', 'in', 'thesolitude', 'of', 'your', 'heart', 'you', 'live', 'in', 'yourlips', 'and', 'sound', 'is', 'a', 'diversion', 'and', 'apastimeand', 'in', 'much', 'of', 'your', 'talking', 'thinking', 'ishalf', 'murderedfor', 'thought', 'is', 'a', 'bird', 'of', 'space', 'that', 'ina', 'cage', 'of', 'words', 'may', 'indeed', 'unfold', 'itswings', 'but', 'cannot', 'flythere', 'are', 'those', 'among', 'you', 'who', 'seek', 'thetalkative', 'through', 'fear', 'of', 'being', 'alonethe', 'silence', 'of', 'aloneness', 'reveals', 'totheir', 'eyes', 'their', 'naked', 'selves', 'and', 'theywould', 'escapeand', 'there', 'are', 'those', 'who', 'talk', 'andwithout', 'knowledge', 'or', 'forethought', 'reveala', 'truth', 'which', 'they', 'themselves', 'do', 'notunderstandand', 'there', 'are', 'those', 'who', 'have', 'the', 'truthwithin', 'them', 'but', 'they', 'tell', 'it', 'not', 'inwordsin', 'the', 'bosom', 'of', 'such', 'as', 'these', 'the', 'spiritdwells', 'in', 'rhythmic', 'silencewhen', 'you', 'meet', 'your', 'friend', 'on', 'theroadside', 'or', 'in', 'the', 'market', 'place', 'let', 'thespirit', 'in', 'you', 'move', 'your', 'lips', 'and', 'directyour', 'tonguelet', 'the', 'voice', 'within', 'your', 'voice', 'speak', 'tothe', 'ear', 'of', 'his', 'earfor', 'his', 'soul', 'will', 'keep', 'the', 'truth', 'ofyour', 'heart', 'as', 'the', 'taste', 'of', 'the', 'wine', 'isrememberedwhen', 'the', 'colour', 'is', 'forgotten', 'and', 'thevessel', 'is', 'no', 'more', 'and', 'an', 'astronomer', 'said', 'master', 'whatof', 'timeand', 'he', 'answeredyou', 'would', 'measure', 'time', 'the', 'measurelessand', 'the', 'immeasurableyou', 'would', 'adjust', 'your', 'conduct', 'andeven', 'direct', 'the', 'course', 'of', 'your', 'spiritaccording', 'to', 'hours', 'and', 'seasonsof', 'time', 'you', 'would', 'make', 'a', 'stream', 'uponwhose', 'bank', 'you', 'would', 'sit', 'and', 'watch', 'itsflowingyet', 'the', 'timeless', 'in', 'you', 'is', 'aware', 'oflifes', 'timelessnessand', 'knows', 'that', 'yesterday', 'is', 'but', 'todaysmemory', 'and', 'tomorrow', 'is', 'todays', 'dreamand', 'that', 'that', 'which', 'sings', 'andcontemplates', 'in', 'you', 'is', 'still', 'dwellingwithin', 'the', 'bounds', 'of', 'that', 'first', 'momentwhich', 'scattered', 'the', 'stars', 'into', 'spacewho', 'among', 'you', 'does', 'not', 'feel', 'that', 'hispower', 'to', 'love', 'is', 'boundlessand', 'yet', 'who', 'does', 'not', 'feel', 'that', 'verylove', 'though', 'boundless', 'encompassedwithin', 'the', 'centre', 'of', 'his', 'being', 'andmoving', 'not', 'from', 'love', 'thought', 'to', 'lovethought', 'nor', 'from', 'love', 'deeds', 'to', 'otherlove', 'deedsand', 'is', 'not', 'time', 'even', 'as', 'love', 'isundivided', 'and', 'pacelessbut', 'if', 'in', 'your', 'thought', 'you', 'must', 'measuretime', 'into', 'seasons', 'let', 'each', 'seasonencircle', 'all', 'the', 'other', 'seasonsand', 'let', 'today', 'embrace', 'the', 'past', 'withremembrance', 'and', 'the', 'future', 'with', 'longing', 'and', 'one', 'of', 'the', 'elders', 'of', 'the', 'citysaid', 'speak', 'to', 'us', 'of', 'good', 'and', 'eviland', 'he', 'answeredof', 'the', 'good', 'in', 'you', 'i', 'can', 'speak', 'but', 'notof', 'the', 'evilfor', 'what', 'is', 'evil', 'but', 'good', 'tortured', 'byits', 'own', 'hunger', 'and', 'thirstverily', 'when', 'good', 'is', 'hungry', 'it', 'seeks', 'foodeven', 'in', 'dark', 'caves', 'and', 'when', 'it', 'thirstsit', 'drinks', 'even', 'of', 'dead', 'watersyou', 'are', 'good', 'when', 'you', 'are', 'one', 'withyourselfyet', 'when', 'you', 'are', 'not', 'one', 'with', 'yourselfyou', 'are', 'not', 'evilfor', 'a', 'divided', 'house', 'is', 'not', 'a', 'den', 'ofthieves', 'it', 'is', 'only', 'a', 'divided', 'houseand', 'a', 'ship', 'without', 'rudder', 'may', 'wanderaimlessly', 'among', 'perilous', 'isles', 'yet', 'sinknot', 'to', 'the', 'bottom', 'you', 'are', 'good', 'whenyou', 'strive', 'to', 'give', 'of', 'yourselfyet', 'you', 'are', 'not', 'evil', 'when', 'you', 'seek', 'gainfor', 'yourselffor', 'when', 'you', 'strive', 'for', 'gain', 'you', 'arebut', 'a', 'root', 'that', 'clings', 'to', 'the', 'earth', 'andsucks', 'at', 'her', 'breastsurely', 'the', 'fruit', 'cannot', 'say', 'to', 'the', 'rootbe', 'like', 'me', 'ripe', 'and', 'full', 'and', 'evergiving', 'of', 'your', 'abundancefor', 'to', 'the', 'fruit', 'giving', 'is', 'a', 'need', 'asreceiving', 'is', 'a', 'need', 'to', 'the', 'rootyou', 'are', 'good', 'when', 'you', 'are', 'fully', 'awake', 'inyour', 'speechyet', 'you', 'are', 'not', 'evil', 'when', 'you', 'sleepwhile', 'your', 'tongue', 'staggers', 'withoutpurposeand', 'even', 'stumbling', 'speech', 'may', 'strengthena', 'weak', 'tongueyou', 'are', 'good', 'when', 'you', 'walk', 'to', 'your', 'goalfirmly', 'and', 'with', 'bold', 'stepsyet', 'you', 'are', 'not', 'evil', 'when', 'you', 'go', 'thitherlimping', 'even', 'those', 'who', 'limp', 'go', 'notbackwardbut', 'you', 'who', 'are', 'strong', 'and', 'swift', 'seethat', 'you', 'do', 'not', 'limp', 'before', 'the', 'lamedeeming', 'it', 'kindnessyou', 'are', 'good', 'in', 'countless', 'ways', 'and', 'youare', 'not', 'evil', 'when', 'you', 'are', 'not', 'goodyou', 'are', 'only', 'loitering', 'and', 'sluggardpity', 'that', 'the', 'stags', 'cannot', 'teachswiftness', 'to', 'the', 'turtlesin', 'your', 'longing', 'for', 'your', 'giant', 'self', 'liesyour', 'goodness', 'and', 'that', 'longing', 'is', 'inall', 'of', 'youbut', 'in', 'some', 'of', 'you', 'that', 'longing', 'is', 'atorrent', 'rushing', 'with', 'might', 'to', 'the', 'seacarrying', 'the', 'secrets', 'of', 'the', 'hillsidesand', 'the', 'songs', 'of', 'the', 'forestand', 'in', 'others', 'it', 'is', 'a', 'flat', 'stream', 'thatloses', 'itself', 'in', 'angles', 'and', 'bends', 'andlingers', 'before', 'it', 'reaches', 'the', 'shorebut', 'let', 'not', 'him', 'who', 'longs', 'much', 'say', 'tohim', 'who', 'longs', 'little', 'wherefore', 'areyou', 'slow', 'and', 'haltingfor', 'the', 'truly', 'good', 'ask', 'not', 'the', 'nakedwhere', 'is', 'your', 'garment', 'nor', 'thehouseless', 'what', 'has', 'befallen', 'yourhouse', 'then', 'a', 'priestess', 'said', 'speak', 'to', 'usof', 'prayerand', 'he', 'answered', 'sayingyou', 'pray', 'in', 'your', 'distress', 'and', 'in', 'yourneed', 'would', 'that', 'you', 'might', 'pray', 'alsoin', 'the', 'fullness', 'of', 'your', 'joy', 'and', 'in', 'yourdays', 'of', 'abundancefor', 'what', 'is', 'prayer', 'but', 'the', 'expansion', 'ofyourself', 'into', 'the', 'living', 'etherand', 'if', 'it', 'is', 'for', 'your', 'comfort', 'to', 'pouryour', 'darkness', 'into', 'space', 'it', 'is', 'also', 'foryour', 'delight', 'to', 'pour', 'forth', 'the', 'dawningof', 'your', 'heartand', 'if', 'you', 'cannot', 'but', 'weep', 'when', 'yoursoul', 'summons', 'you', 'to', 'prayer', 'she', 'shouldspur', 'you', 'again', 'and', 'yet', 'again', 'thoughweeping', 'until', 'you', 'shall', 'come', 'laughingwhen', 'you', 'pray', 'you', 'rise', 'to', 'meet', 'in', 'theair', 'those', 'who', 'are', 'praying', 'at', 'that', 'veryhour', 'and', 'whom', 'save', 'in', 'prayer', 'youmay', 'not', 'meettherefore', 'let', 'your', 'visit', 'to', 'that', 'templeinvisible', 'be', 'for', 'naught', 'but', 'ecstasy', 'andsweet', 'communionfor', 'if', 'you', 'should', 'enter', 'the', 'temple', 'forno', 'other', 'purpose', 'than', 'asking', 'you', 'shallnot', 'receiveand', 'if', 'you', 'should', 'enter', 'into', 'it', 'tohumble', 'yourself', 'you', 'shall', 'not', 'be', 'liftedor', 'even', 'if', 'you', 'should', 'enter', 'into', 'it', 'tobeg', 'for', 'the', 'good', 'of', 'others', 'you', 'shall', 'notbe', 'heardit', 'is', 'enough', 'that', 'you', 'enter', 'the', 'templeinvisiblei', 'cannot', 'teach', 'you', 'how', 'to', 'pray', 'in', 'wordsgod', 'listens', 'not', 'to', 'your', 'words', 'save', 'whenhe', 'himself', 'utters', 'them', 'through', 'yourlipsand', 'i', 'cannot', 'teach', 'you', 'the', 'prayer', 'of', 'theseas', 'and', 'the', 'forests', 'and', 'the', 'mountainsbut', 'you', 'who', 'are', 'born', 'of', 'themountains', 'and', 'the', 'forests', 'and', 'the', 'seascan', 'find', 'their', 'prayer', 'in', 'your', 'heartand', 'if', 'you', 'but', 'listen', 'in', 'the', 'stillnessof', 'the', 'night', 'you', 'shall', 'hear', 'them', 'sayingin', 'silenceour', 'god', 'who', 'art', 'our', 'winged', 'self', 'it', 'isthy', 'will', 'in', 'us', 'that', 'willethit', 'is', 'thy', 'desire', 'in', 'us', 'that', 'desirethit', 'is', 'thy', 'urge', 'in', 'us', 'that', 'would', 'turn', 'ournights', 'which', 'are', 'thine', 'into', 'days', 'whichare', 'thine', 'alsowe', 'cannot', 'ask', 'thee', 'for', 'aught', 'for', 'thouknowest', 'our', 'needs', 'before', 'they', 'are', 'bornin', 'usthou', 'art', 'our', 'need', 'and', 'in', 'giving', 'us', 'moreof', 'thyself', 'thou', 'givest', 'us', 'allillustration', '', 'then', 'a', 'hermit', 'who', 'visited', 'the', 'cityonce', 'a', 'year', 'came', 'forth', 'and', 'said', 'speakto', 'us', 'of', 'pleasureand', 'he', 'answered', 'sayingpleasure', 'is', 'a', 'freedomsongbut', 'it', 'is', 'not', 'freedomit', 'is', 'the', 'blossoming', 'of', 'your', 'desiresbut', 'it', 'is', 'not', 'their', 'fruitit', 'is', 'a', 'depth', 'calling', 'unto', 'a', 'heightbut', 'it', 'is', 'not', 'the', 'deep', 'nor', 'the', 'highit', 'is', 'the', 'caged', 'taking', 'wingbut', 'it', 'is', 'not', 'space', 'encompasseday', 'in', 'very', 'truth', 'pleasure', 'is', 'afreedomsongand', 'i', 'fain', 'would', 'have', 'you', 'sing', 'it', 'withfullness', 'of', 'heart', 'yet', 'i', 'would', 'not', 'haveyou', 'lose', 'your', 'hearts', 'in', 'the', 'singingsome', 'of', 'your', 'youth', 'seek', 'pleasure', 'as', 'ifit', 'were', 'all', 'and', 'they', 'are', 'judged', 'andrebuked', 'i', 'would', 'not', 'judge', 'norrebuke', 'them', 'i', 'would', 'have', 'them', 'seekfor', 'they', 'shall', 'find', 'pleasure', 'but', 'nother', 'aloneseven', 'are', 'her', 'sisters', 'and', 'the', 'least', 'ofthem', 'is', 'more', 'beautiful', 'than', 'pleasurehave', 'you', 'not', 'heard', 'of', 'the', 'man', 'who', 'wasdigging', 'in', 'the', 'earth', 'for', 'roots', 'and', 'founda', 'treasureand', 'some', 'of', 'your', 'elders', 'rememberpleasures', 'with', 'regret', 'like', 'wrongscommitted', 'in', 'drunkennessbut', 'regret', 'is', 'the', 'beclouding', 'of', 'the', 'mindand', 'not', 'its', 'chastisementthey', 'should', 'remember', 'their', 'pleasureswith', 'gratitude', 'as', 'they', 'would', 'theharvest', 'of', 'a', 'summeryet', 'if', 'it', 'comforts', 'them', 'to', 'regret', 'letthem', 'be', 'comfortedand', 'there', 'are', 'among', 'you', 'those', 'whoare', 'neither', 'young', 'to', 'seek', 'nor', 'old', 'torememberand', 'in', 'their', 'fear', 'of', 'seeking', 'andremembering', 'they', 'shun', 'all', 'pleasureslest', 'they', 'neglect', 'the', 'spirit', 'or', 'offendagainst', 'itbut', 'even', 'in', 'their', 'foregoing', 'is', 'theirpleasureand', 'thus', 'they', 'too', 'find', 'a', 'treasure', 'thoughthey', 'dig', 'for', 'roots', 'with', 'quivering', 'handsbut', 'tell', 'me', 'who', 'is', 'he', 'that', 'can', 'offendthe', 'spiritshall', 'the', 'nightingale', 'offend', 'thestillness', 'of', 'the', 'night', 'or', 'the', 'fireflythe', 'starsand', 'shall', 'your', 'flame', 'or', 'your', 'smokeburden', 'the', 'windthink', 'you', 'the', 'spirit', 'is', 'a', 'still', 'poolwhich', 'you', 'can', 'trouble', 'with', 'a', 'staffoftentimes', 'in', 'denying', 'yourself', 'pleasureyou', 'do', 'but', 'store', 'the', 'desire', 'in', 'therecesses', 'of', 'your', 'beingwho', 'knows', 'but', 'that', 'which', 'seems', 'omittedtoday', 'waits', 'for', 'tomorroweven', 'your', 'body', 'knows', 'its', 'heritageand', 'its', 'rightful', 'need', 'and', 'will', 'not', 'bedeceivedand', 'your', 'body', 'is', 'the', 'harp', 'of', 'your', 'souland', 'it', 'is', 'yours', 'to', 'bring', 'forth', 'sweetmusic', 'from', 'it', 'or', 'confused', 'soundsand', 'now', 'you', 'ask', 'in', 'your', 'heart', 'howshall', 'we', 'distinguish', 'that', 'which', 'isgood', 'in', 'pleasure', 'from', 'that', 'which', 'is', 'notgoodgo', 'to', 'your', 'fields', 'and', 'your', 'gardens', 'andyou', 'shall', 'learn', 'that', 'it', 'is', 'the', 'pleasureof', 'the', 'bee', 'to', 'gather', 'honey', 'of', 'theflowerbut', 'it', 'is', 'also', 'the', 'pleasure', 'of', 'theflower', 'to', 'yield', 'its', 'honey', 'to', 'the', 'beefor', 'to', 'the', 'bee', 'a', 'flower', 'is', 'a', 'fountain', 'oflifeand', 'to', 'the', 'flower', 'a', 'bee', 'is', 'a', 'messengerof', 'loveand', 'to', 'both', 'bee', 'and', 'flower', 'the', 'givingand', 'the', 'receiving', 'of', 'pleasure', 'is', 'a', 'needand', 'an', 'ecstasypeople', 'of', 'orphalese', 'be', 'in', 'yourpleasures', 'like', 'the', 'flowers', 'and', 'the', 'bees', 'and', 'a', 'poet', 'said', 'speak', 'to', 'us', 'ofbeautyand', 'he', 'answeredwhere', 'shall', 'you', 'seek', 'beauty', 'and', 'howshall', 'you', 'find', 'her', 'unless', 'she', 'herself', 'beyour', 'way', 'and', 'your', 'guideand', 'how', 'shall', 'you', 'speak', 'of', 'her', 'exceptshe', 'be', 'the', 'weaver', 'of', 'your', 'speechthe', 'aggrieved', 'and', 'the', 'injured', 'saybeauty', 'is', 'kind', 'and', 'gentlelike', 'a', 'young', 'mother', 'halfshy', 'of', 'her', 'ownglory', 'she', 'walks', 'among', 'usand', 'the', 'passionate', 'say', 'nay', 'beauty', 'isa', 'thing', 'of', 'might', 'and', 'dreadlike', 'the', 'tempest', 'she', 'shakes', 'the', 'earthbeneath', 'us', 'and', 'the', 'sky', 'above', 'usthe', 'tired', 'and', 'the', 'weary', 'say', 'beauty', 'isof', 'soft', 'whisperings', 'she', 'speaks', 'in', 'ourspirit', 'her', 'voice', 'yields', 'to', 'oursilences', 'like', 'a', 'faint', 'light', 'that', 'quiversin', 'fear', 'of', 'the', 'shadowbut', 'the', 'restless', 'say', 'we', 'have', 'heard', 'hershouting', 'among', 'the', 'mountainsand', 'with', 'her', 'cries', 'came', 'the', 'sound', 'ofhoofs', 'and', 'the', 'beating', 'of', 'wings', 'and', 'theroaring', 'of', 'lionsat', 'night', 'the', 'watchmen', 'of', 'the', 'city', 'saybeauty', 'shall', 'rise', 'with', 'the', 'dawn', 'fromthe', 'eastand', 'at', 'noontide', 'the', 'toilers', 'and', 'thewayfarers', 'say', 'we', 'have', 'seen', 'her', 'leaningover', 'the', 'earth', 'from', 'the', 'windows', 'of', 'thesunsetin', 'winter', 'say', 'the', 'snowbound', 'she', 'shallcome', 'with', 'the', 'spring', 'leaping', 'upon', 'thehillsand', 'in', 'the', 'summer', 'heat', 'the', 'reaperssay', 'we', 'have', 'seen', 'her', 'dancing', 'with', 'theautumn', 'leaves', 'and', 'we', 'saw', 'a', 'drift', 'ofsnow', 'in', 'her', 'hair', 'all', 'these', 'thingshave', 'you', 'said', 'of', 'beautyyet', 'in', 'truth', 'you', 'spoke', 'not', 'of', 'her', 'but', 'ofneeds', 'unsatisfiedand', 'beauty', 'is', 'not', 'a', 'need', 'but', 'an', 'ecstasyit', 'is', 'not', 'a', 'mouth', 'thirsting', 'nor', 'an', 'emptyhand', 'stretched', 'forthbut', 'rather', 'a', 'heart', 'enflamed', 'and', 'a', 'soulenchantedit', 'is', 'not', 'the', 'image', 'you', 'would', 'see', 'northe', 'song', 'you', 'would', 'hearbut', 'rather', 'an', 'image', 'you', 'see', 'though', 'youclose', 'your', 'eyes', 'and', 'a', 'song', 'you', 'hearthough', 'you', 'shut', 'your', 'earsit', 'is', 'not', 'the', 'sap', 'within', 'the', 'furrowedbark', 'nor', 'a', 'wing', 'attached', 'to', 'a', 'clawbut', 'rather', 'a', 'garden', 'for', 'ever', 'in', 'bloomand', 'a', 'flock', 'of', 'angels', 'for', 'ever', 'inflightpeople', 'of', 'orphalese', 'beauty', 'is', 'life', 'whenlife', 'unveils', 'her', 'holy', 'facebut', 'you', 'are', 'life', 'and', 'you', 'are', 'the', 'veilbeauty', 'is', 'eternity', 'gazing', 'at', 'itselfin', 'a', 'mirrorbut', 'you', 'are', 'eternity', 'and', 'you', 'are', 'themirror', 'and', 'an', 'old', 'priest', 'said', 'speak', 'to', 'usof', 'religionand', 'he', 'saidhave', 'i', 'spoken', 'this', 'day', 'of', 'aught', 'elseis', 'not', 'religion', 'all', 'deeds', 'and', 'allreflectionand', 'that', 'which', 'is', 'neither', 'deed', 'norreflection', 'but', 'a', 'wonder', 'and', 'a', 'surpriseever', 'springing', 'in', 'the', 'soul', 'even', 'whilethe', 'hands', 'hew', 'the', 'stone', 'or', 'tend', 'theloomwho', 'can', 'separate', 'his', 'faith', 'fromhis', 'actions', 'or', 'his', 'belief', 'from', 'hisoccupationswho', 'can', 'spread', 'his', 'hours', 'before', 'himsaving', 'this', 'for', 'god', 'and', 'this', 'formyself', 'this', 'for', 'my', 'soul', 'and', 'this', 'otherfor', 'my', 'bodyall', 'your', 'hours', 'are', 'wings', 'that', 'beatthrough', 'space', 'from', 'self', 'to', 'self', 'hewho', 'wears', 'his', 'morality', 'but', 'as', 'his', 'bestgarment', 'were', 'better', 'nakedthe', 'wind', 'and', 'the', 'sun', 'will', 'tear', 'no', 'holesin', 'his', 'skinand', 'he', 'who', 'defines', 'his', 'conduct', 'by', 'ethicsimprisons', 'his', 'songbird', 'in', 'a', 'cagethe', 'freest', 'song', 'comes', 'not', 'through', 'barsand', 'wiresand', 'he', 'to', 'whom', 'worshipping', 'is', 'a', 'windowto', 'open', 'but', 'also', 'to', 'shut', 'has', 'not', 'yetvisited', 'the', 'house', 'of', 'his', 'soul', 'whosewindows', 'are', 'from', 'dawn', 'to', 'dawnyour', 'daily', 'life', 'is', 'your', 'temple', 'and', 'yourreligionwhenever', 'you', 'enter', 'into', 'it', 'take', 'with', 'youyour', 'alltake', 'the', 'plough', 'and', 'the', 'forge', 'and', 'themallet', 'and', 'the', 'lutethe', 'things', 'you', 'have', 'fashioned', 'innecessity', 'or', 'for', 'delightfor', 'in', 'revery', 'you', 'cannot', 'rise', 'above', 'yourachievements', 'nor', 'fall', 'lower', 'than', 'yourfailuresand', 'take', 'with', 'you', 'all', 'men', 'for', 'inadoration', 'you', 'cannot', 'fly', 'higher', 'thantheir', 'hopes', 'nor', 'humble', 'yourself', 'lowerthan', 'their', 'despairand', 'if', 'you', 'would', 'know', 'god', 'be', 'nottherefore', 'a', 'solver', 'of', 'riddlesrather', 'look', 'about', 'you', 'and', 'you', 'shall', 'seehim', 'playing', 'with', 'your', 'childrenand', 'look', 'into', 'space', 'you', 'shall', 'see', 'himwalking', 'in', 'the', 'cloud', 'outstretching', 'hisarms', 'in', 'the', 'lightning', 'and', 'descending', 'inrainyou', 'shall', 'see', 'him', 'smiling', 'in', 'flowersthen', 'rising', 'and', 'waving', 'his', 'hands', 'intrees', 'then', 'almitra', 'spoke', 'saying', 'we', 'wouldask', 'now', 'of', 'deathand', 'he', 'saidyou', 'would', 'know', 'the', 'secret', 'of', 'deathbut', 'how', 'shall', 'you', 'find', 'it', 'unless', 'youseek', 'it', 'in', 'the', 'heart', 'of', 'lifethe', 'owl', 'whose', 'nightbound', 'eyes', 'are', 'blindunto', 'the', 'day', 'cannot', 'unveil', 'the', 'mysteryof', 'lightif', 'you', 'would', 'indeed', 'behold', 'the', 'spiritof', 'death', 'open', 'your', 'heart', 'wide', 'unto', 'thebody', 'of', 'lifefor', 'life', 'and', 'death', 'are', 'one', 'even', 'as', 'theriver', 'and', 'the', 'sea', 'are', 'onein', 'the', 'depth', 'of', 'your', 'hopes', 'and', 'desireslies', 'your', 'silent', 'knowledge', 'of', 'thebeyondand', 'like', 'seeds', 'dreaming', 'beneath', 'the', 'snowyour', 'heart', 'dreams', 'of', 'springtrust', 'the', 'dreams', 'for', 'in', 'them', 'is', 'hiddenthe', 'gate', 'to', 'eternity', 'your', 'fearof', 'death', 'is', 'but', 'the', 'trembling', 'of', 'theshepherd', 'when', 'he', 'stands', 'before', 'the', 'kingwhose', 'hand', 'is', 'to', 'be', 'laid', 'upon', 'him', 'inhonouris', 'the', 'shepherd', 'not', 'joyful', 'beneath', 'histrembling', 'that', 'he', 'shall', 'wear', 'the', 'markof', 'the', 'kingyet', 'is', 'he', 'not', 'more', 'mindful', 'of', 'histremblingfor', 'what', 'is', 'it', 'to', 'die', 'but', 'to', 'stand', 'nakedin', 'the', 'wind', 'and', 'to', 'melt', 'into', 'the', 'sunand', 'what', 'is', 'it', 'to', 'cease', 'breathing', 'butto', 'free', 'the', 'breath', 'from', 'its', 'restlesstides', 'that', 'it', 'may', 'rise', 'and', 'expand', 'andseek', 'god', 'unencumberedonly', 'when', 'you', 'drink', 'from', 'the', 'river', 'ofsilence', 'shall', 'you', 'indeed', 'singand', 'when', 'you', 'have', 'reached', 'the', 'mountaintop', 'then', 'you', 'shall', 'begin', 'to', 'climband', 'when', 'the', 'earth', 'shall', 'claim', 'yourlimbs', 'then', 'shall', 'you', 'truly', 'danceand', 'now', 'it', 'was', 'eveningand', 'almitra', 'the', 'seeress', 'said', 'blessed', 'bethis', 'day', 'and', 'this', 'place', 'and', 'your', 'spiritthat', 'has', 'spokenand', 'he', 'answered', 'was', 'it', 'i', 'who', 'spoke', 'wasi', 'not', 'also', 'a', 'listenerthen', 'he', 'descended', 'the', 'steps', 'of', 'thetemple', 'and', 'all', 'the', 'people', 'followed', 'himand', 'he', 'reached', 'his', 'ship', 'and', 'stood', 'uponthe', 'deckand', 'facing', 'the', 'people', 'again', 'he', 'raisedhis', 'voice', 'and', 'saidpeople', 'of', 'orphalese', 'the', 'wind', 'bids', 'meleave', 'youless', 'hasty', 'am', 'i', 'than', 'the', 'wind', 'yet', 'imust', 'gowe', 'wanderers', 'ever', 'seeking', 'the', 'lonelierway', 'begin', 'no', 'day', 'where', 'we', 'have', 'endedanother', 'day', 'and', 'no', 'sunrise', 'finds', 'uswhere', 'sunset', 'left', 'us', 'even', 'while', 'theearth', 'sleeps', 'we', 'travelwe', 'are', 'the', 'seeds', 'of', 'the', 'tenaciousplant', 'and', 'it', 'is', 'in', 'our', 'ripeness', 'and', 'ourfullness', 'of', 'heart', 'that', 'we', 'are', 'given', 'tothe', 'wind', 'and', 'are', 'scatteredbrief', 'were', 'my', 'days', 'among', 'you', 'andbriefer', 'still', 'the', 'words', 'i', 'have', 'spokenbut', 'should', 'my', 'voice', 'fade', 'in', 'your', 'earsand', 'my', 'love', 'vanish', 'in', 'your', 'memory', 'theni', 'will', 'come', 'againand', 'with', 'a', 'richer', 'heart', 'and', 'lips', 'moreyielding', 'to', 'the', 'spirit', 'will', 'i', 'speakyea', 'i', 'shall', 'return', 'with', 'the', 'tideand', 'though', 'death', 'may', 'hide', 'me', 'and', 'thegreater', 'silence', 'enfold', 'me', 'yet', 'againwill', 'i', 'seek', 'your', 'understandingand', 'not', 'in', 'vain', 'will', 'i', 'seekif', 'aught', 'i', 'have', 'said', 'is', 'truth', 'thattruth', 'shall', 'reveal', 'itself', 'in', 'a', 'clearervoice', 'and', 'in', 'words', 'more', 'kin', 'to', 'yourthoughtsi', 'go', 'with', 'the', 'wind', 'people', 'oforphalese', 'but', 'not', 'down', 'into', 'emptinessand', 'if', 'this', 'day', 'is', 'not', 'a', 'fulfilmentof', 'your', 'needs', 'and', 'my', 'love', 'then', 'let', 'itbe', 'a', 'promise', 'till', 'another', 'daymans', 'needs', 'change', 'but', 'not', 'his', 'lovenor', 'his', 'desire', 'that', 'his', 'love', 'shouldsatisfy', 'his', 'needsknow', 'therefore', 'that', 'from', 'the', 'greatersilence', 'i', 'shall', 'returnthe', 'mist', 'that', 'drifts', 'away', 'at', 'dawnleaving', 'but', 'dew', 'in', 'the', 'fields', 'shallrise', 'and', 'gather', 'into', 'a', 'cloud', 'and', 'thenfall', 'down', 'in', 'rainand', 'not', 'unlike', 'the', 'mist', 'have', 'i', 'beenin', 'the', 'stillness', 'of', 'the', 'night', 'i', 'havewalked', 'in', 'your', 'streets', 'and', 'my', 'spirithas', 'entered', 'your', 'housesand', 'your', 'heartbeats', 'were', 'in', 'my', 'heartand', 'your', 'breath', 'was', 'upon', 'my', 'face', 'and', 'iknew', 'you', 'allay', 'i', 'knew', 'your', 'joy', 'and', 'your', 'painand', 'in', 'your', 'sleep', 'your', 'dreams', 'were', 'mydreamsand', 'oftentimes', 'i', 'was', 'among', 'you', 'a', 'lakeamong', 'the', 'mountainsi', 'mirrored', 'the', 'summits', 'in', 'you', 'and', 'thebending', 'slopes', 'and', 'even', 'thepassing', 'flocks', 'of', 'your', 'thoughts', 'and', 'yourdesiresand', 'to', 'my', 'silence', 'came', 'the', 'laughterof', 'your', 'children', 'in', 'streams', 'and', 'thelonging', 'of', 'your', 'youths', 'in', 'riversand', 'when', 'they', 'reached', 'my', 'depth', 'thestreams', 'and', 'the', 'rivers', 'ceased', 'not', 'yet', 'tosingillustration', 'but', 'sweeter', 'still', 'than', 'laughter', 'andgreater', 'than', 'longing', 'came', 'to', 'meit', 'was', 'the', 'boundless', 'in', 'youthe', 'vast', 'man', 'in', 'whom', 'you', 'are', 'all', 'butcells', 'and', 'sinewshe', 'in', 'whose', 'chant', 'all', 'your', 'singing', 'isbut', 'a', 'soundless', 'throbbingit', 'is', 'in', 'the', 'vast', 'man', 'that', 'you', 'are', 'vastand', 'in', 'beholding', 'him', 'that', 'i', 'beheld', 'youand', 'loved', 'youfor', 'what', 'distances', 'can', 'love', 'reach', 'thatare', 'not', 'in', 'that', 'vast', 'spherewhat', 'visions', 'what', 'expectations', 'and', 'whatpresumptions', 'can', 'outsoar', 'that', 'flightlike', 'a', 'giant', 'oak', 'tree', 'covered', 'with', 'appleblossoms', 'is', 'the', 'vast', 'man', 'in', 'you', 'hismight', 'binds', 'you', 'to', 'the', 'earth', 'hisfragrance', 'lifts', 'you', 'into', 'space', 'and', 'inhis', 'durability', 'you', 'are', 'deathlessyou', 'have', 'been', 'told', 'that', 'even', 'like', 'achain', 'you', 'are', 'as', 'weak', 'as', 'your', 'weakestlinkthis', 'is', 'but', 'half', 'the', 'truth', 'you', 'are', 'alsoas', 'strong', 'as', 'your', 'strongest', 'linkto', 'measure', 'you', 'by', 'your', 'smallest', 'deedis', 'to', 'reckon', 'the', 'power', 'of', 'ocean', 'by', 'thefrailty', 'of', 'its', 'foamto', 'judge', 'you', 'by', 'your', 'failures', 'is', 'tocast', 'blame', 'upon', 'the', 'seasons', 'for', 'theirinconstancyay', 'you', 'are', 'like', 'an', 'oceanand', 'though', 'heavygrounded', 'ships', 'awaitthe', 'tide', 'upon', 'your', 'shores', 'yet', 'evenlike', 'an', 'ocean', 'you', 'cannot', 'hasten', 'yourtidesand', 'like', 'the', 'seasons', 'you', 'are', 'alsoand', 'though', 'in', 'your', 'winter', 'you', 'deny', 'yourspringyet', 'spring', 'reposing', 'within', 'you', 'smilesin', 'her', 'drowsiness', 'and', 'is', 'not', 'offendedthink', 'not', 'i', 'say', 'these', 'things', 'inorder', 'that', 'you', 'may', 'say', 'the', 'one', 'to', 'theother', 'he', 'praised', 'us', 'well', 'he', 'saw', 'butthe', 'good', 'in', 'usi', 'only', 'speak', 'to', 'you', 'in', 'words', 'of', 'thatwhich', 'you', 'yourselves', 'know', 'in', 'thoughtand', 'what', 'is', 'word', 'knowledge', 'but', 'a', 'shadowof', 'wordless', 'knowledgeyour', 'thoughts', 'and', 'my', 'words', 'are', 'wavesfrom', 'a', 'sealed', 'memory', 'that', 'keeps', 'recordsof', 'our', 'yesterdaysand', 'of', 'the', 'ancient', 'days', 'when', 'the', 'earthknew', 'not', 'us', 'nor', 'herselfand', 'of', 'nights', 'when', 'earth', 'was', 'upwroughtwith', 'confusionwise', 'men', 'have', 'come', 'to', 'you', 'to', 'give', 'youof', 'their', 'wisdom', 'i', 'came', 'to', 'take', 'of', 'yourwisdomand', 'behold', 'i', 'have', 'found', 'that', 'which', 'isgreater', 'than', 'wisdomit', 'is', 'a', 'flame', 'spirit', 'in', 'you', 'evergathering', 'more', 'of', 'itselfwhile', 'you', 'heedless', 'of', 'its', 'expansionbewail', 'the', 'withering', 'of', 'your', 'daysit', 'is', 'life', 'in', 'quest', 'of', 'life', 'inbodies', 'that', 'fear', 'the', 'gravethere', 'are', 'no', 'graves', 'herethese', 'mountains', 'and', 'plains', 'are', 'a', 'cradleand', 'a', 'steppingstonewhenever', 'you', 'pass', 'by', 'the', 'field', 'whereyou', 'have', 'laid', 'your', 'ancestors', 'look', 'wellthereupon', 'and', 'you', 'shall', 'see', 'yourselvesand', 'your', 'children', 'dancing', 'hand', 'in', 'handverily', 'you', 'often', 'make', 'merry', 'withoutknowingothers', 'have', 'come', 'to', 'you', 'to', 'whom', 'forgolden', 'promises', 'made', 'unto', 'your', 'faithyou', 'have', 'given', 'but', 'riches', 'and', 'power', 'andgloryless', 'than', 'a', 'promise', 'have', 'i', 'given', 'andyet', 'more', 'generous', 'have', 'you', 'been', 'to', 'meyou', 'have', 'given', 'me', 'my', 'deeper', 'thirstingafter', 'lifesurely', 'there', 'is', 'no', 'greater', 'gift', 'to', 'a', 'manthan', 'that', 'which', 'turns', 'all', 'his', 'aimsinto', 'parching', 'lips', 'and', 'all', 'life', 'into', 'afountainillustration', 'and', 'in', 'this', 'lies', 'my', 'honour', 'and', 'myrewardthat', 'whenever', 'i', 'come', 'to', 'the', 'fountainto', 'drink', 'i', 'find', 'the', 'living', 'water', 'itselfthirstyand', 'it', 'drinks', 'me', 'while', 'i', 'drink', 'itsome', 'of', 'you', 'have', 'deemed', 'me', 'proud', 'andovershy', 'to', 'receive', 'giftstoo', 'proud', 'indeed', 'am', 'i', 'to', 'receive', 'wagesbut', 'not', 'giftsand', 'though', 'i', 'have', 'eaten', 'berries', 'amongthe', 'hills', 'when', 'you', 'would', 'have', 'had', 'me', 'sitat', 'your', 'boardand', 'slept', 'in', 'the', 'portico', 'of', 'the', 'templewhen', 'you', 'would', 'gladly', 'have', 'sheltered', 'meyet', 'was', 'it', 'not', 'your', 'loving', 'mindfulnessof', 'my', 'days', 'and', 'my', 'nights', 'that', 'made', 'foodsweet', 'to', 'my', 'mouth', 'and', 'girdled', 'my', 'sleepwith', 'visionsfor', 'this', 'i', 'bless', 'you', 'mostyou', 'give', 'much', 'and', 'know', 'not', 'that', 'you', 'giveat', 'all', 'verily', 'the', 'kindness', 'thatgazes', 'upon', 'itself', 'in', 'a', 'mirror', 'turns', 'tostoneand', 'a', 'good', 'deed', 'that', 'calls', 'itself', 'bytender', 'names', 'becomes', 'the', 'parent', 'to', 'acurseand', 'some', 'of', 'you', 'have', 'called', 'me', 'aloofand', 'drunk', 'with', 'my', 'own', 'alonenessand', 'you', 'have', 'said', 'he', 'holds', 'councilwith', 'the', 'trees', 'of', 'the', 'forest', 'but', 'notwith', 'menhe', 'sits', 'alone', 'on', 'hilltops', 'and', 'looksdown', 'upon', 'our', 'citytrue', 'it', 'is', 'that', 'i', 'have', 'climbed', 'the', 'hillsand', 'walked', 'in', 'remote', 'placeshow', 'could', 'i', 'have', 'seen', 'you', 'save', 'from', 'agreat', 'height', 'or', 'a', 'great', 'distancehow', 'can', 'one', 'be', 'indeed', 'near', 'unless', 'he', 'betarand', 'others', 'among', 'you', 'called', 'unto', 'me', 'notin', 'words', 'and', 'they', 'saidstranger', 'stranger', 'lover', 'ofunreachable', 'heights', 'why', 'dwell', 'you', 'amongthe', 'summits', 'where', 'eagles', 'buildtheir', 'nests', 'why', 'seek', 'you', 'theunattainablewhat', 'storms', 'would', 'you', 'trap', 'in', 'your', 'netand', 'what', 'vaporous', 'birds', 'do', 'you', 'hunt', 'inthe', 'skycome', 'and', 'be', 'one', 'of', 'usdescend', 'and', 'appease', 'your', 'hunger', 'with', 'ourbread', 'and', 'quench', 'your', 'thirst', 'with', 'ourwinein', 'the', 'solitude', 'of', 'their', 'souls', 'they', 'saidthese', 'thingsbut', 'were', 'their', 'solitude', 'deeper', 'theywould', 'have', 'known', 'that', 'i', 'sought', 'but', 'thesecret', 'of', 'your', 'joy', 'and', 'your', 'painand', 'i', 'hunted', 'only', 'your', 'larger', 'selvesthat', 'walk', 'the', 'skybut', 'the', 'hunter', 'was', 'also', 'the', 'huntedfor', 'many', 'of', 'my', 'arrows', 'left', 'my', 'bow', 'onlyto', 'seek', 'my', 'own', 'breastand', 'the', 'flier', 'was', 'also', 'the', 'creeperfor', 'when', 'my', 'wings', 'were', 'spread', 'in', 'thesun', 'their', 'shadow', 'upon', 'the', 'earth', 'was', 'aturtleand', 'i', 'the', 'believer', 'was', 'also', 'the', 'doubterfor', 'often', 'have', 'i', 'put', 'my', 'fingerin', 'my', 'own', 'wound', 'that', 'i', 'might', 'have', 'thegreater', 'belief', 'in', 'you', 'and', 'the', 'greaterknowledge', 'of', 'youand', 'it', 'is', 'with', 'this', 'belief', 'and', 'thisknowledge', 'that', 'i', 'sayyou', 'are', 'not', 'enclosed', 'within', 'your', 'bodiesnor', 'confined', 'to', 'houses', 'or', 'fieldsthat', 'which', 'is', 'you', 'dwells', 'above', 'themountain', 'and', 'roves', 'with', 'the', 'windit', 'is', 'not', 'a', 'thing', 'that', 'crawls', 'intothe', 'sun', 'for', 'warmth', 'or', 'digs', 'holes', 'intodarkness', 'for', 'safetybut', 'a', 'thing', 'free', 'a', 'spirit', 'that', 'envelopsthe', 'earth', 'and', 'moves', 'in', 'the', 'etherif', 'these', 'be', 'vague', 'words', 'then', 'seek', 'notto', 'clear', 'themvague', 'and', 'nebulous', 'is', 'the', 'beginning', 'ofall', 'things', 'but', 'not', 'their', 'endand', 'i', 'fain', 'would', 'have', 'you', 'remember', 'me', 'asa', 'beginninglife', 'and', 'all', 'that', 'lives', 'is', 'conceivedin', 'the', 'mist', 'and', 'not', 'in', 'the', 'crystaland', 'who', 'knows', 'but', 'a', 'crystal', 'is', 'mistin', 'decaythis', 'would', 'i', 'have', 'you', 'remember', 'inremembering', 'methat', 'which', 'seems', 'most', 'feeble', 'andbewildered', 'in', 'you', 'is', 'the', 'strongest', 'andmost', 'determinedis', 'it', 'not', 'your', 'breath', 'that', 'has', 'erectedand', 'hardened', 'the', 'structure', 'of', 'yourbonesand', 'is', 'it', 'not', 'a', 'dream', 'which', 'none', 'of', 'youremember', 'having', 'dreamt', 'that', 'buildedyour', 'city', 'and', 'fashioned', 'all', 'there', 'is', 'initcould', 'you', 'but', 'see', 'the', 'tides', 'of', 'thatbreath', 'you', 'would', 'cease', 'to', 'see', 'all', 'elseand', 'if', 'you', 'could', 'hear', 'the', 'whispering', 'ofthe', 'dream', 'you', 'would', 'hear', 'no', 'other', 'soundbut', 'you', 'do', 'not', 'see', 'nor', 'do', 'you', 'hear', 'andit', 'is', 'wellthe', 'veil', 'that', 'clouds', 'your', 'eyes', 'shall', 'belifted', 'by', 'the', 'hands', 'that', 'wove', 'itand', 'the', 'clay', 'that', 'fills', 'your', 'ears', 'shallbe', 'pierced', 'by', 'those', 'fingers', 'that', 'kneadedit', 'and', 'you', 'shall', 'seeand', 'you', 'shall', 'hearyet', 'you', 'shall', 'not', 'deplore', 'having', 'knownblindness', 'nor', 'regret', 'having', 'been', 'deaffor', 'in', 'that', 'day', 'you', 'shall', 'know', 'thehidden', 'purposes', 'in', 'all', 'thingsand', 'you', 'shall', 'bless', 'darkness', 'as', 'youwould', 'bless', 'lightafter', 'saying', 'these', 'things', 'he', 'lookedabout', 'him', 'and', 'he', 'saw', 'the', 'pilot', 'of', 'hisship', 'standing', 'by', 'the', 'helm', 'and', 'gazingnow', 'at', 'the', 'full', 'sails', 'and', 'now', 'at', 'thedistanceand', 'he', 'saidpatient', 'over', 'patient', 'is', 'the', 'captain', 'ofmy', 'shipthe', 'wind', 'blows', 'and', 'restless', 'are', 'thesailseven', 'the', 'rudder', 'begs', 'directionyet', 'quietly', 'my', 'captain', 'awaits', 'mysilenceand', 'these', 'my', 'mariners', 'who', 'have', 'heardthe', 'choir', 'of', 'the', 'greater', 'sea', 'they', 'toohave', 'heard', 'me', 'patiently', 'now', 'theyshall', 'wait', 'no', 'longeri', 'am', 'readythe', 'stream', 'has', 'reached', 'the', 'sea', 'andonce', 'more', 'the', 'great', 'mother', 'holds', 'her', 'sonagainst', 'her', 'breastfare', 'you', 'well', 'people', 'of', 'orphalesethis', 'day', 'has', 'endedit', 'is', 'closing', 'upon', 'us', 'even', 'as', 'thewaterlily', 'upon', 'its', 'own', 'tomorrowwhat', 'was', 'given', 'us', 'here', 'we', 'shall', 'keepand', 'if', 'it', 'suffices', 'not', 'then', 'again', 'mustwe', 'come', 'together', 'and', 'together', 'stretchour', 'hands', 'unto', 'the', 'giverforget', 'not', 'that', 'i', 'shall', 'come', 'back', 'toyoua', 'little', 'while', 'and', 'my', 'longing', 'shallgather', 'dust', 'and', 'foam', 'for', 'another', 'bodya', 'little', 'while', 'a', 'moment', 'of', 'rest', 'uponthe', 'wind', 'and', 'another', 'woman', 'shall', 'bearmefarewell', 'to', 'you', 'and', 'the', 'youth', 'i', 'havespent', 'with', 'youit', 'was', 'but', 'yesterday', 'we', 'met', 'in', 'adream', 'you', 'have', 'sung', 'to', 'me', 'in', 'myaloneness', 'and', 'i', 'of', 'your', 'longings', 'havebuilt', 'a', 'tower', 'in', 'the', 'skybut', 'now', 'our', 'sleep', 'has', 'fled', 'and', 'our', 'dreamis', 'over', 'and', 'it', 'is', 'no', 'longer', 'dawnthe', 'noontide', 'is', 'upon', 'us', 'and', 'our', 'halfwaking', 'has', 'turned', 'to', 'fuller', 'day', 'and', 'wemust', 'partif', 'in', 'the', 'twilight', 'of', 'memory', 'we', 'shouldmeet', 'once', 'more', 'we', 'shall', 'speak', 'againtogether', 'and', 'you', 'shall', 'sing', 'to', 'me', 'adeeper', 'songand', 'if', 'our', 'hands', 'should', 'meet', 'in', 'anotherdream', 'we', 'shall', 'build', 'another', 'tower', 'inthe', 'skyso', 'saying', 'he', 'made', 'a', 'signal', 'to', 'theseamen', 'and', 'straightway', 'they', 'weighedanchor', 'and', 'cast', 'the', 'ship', 'loose', 'from', 'itsmoorings', 'and', 'they', 'moved', 'eastwardand', 'a', 'cry', 'came', 'from', 'the', 'people', 'as', 'from', 'asingle', 'heart', 'and', 'it', 'rose', 'into', 'the', 'duskand', 'was', 'carried', 'out', 'over', 'the', 'sea', 'like', 'agreat', 'trumpetingonly', 'almitra', 'was', 'silent', 'gazing', 'afterthe', 'ship', 'until', 'it', 'had', 'vanished', 'intothe', 'mistand', 'when', 'all', 'the', 'people', 'were', 'dispersedshe', 'still', 'stood', 'alone', 'upon', 'the', 'seawallremembering', 'in', 'her', 'heart', 'his', 'sayinga', 'little', 'while', 'a', 'moment', 'of', 'rest', 'uponthe', 'wind', 'and', 'another', 'woman', 'shall', 'bearmeillustration', 'end', 'of', 'the', 'project', 'gutenberg', 'ebook', 'of', 'the', 'prophet', 'by', 'kahlil', 'gibran', 'end', 'of', 'this', 'project', 'gutenberg', 'ebook', 'the', 'prophet', '', 'this', 'file', 'should', 'be', 'named', 'txt', 'or', 'zip', 'this', 'and', 'all', 'associated', 'files', 'of', 'various', 'formats', 'will', 'be', 'found', 'in', '', '', '', '', '', '', '', 'httpwwwgutenbergorgproduced', 'by', 'david', 'widger', 'from', 'page', 'images', 'generouslyprovided', 'by', 'the', 'internet', 'archiveupdated', 'editions', 'will', 'replace', 'the', 'previous', 'onethe', 'old', 'editions', 'willbe', 'renamedcreating', 'the', 'works', 'from', 'print', 'editions', 'not', 'protected', 'by', 'us', 'copyrightlaw', 'means', 'that', 'no', 'one', 'owns', 'a', 'united', 'states', 'copyright', 'in', 'these', 'worksso', 'the', 'foundation', 'and', 'you', 'can', 'copy', 'and', 'distribute', 'it', 'in', 'the', 'unitedstates', 'without', 'permission', 'and', 'without', 'paying', 'copyrightroyalties', 'special', 'rules', 'set', 'forth', 'in', 'the', 'general', 'terms', 'of', 'use', 'partof', 'this', 'license', 'apply', 'to', 'copying', 'and', 'distributing', 'projectgutenbergtm', 'electronic', 'works', 'to', 'protect', 'the', 'project', 'gutenbergtmconcept', 'and', 'trademark', 'project', 'gutenberg', 'is', 'a', 'registered', 'trademarkand', 'may', 'not', 'be', 'used', 'if', 'you', 'charge', 'for', 'the', 'ebooks', 'unless', 'you', 'receivespecific', 'permission', 'if', 'you', 'do', 'not', 'charge', 'anything', 'for', 'copies', 'of', 'thisebook', 'complying', 'with', 'the', 'rules', 'is', 'very', 'easy', 'you', 'may', 'use', 'this', 'ebookfor', 'nearly', 'any', 'purpose', 'such', 'as', 'creation', 'of', 'derivative', 'works', 'reportsperformances', 'and', 'research', 'they', 'may', 'be', 'modified', 'and', 'printed', 'and', 'givenawayyou', 'may', 'do', 'practically', 'anything', 'in', 'the', 'united', 'states', 'with', 'ebooksnot', 'protected', 'by', 'us', 'copyright', 'law', 'redistribution', 'is', 'subject', 'to', 'thetrademark', 'license', 'especially', 'commercial', 'redistributionstart', 'full', 'licensethe', 'full', 'project', 'gutenberg', 'licenseplease', 'read', 'this', 'before', 'you', 'distribute', 'or', 'use', 'this', 'workto', 'protect', 'the', 'project', 'gutenbergtm', 'mission', 'of', 'promoting', 'the', 'freedistribution', 'of', 'electronic', 'works', 'by', 'using', 'or', 'distributing', 'this', 'workor', 'any', 'other', 'work', 'associated', 'in', 'any', 'way', 'with', 'the', 'phrase', 'projectgutenberg', 'you', 'agree', 'to', 'comply', 'with', 'all', 'the', 'terms', 'of', 'the', 'fullproject', 'gutenbergtm', 'license', 'available', 'with', 'this', 'file', 'or', 'online', 'atwwwgutenbergorglicensesection', '', 'general', 'terms', 'of', 'use', 'and', 'redistributing', 'projectgutenbergtm', 'electronic', 'worksa', 'by', 'reading', 'or', 'using', 'any', 'part', 'of', 'this', 'project', 'gutenbergtmelectronic', 'work', 'you', 'indicate', 'that', 'you', 'have', 'read', 'understand', 'agree', 'toand', 'accept', 'all', 'the', 'terms', 'of', 'this', 'license', 'and', 'intellectual', 'propertytrademarkcopyright', 'agreement', 'if', 'you', 'do', 'not', 'agree', 'to', 'abide', 'by', 'allthe', 'terms', 'of', 'this', 'agreement', 'you', 'must', 'cease', 'using', 'and', 'return', 'ordestroy', 'all', 'copies', 'of', 'project', 'gutenbergtm', 'electronic', 'works', 'in', 'yourpossession', 'if', 'you', 'paid', 'a', 'fee', 'for', 'obtaining', 'a', 'copy', 'of', 'or', 'access', 'to', 'aproject', 'gutenbergtm', 'electronic', 'work', 'and', 'you', 'do', 'not', 'agree', 'to', 'be', 'boundby', 'the', 'terms', 'of', 'this', 'agreement', 'you', 'may', 'obtain', 'a', 'refund', 'from', 'theperson', 'or', 'entity', 'to', 'whom', 'you', 'paid', 'the', 'fee', 'as', 'set', 'forth', 'in', 'paragrapheb', 'project', 'gutenberg', 'is', 'a', 'registered', 'trademark', 'it', 'may', 'only', 'beused', 'on', 'or', 'associated', 'in', 'any', 'way', 'with', 'an', 'electronic', 'work', 'by', 'people', 'whoagree', 'to', 'be', 'bound', 'by', 'the', 'terms', 'of', 'this', 'agreement', 'there', 'are', 'a', 'fewthings', 'that', 'you', 'can', 'do', 'with', 'most', 'project', 'gutenbergtm', 'electronic', 'workseven', 'without', 'complying', 'with', 'the', 'full', 'terms', 'of', 'this', 'agreement', 'seeparagraph', 'c', 'below', 'there', 'are', 'a', 'lot', 'of', 'things', 'you', 'can', 'do', 'with', 'projectgutenbergtm', 'electronic', 'works', 'if', 'you', 'follow', 'the', 'terms', 'of', 'thisagreement', 'and', 'help', 'preserve', 'free', 'future', 'access', 'to', 'project', 'gutenbergtmelectronic', 'works', 'see', 'paragraph', 'e', 'belowc', 'the', 'project', 'gutenberg', 'literary', 'archive', 'foundation', 'thefoundation', 'or', 'pglaf', 'owns', 'a', 'compilation', 'copyright', 'in', 'the', 'collectionof', 'project', 'gutenbergtm', 'electronic', 'works', 'nearly', 'all', 'the', 'individualworks', 'in', 'the', 'collection', 'are', 'in', 'the', 'public', 'domain', 'in', 'the', 'unitedstates', 'if', 'an', 'individual', 'work', 'is', 'unprotected', 'by', 'copyright', 'law', 'in', 'theunited', 'states', 'and', 'you', 'are', 'located', 'in', 'the', 'united', 'states', 'we', 'do', 'notclaim', 'a', 'right', 'to', 'prevent', 'you', 'from', 'copying', 'distributing', 'performingdisplaying', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'the', 'work', 'as', 'long', 'asall', 'references', 'to', 'project', 'gutenberg', 'are', 'removed', 'of', 'course', 'we', 'hopethat', 'you', 'will', 'support', 'the', 'project', 'gutenbergtm', 'mission', 'of', 'promotingfree', 'access', 'to', 'electronic', 'works', 'by', 'freely', 'sharing', 'project', 'gutenbergtmworks', 'in', 'compliance', 'with', 'the', 'terms', 'of', 'this', 'agreement', 'for', 'keeping', 'theproject', 'gutenbergtm', 'name', 'associated', 'with', 'the', 'work', 'you', 'can', 'easilycomply', 'with', 'the', 'terms', 'of', 'this', 'agreement', 'by', 'keeping', 'this', 'work', 'in', 'thesame', 'format', 'with', 'its', 'attached', 'full', 'project', 'gutenbergtm', 'license', 'whenyou', 'share', 'it', 'without', 'charge', 'with', 'othersd', 'the', 'copyright', 'laws', 'of', 'the', 'place', 'where', 'you', 'are', 'located', 'also', 'governwhat', 'you', 'can', 'do', 'with', 'this', 'work', 'copyright', 'laws', 'in', 'most', 'countries', 'arein', 'a', 'constant', 'state', 'of', 'change', 'if', 'you', 'are', 'outside', 'the', 'united', 'statescheck', 'the', 'laws', 'of', 'your', 'country', 'in', 'addition', 'to', 'the', 'terms', 'of', 'thisagreement', 'before', 'downloading', 'copying', 'displaying', 'performingdistributing', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'this', 'work', 'or', 'anyother', 'project', 'gutenbergtm', 'work', 'the', 'foundation', 'makes', 'norepresentations', 'concerning', 'the', 'copyright', 'status', 'of', 'any', 'work', 'in', 'anycountry', 'outside', 'the', 'united', 'statese', 'unless', 'you', 'have', 'removed', 'all', 'references', 'to', 'project', 'gutenberge', 'the', 'following', 'sentence', 'with', 'active', 'links', 'to', 'or', 'otherimmediate', 'access', 'to', 'the', 'full', 'project', 'gutenbergtm', 'license', 'must', 'appearprominently', 'whenever', 'any', 'copy', 'of', 'a', 'project', 'gutenbergtm', 'work', 'any', 'workon', 'which', 'the', 'phrase', 'project', 'gutenberg', 'appears', 'or', 'with', 'which', 'thephrase', 'project', 'gutenberg', 'is', 'associated', 'is', 'accessed', 'displayedperformed', 'viewed', 'copied', 'or', 'distributed', '', 'this', 'ebook', 'is', 'for', 'the', 'use', 'of', 'anyone', 'anywhere', 'in', 'the', 'united', 'states', 'and', '', 'most', 'other', 'parts', 'of', 'the', 'world', 'at', 'no', 'cost', 'and', 'with', 'almost', 'no', '', 'restrictions', 'whatsoever', 'you', 'may', 'copy', 'it', 'give', 'it', 'away', 'or', 'reuse', 'it', '', 'under', 'the', 'terms', 'of', 'the', 'project', 'gutenberg', 'license', 'included', 'with', 'this', '', 'ebook', 'or', 'online', 'at', 'wwwgutenbergorg', 'if', 'you', 'are', 'not', 'located', 'in', 'the', '', 'united', 'states', 'youll', 'have', 'to', 'check', 'the', 'laws', 'of', 'the', 'country', 'where', 'you', '', 'are', 'located', 'before', 'using', 'this', 'ebooke', 'if', 'an', 'individual', 'project', 'gutenbergtm', 'electronic', 'work', 'isderived', 'from', 'texts', 'not', 'protected', 'by', 'us', 'copyright', 'law', 'does', 'notcontain', 'a', 'notice', 'indicating', 'that', 'it', 'is', 'posted', 'with', 'permission', 'of', 'thecopyright', 'holder', 'the', 'work', 'can', 'be', 'copied', 'and', 'distributed', 'to', 'anyone', 'inthe', 'united', 'states', 'without', 'paying', 'any', 'fees', 'or', 'charges', 'if', 'you', 'areredistributing', 'or', 'providing', 'access', 'to', 'a', 'work', 'with', 'the', 'phrase', 'projectgutenberg', 'associated', 'with', 'or', 'appearing', 'on', 'the', 'work', 'you', 'must', 'complyeither', 'with', 'the', 'requirements', 'of', 'paragraphs', 'e', 'through', 'e', 'orobtain', 'permission', 'for', 'the', 'use', 'of', 'the', 'work', 'and', 'the', 'project', 'gutenbergtmtrademark', 'as', 'set', 'forth', 'in', 'paragraphs', 'e', 'or', 'ee', 'if', 'an', 'individual', 'project', 'gutenbergtm', 'electronic', 'work', 'is', 'postedwith', 'the', 'permission', 'of', 'the', 'copyright', 'holder', 'your', 'use', 'and', 'distributionmust', 'comply', 'with', 'both', 'paragraphs', 'e', 'through', 'e', 'and', 'anyadditional', 'terms', 'imposed', 'by', 'the', 'copyright', 'holder', 'additional', 'termswill', 'be', 'linked', 'to', 'the', 'project', 'gutenbergtm', 'license', 'for', 'all', 'worksposted', 'with', 'the', 'permission', 'of', 'the', 'copyright', 'holder', 'found', 'at', 'thebeginning', 'of', 'this', 'worke', 'do', 'not', 'unlink', 'or', 'detach', 'or', 'remove', 'the', 'full', 'project', 'gutenbergtmlicense', 'terms', 'from', 'this', 'work', 'or', 'any', 'files', 'containing', 'a', 'part', 'of', 'thiswork', 'or', 'any', 'other', 'work', 'associated', 'with', 'project', 'gutenbergtme', 'do', 'not', 'copy', 'display', 'perform', 'distribute', 'or', 'redistribute', 'thiselectronic', 'work', 'or', 'any', 'part', 'of', 'this', 'electronic', 'work', 'withoutprominently', 'displaying', 'the', 'sentence', 'set', 'forth', 'in', 'paragraph', 'e', 'withactive', 'links', 'or', 'immediate', 'access', 'to', 'the', 'full', 'terms', 'of', 'the', 'projectgutenbergtm', 'licensee', 'you', 'may', 'convert', 'to', 'and', 'distribute', 'this', 'work', 'in', 'any', 'binarycompressed', 'marked', 'up', 'nonproprietary', 'or', 'proprietary', 'form', 'includingany', 'word', 'processing', 'or', 'hypertext', 'form', 'however', 'if', 'you', 'provide', 'accessto', 'or', 'distribute', 'copies', 'of', 'a', 'project', 'gutenbergtm', 'work', 'in', 'a', 'formatother', 'than', 'plain', 'vanilla', 'ascii', 'or', 'other', 'format', 'used', 'in', 'the', 'officialversion', 'posted', 'on', 'the', 'official', 'project', 'gutenbergtm', 'web', 'sitewwwgutenbergorg', 'you', 'must', 'at', 'no', 'additional', 'cost', 'fee', 'or', 'expenseto', 'the', 'user', 'provide', 'a', 'copy', 'a', 'means', 'of', 'exporting', 'a', 'copy', 'or', 'a', 'meansof', 'obtaining', 'a', 'copy', 'upon', 'request', 'of', 'the', 'work', 'in', 'its', 'original', 'plainvanilla', 'ascii', 'or', 'other', 'form', 'any', 'alternate', 'format', 'must', 'include', 'thefull', 'project', 'gutenbergtm', 'license', 'as', 'specified', 'in', 'paragraph', 'ee', 'do', 'not', 'charge', 'a', 'fee', 'for', 'access', 'to', 'viewing', 'displayingperforming', 'copying', 'or', 'distributing', 'any', 'project', 'gutenbergtm', 'worksunless', 'you', 'comply', 'with', 'paragraph', 'e', 'or', 'ee', 'you', 'may', 'charge', 'a', 'reasonable', 'fee', 'for', 'copies', 'of', 'or', 'providingaccess', 'to', 'or', 'distributing', 'project', 'gutenbergtm', 'electronic', 'worksprovided', 'that', 'you', 'pay', 'a', 'royalty', 'fee', 'of', '', 'of', 'the', 'gross', 'profits', 'you', 'derive', 'from', '', 'the', 'use', 'of', 'project', 'gutenbergtm', 'works', 'calculated', 'using', 'the', 'method', '', 'you', 'already', 'use', 'to', 'calculate', 'your', 'applicable', 'taxes', 'the', 'fee', 'is', 'owed', '', 'to', 'the', 'owner', 'of', 'the', 'project', 'gutenbergtm', 'trademark', 'but', 'he', 'has', '', 'agreed', 'to', 'donate', 'royalties', 'under', 'this', 'paragraph', 'to', 'the', 'project', '', 'gutenberg', 'literary', 'archive', 'foundation', 'royalty', 'payments', 'must', 'be', 'paid', '', 'within', '', 'days', 'following', 'each', 'date', 'on', 'which', 'you', 'prepare', 'or', 'are', '', 'legally', 'required', 'to', 'prepare', 'your', 'periodic', 'tax', 'returns', 'royalty', '', 'payments', 'should', 'be', 'clearly', 'marked', 'as', 'such', 'and', 'sent', 'to', 'the', 'project', '', 'gutenberg', 'literary', 'archive', 'foundation', 'at', 'the', 'address', 'specified', 'in', '', 'section', '', 'information', 'about', 'donations', 'to', 'the', 'project', 'gutenberg', '', 'literary', 'archive', 'foundation', 'you', 'provide', 'a', 'full', 'refund', 'of', 'any', 'money', 'paid', 'by', 'a', 'user', 'who', 'notifies', '', 'you', 'in', 'writing', 'or', 'by', 'email', 'within', '', 'days', 'of', 'receipt', 'that', 'she', '', 'does', 'not', 'agree', 'to', 'the', 'terms', 'of', 'the', 'full', 'project', 'gutenbergtm', '', 'license', 'you', 'must', 'require', 'such', 'a', 'user', 'to', 'return', 'or', 'destroy', 'all', '', 'copies', 'of', 'the', 'works', 'possessed', 'in', 'a', 'physical', 'medium', 'and', 'discontinue', '', 'all', 'use', 'of', 'and', 'all', 'access', 'to', 'other', 'copies', 'of', 'project', 'gutenbergtm', '', 'works', 'you', 'provide', 'in', 'accordance', 'with', 'paragraph', 'f', 'a', 'full', 'refund', 'of', '', 'any', 'money', 'paid', 'for', 'a', 'work', 'or', 'a', 'replacement', 'copy', 'if', 'a', 'defect', 'in', 'the', '', 'electronic', 'work', 'is', 'discovered', 'and', 'reported', 'to', 'you', 'within', '', 'days', 'of', '', 'receipt', 'of', 'the', 'work', 'you', 'comply', 'with', 'all', 'other', 'terms', 'of', 'this', 'agreement', 'for', 'free', '', 'distribution', 'of', 'project', 'gutenbergtm', 'workse', 'if', 'you', 'wish', 'to', 'charge', 'a', 'fee', 'or', 'distribute', 'a', 'projectgutenbergtm', 'electronic', 'work', 'or', 'group', 'of', 'works', 'on', 'different', 'terms', 'thanare', 'set', 'forth', 'in', 'this', 'agreement', 'you', 'must', 'obtain', 'permission', 'in', 'writingfrom', 'both', 'the', 'project', 'gutenberg', 'literary', 'archive', 'foundation', 'and', 'theproject', 'gutenberg', 'trademark', 'llc', 'the', 'owner', 'of', 'the', 'project', 'gutenbergtmtrademark', 'contact', 'the', 'foundation', 'as', 'set', 'forth', 'in', 'section', '', 'belowff', 'project', 'gutenberg', 'volunteers', 'and', 'employees', 'expend', 'considerableeffort', 'to', 'identify', 'do', 'copyright', 'research', 'on', 'transcribe', 'and', 'proofreadworks', 'not', 'protected', 'by', 'us', 'copyright', 'law', 'in', 'creating', 'the', 'projectgutenbergtm', 'collection', 'despite', 'these', 'efforts', 'project', 'gutenbergtmelectronic', 'works', 'and', 'the', 'medium', 'on', 'which', 'they', 'may', 'be', 'stored', 'maycontain', 'defects', 'such', 'as', 'but', 'not', 'limited', 'to', 'incomplete', 'inaccurateor', 'corrupt', 'data', 'transcription', 'errors', 'a', 'copyright', 'or', 'otherintellectual', 'property', 'infringement', 'a', 'defective', 'or', 'damaged', 'disk', 'orother', 'medium', 'a', 'computer', 'virus', 'or', 'computer', 'codes', 'that', 'damage', 'orcannot', 'be', 'read', 'by', 'your', 'equipmentf', 'limited', 'warranty', 'disclaimer', 'of', 'damages', '', 'except', 'for', 'the', 'rightof', 'replacement', 'or', 'refund', 'described', 'in', 'paragraph', 'f', 'the', 'projectgutenberg', 'literary', 'archive', 'foundation', 'the', 'owner', 'of', 'the', 'projectgutenbergtm', 'trademark', 'and', 'any', 'other', 'party', 'distributing', 'a', 'projectgutenbergtm', 'electronic', 'work', 'under', 'this', 'agreement', 'disclaim', 'allliability', 'to', 'you', 'for', 'damages', 'costs', 'and', 'expenses', 'including', 'legalfees', 'you', 'agree', 'that', 'you', 'have', 'no', 'remedies', 'for', 'negligence', 'strictliability', 'breach', 'of', 'warranty', 'or', 'breach', 'of', 'contract', 'except', 'thoseprovided', 'in', 'paragraph', 'f', 'you', 'agree', 'that', 'the', 'foundation', 'thetrademark', 'owner', 'and', 'any', 'distributor', 'under', 'this', 'agreement', 'will', 'not', 'beliable', 'to', 'you', 'for', 'actual', 'direct', 'indirect', 'consequential', 'punitive', 'orincidental', 'damages', 'even', 'if', 'you', 'give', 'notice', 'of', 'the', 'possibility', 'of', 'suchdamagef', 'limited', 'right', 'of', 'replacement', 'or', 'refund', '', 'if', 'you', 'discover', 'adefect', 'in', 'this', 'electronic', 'work', 'within', '', 'days', 'of', 'receiving', 'it', 'you', 'canreceive', 'a', 'refund', 'of', 'the', 'money', 'if', 'any', 'you', 'paid', 'for', 'it', 'by', 'sending', 'awritten', 'explanation', 'to', 'the', 'person', 'you', 'received', 'the', 'work', 'from', 'if', 'youreceived', 'the', 'work', 'on', 'a', 'physical', 'medium', 'you', 'must', 'return', 'the', 'mediumwith', 'your', 'written', 'explanation', 'the', 'person', 'or', 'entity', 'that', 'provided', 'youwith', 'the', 'defective', 'work', 'may', 'elect', 'to', 'provide', 'a', 'replacement', 'copy', 'inlieu', 'of', 'a', 'refund', 'if', 'you', 'received', 'the', 'work', 'electronically', 'the', 'personor', 'entity', 'providing', 'it', 'to', 'you', 'may', 'choose', 'to', 'give', 'you', 'a', 'secondopportunity', 'to', 'receive', 'the', 'work', 'electronically', 'in', 'lieu', 'of', 'a', 'refund', 'ifthe', 'second', 'copy', 'is', 'also', 'defective', 'you', 'may', 'demand', 'a', 'refund', 'in', 'writingwithout', 'further', 'opportunities', 'to', 'fix', 'the', 'problemf', 'except', 'for', 'the', 'limited', 'right', 'of', 'replacement', 'or', 'refund', 'set', 'forthin', 'paragraph', 'f', 'this', 'work', 'is', 'provided', 'to', 'you', 'asis', 'with', 'noother', 'warranties', 'of', 'any', 'kind', 'express', 'or', 'implied', 'including', 'but', 'notlimited', 'to', 'warranties', 'of', 'merchantability', 'or', 'fitness', 'for', 'any', 'purposef', 'some', 'states', 'do', 'not', 'allow', 'disclaimers', 'of', 'certain', 'impliedwarranties', 'or', 'the', 'exclusion', 'or', 'limitation', 'of', 'certain', 'types', 'ofdamages', 'if', 'any', 'disclaimer', 'or', 'limitation', 'set', 'forth', 'in', 'this', 'agreementviolates', 'the', 'law', 'of', 'the', 'state', 'applicable', 'to', 'this', 'agreement', 'theagreement', 'shall', 'be', 'interpreted', 'to', 'make', 'the', 'maximum', 'disclaimer', 'orlimitation', 'permitted', 'by', 'the', 'applicable', 'state', 'law', 'the', 'invalidity', 'orunenforceability', 'of', 'any', 'provision', 'of', 'this', 'agreement', 'shall', 'not', 'void', 'theremaining', 'provisionsf', 'indemnity', '', 'you', 'agree', 'to', 'indemnify', 'and', 'hold', 'the', 'foundation', 'thetrademark', 'owner', 'any', 'agent', 'or', 'employee', 'of', 'the', 'foundation', 'anyoneproviding', 'copies', 'of', 'project', 'gutenbergtm', 'electronic', 'works', 'inaccordance', 'with', 'this', 'agreement', 'and', 'any', 'volunteers', 'associated', 'with', 'theproduction', 'promotion', 'and', 'distribution', 'of', 'project', 'gutenbergtmelectronic', 'works', 'harmless', 'from', 'all', 'liability', 'costs', 'and', 'expensesincluding', 'legal', 'fees', 'that', 'arise', 'directly', 'or', 'indirectly', 'from', 'any', 'ofthe', 'following', 'which', 'you', 'do', 'or', 'cause', 'to', 'occur', 'a', 'distribution', 'of', 'thisor', 'any', 'project', 'gutenbergtm', 'work', 'b', 'alteration', 'modification', 'oradditions', 'or', 'deletions', 'to', 'any', 'project', 'gutenbergtm', 'work', 'and', 'c', 'anydefect', 'you', 'causesection', '', 'information', 'about', 'the', 'mission', 'of', 'project', 'gutenbergtmproject', 'gutenbergtm', 'is', 'synonymous', 'with', 'the', 'free', 'distribution', 'ofelectronic', 'works', 'in', 'formats', 'readable', 'by', 'the', 'widest', 'variety', 'ofcomputers', 'including', 'obsolete', 'old', 'middleaged', 'and', 'new', 'computers', 'itexists', 'because', 'of', 'the', 'efforts', 'of', 'hundreds', 'of', 'volunteers', 'and', 'donationsfrom', 'people', 'in', 'all', 'walks', 'of', 'lifevolunteers', 'and', 'financial', 'support', 'to', 'provide', 'volunteers', 'with', 'theassistance', 'they', 'need', 'are', 'critical', 'to', 'reaching', 'project', 'gutenbergtmsgoals', 'and', 'ensuring', 'that', 'the', 'project', 'gutenbergtm', 'collection', 'willremain', 'freely', 'available', 'for', 'generations', 'to', 'come', 'in', '', 'the', 'projectgutenberg', 'literary', 'archive', 'foundation', 'was', 'created', 'to', 'provide', 'a', 'secureand', 'permanent', 'future', 'for', 'project', 'gutenbergtm', 'and', 'futuregenerations', 'to', 'learn', 'more', 'about', 'the', 'project', 'gutenberg', 'literaryarchive', 'foundation', 'and', 'how', 'your', 'efforts', 'and', 'donations', 'can', 'help', 'seesections', '', 'and', '', 'and', 'the', 'foundation', 'information', 'page', 'atwwwgutenbergorg', 'section', '', 'information', 'about', 'the', 'project', 'gutenbergliterary', 'archive', 'foundationthe', 'project', 'gutenberg', 'literary', 'archive', 'foundation', 'is', 'a', 'non', 'profitc', 'educational', 'corporation', 'organized', 'under', 'the', 'laws', 'of', 'thestate', 'of', 'mississippi', 'and', 'granted', 'tax', 'exempt', 'status', 'by', 'the', 'internalrevenue', 'service', 'the', 'foundations', 'ein', 'or', 'federal', 'tax', 'identificationnumber', 'is', '', 'contributions', 'to', 'the', 'project', 'gutenberg', 'literaryarchive', 'foundation', 'are', 'tax', 'deductible', 'to', 'the', 'full', 'extent', 'permitted', 'byus', 'federal', 'laws', 'and', 'your', 'states', 'lawsthe', 'foundations', 'principal', 'office', 'is', 'in', 'fairbanks', 'alaska', 'with', 'themailing', 'address', 'po', 'box', '', 'fairbanks', 'ak', '', 'but', 'itsvolunteers', 'and', 'employees', 'are', 'scattered', 'throughout', 'numerouslocations', 'its', 'business', 'office', 'is', 'located', 'at', '', 'north', '', 'west', 'saltlake', 'city', 'ut', '', '', '', 'email', 'contact', 'links', 'and', 'up', 'todate', 'contact', 'information', 'can', 'be', 'found', 'at', 'the', 'foundations', 'web', 'site', 'andofficial', 'page', 'at', 'wwwgutenbergorgcontactfor', 'additional', 'contact', 'information', '', '', '', 'dr', 'gregory', 'b', 'newby', '', '', '', 'chief', 'executive', 'and', 'director', '', '', '', 'gbnewbypglaforgsection', '', 'information', 'about', 'donations', 'to', 'the', 'project', 'gutenbergliterary', 'archive', 'foundationproject', 'gutenbergtm', 'depends', 'upon', 'and', 'cannot', 'survive', 'without', 'widespread', 'public', 'support', 'and', 'donations', 'to', 'carry', 'out', 'its', 'mission', 'ofincreasing', 'the', 'number', 'of', 'public', 'domain', 'and', 'licensed', 'works', 'that', 'can', 'befreely', 'distributed', 'in', 'machine', 'readable', 'form', 'accessible', 'by', 'the', 'widestarray', 'of', 'equipment', 'including', 'outdated', 'equipment', 'many', 'small', 'donations', 'to', '', 'are', 'particularly', 'important', 'to', 'maintaining', 'tax', 'exemptstatus', 'with', 'the', 'irsthe', 'foundation', 'is', 'committed', 'to', 'complying', 'with', 'the', 'laws', 'regulatingcharities', 'and', 'charitable', 'donations', 'in', 'all', '', 'states', 'of', 'the', 'unitedstates', 'compliance', 'requirements', 'are', 'not', 'uniform', 'and', 'it', 'takes', 'aconsiderable', 'effort', 'much', 'paperwork', 'and', 'many', 'fees', 'to', 'meet', 'and', 'keep', 'upwith', 'these', 'requirements', 'we', 'do', 'not', 'solicit', 'donations', 'in', 'locationswhere', 'we', 'have', 'not', 'received', 'written', 'confirmation', 'of', 'compliance', 'to', 'senddonations', 'or', 'determine', 'the', 'status', 'of', 'compliance', 'for', 'any', 'particularstate', 'visit', 'wwwgutenbergorgdonatewhile', 'we', 'cannot', 'and', 'do', 'not', 'solicit', 'contributions', 'from', 'states', 'where', 'wehave', 'not', 'met', 'the', 'solicitation', 'requirements', 'we', 'know', 'of', 'no', 'prohibitionagainst', 'accepting', 'unsolicited', 'donations', 'from', 'donors', 'in', 'such', 'states', 'whoapproach', 'us', 'with', 'offers', 'to', 'donateinternational', 'donations', 'are', 'gratefully', 'accepted', 'but', 'we', 'cannot', 'makeany', 'statements', 'concerning', 'tax', 'treatment', 'of', 'donations', 'received', 'fromoutside', 'the', 'united', 'states', 'us', 'laws', 'alone', 'swamp', 'our', 'small', 'staffplease', 'check', 'the', 'project', 'gutenberg', 'web', 'pages', 'for', 'current', 'donationmethods', 'and', 'addresses', 'donations', 'are', 'accepted', 'in', 'a', 'number', 'of', 'otherways', 'including', 'checks', 'online', 'payments', 'and', 'credit', 'card', 'donations', 'todonate', 'please', 'visit', 'wwwgutenbergorgdonatesection', '', 'general', 'information', 'about', 'project', 'gutenbergtm', 'electronic', 'worksprofessor', 'michael', 's', 'hart', 'was', 'the', 'originator', 'of', 'the', 'projectgutenbergtm', 'concept', 'of', 'a', 'library', 'of', 'electronic', 'works', 'that', 'could', 'befreely', 'shared', 'with', 'anyone', 'for', 'forty', 'years', 'he', 'produced', 'anddistributed', 'project', 'gutenbergtm', 'ebooks', 'with', 'only', 'a', 'loose', 'network', 'ofvolunteer', 'supportproject', 'gutenbergtm', 'ebooks', 'are', 'often', 'created', 'from', 'several', 'printededitions', 'all', 'of', 'which', 'are', 'confirmed', 'as', 'not', 'protected', 'by', 'copyright', 'inthe', 'us', 'unless', 'a', 'copyright', 'notice', 'is', 'included', 'thus', 'we', 'do', 'notnecessarily', 'keep', 'ebooks', 'in', 'compliance', 'with', 'any', 'particular', 'papereditionmost', 'people', 'start', 'at', 'our', 'web', 'site', 'which', 'has', 'the', 'main', 'pg', 'searchfacility', 'wwwgutenbergorgthis', 'web', 'site', 'includes', 'information', 'about', 'project', 'gutenbergtmincluding', 'how', 'to', 'make', 'donations', 'to', 'the', 'project', 'gutenberg', 'literaryarchive', 'foundation', 'how', 'to', 'help', 'produce', 'our', 'new', 'ebooks', 'and', 'how', 'tosubscribe', 'to', 'our', 'email', 'newsletter', 'to', 'hear', 'about', 'new', 'ebooks']\n" + ] + } + ], "source": [ - "# your code here" + "# your code here\n", + "removed_ref = list(map(lambda word: reference(word).lower(),prophet))\n", + "print(removed_ref)" ] }, { @@ -135,11 +158,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 29, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['dispense', 'with', 'confidenceif', 'this', 'is', 'my', 'day', 'of', 'harvest', 'in', 'whatfields', 'have', 'i', 'sowed', 'the', 'seed', 'and', 'inwhat', 'unremembered', 'seasonsif', 'this', 'indeed', 'be', 'the', 'hour', 'in', 'which', 'ilift', 'up', 'my', 'lantern', 'it', 'is', 'not', 'my', 'flamethat', 'shall', 'burn', 'thereinempty', 'and', 'dark', 'shall', 'i', 'raise', 'my', 'lanternand', 'the', 'guardian', 'of', 'the', 'night', 'shall', 'fillit', 'with', 'oil', 'and', 'he', 'shall', 'light', 'it', 'alsothese', 'things', 'he', 'said', 'in', 'words', 'but', 'muchin', 'his', 'heart', 'remained', 'unsaid', 'for', 'hehimself', 'could', 'not', 'speak', 'his', 'deepersecretillustration', 'and', 'when', 'he', 'entered', 'into', 'the', 'city', 'allthe', 'people', 'came', 'to', 'meet', 'him', 'and', 'theywere', 'crying', 'out', 'to', 'him', 'as', 'with', 'onevoiceand', 'the', 'elders', 'of', 'the', 'city', 'stood', 'forthand', 'saidgo', 'not', 'yet', 'away', 'from', 'usa', 'noontide', 'have', 'you', 'been', 'in', 'ourtwilight', 'and', 'your', 'youth', 'has', 'given', 'usdreams', 'to', 'dreamno', 'stranger', 'are', 'you', 'among', 'us', 'nora', 'guest', 'but', 'our', 'son', 'and', 'our', 'dearlybelovedsuffer', 'not', 'yet', 'our', 'eyes', 'to', 'hunger', 'foryour', 'faceand', 'the', 'priests', 'and', 'the', 'priestesses', 'saidunto', 'himlet', 'not', 'the', 'waves', 'of', 'the', 'sea', 'separate', 'usnow', 'and', 'the', 'years', 'you', 'have', 'spent', 'in', 'ourmidst', 'become', 'a', 'memoryyou', 'have', 'walked', 'among', 'us', 'a', 'spiritand', 'your', 'shadow', 'has', 'been', 'a', 'lightupon', 'our', 'facesmuch', 'have', 'we', 'loved', 'you', 'but', 'speechlesswas', 'our', 'love', 'and', 'with', 'veils', 'has', 'it', 'beenveiledyet', 'now', 'it', 'cries', 'aloud', 'unto', 'you', 'andwould', 'stand', 'revealed', 'before', 'youand', 'ever', 'has', 'it', 'been', 'that', 'love', 'knowsnot', 'its', 'own', 'depth', 'until', 'the', 'hour', 'ofseparationand', 'others', 'came', 'also', 'and', 'entreated', 'himbut', 'he', 'answered', 'them', 'not', 'he', 'only', 'benthis', 'head', 'and', 'those', 'who', 'stood', 'near', 'sawhis', 'tears', 'falling', 'upon', 'his', 'breastand', 'he', 'and', 'the', 'people', 'proceeded', 'towardsthe', 'great', 'square', 'before', 'the', 'templeand', 'there', 'came', 'out', 'of', 'the', 'sanctuary', 'awoman', 'whose', 'name', 'was', 'almitra', 'and', 'shewas', 'a', 'seeressand', 'he', 'looked', 'upon', 'her', 'with', 'exceedingtenderness', 'for', 'it', 'was', 'she', 'who', 'had', 'firstsought', 'and', 'believed', 'in', 'him', 'when', 'he', 'hadbeen', 'but', 'a', 'day', 'in', 'their', 'city', 'andshe', 'hailed', 'him', 'sayingprophet', 'of', 'god', 'in', 'quest', 'of', 'theuttermost', 'long', 'have', 'you', 'searched', 'thedistances', 'for', 'your', 'shipand', 'now', 'your', 'ship', 'has', 'come', 'and', 'you', 'mustneeds', 'godeep', 'is', 'your', 'longing', 'for', 'the', 'land', 'ofyour', 'memories', 'and', 'the', 'dwelling', 'placeof', 'your', 'greater', 'desires', 'and', 'our', 'lovewould', 'not', 'bind', 'you', 'nor', 'our', 'needs', 'holdyouyet', 'this', 'we', 'ask', 'ere', 'you', 'leave', 'us', 'thatyou', 'speak', 'to', 'us', 'and', 'give', 'us', 'of', 'yourtruthand', 'we', 'will', 'give', 'it', 'unto', 'our', 'childrenand', 'they', 'unto', 'their', 'children', 'and', 'itshall', 'not', 'perishin', 'your', 'aloneness', 'you', 'have', 'watched', 'withour', 'days', 'and', 'in', 'your', 'wakefulness', 'youhave', 'listened', 'to', 'the', 'weeping', 'and', 'thelaughter', 'of', 'our', 'sleepnow', 'therefore', 'disclose', 'us', 'to', 'ourselvesand', 'tell', 'us', 'all', 'that', 'has', 'been', 'shownyou', 'of', 'that', 'which', 'is', 'between', 'birth', 'anddeathand', 'he', 'answeredpeople', 'of', 'orphalese', 'of', 'what', 'can', 'ispeak', 'save', 'of', 'that', 'which', 'is', 'even', 'nowmoving', 'within', 'your', 'souls', 'then', 'said', 'almitra', 'speak', 'to', 'us', 'ofloveand', 'he', 'raised', 'his', 'head', 'and', 'looked', 'uponthe', 'people', 'and', 'there', 'fell', 'a', 'stillnessupon', 'them', 'and', 'with', 'a', 'great', 'voice', 'hesaidwhen', 'love', 'beckons', 'to', 'you', 'follow', 'himthough', 'his', 'ways', 'are', 'hard', 'and', 'steepand', 'when', 'his', 'wings', 'enfold', 'you', 'yield', 'tohimthough', 'the', 'sword', 'hidden', 'among', 'hispinions', 'may', 'wound', 'youand', 'when', 'he', 'speaks', 'to', 'you', 'believe', 'inhimthough', 'his', 'voice', 'may', 'shatter', 'your', 'dreamsas', 'the', 'north', 'wind', 'lays', 'waste', 'the', 'gardenfor', 'even', 'as', 'love', 'crowns', 'you', 'so', 'shallhe', 'crucify', 'you', 'even', 'as', 'he', 'is', 'for', 'yourgrowth', 'so', 'is', 'he', 'for', 'your', 'pruningeven', 'as', 'he', 'ascends', 'to', 'your', 'height', 'andcaresses', 'your', 'tenderest', 'branchesthat', 'quiver', 'in', 'the', 'sunso', 'shall', 'he', 'descend', 'to', 'your', 'roots', 'andshake', 'them', 'in', 'their', 'clinging', 'to', 'theearthlike', 'sheaves', 'of', 'corn', 'he', 'gathers', 'you', 'untohimselfhe', 'threshes', 'you', 'to', 'make', 'you', 'nakedhe', 'sifts', 'you', 'to', 'free', 'you', 'from', 'yourhuskshe', 'grinds', 'you', 'to', 'whitenesshe', 'kneads', 'you', 'until', 'you', 'are', 'pliantand', 'then', 'he', 'assigns', 'you', 'to', 'his', 'sacredfire', 'that', 'you', 'may', 'become', 'sacred', 'breadfor', 'gods', 'sacred', 'feastall', 'these', 'things', 'shall', 'love', 'do', 'unto', 'youthat', 'you', 'may', 'know', 'the', 'secrets', 'of', 'yourheart', 'and', 'in', 'that', 'knowledge', 'become', 'afragment', 'of', 'lifes', 'heartbut', 'if', 'in', 'your', 'fear', 'you', 'would', 'seek', 'onlyloves', 'peace', 'and', 'loves', 'pleasurethen', 'it', 'is', 'better', 'for', 'you', 'that', 'youcover', 'your', 'nakedness', 'and', 'pass', 'out', 'ofloves', 'threshingfloorinto', 'the', 'seasonless', 'world', 'where', 'youshall', 'laugh', 'but', 'not', 'all', 'of', 'yourlaughter', 'and', 'weep', 'but', 'not', 'all', 'of', 'yourtearslove', 'gives', 'naught', 'but', 'itself', 'and', 'takesnaught', 'but', 'from', 'itselflove', 'possesses', 'not', 'nor', 'would', 'it', 'bepossessedfor', 'love', 'is', 'sufficient', 'unto', 'lovewhen', 'you', 'love', 'you', 'should', 'not', 'say', 'godis', 'in', 'my', 'heart', 'but', 'rather', 'i', 'am', 'inthe', 'heart', 'of', 'godand', 'think', 'not', 'you', 'can', 'direct', 'the', 'courseof', 'love', 'for', 'love', 'if', 'it', 'finds', 'youworthy', 'directs', 'your', 'courselove', 'has', 'no', 'other', 'desire', 'but', 'to', 'fulfilitselfbut', 'if', 'you', 'love', 'and', 'must', 'needs', 'havedesires', 'let', 'these', 'be', 'your', 'desiresto', 'melt', 'and', 'be', 'like', 'a', 'running', 'brook', 'thatsings', 'its', 'melody', 'to', 'the', 'night', 'toknow', 'the', 'pain', 'of', 'too', 'much', 'tendernessto', 'be', 'wounded', 'by', 'your', 'own', 'understandingof', 'loveand', 'to', 'bleed', 'willingly', 'and', 'joyfullyto', 'wake', 'at', 'dawn', 'with', 'a', 'winged', 'heart', 'andgive', 'thanks', 'for', 'another', 'day', 'of', 'lovingto', 'rest', 'at', 'the', 'noon', 'hour', 'and', 'meditateloves', 'ecstacyto', 'return', 'home', 'at', 'eventide', 'withgratitudeand', 'then', 'to', 'sleep', 'with', 'a', 'prayer', 'forthe', 'beloved', 'in', 'your', 'heart', 'and', 'a', 'song', 'ofpraise', 'upon', 'your', 'lipsillustration', '', 'then', 'almitra', 'spoke', 'again', 'and', 'saidand', 'what', 'of', 'marriage', 'masterand', 'he', 'answered', 'sayingyou', 'were', 'born', 'together', 'and', 'together', 'youshall', 'be', 'forevermoreyou', 'shall', 'be', 'together', 'when', 'the', 'whitewings', 'of', 'death', 'scatter', 'your', 'daysaye', 'you', 'shall', 'be', 'together', 'even', 'in', 'thesilent', 'memory', 'of', 'godbut', 'let', 'there', 'be', 'spaces', 'in', 'yourtogethernessand', 'let', 'the', 'winds', 'of', 'the', 'heavens', 'dancebetween', 'youlove', 'one', 'another', 'but', 'make', 'not', 'a', 'bond', 'oflovelet', 'it', 'rather', 'be', 'a', 'moving', 'sea', 'betweenthe', 'shores', 'of', 'your', 'soulsfill', 'each', 'others', 'cup', 'but', 'drink', 'not', 'fromone', 'cupgive', 'one', 'another', 'of', 'your', 'bread', 'but', 'eatnot', 'from', 'the', 'same', 'loaf', 'sing', 'anddance', 'together', 'and', 'be', 'joyous', 'but', 'leteach', 'one', 'of', 'you', 'be', 'aloneeven', 'as', 'the', 'strings', 'of', 'a', 'lute', 'are', 'alonethough', 'they', 'quiver', 'with', 'the', 'same', 'musicgive', 'your', 'hearts', 'but', 'not', 'into', 'eachothers', 'keepingfor', 'only', 'the', 'hand', 'of', 'life', 'can', 'containyour', 'heartsand', 'stand', 'together', 'yet', 'not', 'too', 'neartogetherfor', 'the', 'pillars', 'of', 'the', 'temple', 'standapartand', 'the', 'oak', 'tree', 'and', 'the', 'cypress', 'grownot', 'in', 'each', 'others', 'shadowillustration', '', 'and', 'a', 'woman', 'who', 'held', 'a', 'babeagainst', 'her', 'bosom', 'said', 'speak', 'to', 'us', 'ofchildrenand', 'he', 'saidyour', 'children', 'are', 'not', 'your', 'childrenthey', 'are', 'the', 'sons', 'and', 'daughters', 'oflifes', 'longing', 'for', 'itselfthey', 'come', 'through', 'you', 'but', 'not', 'from', 'youand', 'though', 'they', 'are', 'with', 'you', 'yet', 'theybelong', 'not', 'to', 'youyou', 'may', 'give', 'them', 'your', 'love', 'but', 'not', 'yourthoughtsfor', 'they', 'have', 'their', 'own', 'thoughtsyou', 'may', 'house', 'their', 'bodies', 'but', 'not', 'theirsoulsfor', 'their', 'souls', 'dwell', 'in', 'the', 'house', 'oftomorrow', 'which', 'you', 'cannot', 'visit', 'noteven', 'in', 'your', 'dreamsyou', 'may', 'strive', 'to', 'be', 'like', 'them', 'but', 'seeknot', 'to', 'make', 'them', 'like', 'you', 'forlife', 'goes', 'not', 'backward', 'nor', 'tarries', 'withyesterdayyou', 'are', 'the', 'bows', 'from', 'which', 'yourchildren', 'as', 'living', 'arrows', 'are', 'sentforththe', 'archer', 'sees', 'the', 'mark', 'upon', 'the', 'pathof', 'the', 'infinite', 'and', 'he', 'bends', 'you', 'withhis', 'might', 'that', 'his', 'arrows', 'may', 'go', 'swiftand', 'farlet', 'your', 'bending', 'in', 'the', 'archers', 'hand', 'befor', 'gladnessfor', 'even', 'as', 'he', 'loves', 'the', 'arrow', 'thatflies', 'so', 'he', 'loves', 'also', 'the', 'bow', 'that', 'isstable', 'then', 'said', 'a', 'rich', 'man', 'speak', 'to', 'us', 'ofgivingand', 'he', 'answeredyou', 'give', 'but', 'little', 'when', 'you', 'give', 'ofyour', 'possessionsit', 'is', 'when', 'you', 'give', 'of', 'yourself', 'that', 'youtruly', 'givefor', 'what', 'are', 'your', 'possessions', 'but', 'thingsyou', 'keep', 'and', 'guard', 'for', 'fear', 'you', 'may', 'needthem', 'tomorrowand', 'tomorrow', 'what', 'shall', 'tomorrow', 'bringto', 'the', 'overprudent', 'dog', 'burying', 'bonesin', 'the', 'trackless', 'sand', 'as', 'he', 'follows', 'thepilgrims', 'to', 'the', 'holy', 'cityand', 'what', 'is', 'fear', 'of', 'need', 'but', 'needitselfis', 'not', 'dread', 'of', 'thirst', 'when', 'your', 'well', 'isfull', 'the', 'thirst', 'that', 'is', 'unquenchablethere', 'are', 'those', 'who', 'give', 'little', 'of', 'themuch', 'which', 'they', 'haveand', 'they', 'giveit', 'for', 'recognition', 'and', 'their', 'hiddendesire', 'makes', 'their', 'gifts', 'unwholesomeand', 'there', 'are', 'those', 'who', 'have', 'little', 'andgive', 'it', 'allthese', 'are', 'the', 'believers', 'in', 'life', 'andthe', 'bounty', 'of', 'life', 'and', 'their', 'coffer', 'isnever', 'emptythere', 'are', 'those', 'who', 'give', 'with', 'joy', 'andthat', 'joy', 'is', 'their', 'rewardand', 'there', 'are', 'those', 'who', 'give', 'with', 'painand', 'that', 'pain', 'is', 'their', 'baptismand', 'there', 'are', 'those', 'who', 'give', 'and', 'knownot', 'pain', 'in', 'giving', 'nor', 'do', 'they', 'seekjoy', 'nor', 'give', 'with', 'mindfulness', 'ofvirtuethey', 'give', 'as', 'in', 'yonder', 'valley', 'the', 'myrtlebreathes', 'its', 'fragrance', 'into', 'spacethrough', 'the', 'hands', 'of', 'such', 'as', 'these', 'godspeaks', 'and', 'from', 'behind', 'their', 'eyes', 'hesmiles', 'upon', 'the', 'earthillustration', 'it', 'is', 'well', 'to', 'give', 'when', 'asked', 'but', 'itis', 'better', 'to', 'give', 'unasked', 'throughunderstandingand', 'to', 'the', 'openhanded', 'the', 'search', 'forone', 'who', 'shall', 'receive', 'is', 'joy', 'greaterthan', 'givingand', 'is', 'there', 'aught', 'you', 'would', 'withholdall', 'you', 'have', 'shall', 'some', 'day', 'be', 'giventherefore', 'give', 'now', 'that', 'the', 'seasonof', 'giving', 'may', 'be', 'yours', 'and', 'not', 'yourinheritorsyou', 'often', 'say', 'i', 'would', 'give', 'but', 'onlyto', 'the', 'deservingthe', 'trees', 'in', 'your', 'orchard', 'say', 'not', 'sonor', 'the', 'flocks', 'in', 'your', 'pasturethey', 'give', 'that', 'they', 'may', 'live', 'for', 'towithhold', 'is', 'to', 'perishsurely', 'he', 'who', 'is', 'worthy', 'to', 'receive', 'hisdays', 'and', 'his', 'nights', 'is', 'worthy', 'of', 'allelse', 'from', 'youand', 'he', 'who', 'has', 'deserved', 'to', 'drink', 'fromthe', 'ocean', 'of', 'life', 'deserves', 'to', 'fill', 'hiscup', 'from', 'your', 'little', 'streamand', 'what', 'desert', 'greater', 'shall', 'there', 'bethan', 'that', 'which', 'lies', 'in', 'the', 'courageand', 'the', 'confidence', 'nay', 'the', 'charity', 'ofreceivingand', 'who', 'are', 'you', 'that', 'men', 'should', 'rendtheir', 'bosom', 'and', 'unveil', 'their', 'pridethat', 'you', 'may', 'see', 'their', 'worth', 'naked', 'andtheir', 'pride', 'unabashedsee', 'first', 'that', 'you', 'yourself', 'deserve', 'tobe', 'a', 'giver', 'and', 'an', 'instrument', 'of', 'givingfor', 'in', 'truth', 'it', 'is', 'life', 'that', 'gives', 'untolifewhile', 'you', 'who', 'deem', 'yourself', 'agiver', 'are', 'but', 'a', 'witnessand', 'you', 'receiversand', 'you', 'areall', 'receiversassume', 'no', 'weight', 'ofgratitude', 'lest', 'you', 'lay', 'a', 'yoke', 'uponyourself', 'and', 'upon', 'him', 'who', 'givesrather', 'rise', 'together', 'with', 'the', 'giver', 'onhis', 'gifts', 'as', 'on', 'wingsfor', 'to', 'be', 'overmindful', 'of', 'your', 'debt', 'isito', 'doubt', 'his', 'generosity', 'who', 'has', 'thefreehearted', 'earth', 'for', 'mother', 'and', 'godfor', 'fatherillustration', '', 'then', 'an', 'old', 'man', 'a', 'keeper', 'of', 'aninn', 'said', 'speak', 'to', 'us', 'of', 'eating', 'anddrinkingand', 'he', 'saidwould', 'that', 'you', 'could', 'live', 'on', 'thefragrance', 'of', 'the', 'earth', 'and', 'like', 'an', 'airplant', 'be', 'sustained', 'by', 'the', 'lightbut', 'since', 'you', 'must', 'kill', 'to', 'eat', 'and', 'robthe', 'newly', 'born', 'of', 'its', 'mothers', 'milk', 'toquench', 'your', 'thirst', 'let', 'it', 'then', 'be', 'anact', 'of', 'worshipand', 'let', 'your', 'board', 'stand', 'an', 'altar', 'onwhich', 'the', 'pure', 'and', 'the', 'innocent', 'offorest', 'and', 'plain', 'are', 'sacrificed', 'for', 'thatwhich', 'is', 'purer', 'and', 'still', 'more', 'innocentin', 'manwhen', 'you', 'kill', 'a', 'beast', 'say', 'to', 'him', 'in', 'yourheartby', 'the', 'same', 'power', 'that', 'slays', 'you', 'i', 'tooam', 'slain', 'and', 'i', 'too', 'shall', 'be', 'consumedfor', 'the', 'law', 'that', 'delivered', 'you', 'intomy', 'hand', 'shall', 'deliver', 'me', 'into', 'a', 'mightierhandyour', 'blood', 'and', 'my', 'blood', 'is', 'naught', 'butthe', 'sap', 'that', 'feeds', 'the', 'tree', 'of', 'heavenand', 'when', 'you', 'crush', 'an', 'apple', 'with', 'yourteeth', 'say', 'to', 'it', 'in', 'your', 'heartyour', 'seeds', 'shall', 'live', 'in', 'my', 'bodyand', 'the', 'buds', 'of', 'your', 'tomorrow', 'shallblossom', 'in', 'my', 'heartand', 'your', 'fragrance', 'shall', 'be', 'my', 'breathand', 'together', 'we', 'shall', 'rejoice', 'throughall', 'the', 'seasonsand', 'in', 'the', 'autumn', 'when', 'you', 'gatherthe', 'grapes', 'of', 'your', 'vineyards', 'for', 'thewinepress', 'say', 'in', 'your', 'hearti', 'too', 'am', 'a', 'vineyard', 'and', 'my', 'fruit', 'shallbe', 'gathered', 'for', 'the', 'winepressand', 'like', 'new', 'wine', 'i', 'shall', 'be', 'kept', 'ineternal', 'vesselsand', 'in', 'winter', 'when', 'you', 'draw', 'the', 'winelet', 'there', 'be', 'in', 'your', 'heart', 'a', 'songfor', 'each', 'cupand', 'let', 'there', 'be', 'in', 'the', 'song', 'aremembrance', 'for', 'the', 'autumn', 'days', 'and', 'forthe', 'vineyard', 'and', 'for', 'the', 'winepress', 'then', 'a', 'ploughman', 'said', 'speakto', 'us', 'of', 'workand', 'he', 'answered', 'sayingyou', 'work', 'that', 'you', 'may', 'keep', 'pace', 'with', 'theearth', 'and', 'the', 'soul', 'of', 'the', 'earthfor', 'to', 'be', 'idle', 'is', 'to', 'become', 'a', 'strangerunto', 'the', 'seasons', 'and', 'to', 'step', 'out', 'oflifes', 'procession', 'that', 'marches', 'inmajesty', 'and', 'proud', 'submission', 'towards', 'theinfinitewhen', 'you', 'work', 'you', 'are', 'a', 'flute', 'throughwhose', 'heart', 'the', 'whispering', 'of', 'the', 'hoursturns', 'to', 'musicwhich', 'of', 'you', 'would', 'be', 'a', 'reed', 'dumb', 'andsilent', 'when', 'all', 'else', 'sings', 'together', 'inunisonalways', 'you', 'have', 'been', 'told', 'that', 'work', 'is', 'acurse', 'and', 'labour', 'a', 'misfortunebut', 'i', 'say', 'to', 'you', 'that', 'when', 'you', 'work', 'youfulfil', 'a', 'part', 'of', 'earths', 'furthest', 'dreamassigned', 'to', 'you', 'when', 'that', 'dream', 'wasbornand', 'in', 'keeping', 'yourself', 'with', 'labour', 'youare', 'in', 'truth', 'loving', 'lifeand', 'to', 'love', 'life', 'through', 'labour', 'is', 'to', 'beintimate', 'with', 'lifes', 'inmost', 'secretbut', 'if', 'you', 'in', 'your', 'pain', 'call', 'birth', 'anaffliction', 'and', 'the', 'support', 'of', 'the', 'flesha', 'curse', 'written', 'upon', 'your', 'brow', 'then', 'ianswer', 'that', 'naught', 'but', 'the', 'sweat', 'ofyour', 'brow', 'shall', 'wash', 'away', 'that', 'which', 'iswrittenyou', 'have', 'been', 'told', 'also', 'that', 'life', 'isdarkness', 'and', 'in', 'your', 'weariness', 'you', 'echowhat', 'was', 'said', 'by', 'the', 'wearyand', 'i', 'say', 'that', 'life', 'is', 'indeed', 'darknesssave', 'when', 'there', 'is', 'urgeand', 'all', 'urge', 'is', 'blind', 'save', 'when', 'there', 'isknowledgeand', 'all', 'knowledge', 'is', 'vain', 'save', 'whenthere', 'is', 'workand', 'all', 'work', 'is', 'empty', 'save', 'when', 'there', 'isloveand', 'when', 'you', 'work', 'with', 'love', 'you', 'bindyourself', 'to', 'yourself', 'and', 'to', 'oneanother', 'and', 'to', 'godand', 'what', 'is', 'it', 'to', 'work', 'with', 'loveit', 'is', 'to', 'weave', 'the', 'cloth', 'with', 'threadsdrawn', 'from', 'your', 'heart', 'even', 'as', 'if', 'yourbeloved', 'were', 'to', 'wear', 'that', 'clothit', 'is', 'to', 'build', 'a', 'house', 'with', 'affectioneven', 'as', 'if', 'your', 'beloved', 'were', 'to', 'dwell', 'inthat', 'houseit', 'is', 'to', 'sow', 'seeds', 'with', 'tenderness', 'andreap', 'the', 'harvest', 'with', 'joy', 'even', 'as', 'ifyour', 'beloved', 'were', 'to', 'eat', 'the', 'fruitit', 'is', 'to', 'charge', 'all', 'things', 'you', 'fashionwith', 'a', 'breath', 'of', 'your', 'own', 'spiritand', 'to', 'know', 'that', 'all', 'the', 'blessed', 'deadare', 'standing', 'about', 'you', 'and', 'watchingoften', 'have', 'i', 'heard', 'you', 'say', 'as', 'ifspeaking', 'in', 'sleep', 'he', 'who', 'works', 'inmarble', 'and', 'finds', 'the', 'shape', 'of', 'his', 'ownsoul', 'in', 'the', 'stone', 'is', 'nobler', 'than', 'he', 'whoploughs', 'the', 'soil', 'and', 'he', 'who', 'seizesthe', 'rainbow', 'to', 'lay', 'it', 'on', 'a', 'cloth', 'in', 'thelikeness', 'of', 'man', 'is', 'more', 'than', 'he', 'whomakes', 'the', 'sandals', 'for', 'our', 'feetbut', 'i', 'say', 'not', 'in', 'sleep', 'but', 'in', 'theoverwakefulness', 'of', 'noontide', 'that', 'thewind', 'speaks', 'not', 'more', 'sweetly', 'to', 'thegiant', 'oaks', 'than', 'to', 'the', 'least', 'of', 'all', 'theblades', 'of', 'grassand', 'he', 'alone', 'is', 'great', 'who', 'turns', 'thevoice', 'of', 'the', 'wind', 'into', 'a', 'song', 'madesweeter', 'by', 'his', 'own', 'lovingwork', 'is', 'love', 'made', 'visibleand', 'if', 'you', 'cannot', 'work', 'with', 'love', 'butonly', 'with', 'distaste', 'it', 'is', 'better', 'thatyou', 'should', 'leave', 'your', 'work', 'and', 'sit', 'atthe', 'gate', 'of', 'the', 'temple', 'and', 'take', 'alms', 'ofthose', 'who', 'work', 'with', 'joyfor', 'if', 'you', 'bake', 'bread', 'with', 'indifferenceyou', 'bake', 'a', 'bitter', 'bread', 'that', 'feeds', 'buthalf', 'mans', 'hungerand', 'if', 'you', 'grudge', 'the', 'crushing', 'of', 'thegrapes', 'your', 'grudge', 'distils', 'a', 'poison', 'inthe', 'wine', 'and', 'if', 'you', 'sing', 'though', 'asangels', 'and', 'love', 'not', 'the', 'singing', 'youmuffle', 'mans', 'ears', 'to', 'the', 'voices', 'of', 'theday', 'and', 'the', 'voices', 'of', 'the', 'night', 'then', 'a', 'woman', 'said', 'speak', 'to', 'us', 'ofjoy', 'and', 'sorrowand', 'he', 'answeredyour', 'joy', 'is', 'your', 'sorrow', 'unmaskedand', 'the', 'selfsame', 'well', 'from', 'which', 'yourlaughter', 'rises', 'was', 'oftentimes', 'filledwith', 'your', 'tearsand', 'how', 'else', 'can', 'it', 'bethe', 'deeper', 'that', 'sorrow', 'carves', 'into', 'yourbeing', 'the', 'more', 'joy', 'you', 'can', 'containis', 'not', 'the', 'cup', 'that', 'holds', 'your', 'wine', 'thevery', 'cup', 'that', 'was', 'burned', 'in', 'the', 'pottersovenand', 'is', 'not', 'the', 'lute', 'that', 'soothes', 'yourspirit', 'the', 'very', 'wood', 'that', 'was', 'hollowedwith', 'kniveswhen', 'you', 'are', 'joyous', 'look', 'deep', 'into', 'yourheart', 'and', 'you', 'shall', 'find', 'it', 'is', 'onlythat', 'which', 'has', 'given', 'you', 'sorrow', 'that', 'isgiving', 'you', 'joywhen', 'you', 'are', 'sorrowful', 'look', 'again', 'inyour', 'heart', 'and', 'you', 'shall', 'see', 'thatin', 'truth', 'you', 'are', 'weeping', 'for', 'that', 'whichhas', 'been', 'your', 'delightsome', 'of', 'you', 'say', 'joy', 'is', 'greater', 'thansorrow', 'and', 'others', 'say', 'nay', 'sorrow', 'isthe', 'greaterbut', 'i', 'say', 'unto', 'you', 'they', 'areinseparabletogether', 'they', 'come', 'and', 'when', 'one', 'sitsalone', 'with', 'you', 'at', 'your', 'board', 'rememberthat', 'the', 'other', 'is', 'asleep', 'upon', 'your', 'bedverily', 'you', 'are', 'suspended', 'like', 'scalesbetween', 'your', 'sorrow', 'and', 'your', 'joyonly', 'when', 'you', 'are', 'empty', 'are', 'you', 'atstandstill', 'and', 'balancedwhen', 'the', 'treasurekeeper', 'lifts', 'you', 'toweigh', 'his', 'gold', 'and', 'his', 'silver', 'needsmust', 'your', 'joy', 'or', 'your', 'sorrow', 'rise', 'orfall', 'then', 'a', 'mason', 'came', 'forth', 'and', 'saidspeak', 'to', 'us', 'of', 'housesand', 'he', 'answered', 'and', 'saidbuild', 'of', 'your', 'imaginings', 'a', 'bower', 'in', 'thewilderness', 'ere', 'you', 'build', 'a', 'house', 'withinthe', 'city', 'wallsfor', 'even', 'as', 'you', 'have', 'homecomings', 'inyour', 'twilight', 'so', 'has', 'the', 'wanderer', 'inyou', 'the', 'ever', 'distant', 'and', 'aloneyour', 'house', 'is', 'your', 'larger', 'bodyit', 'grows', 'in', 'the', 'sun', 'and', 'sleeps', 'in', 'thestillness', 'of', 'the', 'night', 'and', 'it', 'is', 'notdreamless', 'does', 'not', 'your', 'house', 'dreamand', 'dreaming', 'leave', 'the', 'city', 'for', 'groveor', 'hilltopwould', 'that', 'i', 'could', 'gather', 'your', 'housesinto', 'my', 'hand', 'and', 'like', 'a', 'sower', 'scatterthem', 'in', 'forest', 'and', 'meadowwould', 'the', 'valleys', 'were', 'your', 'streets', 'andthe', 'green', 'paths', 'your', 'alleys', 'that', 'youmight', 'seek', 'one', 'another', 'throughvineyards', 'and', 'come', 'with', 'the', 'fragranceof', 'the', 'earth', 'in', 'your', 'garmentsbut', 'these', 'things', 'are', 'not', 'yet', 'to', 'bein', 'their', 'fear', 'your', 'forefathers', 'gatheredyou', 'too', 'near', 'together', 'and', 'that', 'fearshall', 'endure', 'a', 'little', 'longer', 'a', 'littlelonger', 'shall', 'your', 'city', 'walls', 'separateyour', 'hearths', 'from', 'your', 'fieldsand', 'tell', 'me', 'people', 'of', 'orphalese', 'whathave', 'you', 'in', 'these', 'houses', 'and', 'what', 'is', 'ityou', 'guard', 'with', 'fastened', 'doorshave', 'you', 'peace', 'the', 'quiet', 'urge', 'thatreveals', 'your', 'powerhave', 'you', 'remembrances', 'the', 'glimmeringarches', 'that', 'span', 'the', 'summits', 'of', 'themindhave', 'you', 'beauty', 'that', 'leads', 'the', 'heartfrom', 'things', 'fashioned', 'of', 'wood', 'and', 'stoneto', 'the', 'holy', 'mountaintell', 'me', 'have', 'you', 'these', 'in', 'your', 'housesor', 'have', 'you', 'only', 'comfort', 'and', 'the', 'lustfor', 'comfort', 'that', 'stealthy', 'thing', 'thatenters', 'the', 'house', 'a', 'guest', 'and', 'thenbecomes', 'a', 'host', 'and', 'then', 'a', 'masteray', 'and', 'it', 'becomes', 'a', 'tamer', 'and', 'withhook', 'and', 'scourge', 'makes', 'puppets', 'of', 'yourlarger', 'desiresthough', 'its', 'hands', 'are', 'silken', 'its', 'heartis', 'of', 'ironit', 'lulls', 'you', 'to', 'sleep', 'only', 'to', 'stand', 'byyour', 'bed', 'and', 'jeer', 'at', 'the', 'dignity', 'of', 'thefleshit', 'makes', 'mock', 'of', 'your', 'sound', 'senses', 'andlays', 'them', 'in', 'thistledown', 'like', 'fragilevesselsverily', 'the', 'lust', 'for', 'comfort', 'murdersthe', 'passion', 'of', 'the', 'soul', 'and', 'then', 'walksgrinning', 'in', 'the', 'funeralbut', 'you', 'children', 'of', 'space', 'you', 'restlessin', 'rest', 'you', 'shall', 'not', 'be', 'trapped', 'nortamedyour', 'house', 'shall', 'be', 'not', 'an', 'anchor', 'but', 'amastit', 'shall', 'not', 'be', 'a', 'glistening', 'film', 'thatcovers', 'a', 'wound', 'but', 'an', 'eyelid', 'thatguards', 'the', 'eyeyou', 'shall', 'not', 'fold', 'your', 'wings', 'that', 'youmay', 'pass', 'through', 'doors', 'nor', 'bend', 'yourheads', 'that', 'they', 'strike', 'not', 'against', 'aceiling', 'nor', 'fear', 'to', 'breathe', 'lest', 'wallsshould', 'crack', 'and', 'fall', 'downyou', 'shall', 'not', 'dwell', 'in', 'tombs', 'made', 'by', 'thedead', 'for', 'the', 'livingand', 'though', 'of', 'magnificence', 'andsplendour', 'your', 'house', 'shall', 'not', 'holdyour', 'secret', 'nor', 'shelter', 'your', 'longingfor', 'that', 'which', 'is', 'boundless', 'in', 'youabides', 'in', 'the', 'mansion', 'of', 'the', 'sky', 'whosedoor', 'is', 'the', 'morning', 'mist', 'and', 'whosewindows', 'are', 'the', 'songs', 'and', 'the', 'silencesof', 'night', 'and', 'the', 'weaver', 'said', 'speak', 'to', 'us', 'ofclothesand', 'he', 'answeredyour', 'clothes', 'conceal', 'much', 'of', 'yourbeauty', 'yet', 'they', 'hide', 'not', 'theunbeautifuland', 'though', 'you', 'seek', 'in', 'garments', 'thefreedom', 'of', 'privacy', 'you', 'may', 'find', 'in', 'thema', 'harness', 'and', 'a', 'chainwould', 'that', 'you', 'could', 'meet', 'the', 'sun', 'andthe', 'wind', 'with', 'more', 'of', 'your', 'skin', 'and', 'lessof', 'your', 'raimentfor', 'the', 'breath', 'of', 'life', 'is', 'in', 'thesunlight', 'and', 'the', 'hand', 'of', 'life', 'is', 'in', 'thewindsome', 'of', 'you', 'say', 'it', 'is', 'the', 'north', 'windwho', 'has', 'woven', 'the', 'clothes', 'we', 'wearand', 'i', 'say', 'ay', 'it', 'was', 'the', 'north', 'windbut', 'shame', 'was', 'his', 'loom', 'and', 'thesoftening', 'of', 'the', 'sinews', 'was', 'his', 'threadand', 'when', 'his', 'work', 'was', 'done', 'he', 'laughed', 'inthe', 'forest', 'forget', 'not', 'that', 'modestyis', 'for', 'a', 'shield', 'against', 'the', 'eye', 'of', 'theuncleanand', 'when', 'the', 'unclean', 'shall', 'be', 'no', 'morewhat', 'were', 'modesty', 'but', 'a', 'fetter', 'and', 'afouling', 'of', 'the', 'mindand', 'forget', 'not', 'that', 'the', 'earth', 'delightsto', 'feel', 'your', 'bare', 'feet', 'and', 'the', 'windslong', 'to', 'play', 'with', 'your', 'hair', 'and', 'a', 'merchant', 'said', 'speak', 'to', 'us', 'ofbuying', 'and', 'sellingand', 'he', 'answered', 'and', 'saidto', 'you', 'the', 'earth', 'yields', 'her', 'fruit', 'andyou', 'shall', 'not', 'want', 'if', 'you', 'but', 'know', 'howto', 'fill', 'your', 'handsit', 'is', 'in', 'exchanging', 'the', 'gifts', 'of', 'theearth', 'that', 'you', 'shall', 'find', 'abundance', 'andbe', 'satisfiedyet', 'unless', 'the', 'exchange', 'be', 'in', 'love', 'andkindly', 'justice', 'it', 'will', 'but', 'lead', 'some', 'togreed', 'and', 'others', 'to', 'hungerwhen', 'in', 'the', 'market', 'place', 'you', 'toilers', 'ofthe', 'sea', 'and', 'fields', 'and', 'vineyards', 'meetthe', 'weavers', 'and', 'the', 'potters', 'and', 'thegatherers', 'of', 'spicesinvoke', 'then', 'the', 'master', 'spirit', 'of', 'theearth', 'to', 'come', 'into', 'your', 'midst', 'andsanctify', 'the', 'scales', 'and', 'the', 'reckoningthat', 'weighs', 'value', 'against', 'value', 'andsuffer', 'not', 'the', 'barrenhanded', 'to', 'takepart', 'in', 'your', 'transactions', 'who', 'wouldsell', 'their', 'words', 'for', 'your', 'labourto', 'such', 'men', 'you', 'should', 'saycome', 'with', 'us', 'to', 'the', 'field', 'or', 'go', 'withour', 'brothers', 'to', 'the', 'sea', 'and', 'cast', 'yournetfor', 'the', 'land', 'and', 'the', 'sea', 'shall', 'bebountiful', 'to', 'you', 'even', 'as', 'to', 'usand', 'if', 'there', 'come', 'the', 'singers', 'and', 'thedancers', 'and', 'the', 'flute', 'playersbuy', 'oftheir', 'gifts', 'alsofor', 'they', 'too', 'are', 'gatherers', 'of', 'fruit', 'andfrankincense', 'and', 'that', 'which', 'they', 'bringthough', 'fashioned', 'of', 'dreams', 'is', 'raimentand', 'food', 'for', 'your', 'souland', 'before', 'you', 'leave', 'the', 'market', 'placesee', 'that', 'no', 'one', 'has', 'gone', 'his', 'way', 'withempty', 'handsfor', 'the', 'master', 'spirit', 'of', 'the', 'earth', 'shallnot', 'sleep', 'peacefully', 'upon', 'the', 'windtill', 'the', 'needs', 'of', 'the', 'least', 'of', 'you', 'aresatisfied', 'then', 'one', 'of', 'the', 'judges', 'of', 'the', 'citystood', 'forth', 'and', 'said', 'speak', 'to', 'us', 'ofcrime', 'and', 'punishmentand', 'he', 'answered', 'sayingit', 'is', 'when', 'your', 'spirit', 'goes', 'wanderingupon', 'the', 'windthat', 'you', 'alone', 'and', 'unguarded', 'commita', 'wrong', 'unto', 'others', 'and', 'therefore', 'untoyourselfand', 'for', 'that', 'wrong', 'committed', 'must', 'youknock', 'and', 'wait', 'a', 'while', 'unheeded', 'at', 'thegate', 'of', 'the', 'blessedlike', 'the', 'ocean', 'is', 'your', 'godselfit', 'remains', 'for', 'ever', 'undefiledand', 'like', 'the', 'ether', 'it', 'lifts', 'but', 'thewingedeven', 'like', 'the', 'sun', 'is', 'your', 'godselfit', 'knows', 'not', 'the', 'ways', 'of', 'the', 'mole', 'norseeks', 'it', 'the', 'holes', 'of', 'the', 'serpentbut', 'your', 'godself', 'dwells', 'not', 'alonein', 'your', 'beingmuch', 'in', 'you', 'is', 'still', 'man', 'and', 'much', 'inyou', 'is', 'not', 'yet', 'manbut', 'a', 'shapeless', 'pigmy', 'that', 'walks', 'asleepin', 'the', 'mist', 'searching', 'for', 'its', 'ownawakeningand', 'of', 'the', 'man', 'in', 'you', 'would', 'i', 'now', 'speakfor', 'it', 'is', 'he', 'and', 'not', 'your', 'godself', 'northe', 'pigmy', 'in', 'the', 'mist', 'that', 'knows', 'crimeand', 'the', 'punishment', 'of', 'crimeoftentimes', 'have', 'i', 'heard', 'you', 'speak', 'of', 'onewho', 'commits', 'a', 'wrong', 'as', 'though', 'he', 'werenot', 'one', 'of', 'you', 'but', 'a', 'stranger', 'unto', 'youand', 'an', 'intruder', 'upon', 'your', 'worldbut', 'i', 'say', 'that', 'even', 'as', 'the', 'holy', 'and', 'therighteous', 'cannot', 'rise', 'beyond', 'the', 'highestwhich', 'is', 'in', 'each', 'one', 'of', 'youso', 'the', 'wicked', 'and', 'the', 'weak', 'cannot', 'falllower', 'than', 'the', 'lowest', 'which', 'is', 'in', 'youalsoand', 'as', 'a', 'single', 'leaf', 'turns', 'not', 'yellowbut', 'with', 'the', 'silent', 'knowledge', 'of', 'thewhole', 'tree', 'so', 'the', 'wrongdoer', 'cannotdo', 'wrong', 'without', 'the', 'hidden', 'will', 'of', 'youalllike', 'a', 'procession', 'you', 'walk', 'togethertowards', 'your', 'godselfillustration', 'you', 'are', 'the', 'way', 'and', 'the', 'wayfarersand', 'when', 'one', 'of', 'you', 'falls', 'down', 'he', 'fallsfor', 'those', 'behind', 'him', 'a', 'caution', 'againstthe', 'stumbling', 'stoneay', 'and', 'he', 'falls', 'for', 'those', 'ahead', 'of', 'himwho', 'though', 'faster', 'and', 'surer', 'of', 'foot', 'yetremoved', 'not', 'the', 'stumbling', 'stoneand', 'this', 'also', 'though', 'the', 'word', 'lie', 'heavyupon', 'your', 'heartsthe', 'murdered', 'is', 'not', 'unaccountable', 'forhis', 'own', 'murderand', 'the', 'robbed', 'is', 'not', 'blameless', 'in', 'beingrobbedthe', 'righteous', 'is', 'not', 'innocent', 'of', 'thedeeds', 'of', 'the', 'wickedand', 'the', 'whitehanded', 'is', 'not', 'clean', 'in', 'thedoings', 'of', 'the', 'felonyea', 'the', 'guilty', 'is', 'oftentimes', 'the', 'victimof', 'the', 'injuredand', 'still', 'more', 'often', 'the', 'condemned', 'isthe', 'burden', 'bearer', 'for', 'the', 'guiltlessand', 'unblamedyou', 'cannot', 'separate', 'the', 'just', 'from', 'theunjust', 'and', 'the', 'good', 'from', 'the', 'wickedfor', 'they', 'stand', 'together', 'before', 'the', 'faceof', 'the', 'sun', 'even', 'as', 'the', 'black', 'thread', 'andthe', 'white', 'are', 'woven', 'togetherand', 'when', 'the', 'black', 'thread', 'breaks', 'theweaver', 'shall', 'look', 'into', 'the', 'whole', 'clothand', 'he', 'shall', 'examine', 'the', 'loom', 'alsoif', 'any', 'of', 'you', 'would', 'bring', 'to', 'judgmentthe', 'unfaithful', 'wifelet', 'him', 'also', 'weigh', 'the', 'heart', 'of', 'herhusband', 'in', 'scales', 'and', 'measure', 'his', 'soulwith', 'measurementsand', 'let', 'him', 'who', 'would', 'lash', 'the', 'offenderlook', 'unto', 'the', 'spirit', 'of', 'the', 'offendedand', 'if', 'any', 'of', 'you', 'would', 'punish', 'in', 'thename', 'of', 'righteousness', 'and', 'lay', 'the', 'axunto', 'the', 'evil', 'tree', 'let', 'him', 'see', 'to', 'itsrootsand', 'verily', 'he', 'will', 'find', 'the', 'roots', 'of', 'thegood', 'and', 'the', 'bad', 'the', 'fruitful', 'and', 'thefruitless', 'all', 'entwined', 'together', 'inthe', 'silent', 'heart', 'of', 'the', 'earthand', 'you', 'judges', 'who', 'would', 'be', 'justwhat', 'judgment', 'pronounce', 'you', 'upon', 'himwho', 'though', 'honest', 'in', 'the', 'flesh', 'yet', 'is', 'athief', 'in', 'spiritwhat', 'penalty', 'lay', 'you', 'upon', 'him', 'who', 'slaysin', 'the', 'flesh', 'yet', 'is', 'himself', 'slain', 'in', 'thespiritand', 'how', 'prosecute', 'you', 'him', 'who', 'in', 'actionis', 'a', 'deceiver', 'and', 'an', 'oppressoryet', 'who', 'also', 'is', 'aggrieved', 'and', 'outragedand', 'how', 'shall', 'you', 'punish', 'those', 'whoseremorse', 'is', 'already', 'greater', 'than', 'theirmisdeedsis', 'not', 'remorse', 'the', 'justice', 'which', 'isadministered', 'by', 'that', 'very', 'law', 'which', 'youwould', 'fain', 'serveyet', 'you', 'cannot', 'lay', 'remorse', 'upon', 'theinnocent', 'nor', 'lift', 'it', 'from', 'the', 'heart', 'ofthe', 'guiltyunbidden', 'shall', 'it', 'call', 'in', 'the', 'nightthat', 'men', 'may', 'wake', 'and', 'gaze', 'uponthemselves', 'and', 'you', 'who', 'wouldunderstand', 'justice', 'how', 'shall', 'you', 'unlessyou', 'look', 'upon', 'all', 'deeds', 'in', 'the', 'fullnessof', 'lightonly', 'then', 'shall', 'you', 'know', 'that', 'the', 'erectand', 'the', 'fallen', 'are', 'but', 'one', 'man', 'standingin', 'twilight', 'between', 'the', 'night', 'of', 'hispigmyself', 'and', 'the', 'day', 'of', 'his', 'godselfand', 'that', 'the', 'cornerstone', 'of', 'the', 'templeis', 'not', 'higher', 'than', 'the', 'lowest', 'stone', 'inits', 'foundation', 'then', 'a', 'lawyer', 'said', 'but', 'what', 'of', 'ourlaws', 'masterand', 'he', 'answeredyou', 'delight', 'in', 'laying', 'down', 'lawsyet', 'you', 'delight', 'more', 'in', 'breaking', 'themlike', 'children', 'playing', 'by', 'the', 'ocean', 'whobuild', 'sandtowers', 'with', 'constancy', 'andthen', 'destroy', 'them', 'with', 'laughterbut', 'while', 'you', 'build', 'your', 'sandtowers', 'theocean', 'brings', 'more', 'sand', 'to', 'the', 'shoreand', 'when', 'you', 'destroy', 'them', 'the', 'oceanlaughs', 'with', 'youverily', 'the', 'ocean', 'laughs', 'always', 'with', 'theinnocentbut', 'what', 'of', 'those', 'to', 'whom', 'life', 'is', 'notan', 'ocean', 'and', 'manmade', 'laws', 'are', 'notsandtowersbut', 'to', 'whom', 'life', 'is', 'a', 'rock', 'and', 'the', 'lawa', 'chisel', 'with', 'which', 'they', 'would', 'carve', 'itin', 'their', 'own', 'likeness', 'what', 'of', 'thecripple', 'who', 'hates', 'dancerswhat', 'of', 'the', 'ox', 'who', 'loves', 'his', 'yoke', 'anddeems', 'the', 'elk', 'and', 'deer', 'of', 'the', 'foreststray', 'and', 'vagrant', 'thingswhat', 'of', 'the', 'old', 'serpent', 'who', 'cannot', 'shedhis', 'skin', 'and', 'calls', 'all', 'others', 'naked', 'andshamelessand', 'of', 'him', 'who', 'comes', 'early', 'to', 'theweddingfeast', 'and', 'when', 'overfed', 'andtired', 'goes', 'his', 'way', 'saying', 'that', 'allfeasts', 'are', 'violation', 'and', 'all', 'feasterslawbreakerswhat', 'shall', 'i', 'say', 'of', 'these', 'save', 'thatthey', 'too', 'stand', 'in', 'the', 'sunlight', 'but', 'withtheir', 'backs', 'to', 'the', 'sunthey', 'see', 'only', 'their', 'shadows', 'and', 'theirshadows', 'are', 'their', 'lawsand', 'what', 'is', 'the', 'sun', 'to', 'them', 'but', 'a', 'casterof', 'shadowsand', 'what', 'is', 'it', 'to', 'acknowledge', 'thelaws', 'but', 'to', 'stoop', 'down', 'and', 'trace', 'theirshadows', 'upon', 'the', 'earthbut', 'you', 'who', 'walk', 'facing', 'the', 'sun', 'whatimages', 'drawn', 'on', 'the', 'earth', 'can', 'holdyouyou', 'who', 'travel', 'with', 'the', 'wind', 'whatweathervane', 'shall', 'direct', 'your', 'coursewhat', 'mans', 'law', 'shall', 'bind', 'you', 'if', 'youbreak', 'your', 'yoke', 'but', 'upon', 'no', 'mans', 'prisondoorwhat', 'laws', 'shall', 'you', 'fear', 'if', 'you', 'dancebut', 'stumble', 'against', 'no', 'mans', 'ironchainsand', 'who', 'is', 'he', 'that', 'shall', 'bring', 'you', 'tojudgment', 'if', 'you', 'tear', 'off', 'your', 'garmentyet', 'leave', 'it', 'in', 'no', 'mans', 'pathpeople', 'of', 'orphalese', 'you', 'can', 'muffle', 'thedrum', 'and', 'you', 'can', 'loosen', 'the', 'stringsof', 'the', 'lyre', 'but', 'who', 'shall', 'command', 'theskylark', 'not', 'to', 'sing', 'and', 'an', 'orator', 'said', 'speak', 'to', 'us', 'offreedomand', 'he', 'answeredat', 'the', 'city', 'gate', 'and', 'by', 'your', 'firesidei', 'have', 'seen', 'you', 'prostrate', 'yourself', 'andworship', 'your', 'own', 'freedomeven', 'as', 'slaves', 'humble', 'themselves', 'beforea', 'tyrant', 'and', 'praise', 'him', 'though', 'he', 'slaysthemay', 'in', 'the', 'grove', 'of', 'the', 'temple', 'and', 'inthe', 'shadow', 'of', 'the', 'citadel', 'i', 'have', 'seenthe', 'freest', 'among', 'you', 'wear', 'their', 'freedomas', 'a', 'yoke', 'and', 'a', 'handcuffand', 'my', 'heart', 'bled', 'within', 'me', 'for', 'youcan', 'only', 'be', 'free', 'when', 'even', 'the', 'desireof', 'seeking', 'freedom', 'becomes', 'a', 'harnessto', 'you', 'and', 'when', 'you', 'cease', 'to', 'speak', 'offreedom', 'as', 'a', 'goal', 'and', 'a', 'fulfilmentyou', 'shall', 'be', 'free', 'indeed', 'when', 'yourdays', 'are', 'not', 'without', 'a', 'care', 'nor', 'yournights', 'without', 'a', 'want', 'and', 'a', 'griefbut', 'rather', 'when', 'these', 'things', 'girdle', 'yourlife', 'and', 'yet', 'you', 'rise', 'above', 'them', 'nakedand', 'unboundand', 'how', 'shall', 'you', 'rise', 'beyond', 'your', 'daysand', 'nights', 'unless', 'you', 'break', 'thechains', 'which', 'you', 'at', 'the', 'dawn', 'of', 'yourunderstanding', 'have', 'fastened', 'around', 'yournoon', 'hourin', 'truth', 'that', 'which', 'you', 'call', 'freedom', 'isthe', 'strongest', 'of', 'these', 'chains', 'thoughits', 'links', 'glitter', 'in', 'the', 'sun', 'and', 'dazzleyour', 'eyesand', 'what', 'is', 'it', 'but', 'fragments', 'of', 'yourown', 'self', 'you', 'would', 'discard', 'that', 'you', 'maybecome', 'freeif', 'it', 'is', 'an', 'unjust', 'law', 'you', 'wouldabolish', 'that', 'law', 'was', 'written', 'with', 'yourown', 'hand', 'upon', 'your', 'own', 'foreheadyou', 'cannot', 'erase', 'it', 'by', 'burning', 'your', 'lawbooks', 'nor', 'by', 'washing', 'the', 'foreheads', 'ofyour', 'judges', 'though', 'you', 'pour', 'the', 'seaupon', 'themand', 'if', 'it', 'is', 'a', 'despot', 'you', 'woulddethrone', 'see', 'first', 'that', 'his', 'throneerected', 'within', 'you', 'is', 'destroyedfor', 'how', 'can', 'a', 'tyrant', 'rule', 'the', 'free', 'andthe', 'proud', 'but', 'for', 'a', 'tyranny', 'in', 'theirown', 'freedom', 'and', 'a', 'shame', 'in', 'their', 'ownprideand', 'if', 'it', 'is', 'a', 'care', 'you', 'would', 'cast', 'offthat', 'cart', 'has', 'been', 'chosen', 'by', 'you', 'ratherthan', 'imposed', 'upon', 'youand', 'if', 'it', 'is', 'a', 'fear', 'you', 'would', 'dispelthe', 'seat', 'of', 'that', 'fear', 'is', 'in', 'your', 'heartand', 'not', 'in', 'the', 'hand', 'of', 'the', 'fearedverily', 'all', 'things', 'move', 'within', 'your', 'beingin', 'constant', 'half', 'embrace', 'the', 'desiredand', 'the', 'dreaded', 'the', 'repugnant', 'and', 'thecherished', 'the', 'pursued', 'and', 'that', 'whichyou', 'would', 'escapethese', 'things', 'move', 'within', 'you', 'as', 'lightsand', 'shadows', 'in', 'pairs', 'that', 'clingand', 'when', 'the', 'shadow', 'fades', 'and', 'is', 'nomore', 'the', 'light', 'that', 'lingers', 'becomes', 'ashadow', 'to', 'another', 'lightand', 'thus', 'your', 'freedom', 'when', 'it', 'loses', 'itsfetters', 'becomes', 'itself', 'the', 'fetter', 'of', 'agreater', 'freedom', 'and', 'the', 'priestess', 'spoke', 'againand', 'said', 'speak', 'to', 'us', 'of', 'reason', 'andpassionand', 'he', 'answered', 'sayingyour', 'soul', 'is', 'oftentimes', 'a', 'battlefieldupon', 'which', 'your', 'reason', 'and', 'your', 'judgmentwage', 'war', 'against', 'your', 'passion', 'and', 'yourappetitewould', 'that', 'i', 'could', 'be', 'the', 'peacemaker', 'inyour', 'soul', 'that', 'i', 'might', 'turn', 'the', 'discordand', 'the', 'rivalry', 'of', 'your', 'elements', 'intooneness', 'and', 'melodybut', 'how', 'shall', 'i', 'unless', 'you', 'yourselvesbe', 'also', 'the', 'peacemakers', 'nay', 'the', 'loversof', 'all', 'your', 'elementsyour', 'reason', 'and', 'your', 'passion', 'are', 'therudder', 'and', 'the', 'sails', 'of', 'your', 'seafaringsoulif', 'either', 'your', 'sails', 'or', 'your', 'rudder', 'bebroken', 'you', 'can', 'but', 'toss', 'and', 'driftor', 'else', 'be', 'held', 'at', 'a', 'standstill', 'inmidseas', 'for', 'reason', 'ruling', 'aloneis', 'a', 'force', 'confining', 'and', 'passionunattended', 'is', 'a', 'flame', 'that', 'burns', 'to', 'itsown', 'destructiontherefore', 'let', 'your', 'soul', 'exalt', 'yourreason', 'to', 'the', 'height', 'of', 'passion', 'that', 'itmay', 'singand', 'let', 'it', 'direct', 'your', 'passion', 'withreason', 'that', 'your', 'passion', 'may', 'livethrough', 'its', 'own', 'daily', 'resurrectionand', 'like', 'the', 'phoenix', 'rise', 'above', 'its', 'ownashesi', 'would', 'have', 'you', 'consider', 'your', 'judgmentand', 'your', 'appetite', 'even', 'as', 'you', 'would', 'twoloved', 'guests', 'in', 'your', 'housesurely', 'you', 'would', 'not', 'honour', 'one', 'guestabove', 'the', 'other', 'for', 'he', 'who', 'is', 'moremindful', 'of', 'one', 'loses', 'the', 'love', 'and', 'thefaith', 'of', 'bothamong', 'the', 'hills', 'when', 'you', 'sit', 'in', 'thecool', 'shade', 'of', 'the', 'white', 'poplars', 'sharingthe', 'peace', 'and', 'serenity', 'of', 'distant', 'fieldsand', 'meadowsthen', 'let', 'your', 'heart', 'say', 'insilence', 'god', 'rests', 'in', 'reasonand', 'when', 'the', 'storm', 'comes', 'and', 'themighty', 'wind', 'shakes', 'the', 'forestand', 'thunder', 'and', 'lightning', 'proclaim', 'themajesty', 'of', 'the', 'skythen', 'let', 'your', 'heartsay', 'in', 'awe', 'god', 'moves', 'in', 'passionand', 'since', 'you', 'are', 'a', 'breath', 'in', 'godssphere', 'and', 'a', 'leaf', 'in', 'gods', 'forest', 'youtoo', 'should', 'rest', 'in', 'reason', 'and', 'move', 'inpassion', 'and', 'a', 'woman', 'spoke', 'saying', 'tell', 'usof', 'painand', 'he', 'saidyour', 'pain', 'is', 'the', 'breaking', 'of', 'the', 'shellthat', 'encloses', 'your', 'understandingeven', 'as', 'the', 'stone', 'of', 'the', 'fruit', 'mustbreak', 'that', 'its', 'heart', 'may', 'stand', 'in', 'thesun', 'so', 'must', 'you', 'know', 'painand', 'could', 'you', 'keep', 'your', 'heart', 'in', 'wonderat', 'the', 'daily', 'miracles', 'of', 'your', 'life', 'yourpain', 'would', 'not', 'seem', 'less', 'wondrous', 'thanyour', 'joyand', 'you', 'would', 'accept', 'the', 'seasons', 'of', 'yourheart', 'even', 'as', 'you', 'have', 'always', 'acceptedthe', 'seasons', 'that', 'pass', 'over', 'your', 'fieldsand', 'you', 'would', 'watch', 'with', 'serenitythrough', 'the', 'winters', 'of', 'your', 'griefmuch', 'of', 'your', 'pain', 'is', 'selfchosenit', 'is', 'the', 'bitter', 'potion', 'by', 'which', 'thephysician', 'within', 'you', 'heals', 'your', 'sickselftherefore', 'trust', 'the', 'physician', 'and', 'drinkhis', 'remedy', 'in', 'silence', 'and', 'tranquillityfor', 'his', 'hand', 'though', 'heavy', 'and', 'hard', 'isguided', 'by', 'the', 'tender', 'hand', 'of', 'the', 'unseenand', 'the', 'cup', 'he', 'brings', 'though', 'it', 'burnyour', 'lips', 'has', 'been', 'fashioned', 'of', 'theclay', 'which', 'the', 'potter', 'has', 'moistened', 'withhis', 'own', 'sacred', 'tears', 'and', 'a', 'man', 'said', 'speak', 'to', 'us', 'ofselfknowledgeand', 'he', 'answered', 'sayingyour', 'hearts', 'know', 'in', 'silence', 'the', 'secretsof', 'the', 'days', 'and', 'the', 'nightsbut', 'your', 'ears', 'thirst', 'for', 'the', 'sound', 'ofyour', 'hearts', 'knowledgeyou', 'would', 'know', 'in', 'words', 'that', 'which', 'youhave', 'always', 'known', 'in', 'thoughtyou', 'would', 'touch', 'with', 'your', 'fingers', 'thenaked', 'body', 'of', 'your', 'dreamsand', 'it', 'is', 'well', 'you', 'shouldthe', 'hidden', 'wellspring', 'of', 'your', 'soul', 'mustneeds', 'rise', 'and', 'run', 'murmuring', 'to', 'the', 'seaand', 'the', 'treasure', 'of', 'your', 'infinite', 'depthswould', 'be', 'revealed', 'to', 'your', 'eyesbut', 'let', 'there', 'be', 'no', 'scales', 'to', 'weigh', 'yourunknown', 'treasureand', 'seek', 'not', 'the', 'depths', 'of', 'yourknowledge', 'with', 'staff', 'or', 'soundinglinefor', 'self', 'is', 'a', 'sea', 'boundless', 'andmeasurelesssay', 'not', 'i', 'have', 'found', 'the', 'truth', 'butrather', 'i', 'have', 'found', 'a', 'truthsay', 'not', 'i', 'have', 'found', 'the', 'path', 'of', 'thesoul', 'say', 'rather', 'i', 'have', 'met', 'the', 'soulwalking', 'upon', 'my', 'pathfor', 'the', 'soul', 'walks', 'upon', 'all', 'pathsthe', 'soul', 'walks', 'not', 'upon', 'a', 'line', 'neitherdoes', 'it', 'grow', 'like', 'a', 'reedthe', 'soul', 'unfolds', 'itself', 'like', 'a', 'lotus', 'ofcountless', 'petalsillustration', '', 'then', 'said', 'a', 'teacher', 'speak', 'to', 'us', 'ofteachingand', 'he', 'saidno', 'man', 'can', 'reveal', 'to', 'you', 'aught', 'but', 'thatwhich', 'already', 'lies', 'half', 'asleep', 'in', 'thedawning', 'of', 'your', 'knowledgethe', 'teacher', 'who', 'walks', 'in', 'the', 'shadow', 'ofthe', 'temple', 'among', 'his', 'followers', 'givesnot', 'of', 'his', 'wisdom', 'but', 'rather', 'of', 'hisfaith', 'and', 'his', 'lovingnessif', 'he', 'is', 'indeed', 'wise', 'he', 'does', 'not', 'bidyou', 'enter', 'the', 'house', 'of', 'his', 'wisdom', 'butrather', 'leads', 'you', 'to', 'the', 'threshold', 'ofyour', 'own', 'mindthe', 'astronomer', 'may', 'speak', 'to', 'you', 'of', 'hisunderstanding', 'of', 'space', 'but', 'he', 'cannotgive', 'you', 'his', 'understandingthe', 'musician', 'may', 'sing', 'to', 'you', 'of', 'therhythm', 'which', 'is', 'in', 'all', 'space', 'but', 'hecannot', 'give', 'you', 'the', 'ear', 'which', 'arreststhe', 'rhythm', 'nor', 'the', 'voice', 'that', 'echoes', 'itand', 'he', 'who', 'is', 'versed', 'in', 'the', 'scienceof', 'numbers', 'can', 'tell', 'of', 'the', 'regionsof', 'weight', 'and', 'measure', 'but', 'he', 'cannotconduct', 'you', 'thitherfor', 'the', 'vision', 'of', 'one', 'man', 'lends', 'not', 'itswings', 'to', 'another', 'manand', 'even', 'as', 'each', 'one', 'of', 'you', 'stands', 'alonein', 'gods', 'knowledge', 'so', 'must', 'each', 'one', 'ofyou', 'be', 'alone', 'in', 'his', 'knowledge', 'of', 'god', 'andin', 'his', 'understanding', 'of', 'the', 'earth', 'and', 'a', 'youth', 'said', 'speak', 'to', 'us', 'offriendshipand', 'he', 'answered', 'sayingyour', 'friend', 'is', 'your', 'needs', 'answeredhe', 'is', 'your', 'field', 'which', 'you', 'sow', 'with', 'loveand', 'reap', 'with', 'thanksgivingand', 'he', 'is', 'your', 'board', 'and', 'your', 'firesidefor', 'you', 'come', 'to', 'him', 'with', 'your', 'hungerand', 'you', 'seek', 'him', 'for', 'peacewhen', 'your', 'friend', 'speaks', 'his', 'mind', 'youfear', 'not', 'the', 'nay', 'in', 'your', 'own', 'mind', 'nordo', 'you', 'withhold', 'the', 'ayand', 'when', 'he', 'is', 'silent', 'your', 'heart', 'ceasesnot', 'to', 'listen', 'to', 'his', 'heartfor', 'without', 'words', 'in', 'friendship', 'allthoughts', 'all', 'desires', 'all', 'expectationsare', 'born', 'and', 'shared', 'with', 'joy', 'that', 'isunacclaimedwhen', 'you', 'part', 'from', 'your', 'friend', 'yougrieve', 'notfor', 'that', 'which', 'you', 'love', 'most', 'in', 'himmay', 'be', 'clearer', 'in', 'his', 'absence', 'as', 'themountain', 'to', 'the', 'climber', 'is', 'clearerfrom', 'the', 'plain', 'and', 'let', 'there', 'be', 'nopurpose', 'in', 'friendship', 'save', 'the', 'deepeningof', 'the', 'spiritfor', 'love', 'that', 'seeks', 'aught', 'but', 'thedisclosure', 'of', 'its', 'own', 'mystery', 'is', 'notlove', 'but', 'a', 'net', 'cast', 'forth', 'and', 'only', 'theunprofitable', 'is', 'caughtand', 'let', 'your', 'best', 'be', 'for', 'your', 'friendif', 'he', 'must', 'know', 'the', 'ebb', 'of', 'your', 'tidelet', 'him', 'know', 'its', 'flood', 'alsofor', 'what', 'is', 'your', 'friend', 'that', 'you', 'shouldseek', 'him', 'with', 'hours', 'to', 'killseek', 'him', 'always', 'with', 'hours', 'to', 'livefor', 'it', 'is', 'his', 'to', 'fill', 'your', 'need', 'but', 'notyour', 'emptinessand', 'in', 'the', 'sweetness', 'of', 'friendshiplet', 'there', 'be', 'laughter', 'and', 'sharing', 'ofpleasuresfor', 'in', 'the', 'dew', 'of', 'little', 'thingsthe', 'heart', 'finds', 'its', 'morning', 'and', 'isrefreshed', 'and', 'then', 'a', 'scholar', 'said', 'speak', 'oftalkingand', 'he', 'answered', 'sayingyou', 'talk', 'when', 'you', 'cease', 'to', 'be', 'at', 'peacewith', 'your', 'thoughtsand', 'when', 'you', 'can', 'no', 'longer', 'dwell', 'in', 'thesolitude', 'of', 'your', 'heart', 'you', 'live', 'in', 'yourlips', 'and', 'sound', 'is', 'a', 'diversion', 'and', 'apastimeand', 'in', 'much', 'of', 'your', 'talking', 'thinking', 'ishalf', 'murderedfor', 'thought', 'is', 'a', 'bird', 'of', 'space', 'that', 'ina', 'cage', 'of', 'words', 'may', 'indeed', 'unfold', 'itswings', 'but', 'cannot', 'flythere', 'are', 'those', 'among', 'you', 'who', 'seek', 'thetalkative', 'through', 'fear', 'of', 'being', 'alonethe', 'silence', 'of', 'aloneness', 'reveals', 'totheir', 'eyes', 'their', 'naked', 'selves', 'and', 'theywould', 'escapeand', 'there', 'are', 'those', 'who', 'talk', 'andwithout', 'knowledge', 'or', 'forethought', 'reveala', 'truth', 'which', 'they', 'themselves', 'do', 'notunderstandand', 'there', 'are', 'those', 'who', 'have', 'the', 'truthwithin', 'them', 'but', 'they', 'tell', 'it', 'not', 'inwordsin', 'the', 'bosom', 'of', 'such', 'as', 'these', 'the', 'spiritdwells', 'in', 'rhythmic', 'silencewhen', 'you', 'meet', 'your', 'friend', 'on', 'theroadside', 'or', 'in', 'the', 'market', 'place', 'let', 'thespirit', 'in', 'you', 'move', 'your', 'lips', 'and', 'directyour', 'tonguelet', 'the', 'voice', 'within', 'your', 'voice', 'speak', 'tothe', 'ear', 'of', 'his', 'earfor', 'his', 'soul', 'will', 'keep', 'the', 'truth', 'ofyour', 'heart', 'as', 'the', 'taste', 'of', 'the', 'wine', 'isrememberedwhen', 'the', 'colour', 'is', 'forgotten', 'and', 'thevessel', 'is', 'no', 'more', 'and', 'an', 'astronomer', 'said', 'master', 'whatof', 'timeand', 'he', 'answeredyou', 'would', 'measure', 'time', 'the', 'measurelessand', 'the', 'immeasurableyou', 'would', 'adjust', 'your', 'conduct', 'andeven', 'direct', 'the', 'course', 'of', 'your', 'spiritaccording', 'to', 'hours', 'and', 'seasonsof', 'time', 'you', 'would', 'make', 'a', 'stream', 'uponwhose', 'bank', 'you', 'would', 'sit', 'and', 'watch', 'itsflowingyet', 'the', 'timeless', 'in', 'you', 'is', 'aware', 'oflifes', 'timelessnessand', 'knows', 'that', 'yesterday', 'is', 'but', 'todaysmemory', 'and', 'tomorrow', 'is', 'todays', 'dreamand', 'that', 'that', 'which', 'sings', 'andcontemplates', 'in', 'you', 'is', 'still', 'dwellingwithin', 'the', 'bounds', 'of', 'that', 'first', 'momentwhich', 'scattered', 'the', 'stars', 'into', 'spacewho', 'among', 'you', 'does', 'not', 'feel', 'that', 'hispower', 'to', 'love', 'is', 'boundlessand', 'yet', 'who', 'does', 'not', 'feel', 'that', 'verylove', 'though', 'boundless', 'encompassedwithin', 'the', 'centre', 'of', 'his', 'being', 'andmoving', 'not', 'from', 'love', 'thought', 'to', 'lovethought', 'nor', 'from', 'love', 'deeds', 'to', 'otherlove', 'deedsand', 'is', 'not', 'time', 'even', 'as', 'love', 'isundivided', 'and', 'pacelessbut', 'if', 'in', 'your', 'thought', 'you', 'must', 'measuretime', 'into', 'seasons', 'let', 'each', 'seasonencircle', 'all', 'the', 'other', 'seasonsand', 'let', 'today', 'embrace', 'the', 'past', 'withremembrance', 'and', 'the', 'future', 'with', 'longing', 'and', 'one', 'of', 'the', 'elders', 'of', 'the', 'citysaid', 'speak', 'to', 'us', 'of', 'good', 'and', 'eviland', 'he', 'answeredof', 'the', 'good', 'in', 'you', 'i', 'can', 'speak', 'but', 'notof', 'the', 'evilfor', 'what', 'is', 'evil', 'but', 'good', 'tortured', 'byits', 'own', 'hunger', 'and', 'thirstverily', 'when', 'good', 'is', 'hungry', 'it', 'seeks', 'foodeven', 'in', 'dark', 'caves', 'and', 'when', 'it', 'thirstsit', 'drinks', 'even', 'of', 'dead', 'watersyou', 'are', 'good', 'when', 'you', 'are', 'one', 'withyourselfyet', 'when', 'you', 'are', 'not', 'one', 'with', 'yourselfyou', 'are', 'not', 'evilfor', 'a', 'divided', 'house', 'is', 'not', 'a', 'den', 'ofthieves', 'it', 'is', 'only', 'a', 'divided', 'houseand', 'a', 'ship', 'without', 'rudder', 'may', 'wanderaimlessly', 'among', 'perilous', 'isles', 'yet', 'sinknot', 'to', 'the', 'bottom', 'you', 'are', 'good', 'whenyou', 'strive', 'to', 'give', 'of', 'yourselfyet', 'you', 'are', 'not', 'evil', 'when', 'you', 'seek', 'gainfor', 'yourselffor', 'when', 'you', 'strive', 'for', 'gain', 'you', 'arebut', 'a', 'root', 'that', 'clings', 'to', 'the', 'earth', 'andsucks', 'at', 'her', 'breastsurely', 'the', 'fruit', 'cannot', 'say', 'to', 'the', 'rootbe', 'like', 'me', 'ripe', 'and', 'full', 'and', 'evergiving', 'of', 'your', 'abundancefor', 'to', 'the', 'fruit', 'giving', 'is', 'a', 'need', 'asreceiving', 'is', 'a', 'need', 'to', 'the', 'rootyou', 'are', 'good', 'when', 'you', 'are', 'fully', 'awake', 'inyour', 'speechyet', 'you', 'are', 'not', 'evil', 'when', 'you', 'sleepwhile', 'your', 'tongue', 'staggers', 'withoutpurposeand', 'even', 'stumbling', 'speech', 'may', 'strengthena', 'weak', 'tongueyou', 'are', 'good', 'when', 'you', 'walk', 'to', 'your', 'goalfirmly', 'and', 'with', 'bold', 'stepsyet', 'you', 'are', 'not', 'evil', 'when', 'you', 'go', 'thitherlimping', 'even', 'those', 'who', 'limp', 'go', 'notbackwardbut', 'you', 'who', 'are', 'strong', 'and', 'swift', 'seethat', 'you', 'do', 'not', 'limp', 'before', 'the', 'lamedeeming', 'it', 'kindnessyou', 'are', 'good', 'in', 'countless', 'ways', 'and', 'youare', 'not', 'evil', 'when', 'you', 'are', 'not', 'goodyou', 'are', 'only', 'loitering', 'and', 'sluggardpity', 'that', 'the', 'stags', 'cannot', 'teachswiftness', 'to', 'the', 'turtlesin', 'your', 'longing', 'for', 'your', 'giant', 'self', 'liesyour', 'goodness', 'and', 'that', 'longing', 'is', 'inall', 'of', 'youbut', 'in', 'some', 'of', 'you', 'that', 'longing', 'is', 'atorrent', 'rushing', 'with', 'might', 'to', 'the', 'seacarrying', 'the', 'secrets', 'of', 'the', 'hillsidesand', 'the', 'songs', 'of', 'the', 'forestand', 'in', 'others', 'it', 'is', 'a', 'flat', 'stream', 'thatloses', 'itself', 'in', 'angles', 'and', 'bends', 'andlingers', 'before', 'it', 'reaches', 'the', 'shorebut', 'let', 'not', 'him', 'who', 'longs', 'much', 'say', 'tohim', 'who', 'longs', 'little', 'wherefore', 'areyou', 'slow', 'and', 'haltingfor', 'the', 'truly', 'good', 'ask', 'not', 'the', 'nakedwhere', 'is', 'your', 'garment', 'nor', 'thehouseless', 'what', 'has', 'befallen', 'yourhouse', 'then', 'a', 'priestess', 'said', 'speak', 'to', 'usof', 'prayerand', 'he', 'answered', 'sayingyou', 'pray', 'in', 'your', 'distress', 'and', 'in', 'yourneed', 'would', 'that', 'you', 'might', 'pray', 'alsoin', 'the', 'fullness', 'of', 'your', 'joy', 'and', 'in', 'yourdays', 'of', 'abundancefor', 'what', 'is', 'prayer', 'but', 'the', 'expansion', 'ofyourself', 'into', 'the', 'living', 'etherand', 'if', 'it', 'is', 'for', 'your', 'comfort', 'to', 'pouryour', 'darkness', 'into', 'space', 'it', 'is', 'also', 'foryour', 'delight', 'to', 'pour', 'forth', 'the', 'dawningof', 'your', 'heartand', 'if', 'you', 'cannot', 'but', 'weep', 'when', 'yoursoul', 'summons', 'you', 'to', 'prayer', 'she', 'shouldspur', 'you', 'again', 'and', 'yet', 'again', 'thoughweeping', 'until', 'you', 'shall', 'come', 'laughingwhen', 'you', 'pray', 'you', 'rise', 'to', 'meet', 'in', 'theair', 'those', 'who', 'are', 'praying', 'at', 'that', 'veryhour', 'and', 'whom', 'save', 'in', 'prayer', 'youmay', 'not', 'meettherefore', 'let', 'your', 'visit', 'to', 'that', 'templeinvisible', 'be', 'for', 'naught', 'but', 'ecstasy', 'andsweet', 'communionfor', 'if', 'you', 'should', 'enter', 'the', 'temple', 'forno', 'other', 'purpose', 'than', 'asking', 'you', 'shallnot', 'receiveand', 'if', 'you', 'should', 'enter', 'into', 'it', 'tohumble', 'yourself', 'you', 'shall', 'not', 'be', 'liftedor', 'even', 'if', 'you', 'should', 'enter', 'into', 'it', 'tobeg', 'for', 'the', 'good', 'of', 'others', 'you', 'shall', 'notbe', 'heardit', 'is', 'enough', 'that', 'you', 'enter', 'the', 'templeinvisiblei', 'cannot', 'teach', 'you', 'how', 'to', 'pray', 'in', 'wordsgod', 'listens', 'not', 'to', 'your', 'words', 'save', 'whenhe', 'himself', 'utters', 'them', 'through', 'yourlipsand', 'i', 'cannot', 'teach', 'you', 'the', 'prayer', 'of', 'theseas', 'and', 'the', 'forests', 'and', 'the', 'mountainsbut', 'you', 'who', 'are', 'born', 'of', 'themountains', 'and', 'the', 'forests', 'and', 'the', 'seascan', 'find', 'their', 'prayer', 'in', 'your', 'heartand', 'if', 'you', 'but', 'listen', 'in', 'the', 'stillnessof', 'the', 'night', 'you', 'shall', 'hear', 'them', 'sayingin', 'silenceour', 'god', 'who', 'art', 'our', 'winged', 'self', 'it', 'isthy', 'will', 'in', 'us', 'that', 'willethit', 'is', 'thy', 'desire', 'in', 'us', 'that', 'desirethit', 'is', 'thy', 'urge', 'in', 'us', 'that', 'would', 'turn', 'ournights', 'which', 'are', 'thine', 'into', 'days', 'whichare', 'thine', 'alsowe', 'cannot', 'ask', 'thee', 'for', 'aught', 'for', 'thouknowest', 'our', 'needs', 'before', 'they', 'are', 'bornin', 'usthou', 'art', 'our', 'need', 'and', 'in', 'giving', 'us', 'moreof', 'thyself', 'thou', 'givest', 'us', 'allillustration', '', 'then', 'a', 'hermit', 'who', 'visited', 'the', 'cityonce', 'a', 'year', 'came', 'forth', 'and', 'said', 'speakto', 'us', 'of', 'pleasureand', 'he', 'answered', 'sayingpleasure', 'is', 'a', 'freedomsongbut', 'it', 'is', 'not', 'freedomit', 'is', 'the', 'blossoming', 'of', 'your', 'desiresbut', 'it', 'is', 'not', 'their', 'fruitit', 'is', 'a', 'depth', 'calling', 'unto', 'a', 'heightbut', 'it', 'is', 'not', 'the', 'deep', 'nor', 'the', 'highit', 'is', 'the', 'caged', 'taking', 'wingbut', 'it', 'is', 'not', 'space', 'encompasseday', 'in', 'very', 'truth', 'pleasure', 'is', 'afreedomsongand', 'i', 'fain', 'would', 'have', 'you', 'sing', 'it', 'withfullness', 'of', 'heart', 'yet', 'i', 'would', 'not', 'haveyou', 'lose', 'your', 'hearts', 'in', 'the', 'singingsome', 'of', 'your', 'youth', 'seek', 'pleasure', 'as', 'ifit', 'were', 'all', 'and', 'they', 'are', 'judged', 'andrebuked', 'i', 'would', 'not', 'judge', 'norrebuke', 'them', 'i', 'would', 'have', 'them', 'seekfor', 'they', 'shall', 'find', 'pleasure', 'but', 'nother', 'aloneseven', 'are', 'her', 'sisters', 'and', 'the', 'least', 'ofthem', 'is', 'more', 'beautiful', 'than', 'pleasurehave', 'you', 'not', 'heard', 'of', 'the', 'man', 'who', 'wasdigging', 'in', 'the', 'earth', 'for', 'roots', 'and', 'founda', 'treasureand', 'some', 'of', 'your', 'elders', 'rememberpleasures', 'with', 'regret', 'like', 'wrongscommitted', 'in', 'drunkennessbut', 'regret', 'is', 'the', 'beclouding', 'of', 'the', 'mindand', 'not', 'its', 'chastisementthey', 'should', 'remember', 'their', 'pleasureswith', 'gratitude', 'as', 'they', 'would', 'theharvest', 'of', 'a', 'summeryet', 'if', 'it', 'comforts', 'them', 'to', 'regret', 'letthem', 'be', 'comfortedand', 'there', 'are', 'among', 'you', 'those', 'whoare', 'neither', 'young', 'to', 'seek', 'nor', 'old', 'torememberand', 'in', 'their', 'fear', 'of', 'seeking', 'andremembering', 'they', 'shun', 'all', 'pleasureslest', 'they', 'neglect', 'the', 'spirit', 'or', 'offendagainst', 'itbut', 'even', 'in', 'their', 'foregoing', 'is', 'theirpleasureand', 'thus', 'they', 'too', 'find', 'a', 'treasure', 'thoughthey', 'dig', 'for', 'roots', 'with', 'quivering', 'handsbut', 'tell', 'me', 'who', 'is', 'he', 'that', 'can', 'offendthe', 'spiritshall', 'the', 'nightingale', 'offend', 'thestillness', 'of', 'the', 'night', 'or', 'the', 'fireflythe', 'starsand', 'shall', 'your', 'flame', 'or', 'your', 'smokeburden', 'the', 'windthink', 'you', 'the', 'spirit', 'is', 'a', 'still', 'poolwhich', 'you', 'can', 'trouble', 'with', 'a', 'staffoftentimes', 'in', 'denying', 'yourself', 'pleasureyou', 'do', 'but', 'store', 'the', 'desire', 'in', 'therecesses', 'of', 'your', 'beingwho', 'knows', 'but', 'that', 'which', 'seems', 'omittedtoday', 'waits', 'for', 'tomorroweven', 'your', 'body', 'knows', 'its', 'heritageand', 'its', 'rightful', 'need', 'and', 'will', 'not', 'bedeceivedand', 'your', 'body', 'is', 'the', 'harp', 'of', 'your', 'souland', 'it', 'is', 'yours', 'to', 'bring', 'forth', 'sweetmusic', 'from', 'it', 'or', 'confused', 'soundsand', 'now', 'you', 'ask', 'in', 'your', 'heart', 'howshall', 'we', 'distinguish', 'that', 'which', 'isgood', 'in', 'pleasure', 'from', 'that', 'which', 'is', 'notgoodgo', 'to', 'your', 'fields', 'and', 'your', 'gardens', 'andyou', 'shall', 'learn', 'that', 'it', 'is', 'the', 'pleasureof', 'the', 'bee', 'to', 'gather', 'honey', 'of', 'theflowerbut', 'it', 'is', 'also', 'the', 'pleasure', 'of', 'theflower', 'to', 'yield', 'its', 'honey', 'to', 'the', 'beefor', 'to', 'the', 'bee', 'a', 'flower', 'is', 'a', 'fountain', 'oflifeand', 'to', 'the', 'flower', 'a', 'bee', 'is', 'a', 'messengerof', 'loveand', 'to', 'both', 'bee', 'and', 'flower', 'the', 'givingand', 'the', 'receiving', 'of', 'pleasure', 'is', 'a', 'needand', 'an', 'ecstasypeople', 'of', 'orphalese', 'be', 'in', 'yourpleasures', 'like', 'the', 'flowers', 'and', 'the', 'bees', 'and', 'a', 'poet', 'said', 'speak', 'to', 'us', 'ofbeautyand', 'he', 'answeredwhere', 'shall', 'you', 'seek', 'beauty', 'and', 'howshall', 'you', 'find', 'her', 'unless', 'she', 'herself', 'beyour', 'way', 'and', 'your', 'guideand', 'how', 'shall', 'you', 'speak', 'of', 'her', 'exceptshe', 'be', 'the', 'weaver', 'of', 'your', 'speechthe', 'aggrieved', 'and', 'the', 'injured', 'saybeauty', 'is', 'kind', 'and', 'gentlelike', 'a', 'young', 'mother', 'halfshy', 'of', 'her', 'ownglory', 'she', 'walks', 'among', 'usand', 'the', 'passionate', 'say', 'nay', 'beauty', 'isa', 'thing', 'of', 'might', 'and', 'dreadlike', 'the', 'tempest', 'she', 'shakes', 'the', 'earthbeneath', 'us', 'and', 'the', 'sky', 'above', 'usthe', 'tired', 'and', 'the', 'weary', 'say', 'beauty', 'isof', 'soft', 'whisperings', 'she', 'speaks', 'in', 'ourspirit', 'her', 'voice', 'yields', 'to', 'oursilences', 'like', 'a', 'faint', 'light', 'that', 'quiversin', 'fear', 'of', 'the', 'shadowbut', 'the', 'restless', 'say', 'we', 'have', 'heard', 'hershouting', 'among', 'the', 'mountainsand', 'with', 'her', 'cries', 'came', 'the', 'sound', 'ofhoofs', 'and', 'the', 'beating', 'of', 'wings', 'and', 'theroaring', 'of', 'lionsat', 'night', 'the', 'watchmen', 'of', 'the', 'city', 'saybeauty', 'shall', 'rise', 'with', 'the', 'dawn', 'fromthe', 'eastand', 'at', 'noontide', 'the', 'toilers', 'and', 'thewayfarers', 'say', 'we', 'have', 'seen', 'her', 'leaningover', 'the', 'earth', 'from', 'the', 'windows', 'of', 'thesunsetin', 'winter', 'say', 'the', 'snowbound', 'she', 'shallcome', 'with', 'the', 'spring', 'leaping', 'upon', 'thehillsand', 'in', 'the', 'summer', 'heat', 'the', 'reaperssay', 'we', 'have', 'seen', 'her', 'dancing', 'with', 'theautumn', 'leaves', 'and', 'we', 'saw', 'a', 'drift', 'ofsnow', 'in', 'her', 'hair', 'all', 'these', 'thingshave', 'you', 'said', 'of', 'beautyyet', 'in', 'truth', 'you', 'spoke', 'not', 'of', 'her', 'but', 'ofneeds', 'unsatisfiedand', 'beauty', 'is', 'not', 'a', 'need', 'but', 'an', 'ecstasyit', 'is', 'not', 'a', 'mouth', 'thirsting', 'nor', 'an', 'emptyhand', 'stretched', 'forthbut', 'rather', 'a', 'heart', 'enflamed', 'and', 'a', 'soulenchantedit', 'is', 'not', 'the', 'image', 'you', 'would', 'see', 'northe', 'song', 'you', 'would', 'hearbut', 'rather', 'an', 'image', 'you', 'see', 'though', 'youclose', 'your', 'eyes', 'and', 'a', 'song', 'you', 'hearthough', 'you', 'shut', 'your', 'earsit', 'is', 'not', 'the', 'sap', 'within', 'the', 'furrowedbark', 'nor', 'a', 'wing', 'attached', 'to', 'a', 'clawbut', 'rather', 'a', 'garden', 'for', 'ever', 'in', 'bloomand', 'a', 'flock', 'of', 'angels', 'for', 'ever', 'inflightpeople', 'of', 'orphalese', 'beauty', 'is', 'life', 'whenlife', 'unveils', 'her', 'holy', 'facebut', 'you', 'are', 'life', 'and', 'you', 'are', 'the', 'veilbeauty', 'is', 'eternity', 'gazing', 'at', 'itselfin', 'a', 'mirrorbut', 'you', 'are', 'eternity', 'and', 'you', 'are', 'themirror', 'and', 'an', 'old', 'priest', 'said', 'speak', 'to', 'usof', 'religionand', 'he', 'saidhave', 'i', 'spoken', 'this', 'day', 'of', 'aught', 'elseis', 'not', 'religion', 'all', 'deeds', 'and', 'allreflectionand', 'that', 'which', 'is', 'neither', 'deed', 'norreflection', 'but', 'a', 'wonder', 'and', 'a', 'surpriseever', 'springing', 'in', 'the', 'soul', 'even', 'whilethe', 'hands', 'hew', 'the', 'stone', 'or', 'tend', 'theloomwho', 'can', 'separate', 'his', 'faith', 'fromhis', 'actions', 'or', 'his', 'belief', 'from', 'hisoccupationswho', 'can', 'spread', 'his', 'hours', 'before', 'himsaving', 'this', 'for', 'god', 'and', 'this', 'formyself', 'this', 'for', 'my', 'soul', 'and', 'this', 'otherfor', 'my', 'bodyall', 'your', 'hours', 'are', 'wings', 'that', 'beatthrough', 'space', 'from', 'self', 'to', 'self', 'hewho', 'wears', 'his', 'morality', 'but', 'as', 'his', 'bestgarment', 'were', 'better', 'nakedthe', 'wind', 'and', 'the', 'sun', 'will', 'tear', 'no', 'holesin', 'his', 'skinand', 'he', 'who', 'defines', 'his', 'conduct', 'by', 'ethicsimprisons', 'his', 'songbird', 'in', 'a', 'cagethe', 'freest', 'song', 'comes', 'not', 'through', 'barsand', 'wiresand', 'he', 'to', 'whom', 'worshipping', 'is', 'a', 'windowto', 'open', 'but', 'also', 'to', 'shut', 'has', 'not', 'yetvisited', 'the', 'house', 'of', 'his', 'soul', 'whosewindows', 'are', 'from', 'dawn', 'to', 'dawnyour', 'daily', 'life', 'is', 'your', 'temple', 'and', 'yourreligionwhenever', 'you', 'enter', 'into', 'it', 'take', 'with', 'youyour', 'alltake', 'the', 'plough', 'and', 'the', 'forge', 'and', 'themallet', 'and', 'the', 'lutethe', 'things', 'you', 'have', 'fashioned', 'innecessity', 'or', 'for', 'delightfor', 'in', 'revery', 'you', 'cannot', 'rise', 'above', 'yourachievements', 'nor', 'fall', 'lower', 'than', 'yourfailuresand', 'take', 'with', 'you', 'all', 'men', 'for', 'inadoration', 'you', 'cannot', 'fly', 'higher', 'thantheir', 'hopes', 'nor', 'humble', 'yourself', 'lowerthan', 'their', 'despairand', 'if', 'you', 'would', 'know', 'god', 'be', 'nottherefore', 'a', 'solver', 'of', 'riddlesrather', 'look', 'about', 'you', 'and', 'you', 'shall', 'seehim', 'playing', 'with', 'your', 'childrenand', 'look', 'into', 'space', 'you', 'shall', 'see', 'himwalking', 'in', 'the', 'cloud', 'outstretching', 'hisarms', 'in', 'the', 'lightning', 'and', 'descending', 'inrainyou', 'shall', 'see', 'him', 'smiling', 'in', 'flowersthen', 'rising', 'and', 'waving', 'his', 'hands', 'intrees', 'then', 'almitra', 'spoke', 'saying', 'we', 'wouldask', 'now', 'of', 'deathand', 'he', 'saidyou', 'would', 'know', 'the', 'secret', 'of', 'deathbut', 'how', 'shall', 'you', 'find', 'it', 'unless', 'youseek', 'it', 'in', 'the', 'heart', 'of', 'lifethe', 'owl', 'whose', 'nightbound', 'eyes', 'are', 'blindunto', 'the', 'day', 'cannot', 'unveil', 'the', 'mysteryof', 'lightif', 'you', 'would', 'indeed', 'behold', 'the', 'spiritof', 'death', 'open', 'your', 'heart', 'wide', 'unto', 'thebody', 'of', 'lifefor', 'life', 'and', 'death', 'are', 'one', 'even', 'as', 'theriver', 'and', 'the', 'sea', 'are', 'onein', 'the', 'depth', 'of', 'your', 'hopes', 'and', 'desireslies', 'your', 'silent', 'knowledge', 'of', 'thebeyondand', 'like', 'seeds', 'dreaming', 'beneath', 'the', 'snowyour', 'heart', 'dreams', 'of', 'springtrust', 'the', 'dreams', 'for', 'in', 'them', 'is', 'hiddenthe', 'gate', 'to', 'eternity', 'your', 'fearof', 'death', 'is', 'but', 'the', 'trembling', 'of', 'theshepherd', 'when', 'he', 'stands', 'before', 'the', 'kingwhose', 'hand', 'is', 'to', 'be', 'laid', 'upon', 'him', 'inhonouris', 'the', 'shepherd', 'not', 'joyful', 'beneath', 'histrembling', 'that', 'he', 'shall', 'wear', 'the', 'markof', 'the', 'kingyet', 'is', 'he', 'not', 'more', 'mindful', 'of', 'histremblingfor', 'what', 'is', 'it', 'to', 'die', 'but', 'to', 'stand', 'nakedin', 'the', 'wind', 'and', 'to', 'melt', 'into', 'the', 'sunand', 'what', 'is', 'it', 'to', 'cease', 'breathing', 'butto', 'free', 'the', 'breath', 'from', 'its', 'restlesstides', 'that', 'it', 'may', 'rise', 'and', 'expand', 'andseek', 'god', 'unencumberedonly', 'when', 'you', 'drink', 'from', 'the', 'river', 'ofsilence', 'shall', 'you', 'indeed', 'singand', 'when', 'you', 'have', 'reached', 'the', 'mountaintop', 'then', 'you', 'shall', 'begin', 'to', 'climband', 'when', 'the', 'earth', 'shall', 'claim', 'yourlimbs', 'then', 'shall', 'you', 'truly', 'danceand', 'now', 'it', 'was', 'eveningand', 'almitra', 'the', 'seeress', 'said', 'blessed', 'bethis', 'day', 'and', 'this', 'place', 'and', 'your', 'spiritthat', 'has', 'spokenand', 'he', 'answered', 'was', 'it', 'i', 'who', 'spoke', 'wasi', 'not', 'also', 'a', 'listenerthen', 'he', 'descended', 'the', 'steps', 'of', 'thetemple', 'and', 'all', 'the', 'people', 'followed', 'himand', 'he', 'reached', 'his', 'ship', 'and', 'stood', 'uponthe', 'deckand', 'facing', 'the', 'people', 'again', 'he', 'raisedhis', 'voice', 'and', 'saidpeople', 'of', 'orphalese', 'the', 'wind', 'bids', 'meleave', 'youless', 'hasty', 'am', 'i', 'than', 'the', 'wind', 'yet', 'imust', 'gowe', 'wanderers', 'ever', 'seeking', 'the', 'lonelierway', 'begin', 'no', 'day', 'where', 'we', 'have', 'endedanother', 'day', 'and', 'no', 'sunrise', 'finds', 'uswhere', 'sunset', 'left', 'us', 'even', 'while', 'theearth', 'sleeps', 'we', 'travelwe', 'are', 'the', 'seeds', 'of', 'the', 'tenaciousplant', 'and', 'it', 'is', 'in', 'our', 'ripeness', 'and', 'ourfullness', 'of', 'heart', 'that', 'we', 'are', 'given', 'tothe', 'wind', 'and', 'are', 'scatteredbrief', 'were', 'my', 'days', 'among', 'you', 'andbriefer', 'still', 'the', 'words', 'i', 'have', 'spokenbut', 'should', 'my', 'voice', 'fade', 'in', 'your', 'earsand', 'my', 'love', 'vanish', 'in', 'your', 'memory', 'theni', 'will', 'come', 'againand', 'with', 'a', 'richer', 'heart', 'and', 'lips', 'moreyielding', 'to', 'the', 'spirit', 'will', 'i', 'speakyea', 'i', 'shall', 'return', 'with', 'the', 'tideand', 'though', 'death', 'may', 'hide', 'me', 'and', 'thegreater', 'silence', 'enfold', 'me', 'yet', 'againwill', 'i', 'seek', 'your', 'understandingand', 'not', 'in', 'vain', 'will', 'i', 'seekif', 'aught', 'i', 'have', 'said', 'is', 'truth', 'thattruth', 'shall', 'reveal', 'itself', 'in', 'a', 'clearervoice', 'and', 'in', 'words', 'more', 'kin', 'to', 'yourthoughtsi', 'go', 'with', 'the', 'wind', 'people', 'oforphalese', 'but', 'not', 'down', 'into', 'emptinessand', 'if', 'this', 'day', 'is', 'not', 'a', 'fulfilmentof', 'your', 'needs', 'and', 'my', 'love', 'then', 'let', 'itbe', 'a', 'promise', 'till', 'another', 'daymans', 'needs', 'change', 'but', 'not', 'his', 'lovenor', 'his', 'desire', 'that', 'his', 'love', 'shouldsatisfy', 'his', 'needsknow', 'therefore', 'that', 'from', 'the', 'greatersilence', 'i', 'shall', 'returnthe', 'mist', 'that', 'drifts', 'away', 'at', 'dawnleaving', 'but', 'dew', 'in', 'the', 'fields', 'shallrise', 'and', 'gather', 'into', 'a', 'cloud', 'and', 'thenfall', 'down', 'in', 'rainand', 'not', 'unlike', 'the', 'mist', 'have', 'i', 'beenin', 'the', 'stillness', 'of', 'the', 'night', 'i', 'havewalked', 'in', 'your', 'streets', 'and', 'my', 'spirithas', 'entered', 'your', 'housesand', 'your', 'heartbeats', 'were', 'in', 'my', 'heartand', 'your', 'breath', 'was', 'upon', 'my', 'face', 'and', 'iknew', 'you', 'allay', 'i', 'knew', 'your', 'joy', 'and', 'your', 'painand', 'in', 'your', 'sleep', 'your', 'dreams', 'were', 'mydreamsand', 'oftentimes', 'i', 'was', 'among', 'you', 'a', 'lakeamong', 'the', 'mountainsi', 'mirrored', 'the', 'summits', 'in', 'you', 'and', 'thebending', 'slopes', 'and', 'even', 'thepassing', 'flocks', 'of', 'your', 'thoughts', 'and', 'yourdesiresand', 'to', 'my', 'silence', 'came', 'the', 'laughterof', 'your', 'children', 'in', 'streams', 'and', 'thelonging', 'of', 'your', 'youths', 'in', 'riversand', 'when', 'they', 'reached', 'my', 'depth', 'thestreams', 'and', 'the', 'rivers', 'ceased', 'not', 'yet', 'tosingillustration', 'but', 'sweeter', 'still', 'than', 'laughter', 'andgreater', 'than', 'longing', 'came', 'to', 'meit', 'was', 'the', 'boundless', 'in', 'youthe', 'vast', 'man', 'in', 'whom', 'you', 'are', 'all', 'butcells', 'and', 'sinewshe', 'in', 'whose', 'chant', 'all', 'your', 'singing', 'isbut', 'a', 'soundless', 'throbbingit', 'is', 'in', 'the', 'vast', 'man', 'that', 'you', 'are', 'vastand', 'in', 'beholding', 'him', 'that', 'i', 'beheld', 'youand', 'loved', 'youfor', 'what', 'distances', 'can', 'love', 'reach', 'thatare', 'not', 'in', 'that', 'vast', 'spherewhat', 'visions', 'what', 'expectations', 'and', 'whatpresumptions', 'can', 'outsoar', 'that', 'flightlike', 'a', 'giant', 'oak', 'tree', 'covered', 'with', 'appleblossoms', 'is', 'the', 'vast', 'man', 'in', 'you', 'hismight', 'binds', 'you', 'to', 'the', 'earth', 'hisfragrance', 'lifts', 'you', 'into', 'space', 'and', 'inhis', 'durability', 'you', 'are', 'deathlessyou', 'have', 'been', 'told', 'that', 'even', 'like', 'achain', 'you', 'are', 'as', 'weak', 'as', 'your', 'weakestlinkthis', 'is', 'but', 'half', 'the', 'truth', 'you', 'are', 'alsoas', 'strong', 'as', 'your', 'strongest', 'linkto', 'measure', 'you', 'by', 'your', 'smallest', 'deedis', 'to', 'reckon', 'the', 'power', 'of', 'ocean', 'by', 'thefrailty', 'of', 'its', 'foamto', 'judge', 'you', 'by', 'your', 'failures', 'is', 'tocast', 'blame', 'upon', 'the', 'seasons', 'for', 'theirinconstancyay', 'you', 'are', 'like', 'an', 'oceanand', 'though', 'heavygrounded', 'ships', 'awaitthe', 'tide', 'upon', 'your', 'shores', 'yet', 'evenlike', 'an', 'ocean', 'you', 'cannot', 'hasten', 'yourtidesand', 'like', 'the', 'seasons', 'you', 'are', 'alsoand', 'though', 'in', 'your', 'winter', 'you', 'deny', 'yourspringyet', 'spring', 'reposing', 'within', 'you', 'smilesin', 'her', 'drowsiness', 'and', 'is', 'not', 'offendedthink', 'not', 'i', 'say', 'these', 'things', 'inorder', 'that', 'you', 'may', 'say', 'the', 'one', 'to', 'theother', 'he', 'praised', 'us', 'well', 'he', 'saw', 'butthe', 'good', 'in', 'usi', 'only', 'speak', 'to', 'you', 'in', 'words', 'of', 'thatwhich', 'you', 'yourselves', 'know', 'in', 'thoughtand', 'what', 'is', 'word', 'knowledge', 'but', 'a', 'shadowof', 'wordless', 'knowledgeyour', 'thoughts', 'and', 'my', 'words', 'are', 'wavesfrom', 'a', 'sealed', 'memory', 'that', 'keeps', 'recordsof', 'our', 'yesterdaysand', 'of', 'the', 'ancient', 'days', 'when', 'the', 'earthknew', 'not', 'us', 'nor', 'herselfand', 'of', 'nights', 'when', 'earth', 'was', 'upwroughtwith', 'confusionwise', 'men', 'have', 'come', 'to', 'you', 'to', 'give', 'youof', 'their', 'wisdom', 'i', 'came', 'to', 'take', 'of', 'yourwisdomand', 'behold', 'i', 'have', 'found', 'that', 'which', 'isgreater', 'than', 'wisdomit', 'is', 'a', 'flame', 'spirit', 'in', 'you', 'evergathering', 'more', 'of', 'itselfwhile', 'you', 'heedless', 'of', 'its', 'expansionbewail', 'the', 'withering', 'of', 'your', 'daysit', 'is', 'life', 'in', 'quest', 'of', 'life', 'inbodies', 'that', 'fear', 'the', 'gravethere', 'are', 'no', 'graves', 'herethese', 'mountains', 'and', 'plains', 'are', 'a', 'cradleand', 'a', 'steppingstonewhenever', 'you', 'pass', 'by', 'the', 'field', 'whereyou', 'have', 'laid', 'your', 'ancestors', 'look', 'wellthereupon', 'and', 'you', 'shall', 'see', 'yourselvesand', 'your', 'children', 'dancing', 'hand', 'in', 'handverily', 'you', 'often', 'make', 'merry', 'withoutknowingothers', 'have', 'come', 'to', 'you', 'to', 'whom', 'forgolden', 'promises', 'made', 'unto', 'your', 'faithyou', 'have', 'given', 'but', 'riches', 'and', 'power', 'andgloryless', 'than', 'a', 'promise', 'have', 'i', 'given', 'andyet', 'more', 'generous', 'have', 'you', 'been', 'to', 'meyou', 'have', 'given', 'me', 'my', 'deeper', 'thirstingafter', 'lifesurely', 'there', 'is', 'no', 'greater', 'gift', 'to', 'a', 'manthan', 'that', 'which', 'turns', 'all', 'his', 'aimsinto', 'parching', 'lips', 'and', 'all', 'life', 'into', 'afountainillustration', 'and', 'in', 'this', 'lies', 'my', 'honour', 'and', 'myrewardthat', 'whenever', 'i', 'come', 'to', 'the', 'fountainto', 'drink', 'i', 'find', 'the', 'living', 'water', 'itselfthirstyand', 'it', 'drinks', 'me', 'while', 'i', 'drink', 'itsome', 'of', 'you', 'have', 'deemed', 'me', 'proud', 'andovershy', 'to', 'receive', 'giftstoo', 'proud', 'indeed', 'am', 'i', 'to', 'receive', 'wagesbut', 'not', 'giftsand', 'though', 'i', 'have', 'eaten', 'berries', 'amongthe', 'hills', 'when', 'you', 'would', 'have', 'had', 'me', 'sitat', 'your', 'boardand', 'slept', 'in', 'the', 'portico', 'of', 'the', 'templewhen', 'you', 'would', 'gladly', 'have', 'sheltered', 'meyet', 'was', 'it', 'not', 'your', 'loving', 'mindfulnessof', 'my', 'days', 'and', 'my', 'nights', 'that', 'made', 'foodsweet', 'to', 'my', 'mouth', 'and', 'girdled', 'my', 'sleepwith', 'visionsfor', 'this', 'i', 'bless', 'you', 'mostyou', 'give', 'much', 'and', 'know', 'not', 'that', 'you', 'giveat', 'all', 'verily', 'the', 'kindness', 'thatgazes', 'upon', 'itself', 'in', 'a', 'mirror', 'turns', 'tostoneand', 'a', 'good', 'deed', 'that', 'calls', 'itself', 'bytender', 'names', 'becomes', 'the', 'parent', 'to', 'acurseand', 'some', 'of', 'you', 'have', 'called', 'me', 'aloofand', 'drunk', 'with', 'my', 'own', 'alonenessand', 'you', 'have', 'said', 'he', 'holds', 'councilwith', 'the', 'trees', 'of', 'the', 'forest', 'but', 'notwith', 'menhe', 'sits', 'alone', 'on', 'hilltops', 'and', 'looksdown', 'upon', 'our', 'citytrue', 'it', 'is', 'that', 'i', 'have', 'climbed', 'the', 'hillsand', 'walked', 'in', 'remote', 'placeshow', 'could', 'i', 'have', 'seen', 'you', 'save', 'from', 'agreat', 'height', 'or', 'a', 'great', 'distancehow', 'can', 'one', 'be', 'indeed', 'near', 'unless', 'he', 'betarand', 'others', 'among', 'you', 'called', 'unto', 'me', 'notin', 'words', 'and', 'they', 'saidstranger', 'stranger', 'lover', 'ofunreachable', 'heights', 'why', 'dwell', 'you', 'amongthe', 'summits', 'where', 'eagles', 'buildtheir', 'nests', 'why', 'seek', 'you', 'theunattainablewhat', 'storms', 'would', 'you', 'trap', 'in', 'your', 'netand', 'what', 'vaporous', 'birds', 'do', 'you', 'hunt', 'inthe', 'skycome', 'and', 'be', 'one', 'of', 'usdescend', 'and', 'appease', 'your', 'hunger', 'with', 'ourbread', 'and', 'quench', 'your', 'thirst', 'with', 'ourwinein', 'the', 'solitude', 'of', 'their', 'souls', 'they', 'saidthese', 'thingsbut', 'were', 'their', 'solitude', 'deeper', 'theywould', 'have', 'known', 'that', 'i', 'sought', 'but', 'thesecret', 'of', 'your', 'joy', 'and', 'your', 'painand', 'i', 'hunted', 'only', 'your', 'larger', 'selvesthat', 'walk', 'the', 'skybut', 'the', 'hunter', 'was', 'also', 'the', 'huntedfor', 'many', 'of', 'my', 'arrows', 'left', 'my', 'bow', 'onlyto', 'seek', 'my', 'own', 'breastand', 'the', 'flier', 'was', 'also', 'the', 'creeperfor', 'when', 'my', 'wings', 'were', 'spread', 'in', 'thesun', 'their', 'shadow', 'upon', 'the', 'earth', 'was', 'aturtleand', 'i', 'the', 'believer', 'was', 'also', 'the', 'doubterfor', 'often', 'have', 'i', 'put', 'my', 'fingerin', 'my', 'own', 'wound', 'that', 'i', 'might', 'have', 'thegreater', 'belief', 'in', 'you', 'and', 'the', 'greaterknowledge', 'of', 'youand', 'it', 'is', 'with', 'this', 'belief', 'and', 'thisknowledge', 'that', 'i', 'sayyou', 'are', 'not', 'enclosed', 'within', 'your', 'bodiesnor', 'confined', 'to', 'houses', 'or', 'fieldsthat', 'which', 'is', 'you', 'dwells', 'above', 'themountain', 'and', 'roves', 'with', 'the', 'windit', 'is', 'not', 'a', 'thing', 'that', 'crawls', 'intothe', 'sun', 'for', 'warmth', 'or', 'digs', 'holes', 'intodarkness', 'for', 'safetybut', 'a', 'thing', 'free', 'a', 'spirit', 'that', 'envelopsthe', 'earth', 'and', 'moves', 'in', 'the', 'etherif', 'these', 'be', 'vague', 'words', 'then', 'seek', 'notto', 'clear', 'themvague', 'and', 'nebulous', 'is', 'the', 'beginning', 'ofall', 'things', 'but', 'not', 'their', 'endand', 'i', 'fain', 'would', 'have', 'you', 'remember', 'me', 'asa', 'beginninglife', 'and', 'all', 'that', 'lives', 'is', 'conceivedin', 'the', 'mist', 'and', 'not', 'in', 'the', 'crystaland', 'who', 'knows', 'but', 'a', 'crystal', 'is', 'mistin', 'decaythis', 'would', 'i', 'have', 'you', 'remember', 'inremembering', 'methat', 'which', 'seems', 'most', 'feeble', 'andbewildered', 'in', 'you', 'is', 'the', 'strongest', 'andmost', 'determinedis', 'it', 'not', 'your', 'breath', 'that', 'has', 'erectedand', 'hardened', 'the', 'structure', 'of', 'yourbonesand', 'is', 'it', 'not', 'a', 'dream', 'which', 'none', 'of', 'youremember', 'having', 'dreamt', 'that', 'buildedyour', 'city', 'and', 'fashioned', 'all', 'there', 'is', 'initcould', 'you', 'but', 'see', 'the', 'tides', 'of', 'thatbreath', 'you', 'would', 'cease', 'to', 'see', 'all', 'elseand', 'if', 'you', 'could', 'hear', 'the', 'whispering', 'ofthe', 'dream', 'you', 'would', 'hear', 'no', 'other', 'soundbut', 'you', 'do', 'not', 'see', 'nor', 'do', 'you', 'hear', 'andit', 'is', 'wellthe', 'veil', 'that', 'clouds', 'your', 'eyes', 'shall', 'belifted', 'by', 'the', 'hands', 'that', 'wove', 'itand', 'the', 'clay', 'that', 'fills', 'your', 'ears', 'shallbe', 'pierced', 'by', 'those', 'fingers', 'that', 'kneadedit', 'and', 'you', 'shall', 'seeand', 'you', 'shall', 'hearyet', 'you', 'shall', 'not', 'deplore', 'having', 'knownblindness', 'nor', 'regret', 'having', 'been', 'deaffor', 'in', 'that', 'day', 'you', 'shall', 'know', 'thehidden', 'purposes', 'in', 'all', 'thingsand', 'you', 'shall', 'bless', 'darkness', 'as', 'youwould', 'bless', 'lightafter', 'saying', 'these', 'things', 'he', 'lookedabout', 'him', 'and', 'he', 'saw', 'the', 'pilot', 'of', 'hisship', 'standing', 'by', 'the', 'helm', 'and', 'gazingnow', 'at', 'the', 'full', 'sails', 'and', 'now', 'at', 'thedistanceand', 'he', 'saidpatient', 'over', 'patient', 'is', 'the', 'captain', 'ofmy', 'shipthe', 'wind', 'blows', 'and', 'restless', 'are', 'thesailseven', 'the', 'rudder', 'begs', 'directionyet', 'quietly', 'my', 'captain', 'awaits', 'mysilenceand', 'these', 'my', 'mariners', 'who', 'have', 'heardthe', 'choir', 'of', 'the', 'greater', 'sea', 'they', 'toohave', 'heard', 'me', 'patiently', 'now', 'theyshall', 'wait', 'no', 'longeri', 'am', 'readythe', 'stream', 'has', 'reached', 'the', 'sea', 'andonce', 'more', 'the', 'great', 'mother', 'holds', 'her', 'sonagainst', 'her', 'breastfare', 'you', 'well', 'people', 'of', 'orphalesethis', 'day', 'has', 'endedit', 'is', 'closing', 'upon', 'us', 'even', 'as', 'thewaterlily', 'upon', 'its', 'own', 'tomorrowwhat', 'was', 'given', 'us', 'here', 'we', 'shall', 'keepand', 'if', 'it', 'suffices', 'not', 'then', 'again', 'mustwe', 'come', 'together', 'and', 'together', 'stretchour', 'hands', 'unto', 'the', 'giverforget', 'not', 'that', 'i', 'shall', 'come', 'back', 'toyoua', 'little', 'while', 'and', 'my', 'longing', 'shallgather', 'dust', 'and', 'foam', 'for', 'another', 'bodya', 'little', 'while', 'a', 'moment', 'of', 'rest', 'uponthe', 'wind', 'and', 'another', 'woman', 'shall', 'bearmefarewell', 'to', 'you', 'and', 'the', 'youth', 'i', 'havespent', 'with', 'youit', 'was', 'but', 'yesterday', 'we', 'met', 'in', 'adream', 'you', 'have', 'sung', 'to', 'me', 'in', 'myaloneness', 'and', 'i', 'of', 'your', 'longings', 'havebuilt', 'a', 'tower', 'in', 'the', 'skybut', 'now', 'our', 'sleep', 'has', 'fled', 'and', 'our', 'dreamis', 'over', 'and', 'it', 'is', 'no', 'longer', 'dawnthe', 'noontide', 'is', 'upon', 'us', 'and', 'our', 'halfwaking', 'has', 'turned', 'to', 'fuller', 'day', 'and', 'wemust', 'partif', 'in', 'the', 'twilight', 'of', 'memory', 'we', 'shouldmeet', 'once', 'more', 'we', 'shall', 'speak', 'againtogether', 'and', 'you', 'shall', 'sing', 'to', 'me', 'adeeper', 'songand', 'if', 'our', 'hands', 'should', 'meet', 'in', 'anotherdream', 'we', 'shall', 'build', 'another', 'tower', 'inthe', 'skyso', 'saying', 'he', 'made', 'a', 'signal', 'to', 'theseamen', 'and', 'straightway', 'they', 'weighedanchor', 'and', 'cast', 'the', 'ship', 'loose', 'from', 'itsmoorings', 'and', 'they', 'moved', 'eastwardand', 'a', 'cry', 'came', 'from', 'the', 'people', 'as', 'from', 'asingle', 'heart', 'and', 'it', 'rose', 'into', 'the', 'duskand', 'was', 'carried', 'out', 'over', 'the', 'sea', 'like', 'agreat', 'trumpetingonly', 'almitra', 'was', 'silent', 'gazing', 'afterthe', 'ship', 'until', 'it', 'had', 'vanished', 'intothe', 'mistand', 'when', 'all', 'the', 'people', 'were', 'dispersedshe', 'still', 'stood', 'alone', 'upon', 'the', 'seawallremembering', 'in', 'her', 'heart', 'his', 'sayinga', 'little', 'while', 'a', 'moment', 'of', 'rest', 'uponthe', 'wind', 'and', 'another', 'woman', 'shall', 'bearmeillustration', 'end', 'of', 'the', 'project', 'gutenberg', 'ebook', 'of', 'the', 'prophet', 'by', 'kahlil', 'gibran', 'end', 'of', 'this', 'project', 'gutenberg', 'ebook', 'the', 'prophet', '', 'this', 'file', 'should', 'be', 'named', 'txt', 'or', 'zip', 'this', 'and', 'all', 'associated', 'files', 'of', 'various', 'formats', 'will', 'be', 'found', 'in', '', '', '', '', '', '', '', 'httpwwwgutenbergorgproduced', 'by', 'david', 'widger', 'from', 'page', 'images', 'generouslyprovided', 'by', 'the', 'internet', 'archiveupdated', 'editions', 'will', 'replace', 'the', 'previous', 'onethe', 'old', 'editions', 'willbe', 'renamedcreating', 'the', 'works', 'from', 'print', 'editions', 'not', 'protected', 'by', 'us', 'copyrightlaw', 'means', 'that', 'no', 'one', 'owns', 'a', 'united', 'states', 'copyright', 'in', 'these', 'worksso', 'the', 'foundation', 'and', 'you', 'can', 'copy', 'and', 'distribute', 'it', 'in', 'the', 'unitedstates', 'without', 'permission', 'and', 'without', 'paying', 'copyrightroyalties', 'special', 'rules', 'set', 'forth', 'in', 'the', 'general', 'terms', 'of', 'use', 'partof', 'this', 'license', 'apply', 'to', 'copying', 'and', 'distributing', 'projectgutenbergtm', 'electronic', 'works', 'to', 'protect', 'the', 'project', 'gutenbergtmconcept', 'and', 'trademark', 'project', 'gutenberg', 'is', 'a', 'registered', 'trademarkand', 'may', 'not', 'be', 'used', 'if', 'you', 'charge', 'for', 'the', 'ebooks', 'unless', 'you', 'receivespecific', 'permission', 'if', 'you', 'do', 'not', 'charge', 'anything', 'for', 'copies', 'of', 'thisebook', 'complying', 'with', 'the', 'rules', 'is', 'very', 'easy', 'you', 'may', 'use', 'this', 'ebookfor', 'nearly', 'any', 'purpose', 'such', 'as', 'creation', 'of', 'derivative', 'works', 'reportsperformances', 'and', 'research', 'they', 'may', 'be', 'modified', 'and', 'printed', 'and', 'givenawayyou', 'may', 'do', 'practically', 'anything', 'in', 'the', 'united', 'states', 'with', 'ebooksnot', 'protected', 'by', 'us', 'copyright', 'law', 'redistribution', 'is', 'subject', 'to', 'thetrademark', 'license', 'especially', 'commercial', 'redistributionstart', 'full', 'licensethe', 'full', 'project', 'gutenberg', 'licenseplease', 'read', 'this', 'before', 'you', 'distribute', 'or', 'use', 'this', 'workto', 'protect', 'the', 'project', 'gutenbergtm', 'mission', 'of', 'promoting', 'the', 'freedistribution', 'of', 'electronic', 'works', 'by', 'using', 'or', 'distributing', 'this', 'workor', 'any', 'other', 'work', 'associated', 'in', 'any', 'way', 'with', 'the', 'phrase', 'projectgutenberg', 'you', 'agree', 'to', 'comply', 'with', 'all', 'the', 'terms', 'of', 'the', 'fullproject', 'gutenbergtm', 'license', 'available', 'with', 'this', 'file', 'or', 'online', 'atwwwgutenbergorglicensesection', '', 'general', 'terms', 'of', 'use', 'and', 'redistributing', 'projectgutenbergtm', 'electronic', 'worksa', 'by', 'reading', 'or', 'using', 'any', 'part', 'of', 'this', 'project', 'gutenbergtmelectronic', 'work', 'you', 'indicate', 'that', 'you', 'have', 'read', 'understand', 'agree', 'toand', 'accept', 'all', 'the', 'terms', 'of', 'this', 'license', 'and', 'intellectual', 'propertytrademarkcopyright', 'agreement', 'if', 'you', 'do', 'not', 'agree', 'to', 'abide', 'by', 'allthe', 'terms', 'of', 'this', 'agreement', 'you', 'must', 'cease', 'using', 'and', 'return', 'ordestroy', 'all', 'copies', 'of', 'project', 'gutenbergtm', 'electronic', 'works', 'in', 'yourpossession', 'if', 'you', 'paid', 'a', 'fee', 'for', 'obtaining', 'a', 'copy', 'of', 'or', 'access', 'to', 'aproject', 'gutenbergtm', 'electronic', 'work', 'and', 'you', 'do', 'not', 'agree', 'to', 'be', 'boundby', 'the', 'terms', 'of', 'this', 'agreement', 'you', 'may', 'obtain', 'a', 'refund', 'from', 'theperson', 'or', 'entity', 'to', 'whom', 'you', 'paid', 'the', 'fee', 'as', 'set', 'forth', 'in', 'paragrapheb', 'project', 'gutenberg', 'is', 'a', 'registered', 'trademark', 'it', 'may', 'only', 'beused', 'on', 'or', 'associated', 'in', 'any', 'way', 'with', 'an', 'electronic', 'work', 'by', 'people', 'whoagree', 'to', 'be', 'bound', 'by', 'the', 'terms', 'of', 'this', 'agreement', 'there', 'are', 'a', 'fewthings', 'that', 'you', 'can', 'do', 'with', 'most', 'project', 'gutenbergtm', 'electronic', 'workseven', 'without', 'complying', 'with', 'the', 'full', 'terms', 'of', 'this', 'agreement', 'seeparagraph', 'c', 'below', 'there', 'are', 'a', 'lot', 'of', 'things', 'you', 'can', 'do', 'with', 'projectgutenbergtm', 'electronic', 'works', 'if', 'you', 'follow', 'the', 'terms', 'of', 'thisagreement', 'and', 'help', 'preserve', 'free', 'future', 'access', 'to', 'project', 'gutenbergtmelectronic', 'works', 'see', 'paragraph', 'e', 'belowc', 'the', 'project', 'gutenberg', 'literary', 'archive', 'foundation', 'thefoundation', 'or', 'pglaf', 'owns', 'a', 'compilation', 'copyright', 'in', 'the', 'collectionof', 'project', 'gutenbergtm', 'electronic', 'works', 'nearly', 'all', 'the', 'individualworks', 'in', 'the', 'collection', 'are', 'in', 'the', 'public', 'domain', 'in', 'the', 'unitedstates', 'if', 'an', 'individual', 'work', 'is', 'unprotected', 'by', 'copyright', 'law', 'in', 'theunited', 'states', 'and', 'you', 'are', 'located', 'in', 'the', 'united', 'states', 'we', 'do', 'notclaim', 'a', 'right', 'to', 'prevent', 'you', 'from', 'copying', 'distributing', 'performingdisplaying', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'the', 'work', 'as', 'long', 'asall', 'references', 'to', 'project', 'gutenberg', 'are', 'removed', 'of', 'course', 'we', 'hopethat', 'you', 'will', 'support', 'the', 'project', 'gutenbergtm', 'mission', 'of', 'promotingfree', 'access', 'to', 'electronic', 'works', 'by', 'freely', 'sharing', 'project', 'gutenbergtmworks', 'in', 'compliance', 'with', 'the', 'terms', 'of', 'this', 'agreement', 'for', 'keeping', 'theproject', 'gutenbergtm', 'name', 'associated', 'with', 'the', 'work', 'you', 'can', 'easilycomply', 'with', 'the', 'terms', 'of', 'this', 'agreement', 'by', 'keeping', 'this', 'work', 'in', 'thesame', 'format', 'with', 'its', 'attached', 'full', 'project', 'gutenbergtm', 'license', 'whenyou', 'share', 'it', 'without', 'charge', 'with', 'othersd', 'the', 'copyright', 'laws', 'of', 'the', 'place', 'where', 'you', 'are', 'located', 'also', 'governwhat', 'you', 'can', 'do', 'with', 'this', 'work', 'copyright', 'laws', 'in', 'most', 'countries', 'arein', 'a', 'constant', 'state', 'of', 'change', 'if', 'you', 'are', 'outside', 'the', 'united', 'statescheck', 'the', 'laws', 'of', 'your', 'country', 'in', 'addition', 'to', 'the', 'terms', 'of', 'thisagreement', 'before', 'downloading', 'copying', 'displaying', 'performingdistributing', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'this', 'work', 'or', 'anyother', 'project', 'gutenbergtm', 'work', 'the', 'foundation', 'makes', 'norepresentations', 'concerning', 'the', 'copyright', 'status', 'of', 'any', 'work', 'in', 'anycountry', 'outside', 'the', 'united', 'statese', 'unless', 'you', 'have', 'removed', 'all', 'references', 'to', 'project', 'gutenberge', 'the', 'following', 'sentence', 'with', 'active', 'links', 'to', 'or', 'otherimmediate', 'access', 'to', 'the', 'full', 'project', 'gutenbergtm', 'license', 'must', 'appearprominently', 'whenever', 'any', 'copy', 'of', 'a', 'project', 'gutenbergtm', 'work', 'any', 'workon', 'which', 'the', 'phrase', 'project', 'gutenberg', 'appears', 'or', 'with', 'which', 'thephrase', 'project', 'gutenberg', 'is', 'associated', 'is', 'accessed', 'displayedperformed', 'viewed', 'copied', 'or', 'distributed', '', 'this', 'ebook', 'is', 'for', 'the', 'use', 'of', 'anyone', 'anywhere', 'in', 'the', 'united', 'states', 'and', '', 'most', 'other', 'parts', 'of', 'the', 'world', 'at', 'no', 'cost', 'and', 'with', 'almost', 'no', '', 'restrictions', 'whatsoever', 'you', 'may', 'copy', 'it', 'give', 'it', 'away', 'or', 'reuse', 'it', '', 'under', 'the', 'terms', 'of', 'the', 'project', 'gutenberg', 'license', 'included', 'with', 'this', '', 'ebook', 'or', 'online', 'at', 'wwwgutenbergorg', 'if', 'you', 'are', 'not', 'located', 'in', 'the', '', 'united', 'states', 'youll', 'have', 'to', 'check', 'the', 'laws', 'of', 'the', 'country', 'where', 'you', '', 'are', 'located', 'before', 'using', 'this', 'ebooke', 'if', 'an', 'individual', 'project', 'gutenbergtm', 'electronic', 'work', 'isderived', 'from', 'texts', 'not', 'protected', 'by', 'us', 'copyright', 'law', 'does', 'notcontain', 'a', 'notice', 'indicating', 'that', 'it', 'is', 'posted', 'with', 'permission', 'of', 'thecopyright', 'holder', 'the', 'work', 'can', 'be', 'copied', 'and', 'distributed', 'to', 'anyone', 'inthe', 'united', 'states', 'without', 'paying', 'any', 'fees', 'or', 'charges', 'if', 'you', 'areredistributing', 'or', 'providing', 'access', 'to', 'a', 'work', 'with', 'the', 'phrase', 'projectgutenberg', 'associated', 'with', 'or', 'appearing', 'on', 'the', 'work', 'you', 'must', 'complyeither', 'with', 'the', 'requirements', 'of', 'paragraphs', 'e', 'through', 'e', 'orobtain', 'permission', 'for', 'the', 'use', 'of', 'the', 'work', 'and', 'the', 'project', 'gutenbergtmtrademark', 'as', 'set', 'forth', 'in', 'paragraphs', 'e', 'or', 'ee', 'if', 'an', 'individual', 'project', 'gutenbergtm', 'electronic', 'work', 'is', 'postedwith', 'the', 'permission', 'of', 'the', 'copyright', 'holder', 'your', 'use', 'and', 'distributionmust', 'comply', 'with', 'both', 'paragraphs', 'e', 'through', 'e', 'and', 'anyadditional', 'terms', 'imposed', 'by', 'the', 'copyright', 'holder', 'additional', 'termswill', 'be', 'linked', 'to', 'the', 'project', 'gutenbergtm', 'license', 'for', 'all', 'worksposted', 'with', 'the', 'permission', 'of', 'the', 'copyright', 'holder', 'found', 'at', 'thebeginning', 'of', 'this', 'worke', 'do', 'not', 'unlink', 'or', 'detach', 'or', 'remove', 'the', 'full', 'project', 'gutenbergtmlicense', 'terms', 'from', 'this', 'work', 'or', 'any', 'files', 'containing', 'a', 'part', 'of', 'thiswork', 'or', 'any', 'other', 'work', 'associated', 'with', 'project', 'gutenbergtme', 'do', 'not', 'copy', 'display', 'perform', 'distribute', 'or', 'redistribute', 'thiselectronic', 'work', 'or', 'any', 'part', 'of', 'this', 'electronic', 'work', 'withoutprominently', 'displaying', 'the', 'sentence', 'set', 'forth', 'in', 'paragraph', 'e', 'withactive', 'links', 'or', 'immediate', 'access', 'to', 'the', 'full', 'terms', 'of', 'the', 'projectgutenbergtm', 'licensee', 'you', 'may', 'convert', 'to', 'and', 'distribute', 'this', 'work', 'in', 'any', 'binarycompressed', 'marked', 'up', 'nonproprietary', 'or', 'proprietary', 'form', 'includingany', 'word', 'processing', 'or', 'hypertext', 'form', 'however', 'if', 'you', 'provide', 'accessto', 'or', 'distribute', 'copies', 'of', 'a', 'project', 'gutenbergtm', 'work', 'in', 'a', 'formatother', 'than', 'plain', 'vanilla', 'ascii', 'or', 'other', 'format', 'used', 'in', 'the', 'officialversion', 'posted', 'on', 'the', 'official', 'project', 'gutenbergtm', 'web', 'sitewwwgutenbergorg', 'you', 'must', 'at', 'no', 'additional', 'cost', 'fee', 'or', 'expenseto', 'the', 'user', 'provide', 'a', 'copy', 'a', 'means', 'of', 'exporting', 'a', 'copy', 'or', 'a', 'meansof', 'obtaining', 'a', 'copy', 'upon', 'request', 'of', 'the', 'work', 'in', 'its', 'original', 'plainvanilla', 'ascii', 'or', 'other', 'form', 'any', 'alternate', 'format', 'must', 'include', 'thefull', 'project', 'gutenbergtm', 'license', 'as', 'specified', 'in', 'paragraph', 'ee', 'do', 'not', 'charge', 'a', 'fee', 'for', 'access', 'to', 'viewing', 'displayingperforming', 'copying', 'or', 'distributing', 'any', 'project', 'gutenbergtm', 'worksunless', 'you', 'comply', 'with', 'paragraph', 'e', 'or', 'ee', 'you', 'may', 'charge', 'a', 'reasonable', 'fee', 'for', 'copies', 'of', 'or', 'providingaccess', 'to', 'or', 'distributing', 'project', 'gutenbergtm', 'electronic', 'worksprovided', 'that', 'you', 'pay', 'a', 'royalty', 'fee', 'of', '', 'of', 'the', 'gross', 'profits', 'you', 'derive', 'from', '', 'the', 'use', 'of', 'project', 'gutenbergtm', 'works', 'calculated', 'using', 'the', 'method', '', 'you', 'already', 'use', 'to', 'calculate', 'your', 'applicable', 'taxes', 'the', 'fee', 'is', 'owed', '', 'to', 'the', 'owner', 'of', 'the', 'project', 'gutenbergtm', 'trademark', 'but', 'he', 'has', '', 'agreed', 'to', 'donate', 'royalties', 'under', 'this', 'paragraph', 'to', 'the', 'project', '', 'gutenberg', 'literary', 'archive', 'foundation', 'royalty', 'payments', 'must', 'be', 'paid', '', 'within', '', 'days', 'following', 'each', 'date', 'on', 'which', 'you', 'prepare', 'or', 'are', '', 'legally', 'required', 'to', 'prepare', 'your', 'periodic', 'tax', 'returns', 'royalty', '', 'payments', 'should', 'be', 'clearly', 'marked', 'as', 'such', 'and', 'sent', 'to', 'the', 'project', '', 'gutenberg', 'literary', 'archive', 'foundation', 'at', 'the', 'address', 'specified', 'in', '', 'section', '', 'information', 'about', 'donations', 'to', 'the', 'project', 'gutenberg', '', 'literary', 'archive', 'foundation', 'you', 'provide', 'a', 'full', 'refund', 'of', 'any', 'money', 'paid', 'by', 'a', 'user', 'who', 'notifies', '', 'you', 'in', 'writing', 'or', 'by', 'email', 'within', '', 'days', 'of', 'receipt', 'that', 'she', '', 'does', 'not', 'agree', 'to', 'the', 'terms', 'of', 'the', 'full', 'project', 'gutenbergtm', '', 'license', 'you', 'must', 'require', 'such', 'a', 'user', 'to', 'return', 'or', 'destroy', 'all', '', 'copies', 'of', 'the', 'works', 'possessed', 'in', 'a', 'physical', 'medium', 'and', 'discontinue', '', 'all', 'use', 'of', 'and', 'all', 'access', 'to', 'other', 'copies', 'of', 'project', 'gutenbergtm', '', 'works', 'you', 'provide', 'in', 'accordance', 'with', 'paragraph', 'f', 'a', 'full', 'refund', 'of', '', 'any', 'money', 'paid', 'for', 'a', 'work', 'or', 'a', 'replacement', 'copy', 'if', 'a', 'defect', 'in', 'the', '', 'electronic', 'work', 'is', 'discovered', 'and', 'reported', 'to', 'you', 'within', '', 'days', 'of', '', 'receipt', 'of', 'the', 'work', 'you', 'comply', 'with', 'all', 'other', 'terms', 'of', 'this', 'agreement', 'for', 'free', '', 'distribution', 'of', 'project', 'gutenbergtm', 'workse', 'if', 'you', 'wish', 'to', 'charge', 'a', 'fee', 'or', 'distribute', 'a', 'projectgutenbergtm', 'electronic', 'work', 'or', 'group', 'of', 'works', 'on', 'different', 'terms', 'thanare', 'set', 'forth', 'in', 'this', 'agreement', 'you', 'must', 'obtain', 'permission', 'in', 'writingfrom', 'both', 'the', 'project', 'gutenberg', 'literary', 'archive', 'foundation', 'and', 'theproject', 'gutenberg', 'trademark', 'llc', 'the', 'owner', 'of', 'the', 'project', 'gutenbergtmtrademark', 'contact', 'the', 'foundation', 'as', 'set', 'forth', 'in', 'section', '', 'belowff', 'project', 'gutenberg', 'volunteers', 'and', 'employees', 'expend', 'considerableeffort', 'to', 'identify', 'do', 'copyright', 'research', 'on', 'transcribe', 'and', 'proofreadworks', 'not', 'protected', 'by', 'us', 'copyright', 'law', 'in', 'creating', 'the', 'projectgutenbergtm', 'collection', 'despite', 'these', 'efforts', 'project', 'gutenbergtmelectronic', 'works', 'and', 'the', 'medium', 'on', 'which', 'they', 'may', 'be', 'stored', 'maycontain', 'defects', 'such', 'as', 'but', 'not', 'limited', 'to', 'incomplete', 'inaccurateor', 'corrupt', 'data', 'transcription', 'errors', 'a', 'copyright', 'or', 'otherintellectual', 'property', 'infringement', 'a', 'defective', 'or', 'damaged', 'disk', 'orother', 'medium', 'a', 'computer', 'virus', 'or', 'computer', 'codes', 'that', 'damage', 'orcannot', 'be', 'read', 'by', 'your', 'equipmentf', 'limited', 'warranty', 'disclaimer', 'of', 'damages', '', 'except', 'for', 'the', 'rightof', 'replacement', 'or', 'refund', 'described', 'in', 'paragraph', 'f', 'the', 'projectgutenberg', 'literary', 'archive', 'foundation', 'the', 'owner', 'of', 'the', 'projectgutenbergtm', 'trademark', 'and', 'any', 'other', 'party', 'distributing', 'a', 'projectgutenbergtm', 'electronic', 'work', 'under', 'this', 'agreement', 'disclaim', 'allliability', 'to', 'you', 'for', 'damages', 'costs', 'and', 'expenses', 'including', 'legalfees', 'you', 'agree', 'that', 'you', 'have', 'no', 'remedies', 'for', 'negligence', 'strictliability', 'breach', 'of', 'warranty', 'or', 'breach', 'of', 'contract', 'except', 'thoseprovided', 'in', 'paragraph', 'f', 'you', 'agree', 'that', 'the', 'foundation', 'thetrademark', 'owner', 'and', 'any', 'distributor', 'under', 'this', 'agreement', 'will', 'not', 'beliable', 'to', 'you', 'for', 'actual', 'direct', 'indirect', 'consequential', 'punitive', 'orincidental', 'damages', 'even', 'if', 'you', 'give', 'notice', 'of', 'the', 'possibility', 'of', 'suchdamagef', 'limited', 'right', 'of', 'replacement', 'or', 'refund', '', 'if', 'you', 'discover', 'adefect', 'in', 'this', 'electronic', 'work', 'within', '', 'days', 'of', 'receiving', 'it', 'you', 'canreceive', 'a', 'refund', 'of', 'the', 'money', 'if', 'any', 'you', 'paid', 'for', 'it', 'by', 'sending', 'awritten', 'explanation', 'to', 'the', 'person', 'you', 'received', 'the', 'work', 'from', 'if', 'youreceived', 'the', 'work', 'on', 'a', 'physical', 'medium', 'you', 'must', 'return', 'the', 'mediumwith', 'your', 'written', 'explanation', 'the', 'person', 'or', 'entity', 'that', 'provided', 'youwith', 'the', 'defective', 'work', 'may', 'elect', 'to', 'provide', 'a', 'replacement', 'copy', 'inlieu', 'of', 'a', 'refund', 'if', 'you', 'received', 'the', 'work', 'electronically', 'the', 'personor', 'entity', 'providing', 'it', 'to', 'you', 'may', 'choose', 'to', 'give', 'you', 'a', 'secondopportunity', 'to', 'receive', 'the', 'work', 'electronically', 'in', 'lieu', 'of', 'a', 'refund', 'ifthe', 'second', 'copy', 'is', 'also', 'defective', 'you', 'may', 'demand', 'a', 'refund', 'in', 'writingwithout', 'further', 'opportunities', 'to', 'fix', 'the', 'problemf', 'except', 'for', 'the', 'limited', 'right', 'of', 'replacement', 'or', 'refund', 'set', 'forthin', 'paragraph', 'f', 'this', 'work', 'is', 'provided', 'to', 'you', 'asis', 'with', 'noother', 'warranties', 'of', 'any', 'kind', 'express', 'or', 'implied', 'including', 'but', 'notlimited', 'to', 'warranties', 'of', 'merchantability', 'or', 'fitness', 'for', 'any', 'purposef', 'some', 'states', 'do', 'not', 'allow', 'disclaimers', 'of', 'certain', 'impliedwarranties', 'or', 'the', 'exclusion', 'or', 'limitation', 'of', 'certain', 'types', 'ofdamages', 'if', 'any', 'disclaimer', 'or', 'limitation', 'set', 'forth', 'in', 'this', 'agreementviolates', 'the', 'law', 'of', 'the', 'state', 'applicable', 'to', 'this', 'agreement', 'theagreement', 'shall', 'be', 'interpreted', 'to', 'make', 'the', 'maximum', 'disclaimer', 'orlimitation', 'permitted', 'by', 'the', 'applicable', 'state', 'law', 'the', 'invalidity', 'orunenforceability', 'of', 'any', 'provision', 'of', 'this', 'agreement', 'shall', 'not', 'void', 'theremaining', 'provisionsf', 'indemnity', '', 'you', 'agree', 'to', 'indemnify', 'and', 'hold', 'the', 'foundation', 'thetrademark', 'owner', 'any', 'agent', 'or', 'employee', 'of', 'the', 'foundation', 'anyoneproviding', 'copies', 'of', 'project', 'gutenbergtm', 'electronic', 'works', 'inaccordance', 'with', 'this', 'agreement', 'and', 'any', 'volunteers', 'associated', 'with', 'theproduction', 'promotion', 'and', 'distribution', 'of', 'project', 'gutenbergtmelectronic', 'works', 'harmless', 'from', 'all', 'liability', 'costs', 'and', 'expensesincluding', 'legal', 'fees', 'that', 'arise', 'directly', 'or', 'indirectly', 'from', 'any', 'ofthe', 'following', 'which', 'you', 'do', 'or', 'cause', 'to', 'occur', 'a', 'distribution', 'of', 'thisor', 'any', 'project', 'gutenbergtm', 'work', 'b', 'alteration', 'modification', 'oradditions', 'or', 'deletions', 'to', 'any', 'project', 'gutenbergtm', 'work', 'and', 'c', 'anydefect', 'you', 'causesection', '', 'information', 'about', 'the', 'mission', 'of', 'project', 'gutenbergtmproject', 'gutenbergtm', 'is', 'synonymous', 'with', 'the', 'free', 'distribution', 'ofelectronic', 'works', 'in', 'formats', 'readable', 'by', 'the', 'widest', 'variety', 'ofcomputers', 'including', 'obsolete', 'old', 'middleaged', 'and', 'new', 'computers', 'itexists', 'because', 'of', 'the', 'efforts', 'of', 'hundreds', 'of', 'volunteers', 'and', 'donationsfrom', 'people', 'in', 'all', 'walks', 'of', 'lifevolunteers', 'and', 'financial', 'support', 'to', 'provide', 'volunteers', 'with', 'theassistance', 'they', 'need', 'are', 'critical', 'to', 'reaching', 'project', 'gutenbergtmsgoals', 'and', 'ensuring', 'that', 'the', 'project', 'gutenbergtm', 'collection', 'willremain', 'freely', 'available', 'for', 'generations', 'to', 'come', 'in', '', 'the', 'projectgutenberg', 'literary', 'archive', 'foundation', 'was', 'created', 'to', 'provide', 'a', 'secureand', 'permanent', 'future', 'for', 'project', 'gutenbergtm', 'and', 'futuregenerations', 'to', 'learn', 'more', 'about', 'the', 'project', 'gutenberg', 'literaryarchive', 'foundation', 'and', 'how', 'your', 'efforts', 'and', 'donations', 'can', 'help', 'seesections', '', 'and', '', 'and', 'the', 'foundation', 'information', 'page', 'atwwwgutenbergorg', 'section', '', 'information', 'about', 'the', 'project', 'gutenbergliterary', 'archive', 'foundationthe', 'project', 'gutenberg', 'literary', 'archive', 'foundation', 'is', 'a', 'non', 'profitc', 'educational', 'corporation', 'organized', 'under', 'the', 'laws', 'of', 'thestate', 'of', 'mississippi', 'and', 'granted', 'tax', 'exempt', 'status', 'by', 'the', 'internalrevenue', 'service', 'the', 'foundations', 'ein', 'or', 'federal', 'tax', 'identificationnumber', 'is', '', 'contributions', 'to', 'the', 'project', 'gutenberg', 'literaryarchive', 'foundation', 'are', 'tax', 'deductible', 'to', 'the', 'full', 'extent', 'permitted', 'byus', 'federal', 'laws', 'and', 'your', 'states', 'lawsthe', 'foundations', 'principal', 'office', 'is', 'in', 'fairbanks', 'alaska', 'with', 'themailing', 'address', 'po', 'box', '', 'fairbanks', 'ak', '', 'but', 'itsvolunteers', 'and', 'employees', 'are', 'scattered', 'throughout', 'numerouslocations', 'its', 'business', 'office', 'is', 'located', 'at', '', 'north', '', 'west', 'saltlake', 'city', 'ut', '', '', '', 'email', 'contact', 'links', 'and', 'up', 'todate', 'contact', 'information', 'can', 'be', 'found', 'at', 'the', 'foundations', 'web', 'site', 'andofficial', 'page', 'at', 'wwwgutenbergorgcontactfor', 'additional', 'contact', 'information', '', '', '', 'dr', 'gregory', 'b', 'newby', '', '', '', 'chief', 'executive', 'and', 'director', '', '', '', 'gbnewbypglaforgsection', '', 'information', 'about', 'donations', 'to', 'the', 'project', 'gutenbergliterary', 'archive', 'foundationproject', 'gutenbergtm', 'depends', 'upon', 'and', 'cannot', 'survive', 'without', 'widespread', 'public', 'support', 'and', 'donations', 'to', 'carry', 'out', 'its', 'mission', 'ofincreasing', 'the', 'number', 'of', 'public', 'domain', 'and', 'licensed', 'works', 'that', 'can', 'befreely', 'distributed', 'in', 'machine', 'readable', 'form', 'accessible', 'by', 'the', 'widestarray', 'of', 'equipment', 'including', 'outdated', 'equipment', 'many', 'small', 'donations', 'to', '', 'are', 'particularly', 'important', 'to', 'maintaining', 'tax', 'exemptstatus', 'with', 'the', 'irsthe', 'foundation', 'is', 'committed', 'to', 'complying', 'with', 'the', 'laws', 'regulatingcharities', 'and', 'charitable', 'donations', 'in', 'all', '', 'states', 'of', 'the', 'unitedstates', 'compliance', 'requirements', 'are', 'not', 'uniform', 'and', 'it', 'takes', 'aconsiderable', 'effort', 'much', 'paperwork', 'and', 'many', 'fees', 'to', 'meet', 'and', 'keep', 'upwith', 'these', 'requirements', 'we', 'do', 'not', 'solicit', 'donations', 'in', 'locationswhere', 'we', 'have', 'not', 'received', 'written', 'confirmation', 'of', 'compliance', 'to', 'senddonations', 'or', 'determine', 'the', 'status', 'of', 'compliance', 'for', 'any', 'particularstate', 'visit', 'wwwgutenbergorgdonatewhile', 'we', 'cannot', 'and', 'do', 'not', 'solicit', 'contributions', 'from', 'states', 'where', 'wehave', 'not', 'met', 'the', 'solicitation', 'requirements', 'we', 'know', 'of', 'no', 'prohibitionagainst', 'accepting', 'unsolicited', 'donations', 'from', 'donors', 'in', 'such', 'states', 'whoapproach', 'us', 'with', 'offers', 'to', 'donateinternational', 'donations', 'are', 'gratefully', 'accepted', 'but', 'we', 'cannot', 'makeany', 'statements', 'concerning', 'tax', 'treatment', 'of', 'donations', 'received', 'fromoutside', 'the', 'united', 'states', 'us', 'laws', 'alone', 'swamp', 'our', 'small', 'staffplease', 'check', 'the', 'project', 'gutenberg', 'web', 'pages', 'for', 'current', 'donationmethods', 'and', 'addresses', 'donations', 'are', 'accepted', 'in', 'a', 'number', 'of', 'otherways', 'including', 'checks', 'online', 'payments', 'and', 'credit', 'card', 'donations', 'todonate', 'please', 'visit', 'wwwgutenbergorgdonatesection', '', 'general', 'information', 'about', 'project', 'gutenbergtm', 'electronic', 'worksprofessor', 'michael', 's', 'hart', 'was', 'the', 'originator', 'of', 'the', 'projectgutenbergtm', 'concept', 'of', 'a', 'library', 'of', 'electronic', 'works', 'that', 'could', 'befreely', 'shared', 'with', 'anyone', 'for', 'forty', 'years', 'he', 'produced', 'anddistributed', 'project', 'gutenbergtm', 'ebooks', 'with', 'only', 'a', 'loose', 'network', 'ofvolunteer', 'supportproject', 'gutenbergtm', 'ebooks', 'are', 'often', 'created', 'from', 'several', 'printededitions', 'all', 'of', 'which', 'are', 'confirmed', 'as', 'not', 'protected', 'by', 'copyright', 'inthe', 'us', 'unless', 'a', 'copyright', 'notice', 'is', 'included', 'thus', 'we', 'do', 'notnecessarily', 'keep', 'ebooks', 'in', 'compliance', 'with', 'any', 'particular', 'papereditionmost', 'people', 'start', 'at', 'our', 'web', 'site', 'which', 'has', 'the', 'main', 'pg', 'searchfacility', 'wwwgutenbergorgthis', 'web', 'site', 'includes', 'information', 'about', 'project', 'gutenbergtmincluding', 'how', 'to', 'make', 'donations', 'to', 'the', 'project', 'gutenberg', 'literaryarchive', 'foundation', 'how', 'to', 'help', 'produce', 'our', 'new', 'ebooks', 'and', 'how', 'tosubscribe', 'to', 'our', 'email', 'newsletter', 'to', 'hear', 'about', 'new', 'ebooks']\n" + ] + } + ], "source": [ - "# your code here" + "# your code here\n", + "removed_ref = list(map(lambda word: reference(word).lower(),prophet))\n", + "print(removed_ref)" ] }, { @@ -151,21 +184,12 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 30, "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" + " return x.split('\\n')" ] }, { @@ -177,13 +201,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 40, "metadata": { "scrolled": true }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[['dispense'], ['with'], ['confidenceif'], ['this'], ['is'], ['my'], ['day'], ['of'], ['harvest'], ['in'], ['whatfields'], ['have'], ['i'], ['sowed'], ['the'], ['seed'], ['and'], ['inwhat'], ['unremembered'], ['seasonsif'], ['this'], ['indeed'], ['be'], ['the'], ['hour'], ['in'], ['which'], ['ilift'], ['up'], ['my'], ['lantern'], ['it'], ['is'], ['not'], ['my'], ['flamethat'], ['shall'], ['burn'], ['thereinempty'], ['and'], ['dark'], ['shall'], ['i'], ['raise'], ['my'], ['lanternand'], ['the'], ['guardian'], ['of'], ['the'], ['night'], ['shall'], ['fillit'], ['with'], ['oil'], ['and'], ['he'], ['shall'], ['light'], ['it'], ['alsothese'], ['things'], ['he'], ['said'], ['in'], ['words'], ['but'], ['muchin'], ['his'], ['heart'], ['remained'], ['unsaid'], ['for'], ['hehimself'], ['could'], ['not'], ['speak'], ['his'], ['deepersecretillustration'], ['and'], ['when'], ['he'], ['entered'], ['into'], ['the'], ['city'], ['allthe'], ['people'], ['came'], ['to'], ['meet'], ['him'], ['and'], ['theywere'], ['crying'], ['out'], ['to'], ['him'], ['as'], ['with'], ['onevoiceand'], ['the'], ['elders'], ['of'], ['the'], ['city'], ['stood'], ['forthand'], ['saidgo'], ['not'], ['yet'], ['away'], ['from'], ['usa'], ['noontide'], ['have'], ['you'], ['been'], ['in'], ['ourtwilight'], ['and'], ['your'], ['youth'], ['has'], ['given'], ['usdreams'], ['to'], ['dreamno'], ['stranger'], ['are'], ['you'], ['among'], ['us'], ['nora'], ['guest'], ['but'], ['our'], ['son'], ['and'], ['our'], ['dearlybelovedsuffer'], ['not'], ['yet'], ['our'], ['eyes'], ['to'], ['hunger'], ['foryour'], ['faceand'], ['the'], ['priests'], ['and'], ['the'], ['priestesses'], ['saidunto'], ['himlet'], ['not'], ['the'], ['waves'], ['of'], ['the'], ['sea'], ['separate'], ['usnow'], ['and'], ['the'], ['years'], ['you'], ['have'], ['spent'], ['in'], ['ourmidst'], ['become'], ['a'], ['memoryyou'], ['have'], ['walked'], ['among'], ['us'], ['a'], ['spiritand'], ['your'], ['shadow'], ['has'], ['been'], ['a'], ['lightupon'], ['our'], ['facesmuch'], ['have'], ['we'], ['loved'], ['you'], ['but'], ['speechlesswas'], ['our'], ['love'], ['and'], ['with'], ['veils'], ['has'], ['it'], ['beenveiledyet'], ['now'], ['it'], ['cries'], ['aloud'], ['unto'], ['you'], ['andwould'], ['stand'], ['revealed'], ['before'], ['youand'], ['ever'], ['has'], ['it'], ['been'], ['that'], ['love'], ['knowsnot'], ['its'], ['own'], ['depth'], ['until'], ['the'], ['hour'], ['ofseparationand'], ['others'], ['came'], ['also'], ['and'], ['entreated'], ['himbut'], ['he'], ['answered'], ['them'], ['not'], ['he'], ['only'], ['benthis'], ['head'], ['and'], ['those'], ['who'], ['stood'], ['near'], ['sawhis'], ['tears'], ['falling'], ['upon'], ['his'], ['breastand'], ['he'], ['and'], ['the'], ['people'], ['proceeded'], ['towardsthe'], ['great'], ['square'], ['before'], ['the'], ['templeand'], ['there'], ['came'], ['out'], ['of'], ['the'], ['sanctuary'], ['awoman'], ['whose'], ['name'], ['was'], ['almitra'], ['and'], ['shewas'], ['a'], ['seeressand'], ['he'], ['looked'], ['upon'], ['her'], ['with'], ['exceedingtenderness'], ['for'], ['it'], ['was'], ['she'], ['who'], ['had'], ['firstsought'], ['and'], ['believed'], ['in'], ['him'], ['when'], ['he'], ['hadbeen'], ['but'], ['a'], ['day'], ['in'], ['their'], ['city'], ['andshe'], ['hailed'], ['him'], ['sayingprophet'], ['of'], ['god'], ['in'], ['quest'], ['of'], ['theuttermost'], ['long'], ['have'], ['you'], ['searched'], ['thedistances'], ['for'], ['your'], ['shipand'], ['now'], ['your'], ['ship'], ['has'], ['come'], ['and'], ['you'], ['mustneeds'], ['godeep'], ['is'], ['your'], ['longing'], ['for'], ['the'], ['land'], ['ofyour'], ['memories'], ['and'], ['the'], ['dwelling'], ['placeof'], ['your'], ['greater'], ['desires'], ['and'], ['our'], ['lovewould'], ['not'], ['bind'], ['you'], ['nor'], ['our'], ['needs'], ['holdyouyet'], ['this'], ['we'], ['ask'], ['ere'], ['you'], ['leave'], ['us'], ['thatyou'], ['speak'], ['to'], ['us'], ['and'], ['give'], ['us'], ['of'], ['yourtruthand'], ['we'], ['will'], ['give'], ['it'], ['unto'], ['our'], ['childrenand'], ['they'], ['unto'], ['their'], ['children'], ['and'], ['itshall'], ['not'], ['perishin'], ['your'], ['aloneness'], ['you'], ['have'], ['watched'], ['withour'], ['days'], ['and'], ['in'], ['your'], ['wakefulness'], ['youhave'], ['listened'], ['to'], ['the'], ['weeping'], ['and'], ['thelaughter'], ['of'], ['our'], ['sleepnow'], ['therefore'], ['disclose'], ['us'], ['to'], ['ourselvesand'], ['tell'], ['us'], ['all'], ['that'], ['has'], ['been'], ['shownyou'], ['of'], ['that'], ['which'], ['is'], ['between'], ['birth'], ['anddeathand'], ['he'], ['answeredpeople'], ['of'], ['orphalese'], ['of'], ['what'], ['can'], ['ispeak'], ['save'], ['of'], ['that'], ['which'], ['is'], ['even'], ['nowmoving'], ['within'], ['your'], ['souls'], ['then'], ['said'], ['almitra'], ['speak'], ['to'], ['us'], ['ofloveand'], ['he'], ['raised'], ['his'], ['head'], ['and'], ['looked'], ['uponthe'], ['people'], ['and'], ['there'], ['fell'], ['a'], ['stillnessupon'], ['them'], ['and'], ['with'], ['a'], ['great'], ['voice'], ['hesaidwhen'], ['love'], ['beckons'], ['to'], ['you'], ['follow'], ['himthough'], ['his'], ['ways'], ['are'], ['hard'], ['and'], ['steepand'], ['when'], ['his'], ['wings'], ['enfold'], ['you'], ['yield'], ['tohimthough'], ['the'], ['sword'], ['hidden'], ['among'], ['hispinions'], ['may'], ['wound'], ['youand'], ['when'], ['he'], ['speaks'], ['to'], ['you'], ['believe'], ['inhimthough'], ['his'], ['voice'], ['may'], ['shatter'], ['your'], ['dreamsas'], ['the'], ['north'], ['wind'], ['lays'], ['waste'], ['the'], ['gardenfor'], ['even'], ['as'], ['love'], ['crowns'], ['you'], ['so'], ['shallhe'], ['crucify'], ['you'], ['even'], ['as'], ['he'], ['is'], ['for'], ['yourgrowth'], ['so'], ['is'], ['he'], ['for'], ['your'], ['pruningeven'], ['as'], ['he'], ['ascends'], ['to'], ['your'], ['height'], ['andcaresses'], ['your'], ['tenderest'], ['branchesthat'], ['quiver'], ['in'], ['the'], ['sunso'], ['shall'], ['he'], ['descend'], ['to'], ['your'], ['roots'], ['andshake'], ['them'], ['in'], ['their'], ['clinging'], ['to'], ['theearthlike'], ['sheaves'], ['of'], ['corn'], ['he'], ['gathers'], ['you'], ['untohimselfhe'], ['threshes'], ['you'], ['to'], ['make'], ['you'], ['nakedhe'], ['sifts'], ['you'], ['to'], ['free'], ['you'], ['from'], ['yourhuskshe'], ['grinds'], ['you'], ['to'], ['whitenesshe'], ['kneads'], ['you'], ['until'], ['you'], ['are'], ['pliantand'], ['then'], ['he'], ['assigns'], ['you'], ['to'], ['his'], ['sacredfire'], ['that'], ['you'], ['may'], ['become'], ['sacred'], ['breadfor'], ['gods'], ['sacred'], ['feastall'], ['these'], ['things'], ['shall'], ['love'], ['do'], ['unto'], ['youthat'], ['you'], ['may'], ['know'], ['the'], ['secrets'], ['of'], ['yourheart'], ['and'], ['in'], ['that'], ['knowledge'], ['become'], ['afragment'], ['of'], ['lifes'], ['heartbut'], ['if'], ['in'], ['your'], ['fear'], ['you'], ['would'], ['seek'], ['onlyloves'], ['peace'], ['and'], ['loves'], ['pleasurethen'], ['it'], ['is'], ['better'], ['for'], ['you'], ['that'], ['youcover'], ['your'], ['nakedness'], ['and'], ['pass'], ['out'], ['ofloves'], ['threshingfloorinto'], ['the'], ['seasonless'], ['world'], ['where'], ['youshall'], ['laugh'], ['but'], ['not'], ['all'], ['of'], ['yourlaughter'], ['and'], ['weep'], ['but'], ['not'], ['all'], ['of'], ['yourtearslove'], ['gives'], ['naught'], ['but'], ['itself'], ['and'], ['takesnaught'], ['but'], ['from'], ['itselflove'], ['possesses'], ['not'], ['nor'], ['would'], ['it'], ['bepossessedfor'], ['love'], ['is'], ['sufficient'], ['unto'], ['lovewhen'], ['you'], ['love'], ['you'], ['should'], ['not'], ['say'], ['godis'], ['in'], ['my'], ['heart'], ['but'], ['rather'], ['i'], ['am'], ['inthe'], ['heart'], ['of'], ['godand'], ['think'], ['not'], ['you'], ['can'], ['direct'], ['the'], ['courseof'], ['love'], ['for'], ['love'], ['if'], ['it'], ['finds'], ['youworthy'], ['directs'], ['your'], ['courselove'], ['has'], ['no'], ['other'], ['desire'], ['but'], ['to'], ['fulfilitselfbut'], ['if'], ['you'], ['love'], ['and'], ['must'], ['needs'], ['havedesires'], ['let'], ['these'], ['be'], ['your'], ['desiresto'], ['melt'], ['and'], ['be'], ['like'], ['a'], ['running'], ['brook'], ['thatsings'], ['its'], ['melody'], ['to'], ['the'], ['night'], ['toknow'], ['the'], ['pain'], ['of'], ['too'], ['much'], ['tendernessto'], ['be'], ['wounded'], ['by'], ['your'], ['own'], ['understandingof'], ['loveand'], ['to'], ['bleed'], ['willingly'], ['and'], ['joyfullyto'], ['wake'], ['at'], ['dawn'], ['with'], ['a'], ['winged'], ['heart'], ['andgive'], ['thanks'], ['for'], ['another'], ['day'], ['of'], ['lovingto'], ['rest'], ['at'], ['the'], ['noon'], ['hour'], ['and'], ['meditateloves'], ['ecstacyto'], ['return'], ['home'], ['at'], ['eventide'], ['withgratitudeand'], ['then'], ['to'], ['sleep'], ['with'], ['a'], ['prayer'], ['forthe'], ['beloved'], ['in'], ['your'], ['heart'], ['and'], ['a'], ['song'], ['ofpraise'], ['upon'], ['your'], ['lipsillustration'], [''], ['then'], ['almitra'], ['spoke'], ['again'], ['and'], ['saidand'], ['what'], ['of'], ['marriage'], ['masterand'], ['he'], ['answered'], ['sayingyou'], ['were'], ['born'], ['together'], ['and'], ['together'], ['youshall'], ['be'], ['forevermoreyou'], ['shall'], ['be'], ['together'], ['when'], ['the'], ['whitewings'], ['of'], ['death'], ['scatter'], ['your'], ['daysaye'], ['you'], ['shall'], ['be'], ['together'], ['even'], ['in'], ['thesilent'], ['memory'], ['of'], ['godbut'], ['let'], ['there'], ['be'], ['spaces'], ['in'], ['yourtogethernessand'], ['let'], ['the'], ['winds'], ['of'], ['the'], ['heavens'], ['dancebetween'], ['youlove'], ['one'], ['another'], ['but'], ['make'], ['not'], ['a'], ['bond'], ['oflovelet'], ['it'], ['rather'], ['be'], ['a'], ['moving'], ['sea'], ['betweenthe'], ['shores'], ['of'], ['your'], ['soulsfill'], ['each'], ['others'], ['cup'], ['but'], ['drink'], ['not'], ['fromone'], ['cupgive'], ['one'], ['another'], ['of'], ['your'], ['bread'], ['but'], ['eatnot'], ['from'], ['the'], ['same'], ['loaf'], ['sing'], ['anddance'], ['together'], ['and'], ['be'], ['joyous'], ['but'], ['leteach'], ['one'], ['of'], ['you'], ['be'], ['aloneeven'], ['as'], ['the'], ['strings'], ['of'], ['a'], ['lute'], ['are'], ['alonethough'], ['they'], ['quiver'], ['with'], ['the'], ['same'], ['musicgive'], ['your'], ['hearts'], ['but'], ['not'], ['into'], ['eachothers'], ['keepingfor'], ['only'], ['the'], ['hand'], ['of'], ['life'], ['can'], ['containyour'], ['heartsand'], ['stand'], ['together'], ['yet'], ['not'], ['too'], ['neartogetherfor'], ['the'], ['pillars'], ['of'], ['the'], ['temple'], ['standapartand'], ['the'], ['oak'], ['tree'], ['and'], ['the'], ['cypress'], ['grownot'], ['in'], ['each'], ['others'], ['shadowillustration'], [''], ['and'], ['a'], ['woman'], ['who'], ['held'], ['a'], ['babeagainst'], ['her'], ['bosom'], ['said'], ['speak'], ['to'], ['us'], ['ofchildrenand'], ['he'], ['saidyour'], ['children'], ['are'], ['not'], ['your'], ['childrenthey'], ['are'], ['the'], ['sons'], ['and'], ['daughters'], ['oflifes'], ['longing'], ['for'], ['itselfthey'], ['come'], ['through'], ['you'], ['but'], ['not'], ['from'], ['youand'], ['though'], ['they'], ['are'], ['with'], ['you'], ['yet'], ['theybelong'], ['not'], ['to'], ['youyou'], ['may'], ['give'], ['them'], ['your'], ['love'], ['but'], ['not'], ['yourthoughtsfor'], ['they'], ['have'], ['their'], ['own'], ['thoughtsyou'], ['may'], ['house'], ['their'], ['bodies'], ['but'], ['not'], ['theirsoulsfor'], ['their'], ['souls'], ['dwell'], ['in'], ['the'], ['house'], ['oftomorrow'], ['which'], ['you'], ['cannot'], ['visit'], ['noteven'], ['in'], ['your'], ['dreamsyou'], ['may'], ['strive'], ['to'], ['be'], ['like'], ['them'], ['but'], ['seeknot'], ['to'], ['make'], ['them'], ['like'], ['you'], ['forlife'], ['goes'], ['not'], ['backward'], ['nor'], ['tarries'], ['withyesterdayyou'], ['are'], ['the'], ['bows'], ['from'], ['which'], ['yourchildren'], ['as'], ['living'], ['arrows'], ['are'], ['sentforththe'], ['archer'], ['sees'], ['the'], ['mark'], ['upon'], ['the'], ['pathof'], ['the'], ['infinite'], ['and'], ['he'], ['bends'], ['you'], ['withhis'], ['might'], ['that'], ['his'], ['arrows'], ['may'], ['go'], ['swiftand'], ['farlet'], ['your'], ['bending'], ['in'], ['the'], ['archers'], ['hand'], ['befor'], ['gladnessfor'], ['even'], ['as'], ['he'], ['loves'], ['the'], ['arrow'], ['thatflies'], ['so'], ['he'], ['loves'], ['also'], ['the'], ['bow'], ['that'], ['isstable'], ['then'], ['said'], ['a'], ['rich'], ['man'], ['speak'], ['to'], ['us'], ['ofgivingand'], ['he'], ['answeredyou'], ['give'], ['but'], ['little'], ['when'], ['you'], ['give'], ['ofyour'], ['possessionsit'], ['is'], ['when'], ['you'], ['give'], ['of'], ['yourself'], ['that'], ['youtruly'], ['givefor'], ['what'], ['are'], ['your'], ['possessions'], ['but'], ['thingsyou'], ['keep'], ['and'], ['guard'], ['for'], ['fear'], ['you'], ['may'], ['needthem'], ['tomorrowand'], ['tomorrow'], ['what'], ['shall'], ['tomorrow'], ['bringto'], ['the'], ['overprudent'], ['dog'], ['burying'], ['bonesin'], ['the'], ['trackless'], ['sand'], ['as'], ['he'], ['follows'], ['thepilgrims'], ['to'], ['the'], ['holy'], ['cityand'], ['what'], ['is'], ['fear'], ['of'], ['need'], ['but'], ['needitselfis'], ['not'], ['dread'], ['of'], ['thirst'], ['when'], ['your'], ['well'], ['isfull'], ['the'], ['thirst'], ['that'], ['is'], ['unquenchablethere'], ['are'], ['those'], ['who'], ['give'], ['little'], ['of'], ['themuch'], ['which'], ['they'], ['haveand'], ['they'], ['giveit'], ['for'], ['recognition'], ['and'], ['their'], ['hiddendesire'], ['makes'], ['their'], ['gifts'], ['unwholesomeand'], ['there'], ['are'], ['those'], ['who'], ['have'], ['little'], ['andgive'], ['it'], ['allthese'], ['are'], ['the'], ['believers'], ['in'], ['life'], ['andthe'], ['bounty'], ['of'], ['life'], ['and'], ['their'], ['coffer'], ['isnever'], ['emptythere'], ['are'], ['those'], ['who'], ['give'], ['with'], ['joy'], ['andthat'], ['joy'], ['is'], ['their'], ['rewardand'], ['there'], ['are'], ['those'], ['who'], ['give'], ['with'], ['painand'], ['that'], ['pain'], ['is'], ['their'], ['baptismand'], ['there'], ['are'], ['those'], ['who'], ['give'], ['and'], ['knownot'], ['pain'], ['in'], ['giving'], ['nor'], ['do'], ['they'], ['seekjoy'], ['nor'], ['give'], ['with'], ['mindfulness'], ['ofvirtuethey'], ['give'], ['as'], ['in'], ['yonder'], ['valley'], ['the'], ['myrtlebreathes'], ['its'], ['fragrance'], ['into'], ['spacethrough'], ['the'], ['hands'], ['of'], ['such'], ['as'], ['these'], ['godspeaks'], ['and'], ['from'], ['behind'], ['their'], ['eyes'], ['hesmiles'], ['upon'], ['the'], ['earthillustration'], ['it'], ['is'], ['well'], ['to'], ['give'], ['when'], ['asked'], ['but'], ['itis'], ['better'], ['to'], ['give'], ['unasked'], ['throughunderstandingand'], ['to'], ['the'], ['openhanded'], ['the'], ['search'], ['forone'], ['who'], ['shall'], ['receive'], ['is'], ['joy'], ['greaterthan'], ['givingand'], ['is'], ['there'], ['aught'], ['you'], ['would'], ['withholdall'], ['you'], ['have'], ['shall'], ['some'], ['day'], ['be'], ['giventherefore'], ['give'], ['now'], ['that'], ['the'], ['seasonof'], ['giving'], ['may'], ['be'], ['yours'], ['and'], ['not'], ['yourinheritorsyou'], ['often'], ['say'], ['i'], ['would'], ['give'], ['but'], ['onlyto'], ['the'], ['deservingthe'], ['trees'], ['in'], ['your'], ['orchard'], ['say'], ['not'], ['sonor'], ['the'], ['flocks'], ['in'], ['your'], ['pasturethey'], ['give'], ['that'], ['they'], ['may'], ['live'], ['for'], ['towithhold'], ['is'], ['to'], ['perishsurely'], ['he'], ['who'], ['is'], ['worthy'], ['to'], ['receive'], ['hisdays'], ['and'], ['his'], ['nights'], ['is'], ['worthy'], ['of'], ['allelse'], ['from'], ['youand'], ['he'], ['who'], ['has'], ['deserved'], ['to'], ['drink'], ['fromthe'], ['ocean'], ['of'], ['life'], ['deserves'], ['to'], ['fill'], ['hiscup'], ['from'], ['your'], ['little'], ['streamand'], ['what'], ['desert'], ['greater'], ['shall'], ['there'], ['bethan'], ['that'], ['which'], ['lies'], ['in'], ['the'], ['courageand'], ['the'], ['confidence'], ['nay'], ['the'], ['charity'], ['ofreceivingand'], ['who'], ['are'], ['you'], ['that'], ['men'], ['should'], ['rendtheir'], ['bosom'], ['and'], ['unveil'], ['their'], ['pridethat'], ['you'], ['may'], ['see'], ['their'], ['worth'], ['naked'], ['andtheir'], ['pride'], ['unabashedsee'], ['first'], ['that'], ['you'], ['yourself'], ['deserve'], ['tobe'], ['a'], ['giver'], ['and'], ['an'], ['instrument'], ['of'], ['givingfor'], ['in'], ['truth'], ['it'], ['is'], ['life'], ['that'], ['gives'], ['untolifewhile'], ['you'], ['who'], ['deem'], ['yourself'], ['agiver'], ['are'], ['but'], ['a'], ['witnessand'], ['you'], ['receiversand'], ['you'], ['areall'], ['receiversassume'], ['no'], ['weight'], ['ofgratitude'], ['lest'], ['you'], ['lay'], ['a'], ['yoke'], ['uponyourself'], ['and'], ['upon'], ['him'], ['who'], ['givesrather'], ['rise'], ['together'], ['with'], ['the'], ['giver'], ['onhis'], ['gifts'], ['as'], ['on'], ['wingsfor'], ['to'], ['be'], ['overmindful'], ['of'], ['your'], ['debt'], ['isito'], ['doubt'], ['his'], ['generosity'], ['who'], ['has'], ['thefreehearted'], ['earth'], ['for'], ['mother'], ['and'], ['godfor'], ['fatherillustration'], [''], ['then'], ['an'], ['old'], ['man'], ['a'], ['keeper'], ['of'], ['aninn'], ['said'], ['speak'], ['to'], ['us'], ['of'], ['eating'], ['anddrinkingand'], ['he'], ['saidwould'], ['that'], ['you'], ['could'], ['live'], ['on'], ['thefragrance'], ['of'], ['the'], ['earth'], ['and'], ['like'], ['an'], ['airplant'], ['be'], ['sustained'], ['by'], ['the'], ['lightbut'], ['since'], ['you'], ['must'], ['kill'], ['to'], ['eat'], ['and'], ['robthe'], ['newly'], ['born'], ['of'], ['its'], ['mothers'], ['milk'], ['toquench'], ['your'], ['thirst'], ['let'], ['it'], ['then'], ['be'], ['anact'], ['of'], ['worshipand'], ['let'], ['your'], ['board'], ['stand'], ['an'], ['altar'], ['onwhich'], ['the'], ['pure'], ['and'], ['the'], ['innocent'], ['offorest'], ['and'], ['plain'], ['are'], ['sacrificed'], ['for'], ['thatwhich'], ['is'], ['purer'], ['and'], ['still'], ['more'], ['innocentin'], ['manwhen'], ['you'], ['kill'], ['a'], ['beast'], ['say'], ['to'], ['him'], ['in'], ['yourheartby'], ['the'], ['same'], ['power'], ['that'], ['slays'], ['you'], ['i'], ['tooam'], ['slain'], ['and'], ['i'], ['too'], ['shall'], ['be'], ['consumedfor'], ['the'], ['law'], ['that'], ['delivered'], ['you'], ['intomy'], ['hand'], ['shall'], ['deliver'], ['me'], ['into'], ['a'], ['mightierhandyour'], ['blood'], ['and'], ['my'], ['blood'], ['is'], ['naught'], ['butthe'], ['sap'], ['that'], ['feeds'], ['the'], ['tree'], ['of'], ['heavenand'], ['when'], ['you'], ['crush'], ['an'], ['apple'], ['with'], ['yourteeth'], ['say'], ['to'], ['it'], ['in'], ['your'], ['heartyour'], ['seeds'], ['shall'], ['live'], ['in'], ['my'], ['bodyand'], ['the'], ['buds'], ['of'], ['your'], ['tomorrow'], ['shallblossom'], ['in'], ['my'], ['heartand'], ['your'], ['fragrance'], ['shall'], ['be'], ['my'], ['breathand'], ['together'], ['we'], ['shall'], ['rejoice'], ['throughall'], ['the'], ['seasonsand'], ['in'], ['the'], ['autumn'], ['when'], ['you'], ['gatherthe'], ['grapes'], ['of'], ['your'], ['vineyards'], ['for'], ['thewinepress'], ['say'], ['in'], ['your'], ['hearti'], ['too'], ['am'], ['a'], ['vineyard'], ['and'], ['my'], ['fruit'], ['shallbe'], ['gathered'], ['for'], ['the'], ['winepressand'], ['like'], ['new'], ['wine'], ['i'], ['shall'], ['be'], ['kept'], ['ineternal'], ['vesselsand'], ['in'], ['winter'], ['when'], ['you'], ['draw'], ['the'], ['winelet'], ['there'], ['be'], ['in'], ['your'], ['heart'], ['a'], ['songfor'], ['each'], ['cupand'], ['let'], ['there'], ['be'], ['in'], ['the'], ['song'], ['aremembrance'], ['for'], ['the'], ['autumn'], ['days'], ['and'], ['forthe'], ['vineyard'], ['and'], ['for'], ['the'], ['winepress'], ['then'], ['a'], ['ploughman'], ['said'], ['speakto'], ['us'], ['of'], ['workand'], ['he'], ['answered'], ['sayingyou'], ['work'], ['that'], ['you'], ['may'], ['keep'], ['pace'], ['with'], ['theearth'], ['and'], ['the'], ['soul'], ['of'], ['the'], ['earthfor'], ['to'], ['be'], ['idle'], ['is'], ['to'], ['become'], ['a'], ['strangerunto'], ['the'], ['seasons'], ['and'], ['to'], ['step'], ['out'], ['oflifes'], ['procession'], ['that'], ['marches'], ['inmajesty'], ['and'], ['proud'], ['submission'], ['towards'], ['theinfinitewhen'], ['you'], ['work'], ['you'], ['are'], ['a'], ['flute'], ['throughwhose'], ['heart'], ['the'], ['whispering'], ['of'], ['the'], ['hoursturns'], ['to'], ['musicwhich'], ['of'], ['you'], ['would'], ['be'], ['a'], ['reed'], ['dumb'], ['andsilent'], ['when'], ['all'], ['else'], ['sings'], ['together'], ['inunisonalways'], ['you'], ['have'], ['been'], ['told'], ['that'], ['work'], ['is'], ['acurse'], ['and'], ['labour'], ['a'], ['misfortunebut'], ['i'], ['say'], ['to'], ['you'], ['that'], ['when'], ['you'], ['work'], ['youfulfil'], ['a'], ['part'], ['of'], ['earths'], ['furthest'], ['dreamassigned'], ['to'], ['you'], ['when'], ['that'], ['dream'], ['wasbornand'], ['in'], ['keeping'], ['yourself'], ['with'], ['labour'], ['youare'], ['in'], ['truth'], ['loving'], ['lifeand'], ['to'], ['love'], ['life'], ['through'], ['labour'], ['is'], ['to'], ['beintimate'], ['with'], ['lifes'], ['inmost'], ['secretbut'], ['if'], ['you'], ['in'], ['your'], ['pain'], ['call'], ['birth'], ['anaffliction'], ['and'], ['the'], ['support'], ['of'], ['the'], ['flesha'], ['curse'], ['written'], ['upon'], ['your'], ['brow'], ['then'], ['ianswer'], ['that'], ['naught'], ['but'], ['the'], ['sweat'], ['ofyour'], ['brow'], ['shall'], ['wash'], ['away'], ['that'], ['which'], ['iswrittenyou'], ['have'], ['been'], ['told'], ['also'], ['that'], ['life'], ['isdarkness'], ['and'], ['in'], ['your'], ['weariness'], ['you'], ['echowhat'], ['was'], ['said'], ['by'], ['the'], ['wearyand'], ['i'], ['say'], ['that'], ['life'], ['is'], ['indeed'], ['darknesssave'], ['when'], ['there'], ['is'], ['urgeand'], ['all'], ['urge'], ['is'], ['blind'], ['save'], ['when'], ['there'], ['isknowledgeand'], ['all'], ['knowledge'], ['is'], ['vain'], ['save'], ['whenthere'], ['is'], ['workand'], ['all'], ['work'], ['is'], ['empty'], ['save'], ['when'], ['there'], ['isloveand'], ['when'], ['you'], ['work'], ['with'], ['love'], ['you'], ['bindyourself'], ['to'], ['yourself'], ['and'], ['to'], ['oneanother'], ['and'], ['to'], ['godand'], ['what'], ['is'], ['it'], ['to'], ['work'], ['with'], ['loveit'], ['is'], ['to'], ['weave'], ['the'], ['cloth'], ['with'], ['threadsdrawn'], ['from'], ['your'], ['heart'], ['even'], ['as'], ['if'], ['yourbeloved'], ['were'], ['to'], ['wear'], ['that'], ['clothit'], ['is'], ['to'], ['build'], ['a'], ['house'], ['with'], ['affectioneven'], ['as'], ['if'], ['your'], ['beloved'], ['were'], ['to'], ['dwell'], ['inthat'], ['houseit'], ['is'], ['to'], ['sow'], ['seeds'], ['with'], ['tenderness'], ['andreap'], ['the'], ['harvest'], ['with'], ['joy'], ['even'], ['as'], ['ifyour'], ['beloved'], ['were'], ['to'], ['eat'], ['the'], ['fruitit'], ['is'], ['to'], ['charge'], ['all'], ['things'], ['you'], ['fashionwith'], ['a'], ['breath'], ['of'], ['your'], ['own'], ['spiritand'], ['to'], ['know'], ['that'], ['all'], ['the'], ['blessed'], ['deadare'], ['standing'], ['about'], ['you'], ['and'], ['watchingoften'], ['have'], ['i'], ['heard'], ['you'], ['say'], ['as'], ['ifspeaking'], ['in'], ['sleep'], ['he'], ['who'], ['works'], ['inmarble'], ['and'], ['finds'], ['the'], ['shape'], ['of'], ['his'], ['ownsoul'], ['in'], ['the'], ['stone'], ['is'], ['nobler'], ['than'], ['he'], ['whoploughs'], ['the'], ['soil'], ['and'], ['he'], ['who'], ['seizesthe'], ['rainbow'], ['to'], ['lay'], ['it'], ['on'], ['a'], ['cloth'], ['in'], ['thelikeness'], ['of'], ['man'], ['is'], ['more'], ['than'], ['he'], ['whomakes'], ['the'], ['sandals'], ['for'], ['our'], ['feetbut'], ['i'], ['say'], ['not'], ['in'], ['sleep'], ['but'], ['in'], ['theoverwakefulness'], ['of'], ['noontide'], ['that'], ['thewind'], ['speaks'], ['not'], ['more'], ['sweetly'], ['to'], ['thegiant'], ['oaks'], ['than'], ['to'], ['the'], ['least'], ['of'], ['all'], ['theblades'], ['of'], ['grassand'], ['he'], ['alone'], ['is'], ['great'], ['who'], ['turns'], ['thevoice'], ['of'], ['the'], ['wind'], ['into'], ['a'], ['song'], ['madesweeter'], ['by'], ['his'], ['own'], ['lovingwork'], ['is'], ['love'], ['made'], ['visibleand'], ['if'], ['you'], ['cannot'], ['work'], ['with'], ['love'], ['butonly'], ['with'], ['distaste'], ['it'], ['is'], ['better'], ['thatyou'], ['should'], ['leave'], ['your'], ['work'], ['and'], ['sit'], ['atthe'], ['gate'], ['of'], ['the'], ['temple'], ['and'], ['take'], ['alms'], ['ofthose'], ['who'], ['work'], ['with'], ['joyfor'], ['if'], ['you'], ['bake'], ['bread'], ['with'], ['indifferenceyou'], ['bake'], ['a'], ['bitter'], ['bread'], ['that'], ['feeds'], ['buthalf'], ['mans'], ['hungerand'], ['if'], ['you'], ['grudge'], ['the'], ['crushing'], ['of'], ['thegrapes'], ['your'], ['grudge'], ['distils'], ['a'], ['poison'], ['inthe'], ['wine'], ['and'], ['if'], ['you'], ['sing'], ['though'], ['asangels'], ['and'], ['love'], ['not'], ['the'], ['singing'], ['youmuffle'], ['mans'], ['ears'], ['to'], ['the'], ['voices'], ['of'], ['theday'], ['and'], ['the'], ['voices'], ['of'], ['the'], ['night'], ['then'], ['a'], ['woman'], ['said'], ['speak'], ['to'], ['us'], ['ofjoy'], ['and'], ['sorrowand'], ['he'], ['answeredyour'], ['joy'], ['is'], ['your'], ['sorrow'], ['unmaskedand'], ['the'], ['selfsame'], ['well'], ['from'], ['which'], ['yourlaughter'], ['rises'], ['was'], ['oftentimes'], ['filledwith'], ['your'], ['tearsand'], ['how'], ['else'], ['can'], ['it'], ['bethe'], ['deeper'], ['that'], ['sorrow'], ['carves'], ['into'], ['yourbeing'], ['the'], ['more'], ['joy'], ['you'], ['can'], ['containis'], ['not'], ['the'], ['cup'], ['that'], ['holds'], ['your'], ['wine'], ['thevery'], ['cup'], ['that'], ['was'], ['burned'], ['in'], ['the'], ['pottersovenand'], ['is'], ['not'], ['the'], ['lute'], ['that'], ['soothes'], ['yourspirit'], ['the'], ['very'], ['wood'], ['that'], ['was'], ['hollowedwith'], ['kniveswhen'], ['you'], ['are'], ['joyous'], ['look'], ['deep'], ['into'], ['yourheart'], ['and'], ['you'], ['shall'], ['find'], ['it'], ['is'], ['onlythat'], ['which'], ['has'], ['given'], ['you'], ['sorrow'], ['that'], ['isgiving'], ['you'], ['joywhen'], ['you'], ['are'], ['sorrowful'], ['look'], ['again'], ['inyour'], ['heart'], ['and'], ['you'], ['shall'], ['see'], ['thatin'], ['truth'], ['you'], ['are'], ['weeping'], ['for'], ['that'], ['whichhas'], ['been'], ['your'], ['delightsome'], ['of'], ['you'], ['say'], ['joy'], ['is'], ['greater'], ['thansorrow'], ['and'], ['others'], ['say'], ['nay'], ['sorrow'], ['isthe'], ['greaterbut'], ['i'], ['say'], ['unto'], ['you'], ['they'], ['areinseparabletogether'], ['they'], ['come'], ['and'], ['when'], ['one'], ['sitsalone'], ['with'], ['you'], ['at'], ['your'], ['board'], ['rememberthat'], ['the'], ['other'], ['is'], ['asleep'], ['upon'], ['your'], ['bedverily'], ['you'], ['are'], ['suspended'], ['like'], ['scalesbetween'], ['your'], ['sorrow'], ['and'], ['your'], ['joyonly'], ['when'], ['you'], ['are'], ['empty'], ['are'], ['you'], ['atstandstill'], ['and'], ['balancedwhen'], ['the'], ['treasurekeeper'], ['lifts'], ['you'], ['toweigh'], ['his'], ['gold'], ['and'], ['his'], ['silver'], ['needsmust'], ['your'], ['joy'], ['or'], ['your'], ['sorrow'], ['rise'], ['orfall'], ['then'], ['a'], ['mason'], ['came'], ['forth'], ['and'], ['saidspeak'], ['to'], ['us'], ['of'], ['housesand'], ['he'], ['answered'], ['and'], ['saidbuild'], ['of'], ['your'], ['imaginings'], ['a'], ['bower'], ['in'], ['thewilderness'], ['ere'], ['you'], ['build'], ['a'], ['house'], ['withinthe'], ['city'], ['wallsfor'], ['even'], ['as'], ['you'], ['have'], ['homecomings'], ['inyour'], ['twilight'], ['so'], ['has'], ['the'], ['wanderer'], ['inyou'], ['the'], ['ever'], ['distant'], ['and'], ['aloneyour'], ['house'], ['is'], ['your'], ['larger'], ['bodyit'], ['grows'], ['in'], ['the'], ['sun'], ['and'], ['sleeps'], ['in'], ['thestillness'], ['of'], ['the'], ['night'], ['and'], ['it'], ['is'], ['notdreamless'], ['does'], ['not'], ['your'], ['house'], ['dreamand'], ['dreaming'], ['leave'], ['the'], ['city'], ['for'], ['groveor'], ['hilltopwould'], ['that'], ['i'], ['could'], ['gather'], ['your'], ['housesinto'], ['my'], ['hand'], ['and'], ['like'], ['a'], ['sower'], ['scatterthem'], ['in'], ['forest'], ['and'], ['meadowwould'], ['the'], ['valleys'], ['were'], ['your'], ['streets'], ['andthe'], ['green'], ['paths'], ['your'], ['alleys'], ['that'], ['youmight'], ['seek'], ['one'], ['another'], ['throughvineyards'], ['and'], ['come'], ['with'], ['the'], ['fragranceof'], ['the'], ['earth'], ['in'], ['your'], ['garmentsbut'], ['these'], ['things'], ['are'], ['not'], ['yet'], ['to'], ['bein'], ['their'], ['fear'], ['your'], ['forefathers'], ['gatheredyou'], ['too'], ['near'], ['together'], ['and'], ['that'], ['fearshall'], ['endure'], ['a'], ['little'], ['longer'], ['a'], ['littlelonger'], ['shall'], ['your'], ['city'], ['walls'], ['separateyour'], ['hearths'], ['from'], ['your'], ['fieldsand'], ['tell'], ['me'], ['people'], ['of'], ['orphalese'], ['whathave'], ['you'], ['in'], ['these'], ['houses'], ['and'], ['what'], ['is'], ['ityou'], ['guard'], ['with'], ['fastened'], ['doorshave'], ['you'], ['peace'], ['the'], ['quiet'], ['urge'], ['thatreveals'], ['your'], ['powerhave'], ['you'], ['remembrances'], ['the'], ['glimmeringarches'], ['that'], ['span'], ['the'], ['summits'], ['of'], ['themindhave'], ['you'], ['beauty'], ['that'], ['leads'], ['the'], ['heartfrom'], ['things'], ['fashioned'], ['of'], ['wood'], ['and'], ['stoneto'], ['the'], ['holy'], ['mountaintell'], ['me'], ['have'], ['you'], ['these'], ['in'], ['your'], ['housesor'], ['have'], ['you'], ['only'], ['comfort'], ['and'], ['the'], ['lustfor'], ['comfort'], ['that'], ['stealthy'], ['thing'], ['thatenters'], ['the'], ['house'], ['a'], ['guest'], ['and'], ['thenbecomes'], ['a'], ['host'], ['and'], ['then'], ['a'], ['masteray'], ['and'], ['it'], ['becomes'], ['a'], ['tamer'], ['and'], ['withhook'], ['and'], ['scourge'], ['makes'], ['puppets'], ['of'], ['yourlarger'], ['desiresthough'], ['its'], ['hands'], ['are'], ['silken'], ['its'], ['heartis'], ['of'], ['ironit'], ['lulls'], ['you'], ['to'], ['sleep'], ['only'], ['to'], ['stand'], ['byyour'], ['bed'], ['and'], ['jeer'], ['at'], ['the'], ['dignity'], ['of'], ['thefleshit'], ['makes'], ['mock'], ['of'], ['your'], ['sound'], ['senses'], ['andlays'], ['them'], ['in'], ['thistledown'], ['like'], ['fragilevesselsverily'], ['the'], ['lust'], ['for'], ['comfort'], ['murdersthe'], ['passion'], ['of'], ['the'], ['soul'], ['and'], ['then'], ['walksgrinning'], ['in'], ['the'], ['funeralbut'], ['you'], ['children'], ['of'], ['space'], ['you'], ['restlessin'], ['rest'], ['you'], ['shall'], ['not'], ['be'], ['trapped'], ['nortamedyour'], ['house'], ['shall'], ['be'], ['not'], ['an'], ['anchor'], ['but'], ['amastit'], ['shall'], ['not'], ['be'], ['a'], ['glistening'], ['film'], ['thatcovers'], ['a'], ['wound'], ['but'], ['an'], ['eyelid'], ['thatguards'], ['the'], ['eyeyou'], ['shall'], ['not'], ['fold'], ['your'], ['wings'], ['that'], ['youmay'], ['pass'], ['through'], ['doors'], ['nor'], ['bend'], ['yourheads'], ['that'], ['they'], ['strike'], ['not'], ['against'], ['aceiling'], ['nor'], ['fear'], ['to'], ['breathe'], ['lest'], ['wallsshould'], ['crack'], ['and'], ['fall'], ['downyou'], ['shall'], ['not'], ['dwell'], ['in'], ['tombs'], ['made'], ['by'], ['thedead'], ['for'], ['the'], ['livingand'], ['though'], ['of'], ['magnificence'], ['andsplendour'], ['your'], ['house'], ['shall'], ['not'], ['holdyour'], ['secret'], ['nor'], ['shelter'], ['your'], ['longingfor'], ['that'], ['which'], ['is'], ['boundless'], ['in'], ['youabides'], ['in'], ['the'], ['mansion'], ['of'], ['the'], ['sky'], ['whosedoor'], ['is'], ['the'], ['morning'], ['mist'], ['and'], ['whosewindows'], ['are'], ['the'], ['songs'], ['and'], ['the'], ['silencesof'], ['night'], ['and'], ['the'], ['weaver'], ['said'], ['speak'], ['to'], ['us'], ['ofclothesand'], ['he'], ['answeredyour'], ['clothes'], ['conceal'], ['much'], ['of'], ['yourbeauty'], ['yet'], ['they'], ['hide'], ['not'], ['theunbeautifuland'], ['though'], ['you'], ['seek'], ['in'], ['garments'], ['thefreedom'], ['of'], ['privacy'], ['you'], ['may'], ['find'], ['in'], ['thema'], ['harness'], ['and'], ['a'], ['chainwould'], ['that'], ['you'], ['could'], ['meet'], ['the'], ['sun'], ['andthe'], ['wind'], ['with'], ['more'], ['of'], ['your'], ['skin'], ['and'], ['lessof'], ['your'], ['raimentfor'], ['the'], ['breath'], ['of'], ['life'], ['is'], ['in'], ['thesunlight'], ['and'], ['the'], ['hand'], ['of'], ['life'], ['is'], ['in'], ['thewindsome'], ['of'], ['you'], ['say'], ['it'], ['is'], ['the'], ['north'], ['windwho'], ['has'], ['woven'], ['the'], ['clothes'], ['we'], ['wearand'], ['i'], ['say'], ['ay'], ['it'], ['was'], ['the'], ['north'], ['windbut'], ['shame'], ['was'], ['his'], ['loom'], ['and'], ['thesoftening'], ['of'], ['the'], ['sinews'], ['was'], ['his'], ['threadand'], ['when'], ['his'], ['work'], ['was'], ['done'], ['he'], ['laughed'], ['inthe'], ['forest'], ['forget'], ['not'], ['that'], ['modestyis'], ['for'], ['a'], ['shield'], ['against'], ['the'], ['eye'], ['of'], ['theuncleanand'], ['when'], ['the'], ['unclean'], ['shall'], ['be'], ['no'], ['morewhat'], ['were'], ['modesty'], ['but'], ['a'], ['fetter'], ['and'], ['afouling'], ['of'], ['the'], ['mindand'], ['forget'], ['not'], ['that'], ['the'], ['earth'], ['delightsto'], ['feel'], ['your'], ['bare'], ['feet'], ['and'], ['the'], ['windslong'], ['to'], ['play'], ['with'], ['your'], ['hair'], ['and'], ['a'], ['merchant'], ['said'], ['speak'], ['to'], ['us'], ['ofbuying'], ['and'], ['sellingand'], ['he'], ['answered'], ['and'], ['saidto'], ['you'], ['the'], ['earth'], ['yields'], ['her'], ['fruit'], ['andyou'], ['shall'], ['not'], ['want'], ['if'], ['you'], ['but'], ['know'], ['howto'], ['fill'], ['your'], ['handsit'], ['is'], ['in'], ['exchanging'], ['the'], ['gifts'], ['of'], ['theearth'], ['that'], ['you'], ['shall'], ['find'], ['abundance'], ['andbe'], ['satisfiedyet'], ['unless'], ['the'], ['exchange'], ['be'], ['in'], ['love'], ['andkindly'], ['justice'], ['it'], ['will'], ['but'], ['lead'], ['some'], ['togreed'], ['and'], ['others'], ['to'], ['hungerwhen'], ['in'], ['the'], ['market'], ['place'], ['you'], ['toilers'], ['ofthe'], ['sea'], ['and'], ['fields'], ['and'], ['vineyards'], ['meetthe'], ['weavers'], ['and'], ['the'], ['potters'], ['and'], ['thegatherers'], ['of'], ['spicesinvoke'], ['then'], ['the'], ['master'], ['spirit'], ['of'], ['theearth'], ['to'], ['come'], ['into'], ['your'], ['midst'], ['andsanctify'], ['the'], ['scales'], ['and'], ['the'], ['reckoningthat'], ['weighs'], ['value'], ['against'], ['value'], ['andsuffer'], ['not'], ['the'], ['barrenhanded'], ['to'], ['takepart'], ['in'], ['your'], ['transactions'], ['who'], ['wouldsell'], ['their'], ['words'], ['for'], ['your'], ['labourto'], ['such'], ['men'], ['you'], ['should'], ['saycome'], ['with'], ['us'], ['to'], ['the'], ['field'], ['or'], ['go'], ['withour'], ['brothers'], ['to'], ['the'], ['sea'], ['and'], ['cast'], ['yournetfor'], ['the'], ['land'], ['and'], ['the'], ['sea'], ['shall'], ['bebountiful'], ['to'], ['you'], ['even'], ['as'], ['to'], ['usand'], ['if'], ['there'], ['come'], ['the'], ['singers'], ['and'], ['thedancers'], ['and'], ['the'], ['flute'], ['playersbuy'], ['oftheir'], ['gifts'], ['alsofor'], ['they'], ['too'], ['are'], ['gatherers'], ['of'], ['fruit'], ['andfrankincense'], ['and'], ['that'], ['which'], ['they'], ['bringthough'], ['fashioned'], ['of'], ['dreams'], ['is'], ['raimentand'], ['food'], ['for'], ['your'], ['souland'], ['before'], ['you'], ['leave'], ['the'], ['market'], ['placesee'], ['that'], ['no'], ['one'], ['has'], ['gone'], ['his'], ['way'], ['withempty'], ['handsfor'], ['the'], ['master'], ['spirit'], ['of'], ['the'], ['earth'], ['shallnot'], ['sleep'], ['peacefully'], ['upon'], ['the'], ['windtill'], ['the'], ['needs'], ['of'], ['the'], ['least'], ['of'], ['you'], ['aresatisfied'], ['then'], ['one'], ['of'], ['the'], ['judges'], ['of'], ['the'], ['citystood'], ['forth'], ['and'], ['said'], ['speak'], ['to'], ['us'], ['ofcrime'], ['and'], ['punishmentand'], ['he'], ['answered'], ['sayingit'], ['is'], ['when'], ['your'], ['spirit'], ['goes'], ['wanderingupon'], ['the'], ['windthat'], ['you'], ['alone'], ['and'], ['unguarded'], ['commita'], ['wrong'], ['unto'], ['others'], ['and'], ['therefore'], ['untoyourselfand'], ['for'], ['that'], ['wrong'], ['committed'], ['must'], ['youknock'], ['and'], ['wait'], ['a'], ['while'], ['unheeded'], ['at'], ['thegate'], ['of'], ['the'], ['blessedlike'], ['the'], ['ocean'], ['is'], ['your'], ['godselfit'], ['remains'], ['for'], ['ever'], ['undefiledand'], ['like'], ['the'], ['ether'], ['it'], ['lifts'], ['but'], ['thewingedeven'], ['like'], ['the'], ['sun'], ['is'], ['your'], ['godselfit'], ['knows'], ['not'], ['the'], ['ways'], ['of'], ['the'], ['mole'], ['norseeks'], ['it'], ['the'], ['holes'], ['of'], ['the'], ['serpentbut'], ['your'], ['godself'], ['dwells'], ['not'], ['alonein'], ['your'], ['beingmuch'], ['in'], ['you'], ['is'], ['still'], ['man'], ['and'], ['much'], ['inyou'], ['is'], ['not'], ['yet'], ['manbut'], ['a'], ['shapeless'], ['pigmy'], ['that'], ['walks'], ['asleepin'], ['the'], ['mist'], ['searching'], ['for'], ['its'], ['ownawakeningand'], ['of'], ['the'], ['man'], ['in'], ['you'], ['would'], ['i'], ['now'], ['speakfor'], ['it'], ['is'], ['he'], ['and'], ['not'], ['your'], ['godself'], ['northe'], ['pigmy'], ['in'], ['the'], ['mist'], ['that'], ['knows'], ['crimeand'], ['the'], ['punishment'], ['of'], ['crimeoftentimes'], ['have'], ['i'], ['heard'], ['you'], ['speak'], ['of'], ['onewho'], ['commits'], ['a'], ['wrong'], ['as'], ['though'], ['he'], ['werenot'], ['one'], ['of'], ['you'], ['but'], ['a'], ['stranger'], ['unto'], ['youand'], ['an'], ['intruder'], ['upon'], ['your'], ['worldbut'], ['i'], ['say'], ['that'], ['even'], ['as'], ['the'], ['holy'], ['and'], ['therighteous'], ['cannot'], ['rise'], ['beyond'], ['the'], ['highestwhich'], ['is'], ['in'], ['each'], ['one'], ['of'], ['youso'], ['the'], ['wicked'], ['and'], ['the'], ['weak'], ['cannot'], ['falllower'], ['than'], ['the'], ['lowest'], ['which'], ['is'], ['in'], ['youalsoand'], ['as'], ['a'], ['single'], ['leaf'], ['turns'], ['not'], ['yellowbut'], ['with'], ['the'], ['silent'], ['knowledge'], ['of'], ['thewhole'], ['tree'], ['so'], ['the'], ['wrongdoer'], ['cannotdo'], ['wrong'], ['without'], ['the'], ['hidden'], ['will'], ['of'], ['youalllike'], ['a'], ['procession'], ['you'], ['walk'], ['togethertowards'], ['your'], ['godselfillustration'], ['you'], ['are'], ['the'], ['way'], ['and'], ['the'], ['wayfarersand'], ['when'], ['one'], ['of'], ['you'], ['falls'], ['down'], ['he'], ['fallsfor'], ['those'], ['behind'], ['him'], ['a'], ['caution'], ['againstthe'], ['stumbling'], ['stoneay'], ['and'], ['he'], ['falls'], ['for'], ['those'], ['ahead'], ['of'], ['himwho'], ['though'], ['faster'], ['and'], ['surer'], ['of'], ['foot'], ['yetremoved'], ['not'], ['the'], ['stumbling'], ['stoneand'], ['this'], ['also'], ['though'], ['the'], ['word'], ['lie'], ['heavyupon'], ['your'], ['heartsthe'], ['murdered'], ['is'], ['not'], ['unaccountable'], ['forhis'], ['own'], ['murderand'], ['the'], ['robbed'], ['is'], ['not'], ['blameless'], ['in'], ['beingrobbedthe'], ['righteous'], ['is'], ['not'], ['innocent'], ['of'], ['thedeeds'], ['of'], ['the'], ['wickedand'], ['the'], ['whitehanded'], ['is'], ['not'], ['clean'], ['in'], ['thedoings'], ['of'], ['the'], ['felonyea'], ['the'], ['guilty'], ['is'], ['oftentimes'], ['the'], ['victimof'], ['the'], ['injuredand'], ['still'], ['more'], ['often'], ['the'], ['condemned'], ['isthe'], ['burden'], ['bearer'], ['for'], ['the'], ['guiltlessand'], ['unblamedyou'], ['cannot'], ['separate'], ['the'], ['just'], ['from'], ['theunjust'], ['and'], ['the'], ['good'], ['from'], ['the'], ['wickedfor'], ['they'], ['stand'], ['together'], ['before'], ['the'], ['faceof'], ['the'], ['sun'], ['even'], ['as'], ['the'], ['black'], ['thread'], ['andthe'], ['white'], ['are'], ['woven'], ['togetherand'], ['when'], ['the'], ['black'], ['thread'], ['breaks'], ['theweaver'], ['shall'], ['look'], ['into'], ['the'], ['whole'], ['clothand'], ['he'], ['shall'], ['examine'], ['the'], ['loom'], ['alsoif'], ['any'], ['of'], ['you'], ['would'], ['bring'], ['to'], ['judgmentthe'], ['unfaithful'], ['wifelet'], ['him'], ['also'], ['weigh'], ['the'], ['heart'], ['of'], ['herhusband'], ['in'], ['scales'], ['and'], ['measure'], ['his'], ['soulwith'], ['measurementsand'], ['let'], ['him'], ['who'], ['would'], ['lash'], ['the'], ['offenderlook'], ['unto'], ['the'], ['spirit'], ['of'], ['the'], ['offendedand'], ['if'], ['any'], ['of'], ['you'], ['would'], ['punish'], ['in'], ['thename'], ['of'], ['righteousness'], ['and'], ['lay'], ['the'], ['axunto'], ['the'], ['evil'], ['tree'], ['let'], ['him'], ['see'], ['to'], ['itsrootsand'], ['verily'], ['he'], ['will'], ['find'], ['the'], ['roots'], ['of'], ['thegood'], ['and'], ['the'], ['bad'], ['the'], ['fruitful'], ['and'], ['thefruitless'], ['all'], ['entwined'], ['together'], ['inthe'], ['silent'], ['heart'], ['of'], ['the'], ['earthand'], ['you'], ['judges'], ['who'], ['would'], ['be'], ['justwhat'], ['judgment'], ['pronounce'], ['you'], ['upon'], ['himwho'], ['though'], ['honest'], ['in'], ['the'], ['flesh'], ['yet'], ['is'], ['athief'], ['in'], ['spiritwhat'], ['penalty'], ['lay'], ['you'], ['upon'], ['him'], ['who'], ['slaysin'], ['the'], ['flesh'], ['yet'], ['is'], ['himself'], ['slain'], ['in'], ['thespiritand'], ['how'], ['prosecute'], ['you'], ['him'], ['who'], ['in'], ['actionis'], ['a'], ['deceiver'], ['and'], ['an'], ['oppressoryet'], ['who'], ['also'], ['is'], ['aggrieved'], ['and'], ['outragedand'], ['how'], ['shall'], ['you'], ['punish'], ['those'], ['whoseremorse'], ['is'], ['already'], ['greater'], ['than'], ['theirmisdeedsis'], ['not'], ['remorse'], ['the'], ['justice'], ['which'], ['isadministered'], ['by'], ['that'], ['very'], ['law'], ['which'], ['youwould'], ['fain'], ['serveyet'], ['you'], ['cannot'], ['lay'], ['remorse'], ['upon'], ['theinnocent'], ['nor'], ['lift'], ['it'], ['from'], ['the'], ['heart'], ['ofthe'], ['guiltyunbidden'], ['shall'], ['it'], ['call'], ['in'], ['the'], ['nightthat'], ['men'], ['may'], ['wake'], ['and'], ['gaze'], ['uponthemselves'], ['and'], ['you'], ['who'], ['wouldunderstand'], ['justice'], ['how'], ['shall'], ['you'], ['unlessyou'], ['look'], ['upon'], ['all'], ['deeds'], ['in'], ['the'], ['fullnessof'], ['lightonly'], ['then'], ['shall'], ['you'], ['know'], ['that'], ['the'], ['erectand'], ['the'], ['fallen'], ['are'], ['but'], ['one'], ['man'], ['standingin'], ['twilight'], ['between'], ['the'], ['night'], ['of'], ['hispigmyself'], ['and'], ['the'], ['day'], ['of'], ['his'], ['godselfand'], ['that'], ['the'], ['cornerstone'], ['of'], ['the'], ['templeis'], ['not'], ['higher'], ['than'], ['the'], ['lowest'], ['stone'], ['inits'], ['foundation'], ['then'], ['a'], ['lawyer'], ['said'], ['but'], ['what'], ['of'], ['ourlaws'], ['masterand'], ['he'], ['answeredyou'], ['delight'], ['in'], ['laying'], ['down'], ['lawsyet'], ['you'], ['delight'], ['more'], ['in'], ['breaking'], ['themlike'], ['children'], ['playing'], ['by'], ['the'], ['ocean'], ['whobuild'], ['sandtowers'], ['with'], ['constancy'], ['andthen'], ['destroy'], ['them'], ['with'], ['laughterbut'], ['while'], ['you'], ['build'], ['your'], ['sandtowers'], ['theocean'], ['brings'], ['more'], ['sand'], ['to'], ['the'], ['shoreand'], ['when'], ['you'], ['destroy'], ['them'], ['the'], ['oceanlaughs'], ['with'], ['youverily'], ['the'], ['ocean'], ['laughs'], ['always'], ['with'], ['theinnocentbut'], ['what'], ['of'], ['those'], ['to'], ['whom'], ['life'], ['is'], ['notan'], ['ocean'], ['and'], ['manmade'], ['laws'], ['are'], ['notsandtowersbut'], ['to'], ['whom'], ['life'], ['is'], ['a'], ['rock'], ['and'], ['the'], ['lawa'], ['chisel'], ['with'], ['which'], ['they'], ['would'], ['carve'], ['itin'], ['their'], ['own'], ['likeness'], ['what'], ['of'], ['thecripple'], ['who'], ['hates'], ['dancerswhat'], ['of'], ['the'], ['ox'], ['who'], ['loves'], ['his'], ['yoke'], ['anddeems'], ['the'], ['elk'], ['and'], ['deer'], ['of'], ['the'], ['foreststray'], ['and'], ['vagrant'], ['thingswhat'], ['of'], ['the'], ['old'], ['serpent'], ['who'], ['cannot'], ['shedhis'], ['skin'], ['and'], ['calls'], ['all'], ['others'], ['naked'], ['andshamelessand'], ['of'], ['him'], ['who'], ['comes'], ['early'], ['to'], ['theweddingfeast'], ['and'], ['when'], ['overfed'], ['andtired'], ['goes'], ['his'], ['way'], ['saying'], ['that'], ['allfeasts'], ['are'], ['violation'], ['and'], ['all'], ['feasterslawbreakerswhat'], ['shall'], ['i'], ['say'], ['of'], ['these'], ['save'], ['thatthey'], ['too'], ['stand'], ['in'], ['the'], ['sunlight'], ['but'], ['withtheir'], ['backs'], ['to'], ['the'], ['sunthey'], ['see'], ['only'], ['their'], ['shadows'], ['and'], ['theirshadows'], ['are'], ['their'], ['lawsand'], ['what'], ['is'], ['the'], ['sun'], ['to'], ['them'], ['but'], ['a'], ['casterof'], ['shadowsand'], ['what'], ['is'], ['it'], ['to'], ['acknowledge'], ['thelaws'], ['but'], ['to'], ['stoop'], ['down'], ['and'], ['trace'], ['theirshadows'], ['upon'], ['the'], ['earthbut'], ['you'], ['who'], ['walk'], ['facing'], ['the'], ['sun'], ['whatimages'], ['drawn'], ['on'], ['the'], ['earth'], ['can'], ['holdyouyou'], ['who'], ['travel'], ['with'], ['the'], ['wind'], ['whatweathervane'], ['shall'], ['direct'], ['your'], ['coursewhat'], ['mans'], ['law'], ['shall'], ['bind'], ['you'], ['if'], ['youbreak'], ['your'], ['yoke'], ['but'], ['upon'], ['no'], ['mans'], ['prisondoorwhat'], ['laws'], ['shall'], ['you'], ['fear'], ['if'], ['you'], ['dancebut'], ['stumble'], ['against'], ['no'], ['mans'], ['ironchainsand'], ['who'], ['is'], ['he'], ['that'], ['shall'], ['bring'], ['you'], ['tojudgment'], ['if'], ['you'], ['tear'], ['off'], ['your'], ['garmentyet'], ['leave'], ['it'], ['in'], ['no'], ['mans'], ['pathpeople'], ['of'], ['orphalese'], ['you'], ['can'], ['muffle'], ['thedrum'], ['and'], ['you'], ['can'], ['loosen'], ['the'], ['stringsof'], ['the'], ['lyre'], ['but'], ['who'], ['shall'], ['command'], ['theskylark'], ['not'], ['to'], ['sing'], ['and'], ['an'], ['orator'], ['said'], ['speak'], ['to'], ['us'], ['offreedomand'], ['he'], ['answeredat'], ['the'], ['city'], ['gate'], ['and'], ['by'], ['your'], ['firesidei'], ['have'], ['seen'], ['you'], ['prostrate'], ['yourself'], ['andworship'], ['your'], ['own'], ['freedomeven'], ['as'], ['slaves'], ['humble'], ['themselves'], ['beforea'], ['tyrant'], ['and'], ['praise'], ['him'], ['though'], ['he'], ['slaysthemay'], ['in'], ['the'], ['grove'], ['of'], ['the'], ['temple'], ['and'], ['inthe'], ['shadow'], ['of'], ['the'], ['citadel'], ['i'], ['have'], ['seenthe'], ['freest'], ['among'], ['you'], ['wear'], ['their'], ['freedomas'], ['a'], ['yoke'], ['and'], ['a'], ['handcuffand'], ['my'], ['heart'], ['bled'], ['within'], ['me'], ['for'], ['youcan'], ['only'], ['be'], ['free'], ['when'], ['even'], ['the'], ['desireof'], ['seeking'], ['freedom'], ['becomes'], ['a'], ['harnessto'], ['you'], ['and'], ['when'], ['you'], ['cease'], ['to'], ['speak'], ['offreedom'], ['as'], ['a'], ['goal'], ['and'], ['a'], ['fulfilmentyou'], ['shall'], ['be'], ['free'], ['indeed'], ['when'], ['yourdays'], ['are'], ['not'], ['without'], ['a'], ['care'], ['nor'], ['yournights'], ['without'], ['a'], ['want'], ['and'], ['a'], ['griefbut'], ['rather'], ['when'], ['these'], ['things'], ['girdle'], ['yourlife'], ['and'], ['yet'], ['you'], ['rise'], ['above'], ['them'], ['nakedand'], ['unboundand'], ['how'], ['shall'], ['you'], ['rise'], ['beyond'], ['your'], ['daysand'], ['nights'], ['unless'], ['you'], ['break'], ['thechains'], ['which'], ['you'], ['at'], ['the'], ['dawn'], ['of'], ['yourunderstanding'], ['have'], ['fastened'], ['around'], ['yournoon'], ['hourin'], ['truth'], ['that'], ['which'], ['you'], ['call'], ['freedom'], ['isthe'], ['strongest'], ['of'], ['these'], ['chains'], ['thoughits'], ['links'], ['glitter'], ['in'], ['the'], ['sun'], ['and'], ['dazzleyour'], ['eyesand'], ['what'], ['is'], ['it'], ['but'], ['fragments'], ['of'], ['yourown'], ['self'], ['you'], ['would'], ['discard'], ['that'], ['you'], ['maybecome'], ['freeif'], ['it'], ['is'], ['an'], ['unjust'], ['law'], ['you'], ['wouldabolish'], ['that'], ['law'], ['was'], ['written'], ['with'], ['yourown'], ['hand'], ['upon'], ['your'], ['own'], ['foreheadyou'], ['cannot'], ['erase'], ['it'], ['by'], ['burning'], ['your'], ['lawbooks'], ['nor'], ['by'], ['washing'], ['the'], ['foreheads'], ['ofyour'], ['judges'], ['though'], ['you'], ['pour'], ['the'], ['seaupon'], ['themand'], ['if'], ['it'], ['is'], ['a'], ['despot'], ['you'], ['woulddethrone'], ['see'], ['first'], ['that'], ['his'], ['throneerected'], ['within'], ['you'], ['is'], ['destroyedfor'], ['how'], ['can'], ['a'], ['tyrant'], ['rule'], ['the'], ['free'], ['andthe'], ['proud'], ['but'], ['for'], ['a'], ['tyranny'], ['in'], ['theirown'], ['freedom'], ['and'], ['a'], ['shame'], ['in'], ['their'], ['ownprideand'], ['if'], ['it'], ['is'], ['a'], ['care'], ['you'], ['would'], ['cast'], ['offthat'], ['cart'], ['has'], ['been'], ['chosen'], ['by'], ['you'], ['ratherthan'], ['imposed'], ['upon'], ['youand'], ['if'], ['it'], ['is'], ['a'], ['fear'], ['you'], ['would'], ['dispelthe'], ['seat'], ['of'], ['that'], ['fear'], ['is'], ['in'], ['your'], ['heartand'], ['not'], ['in'], ['the'], ['hand'], ['of'], ['the'], ['fearedverily'], ['all'], ['things'], ['move'], ['within'], ['your'], ['beingin'], ['constant'], ['half'], ['embrace'], ['the'], ['desiredand'], ['the'], ['dreaded'], ['the'], ['repugnant'], ['and'], ['thecherished'], ['the'], ['pursued'], ['and'], ['that'], ['whichyou'], ['would'], ['escapethese'], ['things'], ['move'], ['within'], ['you'], ['as'], ['lightsand'], ['shadows'], ['in'], ['pairs'], ['that'], ['clingand'], ['when'], ['the'], ['shadow'], ['fades'], ['and'], ['is'], ['nomore'], ['the'], ['light'], ['that'], ['lingers'], ['becomes'], ['ashadow'], ['to'], ['another'], ['lightand'], ['thus'], ['your'], ['freedom'], ['when'], ['it'], ['loses'], ['itsfetters'], ['becomes'], ['itself'], ['the'], ['fetter'], ['of'], ['agreater'], ['freedom'], ['and'], ['the'], ['priestess'], ['spoke'], ['againand'], ['said'], ['speak'], ['to'], ['us'], ['of'], ['reason'], ['andpassionand'], ['he'], ['answered'], ['sayingyour'], ['soul'], ['is'], ['oftentimes'], ['a'], ['battlefieldupon'], ['which'], ['your'], ['reason'], ['and'], ['your'], ['judgmentwage'], ['war'], ['against'], ['your'], ['passion'], ['and'], ['yourappetitewould'], ['that'], ['i'], ['could'], ['be'], ['the'], ['peacemaker'], ['inyour'], ['soul'], ['that'], ['i'], ['might'], ['turn'], ['the'], ['discordand'], ['the'], ['rivalry'], ['of'], ['your'], ['elements'], ['intooneness'], ['and'], ['melodybut'], ['how'], ['shall'], ['i'], ['unless'], ['you'], ['yourselvesbe'], ['also'], ['the'], ['peacemakers'], ['nay'], ['the'], ['loversof'], ['all'], ['your'], ['elementsyour'], ['reason'], ['and'], ['your'], ['passion'], ['are'], ['therudder'], ['and'], ['the'], ['sails'], ['of'], ['your'], ['seafaringsoulif'], ['either'], ['your'], ['sails'], ['or'], ['your'], ['rudder'], ['bebroken'], ['you'], ['can'], ['but'], ['toss'], ['and'], ['driftor'], ['else'], ['be'], ['held'], ['at'], ['a'], ['standstill'], ['inmidseas'], ['for'], ['reason'], ['ruling'], ['aloneis'], ['a'], ['force'], ['confining'], ['and'], ['passionunattended'], ['is'], ['a'], ['flame'], ['that'], ['burns'], ['to'], ['itsown'], ['destructiontherefore'], ['let'], ['your'], ['soul'], ['exalt'], ['yourreason'], ['to'], ['the'], ['height'], ['of'], ['passion'], ['that'], ['itmay'], ['singand'], ['let'], ['it'], ['direct'], ['your'], ['passion'], ['withreason'], ['that'], ['your'], ['passion'], ['may'], ['livethrough'], ['its'], ['own'], ['daily'], ['resurrectionand'], ['like'], ['the'], ['phoenix'], ['rise'], ['above'], ['its'], ['ownashesi'], ['would'], ['have'], ['you'], ['consider'], ['your'], ['judgmentand'], ['your'], ['appetite'], ['even'], ['as'], ['you'], ['would'], ['twoloved'], ['guests'], ['in'], ['your'], ['housesurely'], ['you'], ['would'], ['not'], ['honour'], ['one'], ['guestabove'], ['the'], ['other'], ['for'], ['he'], ['who'], ['is'], ['moremindful'], ['of'], ['one'], ['loses'], ['the'], ['love'], ['and'], ['thefaith'], ['of'], ['bothamong'], ['the'], ['hills'], ['when'], ['you'], ['sit'], ['in'], ['thecool'], ['shade'], ['of'], ['the'], ['white'], ['poplars'], ['sharingthe'], ['peace'], ['and'], ['serenity'], ['of'], ['distant'], ['fieldsand'], ['meadowsthen'], ['let'], ['your'], ['heart'], ['say'], ['insilence'], ['god'], ['rests'], ['in'], ['reasonand'], ['when'], ['the'], ['storm'], ['comes'], ['and'], ['themighty'], ['wind'], ['shakes'], ['the'], ['forestand'], ['thunder'], ['and'], ['lightning'], ['proclaim'], ['themajesty'], ['of'], ['the'], ['skythen'], ['let'], ['your'], ['heartsay'], ['in'], ['awe'], ['god'], ['moves'], ['in'], ['passionand'], ['since'], ['you'], ['are'], ['a'], ['breath'], ['in'], ['godssphere'], ['and'], ['a'], ['leaf'], ['in'], ['gods'], ['forest'], ['youtoo'], ['should'], ['rest'], ['in'], ['reason'], ['and'], ['move'], ['inpassion'], ['and'], ['a'], ['woman'], ['spoke'], ['saying'], ['tell'], ['usof'], ['painand'], ['he'], ['saidyour'], ['pain'], ['is'], ['the'], ['breaking'], ['of'], ['the'], ['shellthat'], ['encloses'], ['your'], ['understandingeven'], ['as'], ['the'], ['stone'], ['of'], ['the'], ['fruit'], ['mustbreak'], ['that'], ['its'], ['heart'], ['may'], ['stand'], ['in'], ['thesun'], ['so'], ['must'], ['you'], ['know'], ['painand'], ['could'], ['you'], ['keep'], ['your'], ['heart'], ['in'], ['wonderat'], ['the'], ['daily'], ['miracles'], ['of'], ['your'], ['life'], ['yourpain'], ['would'], ['not'], ['seem'], ['less'], ['wondrous'], ['thanyour'], ['joyand'], ['you'], ['would'], ['accept'], ['the'], ['seasons'], ['of'], ['yourheart'], ['even'], ['as'], ['you'], ['have'], ['always'], ['acceptedthe'], ['seasons'], ['that'], ['pass'], ['over'], ['your'], ['fieldsand'], ['you'], ['would'], ['watch'], ['with'], ['serenitythrough'], ['the'], ['winters'], ['of'], ['your'], ['griefmuch'], ['of'], ['your'], ['pain'], ['is'], ['selfchosenit'], ['is'], ['the'], ['bitter'], ['potion'], ['by'], ['which'], ['thephysician'], ['within'], ['you'], ['heals'], ['your'], ['sickselftherefore'], ['trust'], ['the'], ['physician'], ['and'], ['drinkhis'], ['remedy'], ['in'], ['silence'], ['and'], ['tranquillityfor'], ['his'], ['hand'], ['though'], ['heavy'], ['and'], ['hard'], ['isguided'], ['by'], ['the'], ['tender'], ['hand'], ['of'], ['the'], ['unseenand'], ['the'], ['cup'], ['he'], ['brings'], ['though'], ['it'], ['burnyour'], ['lips'], ['has'], ['been'], ['fashioned'], ['of'], ['theclay'], ['which'], ['the'], ['potter'], ['has'], ['moistened'], ['withhis'], ['own'], ['sacred'], ['tears'], ['and'], ['a'], ['man'], ['said'], ['speak'], ['to'], ['us'], ['ofselfknowledgeand'], ['he'], ['answered'], ['sayingyour'], ['hearts'], ['know'], ['in'], ['silence'], ['the'], ['secretsof'], ['the'], ['days'], ['and'], ['the'], ['nightsbut'], ['your'], ['ears'], ['thirst'], ['for'], ['the'], ['sound'], ['ofyour'], ['hearts'], ['knowledgeyou'], ['would'], ['know'], ['in'], ['words'], ['that'], ['which'], ['youhave'], ['always'], ['known'], ['in'], ['thoughtyou'], ['would'], ['touch'], ['with'], ['your'], ['fingers'], ['thenaked'], ['body'], ['of'], ['your'], ['dreamsand'], ['it'], ['is'], ['well'], ['you'], ['shouldthe'], ['hidden'], ['wellspring'], ['of'], ['your'], ['soul'], ['mustneeds'], ['rise'], ['and'], ['run'], ['murmuring'], ['to'], ['the'], ['seaand'], ['the'], ['treasure'], ['of'], ['your'], ['infinite'], ['depthswould'], ['be'], ['revealed'], ['to'], ['your'], ['eyesbut'], ['let'], ['there'], ['be'], ['no'], ['scales'], ['to'], ['weigh'], ['yourunknown'], ['treasureand'], ['seek'], ['not'], ['the'], ['depths'], ['of'], ['yourknowledge'], ['with'], ['staff'], ['or'], ['soundinglinefor'], ['self'], ['is'], ['a'], ['sea'], ['boundless'], ['andmeasurelesssay'], ['not'], ['i'], ['have'], ['found'], ['the'], ['truth'], ['butrather'], ['i'], ['have'], ['found'], ['a'], ['truthsay'], ['not'], ['i'], ['have'], ['found'], ['the'], ['path'], ['of'], ['thesoul'], ['say'], ['rather'], ['i'], ['have'], ['met'], ['the'], ['soulwalking'], ['upon'], ['my'], ['pathfor'], ['the'], ['soul'], ['walks'], ['upon'], ['all'], ['pathsthe'], ['soul'], ['walks'], ['not'], ['upon'], ['a'], ['line'], ['neitherdoes'], ['it'], ['grow'], ['like'], ['a'], ['reedthe'], ['soul'], ['unfolds'], ['itself'], ['like'], ['a'], ['lotus'], ['ofcountless'], ['petalsillustration'], [''], ['then'], ['said'], ['a'], ['teacher'], ['speak'], ['to'], ['us'], ['ofteachingand'], ['he'], ['saidno'], ['man'], ['can'], ['reveal'], ['to'], ['you'], ['aught'], ['but'], ['thatwhich'], ['already'], ['lies'], ['half'], ['asleep'], ['in'], ['thedawning'], ['of'], ['your'], ['knowledgethe'], ['teacher'], ['who'], ['walks'], ['in'], ['the'], ['shadow'], ['ofthe'], ['temple'], ['among'], ['his'], ['followers'], ['givesnot'], ['of'], ['his'], ['wisdom'], ['but'], ['rather'], ['of'], ['hisfaith'], ['and'], ['his'], ['lovingnessif'], ['he'], ['is'], ['indeed'], ['wise'], ['he'], ['does'], ['not'], ['bidyou'], ['enter'], ['the'], ['house'], ['of'], ['his'], ['wisdom'], ['butrather'], ['leads'], ['you'], ['to'], ['the'], ['threshold'], ['ofyour'], ['own'], ['mindthe'], ['astronomer'], ['may'], ['speak'], ['to'], ['you'], ['of'], ['hisunderstanding'], ['of'], ['space'], ['but'], ['he'], ['cannotgive'], ['you'], ['his'], ['understandingthe'], ['musician'], ['may'], ['sing'], ['to'], ['you'], ['of'], ['therhythm'], ['which'], ['is'], ['in'], ['all'], ['space'], ['but'], ['hecannot'], ['give'], ['you'], ['the'], ['ear'], ['which'], ['arreststhe'], ['rhythm'], ['nor'], ['the'], ['voice'], ['that'], ['echoes'], ['itand'], ['he'], ['who'], ['is'], ['versed'], ['in'], ['the'], ['scienceof'], ['numbers'], ['can'], ['tell'], ['of'], ['the'], ['regionsof'], ['weight'], ['and'], ['measure'], ['but'], ['he'], ['cannotconduct'], ['you'], ['thitherfor'], ['the'], ['vision'], ['of'], ['one'], ['man'], ['lends'], ['not'], ['itswings'], ['to'], ['another'], ['manand'], ['even'], ['as'], ['each'], ['one'], ['of'], ['you'], ['stands'], ['alonein'], ['gods'], ['knowledge'], ['so'], ['must'], ['each'], ['one'], ['ofyou'], ['be'], ['alone'], ['in'], ['his'], ['knowledge'], ['of'], ['god'], ['andin'], ['his'], ['understanding'], ['of'], ['the'], ['earth'], ['and'], ['a'], ['youth'], ['said'], ['speak'], ['to'], ['us'], ['offriendshipand'], ['he'], ['answered'], ['sayingyour'], ['friend'], ['is'], ['your'], ['needs'], ['answeredhe'], ['is'], ['your'], ['field'], ['which'], ['you'], ['sow'], ['with'], ['loveand'], ['reap'], ['with'], ['thanksgivingand'], ['he'], ['is'], ['your'], ['board'], ['and'], ['your'], ['firesidefor'], ['you'], ['come'], ['to'], ['him'], ['with'], ['your'], ['hungerand'], ['you'], ['seek'], ['him'], ['for'], ['peacewhen'], ['your'], ['friend'], ['speaks'], ['his'], ['mind'], ['youfear'], ['not'], ['the'], ['nay'], ['in'], ['your'], ['own'], ['mind'], ['nordo'], ['you'], ['withhold'], ['the'], ['ayand'], ['when'], ['he'], ['is'], ['silent'], ['your'], ['heart'], ['ceasesnot'], ['to'], ['listen'], ['to'], ['his'], ['heartfor'], ['without'], ['words'], ['in'], ['friendship'], ['allthoughts'], ['all'], ['desires'], ['all'], ['expectationsare'], ['born'], ['and'], ['shared'], ['with'], ['joy'], ['that'], ['isunacclaimedwhen'], ['you'], ['part'], ['from'], ['your'], ['friend'], ['yougrieve'], ['notfor'], ['that'], ['which'], ['you'], ['love'], ['most'], ['in'], ['himmay'], ['be'], ['clearer'], ['in'], ['his'], ['absence'], ['as'], ['themountain'], ['to'], ['the'], ['climber'], ['is'], ['clearerfrom'], ['the'], ['plain'], ['and'], ['let'], ['there'], ['be'], ['nopurpose'], ['in'], ['friendship'], ['save'], ['the'], ['deepeningof'], ['the'], ['spiritfor'], ['love'], ['that'], ['seeks'], ['aught'], ['but'], ['thedisclosure'], ['of'], ['its'], ['own'], ['mystery'], ['is'], ['notlove'], ['but'], ['a'], ['net'], ['cast'], ['forth'], ['and'], ['only'], ['theunprofitable'], ['is'], ['caughtand'], ['let'], ['your'], ['best'], ['be'], ['for'], ['your'], ['friendif'], ['he'], ['must'], ['know'], ['the'], ['ebb'], ['of'], ['your'], ['tidelet'], ['him'], ['know'], ['its'], ['flood'], ['alsofor'], ['what'], ['is'], ['your'], ['friend'], ['that'], ['you'], ['shouldseek'], ['him'], ['with'], ['hours'], ['to'], ['killseek'], ['him'], ['always'], ['with'], ['hours'], ['to'], ['livefor'], ['it'], ['is'], ['his'], ['to'], ['fill'], ['your'], ['need'], ['but'], ['notyour'], ['emptinessand'], ['in'], ['the'], ['sweetness'], ['of'], ['friendshiplet'], ['there'], ['be'], ['laughter'], ['and'], ['sharing'], ['ofpleasuresfor'], ['in'], ['the'], ['dew'], ['of'], ['little'], ['thingsthe'], ['heart'], ['finds'], ['its'], ['morning'], ['and'], ['isrefreshed'], ['and'], ['then'], ['a'], ['scholar'], ['said'], ['speak'], ['oftalkingand'], ['he'], ['answered'], ['sayingyou'], ['talk'], ['when'], ['you'], ['cease'], ['to'], ['be'], ['at'], ['peacewith'], ['your'], ['thoughtsand'], ['when'], ['you'], ['can'], ['no'], ['longer'], ['dwell'], ['in'], ['thesolitude'], ['of'], ['your'], ['heart'], ['you'], ['live'], ['in'], ['yourlips'], ['and'], ['sound'], ['is'], ['a'], ['diversion'], ['and'], ['apastimeand'], ['in'], ['much'], ['of'], ['your'], ['talking'], ['thinking'], ['ishalf'], ['murderedfor'], ['thought'], ['is'], ['a'], ['bird'], ['of'], ['space'], ['that'], ['ina'], ['cage'], ['of'], ['words'], ['may'], ['indeed'], ['unfold'], ['itswings'], ['but'], ['cannot'], ['flythere'], ['are'], ['those'], ['among'], ['you'], ['who'], ['seek'], ['thetalkative'], ['through'], ['fear'], ['of'], ['being'], ['alonethe'], ['silence'], ['of'], ['aloneness'], ['reveals'], ['totheir'], ['eyes'], ['their'], ['naked'], ['selves'], ['and'], ['theywould'], ['escapeand'], ['there'], ['are'], ['those'], ['who'], ['talk'], ['andwithout'], ['knowledge'], ['or'], ['forethought'], ['reveala'], ['truth'], ['which'], ['they'], ['themselves'], ['do'], ['notunderstandand'], ['there'], ['are'], ['those'], ['who'], ['have'], ['the'], ['truthwithin'], ['them'], ['but'], ['they'], ['tell'], ['it'], ['not'], ['inwordsin'], ['the'], ['bosom'], ['of'], ['such'], ['as'], ['these'], ['the'], ['spiritdwells'], ['in'], ['rhythmic'], ['silencewhen'], ['you'], ['meet'], ['your'], ['friend'], ['on'], ['theroadside'], ['or'], ['in'], ['the'], ['market'], ['place'], ['let'], ['thespirit'], ['in'], ['you'], ['move'], ['your'], ['lips'], ['and'], ['directyour'], ['tonguelet'], ['the'], ['voice'], ['within'], ['your'], ['voice'], ['speak'], ['tothe'], ['ear'], ['of'], ['his'], ['earfor'], ['his'], ['soul'], ['will'], ['keep'], ['the'], ['truth'], ['ofyour'], ['heart'], ['as'], ['the'], ['taste'], ['of'], ['the'], ['wine'], ['isrememberedwhen'], ['the'], ['colour'], ['is'], ['forgotten'], ['and'], ['thevessel'], ['is'], ['no'], ['more'], ['and'], ['an'], ['astronomer'], ['said'], ['master'], ['whatof'], ['timeand'], ['he'], ['answeredyou'], ['would'], ['measure'], ['time'], ['the'], ['measurelessand'], ['the'], ['immeasurableyou'], ['would'], ['adjust'], ['your'], ['conduct'], ['andeven'], ['direct'], ['the'], ['course'], ['of'], ['your'], ['spiritaccording'], ['to'], ['hours'], ['and'], ['seasonsof'], ['time'], ['you'], ['would'], ['make'], ['a'], ['stream'], ['uponwhose'], ['bank'], ['you'], ['would'], ['sit'], ['and'], ['watch'], ['itsflowingyet'], ['the'], ['timeless'], ['in'], ['you'], ['is'], ['aware'], ['oflifes'], ['timelessnessand'], ['knows'], ['that'], ['yesterday'], ['is'], ['but'], ['todaysmemory'], ['and'], ['tomorrow'], ['is'], ['todays'], ['dreamand'], ['that'], ['that'], ['which'], ['sings'], ['andcontemplates'], ['in'], ['you'], ['is'], ['still'], ['dwellingwithin'], ['the'], ['bounds'], ['of'], ['that'], ['first'], ['momentwhich'], ['scattered'], ['the'], ['stars'], ['into'], ['spacewho'], ['among'], ['you'], ['does'], ['not'], ['feel'], ['that'], ['hispower'], ['to'], ['love'], ['is'], ['boundlessand'], ['yet'], ['who'], ['does'], ['not'], ['feel'], ['that'], ['verylove'], ['though'], ['boundless'], ['encompassedwithin'], ['the'], ['centre'], ['of'], ['his'], ['being'], ['andmoving'], ['not'], ['from'], ['love'], ['thought'], ['to'], ['lovethought'], ['nor'], ['from'], ['love'], ['deeds'], ['to'], ['otherlove'], ['deedsand'], ['is'], ['not'], ['time'], ['even'], ['as'], ['love'], ['isundivided'], ['and'], ['pacelessbut'], ['if'], ['in'], ['your'], ['thought'], ['you'], ['must'], ['measuretime'], ['into'], ['seasons'], ['let'], ['each'], ['seasonencircle'], ['all'], ['the'], ['other'], ['seasonsand'], ['let'], ['today'], ['embrace'], ['the'], ['past'], ['withremembrance'], ['and'], ['the'], ['future'], ['with'], ['longing'], ['and'], ['one'], ['of'], ['the'], ['elders'], ['of'], ['the'], ['citysaid'], ['speak'], ['to'], ['us'], ['of'], ['good'], ['and'], ['eviland'], ['he'], ['answeredof'], ['the'], ['good'], ['in'], ['you'], ['i'], ['can'], ['speak'], ['but'], ['notof'], ['the'], ['evilfor'], ['what'], ['is'], ['evil'], ['but'], ['good'], ['tortured'], ['byits'], ['own'], ['hunger'], ['and'], ['thirstverily'], ['when'], ['good'], ['is'], ['hungry'], ['it'], ['seeks'], ['foodeven'], ['in'], ['dark'], ['caves'], ['and'], ['when'], ['it'], ['thirstsit'], ['drinks'], ['even'], ['of'], ['dead'], ['watersyou'], ['are'], ['good'], ['when'], ['you'], ['are'], ['one'], ['withyourselfyet'], ['when'], ['you'], ['are'], ['not'], ['one'], ['with'], ['yourselfyou'], ['are'], ['not'], ['evilfor'], ['a'], ['divided'], ['house'], ['is'], ['not'], ['a'], ['den'], ['ofthieves'], ['it'], ['is'], ['only'], ['a'], ['divided'], ['houseand'], ['a'], ['ship'], ['without'], ['rudder'], ['may'], ['wanderaimlessly'], ['among'], ['perilous'], ['isles'], ['yet'], ['sinknot'], ['to'], ['the'], ['bottom'], ['you'], ['are'], ['good'], ['whenyou'], ['strive'], ['to'], ['give'], ['of'], ['yourselfyet'], ['you'], ['are'], ['not'], ['evil'], ['when'], ['you'], ['seek'], ['gainfor'], ['yourselffor'], ['when'], ['you'], ['strive'], ['for'], ['gain'], ['you'], ['arebut'], ['a'], ['root'], ['that'], ['clings'], ['to'], ['the'], ['earth'], ['andsucks'], ['at'], ['her'], ['breastsurely'], ['the'], ['fruit'], ['cannot'], ['say'], ['to'], ['the'], ['rootbe'], ['like'], ['me'], ['ripe'], ['and'], ['full'], ['and'], ['evergiving'], ['of'], ['your'], ['abundancefor'], ['to'], ['the'], ['fruit'], ['giving'], ['is'], ['a'], ['need'], ['asreceiving'], ['is'], ['a'], ['need'], ['to'], ['the'], ['rootyou'], ['are'], ['good'], ['when'], ['you'], ['are'], ['fully'], ['awake'], ['inyour'], ['speechyet'], ['you'], ['are'], ['not'], ['evil'], ['when'], ['you'], ['sleepwhile'], ['your'], ['tongue'], ['staggers'], ['withoutpurposeand'], ['even'], ['stumbling'], ['speech'], ['may'], ['strengthena'], ['weak'], ['tongueyou'], ['are'], ['good'], ['when'], ['you'], ['walk'], ['to'], ['your'], ['goalfirmly'], ['and'], ['with'], ['bold'], ['stepsyet'], ['you'], ['are'], ['not'], ['evil'], ['when'], ['you'], ['go'], ['thitherlimping'], ['even'], ['those'], ['who'], ['limp'], ['go'], ['notbackwardbut'], ['you'], ['who'], ['are'], ['strong'], ['and'], ['swift'], ['seethat'], ['you'], ['do'], ['not'], ['limp'], ['before'], ['the'], ['lamedeeming'], ['it'], ['kindnessyou'], ['are'], ['good'], ['in'], ['countless'], ['ways'], ['and'], ['youare'], ['not'], ['evil'], ['when'], ['you'], ['are'], ['not'], ['goodyou'], ['are'], ['only'], ['loitering'], ['and'], ['sluggardpity'], ['that'], ['the'], ['stags'], ['cannot'], ['teachswiftness'], ['to'], ['the'], ['turtlesin'], ['your'], ['longing'], ['for'], ['your'], ['giant'], ['self'], ['liesyour'], ['goodness'], ['and'], ['that'], ['longing'], ['is'], ['inall'], ['of'], ['youbut'], ['in'], ['some'], ['of'], ['you'], ['that'], ['longing'], ['is'], ['atorrent'], ['rushing'], ['with'], ['might'], ['to'], ['the'], ['seacarrying'], ['the'], ['secrets'], ['of'], ['the'], ['hillsidesand'], ['the'], ['songs'], ['of'], ['the'], ['forestand'], ['in'], ['others'], ['it'], ['is'], ['a'], ['flat'], ['stream'], ['thatloses'], ['itself'], ['in'], ['angles'], ['and'], ['bends'], ['andlingers'], ['before'], ['it'], ['reaches'], ['the'], ['shorebut'], ['let'], ['not'], ['him'], ['who'], ['longs'], ['much'], ['say'], ['tohim'], ['who'], ['longs'], ['little'], ['wherefore'], ['areyou'], ['slow'], ['and'], ['haltingfor'], ['the'], ['truly'], ['good'], ['ask'], ['not'], ['the'], ['nakedwhere'], ['is'], ['your'], ['garment'], ['nor'], ['thehouseless'], ['what'], ['has'], ['befallen'], ['yourhouse'], ['then'], ['a'], ['priestess'], ['said'], ['speak'], ['to'], ['usof'], ['prayerand'], ['he'], ['answered'], ['sayingyou'], ['pray'], ['in'], ['your'], ['distress'], ['and'], ['in'], ['yourneed'], ['would'], ['that'], ['you'], ['might'], ['pray'], ['alsoin'], ['the'], ['fullness'], ['of'], ['your'], ['joy'], ['and'], ['in'], ['yourdays'], ['of'], ['abundancefor'], ['what'], ['is'], ['prayer'], ['but'], ['the'], ['expansion'], ['ofyourself'], ['into'], ['the'], ['living'], ['etherand'], ['if'], ['it'], ['is'], ['for'], ['your'], ['comfort'], ['to'], ['pouryour'], ['darkness'], ['into'], ['space'], ['it'], ['is'], ['also'], ['foryour'], ['delight'], ['to'], ['pour'], ['forth'], ['the'], ['dawningof'], ['your'], ['heartand'], ['if'], ['you'], ['cannot'], ['but'], ['weep'], ['when'], ['yoursoul'], ['summons'], ['you'], ['to'], ['prayer'], ['she'], ['shouldspur'], ['you'], ['again'], ['and'], ['yet'], ['again'], ['thoughweeping'], ['until'], ['you'], ['shall'], ['come'], ['laughingwhen'], ['you'], ['pray'], ['you'], ['rise'], ['to'], ['meet'], ['in'], ['theair'], ['those'], ['who'], ['are'], ['praying'], ['at'], ['that'], ['veryhour'], ['and'], ['whom'], ['save'], ['in'], ['prayer'], ['youmay'], ['not'], ['meettherefore'], ['let'], ['your'], ['visit'], ['to'], ['that'], ['templeinvisible'], ['be'], ['for'], ['naught'], ['but'], ['ecstasy'], ['andsweet'], ['communionfor'], ['if'], ['you'], ['should'], ['enter'], ['the'], ['temple'], ['forno'], ['other'], ['purpose'], ['than'], ['asking'], ['you'], ['shallnot'], ['receiveand'], ['if'], ['you'], ['should'], ['enter'], ['into'], ['it'], ['tohumble'], ['yourself'], ['you'], ['shall'], ['not'], ['be'], ['liftedor'], ['even'], ['if'], ['you'], ['should'], ['enter'], ['into'], ['it'], ['tobeg'], ['for'], ['the'], ['good'], ['of'], ['others'], ['you'], ['shall'], ['notbe'], ['heardit'], ['is'], ['enough'], ['that'], ['you'], ['enter'], ['the'], ['templeinvisiblei'], ['cannot'], ['teach'], ['you'], ['how'], ['to'], ['pray'], ['in'], ['wordsgod'], ['listens'], ['not'], ['to'], ['your'], ['words'], ['save'], ['whenhe'], ['himself'], ['utters'], ['them'], ['through'], ['yourlipsand'], ['i'], ['cannot'], ['teach'], ['you'], ['the'], ['prayer'], ['of'], ['theseas'], ['and'], ['the'], ['forests'], ['and'], ['the'], ['mountainsbut'], ['you'], ['who'], ['are'], ['born'], ['of'], ['themountains'], ['and'], ['the'], ['forests'], ['and'], ['the'], ['seascan'], ['find'], ['their'], ['prayer'], ['in'], ['your'], ['heartand'], ['if'], ['you'], ['but'], ['listen'], ['in'], ['the'], ['stillnessof'], ['the'], ['night'], ['you'], ['shall'], ['hear'], ['them'], ['sayingin'], ['silenceour'], ['god'], ['who'], ['art'], ['our'], ['winged'], ['self'], ['it'], ['isthy'], ['will'], ['in'], ['us'], ['that'], ['willethit'], ['is'], ['thy'], ['desire'], ['in'], ['us'], ['that'], ['desirethit'], ['is'], ['thy'], ['urge'], ['in'], ['us'], ['that'], ['would'], ['turn'], ['ournights'], ['which'], ['are'], ['thine'], ['into'], ['days'], ['whichare'], ['thine'], ['alsowe'], ['cannot'], ['ask'], ['thee'], ['for'], ['aught'], ['for'], ['thouknowest'], ['our'], ['needs'], ['before'], ['they'], ['are'], ['bornin'], ['usthou'], ['art'], ['our'], ['need'], ['and'], ['in'], ['giving'], ['us'], ['moreof'], ['thyself'], ['thou'], ['givest'], ['us'], ['allillustration'], [''], ['then'], ['a'], ['hermit'], ['who'], ['visited'], ['the'], ['cityonce'], ['a'], ['year'], ['came'], ['forth'], ['and'], ['said'], ['speakto'], ['us'], ['of'], ['pleasureand'], ['he'], ['answered'], ['sayingpleasure'], ['is'], ['a'], ['freedomsongbut'], ['it'], ['is'], ['not'], ['freedomit'], ['is'], ['the'], ['blossoming'], ['of'], ['your'], ['desiresbut'], ['it'], ['is'], ['not'], ['their'], ['fruitit'], ['is'], ['a'], ['depth'], ['calling'], ['unto'], ['a'], ['heightbut'], ['it'], ['is'], ['not'], ['the'], ['deep'], ['nor'], ['the'], ['highit'], ['is'], ['the'], ['caged'], ['taking'], ['wingbut'], ['it'], ['is'], ['not'], ['space'], ['encompasseday'], ['in'], ['very'], ['truth'], ['pleasure'], ['is'], ['afreedomsongand'], ['i'], ['fain'], ['would'], ['have'], ['you'], ['sing'], ['it'], ['withfullness'], ['of'], ['heart'], ['yet'], ['i'], ['would'], ['not'], ['haveyou'], ['lose'], ['your'], ['hearts'], ['in'], ['the'], ['singingsome'], ['of'], ['your'], ['youth'], ['seek'], ['pleasure'], ['as'], ['ifit'], ['were'], ['all'], ['and'], ['they'], ['are'], ['judged'], ['andrebuked'], ['i'], ['would'], ['not'], ['judge'], ['norrebuke'], ['them'], ['i'], ['would'], ['have'], ['them'], ['seekfor'], ['they'], ['shall'], ['find'], ['pleasure'], ['but'], ['nother'], ['aloneseven'], ['are'], ['her'], ['sisters'], ['and'], ['the'], ['least'], ['ofthem'], ['is'], ['more'], ['beautiful'], ['than'], ['pleasurehave'], ['you'], ['not'], ['heard'], ['of'], ['the'], ['man'], ['who'], ['wasdigging'], ['in'], ['the'], ['earth'], ['for'], ['roots'], ['and'], ['founda'], ['treasureand'], ['some'], ['of'], ['your'], ['elders'], ['rememberpleasures'], ['with'], ['regret'], ['like'], ['wrongscommitted'], ['in'], ['drunkennessbut'], ['regret'], ['is'], ['the'], ['beclouding'], ['of'], ['the'], ['mindand'], ['not'], ['its'], ['chastisementthey'], ['should'], ['remember'], ['their'], ['pleasureswith'], ['gratitude'], ['as'], ['they'], ['would'], ['theharvest'], ['of'], ['a'], ['summeryet'], ['if'], ['it'], ['comforts'], ['them'], ['to'], ['regret'], ['letthem'], ['be'], ['comfortedand'], ['there'], ['are'], ['among'], ['you'], ['those'], ['whoare'], ['neither'], ['young'], ['to'], ['seek'], ['nor'], ['old'], ['torememberand'], ['in'], ['their'], ['fear'], ['of'], ['seeking'], ['andremembering'], ['they'], ['shun'], ['all'], ['pleasureslest'], ['they'], ['neglect'], ['the'], ['spirit'], ['or'], ['offendagainst'], ['itbut'], ['even'], ['in'], ['their'], ['foregoing'], ['is'], ['theirpleasureand'], ['thus'], ['they'], ['too'], ['find'], ['a'], ['treasure'], ['thoughthey'], ['dig'], ['for'], ['roots'], ['with'], ['quivering'], ['handsbut'], ['tell'], ['me'], ['who'], ['is'], ['he'], ['that'], ['can'], ['offendthe'], ['spiritshall'], ['the'], ['nightingale'], ['offend'], ['thestillness'], ['of'], ['the'], ['night'], ['or'], ['the'], ['fireflythe'], ['starsand'], ['shall'], ['your'], ['flame'], ['or'], ['your'], ['smokeburden'], ['the'], ['windthink'], ['you'], ['the'], ['spirit'], ['is'], ['a'], ['still'], ['poolwhich'], ['you'], ['can'], ['trouble'], ['with'], ['a'], ['staffoftentimes'], ['in'], ['denying'], ['yourself'], ['pleasureyou'], ['do'], ['but'], ['store'], ['the'], ['desire'], ['in'], ['therecesses'], ['of'], ['your'], ['beingwho'], ['knows'], ['but'], ['that'], ['which'], ['seems'], ['omittedtoday'], ['waits'], ['for'], ['tomorroweven'], ['your'], ['body'], ['knows'], ['its'], ['heritageand'], ['its'], ['rightful'], ['need'], ['and'], ['will'], ['not'], ['bedeceivedand'], ['your'], ['body'], ['is'], ['the'], ['harp'], ['of'], ['your'], ['souland'], ['it'], ['is'], ['yours'], ['to'], ['bring'], ['forth'], ['sweetmusic'], ['from'], ['it'], ['or'], ['confused'], ['soundsand'], ['now'], ['you'], ['ask'], ['in'], ['your'], ['heart'], ['howshall'], ['we'], ['distinguish'], ['that'], ['which'], ['isgood'], ['in'], ['pleasure'], ['from'], ['that'], ['which'], ['is'], ['notgoodgo'], ['to'], ['your'], ['fields'], ['and'], ['your'], ['gardens'], ['andyou'], ['shall'], ['learn'], ['that'], ['it'], ['is'], ['the'], ['pleasureof'], ['the'], ['bee'], ['to'], ['gather'], ['honey'], ['of'], ['theflowerbut'], ['it'], ['is'], ['also'], ['the'], ['pleasure'], ['of'], ['theflower'], ['to'], ['yield'], ['its'], ['honey'], ['to'], ['the'], ['beefor'], ['to'], ['the'], ['bee'], ['a'], ['flower'], ['is'], ['a'], ['fountain'], ['oflifeand'], ['to'], ['the'], ['flower'], ['a'], ['bee'], ['is'], ['a'], ['messengerof'], ['loveand'], ['to'], ['both'], ['bee'], ['and'], ['flower'], ['the'], ['givingand'], ['the'], ['receiving'], ['of'], ['pleasure'], ['is'], ['a'], ['needand'], ['an'], ['ecstasypeople'], ['of'], ['orphalese'], ['be'], ['in'], ['yourpleasures'], ['like'], ['the'], ['flowers'], ['and'], ['the'], ['bees'], ['and'], ['a'], ['poet'], ['said'], ['speak'], ['to'], ['us'], ['ofbeautyand'], ['he'], ['answeredwhere'], ['shall'], ['you'], ['seek'], ['beauty'], ['and'], ['howshall'], ['you'], ['find'], ['her'], ['unless'], ['she'], ['herself'], ['beyour'], ['way'], ['and'], ['your'], ['guideand'], ['how'], ['shall'], ['you'], ['speak'], ['of'], ['her'], ['exceptshe'], ['be'], ['the'], ['weaver'], ['of'], ['your'], ['speechthe'], ['aggrieved'], ['and'], ['the'], ['injured'], ['saybeauty'], ['is'], ['kind'], ['and'], ['gentlelike'], ['a'], ['young'], ['mother'], ['halfshy'], ['of'], ['her'], ['ownglory'], ['she'], ['walks'], ['among'], ['usand'], ['the'], ['passionate'], ['say'], ['nay'], ['beauty'], ['isa'], ['thing'], ['of'], ['might'], ['and'], ['dreadlike'], ['the'], ['tempest'], ['she'], ['shakes'], ['the'], ['earthbeneath'], ['us'], ['and'], ['the'], ['sky'], ['above'], ['usthe'], ['tired'], ['and'], ['the'], ['weary'], ['say'], ['beauty'], ['isof'], ['soft'], ['whisperings'], ['she'], ['speaks'], ['in'], ['ourspirit'], ['her'], ['voice'], ['yields'], ['to'], ['oursilences'], ['like'], ['a'], ['faint'], ['light'], ['that'], ['quiversin'], ['fear'], ['of'], ['the'], ['shadowbut'], ['the'], ['restless'], ['say'], ['we'], ['have'], ['heard'], ['hershouting'], ['among'], ['the'], ['mountainsand'], ['with'], ['her'], ['cries'], ['came'], ['the'], ['sound'], ['ofhoofs'], ['and'], ['the'], ['beating'], ['of'], ['wings'], ['and'], ['theroaring'], ['of'], ['lionsat'], ['night'], ['the'], ['watchmen'], ['of'], ['the'], ['city'], ['saybeauty'], ['shall'], ['rise'], ['with'], ['the'], ['dawn'], ['fromthe'], ['eastand'], ['at'], ['noontide'], ['the'], ['toilers'], ['and'], ['thewayfarers'], ['say'], ['we'], ['have'], ['seen'], ['her'], ['leaningover'], ['the'], ['earth'], ['from'], ['the'], ['windows'], ['of'], ['thesunsetin'], ['winter'], ['say'], ['the'], ['snowbound'], ['she'], ['shallcome'], ['with'], ['the'], ['spring'], ['leaping'], ['upon'], ['thehillsand'], ['in'], ['the'], ['summer'], ['heat'], ['the'], ['reaperssay'], ['we'], ['have'], ['seen'], ['her'], ['dancing'], ['with'], ['theautumn'], ['leaves'], ['and'], ['we'], ['saw'], ['a'], ['drift'], ['ofsnow'], ['in'], ['her'], ['hair'], ['all'], ['these'], ['thingshave'], ['you'], ['said'], ['of'], ['beautyyet'], ['in'], ['truth'], ['you'], ['spoke'], ['not'], ['of'], ['her'], ['but'], ['ofneeds'], ['unsatisfiedand'], ['beauty'], ['is'], ['not'], ['a'], ['need'], ['but'], ['an'], ['ecstasyit'], ['is'], ['not'], ['a'], ['mouth'], ['thirsting'], ['nor'], ['an'], ['emptyhand'], ['stretched'], ['forthbut'], ['rather'], ['a'], ['heart'], ['enflamed'], ['and'], ['a'], ['soulenchantedit'], ['is'], ['not'], ['the'], ['image'], ['you'], ['would'], ['see'], ['northe'], ['song'], ['you'], ['would'], ['hearbut'], ['rather'], ['an'], ['image'], ['you'], ['see'], ['though'], ['youclose'], ['your'], ['eyes'], ['and'], ['a'], ['song'], ['you'], ['hearthough'], ['you'], ['shut'], ['your'], ['earsit'], ['is'], ['not'], ['the'], ['sap'], ['within'], ['the'], ['furrowedbark'], ['nor'], ['a'], ['wing'], ['attached'], ['to'], ['a'], ['clawbut'], ['rather'], ['a'], ['garden'], ['for'], ['ever'], ['in'], ['bloomand'], ['a'], ['flock'], ['of'], ['angels'], ['for'], ['ever'], ['inflightpeople'], ['of'], ['orphalese'], ['beauty'], ['is'], ['life'], ['whenlife'], ['unveils'], ['her'], ['holy'], ['facebut'], ['you'], ['are'], ['life'], ['and'], ['you'], ['are'], ['the'], ['veilbeauty'], ['is'], ['eternity'], ['gazing'], ['at'], ['itselfin'], ['a'], ['mirrorbut'], ['you'], ['are'], ['eternity'], ['and'], ['you'], ['are'], ['themirror'], ['and'], ['an'], ['old'], ['priest'], ['said'], ['speak'], ['to'], ['usof'], ['religionand'], ['he'], ['saidhave'], ['i'], ['spoken'], ['this'], ['day'], ['of'], ['aught'], ['elseis'], ['not'], ['religion'], ['all'], ['deeds'], ['and'], ['allreflectionand'], ['that'], ['which'], ['is'], ['neither'], ['deed'], ['norreflection'], ['but'], ['a'], ['wonder'], ['and'], ['a'], ['surpriseever'], ['springing'], ['in'], ['the'], ['soul'], ['even'], ['whilethe'], ['hands'], ['hew'], ['the'], ['stone'], ['or'], ['tend'], ['theloomwho'], ['can'], ['separate'], ['his'], ['faith'], ['fromhis'], ['actions'], ['or'], ['his'], ['belief'], ['from'], ['hisoccupationswho'], ['can'], ['spread'], ['his'], ['hours'], ['before'], ['himsaving'], ['this'], ['for'], ['god'], ['and'], ['this'], ['formyself'], ['this'], ['for'], ['my'], ['soul'], ['and'], ['this'], ['otherfor'], ['my'], ['bodyall'], ['your'], ['hours'], ['are'], ['wings'], ['that'], ['beatthrough'], ['space'], ['from'], ['self'], ['to'], ['self'], ['hewho'], ['wears'], ['his'], ['morality'], ['but'], ['as'], ['his'], ['bestgarment'], ['were'], ['better'], ['nakedthe'], ['wind'], ['and'], ['the'], ['sun'], ['will'], ['tear'], ['no'], ['holesin'], ['his'], ['skinand'], ['he'], ['who'], ['defines'], ['his'], ['conduct'], ['by'], ['ethicsimprisons'], ['his'], ['songbird'], ['in'], ['a'], ['cagethe'], ['freest'], ['song'], ['comes'], ['not'], ['through'], ['barsand'], ['wiresand'], ['he'], ['to'], ['whom'], ['worshipping'], ['is'], ['a'], ['windowto'], ['open'], ['but'], ['also'], ['to'], ['shut'], ['has'], ['not'], ['yetvisited'], ['the'], ['house'], ['of'], ['his'], ['soul'], ['whosewindows'], ['are'], ['from'], ['dawn'], ['to'], ['dawnyour'], ['daily'], ['life'], ['is'], ['your'], ['temple'], ['and'], ['yourreligionwhenever'], ['you'], ['enter'], ['into'], ['it'], ['take'], ['with'], ['youyour'], ['alltake'], ['the'], ['plough'], ['and'], ['the'], ['forge'], ['and'], ['themallet'], ['and'], ['the'], ['lutethe'], ['things'], ['you'], ['have'], ['fashioned'], ['innecessity'], ['or'], ['for'], ['delightfor'], ['in'], ['revery'], ['you'], ['cannot'], ['rise'], ['above'], ['yourachievements'], ['nor'], ['fall'], ['lower'], ['than'], ['yourfailuresand'], ['take'], ['with'], ['you'], ['all'], ['men'], ['for'], ['inadoration'], ['you'], ['cannot'], ['fly'], ['higher'], ['thantheir'], ['hopes'], ['nor'], ['humble'], ['yourself'], ['lowerthan'], ['their'], ['despairand'], ['if'], ['you'], ['would'], ['know'], ['god'], ['be'], ['nottherefore'], ['a'], ['solver'], ['of'], ['riddlesrather'], ['look'], ['about'], ['you'], ['and'], ['you'], ['shall'], ['seehim'], ['playing'], ['with'], ['your'], ['childrenand'], ['look'], ['into'], ['space'], ['you'], ['shall'], ['see'], ['himwalking'], ['in'], ['the'], ['cloud'], ['outstretching'], ['hisarms'], ['in'], ['the'], ['lightning'], ['and'], ['descending'], ['inrainyou'], ['shall'], ['see'], ['him'], ['smiling'], ['in'], ['flowersthen'], ['rising'], ['and'], ['waving'], ['his'], ['hands'], ['intrees'], ['then'], ['almitra'], ['spoke'], ['saying'], ['we'], ['wouldask'], ['now'], ['of'], ['deathand'], ['he'], ['saidyou'], ['would'], ['know'], ['the'], ['secret'], ['of'], ['deathbut'], ['how'], ['shall'], ['you'], ['find'], ['it'], ['unless'], ['youseek'], ['it'], ['in'], ['the'], ['heart'], ['of'], ['lifethe'], ['owl'], ['whose'], ['nightbound'], ['eyes'], ['are'], ['blindunto'], ['the'], ['day'], ['cannot'], ['unveil'], ['the'], ['mysteryof'], ['lightif'], ['you'], ['would'], ['indeed'], ['behold'], ['the'], ['spiritof'], ['death'], ['open'], ['your'], ['heart'], ['wide'], ['unto'], ['thebody'], ['of'], ['lifefor'], ['life'], ['and'], ['death'], ['are'], ['one'], ['even'], ['as'], ['theriver'], ['and'], ['the'], ['sea'], ['are'], ['onein'], ['the'], ['depth'], ['of'], ['your'], ['hopes'], ['and'], ['desireslies'], ['your'], ['silent'], ['knowledge'], ['of'], ['thebeyondand'], ['like'], ['seeds'], ['dreaming'], ['beneath'], ['the'], ['snowyour'], ['heart'], ['dreams'], ['of'], ['springtrust'], ['the'], ['dreams'], ['for'], ['in'], ['them'], ['is'], ['hiddenthe'], ['gate'], ['to'], ['eternity'], ['your'], ['fearof'], ['death'], ['is'], ['but'], ['the'], ['trembling'], ['of'], ['theshepherd'], ['when'], ['he'], ['stands'], ['before'], ['the'], ['kingwhose'], ['hand'], ['is'], ['to'], ['be'], ['laid'], ['upon'], ['him'], ['inhonouris'], ['the'], ['shepherd'], ['not'], ['joyful'], ['beneath'], ['histrembling'], ['that'], ['he'], ['shall'], ['wear'], ['the'], ['markof'], ['the'], ['kingyet'], ['is'], ['he'], ['not'], ['more'], ['mindful'], ['of'], ['histremblingfor'], ['what'], ['is'], ['it'], ['to'], ['die'], ['but'], ['to'], ['stand'], ['nakedin'], ['the'], ['wind'], ['and'], ['to'], ['melt'], ['into'], ['the'], ['sunand'], ['what'], ['is'], ['it'], ['to'], ['cease'], ['breathing'], ['butto'], ['free'], ['the'], ['breath'], ['from'], ['its'], ['restlesstides'], ['that'], ['it'], ['may'], ['rise'], ['and'], ['expand'], ['andseek'], ['god'], ['unencumberedonly'], ['when'], ['you'], ['drink'], ['from'], ['the'], ['river'], ['ofsilence'], ['shall'], ['you'], ['indeed'], ['singand'], ['when'], ['you'], ['have'], ['reached'], ['the'], ['mountaintop'], ['then'], ['you'], ['shall'], ['begin'], ['to'], ['climband'], ['when'], ['the'], ['earth'], ['shall'], ['claim'], ['yourlimbs'], ['then'], ['shall'], ['you'], ['truly'], ['danceand'], ['now'], ['it'], ['was'], ['eveningand'], ['almitra'], ['the'], ['seeress'], ['said'], ['blessed'], ['bethis'], ['day'], ['and'], ['this'], ['place'], ['and'], ['your'], ['spiritthat'], ['has'], ['spokenand'], ['he'], ['answered'], ['was'], ['it'], ['i'], ['who'], ['spoke'], ['wasi'], ['not'], ['also'], ['a'], ['listenerthen'], ['he'], ['descended'], ['the'], ['steps'], ['of'], ['thetemple'], ['and'], ['all'], ['the'], ['people'], ['followed'], ['himand'], ['he'], ['reached'], ['his'], ['ship'], ['and'], ['stood'], ['uponthe'], ['deckand'], ['facing'], ['the'], ['people'], ['again'], ['he'], ['raisedhis'], ['voice'], ['and'], ['saidpeople'], ['of'], ['orphalese'], ['the'], ['wind'], ['bids'], ['meleave'], ['youless'], ['hasty'], ['am'], ['i'], ['than'], ['the'], ['wind'], ['yet'], ['imust'], ['gowe'], ['wanderers'], ['ever'], ['seeking'], ['the'], ['lonelierway'], ['begin'], ['no'], ['day'], ['where'], ['we'], ['have'], ['endedanother'], ['day'], ['and'], ['no'], ['sunrise'], ['finds'], ['uswhere'], ['sunset'], ['left'], ['us'], ['even'], ['while'], ['theearth'], ['sleeps'], ['we'], ['travelwe'], ['are'], ['the'], ['seeds'], ['of'], ['the'], ['tenaciousplant'], ['and'], ['it'], ['is'], ['in'], ['our'], ['ripeness'], ['and'], ['ourfullness'], ['of'], ['heart'], ['that'], ['we'], ['are'], ['given'], ['tothe'], ['wind'], ['and'], ['are'], ['scatteredbrief'], ['were'], ['my'], ['days'], ['among'], ['you'], ['andbriefer'], ['still'], ['the'], ['words'], ['i'], ['have'], ['spokenbut'], ['should'], ['my'], ['voice'], ['fade'], ['in'], ['your'], ['earsand'], ['my'], ['love'], ['vanish'], ['in'], ['your'], ['memory'], ['theni'], ['will'], ['come'], ['againand'], ['with'], ['a'], ['richer'], ['heart'], ['and'], ['lips'], ['moreyielding'], ['to'], ['the'], ['spirit'], ['will'], ['i'], ['speakyea'], ['i'], ['shall'], ['return'], ['with'], ['the'], ['tideand'], ['though'], ['death'], ['may'], ['hide'], ['me'], ['and'], ['thegreater'], ['silence'], ['enfold'], ['me'], ['yet'], ['againwill'], ['i'], ['seek'], ['your'], ['understandingand'], ['not'], ['in'], ['vain'], ['will'], ['i'], ['seekif'], ['aught'], ['i'], ['have'], ['said'], ['is'], ['truth'], ['thattruth'], ['shall'], ['reveal'], ['itself'], ['in'], ['a'], ['clearervoice'], ['and'], ['in'], ['words'], ['more'], ['kin'], ['to'], ['yourthoughtsi'], ['go'], ['with'], ['the'], ['wind'], ['people'], ['oforphalese'], ['but'], ['not'], ['down'], ['into'], ['emptinessand'], ['if'], ['this'], ['day'], ['is'], ['not'], ['a'], ['fulfilmentof'], ['your'], ['needs'], ['and'], ['my'], ['love'], ['then'], ['let'], ['itbe'], ['a'], ['promise'], ['till'], ['another'], ['daymans'], ['needs'], ['change'], ['but'], ['not'], ['his'], ['lovenor'], ['his'], ['desire'], ['that'], ['his'], ['love'], ['shouldsatisfy'], ['his'], ['needsknow'], ['therefore'], ['that'], ['from'], ['the'], ['greatersilence'], ['i'], ['shall'], ['returnthe'], ['mist'], ['that'], ['drifts'], ['away'], ['at'], ['dawnleaving'], ['but'], ['dew'], ['in'], ['the'], ['fields'], ['shallrise'], ['and'], ['gather'], ['into'], ['a'], ['cloud'], ['and'], ['thenfall'], ['down'], ['in'], ['rainand'], ['not'], ['unlike'], ['the'], ['mist'], ['have'], ['i'], ['beenin'], ['the'], ['stillness'], ['of'], ['the'], ['night'], ['i'], ['havewalked'], ['in'], ['your'], ['streets'], ['and'], ['my'], ['spirithas'], ['entered'], ['your'], ['housesand'], ['your'], ['heartbeats'], ['were'], ['in'], ['my'], ['heartand'], ['your'], ['breath'], ['was'], ['upon'], ['my'], ['face'], ['and'], ['iknew'], ['you'], ['allay'], ['i'], ['knew'], ['your'], ['joy'], ['and'], ['your'], ['painand'], ['in'], ['your'], ['sleep'], ['your'], ['dreams'], ['were'], ['mydreamsand'], ['oftentimes'], ['i'], ['was'], ['among'], ['you'], ['a'], ['lakeamong'], ['the'], ['mountainsi'], ['mirrored'], ['the'], ['summits'], ['in'], ['you'], ['and'], ['thebending'], ['slopes'], ['and'], ['even'], ['thepassing'], ['flocks'], ['of'], ['your'], ['thoughts'], ['and'], ['yourdesiresand'], ['to'], ['my'], ['silence'], ['came'], ['the'], ['laughterof'], ['your'], ['children'], ['in'], ['streams'], ['and'], ['thelonging'], ['of'], ['your'], ['youths'], ['in'], ['riversand'], ['when'], ['they'], ['reached'], ['my'], ['depth'], ['thestreams'], ['and'], ['the'], ['rivers'], ['ceased'], ['not'], ['yet'], ['tosingillustration'], ['but'], ['sweeter'], ['still'], ['than'], ['laughter'], ['andgreater'], ['than'], ['longing'], ['came'], ['to'], ['meit'], ['was'], ['the'], ['boundless'], ['in'], ['youthe'], ['vast'], ['man'], ['in'], ['whom'], ['you'], ['are'], ['all'], ['butcells'], ['and'], ['sinewshe'], ['in'], ['whose'], ['chant'], ['all'], ['your'], ['singing'], ['isbut'], ['a'], ['soundless'], ['throbbingit'], ['is'], ['in'], ['the'], ['vast'], ['man'], ['that'], ['you'], ['are'], ['vastand'], ['in'], ['beholding'], ['him'], ['that'], ['i'], ['beheld'], ['youand'], ['loved'], ['youfor'], ['what'], ['distances'], ['can'], ['love'], ['reach'], ['thatare'], ['not'], ['in'], ['that'], ['vast'], ['spherewhat'], ['visions'], ['what'], ['expectations'], ['and'], ['whatpresumptions'], ['can'], ['outsoar'], ['that'], ['flightlike'], ['a'], ['giant'], ['oak'], ['tree'], ['covered'], ['with'], ['appleblossoms'], ['is'], ['the'], ['vast'], ['man'], ['in'], ['you'], ['hismight'], ['binds'], ['you'], ['to'], ['the'], ['earth'], ['hisfragrance'], ['lifts'], ['you'], ['into'], ['space'], ['and'], ['inhis'], ['durability'], ['you'], ['are'], ['deathlessyou'], ['have'], ['been'], ['told'], ['that'], ['even'], ['like'], ['achain'], ['you'], ['are'], ['as'], ['weak'], ['as'], ['your'], ['weakestlinkthis'], ['is'], ['but'], ['half'], ['the'], ['truth'], ['you'], ['are'], ['alsoas'], ['strong'], ['as'], ['your'], ['strongest'], ['linkto'], ['measure'], ['you'], ['by'], ['your'], ['smallest'], ['deedis'], ['to'], ['reckon'], ['the'], ['power'], ['of'], ['ocean'], ['by'], ['thefrailty'], ['of'], ['its'], ['foamto'], ['judge'], ['you'], ['by'], ['your'], ['failures'], ['is'], ['tocast'], ['blame'], ['upon'], ['the'], ['seasons'], ['for'], ['theirinconstancyay'], ['you'], ['are'], ['like'], ['an'], ['oceanand'], ['though'], ['heavygrounded'], ['ships'], ['awaitthe'], ['tide'], ['upon'], ['your'], ['shores'], ['yet'], ['evenlike'], ['an'], ['ocean'], ['you'], ['cannot'], ['hasten'], ['yourtidesand'], ['like'], ['the'], ['seasons'], ['you'], ['are'], ['alsoand'], ['though'], ['in'], ['your'], ['winter'], ['you'], ['deny'], ['yourspringyet'], ['spring'], ['reposing'], ['within'], ['you'], ['smilesin'], ['her'], ['drowsiness'], ['and'], ['is'], ['not'], ['offendedthink'], ['not'], ['i'], ['say'], ['these'], ['things'], ['inorder'], ['that'], ['you'], ['may'], ['say'], ['the'], ['one'], ['to'], ['theother'], ['he'], ['praised'], ['us'], ['well'], ['he'], ['saw'], ['butthe'], ['good'], ['in'], ['usi'], ['only'], ['speak'], ['to'], ['you'], ['in'], ['words'], ['of'], ['thatwhich'], ['you'], ['yourselves'], ['know'], ['in'], ['thoughtand'], ['what'], ['is'], ['word'], ['knowledge'], ['but'], ['a'], ['shadowof'], ['wordless'], ['knowledgeyour'], ['thoughts'], ['and'], ['my'], ['words'], ['are'], ['wavesfrom'], ['a'], ['sealed'], ['memory'], ['that'], ['keeps'], ['recordsof'], ['our'], ['yesterdaysand'], ['of'], ['the'], ['ancient'], ['days'], ['when'], ['the'], ['earthknew'], ['not'], ['us'], ['nor'], ['herselfand'], ['of'], ['nights'], ['when'], ['earth'], ['was'], ['upwroughtwith'], ['confusionwise'], ['men'], ['have'], ['come'], ['to'], ['you'], ['to'], ['give'], ['youof'], ['their'], ['wisdom'], ['i'], ['came'], ['to'], ['take'], ['of'], ['yourwisdomand'], ['behold'], ['i'], ['have'], ['found'], ['that'], ['which'], ['isgreater'], ['than'], ['wisdomit'], ['is'], ['a'], ['flame'], ['spirit'], ['in'], ['you'], ['evergathering'], ['more'], ['of'], ['itselfwhile'], ['you'], ['heedless'], ['of'], ['its'], ['expansionbewail'], ['the'], ['withering'], ['of'], ['your'], ['daysit'], ['is'], ['life'], ['in'], ['quest'], ['of'], ['life'], ['inbodies'], ['that'], ['fear'], ['the'], ['gravethere'], ['are'], ['no'], ['graves'], ['herethese'], ['mountains'], ['and'], ['plains'], ['are'], ['a'], ['cradleand'], ['a'], ['steppingstonewhenever'], ['you'], ['pass'], ['by'], ['the'], ['field'], ['whereyou'], ['have'], ['laid'], ['your'], ['ancestors'], ['look'], ['wellthereupon'], ['and'], ['you'], ['shall'], ['see'], ['yourselvesand'], ['your'], ['children'], ['dancing'], ['hand'], ['in'], ['handverily'], ['you'], ['often'], ['make'], ['merry'], ['withoutknowingothers'], ['have'], ['come'], ['to'], ['you'], ['to'], ['whom'], ['forgolden'], ['promises'], ['made'], ['unto'], ['your'], ['faithyou'], ['have'], ['given'], ['but'], ['riches'], ['and'], ['power'], ['andgloryless'], ['than'], ['a'], ['promise'], ['have'], ['i'], ['given'], ['andyet'], ['more'], ['generous'], ['have'], ['you'], ['been'], ['to'], ['meyou'], ['have'], ['given'], ['me'], ['my'], ['deeper'], ['thirstingafter'], ['lifesurely'], ['there'], ['is'], ['no'], ['greater'], ['gift'], ['to'], ['a'], ['manthan'], ['that'], ['which'], ['turns'], ['all'], ['his'], ['aimsinto'], ['parching'], ['lips'], ['and'], ['all'], ['life'], ['into'], ['afountainillustration'], ['and'], ['in'], ['this'], ['lies'], ['my'], ['honour'], ['and'], ['myrewardthat'], ['whenever'], ['i'], ['come'], ['to'], ['the'], ['fountainto'], ['drink'], ['i'], ['find'], ['the'], ['living'], ['water'], ['itselfthirstyand'], ['it'], ['drinks'], ['me'], ['while'], ['i'], ['drink'], ['itsome'], ['of'], ['you'], ['have'], ['deemed'], ['me'], ['proud'], ['andovershy'], ['to'], ['receive'], ['giftstoo'], ['proud'], ['indeed'], ['am'], ['i'], ['to'], ['receive'], ['wagesbut'], ['not'], ['giftsand'], ['though'], ['i'], ['have'], ['eaten'], ['berries'], ['amongthe'], ['hills'], ['when'], ['you'], ['would'], ['have'], ['had'], ['me'], ['sitat'], ['your'], ['boardand'], ['slept'], ['in'], ['the'], ['portico'], ['of'], ['the'], ['templewhen'], ['you'], ['would'], ['gladly'], ['have'], ['sheltered'], ['meyet'], ['was'], ['it'], ['not'], ['your'], ['loving'], ['mindfulnessof'], ['my'], ['days'], ['and'], ['my'], ['nights'], ['that'], ['made'], ['foodsweet'], ['to'], ['my'], ['mouth'], ['and'], ['girdled'], ['my'], ['sleepwith'], ['visionsfor'], ['this'], ['i'], ['bless'], ['you'], ['mostyou'], ['give'], ['much'], ['and'], ['know'], ['not'], ['that'], ['you'], ['giveat'], ['all'], ['verily'], ['the'], ['kindness'], ['thatgazes'], ['upon'], ['itself'], ['in'], ['a'], ['mirror'], ['turns'], ['tostoneand'], ['a'], ['good'], ['deed'], ['that'], ['calls'], ['itself'], ['bytender'], ['names'], ['becomes'], ['the'], ['parent'], ['to'], ['acurseand'], ['some'], ['of'], ['you'], ['have'], ['called'], ['me'], ['aloofand'], ['drunk'], ['with'], ['my'], ['own'], ['alonenessand'], ['you'], ['have'], ['said'], ['he'], ['holds'], ['councilwith'], ['the'], ['trees'], ['of'], ['the'], ['forest'], ['but'], ['notwith'], ['menhe'], ['sits'], ['alone'], ['on'], ['hilltops'], ['and'], ['looksdown'], ['upon'], ['our'], ['citytrue'], ['it'], ['is'], ['that'], ['i'], ['have'], ['climbed'], ['the'], ['hillsand'], ['walked'], ['in'], ['remote'], ['placeshow'], ['could'], ['i'], ['have'], ['seen'], ['you'], ['save'], ['from'], ['agreat'], ['height'], ['or'], ['a'], ['great'], ['distancehow'], ['can'], ['one'], ['be'], ['indeed'], ['near'], ['unless'], ['he'], ['betarand'], ['others'], ['among'], ['you'], ['called'], ['unto'], ['me'], ['notin'], ['words'], ['and'], ['they'], ['saidstranger'], ['stranger'], ['lover'], ['ofunreachable'], ['heights'], ['why'], ['dwell'], ['you'], ['amongthe'], ['summits'], ['where'], ['eagles'], ['buildtheir'], ['nests'], ['why'], ['seek'], ['you'], ['theunattainablewhat'], ['storms'], ['would'], ['you'], ['trap'], ['in'], ['your'], ['netand'], ['what'], ['vaporous'], ['birds'], ['do'], ['you'], ['hunt'], ['inthe'], ['skycome'], ['and'], ['be'], ['one'], ['of'], ['usdescend'], ['and'], ['appease'], ['your'], ['hunger'], ['with'], ['ourbread'], ['and'], ['quench'], ['your'], ['thirst'], ['with'], ['ourwinein'], ['the'], ['solitude'], ['of'], ['their'], ['souls'], ['they'], ['saidthese'], ['thingsbut'], ['were'], ['their'], ['solitude'], ['deeper'], ['theywould'], ['have'], ['known'], ['that'], ['i'], ['sought'], ['but'], ['thesecret'], ['of'], ['your'], ['joy'], ['and'], ['your'], ['painand'], ['i'], ['hunted'], ['only'], ['your'], ['larger'], ['selvesthat'], ['walk'], ['the'], ['skybut'], ['the'], ['hunter'], ['was'], ['also'], ['the'], ['huntedfor'], ['many'], ['of'], ['my'], ['arrows'], ['left'], ['my'], ['bow'], ['onlyto'], ['seek'], ['my'], ['own'], ['breastand'], ['the'], ['flier'], ['was'], ['also'], ['the'], ['creeperfor'], ['when'], ['my'], ['wings'], ['were'], ['spread'], ['in'], ['thesun'], ['their'], ['shadow'], ['upon'], ['the'], ['earth'], ['was'], ['aturtleand'], ['i'], ['the'], ['believer'], ['was'], ['also'], ['the'], ['doubterfor'], ['often'], ['have'], ['i'], ['put'], ['my'], ['fingerin'], ['my'], ['own'], ['wound'], ['that'], ['i'], ['might'], ['have'], ['thegreater'], ['belief'], ['in'], ['you'], ['and'], ['the'], ['greaterknowledge'], ['of'], ['youand'], ['it'], ['is'], ['with'], ['this'], ['belief'], ['and'], ['thisknowledge'], ['that'], ['i'], ['sayyou'], ['are'], ['not'], ['enclosed'], ['within'], ['your'], ['bodiesnor'], ['confined'], ['to'], ['houses'], ['or'], ['fieldsthat'], ['which'], ['is'], ['you'], ['dwells'], ['above'], ['themountain'], ['and'], ['roves'], ['with'], ['the'], ['windit'], ['is'], ['not'], ['a'], ['thing'], ['that'], ['crawls'], ['intothe'], ['sun'], ['for'], ['warmth'], ['or'], ['digs'], ['holes'], ['intodarkness'], ['for'], ['safetybut'], ['a'], ['thing'], ['free'], ['a'], ['spirit'], ['that'], ['envelopsthe'], ['earth'], ['and'], ['moves'], ['in'], ['the'], ['etherif'], ['these'], ['be'], ['vague'], ['words'], ['then'], ['seek'], ['notto'], ['clear'], ['themvague'], ['and'], ['nebulous'], ['is'], ['the'], ['beginning'], ['ofall'], ['things'], ['but'], ['not'], ['their'], ['endand'], ['i'], ['fain'], ['would'], ['have'], ['you'], ['remember'], ['me'], ['asa'], ['beginninglife'], ['and'], ['all'], ['that'], ['lives'], ['is'], ['conceivedin'], ['the'], ['mist'], ['and'], ['not'], ['in'], ['the'], ['crystaland'], ['who'], ['knows'], ['but'], ['a'], ['crystal'], ['is'], ['mistin'], ['decaythis'], ['would'], ['i'], ['have'], ['you'], ['remember'], ['inremembering'], ['methat'], ['which'], ['seems'], ['most'], ['feeble'], ['andbewildered'], ['in'], ['you'], ['is'], ['the'], ['strongest'], ['andmost'], ['determinedis'], ['it'], ['not'], ['your'], ['breath'], ['that'], ['has'], ['erectedand'], ['hardened'], ['the'], ['structure'], ['of'], ['yourbonesand'], ['is'], ['it'], ['not'], ['a'], ['dream'], ['which'], ['none'], ['of'], ['youremember'], ['having'], ['dreamt'], ['that'], ['buildedyour'], ['city'], ['and'], ['fashioned'], ['all'], ['there'], ['is'], ['initcould'], ['you'], ['but'], ['see'], ['the'], ['tides'], ['of'], ['thatbreath'], ['you'], ['would'], ['cease'], ['to'], ['see'], ['all'], ['elseand'], ['if'], ['you'], ['could'], ['hear'], ['the'], ['whispering'], ['ofthe'], ['dream'], ['you'], ['would'], ['hear'], ['no'], ['other'], ['soundbut'], ['you'], ['do'], ['not'], ['see'], ['nor'], ['do'], ['you'], ['hear'], ['andit'], ['is'], ['wellthe'], ['veil'], ['that'], ['clouds'], ['your'], ['eyes'], ['shall'], ['belifted'], ['by'], ['the'], ['hands'], ['that'], ['wove'], ['itand'], ['the'], ['clay'], ['that'], ['fills'], ['your'], ['ears'], ['shallbe'], ['pierced'], ['by'], ['those'], ['fingers'], ['that'], ['kneadedit'], ['and'], ['you'], ['shall'], ['seeand'], ['you'], ['shall'], ['hearyet'], ['you'], ['shall'], ['not'], ['deplore'], ['having'], ['knownblindness'], ['nor'], ['regret'], ['having'], ['been'], ['deaffor'], ['in'], ['that'], ['day'], ['you'], ['shall'], ['know'], ['thehidden'], ['purposes'], ['in'], ['all'], ['thingsand'], ['you'], ['shall'], ['bless'], ['darkness'], ['as'], ['youwould'], ['bless'], ['lightafter'], ['saying'], ['these'], ['things'], ['he'], ['lookedabout'], ['him'], ['and'], ['he'], ['saw'], ['the'], ['pilot'], ['of'], ['hisship'], ['standing'], ['by'], ['the'], ['helm'], ['and'], ['gazingnow'], ['at'], ['the'], ['full'], ['sails'], ['and'], ['now'], ['at'], ['thedistanceand'], ['he'], ['saidpatient'], ['over'], ['patient'], ['is'], ['the'], ['captain'], ['ofmy'], ['shipthe'], ['wind'], ['blows'], ['and'], ['restless'], ['are'], ['thesailseven'], ['the'], ['rudder'], ['begs'], ['directionyet'], ['quietly'], ['my'], ['captain'], ['awaits'], ['mysilenceand'], ['these'], ['my'], ['mariners'], ['who'], ['have'], ['heardthe'], ['choir'], ['of'], ['the'], ['greater'], ['sea'], ['they'], ['toohave'], ['heard'], ['me'], ['patiently'], ['now'], ['theyshall'], ['wait'], ['no'], ['longeri'], ['am'], ['readythe'], ['stream'], ['has'], ['reached'], ['the'], ['sea'], ['andonce'], ['more'], ['the'], ['great'], ['mother'], ['holds'], ['her'], ['sonagainst'], ['her'], ['breastfare'], ['you'], ['well'], ['people'], ['of'], ['orphalesethis'], ['day'], ['has'], ['endedit'], ['is'], ['closing'], ['upon'], ['us'], ['even'], ['as'], ['thewaterlily'], ['upon'], ['its'], ['own'], ['tomorrowwhat'], ['was'], ['given'], ['us'], ['here'], ['we'], ['shall'], ['keepand'], ['if'], ['it'], ['suffices'], ['not'], ['then'], ['again'], ['mustwe'], ['come'], ['together'], ['and'], ['together'], ['stretchour'], ['hands'], ['unto'], ['the'], ['giverforget'], ['not'], ['that'], ['i'], ['shall'], ['come'], ['back'], ['toyoua'], ['little'], ['while'], ['and'], ['my'], ['longing'], ['shallgather'], ['dust'], ['and'], ['foam'], ['for'], ['another'], ['bodya'], ['little'], ['while'], ['a'], ['moment'], ['of'], ['rest'], ['uponthe'], ['wind'], ['and'], ['another'], ['woman'], ['shall'], ['bearmefarewell'], ['to'], ['you'], ['and'], ['the'], ['youth'], ['i'], ['havespent'], ['with'], ['youit'], ['was'], ['but'], ['yesterday'], ['we'], ['met'], ['in'], ['adream'], ['you'], ['have'], ['sung'], ['to'], ['me'], ['in'], ['myaloneness'], ['and'], ['i'], ['of'], ['your'], ['longings'], ['havebuilt'], ['a'], ['tower'], ['in'], ['the'], ['skybut'], ['now'], ['our'], ['sleep'], ['has'], ['fled'], ['and'], ['our'], ['dreamis'], ['over'], ['and'], ['it'], ['is'], ['no'], ['longer'], ['dawnthe'], ['noontide'], ['is'], ['upon'], ['us'], ['and'], ['our'], ['halfwaking'], ['has'], ['turned'], ['to'], ['fuller'], ['day'], ['and'], ['wemust'], ['partif'], ['in'], ['the'], ['twilight'], ['of'], ['memory'], ['we'], ['shouldmeet'], ['once'], ['more'], ['we'], ['shall'], ['speak'], ['againtogether'], ['and'], ['you'], ['shall'], ['sing'], ['to'], ['me'], ['adeeper'], ['songand'], ['if'], ['our'], ['hands'], ['should'], ['meet'], ['in'], ['anotherdream'], ['we'], ['shall'], ['build'], ['another'], ['tower'], ['inthe'], ['skyso'], ['saying'], ['he'], ['made'], ['a'], ['signal'], ['to'], ['theseamen'], ['and'], ['straightway'], ['they'], ['weighedanchor'], ['and'], ['cast'], ['the'], ['ship'], ['loose'], ['from'], ['itsmoorings'], ['and'], ['they'], ['moved'], ['eastwardand'], ['a'], ['cry'], ['came'], ['from'], ['the'], ['people'], ['as'], ['from'], ['asingle'], ['heart'], ['and'], ['it'], ['rose'], ['into'], ['the'], ['duskand'], ['was'], ['carried'], ['out'], ['over'], ['the'], ['sea'], ['like'], ['agreat'], ['trumpetingonly'], ['almitra'], ['was'], ['silent'], ['gazing'], ['afterthe'], ['ship'], ['until'], ['it'], ['had'], ['vanished'], ['intothe'], ['mistand'], ['when'], ['all'], ['the'], ['people'], ['were'], ['dispersedshe'], ['still'], ['stood'], ['alone'], ['upon'], ['the'], ['seawallremembering'], ['in'], ['her'], ['heart'], ['his'], ['sayinga'], ['little'], ['while'], ['a'], ['moment'], ['of'], ['rest'], ['uponthe'], ['wind'], ['and'], ['another'], ['woman'], ['shall'], ['bearmeillustration'], ['end'], ['of'], ['the'], ['project'], ['gutenberg'], ['ebook'], ['of'], ['the'], ['prophet'], ['by'], ['kahlil'], ['gibran'], ['end'], ['of'], ['this'], ['project'], ['gutenberg'], ['ebook'], ['the'], ['prophet'], [''], ['this'], ['file'], ['should'], ['be'], ['named'], ['txt'], ['or'], ['zip'], ['this'], ['and'], ['all'], ['associated'], ['files'], ['of'], ['various'], ['formats'], ['will'], ['be'], ['found'], ['in'], [''], [''], [''], [''], [''], [''], [''], ['httpwwwgutenbergorgproduced'], ['by'], ['david'], ['widger'], ['from'], ['page'], ['images'], ['generouslyprovided'], ['by'], ['the'], ['internet'], ['archiveupdated'], ['editions'], ['will'], ['replace'], ['the'], ['previous'], ['onethe'], ['old'], ['editions'], ['willbe'], ['renamedcreating'], ['the'], ['works'], ['from'], ['print'], ['editions'], ['not'], ['protected'], ['by'], ['us'], ['copyrightlaw'], ['means'], ['that'], ['no'], ['one'], ['owns'], ['a'], ['united'], ['states'], ['copyright'], ['in'], ['these'], ['worksso'], ['the'], ['foundation'], ['and'], ['you'], ['can'], ['copy'], ['and'], ['distribute'], ['it'], ['in'], ['the'], ['unitedstates'], ['without'], ['permission'], ['and'], ['without'], ['paying'], ['copyrightroyalties'], ['special'], ['rules'], ['set'], ['forth'], ['in'], ['the'], ['general'], ['terms'], ['of'], ['use'], ['partof'], ['this'], ['license'], ['apply'], ['to'], ['copying'], ['and'], ['distributing'], ['projectgutenbergtm'], ['electronic'], ['works'], ['to'], ['protect'], ['the'], ['project'], ['gutenbergtmconcept'], ['and'], ['trademark'], ['project'], ['gutenberg'], ['is'], ['a'], ['registered'], ['trademarkand'], ['may'], ['not'], ['be'], ['used'], ['if'], ['you'], ['charge'], ['for'], ['the'], ['ebooks'], ['unless'], ['you'], ['receivespecific'], ['permission'], ['if'], ['you'], ['do'], ['not'], ['charge'], ['anything'], ['for'], ['copies'], ['of'], ['thisebook'], ['complying'], ['with'], ['the'], ['rules'], ['is'], ['very'], ['easy'], ['you'], ['may'], ['use'], ['this'], ['ebookfor'], ['nearly'], ['any'], ['purpose'], ['such'], ['as'], ['creation'], ['of'], ['derivative'], ['works'], ['reportsperformances'], ['and'], ['research'], ['they'], ['may'], ['be'], ['modified'], ['and'], ['printed'], ['and'], ['givenawayyou'], ['may'], ['do'], ['practically'], ['anything'], ['in'], ['the'], ['united'], ['states'], ['with'], ['ebooksnot'], ['protected'], ['by'], ['us'], ['copyright'], ['law'], ['redistribution'], ['is'], ['subject'], ['to'], ['thetrademark'], ['license'], ['especially'], ['commercial'], ['redistributionstart'], ['full'], ['licensethe'], ['full'], ['project'], ['gutenberg'], ['licenseplease'], ['read'], ['this'], ['before'], ['you'], ['distribute'], ['or'], ['use'], ['this'], ['workto'], ['protect'], ['the'], ['project'], ['gutenbergtm'], ['mission'], ['of'], ['promoting'], ['the'], ['freedistribution'], ['of'], ['electronic'], ['works'], ['by'], ['using'], ['or'], ['distributing'], ['this'], ['workor'], ['any'], ['other'], ['work'], ['associated'], ['in'], ['any'], ['way'], ['with'], ['the'], ['phrase'], ['projectgutenberg'], ['you'], ['agree'], ['to'], ['comply'], ['with'], ['all'], ['the'], ['terms'], ['of'], ['the'], ['fullproject'], ['gutenbergtm'], ['license'], ['available'], ['with'], ['this'], ['file'], ['or'], ['online'], ['atwwwgutenbergorglicensesection'], [''], ['general'], ['terms'], ['of'], ['use'], ['and'], ['redistributing'], ['projectgutenbergtm'], ['electronic'], ['worksa'], ['by'], ['reading'], ['or'], ['using'], ['any'], ['part'], ['of'], ['this'], ['project'], ['gutenbergtmelectronic'], ['work'], ['you'], ['indicate'], ['that'], ['you'], ['have'], ['read'], ['understand'], ['agree'], ['toand'], ['accept'], ['all'], ['the'], ['terms'], ['of'], ['this'], ['license'], ['and'], ['intellectual'], ['propertytrademarkcopyright'], ['agreement'], ['if'], ['you'], ['do'], ['not'], ['agree'], ['to'], ['abide'], ['by'], ['allthe'], ['terms'], ['of'], ['this'], ['agreement'], ['you'], ['must'], ['cease'], ['using'], ['and'], ['return'], ['ordestroy'], ['all'], ['copies'], ['of'], ['project'], ['gutenbergtm'], ['electronic'], ['works'], ['in'], ['yourpossession'], ['if'], ['you'], ['paid'], ['a'], ['fee'], ['for'], ['obtaining'], ['a'], ['copy'], ['of'], ['or'], ['access'], ['to'], ['aproject'], ['gutenbergtm'], ['electronic'], ['work'], ['and'], ['you'], ['do'], ['not'], ['agree'], ['to'], ['be'], ['boundby'], ['the'], ['terms'], ['of'], ['this'], ['agreement'], ['you'], ['may'], ['obtain'], ['a'], ['refund'], ['from'], ['theperson'], ['or'], ['entity'], ['to'], ['whom'], ['you'], ['paid'], ['the'], ['fee'], ['as'], ['set'], ['forth'], ['in'], ['paragrapheb'], ['project'], ['gutenberg'], ['is'], ['a'], ['registered'], ['trademark'], ['it'], ['may'], ['only'], ['beused'], ['on'], ['or'], ['associated'], ['in'], ['any'], ['way'], ['with'], ['an'], ['electronic'], ['work'], ['by'], ['people'], ['whoagree'], ['to'], ['be'], ['bound'], ['by'], ['the'], ['terms'], ['of'], ['this'], ['agreement'], ['there'], ['are'], ['a'], ['fewthings'], ['that'], ['you'], ['can'], ['do'], ['with'], ['most'], ['project'], ['gutenbergtm'], ['electronic'], ['workseven'], ['without'], ['complying'], ['with'], ['the'], ['full'], ['terms'], ['of'], ['this'], ['agreement'], ['seeparagraph'], ['c'], ['below'], ['there'], ['are'], ['a'], ['lot'], ['of'], ['things'], ['you'], ['can'], ['do'], ['with'], ['projectgutenbergtm'], ['electronic'], ['works'], ['if'], ['you'], ['follow'], ['the'], ['terms'], ['of'], ['thisagreement'], ['and'], ['help'], ['preserve'], ['free'], ['future'], ['access'], ['to'], ['project'], ['gutenbergtmelectronic'], ['works'], ['see'], ['paragraph'], ['e'], ['belowc'], ['the'], ['project'], ['gutenberg'], ['literary'], ['archive'], ['foundation'], ['thefoundation'], ['or'], ['pglaf'], ['owns'], ['a'], ['compilation'], ['copyright'], ['in'], ['the'], ['collectionof'], ['project'], ['gutenbergtm'], ['electronic'], ['works'], ['nearly'], ['all'], ['the'], ['individualworks'], ['in'], ['the'], ['collection'], ['are'], ['in'], ['the'], ['public'], ['domain'], ['in'], ['the'], ['unitedstates'], ['if'], ['an'], ['individual'], ['work'], ['is'], ['unprotected'], ['by'], ['copyright'], ['law'], ['in'], ['theunited'], ['states'], ['and'], ['you'], ['are'], ['located'], ['in'], ['the'], ['united'], ['states'], ['we'], ['do'], ['notclaim'], ['a'], ['right'], ['to'], ['prevent'], ['you'], ['from'], ['copying'], ['distributing'], ['performingdisplaying'], ['or'], ['creating'], ['derivative'], ['works'], ['based'], ['on'], ['the'], ['work'], ['as'], ['long'], ['asall'], ['references'], ['to'], ['project'], ['gutenberg'], ['are'], ['removed'], ['of'], ['course'], ['we'], ['hopethat'], ['you'], ['will'], ['support'], ['the'], ['project'], ['gutenbergtm'], ['mission'], ['of'], ['promotingfree'], ['access'], ['to'], ['electronic'], ['works'], ['by'], ['freely'], ['sharing'], ['project'], ['gutenbergtmworks'], ['in'], ['compliance'], ['with'], ['the'], ['terms'], ['of'], ['this'], ['agreement'], ['for'], ['keeping'], ['theproject'], ['gutenbergtm'], ['name'], ['associated'], ['with'], ['the'], ['work'], ['you'], ['can'], ['easilycomply'], ['with'], ['the'], ['terms'], ['of'], ['this'], ['agreement'], ['by'], ['keeping'], ['this'], ['work'], ['in'], ['thesame'], ['format'], ['with'], ['its'], ['attached'], ['full'], ['project'], ['gutenbergtm'], ['license'], ['whenyou'], ['share'], ['it'], ['without'], ['charge'], ['with'], ['othersd'], ['the'], ['copyright'], ['laws'], ['of'], ['the'], ['place'], ['where'], ['you'], ['are'], ['located'], ['also'], ['governwhat'], ['you'], ['can'], ['do'], ['with'], ['this'], ['work'], ['copyright'], ['laws'], ['in'], ['most'], ['countries'], ['arein'], ['a'], ['constant'], ['state'], ['of'], ['change'], ['if'], ['you'], ['are'], ['outside'], ['the'], ['united'], ['statescheck'], ['the'], ['laws'], ['of'], ['your'], ['country'], ['in'], ['addition'], ['to'], ['the'], ['terms'], ['of'], ['thisagreement'], ['before'], ['downloading'], ['copying'], ['displaying'], ['performingdistributing'], ['or'], ['creating'], ['derivative'], ['works'], ['based'], ['on'], ['this'], ['work'], ['or'], ['anyother'], ['project'], ['gutenbergtm'], ['work'], ['the'], ['foundation'], ['makes'], ['norepresentations'], ['concerning'], ['the'], ['copyright'], ['status'], ['of'], ['any'], ['work'], ['in'], ['anycountry'], ['outside'], ['the'], ['united'], ['statese'], ['unless'], ['you'], ['have'], ['removed'], ['all'], ['references'], ['to'], ['project'], ['gutenberge'], ['the'], ['following'], ['sentence'], ['with'], ['active'], ['links'], ['to'], ['or'], ['otherimmediate'], ['access'], ['to'], ['the'], ['full'], ['project'], ['gutenbergtm'], ['license'], ['must'], ['appearprominently'], ['whenever'], ['any'], ['copy'], ['of'], ['a'], ['project'], ['gutenbergtm'], ['work'], ['any'], ['workon'], ['which'], ['the'], ['phrase'], ['project'], ['gutenberg'], ['appears'], ['or'], ['with'], ['which'], ['thephrase'], ['project'], ['gutenberg'], ['is'], ['associated'], ['is'], ['accessed'], ['displayedperformed'], ['viewed'], ['copied'], ['or'], ['distributed'], [''], ['this'], ['ebook'], ['is'], ['for'], ['the'], ['use'], ['of'], ['anyone'], ['anywhere'], ['in'], ['the'], ['united'], ['states'], ['and'], [''], ['most'], ['other'], ['parts'], ['of'], ['the'], ['world'], ['at'], ['no'], ['cost'], ['and'], ['with'], ['almost'], ['no'], [''], ['restrictions'], ['whatsoever'], ['you'], ['may'], ['copy'], ['it'], ['give'], ['it'], ['away'], ['or'], ['reuse'], ['it'], [''], ['under'], ['the'], ['terms'], ['of'], ['the'], ['project'], ['gutenberg'], ['license'], ['included'], ['with'], ['this'], [''], ['ebook'], ['or'], ['online'], ['at'], ['wwwgutenbergorg'], ['if'], ['you'], ['are'], ['not'], ['located'], ['in'], ['the'], [''], ['united'], ['states'], ['youll'], ['have'], ['to'], ['check'], ['the'], ['laws'], ['of'], ['the'], ['country'], ['where'], ['you'], [''], ['are'], ['located'], ['before'], ['using'], ['this'], ['ebooke'], ['if'], ['an'], ['individual'], ['project'], ['gutenbergtm'], ['electronic'], ['work'], ['isderived'], ['from'], ['texts'], ['not'], ['protected'], ['by'], ['us'], ['copyright'], ['law'], ['does'], ['notcontain'], ['a'], ['notice'], ['indicating'], ['that'], ['it'], ['is'], ['posted'], ['with'], ['permission'], ['of'], ['thecopyright'], ['holder'], ['the'], ['work'], ['can'], ['be'], ['copied'], ['and'], ['distributed'], ['to'], ['anyone'], ['inthe'], ['united'], ['states'], ['without'], ['paying'], ['any'], ['fees'], ['or'], ['charges'], ['if'], ['you'], ['areredistributing'], ['or'], ['providing'], ['access'], ['to'], ['a'], ['work'], ['with'], ['the'], ['phrase'], ['projectgutenberg'], ['associated'], ['with'], ['or'], ['appearing'], ['on'], ['the'], ['work'], ['you'], ['must'], ['complyeither'], ['with'], ['the'], ['requirements'], ['of'], ['paragraphs'], ['e'], ['through'], ['e'], ['orobtain'], ['permission'], ['for'], ['the'], ['use'], ['of'], ['the'], ['work'], ['and'], ['the'], ['project'], ['gutenbergtmtrademark'], ['as'], ['set'], ['forth'], ['in'], ['paragraphs'], ['e'], ['or'], ['ee'], ['if'], ['an'], ['individual'], ['project'], ['gutenbergtm'], ['electronic'], ['work'], ['is'], ['postedwith'], ['the'], ['permission'], ['of'], ['the'], ['copyright'], ['holder'], ['your'], ['use'], ['and'], ['distributionmust'], ['comply'], ['with'], ['both'], ['paragraphs'], ['e'], ['through'], ['e'], ['and'], ['anyadditional'], ['terms'], ['imposed'], ['by'], ['the'], ['copyright'], ['holder'], ['additional'], ['termswill'], ['be'], ['linked'], ['to'], ['the'], ['project'], ['gutenbergtm'], ['license'], ['for'], ['all'], ['worksposted'], ['with'], ['the'], ['permission'], ['of'], ['the'], ['copyright'], ['holder'], ['found'], ['at'], ['thebeginning'], ['of'], ['this'], ['worke'], ['do'], ['not'], ['unlink'], ['or'], ['detach'], ['or'], ['remove'], ['the'], ['full'], ['project'], ['gutenbergtmlicense'], ['terms'], ['from'], ['this'], ['work'], ['or'], ['any'], ['files'], ['containing'], ['a'], ['part'], ['of'], ['thiswork'], ['or'], ['any'], ['other'], ['work'], ['associated'], ['with'], ['project'], ['gutenbergtme'], ['do'], ['not'], ['copy'], ['display'], ['perform'], ['distribute'], ['or'], ['redistribute'], ['thiselectronic'], ['work'], ['or'], ['any'], ['part'], ['of'], ['this'], ['electronic'], ['work'], ['withoutprominently'], ['displaying'], ['the'], ['sentence'], ['set'], ['forth'], ['in'], ['paragraph'], ['e'], ['withactive'], ['links'], ['or'], ['immediate'], ['access'], ['to'], ['the'], ['full'], ['terms'], ['of'], ['the'], ['projectgutenbergtm'], ['licensee'], ['you'], ['may'], ['convert'], ['to'], ['and'], ['distribute'], ['this'], ['work'], ['in'], ['any'], ['binarycompressed'], ['marked'], ['up'], ['nonproprietary'], ['or'], ['proprietary'], ['form'], ['includingany'], ['word'], ['processing'], ['or'], ['hypertext'], ['form'], ['however'], ['if'], ['you'], ['provide'], ['accessto'], ['or'], ['distribute'], ['copies'], ['of'], ['a'], ['project'], ['gutenbergtm'], ['work'], ['in'], ['a'], ['formatother'], ['than'], ['plain'], ['vanilla'], ['ascii'], ['or'], ['other'], ['format'], ['used'], ['in'], ['the'], ['officialversion'], ['posted'], ['on'], ['the'], ['official'], ['project'], ['gutenbergtm'], ['web'], ['sitewwwgutenbergorg'], ['you'], ['must'], ['at'], ['no'], ['additional'], ['cost'], ['fee'], ['or'], ['expenseto'], ['the'], ['user'], ['provide'], ['a'], ['copy'], ['a'], ['means'], ['of'], ['exporting'], ['a'], ['copy'], ['or'], ['a'], ['meansof'], ['obtaining'], ['a'], ['copy'], ['upon'], ['request'], ['of'], ['the'], ['work'], ['in'], ['its'], ['original'], ['plainvanilla'], ['ascii'], ['or'], ['other'], ['form'], ['any'], ['alternate'], ['format'], ['must'], ['include'], ['thefull'], ['project'], ['gutenbergtm'], ['license'], ['as'], ['specified'], ['in'], ['paragraph'], ['ee'], ['do'], ['not'], ['charge'], ['a'], ['fee'], ['for'], ['access'], ['to'], ['viewing'], ['displayingperforming'], ['copying'], ['or'], ['distributing'], ['any'], ['project'], ['gutenbergtm'], ['worksunless'], ['you'], ['comply'], ['with'], ['paragraph'], ['e'], ['or'], ['ee'], ['you'], ['may'], ['charge'], ['a'], ['reasonable'], ['fee'], ['for'], ['copies'], ['of'], ['or'], ['providingaccess'], ['to'], ['or'], ['distributing'], ['project'], ['gutenbergtm'], ['electronic'], ['worksprovided'], ['that'], ['you'], ['pay'], ['a'], ['royalty'], ['fee'], ['of'], [''], ['of'], ['the'], ['gross'], ['profits'], ['you'], ['derive'], ['from'], [''], ['the'], ['use'], ['of'], ['project'], ['gutenbergtm'], ['works'], ['calculated'], ['using'], ['the'], ['method'], [''], ['you'], ['already'], ['use'], ['to'], ['calculate'], ['your'], ['applicable'], ['taxes'], ['the'], ['fee'], ['is'], ['owed'], [''], ['to'], ['the'], ['owner'], ['of'], ['the'], ['project'], ['gutenbergtm'], ['trademark'], ['but'], ['he'], ['has'], [''], ['agreed'], ['to'], ['donate'], ['royalties'], ['under'], ['this'], ['paragraph'], ['to'], ['the'], ['project'], [''], ['gutenberg'], ['literary'], ['archive'], ['foundation'], ['royalty'], ['payments'], ['must'], ['be'], ['paid'], [''], ['within'], [''], ['days'], ['following'], ['each'], ['date'], ['on'], ['which'], ['you'], ['prepare'], ['or'], ['are'], [''], ['legally'], ['required'], ['to'], ['prepare'], ['your'], ['periodic'], ['tax'], ['returns'], ['royalty'], [''], ['payments'], ['should'], ['be'], ['clearly'], ['marked'], ['as'], ['such'], ['and'], ['sent'], ['to'], ['the'], ['project'], [''], ['gutenberg'], ['literary'], ['archive'], ['foundation'], ['at'], ['the'], ['address'], ['specified'], ['in'], [''], ['section'], [''], ['information'], ['about'], ['donations'], ['to'], ['the'], ['project'], ['gutenberg'], [''], ['literary'], ['archive'], ['foundation'], ['you'], ['provide'], ['a'], ['full'], ['refund'], ['of'], ['any'], ['money'], ['paid'], ['by'], ['a'], ['user'], ['who'], ['notifies'], [''], ['you'], ['in'], ['writing'], ['or'], ['by'], ['email'], ['within'], [''], ['days'], ['of'], ['receipt'], ['that'], ['she'], [''], ['does'], ['not'], ['agree'], ['to'], ['the'], ['terms'], ['of'], ['the'], ['full'], ['project'], ['gutenbergtm'], [''], ['license'], ['you'], ['must'], ['require'], ['such'], ['a'], ['user'], ['to'], ['return'], ['or'], ['destroy'], ['all'], [''], ['copies'], ['of'], ['the'], ['works'], ['possessed'], ['in'], ['a'], ['physical'], ['medium'], ['and'], ['discontinue'], [''], ['all'], ['use'], ['of'], ['and'], ['all'], ['access'], ['to'], ['other'], ['copies'], ['of'], ['project'], ['gutenbergtm'], [''], ['works'], ['you'], ['provide'], ['in'], ['accordance'], ['with'], ['paragraph'], ['f'], ['a'], ['full'], ['refund'], ['of'], [''], ['any'], ['money'], ['paid'], ['for'], ['a'], ['work'], ['or'], ['a'], ['replacement'], ['copy'], ['if'], ['a'], ['defect'], ['in'], ['the'], [''], ['electronic'], ['work'], ['is'], ['discovered'], ['and'], ['reported'], ['to'], ['you'], ['within'], [''], ['days'], ['of'], [''], ['receipt'], ['of'], ['the'], ['work'], ['you'], ['comply'], ['with'], ['all'], ['other'], ['terms'], ['of'], ['this'], ['agreement'], ['for'], ['free'], [''], ['distribution'], ['of'], ['project'], ['gutenbergtm'], ['workse'], ['if'], ['you'], ['wish'], ['to'], ['charge'], ['a'], ['fee'], ['or'], ['distribute'], ['a'], ['projectgutenbergtm'], ['electronic'], ['work'], ['or'], ['group'], ['of'], ['works'], ['on'], ['different'], ['terms'], ['thanare'], ['set'], ['forth'], ['in'], ['this'], ['agreement'], ['you'], ['must'], ['obtain'], ['permission'], ['in'], ['writingfrom'], ['both'], ['the'], ['project'], ['gutenberg'], ['literary'], ['archive'], ['foundation'], ['and'], ['theproject'], ['gutenberg'], ['trademark'], ['llc'], ['the'], ['owner'], ['of'], ['the'], ['project'], ['gutenbergtmtrademark'], ['contact'], ['the'], ['foundation'], ['as'], ['set'], ['forth'], ['in'], ['section'], [''], ['belowff'], ['project'], ['gutenberg'], ['volunteers'], ['and'], ['employees'], ['expend'], ['considerableeffort'], ['to'], ['identify'], ['do'], ['copyright'], ['research'], ['on'], ['transcribe'], ['and'], ['proofreadworks'], ['not'], ['protected'], ['by'], ['us'], ['copyright'], ['law'], ['in'], ['creating'], ['the'], ['projectgutenbergtm'], ['collection'], ['despite'], ['these'], ['efforts'], ['project'], ['gutenbergtmelectronic'], ['works'], ['and'], ['the'], ['medium'], ['on'], ['which'], ['they'], ['may'], ['be'], ['stored'], ['maycontain'], ['defects'], ['such'], ['as'], ['but'], ['not'], ['limited'], ['to'], ['incomplete'], ['inaccurateor'], ['corrupt'], ['data'], ['transcription'], ['errors'], ['a'], ['copyright'], ['or'], ['otherintellectual'], ['property'], ['infringement'], ['a'], ['defective'], ['or'], ['damaged'], ['disk'], ['orother'], ['medium'], ['a'], ['computer'], ['virus'], ['or'], ['computer'], ['codes'], ['that'], ['damage'], ['orcannot'], ['be'], ['read'], ['by'], ['your'], ['equipmentf'], ['limited'], ['warranty'], ['disclaimer'], ['of'], ['damages'], [''], ['except'], ['for'], ['the'], ['rightof'], ['replacement'], ['or'], ['refund'], ['described'], ['in'], ['paragraph'], ['f'], ['the'], ['projectgutenberg'], ['literary'], ['archive'], ['foundation'], ['the'], ['owner'], ['of'], ['the'], ['projectgutenbergtm'], ['trademark'], ['and'], ['any'], ['other'], ['party'], ['distributing'], ['a'], ['projectgutenbergtm'], ['electronic'], ['work'], ['under'], ['this'], ['agreement'], ['disclaim'], ['allliability'], ['to'], ['you'], ['for'], ['damages'], ['costs'], ['and'], ['expenses'], ['including'], ['legalfees'], ['you'], ['agree'], ['that'], ['you'], ['have'], ['no'], ['remedies'], ['for'], ['negligence'], ['strictliability'], ['breach'], ['of'], ['warranty'], ['or'], ['breach'], ['of'], ['contract'], ['except'], ['thoseprovided'], ['in'], ['paragraph'], ['f'], ['you'], ['agree'], ['that'], ['the'], ['foundation'], ['thetrademark'], ['owner'], ['and'], ['any'], ['distributor'], ['under'], ['this'], ['agreement'], ['will'], ['not'], ['beliable'], ['to'], ['you'], ['for'], ['actual'], ['direct'], ['indirect'], ['consequential'], ['punitive'], ['orincidental'], ['damages'], ['even'], ['if'], ['you'], ['give'], ['notice'], ['of'], ['the'], ['possibility'], ['of'], ['suchdamagef'], ['limited'], ['right'], ['of'], ['replacement'], ['or'], ['refund'], [''], ['if'], ['you'], ['discover'], ['adefect'], ['in'], ['this'], ['electronic'], ['work'], ['within'], [''], ['days'], ['of'], ['receiving'], ['it'], ['you'], ['canreceive'], ['a'], ['refund'], ['of'], ['the'], ['money'], ['if'], ['any'], ['you'], ['paid'], ['for'], ['it'], ['by'], ['sending'], ['awritten'], ['explanation'], ['to'], ['the'], ['person'], ['you'], ['received'], ['the'], ['work'], ['from'], ['if'], ['youreceived'], ['the'], ['work'], ['on'], ['a'], ['physical'], ['medium'], ['you'], ['must'], ['return'], ['the'], ['mediumwith'], ['your'], ['written'], ['explanation'], ['the'], ['person'], ['or'], ['entity'], ['that'], ['provided'], ['youwith'], ['the'], ['defective'], ['work'], ['may'], ['elect'], ['to'], ['provide'], ['a'], ['replacement'], ['copy'], ['inlieu'], ['of'], ['a'], ['refund'], ['if'], ['you'], ['received'], ['the'], ['work'], ['electronically'], ['the'], ['personor'], ['entity'], ['providing'], ['it'], ['to'], ['you'], ['may'], ['choose'], ['to'], ['give'], ['you'], ['a'], ['secondopportunity'], ['to'], ['receive'], ['the'], ['work'], ['electronically'], ['in'], ['lieu'], ['of'], ['a'], ['refund'], ['ifthe'], ['second'], ['copy'], ['is'], ['also'], ['defective'], ['you'], ['may'], ['demand'], ['a'], ['refund'], ['in'], ['writingwithout'], ['further'], ['opportunities'], ['to'], ['fix'], ['the'], ['problemf'], ['except'], ['for'], ['the'], ['limited'], ['right'], ['of'], ['replacement'], ['or'], ['refund'], ['set'], ['forthin'], ['paragraph'], ['f'], ['this'], ['work'], ['is'], ['provided'], ['to'], ['you'], ['asis'], ['with'], ['noother'], ['warranties'], ['of'], ['any'], ['kind'], ['express'], ['or'], ['implied'], ['including'], ['but'], ['notlimited'], ['to'], ['warranties'], ['of'], ['merchantability'], ['or'], ['fitness'], ['for'], ['any'], ['purposef'], ['some'], ['states'], ['do'], ['not'], ['allow'], ['disclaimers'], ['of'], ['certain'], ['impliedwarranties'], ['or'], ['the'], ['exclusion'], ['or'], ['limitation'], ['of'], ['certain'], ['types'], ['ofdamages'], ['if'], ['any'], ['disclaimer'], ['or'], ['limitation'], ['set'], ['forth'], ['in'], ['this'], ['agreementviolates'], ['the'], ['law'], ['of'], ['the'], ['state'], ['applicable'], ['to'], ['this'], ['agreement'], ['theagreement'], ['shall'], ['be'], ['interpreted'], ['to'], ['make'], ['the'], ['maximum'], ['disclaimer'], ['orlimitation'], ['permitted'], ['by'], ['the'], ['applicable'], ['state'], ['law'], ['the'], ['invalidity'], ['orunenforceability'], ['of'], ['any'], ['provision'], ['of'], ['this'], ['agreement'], ['shall'], ['not'], ['void'], ['theremaining'], ['provisionsf'], ['indemnity'], [''], ['you'], ['agree'], ['to'], ['indemnify'], ['and'], ['hold'], ['the'], ['foundation'], ['thetrademark'], ['owner'], ['any'], ['agent'], ['or'], ['employee'], ['of'], ['the'], ['foundation'], ['anyoneproviding'], ['copies'], ['of'], ['project'], ['gutenbergtm'], ['electronic'], ['works'], ['inaccordance'], ['with'], ['this'], ['agreement'], ['and'], ['any'], ['volunteers'], ['associated'], ['with'], ['theproduction'], ['promotion'], ['and'], ['distribution'], ['of'], ['project'], ['gutenbergtmelectronic'], ['works'], ['harmless'], ['from'], ['all'], ['liability'], ['costs'], ['and'], ['expensesincluding'], ['legal'], ['fees'], ['that'], ['arise'], ['directly'], ['or'], ['indirectly'], ['from'], ['any'], ['ofthe'], ['following'], ['which'], ['you'], ['do'], ['or'], ['cause'], ['to'], ['occur'], ['a'], ['distribution'], ['of'], ['thisor'], ['any'], ['project'], ['gutenbergtm'], ['work'], ['b'], ['alteration'], ['modification'], ['oradditions'], ['or'], ['deletions'], ['to'], ['any'], ['project'], ['gutenbergtm'], ['work'], ['and'], ['c'], ['anydefect'], ['you'], ['causesection'], [''], ['information'], ['about'], ['the'], ['mission'], ['of'], ['project'], ['gutenbergtmproject'], ['gutenbergtm'], ['is'], ['synonymous'], ['with'], ['the'], ['free'], ['distribution'], ['ofelectronic'], ['works'], ['in'], ['formats'], ['readable'], ['by'], ['the'], ['widest'], ['variety'], ['ofcomputers'], ['including'], ['obsolete'], ['old'], ['middleaged'], ['and'], ['new'], ['computers'], ['itexists'], ['because'], ['of'], ['the'], ['efforts'], ['of'], ['hundreds'], ['of'], ['volunteers'], ['and'], ['donationsfrom'], ['people'], ['in'], ['all'], ['walks'], ['of'], ['lifevolunteers'], ['and'], ['financial'], ['support'], ['to'], ['provide'], ['volunteers'], ['with'], ['theassistance'], ['they'], ['need'], ['are'], ['critical'], ['to'], ['reaching'], ['project'], ['gutenbergtmsgoals'], ['and'], ['ensuring'], ['that'], ['the'], ['project'], ['gutenbergtm'], ['collection'], ['willremain'], ['freely'], ['available'], ['for'], ['generations'], ['to'], ['come'], ['in'], [''], ['the'], ['projectgutenberg'], ['literary'], ['archive'], ['foundation'], ['was'], ['created'], ['to'], ['provide'], ['a'], ['secureand'], ['permanent'], ['future'], ['for'], ['project'], ['gutenbergtm'], ['and'], ['futuregenerations'], ['to'], ['learn'], ['more'], ['about'], ['the'], ['project'], ['gutenberg'], ['literaryarchive'], ['foundation'], ['and'], ['how'], ['your'], ['efforts'], ['and'], ['donations'], ['can'], ['help'], ['seesections'], [''], ['and'], [''], ['and'], ['the'], ['foundation'], ['information'], ['page'], ['atwwwgutenbergorg'], ['section'], [''], ['information'], ['about'], ['the'], ['project'], ['gutenbergliterary'], ['archive'], ['foundationthe'], ['project'], ['gutenberg'], ['literary'], ['archive'], ['foundation'], ['is'], ['a'], ['non'], ['profitc'], ['educational'], ['corporation'], ['organized'], ['under'], ['the'], ['laws'], ['of'], ['thestate'], ['of'], ['mississippi'], ['and'], ['granted'], ['tax'], ['exempt'], ['status'], ['by'], ['the'], ['internalrevenue'], ['service'], ['the'], ['foundations'], ['ein'], ['or'], ['federal'], ['tax'], ['identificationnumber'], ['is'], [''], ['contributions'], ['to'], ['the'], ['project'], ['gutenberg'], ['literaryarchive'], ['foundation'], ['are'], ['tax'], ['deductible'], ['to'], ['the'], ['full'], ['extent'], ['permitted'], ['byus'], ['federal'], ['laws'], ['and'], ['your'], ['states'], ['lawsthe'], ['foundations'], ['principal'], ['office'], ['is'], ['in'], ['fairbanks'], ['alaska'], ['with'], ['themailing'], ['address'], ['po'], ['box'], [''], ['fairbanks'], ['ak'], [''], ['but'], ['itsvolunteers'], ['and'], ['employees'], ['are'], ['scattered'], ['throughout'], ['numerouslocations'], ['its'], ['business'], ['office'], ['is'], ['located'], ['at'], [''], ['north'], [''], ['west'], ['saltlake'], ['city'], ['ut'], [''], [''], [''], ['email'], ['contact'], ['links'], ['and'], ['up'], ['todate'], ['contact'], ['information'], ['can'], ['be'], ['found'], ['at'], ['the'], ['foundations'], ['web'], ['site'], ['andofficial'], ['page'], ['at'], ['wwwgutenbergorgcontactfor'], ['additional'], ['contact'], ['information'], [''], [''], [''], ['dr'], ['gregory'], ['b'], ['newby'], [''], [''], [''], ['chief'], ['executive'], ['and'], ['director'], [''], [''], [''], ['gbnewbypglaforgsection'], [''], ['information'], ['about'], ['donations'], ['to'], ['the'], ['project'], ['gutenbergliterary'], ['archive'], ['foundationproject'], ['gutenbergtm'], ['depends'], ['upon'], ['and'], ['cannot'], ['survive'], ['without'], ['widespread'], ['public'], ['support'], ['and'], ['donations'], ['to'], ['carry'], ['out'], ['its'], ['mission'], ['ofincreasing'], ['the'], ['number'], ['of'], ['public'], ['domain'], ['and'], ['licensed'], ['works'], ['that'], ['can'], ['befreely'], ['distributed'], ['in'], ['machine'], ['readable'], ['form'], ['accessible'], ['by'], ['the'], ['widestarray'], ['of'], ['equipment'], ['including'], ['outdated'], ['equipment'], ['many'], ['small'], ['donations'], ['to'], [''], ['are'], ['particularly'], ['important'], ['to'], ['maintaining'], ['tax'], ['exemptstatus'], ['with'], ['the'], ['irsthe'], ['foundation'], ['is'], ['committed'], ['to'], ['complying'], ['with'], ['the'], ['laws'], ['regulatingcharities'], ['and'], ['charitable'], ['donations'], ['in'], ['all'], [''], ['states'], ['of'], ['the'], ['unitedstates'], ['compliance'], ['requirements'], ['are'], ['not'], ['uniform'], ['and'], ['it'], ['takes'], ['aconsiderable'], ['effort'], ['much'], ['paperwork'], ['and'], ['many'], ['fees'], ['to'], ['meet'], ['and'], ['keep'], ['upwith'], ['these'], ['requirements'], ['we'], ['do'], ['not'], ['solicit'], ['donations'], ['in'], ['locationswhere'], ['we'], ['have'], ['not'], ['received'], ['written'], ['confirmation'], ['of'], ['compliance'], ['to'], ['senddonations'], ['or'], ['determine'], ['the'], ['status'], ['of'], ['compliance'], ['for'], ['any'], ['particularstate'], ['visit'], ['wwwgutenbergorgdonatewhile'], ['we'], ['cannot'], ['and'], ['do'], ['not'], ['solicit'], ['contributions'], ['from'], ['states'], ['where'], ['wehave'], ['not'], ['met'], ['the'], ['solicitation'], ['requirements'], ['we'], ['know'], ['of'], ['no'], ['prohibitionagainst'], ['accepting'], ['unsolicited'], ['donations'], ['from'], ['donors'], ['in'], ['such'], ['states'], ['whoapproach'], ['us'], ['with'], ['offers'], ['to'], ['donateinternational'], ['donations'], ['are'], ['gratefully'], ['accepted'], ['but'], ['we'], ['cannot'], ['makeany'], ['statements'], ['concerning'], ['tax'], ['treatment'], ['of'], ['donations'], ['received'], ['fromoutside'], ['the'], ['united'], ['states'], ['us'], ['laws'], ['alone'], ['swamp'], ['our'], ['small'], ['staffplease'], ['check'], ['the'], ['project'], ['gutenberg'], ['web'], ['pages'], ['for'], ['current'], ['donationmethods'], ['and'], ['addresses'], ['donations'], ['are'], ['accepted'], ['in'], ['a'], ['number'], ['of'], ['otherways'], ['including'], ['checks'], ['online'], ['payments'], ['and'], ['credit'], ['card'], ['donations'], ['todonate'], ['please'], ['visit'], ['wwwgutenbergorgdonatesection'], [''], ['general'], ['information'], ['about'], ['project'], ['gutenbergtm'], ['electronic'], ['worksprofessor'], ['michael'], ['s'], ['hart'], ['was'], ['the'], ['originator'], ['of'], ['the'], ['projectgutenbergtm'], ['concept'], ['of'], ['a'], ['library'], ['of'], ['electronic'], ['works'], ['that'], ['could'], ['befreely'], ['shared'], ['with'], ['anyone'], ['for'], ['forty'], ['years'], ['he'], ['produced'], ['anddistributed'], ['project'], ['gutenbergtm'], ['ebooks'], ['with'], ['only'], ['a'], ['loose'], ['network'], ['ofvolunteer'], ['supportproject'], ['gutenbergtm'], ['ebooks'], ['are'], ['often'], ['created'], ['from'], ['several'], ['printededitions'], ['all'], ['of'], ['which'], ['are'], ['confirmed'], ['as'], ['not'], ['protected'], ['by'], ['copyright'], ['inthe'], ['us'], ['unless'], ['a'], ['copyright'], ['notice'], ['is'], ['included'], ['thus'], ['we'], ['do'], ['notnecessarily'], ['keep'], ['ebooks'], ['in'], ['compliance'], ['with'], ['any'], ['particular'], ['papereditionmost'], ['people'], ['start'], ['at'], ['our'], ['web'], ['site'], ['which'], ['has'], ['the'], ['main'], ['pg'], ['searchfacility'], ['wwwgutenbergorgthis'], ['web'], ['site'], ['includes'], ['information'], ['about'], ['project'], ['gutenbergtmincluding'], ['how'], ['to'], ['make'], ['donations'], ['to'], ['the'], ['project'], ['gutenberg'], ['literaryarchive'], ['foundation'], ['how'], ['to'], ['help'], ['produce'], ['our'], ['new'], ['ebooks'], ['and'], ['how'], ['tosubscribe'], ['to'], ['our'], ['email'], ['newsletter'], ['to'], ['hear'], ['about'], ['new'], ['ebooks']]\n" + ] + } + ], "source": [ - "# your code here" + "# your code here\n", + "prophet_line = list(map(line_break,removed_ref))\n", + "print(prophet_line)" ] }, { @@ -195,9 +229,1020 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 41, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['dispense',\n", + " 'with',\n", + " 'confidenceif',\n", + " 'this',\n", + " 'is',\n", + " 'my',\n", + " 'day',\n", + " 'of',\n", + " 'harvest',\n", + " 'in',\n", + " 'whatfields',\n", + " 'have',\n", + " 'i',\n", + " 'sowed',\n", + " 'the',\n", + " 'seed',\n", + " 'and',\n", + " 'inwhat',\n", + " 'unremembered',\n", + " 'seasonsif',\n", + " 'this',\n", + " 'indeed',\n", + " 'be',\n", + " 'the',\n", + " 'hour',\n", + " 'in',\n", + " 'which',\n", + " 'ilift',\n", + " 'up',\n", + " 'my',\n", + " 'lantern',\n", + " 'it',\n", + " 'is',\n", + " 'not',\n", + " 'my',\n", + " 'flamethat',\n", + " 'shall',\n", + " 'burn',\n", + " 'thereinempty',\n", + " 'and',\n", + " 'dark',\n", + " 'shall',\n", + " 'i',\n", + " 'raise',\n", + " 'my',\n", + " 'lanternand',\n", + " 'the',\n", + " 'guardian',\n", + " 'of',\n", + " 'the',\n", + " 'night',\n", + " 'shall',\n", + " 'fillit',\n", + " 'with',\n", + " 'oil',\n", + " 'and',\n", + " 'he',\n", + " 'shall',\n", + " 'light',\n", + " 'it',\n", + " 'alsothese',\n", + " 'things',\n", + " 'he',\n", + " 'said',\n", + " 'in',\n", + " 'words',\n", + " 'but',\n", + " 'muchin',\n", + " 'his',\n", + " 'heart',\n", + " 'remained',\n", + " 'unsaid',\n", + " 'for',\n", + " 'hehimself',\n", + " 'could',\n", + " 'not',\n", + " 'speak',\n", + " 'his',\n", + " 'deepersecretillustration',\n", + " 'and',\n", + " 'when',\n", + " 'he',\n", + " 'entered',\n", + " 'into',\n", + " 'the',\n", + " 'city',\n", + " 'allthe',\n", + " 'people',\n", + " 'came',\n", + " 'to',\n", + " 'meet',\n", + " 'him',\n", + " 'and',\n", + " 'theywere',\n", + " 'crying',\n", + " 'out',\n", + " 'to',\n", + " 'him',\n", + " 'as',\n", + " 'with',\n", + " 'onevoiceand',\n", + " 'the',\n", + " 'elders',\n", + " 'of',\n", + " 'the',\n", + " 'city',\n", + " 'stood',\n", + " 'forthand',\n", + " 'saidgo',\n", + " 'not',\n", + " 'yet',\n", + " 'away',\n", + " 'from',\n", + " 'usa',\n", + " 'noontide',\n", + " 'have',\n", + " 'you',\n", + " 'been',\n", + " 'in',\n", + " 'ourtwilight',\n", + " 'and',\n", + " 'your',\n", + " 'youth',\n", + " 'has',\n", + " 'given',\n", + " 'usdreams',\n", + " 'to',\n", + " 'dreamno',\n", + " 'stranger',\n", + " 'are',\n", + " 'you',\n", + " 'among',\n", + " 'us',\n", + " 'nora',\n", + " 'guest',\n", + " 'but',\n", + " 'our',\n", + " 'son',\n", + " 'and',\n", + " 'our',\n", + " 'dearlybelovedsuffer',\n", + " 'not',\n", + " 'yet',\n", + " 'our',\n", + " 'eyes',\n", + " 'to',\n", + " 'hunger',\n", + " 'foryour',\n", + " 'faceand',\n", + " 'the',\n", + " 'priests',\n", + " 'and',\n", + " 'the',\n", + " 'priestesses',\n", + " 'saidunto',\n", + " 'himlet',\n", + " 'not',\n", + " 'the',\n", + " 'waves',\n", + " 'of',\n", + " 'the',\n", + " 'sea',\n", + " 'separate',\n", + " 'usnow',\n", + " 'and',\n", + " 'the',\n", + " 'years',\n", + " 'you',\n", + " 'have',\n", + " 'spent',\n", + " 'in',\n", + " 'ourmidst',\n", + " 'become',\n", + " 'a',\n", + " 'memoryyou',\n", + " 'have',\n", + " 'walked',\n", + " 'among',\n", + " 'us',\n", + " 'a',\n", + " 'spiritand',\n", + " 'your',\n", + " 'shadow',\n", + " 'has',\n", + " 'been',\n", + " 'a',\n", + " 'lightupon',\n", + " 'our',\n", + " 'facesmuch',\n", + " 'have',\n", + " 'we',\n", + " 'loved',\n", + " 'you',\n", + " 'but',\n", + " 'speechlesswas',\n", + " 'our',\n", + " 'love',\n", + " 'and',\n", + " 'with',\n", + " 'veils',\n", + " 'has',\n", + " 'it',\n", + " 'beenveiledyet',\n", + " 'now',\n", + " 'it',\n", + " 'cries',\n", + " 'aloud',\n", + " 'unto',\n", + " 'you',\n", + " 'andwould',\n", + " 'stand',\n", + " 'revealed',\n", + " 'before',\n", + " 'youand',\n", + " 'ever',\n", + " 'has',\n", + " 'it',\n", + " 'been',\n", + " 'that',\n", + " 'love',\n", + " 'knowsnot',\n", + " 'its',\n", + " 'own',\n", + " 'depth',\n", + " 'until',\n", + " 'the',\n", + " 'hour',\n", + " 'ofseparationand',\n", + " 'others',\n", + " 'came',\n", + " 'also',\n", + " 'and',\n", + " 'entreated',\n", + " 'himbut',\n", + " 'he',\n", + " 'answered',\n", + " 'them',\n", + " 'not',\n", + " 'he',\n", + " 'only',\n", + " 'benthis',\n", + " 'head',\n", + " 'and',\n", + " 'those',\n", + " 'who',\n", + " 'stood',\n", + " 'near',\n", + " 'sawhis',\n", + " 'tears',\n", + " 'falling',\n", + " 'upon',\n", + " 'his',\n", + " 'breastand',\n", + " 'he',\n", + " 'and',\n", + " 'the',\n", + " 'people',\n", + " 'proceeded',\n", + " 'towardsthe',\n", + " 'great',\n", + " 'square',\n", + " 'before',\n", + " 'the',\n", + " 'templeand',\n", + " 'there',\n", + " 'came',\n", + " 'out',\n", + " 'of',\n", + " 'the',\n", + " 'sanctuary',\n", + " 'awoman',\n", + " 'whose',\n", + " 'name',\n", + " 'was',\n", + " 'almitra',\n", + " 'and',\n", + " 'shewas',\n", + " 'a',\n", + " 'seeressand',\n", + " 'he',\n", + " 'looked',\n", + " 'upon',\n", + " 'her',\n", + " 'with',\n", + " 'exceedingtenderness',\n", + " 'for',\n", + " 'it',\n", + " 'was',\n", + " 'she',\n", + " 'who',\n", + " 'had',\n", + " 'firstsought',\n", + " 'and',\n", + " 'believed',\n", + " 'in',\n", + " 'him',\n", + " 'when',\n", + " 'he',\n", + " 'hadbeen',\n", + " 'but',\n", + " 'a',\n", + " 'day',\n", + " 'in',\n", + " 'their',\n", + " 'city',\n", + " 'andshe',\n", + " 'hailed',\n", + " 'him',\n", + " 'sayingprophet',\n", + " 'of',\n", + " 'god',\n", + " 'in',\n", + " 'quest',\n", + " 'of',\n", + " 'theuttermost',\n", + " 'long',\n", + " 'have',\n", + " 'you',\n", + " 'searched',\n", + " 'thedistances',\n", + " 'for',\n", + " 'your',\n", + " 'shipand',\n", + " 'now',\n", + " 'your',\n", + " 'ship',\n", + " 'has',\n", + " 'come',\n", + " 'and',\n", + " 'you',\n", + " 'mustneeds',\n", + " 'godeep',\n", + " 'is',\n", + " 'your',\n", + " 'longing',\n", + " 'for',\n", + " 'the',\n", + " 'land',\n", + " 'ofyour',\n", + " 'memories',\n", + " 'and',\n", + " 'the',\n", + " 'dwelling',\n", + " 'placeof',\n", + " 'your',\n", + " 'greater',\n", + " 'desires',\n", + " 'and',\n", + " 'our',\n", + " 'lovewould',\n", + " 'not',\n", + " 'bind',\n", + " 'you',\n", + " 'nor',\n", + " 'our',\n", + " 'needs',\n", + " 'holdyouyet',\n", + " 'this',\n", + " 'we',\n", + " 'ask',\n", + " 'ere',\n", + " 'you',\n", + " 'leave',\n", + " 'us',\n", + " 'thatyou',\n", + " 'speak',\n", + " 'to',\n", + " 'us',\n", + " 'and',\n", + " 'give',\n", + " 'us',\n", + " 'of',\n", + " 'yourtruthand',\n", + " 'we',\n", + " 'will',\n", + " 'give',\n", + " 'it',\n", + " 'unto',\n", + " 'our',\n", + " 'childrenand',\n", + " 'they',\n", + " 'unto',\n", + " 'their',\n", + " 'children',\n", + " 'and',\n", + " 'itshall',\n", + " 'not',\n", + " 'perishin',\n", + " 'your',\n", + " 'aloneness',\n", + " 'you',\n", + " 'have',\n", + " 'watched',\n", + " 'withour',\n", + " 'days',\n", + " 'and',\n", + " 'in',\n", + " 'your',\n", + " 'wakefulness',\n", + " 'youhave',\n", + " 'listened',\n", + " 'to',\n", + " 'the',\n", + " 'weeping',\n", + " 'and',\n", + " 'thelaughter',\n", + " 'of',\n", + " 'our',\n", + " 'sleepnow',\n", + " 'therefore',\n", + " 'disclose',\n", + " 'us',\n", + " 'to',\n", + " 'ourselvesand',\n", + " 'tell',\n", + " 'us',\n", + " 'all',\n", + " 'that',\n", + " 'has',\n", + " 'been',\n", + " 'shownyou',\n", + " 'of',\n", + " 'that',\n", + " 'which',\n", + " 'is',\n", + " 'between',\n", + " 'birth',\n", + " 'anddeathand',\n", + " 'he',\n", + " 'answeredpeople',\n", + " 'of',\n", + " 'orphalese',\n", + " 'of',\n", + " 'what',\n", + " 'can',\n", + " 'ispeak',\n", + " 'save',\n", + " 'of',\n", + " 'that',\n", + " 'which',\n", + " 'is',\n", + " 'even',\n", + " 'nowmoving',\n", + " 'within',\n", + " 'your',\n", + " 'souls',\n", + " 'then',\n", + " 'said',\n", + " 'almitra',\n", + " 'speak',\n", + " 'to',\n", + " 'us',\n", + " 'ofloveand',\n", + " 'he',\n", + " 'raised',\n", + " 'his',\n", + " 'head',\n", + " 'and',\n", + " 'looked',\n", + " 'uponthe',\n", + " 'people',\n", + " 'and',\n", + " 'there',\n", + " 'fell',\n", + " 'a',\n", + " 'stillnessupon',\n", + " 'them',\n", + " 'and',\n", + " 'with',\n", + " 'a',\n", + " 'great',\n", + " 'voice',\n", + " 'hesaidwhen',\n", + " 'love',\n", + " 'beckons',\n", + " 'to',\n", + " 'you',\n", + " 'follow',\n", + " 'himthough',\n", + " 'his',\n", + " 'ways',\n", + " 'are',\n", + " 'hard',\n", + " 'and',\n", + " 'steepand',\n", + " 'when',\n", + " 'his',\n", + " 'wings',\n", + " 'enfold',\n", + " 'you',\n", + " 'yield',\n", + " 'tohimthough',\n", + " 'the',\n", + " 'sword',\n", + " 'hidden',\n", + " 'among',\n", + " 'hispinions',\n", + " 'may',\n", + " 'wound',\n", + " 'youand',\n", + " 'when',\n", + " 'he',\n", + " 'speaks',\n", + " 'to',\n", + " 'you',\n", + " 'believe',\n", + " 'inhimthough',\n", + " 'his',\n", + " 'voice',\n", + " 'may',\n", + " 'shatter',\n", + " 'your',\n", + " 'dreamsas',\n", + " 'the',\n", + " 'north',\n", + " 'wind',\n", + " 'lays',\n", + " 'waste',\n", + " 'the',\n", + " 'gardenfor',\n", + " 'even',\n", + " 'as',\n", + " 'love',\n", + " 'crowns',\n", + " 'you',\n", + " 'so',\n", + " 'shallhe',\n", + " 'crucify',\n", + " 'you',\n", + " 'even',\n", + " 'as',\n", + " 'he',\n", + " 'is',\n", + " 'for',\n", + " 'yourgrowth',\n", + " 'so',\n", + " 'is',\n", + " 'he',\n", + " 'for',\n", + " 'your',\n", + " 'pruningeven',\n", + " 'as',\n", + " 'he',\n", + " 'ascends',\n", + " 'to',\n", + " 'your',\n", + " 'height',\n", + " 'andcaresses',\n", + " 'your',\n", + " 'tenderest',\n", + " 'branchesthat',\n", + " 'quiver',\n", + " 'in',\n", + " 'the',\n", + " 'sunso',\n", + " 'shall',\n", + " 'he',\n", + " 'descend',\n", + " 'to',\n", + " 'your',\n", + " 'roots',\n", + " 'andshake',\n", + " 'them',\n", + " 'in',\n", + " 'their',\n", + " 'clinging',\n", + " 'to',\n", + " 'theearthlike',\n", + " 'sheaves',\n", + " 'of',\n", + " 'corn',\n", + " 'he',\n", + " 'gathers',\n", + " 'you',\n", + " 'untohimselfhe',\n", + " 'threshes',\n", + " 'you',\n", + " 'to',\n", + " 'make',\n", + " 'you',\n", + " 'nakedhe',\n", + " 'sifts',\n", + " 'you',\n", + " 'to',\n", + " 'free',\n", + " 'you',\n", + " 'from',\n", + " 'yourhuskshe',\n", + " 'grinds',\n", + " 'you',\n", + " 'to',\n", + " 'whitenesshe',\n", + " 'kneads',\n", + " 'you',\n", + " 'until',\n", + " 'you',\n", + " 'are',\n", + " 'pliantand',\n", + " 'then',\n", + " 'he',\n", + " 'assigns',\n", + " 'you',\n", + " 'to',\n", + " 'his',\n", + " 'sacredfire',\n", + " 'that',\n", + " 'you',\n", + " 'may',\n", + " 'become',\n", + " 'sacred',\n", + " 'breadfor',\n", + " 'gods',\n", + " 'sacred',\n", + " 'feastall',\n", + " 'these',\n", + " 'things',\n", + " 'shall',\n", + " 'love',\n", + " 'do',\n", + " 'unto',\n", + " 'youthat',\n", + " 'you',\n", + " 'may',\n", + " 'know',\n", + " 'the',\n", + " 'secrets',\n", + " 'of',\n", + " 'yourheart',\n", + " 'and',\n", + " 'in',\n", + " 'that',\n", + " 'knowledge',\n", + " 'become',\n", + " 'afragment',\n", + " 'of',\n", + " 'lifes',\n", + " 'heartbut',\n", + " 'if',\n", + " 'in',\n", + " 'your',\n", + " 'fear',\n", + " 'you',\n", + " 'would',\n", + " 'seek',\n", + " 'onlyloves',\n", + " 'peace',\n", + " 'and',\n", + " 'loves',\n", + " 'pleasurethen',\n", + " 'it',\n", + " 'is',\n", + " 'better',\n", + " 'for',\n", + " 'you',\n", + " 'that',\n", + " 'youcover',\n", + " 'your',\n", + " 'nakedness',\n", + " 'and',\n", + " 'pass',\n", + " 'out',\n", + " 'ofloves',\n", + " 'threshingfloorinto',\n", + " 'the',\n", + " 'seasonless',\n", + " 'world',\n", + " 'where',\n", + " 'youshall',\n", + " 'laugh',\n", + " 'but',\n", + " 'not',\n", + " 'all',\n", + " 'of',\n", + " 'yourlaughter',\n", + " 'and',\n", + " 'weep',\n", + " 'but',\n", + " 'not',\n", + " 'all',\n", + " 'of',\n", + " 'yourtearslove',\n", + " 'gives',\n", + " 'naught',\n", + " 'but',\n", + " 'itself',\n", + " 'and',\n", + " 'takesnaught',\n", + " 'but',\n", + " 'from',\n", + " 'itselflove',\n", + " 'possesses',\n", + " 'not',\n", + " 'nor',\n", + " 'would',\n", + " 'it',\n", + " 'bepossessedfor',\n", + " 'love',\n", + " 'is',\n", + " 'sufficient',\n", + " 'unto',\n", + " 'lovewhen',\n", + " 'you',\n", + " 'love',\n", + " 'you',\n", + " 'should',\n", + " 'not',\n", + " 'say',\n", + " 'godis',\n", + " 'in',\n", + " 'my',\n", + " 'heart',\n", + " 'but',\n", + " 'rather',\n", + " 'i',\n", + " 'am',\n", + " 'inthe',\n", + " 'heart',\n", + " 'of',\n", + " 'godand',\n", + " 'think',\n", + " 'not',\n", + " 'you',\n", + " 'can',\n", + " 'direct',\n", + " 'the',\n", + " 'courseof',\n", + " 'love',\n", + " 'for',\n", + " 'love',\n", + " 'if',\n", + " 'it',\n", + " 'finds',\n", + " 'youworthy',\n", + " 'directs',\n", + " 'your',\n", + " 'courselove',\n", + " 'has',\n", + " 'no',\n", + " 'other',\n", + " 'desire',\n", + " 'but',\n", + " 'to',\n", + " 'fulfilitselfbut',\n", + " 'if',\n", + " 'you',\n", + " 'love',\n", + " 'and',\n", + " 'must',\n", + " 'needs',\n", + " 'havedesires',\n", + " 'let',\n", + " 'these',\n", + " 'be',\n", + " 'your',\n", + " 'desiresto',\n", + " 'melt',\n", + " 'and',\n", + " 'be',\n", + " 'like',\n", + " 'a',\n", + " 'running',\n", + " 'brook',\n", + " 'thatsings',\n", + " 'its',\n", + " 'melody',\n", + " 'to',\n", + " 'the',\n", + " 'night',\n", + " 'toknow',\n", + " 'the',\n", + " 'pain',\n", + " 'of',\n", + " 'too',\n", + " 'much',\n", + " 'tendernessto',\n", + " 'be',\n", + " 'wounded',\n", + " 'by',\n", + " 'your',\n", + " 'own',\n", + " 'understandingof',\n", + " 'loveand',\n", + " 'to',\n", + " 'bleed',\n", + " 'willingly',\n", + " 'and',\n", + " 'joyfullyto',\n", + " 'wake',\n", + " 'at',\n", + " 'dawn',\n", + " 'with',\n", + " 'a',\n", + " 'winged',\n", + " 'heart',\n", + " 'andgive',\n", + " 'thanks',\n", + " 'for',\n", + " 'another',\n", + " 'day',\n", + " 'of',\n", + " 'lovingto',\n", + " 'rest',\n", + " 'at',\n", + " 'the',\n", + " 'noon',\n", + " 'hour',\n", + " 'and',\n", + " 'meditateloves',\n", + " 'ecstacyto',\n", + " 'return',\n", + " 'home',\n", + " 'at',\n", + " 'eventide',\n", + " 'withgratitudeand',\n", + " 'then',\n", + " 'to',\n", + " 'sleep',\n", + " 'with',\n", + " 'a',\n", + " 'prayer',\n", + " 'forthe',\n", + " 'beloved',\n", + " 'in',\n", + " 'your',\n", + " 'heart',\n", + " 'and',\n", + " 'a',\n", + " 'song',\n", + " 'ofpraise',\n", + " 'upon',\n", + " 'your',\n", + " 'lipsillustration',\n", + " '',\n", + " 'then',\n", + " 'almitra',\n", + " 'spoke',\n", + " 'again',\n", + " 'and',\n", + " 'saidand',\n", + " 'what',\n", + " 'of',\n", + " 'marriage',\n", + " 'masterand',\n", + " 'he',\n", + " 'answered',\n", + " 'sayingyou',\n", + " 'were',\n", + " 'born',\n", + " 'together',\n", + " 'and',\n", + " 'together',\n", + " 'youshall',\n", + " 'be',\n", + " 'forevermoreyou',\n", + " 'shall',\n", + " 'be',\n", + " 'together',\n", + " 'when',\n", + " 'the',\n", + " 'whitewings',\n", + " 'of',\n", + " 'death',\n", + " 'scatter',\n", + " 'your',\n", + " 'daysaye',\n", + " 'you',\n", + " 'shall',\n", + " 'be',\n", + " 'together',\n", + " 'even',\n", + " 'in',\n", + " 'thesilent',\n", + " 'memory',\n", + " 'of',\n", + " 'godbut',\n", + " 'let',\n", + " 'there',\n", + " 'be',\n", + " 'spaces',\n", + " 'in',\n", + " 'yourtogethernessand',\n", + " 'let',\n", + " 'the',\n", + " 'winds',\n", + " 'of',\n", + " 'the',\n", + " 'heavens',\n", + " 'dancebetween',\n", + " 'youlove',\n", + " 'one',\n", + " 'another',\n", + " 'but',\n", + " 'make',\n", + " 'not',\n", + " 'a',\n", + " 'bond',\n", + " 'oflovelet',\n", + " 'it',\n", + " 'rather',\n", + " 'be',\n", + " 'a',\n", + " 'moving',\n", + " 'sea',\n", + " 'betweenthe',\n", + " 'shores',\n", + " 'of',\n", + " 'your',\n", + " 'soulsfill',\n", + " 'each',\n", + " 'others',\n", + " 'cup',\n", + " 'but',\n", + " 'drink',\n", + " 'not',\n", + " 'fromone',\n", + " 'cupgive',\n", + " 'one',\n", + " 'another',\n", + " 'of',\n", + " 'your',\n", + " 'bread',\n", + " 'but',\n", + " 'eatnot',\n", + " 'from',\n", + " 'the',\n", + " 'same',\n", + " 'loaf',\n", + " 'sing',\n", + " 'anddance',\n", + " 'together',\n", + " 'and',\n", + " 'be',\n", + " 'joyous',\n", + " 'but',\n", + " 'leteach',\n", + " 'one',\n", + " 'of',\n", + " 'you',\n", + " 'be',\n", + " 'aloneeven',\n", + " 'as',\n", + " 'the',\n", + " 'strings',\n", + " 'of',\n", + " 'a',\n", + " 'lute',\n", + " 'are',\n", + " 'alonethough',\n", + " 'they',\n", + " 'quiver',\n", + " 'with',\n", + " 'the',\n", + " 'same',\n", + " 'musicgive',\n", + " 'your',\n", + " 'hearts',\n", + " 'but',\n", + " 'not',\n", + " 'into',\n", + " 'eachothers',\n", + " 'keepingfor',\n", + " 'only',\n", + " 'the',\n", + " 'hand',\n", + " 'of',\n", + " 'life',\n", + " 'can',\n", + " 'containyour',\n", + " 'heartsand',\n", + " 'stand',\n", + " 'together',\n", + " 'yet',\n", + " 'not',\n", + " 'too',\n", + " 'neartogetherfor',\n", + " 'the',\n", + " 'pillars',\n", + " 'of',\n", + " 'the',\n", + " 'temple',\n", + " 'standapartand',\n", + " 'the',\n", + " 'oak',\n", + " 'tree',\n", + " 'and',\n", + " 'the',\n", + " 'cypress',\n", + " 'grownot',\n", + " 'in',\n", + " 'each',\n", + " 'others',\n", + " 'shadowillustration',\n", + " '',\n", + " 'and',\n", + " 'a',\n", + " 'woman',\n", + " 'who',\n", + " 'held',\n", + " 'a',\n", + " 'babeagainst',\n", + " ...]" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "prophet_flat = [i for sub in prophet_line for i in sub]\n", "prophet_flat" @@ -205,11 +1250,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 33, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['dispense', 'with', 'confidence?', 'If', 'this', 'is', 'my', 'day', 'of', 'harvest,', 'in', 'what', 'fields', 'have', 'I', 'sowed', 'the', 'seed,', 'and', 'in', 'what', 'unremembered', 'seasons?', 'If', 'this', 'indeed', 'be', 'the', 'hour', 'in', 'which', 'I', 'lift', 'up', 'my', 'lantern,', 'it', 'is', 'not', 'my', 'flame', 'that', 'shall', 'burn', 'therein.', 'Empty', 'and', 'dark', 'shall', 'I', 'raise', 'my', 'lantern,', 'And', 'the', 'guardian', 'of', 'the', 'night', 'shall', 'fill', 'it', 'with', 'oil', 'and', 'he', 'shall', 'light', 'it', 'also.', '*****', 'These', 'things', 'he', 'said', 'in', 'words.', 'But', 'much', 'in', 'his', 'heart', 'remained', 'unsaid.', 'For', '{12}he', 'himself', 'could', 'not', 'speak', 'his', 'deeper', 'secret.', '*****', '[Illustration:', '0020]', 'And', 'when', 'he', 'entered', 'into', 'the', 'city', 'all', 'the', 'people', 'came', 'to', 'meet', 'him,', 'and', 'they', 'were', 'crying', 'out', 'to', 'him', 'as', 'with', 'one', 'voice.', 'And', 'the', 'elders', 'of', 'the', 'city', 'stood', 'forth', 'and', 'said:', 'Go', 'not', 'yet', 'away', 'from', 'us.', 'A', 'noontide', 'have', 'you', 'been', 'in', 'our', 'twilight,', 'and', 'your', 'youth', 'has', 'given', 'us', 'dreams', 'to', 'dream.', 'No', 'stranger', 'are', 'you', 'among', 'us,', 'nor', 'a', 'guest,', 'but', 'our', 'son', 'and', 'our', 'dearly', 'beloved.', 'Suffer', 'not', 'yet', 'our', 'eyes', 'to', 'hunger', 'for', 'your', 'face.', '*****', 'And', 'the', 'priests', 'and', 'the', 'priestesses', 'said', 'unto', 'him:', 'Let', 'not', 'the', 'waves', 'of', 'the', 'sea', 'separate', 'us', 'now,', 'and', 'the', 'years', 'you', 'have', 'spent', 'in', 'our', 'midst', 'become', 'a', 'memory.', 'You', 'have', 'walked', 'among', 'us', 'a', 'spirit,', '{13}and', 'your', 'shadow', 'has', 'been', 'a', 'light', 'upon', 'our', 'faces.', 'Much', 'have', 'we', 'loved', 'you.', 'But', 'speechless', 'was', 'our', 'love,', 'and', 'with', 'veils', 'has', 'it', 'been', 'veiled.', 'Yet', 'now', 'it', 'cries', 'aloud', 'unto', 'you,', 'and', 'would', 'stand', 'revealed', 'before', 'you.', 'And', 'ever', 'has', 'it', 'been', 'that', 'love', 'knows', 'not', 'its', 'own', 'depth', 'until', 'the', 'hour', 'of', 'separation.', '*****', 'And', 'others', 'came', 'also', 'and', 'entreated', 'him.', 'But', 'he', 'answered', 'them', 'not.', 'He', 'only', 'bent', 'his', 'head;', 'and', 'those', 'who', 'stood', 'near', 'saw', 'his', 'tears', 'falling', 'upon', 'his', 'breast.', 'And', 'he', 'and', 'the', 'people', 'proceeded', 'towards', 'the', 'great', 'square', 'before', 'the', 'temple.', 'And', 'there', 'came', 'out', 'of', 'the', 'sanctuary', 'a', 'woman', 'whose', 'name', 'was', 'Almitra.', 'And', 'she', 'was', 'a', 'seeress.', 'And', 'he', 'looked', 'upon', 'her', 'with', 'exceeding', 'tenderness,', 'for', 'it', 'was', 'she', 'who', 'had', 'first', 'sought', 'and', 'believed', 'in', 'him', 'when', 'he', 'had', 'been', 'but', 'a', 'day', 'in', 'their', 'city.', '{14}And', 'she', 'hailed', 'him,', 'saying:', 'Prophet', 'of', 'God,', 'in', 'quest', 'of', 'the', 'uttermost,', 'long', 'have', 'you', 'searched', 'the', 'distances', 'for', 'your', 'ship.', 'And', 'now', 'your', 'ship', 'has', 'come,', 'and', 'you', 'must', 'needs', 'go.', 'Deep', 'is', 'your', 'longing', 'for', 'the', 'land', 'of', 'your', 'memories', 'and', 'the', 'dwelling', 'place', 'of', 'your', 'greater', 'desires;', 'and', 'our', 'love', 'would', 'not', 'bind', 'you', 'nor', 'our', 'needs', 'hold', 'you.', 'Yet', 'this', 'we', 'ask', 'ere', 'you', 'leave', 'us,', 'that', 'you', 'speak', 'to', 'us', 'and', 'give', 'us', 'of', 'your', 'truth.', 'And', 'we', 'will', 'give', 'it', 'unto', 'our', 'children,', 'and', 'they', 'unto', 'their', 'children,', 'and', 'it', 'shall', 'not', 'perish.', 'In', 'your', 'aloneness', 'you', 'have', 'watched', 'with', 'our', 'days,', 'and', 'in', 'your', 'wakefulness', 'you', 'have', 'listened', 'to', 'the', 'weeping', 'and', 'the', 'laughter', 'of', 'our', 'sleep.', 'Now', 'therefore', 'disclose', 'us', 'to', 'ourselves,', 'and', 'tell', 'us', 'all', 'that', 'has', 'been', 'shown', 'you', 'of', 'that', 'which', 'is', 'between', 'birth', 'and', 'death.', '*****', 'And', 'he', 'answered,', 'People', 'of', 'Orphalese,', 'of', 'what', 'can', 'I', '{15}speak', 'save', 'of', 'that', 'which', 'is', 'even', 'now', 'moving', 'within', 'your', 'souls?', '*****', '*****', 'Then', 'said', 'Almitra,', 'Speak', 'to', 'us', 'of', '_Love_.', 'And', 'he', 'raised', 'his', 'head', 'and', 'looked', 'upon', 'the', 'people,', 'and', 'there', 'fell', 'a', 'stillness', 'upon', 'them.', 'And', 'with', 'a', 'great', 'voice', 'he', 'said:', 'When', 'love', 'beckons', 'to', 'you,', 'follow', 'him,', 'Though', 'his', 'ways', 'are', 'hard', 'and', 'steep.', 'And', 'when', 'his', 'wings', 'enfold', 'you', 'yield', 'to', 'him,', 'Though', 'the', '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', 'the', 'north', 'wind', 'lays', 'waste', 'the', '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', 'and', '{16}caresses', 'your', 'tenderest', 'branches', 'that', 'quiver', 'in', 'the', 'sun,', 'So', 'shall', 'he', 'descend', 'to', 'your', 'roots', 'and', 'shake', 'them', 'in', 'their', 'clinging', 'to', 'the', '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', 'the', 'secrets', 'of', 'your', 'heart,', 'and', 'in', 'that', 'knowledge', 'become', 'a', 'fragment', 'of', 'Life’s', 'heart.', 'But', 'if', 'in', 'your', 'fear', 'you', 'would', 'seek', 'only', 'love’s', 'peace', 'and', 'love’s', 'pleasure,', 'Then', 'it', 'is', 'better', 'for', 'you', 'that', 'you', 'cover', '{17}your', 'nakedness', 'and', 'pass', 'out', 'of', 'love’s', 'threshing-floor,', 'Into', 'the', 'seasonless', 'world', 'where', 'you', 'shall', 'laugh,', 'but', 'not', 'all', 'of', 'your', 'laughter,', 'and', 'weep,', 'but', 'not', 'all', 'of', 'your', 'tears.', '*****', 'Love', 'gives', 'naught', 'but', 'itself', 'and', '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', 'the', 'heart', 'of', 'God.”', 'And', 'think', 'not', 'you', 'can', 'direct', 'the', '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', 'and', 'must', 'needs', 'have', 'desires,', 'let', 'these', 'be', 'your', 'desires:', 'To', 'melt', 'and', 'be', 'like', 'a', 'running', 'brook', 'that', 'sings', 'its', 'melody', 'to', 'the', 'night.', '{18}To', 'know', 'the', 'pain', 'of', 'too', 'much', 'tenderness.', 'To', 'be', 'wounded', 'by', 'your', 'own', 'understanding', 'of', 'love;', 'And', 'to', 'bleed', 'willingly', 'and', 'joyfully.', 'To', 'wake', 'at', 'dawn', 'with', 'a', 'winged', 'heart', 'and', 'give', 'thanks', 'for', 'another', 'day', 'of', 'loving;', 'To', 'rest', 'at', 'the', 'noon', 'hour', 'and', 'meditate', 'love’s', 'ecstacy;', 'To', 'return', 'home', 'at', 'eventide', 'with', 'gratitude;', 'And', 'then', 'to', 'sleep', 'with', 'a', 'prayer', 'for', 'the', 'beloved', 'in', 'your', 'heart', 'and', 'a', 'song', 'of', 'praise', 'upon', 'your', 'lips.', '[Illustration:', '0029]', '*****', '*****', '{19}Then', 'Almitra', 'spoke', 'again', 'and', 'said,', 'And', 'what', 'of', '_Marriage_', 'master?', 'And', 'he', 'answered', 'saying:', 'You', 'were', 'born', 'together,', 'and', 'together', 'you', 'shall', 'be', 'forevermore.', 'You', 'shall', 'be', 'together', 'when', 'the', 'white', 'wings', 'of', 'death', 'scatter', 'your', 'days.', 'Aye,', 'you', 'shall', 'be', 'together', 'even', 'in', 'the', 'silent', 'memory', 'of', 'God.', 'But', 'let', 'there', 'be', 'spaces', 'in', 'your', 'togetherness,', 'And', 'let', 'the', 'winds', 'of', 'the', 'heavens', 'dance', 'between', 'you.', '*****', 'Love', 'one', 'another,', 'but', 'make', 'not', 'a', 'bond', 'of', 'love:', 'Let', 'it', 'rather', 'be', 'a', 'moving', 'sea', 'between', 'the', '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', 'the', 'same', 'loaf.', '{20}Sing', 'and', 'dance', 'together', 'and', 'be', 'joyous,', 'but', 'let', 'each', 'one', 'of', 'you', 'be', 'alone,', 'Even', 'as', 'the', 'strings', 'of', 'a', 'lute', 'are', 'alone', 'though', 'they', 'quiver', 'with', 'the', 'same', 'music.', '*****', 'Give', 'your', 'hearts,', 'but', 'not', 'into', 'each', 'other’s', 'keeping.', 'For', 'only', 'the', 'hand', 'of', 'Life', 'can', 'contain', 'your', 'hearts.', 'And', 'stand', 'together', 'yet', 'not', 'too', 'near', 'together:', 'For', 'the', 'pillars', 'of', 'the', 'temple', 'stand', 'apart,', 'And', 'the', 'oak', 'tree', 'and', 'the', 'cypress', 'grow', 'not', 'in', 'each', 'other’s', 'shadow.', '[Illustration:', '0032]', '*****', '*****', '{21}And', 'a', 'woman', 'who', 'held', 'a', 'babe', 'against', 'her', 'bosom', 'said,', 'Speak', 'to', 'us', 'of', '_Children_.', 'And', 'he', 'said:', 'Your', 'children', 'are', 'not', 'your', 'children.', 'They', 'are', 'the', 'sons', 'and', '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', 'the', '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.', '{22}For', 'life', 'goes', 'not', 'backward', 'nor', 'tarries', 'with', 'yesterday.', 'You', 'are', 'the', 'bows', 'from', 'which', 'your', 'children', 'as', 'living', 'arrows', 'are', 'sent', 'forth.', 'The', 'archer', 'sees', 'the', 'mark', 'upon', 'the', 'path', 'of', 'the', 'infinite,', 'and', 'He', 'bends', 'you', 'with', 'His', 'might', 'that', 'His', 'arrows', 'may', 'go', 'swift', 'and', 'far.', 'Let', 'your', 'bending', 'in', 'the', 'Archer’s', 'hand', 'be', 'for', 'gladness;', 'For', 'even', 'as', 'he', 'loves', 'the', 'arrow', 'that', 'flies,', 'so', 'He', 'loves', 'also', 'the', 'bow', 'that', 'is', 'stable.', '*****', '*****', '{23}Then', 'said', 'a', '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', 'and', 'guard', 'for', 'fear', 'you', 'may', 'need', 'them', 'tomorrow?', 'And', 'tomorrow,', 'what', 'shall', 'tomorrow', 'bring', 'to', 'the', 'overprudent', 'dog', 'burying', 'bones', 'in', 'the', 'trackless', 'sand', 'as', 'he', 'follows', 'the', 'pilgrims', 'to', 'the', 'holy', 'city?', 'And', 'what', 'is', 'fear', 'of', 'need', 'but', 'need', 'itself?', 'Is', 'not', 'dread', 'of', 'thirst', 'when', 'your', 'well', 'is', 'full,', 'the', 'thirst', 'that', 'is', 'unquenchable?', 'There', 'are', 'those', 'who', 'give', 'little', 'of', 'the', '{24}much', 'which', 'they', 'have--and', 'they', 'give', 'it', 'for', 'recognition', 'and', 'their', 'hidden', 'desire', 'makes', 'their', 'gifts', 'unwholesome.', 'And', 'there', 'are', 'those', 'who', 'have', 'little', 'and', 'give', 'it', 'all.', 'These', 'are', 'the', 'believers', 'in', 'life', 'and', 'the', 'bounty', 'of', 'life,', 'and', 'their', 'coffer', 'is', 'never', 'empty.', 'There', 'are', 'those', 'who', 'give', 'with', 'joy,', 'and', 'that', 'joy', 'is', 'their', 'reward.', 'And', 'there', 'are', 'those', 'who', 'give', 'with', 'pain,', 'and', 'that', 'pain', 'is', 'their', 'baptism.', 'And', 'there', 'are', 'those', 'who', 'give', 'and', 'know', 'not', 'pain', 'in', 'giving,', 'nor', 'do', 'they', 'seek', 'joy,', 'nor', 'give', 'with', 'mindfulness', 'of', 'virtue;', 'They', 'give', 'as', 'in', 'yonder', 'valley', 'the', 'myrtle', 'breathes', 'its', 'fragrance', 'into', 'space.', 'Through', 'the', 'hands', 'of', 'such', 'as', 'these', 'God', 'speaks,', 'and', 'from', 'behind', 'their', 'eyes', 'He', 'smiles', 'upon', 'the', 'earth.', '[Illustration:', '0039]', 'It', 'is', 'well', 'to', 'give', 'when', 'asked,', 'but', 'it', 'is', 'better', 'to', 'give', 'unasked,', 'through', 'understanding;', 'And', 'to', 'the', 'open-handed', 'the', 'search', 'for', '{25}one', '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', 'the', 'season', 'of', 'giving', 'may', 'be', 'yours', 'and', 'not', 'your', 'inheritors’.', 'You', 'often', 'say,', '“I', 'would', 'give,', 'but', 'only', 'to', 'the', 'deserving.”', 'The', 'trees', 'in', 'your', 'orchard', 'say', 'not', 'so,', 'nor', 'the', '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', 'and', 'his', 'nights,', 'is', 'worthy', 'of', 'all', 'else', 'from', 'you.', 'And', 'he', 'who', 'has', 'deserved', 'to', 'drink', 'from', 'the', 'ocean', 'of', 'life', 'deserves', 'to', 'fill', 'his', 'cup', 'from', 'your', 'little', 'stream.', 'And', 'what', 'desert', 'greater', 'shall', 'there', 'be,', 'than', 'that', 'which', 'lies', 'in', 'the', 'courage', 'and', 'the', 'confidence,', 'nay', 'the', 'charity,', 'of', 'receiving?', 'And', 'who', 'are', 'you', 'that', 'men', 'should', 'rend', '{26}their', 'bosom', 'and', 'unveil', 'their', 'pride,', 'that', 'you', 'may', 'see', 'their', 'worth', 'naked', 'and', 'their', 'pride', 'unabashed?', 'See', 'first', 'that', 'you', 'yourself', 'deserve', 'to', 'be', 'a', 'giver,', 'and', 'an', 'instrument', 'of', 'giving.', 'For', 'in', 'truth', 'it', 'is', 'life', 'that', 'gives', 'unto', 'life--while', 'you,', 'who', 'deem', 'yourself', 'a', 'giver,', 'are', 'but', 'a', 'witness.', 'And', 'you', 'receivers--and', 'you', 'are', 'all', 'receivers--assume', 'no', 'weight', 'of', 'gratitude,', 'lest', 'you', 'lay', 'a', 'yoke', 'upon', 'yourself', 'and', 'upon', 'him', 'who', 'gives.', 'Rather', 'rise', 'together', 'with', 'the', 'giver', 'on', 'his', 'gifts', 'as', 'on', 'wings;', 'For', 'to', 'be', 'overmindful', 'of', 'your', 'debt,', 'is', 'ito', 'doubt', 'his', 'generosity', 'who', 'has', 'the', 'freehearted', 'earth', 'for', 'mother,', 'and', 'God', 'for', 'father.', '[Illustration:', '0042]', '*****', '*****', '{27}Then', 'an', 'old', 'man,', 'a', 'keeper', 'of', 'an', 'inn,', 'said,', 'Speak', 'to', 'us', 'of', '_Eating', 'and', 'Drinking_.', 'And', 'he', 'said:', 'Would', 'that', 'you', 'could', 'live', 'on', 'the', 'fragrance', 'of', 'the', 'earth,', 'and', 'like', 'an', 'air', 'plant', 'be', 'sustained', 'by', 'the', 'light.', 'But', 'since', 'you', 'must', 'kill', 'to', 'eat,', 'and', 'rob', 'the', 'newly', 'born', 'of', 'its', 'mother’s', 'milk', 'to', 'quench', 'your', 'thirst,', 'let', 'it', 'then', 'be', 'an', 'act', 'of', 'worship,', 'And', 'let', 'your', 'board', 'stand', 'an', 'altar', 'on', 'which', 'the', 'pure', 'and', 'the', 'innocent', 'of', 'forest', 'and', 'plain', 'are', 'sacrificed', 'for', 'that', 'which', 'is', 'purer', 'and', 'still', 'more', 'innocent', 'in', 'man.', '*****', 'When', 'you', 'kill', 'a', 'beast', 'say', 'to', 'him', 'in', 'your', 'heart,', '“By', 'the', 'same', 'power', 'that', 'slays', 'you,', 'I', 'too', 'am', 'slain;', 'and', 'I', 'too', 'shall', 'be', 'consumed.', '{28}For', 'the', 'law', 'that', 'delivered', 'you', 'into', 'my', 'hand', 'shall', 'deliver', 'me', 'into', 'a', 'mightier', 'hand.', 'Your', 'blood', 'and', 'my', 'blood', 'is', 'naught', 'but', 'the', 'sap', 'that', 'feeds', 'the', 'tree', 'of', 'heaven.”', '*****', 'And', 'when', 'you', 'crush', 'an', 'apple', 'with', 'your', 'teeth,', 'say', 'to', 'it', 'in', 'your', 'heart,', '“Your', 'seeds', 'shall', 'live', 'in', 'my', 'body,', 'And', 'the', 'buds', 'of', 'your', 'tomorrow', 'shall', 'blossom', 'in', 'my', 'heart,', 'And', 'your', 'fragrance', 'shall', 'be', 'my', 'breath,', 'And', 'together', 'we', 'shall', 'rejoice', 'through', 'all', 'the', 'seasons.”', '*****', 'And', 'in', 'the', 'autumn,', 'when', 'you', 'gather', 'the', 'grapes', 'of', 'your', 'vineyards', 'for', 'the', 'winepress,', 'say', 'in', 'your', 'heart,', '“I', 'too', 'am', 'a', 'vineyard,', 'and', 'my', 'fruit', 'shall', 'be', 'gathered', 'for', 'the', 'winepress,', 'And', 'like', 'new', 'wine', 'I', 'shall', 'be', 'kept', 'in', 'eternal', 'vessels.”', 'And', 'in', 'winter,', 'when', 'you', 'draw', 'the', 'wine,', '{29}let', 'there', 'be', 'in', 'your', 'heart', 'a', 'song', 'for', 'each', 'cup;', 'And', 'let', 'there', 'be', 'in', 'the', 'song', 'a', 'remembrance', 'for', 'the', 'autumn', 'days,', 'and', 'for', 'the', 'vineyard,', 'and', 'for', 'the', 'winepress.', '*****', '*****', '{30}', 'Then', 'a', 'ploughman', 'said,', 'Speak', 'to', 'us', 'of', '_Work_.', 'And', 'he', 'answered,', 'saying:', 'You', 'work', 'that', 'you', 'may', 'keep', 'pace', 'with', 'the', 'earth', 'and', 'the', 'soul', 'of', 'the', 'earth.', 'For', 'to', 'be', 'idle', 'is', 'to', 'become', 'a', 'stranger', 'unto', 'the', 'seasons,', 'and', 'to', 'step', 'out', 'of', 'life’s', 'procession,', 'that', 'marches', 'in', 'majesty', 'and', 'proud', 'submission', 'towards', 'the', 'infinite.', 'When', 'you', 'work', 'you', 'are', 'a', 'flute', 'through', 'whose', 'heart', 'the', 'whispering', 'of', 'the', 'hours', 'turns', 'to', 'music.', 'Which', 'of', 'you', 'would', 'be', 'a', 'reed,', 'dumb', 'and', 'silent,', 'when', 'all', 'else', 'sings', 'together', 'in', 'unison?', 'Always', 'you', 'have', 'been', 'told', 'that', 'work', 'is', 'a', 'curse', 'and', 'labour', 'a', 'misfortune.', 'But', 'I', 'say', 'to', 'you', 'that', 'when', 'you', 'work', 'you', 'fulfil', 'a', 'part', 'of', 'earth’s', 'furthest', 'dream,', '{31}assigned', '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', 'an', 'affliction', 'and', 'the', 'support', 'of', 'the', 'flesh', 'a', 'curse', 'written', 'upon', 'your', 'brow,', 'then', 'I', 'answer', 'that', 'naught', 'but', 'the', 'sweat', 'of', 'your', 'brow', 'shall', 'wash', 'away', 'that', 'which', 'is', 'written.', 'You', 'have', 'been', 'told', 'also', 'that', 'life', 'is', 'darkness,', 'and', 'in', 'your', 'weariness', 'you', 'echo', 'what', 'was', 'said', 'by', 'the', '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', '{32}yourself', 'to', 'yourself,', 'and', 'to', 'one', 'another,', 'and', 'to', 'God.', '*****', 'And', 'what', 'is', 'it', 'to', 'work', 'with', 'love?', 'It', 'is', 'to', 'weave', 'the', 'cloth', 'with', 'threads', 'drawn', 'from', 'your', 'heart,', 'even', 'as', 'if', 'your', 'beloved', 'were', 'to', 'wear', 'that', 'cloth.', 'It', 'is', 'to', 'build', 'a', 'house', 'with', 'affection,', 'even', 'as', 'if', 'your', 'beloved', 'were', 'to', 'dwell', 'in', 'that', 'house.', 'It', 'is', 'to', 'sow', 'seeds', 'with', 'tenderness', 'and', 'reap', 'the', 'harvest', 'with', 'joy,', 'even', 'as', 'if', 'your', 'beloved', 'were', 'to', 'eat', 'the', 'fruit.', 'It', 'is', 'to', 'charge', 'all', 'things', 'you', 'fashion', 'with', 'a', 'breath', 'of', 'your', 'own', 'spirit,', 'And', 'to', 'know', 'that', 'all', 'the', 'blessed', 'dead', 'are', 'standing', 'about', 'you', 'and', 'watching.', 'Often', 'have', 'I', 'heard', 'you', 'say,', 'as', 'if', 'speaking', 'in', 'sleep,', '“He', 'who', 'works', 'in', 'marble,', 'and', 'finds', 'the', 'shape', 'of', 'his', 'own', 'soul', 'in', 'the', 'stone,', 'is', 'nobler', 'than', 'he', 'who', 'ploughs', 'the', 'soil.', '{33}And', 'he', 'who', 'seizes', 'the', 'rainbow', 'to', 'lay', 'it', 'on', 'a', 'cloth', 'in', 'the', 'likeness', 'of', 'man,', 'is', 'more', 'than', 'he', 'who', 'makes', 'the', 'sandals', 'for', 'our', 'feet.”', 'But', 'I', 'say,', 'not', 'in', 'sleep', 'but', 'in', 'the', 'overwakefulness', 'of', 'noontide,', 'that', 'the', 'wind', 'speaks', 'not', 'more', 'sweetly', 'to', 'the', 'giant', 'oaks', 'than', 'to', 'the', 'least', 'of', 'all', 'the', 'blades', 'of', 'grass;', 'And', 'he', 'alone', 'is', 'great', 'who', 'turns', 'the', 'voice', 'of', 'the', 'wind', 'into', 'a', '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', 'and', 'sit', 'at', 'the', 'gate', 'of', 'the', 'temple', 'and', 'take', 'alms', 'of', 'those', 'who', 'work', 'with', 'joy.', 'For', 'if', 'you', 'bake', 'bread', 'with', 'indifference,', 'you', 'bake', 'a', 'bitter', 'bread', 'that', 'feeds', 'but', 'half', 'man’s', 'hunger.', 'And', 'if', 'you', 'grudge', 'the', 'crushing', 'of', 'the', 'grapes,', 'your', 'grudge', 'distils', 'a', 'poison', 'in', 'the', 'wine.', '{34}And', 'if', 'you', 'sing', 'though', 'as', 'angels,', 'and', 'love', 'not', 'the', 'singing,', 'you', 'muffle', 'man’s', 'ears', 'to', 'the', 'voices', 'of', 'the', 'day', 'and', 'the', 'voices', 'of', 'the', 'night.', '*****', '*****', '{35}Then', 'a', 'woman', 'said,', 'Speak', 'to', 'us', 'of', '_Joy', 'and', 'Sorrow_.', 'And', 'he', 'answered:', 'Your', 'joy', 'is', 'your', 'sorrow', 'unmasked.', 'And', 'the', '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,', 'the', 'more', 'joy', 'you', 'can', 'contain.', 'Is', 'not', 'the', 'cup', 'that', 'holds', 'your', 'wine', 'the', 'very', 'cup', 'that', 'was', 'burned', 'in', 'the', 'potter’s', 'oven?', 'And', 'is', 'not', 'the', 'lute', 'that', 'soothes', 'your', 'spirit,', 'the', 'very', 'wood', 'that', 'was', 'hollowed', 'with', 'knives?', 'When', 'you', 'are', 'joyous,', 'look', 'deep', 'into', 'your', 'heart', 'and', 'you', 'shall', 'find', 'it', 'is', 'only', 'that', 'which', 'has', 'given', 'you', 'sorrow', 'that', 'is', 'giving', 'you', 'joy.', 'When', 'you', 'are', 'sorrowful', 'look', 'again', 'in', '{36}your', 'heart,', 'and', '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,”', 'and', 'others', 'say,', '“Nay,', 'sorrow', 'is', 'the', 'greater.”', 'But', 'I', 'say', 'unto', 'you,', 'they', 'are', 'inseparable.', 'Together', 'they', 'come,', 'and', 'when', 'one', 'sits', 'alone', 'with', 'you', 'at', 'your', 'board,', 'remember', 'that', 'the', 'other', 'is', 'asleep', 'upon', 'your', 'bed.', 'Verily', 'you', 'are', 'suspended', 'like', 'scales', 'between', 'your', 'sorrow', 'and', 'your', 'joy.', 'Only', 'when', 'you', 'are', 'empty', 'are', 'you', 'at', 'standstill', 'and', 'balanced.', 'When', 'the', 'treasure-keeper', 'lifts', 'you', 'to', 'weigh', 'his', 'gold', 'and', 'his', 'silver,', 'needs', 'must', 'your', 'joy', 'or', 'your', 'sorrow', 'rise', 'or', 'fall.', '*****', '*****', '{37}Then', 'a', 'mason', 'came', 'forth', 'and', 'said,', 'Speak', 'to', 'us', 'of', '_Houses_.', 'And', 'he', 'answered', 'and', 'said:', 'Build', 'of', 'your', 'imaginings', 'a', 'bower', 'in', 'the', 'wilderness', 'ere', 'you', 'build', 'a', 'house', 'within', 'the', 'city', 'walls.', 'For', 'even', 'as', 'you', 'have', 'home-comings', 'in', 'your', 'twilight,', 'so', 'has', 'the', 'wanderer', 'in', 'you,', 'the', 'ever', 'distant', 'and', 'alone.', 'Your', 'house', 'is', 'your', 'larger', 'body.', 'It', 'grows', 'in', 'the', 'sun', 'and', 'sleeps', 'in', 'the', 'stillness', 'of', 'the', 'night;', 'and', 'it', 'is', 'not', 'dreamless.', 'Does', 'not', 'your', 'house', 'dream?', 'and', 'dreaming,', 'leave', 'the', 'city', 'for', 'grove', 'or', 'hilltop?', 'Would', 'that', 'I', 'could', 'gather', 'your', 'houses', 'into', 'my', 'hand,', 'and', 'like', 'a', 'sower', 'scatter', 'them', 'in', 'forest', 'and', 'meadow.', 'Would', 'the', 'valleys', 'were', 'your', 'streets,', 'and', 'the', 'green', 'paths', 'your', 'alleys,', 'that', 'you', '{38}might', 'seek', 'one', 'another', 'through', 'vineyards,', 'and', 'come', 'with', 'the', 'fragrance', 'of', 'the', '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', 'a', '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,', 'the', 'quiet', 'urge', 'that', 'reveals', 'your', 'power?', 'Have', 'you', 'remembrances,', 'the', 'glimmering', 'arches', 'that', 'span', 'the', 'summits', 'of', 'the', 'mind?', 'Have', 'you', 'beauty,', 'that', 'leads', 'the', 'heart', 'from', 'things', 'fashioned', 'of', 'wood', 'and', 'stone', 'to', 'the', 'holy', 'mountain?', 'Tell', 'me,', 'have', 'you', 'these', 'in', 'your', 'houses?', 'Or', 'have', 'you', 'only', 'comfort,', 'and', 'the', 'lust', 'for', 'comfort,', 'that', 'stealthy', 'thing', 'that', '{39}enters', 'the', 'house', 'a', 'guest,', 'and', 'then', 'becomes', 'a', 'host,', 'and', 'then', 'a', 'master?', '*****', 'Ay,', 'and', 'it', 'becomes', 'a', 'tamer,', 'and', 'with', 'hook', 'and', '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', 'and', 'jeer', 'at', 'the', 'dignity', 'of', 'the', 'flesh.', 'It', 'makes', 'mock', 'of', 'your', 'sound', 'senses,', 'and', 'lays', 'them', 'in', 'thistledown', 'like', 'fragile', 'vessels.', 'Verily', 'the', 'lust', 'for', 'comfort', 'murders', 'the', 'passion', 'of', 'the', 'soul,', 'and', 'then', 'walks', 'grinning', 'in', 'the', 'funeral.', 'But', 'you,', 'children', 'of', 'space,', 'you', 'restless', 'in', 'rest,', 'you', 'shall', 'not', 'be', 'trapped', 'nor', 'tamed.', 'Your', 'house', 'shall', 'be', 'not', 'an', 'anchor', 'but', 'a', 'mast.', 'It', 'shall', 'not', 'be', 'a', 'glistening', 'film', 'that', '{40}covers', 'a', 'wound,', 'but', 'an', 'eyelid', 'that', 'guards', 'the', 'eye.', 'You', 'shall', 'not', 'fold', 'your', 'wings', 'that', 'you', 'may', 'pass', 'through', 'doors,', 'nor', 'bend', 'your', 'heads', 'that', 'they', 'strike', 'not', 'against', 'a', 'ceiling,', 'nor', 'fear', 'to', 'breathe', 'lest', 'walls', 'should', 'crack', 'and', 'fall', 'down.', 'You', 'shall', 'not', 'dwell', 'in', 'tombs', 'made', 'by', 'the', 'dead', 'for', 'the', 'living.', 'And', 'though', 'of', 'magnificence', 'and', 'splendour,', 'your', 'house', 'shall', 'not', 'hold', 'your', 'secret', 'nor', 'shelter', 'your', 'longing.', 'For', 'that', 'which', 'is', 'boundless', 'in', 'you', 'abides', 'in', 'the', 'mansion', 'of', 'the', 'sky,', 'whose', 'door', 'is', 'the', 'morning', 'mist,', 'and', 'whose', 'windows', 'are', 'the', 'songs', 'and', 'the', 'silences', 'of', 'night.', '*****', '*****', '{41}And', 'the', 'weaver', 'said,', 'Speak', 'to', 'us', 'of', '_Clothes_.', 'And', 'he', 'answered:', 'Your', 'clothes', 'conceal', 'much', 'of', 'your', 'beauty,', 'yet', 'they', 'hide', 'not', 'the', 'unbeautiful.', 'And', 'though', 'you', 'seek', 'in', 'garments', 'the', 'freedom', 'of', 'privacy', 'you', 'may', 'find', 'in', 'them', 'a', 'harness', 'and', 'a', 'chain.', 'Would', 'that', 'you', 'could', 'meet', 'the', 'sun', 'and', 'the', 'wind', 'with', 'more', 'of', 'your', 'skin', 'and', 'less', 'of', 'your', 'raiment,', 'For', 'the', 'breath', 'of', 'life', 'is', 'in', 'the', 'sunlight', 'and', 'the', 'hand', 'of', 'life', 'is', 'in', 'the', 'wind.', 'Some', 'of', 'you', 'say,', '“It', 'is', 'the', 'north', 'wind', 'who', 'has', 'woven', 'the', 'clothes', 'we', 'wear.”', 'And', 'I', 'say,', 'Ay,', 'it', 'was', 'the', 'north', 'wind,', 'But', 'shame', 'was', 'his', 'loom,', 'and', 'the', 'softening', 'of', 'the', 'sinews', 'was', 'his', 'thread.', 'And', 'when', 'his', 'work', 'was', 'done', 'he', 'laughed', 'in', 'the', 'forest.', '{42}Forget', 'not', 'that', 'modesty', 'is', 'for', 'a', 'shield', 'against', 'the', 'eye', 'of', 'the', 'unclean.', 'And', 'when', 'the', 'unclean', 'shall', 'be', 'no', 'more,', 'what', 'were', 'modesty', 'but', 'a', 'fetter', 'and', 'a', 'fouling', 'of', 'the', 'mind?', 'And', 'forget', 'not', 'that', 'the', 'earth', 'delights', 'to', 'feel', 'your', 'bare', 'feet', 'and', 'the', 'winds', 'long', 'to', 'play', 'with', 'your', 'hair.', '*****', '*****', '{43}And', 'a', 'merchant', 'said,', 'Speak', 'to', 'us', 'of', '_Buying', 'and', 'Selling_.', 'And', 'he', 'answered', 'and', 'said:', 'To', 'you', 'the', 'earth', 'yields', 'her', 'fruit,', 'and', 'you', 'shall', 'not', 'want', 'if', 'you', 'but', 'know', 'how', 'to', 'fill', 'your', 'hands.', 'It', 'is', 'in', 'exchanging', 'the', 'gifts', 'of', 'the', 'earth', 'that', 'you', 'shall', 'find', 'abundance', 'and', 'be', 'satisfied.', 'Yet', 'unless', 'the', 'exchange', 'be', 'in', 'love', 'and', 'kindly', 'justice,', 'it', 'will', 'but', 'lead', 'some', 'to', 'greed', 'and', 'others', 'to', 'hunger.', 'When', 'in', 'the', 'market', 'place', 'you', 'toilers', 'of', 'the', 'sea', 'and', 'fields', 'and', 'vineyards', 'meet', 'the', 'weavers', 'and', 'the', 'potters', 'and', 'the', 'gatherers', 'of', 'spices,--', 'Invoke', 'then', 'the', 'master', 'spirit', 'of', 'the', 'earth,', 'to', 'come', 'into', 'your', 'midst', 'and', 'sanctify', 'the', 'scales', 'and', 'the', 'reckoning', 'that', 'weighs', 'value', 'against', 'value.', '{44}And', 'suffer', 'not', 'the', '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', 'the', 'field,', 'or', 'go', 'with', 'our', 'brothers', 'to', 'the', 'sea', 'and', 'cast', 'your', 'net;', 'For', 'the', 'land', 'and', 'the', 'sea', 'shall', 'be', 'bountiful', 'to', 'you', 'even', 'as', 'to', 'us.”', '*****', 'And', 'if', 'there', 'come', 'the', 'singers', 'and', 'the', 'dancers', 'and', 'the', 'flute', 'players,--buy', 'of', 'their', 'gifts', 'also.', 'For', 'they', 'too', 'are', 'gatherers', 'of', 'fruit', 'and', 'frankincense,', 'and', 'that', 'which', 'they', 'bring,', 'though', 'fashioned', 'of', 'dreams,', 'is', 'raiment', 'and', 'food', 'for', 'your', 'soul.', 'And', 'before', 'you', 'leave', 'the', 'market', 'place,', 'see', 'that', 'no', 'one', 'has', 'gone', 'his', 'way', 'with', 'empty', 'hands.', 'For', 'the', 'master', 'spirit', 'of', 'the', 'earth', 'shall', 'not', 'sleep', 'peacefully', 'upon', 'the', 'wind', 'till', 'the', 'needs', 'of', 'the', 'least', 'of', 'you', 'are', 'satisfied.', '*****', '*****', '{45}Then', 'one', 'of', 'the', 'judges', 'of', 'the', 'city', 'stood', 'forth', 'and', 'said,', 'Speak', 'to', 'us', 'of', '_Crime', 'and', 'Punishment_.', 'And', 'he', 'answered,', 'saying:', 'It', 'is', 'when', 'your', 'spirit', 'goes', 'wandering', 'upon', 'the', 'wind,', 'That', 'you,', 'alone', 'and', 'unguarded,', 'commit', 'a', 'wrong', 'unto', 'others', 'and', 'therefore', 'unto', 'yourself.', 'And', 'for', 'that', 'wrong', 'committed', 'must', 'you', 'knock', 'and', 'wait', 'a', 'while', 'unheeded', 'at', 'the', 'gate', 'of', 'the', 'blessed.', 'Like', 'the', 'ocean', 'is', 'your', 'god-self;', 'It', 'remains', 'for', 'ever', 'undefiled.', 'And', 'like', 'the', 'ether', 'it', 'lifts', 'but', 'the', 'winged.', 'Even', 'like', 'the', 'sun', 'is', 'your', 'god-self;', 'It', 'knows', 'not', 'the', 'ways', 'of', 'the', 'mole', 'nor', 'seeks', 'it', 'the', 'holes', 'of', 'the', 'serpent.', '{46}But', 'your', 'god-self', 'dwells', 'not', 'alone', 'in', 'your', 'being.', 'Much', 'in', 'you', 'is', 'still', 'man,', 'and', 'much', 'in', 'you', 'is', 'not', 'yet', 'man,', 'But', 'a', 'shapeless', 'pigmy', 'that', 'walks', 'asleep', 'in', 'the', 'mist', 'searching', 'for', 'its', 'own', 'awakening.', 'And', 'of', 'the', 'man', 'in', 'you', 'would', 'I', 'now', 'speak.', 'For', 'it', 'is', 'he', 'and', 'not', 'your', 'god-self', 'nor', 'the', 'pigmy', 'in', 'the', 'mist,', 'that', 'knows', 'crime', 'and', 'the', 'punishment', 'of', 'crime.', '*****', 'Oftentimes', 'have', 'I', 'heard', 'you', 'speak', 'of', 'one', 'who', 'commits', 'a', 'wrong', 'as', 'though', 'he', 'were', 'not', 'one', 'of', 'you,', 'but', 'a', 'stranger', 'unto', 'you', 'and', 'an', 'intruder', 'upon', 'your', 'world.', 'But', 'I', 'say', 'that', 'even', 'as', 'the', 'holy', 'and', 'the', 'righteous', 'cannot', 'rise', 'beyond', 'the', 'highest', 'which', 'is', 'in', 'each', 'one', 'of', 'you,', 'So', 'the', 'wicked', 'and', 'the', 'weak', 'cannot', 'fall', 'lower', 'than', 'the', 'lowest', 'which', 'is', 'in', 'you', 'also.', 'And', 'as', 'a', 'single', 'leaf', 'turns', 'not', 'yellow', 'but', 'with', 'the', 'silent', 'knowledge', 'of', 'the', 'whole', 'tree,', '{47}So', 'the', 'wrong-doer', 'cannot', 'do', 'wrong', 'without', 'the', 'hidden', 'will', 'of', 'you', 'all.', 'Like', 'a', 'procession', 'you', 'walk', 'together', 'towards', 'your', 'god-self.', '[Illustration:', '0064]', 'You', 'are', 'the', 'way', 'and', 'the', 'wayfarers.', 'And', 'when', 'one', 'of', 'you', 'falls', 'down', 'he', 'falls', 'for', 'those', 'behind', 'him,', 'a', 'caution', 'against', 'the', 'stumbling', 'stone.', 'Ay,', 'and', 'he', 'falls', 'for', 'those', 'ahead', 'of', 'him,', 'who', 'though', 'faster', 'and', 'surer', 'of', 'foot,', 'yet', 'removed', 'not', 'the', 'stumbling', 'stone.', 'And', 'this', 'also,', 'though', 'the', 'word', 'lie', 'heavy', 'upon', 'your', 'hearts:', 'The', 'murdered', 'is', 'not', 'unaccountable', 'for', 'his', 'own', 'murder,', 'And', 'the', 'robbed', 'is', 'not', 'blameless', 'in', 'being', 'robbed.', 'The', 'righteous', 'is', 'not', 'innocent', 'of', 'the', 'deeds', 'of', 'the', 'wicked,', 'And', 'the', 'white-handed', 'is', 'not', 'clean', 'in', 'the', 'doings', 'of', 'the', 'felon.', 'Yea,', 'the', 'guilty', 'is', 'oftentimes', 'the', 'victim', 'of', 'the', 'injured,', 'And', 'still', 'more', 'often', 'the', 'condemned', 'is', '{48}the', 'burden', 'bearer', 'for', 'the', 'guiltless', 'and', 'unblamed.', 'You', 'cannot', 'separate', 'the', 'just', 'from', 'the', 'unjust', 'and', 'the', 'good', 'from', 'the', 'wicked;', 'For', 'they', 'stand', 'together', 'before', 'the', 'face', 'of', 'the', 'sun', 'even', 'as', 'the', 'black', 'thread', 'and', 'the', 'white', 'are', 'woven', 'together.', 'And', 'when', 'the', 'black', 'thread', 'breaks,', 'the', 'weaver', 'shall', 'look', 'into', 'the', 'whole', 'cloth,', 'and', 'he', 'shall', 'examine', 'the', 'loom', 'also.', '*****', 'If', 'any', 'of', 'you', 'would', 'bring', 'to', 'judgment', 'the', 'unfaithful', 'wife,', 'Let', 'him', 'also', 'weigh', 'the', 'heart', 'of', 'her', 'husband', 'in', 'scales,', 'and', 'measure', 'his', 'soul', 'with', 'measurements.', 'And', 'let', 'him', 'who', 'would', 'lash', 'the', 'offender', 'look', 'unto', 'the', 'spirit', 'of', 'the', 'offended.', 'And', 'if', 'any', 'of', 'you', 'would', 'punish', 'in', 'the', 'name', 'of', 'righteousness', 'and', 'lay', 'the', 'ax', 'unto', 'the', 'evil', 'tree,', 'let', 'him', 'see', 'to', 'its', 'roots;', 'And', 'verily', 'he', 'will', 'find', 'the', 'roots', 'of', 'the', 'good', 'and', 'the', 'bad,', 'the', 'fruitful', 'and', 'the', '{49}fruitless,', 'all', 'entwined', 'together', 'in', 'the', 'silent', 'heart', 'of', 'the', 'earth.', 'And', 'you', 'judges', 'who', 'would', 'be', 'just,', 'What', 'judgment', 'pronounce', 'you', 'upon', 'him', 'who', 'though', 'honest', 'in', 'the', 'flesh', 'yet', 'is', 'a', 'thief', 'in', 'spirit?', 'What', 'penalty', 'lay', 'you', 'upon', 'him', 'who', 'slays', 'in', 'the', 'flesh', 'yet', 'is', 'himself', 'slain', 'in', 'the', 'spirit?', 'And', 'how', 'prosecute', 'you', 'him', 'who', 'in', 'action', 'is', 'a', 'deceiver', 'and', 'an', 'oppressor,', 'Yet', 'who', 'also', 'is', 'aggrieved', 'and', 'outraged?', '*****', 'And', 'how', 'shall', 'you', 'punish', 'those', 'whose', 'remorse', 'is', 'already', 'greater', 'than', 'their', 'misdeeds?', 'Is', 'not', 'remorse', 'the', 'justice', 'which', 'is', 'administered', 'by', 'that', 'very', 'law', 'which', 'you', 'would', 'fain', 'serve?', 'Yet', 'you', 'cannot', 'lay', 'remorse', 'upon', 'the', 'innocent', 'nor', 'lift', 'it', 'from', 'the', 'heart', 'of', 'the', 'guilty.', 'Unbidden', 'shall', 'it', 'call', 'in', 'the', 'night,', 'that', 'men', 'may', 'wake', 'and', 'gaze', 'upon', 'themselves.', '{50}And', 'you', 'who', 'would', 'understand', 'justice,', 'how', 'shall', 'you', 'unless', 'you', 'look', 'upon', 'all', 'deeds', 'in', 'the', 'fullness', 'of', 'light?', 'Only', 'then', 'shall', 'you', 'know', 'that', 'the', 'erect', 'and', 'the', 'fallen', 'are', 'but', 'one', 'man', 'standing', 'in', 'twilight', 'between', 'the', 'night', 'of', 'his', 'pigmy-self', 'and', 'the', 'day', 'of', 'his', 'god-self,', 'And', 'that', 'the', 'corner-stone', 'of', 'the', 'temple', 'is', 'not', 'higher', 'than', 'the', 'lowest', 'stone', 'in', 'its', 'foundation.', '*****', '*****', '{51}Then', 'a', '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', 'the', 'ocean', 'who', 'build', 'sand-towers', 'with', 'constancy', 'and', 'then', 'destroy', 'them', 'with', 'laughter.', 'But', 'while', 'you', 'build', 'your', 'sand-towers', 'the', 'ocean', 'brings', 'more', 'sand', 'to', 'the', 'shore,', 'And', 'when', 'you', 'destroy', 'them', 'the', 'ocean', 'laughs', 'with', 'you.', 'Verily', 'the', 'ocean', 'laughs', 'always', 'with', 'the', 'innocent.', 'But', 'what', 'of', 'those', 'to', 'whom', 'life', 'is', 'not', 'an', 'ocean,', 'and', 'man-made', 'laws', 'are', 'not', 'sand-towers,', 'But', 'to', 'whom', 'life', 'is', 'a', 'rock,', 'and', 'the', 'law', 'a', 'chisel', 'with', 'which', 'they', 'would', 'carve', 'it', 'in', 'their', 'own', 'likeness?', '{52}What', 'of', 'the', 'cripple', 'who', 'hates', 'dancers?', 'What', 'of', 'the', 'ox', 'who', 'loves', 'his', 'yoke', 'and', 'deems', 'the', 'elk', 'and', 'deer', 'of', 'the', 'forest', 'stray', 'and', 'vagrant', 'things?', 'What', 'of', 'the', 'old', 'serpent', 'who', 'cannot', 'shed', 'his', 'skin,', 'and', 'calls', 'all', 'others', 'naked', 'and', 'shameless?', 'And', 'of', 'him', 'who', 'comes', 'early', 'to', 'the', 'wedding-feast,', 'and', 'when', 'over-fed', 'and', 'tired', 'goes', 'his', 'way', 'saying', 'that', 'all', 'feasts', 'are', 'violation', 'and', 'all', 'feasters', 'lawbreakers?', '*****', 'What', 'shall', 'I', 'say', 'of', 'these', 'save', 'that', 'they', 'too', 'stand', 'in', 'the', 'sunlight,', 'but', 'with', 'their', 'backs', 'to', 'the', 'sun?', 'They', 'see', 'only', 'their', 'shadows,', 'and', 'their', 'shadows', 'are', 'their', 'laws.', 'And', 'what', 'is', 'the', 'sun', 'to', 'them', 'but', 'a', 'caster', 'of', 'shadows?', 'And', 'what', 'is', 'it', 'to', 'acknowledge', 'the', 'laws', 'but', 'to', 'stoop', 'down', 'and', 'trace', 'their', 'shadows', 'upon', 'the', 'earth?', 'But', 'you', 'who', 'walk', 'facing', 'the', 'sun,', 'what', '{53}images', 'drawn', 'on', 'the', 'earth', 'can', 'hold', 'you?', 'You', 'who', 'travel', 'with', 'the', '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', 'the', 'drum,', 'and', 'you', 'can', 'loosen', 'the', 'strings', 'of', 'the', 'lyre,', 'but', 'who', 'shall', 'command', 'the', 'skylark', 'not', 'to', 'sing?', '*****', '*****', '{54}And', 'an', 'orator', 'said,', 'Speak', 'to', 'us', 'of', '_Freedom_.', 'And', 'he', 'answered:', 'At', 'the', 'city', 'gate', 'and', 'by', 'your', 'fireside', 'I', 'have', 'seen', 'you', 'prostrate', 'yourself', 'and', 'worship', 'your', 'own', 'freedom,', 'Even', 'as', 'slaves', 'humble', 'themselves', 'before', 'a', 'tyrant', 'and', 'praise', 'him', 'though', 'he', 'slays', 'them.', 'Ay,', 'in', 'the', 'grove', 'of', 'the', 'temple', 'and', 'in', 'the', 'shadow', 'of', 'the', 'citadel', 'I', 'have', 'seen', 'the', 'freest', 'among', 'you', 'wear', 'their', 'freedom', 'as', 'a', 'yoke', 'and', 'a', 'handcuff.', 'And', 'my', 'heart', 'bled', 'within', 'me;', 'for', 'you', 'can', 'only', 'be', 'free', 'when', 'even', 'the', 'desire', 'of', 'seeking', 'freedom', 'becomes', 'a', 'harness', 'to', 'you,', 'and', 'when', 'you', 'cease', 'to', 'speak', 'of', 'freedom', 'as', 'a', 'goal', 'and', 'a', 'fulfilment.', 'You', 'shall', 'be', 'free', 'indeed', 'when', 'your', 'days', 'are', 'not', 'without', 'a', 'care', 'nor', 'your', '{55}nights', 'without', 'a', 'want', 'and', 'a', 'grief,', 'But', 'rather', 'when', 'these', 'things', 'girdle', 'your', 'life', 'and', 'yet', 'you', 'rise', 'above', 'them', 'naked', 'and', 'unbound.', '*****', 'And', 'how', 'shall', 'you', 'rise', 'beyond', 'your', 'days', 'and', 'nights', 'unless', 'you', 'break', 'the', 'chains', 'which', 'you', 'at', 'the', 'dawn', 'of', 'your', 'understanding', 'have', 'fastened', 'around', 'your', 'noon', 'hour?', 'In', 'truth', 'that', 'which', 'you', 'call', 'freedom', 'is', 'the', 'strongest', 'of', 'these', 'chains,', 'though', 'its', 'links', 'glitter', 'in', 'the', 'sun', 'and', 'dazzle', 'your', 'eyes.', 'And', 'what', 'is', 'it', 'but', 'fragments', 'of', 'your', 'own', 'self', 'you', 'would', 'discard', 'that', 'you', 'may', 'become', 'free?', 'If', 'it', 'is', 'an', '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', 'the', 'foreheads', 'of', 'your', 'judges,', 'though', 'you', 'pour', 'the', 'sea', 'upon', 'them.', 'And', 'if', 'it', 'is', 'a', 'despot', 'you', 'would', '{56}dethrone,', 'see', 'first', 'that', 'his', 'throne', 'erected', 'within', 'you', 'is', 'destroyed.', 'For', 'how', 'can', 'a', 'tyrant', 'rule', 'the', 'free', 'and', 'the', 'proud,', 'but', 'for', 'a', 'tyranny', 'in', 'their', 'own', 'freedom', 'and', 'a', 'shame', 'in', 'their', 'own', 'pride?', 'And', 'if', 'it', 'is', 'a', 'care', 'you', 'would', 'cast', 'off,', 'that', 'cart', 'has', 'been', 'chosen', 'by', 'you', 'rather', 'than', 'imposed', 'upon', 'you.', 'And', 'if', 'it', 'is', 'a', 'fear', 'you', 'would', 'dispel,', 'the', 'seat', 'of', 'that', 'fear', 'is', 'in', 'your', 'heart', 'and', 'not', 'in', 'the', 'hand', 'of', 'the', 'feared.', '*****', 'Verily', 'all', 'things', 'move', 'within', 'your', 'being', 'in', 'constant', 'half', 'embrace,', 'the', 'desired', 'and', 'the', 'dreaded,', 'the', 'repugnant', 'and', 'the', 'cherished,', 'the', 'pursued', 'and', 'that', 'which', 'you', 'would', 'escape.', 'These', 'things', 'move', 'within', 'you', 'as', 'lights', 'and', 'shadows', 'in', 'pairs', 'that', 'cling.', 'And', 'when', 'the', 'shadow', 'fades', 'and', 'is', 'no', 'more,', 'the', 'light', 'that', 'lingers', 'becomes', 'a', 'shadow', 'to', 'another', 'light.', 'And', 'thus', 'your', 'freedom', 'when', 'it', 'loses', 'its', 'fetters', 'becomes', 'itself', 'the', 'fetter', 'of', 'a', 'greater', 'freedom.', '*****', '*****', '{57}And', 'the', 'priestess', 'spoke', 'again', 'and', 'said:', 'Speak', 'to', 'us', 'of', '_Reason', 'and', 'Passion_.', 'And', 'he', 'answered,', 'saying:', 'Your', 'soul', 'is', 'oftentimes', 'a', 'battlefield,', 'upon', 'which', 'your', 'reason', 'and', 'your', 'judgment', 'wage', 'war', 'against', 'your', 'passion', 'and', 'your', 'appetite.', 'Would', 'that', 'I', 'could', 'be', 'the', 'peacemaker', 'in', 'your', 'soul,', 'that', 'I', 'might', 'turn', 'the', 'discord', 'and', 'the', 'rivalry', 'of', 'your', 'elements', 'into', 'oneness', 'and', 'melody.', 'But', 'how', 'shall', 'I,', 'unless', 'you', 'yourselves', 'be', 'also', 'the', 'peacemakers,', 'nay,', 'the', 'lovers', 'of', 'all', 'your', 'elements?', 'Your', 'reason', 'and', 'your', 'passion', 'are', 'the', 'rudder', 'and', 'the', 'sails', 'of', 'your', 'seafaring', 'soul.', 'If', 'either', 'your', 'sails', 'or', 'your', 'rudder', 'be', 'broken,', 'you', 'can', 'but', 'toss', 'and', 'drift,', 'or', 'else', 'be', 'held', 'at', 'a', 'standstill', 'in', 'mid-seas.', '{58}For', 'reason,', 'ruling', 'alone,', 'is', 'a', 'force', 'confining;', 'and', 'passion,', 'unattended,', 'is', 'a', 'flame', 'that', 'burns', 'to', 'its', 'own', 'destruction.', 'Therefore', 'let', 'your', 'soul', 'exalt', 'your', 'reason', 'to', 'the', '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,', 'and', 'like', 'the', 'phoenix', 'rise', 'above', 'its', 'own', 'ashes.', '*****', 'I', 'would', 'have', 'you', 'consider', 'your', 'judgment', 'and', 'your', 'appetite', 'even', 'as', 'you', 'would', 'two', 'loved', 'guests', 'in', 'your', 'house.', 'Surely', 'you', 'would', 'not', 'honour', 'one', 'guest', 'above', 'the', 'other;', 'for', 'he', 'who', 'is', 'more', 'mindful', 'of', 'one', 'loses', 'the', 'love', 'and', 'the', 'faith', 'of', 'both', 'Among', 'the', 'hills,', 'when', 'you', 'sit', 'in', 'the', 'cool', 'shade', 'of', 'the', 'white', 'poplars,', 'sharing', 'the', 'peace', 'and', 'serenity', 'of', 'distant', 'fields', 'and', 'meadows--then', 'let', 'your', 'heart', 'say', 'in', 'silence,', '“God', 'rests', 'in', 'reason.”', 'And', 'when', 'the', 'storm', 'comes,', 'and', 'the', '{59}mighty', 'wind', 'shakes', 'the', 'forest,', 'and', 'thunder', 'and', 'lightning', 'proclaim', 'the', 'majesty', 'of', 'the', 'sky,--then', 'let', 'your', 'heart', 'say', 'in', 'awe,', '“God', 'moves', 'in', 'passion.”', 'And', 'since', 'you', 'are', 'a', 'breath', 'in', 'God’s', 'sphere,', 'and', 'a', 'leaf', 'in', 'God’s', 'forest,', 'you', 'too', 'should', 'rest', 'in', 'reason', 'and', 'move', 'in', 'passion.', '*****', '*****', '{60}And', 'a', 'woman', 'spoke,', 'saying,', 'Tell', 'us', 'of', '_Pain_.', 'And', 'he', 'said:', 'Your', 'pain', 'is', 'the', 'breaking', 'of', 'the', 'shell', 'that', 'encloses', 'your', 'understanding.', 'Even', 'as', 'the', 'stone', 'of', 'the', 'fruit', 'must', 'break,', 'that', 'its', 'heart', 'may', 'stand', 'in', 'the', 'sun,', 'so', 'must', 'you', 'know', 'pain.', 'And', 'could', 'you', 'keep', 'your', 'heart', 'in', 'wonder', 'at', 'the', 'daily', 'miracles', 'of', 'your', 'life,', 'your', 'pain', 'would', 'not', 'seem', 'less', 'wondrous', 'than', 'your', 'joy;', 'And', 'you', 'would', 'accept', 'the', 'seasons', 'of', 'your', 'heart,', 'even', 'as', 'you', 'have', 'always', 'accepted', 'the', 'seasons', 'that', 'pass', 'over', 'your', 'fields.', 'And', 'you', 'would', 'watch', 'with', 'serenity', 'through', 'the', 'winters', 'of', 'your', 'grief.', 'Much', 'of', 'your', 'pain', 'is', 'self-chosen.', 'It', 'is', 'the', 'bitter', 'potion', 'by', 'which', 'the', 'physician', '{61}within', 'you', 'heals', 'your', 'sick', 'self.', 'Therefore', 'trust', 'the', 'physician,', 'and', 'drink', 'his', 'remedy', 'in', 'silence', 'and', 'tranquillity:', 'For', 'his', 'hand,', 'though', 'heavy', 'and', 'hard,', 'is', 'guided', 'by', 'the', 'tender', 'hand', 'of', 'the', 'Unseen,', 'And', 'the', 'cup', 'he', 'brings,', 'though', 'it', 'burn', 'your', 'lips,', 'has', 'been', 'fashioned', 'of', 'the', 'clay', 'which', 'the', 'Potter', 'has', 'moistened', 'with', 'His', 'own', 'sacred', 'tears.', '*****', '*****', '{62}And', 'a', 'man', 'said,', 'Speak', 'to', 'us', 'of', '_Self-Knowledge_.', 'And', 'he', 'answered,', 'saying:', 'Your', 'hearts', 'know', 'in', 'silence', 'the', 'secrets', 'of', 'the', 'days', 'and', 'the', 'nights.', 'But', 'your', 'ears', 'thirst', 'for', 'the', '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', 'the', 'naked', 'body', 'of', 'your', 'dreams.', 'And', 'it', 'is', 'well', 'you', 'should.', 'The', 'hidden', 'well-spring', 'of', 'your', 'soul', 'must', 'needs', 'rise', 'and', 'run', 'murmuring', 'to', 'the', 'sea;', 'And', 'the', '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', 'the', 'depths', 'of', 'your', '{63}knowledge', 'with', 'staff', 'or', 'sounding', 'line.', 'For', 'self', 'is', 'a', 'sea', 'boundless', 'and', 'measureless.', '*****', 'Say', 'not,', '“I', 'have', 'found', 'the', 'truth,”', 'but', 'rather,', '“I', 'have', 'found', 'a', 'truth.”', 'Say', 'not,', '“I', 'have', 'found', 'the', 'path', 'of', 'the', 'soul.”', 'Say', 'rather,', '“I', 'have', 'met', 'the', 'soul', 'walking', 'upon', 'my', 'path.”', 'For', 'the', 'soul', 'walks', 'upon', 'all', 'paths.', 'The', 'soul', 'walks', 'not', 'upon', 'a', 'line,', 'neither', 'does', 'it', 'grow', 'like', 'a', 'reed.', 'The', 'soul', 'unfolds', 'itself,', 'like', 'a', 'lotus', 'of', 'countless', 'petals.', '[Illustration:', '0083]', '*****', '*****', '{64}Then', 'said', 'a', 'teacher,', 'Speak', 'to', 'us', 'of', '_Teaching_.', 'And', 'he', 'said:', '“No', 'man', 'can', 'reveal', 'to', 'you', 'aught', 'but', 'that', 'which', 'already', 'lies', 'half', 'asleep', 'in', 'the', 'dawning', 'of', 'your', 'knowledge.', 'The', 'teacher', 'who', 'walks', 'in', 'the', 'shadow', 'of', 'the', 'temple,', 'among', 'his', 'followers,', 'gives', 'not', 'of', 'his', 'wisdom', 'but', 'rather', 'of', 'his', 'faith', 'and', 'his', 'lovingness.', 'If', 'he', 'is', 'indeed', 'wise', 'he', 'does', 'not', 'bid', 'you', 'enter', 'the', 'house', 'of', 'his', 'wisdom,', 'but', 'rather', 'leads', 'you', 'to', 'the', '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', 'the', 'rhythm', 'which', 'is', 'in', 'all', 'space,', 'but', 'he', 'cannot', 'give', 'you', 'the', 'ear', 'which', 'arrests', 'the', 'rhythm', 'nor', 'the', 'voice', 'that', 'echoes', 'it.', '{65}And', 'he', 'who', 'is', 'versed', 'in', 'the', 'science', 'of', 'numbers', 'can', 'tell', 'of', 'the', 'regions', 'of', 'weight', 'and', 'measure,', 'but', 'he', 'cannot', 'conduct', 'you', 'thither.', 'For', 'the', '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', 'and', 'in', 'his', 'understanding', 'of', 'the', 'earth.', '*****', '*****', '{66}And', 'a', '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', 'and', 'reap', 'with', 'thanksgiving.', 'And', 'he', 'is', 'your', 'board', 'and', 'your', 'fireside.', 'For', 'you', 'come', 'to', 'him', 'with', 'your', 'hunger,', 'and', 'you', 'seek', 'him', 'for', 'peace.', 'When', 'your', 'friend', 'speaks', 'his', 'mind', 'you', 'fear', 'not', 'the', '“nay”', 'in', 'your', 'own', 'mind,', 'nor', 'do', 'you', 'withhold', 'the', '“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', 'and', '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', 'the', 'mountain', 'to', 'the', 'climber', 'is', 'clearer', 'from', 'the', 'plain.', '{67}And', 'let', 'there', 'be', 'no', 'purpose', 'in', 'friendship', 'save', 'the', 'deepening', 'of', 'the', 'spirit.', 'For', 'love', 'that', 'seeks', 'aught', 'but', 'the', 'disclosure', 'of', 'its', 'own', 'mystery', 'is', 'not', 'love', 'but', 'a', 'net', 'cast', 'forth:', 'and', 'only', 'the', 'unprofitable', 'is', 'caught.', '*****', 'And', 'let', 'your', 'best', 'be', 'for', 'your', 'friend.', 'If', 'he', 'must', 'know', 'the', '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', 'the', 'sweetness', 'of', 'friendship', 'let', 'there', 'be', 'laughter,', 'and', 'sharing', 'of', 'pleasures.', 'For', 'in', 'the', 'dew', 'of', 'little', 'things', 'the', 'heart', 'finds', 'its', 'morning', 'and', 'is', 'refreshed.', '*****', '*****', '{68}And', 'then', 'a', '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', 'the', 'solitude', 'of', 'your', 'heart', 'you', 'live', 'in', 'your', 'lips,', 'and', 'sound', 'is', 'a', 'diversion', 'and', 'a', 'pastime.', 'And', 'in', 'much', 'of', 'your', 'talking,', 'thinking', 'is', 'half', 'murdered.', 'For', 'thought', 'is', 'a', 'bird', 'of', 'space,', 'that', 'in', 'a', 'cage', 'of', 'words', 'may', 'indeed', 'unfold', 'its', 'wings', 'but', 'cannot', 'fly.', 'There', 'are', 'those', 'among', 'you', 'who', 'seek', 'the', 'talkative', 'through', 'fear', 'of', 'being', 'alone.', 'The', 'silence', 'of', 'aloneness', 'reveals', 'to', 'their', 'eyes', 'their', 'naked', 'selves', 'and', 'they', 'would', 'escape.', 'And', 'there', 'are', 'those', 'who', 'talk,', 'and', '{69}without', 'knowledge', 'or', 'forethought', 'reveal', 'a', 'truth', 'which', 'they', 'themselves', 'do', 'not', 'understand.', 'And', 'there', 'are', 'those', 'who', 'have', 'the', 'truth', 'within', 'them,', 'but', 'they', 'tell', 'it', 'not', 'in', 'words.', 'In', 'the', 'bosom', 'of', 'such', 'as', 'these', 'the', 'spirit', 'dwells', 'in', 'rhythmic', 'silence.', '*****', 'When', 'you', 'meet', 'your', 'friend', 'on', 'the', 'roadside', 'or', 'in', 'the', 'market', 'place,', 'let', 'the', 'spirit', 'in', 'you', 'move', 'your', 'lips', 'and', 'direct', 'your', 'tongue.', 'Let', 'the', 'voice', 'within', 'your', 'voice', 'speak', 'to', 'the', 'ear', 'of', 'his', 'ear;', 'For', 'his', 'soul', 'will', 'keep', 'the', 'truth', 'of', 'your', 'heart', 'as', 'the', 'taste', 'of', 'the', 'wine', 'is', 'remembered', 'When', 'the', 'colour', 'is', 'forgotten', 'and', 'the', 'vessel', 'is', 'no', 'more.', '*****', '*****', '{70}And', 'an', 'astronomer', 'said,', 'Master,', 'what', 'of', '_Time_?', 'And', 'he', 'answered:', 'You', 'would', 'measure', 'time', 'the', 'measureless', 'and', 'the', 'immeasurable.', 'You', 'would', 'adjust', 'your', 'conduct', 'and', 'even', 'direct', 'the', 'course', 'of', 'your', 'spirit', 'according', 'to', 'hours', 'and', 'seasons.', 'Of', 'time', 'you', 'would', 'make', 'a', 'stream', 'upon', 'whose', 'bank', 'you', 'would', 'sit', 'and', 'watch', 'its', 'flowing.', 'Yet', 'the', 'timeless', 'in', 'you', 'is', 'aware', 'of', 'life’s', 'timelessness,', 'And', 'knows', 'that', 'yesterday', 'is', 'but', 'today’s', 'memory', 'and', 'tomorrow', 'is', 'today’s', 'dream.', 'And', 'that', 'that', 'which', 'sings', 'and', 'contemplates', 'in', 'you', 'is', 'still', 'dwelling', 'within', 'the', 'bounds', 'of', 'that', 'first', 'moment', 'which', 'scattered', 'the', 'stars', 'into', 'space.', '{71}Who', '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', 'the', 'centre', 'of', 'his', 'being,', 'and', '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', 'and', 'paceless?', '*****', 'But', 'if', 'in', 'your', 'thought', 'you', 'must', 'measure', 'time', 'into', 'seasons,', 'let', 'each', 'season', 'encircle', 'all', 'the', 'other', 'seasons,', 'And', 'let', 'today', 'embrace', 'the', 'past', 'with', 'remembrance', 'and', 'the', 'future', 'with', 'longing.', '*****', '*****', '{72}And', 'one', 'of', 'the', 'elders', 'of', 'the', 'city', 'said,', 'Speak', 'to', 'us', 'of', '_Good', 'and', 'Evil_.', 'And', 'he', 'answered:', 'Of', 'the', 'good', 'in', 'you', 'I', 'can', 'speak,', 'but', 'not', 'of', 'the', 'evil.', 'For', 'what', 'is', 'evil', 'but', 'good', 'tortured', 'by', 'its', 'own', 'hunger', 'and', 'thirst?', 'Verily', 'when', 'good', 'is', 'hungry', 'it', 'seeks', 'food', 'even', 'in', 'dark', 'caves,', 'and', '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', 'a', 'divided', 'house', 'is', 'not', 'a', 'den', 'of', 'thieves;', 'it', 'is', 'only', 'a', 'divided', 'house.', 'And', 'a', 'ship', 'without', 'rudder', 'may', 'wander', 'aimlessly', 'among', 'perilous', 'isles', 'yet', 'sink', 'not', 'to', 'the', 'bottom.', '{73}You', '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', 'a', 'root', 'that', 'clings', 'to', 'the', 'earth', 'and', 'sucks', 'at', 'her', 'breast.', 'Surely', 'the', 'fruit', 'cannot', 'say', 'to', 'the', 'root,', '“Be', 'like', 'me,', 'ripe', 'and', 'full', 'and', 'ever', 'giving', 'of', 'your', 'abundance.”', 'For', 'to', 'the', 'fruit', 'giving', 'is', 'a', 'need,', 'as', 'receiving', 'is', 'a', 'need', 'to', 'the', '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', 'a', 'weak', 'tongue.', 'You', 'are', 'good', 'when', 'you', 'walk', 'to', 'your', 'goal', 'firmly', 'and', 'with', 'bold', 'steps.', 'Yet', 'you', 'are', 'not', 'evil', 'when', 'you', 'go', 'thither', 'limping.', '{74}Even', 'those', 'who', 'limp', 'go', 'not', 'backward.', 'But', 'you', 'who', 'are', 'strong', 'and', 'swift,', 'see', 'that', 'you', 'do', 'not', 'limp', 'before', 'the', 'lame,', 'deeming', 'it', 'kindness.', '*****', 'You', 'are', 'good', 'in', 'countless', 'ways,', 'and', 'you', 'are', 'not', 'evil', 'when', 'you', 'are', 'not', 'good,', 'You', 'are', 'only', 'loitering', 'and', 'sluggard.', 'Pity', 'that', 'the', 'stags', 'cannot', 'teach', 'swiftness', 'to', 'the', 'turtles.', 'In', 'your', 'longing', 'for', 'your', 'giant', 'self', 'lies', 'your', 'goodness:', 'and', 'that', 'longing', 'is', 'in', 'all', 'of', 'you.', 'But', 'in', 'some', 'of', 'you', 'that', 'longing', 'is', 'a', 'torrent', 'rushing', 'with', 'might', 'to', 'the', 'sea,', 'carrying', 'the', 'secrets', 'of', 'the', 'hillsides', 'and', 'the', 'songs', 'of', 'the', 'forest.', 'And', 'in', 'others', 'it', 'is', 'a', 'flat', 'stream', 'that', 'loses', 'itself', 'in', 'angles', 'and', 'bends', 'and', 'lingers', 'before', 'it', 'reaches', 'the', 'shore.', 'But', 'let', 'not', 'him', 'who', 'longs', 'much', 'say', 'to', '{75}him', 'who', 'longs', 'little,', '“Wherefore', 'are', 'you', 'slow', 'and', 'halting?”', 'For', 'the', 'truly', 'good', 'ask', 'not', 'the', 'naked,', '“Where', 'is', 'your', 'garment?”', 'nor', 'the', 'houseless,', '“What', 'has', 'befallen', 'your', 'house?”', '*****', '*****', '{76}Then', 'a', 'priestess', 'said,', 'Speak', 'to', 'us', 'of', '_Prayer_.', 'And', 'he', 'answered,', 'saying:', 'You', 'pray', 'in', 'your', 'distress', 'and', 'in', 'your', 'need;', 'would', 'that', 'you', 'might', 'pray', 'also', 'in', 'the', 'fullness', 'of', 'your', 'joy', 'and', 'in', 'your', 'days', 'of', 'abundance.', 'For', 'what', 'is', 'prayer', 'but', 'the', 'expansion', 'of', 'yourself', 'into', 'the', 'living', 'ether?', 'And', 'if', 'it', 'is', 'for', 'your', 'comfort', 'to', 'pour', 'your', 'darkness', 'into', 'space,', 'it', 'is', 'also', 'for', 'your', 'delight', 'to', 'pour', 'forth', 'the', 'dawning', 'of', 'your', 'heart.', 'And', 'if', 'you', 'cannot', 'but', 'weep', 'when', 'your', 'soul', 'summons', 'you', 'to', 'prayer,', 'she', 'should', 'spur', 'you', 'again', 'and', 'yet', 'again,', 'though', 'weeping,', 'until', 'you', 'shall', 'come', 'laughing.', 'When', 'you', 'pray', 'you', 'rise', 'to', 'meet', 'in', 'the', 'air', 'those', 'who', 'are', 'praying', 'at', 'that', 'very', '{77}hour,', 'and', 'whom', 'save', 'in', 'prayer', 'you', 'may', 'not', 'meet.', 'Therefore', 'let', 'your', 'visit', 'to', 'that', 'temple', 'invisible', 'be', 'for', 'naught', 'but', 'ecstasy', 'and', 'sweet', 'communion.', 'For', 'if', 'you', 'should', 'enter', 'the', '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', 'the', 'good', 'of', 'others', 'you', 'shall', 'not', 'be', 'heard.', 'It', 'is', 'enough', 'that', 'you', 'enter', 'the', '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', 'the', 'prayer', 'of', 'the', 'seas', 'and', 'the', 'forests', 'and', 'the', 'mountains.', '{78}But', 'you', 'who', 'are', 'born', 'of', 'the', 'mountains', 'and', 'the', 'forests', 'and', 'the', 'seas', 'can', 'find', 'their', 'prayer', 'in', 'your', 'heart,', 'And', 'if', 'you', 'but', 'listen', 'in', 'the', 'stillness', 'of', 'the', '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;', 'and', 'in', 'giving', 'us', 'more', 'of', 'thyself', 'thou', 'givest', 'us', 'all.”', '[Illustration:', '0100]', '*****', '*****', '{79}Then', 'a', 'hermit,', 'who', 'visited', 'the', 'city', 'once', 'a', 'year,', 'came', 'forth', 'and', 'said,', 'Speak', 'to', 'us', 'of', '_Pleasure_.', 'And', 'he', 'answered,', 'saying:', 'Pleasure', 'is', 'a', 'freedom-song,', 'But', 'it', 'is', 'not', 'freedom.', 'It', 'is', 'the', 'blossoming', 'of', 'your', 'desires,', 'But', 'it', 'is', 'not', 'their', 'fruit.', 'It', 'is', 'a', 'depth', 'calling', 'unto', 'a', 'height,', 'But', 'it', 'is', 'not', 'the', 'deep', 'nor', 'the', 'high.', 'It', 'is', 'the', 'caged', 'taking', 'wing,', 'But', 'it', 'is', 'not', 'space', 'encompassed.', 'Ay,', 'in', 'very', 'truth,', 'pleasure', 'is', 'a', 'freedom-song.', 'And', 'I', 'fain', 'would', 'have', 'you', 'sing', 'it', 'with', 'fullness', 'of', 'heart;', 'yet', 'I', 'would', 'not', 'have', 'you', 'lose', 'your', 'hearts', 'in', 'the', 'singing.', 'Some', 'of', 'your', 'youth', 'seek', 'pleasure', 'as', 'if', 'it', 'were', 'all,', 'and', 'they', 'are', 'judged', 'and', 'rebuked.', '{80}I', 'would', 'not', 'judge', 'nor', 'rebuke', 'them.', 'I', 'would', 'have', 'them', 'seek.', 'For', 'they', 'shall', 'find', 'pleasure,', 'but', 'not', 'her', 'alone;', 'Seven', 'are', 'her', 'sisters,', 'and', 'the', 'least', 'of', 'them', 'is', 'more', 'beautiful', 'than', 'pleasure.', 'Have', 'you', 'not', 'heard', 'of', 'the', 'man', 'who', 'was', 'digging', 'in', 'the', 'earth', 'for', 'roots', 'and', 'found', 'a', 'treasure?', '*****', 'And', 'some', 'of', 'your', 'elders', 'remember', 'pleasures', 'with', 'regret', 'like', 'wrongs', 'committed', 'in', 'drunkenness.', 'But', 'regret', 'is', 'the', 'beclouding', 'of', 'the', 'mind', 'and', 'not', 'its', 'chastisement.', 'They', 'should', 'remember', 'their', 'pleasures', 'with', 'gratitude,', 'as', 'they', 'would', 'the', 'harvest', 'of', 'a', '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', 'and', 'remembering', '{81}they', 'shun', 'all', 'pleasures,', 'lest', 'they', 'neglect', 'the', 'spirit', 'or', 'offend', 'against', 'it.', 'But', 'even', 'in', 'their', 'foregoing', 'is', 'their', 'pleasure.', 'And', 'thus', 'they', 'too', 'find', 'a', 'treasure', 'though', 'they', 'dig', 'for', 'roots', 'with', 'quivering', 'hands.', 'But', 'tell', 'me,', 'who', 'is', 'he', 'that', 'can', 'offend', 'the', 'spirit?', 'Shall', 'the', 'nightingale', 'offend', 'the', 'stillness', 'of', 'the', 'night,', 'or', 'the', 'firefly', 'the', 'stars?', 'And', 'shall', 'your', 'flame', 'or', 'your', 'smoke', 'burden', 'the', 'wind?', 'Think', 'you', 'the', 'spirit', 'is', 'a', 'still', 'pool', 'which', 'you', 'can', 'trouble', 'with', 'a', 'staff?', '*****', 'Oftentimes', 'in', 'denying', 'yourself', 'pleasure', 'you', 'do', 'but', 'store', 'the', 'desire', 'in', 'the', 'recesses', 'of', 'your', 'being.', 'Who', 'knows', 'but', 'that', 'which', 'seems', 'omitted', 'today,', 'waits', 'for', 'tomorrow?', 'Even', 'your', 'body', 'knows', 'its', 'heritage', 'and', 'its', 'rightful', 'need', 'and', 'will', 'not', 'be', 'deceived.', 'And', 'your', 'body', 'is', 'the', 'harp', 'of', 'your', 'soul,', 'And', 'it', 'is', 'yours', 'to', 'bring', 'forth', '{82}sweet', 'music', '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', 'and', 'your', 'gardens,', 'and', 'you', 'shall', 'learn', 'that', 'it', 'is', 'the', 'pleasure', 'of', 'the', 'bee', 'to', 'gather', 'honey', 'of', 'the', 'flower,', 'But', 'it', 'is', 'also', 'the', 'pleasure', 'of', 'the', 'flower', 'to', 'yield', 'its', 'honey', 'to', 'the', 'bee.', 'For', 'to', 'the', 'bee', 'a', 'flower', 'is', 'a', 'fountain', 'of', 'life,', 'And', 'to', 'the', 'flower', 'a', 'bee', 'is', 'a', 'messenger', 'of', 'love,', 'And', 'to', 'both,', 'bee', 'and', 'flower,', 'the', 'giving', 'and', 'the', 'receiving', 'of', 'pleasure', 'is', 'a', 'need', 'and', 'an', 'ecstasy.', 'People', 'of', 'Orphalese,', 'be', 'in', 'your', 'pleasures', 'like', 'the', 'flowers', 'and', 'the', 'bees.', '*****', '*****', '{83}And', 'a', 'poet', 'said,', 'Speak', 'to', 'us', 'of', '_Beauty_.', 'And', 'he', 'answered:', 'Where', 'shall', 'you', 'seek', 'beauty,', 'and', 'how', 'shall', 'you', 'find', 'her', 'unless', 'she', 'herself', 'be', 'your', 'way', 'and', 'your', 'guide?', 'And', 'how', 'shall', 'you', 'speak', 'of', 'her', 'except', 'she', 'be', 'the', 'weaver', 'of', 'your', 'speech?', 'The', 'aggrieved', 'and', 'the', 'injured', 'say,', '“Beauty', 'is', 'kind', 'and', 'gentle.', 'Like', 'a', 'young', 'mother', 'half-shy', 'of', 'her', 'own', 'glory', 'she', 'walks', 'among', 'us.”', 'And', 'the', 'passionate', 'say,', '“Nay,', 'beauty', 'is', 'a', 'thing', 'of', 'might', 'and', 'dread.', 'Like', 'the', 'tempest', 'she', 'shakes', 'the', 'earth', 'beneath', 'us', 'and', 'the', 'sky', 'above', 'us.”', 'The', 'tired', 'and', 'the', 'weary', 'say,', '“Beauty', 'is', 'of', 'soft', 'whisperings.', 'She', 'speaks', 'in', 'our', 'spirit.', '{84}Her', 'voice', 'yields', 'to', 'our', 'silences', 'like', 'a', 'faint', 'light', 'that', 'quivers', 'in', 'fear', 'of', 'the', 'shadow.”', 'But', 'the', 'restless', 'say,', '“We', 'have', 'heard', 'her', 'shouting', 'among', 'the', 'mountains,', 'And', 'with', 'her', 'cries', 'came', 'the', 'sound', 'of', 'hoofs,', 'and', 'the', 'beating', 'of', 'wings', 'and', 'the', 'roaring', 'of', 'lions.”', 'At', 'night', 'the', 'watchmen', 'of', 'the', 'city', 'say,', '“Beauty', 'shall', 'rise', 'with', 'the', 'dawn', 'from', 'the', 'east.”', 'And', 'at', 'noontide', 'the', 'toilers', 'and', 'the', 'wayfarers', 'say,', '“We', 'have', 'seen', 'her', 'leaning', 'over', 'the', 'earth', 'from', 'the', 'windows', 'of', 'the', 'sunset.”', '*****', 'In', 'winter', 'say', 'the', 'snow-bound,', '“She', 'shall', 'come', 'with', 'the', 'spring', 'leaping', 'upon', 'the', 'hills.”', 'And', 'in', 'the', 'summer', 'heat', 'the', 'reapers', 'say,', '“We', 'have', 'seen', 'her', 'dancing', 'with', 'the', 'autumn', 'leaves,', 'and', 'we', 'saw', 'a', 'drift', 'of', 'snow', 'in', 'her', 'hair.”', '{85}All', 'these', 'things', 'have', 'you', 'said', 'of', 'beauty,', 'Yet', 'in', 'truth', 'you', 'spoke', 'not', 'of', 'her', 'but', 'of', 'needs', 'unsatisfied,', 'And', 'beauty', 'is', 'not', 'a', 'need', 'but', 'an', 'ecstasy.', 'It', 'is', 'not', 'a', 'mouth', 'thirsting', 'nor', 'an', 'empty', 'hand', 'stretched', 'forth,', 'But', 'rather', 'a', 'heart', 'enflamed', 'and', 'a', 'soul', 'enchanted.', 'It', 'is', 'not', 'the', 'image', 'you', 'would', 'see', 'nor', 'the', 'song', 'you', 'would', 'hear,', 'But', 'rather', 'an', 'image', 'you', 'see', 'though', 'you', 'close', 'your', 'eyes', 'and', 'a', 'song', 'you', 'hear', 'though', 'you', 'shut', 'your', 'ears.', 'It', 'is', 'not', 'the', 'sap', 'within', 'the', 'furrowed', 'bark,', 'nor', 'a', 'wing', 'attached', 'to', 'a', 'claw,', 'But', 'rather', 'a', 'garden', 'for', 'ever', 'in', 'bloom', 'and', 'a', 'flock', 'of', 'angels', 'for', 'ever', 'in', 'flight.', '*****', 'People', 'of', 'Orphalese,', 'beauty', 'is', 'life', 'when', 'life', 'unveils', 'her', 'holy', 'face.', 'But', 'you', 'are', 'life', 'and', 'you', 'are', 'the', 'veil.', '{86}Beauty', 'is', 'eternity', 'gazing', 'at', 'itself', 'in', 'a', 'mirror.', 'But', 'you', 'are', 'eternity', 'and', 'you', 'are', 'the', 'mirror.', '*****', '*****', '{87}And', 'an', 'old', 'priest', 'said,', 'Speak', 'to', 'us', 'of', '_Religion_.', 'And', 'he', 'said:', 'Have', 'I', 'spoken', 'this', 'day', 'of', 'aught', 'else?', 'Is', 'not', 'religion', 'all', 'deeds', 'and', 'all', 'reflection,', 'And', 'that', 'which', 'is', 'neither', 'deed', 'nor', 'reflection,', 'but', 'a', 'wonder', 'and', 'a', 'surprise', 'ever', 'springing', 'in', 'the', 'soul,', 'even', 'while', 'the', 'hands', 'hew', 'the', 'stone', 'or', 'tend', 'the', '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', 'and', 'this', 'for', 'myself;', 'This', 'for', 'my', 'soul,', 'and', 'this', 'other', 'for', 'my', 'body?”', 'All', 'your', 'hours', 'are', 'wings', 'that', 'beat', 'through', 'space', 'from', 'self', 'to', 'self.', '{88}He', 'who', 'wears', 'his', 'morality', 'but', 'as', 'his', 'best', 'garment', 'were', 'better', 'naked.', 'The', 'wind', 'and', 'the', 'sun', 'will', 'tear', 'no', 'holes', 'in', 'his', 'skin.', 'And', 'he', 'who', 'defines', 'his', 'conduct', 'by', 'ethics', 'imprisons', 'his', 'song-bird', 'in', 'a', 'cage.', 'The', 'freest', 'song', 'comes', 'not', 'through', 'bars', 'and', 'wires.', 'And', 'he', 'to', 'whom', 'worshipping', 'is', 'a', 'window,', 'to', 'open', 'but', 'also', 'to', 'shut,', 'has', 'not', 'yet', 'visited', 'the', 'house', 'of', 'his', 'soul', 'whose', 'windows', 'are', 'from', 'dawn', 'to', 'dawn.', '*****', 'Your', 'daily', 'life', 'is', 'your', 'temple', 'and', 'your', 'religion.', 'Whenever', 'you', 'enter', 'into', 'it', 'take', 'with', 'you', 'your', 'all.', 'Take', 'the', 'plough', 'and', 'the', 'forge', 'and', 'the', 'mallet', 'and', 'the', '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:', '{89}For', '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', 'a', 'solver', 'of', 'riddles.', 'Rather', 'look', 'about', 'you', 'and', 'you', 'shall', 'see', 'Him', 'playing', 'with', 'your', 'children.', 'And', 'look', 'into', 'space;', 'you', 'shall', 'see', 'Him', 'walking', 'in', 'the', 'cloud,', 'outstretching', 'His', 'arms', 'in', 'the', 'lightning', 'and', 'descending', 'in', 'rain.', 'You', 'shall', 'see', 'Him', 'smiling', 'in', 'flowers,', 'then', 'rising', 'and', 'waving', 'His', 'hands', 'in', 'trees.', '*****', '*****', '{90}Then', 'Almitra', 'spoke,', 'saying,', 'We', 'would', 'ask', 'now', 'of', '_Death_.', 'And', 'he', 'said:', 'You', 'would', 'know', 'the', 'secret', 'of', 'death.', 'But', 'how', 'shall', 'you', 'find', 'it', 'unless', 'you', 'seek', 'it', 'in', 'the', 'heart', 'of', 'life?', 'The', 'owl', 'whose', 'night-bound', 'eyes', 'are', 'blind', 'unto', 'the', 'day', 'cannot', 'unveil', 'the', 'mystery', 'of', 'light.', 'If', 'you', 'would', 'indeed', 'behold', 'the', 'spirit', 'of', 'death,', 'open', 'your', 'heart', 'wide', 'unto', 'the', 'body', 'of', 'life.', 'For', 'life', 'and', 'death', 'are', 'one,', 'even', 'as', 'the', 'river', 'and', 'the', 'sea', 'are', 'one.', 'In', 'the', 'depth', 'of', 'your', 'hopes', 'and', 'desires', 'lies', 'your', 'silent', 'knowledge', 'of', 'the', 'beyond;', 'And', 'like', 'seeds', 'dreaming', 'beneath', 'the', 'snow', 'your', 'heart', 'dreams', 'of', 'spring.', 'Trust', 'the', 'dreams,', 'for', 'in', 'them', 'is', 'hidden', 'the', 'gate', 'to', 'eternity.', '{91}Your', 'fear', 'of', 'death', 'is', 'but', 'the', 'trembling', 'of', 'the', 'shepherd', 'when', 'he', 'stands', 'before', 'the', 'king', 'whose', 'hand', 'is', 'to', 'be', 'laid', 'upon', 'him', 'in', 'honour.', 'Is', 'the', 'shepherd', 'not', 'joyful', 'beneath', 'his', 'trembling,', 'that', 'he', 'shall', 'wear', 'the', 'mark', 'of', 'the', 'king?', 'Yet', 'is', 'he', 'not', 'more', 'mindful', 'of', 'his', 'trembling?', '*****', 'For', 'what', 'is', 'it', 'to', 'die', 'but', 'to', 'stand', 'naked', 'in', 'the', 'wind', 'and', 'to', 'melt', 'into', 'the', 'sun?', 'And', 'what', 'is', 'it', 'to', 'cease', 'breathing,', 'but', 'to', 'free', 'the', 'breath', 'from', 'its', 'restless', 'tides,', 'that', 'it', 'may', 'rise', 'and', 'expand', 'and', 'seek', 'God', 'unencumbered?', 'Only', 'when', 'you', 'drink', 'from', 'the', 'river', 'of', 'silence', 'shall', 'you', 'indeed', 'sing.', 'And', 'when', 'you', 'have', 'reached', 'the', 'mountain', 'top,', 'then', 'you', 'shall', 'begin', 'to', 'climb.', 'And', 'when', 'the', 'earth', 'shall', 'claim', 'your', 'limbs,', 'then', 'shall', 'you', 'truly', 'dance.', '{92}And', 'now', 'it', 'was', 'evening.', 'And', 'Almitra', 'the', 'seeress', 'said,', 'Blessed', 'be', 'this', 'day', 'and', 'this', 'place', 'and', 'your', 'spirit', 'that', 'has', 'spoken.', 'And', 'he', 'answered,', 'Was', 'it', 'I', 'who', 'spoke?', 'Was', 'I', 'not', 'also', 'a', 'listener?', '*****', 'Then', 'he', 'descended', 'the', 'steps', 'of', 'the', 'Temple', 'and', 'all', 'the', 'people', 'followed', 'him.', 'And', 'he', 'reached', 'his', 'ship', 'and', 'stood', 'upon', 'the', 'deck.', 'And', 'facing', 'the', 'people', 'again,', 'he', 'raised', 'his', 'voice', 'and', 'said:', 'People', 'of', 'Orphalese,', 'the', 'wind', 'bids', 'me', 'leave', 'you.', 'Less', 'hasty', 'am', 'I', 'than', 'the', 'wind,', 'yet', 'I', 'must', 'go.', 'We', 'wanderers,', 'ever', 'seeking', 'the', 'lonelier', 'way,', 'begin', 'no', 'day', 'where', 'we', 'have', 'ended', 'another', 'day;', 'and', 'no', 'sunrise', 'finds', 'us', 'where', 'sunset', 'left', 'us.', '{93}Even', 'while', 'the', 'earth', 'sleeps', 'we', 'travel.', 'We', 'are', 'the', 'seeds', 'of', 'the', 'tenacious', 'plant,', 'and', 'it', 'is', 'in', 'our', 'ripeness', 'and', 'our', 'fullness', 'of', 'heart', 'that', 'we', 'are', 'given', 'to', 'the', 'wind', 'and', 'are', 'scattered.', '*****', 'Brief', 'were', 'my', 'days', 'among', 'you,', 'and', 'briefer', 'still', 'the', 'words', 'I', 'have', 'spoken.', 'But', 'should', 'my', 'voice', 'fade', 'in', 'your', 'ears,', 'and', 'my', 'love', 'vanish', 'in', 'your', 'memory,', 'then', 'I', 'will', 'come', 'again,', 'And', 'with', 'a', 'richer', 'heart', 'and', 'lips', 'more', 'yielding', 'to', 'the', 'spirit', 'will', 'I', 'speak.', 'Yea,', 'I', 'shall', 'return', 'with', 'the', 'tide,', 'And', 'though', 'death', 'may', 'hide', 'me,', 'and', 'the', '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', 'a', 'clearer', 'voice,', 'and', 'in', 'words', 'more', 'kin', 'to', 'your', 'thoughts.', 'I', 'go', 'with', 'the', 'wind,', 'people', 'of', 'Orphalese,', 'but', 'not', 'down', 'into', 'emptiness;', '{94}And', 'if', 'this', 'day', 'is', 'not', 'a', 'fulfilment', 'of', 'your', 'needs', 'and', 'my', 'love,', 'then', 'let', 'it', 'be', 'a', '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', 'the', 'greater', 'silence', 'I', 'shall', 'return.', 'The', 'mist', 'that', 'drifts', 'away', 'at', 'dawn,', 'leaving', 'but', 'dew', 'in', 'the', 'fields,', 'shall', 'rise', 'and', 'gather', 'into', 'a', 'cloud', 'and', 'then', 'fall', 'down', 'in', 'rain.', 'And', 'not', 'unlike', 'the', 'mist', 'have', 'I', 'been.', 'In', 'the', 'stillness', 'of', 'the', 'night', 'I', 'have', 'walked', 'in', 'your', 'streets,', 'and', 'my', 'spirit', 'has', 'entered', 'your', 'houses,', 'And', 'your', 'heart-beats', 'were', 'in', 'my', 'heart,', 'and', 'your', 'breath', 'was', 'upon', 'my', 'face,', 'and', 'I', 'knew', 'you', 'all.', 'Ay,', 'I', 'knew', 'your', 'joy', 'and', 'your', 'pain,', 'and', 'in', 'your', 'sleep', 'your', 'dreams', 'were', 'my', 'dreams.', 'And', 'oftentimes', 'I', 'was', 'among', 'you', 'a', 'lake', 'among', 'the', 'mountains.', 'I', 'mirrored', 'the', 'summits', 'in', 'you', 'and', 'the', '{95}bending', 'slopes,', 'and', 'even', 'the', 'passing', 'flocks', 'of', 'your', 'thoughts', 'and', 'your', 'desires.', 'And', 'to', 'my', 'silence', 'came', 'the', 'laughter', 'of', 'your', 'children', 'in', 'streams,', 'and', 'the', 'longing', 'of', 'your', 'youths', 'in', 'rivers.', 'And', 'when', 'they', 'reached', 'my', 'depth', 'the', 'streams', 'and', 'the', 'rivers', 'ceased', 'not', 'yet', 'to', 'sing.', '[Illustration:', '0119]', 'But', 'sweeter', 'still', 'than', 'laughter', 'and', 'greater', 'than', 'longing', 'came', 'to', 'me.', 'It', 'was', 'the', 'boundless', 'in', 'you;', 'The', 'vast', 'man', 'in', 'whom', 'you', 'are', 'all', 'but', 'cells', 'and', 'sinews;', 'He', 'in', 'whose', 'chant', 'all', 'your', 'singing', 'is', 'but', 'a', 'soundless', 'throbbing.', 'It', 'is', 'in', 'the', 'vast', 'man', 'that', 'you', 'are', 'vast,', 'And', 'in', 'beholding', 'him', 'that', 'I', 'beheld', 'you', 'and', 'loved', 'you.', 'For', 'what', 'distances', 'can', 'love', 'reach', 'that', 'are', 'not', 'in', 'that', 'vast', 'sphere?', 'What', 'visions,', 'what', 'expectations', 'and', 'what', 'presumptions', 'can', 'outsoar', 'that', 'flight?', 'Like', 'a', 'giant', 'oak', 'tree', 'covered', 'with', 'apple', 'blossoms', 'is', 'the', 'vast', 'man', 'in', 'you.', '{96}His', 'might', 'binds', 'you', 'to', 'the', 'earth,', 'his', 'fragrance', 'lifts', 'you', 'into', 'space,', 'and', 'in', 'his', 'durability', 'you', 'are', 'deathless.', '*****', 'You', 'have', 'been', 'told', 'that,', 'even', 'like', 'a', 'chain,', 'you', 'are', 'as', 'weak', 'as', 'your', 'weakest', 'link.', 'This', 'is', 'but', 'half', 'the', 'truth.', 'You', 'are', 'also', 'as', 'strong', 'as', 'your', 'strongest', 'link.', 'To', 'measure', 'you', 'by', 'your', 'smallest', 'deed', 'is', 'to', 'reckon', 'the', 'power', 'of', 'ocean', 'by', 'the', 'frailty', 'of', 'its', 'foam.', 'To', 'judge', 'you', 'by', 'your', 'failures', 'is', 'to', 'cast', 'blame', 'upon', 'the', 'seasons', 'for', 'their', 'inconstancy.', 'Ay,', 'you', 'are', 'like', 'an', 'ocean,', 'And', 'though', 'heavy-grounded', 'ships', 'await', 'the', 'tide', 'upon', 'your', 'shores,', 'yet,', 'even', 'like', 'an', 'ocean,', 'you', 'cannot', 'hasten', 'your', 'tides.', 'And', 'like', 'the', 'seasons', 'you', 'are', 'also,', 'And', 'though', 'in', 'your', 'winter', 'you', 'deny', 'your', 'spring,', 'Yet', 'spring,', 'reposing', 'within', 'you,', 'smiles', 'in', 'her', 'drowsiness', 'and', 'is', 'not', 'offended.', '{97}Think', 'not', 'I', 'say', 'these', 'things', 'in', 'order', 'that', 'you', 'may', 'say', 'the', 'one', 'to', 'the', 'other,', '“He', 'praised', 'us', 'well.', 'He', 'saw', 'but', 'the', 'good', 'in', 'us.”', 'I', 'only', 'speak', 'to', 'you', 'in', 'words', 'of', 'that', 'which', 'you', 'yourselves', 'know', 'in', 'thought.', 'And', 'what', 'is', 'word', 'knowledge', 'but', 'a', 'shadow', 'of', 'wordless', 'knowledge?', 'Your', 'thoughts', 'and', 'my', 'words', 'are', 'waves', 'from', 'a', 'sealed', 'memory', 'that', 'keeps', 'records', 'of', 'our', 'yesterdays,', 'And', 'of', 'the', 'ancient', 'days', 'when', 'the', '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', 'a', 'flame', 'spirit', 'in', 'you', 'ever', 'gathering', 'more', 'of', 'itself,', 'While', 'you,', 'heedless', 'of', 'its', 'expansion,', 'bewail', 'the', 'withering', 'of', 'your', 'days.', '{98}It', 'is', 'life', 'in', 'quest', 'of', 'life', 'in', 'bodies', 'that', 'fear', 'the', 'grave.', '*****', 'There', 'are', 'no', 'graves', 'here.', 'These', 'mountains', 'and', 'plains', 'are', 'a', 'cradle', 'and', 'a', 'stepping-stone.', 'Whenever', 'you', 'pass', 'by', 'the', 'field', 'where', 'you', 'have', 'laid', 'your', 'ancestors', 'look', 'well', 'thereupon,', 'and', 'you', 'shall', 'see', 'yourselves', 'and', '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', 'and', 'power', 'and', 'glory.', 'Less', 'than', 'a', 'promise', 'have', 'I', 'given,', 'and', 'yet', 'more', 'generous', 'have', 'you', 'been', 'to', 'me.', 'You', 'have', 'given', 'me', 'my', 'deeper', 'thirsting', 'after', 'life.', 'Surely', 'there', 'is', 'no', 'greater', 'gift', 'to', 'a', 'man', 'than', 'that', 'which', 'turns', 'all', 'his', 'aims', 'into', 'parching', 'lips', 'and', 'all', 'life', 'into', 'a', 'fountain.', '[Illustration:', '0125]', '{99}And', 'in', 'this', 'lies', 'my', 'honour', 'and', 'my', 'reward,--', 'That', 'whenever', 'I', 'come', 'to', 'the', 'fountain', 'to', 'drink', 'I', 'find', 'the', 'living', 'water', 'itself', 'thirsty;', 'And', 'it', 'drinks', 'me', 'while', 'I', 'drink', 'it.', '*****', 'Some', 'of', 'you', 'have', 'deemed', 'me', 'proud', 'and', 'over-shy', 'to', 'receive', 'gifts.', 'Too', 'proud', 'indeed', 'am', 'I', 'to', 'receive', 'wages,', 'but', 'not', 'gifts.', 'And', 'though', 'I', 'have', 'eaten', 'berries', 'among', 'the', 'hills', 'when', 'you', 'would', 'have', 'had', 'me', 'sit', 'at', 'your', 'board,', 'And', 'slept', 'in', 'the', 'portico', 'of', 'the', 'temple', 'when', 'you', 'would', 'gladly', 'have', 'sheltered', 'me,', 'Yet', 'was', 'it', 'not', 'your', 'loving', 'mindfulness', 'of', 'my', 'days', 'and', 'my', 'nights', 'that', 'made', 'food', 'sweet', 'to', 'my', 'mouth', 'and', 'girdled', 'my', 'sleep', 'with', 'visions?', 'For', 'this', 'I', 'bless', 'you', 'most:', 'You', 'give', 'much', 'and', 'know', 'not', 'that', 'you', 'give', 'at', 'all.', '{100}Verily', 'the', 'kindness', 'that', 'gazes', 'upon', 'itself', 'in', 'a', 'mirror', 'turns', 'to', 'stone,', 'And', 'a', 'good', 'deed', 'that', 'calls', 'itself', 'by', 'tender', 'names', 'becomes', 'the', 'parent', 'to', 'a', 'curse.', '*****', 'And', 'some', 'of', 'you', 'have', 'called', 'me', 'aloof,', 'and', 'drunk', 'with', 'my', 'own', 'aloneness,', 'And', 'you', 'have', 'said,', '“He', 'holds', 'council', 'with', 'the', 'trees', 'of', 'the', 'forest,', 'but', 'not', 'with', 'men.', 'He', 'sits', 'alone', 'on', 'hill-tops', 'and', 'looks', 'down', 'upon', 'our', 'city.”', 'True', 'it', 'is', 'that', 'I', 'have', 'climbed', 'the', 'hills', 'and', 'walked', 'in', 'remote', 'places.', 'How', 'could', 'I', 'have', 'seen', 'you', 'save', 'from', 'a', 'great', 'height', 'or', 'a', 'great', 'distance?', 'How', 'can', 'one', 'be', 'indeed', 'near', 'unless', 'he', 'be', 'tar?', 'And', 'others', 'among', 'you', 'called', 'unto', 'me,', 'not', 'in', 'words,', 'and', 'they', 'said,', '“Stranger,', 'stranger,', 'lover', 'of', 'unreachable', 'heights,', 'why', 'dwell', 'you', 'among', 'the', 'summits', 'where', 'eagles', 'build', 'their', 'nests?', '{101}Why', 'seek', 'you', 'the', 'unattainable?', 'What', 'storms', 'would', 'you', 'trap', 'in', 'your', 'net,', 'And', 'what', 'vaporous', 'birds', 'do', 'you', 'hunt', 'in', 'the', 'sky?', 'Come', 'and', 'be', 'one', 'of', 'us.', 'Descend', 'and', 'appease', 'your', 'hunger', 'with', 'our', 'bread', 'and', 'quench', 'your', 'thirst', 'with', 'our', 'wine.”', 'In', 'the', 'solitude', 'of', 'their', 'souls', 'they', 'said', 'these', 'things;', 'But', 'were', 'their', 'solitude', 'deeper', 'they', 'would', 'have', 'known', 'that', 'I', 'sought', 'but', 'the', 'secret', 'of', 'your', 'joy', 'and', 'your', 'pain,', 'And', 'I', 'hunted', 'only', 'your', 'larger', 'selves', 'that', 'walk', 'the', 'sky.', '*****', 'But', 'the', 'hunter', 'was', 'also', 'the', 'hunted;', 'For', 'many', 'of', 'my', 'arrows', 'left', 'my', 'bow', 'only', 'to', 'seek', 'my', 'own', 'breast.', 'And', 'the', 'flier', 'was', 'also', 'the', 'creeper;', 'For', 'when', 'my', 'wings', 'were', 'spread', 'in', 'the', 'sun', 'their', 'shadow', 'upon', 'the', 'earth', 'was', 'a', 'turtle.', 'And', 'I', 'the', 'believer', 'was', 'also', 'the', 'doubter;', '{102}For', 'often', 'have', 'I', 'put', 'my', 'finger', 'in', 'my', 'own', 'wound', 'that', 'I', 'might', 'have', 'the', 'greater', 'belief', 'in', 'you', 'and', 'the', 'greater', 'knowledge', 'of', 'you.', '*****', 'And', 'it', 'is', 'with', 'this', 'belief', 'and', 'this', 'knowledge', 'that', 'I', 'say,', 'You', 'are', 'not', 'enclosed', 'within', 'your', 'bodies,', 'nor', 'confined', 'to', 'houses', 'or', 'fields.', 'That', 'which', 'is', 'you', 'dwells', 'above', 'the', 'mountain', 'and', 'roves', 'with', 'the', 'wind.', 'It', 'is', 'not', 'a', 'thing', 'that', 'crawls', 'into', 'the', 'sun', 'for', 'warmth', 'or', 'digs', 'holes', 'into', 'darkness', 'for', 'safety,', 'But', 'a', 'thing', 'free,', 'a', 'spirit', 'that', 'envelops', 'the', 'earth', 'and', 'moves', 'in', 'the', 'ether.', 'If', 'these', 'be', 'vague', 'words,', 'then', 'seek', 'not', 'to', 'clear', 'them.', 'Vague', 'and', 'nebulous', 'is', 'the', 'beginning', 'of', 'all', 'things,', 'but', 'not', 'their', 'end,', 'And', 'I', 'fain', 'would', 'have', 'you', 'remember', 'me', 'as', 'a', 'beginning.', 'Life,', 'and', 'all', 'that', 'lives,', 'is', 'conceived', 'in', 'the', 'mist', 'and', 'not', 'in', 'the', 'crystal.', '{103}And', 'who', 'knows', 'but', 'a', 'crystal', 'is', 'mist', 'in', 'decay?', '*****', 'This', 'would', 'I', 'have', 'you', 'remember', 'in', 'remembering', 'me:', 'That', 'which', 'seems', 'most', 'feeble', 'and', 'bewildered', 'in', 'you', 'is', 'the', 'strongest', 'and', 'most', 'determined.', 'Is', 'it', 'not', 'your', 'breath', 'that', 'has', 'erected', 'and', 'hardened', 'the', 'structure', 'of', 'your', 'bones?', 'And', 'is', 'it', 'not', 'a', 'dream', 'which', 'none', 'of', 'you', 'remember', 'having', 'dreamt,', 'that', 'builded', 'your', 'city', 'and', 'fashioned', 'all', 'there', 'is', 'in', 'it?', 'Could', 'you', 'but', 'see', 'the', 'tides', 'of', 'that', 'breath', 'you', 'would', 'cease', 'to', 'see', 'all', 'else,', 'And', 'if', 'you', 'could', 'hear', 'the', 'whispering', 'of', 'the', 'dream', 'you', 'would', 'hear', 'no', 'other', 'sound.', 'But', 'you', 'do', 'not', 'see,', 'nor', 'do', 'you', 'hear,', 'and', 'it', 'is', 'well.', 'The', 'veil', 'that', 'clouds', 'your', 'eyes', 'shall', 'be', 'lifted', 'by', 'the', 'hands', 'that', 'wove', 'it,', 'And', 'the', 'clay', 'that', 'fills', 'your', 'ears', 'shall', 'be', 'pierced', 'by', 'those', 'fingers', 'that', 'kneaded', 'it.', '{104}And', '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', 'the', 'hidden', 'purposes', 'in', 'all', 'things,', 'And', 'you', 'shall', 'bless', 'darkness', 'as', 'you', 'would', 'bless', 'light.', 'After', 'saying', 'these', 'things', 'he', 'looked', 'about', 'him,', 'and', 'he', 'saw', 'the', 'pilot', 'of', 'his', 'ship', 'standing', 'by', 'the', 'helm', 'and', 'gazing', 'now', 'at', 'the', 'full', 'sails', 'and', 'now', 'at', 'the', 'distance.', 'And', 'he', 'said:', 'Patient,', 'over', 'patient,', 'is', 'the', 'captain', 'of', 'my', 'ship.', 'The', 'wind', 'blows,', 'and', 'restless', 'are', 'the', 'sails;', 'Even', 'the', 'rudder', 'begs', 'direction;', 'Yet', 'quietly', 'my', 'captain', 'awaits', 'my', 'silence.', 'And', 'these', 'my', 'mariners,', 'who', 'have', 'heard', 'the', 'choir', 'of', 'the', 'greater', 'sea,', 'they', 'too', 'have', 'heard', 'me', 'patiently.', '{105}Now', 'they', 'shall', 'wait', 'no', 'longer.', 'I', 'am', 'ready.', 'The', 'stream', 'has', 'reached', 'the', 'sea,', 'and', 'once', 'more', 'the', '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', 'the', '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', 'and', 'together', 'stretch', 'our', 'hands', 'unto', 'the', 'giver.', 'Forget', 'not', 'that', 'I', 'shall', 'come', 'back', 'to', 'you.', 'A', 'little', 'while,', 'and', 'my', 'longing', 'shall', 'gather', 'dust', 'and', 'foam', 'for', 'another', 'body.', 'A', 'little', 'while,', 'a', 'moment', 'of', 'rest', 'upon', 'the', 'wind,', 'and', 'another', 'woman', 'shall', 'bear', 'me.', 'Farewell', 'to', 'you', 'and', 'the', 'youth', 'I', 'have', 'spent', 'with', 'you.', 'It', 'was', 'but', 'yesterday', 'we', 'met', 'in', 'a', 'dream.', '{106}You', 'have', 'sung', 'to', 'me', 'in', 'my', 'aloneness,', 'and', 'I', 'of', 'your', 'longings', 'have', 'built', 'a', 'tower', 'in', 'the', 'sky.', 'But', 'now', 'our', 'sleep', 'has', 'fled', 'and', 'our', 'dream', 'is', 'over,', 'and', 'it', 'is', 'no', 'longer', 'dawn.', 'The', 'noontide', 'is', 'upon', 'us', 'and', 'our', 'half', 'waking', 'has', 'turned', 'to', 'fuller', 'day,', 'and', 'we', 'must', 'part.', 'If', 'in', 'the', 'twilight', 'of', 'memory', 'we', 'should', 'meet', 'once', 'more,', 'we', 'shall', 'speak', 'again', 'together', 'and', 'you', 'shall', 'sing', 'to', 'me', 'a', 'deeper', 'song.', 'And', 'if', 'our', 'hands', 'should', 'meet', 'in', 'another', 'dream', 'we', 'shall', 'build', 'another', 'tower', 'in', 'the', 'sky.', '*****', 'So', 'saying', 'he', 'made', 'a', 'signal', 'to', 'the', 'seamen,', 'and', 'straightway', 'they', 'weighed', 'anchor', 'and', 'cast', 'the', 'ship', 'loose', 'from', 'its', 'moorings,', 'and', 'they', 'moved', 'eastward.', 'And', 'a', 'cry', 'came', 'from', 'the', 'people', 'as', 'from', 'a', 'single', 'heart,', 'and', 'it', 'rose', 'into', 'the', 'dusk', 'and', 'was', 'carried', 'out', 'over', 'the', 'sea', 'like', 'a', 'great', 'trumpeting.', 'Only', 'Almitra', 'was', 'silent,', 'gazing', 'after', '{107}the', 'ship', 'until', 'it', 'had', 'vanished', 'into', 'the', 'mist.', 'And', 'when', 'all', 'the', 'people', 'were', 'dispersed', 'she', 'still', 'stood', 'alone', 'upon', 'the', 'sea-wall,', 'remembering', 'in', 'her', 'heart', 'his', 'saying,', '“A', 'little', 'while,', 'a', 'moment', 'of', 'rest', 'upon', 'the', 'wind,', 'and', 'another', 'woman', 'shall', 'bear', 'me.”', '[Illustration:', '0134]', 'End', 'of', 'the', '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', 'and', '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', 'the', 'Internet', 'Archive', 'Updated', 'editions', 'will', 'replace', 'the', 'previous', 'one--the', 'old', 'editions', 'will', 'be', 'renamed.', 'Creating', 'the', 'works', 'from', 'print', 'editions', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', 'means', 'that', 'no', 'one', 'owns', 'a', 'United', 'States', 'copyright', 'in', 'these', 'works,', 'so', 'the', 'Foundation', '(and', 'you!)', 'can', 'copy', 'and', 'distribute', 'it', 'in', 'the', 'United', 'States', 'without', 'permission', 'and', 'without', 'paying', 'copyright', 'royalties.', 'Special', 'rules,', 'set', 'forth', 'in', 'the', 'General', 'Terms', 'of', 'Use', 'part', 'of', 'this', 'license,', 'apply', 'to', 'copying', 'and', 'distributing', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'to', 'protect', 'the', 'PROJECT', 'GUTENBERG-tm', 'concept', 'and', 'trademark.', 'Project', 'Gutenberg', 'is', 'a', 'registered', 'trademark,', 'and', 'may', 'not', 'be', 'used', 'if', 'you', 'charge', 'for', 'the', 'eBooks,', 'unless', 'you', 'receive', 'specific', 'permission.', 'If', 'you', 'do', 'not', 'charge', 'anything', 'for', 'copies', 'of', 'this', 'eBook,', 'complying', 'with', 'the', 'rules', 'is', 'very', 'easy.', 'You', 'may', 'use', 'this', 'eBook', 'for', 'nearly', 'any', 'purpose', 'such', 'as', 'creation', 'of', 'derivative', 'works,', 'reports,', 'performances', 'and', 'research.', 'They', 'may', 'be', 'modified', 'and', 'printed', 'and', 'given', 'away--you', 'may', 'do', 'practically', 'ANYTHING', 'in', 'the', 'United', 'States', 'with', 'eBooks', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law.', 'Redistribution', 'is', 'subject', 'to', 'the', 'trademark', 'license,', 'especially', 'commercial', 'redistribution.', 'START:', 'FULL', 'LICENSE', 'THE', 'FULL', 'PROJECT', 'GUTENBERG', 'LICENSE', 'PLEASE', 'READ', 'THIS', 'BEFORE', 'YOU', 'DISTRIBUTE', 'OR', 'USE', 'THIS', 'WORK', 'To', 'protect', 'the', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting', 'the', 'free', 'distribution', 'of', 'electronic', 'works,', 'by', 'using', 'or', 'distributing', 'this', 'work', '(or', 'any', 'other', 'work', 'associated', 'in', 'any', 'way', 'with', 'the', 'phrase', '\"Project', 'Gutenberg\"),', 'you', 'agree', 'to', 'comply', 'with', 'all', 'the', 'terms', 'of', 'the', 'Full', 'Project', 'Gutenberg-tm', 'License', 'available', 'with', 'this', 'file', 'or', 'online', 'at', 'www.gutenberg.org/license.', 'Section', '1.', 'General', 'Terms', 'of', 'Use', 'and', 'Redistributing', 'Project', 'Gutenberg-tm', 'electronic', 'works', '1.A.', 'By', 'reading', 'or', 'using', 'any', 'part', 'of', 'this', 'Project', 'Gutenberg-tm', 'electronic', 'work,', 'you', 'indicate', 'that', 'you', 'have', 'read,', 'understand,', 'agree', 'to', 'and', 'accept', 'all', 'the', 'terms', 'of', 'this', 'license', 'and', 'intellectual', 'property', '(trademark/copyright)', 'agreement.', 'If', 'you', 'do', 'not', 'agree', 'to', 'abide', 'by', 'all', 'the', 'terms', 'of', 'this', 'agreement,', 'you', 'must', 'cease', 'using', 'and', 'return', 'or', 'destroy', 'all', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in', 'your', 'possession.', 'If', 'you', 'paid', 'a', 'fee', 'for', 'obtaining', 'a', 'copy', 'of', 'or', 'access', 'to', 'a', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'and', 'you', 'do', 'not', 'agree', 'to', 'be', 'bound', 'by', 'the', 'terms', 'of', 'this', 'agreement,', 'you', 'may', 'obtain', 'a', 'refund', 'from', 'the', 'person', 'or', 'entity', 'to', 'whom', 'you', 'paid', 'the', 'fee', 'as', 'set', 'forth', 'in', 'paragraph', '1.E.8.', '1.B.', '\"Project', 'Gutenberg\"', 'is', 'a', 'registered', 'trademark.', 'It', 'may', 'only', 'be', 'used', 'on', 'or', 'associated', 'in', 'any', 'way', 'with', 'an', 'electronic', 'work', 'by', 'people', 'who', 'agree', 'to', 'be', 'bound', 'by', 'the', 'terms', 'of', 'this', 'agreement.', 'There', 'are', 'a', 'few', 'things', 'that', 'you', 'can', 'do', 'with', 'most', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'even', 'without', 'complying', 'with', 'the', 'full', 'terms', 'of', 'this', 'agreement.', 'See', 'paragraph', '1.C', 'below.', 'There', 'are', 'a', 'lot', 'of', 'things', 'you', 'can', 'do', 'with', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'if', 'you', 'follow', 'the', 'terms', 'of', 'this', 'agreement', 'and', 'help', 'preserve', 'free', 'future', 'access', 'to', 'Project', 'Gutenberg-tm', 'electronic', 'works.', 'See', 'paragraph', '1.E', 'below.', '1.C.', 'The', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', '(\"the', 'Foundation\"', 'or', 'PGLAF),', 'owns', 'a', 'compilation', 'copyright', 'in', 'the', 'collection', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works.', 'Nearly', 'all', 'the', 'individual', 'works', 'in', 'the', 'collection', 'are', 'in', 'the', 'public', 'domain', 'in', 'the', 'United', 'States.', 'If', 'an', 'individual', 'work', 'is', 'unprotected', 'by', 'copyright', 'law', 'in', 'the', 'United', 'States', 'and', 'you', 'are', 'located', 'in', 'the', 'United', 'States,', 'we', 'do', 'not', 'claim', 'a', 'right', 'to', 'prevent', 'you', 'from', 'copying,', 'distributing,', 'performing,', 'displaying', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'the', 'work', 'as', 'long', 'as', 'all', 'references', 'to', 'Project', 'Gutenberg', 'are', 'removed.', 'Of', 'course,', 'we', 'hope', 'that', 'you', 'will', 'support', 'the', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting', 'free', 'access', 'to', 'electronic', 'works', 'by', 'freely', 'sharing', 'Project', 'Gutenberg-tm', 'works', 'in', 'compliance', 'with', 'the', 'terms', 'of', 'this', 'agreement', 'for', 'keeping', 'the', 'Project', 'Gutenberg-tm', 'name', 'associated', 'with', 'the', 'work.', 'You', 'can', 'easily', 'comply', 'with', 'the', 'terms', 'of', 'this', 'agreement', 'by', 'keeping', 'this', 'work', 'in', 'the', 'same', 'format', 'with', 'its', 'attached', 'full', 'Project', 'Gutenberg-tm', 'License', 'when', 'you', 'share', 'it', 'without', 'charge', 'with', 'others.', '1.D.', 'The', 'copyright', 'laws', 'of', 'the', 'place', 'where', 'you', 'are', 'located', 'also', 'govern', 'what', 'you', 'can', 'do', 'with', 'this', 'work.', 'Copyright', 'laws', 'in', 'most', 'countries', 'are', 'in', 'a', 'constant', 'state', 'of', 'change.', 'If', 'you', 'are', 'outside', 'the', 'United', 'States,', 'check', 'the', 'laws', 'of', 'your', 'country', 'in', 'addition', 'to', 'the', 'terms', 'of', 'this', 'agreement', 'before', 'downloading,', 'copying,', 'displaying,', 'performing,', 'distributing', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'this', 'work', 'or', 'any', 'other', 'Project', 'Gutenberg-tm', 'work.', 'The', 'Foundation', 'makes', 'no', 'representations', 'concerning', 'the', 'copyright', 'status', 'of', 'any', 'work', 'in', 'any', 'country', 'outside', 'the', 'United', 'States.', '1.E.', 'Unless', 'you', 'have', 'removed', 'all', 'references', 'to', 'Project', 'Gutenberg:', '1.E.1.', 'The', 'following', 'sentence,', 'with', 'active', 'links', 'to,', 'or', 'other', 'immediate', 'access', 'to,', 'the', 'full', 'Project', 'Gutenberg-tm', 'License', 'must', 'appear', 'prominently', 'whenever', 'any', 'copy', 'of', 'a', 'Project', 'Gutenberg-tm', 'work', '(any', 'work', 'on', 'which', 'the', 'phrase', '\"Project', 'Gutenberg\"', 'appears,', 'or', 'with', 'which', 'the', 'phrase', '\"Project', 'Gutenberg\"', 'is', 'associated)', 'is', 'accessed,', 'displayed,', 'performed,', 'viewed,', 'copied', 'or', 'distributed:', 'This', 'eBook', 'is', 'for', 'the', 'use', 'of', 'anyone', 'anywhere', 'in', 'the', 'United', 'States', 'and', 'most', 'other', 'parts', 'of', 'the', 'world', 'at', 'no', 'cost', 'and', 'with', 'almost', 'no', 'restrictions', 'whatsoever.', 'You', 'may', 'copy', 'it,', 'give', 'it', 'away', 'or', 're-use', 'it', 'under', 'the', 'terms', 'of', 'the', 'Project', 'Gutenberg', 'License', 'included', 'with', 'this', 'eBook', 'or', 'online', 'at', 'www.gutenberg.org.', 'If', 'you', 'are', 'not', 'located', 'in', 'the', 'United', 'States,', \"you'll\", 'have', 'to', 'check', 'the', 'laws', 'of', 'the', 'country', 'where', 'you', 'are', 'located', 'before', 'using', 'this', 'ebook.', '1.E.2.', 'If', 'an', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is', 'derived', 'from', 'texts', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', '(does', 'not', 'contain', 'a', 'notice', 'indicating', 'that', 'it', 'is', 'posted', 'with', 'permission', 'of', 'the', 'copyright', 'holder),', 'the', 'work', 'can', 'be', 'copied', 'and', 'distributed', 'to', 'anyone', 'in', 'the', 'United', 'States', 'without', 'paying', 'any', 'fees', 'or', 'charges.', 'If', 'you', 'are', 'redistributing', 'or', 'providing', 'access', 'to', 'a', 'work', 'with', 'the', 'phrase', '\"Project', 'Gutenberg\"', 'associated', 'with', 'or', 'appearing', 'on', 'the', 'work,', 'you', 'must', 'comply', 'either', 'with', 'the', 'requirements', 'of', 'paragraphs', '1.E.1', 'through', '1.E.7', 'or', 'obtain', 'permission', 'for', 'the', 'use', 'of', 'the', 'work', 'and', 'the', 'Project', 'Gutenberg-tm', 'trademark', 'as', 'set', 'forth', 'in', 'paragraphs', '1.E.8', 'or', '1.E.9.', '1.E.3.', 'If', 'an', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is', 'posted', 'with', 'the', 'permission', 'of', 'the', 'copyright', 'holder,', 'your', 'use', 'and', 'distribution', 'must', 'comply', 'with', 'both', 'paragraphs', '1.E.1', 'through', '1.E.7', 'and', 'any', 'additional', 'terms', 'imposed', 'by', 'the', 'copyright', 'holder.', 'Additional', 'terms', 'will', 'be', 'linked', 'to', 'the', 'Project', 'Gutenberg-tm', 'License', 'for', 'all', 'works', 'posted', 'with', 'the', 'permission', 'of', 'the', 'copyright', 'holder', 'found', 'at', 'the', 'beginning', 'of', 'this', 'work.', '1.E.4.', 'Do', 'not', 'unlink', 'or', 'detach', 'or', 'remove', 'the', 'full', 'Project', 'Gutenberg-tm', 'License', 'terms', 'from', 'this', 'work,', 'or', 'any', 'files', 'containing', 'a', 'part', 'of', 'this', 'work', 'or', 'any', 'other', 'work', 'associated', 'with', 'Project', 'Gutenberg-tm.', '1.E.5.', 'Do', 'not', 'copy,', 'display,', 'perform,', 'distribute', 'or', 'redistribute', 'this', 'electronic', 'work,', 'or', 'any', 'part', 'of', 'this', 'electronic', 'work,', 'without', 'prominently', 'displaying', 'the', 'sentence', 'set', 'forth', 'in', 'paragraph', '1.E.1', 'with', 'active', 'links', 'or', 'immediate', 'access', 'to', 'the', 'full', 'terms', 'of', 'the', 'Project', 'Gutenberg-tm', 'License.', '1.E.6.', 'You', 'may', 'convert', 'to', 'and', 'distribute', 'this', 'work', 'in', 'any', 'binary,', 'compressed,', 'marked', 'up,', 'nonproprietary', 'or', 'proprietary', 'form,', 'including', 'any', 'word', 'processing', 'or', 'hypertext', 'form.', 'However,', 'if', 'you', 'provide', 'access', 'to', 'or', 'distribute', 'copies', 'of', 'a', 'Project', 'Gutenberg-tm', 'work', 'in', 'a', 'format', 'other', 'than', '\"Plain', 'Vanilla', 'ASCII\"', 'or', 'other', 'format', 'used', 'in', 'the', 'official', 'version', 'posted', 'on', 'the', 'official', 'Project', 'Gutenberg-tm', 'web', 'site', '(www.gutenberg.org),', 'you', 'must,', 'at', 'no', 'additional', 'cost,', 'fee', 'or', 'expense', 'to', 'the', 'user,', 'provide', 'a', 'copy,', 'a', 'means', 'of', 'exporting', 'a', 'copy,', 'or', 'a', 'means', 'of', 'obtaining', 'a', 'copy', 'upon', 'request,', 'of', 'the', 'work', 'in', 'its', 'original', '\"Plain', 'Vanilla', 'ASCII\"', 'or', 'other', 'form.', 'Any', 'alternate', 'format', 'must', 'include', 'the', 'full', 'Project', 'Gutenberg-tm', 'License', 'as', 'specified', 'in', 'paragraph', '1.E.1.', '1.E.7.', 'Do', 'not', 'charge', 'a', 'fee', 'for', 'access', 'to,', 'viewing,', 'displaying,', 'performing,', 'copying', 'or', 'distributing', 'any', 'Project', 'Gutenberg-tm', 'works', 'unless', 'you', 'comply', 'with', 'paragraph', '1.E.8', 'or', '1.E.9.', '1.E.8.', 'You', 'may', 'charge', 'a', 'reasonable', 'fee', 'for', 'copies', 'of', 'or', 'providing', 'access', 'to', 'or', 'distributing', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'provided', 'that', '*', 'You', 'pay', 'a', 'royalty', 'fee', 'of', '20%', 'of', 'the', 'gross', 'profits', 'you', 'derive', 'from', 'the', 'use', 'of', 'Project', 'Gutenberg-tm', 'works', 'calculated', 'using', 'the', 'method', 'you', 'already', 'use', 'to', 'calculate', 'your', 'applicable', 'taxes.', 'The', 'fee', 'is', 'owed', 'to', 'the', 'owner', 'of', 'the', 'Project', 'Gutenberg-tm', 'trademark,', 'but', 'he', 'has', 'agreed', 'to', 'donate', 'royalties', 'under', 'this', 'paragraph', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation.', 'Royalty', 'payments', 'must', 'be', 'paid', 'within', '60', 'days', 'following', 'each', 'date', 'on', 'which', 'you', 'prepare', '(or', 'are', 'legally', 'required', 'to', 'prepare)', 'your', 'periodic', 'tax', 'returns.', 'Royalty', 'payments', 'should', 'be', 'clearly', 'marked', 'as', 'such', 'and', 'sent', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'at', 'the', 'address', 'specified', 'in', 'Section', '4,', '\"Information', 'about', 'donations', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation.\"', '*', 'You', 'provide', 'a', 'full', 'refund', 'of', 'any', 'money', 'paid', 'by', 'a', 'user', 'who', 'notifies', 'you', 'in', 'writing', '(or', 'by', 'e-mail)', 'within', '30', 'days', 'of', 'receipt', 'that', 's/he', 'does', 'not', 'agree', 'to', 'the', 'terms', 'of', 'the', 'full', 'Project', 'Gutenberg-tm', 'License.', 'You', 'must', 'require', 'such', 'a', 'user', 'to', 'return', 'or', 'destroy', 'all', 'copies', 'of', 'the', 'works', 'possessed', 'in', 'a', 'physical', 'medium', 'and', 'discontinue', 'all', 'use', 'of', 'and', 'all', 'access', 'to', 'other', 'copies', 'of', 'Project', 'Gutenberg-tm', 'works.', '*', 'You', 'provide,', 'in', 'accordance', 'with', 'paragraph', '1.F.3,', 'a', 'full', 'refund', 'of', 'any', 'money', 'paid', 'for', 'a', 'work', 'or', 'a', 'replacement', 'copy,', 'if', 'a', 'defect', 'in', 'the', 'electronic', 'work', 'is', 'discovered', 'and', 'reported', 'to', 'you', 'within', '90', 'days', 'of', 'receipt', 'of', 'the', 'work.', '*', 'You', 'comply', 'with', 'all', 'other', 'terms', 'of', 'this', 'agreement', 'for', 'free', 'distribution', 'of', 'Project', 'Gutenberg-tm', 'works.', '1.E.9.', 'If', 'you', 'wish', 'to', 'charge', 'a', 'fee', 'or', 'distribute', 'a', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'or', 'group', 'of', 'works', 'on', 'different', 'terms', 'than', 'are', 'set', 'forth', 'in', 'this', 'agreement,', 'you', 'must', 'obtain', 'permission', 'in', 'writing', 'from', 'both', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'and', 'The', 'Project', 'Gutenberg', 'Trademark', 'LLC,', 'the', 'owner', 'of', 'the', 'Project', 'Gutenberg-tm', 'trademark.', 'Contact', 'the', 'Foundation', 'as', 'set', 'forth', 'in', 'Section', '3', 'below.', '1.F.', '1.F.1.', 'Project', 'Gutenberg', 'volunteers', 'and', 'employees', 'expend', 'considerable', 'effort', 'to', 'identify,', 'do', 'copyright', 'research', 'on,', 'transcribe', 'and', 'proofread', 'works', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', 'in', 'creating', 'the', 'Project', 'Gutenberg-tm', 'collection.', 'Despite', 'these', 'efforts,', 'Project', 'Gutenberg-tm', 'electronic', 'works,', 'and', 'the', 'medium', 'on', 'which', 'they', 'may', 'be', 'stored,', 'may', 'contain', '\"Defects,\"', 'such', 'as,', 'but', 'not', 'limited', 'to,', 'incomplete,', 'inaccurate', 'or', 'corrupt', 'data,', 'transcription', 'errors,', 'a', 'copyright', 'or', 'other', 'intellectual', 'property', 'infringement,', 'a', 'defective', 'or', 'damaged', 'disk', 'or', 'other', 'medium,', 'a', 'computer', 'virus,', 'or', 'computer', 'codes', 'that', 'damage', 'or', 'cannot', 'be', 'read', 'by', 'your', 'equipment.', '1.F.2.', 'LIMITED', 'WARRANTY,', 'DISCLAIMER', 'OF', 'DAMAGES', '-', 'Except', 'for', 'the', '\"Right', 'of', 'Replacement', 'or', 'Refund\"', 'described', 'in', 'paragraph', '1.F.3,', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation,', 'the', 'owner', 'of', 'the', 'Project', 'Gutenberg-tm', 'trademark,', 'and', 'any', 'other', 'party', 'distributing', 'a', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'under', 'this', 'agreement,', 'disclaim', 'all', 'liability', 'to', 'you', 'for', 'damages,', 'costs', 'and', 'expenses,', 'including', 'legal', 'fees.', 'YOU', 'AGREE', 'THAT', 'YOU', 'HAVE', 'NO', 'REMEDIES', 'FOR', 'NEGLIGENCE,', 'STRICT', 'LIABILITY,', 'BREACH', 'OF', 'WARRANTY', 'OR', 'BREACH', 'OF', 'CONTRACT', 'EXCEPT', 'THOSE', 'PROVIDED', 'IN', 'PARAGRAPH', '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', 'a', 'defect', 'in', 'this', 'electronic', 'work', 'within', '90', 'days', 'of', 'receiving', 'it,', 'you', 'can', 'receive', 'a', 'refund', 'of', 'the', 'money', '(if', 'any)', 'you', 'paid', 'for', 'it', 'by', 'sending', 'a', 'written', 'explanation', 'to', 'the', 'person', 'you', 'received', 'the', 'work', 'from.', 'If', 'you', 'received', 'the', 'work', 'on', 'a', 'physical', 'medium,', 'you', 'must', 'return', 'the', 'medium', 'with', 'your', 'written', 'explanation.', 'The', 'person', 'or', 'entity', 'that', 'provided', 'you', 'with', 'the', 'defective', 'work', 'may', 'elect', 'to', 'provide', 'a', 'replacement', 'copy', 'in', 'lieu', 'of', 'a', 'refund.', 'If', 'you', 'received', 'the', 'work', 'electronically,', 'the', 'person', 'or', 'entity', 'providing', 'it', 'to', 'you', 'may', 'choose', 'to', 'give', 'you', 'a', 'second', 'opportunity', 'to', 'receive', 'the', 'work', 'electronically', 'in', 'lieu', 'of', 'a', 'refund.', 'If', 'the', 'second', 'copy', 'is', 'also', 'defective,', 'you', 'may', 'demand', 'a', 'refund', 'in', 'writing', 'without', 'further', 'opportunities', 'to', 'fix', 'the', 'problem.', '1.F.4.', 'Except', 'for', 'the', 'limited', 'right', 'of', 'replacement', 'or', 'refund', 'set', 'forth', 'in', 'paragraph', '1.F.3,', 'this', 'work', 'is', 'provided', 'to', 'you', \"'AS-IS',\", 'WITH', 'NO', 'OTHER', 'WARRANTIES', 'OF', 'ANY', 'KIND,', 'EXPRESS', 'OR', 'IMPLIED,', 'INCLUDING', 'BUT', 'NOT', 'LIMITED', 'TO', 'WARRANTIES', 'OF', 'MERCHANTABILITY', 'OR', 'FITNESS', 'FOR', 'ANY', 'PURPOSE.', '1.F.5.', 'Some', 'states', 'do', 'not', 'allow', 'disclaimers', 'of', 'certain', 'implied', 'warranties', 'or', 'the', 'exclusion', 'or', 'limitation', 'of', 'certain', 'types', 'of', 'damages.', 'If', 'any', 'disclaimer', 'or', 'limitation', 'set', 'forth', 'in', 'this', 'agreement', 'violates', 'the', 'law', 'of', 'the', 'state', 'applicable', 'to', 'this', 'agreement,', 'the', 'agreement', 'shall', 'be', 'interpreted', 'to', 'make', 'the', 'maximum', 'disclaimer', 'or', 'limitation', 'permitted', 'by', 'the', 'applicable', 'state', 'law.', 'The', 'invalidity', 'or', 'unenforceability', 'of', 'any', 'provision', 'of', 'this', 'agreement', 'shall', 'not', 'void', 'the', 'remaining', 'provisions.', '1.F.6.', 'INDEMNITY', '-', 'You', 'agree', 'to', 'indemnify', 'and', 'hold', 'the', 'Foundation,', 'the', 'trademark', 'owner,', 'any', 'agent', 'or', 'employee', 'of', 'the', 'Foundation,', 'anyone', 'providing', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in', 'accordance', 'with', 'this', 'agreement,', 'and', 'any', 'volunteers', 'associated', 'with', 'the', 'production,', 'promotion', 'and', 'distribution', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works,', 'harmless', 'from', 'all', 'liability,', 'costs', 'and', 'expenses,', 'including', 'legal', 'fees,', 'that', 'arise', 'directly', 'or', 'indirectly', 'from', 'any', 'of', 'the', 'following', 'which', 'you', 'do', 'or', 'cause', 'to', 'occur:', '(a)', 'distribution', 'of', 'this', 'or', 'any', 'Project', 'Gutenberg-tm', 'work,', '(b)', 'alteration,', 'modification,', 'or', 'additions', 'or', 'deletions', 'to', 'any', 'Project', 'Gutenberg-tm', 'work,', 'and', '(c)', 'any', 'Defect', 'you', 'cause.', 'Section', '2.', 'Information', 'about', 'the', 'Mission', 'of', 'Project', 'Gutenberg-tm', 'Project', 'Gutenberg-tm', 'is', 'synonymous', 'with', 'the', 'free', 'distribution', 'of', 'electronic', 'works', 'in', 'formats', 'readable', 'by', 'the', 'widest', 'variety', 'of', 'computers', 'including', 'obsolete,', 'old,', 'middle-aged', 'and', 'new', 'computers.', 'It', 'exists', 'because', 'of', 'the', 'efforts', 'of', 'hundreds', 'of', 'volunteers', 'and', 'donations', 'from', 'people', 'in', 'all', 'walks', 'of', 'life.', 'Volunteers', 'and', 'financial', 'support', 'to', 'provide', 'volunteers', 'with', 'the', 'assistance', 'they', 'need', 'are', 'critical', 'to', 'reaching', 'Project', \"Gutenberg-tm's\", 'goals', 'and', 'ensuring', 'that', 'the', 'Project', 'Gutenberg-tm', 'collection', 'will', 'remain', 'freely', 'available', 'for', 'generations', 'to', 'come.', 'In', '2001,', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'was', 'created', 'to', 'provide', 'a', 'secure', 'and', 'permanent', 'future', 'for', 'Project', 'Gutenberg-tm', 'and', 'future', 'generations.', 'To', 'learn', 'more', 'about', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'and', 'how', 'your', 'efforts', 'and', 'donations', 'can', 'help,', 'see', 'Sections', '3', 'and', '4', 'and', 'the', 'Foundation', 'information', 'page', 'at', 'www.gutenberg.org', 'Section', '3.', 'Information', 'about', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'The', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'is', 'a', 'non', 'profit', '501(c)(3)', 'educational', 'corporation', 'organized', 'under', 'the', 'laws', 'of', 'the', 'state', 'of', 'Mississippi', 'and', 'granted', 'tax', 'exempt', 'status', 'by', 'the', 'Internal', 'Revenue', 'Service.', 'The', \"Foundation's\", 'EIN', 'or', 'federal', 'tax', 'identification', 'number', 'is', '64-6221541.', 'Contributions', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'are', 'tax', 'deductible', 'to', 'the', 'full', 'extent', 'permitted', 'by', 'U.S.', 'federal', 'laws', 'and', 'your', \"state's\", 'laws.', 'The', \"Foundation's\", 'principal', 'office', 'is', 'in', 'Fairbanks,', 'Alaska,', 'with', 'the', 'mailing', 'address:', 'PO', 'Box', '750175,', 'Fairbanks,', 'AK', '99775,', 'but', 'its', 'volunteers', 'and', 'employees', 'are', 'scattered', 'throughout', 'numerous', 'locations.', 'Its', 'business', 'office', 'is', 'located', 'at', '809', 'North', '1500', 'West,', 'Salt', 'Lake', 'City,', 'UT', '84116,', '(801)', '596-1887.', 'Email', 'contact', 'links', 'and', 'up', 'to', 'date', 'contact', 'information', 'can', 'be', 'found', 'at', 'the', \"Foundation's\", 'web', 'site', 'and', 'official', 'page', 'at', 'www.gutenberg.org/contact', 'For', 'additional', 'contact', 'information:', 'Dr.', 'Gregory', 'B.', 'Newby', 'Chief', 'Executive', 'and', 'Director', 'gbnewby@pglaf.org', 'Section', '4.', 'Information', 'about', 'Donations', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'Project', 'Gutenberg-tm', 'depends', 'upon', 'and', 'cannot', 'survive', 'without', 'wide', 'spread', 'public', 'support', 'and', 'donations', 'to', 'carry', 'out', 'its', 'mission', 'of', 'increasing', 'the', 'number', 'of', 'public', 'domain', 'and', 'licensed', 'works', 'that', 'can', 'be', 'freely', 'distributed', 'in', 'machine', 'readable', 'form', 'accessible', 'by', 'the', 'widest', 'array', 'of', 'equipment', 'including', 'outdated', 'equipment.', 'Many', 'small', 'donations', '($1', 'to', '$5,000)', 'are', 'particularly', 'important', 'to', 'maintaining', 'tax', 'exempt', 'status', 'with', 'the', 'IRS.', 'The', 'Foundation', 'is', 'committed', 'to', 'complying', 'with', 'the', 'laws', 'regulating', 'charities', 'and', 'charitable', 'donations', 'in', 'all', '50', 'states', 'of', 'the', 'United', 'States.', 'Compliance', 'requirements', 'are', 'not', 'uniform', 'and', 'it', 'takes', 'a', 'considerable', 'effort,', 'much', 'paperwork', 'and', 'many', 'fees', 'to', 'meet', 'and', 'keep', 'up', 'with', 'these', 'requirements.', 'We', 'do', 'not', 'solicit', 'donations', 'in', 'locations', 'where', 'we', 'have', 'not', 'received', 'written', 'confirmation', 'of', 'compliance.', 'To', 'SEND', 'DONATIONS', 'or', 'determine', 'the', 'status', 'of', 'compliance', 'for', 'any', 'particular', 'state', 'visit', 'www.gutenberg.org/donate', 'While', 'we', 'cannot', 'and', 'do', 'not', 'solicit', 'contributions', 'from', 'states', 'where', 'we', 'have', 'not', 'met', 'the', 'solicitation', 'requirements,', 'we', 'know', 'of', 'no', 'prohibition', 'against', 'accepting', 'unsolicited', 'donations', 'from', 'donors', 'in', 'such', 'states', 'who', 'approach', 'us', 'with', 'offers', 'to', 'donate.', 'International', 'donations', 'are', 'gratefully', 'accepted,', 'but', 'we', 'cannot', 'make', 'any', 'statements', 'concerning', 'tax', 'treatment', 'of', 'donations', 'received', 'from', 'outside', 'the', 'United', 'States.', 'U.S.', 'laws', 'alone', 'swamp', 'our', 'small', 'staff.', 'Please', 'check', 'the', 'Project', 'Gutenberg', 'Web', 'pages', 'for', 'current', 'donation', 'methods', 'and', 'addresses.', 'Donations', 'are', 'accepted', 'in', 'a', 'number', 'of', 'other', 'ways', 'including', 'checks,', 'online', 'payments', 'and', 'credit', 'card', 'donations.', 'To', 'donate,', 'please', 'visit:', 'www.gutenberg.org/donate', 'Section', '5.', 'General', 'Information', 'About', 'Project', 'Gutenberg-tm', 'electronic', 'works.', 'Professor', 'Michael', 'S.', 'Hart', 'was', 'the', 'originator', 'of', 'the', 'Project', 'Gutenberg-tm', 'concept', 'of', 'a', 'library', 'of', 'electronic', 'works', 'that', 'could', 'be', 'freely', 'shared', 'with', 'anyone.', 'For', 'forty', 'years,', 'he', 'produced', 'and', 'distributed', 'Project', 'Gutenberg-tm', 'eBooks', 'with', 'only', 'a', 'loose', 'network', 'of', 'volunteer', 'support.', 'Project', 'Gutenberg-tm', 'eBooks', 'are', 'often', 'created', 'from', 'several', 'printed', 'editions,', 'all', 'of', 'which', 'are', 'confirmed', 'as', 'not', 'protected', 'by', 'copyright', 'in', 'the', 'U.S.', 'unless', 'a', 'copyright', 'notice', 'is', 'included.', 'Thus,', 'we', 'do', 'not', 'necessarily', 'keep', 'eBooks', 'in', 'compliance', 'with', 'any', 'particular', 'paper', 'edition.', 'Most', 'people', 'start', 'at', 'our', 'Web', 'site', 'which', 'has', 'the', 'main', 'PG', 'search', 'facility:', 'www.gutenberg.org', 'This', 'Web', 'site', 'includes', 'information', 'about', 'Project', 'Gutenberg-tm,', 'including', 'how', 'to', 'make', 'donations', 'to', 'the', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation,', 'how', 'to', 'help', 'produce', 'our', 'new', 'eBooks,', 'and', 'how', 'to', 'subscribe', 'to', 'our', 'email', 'newsletter', 'to', 'hear', 'about', 'new', 'eBooks.']\n" + ] + } + ], "source": [ - "# your code here" + "# your code here\n", + "final_words = []\n", + "for word in prophet_flat:\n", + " if word != '':\n", + " final_words.append(word)\n", + "print(final_words)" ] }, { @@ -223,7 +1281,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 34, "metadata": {}, "outputs": [], "source": [ @@ -242,9 +1300,9 @@ " Output: True\n", " '''\n", " \n", - " word_list = ['and', 'the', 'a', 'an']\n", - " \n", - " # your code here" + " word_list = ['and', 'the', 'a', 'an'] \n", + " # your code here\n", + " return x.lower() not in word_list" ] }, { @@ -256,13 +1314,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 35, "metadata": { "scrolled": true }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['dispense', 'with', 'confidence?\\n\\nIf', 'this', 'is', 'my', 'day', 'of', 'harvest,', 'in', 'what\\nfields', 'have', 'I', 'sowed', 'seed,', 'in\\nwhat', 'unremembered', 'seasons?\\n\\nIf', 'this', 'indeed', 'be', 'hour', 'in', 'which', 'I\\nlift', 'up', 'my', 'lantern,', 'it', 'is', 'not', 'my', 'flame\\nthat', 'shall', 'burn', 'therein.\\n\\nEmpty', 'dark', 'shall', 'I', 'raise', 'my', 'lantern,\\n\\nAnd', 'guardian', 'of', 'night', 'shall', 'fill\\nit', 'with', 'oil', 'he', 'shall', 'light', 'it', 'also.\\n\\n*****\\n\\nThese', 'things', 'he', 'said', 'in', 'words.', 'But', 'much\\nin', 'his', 'heart', 'remained', 'unsaid.', 'For', '{12}he\\nhimself', 'could', 'not', 'speak', 'his', 'deeper\\nsecret.\\n\\n*****\\n\\n[Illustration:', '0020]\\n\\nAnd', 'when', 'he', 'entered', 'into', 'city', 'all\\nthe', 'people', 'came', 'to', 'meet', 'him,', 'they\\nwere', 'crying', 'out', 'to', 'him', 'as', 'with', 'one\\nvoice.\\n\\nAnd', 'elders', 'of', 'city', 'stood', 'forth\\nand', 'said:\\n\\nGo', 'not', 'yet', 'away', 'from', 'us.\\n\\nA', 'noontide', 'have', 'you', 'been', 'in', 'our\\ntwilight,', 'your', 'youth', 'has', 'given', 'us\\ndreams', 'to', 'dream.\\n\\nNo', 'stranger', 'are', 'you', 'among', 'us,', 'nor\\na', 'guest,', 'but', 'our', 'son', 'our', 'dearly\\nbeloved.\\n\\nSuffer', 'not', 'yet', 'our', 'eyes', 'to', 'hunger', 'for\\nyour', 'face.\\n\\n*****\\n\\nAnd', 'priests', 'priestesses', 'said\\nunto', 'him:\\n\\nLet', 'not', 'waves', 'of', 'sea', 'separate', 'us\\nnow,', 'years', 'you', 'have', 'spent', 'in', 'our\\nmidst', 'become', 'memory.\\n\\nYou', 'have', 'walked', 'among', 'us', 'spirit,\\n{13}and', 'your', 'shadow', 'has', 'been', 'light\\nupon', 'our', 'faces.\\n\\nMuch', 'have', 'we', 'loved', 'you.', 'But', 'speechless\\nwas', 'our', 'love,', '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', 'hour', 'of\\nseparation.\\n\\n*****\\n\\nAnd', 'others', 'came', 'also', 'entreated', 'him.\\nBut', 'he', 'answered', 'them', 'not.', 'He', 'only', 'bent\\nhis', 'head;', 'those', 'who', 'stood', 'near', 'saw\\nhis', 'tears', 'falling', 'upon', 'his', 'breast.\\n\\nAnd', 'he', 'people', 'proceeded', 'towards\\nthe', 'great', 'square', 'before', 'temple.\\n\\nAnd', 'there', 'came', 'out', 'of', 'sanctuary', 'a\\nwoman', 'whose', 'name', 'was', 'Almitra.', 'she\\nwas', 'seeress.\\n\\nAnd', 'he', 'looked', 'upon', 'her', 'with', 'exceeding\\ntenderness,', 'for', 'it', 'was', 'she', 'who', 'had', 'first\\nsought', 'believed', 'in', 'him', 'when', 'he', 'had\\nbeen', 'but', 'day', 'in', 'their', 'city.', '{14}And\\nshe', '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,', 'you', 'must\\nneeds', 'go.\\n\\nDeep', 'is', 'your', 'longing', 'for', 'land', 'of\\nyour', 'memories', 'dwelling', 'place\\nof', 'your', 'greater', 'desires;', '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', 'give', 'us', 'of', 'your\\ntruth.\\n\\nAnd', 'we', 'will', 'give', 'it', 'unto', 'our', 'children,\\nand', 'they', 'unto', 'their', 'children,', 'it\\nshall', 'not', 'perish.\\n\\nIn', 'your', 'aloneness', 'you', 'have', 'watched', 'with\\nour', 'days,', 'in', 'your', 'wakefulness', 'you\\nhave', 'listened', 'to', 'weeping', '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{15}speak', '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', 'looked', 'upon\\nthe', 'people,', 'there', 'fell', 'stillness\\nupon', 'them.', 'with', 'great', 'voice', 'he\\nsaid:\\n\\nWhen', 'love', 'beckons', 'to', 'you,', 'follow', 'him,\\n\\nThough', 'his', 'ways', 'are', 'hard', 'steep.\\n\\nAnd', 'when', 'his', 'wings', 'enfold', 'you', 'yield', 'to\\nhim,\\n\\nThough', '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', 'north', 'wind', 'lays', 'waste', '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{16}caresses', 'your', 'tenderest', 'branches\\nthat', 'quiver', 'in', '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', 'secrets', 'of', 'your\\nheart,', 'in', 'that', 'knowledge', 'become', 'a\\nfragment', 'of', 'Life’s', 'heart.\\n\\nBut', 'if', 'in', 'your', 'fear', 'you', 'would', 'seek', 'only\\nlove’s', 'peace', 'love’s', 'pleasure,\\n\\nThen', 'it', 'is', 'better', 'for', 'you', 'that', 'you\\ncover', '{17}your', 'nakedness', 'pass', 'out', 'of\\nlove’s', 'threshing-floor,\\n\\nInto', 'seasonless', 'world', 'where', 'you\\nshall', 'laugh,', 'but', 'not', 'all', 'of', 'your\\nlaughter,', 'weep,', 'but', 'not', 'all', 'of', 'your\\ntears.\\n\\n*****\\n\\nLove', 'gives', 'naught', 'but', 'itself', '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', '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', 'must', 'needs', 'have\\ndesires,', 'let', 'these', 'be', 'your', 'desires:\\n\\nTo', 'melt', 'be', 'like', 'running', 'brook', 'that\\nsings', 'its', 'melody', 'to', 'night.', '{18}To\\nknow', 'pain', 'of', 'too', 'much', 'tenderness.\\n\\nTo', 'be', 'wounded', 'by', 'your', 'own', 'understanding\\nof', 'love;\\n\\nAnd', 'to', 'bleed', 'willingly', 'joyfully.\\n\\nTo', 'wake', 'at', 'dawn', 'with', 'winged', 'heart', 'and\\ngive', 'thanks', 'for', 'another', 'day', 'of', 'loving;\\n\\nTo', 'rest', 'at', 'noon', 'hour', 'meditate\\nlove’s', 'ecstacy;\\n\\nTo', 'return', 'home', 'at', 'eventide', 'with\\ngratitude;\\n\\nAnd', 'then', 'to', 'sleep', 'with', 'prayer', 'for\\nthe', 'beloved', 'in', 'your', 'heart', 'song', 'of\\npraise', 'upon', 'your', 'lips.\\n\\n[Illustration:', '0029]\\n\\n*****', '*****\\n\\n{19}Then', 'Almitra', 'spoke', 'again', 'said,\\nAnd', 'what', 'of', '_Marriage_', 'master?\\n\\nAnd', 'he', 'answered', 'saying:\\n\\nYou', 'were', 'born', 'together,', 'together', 'you\\nshall', 'be', 'forevermore.\\n\\nYou', 'shall', 'be', 'together', 'when', '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', 'winds', 'of', 'heavens', 'dance\\nbetween', 'you.\\n\\n*****\\n\\nLove', 'one', 'another,', 'but', 'make', 'not', 'bond', 'of\\nlove:\\n\\nLet', 'it', 'rather', 'be', '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', 'same', 'loaf.', '{20}Sing', 'and\\ndance', 'together', 'be', 'joyous,', 'but', 'let\\neach', 'one', 'of', 'you', 'be', 'alone,\\n\\nEven', 'as', 'strings', 'of', 'lute', 'are', 'alone\\nthough', 'they', 'quiver', 'with', 'same', 'music.\\n\\n*****\\n\\nGive', 'your', 'hearts,', 'but', 'not', 'into', 'each\\nother’s', 'keeping.\\n\\nFor', 'only', 'hand', 'of', 'Life', 'can', 'contain\\nyour', 'hearts.\\n\\nAnd', 'stand', 'together', 'yet', 'not', 'too', 'near\\ntogether:\\n\\nFor', 'pillars', 'of', 'temple', 'stand\\napart,\\n\\nAnd', 'oak', 'tree', 'cypress', 'grow\\nnot', 'in', 'each', 'other’s', 'shadow.\\n\\n[Illustration:', '0032]\\n\\n*****', '*****\\n\\n{21}And', 'woman', 'who', 'held', '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', 'sons', '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', '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.', '{22}For\\nlife', 'goes', 'not', 'backward', 'nor', 'tarries', 'with\\nyesterday.\\n\\nYou', 'are', 'bows', 'from', 'which', 'your\\nchildren', 'as', 'living', 'arrows', 'are', 'sent\\nforth.\\n\\nThe', 'archer', 'sees', 'mark', 'upon', 'path\\nof', 'infinite,', 'He', 'bends', 'you', 'with\\nHis', 'might', 'that', 'His', 'arrows', 'may', 'go', 'swift\\nand', 'far.\\n\\nLet', 'your', 'bending', 'in', 'Archer’s', 'hand', 'be\\nfor', 'gladness;\\n\\nFor', 'even', 'as', 'he', 'loves', 'arrow', 'that\\nflies,', 'so', 'He', 'loves', 'also', 'bow', 'that', 'is\\nstable.\\n\\n*****', '*****\\n\\n{23}Then', 'said', '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', 'guard', 'for', 'fear', 'you', 'may', 'need\\nthem', 'tomorrow?\\n\\nAnd', 'tomorrow,', 'what', 'shall', 'tomorrow', 'bring\\nto', 'overprudent', 'dog', 'burying', 'bones\\nin', 'trackless', 'sand', 'as', 'he', 'follows', 'the\\npilgrims', 'to', 'holy', 'city?\\n\\nAnd', 'what', 'is', 'fear', 'of', 'need', 'but', 'need\\nitself?\\n\\nIs', 'not', 'dread', 'of', 'thirst', 'when', 'your', 'well', 'is\\nfull,', 'thirst', 'that', 'is', 'unquenchable?\\n\\nThere', 'are', 'those', 'who', 'give', 'little', 'of', 'the\\n{24}much', 'which', 'they', 'have--and', 'they', 'give\\nit', 'for', 'recognition', 'their', 'hidden\\ndesire', 'makes', 'their', 'gifts', 'unwholesome.\\n\\nAnd', 'there', 'are', 'those', 'who', 'have', 'little', 'and\\ngive', 'it', 'all.\\n\\nThese', 'are', 'believers', 'in', 'life', 'and\\nthe', 'bounty', 'of', 'life,', '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', 'know\\nnot', 'pain', 'in', 'giving,', 'nor', 'do', 'they', 'seek\\njoy,', 'nor', 'give', 'with', 'mindfulness', 'of\\nvirtue;\\n\\nThey', 'give', 'as', 'in', 'yonder', 'valley', 'myrtle\\nbreathes', 'its', 'fragrance', 'into', 'space.\\n\\nThrough', 'hands', 'of', 'such', 'as', 'these', 'God\\nspeaks,', 'from', 'behind', 'their', 'eyes', 'He\\nsmiles', 'upon', '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', 'open-handed', 'search', 'for\\n{25}one', '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', 'season\\nof', 'giving', 'may', 'be', 'yours', 'not', 'your\\ninheritors’.\\n\\nYou', 'often', 'say,', '“I', 'would', 'give,', 'but', 'only\\nto', 'deserving.”\\n\\nThe', 'trees', 'in', 'your', 'orchard', 'say', 'not', 'so,\\nnor', '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', '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', 'courage\\nand', 'confidence,', 'nay', 'charity,', 'of\\nreceiving?\\n\\nAnd', 'who', 'are', 'you', 'that', 'men', 'should', 'rend\\n{26}their', 'bosom', 'unveil', 'their', 'pride,\\nthat', 'you', 'may', 'see', 'their', 'worth', 'naked', 'and\\ntheir', 'pride', 'unabashed?\\n\\nSee', 'first', 'that', 'you', 'yourself', 'deserve', 'to\\nbe', 'giver,', 'instrument', 'of', 'giving.\\n\\nFor', 'in', 'truth', 'it', 'is', 'life', 'that', 'gives', 'unto\\nlife--while', 'you,', 'who', 'deem', 'yourself', 'a\\ngiver,', 'are', 'but', 'witness.\\n\\nAnd', 'you', 'receivers--and', 'you', 'are\\nall', 'receivers--assume', 'no', 'weight', 'of\\ngratitude,', 'lest', 'you', 'lay', 'yoke', 'upon\\nyourself', 'upon', 'him', 'who', 'gives.\\n\\nRather', 'rise', 'together', 'with', '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,', 'God\\nfor', 'father.\\n\\n[Illustration:', '0042]\\n\\n*****', '*****\\n\\n{27}Then', 'old', 'man,', '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', 'earth,', 'like', 'air\\nplant', 'be', 'sustained', 'by', 'light.\\n\\nBut', 'since', 'you', 'must', 'kill', 'to', 'eat,', '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', 'altar', 'on\\nwhich', 'pure', 'innocent', 'of\\nforest', 'plain', 'are', 'sacrificed', 'for', 'that\\nwhich', 'is', 'purer', 'still', 'more', 'innocent\\nin', 'man.\\n\\n*****\\n\\nWhen', 'you', 'kill', 'beast', 'say', 'to', 'him', 'in', 'your\\nheart,\\n\\n“By', 'same', 'power', 'that', 'slays', 'you,', 'I', 'too\\nam', 'slain;', 'I', 'too', 'shall', 'be', 'consumed.\\n{28}For', 'law', 'that', 'delivered', 'you', 'into\\nmy', 'hand', 'shall', 'deliver', 'me', 'into', 'mightier\\nhand.\\n\\nYour', 'blood', 'my', 'blood', 'is', 'naught', 'but\\nthe', 'sap', 'that', 'feeds', 'tree', 'of', 'heaven.”\\n\\n*****\\n\\nAnd', 'when', 'you', 'crush', 'apple', 'with', 'your\\nteeth,', 'say', 'to', 'it', 'in', 'your', 'heart,\\n\\n“Your', 'seeds', 'shall', 'live', 'in', 'my', 'body,\\n\\nAnd', 'buds', 'of', 'your', 'tomorrow', 'shall\\nblossom', 'in', 'my', 'heart,\\n\\nAnd', 'your', 'fragrance', 'shall', 'be', 'my', 'breath,\\nAnd', 'together', 'we', 'shall', 'rejoice', 'through\\nall', 'seasons.”\\n\\n*****\\n\\nAnd', 'in', 'autumn,', 'when', 'you', 'gather\\nthe', 'grapes', 'of', 'your', 'vineyards', 'for', 'the\\nwinepress,', 'say', 'in', 'your', 'heart,\\n\\n“I', 'too', 'am', 'vineyard,', 'my', 'fruit', 'shall\\nbe', 'gathered', 'for', 'winepress,\\n\\nAnd', 'like', 'new', 'wine', 'I', 'shall', 'be', 'kept', 'in\\neternal', 'vessels.”\\n\\nAnd', 'in', 'winter,', 'when', 'you', 'draw', 'wine,\\n{29}let', 'there', 'be', 'in', 'your', 'heart', 'song\\nfor', 'each', 'cup;\\n\\nAnd', 'let', 'there', 'be', 'in', 'song', 'a\\nremembrance', 'for', 'autumn', 'days,', 'for\\nthe', 'vineyard,', 'for', 'winepress.\\n\\n*****\\n*****\\n\\n{30}', 'Then', 'ploughman', 'said,', 'Speak\\nto', 'us', 'of', '_Work_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYou', 'work', 'that', 'you', 'may', 'keep', 'pace', 'with', 'the\\nearth', 'soul', 'of', 'earth.\\n\\nFor', 'to', 'be', 'idle', 'is', 'to', 'become', 'stranger\\nunto', 'seasons,', 'to', 'step', 'out', 'of\\nlife’s', 'procession,', 'that', 'marches', 'in\\nmajesty', 'proud', 'submission', 'towards', 'the\\ninfinite.\\n\\nWhen', 'you', 'work', 'you', 'are', 'flute', 'through\\nwhose', 'heart', 'whispering', 'of', 'hours\\nturns', 'to', 'music.\\n\\nWhich', 'of', 'you', 'would', 'be', 'reed,', 'dumb', 'and\\nsilent,', 'when', 'all', 'else', 'sings', 'together', 'in\\nunison?\\n\\nAlways', 'you', 'have', 'been', 'told', 'that', 'work', 'is', 'a\\ncurse', 'labour', 'misfortune.\\n\\nBut', 'I', 'say', 'to', 'you', 'that', 'when', 'you', 'work', 'you\\nfulfil', 'part', 'of', 'earth’s', 'furthest', 'dream,\\n{31}assigned', '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', 'support', 'of', 'flesh\\na', 'curse', 'written', 'upon', 'your', 'brow,', 'then', 'I\\nanswer', 'that', 'naught', 'but', 'sweat', 'of\\nyour', 'brow', 'shall', 'wash', 'away', 'that', 'which', 'is\\nwritten.\\n\\nYou', 'have', 'been', 'told', 'also', 'that', 'life', 'is\\ndarkness,', 'in', 'your', 'weariness', 'you', 'echo\\nwhat', 'was', 'said', 'by', '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{32}yourself', 'to', 'yourself,', 'to', 'one\\nanother,', 'to', 'God.\\n\\n*****\\n\\nAnd', 'what', 'is', 'it', 'to', 'work', 'with', 'love?\\n\\nIt', 'is', 'to', 'weave', 'cloth', 'with', 'threads\\ndrawn', 'from', 'your', 'heart,', 'even', 'as', 'if', 'your\\nbeloved', 'were', 'to', 'wear', 'that', 'cloth.\\n\\nIt', 'is', 'to', 'build', 'house', 'with', 'affection,\\neven', 'as', 'if', 'your', 'beloved', 'were', 'to', 'dwell', 'in\\nthat', 'house.\\n\\nIt', 'is', 'to', 'sow', 'seeds', 'with', 'tenderness', 'and\\nreap', 'harvest', 'with', 'joy,', 'even', 'as', 'if\\nyour', 'beloved', 'were', 'to', 'eat', 'fruit.\\n\\nIt', 'is', 'to', 'charge', 'all', 'things', 'you', 'fashion\\nwith', 'breath', 'of', 'your', 'own', 'spirit,\\n\\nAnd', 'to', 'know', 'that', 'all', 'blessed', 'dead\\nare', 'standing', 'about', 'you', 'watching.\\n\\nOften', 'have', 'I', 'heard', 'you', 'say,', 'as', 'if\\nspeaking', 'in', 'sleep,', '“He', 'who', 'works', 'in\\nmarble,', 'finds', 'shape', 'of', 'his', 'own\\nsoul', 'in', 'stone,', 'is', 'nobler', 'than', 'he', 'who\\nploughs', 'soil.', '{33}And', 'he', 'who', 'seizes\\nthe', 'rainbow', 'to', 'lay', 'it', 'on', 'cloth', 'in', 'the\\nlikeness', 'of', 'man,', 'is', 'more', 'than', 'he', 'who\\nmakes', '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', 'least', 'of', 'all', 'the\\nblades', 'of', 'grass;\\n\\nAnd', 'he', 'alone', 'is', 'great', 'who', 'turns', 'the\\nvoice', 'of', 'wind', 'into', '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', 'sit', 'at\\nthe', 'gate', 'of', 'temple', 'take', 'alms', 'of\\nthose', 'who', 'work', 'with', 'joy.\\n\\nFor', 'if', 'you', 'bake', 'bread', 'with', 'indifference,\\nyou', 'bake', 'bitter', 'bread', 'that', 'feeds', 'but\\nhalf', 'man’s', 'hunger.\\n\\nAnd', 'if', 'you', 'grudge', 'crushing', 'of', 'the\\ngrapes,', 'your', 'grudge', 'distils', 'poison', 'in\\nthe', 'wine.', '{34}And', 'if', 'you', 'sing', 'though', 'as\\nangels,', 'love', 'not', 'singing,', 'you\\nmuffle', 'man’s', 'ears', 'to', 'voices', 'of', 'the\\nday', 'voices', 'of', 'night.\\n\\n*****', '*****\\n\\n{35}Then', 'woman', 'said,', 'Speak', 'to', 'us', 'of\\n_Joy', 'Sorrow_.\\n\\nAnd', 'he', 'answered:\\n\\nYour', 'joy', 'is', 'your', 'sorrow', 'unmasked.\\n\\nAnd', '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,', 'more', 'joy', 'you', 'can', 'contain.\\n\\nIs', 'not', 'cup', 'that', 'holds', 'your', 'wine', 'the\\nvery', 'cup', 'that', 'was', 'burned', 'in', 'potter’s\\noven?\\n\\nAnd', 'is', 'not', 'lute', 'that', 'soothes', 'your\\nspirit,', 'very', 'wood', 'that', 'was', 'hollowed\\nwith', 'knives?\\n\\nWhen', 'you', 'are', 'joyous,', 'look', 'deep', 'into', 'your\\nheart', '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{36}your', 'heart,', '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,”', 'others', 'say,', '“Nay,', 'sorrow', 'is\\nthe', 'greater.”\\n\\nBut', 'I', 'say', 'unto', 'you,', 'they', 'are\\ninseparable.\\n\\nTogether', 'they', 'come,', 'when', 'one', 'sits\\nalone', 'with', 'you', 'at', 'your', 'board,', 'remember\\nthat', 'other', 'is', 'asleep', 'upon', 'your', 'bed.\\n\\nVerily', 'you', 'are', 'suspended', 'like', 'scales\\nbetween', 'your', 'sorrow', 'your', 'joy.\\n\\nOnly', 'when', 'you', 'are', 'empty', 'are', 'you', 'at\\nstandstill', 'balanced.\\n\\nWhen', 'treasure-keeper', 'lifts', 'you', 'to\\nweigh', 'his', 'gold', 'his', 'silver,', 'needs\\nmust', 'your', 'joy', 'or', 'your', 'sorrow', 'rise', 'or\\nfall.\\n\\n*****', '*****\\n\\n{37}Then', 'mason', 'came', 'forth', 'said,\\nSpeak', 'to', 'us', 'of', '_Houses_.\\n\\nAnd', 'he', 'answered', 'said:\\n\\nBuild', 'of', 'your', 'imaginings', 'bower', 'in', 'the\\nwilderness', 'ere', 'you', 'build', 'house', 'within\\nthe', 'city', 'walls.\\n\\nFor', 'even', 'as', 'you', 'have', 'home-comings', 'in\\nyour', 'twilight,', 'so', 'has', 'wanderer', 'in\\nyou,', 'ever', 'distant', 'alone.\\n\\nYour', 'house', 'is', 'your', 'larger', 'body.\\n\\nIt', 'grows', 'in', 'sun', 'sleeps', 'in', 'the\\nstillness', 'of', 'night;', 'it', 'is', 'not\\ndreamless.', 'Does', 'not', 'your', 'house', 'dream?\\nand', 'dreaming,', 'leave', 'city', 'for', 'grove\\nor', 'hilltop?\\n\\nWould', 'that', 'I', 'could', 'gather', 'your', 'houses\\ninto', 'my', 'hand,', 'like', 'sower', 'scatter\\nthem', 'in', 'forest', 'meadow.\\n\\nWould', 'valleys', 'were', 'your', 'streets,', 'and\\nthe', 'green', 'paths', 'your', 'alleys,', 'that', 'you\\n{38}might', 'seek', 'one', 'another', 'through\\nvineyards,', 'come', 'with', 'fragrance\\nof', 'earth', 'in', 'your', 'garments.\\n\\nBut', 'these', 'things', 'are', 'not', 'yet', 'to', 'be.\\n\\nIn', 'their', 'fear', 'your', 'forefathers', 'gathered\\nyou', 'too', 'near', 'together.', 'that', 'fear\\nshall', 'endure', 'little', 'longer.', '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?', 'what', 'is', 'it\\nyou', 'guard', 'with', 'fastened', 'doors?\\n\\nHave', 'you', 'peace,', 'quiet', 'urge', 'that\\nreveals', 'your', 'power?\\n\\nHave', 'you', 'remembrances,', 'glimmering\\narches', 'that', 'span', 'summits', 'of', 'the\\nmind?\\n\\nHave', 'you', 'beauty,', 'that', 'leads', 'heart\\nfrom', 'things', 'fashioned', 'of', 'wood', 'stone\\nto', 'holy', 'mountain?\\n\\nTell', 'me,', 'have', 'you', 'these', 'in', 'your', 'houses?\\n\\nOr', 'have', 'you', 'only', 'comfort,', 'lust\\nfor', 'comfort,', 'that', 'stealthy', 'thing', 'that\\n{39}enters', 'house', 'guest,', 'then\\nbecomes', 'host,', 'then', 'master?\\n\\n*****\\n\\nAy,', 'it', 'becomes', 'tamer,', 'with\\nhook', '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', 'jeer', 'at', 'dignity', 'of', 'the\\nflesh.\\n\\nIt', 'makes', 'mock', 'of', 'your', 'sound', 'senses,', 'and\\nlays', 'them', 'in', 'thistledown', 'like', 'fragile\\nvessels.\\n\\nVerily', 'lust', 'for', 'comfort', 'murders\\nthe', 'passion', 'of', 'soul,', 'then', 'walks\\ngrinning', 'in', 'funeral.\\n\\nBut', 'you,', 'children', 'of', 'space,', 'you', 'restless\\nin', 'rest,', 'you', 'shall', 'not', 'be', 'trapped', 'nor\\ntamed.\\n\\nYour', 'house', 'shall', 'be', 'not', 'anchor', 'but', 'a\\nmast.\\n\\nIt', 'shall', 'not', 'be', 'glistening', 'film', 'that\\n{40}covers', 'wound,', 'but', 'eyelid', 'that\\nguards', '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', 'fall', 'down.\\n\\nYou', 'shall', 'not', 'dwell', 'in', 'tombs', 'made', 'by', 'the\\ndead', 'for', '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', 'mansion', 'of', 'sky,', 'whose\\ndoor', 'is', 'morning', 'mist,', 'whose\\nwindows', 'are', 'songs', 'silences\\nof', 'night.\\n\\n*****', '*****\\n\\n{41}And', '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', 'chain.\\n\\nWould', 'that', 'you', 'could', 'meet', 'sun', 'and\\nthe', 'wind', 'with', 'more', 'of', 'your', 'skin', 'less\\nof', 'your', 'raiment,\\n\\nFor', 'breath', 'of', 'life', 'is', 'in', 'the\\nsunlight', 'hand', 'of', 'life', 'is', 'in', 'the\\nwind.\\n\\nSome', 'of', 'you', 'say,', '“It', 'is', 'north', 'wind\\nwho', 'has', 'woven', 'clothes', 'we', 'wear.”\\n\\nAnd', 'I', 'say,', 'Ay,', 'it', 'was', 'north', 'wind,\\n\\nBut', 'shame', 'was', 'his', 'loom,', 'the\\nsoftening', 'of', 'sinews', 'was', 'his', 'thread.\\n\\nAnd', 'when', 'his', 'work', 'was', 'done', 'he', 'laughed', 'in\\nthe', 'forest.', '{42}Forget', 'not', 'that', 'modesty\\nis', 'for', 'shield', 'against', 'eye', 'of', 'the\\nunclean.\\n\\nAnd', 'when', 'unclean', 'shall', 'be', 'no', 'more,\\nwhat', 'were', 'modesty', 'but', 'fetter', 'a\\nfouling', 'of', 'mind?\\n\\nAnd', 'forget', 'not', 'that', 'earth', 'delights\\nto', 'feel', 'your', 'bare', 'feet', 'winds\\nlong', 'to', 'play', 'with', 'your', 'hair.\\n\\n*****', '*****\\n\\n{43}And', 'merchant', 'said,', 'Speak', 'to', 'us', 'of\\n_Buying', 'Selling_.\\n\\nAnd', 'he', 'answered', 'said:\\n\\nTo', 'you', 'earth', 'yields', 'her', 'fruit,', 'and\\nyou', 'shall', 'not', 'want', 'if', 'you', 'but', 'know', 'how\\nto', 'fill', 'your', 'hands.\\n\\nIt', 'is', 'in', 'exchanging', 'gifts', 'of', 'the\\nearth', 'that', 'you', 'shall', 'find', 'abundance', 'and\\nbe', 'satisfied.\\n\\nYet', 'unless', 'exchange', 'be', 'in', 'love', 'and\\nkindly', 'justice,', 'it', 'will', 'but', 'lead', 'some', 'to\\ngreed', 'others', 'to', 'hunger.\\n\\nWhen', 'in', 'market', 'place', 'you', 'toilers', 'of\\nthe', 'sea', 'fields', 'vineyards', 'meet\\nthe', 'weavers', 'potters', 'the\\ngatherers', 'of', 'spices,--\\n\\nInvoke', 'then', 'master', 'spirit', 'of', 'the\\nearth,', 'to', 'come', 'into', 'your', 'midst', 'and\\nsanctify', 'scales', 'reckoning\\nthat', 'weighs', 'value', 'against', 'value.', '{44}And\\nsuffer', 'not', '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', 'field,', 'or', 'go', 'with\\nour', 'brothers', 'to', 'sea', 'cast', 'your\\nnet;\\n\\nFor', 'land', 'sea', 'shall', 'be\\nbountiful', 'to', 'you', 'even', 'as', 'to', 'us.”\\n\\n*****\\n\\nAnd', 'if', 'there', 'come', 'singers', 'the\\ndancers', 'flute', 'players,--buy', 'of\\ntheir', 'gifts', 'also.\\n\\nFor', 'they', 'too', 'are', 'gatherers', 'of', 'fruit', 'and\\nfrankincense,', 'that', 'which', 'they', 'bring,\\nthough', 'fashioned', 'of', 'dreams,', 'is', 'raiment\\nand', 'food', 'for', 'your', 'soul.\\n\\nAnd', 'before', 'you', 'leave', 'market', 'place,\\nsee', 'that', 'no', 'one', 'has', 'gone', 'his', 'way', 'with\\nempty', 'hands.\\n\\nFor', 'master', 'spirit', 'of', 'earth', 'shall\\nnot', 'sleep', 'peacefully', 'upon', 'wind\\ntill', 'needs', 'of', 'least', 'of', 'you', 'are\\nsatisfied.\\n\\n*****', '*****\\n\\n{45}Then', 'one', 'of', 'judges', 'of', 'city\\nstood', 'forth', 'said,', 'Speak', 'to', 'us', 'of\\n_Crime', 'Punishment_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nIt', 'is', 'when', 'your', 'spirit', 'goes', 'wandering\\nupon', 'wind,\\n\\nThat', 'you,', 'alone', 'unguarded,', 'commit\\na', 'wrong', 'unto', 'others', 'therefore', 'unto\\nyourself.\\n\\nAnd', 'for', 'that', 'wrong', 'committed', 'must', 'you\\nknock', 'wait', 'while', 'unheeded', 'at', 'the\\ngate', 'of', 'blessed.\\n\\nLike', 'ocean', 'is', 'your', 'god-self;\\n\\nIt', 'remains', 'for', 'ever', 'undefiled.\\n\\nAnd', 'like', 'ether', 'it', 'lifts', 'but', 'the\\nwinged.\\n\\nEven', 'like', 'sun', 'is', 'your', 'god-self;\\n\\nIt', 'knows', 'not', 'ways', 'of', 'mole', 'nor\\nseeks', 'it', 'holes', 'of', 'serpent.\\n{46}But', 'your', 'god-self', 'dwells', 'not', 'alone\\nin', 'your', 'being.\\n\\nMuch', 'in', 'you', 'is', 'still', 'man,', 'much', 'in\\nyou', 'is', 'not', 'yet', 'man,\\n\\nBut', 'shapeless', 'pigmy', 'that', 'walks', 'asleep\\nin', 'mist', 'searching', 'for', 'its', 'own\\nawakening.\\n\\nAnd', 'of', 'man', 'in', 'you', 'would', 'I', 'now', 'speak.\\n\\nFor', 'it', 'is', 'he', 'not', 'your', 'god-self', 'nor\\nthe', 'pigmy', 'in', 'mist,', 'that', 'knows', 'crime\\nand', 'punishment', 'of', 'crime.\\n\\n*****\\n\\nOftentimes', 'have', 'I', 'heard', 'you', 'speak', 'of', 'one\\nwho', 'commits', 'wrong', 'as', 'though', 'he', 'were\\nnot', 'one', 'of', 'you,', 'but', 'stranger', 'unto', 'you\\nand', 'intruder', 'upon', 'your', 'world.\\n\\nBut', 'I', 'say', 'that', 'even', 'as', 'holy', 'the\\nrighteous', 'cannot', 'rise', 'beyond', 'highest\\nwhich', 'is', 'in', 'each', 'one', 'of', 'you,\\n\\nSo', 'wicked', 'weak', 'cannot', 'fall\\nlower', 'than', 'lowest', 'which', 'is', 'in', 'you\\nalso.\\n\\nAnd', 'as', 'single', 'leaf', 'turns', 'not', 'yellow\\nbut', 'with', 'silent', 'knowledge', 'of', 'the\\nwhole', 'tree,', '{47}So', 'wrong-doer', 'cannot\\ndo', 'wrong', 'without', 'hidden', 'will', 'of', 'you\\nall.\\n\\nLike', 'procession', 'you', 'walk', 'together\\ntowards', 'your', 'god-self.\\n\\n[Illustration:', '0064]\\n\\nYou', 'are', 'way', 'wayfarers.\\n\\nAnd', 'when', 'one', 'of', 'you', 'falls', 'down', 'he', 'falls\\nfor', 'those', 'behind', 'him,', 'caution', 'against\\nthe', 'stumbling', 'stone.\\n\\nAy,', 'he', 'falls', 'for', 'those', 'ahead', 'of', 'him,\\nwho', 'though', 'faster', 'surer', 'of', 'foot,', 'yet\\nremoved', 'not', 'stumbling', 'stone.\\n\\nAnd', 'this', 'also,', 'though', 'word', 'lie', 'heavy\\nupon', 'your', 'hearts:\\n\\nThe', 'murdered', 'is', 'not', 'unaccountable', 'for\\nhis', 'own', 'murder,\\n\\nAnd', 'robbed', 'is', 'not', 'blameless', 'in', 'being\\nrobbed.\\n\\nThe', 'righteous', 'is', 'not', 'innocent', 'of', 'the\\ndeeds', 'of', 'wicked,\\n\\nAnd', 'white-handed', 'is', 'not', 'clean', 'in', 'the\\ndoings', 'of', 'felon.\\n\\nYea,', 'guilty', 'is', 'oftentimes', 'victim\\nof', 'injured,\\n\\nAnd', 'still', 'more', 'often', 'condemned', 'is\\n{48}the', 'burden', 'bearer', 'for', 'guiltless\\nand', 'unblamed.\\n\\nYou', 'cannot', 'separate', 'just', 'from', 'the\\nunjust', 'good', 'from', 'wicked;\\n\\nFor', 'they', 'stand', 'together', 'before', 'face\\nof', 'sun', 'even', 'as', 'black', 'thread', 'and\\nthe', 'white', 'are', 'woven', 'together.\\n\\nAnd', 'when', 'black', 'thread', 'breaks,', 'the\\nweaver', 'shall', 'look', 'into', 'whole', 'cloth,\\nand', 'he', 'shall', 'examine', 'loom', 'also.\\n\\n*****\\n\\nIf', 'any', 'of', 'you', 'would', 'bring', 'to', 'judgment\\nthe', 'unfaithful', 'wife,\\n\\nLet', 'him', 'also', 'weigh', 'heart', 'of', 'her\\nhusband', 'in', 'scales,', 'measure', 'his', 'soul\\nwith', 'measurements.\\n\\nAnd', 'let', 'him', 'who', 'would', 'lash', 'offender\\nlook', 'unto', 'spirit', 'of', 'offended.\\n\\nAnd', 'if', 'any', 'of', 'you', 'would', 'punish', 'in', 'the\\nname', 'of', 'righteousness', 'lay', 'ax\\nunto', 'evil', 'tree,', 'let', 'him', 'see', 'to', 'its\\nroots;\\n\\nAnd', 'verily', 'he', 'will', 'find', 'roots', 'of', 'the\\ngood', 'bad,', 'fruitful', 'the\\n{49}fruitless,', 'all', 'entwined', 'together', 'in\\nthe', 'silent', 'heart', 'of', 'earth.\\n\\nAnd', 'you', 'judges', 'who', 'would', 'be', 'just,\\n\\nWhat', 'judgment', 'pronounce', 'you', 'upon', 'him\\nwho', 'though', 'honest', 'in', 'flesh', 'yet', 'is', 'a\\nthief', 'in', 'spirit?\\n\\nWhat', 'penalty', 'lay', 'you', 'upon', 'him', 'who', 'slays\\nin', 'flesh', 'yet', 'is', 'himself', 'slain', 'in', 'the\\nspirit?\\n\\nAnd', 'how', 'prosecute', 'you', 'him', 'who', 'in', 'action\\nis', 'deceiver', 'oppressor,\\n\\nYet', 'who', 'also', 'is', 'aggrieved', 'outraged?\\n\\n*****\\n\\nAnd', 'how', 'shall', 'you', 'punish', 'those', 'whose\\nremorse', 'is', 'already', 'greater', 'than', 'their\\nmisdeeds?\\n\\nIs', 'not', 'remorse', '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', 'heart', 'of\\nthe', 'guilty.\\n\\nUnbidden', 'shall', 'it', 'call', 'in', 'night,\\nthat', 'men', 'may', 'wake', 'gaze', 'upon\\nthemselves.', '{50}And', 'you', 'who', 'would\\nunderstand', 'justice,', 'how', 'shall', 'you', 'unless\\nyou', 'look', 'upon', 'all', 'deeds', 'in', 'fullness\\nof', 'light?\\n\\nOnly', 'then', 'shall', 'you', 'know', 'that', 'erect\\nand', 'fallen', 'are', 'but', 'one', 'man', 'standing\\nin', 'twilight', 'between', 'night', 'of', 'his\\npigmy-self', 'day', 'of', 'his', 'god-self,\\nAnd', 'that', 'corner-stone', 'of', 'temple\\nis', 'not', 'higher', 'than', 'lowest', 'stone', 'in\\nits', 'foundation.\\n\\n*****', '*****\\n\\n{51}Then', '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', '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', 'shore,\\n\\nAnd', 'when', 'you', 'destroy', 'them', 'ocean\\nlaughs', 'with', 'you.\\n\\nVerily', 'ocean', 'laughs', 'always', 'with', 'the\\ninnocent.\\n\\nBut', 'what', 'of', 'those', 'to', 'whom', 'life', 'is', 'not\\nan', 'ocean,', 'man-made', 'laws', 'are', 'not\\nsand-towers,\\n\\nBut', 'to', 'whom', 'life', 'is', 'rock,', 'law\\na', 'chisel', 'with', 'which', 'they', 'would', 'carve', 'it\\nin', 'their', 'own', 'likeness?', '{52}What', 'of', 'the\\ncripple', 'who', 'hates', 'dancers?\\n\\nWhat', 'of', 'ox', 'who', 'loves', 'his', 'yoke', 'and\\ndeems', 'elk', 'deer', 'of', 'forest\\nstray', 'vagrant', 'things?\\n\\nWhat', 'of', 'old', 'serpent', 'who', 'cannot', 'shed\\nhis', 'skin,', 'calls', 'all', 'others', 'naked', 'and\\nshameless?\\n\\nAnd', 'of', 'him', 'who', 'comes', 'early', 'to', 'the\\nwedding-feast,', 'when', 'over-fed', 'and\\ntired', 'goes', 'his', 'way', 'saying', 'that', 'all\\nfeasts', 'are', 'violation', 'all', 'feasters\\nlawbreakers?\\n\\n*****\\n\\nWhat', 'shall', 'I', 'say', 'of', 'these', 'save', 'that\\nthey', 'too', 'stand', 'in', 'sunlight,', 'but', 'with\\ntheir', 'backs', 'to', 'sun?\\n\\nThey', 'see', 'only', 'their', 'shadows,', 'their\\nshadows', 'are', 'their', 'laws.\\n\\nAnd', 'what', 'is', 'sun', 'to', 'them', 'but', 'caster\\nof', 'shadows?\\n\\nAnd', 'what', 'is', 'it', 'to', 'acknowledge', 'the\\nlaws', 'but', 'to', 'stoop', 'down', 'trace', 'their\\nshadows', 'upon', 'earth?\\n\\nBut', 'you', 'who', 'walk', 'facing', 'sun,', 'what\\n{53}images', 'drawn', 'on', 'earth', 'can', 'hold\\nyou?\\n\\nYou', 'who', 'travel', 'with', '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,', 'you', 'can', 'loosen', 'strings\\nof', 'lyre,', 'but', 'who', 'shall', 'command', 'the\\nskylark', 'not', 'to', 'sing?\\n\\n*****', '*****\\n\\n{54}And', 'orator', 'said,', 'Speak', 'to', 'us', 'of\\n_Freedom_.\\n\\nAnd', 'he', 'answered:\\n\\nAt', 'city', 'gate', 'by', 'your', 'fireside\\nI', 'have', 'seen', 'you', 'prostrate', 'yourself', 'and\\nworship', 'your', 'own', 'freedom,\\n\\nEven', 'as', 'slaves', 'humble', 'themselves', 'before\\na', 'tyrant', 'praise', 'him', 'though', 'he', 'slays\\nthem.\\n\\nAy,', 'in', 'grove', 'of', 'temple', 'in\\nthe', 'shadow', 'of', 'citadel', 'I', 'have', 'seen\\nthe', 'freest', 'among', 'you', 'wear', 'their', 'freedom\\nas', 'yoke', 'handcuff.\\n\\nAnd', 'my', 'heart', 'bled', 'within', 'me;', 'for', 'you\\ncan', 'only', 'be', 'free', 'when', 'even', 'desire\\nof', 'seeking', 'freedom', 'becomes', 'harness\\nto', 'you,', 'when', 'you', 'cease', 'to', 'speak', 'of\\nfreedom', 'as', 'goal', 'fulfilment.\\n\\nYou', 'shall', 'be', 'free', 'indeed', 'when', 'your\\ndays', 'are', 'not', 'without', 'care', 'nor', 'your\\n{55}nights', 'without', 'want', 'grief,\\n\\nBut', 'rather', 'when', 'these', 'things', 'girdle', 'your\\nlife', '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', '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', 'sun', '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', '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', 'foreheads', 'of\\nyour', 'judges,', 'though', 'you', 'pour', 'sea\\nupon', 'them.\\n\\nAnd', 'if', 'it', 'is', 'despot', 'you', 'would\\n{56}dethrone,', 'see', 'first', 'that', 'his', 'throne\\nerected', 'within', 'you', 'is', 'destroyed.\\n\\nFor', 'how', 'can', 'tyrant', 'rule', 'free', 'and\\nthe', 'proud,', 'but', 'for', 'tyranny', 'in', 'their\\nown', 'freedom', 'shame', 'in', 'their', 'own\\npride?\\n\\nAnd', 'if', 'it', 'is', 'care', 'you', 'would', 'cast', 'off,\\nthat', 'cart', 'has', 'been', 'chosen', 'by', 'you', 'rather\\nthan', 'imposed', 'upon', 'you.\\n\\nAnd', 'if', 'it', 'is', 'fear', 'you', 'would', 'dispel,\\nthe', 'seat', 'of', 'that', 'fear', 'is', 'in', 'your', 'heart\\nand', 'not', 'in', 'hand', 'of', 'feared.\\n\\n*****\\n\\nVerily', 'all', 'things', 'move', 'within', 'your', 'being\\nin', 'constant', 'half', 'embrace,', 'desired\\nand', 'dreaded,', 'repugnant', 'the\\ncherished,', 'pursued', 'that', 'which\\nyou', 'would', 'escape.\\n\\nThese', 'things', 'move', 'within', 'you', 'as', 'lights\\nand', 'shadows', 'in', 'pairs', 'that', 'cling.\\n\\nAnd', 'when', 'shadow', 'fades', 'is', 'no\\nmore,', 'light', 'that', 'lingers', 'becomes', 'a\\nshadow', 'to', 'another', 'light.\\n\\nAnd', 'thus', 'your', 'freedom', 'when', 'it', 'loses', 'its\\nfetters', 'becomes', 'itself', 'fetter', 'of', 'a\\ngreater', 'freedom.\\n\\n*****', '*****\\n\\n{57}And', 'priestess', 'spoke', 'again\\nand', 'said:', 'Speak', 'to', 'us', 'of', '_Reason', 'and\\nPassion_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYour', 'soul', 'is', 'oftentimes', 'battlefield,\\nupon', 'which', 'your', 'reason', 'your', 'judgment\\nwage', 'war', 'against', 'your', 'passion', 'your\\nappetite.\\n\\nWould', 'that', 'I', 'could', 'be', 'peacemaker', 'in\\nyour', 'soul,', 'that', 'I', 'might', 'turn', 'discord\\nand', 'rivalry', 'of', 'your', 'elements', 'into\\noneness', 'melody.\\n\\nBut', 'how', 'shall', 'I,', 'unless', 'you', 'yourselves\\nbe', 'also', 'peacemakers,', 'nay,', 'lovers\\nof', 'all', 'your', 'elements?\\n\\nYour', 'reason', 'your', 'passion', 'are', 'the\\nrudder', 'sails', 'of', 'your', 'seafaring\\nsoul.\\n\\nIf', 'either', 'your', 'sails', 'or', 'your', 'rudder', 'be\\nbroken,', 'you', 'can', 'but', 'toss', 'drift,\\nor', 'else', 'be', 'held', 'at', 'standstill', 'in\\nmid-seas.', '{58}For', 'reason,', 'ruling', 'alone,\\nis', 'force', 'confining;', 'passion,\\nunattended,', 'is', 'flame', 'that', 'burns', 'to', 'its\\nown', 'destruction.\\n\\nTherefore', 'let', 'your', 'soul', 'exalt', 'your\\nreason', 'to', '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', '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', 'other;', 'for', 'he', 'who', 'is', 'more\\nmindful', 'of', 'one', 'loses', 'love', 'the\\nfaith', 'of', 'both\\n\\nAmong', 'hills,', 'when', 'you', 'sit', 'in', 'the\\ncool', 'shade', 'of', 'white', 'poplars,', 'sharing\\nthe', 'peace', 'serenity', 'of', 'distant', 'fields\\nand', 'meadows--then', 'let', 'your', 'heart', 'say', 'in\\nsilence,', '“God', 'rests', 'in', 'reason.”\\n\\nAnd', 'when', 'storm', 'comes,', 'the\\n{59}mighty', 'wind', 'shakes', 'forest,\\nand', 'thunder', 'lightning', 'proclaim', 'the\\nmajesty', 'of', 'sky,--then', 'let', 'your', 'heart\\nsay', 'in', 'awe,', '“God', 'moves', 'in', 'passion.”\\n\\nAnd', 'since', 'you', 'are', 'breath', 'in', 'God’s\\nsphere,', 'leaf', 'in', 'God’s', 'forest,', 'you\\ntoo', 'should', 'rest', 'in', 'reason', 'move', 'in\\npassion.\\n\\n*****', '*****\\n\\n{60}And', 'woman', 'spoke,', 'saying,', 'Tell', 'us\\nof', '_Pain_.\\n\\nAnd', 'he', 'said:\\n\\nYour', 'pain', 'is', 'breaking', 'of', 'shell\\nthat', 'encloses', 'your', 'understanding.\\n\\nEven', 'as', 'stone', 'of', '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', 'daily', 'miracles', 'of', 'your', 'life,', 'your\\npain', 'would', 'not', 'seem', 'less', 'wondrous', 'than\\nyour', 'joy;\\n\\nAnd', 'you', 'would', 'accept', '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', 'winters', 'of', 'your', 'grief.\\n\\nMuch', 'of', 'your', 'pain', 'is', 'self-chosen.\\n\\nIt', 'is', 'bitter', 'potion', 'by', 'which', 'the\\nphysician', '{61}within', 'you', 'heals', 'your', 'sick\\nself.\\n\\nTherefore', 'trust', 'physician,', 'drink\\nhis', 'remedy', 'in', 'silence', 'tranquillity:\\nFor', 'his', 'hand,', 'though', 'heavy', 'hard,', 'is\\nguided', 'by', 'tender', 'hand', 'of', 'Unseen,\\nAnd', 'cup', 'he', 'brings,', 'though', 'it', 'burn\\nyour', 'lips,', 'has', 'been', 'fashioned', 'of', 'the\\nclay', 'which', 'Potter', 'has', 'moistened', 'with\\nHis', 'own', 'sacred', 'tears.\\n\\n*****', '*****\\n\\n{62}And', 'man', 'said,', 'Speak', 'to', 'us', 'of\\n_Self-Knowledge_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYour', 'hearts', 'know', 'in', 'silence', 'secrets\\nof', 'days', 'nights.\\n\\nBut', 'your', 'ears', 'thirst', 'for', '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', 'run', 'murmuring', 'to', 'sea;\\n\\nAnd', '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', 'depths', 'of', 'your\\n{63}knowledge', 'with', 'staff', 'or', 'sounding\\nline.\\n\\nFor', 'self', 'is', 'sea', 'boundless', 'and\\nmeasureless.\\n\\n*****\\n\\nSay', 'not,', '“I', 'have', 'found', 'truth,”', 'but\\nrather,', '“I', 'have', 'found', 'truth.”\\n\\nSay', 'not,', '“I', 'have', 'found', 'path', 'of', 'the\\nsoul.”', 'Say', 'rather,', '“I', 'have', 'met', 'soul\\nwalking', 'upon', 'my', 'path.”\\n\\nFor', 'soul', 'walks', 'upon', 'all', 'paths.\\n\\nThe', 'soul', 'walks', 'not', 'upon', 'line,', 'neither\\ndoes', 'it', 'grow', 'like', 'reed.\\n\\nThe', 'soul', 'unfolds', 'itself,', 'like', 'lotus', 'of\\ncountless', 'petals.\\n\\n[Illustration:', '0083]\\n\\n*****', '*****\\n\\n{64}Then', 'said', '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', 'shadow', 'of\\nthe', 'temple,', 'among', 'his', 'followers,', 'gives\\nnot', 'of', 'his', 'wisdom', 'but', 'rather', 'of', 'his\\nfaith', 'his', 'lovingness.\\n\\nIf', 'he', 'is', 'indeed', 'wise', 'he', 'does', 'not', 'bid\\nyou', 'enter', 'house', 'of', 'his', 'wisdom,', 'but\\nrather', 'leads', 'you', 'to', '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', 'ear', 'which', 'arrests\\nthe', 'rhythm', 'nor', 'voice', 'that', 'echoes', 'it.\\n{65}And', 'he', 'who', 'is', 'versed', 'in', 'science\\nof', 'numbers', 'can', 'tell', 'of', 'regions\\nof', 'weight', 'measure,', 'but', 'he', 'cannot\\nconduct', 'you', 'thither.\\n\\nFor', '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', 'earth.\\n\\n*****', '*****\\n\\n{66}And', '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', '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', '“nay”', 'in', 'your', 'own', 'mind,', 'nor\\ndo', 'you', 'withhold', '“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', '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', 'climber', 'is', 'clearer\\nfrom', 'plain.', '{67}And', 'let', 'there', 'be', 'no\\npurpose', 'in', 'friendship', 'save', 'deepening\\nof', 'spirit.\\n\\nFor', 'love', 'that', 'seeks', 'aught', 'but', 'the\\ndisclosure', 'of', 'its', 'own', 'mystery', 'is', 'not\\nlove', 'but', 'net', 'cast', 'forth:', 'only', 'the\\nunprofitable', 'is', 'caught.\\n\\n*****\\n\\nAnd', 'let', 'your', 'best', 'be', 'for', 'your', 'friend.\\n\\nIf', 'he', 'must', 'know', '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', 'sweetness', 'of', 'friendship\\nlet', 'there', 'be', 'laughter,', 'sharing', 'of\\npleasures.\\n\\nFor', 'in', 'dew', 'of', 'little', 'things\\nthe', 'heart', 'finds', 'its', 'morning', 'is\\nrefreshed.\\n\\n*****', '*****\\n\\n{68}And', 'then', '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,', 'sound', 'is', 'diversion', 'a\\npastime.\\n\\nAnd', 'in', 'much', 'of', 'your', 'talking,', 'thinking', 'is\\nhalf', 'murdered.\\n\\nFor', 'thought', 'is', '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', 'they\\nwould', 'escape.\\n\\nAnd', 'there', 'are', 'those', 'who', 'talk,', 'and\\n{69}without', 'knowledge', 'or', 'forethought', 'reveal\\na', 'truth', 'which', 'they', 'themselves', 'do', 'not\\nunderstand.\\n\\nAnd', 'there', 'are', 'those', 'who', 'have', 'truth\\nwithin', 'them,', 'but', 'they', 'tell', 'it', 'not', 'in\\nwords.\\n\\nIn', 'bosom', 'of', 'such', 'as', 'these', 'spirit\\ndwells', 'in', 'rhythmic', 'silence.\\n\\n*****\\n\\nWhen', 'you', 'meet', 'your', 'friend', 'on', 'the\\nroadside', 'or', 'in', 'market', 'place,', 'let', 'the\\nspirit', 'in', 'you', 'move', 'your', 'lips', 'direct\\nyour', 'tongue.\\n\\nLet', 'voice', 'within', 'your', 'voice', 'speak', 'to\\nthe', 'ear', 'of', 'his', 'ear;\\n\\nFor', 'his', 'soul', 'will', 'keep', 'truth', 'of\\nyour', 'heart', 'as', 'taste', 'of', 'wine', 'is\\nremembered\\n\\nWhen', 'colour', 'is', 'forgotten', 'the\\nvessel', 'is', 'no', 'more.\\n\\n*****', '*****\\n\\n{70}And', 'astronomer', 'said,', 'Master,', 'what\\nof', '_Time_?\\n\\nAnd', 'he', 'answered:\\n\\nYou', 'would', 'measure', 'time', 'measureless\\nand', 'immeasurable.\\n\\nYou', 'would', 'adjust', 'your', 'conduct', 'and\\neven', 'direct', 'course', 'of', 'your', 'spirit\\naccording', 'to', 'hours', 'seasons.\\n\\nOf', 'time', 'you', 'would', 'make', 'stream', 'upon\\nwhose', 'bank', 'you', 'would', 'sit', 'watch', 'its\\nflowing.\\n\\nYet', 'timeless', 'in', 'you', 'is', 'aware', 'of\\nlife’s', 'timelessness,\\n\\nAnd', 'knows', 'that', 'yesterday', 'is', 'but', 'today’s\\nmemory', 'tomorrow', 'is', 'today’s', 'dream.\\n\\nAnd', 'that', 'that', 'which', 'sings', 'and\\ncontemplates', 'in', 'you', 'is', 'still', 'dwelling\\nwithin', 'bounds', 'of', 'that', 'first', 'moment\\nwhich', 'scattered', 'stars', 'into', 'space.\\n{71}Who', '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', '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', 'paceless?\\n\\n*****\\n\\nBut', 'if', 'in', 'your', 'thought', 'you', 'must', 'measure\\ntime', 'into', 'seasons,', 'let', 'each', 'season\\nencircle', 'all', 'other', 'seasons,\\n\\nAnd', 'let', 'today', 'embrace', 'past', 'with\\nremembrance', 'future', 'with', 'longing.\\n\\n*****', '*****\\n\\n{72}And', 'one', 'of', 'elders', 'of', 'city\\nsaid,', 'Speak', 'to', 'us', 'of', '_Good', 'Evil_.\\n\\nAnd', 'he', 'answered:\\n\\nOf', 'good', 'in', 'you', 'I', 'can', 'speak,', 'but', 'not\\nof', 'evil.\\n\\nFor', 'what', 'is', 'evil', 'but', 'good', 'tortured', 'by\\nits', 'own', 'hunger', 'thirst?\\n\\nVerily', 'when', 'good', 'is', 'hungry', 'it', 'seeks', 'food\\neven', 'in', 'dark', 'caves,', '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', 'divided', 'house', 'is', 'not', 'den', 'of\\nthieves;', 'it', 'is', 'only', 'divided', 'house.\\n\\nAnd', 'ship', 'without', 'rudder', 'may', 'wander\\naimlessly', 'among', 'perilous', 'isles', 'yet', 'sink\\nnot', 'to', 'bottom.', '{73}You', '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', 'root', 'that', 'clings', 'to', 'earth', 'and\\nsucks', 'at', 'her', 'breast.\\n\\nSurely', 'fruit', 'cannot', 'say', 'to', 'root,\\n“Be', 'like', 'me,', 'ripe', 'full', 'ever\\ngiving', 'of', 'your', 'abundance.”\\n\\nFor', 'to', 'fruit', 'giving', 'is', 'need,', 'as\\nreceiving', 'is', 'need', 'to', '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', 'with', 'bold', 'steps.\\n\\nYet', 'you', 'are', 'not', 'evil', 'when', 'you', 'go', 'thither\\nlimping.', '{74}Even', 'those', 'who', 'limp', 'go', 'not\\nbackward.\\n\\nBut', 'you', 'who', 'are', 'strong', 'swift,', 'see\\nthat', 'you', 'do', 'not', 'limp', 'before', 'lame,\\ndeeming', 'it', 'kindness.\\n\\n*****\\n\\nYou', 'are', 'good', 'in', 'countless', 'ways,', 'you\\nare', 'not', 'evil', 'when', 'you', 'are', 'not', 'good,\\n\\nYou', 'are', 'only', 'loitering', 'sluggard.\\n\\nPity', 'that', 'stags', 'cannot', 'teach\\nswiftness', 'to', 'turtles.\\n\\nIn', 'your', 'longing', 'for', 'your', 'giant', 'self', 'lies\\nyour', 'goodness:', 'that', 'longing', 'is', 'in\\nall', 'of', 'you.\\n\\nBut', 'in', 'some', 'of', 'you', 'that', 'longing', 'is', 'a\\ntorrent', 'rushing', 'with', 'might', 'to', 'sea,\\ncarrying', 'secrets', 'of', 'hillsides\\nand', 'songs', 'of', 'forest.\\n\\nAnd', 'in', 'others', 'it', 'is', 'flat', 'stream', 'that\\nloses', 'itself', 'in', 'angles', 'bends', 'and\\nlingers', 'before', 'it', 'reaches', 'shore.\\n\\nBut', 'let', 'not', 'him', 'who', 'longs', 'much', 'say', 'to\\n{75}him', 'who', 'longs', 'little,', '“Wherefore', 'are\\nyou', 'slow', 'halting?”\\n\\nFor', 'truly', 'good', 'ask', 'not', 'naked,\\n“Where', 'is', 'your', 'garment?”', 'nor', 'the\\nhouseless,', '“What', 'has', 'befallen', 'your\\nhouse?”\\n\\n*****', '*****\\n\\n{76}Then', 'priestess', 'said,', 'Speak', 'to', 'us\\nof', '_Prayer_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nYou', 'pray', 'in', 'your', 'distress', 'in', 'your\\nneed;', 'would', 'that', 'you', 'might', 'pray', 'also\\nin', 'fullness', 'of', 'your', 'joy', 'in', 'your\\ndays', 'of', 'abundance.\\n\\nFor', 'what', 'is', 'prayer', 'but', 'expansion', 'of\\nyourself', 'into', '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', 'dawning\\nof', 'your', 'heart.\\n\\nAnd', 'if', 'you', 'cannot', 'but', 'weep', 'when', 'your\\nsoul', 'summons', 'you', 'to', 'prayer,', 'she', 'should\\nspur', 'you', 'again', '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{77}hour,', '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', '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', 'good', 'of', 'others', 'you', 'shall', 'not\\nbe', 'heard.\\n\\nIt', 'is', 'enough', 'that', 'you', 'enter', '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', 'prayer', 'of', 'the\\nseas', 'forests', 'mountains.\\n{78}But', 'you', 'who', 'are', 'born', 'of', 'the\\nmountains', 'forests', 'seas\\ncan', 'find', 'their', 'prayer', 'in', 'your', 'heart,\\n\\nAnd', 'if', 'you', 'but', 'listen', 'in', 'stillness\\nof', '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;', 'in', 'giving', 'us', 'more\\nof', 'thyself', 'thou', 'givest', 'us', 'all.”\\n\\n[Illustration:', '0100]\\n\\n*****', '*****\\n\\n{79}Then', 'hermit,', 'who', 'visited', 'city\\nonce', 'year,', 'came', 'forth', 'said,', 'Speak\\nto', 'us', 'of', '_Pleasure_.\\n\\nAnd', 'he', 'answered,', 'saying:\\n\\nPleasure', 'is', 'freedom-song,\\n\\nBut', 'it', 'is', 'not', 'freedom.\\n\\nIt', 'is', 'blossoming', 'of', 'your', 'desires,\\n\\nBut', 'it', 'is', 'not', 'their', 'fruit.\\n\\nIt', 'is', 'depth', 'calling', 'unto', 'height,\\n\\nBut', 'it', 'is', 'not', 'deep', 'nor', 'high.\\n\\nIt', 'is', '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', 'singing.\\n\\nSome', 'of', 'your', 'youth', 'seek', 'pleasure', 'as', 'if\\nit', 'were', 'all,', 'they', 'are', 'judged', 'and\\nrebuked.', '{80}I', '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,', 'least', 'of\\nthem', 'is', 'more', 'beautiful', 'than', 'pleasure.\\n\\nHave', 'you', 'not', 'heard', 'of', 'man', 'who', 'was\\ndigging', 'in', 'earth', 'for', 'roots', 'found\\na', 'treasure?\\n\\n*****\\n\\nAnd', 'some', 'of', 'your', 'elders', 'remember\\npleasures', 'with', 'regret', 'like', 'wrongs\\ncommitted', 'in', 'drunkenness.\\n\\nBut', 'regret', 'is', 'beclouding', 'of', 'mind\\nand', 'not', 'its', 'chastisement.\\n\\nThey', 'should', 'remember', 'their', 'pleasures\\nwith', 'gratitude,', 'as', 'they', 'would', 'the\\nharvest', 'of', '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', '{81}they', 'shun', 'all', 'pleasures,\\nlest', 'they', 'neglect', 'spirit', 'or', 'offend\\nagainst', 'it.\\n\\nBut', 'even', 'in', 'their', 'foregoing', 'is', 'their\\npleasure.\\n\\nAnd', 'thus', 'they', 'too', 'find', 'treasure', 'though\\nthey', 'dig', 'for', 'roots', 'with', 'quivering', 'hands.\\n\\nBut', 'tell', 'me,', 'who', 'is', 'he', 'that', 'can', 'offend\\nthe', 'spirit?\\n\\nShall', 'nightingale', 'offend', 'the\\nstillness', 'of', 'night,', 'or', 'firefly\\nthe', 'stars?\\n\\nAnd', 'shall', 'your', 'flame', 'or', 'your', 'smoke\\nburden', 'wind?\\n\\nThink', 'you', 'spirit', 'is', 'still', 'pool\\nwhich', 'you', 'can', 'trouble', 'with', 'staff?\\n\\n*****\\n\\nOftentimes', 'in', 'denying', 'yourself', 'pleasure\\nyou', 'do', 'but', 'store', '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', 'will', 'not', 'be\\ndeceived.\\n\\nAnd', 'your', 'body', 'is', 'harp', 'of', 'your', 'soul,\\n\\nAnd', 'it', 'is', 'yours', 'to', 'bring', 'forth', '{82}sweet\\nmusic', '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', 'your', 'gardens,', 'and\\nyou', 'shall', 'learn', 'that', 'it', 'is', 'pleasure\\nof', 'bee', 'to', 'gather', 'honey', 'of', 'the\\nflower,\\n\\nBut', 'it', 'is', 'also', 'pleasure', 'of', 'the\\nflower', 'to', 'yield', 'its', 'honey', 'to', 'bee.\\n\\nFor', 'to', 'bee', 'flower', 'is', 'fountain', 'of\\nlife,\\n\\nAnd', 'to', 'flower', 'bee', 'is', 'messenger\\nof', 'love,\\n\\nAnd', 'to', 'both,', 'bee', 'flower,', 'giving\\nand', 'receiving', 'of', 'pleasure', 'is', 'need\\nand', 'ecstasy.\\n\\nPeople', 'of', 'Orphalese,', 'be', 'in', 'your\\npleasures', 'like', 'flowers', 'bees.\\n\\n*****', '*****\\n\\n{83}And', 'poet', 'said,', 'Speak', 'to', 'us', 'of\\n_Beauty_.\\n\\nAnd', 'he', 'answered:\\n\\nWhere', 'shall', 'you', 'seek', 'beauty,', 'how\\nshall', 'you', 'find', 'her', 'unless', 'she', 'herself', 'be\\nyour', 'way', 'your', 'guide?\\n\\nAnd', 'how', 'shall', 'you', 'speak', 'of', 'her', 'except\\nshe', 'be', 'weaver', 'of', 'your', 'speech?\\n\\nThe', 'aggrieved', 'injured', 'say,\\n“Beauty', 'is', 'kind', 'gentle.\\n\\nLike', 'young', 'mother', 'half-shy', 'of', 'her', 'own\\nglory', 'she', 'walks', 'among', 'us.”\\n\\nAnd', 'passionate', 'say,', '“Nay,', 'beauty', 'is\\na', 'thing', 'of', 'might', 'dread.\\n\\nLike', 'tempest', 'she', 'shakes', 'earth\\nbeneath', 'us', 'sky', 'above', 'us.”\\n\\nThe', 'tired', 'weary', 'say,', '“Beauty', 'is\\nof', 'soft', 'whisperings.', 'She', 'speaks', 'in', 'our\\nspirit.', '{84}Her', 'voice', 'yields', 'to', 'our\\nsilences', 'like', 'faint', 'light', 'that', 'quivers\\nin', 'fear', 'of', 'shadow.”\\n\\nBut', 'restless', 'say,', '“We', 'have', 'heard', 'her\\nshouting', 'among', 'mountains,\\n\\nAnd', 'with', 'her', 'cries', 'came', 'sound', 'of\\nhoofs,', 'beating', 'of', 'wings', 'the\\nroaring', 'of', 'lions.”\\n\\nAt', 'night', 'watchmen', 'of', 'city', 'say,\\n“Beauty', 'shall', 'rise', 'with', 'dawn', 'from\\nthe', 'east.”\\n\\nAnd', 'at', 'noontide', 'toilers', 'the\\nwayfarers', 'say,', '“We', 'have', 'seen', 'her', 'leaning\\nover', 'earth', 'from', 'windows', 'of', 'the\\nsunset.”\\n\\n*****\\n\\nIn', 'winter', 'say', 'snow-bound,', '“She', 'shall\\ncome', 'with', 'spring', 'leaping', 'upon', 'the\\nhills.”\\n\\nAnd', 'in', 'summer', 'heat', 'reapers\\nsay,', '“We', 'have', 'seen', 'her', 'dancing', 'with', 'the\\nautumn', 'leaves,', 'we', 'saw', 'drift', 'of\\nsnow', 'in', 'her', 'hair.”', '{85}All', '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', 'need', 'but', 'ecstasy.\\n\\nIt', 'is', 'not', 'mouth', 'thirsting', 'nor', 'empty\\nhand', 'stretched', 'forth,\\n\\nBut', 'rather', 'heart', 'enflamed', 'soul\\nenchanted.\\n\\nIt', 'is', 'not', 'image', 'you', 'would', 'see', 'nor\\nthe', 'song', 'you', 'would', 'hear,\\n\\nBut', 'rather', 'image', 'you', 'see', 'though', 'you\\nclose', 'your', 'eyes', 'song', 'you', 'hear\\nthough', 'you', 'shut', 'your', 'ears.\\n\\nIt', 'is', 'not', 'sap', 'within', 'furrowed\\nbark,', 'nor', 'wing', 'attached', 'to', 'claw,\\n\\nBut', 'rather', 'garden', 'for', 'ever', 'in', 'bloom\\nand', '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', 'you', 'are', 'veil.\\n{86}Beauty', 'is', 'eternity', 'gazing', 'at', 'itself\\nin', 'mirror.\\n\\nBut', 'you', 'are', 'eternity', 'you', 'are', 'the\\nmirror.\\n\\n*****', '*****\\n\\n{87}And', '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', 'all\\nreflection,\\n\\nAnd', 'that', 'which', 'is', 'neither', 'deed', 'nor\\nreflection,', 'but', 'wonder', 'surprise\\never', 'springing', 'in', 'soul,', 'even', 'while\\nthe', 'hands', 'hew', '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', 'this', 'for\\nmyself;', 'This', 'for', 'my', 'soul,', 'this', 'other\\nfor', 'my', 'body?”\\n\\nAll', 'your', 'hours', 'are', 'wings', 'that', 'beat\\nthrough', 'space', 'from', 'self', 'to', 'self.', '{88}He\\nwho', 'wears', 'his', 'morality', 'but', 'as', 'his', 'best\\ngarment', 'were', 'better', 'naked.\\n\\nThe', 'wind', 'sun', 'will', 'tear', 'no', 'holes\\nin', 'his', 'skin.\\n\\nAnd', 'he', 'who', 'defines', 'his', 'conduct', 'by', 'ethics\\nimprisons', 'his', 'song-bird', 'in', 'cage.\\n\\nThe', 'freest', 'song', 'comes', 'not', 'through', 'bars\\nand', 'wires.\\n\\nAnd', 'he', 'to', 'whom', 'worshipping', 'is', 'window,\\nto', 'open', 'but', 'also', 'to', 'shut,', 'has', 'not', 'yet\\nvisited', 'house', 'of', 'his', 'soul', 'whose\\nwindows', 'are', 'from', 'dawn', 'to', 'dawn.\\n\\n*****\\n\\nYour', 'daily', 'life', 'is', 'your', 'temple', 'your\\nreligion.\\n\\nWhenever', 'you', 'enter', 'into', 'it', 'take', 'with', 'you\\nyour', 'all.\\n\\nTake', 'plough', 'forge', 'the\\nmallet', '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:', '{89}For', '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', 'solver', 'of', 'riddles.\\n\\nRather', 'look', 'about', 'you', 'you', 'shall', 'see\\nHim', 'playing', 'with', 'your', 'children.\\n\\nAnd', 'look', 'into', 'space;', 'you', 'shall', 'see', 'Him\\nwalking', 'in', 'cloud,', 'outstretching', 'His\\narms', 'in', 'lightning', 'descending', 'in\\nrain.\\n\\nYou', 'shall', 'see', 'Him', 'smiling', 'in', 'flowers,\\nthen', 'rising', 'waving', 'His', 'hands', 'in\\ntrees.\\n\\n*****', '*****\\n\\n{90}Then', 'Almitra', 'spoke,', 'saying,', 'We', 'would\\nask', 'now', 'of', '_Death_.\\n\\nAnd', 'he', 'said:\\n\\nYou', 'would', 'know', 'secret', 'of', 'death.\\n\\nBut', 'how', 'shall', 'you', 'find', 'it', 'unless', 'you\\nseek', 'it', 'in', 'heart', 'of', 'life?\\n\\nThe', 'owl', 'whose', 'night-bound', 'eyes', 'are', 'blind\\nunto', 'day', 'cannot', 'unveil', 'mystery\\nof', 'light.\\n\\nIf', 'you', 'would', 'indeed', 'behold', 'spirit\\nof', 'death,', 'open', 'your', 'heart', 'wide', 'unto', 'the\\nbody', 'of', 'life.\\n\\nFor', 'life', 'death', 'are', 'one,', 'even', 'as', 'the\\nriver', 'sea', 'are', 'one.\\n\\nIn', 'depth', 'of', 'your', 'hopes', 'desires\\nlies', 'your', 'silent', 'knowledge', 'of', 'the\\nbeyond;\\n\\nAnd', 'like', 'seeds', 'dreaming', 'beneath', 'snow\\nyour', 'heart', 'dreams', 'of', 'spring.\\n\\nTrust', 'dreams,', 'for', 'in', 'them', 'is', 'hidden\\nthe', 'gate', 'to', 'eternity.', '{91}Your', 'fear\\nof', 'death', 'is', 'but', 'trembling', 'of', 'the\\nshepherd', 'when', 'he', 'stands', 'before', 'king\\nwhose', 'hand', 'is', 'to', 'be', 'laid', 'upon', 'him', 'in\\nhonour.\\n\\nIs', 'shepherd', 'not', 'joyful', 'beneath', 'his\\ntrembling,', 'that', 'he', 'shall', 'wear', 'mark\\nof', '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', 'wind', 'to', 'melt', 'into', 'sun?\\n\\nAnd', 'what', 'is', 'it', 'to', 'cease', 'breathing,', 'but\\nto', 'free', 'breath', 'from', 'its', 'restless\\ntides,', 'that', 'it', 'may', 'rise', 'expand', 'and\\nseek', 'God', 'unencumbered?\\n\\nOnly', 'when', 'you', 'drink', 'from', 'river', 'of\\nsilence', 'shall', 'you', 'indeed', 'sing.\\n\\nAnd', 'when', 'you', 'have', 'reached', 'mountain\\ntop,', 'then', 'you', 'shall', 'begin', 'to', 'climb.\\n\\nAnd', 'when', 'earth', 'shall', 'claim', 'your\\nlimbs,', 'then', 'shall', 'you', 'truly', 'dance.\\n{92}And', 'now', 'it', 'was', 'evening.\\n\\nAnd', 'Almitra', 'seeress', 'said,', 'Blessed', 'be\\nthis', 'day', 'this', 'place', 'your', 'spirit\\nthat', 'has', 'spoken.\\n\\nAnd', 'he', 'answered,', 'Was', 'it', 'I', 'who', 'spoke?', 'Was\\nI', 'not', 'also', 'listener?\\n\\n*****\\n\\nThen', 'he', 'descended', 'steps', 'of', 'the\\nTemple', 'all', 'people', 'followed', 'him.\\nAnd', 'he', 'reached', 'his', 'ship', 'stood', 'upon\\nthe', 'deck.\\n\\nAnd', 'facing', 'people', 'again,', 'he', 'raised\\nhis', 'voice', 'said:\\n\\nPeople', 'of', 'Orphalese,', 'wind', 'bids', 'me\\nleave', 'you.\\n\\nLess', 'hasty', 'am', 'I', 'than', 'wind,', 'yet', 'I\\nmust', 'go.\\n\\nWe', 'wanderers,', 'ever', 'seeking', 'lonelier\\nway,', 'begin', 'no', 'day', 'where', 'we', 'have', 'ended\\nanother', 'day;', 'no', 'sunrise', 'finds', 'us\\nwhere', 'sunset', 'left', 'us.', '{93}Even', 'while', 'the\\nearth', 'sleeps', 'we', 'travel.\\n\\nWe', 'are', 'seeds', 'of', 'tenacious\\nplant,', 'it', 'is', 'in', 'our', 'ripeness', 'our\\nfullness', 'of', 'heart', 'that', 'we', 'are', 'given', 'to\\nthe', 'wind', 'are', 'scattered.\\n\\n*****\\n\\nBrief', 'were', 'my', 'days', 'among', 'you,', 'and\\nbriefer', 'still', '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', 'richer', 'heart', 'lips', 'more\\nyielding', 'to', 'spirit', 'will', 'I', 'speak.\\n\\nYea,', 'I', 'shall', 'return', 'with', 'tide,\\n\\nAnd', 'though', 'death', 'may', 'hide', 'me,', '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', 'clearer\\nvoice,', 'in', 'words', 'more', 'kin', 'to', 'your\\nthoughts.\\n\\nI', 'go', 'with', 'wind,', 'people', 'of\\nOrphalese,', 'but', 'not', 'down', 'into', 'emptiness;\\n{94}And', 'if', 'this', 'day', 'is', 'not', 'fulfilment\\nof', 'your', 'needs', 'my', 'love,', 'then', 'let', 'it\\nbe', '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', 'greater\\nsilence', 'I', 'shall', 'return.\\n\\nThe', 'mist', 'that', 'drifts', 'away', 'at', 'dawn,\\nleaving', 'but', 'dew', 'in', 'fields,', 'shall\\nrise', 'gather', 'into', 'cloud', 'then\\nfall', 'down', 'in', 'rain.\\n\\nAnd', 'not', 'unlike', 'mist', 'have', 'I', 'been.\\n\\nIn', 'stillness', 'of', 'night', 'I', 'have\\nwalked', 'in', 'your', 'streets,', 'my', 'spirit\\nhas', 'entered', 'your', 'houses,\\n\\nAnd', 'your', 'heart-beats', 'were', 'in', 'my', 'heart,\\nand', 'your', 'breath', 'was', 'upon', 'my', 'face,', 'I\\nknew', 'you', 'all.\\n\\nAy,', 'I', 'knew', 'your', 'joy', 'your', 'pain,\\nand', 'in', 'your', 'sleep', 'your', 'dreams', 'were', 'my\\ndreams.\\n\\nAnd', 'oftentimes', 'I', 'was', 'among', 'you', 'lake\\namong', 'mountains.\\n\\nI', 'mirrored', 'summits', 'in', 'you', 'the\\n{95}bending', 'slopes,', 'even', 'the\\npassing', 'flocks', 'of', 'your', 'thoughts', 'your\\ndesires.\\n\\nAnd', 'to', 'my', 'silence', 'came', 'laughter\\nof', 'your', 'children', 'in', 'streams,', 'the\\nlonging', 'of', 'your', 'youths', 'in', 'rivers.\\n\\nAnd', 'when', 'they', 'reached', 'my', 'depth', 'the\\nstreams', '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', 'boundless', 'in', 'you;\\n\\nThe', 'vast', 'man', 'in', 'whom', 'you', 'are', 'all', 'but\\ncells', 'sinews;\\n\\nHe', 'in', 'whose', 'chant', 'all', 'your', 'singing', 'is\\nbut', 'soundless', 'throbbing.\\n\\nIt', 'is', 'in', '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', 'what\\npresumptions', 'can', 'outsoar', 'that', 'flight?\\n\\nLike', 'giant', 'oak', 'tree', 'covered', 'with', 'apple\\nblossoms', 'is', 'vast', 'man', 'in', 'you.', '{96}His\\nmight', 'binds', 'you', 'to', 'earth,', 'his\\nfragrance', 'lifts', 'you', 'into', 'space,', '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', 'truth.', 'You', 'are', 'also\\nas', 'strong', 'as', 'your', 'strongest', 'link.\\n\\nTo', 'measure', 'you', 'by', 'your', 'smallest', 'deed\\nis', 'to', 'reckon', 'power', 'of', 'ocean', 'by', 'the\\nfrailty', 'of', 'its', 'foam.\\n\\nTo', 'judge', 'you', 'by', 'your', 'failures', 'is', 'to\\ncast', 'blame', 'upon', 'seasons', 'for', 'their\\ninconstancy.\\n\\nAy,', 'you', 'are', 'like', 'ocean,\\n\\nAnd', 'though', 'heavy-grounded', 'ships', 'await\\nthe', 'tide', 'upon', 'your', 'shores,', 'yet,', 'even\\nlike', 'ocean,', 'you', 'cannot', 'hasten', 'your\\ntides.\\n\\nAnd', 'like', 'seasons', 'you', 'are', 'also,\\n\\nAnd', 'though', 'in', 'your', 'winter', 'you', 'deny', 'your\\nspring,\\n\\nYet', 'spring,', 'reposing', 'within', 'you,', 'smiles\\nin', 'her', 'drowsiness', 'is', 'not', 'offended.\\n{97}Think', 'not', 'I', 'say', 'these', 'things', 'in\\norder', 'that', 'you', 'may', 'say', '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', 'shadow\\nof', 'wordless', 'knowledge?\\n\\nYour', 'thoughts', 'my', 'words', 'are', 'waves\\nfrom', 'sealed', 'memory', 'that', 'keeps', 'records\\nof', 'our', 'yesterdays,\\n\\nAnd', 'of', 'ancient', 'days', 'when', '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', 'flame', 'spirit', 'in', 'you', 'ever\\ngathering', 'more', 'of', 'itself,\\n\\nWhile', 'you,', 'heedless', 'of', 'its', 'expansion,\\nbewail', 'withering', 'of', 'your', 'days.\\n{98}It', 'is', 'life', 'in', 'quest', 'of', 'life', 'in\\nbodies', 'that', 'fear', 'grave.\\n\\n*****\\n\\nThere', 'are', 'no', 'graves', 'here.\\n\\nThese', 'mountains', 'plains', 'are', 'cradle\\nand', 'stepping-stone.\\n\\nWhenever', 'you', 'pass', 'by', 'field', 'where\\nyou', 'have', 'laid', 'your', 'ancestors', 'look', 'well\\nthereupon,', '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', 'power', 'and\\nglory.\\n\\nLess', 'than', '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', 'man\\nthan', 'that', 'which', 'turns', 'all', 'his', 'aims\\ninto', 'parching', 'lips', 'all', 'life', 'into', 'a\\nfountain.\\n\\n[Illustration:', '0125]\\n\\n{99}And', 'in', 'this', 'lies', 'my', 'honour', 'my\\nreward,--\\n\\nThat', 'whenever', 'I', 'come', 'to', 'fountain\\nto', 'drink', 'I', 'find', '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', 'portico', 'of', 'temple\\nwhen', 'you', 'would', 'gladly', 'have', 'sheltered', 'me,\\n\\nYet', 'was', 'it', 'not', 'your', 'loving', 'mindfulness\\nof', 'my', 'days', 'my', 'nights', 'that', 'made', 'food\\nsweet', 'to', 'my', 'mouth', 'girdled', 'my', 'sleep\\nwith', 'visions?\\n\\nFor', 'this', 'I', 'bless', 'you', 'most:\\n\\nYou', 'give', 'much', 'know', 'not', 'that', 'you', 'give\\nat', 'all.', '{100}Verily', 'kindness', 'that\\ngazes', 'upon', 'itself', 'in', 'mirror', 'turns', 'to\\nstone,\\n\\nAnd', 'good', 'deed', 'that', 'calls', 'itself', 'by\\ntender', 'names', 'becomes', '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', 'trees', 'of', 'forest,', 'but', 'not\\nwith', 'men.\\n\\nHe', 'sits', 'alone', 'on', 'hill-tops', 'looks\\ndown', 'upon', 'our', 'city.”\\n\\nTrue', 'it', 'is', 'that', 'I', 'have', 'climbed', 'hills\\nand', 'walked', 'in', 'remote', 'places.\\n\\nHow', 'could', 'I', 'have', 'seen', 'you', 'save', 'from', 'a\\ngreat', 'height', 'or', 'great', 'distance?\\n\\nHow', 'can', 'one', 'be', 'indeed', 'near', 'unless', 'he', 'be\\ntar?\\n\\nAnd', 'others', 'among', 'you', 'called', 'unto', 'me,', 'not\\nin', 'words,', 'they', 'said,\\n\\n“Stranger,', 'stranger,', 'lover', 'of\\nunreachable', 'heights,', 'why', 'dwell', 'you', 'among\\nthe', 'summits', 'where', 'eagles', 'build\\ntheir', 'nests?', '{101}Why', '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', 'be', 'one', 'of', 'us.\\n\\nDescend', 'appease', 'your', 'hunger', 'with', 'our\\nbread', 'quench', 'your', 'thirst', 'with', 'our\\nwine.”\\n\\nIn', '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', 'your', 'pain,\\n\\nAnd', 'I', 'hunted', 'only', 'your', 'larger', 'selves\\nthat', 'walk', 'sky.\\n\\n*****\\n\\nBut', 'hunter', 'was', 'also', 'hunted;\\n\\nFor', 'many', 'of', 'my', 'arrows', 'left', 'my', 'bow', 'only\\nto', 'seek', 'my', 'own', 'breast.\\n\\nAnd', 'flier', 'was', 'also', 'creeper;\\n\\nFor', 'when', 'my', 'wings', 'were', 'spread', 'in', 'the\\nsun', 'their', 'shadow', 'upon', 'earth', 'was', 'a\\nturtle.\\n\\nAnd', 'I', 'believer', 'was', 'also', 'doubter;\\n{102}For', 'often', 'have', 'I', 'put', 'my', 'finger\\nin', 'my', 'own', 'wound', 'that', 'I', 'might', 'have', 'the\\ngreater', 'belief', 'in', 'you', 'greater\\nknowledge', 'of', 'you.\\n\\n*****\\n\\nAnd', 'it', 'is', 'with', 'this', 'belief', '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', 'roves', 'with', 'wind.\\n\\nIt', 'is', 'not', 'thing', 'that', 'crawls', 'into\\nthe', 'sun', 'for', 'warmth', 'or', 'digs', 'holes', 'into\\ndarkness', 'for', 'safety,\\n\\nBut', 'thing', 'free,', 'spirit', 'that', 'envelops\\nthe', 'earth', 'moves', 'in', 'ether.\\n\\nIf', 'these', 'be', 'vague', 'words,', 'then', 'seek', 'not\\nto', 'clear', 'them.\\n\\nVague', 'nebulous', 'is', 'beginning', 'of\\nall', 'things,', 'but', 'not', 'their', 'end,\\n\\nAnd', 'I', 'fain', 'would', 'have', 'you', 'remember', 'me', 'as\\na', 'beginning.\\n\\nLife,', 'all', 'that', 'lives,', 'is', 'conceived\\nin', 'mist', 'not', 'in', 'crystal.\\n{103}And', 'who', 'knows', 'but', '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', 'strongest', 'and\\nmost', 'determined.\\n\\nIs', 'it', 'not', 'your', 'breath', 'that', 'has', 'erected\\nand', 'hardened', 'structure', 'of', 'your\\nbones?\\n\\nAnd', 'is', 'it', 'not', 'dream', 'which', 'none', 'of', 'you\\nremember', 'having', 'dreamt,', 'that', 'builded\\nyour', 'city', 'fashioned', 'all', 'there', 'is', 'in\\nit?\\n\\nCould', 'you', 'but', 'see', 'tides', 'of', 'that\\nbreath', 'you', 'would', 'cease', 'to', 'see', 'all', 'else,\\n\\nAnd', 'if', 'you', 'could', 'hear', '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', 'hands', 'that', 'wove', 'it,\\n\\nAnd', 'clay', 'that', 'fills', 'your', 'ears', 'shall\\nbe', 'pierced', 'by', 'those', 'fingers', 'that', 'kneaded\\nit.', '{104}And', '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,', 'he', 'saw', 'pilot', 'of', 'his\\nship', 'standing', 'by', 'helm', 'gazing\\nnow', 'at', 'full', 'sails', 'now', 'at', 'the\\ndistance.\\n\\nAnd', 'he', 'said:\\n\\nPatient,', 'over', 'patient,', 'is', 'captain', 'of\\nmy', 'ship.\\n\\nThe', 'wind', 'blows,', 'restless', 'are', 'the\\nsails;\\n\\nEven', 'rudder', 'begs', 'direction;\\n\\nYet', 'quietly', 'my', 'captain', 'awaits', 'my\\nsilence.\\n\\nAnd', 'these', 'my', 'mariners,', 'who', 'have', 'heard\\nthe', 'choir', 'of', 'greater', 'sea,', 'they', 'too\\nhave', 'heard', 'me', 'patiently.', '{105}Now', 'they\\nshall', 'wait', 'no', 'longer.\\n\\nI', 'am', 'ready.\\n\\nThe', 'stream', 'has', 'reached', 'sea,', 'and\\nonce', 'more', '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', 'together', 'stretch\\nour', 'hands', 'unto', 'giver.\\n\\nForget', 'not', 'that', 'I', 'shall', 'come', 'back', 'to\\nyou.\\n\\nA', 'little', 'while,', 'my', 'longing', 'shall\\ngather', 'dust', 'foam', 'for', 'another', 'body.\\n\\nA', 'little', 'while,', 'moment', 'of', 'rest', 'upon\\nthe', 'wind,', 'another', 'woman', 'shall', 'bear\\nme.\\n\\nFarewell', 'to', 'you', 'youth', 'I', 'have\\nspent', 'with', 'you.\\n\\nIt', 'was', 'but', 'yesterday', 'we', 'met', 'in', 'a\\ndream.', '{106}You', 'have', 'sung', 'to', 'me', 'in', 'my\\naloneness,', 'I', 'of', 'your', 'longings', 'have\\nbuilt', 'tower', 'in', 'sky.\\n\\nBut', 'now', 'our', 'sleep', 'has', 'fled', 'our', 'dream\\nis', 'over,', 'it', 'is', 'no', 'longer', 'dawn.\\n\\nThe', 'noontide', 'is', 'upon', 'us', 'our', 'half\\nwaking', 'has', 'turned', 'to', 'fuller', 'day,', 'we\\nmust', 'part.\\n\\nIf', 'in', 'twilight', 'of', 'memory', 'we', 'should\\nmeet', 'once', 'more,', 'we', 'shall', 'speak', 'again\\ntogether', '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', 'signal', 'to', 'the\\nseamen,', 'straightway', 'they', 'weighed\\nanchor', 'cast', 'ship', 'loose', 'from', 'its\\nmoorings,', 'they', 'moved', 'eastward.\\n\\nAnd', 'cry', 'came', 'from', 'people', 'as', 'from', 'a\\nsingle', 'heart,', 'it', 'rose', 'into', 'dusk\\nand', 'was', 'carried', 'out', 'over', 'sea', 'like', 'a\\ngreat', 'trumpeting.\\n\\nOnly', 'Almitra', 'was', 'silent,', 'gazing', 'after\\n{107}the', 'ship', 'until', 'it', 'had', 'vanished', 'into\\nthe', 'mist.\\n\\nAnd', 'when', 'all', 'people', 'were', 'dispersed\\nshe', 'still', 'stood', 'alone', 'upon', 'sea-wall,\\nremembering', 'in', 'her', 'heart', 'his', 'saying,\\n\\n“A', 'little', 'while,', 'moment', 'of', 'rest', 'upon\\nthe', 'wind,', 'another', 'woman', 'shall', 'bear\\nme.”\\n\\n[Illustration:', '0134]\\n\\n\\n\\n\\n\\n\\n\\n\\nEnd', 'of', 'Project', 'Gutenberg', 'EBook', 'of', 'Prophet,', 'by', 'Kahlil', 'Gibran\\n\\n***', 'END', 'OF', 'THIS', 'PROJECT', 'GUTENBERG', 'EBOOK', 'PROPHET', '***\\n\\n*****', 'This', 'file', 'should', 'be', 'named', '58585-0.txt', 'or', '58585-0.zip', '*****\\nThis', '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', 'Internet', 'Archive\\n\\n\\nUpdated', 'editions', 'will', 'replace', 'previous', 'one--the', 'old', 'editions', 'will\\nbe', 'renamed.\\n\\nCreating', 'works', 'from', 'print', 'editions', 'not', 'protected', 'by', 'U.S.', 'copyright\\nlaw', 'means', 'that', 'no', 'one', 'owns', 'United', 'States', 'copyright', 'in', 'these', 'works,\\nso', 'Foundation', '(and', 'you!)', 'can', 'copy', 'distribute', 'it', 'in', 'United\\nStates', 'without', 'permission', 'without', 'paying', 'copyright\\nroyalties.', 'Special', 'rules,', 'set', 'forth', 'in', 'General', 'Terms', 'of', 'Use', 'part\\nof', 'this', 'license,', 'apply', 'to', 'copying', 'distributing', 'Project\\nGutenberg-tm', 'electronic', 'works', 'to', 'protect', 'PROJECT', 'GUTENBERG-tm\\nconcept', 'trademark.', 'Project', 'Gutenberg', 'is', 'registered', 'trademark,\\nand', 'may', 'not', 'be', 'used', 'if', 'you', 'charge', 'for', 'eBooks,', 'unless', 'you', 'receive\\nspecific', 'permission.', 'If', 'you', 'do', 'not', 'charge', 'anything', 'for', 'copies', 'of', 'this\\neBook,', 'complying', 'with', 'rules', 'is', 'very', 'easy.', 'You', 'may', 'use', 'this', 'eBook\\nfor', 'nearly', 'any', 'purpose', 'such', 'as', 'creation', 'of', 'derivative', 'works,', 'reports,\\nperformances', 'research.', 'They', 'may', 'be', 'modified', 'printed', 'given\\naway--you', 'may', 'do', 'practically', 'ANYTHING', 'in', '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', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting', 'free\\ndistribution', 'of', 'electronic', 'works,', 'by', 'using', 'or', 'distributing', 'this', 'work\\n(or', 'any', 'other', 'work', 'associated', 'in', 'any', 'way', 'with', 'phrase', '\"Project\\nGutenberg\"),', 'you', 'agree', 'to', 'comply', 'with', 'all', 'terms', 'of', 'Full\\nProject', 'Gutenberg-tm', 'License', 'available', 'with', 'this', 'file', 'or', 'online', 'at\\nwww.gutenberg.org/license.\\n\\nSection', '1.', 'General', 'Terms', 'of', 'Use', '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', 'terms', 'of', 'this', 'license', 'intellectual', 'property\\n(trademark/copyright)', 'agreement.', 'If', 'you', 'do', 'not', 'agree', 'to', 'abide', 'by', 'all\\nthe', 'terms', 'of', 'this', 'agreement,', 'you', 'must', 'cease', 'using', 'return', 'or\\ndestroy', 'all', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in', 'your\\npossession.', 'If', 'you', 'paid', 'fee', 'for', 'obtaining', 'copy', 'of', 'or', 'access', 'to', 'a\\nProject', 'Gutenberg-tm', 'electronic', 'work', 'you', 'do', 'not', 'agree', 'to', 'be', 'bound\\nby', 'terms', 'of', 'this', 'agreement,', 'you', 'may', 'obtain', 'refund', 'from', 'the\\nperson', 'or', 'entity', 'to', 'whom', 'you', 'paid', 'fee', 'as', 'set', 'forth', 'in', 'paragraph\\n1.E.8.\\n\\n1.B.', '\"Project', 'Gutenberg\"', 'is', 'registered', 'trademark.', 'It', 'may', 'only', 'be\\nused', 'on', 'or', 'associated', 'in', 'any', 'way', 'with', 'electronic', 'work', 'by', 'people', 'who\\nagree', 'to', 'be', 'bound', 'by', 'terms', 'of', 'this', 'agreement.', 'There', 'are', 'few\\nthings', 'that', 'you', 'can', 'do', 'with', 'most', 'Project', 'Gutenberg-tm', 'electronic', 'works\\neven', 'without', 'complying', 'with', 'full', 'terms', 'of', 'this', 'agreement.', 'See\\nparagraph', '1.C', 'below.', 'There', 'are', 'lot', 'of', 'things', 'you', 'can', 'do', 'with', 'Project\\nGutenberg-tm', 'electronic', 'works', 'if', 'you', 'follow', 'terms', 'of', 'this\\nagreement', 'help', 'preserve', 'free', 'future', 'access', 'to', 'Project', 'Gutenberg-tm\\nelectronic', 'works.', 'See', 'paragraph', '1.E', 'below.\\n\\n1.C.', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', '(\"the\\nFoundation\"', 'or', 'PGLAF),', 'owns', 'compilation', 'copyright', 'in', 'collection\\nof', 'Project', 'Gutenberg-tm', 'electronic', 'works.', 'Nearly', 'all', 'individual\\nworks', 'in', 'collection', 'are', 'in', 'public', 'domain', 'in', 'United\\nStates.', 'If', 'individual', 'work', 'is', 'unprotected', 'by', 'copyright', 'law', 'in', 'the\\nUnited', 'States', 'you', 'are', 'located', 'in', 'United', 'States,', 'we', 'do', 'not\\nclaim', 'right', 'to', 'prevent', 'you', 'from', 'copying,', 'distributing,', 'performing,\\ndisplaying', 'or', 'creating', 'derivative', 'works', 'based', 'on', 'work', 'as', 'long', 'as\\nall', 'references', 'to', 'Project', 'Gutenberg', 'are', 'removed.', 'Of', 'course,', 'we', 'hope\\nthat', 'you', 'will', 'support', 'Project', 'Gutenberg-tm', 'mission', 'of', 'promoting\\nfree', 'access', 'to', 'electronic', 'works', 'by', 'freely', 'sharing', 'Project', 'Gutenberg-tm\\nworks', 'in', 'compliance', 'with', 'terms', 'of', 'this', 'agreement', 'for', 'keeping', 'the\\nProject', 'Gutenberg-tm', 'name', 'associated', 'with', 'work.', 'You', 'can', 'easily\\ncomply', 'with', '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.', 'copyright', 'laws', 'of', 'place', 'where', 'you', 'are', 'located', 'also', 'govern\\nwhat', 'you', 'can', 'do', 'with', 'this', 'work.', 'Copyright', 'laws', 'in', 'most', 'countries', 'are\\nin', 'constant', 'state', 'of', 'change.', 'If', 'you', 'are', 'outside', 'United', 'States,\\ncheck', 'laws', 'of', 'your', 'country', 'in', 'addition', 'to', '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.', 'Foundation', 'makes', 'no\\nrepresentations', 'concerning', 'copyright', 'status', 'of', 'any', 'work', 'in', 'any\\ncountry', 'outside', 'United', 'States.\\n\\n1.E.', 'Unless', 'you', 'have', 'removed', 'all', 'references', 'to', 'Project', 'Gutenberg:\\n\\n1.E.1.', 'following', 'sentence,', 'with', 'active', 'links', 'to,', 'or', 'other\\nimmediate', 'access', 'to,', 'full', 'Project', 'Gutenberg-tm', 'License', 'must', 'appear\\nprominently', 'whenever', 'any', 'copy', 'of', 'Project', 'Gutenberg-tm', 'work', '(any', 'work\\non', 'which', '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', 'use', 'of', 'anyone', 'anywhere', 'in', 'United', 'States', 'and\\n', '', 'most', 'other', 'parts', 'of', 'world', 'at', 'no', 'cost', 'with', 'almost', 'no\\n', '', 'restrictions', 'whatsoever.', 'You', 'may', 'copy', 'it,', 'give', 'it', 'away', 'or', 're-use', 'it\\n', '', 'under', 'terms', 'of', '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', 'laws', 'of', 'country', 'where', 'you\\n', '', 'are', 'located', 'before', 'using', 'this', 'ebook.\\n\\n1.E.2.', 'If', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is\\nderived', 'from', 'texts', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', '(does', 'not\\ncontain', 'notice', 'indicating', 'that', 'it', 'is', 'posted', 'with', 'permission', 'of', 'the\\ncopyright', 'holder),', 'work', 'can', 'be', 'copied', 'distributed', 'to', 'anyone', 'in\\nthe', 'United', 'States', 'without', 'paying', 'any', 'fees', 'or', 'charges.', 'If', 'you', 'are\\nredistributing', 'or', 'providing', 'access', 'to', 'work', 'with', 'phrase', '\"Project\\nGutenberg\"', 'associated', 'with', 'or', 'appearing', 'on', 'work,', 'you', 'must', 'comply\\neither', 'with', 'requirements', 'of', 'paragraphs', '1.E.1', 'through', '1.E.7', 'or\\nobtain', 'permission', 'for', 'use', 'of', 'work', 'Project', 'Gutenberg-tm\\ntrademark', 'as', 'set', 'forth', 'in', 'paragraphs', '1.E.8', 'or', '1.E.9.\\n\\n1.E.3.', 'If', 'individual', 'Project', 'Gutenberg-tm', 'electronic', 'work', 'is', 'posted\\nwith', 'permission', 'of', 'copyright', 'holder,', 'your', 'use', 'distribution\\nmust', 'comply', 'with', 'both', 'paragraphs', '1.E.1', 'through', '1.E.7', 'any\\nadditional', 'terms', 'imposed', 'by', 'copyright', 'holder.', 'Additional', 'terms\\nwill', 'be', 'linked', 'to', 'Project', 'Gutenberg-tm', 'License', 'for', 'all', 'works\\nposted', 'with', 'permission', 'of', 'copyright', 'holder', 'found', 'at', 'the\\nbeginning', 'of', 'this', 'work.\\n\\n1.E.4.', 'Do', 'not', 'unlink', 'or', 'detach', 'or', 'remove', 'full', 'Project', 'Gutenberg-tm\\nLicense', 'terms', 'from', 'this', 'work,', 'or', 'any', 'files', 'containing', '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', 'sentence', 'set', 'forth', 'in', 'paragraph', '1.E.1', 'with\\nactive', 'links', 'or', 'immediate', 'access', 'to', 'full', 'terms', 'of', 'Project\\nGutenberg-tm', 'License.\\n\\n1.E.6.', 'You', 'may', 'convert', 'to', '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', 'Project', 'Gutenberg-tm', 'work', 'in', 'format\\nother', 'than', '\"Plain', 'Vanilla', 'ASCII\"', 'or', 'other', 'format', 'used', 'in', 'official\\nversion', 'posted', 'on', 'official', 'Project', 'Gutenberg-tm', 'web', 'site\\n(www.gutenberg.org),', 'you', 'must,', 'at', 'no', 'additional', 'cost,', 'fee', 'or', 'expense\\nto', 'user,', 'provide', 'copy,', 'means', 'of', 'exporting', 'copy,', 'or', 'means\\nof', 'obtaining', 'copy', 'upon', 'request,', 'of', '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', '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', 'reasonable', 'fee', 'for', 'copies', 'of', 'or', 'providing\\naccess', 'to', 'or', 'distributing', 'Project', 'Gutenberg-tm', 'electronic', 'works\\nprovided', 'that\\n\\n*', 'You', 'pay', 'royalty', 'fee', 'of', '20%', 'of', 'gross', 'profits', 'you', 'derive', 'from\\n', '', 'use', 'of', 'Project', 'Gutenberg-tm', 'works', 'calculated', 'using', 'method\\n', '', 'you', 'already', 'use', 'to', 'calculate', 'your', 'applicable', 'taxes.', 'fee', 'is', 'owed\\n', '', 'to', 'owner', 'of', 'Project', 'Gutenberg-tm', 'trademark,', 'but', 'he', 'has\\n', '', 'agreed', 'to', 'donate', 'royalties', 'under', 'this', 'paragraph', 'to', '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', 'sent', 'to', 'Project\\n', '', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'at', 'address', 'specified', 'in\\n', '', 'Section', '4,', '\"Information', 'about', 'donations', 'to', 'Project', 'Gutenberg\\n', '', 'Literary', 'Archive', 'Foundation.\"\\n\\n*', 'You', 'provide', 'full', 'refund', 'of', 'any', 'money', 'paid', 'by', 'user', 'who', 'notifies\\n', '', 'you', 'in', 'writing', '(or', 'by', 'e-mail)', 'within', '30', 'days', 'of', 'receipt', 'that', 's/he\\n', '', 'does', 'not', 'agree', 'to', 'terms', 'of', 'full', 'Project', 'Gutenberg-tm\\n', '', 'License.', 'You', 'must', 'require', 'such', 'user', 'to', 'return', 'or', 'destroy', 'all\\n', '', 'copies', 'of', 'works', 'possessed', 'in', 'physical', 'medium', 'discontinue\\n', '', 'all', 'use', 'of', 'all', 'access', 'to', 'other', 'copies', 'of', 'Project', 'Gutenberg-tm\\n', '', 'works.\\n\\n*', 'You', 'provide,', 'in', 'accordance', 'with', 'paragraph', '1.F.3,', 'full', 'refund', 'of\\n', '', 'any', 'money', 'paid', 'for', 'work', 'or', 'replacement', 'copy,', 'if', 'defect', 'in', 'the\\n', '', 'electronic', 'work', 'is', 'discovered', 'reported', 'to', 'you', 'within', '90', 'days', 'of\\n', '', 'receipt', 'of', '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', 'fee', 'or', 'distribute', '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', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'The\\nProject', 'Gutenberg', 'Trademark', 'LLC,', 'owner', 'of', 'Project', 'Gutenberg-tm\\ntrademark.', 'Contact', 'Foundation', 'as', 'set', 'forth', 'in', 'Section', '3', 'below.\\n\\n1.F.\\n\\n1.F.1.', 'Project', 'Gutenberg', 'volunteers', 'employees', 'expend', 'considerable\\neffort', 'to', 'identify,', 'do', 'copyright', 'research', 'on,', 'transcribe', 'proofread\\nworks', 'not', 'protected', 'by', 'U.S.', 'copyright', 'law', 'in', 'creating', 'Project\\nGutenberg-tm', 'collection.', 'Despite', 'these', 'efforts,', 'Project', 'Gutenberg-tm\\nelectronic', 'works,', 'medium', 'on', 'which', 'they', 'may', 'be', 'stored,', 'may\\ncontain', '\"Defects,\"', 'such', 'as,', 'but', 'not', 'limited', 'to,', 'incomplete,', 'inaccurate\\nor', 'corrupt', 'data,', 'transcription', 'errors,', 'copyright', 'or', 'other\\nintellectual', 'property', 'infringement,', 'defective', 'or', 'damaged', 'disk', 'or\\nother', 'medium,', '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', '\"Right\\nof', 'Replacement', 'or', 'Refund\"', 'described', 'in', 'paragraph', '1.F.3,', 'Project\\nGutenberg', 'Literary', 'Archive', 'Foundation,', 'owner', 'of', 'Project\\nGutenberg-tm', 'trademark,', 'any', 'other', 'party', 'distributing', 'Project\\nGutenberg-tm', 'electronic', 'work', 'under', 'this', 'agreement,', 'disclaim', 'all\\nliability', 'to', 'you', 'for', 'damages,', 'costs', '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', 'FOUNDATION,', 'THE\\nTRADEMARK', 'OWNER,', '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', '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', 'refund', 'of', 'money', '(if', 'any)', 'you', 'paid', 'for', 'it', 'by', 'sending', 'a\\nwritten', 'explanation', 'to', 'person', 'you', 'received', 'work', 'from.', 'If', 'you\\nreceived', 'work', 'on', 'physical', 'medium,', 'you', 'must', 'return', 'medium\\nwith', 'your', 'written', 'explanation.', 'person', 'or', 'entity', 'that', 'provided', 'you\\nwith', 'defective', 'work', 'may', 'elect', 'to', 'provide', 'replacement', 'copy', 'in\\nlieu', 'of', 'refund.', 'If', 'you', 'received', 'work', 'electronically,', 'person\\nor', 'entity', 'providing', 'it', 'to', 'you', 'may', 'choose', 'to', 'give', 'you', 'second\\nopportunity', 'to', 'receive', 'work', 'electronically', 'in', 'lieu', 'of', 'refund.', 'If\\nthe', 'second', 'copy', 'is', 'also', 'defective,', 'you', 'may', 'demand', 'refund', 'in', 'writing\\nwithout', 'further', 'opportunities', 'to', 'fix', 'problem.\\n\\n1.F.4.', 'Except', 'for', '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', 'exclusion', 'or', 'limitation', 'of', 'certain', 'types', 'of\\ndamages.', 'If', 'any', 'disclaimer', 'or', 'limitation', 'set', 'forth', 'in', 'this', 'agreement\\nviolates', 'law', 'of', 'state', 'applicable', 'to', 'this', 'agreement,', 'the\\nagreement', 'shall', 'be', 'interpreted', 'to', 'make', 'maximum', 'disclaimer', 'or\\nlimitation', 'permitted', 'by', 'applicable', 'state', 'law.', 'invalidity', 'or\\nunenforceability', 'of', 'any', 'provision', 'of', 'this', 'agreement', 'shall', 'not', 'void', 'the\\nremaining', 'provisions.\\n\\n1.F.6.', 'INDEMNITY', '-', 'You', 'agree', 'to', 'indemnify', 'hold', 'Foundation,', 'the\\ntrademark', 'owner,', 'any', 'agent', 'or', 'employee', 'of', 'Foundation,', 'anyone\\nproviding', 'copies', 'of', 'Project', 'Gutenberg-tm', 'electronic', 'works', 'in\\naccordance', 'with', 'this', 'agreement,', 'any', 'volunteers', 'associated', 'with', 'the\\nproduction,', 'promotion', 'distribution', 'of', 'Project', 'Gutenberg-tm\\nelectronic', 'works,', 'harmless', 'from', 'all', 'liability,', 'costs', '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,', '(c)', 'any\\nDefect', 'you', 'cause.\\n\\nSection', '2.', 'Information', 'about', 'Mission', 'of', 'Project', 'Gutenberg-tm\\n\\nProject', 'Gutenberg-tm', 'is', 'synonymous', 'with', 'free', 'distribution', 'of\\nelectronic', 'works', 'in', 'formats', 'readable', 'by', 'widest', 'variety', 'of\\ncomputers', 'including', 'obsolete,', 'old,', 'middle-aged', 'new', 'computers.', 'It\\nexists', 'because', 'of', 'efforts', 'of', 'hundreds', 'of', 'volunteers', 'donations\\nfrom', 'people', 'in', 'all', 'walks', 'of', 'life.\\n\\nVolunteers', 'financial', 'support', 'to', 'provide', 'volunteers', 'with', 'the\\nassistance', 'they', 'need', 'are', 'critical', 'to', 'reaching', 'Project', \"Gutenberg-tm's\\ngoals\", 'ensuring', 'that', 'Project', 'Gutenberg-tm', 'collection', 'will\\nremain', 'freely', 'available', 'for', 'generations', 'to', 'come.', 'In', '2001,', 'Project\\nGutenberg', 'Literary', 'Archive', 'Foundation', 'was', 'created', 'to', 'provide', 'secure\\nand', 'permanent', 'future', 'for', 'Project', 'Gutenberg-tm', 'future\\ngenerations.', 'To', 'learn', 'more', 'about', 'Project', 'Gutenberg', 'Literary\\nArchive', 'Foundation', 'how', 'your', 'efforts', 'donations', 'can', 'help,', 'see\\nSections', '3', '4', 'Foundation', 'information', 'page', 'at\\nwww.gutenberg.org', 'Section', '3.', 'Information', 'about', 'Project', 'Gutenberg\\nLiterary', 'Archive', 'Foundation\\n\\nThe', 'Project', 'Gutenberg', 'Literary', 'Archive', 'Foundation', 'is', 'non', 'profit\\n501(c)(3)', 'educational', 'corporation', 'organized', 'under', 'laws', 'of', 'the\\nstate', 'of', 'Mississippi', 'granted', 'tax', 'exempt', 'status', 'by', 'Internal\\nRevenue', 'Service.', \"Foundation's\", 'EIN', 'or', 'federal', 'tax', 'identification\\nnumber', 'is', '64-6221541.', 'Contributions', 'to', 'Project', 'Gutenberg', 'Literary\\nArchive', 'Foundation', 'are', 'tax', 'deductible', 'to', 'full', 'extent', 'permitted', 'by\\nU.S.', 'federal', 'laws', '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', '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', 'up', 'to\\ndate', 'contact', 'information', 'can', 'be', 'found', 'at', \"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', 'Director\\n', '', '', '', 'gbnewby@pglaf.org\\n\\nSection', '4.', 'Information', 'about', 'Donations', 'to', 'Project', 'Gutenberg\\nLiterary', 'Archive', 'Foundation\\n\\nProject', 'Gutenberg-tm', 'depends', 'upon', 'cannot', 'survive', 'without', 'wide\\nspread', 'public', 'support', 'donations', 'to', 'carry', 'out', 'its', 'mission', 'of\\nincreasing', 'number', 'of', 'public', 'domain', 'licensed', 'works', 'that', 'can', 'be\\nfreely', 'distributed', 'in', 'machine', 'readable', 'form', 'accessible', 'by', 'widest\\narray', 'of', 'equipment', 'including', 'outdated', 'equipment.', 'Many', 'small', 'donations\\n($1', 'to', '$5,000)', 'are', 'particularly', 'important', 'to', 'maintaining', 'tax', 'exempt\\nstatus', 'with', 'IRS.\\n\\nThe', 'Foundation', 'is', 'committed', 'to', 'complying', 'with', 'laws', 'regulating\\ncharities', 'charitable', 'donations', 'in', 'all', '50', 'states', 'of', 'United\\nStates.', 'Compliance', 'requirements', 'are', 'not', 'uniform', 'it', 'takes', 'a\\nconsiderable', 'effort,', 'much', 'paperwork', 'many', 'fees', 'to', 'meet', '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', 'status', 'of', 'compliance', 'for', 'any', 'particular\\nstate', 'visit', 'www.gutenberg.org/donate\\n\\nWhile', 'we', 'cannot', 'do', 'not', 'solicit', 'contributions', 'from', 'states', 'where', 'we\\nhave', 'not', 'met', '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', 'United', 'States.', 'U.S.', 'laws', 'alone', 'swamp', 'our', 'small', 'staff.\\n\\nPlease', 'check', 'Project', 'Gutenberg', 'Web', 'pages', 'for', 'current', 'donation\\nmethods', 'addresses.', 'Donations', 'are', 'accepted', 'in', 'number', 'of', 'other\\nways', 'including', 'checks,', 'online', 'payments', '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', 'originator', 'of', 'Project\\nGutenberg-tm', 'concept', 'of', 'library', 'of', 'electronic', 'works', 'that', 'could', 'be\\nfreely', 'shared', 'with', 'anyone.', 'For', 'forty', 'years,', 'he', 'produced', 'and\\ndistributed', 'Project', 'Gutenberg-tm', 'eBooks', 'with', 'only', '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', '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', 'main', 'PG', 'search\\nfacility:', 'www.gutenberg.org\\n\\nThis', 'Web', 'site', 'includes', 'information', 'about', 'Project', 'Gutenberg-tm,\\nincluding', 'how', 'to', 'make', 'donations', 'to', 'Project', 'Gutenberg', 'Literary\\nArchive', 'Foundation,', 'how', 'to', 'help', 'produce', 'our', 'new', 'eBooks,', 'how', 'to\\nsubscribe', 'to', 'our', 'email', 'newsletter', 'to', 'hear', 'about', 'new', 'eBooks.\\n\\n']\n" + ] + } + ], "source": [ - "# your code here" + "# your code here\n", + "prophet_filter = list(filter(word_filter,prophet))\n", + "print(prophet_filter)" ] }, { @@ -276,15 +1344,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 36, "metadata": {}, "outputs": [], "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'] \n", + " # your code here\n", + " word_list = [word.lower() for word in word_list]\n", + " return x.lower() not in word_list\n", + " " ] }, { @@ -305,16 +1375,8 @@ "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" + " return a + ' ' + b" ] }, { @@ -323,9 +1385,19 @@ "metadata": { "scrolled": true }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], "source": [ - "# your code here" + "# your code here\n", + "result = reduce(concat_space , prophet_flat)\n", + "print(result)" ] }, { @@ -341,13 +1413,15 @@ "metadata": {}, "outputs": [], "source": [ - "# your code here" + "# your code here\n", + "\n", + "print(type(result))" ] } ], "metadata": { "kernelspec": { - "display_name": "Python 3 (ipykernel)", + "display_name": "Python 3", "language": "python", "name": "python3" }, @@ -361,7 +1435,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.13" + "version": "3.12.10" } }, "nbformat": 4,