计算单词出现的频次,并按频次从高到低排序

import collections
f=open("D:\python\Walden.txt","r").read()
f=f.replace(',','').replace('.','').replace('"','').replace(':','')
f=f.split()
r=collections.Counter(f)
print(r)
Counter({'the': 6937, 'and': 4547, 'of': 3472, 'to': 3058, 'a': 2966, 'I': 2007, 'in': 1951, 'it': 1387, 'is': 1317, 'that': 1312, 'as': 1138, 'not': 1031, 'for': 939, 'was': 882, 'or': 868, 'which': 863, 'with': 857, 'my': 743, 'be': 736, 'his': 703, 'on': 689, 'by': 669, 'have': 669, 'but': 666, 'are': 663, 'he': 654, 'at': 609, 'they': 584, 'had': 535, 'from': 500, 'their': 495, 'this': 477, '--': 457, 'all': 445, 'one': 444, 'if': 438, 'so': 418, 'The': 408, 'were': 400, 'its': 385, 'an': 379, 'we': 371, 'who': 360, 'more': 352, 'some': 336, 'would': 334, 'me': 332, 'when': 326, 'than': 316, 'them': 311, 'there': 301, 'man': 299, 'It': 292, 'our': 290, 'like': 289, 'you': 281, 'will': 272, 'only': 270, 'no': 265, 'him': 258, 'has': 257, 'out': 239, 'any': 231, 'up': 225, 'may': 218, 'do': 217, 'what': 216, 'men': 202, 'life': 198, 'into': 197, 'where': 194, 'most': 192, 'such': 191, 'never': 189, 'over': 185, 'should': 180, 'could': 176, 'can': 175, 'house': 173, 'been': 168, 'time': 168, 'though': 167, 'even': 166, 'still': 166, 'many': 164, 'day': 164, 'other': 162, 'water': 161, 'without': 160, 'about': 158, 'pond': 152, 'much': 149, 'woods': 146, 'But': 146, 'long': 145, 'through': 144, 'see': 143, 'made': 141, 'did': 132, 'very': 128, 'those': 127, 'They': 127, 'first': 124, 'before': 123, 'these': 122, 'know': 122, 'then': 121, 'own': 120, 'your': 119, 'how': 118, 'well': 115, 'If': 114, 'now': 113, 'little': 112, 'off': 112, 'ice': 112, 'two': 111, 'good': 111, 'down': 111, 'yet': 110, 'every': 108, 'In': 106, 'nor': 106, 'part': 105, 'am': 103, 'while': 103, 'He': 103, 'live': 102, 'think': 102, 'way': 102, 'heard': 101, 'make': 101, 'being': 101, 'last': 100, 'go': 100, 'came': 100, 'We': 99, 'us': 99, 'far': 99, 'old': 98, 'winter': 98, 'When': 97, 'does': 97, 'might': 96, 'under': 95, 'again': 92, 'after': 92, 'There': 92, 'great': 92, 'world': 91, 'come': 91, 'same': 90, 'ever': 90, 'say': 89, 'get': 89, 'sometimes': 89, 'once': 89, 'new': 88, 'work': 87, 'This': 87, 'thought': 86, 'himself': 85, 'her': 85, 'morning': 85, 'shore': 84, 'Walden': 83, 'must': 83, 'said': 82, 'side': 80, 'feet': 80, 'too': 78, 'things': 77, 'few': 76, 'years': 75, 'another': 75, 'As': 74, 'find': 74, 'put': 74, 'myself': 73, 'spring': 73, 'whose': 73, 'earth': 73, 'sun': 72, 'surface': 72, 'got': 71, 'night': 71, 'found': 71, 'cannot': 70, 'enough': 70, 'also': 69, 'better': 67, 'A': 67, 'here': 67, 'What': 66, 'seen': 66, 'true': 66, 'summer': 66, 'village': 66, 'perhaps': 65, 'thus': 64, 'till': 64, 'half': 64, 'days': 64, 'small': 64, 'poor': 62, 'upon': 62, 'read': 61, 'within': 61, 'because': 61, 'three': 61, 'left': 60, 'take': 60, 'themselves': 59, 'let': 57, 'whole': 57, 'air': 57, 'place': 56, 'least': 56, 'went': 56, 'wood': 55, 'One': 55, 'hear': 55, 'ground': 55, 'shall': 55, 'And': 55, 'town': 54, 'nothing': 54, 'end': 54, 'away': 54, 'fire': 54, 'deep': 54, 'itself': 54, 'always': 53, 'Nature': 53, 'saw': 53, 'almost': 52, 'keep': 52, 'best': 52, 'bottom': 52, 'State': 52, 'whether': 51, 'round': 51, 'light': 51, 'wild': 51, 'between': 51, 'commonly': 50, 'behind': 50, 'each': 50, 'kind': 49, 'leaves': 49, 'pine': 49, 'near': 49, 'merely': 48, 'soon': 48, 'called': 48, 'having': 48, 'government': 48, 'large': 47, 'country': 47, 'look': 47, 'door': 47, 'hand': 47, 'For': 46, 'often': 46, 'less': 46, 'length': 46, 'evening': 46, 'sound': 46, 'snow': 46, 'trees': 46, 'lived': 45, 'just': 45, 'right': 45, 'rather': 43, 'At': 43, 'year': 43, 'eyes': 42, 'How': 42, 'green': 42, 'love': 42, 'rest': 41, 'young': 41, 'lives': 41, 'against': 41, 'lost': 41, 'To': 41, 'next': 41, 'run': 41, 'wind': 41, 'Concord': 40, 'living': 40, 'land': 40, 'Yet': 40, 'making': 40, 'done': 40, 'since': 40, 'alone': 39, 'present': 39, "man's": 39, 'nature': 39, 'perchance': 39, 'human': 39, 'above': 39, 'sand': 38, 'My': 38, 'state': 38, 'she': 38, 'experience': 37, 'head': 37, 'says': 37, 'told': 37, 'cut': 37, 'become': 37, 'speak': 37, 'looked': 37, 'white': 37, 'labor': 36, 'hands': 36, 'whom': 36, 'necessary': 36, 'standing': 36, 'field': 36, 'Why': 36, 'hundred': 36, 'both': 36, 'gone': 36, 'need': 36, 'higher': 36, 'Pond': 35, 'respect': 35, 'use': 35, 'hard': 35, 'already': 35, 'wise': 35, 'course': 35, 'ten': 35, 'race': 35, 'society': 35, 'home': 35, 'dark': 35, 'quite': 35, 'used': 35, 'New': 34, 'foot': 34, 'hour': 34, 'Indian': 34, 'greater': 34, 'sense': 34, 'grass': 34, 'seemed': 34, 'These': 34, 'toward': 34, 'distant': 33, 'free': 33, 'lay': 33, 'words': 33, 'give': 33, 'tell': 33, 'forest': 33, 'warm': 33, 'thoughts': 33, 'tree': 33, 'took': 33, 'something': 32, 'thousand': 32, 'houses': 32, 'open': 32, 'road': 32, 'So': 32, 'doubt': 32, 'You': 32, 'along': 32, 'beans': 32, 'cold': 32, 'mind': 32, 'stand': 32, 'set': 32, 'stood': 32, 'God': 32, 'high': 32, 'mile': 31, 'natural': 31, 'common': 31, 'rain': 31, 'learned': 31, 'food': 31, 'fall': 31, 'All': 31, 'body': 31, 'want': 31, 'worth': 31, 'thick': 31, 'certain': 31, 'four': 30, 'pay': 30, 'form': 30, 'comes': 30, 'No': 30, 'longer': 30, 'several': 30, 'it;': 30, 'animal': 30, 'makes': 30, 'England': 30, 'why': 30, 'line': 30, 'distance': 30, 'around': 30, 'began': 30, 'truth': 30, 'hills': 30, 'particular': 29, 'Some': 29, 'neighbors': 29, 'mean': 29, 'business': 29, 'dry': 29, 'probably': 29, 'others': 29, 'going': 29, 'case': 29, 'covered': 29, 'fish': 29, 'people': 28, 'clothes': 28, 'goes': 28, 'sort': 28, 'back': 28, 'sides': 28, 'middle': 28, 'among': 28, 'feel': 27, 'knew': 27, 'stones': 27, 'birds': 27, 'sit': 27, 'weather': 27, 'times': 27, 'farm': 27, 'five': 27, 'family': 27, 'window': 27, 'low': 27, 'Sometimes': 27, 'dead': 27, 'sat': 27, 'sweet': 27, 'rods': 27, 'built': 26, 'looking': 26, 'face': 26, 'however': 26, 'fresh': 26, 'farmer': 26, 'Let': 26, 'order': 26, 'season': 26, 'sky': 26, 'instead': 26, 'passed': 26, 'money': 26, 'pines': 26, 'boat': 26, 'account': 25, 'none': 25, 'appeared': 25, 'until': 25, 'Who': 25, 'somewhat': 25, 'rich': 25, 'railroad': 25, 'character': 25, 'together': 25, 'suddenly': 25, 'neighbor': 24, 'call': 24, 'remember': 24, 'hardly': 24, 'soil': 24, 'taken': 24, 'them;': 24, 'inches': 24, 'heat': 24, 'possible': 24, 'kept': 24, 'black': 24, 'cellar': 24, 'bread': 24, 'early': 24, 'dinner': 24, 'blue': 24, 'learn': 23, 'doing': 23, 'eat': 23, 'anything': 23, 'thy': 23, 'believe': 23, 'nearly': 23, 'red': 23, 'neighborhood': 23, 'known': 23, 'walk': 23, 'color': 23, 'Such': 23, 'music': 23, 'view': 23, 'corn': 23, 'smooth': 23, 'books': 22, 'fields': 22, 'spend': 22, 'means': 22, 'art': 22, 'room': 22, 'fine': 22, 'meet': 22, 'savage': 22, 'slight': 22, 'name': 22, 'point': 22, 'furniture': 22, 'level': 22, 'hours': 22, 'across': 22, 'That': 22, 'hoe': 22, 'pure': 22, 'leaf': 22, 'else': 21, 'inhabitants': 21, 'daily': 21, 'His': 21, 'mankind': 21, 'turn': 21, 'various': 21, 'thing': 21, 'shelter': 21, 'bed': 21, 'simply': 21, 'With': 21, 'indeed': 21, 'Every': 21, 'felt': 21, 'ponds': 21, 'bark': 21, 'knows': 21, 'history': 21, 'reason': 21, 'greatest': 21, 'gave': 21, 'week': 21, 'fear': 21, 'miles': 21, 'shallow': 21, 'civilized': 20, 'children': 20, 'simple': 20, 'especially': 20, 'By': 20, 'ancient': 20, 'thin': 20, 'appears': 20, 'thinking': 20, 'extent': 20, 'really': 20, 'fact': 20, 'laws': 20, 'whatever': 20, 'cost': 20, 'proportion': 20, 'either': 20, 'caught': 20, 'Not': 20, 'wish': 20, 'dollars': 20, 'full': 20, 'broad': 20, 'leave': 20, 'stone': 20, 'path': 20, 'virtue': 20, 'drink': 20, 'lake': 20, 'inch': 20, 'depth': 20, 'asked': 19, 'easily': 19, 'farther': 19, 'wholly': 19, 'heaven': 19, 'carry': 19, 'short': 19, 'buy': 19, 'turned': 19, 'usual': 19, 'Our': 19, 'sleep': 19, 'suppose': 19, 'beautiful': 19, 'brought': 19, 'nearest': 19, 'Men': 19, 'carried': 19, 'pitch': 19, 'nearer': 19, 'law': 19, 'single': 19, 'river': 19, 'bright': 19, 'perch': 19, 'condition': 18, 'remarkable': 18, 'sitting': 18, 'afford': 18, 'ourselves': 18, 'value': 18, 'important': 18, 'thirty': 18, 'purpose': 18, 'sure': 18, 'midst': 18, 'directly': 18, 'larger': 18, 'seed': 18, 'rise': 18, 'ago': 18, 'Thus': 18, 'latter': 18, 'wall': 18, 'haste': 18, 'roof': 18, 'ready': 18, 'English': 18, 'moral': 18, 'traveller': 18, 'support': 18, 'laid': 18, 'beauty': 18, 'Though': 18, 'afternoon': 18, 'written': 18, 'fishes': 18, 'reflected': 18, 'mode': 17, 'appear': 17, 'Or': 17, 'fell': 17, 'wonder': 17, 'imagination': 17, 'clear': 17, 'globe': 17, 'change': 17, 'advantage': 17, 'primitive': 17, 'close': 17, 'axe': 17, 'philosopher': 17, 'past': 17, 'concerned': 17, 'wide': 17, 'native': 17, 'horizon': 17, 'clean': 17, 'interesting': 17, 'boy': 17, 'frequently': 17, 'pleasant': 17, 'six': 17, 'property': 17, 'gradually': 17, 'study': 17, 'beyond': 17, 'wit': 17, 'amid': 17, 'raised': 17, 'intervals': 17, 'obliged': 17, 'ear': 17, 'grow': 17, 'fox': 17, 'track': 17, 'coming': 17, 'faint': 17, 'bird': 17, 'hunter': 17, 'beneath': 17, 'waters': 17, 'On': 16, 'circumstances': 16, 'heads': 16, 'becomes': 16, 'bodies': 16, 'vast': 16, 'root': 16, 'soul': 16, 'met': 16, 'mere': 16, 'fruits': 16, 'worn': 16, 'sight': 16, 'yourself': 16, 'faith': 16, 'universe': 16, 'reading': 16, 'moment': 16, 'influence': 16, 'observed': 16, 'Is': 16, 'trade': 16, 'modern': 16, 'bear': 16, 'cultivated': 16, 'horse': 16, 'Many': 16, 'farmers': 16, 'rising': 16, 'spent': 16, 'eye': 16, 'yellow': 16, 'parts': 16, 'war': 16, 'question': 16, 'wear': 16, 'Even': 16, 'grew': 16, 'ones': 16, 'taste': 16, 'floor': 16, 'board': 16, 'hill': 16, 'forever': 16, 'opposite': 16, 'genius': 16, 'nations': 16, 'rarely': 16, 'waves': 16, 'purity': 16, 'Massachusetts': 15, 'townsmen': 15, 'Perhaps': 15, 'trust': 15, 'begin': 15, 'actually': 15, 'fast': 15, 'atmosphere': 15, 'mass': 15, 'wisdom': 15, 'tried': 15, 'vegetable': 15, 'likely': 15, 'distinguished': 15, 'Of': 15, 'expression': 15, 'serve': 15, 'fruit': 15, 'according': 15, 'noble': 15, 'age': 15, 'build': 15, 'catch': 15, 'However': 15, 'discovered': 15, 'lower': 15, 'broken': 15, 'respects': 15, 'chiefly': 15, 'subject': 15, 'former': 15, 'effect': 15, 'enjoy': 15, 'surprised': 15, 'rare': 15, 'works': 15, 'leaving': 15, 'dust': 15, 'completely': 15, 'waste': 15, 'wings': 15, 'cat': 15, 'glass': 15, 'seem': 15, 'cars': 15, 'burned': 15, 'memorable': 15, 'meal': 15, 'health': 15, 'evil': 15, 'stream': 15, 'portion': 14, 'particularly': 14, 'forms': 14, 'care': 14, 'Most': 14, 'requires': 14, 'try': 14, 'fuel': 14, 'youth': 14, 'philosophy': 14, 'unless': 14, 'wont': 14, 'answered': 14, 'fit': 14, 'public': 14, 'became': 14, 'paid': 14, 'regard': 14, 'universal': 14, 'help': 14, 'quarter': 14, 'getting': 14, 'hollow': 14, 'poet': 14, 'holes': 14, 'hole': 14, 'An': 14, 'perfect': 14, 'dozen': 14, 'beside': 14, 'solid': 14, 'walls': 14, 'forth': 14, 'apparently': 14, 'walked': 14, 'meanwhile': 14, 'roots': 14, 'news': 14, 'clouds': 14, 'cool': 14, 'direction': 14, 'language': 14, 'filled': 14, 'flowers': 14, 'hunters': 14, 'deepest': 14, 'meadow': 14, 'bubbles': 14, 'book': 13, 'person': 13, 'deal': 13, 'position': 13, 'breadth': 13, 'iron': 13, 'forty': 13, 'comparatively': 13, 'leisure': 13, 'breath': 13, 'worse': 13, 'city': 13, 'play': 13, 'consider': 13, 'late': 13, 'different': 13, 'ages': 13, 'poverty': 13, 'keeps': 13, 'result': 13, 'except': 13, 'enterprise': 13, 'worked': 13, 'accident': 13, 'surely': 13, 'bare': 13, 'loon': 13, 'solitary': 13, 'While': 13, 'degree': 13, 'finally': 13, 'equal': 13, 'America': 13, 'honest': 13, 'materials': 13, 'tax': 13, 'amount': 13, 'required': 13, 'eight': 13, 'third': 13, 'equally': 13, 'fair': 13, 'crop': 13, 'raise': 13, 'usually': 13, 'oak': 13, 'note': 13, 'potatoes': 13, 'grown': 13, 'humanity': 13, 'After': 13, 'squirrels': 13, 'meadows': 13, 'John': 13, 'shores': 13, 'fishing': 13, 'height': 13, 'ask': 12, 'questions': 12, 'difference': 12, 'talk': 12, 'bad': 12, 'pass': 12, 'acres': 12, 'necessity': 12, 'lying': 12, 'highest': 12, 'compared': 12, 'divine': 12, 'opinion': 12, 'me;': 12, 'instance': 12, 'elsewhere': 12, 'civilization': 12, 'bought': 12, 'luxury': 12, 'proper': 12, 'vital': 12, 'certainly': 12, 'stick': 12, 'foundation': 12, 'company': 12, 'skin': 12, 'authority': 12, 'lie': 12, 'seek': 12, 'narrow': 12, 'instinct': 12, 'boards': 12, 'nights': 12, 'Indians': 12, 'glad': 12, 'suggested': 12, 'frozen': 12, 'doors': 12, 'string': 12, 'number': 12, 'individual': 12, 'surrounded': 12, 'woodchuck': 12, 'Shall': 12, 'beginning': 12, 'building': 12, 'satisfied': 12, 'during': 12, 'singing': 12, 'noon': 12, 'held': 12, 'hoeing': 12, 'humble': 12, 'student': 12, 'endeavor': 12, 'independent': 12, 'nation': 12, 'alive': 12, 'occasionally': 12, 'appetite': 12, 'reminded': 12, 'darkness': 12, 'mouth': 12, 'seeds': 12, 'jail': 12, 'Lincoln': 12, 'places': 12, 'sea': 12, 'takes': 12, 'bell': 12, 'edge': 12, 'boys': 12, 'regular': 12, 'struck': 12, 'Fair': 12, 'Haven': 12, 'slavery': 12, 'following': 11, 'months': 11, 'readers': 11, 'curious': 11, 'interest': 11, 'confined': 11, 'coat': 11, 'exposed': 11, 'fires': 11, 'dwelling': 11, 'cattle': 11, 'break': 11, 'fingers': 11, 'sustain': 11, 'market': 11, 'him;': 11, 'foreign': 11, 'highway': 11, 'system': 11, 'voice': 11, 'obtain': 11, 'generally': 11, 'improve': 11, 'acquainted': 11, 'Boston': 11, 'seasons': 11, "one's": 11, 'cover': 11, 'rent': 11, 'dog': 11, 'period': 11, 'sailing': 11, 'cents': 11, 'word': 11, 'women': 11, 'sold': 11, 'approach': 11, 'paper': 11, 'real': 11, 'fifteen': 11, 'show': 11, 'bank': 11, 'placed': 11, 'tender': 11, 'train': 11, 'perceive': 11, 'square': 11, 'inside': 11, 'bricks': 11, 'wiser': 11, 'spirit': 11, 'afterward': 11, 'chimney': 11, 'price': 11, '$': 11, 'detect': 11, 'return': 11, 'partly': 11, 'animals': 11, 'cause': 11, 'master': 11, 'worthy': 11, 'power': 11, 'ears': 11, 'owing': 11, 'Heaven': 11, 'table': 11, 'cast': 11, 'friends': 11, 'sympathy': 11, 'flow': 11, 'landscape': 11, 'visited': 11, 'valley': 11, 'herself': 11, 'sacred': 11, 'awake': 11, 'cases': 11, 'poetry': 11, 'familiar': 11, 'calm': 11, 'grows': 11, 'partridge': 11, 'innocent': 11, 'weeds': 11, 'Hill': 11, 'ducks': 11, "Flint's": 11, 'formed': 11, 'Where': 10, 'families': 10, 'answer': 10, 'Moreover': 10, 'require': 10, 'outward': 10, 'everywhere': 10, 'downward': 10, 'twelve': 10, 'born': 10, 'fate': 10, 'From': 10, 'day;': 10, 'buried': 10, 'today': 10, 'matter': 10, 'slave': 10, 'concealed': 10, 'deliberately': 10, 'alert': 10, 'rose': 10, 'cloud': 10, 'valuable': 10, 'material': 10, 'oxen': 10, 'seems': 10, 'neither': 10, 'child': 10, 'generation': 10, 'determined': 10, 'taking': 10, 'trouble': 10, 'possibly': 10, 'warmth': 10, 'observe': 10, 'death': 10, 'regarded': 10, 'obtained': 10, 'clothing': 10, 'golden': 10, 'future': 10, 'dawn': 10, 'running': 10, 'Do': 10, 'wait': 10, 'received': 10, 'kinds': 10, 'led': 10, 'object': 10, 'towns': 10, 'older': 10, 'elements': 10, 'inclined': 10, 'forget': 10, 'serene': 10, 'stay': 10, 'exercise': 10, 'sufficient': 10, 'store': 10, 'preserve': 10, 'suggest': 10, 'mine': 10, 'majority': 10, 'understand': 10, 'visible': 10, 'American': 10, 'produce': 10, 'follow': 10, 'dwelt': 10, 'streets': 10, 'arts': 10, 'hillside': 10, 'fashion': 10, 'hold': 10, 'returned': 10, 'carefully': 10, 'passage': 10, 'south': 10, 'man;': 10, 'exactly': 10, 'excepting': 10, 'desire': 10, 'eating': 10, 'acquaintance': 10, 'planted': 10, 'sandy': 10, 'salt': 10, 'named': 10, 'diameter': 10, 'reality': 10, 'general': 10, 'strange': 10, 'blood': 10, 'danger': 10, 'satisfaction': 10, 'gray': 10, 'mountains': 10, 'mist': 10, 'intellectual': 10, 'front': 10, 'gossip': 10, 'brave': 10, 'existence': 10, 'frost': 10, 'intellect': 10, 'original': 10, 'behold': 10, 'swamp': 10, 'visitors': 10, 'chip': 10, 'hounds': 10, 'brown': 10, 'hunting': 10, 'gun': 10, 'surrounding': 10, 'pickerel': 10, 'speaking': 9, 'putting': 9, 'fain': 9, 'improved': 9, 'conscious': 9, 'friend': 9, 'pasture': 9, 'sixty': 9, 'barn': 9, 'Their': 9, 'feed': 9, 'delicate': 9, 'eaten': 9, 'dying': 9, "other's": 9, 'duty': 9, 'fame': 9, 'private': 9, 'desperate': 9, 'earnest': 9, 'Here': 9, 'experiment': 9, 'plow': 9, 'circles': 9, 'ay': 9, 'referred': 9, 'Food': 9, 'shadow': 9, 'Man': 9, 'retain': 9, 'twenty': 9, 'literature': 9, 'admirable': 9, 'practically': 9, 'fed': 9, 'warmed': 9, 'upward': 9, 'top': 9, 'knowing': 9, 'seemingly': 9, 'hound': 9, 'outside': 9, 'owner': 9, 'faculties': 9, 'advantages': 9, 'horses': 9, 'hang': 9, 'similar': 9, 'truly': 9, 'travelling': 9, 'colors': 9, 'cheap': 9, 'dollar': 9, 'tells': 9, 'puts': 9, 'soldier': 9, 'fail': 9, 'immediately': 9, 'formerly': 9, 'wanted': 9, 'hearth': 9, 'dwell': 9, 'sing': 9, 'locked': 9, 'twenty-five': 9, 'produced': 9, 'institution': 9, 'stands': 9, 'able': 9, 'Before': 9, 'wished': 9, 'seven': 9, 'overhead': 9, 'culture': 9, 'spiritual': 9, 'there;': 9, 'April': 9, 'hens': 9, 'driven': 9, 'step': 9, 'gods': 9, 'appearance': 9, 'windows': 9, 'excuse': 9, 'freely': 9, 'Those': 9, 'game': 9, 'drop': 9, 'weeks': 9, 'growing': 9, 'plant': 9, 'cow': 9, 'interested': 9, 'failed': 9, 'memory': 9, 'trivial': 9, 'accustomed': 9, 'squirrel': 9, 'looks': 9, 'meat': 9, 'fellows': 9, 'stop': 9, 'ere': 9, 'vain': 9, 'virtues': 9, 'joy': 9, 'heroic': 9, 'wife': 9, 'settle': 9, 'cheerful': 9, 'affected': 9, 'force': 9, 'glorious': 9, 'quality': 9, 'distinctly': 9, 'wrong': 9, 'falls': 9, 'gently': 9, 'ring': 9, 'erect': 9, 'contain': 9, 'solitude': 9, 'express': 9, 'forward': 9, 'ran': 9, 'plain': 9, 'floating': 9, 'angle': 9, 'bar': 9, 'apart': 9, 'companion': 9, 'loud': 9, 'north': 9, 'thither': 9, 'big': 9, 'fifty': 9, 'expect': 9, 'White': 9, 'worms': 9, 'birch': 9, 'Once': 9, 'rule': 9, 'resist': 9, 'obey': 9, 'Winter': 8, 'Spring': 8, 'affairs': 8, "men's": 8, 'send': 8, 'ways': 8, 'heavens': 8, 'labors': 8, 'acquired': 8, 'load': 8, 'mistake': 8, 'employed': 8, 'stony': 8, 'machine': 8, 'judge': 8, 'treat': 8, 'shoes': 8, 'attend': 8, 'gross': 8, 'deeds': 8, 'fancy': 8, 'muskrats': 8, 'healthy': 8, 'exhausted': 8, 'remembered': 8, 'stars': 8, 'strength': 8, 'strain': 8, 'thoroughly': 8, 'compelled': 8, 'knowledge': 8, 'essential': 8, 'creatures': 8, 'Shelter': 8, 'brute': 8, 'Clothing': 8, 'freedom': 8, 'success': 8, 'dogs': 8, 'pains': 8, 'physical': 8, 'etc': 8, 'rank': 8, 'so-called': 8, 'indispensable': 8, 'philosophers': 8, 'Greek': 8, 'simplicity': 8, 'numerous': 8, 'sent': 8, 'plants': 8, 'treated': 8, 'mainly': 8, 'twilight': 8, 'earliest': 8, 'admit': 8, 'expense': 8, 'anywhere': 8, 'timber': 8, 'write': 8, 'reached': 8, 'demand': 8, 'easy': 8, 'practical': 8, 'respectable': 8, 'dress': 8, 'yield': 8, 'Beside': 8, 'introduced': 8, 'wine': 8, 'industry': 8, 'meaning': 8, 'measure': 8, 'nobody': 8, 'serious': 8, 'convenience': 8, 'domestic': 8, 'fable': 8, 'senses': 8, 'innocence': 8, 'deeper': 8, 'pursuits': 8, 'pleased': 8, 'furnished': 8, 'apartment': 8, 'costs': 8, 'palace': 8, 'receive': 8, 'ye': 8, 'father': 8, 'son': 8, 'turns': 8, 'endeavoring': 8, 'degraded': 8, 'below': 8, 'silent': 8, 'improvement': 8, 'sake': 8, 'considered': 8, 'teach': 8, 'singular': 8, 'tempted': 8, 'suitable': 8, 'logs': 8, 'flat': 8, 'apple': 8, 'heap': 8, 'melted': 8, 'goose': 8, 'blows': 8, 'Each': 8, 'attracted': 8, 'perennial': 8, 'concluded': 8, 'dug': 8, 'temperature': 8, 'agreeable': 8, 'notes': 8, 'idea': 8, 'ornaments': 8, 'style': 8, 'log': 8, 'September': 8, 'education': 8, 'pursue': 8, 'Instead': 8, 'somewhere': 8, 'travel': 8, 'stumps': 8, 'given': 8, 'select': 8, 'bent': 8, 'slaves': 8, 'moon': 8, 'rod': 8, 'Mr': 8, 'rye': 8, 'diet': 8, 'offered': 8, 'nuts': 8, 'precious': 8, 'gives': 8, 'grain': 8, 'visit': 8, "farmer's": 8, 'lines': 8, 'flocks': 8, 'loved': 8, 'save': 8, 'peculiar': 8, 'superior': 8, 'refuse': 8, 'nine': 8, 'sunny': 8, 'justice': 8, 'act': 8, 'oaks': 8, 'changed': 8, 'scale': 8, 'garden': 8, 'dew': 8, 'god': 8, 'lakes': 8, 'gentle': 8, 'pastures': 8, 'remote': 8, 'noise': 8, 'poets': 8, 'meanness': 8, 'coffee': 8, 'Its': 8, 'mother': 8, 'distinct': 8, 'tint': 8, 'pile': 8, 'schools': 8, 'blow': 8, 'winged': 8, 'feeling': 8, 'lies': 8, 'reach': 8, 'expanded': 8, 'quarters': 8, 'continually': 8, 'lonely': 8, 'shed': 8, 'hospitality': 8, 'bushes': 8, 'helped': 8, 'played': 8, 'transparent': 8, 'pulled': 8, 'fisherman': 8, 'insect': 8, 'rapidly': 8, "Brister's": 8, 'vote': 8, 'earned': 7, 'therefore': 7, 'main': 7, 'impossible': 7, 'neck': 7, 'leg': 7, 'scenes': 7, 'comparison': 7, 'burn': 7, 'farms': 7, 'occupied': 7, 'tomorrow': 7, 'plastering': 7, 'safely': 7, 'night;': 7, 'bring': 7, 'chief': 7, 'necessaries': 7, 'honestly': 7, 'passes': 7, 'Old': 7, 'variety': 7, 'wonderful': 7, 'anxiety': 7, 'attempt': 7, 'invented': 7, 'surprise': 7, 'social': 7, 'cook': 7, 'devote': 7, 'comforts': 7, 'class': 7, 'commerce': 7, 'school': 7, 'described': 7, 'strong': 7, 'silver': 7, 'paint': 7, 'returning': 7, 'sunk': 7, 'capital': 7, 'keeping': 7, 'settled': 7, 'heart': 7, 'Having': 7, 'wealth': 7, 'woven': 7, 'offer': 7, 'using': 7, 'slender': 7, 'passing': 7, 'bound': 7, 'rock': 7, 'hesitate': 7, 'legs': 7, 'east': 7, 'possession': 7, 'Only': 7, 'resolved': 7, 'mortal': 7, 'difficult': 7, 'She': 7, 'Nevertheless': 7, 'risen': 7, 'space': 7, 'amused': 7, 'discover': 7, 'asleep': 7, 'row': 7, 'wore': 7, 'boughs': 7, 'celestial': 7, 'prison': 7, 'absolutely': 7, 'luxurious': 7, 'tight': 7, 'hire': 7, 'exchange': 7, 'expenses': 7, 'points': 7, 'occasion': 7, 'hired': 7, 'move': 7, 'wood-pile': 7, 'empty': 7, 'names': 7, 'hungry': 7, 'forgotten': 7, 'nail': 7, 'picture': 7, 'economy': 7, 'burrow': 7, 'size': 7, 'principle': 7, 'alas!': 7, 'clay': 7, 'remain': 7, 'cutting': 7, 'cottage': 7, 'dirt': 7, 'woodchucks': 7, 'lowest': 7, 'freeze': 7, 'perfectly': 7, 'provided': 7, 'wholesome': 7, 'supposed': 7, 'sticks': 7, 'piece': 7, 'minute': 7, 'fare': 7, 'start': 7, 'rate': 7, 'working': 7, 'blown': 7, 'earn': 7, 'manure': 7, 'mould': 7, 'notwithstanding': 7, 'spot': 7, 'aid': 7, 'speech': 7, 'religion': 7, 'turning': 7, 'staff': 7, 'safe': 7, 'Cato': 7, 'Indeed': 7, 'effects': 7, 'dried': 7, 'whence': 7, 'neighboring': 7, 'pick': 7, 'everything': 7, 'harmony': 7, 'confess': 7, 'employment': 7, 'calling': 7, 'star': 7, 'steadily': 7, 'Then': 7, 'tea': 7, 'Now': 7, 'invisible': 7, 'fence': 7, 'winds': 7, 'bearing': 7, 'frequent': 7, 'sparrow': 7, 'soft': 7, 'vigor': 7, 'expected': 7, 'effort': 7, 'infinite': 7, 'cry': 7, 'recognize': 7, 'a-fishing': 7, 'printed': 7, 'naturally': 7, 'O': 7, 'rays': 7, 'bough': 7, 'weight': 7, 'flying': 7, 'motion': 7, 'owl': 7, 'suspect': 7, 'Great': 7, 'directed': 7, 'swallows': 7, 'sounded': 7, 'opportunity': 7, 'spirits': 7, 'hoo': 7, 'geese': 7, 'dropped': 7, 'trace': 7, 'aware': 7, 'heavy': 7, 'concern': 7, 'talked': 7, 'sport': 7, 'potato': 7, 'hay': 7, 'marks': 7, 'corresponding': 7, 'rear': 7, 'liquid': 7, 'breast': 7, 'October': 7, 'crack': 7, 'increased': 7, 'bait': 7, 'battle': 7, 'allegiance': 7, 'Farm': 6, 'sincerely': 6, 'students': 6, 'stretch': 6, 'shoulders': 6, 'inherited': 6, 'pushing': 6, 'immortal': 6, 'unnecessary': 6, 'flesh': 6, 'pain': 6, 'seeing': 6, 'plucked': 6, 'limits': 6, 'trying': 6, 'seeking': 6, 'hat': 6, 'sick': 6, 'stir': 6, 'West': 6, 'betray': 6, 'quiet': 6, 'despair': 6, 'chosen': 6, 'preferred': 6, 'natures': 6, 'echoes': 6, 'to-day': 6, 'absolute': 6, 'solely': 6, 'bones': 6, 'walking': 6, 'share': 6, 'directions': 6, 'Adam': 6, 'thou': 6, 'hoed': 6, 'prospect': 6, 'disease': 6, 'avoid': 6, 'instant': 6, 'merchants': 6, 'improvements': 6, 'creation': 6, 'prepared': 6, 'entertain': 6, 'internal': 6, 'slow': 6, 'accordingly': 6, 'spade': 6, 'die': 6, 'Hindoo': 6, 'independence': 6, 'fathers': 6, 'Are': 6, 'contemporaries': 6, 'maintain': 6, 'men?': 6, 'firmly': 6, 'richest': 6, 'travellers': 6, 'spoken': 6, 'tracks': 6, 'calls': 6, 'watching': 6, 'huckleberry': 6, 'accounts': 6, 'followed': 6, 'coast': 6, 'harbor': 6, 'affords': 6, 'steady': 6, 'results': 6, 'error': 6, 'science': 6, 'pace': 6, 'port': 6, 'sweep': 6, 'oftener': 6, 'accomplished': 6, 'suit': 6, 'garments': 6, 'conscience': 6, 'vice': 6, 'west': 6, 'lain': 6, 'garret': 6, 'changes': 6, 'deed': 6, 'charity': 6, 'garment': 6, 'pair': 6, 'cap': 6, 'related': 6, 'mystery': 6, 'Like': 6, 'laugh': 6, 'lapse': 6, 'adds': 6, 'symbol': 6, "day's": 6, 'begins': 6, 'stretched': 6, 'shingles': 6, 'hook': 6, 'rude': 6, 'annual': 6, 'dwellings': 6, 'pecuniary': 6, 'superfluous': 6, 'Lord': 6, 'inquire': 6, 'genuine': 6, 'succeed': 6, 'trap': 6, 'outskirts': 6, 'inhabit': 6, 'walks': 6, 'habit': 6, 'limbs': 6, 'States': 6, 'guests': 6, 'allow': 6, 'cart': 6, 'visitor': 6, 'leap': 6, 'useful': 6, 'objects': 6, 'handsome': 6, 'spending': 6, 'thousands': 6, 'March': 6, 'hickories': 6, 'thawing': 6, 'fairly': 6, 'rafters': 6, 'fragrance': 6, 'chips': 6, 'Irishman': 6, 'lamp': 6, 'infant': 6, 'breaking': 6, 'disappeared': 6, 'posterity': 6, 'nest': 6, 'poetic': 6, 'architecture': 6, 'fireplace': 6, 'needed': 6, 'street': 6, 'affect': 6, 'Cambridge': 6, 'story': 6, 'month': 6, 'runs': 6, 'devil': 6, 'woman': 6, 'melancholy': 6, 'liberty': 6, 'acre': 6, 'transient': 6, 'husbandry': 6, 'crops': 6, 'greatly': 6, 'bean-field': 6, 'flavor': 6, 'practice': 6, 'constant': 6, 'boiled': 6, 'Latin': 6, 'amusement': 6, 'meats': 6, 'regularly': 6, 'carrying': 6, 'add': 6, 'chairs': 6, 'kitchen': 6, 'courage': 6, 'milk': 6, 'retreat': 6, 'spare': 6, 'begun': 6, "father's": 6, 'increasing': 6, 'remaining': 6, 'priest': 6, 'produces': 6, 'berries': 6, 'pursuit': 6, 'twice': 6, 'prove': 6, 'forsake': 6, 'genial': 6, 'goodness': 6, 'chanced': 6, 'enemies': 6, 'pity': 6, 'worthies': 6, 'heroes': 6, 'manners': 6, 'recorded': 6, 'dull': 6, 'antiquity': 6, 'site': 6, 'complete': 6, 'rolled': 6, 'progress': 6, 'reflecting': 6, 'later': 6, 'float': 6, 'shrub': 6, 'throw': 6, 'millions': 6, 'Still': 6, 'hue': 6, 'setting': 6, 'killed': 6, 'French': 6, 'fabulous': 6, 'vision': 6, 'engine': 6, 'mud': 6, 'remains': 6, 'essentially': 6, 'oldest': 6, 'trembling': 6, 'favorable': 6, 'tongue': 6, 'spoke': 6, 'represented': 6, 'further': 6, 'hope': 6, 'considerably': 6, 'falling': 6, 'ceased': 6, 'johnswort': 6, 'graceful': 6, 'broke': 6, 'circling': 6, 'pigeons': 6, 'restless': 6, 'hawk': 6, 'circle': 6, 'shade': 6, 'shot': 6, 'split': 6, 'clearing': 6, 'swept': 6, 'fly': 6, 'cove': 6, 'died': 6, 'pipe': 6, 'kernel': 6, 'presence': 6, 'pail': 6, 'ocean': 6, 'dreams': 6, 'midsummer': 6, 'steps': 6, 'reaches': 6, 'ashes': 6, 'needs': 6, 'effectually': 6, 'proud': 6, 'rivers': 6, 'remarkably': 6, 'showed': 6, 'creature': 6, 'hearing': 6, 'expediency': 6, 'foes': 6, 'wears': 6, 'species': 6, 'coves': 6, 'otherwise': 6, 'parlor': 6, 'opening': 6, 'shoe': 6, 'fastened': 6, 'beasts': 6, 'shiners': 6, 'inlet': 6, 'melts': 6, 'warmest': 6, 'silvery': 6, 'firm': 6, 'ripple': 6, 'twig': 6, 'November': 6, 'leaped': 6, 'shadows': 6, 'hunt': 6, 'shame': 6, 'prevail': 6, 'sensuality': 6, 'et': 6, 'melt': 6, 'song': 6, 'streams': 6, 'army': 6, 'legislators': 6, 'injustice': 6, 'Reading': 5, 'Baker': 5, 'pages': 5, 'considering': 5, 'income': 5, 'devoted': 5, 'pardon': 5, 'sincere': 5, 'Chinese': 5, 'travelled': 5, 'tops': 5, 'finished': 5, 'digging': 5, 'graves': 5, 'creeping': 5, 'created': 5, 'ignorance': 5, 'coarse': 5, 'finer': 5, 'toil': 5, 'relations': 5, 'clothe': 5, 'qualities': 5, 'preserved': 5, 'wearing': 5, 'promising': 5, 'groceries': 5, 'Southern': 5, 'one;': 5, 'drive': 5, 'thinks': 5, 'ladies': 5, 'smoke': 5, 'wisest': 5, 'advice': 5, 'partial': 5, 'failures': 5, 'entirely': 5, 'Roman': 5, 'ends': 5, 'thee': 5, 'offers': 5, 'possessed': 5, 'honor': 5, 'enterprises': 5, 'weakness': 5, 'importance': 5, 'centre': 5, 'ancestors': 5, 'seeks': 5, 'cooked': 5, 'second': 5, 'naturalist': 5, 'man?': 5, 'lungs': 5, 'nests': 5, 'implements': 5, 'knife': 5, 'barbarous': 5, 'elevation': 5, 'reformers': 5, 'agriculture': 5, 'magnanimity': 5, 'scholars': 5, 'advance': 5, 'splendid': 5, 'commenced': 5, 'nobler': 5, 'precisely': 5, 'cherish': 5, 'lot': 5, 'accumulated': 5, 'actual': 5, 'anxious': 5, 'gate': 5, 'trail': 5, 'stirring': 5, 'woodchoppers': 5, 'bargain': 5, 'political': 5, 'depend': 5, 'intelligence': 5, 'print': 5, 'studied': 5, 'praise': 5, 'acquire': 5, 'details': 5, 'letter': 5, 'shore;': 5, 'peace': 5, 'tables': 5, 'driving': 5, 'comfort': 5, 'betrayed': 5, 'acquaintances': 5, 'Often': 5, 'happens': 5, 'approached': 5, 'premises': 5, 'heathen': 5, 'worship': 5, 'ragged': 5, 'dirty': 5, 'false': 5, 'constantly': 5, 'desirable': 5, 'recently': 5, 'Paris': 5, 'hatched': 5, 'egg': 5, 'deposited': 5, 'Egyptian': 5, 'laughter': 5, 'mood': 5, 'shelf': 5, 'countries': 5, 'originally': 5, 'rainy': 5, 'wigwam': 5, 'infancy': 5, 'rocks': 5, 'box': 5, 'tools': 5, 'abroad': 5, 'disposed': 5, 'writing': 5, 'utensils': 5, 'lodge': 5, 'answers': 5, 'abode': 5, 'benefit': 5, 'centuries': 5, 'holding': 5, 'saying': 5, 'souls': 5, 'annually': 5, 'herds': 5, 'skill': 5, 'objection': 5, 'hut': 5, 'railroads': 5, 'Irish': 5, 'convenient': 5, 'content': 5, 'citizen': 5, 'guest': 5, 'Aurora': 5, 'ashamed': 5, 'ride': 5, 'contemplated': 5, 'plains': 5, 'lo!': 5, 'attention': 5, 'due': 5, 'information': 5, 'states': 5, 'dig': 5, 'thinner': 5, 'architectural': 5, 'cheaper': 5, 'experienced': 5, 'Near': 5, 'hickory': 5, 'inconvenience': 5, 'springs': 5, 'straight': 5, 'stronger': 5, 'butter': 5, 'newspaper': 5, 'shanty': 5, 'lately': 5, 'assured': 5, 'spreading': 5, 'event': 5, 'blackberry': 5, 'vegetation': 5, 'pleasure': 5, 'May': 5, 'occupy': 5, 'July': 5, 'afforded': 5, 'entertainment': 5, 'developed': 5, 'eggs': 5, 'engaged': 5, 'belong': 5, 'hence': 5, 'inhabitant': 5, 'shell': 5, 'idle': 5, 'forsooth': 5, 'departed': 5, 'separate': 5, 'Two': 5, 'boast': 5, 'fourth': 5, 'gets': 5, 'principles': 5, 'successive': 5, 'expensive': 5, 'earnestly': 5, 'minds': 5, 'attended': 5, 'studies': 5, 'consequence': 5, 'York': 5, 'Well': 5, 'India': 5, 'million': 5, 'peas': 5, 'contains': 5, 'team': 5, 'outgoes': 5, 'nay': 5, 'celebrated': 5, 'quantity': 5, 'tied': 5, 'Genius': 5, 'pray': 5, 'vulgar': 5, 'sensible': 5, '&': 5, 'monuments': 5, 'fellow': 5, 'date': 5, 'experiments': 5, 'necessarily': 5, 'molasses': 5, 'element': 5, 'gathered': 5, 'peaceful': 5, 'reader': 5, 'house;': 5, 'wildness': 5, 'escape': 5, 'contents': 5, 'Neither': 5, 'bushel': 5, 'maples': 5, 'thank': 5, 'bold': 5, 'butterfly': 5, 'gentleman': 5, 'trunk': 5, 'shut': 5, 'collected': 5, 'customs': 5, 'collect': 5, 'sign': 5, 'picking': 5, 'villagers': 5, 'persons': 5, 'continue': 5, 'mast': 5, 'adventures': 5, 'humane': 5, "sun's": 5, 'mingled': 5, 'suffer': 5, 'freezing': 5, 'pull': 5, 'Being': 5, 'esteemed': 5, 'learning': 5, 'elevated': 5, 'bowels': 5, 'ripe': 5, 'lecture': 5, 'melodious': 5, 'nowhere': 5, 'lofty': 5, 'liberal': 5, 'apples': 5, 'enjoyed': 5, 'withdraw': 5, 'frosts': 5, 'interval': 5, 'rabbits': 5, 'showing': 5, 'grove': 5, 'mountain': 5, 'cabin': 5, 'impressed': 5, 'serenity': 5, 'pleasing': 5, 'flowing': 5, 'crust': 5, 'corner': 5, 'Did': 5, 'bathed': 5, 'pond;': 5, 'us;': 5, 'awakened': 5, 'earlier': 5, 'profaned': 5, 'elastic': 5, 'overcome': 5, 'proved': 5, 'fight': 5, 'count': 5, 'storms': 5, 'petty': 5, 'parish': 5, 'waked': 5, 'ruin': 5, 'newspapers': 5, 'significant': 5, 'faults': 5, 'to?': 5, 'farthest': 5, 'rings': 5, 'tradition': 5, 'busy': 5, 'range': 5, 'finish': 5, 'Homer': 5, 'classics': 5, 'yields': 5, 'trader': 5, 'cheated': 5, "don't": 5, 'converse': 5, 'it?': 5, 'reveal': 5, 'established': 5, 'bodily': 5, 'Can': 5, 'darker': 5, 'yesterday': 5, 'sits': 5, 'stems': 5, 'cheerfully': 5, 'furrow': 5, 'midnight': 5, 'brain': 5, 'regularity': 5, 'storm': 5, 'unexpectedly': 5, 'torn': 5, 'scent': 5, 'barking': 5, 'banks': 5, 'wilderness': 5, 'azure': 5, 'vale': 5, 'sung': 5, 'voices': 5, 'fallen': 5, 'scenery': 5, 'hooting': 5, 'meant': 5, 'swamps': 5, 'rabbit': 5, 'mirth': 5, 'famous': 5, 'fill': 5, 'flock': 5, 'unusually': 5, 'rippling': 5, 'willow': 5, 'plainly': 5, 'burden': 5, 'forenoon': 5, 'protection': 5, 'conspicuous': 5, 'indifferent': 5, 'subjects': 5, 'bean': 5, 'evenings': 5, 'mythology': 5, 'surprising': 5, 'mouse': 5, 'considerable': 5, 'cheek': 5, 'chance': 5, 'arrived': 5, 'king': 5, "o'clock": 5, 'entertained': 5, 'drew': 5, 'supper': 5, "That's": 5, 'couple': 5, 'reverence': 5, 'drank': 5, 'thread': 5, 'institutions': 5, 'regret': 5, 'phenomenon': 5, 'muddy': 5, 'appeal': 5, 'hen': 5, 'obvious': 5, 'rows': 5, 'slowly': 5, 'pursued': 5, 'continued': 5, 'plaster': 5, 'planting': 5, 'disturbed': 5, 'recent': 5, 'alternately': 5, 'approaching': 5, 'rotten': 5, 'sounds': 5, 'harvest': 5, 'partially': 5, 'shoulder': 5, 'severe': 5, 'route': 5, 'soldiers': 5, 'Through': 5, 'moonlight': 5, 'greenish': 5, 'composed': 5, 'steep': 5, 'rises': 5, 'action': 5, 'beautifully': 5, 'insects': 5, 'phenomena': 5, 'mirror': 5, 'dim': 5, 'bosom': 5, 'giving': 5, 'wash': 5, 'dream': 5, 'privilege': 5, 'misty': 5, 'channel': 5, 'bog': 5, 'flows': 5, 'Hermit': 5, 'rustling': 5, 'parent': 5, 'witnessed': 5, 'previous': 5, 'opened': 5, 'sharp': 5, 'crossed': 5, 'cakes': 5, 'lobe': 5, 'governed': 5, 'politicians': 5, 'Constitution': 5, 'Lived': 4, 'Visitors': 4, 'Ponds': 4, 'wrote': 4, 'notice': 4, 'concerning': 4, 'writer': 4, 'kindred': 4, 'accept': 4, 'apply': 4, 'service': 4, 'fits': 4, 'measuring': 4, 'trifling': 4, 'farming': 4, 'rid': 4, 'wolf': 4, 'peck': 4, 'well-nigh': 4, 'cleansed': 4, 'cultivate': 4, 'treasures': 4, 'throwing': 4, 'obedience': 4, 'men;': 4, 'growth': 4, 'finest': 4, 'bloom': 4, 'coats': 4, 'borrowed': 4, 'evident': 4, 'custom': 4, 'voting': 4, 'generosity': 4, 'brick': 4, 'South': 4, 'worst': 4, 'destiny': 4, 'Does': 4, 'weak': 4, 'indicates': 4, 'eternity': 4, 'lead': 4, 'unconscious': 4, 'silence': 4, 'pot': 4, 'whirled': 4, 'reflect': 4, 'luxuries': 4, 'gather': 4, 'belongs': 4, 'ennui': 4, 'Whatever': 4, 'prevented': 4, 'beings': 4, 'Could': 4, 'irresistible': 4, 'bestow': 4, 'adapted': 4, 'incessant': 4, 'establish': 4, 'basis': 4, 'troubled': 4, 'careful': 4, 'methods': 4, 'problems': 4, 'accidental': 4, 'arose': 4, 'acquiring': 4, 'Fuel': 4, 'properly': 4, 'party': 4, 'savages': 4, 'stove': 4, 'draught': 4, 'list': 4, 'serves': 4, 'world;': 4, 'refer': 4, 'climates': 4, 'sufficiently': 4, 'wheelbarrow': 4, 'comfortably': 4, 'poorer': 4, 'inward': 4, 'shift': 4, 'conformity': 4, 'degenerate': 4, 'richer': 4, 'abundant': 4, 'rules': 4, 'not;': 4, 'hint': 4, 'gladly': 4, 'bay': 4, 'disappear': 4, 'anticipate': 4, 'sunrise': 4, 'mornings': 4, 'telegraph': 4, 'waiting': 4, 'dissolve': 4, 'stock': 4, 'unfrequented': 4, 'watered': 4, 'faithfully': 4, 'sell': 4, 'baskets': 4, 'studying': 4, 'selling': 4, 'sad': 4, 'endeavored': 4, 'Empire': 4, 'counting': 4, 'purely': 4, 'supply': 4, 'prospects': 4, 'lights': 4, 'vessel': 4, 'St': 4, 'tailor': 4, 'wooden': 4, 'aside': 4, 'delay': 4, 'fashionable': 4, 'mended': 4, 'believed': 4, 'easier': 4, 'respected': 4, 'belonged': 4, 'adventurous': 4, 'travels': 4, 'hero': 4, 'crisis': 4, 'stripped': 4, 'removed': 4, 'clad': 4, 'enemy': 4, 'purposes': 4, 'earning': 4, 'emphasis': 4, "traveller's": 4, 'wheat': 4, 'fashions': 4, 'costume': 4, 'rags': 4, 'becoming': 4, 'patterns': 4, 'shaking': 4, 'principal': 4, 'deny': 4, 'colder': 4, 'bag': 4, 'occasional': 4, 'march': 4, 'imagine': 4, 'wet': 4, 'cave': 4, 'advanced': 4, 'linen': 4, 'designs': 4, 'Yankee': 4, 'lest': 4, 'almshouse': 4, 'Consider': 4, 'laborers': 4, 'comfortable': 4, 'mostly': 4, 'slipped': 4, 'flakes': 4, 'pressure': 4, 'lined': 4, 'constructed': 4, 'paying': 4, 'apartments': 4, 'average': 4, 'sum': 4, 'Would': 4, 'sacrifice': 4, 'teeth': 4, 'breaks': 4, 'infinitely': 4, 'plank': 4, 'problem': 4, 'hair': 4, 'wishing': 4, 'minority': 4, 'myriads': 4, 'enlightened': 4, 'rulers': 4, 'proves': 4, 'consist': 4, 'Morning': 4, 'pieces': 4, 'desk': 4, 'herd': 4, 'natives': 4, 'pumpkin': 4, 'ox': 4, 'refreshed': 4, 'journey': 4, 'housekeeper': 4, 'camp': 4, 'tomb': 4, 'adorn': 4, 'prop
  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值