读入一本小说的txt 文件
import collections
import re
from d2l import torch as d2l
把下载链接、文件名、sha1加入字典DATA_HUB
d2l.DATA_HUB['time_machine'] = (d2l.DATA_URL + 'timemachine.txt','090b5e7e70c295757f55df93cb0a180b9691891a')
如果文件存在,则校验sha1,否则创建并写入文件
DATA_HUB = dict()
DATA_URL = 'http://d2l-data.s3-accelerate.amazonaws.com/'
def download(name, cache_dir=os.path.join('..', 'data')):
"""下载一个DATA_HUB中的文件,返回本地文件名
Defined in :numref:`sec_kaggle_house`"""
#判断文件名在不在字典里
assert name in DATA_HUB, f"{name} 不存在于 {DATA_HUB}"
#从元组中取出文件下载链接和sha1
url, sha1_hash = DATA_HUB[name]
#cache_dir=os.path.join('..', 'data'):../data
#把existok设置True,创建目录如果已经存在则不会往外抛出异常
os.makedirs(cache_dir, exist_ok=True)
#把下载链接按/分割 返回的列表取最后一个 即 文件名
#并把他和cache_dir相连:../data/timemachine.txt
fname = os.path.join(cache_dir, url.split('/')[-1])
#如果文件已存在 读取文件并计算sha1
if os.path.exists(fname):
sha1 = hashlib.sha1()
with open(fname, 'rb') as f:
while True:
#每次读取1048576字节,也就是1MB
data = f.read(1048576)
if not data:
break
sha1.update(data)
#比较sha1
if sha1.hexdigest() == sha1_hash:
return fname # 命中缓存
#如果文件未存在
#发出get请求并把内容写入文件
print(f'正在从{url}下载{fname}...')
r = requests.get(url, stream=True, verify=True)
with open(fname, 'wb') as f:
f.write(r.content)
return fname
把不是字母的字符变成空格
返回一个列表,列表中,每一行都经过处理
def read_time_machine():
"""Load the time machine dataset into a list of text lines."""
with open(d2l.download('time_machine'), 'r') as f:
lines = f.readlines()
#不是字母的字符变成空格,去掉空格或换行符,字母小写
return [re.sub('[^A-Za-z]+', ' ', line).strip().lower() for line in lines]
DATA_HUB
由此看来 DATA_HUB是一个字典,格式:文件名:(下载链接,文件sha1)
print(d2l.DATA_HUB)
{'kaggle_house_train': ('http://d2l-data.s3-accelerate.amazonaws.com/kaggle_house_pred_train.csv', '585e9cc93e70b39160e7921475f9bcd7d31219ce'), 'kaggle_house_test': ('http://d2l-data.s3-accelerate.amazonaws.com/kaggle_house_pred_test.csv', 'fa19780a7b011d9b009e8bff8e99922a8ee2eb90'), 'time_machine': ('http://d2l-data.s3-accelerate.amazonaws.com/timemachine.txt', '090b5e7e70c295757f55df93cb0a180b9691891a'), 'fra-eng': ('http://d2l-data.s3-accelerate.amazonaws.com/fra-eng.zip', '94646ad1522d915e7b0f9296181140edcf86a4f5'), 'airfoil': ('http://d2l-data.s3-accelerate.amazonaws.com/airfoil_self_noise.dat', '76e5be1548fd8222e5074cf0faae75edff8cf93f'), 'hotdog': ('http://d2l-data.s3-accelerate.amazonaws.com/hotdog.zip', 'fba480ffa8aa7e0febbb511d181409f899b9baa5'), 'banana-detection': ('http://d2l-data.s3-accelerate.amazonaws.com/banana-detection.zip', '5de26c8fce5ccdea9f91267273464dc968d20d72'), 'voc2012': ('http://d2l-data.s3-accelerate.amazonaws.com/VOCtrainval_11-May-2012.tar', '4e443f8a2eca6b1dac8a6c57641b67dd40621a49'), 'cifar10_tiny': ('http://d2l-data.s3-accelerate.amazonaws.com/kaggle_cifar10_tiny.zip', '2068874e4b9a9f0fb07ebe0ad2b29754449ccacd'), 'dog_tiny': ('http://d2l-data.s3-accelerate.amazonaws.com/kaggle_dog_tiny.zip', '0cb91d09b814ecdc07b50f31f8dcad3e81d6a86d'), 'ptb': ('http://d2l-data.s3-accelerate.amazonaws.com/ptb.zip', '319d85e578af0cdc590547f26231e4e31cdf1e42'), 'glove.6b.50d': ('http://d2l-data.s3-accelerate.amazonaws.com/glove.6B.50d.zip', '0b8703943ccdb6eb788e6f091b8946e82231bc4d'), 'glove.6b.100d': ('http://d2l-data.s3-accelerate.amazonaws.com/glove.6B.100d.zip', 'cd43bfb07e44e6f27cbcc7bc9ae3d80284fdaf5a'), 'glove.42b.300d': ('http://d2l-data.s3-accelerate.amazonaws.com/glove.42B.300d.zip', 'b5116e234e9eb9076672cfeabf5469f3eec904fa'), 'wiki.en': ('http://d2l-data.s3-accelerate.amazonaws.com/wiki.en.zip', 'c1816da3821ae9f43899be655002f6c723e91b88'), 'wikitext-2': ('https://s3.amazonaws.com/research.metamind.io/wikitext/wikitext-2-v1.zip', '3c914d17d80b1459be871a5039ac23e752a53cbe'), 'aclImdb': ('http://ai.stanford.edu/~amaas/data/sentiment/aclImdb_v1.tar.gz', '01ada507287d82875905620988597833ad4e0903'), 'SNLI': ('https://nlp.stanford.edu/projects/snli/snli_1.0.zip', '9fcde07509c7e87ec61c640c1b2753d9041758e4'), 'pokemon': ('http://d2l-data.s3-accelerate.amazonaws.com/pokemon.zip', 'c065c0e2593b8b161a2d7873e42418bf6a21106c')}
lines=read_time_machine()
#打印行数
print(f'# text lines: {len(lines)}')
#打印第一行内容
print(lines[0])
#打印第11行内容
print(lines[10])
输出:
Downloading ../data/timemachine.txt from http://d2l-data.s3-accelerate.amazonaws.com/timemachine.txt...
# text lines: 3221
the time machine by h g wells
twinkled and his usually pale face was flushed and animated the
简化操作:
!wget http://d2l-data.s3-accelerate.amazonaws.com/timemachine.txt
import re
import collections
with open('timemachine.txt', 'r') as f:
lines = f.readlines()
lines=[re.sub('[^A-Za-z]+', ' ', line).strip().lower() for line in lines]
#打印行数
print(f'# text lines: {len(lines)}')
#打印第一行内容
print(lines[0])
#打印第11行内容
print(lines[10])
把每一行变成词源列表
下面的 tokenize 函数将文本行列表作为输入,
列表中的每个元素是一个文本序列(如一条文本行)。
每个文本序列又被拆分成一个词元列表,
词元(token)是文本的基本单位。
最后,返回一个由词元列表组成的列表,
其中的每个词元都是一个字符串(string)。
def tokenize(lines, token='word'):
"""将文本行拆分为单词或字符词元。"""
if token == 'word':
return [line.split() for line in lines]
elif token == 'char':
return [list(line) for line in lines]
else:
print('错误:未知词元类型:' + token)
tokens = tokenize(lines)
for i in range(11):
print(tokens[i])
简化:当以单词为分割单位
tokens=[line.split() for line in lines]
for i in range(11):
print(tokens[i])
输出
['the', 'time', 'machine', 'by', 'h', 'g', 'wells']
[]
[]
[]
[]
['i']
[]
[]
['the', 'time', 'traveller', 'for', 'so', 'it', 'will', 'be', 'convenient', 'to', 'speak', 'of', 'him']
['was', 'expounding', 'a', 'recondite', 'matter', 'to', 'us', 'his', 'grey', 'eyes', 'shone', 'and']
['twinkled', 'and', 'his', 'usually', 'pale', 'face', 'was', 'flushed', 'and', 'animated', 'the']
简化:当以字符为分割单位
tokens=[list(line) for line in lines]
for i in range(11):
print(tokens[i])
['t', 'h', 'e', ' ', 't', 'i', 'm', 'e', ' ', 'm', 'a', 'c', 'h', 'i', 'n', 'e', ' ', 'b', 'y', ' ', 'h', ' ', 'g', ' ', 'w', 'e', 'l', 'l', 's']
[]
[]
[]
[]
['i']
[]
[]
['t', 'h', 'e', ' ', 't', 'i', 'm', 'e', ' ', 't', 'r', 'a', 'v', 'e', 'l', 'l', 'e', 'r', ' ', 'f', 'o', 'r', ' ', 's', 'o', ' ', 'i', 't', ' ', 'w', 'i', 'l', 'l', ' ', 'b', 'e', ' ', 'c', 'o', 'n', 'v', 'e', 'n', 'i', 'e', 'n', 't', ' ', 't', 'o', ' ', 's', 'p', 'e', 'a', 'k', ' ', 'o', 'f', ' ', 'h', 'i', 'm']
['w', 'a', 's', ' ', 'e', 'x', 'p', 'o', 'u', 'n', 'd', 'i', 'n', 'g', ' ', 'a', ' ', 'r', 'e', 'c', 'o', 'n', 'd', 'i', 't', 'e', ' ', 'm', 'a', 't', 't', 'e', 'r', ' ', 't', 'o', ' ', 'u', 's', ' ', 'h', 'i', 's', ' ', 'g', 'r', 'e', 'y', ' ', 'e', 'y', 'e', 's', ' ', 's', 'h', 'o', 'n', 'e', ' ', 'a', 'n', 'd']
['t', 'w', 'i', 'n', 'k', 'l', 'e', 'd', ' ', 'a', 'n', 'd', ' ', 'h', 'i', 's', ' ', 'u', 's', 'u', 'a', 'l', 'l', 'y', ' ', 'p', 'a', 'l', 'e', ' ', 'f', 'a', 'c', 'e', ' ', 'w', 'a', 's', ' ', 'f', 'l', 'u', 's', 'h', 'e', 'd', ' ', 'a', 'n', 'd', ' ', 'a', 'n', 'i', 'm', 'a', 't', 'e', 'd', ' ', 't', 'h', 'e']
文本词汇表
class Vocab:
"""文本词汇表"""
def __init__(self, tokens=None, min_freq=0, reserved_tokens=None):
#如果少于min_freq个词 就丢掉
if tokens is None:
tokens = []
#开头结尾的东西
if reserved_tokens is None:
reserved_tokens = []
# 按出现频率排序
#统计词元的频率
counter = count_corpus(tokens)
#按第二个元素即出现频率排序,降序
self.token_freqs = sorted(counter.items(), key=lambda x: x[1],reverse=True)
# 未知词元的索引为0
self.unk, uniq_tokens = 0, ['<unk>'] + reserved_tokens
#如果不是出现频率太小 或者是uniq token,加入uniq_tokens
uniq_tokens += [token for token, freq in self.token_freqs
if freq >= min_freq and token not in uniq_tokens]
self.idx_to_token, self.token_to_idx = [], dict()
for token in uniq_tokens:
#self.idx_to_token和uniq_tokens一样
self.idx_to_token.append(token)
#self.token_to_idx存放一个token到index的字典
self.token_to_idx[token] = len(self.idx_to_token) - 1
def __len__(self):
return len(self.idx_to_token)
"""给一个tokens,返回索引"""
#可以这样用 Vocab v[tokens]
def __getitem__(self, tokens):
#如果tokens不是list或tuple
if not isinstance(tokens, (list, tuple)):
#查询字典token对应键值,找不到返回self.unk
return self.token_to_idx.get(tokens, self.unk)
return [self.__getitem__(token) for token in tokens]
"""给一个索引,返回token"""
def to_tokens(self, indices):
if not isinstance(indices, (list, tuple)):
return self.idx_to_token[indices]
return [self.idx_to_token[index] for index in indices]
def count_corpus(tokens):
"""统计词元的频率。"""
# 这里的 `tokens` 是 1D 列表或 2D 列表
if len(tokens) == 0 or isinstance(tokens[0], list):
# 将词元列表展平成使用词元填充的一个列表
tokens = [token for line in tokens for token in line]
return collections.Counter(tokens)
count_corpus函数分析及简化
#遍历tokens中的每一个line,再遍历line中的每一个token,
#再把token作为输出结果 返回一个列表
tokens = [token for line in tokens for token in line]
print(tokens[:20])
counter=collections.Counter(tokens)
#计算每一个单词的数量
print(dict(counter))
输出
['the', 'time', 'machine', 'by', 'h', 'g', 'wells', 'i', 'the', 'time', 'traveller', 'for', 'so', 'it', 'will', 'be', 'convenient', 'to', 'speak', 'of']
{'the': 2261, 'time': 200, 'machine': 85, 'by': 103, 'h': 1, 'g': 1, 'wells': 9, 'i': 1267, 'traveller': 61, 'for': 221, 'so': 112, 'it': 437, 'will': 37, 'be': 93, 'convenient': 5, 'to': 695, 'speak': 6, 'of': 1155, 'him': 40, 'was': 552, 'expounding': 2, 'a': 816, 'recondite': 1, 'matter': 6, 'us': 35, 'his': 129, 'grey': 11, 'eyes': 35, 'shone': 8, 'and': 1245, 'twinkled': 1, 'usually': 3, 'pale': 10, 'face': 38, 'flushed': 2, 'animated': 3, 'fire': 30, 'burned': 6, 'brightly': 4, 'soft': 16, 'radiance': 1, 'incandescent': 1, 'lights': 1, 'in': 541, 'lilies': 1, 'silver': 6, 'caught': 10, 'bubbles': 1, 'that': 443, 'flashed': 4, 'passed': 13, 'our': 57, 'glasses': 1, 'chairs': 2, 'being': 14, 'patents': 1, 'embraced': 1, 'caressed': 2, 'rather': 18, 'than': 34, 'submitted': 1, 'sat': 22, 'upon': 113, 'there': 127, 'luxurious': 1, 'after': 37, 'dinner': 13, 'atmosphere': 2, 'when': 55, 'thought': 57, 'roams': 1, 'gracefully': 1, 'free': 4, 'trammels': 1, 'precision': 1, 'he': 123, 'put': 34, 'this': 152, 'way': 38, 'marking': 2, 'points': 3, 'with': 216, 'lean': 2, 'forefinger': 2, 'as': 270, 'we': 82, 'lazily': 1, 'admired': 1, 'earnestness': 1, 'over': 54, 'new': 28, 'paradox': 5, 'fecundity': 1, 'you': 137, ...}
以字符char为分割单位
['t', 'h', 'e', ' ', 't', 'i', 'm', 'e', ' ', 'm', 'a', 'c', 'h', 'i', 'n', 'e', ' ', 'b', 'y', ' ']
{'t': 13515, 'h': 8257, 'e': 17838, ' ': 29927, 'i': 10138, 'm': 4043, 'a': 11704, 'c': 3424, 'n': 9917, 'b': 1897, 'y': 2679, 'g': 3075, 'w': 3225, 'l': 6146, 's': 8486, 'r': 7674, 'v': 1295, 'f': 3354, 'o': 9758, 'p': 2427, 'k': 1087, 'x': 236, 'u': 3805, 'd': 6337, 'z': 144, 'j': 97, 'q': 95}
我们首先使用时光机器数据集作为语料库来构建词汇表,然后打印前几个高频词元及其索引。
vocab = Vocab(tokens)
print(list(vocab.token_to_idx.items())[:10])
[('<unk>', 0), ('the', 1), ('i', 2), ('and', 3), ('of', 4), ('a', 5), ('to', 6), ('was', 7), ('in', 8), ('that', 9)]
简化
min_freq=0
reserved_tokens=[]
# 按出现频率排序
#按第二个元素即出现频率排序,降序
token_freqs = sorted(counter.items(), key=lambda x: x[1],reverse=True)
# 未知词元的索引为0
unk, uniq_tokens = 0, ['<unk>'] + reserved_tokens
uniq_tokens += [token for token, freq in token_freqs
if freq >= min_freq and token not in uniq_tokens]
idx_to_token, token_to_idx = [], dict()
for token in uniq_tokens:
idx_to_token.append(token)
token_to_idx[token] = len(idx_to_token) - 1
print(uniq_tokens)
print(idx_to_token)
输出
['<unk>', 'the', 'i', 'and', 'of', 'a', 'to', 'was', 'in', 'that', 'my', 'it', 'had', 'me', 'as', 'at', 'for', 'with', 'but', 'time', 'were', 'this', 'you', 'on', 'then', 'his', 'there', 'he', 'have', 'they', 'from', 'one', 'all', 'not', 'into', 'upon', 'little', 'so', 'is', 'came', 'by', 'some', 'be', 'no', 'could', 'their', 'said', 'saw', 'down', 'them', 'machine', 'which', 'very', 'or', 'an', 'we', 'now', 'what', 'been', 'these', 'like', 'her', 'out', 'seemed', 'up', 'man', 'about', 's', 'its', 'thing', 'again', 'traveller', 'would', 'more', 'white', 'our', 'thought', 'felt', 'when', 'over', 'weena', 'still', 'world', 'myself', 'even', 'must', 'through', 'if', 'hand', 'went', 'first', 'are', 'before', 'last', 'towards', 'only', 'people', 'she', 'morlocks', 'see', 'too', 'found', 'how', 'here', 'light', 'great', 'under', 'did', 'him', 'any', 'began', 'back', 'night', 'face', 'way', 'will', 'after', 'another', 'well', 'same', 'think', 'other', 'away', 'round', 'made', 'day', 'us', 'eyes', 'mind', 'might', 'perhaps', 'than', 'put', 'things', ...]
print(token_to_idx)
输出
{'<unk>': 0, 'the': 1, 'i': 2, 'and': 3, 'of': 4, 'a': 5, 'to': 6, 'was': 7, 'in': 8, 'that': 9, 'my': 10, 'it': 11, 'had': 12, 'me': 13, 'as': 14, 'at': 15, 'for': 16, 'with': 17, 'but': 18, 'time': 19, 'were': 20, 'this': 21, 'you': 22, 'on': 23, 'then': 24, 'his': 25, 'there': 26, 'he': 27, 'have': 28, 'they': 29, 'from': 30, 'one': 31, 'all': 32, 'not': 33, 'into': 34, 'upon': 35, 'little': 36, 'so': 37, 'is': 38, 'came': 39, 'by': 40, 'some': 41, 'be': 42, 'no': 43, 'could': 44, 'their': 45, 'said': 46, 'saw': 47, 'down': 48, 'them': 49, 'machine': 50, 'which': 51, 'very': 52, 'or': 53, 'an': 54, 'we': 55, 'now': 56, 'what': 57, 'been': 58, 'these': 59, 'like': 60, 'her': 61, 'out': 62, 'seemed': 63, 'up': 64, 'man': 65, 'about': 66, 's': 67, 'its': 68, 'thing': 69, 'again': 70, 'traveller': 71, 'would': 72, 'more': 73, 'white': 74, 'our': 75, 'thought': 76, 'felt': 77, 'when': 78, 'over': 79, 'weena': 80, 'still': 81, 'world': 82, 'myself': 83, 'even': 84, 'must': 85, 'through': 86, 'if': 87, 'hand': 88, 'went': 89, 'first': 90, 'are': 91, 'before': 92, 'last': 93, 'towards': 94, 'only': 95, 'people': 96, 'she': 97, 'morlocks': 98, 'see': 99, 'too': 100, 'found': 101, 'how': 102, 'here': 103, 'light': 104, 'great': 105, 'under': 106, 'did': 107, 'him': 108, 'any': 109, 'began': 110, 'back': 111, 'night': 112, 'face': 113, 'way': 114, 'will': 115, 'after': 116, 'another': 117, 'well': 118, 'same': 119, 'think': 120, 'other': 121, 'away': 122, 'round': 123, 'made': 124, ...}
现在,我们可以将每一条文本行转换成一个数字索引列表。
print('words:', tokens)
print('indices:', vocab[tokens])
words: [['the', 'time', 'machine', 'by', 'h', 'g', 'wells'], [], [], [], [], ['i'], [], [], ['the', 'time', 'traveller', 'for', 'so', 'it', 'will', 'be', 'convenient', 'to', 'speak', 'of', 'him'], ['was', 'expounding', 'a', 'recondite', 'matter', 'to', 'us', 'his', 'grey', 'eyes', 'shone', 'and'], ['twinkled', 'and', 'his', 'usually', 'pale', 'face', 'was', 'flushed', 'and', 'animated', 'the'], ['fire', 'burned', 'brightly', 'and', 'the', 'soft', 'radiance', 'of', 'the', 'incandescent'], ['lights', 'in', 'the', 'lilies', 'of', 'silver', 'caught', 'the', 'bubbles', 'that', 'flashed', 'and'], ['passed', 'in', 'our', 'glasses', 'our', 'chairs', 'being', 'his', 'patents', 'embraced', 'and'], ['caressed', 'us', 'rather', 'than', 'submitted', 'to', 'be', 'sat', 'upon', 'and', 'there', 'was', 'that'], ['luxurious', 'after', 'dinner', 'atmosphere', 'when', 'thought', 'roams', 'gracefully'], ['free', 'of', 'the', 'trammels', 'of', 'precision', 'and', 'he', 'put', 'it', 'to', 'us', 'in', 'this'], ['way', 'marking', 'the', 'points', 'with', 'a', 'lean', 'forefinger', 'as', 'we', 'sat', 'and', 'lazily'], ['admired', 'his', 'earnestness', 'over', 'this', 'new', 'paradox', 'as', 'we', 'thought', 'it'], ['and', 'his', 'fecundity'], [], ['you', 'must', 'follow', 'me', 'carefully', 'i', 'shall', 'have', 'to', 'controvert', 'one', 'or', 'two'], ['ideas', 'that', 'are', 'almost', 'universally', 'accepted', 'the', 'geometry', 'for'], ['instance', 'they', 'taught', 'you', 'at', 'school', 'is', 'founded', 'on', 'a', 'misconception'], [], ['is', 'not', 'that', 'rather', 'a', 'large', 'thing', 'to', 'expect', 'us', 'to', 'begin', 'upon'], ['said', 'filby', 'an', 'argumentative', 'person', 'with', 'red', 'hair'], [], ['i', 'do', 'not', 'mean', 'to', 'ask', 'you', 'to', 'accept', 'anything', 'without', 'reasonable'], ['ground', 'for', 'it', 'you', 'will', 'soon', 'admit', 'as', 'much', 'as', 'i', 'need', 'from', 'you', 'you'], ['know', 'of', 'course', 'that', 'a', 'mathematical', 'line', 'a', 'line', 'of', 'thickness', 'nil'], ['has', 'no', 'real', 'existence', 'they', 'taught', 'you', 'that', 'neither', 'has', 'a'], ['mathematical', 'plane', 'these', 'things', 'are', 'mere', 'abstractions'], [], ['that', 'is', 'all', 'right', 'said', 'the', 'psychologist'], [], ['nor', 'having', 'only', 'length', 'breadth', 'and', 'thickness', 'can', 'a', 'cube', 'have', 'a'], ['real', 'existence'], [], ['there', 'i', 'object', 'said', 'filby', 'of', 'course', 'a', 'solid', 'body', 'may', 'exist', 'all'], ['real', 'things'], [], ['so', 'most', 'people', 'think', 'but', 'wait', 'a', 'moment', 'can', 'an', 'instantaneous'], ['cube', 'exist'], [], ['don', 't', 'follow', 'you', 'said', 'filby'], [], ['can', 'a', 'cube', 'that', 'does', 'not', 'last', 'for', 'any', 'time', 'at', 'all', 'have', 'a', 'real'], ['existence'], [], ['filby', 'became', 'pensive', 'clearly', 'the', 'time', 'traveller', 'proceeded', 'any'], ['real', 'body', 'must', 'have', 'extension', 'in', 'four', 'directions', 'it', 'must', 'have'], ['length', 'breadth', 'thickness', 'and', 'duration', 'but', 'through', 'a', 'natural'], ['infirmity', 'of', 'the', 'flesh', 'which', 'i', 'will', 'explain', 'to', 'you', 'in', 'a', 'moment', 'we'], ['incline', 'to', 'overlook', 'this', 'fact', 'there', 'are', 'really', 'four', 'dimensions'], ['three', 'which', 'we', 'call', 'the', 'three', 'planes', 'of', 'space', 'and', 'a', 'fourth', 'time'], ['there', 'is', 'however', 'a', 'tendency', 'to', 'draw', 'an', 'unreal', 'distinction', 'between'], ['the', 'former', 'three', 'dimensions', 'and', 'the', 'latter', 'because', 'it', 'happens', 'that'], ['our', 'consciousness', 'moves', 'intermittently', 'in', 'one', 'direction', 'along', 'the'], ['latter', 'from', 'the', 'beginning', 'to', 'the', 'end', 'of', 'our', 'lives'], [], ['that', 'said', 'a', 'very', 'young', 'man', 'making', 'spasmodic', 'efforts', 'to', 'relight'], ['his', 'cigar', 'over', 'the', 'lamp', 'that', 'very', 'clear', 'indeed'], [], ['now', 'it', 'is', 'very', 'remarkable', 'that', 'this', 'is', 'so', 'extensively', 'overlooked'], ['continued', 'the', 'time', 'traveller', 'with', 'a', 'slight', 'accession', 'of'], ['cheerfulness', 'really', 'this', 'is', 'what', 'is', 'meant', 'by', 'the', 'fourth', 'dimension'], ['though', 'some', 'people', 'who', 'talk', 'about', 'the', 'fourth', 'dimension', 'do', 'not', 'know'], ['they', 'mean', 'it', 'it', 'is', 'only', 'another', 'way', 'of', 'looking', 'at', 'time', 'there', 'is'], ['no', 'difference', 'between', 'time', 'and', 'any', 'of', 'the', 'three', 'dimensions', 'of', 'space'], ['except', 'that', 'our', 'consciousness', 'moves', 'along', 'it', 'but', 'some', 'foolish'], ['people', 'have', 'got', 'hold', 'of', 'the', 'wrong', 'side', 'of', 'that', 'idea', 'you', 'have', 'all'], ['heard', 'what', 'they', 'have', 'to', 'say', 'about', 'this', 'fourth', 'dimension'], [], ['i', 'have', 'not', 'said', 'the', 'provincial', 'mayor'], [], ['it', 'is', 'simply', 'this', 'that', 'space', 'as', 'our', 'mathematicians', 'have', 'it', 'is'], ['spoken', 'of', 'as', 'having', 'three', 'dimensions', 'which', 'one', 'may', 'call', 'length'], ['breadth', 'and', 'thickness', 'and', 'is', 'always', 'definable', 'by', 'reference', 'to'], ['three', 'planes', 'each', 'at', 'right', 'angles', 'to', 'the', 'others', 'but', 'some'], ['philosophical', 'people', 'have', 'been', 'asking', 'why', 'three', 'dimensions'], ['particularly', 'why', 'not', 'another', 'direction', 'at', 'right', 'angles', 'to', 'the', 'other'], ['three', 'and', 'have', 'even', 'tried', 'to', 'construct', 'a', 'four', 'dimension', 'geometry'], ['professor', 'simon', 'newcomb', 'was', 'expounding', 'this', 'to', 'the', 'new', 'york'], ['mathematical', 'society', 'only', 'a', 'month', 'or', 'so', 'ago', 'you', 'know', 'how', 'on', 'a', 'flat'], ['surface', 'which', 'has', 'only', 'two', 'dimensions', 'we', 'can', 'represent', 'a', 'figure', 'of'], ['a', 'three', 'dimensional', 'solid', 'and', 'similarly', 'they', 'think', 'that', 'by', 'models'], ['of', 'three', 'dimensions', 'they', 'could', 'represent', 'one', 'of', 'four', 'if', 'they', 'could'], ['master', 'the', 'perspective', 'of', 'the', 'thing', 'see'], [], ['i', 'think', 'so', 'murmured', 'the', 'provincial', 'mayor', 'and', 'knitting', 'his'], ['brows', 'he', 'lapsed', 'into', 'an', 'introspective', 'state', 'his', 'lips', 'moving', 'as', 'one'], ['who', 'repeats', 'mystic', 'words', 'yes', 'i', 'think', 'i', 'see', 'it', 'now', 'he', 'said', 'after'], ['some', 'time', 'brightening', 'in', 'a', 'quite', 'transitory', 'manner'], [], ['well', 'i', 'do', 'not', 'mind', 'telling', 'you', 'i', 'have', 'been', 'at', 'work', 'upon', 'this'], ['geometry', 'of', 'four', 'dimensions', 'for', 'some', 'time', 'some', 'of', 'my', 'results'], ['are', 'curious', 'for', 'instance', 'here', 'is', 'a', 'portrait', 'of', 'a', 'man', 'at', 'eight'], ['years', 'old', 'another', 'at', 'fifteen', 'another', 'at', 'seventeen', 'another', 'at'], ['twenty', 'three', 'and', 'so', 'on', 'all', 'these', 'are', 'evidently', 'sections', 'as', 'it'], ['were', 'three', 'dimensional', 'representations', 'of', 'his', 'four', 'dimensioned'], ['being', 'which', 'is', 'a', 'fixed', 'and', 'unalterable', 'thing'], [], ['scientific', 'people', 'proceeded', 'the', 'time', 'traveller', 'after', 'the', 'pause'], ['required', 'for', 'the', 'proper', 'assimilation', 'of', 'this', 'know', 'very', 'well', 'that'], ['time', 'is', 'only', 'a', 'kind', 'of', 'space', 'here', 'is', 'a', 'popular', 'scientific', 'diagram'], ['a', 'weather', 'record', 'this', 'line', 'i', 'trace', 'with', 'my', 'finger', 'shows', 'the'], ['movement', 'of', 'the', 'barometer', 'yesterday', 'it', 'was', 'so', 'high', 'yesterday', 'night'], ['it', 'fell', 'then', 'this', 'morning', 'it', 'rose', 'again', 'and', 'so', 'gently', 'upward', 'to'], ['here', 'surely', 'the', 'mercury', 'did', 'not', 'trace', 'this', 'line', 'in', 'any', 'of', 'the'], ['dimensions', 'of', 'space', 'generally', 'recognized', 'but', 'certainly', 'it', 'traced'], ['such', 'a', 'line', 'and', 'that', 'line', 'therefore', 'we', 'must', 'conclude', 'was', 'along'], ['the', 'time', 'dimension'], [], ['but', 'said', 'the', 'medical', 'man', 'staring', 'hard', 'at', 'a', 'coal', 'in', 'the', 'fire', 'if'], ['time', 'is', 'really', 'only', 'a', 'fourth', 'dimension', 'of', 'space', 'why', 'is', 'it', 'and', 'why'], ['has', 'it', 'always', 'been', 'regarded', 'as', 'something', 'different', 'and', 'why', 'cannot'], ['we', 'move', 'in', 'time', 'as', 'we', 'move', 'about', 'in', 'the', 'other', 'dimensions', 'of', 'space'], [], ['the', 'time', 'traveller', 'smiled', 'are', 'you', 'sure', 'we', 'can', 'move', 'freely', 'in'], ['space', 'right', 'and', 'left', 'we', 'can', 'go', 'backward', 'and', 'forward', 'freely', 'enough'], ['and', 'men', 'always', 'have', 'done', 'so', 'i', 'admit', 'we', 'move', 'freely', 'in', 'two'], ['dimensions', 'but', 'how', 'about', 'up', 'and', 'down', 'gravitation', 'limits', 'us', 'there'], [], ['not', 'exactly', 'said', 'the', 'medical', 'man', 'there', 'are', 'balloons'], [], ['but', 'before', 'the', 'balloons', 'save', 'for', 'spasmodic', 'jumping', 'and', 'the'], ['inequalities', 'of', 'the', 'surface', 'man', 'had', 'no', 'freedom', 'of', 'vertical'], ['movement'], [], ['still', 'they', 'could', 'move', 'a', 'little', 'up', 'and', 'down', 'said', 'the', 'medical', 'man'], [], ['easier', 'far', 'easier', 'down', 'than', 'up'], [], ['and', 'you', 'cannot', 'move', 'at', 'all', 'in', 'time', 'you', 'cannot', 'get', 'away', 'from', 'the'], ['present', 'moment'], [], ['my', 'dear', 'sir', 'that', 'is', 'just', 'where', 'you', 'are', 'wrong', 'that', 'is', 'just', 'where'], ['the', 'whole', 'world', 'has', 'gone', 'wrong', 'we', 'are', 'always', 'getting', 'away', 'from', 'the'], ['present', 'moment', 'our', 'mental', 'existences', 'which', 'are', 'immaterial', 'and', 'have'], ['no', 'dimensions', 'are', 'passing', 'along', 'the', 'time', 'dimension', 'with', 'a', 'uniform'], ['velocity', 'from', 'the', 'cradle', 'to', 'the', 'grave', 'just', 'as', 'we', 'should', 'travel', 'down'], ['if', 'we', 'began', 'our', 'existence', 'fifty', 'miles', 'above', 'the', 'earth', 's', 'surface'], [], ['but', 'the', 'great', 'difficulty', 'is', 'this', 'interrupted', 'the', 'psychologist'], ['you', 'can', 'move', 'about', 'in', 'all', 'directions', 'of', 'space', 'but', 'you', 'cannot'], ['move', 'about', 'in', 'time'], [], ['that', 'is', 'the', 'germ', 'of', 'my', 'great', 'discovery', 'but', 'you', 'are', 'wrong', 'to', 'say'], ['that', 'we', 'cannot', 'move', 'about', 'in', 'time', 'for', 'instance', 'if', 'i', 'am', 'recalling'], ['an', 'incident', 'very', 'vividly', 'i', 'go', 'back', 'to', 'the', 'instant', 'of', 'its', 'occurrence'], ['i', 'become', 'absent', 'minded', 'as', 'you', 'say', 'i', 'jump', 'back', 'for', 'a', 'moment', 'of'], ['course', 'we', 'have', 'no', 'means', 'of', 'staying', 'back', 'for', 'any', 'length', 'of', 'time', 'any'], ['more', 'than', 'a', 'savage', 'or', 'an', 'animal', 'has', 'of', 'staying', 'six', 'feet', 'above', 'the'], ['ground', 'but', 'a', 'civilized', 'man', 'is', 'better', 'off', 'than', 'the', 'savage', 'in', 'this'], ['respect', 'he', 'can', 'go', 'up', 'against', 'gravitation', 'in', 'a', 'balloon', 'and', 'why'], ['should', 'he', 'not', 'hope', 'that', 'ultimately', 'he', 'may', 'be', 'able', 'to', 'stop', 'or'], ['accelerate', 'his', 'drift', 'along', 'the', 'time', 'dimension', 'or', 'even', 'turn', 'about'], ['and', 'travel', 'the', 'other', 'way'], [], ['oh', 'this', 'began', 'filby', 'is', 'all'], [], ['why', 'not', 'said', 'the', 'time', 'traveller'], [], ['it', 's', 'against', 'reason', 'said', 'filby'], [], ['what', 'reason', 'said', 'the', 'time', 'traveller'], [], ['you', 'can', 'show', 'black', 'is', 'white', 'by', 'argument', 'said', 'filby', 'but', 'you', 'will'], ['never', 'convince', 'me'], [], ['possibly', 'not', 'said', 'the', 'time', 'traveller', 'but', 'now', 'you', 'begin', 'to', 'see'], ['the', 'object', 'of', 'my', 'investigations', 'into', 'the', 'geometry', 'of', 'four'], ['dimensions', 'long', 'ago', 'i', 'had', 'a', 'vague', 'inkling', 'of', 'a', 'machine'], [], ['to', 'travel', 'through', 'time', 'exclaimed', 'the', 'very', 'young', 'man'], [], ['that', 'shall', 'travel', 'indifferently', 'in', 'any', 'direction', 'of', 'space', 'and', 'time'], ['as', 'the', 'driver', 'determines'], [], ['filby', 'contented', 'himself', 'with', 'laughter'], [], ['but', 'i', 'have', 'experimental', 'verification', 'said', 'the', 'time', 'traveller'], [], ['it', 'would', 'be', 'remarkably', 'convenient', 'for', 'the', 'historian', 'the'], ['psychologist', 'suggested', 'one', 'might', 'travel', 'back', 'and', 'verify', 'the'], ['accepted', 'account', 'of', 'the', 'battle', 'of', 'hastings', 'for', 'instance'], [], ['don', 't', 'you', 'think', 'you', 'would', 'attract', 'attention', 'said', 'the', 'medical', 'man'], ['our', 'ancestors', 'had', 'no', 'great', 'tolerance', 'for', 'anachronisms'], [], ['one', 'might', 'get', 'one', 's', 'greek', 'from', 'the', 'very', 'lips', 'of', 'homer', 'and', 'plato'], ['the', 'very', 'young', 'man', 'thought'], [], ['in', 'which', 'case', 'they', 'would', 'certainly', 'plough', 'you', 'for', 'the', 'little', 'go'], ['the', 'german', 'scholars', 'have', 'improved', 'greek', 'so', 'much'], [], ['then', 'there', 'is', 'the', 'future', 'said', 'the', 'very', 'young', 'man', 'just', 'think'], ['one', 'might', 'invest', 'all', 'one', 's', 'money', 'leave', 'it', 'to', 'accumulate', 'at'], ['interest', 'and', 'hurry', 'on', 'ahead'], [], ['to', 'discover', 'a', 'society', 'said', 'i', 'erected', 'on', 'a', 'strictly', 'communistic'], ['basis'], [], ['of', 'all', 'the', 'wild', 'extravagant', 'theories', 'began', 'the', 'psychologist'], [], ['yes', 'so', 'it', 'seemed', 'to', 'me', 'and', 'so', 'i', 'never', 'talked', 'of', 'it', 'until'], [], ['experimental', 'verification', 'cried', 'i', 'you', 'are', 'going', 'to', 'verify'], ['that'], [], ['the', 'experiment', 'cried', 'filby', 'who', 'was', 'getting', 'brain', 'weary'], [], ['let', 's', 'see', 'your', 'experiment', 'anyhow', 'said', 'the', 'psychologist', 'though'], ['it', 's', 'all', 'humbug', 'you', 'know'], [], ['the', 'time', 'traveller', 'smiled', 'round', 'at', 'us', 'then', 'still', 'smiling', 'faintly'], ['and', 'with', 'his', 'hands', 'deep', 'in', 'his', 'trousers', 'pockets', 'he', 'walked', 'slowly'], ['out', 'of', 'the', 'room', 'and', 'we', 'heard', 'his', 'slippers', 'shuffling', 'down', 'the', 'long'], ['passage', 'to', 'his', 'laboratory'], [], ['the', 'psychologist', 'looked', 'at', 'us', 'i', 'wonder', 'what', 'he', 's', 'got'], [], ['some', 'sleight', 'of', 'hand', 'trick', 'or', 'other', 'said', 'the', 'medical', 'man', 'and'], ['filby', 'tried', 'to', 'tell', 'us', 'about', 'a', 'conjurer', 'he', 'had', 'seen', 'at', 'burslem', 'but'], ['before', 'he', 'had', 'finished', 'his', 'preface', 'the', 'time', 'traveller', 'came', 'back', 'and'], ['filby', 's', 'anecdote', 'collapsed'], [], ['the', 'thing', 'the', 'time', 'traveller', 'held', 'in', 'his', 'hand', 'was', 'a', 'glittering'], ['metallic', 'framework', 'scarcely', 'larger', 'than', 'a', 'small', 'clock', 'and', 'very'], ['delicately', 'made', 'there', 'was', 'ivory', 'in', 'it', 'and', 'some', 'transparent'], ['crystalline', 'substance', 'and', 'now', 'i', 'must', 'be', 'explicit', 'for', 'this', 'that'], ['follows', 'unless', 'his', 'explanation', 'is', 'to', 'be', 'accepted', 'is', 'an', 'absolutely'], ['unaccountable', 'thing', 'he', 'took', 'one', 'of', 'the', 'small', 'octagonal', 'tables', 'that'], ['were', 'scattered', 'about', 'the', 'room', 'and', 'set', 'it', 'in', 'front', 'of', 'the', 'fire', 'with'], ['two', 'legs', 'on', 'the', 'hearthrug', 'on', 'this', 'table', 'he', 'placed', 'the', 'mechanism'], ['then', 'he', 'drew', 'up', 'a', 'chair', 'and', 'sat', 'down', 'the', 'only', 'other', 'object', 'on', 'the'], ['table', 'was', 'a', 'small', 'shaded', 'lamp', 'the', 'bright', 'light', 'of', 'which', 'fell', 'upon'], ['the', 'model', 'there', 'were', 'also', 'perhaps', 'a', 'dozen', 'candles', 'about', 'two', 'in'], ['brass', 'candlesticks', 'upon', 'the', 'mantel', 'and', 'several', 'in', 'sconces', 'so', 'that'], ['the', 'room', 'was', 'brilliantly', 'illuminated', 'i', 'sat', 'in', 'a', 'low', 'arm', 'chair'], ['nearest', 'the', 'fire', 'and', 'i', 'drew', 'this', 'forward', 'so', 'as', 'to', 'be', 'almost', 'between'], ['the', 'time', 'traveller', 'and', 'the', 'fireplace', 'filby', 'sat', 'behind', 'him', 'looking'], ['over', 'his', 'shoulder', 'the', 'medical', 'man', 'and', 'the', 'provincial', 'mayor', 'watched'], ['him', 'in', 'profile', 'from', 'the', 'right', 'the', 'psychologist', 'from', 'the', 'left', 'the'], ['very', 'young', 'man', 'stood', 'behind', 'the', 'psychologist', 'we', 'were', 'all', 'on', 'the'], ['alert', 'it', 'appears', 'incredible', 'to', 'me', 'that', 'any', 'kind', 'of', 'trick', 'however'], ['subtly', 'conceived', 'and', 'however', 'adroitly', 'done', 'could', 'have', 'been', 'played'], ['upon', 'us', 'under', 'these', 'conditions'], [], ['the', 'time', 'traveller', 'looked', 'at', 'us', 'and', 'then', 'at', 'the', 'mechanism', 'well'], ['said', 'the', 'psychologist'], [], ['this', 'little', 'affair', 'said', 'the', 'time', 'traveller', 'resting', 'his', 'elbows'], ['upon', 'the', 'table', 'and', 'pressing', 'his', 'hands', 'together', 'above', 'the', 'apparatus'], ['is', 'only', 'a', 'model', 'it', 'is', 'my', 'plan', 'for', 'a', 'machine', 'to', 'travel', 'through'], ['time', 'you', 'will', 'notice', 'that', 'it', 'looks', 'singularly', 'askew', 'and', 'that', 'there'], ['is', 'an', 'odd', 'twinkling', 'appearance', 'about', 'this', 'bar', 'as', 'though', 'it', 'was', 'in'], ['some', 'way', 'unreal', 'he', 'pointed', 'to', 'the', 'part', 'with', 'his', 'finger', 'also'], ['here', 'is', 'one', 'little', 'white', 'lever', 'and', 'here', 'is', 'another'], [], ['the', 'medical', 'man', 'got', 'up', 'out', 'of', 'his', 'chair', 'and', 'peered', 'into', 'the', 'thing'], ['it', 's', 'beautifully', 'made', 'he', 'said'], [], ['it', 'took', 'two', 'years', 'to', 'make', 'retorted', 'the', 'time', 'traveller', 'then', 'when'], ['we', 'had', 'all', 'imitated', 'the', 'action', 'of', 'the', 'medical', 'man', 'he', 'said', 'now', 'i'], ['want', 'you', 'clearly', 'to', 'understand', 'that', 'this', 'lever', 'being', 'pressed', 'over'], ['sends', 'the', 'machine', 'gliding', 'into', 'the', 'future', 'and', 'this', 'other', 'reverses'], ['the', 'motion', 'this', 'saddle', 'represents', 'the', 'seat', 'of', 'a', 'time', 'traveller'], ['presently', 'i', 'am', 'going', 'to', 'press', 'the', 'lever', 'and', 'off', 'the', 'machine', 'will'], ['go', 'it', 'will', 'vanish', 'pass', 'into', 'future', 'time', 'and', 'disappear', 'have', 'a'], ['good', 'look', 'at', 'the', 'thing', 'look', 'at', 'the', 'table', 'too', 'and', 'satisfy'], ['yourselves', 'there', 'is', 'no', 'trickery', 'i', 'don', 't', 'want', 'to', 'waste', 'this', 'model'], ['and', 'then', 'be', 'told', 'i', 'm', 'a', 'quack'], [], ['there', 'was', 'a', 'minute', 's', 'pause', 'perhaps', 'the', 'psychologist', 'seemed', 'about', 'to'], ['speak', 'to', 'me', 'but', 'changed', 'his', 'mind', 'then', 'the', 'time', 'traveller', 'put', 'forth'], ['his', 'finger', 'towards', 'the', 'lever', 'no', 'he', 'said', 'suddenly', 'lend', 'me', 'your'], ['hand', 'and', 'turning', 'to', 'the', 'psychologist', 'he', 'took', 'that', 'individual', 's'], ['hand', 'in', 'his', 'own', 'and', 'told', 'him', 'to', 'put', 'out', 'his', 'forefinger', 'so', 'that', 'it'], ['was', 'the', 'psychologist', 'himself', 'who', 'sent', 'forth', 'the', 'model', 'time', 'machine'], ['on', 'its', 'interminable', 'voyage', 'we', 'all', 'saw', 'the', 'lever', 'turn', 'i', 'am'], ['absolutely', 'certain', 'there', 'was', 'no', 'trickery', 'there', 'was', 'a', 'breath', 'of'], ['wind', 'and', 'the', 'lamp', 'flame', 'jumped', 'one', 'of', 'the', 'candles', 'on', 'the', 'mantel'], ['was', 'blown', 'out', 'and', 'the', 'little', 'machine', 'suddenly', 'swung', 'round', 'became'], ['indistinct', 'was', 'seen', 'as', 'a', 'ghost', 'for', 'a', 'second', 'perhaps', 'as', 'an', 'eddy', 'of'], ['faintly', 'glittering', 'brass', 'and', 'ivory', 'and', 'it', 'was', 'gone', 'vanished', 'save'], ['for', 'the', 'lamp', 'the', 'table', 'was', 'bare'], [], ['everyone', 'was', 'silent', 'for', 'a', 'minute', 'then', 'filby', 'said', 'he', 'was', 'damned'], [], ['the', 'psychologist', 'recovered', 'from', 'his', 'stupor', 'and', 'suddenly', 'looked'], ['under', 'the', 'table', 'at', 'that', 'the', 'time', 'traveller', 'laughed', 'cheerfully'], ['well', 'he', 'said', 'with', 'a', 'reminiscence', 'of', 'the', 'psychologist', 'then'], ['getting', 'up', 'he', 'went', 'to', 'the', 'tobacco', 'jar', 'on', 'the', 'mantel', 'and', 'with', 'his'], ['back', 'to', 'us', 'began', 'to', 'fill', 'his', 'pipe'], [], ['we', 'stared', 'at', 'each', 'other', 'look', 'here', 'said', 'the', 'medical', 'man', 'are', 'you'], ['in', 'earnest', 'about', 'this', 'do', 'you', 'seriously', 'believe', 'that', 'that', 'machine'], ['has', 'travelled', 'into', 'time'], [], ['certainly', 'said', 'the', 'time', 'traveller', 'stooping', 'to', 'light', 'a', 'spill', 'at'], ['the', 'fire', 'then', 'he', 'turned', 'lighting', 'his', 'pipe', 'to', 'look', 'at', 'the'], ['psychologist', 's', 'face', 'the', 'psychologist', 'to', 'show', 'that', 'he', 'was', 'not'], ['unhinged', 'helped', 'himself', 'to', 'a', 'cigar', 'and', 'tried', 'to', 'light', 'it', 'uncut'], ['what', 'is', 'more', 'i', 'have', 'a', 'big', 'machine', 'nearly', 'finished', 'in', 'there', 'he'], ['indicated', 'the', 'laboratory', 'and', 'when', 'that', 'is', 'put', 'together', 'i', 'mean', 'to'], ['have', 'a', 'journey', 'on', 'my', 'own', 'account'], [], ['you', 'mean', 'to', 'say', 'that', 'that', 'machine', 'has', 'travelled', 'into', 'the', 'future'], ['said', 'filby'], [], ['into', 'the', 'future', 'or', 'the', 'past', 'i', 'don', 't', 'for', 'certain', 'know', 'which'], [], ['after', 'an', 'interval', 'the', 'psychologist', 'had', 'an', 'inspiration', 'it', 'must', 'have'], ['gone', 'into', 'the', 'past', 'if', 'it', 'has', 'gone', 'anywhere', 'he', 'said'], [], ['why', 'said', 'the', 'time', 'traveller'], [], ['because', 'i', 'presume', 'that', 'it', 'has', 'not', 'moved', 'in', 'space', 'and', 'if', 'it'], ['travelled', 'into', 'the', 'future', 'it', 'would', 'still', 'be', 'here', 'all', 'this', 'time'], ['since', 'it', 'must', 'have', 'travelled', 'through', 'this', 'time'], [], ['but', 'i', 'said', 'if', 'it', 'travelled', 'into', 'the', 'past', 'it', 'would', 'have', 'been'], ['visible', 'when', 'we', 'came', 'first', 'into', 'this', 'room', 'and', 'last', 'thursday', 'when', 'we'], ['were', 'here', 'and', 'the', 'thursday', 'before', 'that', 'and', 'so', 'forth'], [], ['serious', 'objections', 'remarked', 'the', 'provincial', 'mayor', 'with', 'an', 'air', 'of'], ['impartiality', 'turning', 'towards', 'the', 'time', 'traveller'], [], ['not', 'a', 'bit', 'said', 'the', 'time', 'traveller', 'and', 'to', 'the', 'psychologist', 'you'], ['think', 'you', 'can', 'explain', 'that', 'it', 's', 'presentation', 'below', 'the', 'threshold'], ['you', 'know', 'diluted', 'presentation'], [], ['of', 'course', 'said', 'the', 'psychologist', 'and', 'reassured', 'us', 'that', 's', 'a'], ['simple', 'point', 'of', 'psychology', 'i', 'should', 'have', 'thought', 'of', 'it', 'it', 's', 'plain'], ['enough', 'and', 'helps', 'the', 'paradox', 'delightfully', 'we', 'cannot', 'see', 'it', 'nor'], ['can', 'we', 'appreciate', 'this', 'machine', 'any', 'more', 'than', 'we', 'can', 'the', 'spoke', 'of'], ['a', 'wheel', 'spinning', 'or', 'a', 'bullet', 'flying', 'through', 'the', 'air', 'if', 'it', 'is'], ['travelling', 'through', 'time', 'fifty', 'times', 'or', 'a', 'hundred', 'times', 'faster', 'than'], ['we', 'are', 'if', 'it', 'gets', 'through', 'a', 'minute', 'while', 'we', 'get', 'through', 'a', 'second'], ['the', 'impression', 'it', 'creates', 'will', 'of', 'course', 'be', 'only', 'one', 'fiftieth', 'or'], ['one', 'hundredth', 'of', 'what', 'it', 'would', 'make', 'if', 'it', 'were', 'not', 'travelling', 'in'], ['time', 'that', 's', 'plain', 'enough', 'he', 'passed', 'his', 'hand', 'through', 'the', 'space', 'in'], ['which', 'the', 'machine', 'had', 'been', 'you', 'see', 'he', 'said', 'laughing'], [], ['we', 'sat', 'and', 'stared', 'at', 'the', 'vacant', 'table', 'for', 'a', 'minute', 'or', 'so', 'then', 'the'], ['time', 'traveller', 'asked', 'us', 'what', 'we', 'thought', 'of', 'it', 'all'], [], ['it', 'sounds', 'plausible', 'enough', 'to', 'night', 'said', 'the', 'medical', 'man', 'but'], ['wait', 'until', 'to', 'morrow', 'wait', 'for', 'the', 'common', 'sense', 'of', 'the', 'morning'], [], ['would', 'you', 'like', 'to', 'see', 'the', 'time', 'machine', 'itself', 'asked', 'the', 'time'], ['traveller', 'and', 'therewith', 'taking', 'the', 'lamp', 'in', 'his', 'hand', 'he', 'led', 'the'], ['way', 'down', 'the', 'long', 'draughty', 'corridor', 'to', 'his', 'laboratory', 'i', 'remember'], ['vividly', 'the', 'flickering', 'light', 'his', 'queer', 'broad', 'head', 'in', 'silhouette'], ['the', 'dance', 'of', 'the', 'shadows', 'how', 'we', 'all', 'followed', 'him', 'puzzled', 'but'], ['incredulous', 'and', 'how', 'there', 'in', 'the', 'laboratory', 'we', 'beheld', 'a', 'larger'], ['edition', 'of', 'the', 'little', 'mechanism', 'which', 'we', 'had', 'seen', 'vanish', 'from', 'before'], ['our', 'eyes', 'parts', 'were', 'of', 'nickel', 'parts', 'of', 'ivory', 'parts', 'had', 'certainly'], ['been', 'filed', 'or', 'sawn', 'out', 'of', 'rock', 'crystal', 'the', 'thing', 'was', 'generally'], ['complete', 'but', 'the', 'twisted', 'crystalline', 'bars', 'lay', 'unfinished', 'upon', 'the'], ['bench', 'beside', 'some', 'sheets', 'of', 'drawings', 'and', 'i', 'took', 'one', 'up', 'for', 'a', 'better'], ['look', 'at', 'it', 'quartz', 'it', 'seemed', 'to', 'be'], [], ['look', 'here', 'said', 'the', 'medical', 'man', 'are', 'you', 'perfectly', 'serious'], ['or', 'is', 'this', 'a', 'trick', 'like', 'that', 'ghost', 'you', 'showed', 'us', 'last', 'christmas'], [], ['upon', 'that', 'machine', 'said', 'the', 'time', 'traveller', 'holding', 'the', 'lamp'], ['aloft', 'i', 'intend', 'to', 'explore', 'time', 'is', 'that', 'plain', 'i', 'was', 'never', 'more'], ['serious', 'in', 'my', 'life'], [], ['none', 'of', 'us', 'quite', 'knew', 'how', 'to', 'take', 'it'], [], ['i', 'caught', 'filby', 's', 'eye', 'over', 'the', 'shoulder', 'of', 'the', 'medical', 'man', 'and', 'he'], ['winked', 'at', 'me', 'solemnly'], [], [], [], [], ['ii'], [], [], ['i', 'think', 'that', 'at', 'that', 'time', 'none', 'of', 'us', 'quite', 'believed', 'in', 'the', 'time'], ['machine', 'the', 'fact', 'is', 'the', 'time', 'traveller', 'was', 'one', 'of', 'those', 'men', 'who'], ['are', 'too', 'clever', 'to', 'be', 'believed', 'you', 'never', 'felt', 'that', 'you', 'saw', 'all', 'round'], ['him', 'you', 'always', 'suspected', 'some', 'subtle', 'reserve', 'some', 'ingenuity', 'in'], ['ambush', 'behind', 'his', 'lucid', 'frankness', 'had', 'filby', 'shown', 'the', 'model', 'and'], ['explained', 'the', 'matter', 'in', 'the', 'time', 'traveller', 's', 'words', 'we', 'should', 'have'], ['shown', 'him', 'far', 'less', 'scepticism', 'for', 'we', 'should', 'have', 'perceived', 'his'], ['motives', 'a', 'pork', 'butcher', 'could', 'understand', 'filby', 'but', 'the', 'time'], ['traveller', 'had', 'more', 'than', 'a', 'touch', 'of', 'whim', 'among', 'his', 'elements', 'and', 'we'], ['distrusted', 'him', 'things', 'that', 'would', 'have', 'made', 'the', 'frame', 'of', 'a', 'less'], ['clever', 'man', 'seemed', 'tricks', 'in', 'his', 'hands', 'it', 'is', 'a', 'mistake', 'to', 'do', 'things'], ['too', 'easily', 'the', 'serious', 'people', 'who', 'took', 'him', 'seriously', 'never', 'felt'], ['quite', 'sure', 'of', 'his', 'deportment', 'they', 'were', 'somehow', 'aware', 'that', 'trusting'], ['their', 'reputations', 'for', 'judgment', 'with', 'him', 'was', 'like', 'furnishing', 'a'], ['nursery', 'with', 'egg', 'shell', 'china', 'so', 'i', 'don', 't', 'think', 'any', 'of', 'us', 'said', 'very'], ['much', 'about', 'time', 'travelling', 'in', 'the', 'interval', 'between', 'that', 'thursday', 'and'], ['the', 'next', 'though', 'its', 'odd', 'potentialities', 'ran', 'no', 'doubt', 'in', 'most', 'of'], ['our', 'minds', 'its', 'plausibility', 'that', 'is', 'its', 'practical', 'incredibleness'], ['the', 'curious', 'possibilities', 'of', 'anachronism', 'and', 'of', 'utter', 'confusion', 'it'], ['suggested', 'for', 'my', 'own', 'part', 'i', 'was', 'particularly', 'preoccupied', 'with', 'the'], ['trick', 'of', 'the', 'model', 'that', 'i', 'remember', 'discussing', 'with', 'the', 'medical', 'man'], ['whom', 'i', 'met', 'on', 'friday', 'at', 'the', 'linnaean', 'he', 'said', 'he', 'had', 'seen', 'a', 'similar'], ['thing', 'at', 'tubingen', 'and', 'laid', 'considerable', 'stress', 'on', 'the', 'blowing', 'out'], ['of', 'the', 'candle', 'but', 'how', 'the', 'trick', 'was', 'done', 'he', 'could', 'not', 'explain'], [], ['the', 'next', 'thursday', 'i', 'went', 'again', 'to', 'richmond', 'i', 'suppose', 'i', 'was', 'one', 'of'], ['the', 'time', 'traveller', 's', 'most', 'constant', 'guests', 'and', 'arriving', 'late', 'found'], ['four', 'or', 'five', 'men', 'already', 'assembled', 'in', 'his', 'drawing', 'room', 'the', 'medical'], ['man', 'was', 'standing', 'before', 'the', 'fire', 'with', 'a', 'sheet', 'of', 'paper', 'in', 'one', 'hand'], ['and', 'his', 'watch', 'in', 'the', 'other', 'i', 'looked', 'round', 'for', 'the', 'time', 'traveller'], ['and', 'it', 's', 'half', 'past', 'seven', 'now', 'said', 'the', 'medical', 'man', 'i', 'suppose'], ['we', 'd', 'better', 'have', 'dinner'], [], ['where', 's', 'said', 'i', 'naming', 'our', 'host'], [], ['you', 've', 'just', 'come', 'it', 's', 'rather', 'odd', 'he', 's', 'unavoidably', 'detained', 'he'], ['asks', 'me', 'in', 'this', 'note', 'to', 'lead', 'off', 'with', 'dinner', 'at', 'seven', 'if', 'he', 's', 'not'], ['back', 'says', 'he', 'll', 'explain', 'when', 'he', 'comes'], [], ['it', 'seems', 'a', 'pity', 'to', 'let', 'the', 'dinner', 'spoil', 'said', 'the', 'editor', 'of', 'a'], ['well', 'known', 'daily', 'paper', 'and', 'thereupon', 'the', 'doctor', 'rang', 'the', 'bell'], [], ['the', 'psychologist', 'was', 'the', 'only', 'person', 'besides', 'the', 'doctor', 'and', 'myself'], ['who', 'had', 'attended', 'the', 'previous', 'dinner', 'the', 'other', 'men', 'were', 'blank', 'the'], ['editor', 'aforementioned', 'a', 'certain', 'journalist', 'and', 'another', 'a', 'quiet'], ['shy', 'man', 'with', 'a', 'beard', 'whom', 'i', 'didn', 't', 'know', 'and', 'who', 'as', 'far', 'as', 'my'], ['observation', 'went', 'never', 'opened', 'his', 'mouth', 'all', 'the', 'evening', 'there', 'was'], ['some', 'speculation', 'at', 'the', 'dinner', 'table', 'about', 'the', 'time', 'traveller', 's'], ['absence', 'and', 'i', 'suggested', 'time', 'travelling', 'in', 'a', 'half', 'jocular', 'spirit'], ['the', 'editor', 'wanted', 'that', 'explained', 'to', 'him', 'and', 'the', 'psychologist'], ['volunteered', 'a', 'wooden', 'account', 'of', 'the', 'ingenious', 'paradox', 'and', 'trick', 'we'], ['had', 'witnessed', 'that', 'day', 'week', 'he', 'was', 'in', 'the', 'midst', 'of', 'his', 'exposition'], ['when', 'the', 'door', 'from', 'the', 'corridor', 'opened', 'slowly', 'and', 'without', 'noise', 'i'], ['was', 'facing', 'the', 'door', 'and', 'saw', 'it', 'first', 'hallo', 'i', 'said', 'at', 'last'], ['and', 'the', 'door', 'opened', 'wider', 'and', 'the', 'time', 'traveller', 'stood', 'before', 'us'], ['i', 'gave', 'a', 'cry', 'of', 'surprise', 'good', 'heavens', 'man', 'what', 's', 'the', 'matter'], ['cried', 'the', 'medical', 'man', 'who', 'saw', 'him', 'next', 'and', 'the', 'whole', 'tableful'], ['turned', 'towards', 'the', 'door'], [], ['he', 'was', 'in', 'an', 'amazing', 'plight', 'his', 'coat', 'was', 'dusty', 'and', 'dirty', 'and'], ['smeared', 'with', 'green', 'down', 'the', 'sleeves', 'his', 'hair', 'disordered', 'and', 'as', 'it'], ['seemed', 'to', 'me', 'greyer', 'either', 'with', 'dust', 'and', 'dirt', 'or', 'because', 'its', 'colour'], ['had', 'actually', 'faded', 'his', 'face', 'was', 'ghastly', 'pale', 'his', 'chin', 'had', 'a', 'brown'], ['cut', 'on', 'it', 'a', 'cut', 'half', 'healed', 'his', 'expression', 'was', 'haggard', 'and', 'drawn'], ['as', 'by', 'intense', 'suffering', 'for', 'a', 'moment', 'he', 'hesitated', 'in', 'the', 'doorway'], ['as', 'if', 'he', 'had', 'been', 'dazzled', 'by', 'the', 'light', 'then', 'he', 'came', 'into', 'the', 'room'], ['he', 'walked', 'with', 'just', 'such', 'a', 'limp', 'as', 'i', 'have', 'seen', 'in', 'footsore', 'tramps'], ['we', 'stared', 'at', 'him', 'in', 'silence', 'expecting', 'him', 'to', 'speak'], [], ['he', 'said', 'not', 'a', 'word', 'but', 'came', 'painfully', 'to', 'the', 'table', 'and', 'made', 'a'], ['motion', 'towards', 'the', 'wine', 'the', 'editor', 'filled', 'a', 'glass', 'of', 'champagne', 'and'], ['pushed', 'it', 'towards', 'him', 'he', 'drained', 'it', 'and', 'it', 'seemed', 'to', 'do', 'him', 'good'], ['for', 'he', 'looked', 'round', 'the', 'table', 'and', 'the', 'ghost', 'of', 'his', 'old', 'smile'], ['flickered', 'across', 'his', 'face', 'what', 'on', 'earth', 'have', 'you', 'been', 'up', 'to', 'man'], ['said', 'the', 'doctor', 'the', 'time', 'traveller', 'did', 'not', 'seem', 'to', 'hear', 'don', 't', 'let'], ['me', 'disturb', 'you', 'he', 'said', 'with', 'a', 'certain', 'faltering', 'articulation'], ['i', 'm', 'all', 'right', 'he', 'stopped', 'held', 'out', 'his', 'glass', 'for', 'more', 'and', 'took'], ['it', 'off', 'at', 'a', 'draught', 'that', 's', 'good', 'he', 'said', 'his', 'eyes', 'grew', 'brighter'], ['and', 'a', 'faint', 'colour', 'came', 'into', 'his', 'cheeks', 'his', 'glance', 'flickered', 'over'], ['our', 'faces', 'with', 'a', 'certain', 'dull', 'approval', 'and', 'then', 'went', 'round', 'the', 'warm'], ['and', 'comfortable', 'room', 'then', 'he', 'spoke', 'again', 'still', 'as', 'it', 'were', 'feeling'], ['his', 'way', 'among', 'his', 'words', 'i', 'm', 'going', 'to', 'wash', 'and', 'dress', 'and', 'then', 'i', 'll'], ['come', 'down', 'and', 'explain', 'things', 'save', 'me', 'some', 'of', 'that', 'mutton', 'i', 'm'], ['starving', 'for', 'a', 'bit', 'of', 'meat'], [], ['he', 'looked', 'across', 'at', 'the', 'editor', 'who', 'was', 'a', 'rare', 'visitor', 'and', 'hoped', 'he'], ['was', 'all', 'right', 'the', 'editor', 'began', 'a', 'question', 'tell', 'you', 'presently'], ['said', 'the', 'time', 'traveller', 'i', 'm', 'funny', 'be', 'all', 'right', 'in', 'a', 'minute'], [], ['he', 'put', 'down', 'his', 'glass', 'and', 'walked', 'towards', 'the', 'staircase', 'door', 'again'], ['i', 'remarked', 'his', 'lameness', 'and', 'the', 'soft', 'padding', 'sound', 'of', 'his', 'footfall'], ['and', 'standing', 'up', 'in', 'my', 'place', 'i', 'saw', 'his', 'feet', 'as', 'he', 'went', 'out', 'he', 'had'], ['nothing', 'on', 'them', 'but', 'a', 'pair', 'of', 'tattered', 'blood', 'stained', 'socks', 'then', 'the'], ['door', 'closed', 'upon', 'him', 'i', 'had', 'half', 'a', 'mind', 'to', 'follow', 'till', 'i', 'remembered'], ['how', 'he', 'detested', 'any', 'fuss', 'about', 'himself', 'for', 'a', 'minute', 'perhaps', 'my'], ['mind', 'was', 'wool', 'gathering', 'then', 'remarkable', 'behaviour', 'of', 'an', 'eminent'], ['scientist', 'i', 'heard', 'the', 'editor', 'say', 'thinking', 'after', 'his', 'wont', 'in'], ['headlines', 'and', 'this', 'brought', 'my', 'attention', 'back', 'to', 'the', 'bright'], ['dinner', 'table'], [], ['what', 's', 'the', 'game', 'said', 'the', 'journalist', 'has', 'he', 'been', 'doing', 'the'], ['amateur', 'cadger', 'i', 'don', 't', 'follow', 'i', 'met', 'the', 'eye', 'of', 'the', 'psychologist'], ['and', 'read', 'my', 'own', 'interpretation', 'in', 'his', 'face', 'i', 'thought', 'of', 'the', 'time'], ['traveller', 'limping', 'painfully', 'upstairs', 'i', 'don', 't', 'think', 'any', 'one', 'else', 'had'], ['noticed', 'his', 'lameness'], [], ['the', 'first', 'to', 'recover', 'completely', 'from', 'this', 'surprise', 'was', 'the', 'medical'], ['man', 'who', 'rang', 'the', 'bell', 'the', 'time', 'traveller', 'hated', 'to', 'have', 'servants'], ['waiting', 'at', 'dinner', 'for', 'a', 'hot', 'plate', 'at', 'that', 'the', 'editor', 'turned', 'to', 'his'], ['knife', 'and', 'fork', 'with', 'a', 'grunt', 'and', 'the', 'silent', 'man', 'followed', 'suit', 'the'], ['dinner', 'was', 'resumed', 'conversation', 'was', 'exclamatory', 'for', 'a', 'little', 'while'], ['with', 'gaps', 'of', 'wonderment', 'and', 'then', 'the', 'editor', 'got', 'fervent', 'in', 'his'], ['curiosity', 'does', 'our', 'friend', 'eke', 'out', 'his', 'modest', 'income', 'with', 'a'], ['crossing', 'or', 'has', 'he', 'his', 'nebuchadnezzar', 'phases', 'he', 'inquired', 'i', 'feel'], ['assured', 'it', 's', 'this', 'business', 'of', 'the', 'time', 'machine', 'i', 'said', 'and', 'took', 'up'], ['the', 'psychologist', 's', 'account', 'of', 'our', 'previous', 'meeting', 'the', 'new', 'guests'], ['were', 'frankly', 'incredulous', 'the', 'editor', 'raised', 'objections', 'what', 'was'], ['this', 'time', 'travelling', 'a', 'man', 'couldn', 't', 'cover', 'himself', 'with', 'dust', 'by'], ['rolling', 'in', 'a', 'paradox', 'could', 'he', 'and', 'then', 'as', 'the', 'idea', 'came', 'home', 'to'], ['him', 'he', 'resorted', 'to', 'caricature', 'hadn', 't', 'they', 'any', 'clothes', 'brushes', 'in'], ['the', 'future', 'the', 'journalist', 'too', 'would', 'not', 'believe', 'at', 'any', 'price', 'and'], ['joined', 'the', 'editor', 'in', 'the', 'easy', 'work', 'of', 'heaping', 'ridicule', 'on', 'the', 'whole'], ['thing', 'they', 'were', 'both', 'the', 'new', 'kind', 'of', 'journalist', 'very', 'joyous'], ['irreverent', 'young', 'men', 'our', 'special', 'correspondent', 'in', 'the', 'day'], ['after', 'to', 'morrow', 'reports', 'the', 'journalist', 'was', 'saying', 'or', 'rather'], ['shouting', 'when', 'the', 'time', 'traveller', 'came', 'back', 'he', 'was', 'dressed', 'in'], ['ordinary', 'evening', 'clothes', 'and', 'nothing', 'save', 'his', 'haggard', 'look', 'remained'], ['of', 'the', 'change', 'that', 'had', 'startled', 'me'], [], ['i', 'say', 'said', 'the', 'editor', 'hilariously', 'these', 'chaps', 'here', 'say', 'you', 'have'], ['been', 'travelling', 'into', 'the', 'middle', 'of', 'next', 'week', 'tell', 'us', 'all', 'about'], ['little', 'rosebery', 'will', 'you', 'what', 'will', 'you', 'take', 'for', 'the', 'lot'], [], ['the', 'time', 'traveller', 'came', 'to', 'the', 'place', 'reserved', 'for', 'him', 'without', 'a'], ['word', 'he', 'smiled', 'quietly', 'in', 'his', 'old', 'way', 'where', 's', 'my', 'mutton', 'he'], ['said', 'what', 'a', 'treat', 'it', 'is', 'to', 'stick', 'a', 'fork', 'into', 'meat', 'again'], [], ['story', 'cried', 'the', 'editor'], [], ['story', 'be', 'damned', 'said', 'the', 'time', 'traveller', 'i', 'want', 'something', 'to'], ['eat', 'i', 'won', 't', 'say', 'a', 'word', 'until', 'i', 'get', 'some', 'peptone', 'into', 'my', 'arteries'], ['thanks', 'and', 'the', 'salt'], [], ['one', 'word', 'said', 'i', 'have', 'you', 'been', 'time', 'travelling'], [], ['yes', 'said', 'the', 'time', 'traveller', 'with', 'his', 'mouth', 'full', 'nodding', 'his'], ['head'], [], ['i', 'd', 'give', 'a', 'shilling', 'a', 'line', 'for', 'a', 'verbatim', 'note', 'said', 'the', 'editor'], ['the', 'time', 'traveller', 'pushed', 'his', 'glass', 'towards', 'the', 'silent', 'man', 'and', 'rang'], ['it', 'with', 'his', 'fingernail', 'at', 'which', 'the', 'silent', 'man', 'who', 'had', 'been'], ['staring', 'at', 'his', 'face', 'started', 'convulsively', 'and', 'poured', 'him', 'wine'], ['the', 'rest', 'of', 'the', 'dinner', 'was', 'uncomfortable', 'for', 'my', 'own', 'part', 'sudden'], ['questions', 'kept', 'on', 'rising', 'to', 'my', 'lips', 'and', 'i', 'dare', 'say', 'it', 'was', 'the', 'same'], ['with', 'the', 'others', 'the', 'journalist', 'tried', 'to', 'relieve', 'the', 'tension', 'by'], ['telling', 'anecdotes', 'of', 'hettie', 'potter', 'the', 'time', 'traveller', 'devoted', 'his'], ['attention', 'to', 'his', 'dinner', 'and', 'displayed', 'the', 'appetite', 'of', 'a', 'tramp'], ['the', 'medical', 'man', 'smoked', 'a', 'cigarette', 'and', 'watched', 'the', 'time', 'traveller'], ['through', 'his', 'eyelashes', 'the', 'silent', 'man', 'seemed', 'even', 'more', 'clumsy', 'than'], ['usual', 'and', 'drank', 'champagne', 'with', 'regularity', 'and', 'determination', 'out', 'of'], ['sheer', 'nervousness', 'at', 'last', 'the', 'time', 'traveller', 'pushed', 'his', 'plate', 'away'], ['and', 'looked', 'round', 'us', 'i', 'suppose', 'i', 'must', 'apologize', 'he', 'said', 'i', 'was'], ['simply', 'starving', 'i', 've', 'had', 'a', 'most', 'amazing', 'time', 'he', 'reached', 'out', 'his'], ['hand', 'for', 'a', 'cigar', 'and', 'cut', 'the', 'end', 'but', 'come', 'into', 'the', 'smoking', 'room'], ['it', 's', 'too', 'long', 'a', 'story', 'to', 'tell', 'over', 'greasy', 'plates', 'and', 'ringing', 'the'], ['bell', 'in', 'passing', 'he', 'led', 'the', 'way', 'into', 'the', 'adjoining', 'room'], [], ['you', 'have', 'told', 'blank', 'and', 'dash', 'and', 'chose', 'about', 'the', 'machine', 'he'], ['said', 'to', 'me', 'leaning', 'back', 'in', 'his', 'easy', 'chair', 'and', 'naming', 'the', 'three', 'new'], ['guests'], [], ['but', 'the', 'thing', 's', 'a', 'mere', 'paradox', 'said', 'the', 'editor'], [], ['i', 'can', 't', 'argue', 'to', 'night', 'i', 'don', 't', 'mind', 'telling', 'you', 'the', 'story', 'but'], ['i', 'can', 't', 'argue', 'i', 'will', 'he', 'went', 'on', 'tell', 'you', 'the', 'story', 'of', 'what'], ['has', 'happened', 'to', 'me', 'if', 'you', 'like', 'but', 'you', 'must', 'refrain', 'from'], ['interruptions', 'i', 'want', 'to', 'tell', 'it', 'badly', 'most', 'of', 'it', 'will', 'sound', 'like'], ['lying', 'so', 'be', 'it', 'it', 's', 'true', 'every', 'word', 'of', 'it', 'all', 'the', 'same', 'i', 'was', 'in'], ['my', 'laboratory', 'at', 'four', 'o', 'clock', 'and', 'since', 'then', 'i', 've', 'lived', 'eight'], ['days', 'such', 'days', 'as', 'no', 'human', 'being', 'ever', 'lived', 'before', 'i', 'm', 'nearly'], ['worn', 'out', 'but', 'i', 'shan', 't', 'sleep', 'till', 'i', 've', 'told', 'this', 'thing', 'over', 'to', 'you'], ['then', 'i', 'shall', 'go', 'to', 'bed', 'but', 'no', 'interruptions', 'is', 'it', 'agreed'], [], ['agreed', 'said', 'the', 'editor', 'and', 'the', 'rest', 'of', 'us', 'echoed', 'agreed', 'and'], ['with', 'that', 'the', 'time', 'traveller', 'began', 'his', 'story', 'as', 'i', 'have', 'set', 'it', 'forth'], ['he', 'sat', 'back', 'in', 'his', 'chair', 'at', 'first', 'and', 'spoke', 'like', 'a', 'weary', 'man'], ['afterwards', 'he', 'got', 'more', 'animated', 'in', 'writing', 'it', 'down', 'i', 'feel', 'with', 'only'], ['too', 'much', 'keenness', 'the', 'inadequacy', 'of', 'pen', 'and', 'ink', 'and', 'above', 'all', 'my'], ['own', 'inadequacy', 'to', 'express', 'its', 'quality', 'you', 'read', 'i', 'will', 'suppose'], ['attentively', 'enough', 'but', 'you', 'cannot', 'see', 'the', 'speaker', 's', 'white'], ['sincere', 'face', 'in', 'the', 'bright', 'circle', 'of', 'the', 'little', 'lamp', 'nor', 'hear', 'the'], ['intonation', 'of', 'his', 'voice', 'you', 'cannot', 'know', 'how', 'his', 'expression', 'followed'], ['the', 'turns', 'of', 'his', 'story', 'most', 'of', 'us', 'hearers', 'were', 'in', 'shadow', 'for', 'the'], ['candles', 'in', 'the', 'smoking', 'room', 'had', 'not', 'been', 'lighted', 'and', 'only', 'the', 'face'], ['of', 'the', 'journalist', 'and', 'the', 'legs', 'of', 'the', 'silent', 'man', 'from', 'the', 'knees'], ['downward', 'were', 'illuminated', 'at', 'first', 'we', 'glanced', 'now', 'and', 'again', 'at', 'each'], ['other', 'after', 'a', 'time', 'we', 'ceased', 'to', 'do', 'that', 'and', 'looked', 'only', 'at', 'the'], ['time', 'traveller', 's', 'face'], [], [], [], [], ['iii'], [], [], ['i', 'told', 'some', 'of', 'you', 'last', 'thursday', 'of', 'the', 'principles', 'of', 'the', 'time'], ['machine', 'and', 'showed', 'you', 'the', 'actual', 'thing', 'itself', 'incomplete', 'in', 'the'], ['workshop', 'there', 'it', 'is', 'now', 'a', 'little', 'travel', 'worn', 'truly', 'and', 'one', 'of'], ['the', 'ivory', 'bars', 'is', 'cracked', 'and', 'a', 'brass', 'rail', 'bent', 'but', 'the', 'rest', 'of'], ['it', 's', 'sound', 'enough', 'i', 'expected', 'to', 'finish', 'it', 'on', 'friday', 'but', 'on', 'friday'], ['when', 'the', 'putting', 'together', 'was', 'nearly', 'done', 'i', 'found', 'that', 'one', 'of', 'the'], ['nickel', 'bars', 'was', 'exactly', 'one', 'inch', 'too', 'short', 'and', 'this', 'i', 'had', 'to', 'get'], ['remade', 'so', 'that', 'the', 'thing', 'was', 'not', 'complete', 'until', 'this', 'morning', 'it'], ['was', 'at', 'ten', 'o', 'clock', 'to', 'day', 'that', 'the', 'first', 'of', 'all', 'time', 'machines', 'began'], ['its', 'career', 'i', 'gave', 'it', 'a', 'last', 'tap', 'tried', 'all', 'the', 'screws', 'again', 'put'], ['one', 'more', 'drop', 'of', 'oil', 'on', 'the', 'quartz', 'rod', 'and', 'sat', 'myself', 'in', 'the'], ['saddle', 'i', 'suppose', 'a', 'suicide', 'who', 'holds', 'a', 'pistol', 'to', 'his', 'skull', 'feels'], ['much', 'the', 'same', 'wonder', 'at', 'what', 'will', 'come', 'next', 'as', 'i', 'felt', 'then', 'i', 'took'], ['the', 'starting', 'lever', 'in', 'one', 'hand', 'and', 'the', 'stopping', 'one', 'in', 'the', 'other'], ['pressed', 'the', 'first', 'and', 'almost', 'immediately', 'the', 'second', 'i', 'seemed', 'to'], ['reel', 'i', 'felt', 'a', 'nightmare', 'sensation', 'of', 'falling', 'and', 'looking', 'round'], ['i', 'saw', 'the', 'laboratory', 'exactly', 'as', 'before', 'had', 'anything', 'happened', 'for'], ['a', 'moment', 'i', 'suspected', 'that', 'my', 'intellect', 'had', 'tricked', 'me', 'then', 'i', 'noted'], ['the', 'clock', 'a', 'moment', 'before', 'as', 'it', 'seemed', 'it', 'had', 'stood', 'at', 'a', 'minute'], ['or', 'so', 'past', 'ten', 'now', 'it', 'was', 'nearly', 'half', 'past', 'three'], [], ['i', 'drew', 'a', 'breath', 'set', 'my', 'teeth', 'gripped', 'the', 'starting', 'lever', 'with', 'both'], ['hands', 'and', 'went', 'off', 'with', 'a', 'thud', 'the', 'laboratory', 'got', 'hazy', 'and', 'went'], ['dark', 'mrs', 'watchett', 'came', 'in', 'and', 'walked', 'apparently', 'without', 'seeing'], ['me', 'towards', 'the', 'garden', 'door', 'i', 'suppose', 'it', 'took', 'her', 'a', 'minute', 'or', 'so', 'to'], ['traverse', 'the', 'place', 'but', 'to', 'me', 'she', 'seemed', 'to', 'shoot', 'across', 'the', 'room'], ['like', 'a', 'rocket', 'i', 'pressed', 'the', 'lever', 'over', 'to', 'its', 'extreme', 'position', 'the'], ['night', 'came', 'like', 'the', 'turning', 'out', 'of', 'a', 'lamp', 'and', 'in', 'another', 'moment'], ['came', 'to', 'morrow', 'the', 'laboratory', 'grew', 'faint', 'and', 'hazy', 'then', 'fainter'], ['and', 'ever', 'fainter', 'to', 'morrow', 'night', 'came', 'black', 'then', 'day', 'again', 'night'], ['again', 'day', 'again', 'faster', 'and', 'faster', 'still', 'an', 'eddying', 'murmur', 'filled'], ['my', 'ears', 'and', 'a', 'strange', 'dumb', 'confusedness', 'descended', 'on', 'my', 'mind'], [], ['i', 'am', 'afraid', 'i', 'cannot', 'convey', 'the', 'peculiar', 'sensations', 'of', 'time'], ['travelling', 'they', 'are', 'excessively', 'unpleasant', 'there', 'is', 'a', 'feeling'], ['exactly', 'like', 'that', 'one', 'has', 'upon', 'a', 'switchback', 'of', 'a', 'helpless', 'headlong'], ['motion', 'i', 'felt', 'the', 'same', 'horrible', 'anticipation', 'too', 'of', 'an', 'imminent'], ['smash', 'as', 'i', 'put', 'on', 'pace', 'night', 'followed', 'day', 'like', 'the', 'flapping', 'of', 'a'], ['black', 'wing', 'the', 'dim', 'suggestion', 'of', 'the', 'laboratory', 'seemed', 'presently', 'to'], ['fall', 'away', 'from', 'me', 'and', 'i', 'saw', 'the', 'sun', 'hopping', 'swiftly', 'across', 'the', 'sky'], ['leaping', 'it', 'every', 'minute', 'and', 'every', 'minute', 'marking', 'a', 'day', 'i', 'supposed'], ['the', 'laboratory', 'had', 'been', 'destroyed', 'and', 'i', 'had', 'come', 'into', 'the', 'open', 'air'], ['i', 'had', 'a', 'dim', 'impression', 'of', 'scaffolding', 'but', 'i', 'was', 'already', 'going', 'too'], ['fast', 'to', 'be', 'conscious', 'of', 'any', 'moving', 'things', 'the', 'slowest', 'snail', 'that'], ['ever', 'crawled', 'dashed', 'by', 'too', 'fast', 'for', 'me', 'the', 'twinkling', 'succession', 'of'], ['darkness', 'and', 'light', 'was', 'excessively', 'painful', 'to', 'the', 'eye', 'then', 'in', 'the'], ['intermittent', 'darknesses', 'i', 'saw', 'the', 'moon', 'spinning', 'swiftly', 'through', 'her'], ['quarters', 'from', 'new', 'to', 'full', 'and', 'had', 'a', 'faint', 'glimpse', 'of', 'the', 'circling'], ['stars', 'presently', 'as', 'i', 'went', 'on', 'still', 'gaining', 'velocity', 'the'], ['palpitation', 'of', 'night', 'and', 'day', 'merged', 'into', 'one', 'continuous', 'greyness'], ['the', 'sky', 'took', 'on', 'a', 'wonderful', 'deepness', 'of', 'blue', 'a', 'splendid', 'luminous'], ['color', 'like', 'that', 'of', 'early', 'twilight', 'the', 'jerking', 'sun', 'became', 'a', 'streak'], ['of', 'fire', 'a', 'brilliant', 'arch', 'in', 'space', 'the', 'moon', 'a', 'fainter', 'fluctuating'], ['band', 'and', 'i', 'could', 'see', 'nothing', 'of', 'the', 'stars', 'save', 'now', 'and', 'then', 'a'], ['brighter', 'circle', 'flickering', 'in', 'the', 'blue'], [], ['the', 'landscape', 'was', 'misty', 'and', 'vague', 'i', 'was', 'still', 'on', 'the', 'hill', 'side'], ['upon', 'which', 'this', 'house', 'now', 'stands', 'and', 'the', 'shoulder', 'rose', 'above', 'me'], ['grey', 'and', 'dim', 'i', 'saw', 'trees', 'growing', 'and', 'changing', 'like', 'puffs', 'of', 'vapour'], ['now', 'brown', 'now', 'green', 'they', 'grew', 'spread', 'shivered', 'and', 'passed', 'away'], ['i', 'saw', 'huge', 'buildings', 'rise', 'up', 'faint', 'and', 'fair', 'and', 'pass', 'like', 'dreams'], ['the', 'whole', 'surface', 'of', 'the', 'earth', 'seemed', 'changed', 'melting', 'and', 'flowing'], ['under', 'my', 'eyes', 'the', 'little', 'hands', 'upon', 'the', 'dials', 'that', 'registered', 'my'], ['speed', 'raced', 'round', 'faster', 'and', 'faster', 'presently', 'i', 'noted', 'that', 'the', 'sun'], ['belt', 'swayed', 'up', 'and', 'down', 'from', 'solstice', 'to', 'solstice', 'in', 'a', 'minute', 'or'], ['less', 'and', 'that', 'consequently', 'my', 'pace', 'was', 'over', 'a', 'year', 'a', 'minute', 'and'], ['minute', 'by', 'minute', 'the', 'white', 'snow', 'flashed', 'across', 'the', 'world', 'and'], ['vanished', 'and', 'was', 'followed', 'by', 'the', 'bright', 'brief', 'green', 'of', 'spring'], [], ['the', 'unpleasant', 'sensations', 'of', 'the', 'start', 'were', 'less', 'poignant', 'now', 'they'], ['merged', 'at', 'last', 'into', 'a', 'kind', 'of', 'hysterical', 'exhilaration', 'i', 'remarked'], ['indeed', 'a', 'clumsy', 'swaying', 'of', 'the', 'machine', 'for', 'which', 'i', 'was', 'unable', 'to'], ['account', 'but', 'my', 'mind', 'was', 'too', 'confused', 'to', 'attend', 'to', 'it', 'so', 'with', 'a'], ['kind', 'of', 'madness', 'growing', 'upon', 'me', 'i', 'flung', 'myself', 'into', 'futurity', 'at'], ['first', 'i', 'scarce', 'thought', 'of', 'stopping', 'scarce', 'thought', 'of', 'anything', 'but'], ['these', 'new', 'sensations', 'but', 'presently', 'a', 'fresh', 'series', 'of', 'impressions'], ['grew', 'up', 'in', 'my', 'mind', 'a', 'certain', 'curiosity', 'and', 'therewith', 'a', 'certain'], ['dread', 'until', 'at', 'last', 'they', 'took', 'complete', 'possession', 'of', 'me', 'what'], ['strange', 'developments', 'of', 'humanity', 'what', 'wonderful', 'advances', 'upon', 'our'], ['rudimentary', 'civilization', 'i', 'thought', 'might', 'not', 'appear', 'when', 'i', 'came', 'to'], ['look', 'nearly', 'into', 'the', 'dim', 'elusive', 'world', 'that', 'raced', 'and', 'fluctuated'], ['before', 'my', 'eyes', 'i', 'saw', 'great', 'and', 'splendid', 'architecture', 'rising', 'about'], ['me', 'more', 'massive', 'than', 'any', 'buildings', 'of', 'our', 'own', 'time', 'and', 'yet', 'as', 'it'], ['seemed', 'built', 'of', 'glimmer', 'and', 'mist', 'i', 'saw', 'a', 'richer', 'green', 'flow', 'up', 'the'], ['hill', 'side', 'and', 'remain', 'there', 'without', 'any', 'wintry', 'intermission', 'even'], ['through', 'the', 'veil', 'of', 'my', 'confusion', 'the', 'earth', 'seemed', 'very', 'fair', 'and', 'so'], ['my', 'mind', 'came', 'round', 'to', 'the', 'business', 'of', 'stopping'], [], ['the', 'peculiar', 'risk', 'lay', 'in', 'the', 'possibility', 'of', 'my', 'finding', 'some'], ['substance', 'in', 'the', 'space', 'which', 'i', 'or', 'the', 'machine', 'occupied', 'so', 'long'], ['as', 'i', 'travelled', 'at', 'a', 'high', 'velocity', 'through', 'time', 'this', 'scarcely'], ['mattered', 'i', 'was', 'so', 'to', 'speak', 'attenuated', 'was', 'slipping', 'like', 'a', 'vapour'], ['through', 'the', 'interstices', 'of', 'intervening', 'substances', 'but', 'to', 'come', 'to'], ['a', 'stop', 'involved', 'the', 'jamming', 'of', 'myself', 'molecule', 'by', 'molecule', 'into'], ['whatever', 'lay', 'in', 'my', 'way', 'meant', 'bringing', 'my', 'atoms', 'into', 'such', 'intimate'], ['contact', 'with', 'those', 'of', 'the', 'obstacle', 'that', 'a', 'profound', 'chemical'], ['reaction', 'possibly', 'a', 'far', 'reaching', 'explosion', 'would', 'result', 'and', 'blow'], ['myself', 'and', 'my', 'apparatus', 'out', 'of', 'all', 'possible', 'dimensions', 'into', 'the'], ['unknown', 'this', 'possibility', 'had', 'occurred', 'to', 'me', 'again', 'and', 'again', 'while', 'i'], ['was', 'making', 'the', 'machine', 'but', 'then', 'i', 'had', 'cheerfully', 'accepted', 'it', 'as', 'an'], ['unavoidable', 'risk', 'one', 'of', 'the', 'risks', 'a', 'man', 'has', 'got', 'to', 'take', 'now', 'the'], ['risk', 'was', 'inevitable', 'i', 'no', 'longer', 'saw', 'it', 'in', 'the', 'same', 'cheerful', 'light'], ['the', 'fact', 'is', 'that', 'insensibly', 'the', 'absolute', 'strangeness', 'of', 'everything'], ['the', 'sickly', 'jarring', 'and', 'swaying', 'of', 'the', 'machine', 'above', 'all', 'the'], ['feeling', 'of', 'prolonged', 'falling', 'had', 'absolutely', 'upset', 'my', 'nerve', 'i', 'told'], ['myself', 'that', 'i', 'could', 'never', 'stop', 'and', 'with', 'a', 'gust', 'of', 'petulance', 'i'], ['resolved', 'to', 'stop', 'forthwith', 'like', 'an', 'impatient', 'fool', 'i', 'lugged', 'over'], ['the', 'lever', 'and', 'incontinently', 'the', 'thing', 'went', 'reeling', 'over', 'and', 'i', 'was'], ['flung', 'headlong', 'through', 'the', 'air'], [], ['there', 'was', 'the', 'sound', 'of', 'a', 'clap', 'of', 'thunder', 'in', 'my', 'ears', 'i', 'may', 'have'], ['been', 'stunned', 'for', 'a', 'moment', 'a', 'pitiless', 'hail', 'was', 'hissing', 'round', 'me'], ['and', 'i', 'was', 'sitting', 'on', 'soft', 'turf', 'in', 'front', 'of', 'the', 'overset', 'machine'], ['everything', 'still', 'seemed', 'grey', 'but', 'presently', 'i', 'remarked', 'that', 'the'], ['confusion', 'in', 'my', 'ears', 'was', 'gone', 'i', 'looked', 'round', 'me', 'i', 'was', 'on', 'what'], ['seemed', 'to', 'be', 'a', 'little', 'lawn', 'in', 'a', 'garden', 'surrounded', 'by', 'rhododendron'], ['bushes', 'and', 'i', 'noticed', 'that', 'their', 'mauve', 'and', 'purple', 'blossoms', 'were'], ['dropping', 'in', 'a', 'shower', 'under', 'the', 'beating', 'of', 'the', 'hail', 'stones', 'the'], ['rebounding', 'dancing', 'hail', 'hung', 'in', 'a', 'cloud', 'over', 'the', 'machine', 'and', 'drove'], ['along', 'the', 'ground', 'like', 'smoke', 'in', 'a', 'moment', 'i', 'was', 'wet', 'to', 'the', 'skin'], ['fine', 'hospitality', 'said', 'i', 'to', 'a', 'man', 'who', 'has', 'travelled', 'innumerable'], ['years', 'to', 'see', 'you'], [], ['presently', 'i', 'thought', 'what', 'a', 'fool', 'i', 'was', 'to', 'get', 'wet', 'i', 'stood', 'up', 'and'], ['looked', 'round', 'me', 'a', 'colossal', 'figure', 'carved', 'apparently', 'in', 'some', 'white'], ['stone', 'loomed', 'indistinctly', 'beyond', 'the', 'rhododendrons', 'through', 'the', 'hazy'], ['downpour', 'but', 'all', 'else', 'of', 'the', 'world', 'was', 'invisible'], [], ['my', 'sensations', 'would', 'be', 'hard', 'to', 'describe', 'as', 'the', 'columns', 'of', 'hail'], ['grew', 'thinner', 'i', 'saw', 'the', 'white', 'figure', 'more', 'distinctly', 'it', 'was', 'very'], ['large', 'for', 'a', 'silver', 'birch', 'tree', 'touched', 'its', 'shoulder', 'it', 'was', 'of', 'white'], ['marble', 'in', 'shape', 'something', 'like', 'a', 'winged', 'sphinx', 'but', 'the', 'wings'], ['instead', 'of', 'being', 'carried', 'vertically', 'at', 'the', 'sides', 'were', 'spread', 'so'], ['that', 'it', 'seemed', 'to', 'hover', 'the', 'pedestal', 'it', 'appeared', 'to', 'me', 'was', 'of'], ['bronze', 'and', 'was', 'thick', 'with', 'verdigris', 'it', 'chanced', 'that', 'the', 'face', 'was'], ['towards', 'me', 'the', 'sightless', 'eyes', 'seemed', 'to', 'watch', 'me', 'there', 'was', 'the'], ['faint', 'shadow', 'of', 'a', 'smile', 'on', 'the', 'lips', 'it', 'was', 'greatly', 'weather', 'worn'], ['and', 'that', 'imparted', 'an', 'unpleasant', 'suggestion', 'of', 'disease', 'i', 'stood'], ['looking', 'at', 'it', 'for', 'a', 'little', 'space', 'half', 'a', 'minute', 'perhaps', 'or', 'half', 'an'], ['hour', 'it', 'seemed', 'to', 'advance', 'and', 'to', 'recede', 'as', 'the', 'hail', 'drove', 'before', 'it'], ['denser', 'or', 'thinner', 'at', 'last', 'i', 'tore', 'my', 'eyes', 'from', 'it', 'for', 'a', 'moment', 'and'], ['saw', 'that', 'the', 'hail', 'curtain', 'had', 'worn', 'threadbare', 'and', 'that', 'the', 'sky', 'was'], ['lightening', 'with', 'the', 'promise', 'of', 'the', 'sun'], [], ['i', 'looked', 'up', 'again', 'at', 'the', 'crouching', 'white', 'shape', 'and', 'the', 'full'], ['temerity', 'of', 'my', 'voyage', 'came', 'suddenly', 'upon', 'me', 'what', 'might', 'appear', 'when'], ['that', 'hazy', 'curtain', 'was', 'altogether', 'withdrawn', 'what', 'might', 'not', 'have'], ['happened', 'to', 'men', 'what', 'if', 'cruelty', 'had', 'grown', 'into', 'a', 'common', 'passion'], ['what', 'if', 'in', 'this', 'interval', 'the', 'race', 'had', 'lost', 'its', 'manliness', 'and', 'had'], ['developed', 'into', 'something', 'inhuman', 'unsympathetic', 'and', 'overwhelmingly'], ['powerful', 'i', 'might', 'seem', 'some', 'old', 'world', 'savage', 'animal', 'only', 'the', 'more'], ['dreadful', 'and', 'disgusting', 'for', 'our', 'common', 'likeness', 'a', 'foul', 'creature', 'to'], ['be', 'incontinently', 'slain'], [], ['already', 'i', 'saw', 'other', 'vast', 'shapes', 'huge', 'buildings', 'with', 'intricate'], ['parapets', 'and', 'tall', 'columns', 'with', 'a', 'wooded', 'hill', 'side', 'dimly', 'creeping'], ['in', 'upon', 'me', 'through', 'the', 'lessening', 'storm', 'i', 'was', 'seized', 'with', 'a', 'panic'], ['fear', 'i', 'turned', 'frantically', 'to', 'the', 'time', 'machine', 'and', 'strove', 'hard', 'to'], ['readjust', 'it', 'as', 'i', 'did', 'so', 'the', 'shafts', 'of', 'the', 'sun', 'smote', 'through', 'the'], ['thunderstorm', 'the', 'grey', 'downpour', 'was', 'swept', 'aside', 'and', 'vanished', 'like'], ['the', 'trailing', 'garments', 'of', 'a', 'ghost', 'above', 'me', 'in', 'the', 'intense', 'blue'], ['of', 'the', 'summer', 'sky', 'some', 'faint', 'brown', 'shreds', 'of', 'cloud', 'whirled', 'into'], ['nothingness', 'the', 'great', 'buildings', 'about', 'me', 'stood', 'out', 'clear', 'and'], ['distinct', 'shining', 'with', 'the', 'wet', 'of', 'the', 'thunderstorm', 'and', 'picked', 'out'], ['in', 'white', 'by', 'the', 'unmelted', 'hailstones', 'piled', 'along', 'their', 'courses', 'i'], ['felt', 'naked', 'in', 'a', 'strange', 'world', 'i', 'felt', 'as', 'perhaps', 'a', 'bird', 'may', 'feel', 'in'], ['the', 'clear', 'air', 'knowing', 'the', 'hawk', 'wings', 'above', 'and', 'will', 'swoop', 'my', 'fear'], ['grew', 'to', 'frenzy', 'i', 'took', 'a', 'breathing', 'space', 'set', 'my', 'teeth', 'and', 'again'], ['grappled', 'fiercely', 'wrist', 'and', 'knee', 'with', 'the', 'machine', 'it', 'gave', 'under'], ['my', 'desperate', 'onset', 'and', 'turned', 'over', 'it', 'struck', 'my', 'chin', 'violently', 'one'], ['hand', 'on', 'the', 'saddle', 'the', 'other', 'on', 'the', 'lever', 'i', 'stood', 'panting', 'heavily'], ['in', 'attitude', 'to', 'mount', 'again'], [], ['but', 'with', 'this', 'recovery', 'of', 'a', 'prompt', 'retreat', 'my', 'courage', 'recovered', 'i'], ['looked', 'more', 'curiously', 'and', 'less', 'fearfully', 'at', 'this', 'world', 'of', 'the', 'remote'], ['future', 'in', 'a', 'circular', 'opening', 'high', 'up', 'in', 'the', 'wall', 'of', 'the', 'nearer'], ['house', 'i', 'saw', 'a', 'group', 'of', 'figures', 'clad', 'in', 'rich', 'soft', 'robes', 'they', 'had'], ['seen', 'me', 'and', 'their', 'faces', 'were', 'directed', 'towards', 'me'], [], ['then', 'i', 'heard', 'voices', 'approaching', 'me', 'coming', 'through', 'the', 'bushes', 'by'], ['the', 'white', 'sphinx', 'were', 'the', 'heads', 'and', 'shoulders', 'of', 'men', 'running', 'one', 'of'], ['these', 'emerged', 'in', 'a', 'pathway', 'leading', 'straight', 'to', 'the', 'little', 'lawn', 'upon'], ['which', 'i', 'stood', 'with', 'my', 'machine', 'he', 'was', 'a', 'slight', 'creature', 'perhaps'], ['four', 'feet', 'high', 'clad', 'in', 'a', 'purple', 'tunic', 'girdled', 'at', 'the', 'waist', 'with', 'a'], ['leather', 'belt', 'sandals', 'or', 'buskins', 'i', 'could', 'not', 'clearly', 'distinguish'], ['which', 'were', 'on', 'his', 'feet', 'his', 'legs', 'were', 'bare', 'to', 'the', 'knees', 'and', 'his'], ['head', 'was', 'bare', 'noticing', 'that', 'i', 'noticed', 'for', 'the', 'first', 'time', 'how', 'warm'], ['the', 'air', 'was'], [], ['he', 'struck', 'me', 'as', 'being', 'a', 'very', 'beautiful', 'and', 'graceful', 'creature', 'but'], ['indescribably', 'frail', 'his', 'flushed', 'face', 'reminded', 'me', 'of', 'the', 'more'], ['beautiful', 'kind', 'of', 'consumptive', 'that', 'hectic', 'beauty', 'of', 'which', 'we', 'used'], ['to', 'hear', 'so', 'much', 'at', 'the', 'sight', 'of', 'him', 'i', 'suddenly', 'regained', 'confidence'], ['i', 'took', 'my', 'hands', 'from', 'the', 'machine'], [], [], [], [], ['iv'], [], [], ['in', 'another', 'moment', 'we', 'were', 'standing', 'face', 'to', 'face', 'i', 'and', 'this', 'fragile'], ['thing', 'out', 'of', 'futurity', 'he', 'came', 'straight', 'up', 'to', 'me', 'and', 'laughed', 'into', 'my'], ['eyes', 'the', 'absence', 'from', 'his', 'bearing', 'of', 'any', 'sign', 'of', 'fear', 'struck', 'me', 'at'], ['once', 'then', 'he', 'turned', 'to', 'the', 'two', 'others', 'who', 'were', 'following', 'him', 'and'], ['spoke', 'to', 'them', 'in', 'a', 'strange', 'and', 'very', 'sweet', 'and', 'liquid', 'tongue'], [], ['there', 'were', 'others', 'coming', 'and', 'presently', 'a', 'little', 'group', 'of', 'perhaps'], ['eight', 'or', 'ten', 'of', 'these', 'exquisite', 'creatures', 'were', 'about', 'me', 'one', 'of', 'them'], ['addressed', 'me', 'it', 'came', 'into', 'my', 'head', 'oddly', 'enough', 'that', 'my', 'voice', 'was'], ['too', 'harsh', 'and', 'deep', 'for', 'them', 'so', 'i', 'shook', 'my', 'head', 'and', 'pointing', 'to', 'my'], ['ears', 'shook', 'it', 'again', 'he', 'came', 'a', 'step', 'forward', 'hesitated', 'and', 'then'], ['touched', 'my', 'hand', 'then', 'i', 'felt', 'other', 'soft', 'little', 'tentacles', 'upon', 'my'], ['back', 'and', 'shoulders', 'they', 'wanted', 'to', 'make', 'sure', 'i', 'was', 'real', 'there', 'was'], ['nothing', 'in', 'this', 'at', 'all', 'alarming', 'indeed', 'there', 'was', 'something', 'in'], ['these', 'pretty', 'little', 'people', 'that', 'inspired', 'confidence', 'a', 'graceful'], ['gentleness', 'a', 'certain', 'childlike', 'ease', 'and', 'besides', 'they', 'looked', 'so'], ['frail', 'that', 'i', 'could', 'fancy', 'myself', 'flinging', 'the', 'whole', 'dozen', 'of', 'them'], ['about', 'like', 'nine', 'pins', 'but', 'i', 'made', 'a', 'sudden', 'motion', 'to', 'warn', 'them', 'when', 'i'], ['saw', 'their', 'little', 'pink', 'hands', 'feeling', 'at', 'the', 'time', 'machine', 'happily'], ['then', 'when', 'it', 'was', 'not', 'too', 'late', 'i', 'thought', 'of', 'a', 'danger', 'i', 'had', 'hitherto'], ['forgotten', 'and', 'reaching', 'over', 'the', 'bars', 'of', 'the', 'machine', 'i', 'unscrewed', 'the'], ['little', 'levers', 'that', 'would', 'set', 'it', 'in', 'motion', 'and', 'put', 'these', 'in', 'my'], ['pocket', 'then', 'i', 'turned', 'again', 'to', 'see', 'what', 'i', 'could', 'do', 'in', 'the', 'way', 'of'], ['communication'], [], ['and', 'then', 'looking', 'more', 'nearly', 'into', 'their', 'features', 'i', 'saw', 'some'], ['further', 'peculiarities', 'in', 'their', 'dresden', 'china', 'type', 'of', 'prettiness'], ['their', 'hair', 'which', 'was', 'uniformly', 'curly', 'came', 'to', 'a', 'sharp', 'end', 'at', 'the'], ['neck', 'and', 'cheek', 'there', 'was', 'not', 'the', 'faintest', 'suggestion', 'of', 'it', 'on', 'the'], ['face', 'and', 'their', 'ears', 'were', 'singularly', 'minute', 'the', 'mouths', 'were', 'small'], ['with', 'bright', 'red', 'rather', 'thin', 'lips', 'and', 'the', 'little', 'chins', 'ran', 'to', 'a'], ['point', 'the', 'eyes', 'were', 'large', 'and', 'mild', 'and', 'this', 'may', 'seem', 'egotism', 'on'], ['my', 'part', 'i', 'fancied', 'even', 'that', 'there', 'was', 'a', 'certain', 'lack', 'of', 'the'], ['interest', 'i', 'might', 'have', 'expected', 'in', 'them'], [], ['as', 'they', 'made', 'no', 'effort', 'to', 'communicate', 'with', 'me', 'but', 'simply', 'stood'], ['round', 'me', 'smiling', 'and', 'speaking', 'in', 'soft', 'cooing', 'notes', 'to', 'each', 'other', 'i'], ['began', 'the', 'conversation', 'i', 'pointed', 'to', 'the', 'time', 'machine', 'and', 'to', 'myself'], ['then', 'hesitating', 'for', 'a', 'moment', 'how', 'to', 'express', 'time', 'i', 'pointed', 'to', 'the'], ['sun', 'at', 'once', 'a', 'quaintly', 'pretty', 'little', 'figure', 'in', 'chequered', 'purple', 'and'], ['white', 'followed', 'my', 'gesture', 'and', 'then', 'astonished', 'me', 'by', 'imitating', 'the'], ['sound', 'of', 'thunder'], [], ['for', 'a', 'moment', 'i', 'was', 'staggered', 'though', 'the', 'import', 'of', 'his', 'gesture', 'was'], ['plain', 'enough', 'the', 'question', 'had', 'come', 'into', 'my', 'mind', 'abruptly', 'were'], ['these', 'creatures', 'fools', 'you', 'may', 'hardly', 'understand', 'how', 'it', 'took', 'me'], ['you', 'see', 'i', 'had', 'always', 'anticipated', 'that', 'the', 'people', 'of', 'the', 'year', 'eight'], ['hundred', 'and', 'two', 'thousand', 'odd', 'would', 'be', 'incredibly', 'in', 'front', 'of', 'us', 'in'], ['knowledge', 'art', 'everything', 'then', 'one', 'of', 'them', 'suddenly', 'asked', 'me', 'a'], ['question', 'that', 'showed', 'him', 'to', 'be', 'on', 'the', 'intellectual', 'level', 'of', 'one', 'of'], ['our', 'five', 'year', 'old', 'children', 'asked', 'me', 'in', 'fact', 'if', 'i', 'had', 'come', 'from'], ['the', 'sun', 'in', 'a', 'thunderstorm', 'it', 'let', 'loose', 'the', 'judgment', 'i', 'had', 'suspended'], ['upon', 'their', 'clothes', 'their', 'frail', 'light', 'limbs', 'and', 'fragile', 'features'], ['a', 'flow', 'of', 'disappointment', 'rushed', 'across', 'my', 'mind', 'for', 'a', 'moment', 'i', 'felt'], ['that', 'i', 'had', 'built', 'the', 'time', 'machine', 'in', 'vain'], [], ['i', 'nodded', 'pointed', 'to', 'the', 'sun', 'and', 'gave', 'them', 'such', 'a', 'vivid', 'rendering'], ['of', 'a', 'thunderclap', 'as', 'startled', 'them', 'they', 'all', 'withdrew', 'a', 'pace', 'or', 'so'], ['and', 'bowed', 'then', 'came', 'one', 'laughing', 'towards', 'me', 'carrying', 'a', 'chain', 'of'], ['beautiful', 'flowers', 'altogether', 'new', 'to', 'me', 'and', 'put', 'it', 'about', 'my', 'neck'], ['the', 'idea', 'was', 'received', 'with', 'melodious', 'applause', 'and', 'presently', 'they'], ['were', 'all', 'running', 'to', 'and', 'fro', 'for', 'flowers', 'and', 'laughingly', 'flinging'], ['them', 'upon', 'me', 'until', 'i', 'was', 'almost', 'smothered', 'with', 'blossom', 'you', 'who'], ['have', 'never', 'seen', 'the', 'like', 'can', 'scarcely', 'imagine', 'what', 'delicate', 'and'], ['wonderful', 'flowers', 'countless', 'years', 'of', 'culture', 'had', 'created', 'then'], ['someone', 'suggested', 'that', 'their', 'plaything', 'should', 'be', 'exhibited', 'in', 'the'], ['nearest', 'building', 'and', 'so', 'i', 'was', 'led', 'past', 'the', 'sphinx', 'of', 'white', 'marble'], ['which', 'had', 'seemed', 'to', 'watch', 'me', 'all', 'the', 'while', 'with', 'a', 'smile', 'at', 'my'], ['astonishment', 'towards', 'a', 'vast', 'grey', 'edifice', 'of', 'fretted', 'stone', 'as', 'i'], ['went', 'with', 'them', 'the', 'memory', 'of', 'my', 'confident', 'anticipations', 'of', 'a'], ['profoundly', 'grave', 'and', 'intellectual', 'posterity', 'came', 'with', 'irresistible'], ['merriment', 'to', 'my', 'mind'], [], ['the', 'building', 'had', 'a', 'huge', 'entry', 'and', 'was', 'altogether', 'of', 'colossal'], ['dimensions', 'i', 'was', 'naturally', 'most', 'occupied', 'with', 'the', 'growing', 'crowd', 'of'], ['little', 'people', 'and', 'with', 'the', 'big', 'open', 'portals', 'that', 'yawned', 'before', 'me'], ['shadowy', 'and', 'mysterious', 'my', 'general', 'impression', 'of', 'the', 'world', 'i', 'saw'], ['over', 'their', 'heads', 'was', 'a', 'tangled', 'waste', 'of', 'beautiful', 'bushes', 'and'], ['flowers', 'a', 'long', 'neglected', 'and', 'yet', 'weedless', 'garden', 'i', 'saw', 'a', 'number'], ['of', 'tall', 'spikes', 'of', 'strange', 'white', 'flowers', 'measuring', 'a', 'foot', 'perhaps'], ['across', 'the', 'spread', 'of', 'the', 'waxen', 'petals', 'they', 'grew', 'scattered', 'as', 'if'], ['wild', 'among', 'the', 'variegated', 'shrubs', 'but', 'as', 'i', 'say', 'i', 'did', 'not', 'examine'], ['them', 'closely', 'at', 'this', 'time', 'the', 'time', 'machine', 'was', 'left', 'deserted', 'on', 'the'], ['turf', 'among', 'the', 'rhododendrons'], [], ['the', 'arch', 'of', 'the', 'doorway', 'was', 'richly', 'carved', 'but', 'naturally', 'i', 'did'], ['not', 'observe', 'the', 'carving', 'very', 'narrowly', 'though', 'i', 'fancied', 'i', 'saw'], ['suggestions', 'of', 'old', 'phoenician', 'decorations', 'as', 'i', 'passed', 'through', 'and'], ['it', 'struck', 'me', 'that', 'they', 'were', 'very', 'badly', 'broken', 'and', 'weather', 'worn'], ['several', 'more', 'brightly', 'clad', 'people', 'met', 'me', 'in', 'the', 'doorway', 'and', 'so', 'we'], ['entered', 'i', 'dressed', 'in', 'dingy', 'nineteenth', 'century', 'garments', 'looking'], ['grotesque', 'enough', 'garlanded', 'with', 'flowers', 'and', 'surrounded', 'by', 'an'], ['eddying', 'mass', 'of', 'bright', 'soft', 'colored', 'robes', 'and', 'shining', 'white', 'limbs'], ['in', 'a', 'melodious', 'whirl', 'of', 'laughter', 'and', 'laughing', 'speech'], [], ['the', 'big', 'doorway', 'opened', 'into', 'a', 'proportionately', 'great', 'hall', 'hung', 'with'], ['brown', 'the', 'roof', 'was', 'in', 'shadow', 'and', 'the', 'windows', 'partially', 'glazed'], ['with', 'coloured', 'glass', 'and', 'partially', 'unglazed', 'admitted', 'a', 'tempered'], ['light', 'the', 'floor', 'was', 'made', 'up', 'of', 'huge', 'blocks', 'of', 'some', 'very', 'hard', 'white'], ['metal', 'not', 'plates', 'nor', 'slabs', 'blocks', 'and', 'it', 'was', 'so', 'much', 'worn', 'as', 'i'], ['judged', 'by', 'the', 'going', 'to', 'and', 'fro', 'of', 'past', 'generations', 'as', 'to', 'be', 'deeply'], ['channelled', 'along', 'the', 'more', 'frequented', 'ways', 'transverse', 'to', 'the', 'length'], ['were', 'innumerable', 'tables', 'made', 'of', 'slabs', 'of', 'polished', 'stone', 'raised'], ['perhaps', 'a', 'foot', 'from', 'the', 'floor', 'and', 'upon', 'these', 'were', 'heaps', 'of', 'fruits'], ['some', 'i', 'recognized', 'as', 'a', 'kind', 'of', 'hypertrophied', 'raspberry', 'and', 'orange'], ['but', 'for', 'the', 'most', 'part', 'they', 'were', 'strange'], [], ['between', 'the', 'tables', 'was', 'scattered', 'a', 'great', 'number', 'of', 'cushions'], ['upon', 'these', 'my', 'conductors', 'seated', 'themselves', 'signing', 'for', 'me', 'to', 'do'], ['likewise', 'with', 'a', 'pretty', 'absence', 'of', 'ceremony', 'they', 'began', 'to', 'eat', 'the'], ['fruit', 'with', 'their', 'hands', 'flinging', 'peel', 'and', 'stalks', 'and', 'so', 'forth', 'into'], ['the', 'round', 'openings', 'in', 'the', 'sides', 'of', 'the', 'tables', 'i', 'was', 'not', 'loath', 'to'], ['follow', 'their', 'example', 'for', 'i', 'felt', 'thirsty', 'and', 'hungry', 'as', 'i', 'did', 'so', 'i'], ['surveyed', 'the', 'hall', 'at', 'my', 'leisure'], [], ['and', 'perhaps', 'the', 'thing', 'that', 'struck', 'me', 'most', 'was', 'its', 'dilapidated', 'look'], ['the', 'stained', 'glass', 'windows', 'which', 'displayed', 'only', 'a', 'geometrical'], ['pattern', 'were', 'broken', 'in', 'many', 'places', 'and', 'the', 'curtains', 'that', 'hung'], ['across', 'the', 'lower', 'end', 'were', 'thick', 'with', 'dust', 'and', 'it', 'caught', 'my', 'eye', 'that'], ['the', 'corner', 'of', 'the', 'marble', 'table', 'near', 'me', 'was', 'fractured', 'nevertheless'], ['the', 'general', 'effect', 'was', 'extremely', 'rich', 'and', 'picturesque', 'there', 'were'], ['perhaps', 'a', 'couple', 'of', 'hundred', 'people', 'dining', 'in', 'the', 'hall', 'and', 'most', 'of'], ['them', 'seated', 'as', 'near', 'to', 'me', 'as', 'they', 'could', 'come', 'were', 'watching', 'me', 'with'], ['interest', 'their', 'little', 'eyes', 'shining', 'over', 'the', 'fruit', 'they', 'were', 'eating'], ['all', 'were', 'clad', 'in', 'the', 'same', 'soft', 'and', 'yet', 'strong', 'silky', 'material'], [], ['fruit', 'by', 'the', 'by', 'was', 'all', 'their', 'diet', 'these', 'people', 'of', 'the', 'remote'], ['future', 'were', 'strict', 'vegetarians', 'and', 'while', 'i', 'was', 'with', 'them', 'in', 'spite'], ['of', 'some', 'carnal', 'cravings', 'i', 'had', 'to', 'be', 'frugivorous', 'also', 'indeed', 'i'], ['found', 'afterwards', 'that', 'horses', 'cattle', 'sheep', 'dogs', 'had', 'followed', 'the'], ['ichthyosaurus', 'into', 'extinction', 'but', 'the', 'fruits', 'were', 'very', 'delightful'], ['one', 'in', 'particular', 'that', 'seemed', 'to', 'be', 'in', 'season', 'all', 'the', 'time', 'i', 'was'], ['there', 'a', 'floury', 'thing', 'in', 'a', 'three', 'sided', 'husk', 'was', 'especially', 'good'], ['and', 'i', 'made', 'it', 'my', 'staple', 'at', 'first', 'i', 'was', 'puzzled', 'by', 'all', 'these', 'strange'], ['fruits', 'and', 'by', 'the', 'strange', 'flowers', 'i', 'saw', 'but', 'later', 'i', 'began', 'to'], ['perceive', 'their', 'import'], [], ['however', 'i', 'am', 'telling', 'you', 'of', 'my', 'fruit', 'dinner', 'in', 'the', 'distant', 'future'], ['now', 'so', 'soon', 'as', 'my', 'appetite', 'was', 'a', 'little', 'checked', 'i', 'determined', 'to'], ['make', 'a', 'resolute', 'attempt', 'to', 'learn', 'the', 'speech', 'of', 'these', 'new', 'men', 'of'], ['mine', 'clearly', 'that', 'was', 'the', 'next', 'thing', 'to', 'do', 'the', 'fruits', 'seemed', 'a'], ['convenient', 'thing', 'to', 'begin', 'upon', 'and', 'holding', 'one', 'of', 'these', 'up', 'i', 'began'], ['a', 'series', 'of', 'interrogative', 'sounds', 'and', 'gestures', 'i', 'had', 'some'], ['considerable', 'difficulty', 'in', 'conveying', 'my', 'meaning', 'at', 'first', 'my', 'efforts'], ['met', 'with', 'a', 'stare', 'of', 'surprise', 'or', 'inextinguishable', 'laughter', 'but'], ['presently', 'a', 'fair', 'haired', 'little', 'creature', 'seemed', 'to', 'grasp', 'my', 'intention'], ['and', 'repeated', 'a', 'name', 'they', 'had', 'to', 'chatter', 'and', 'explain', 'the', 'business'], ['at', 'great', 'length', 'to', 'each', 'other', 'and', 'my', 'first', 'attempts', 'to', 'make', 'the'], ['exquisite', 'little', 'sounds', 'of', 'their', 'language', 'caused', 'an', 'immense', 'amount'], ['of', 'amusement', 'however', 'i', 'felt', 'like', 'a', 'schoolmaster', 'amidst', 'children'], ['and', 'persisted', 'and', 'presently', 'i', 'had', 'a', 'score', 'of', 'noun', 'substantives', 'at'], ['least', 'at', 'my', 'command', 'and', 'then', 'i', 'got', 'to', 'demonstrative', 'pronouns', 'and'], ['even', 'the', 'verb', 'to', 'eat', 'but', 'it', 'was', 'slow', 'work', 'and', 'the', 'little', 'people'], ['soon', 'tired', 'and', 'wanted', 'to', 'get', 'away', 'from', 'my', 'interrogations', 'so', 'i'], ['determined', 'rather', 'of', 'necessity', 'to', 'let', 'them', 'give', 'their', 'lessons', 'in'], ['little', 'doses', 'when', 'they', 'felt', 'inclined', 'and', 'very', 'little', 'doses', 'i', 'found'], ['they', 'were', 'before', 'long', 'for', 'i', 'never', 'met', 'people', 'more', 'indolent', 'or', 'more'], ['easily', 'fatigued'], [], ['a', 'queer', 'thing', 'i', 'soon', 'discovered', 'about', 'my', 'little', 'hosts', 'and', 'that', 'was'], ['their', 'lack', 'of', 'interest', 'they', 'would', 'come', 'to', 'me', 'with', 'eager', 'cries', 'of'], ['astonishment', 'like', 'children', 'but', 'like', 'children', 'they', 'would', 'soon', 'stop'], ['examining', 'me', 'and', 'wander', 'away', 'after', 'some', 'other', 'toy', 'the', 'dinner', 'and', 'my'], ['conversational', 'beginnings', 'ended', 'i', 'noted', 'for', 'the', 'first', 'time', 'that'], ['almost', 'all', 'those', 'who', 'had', 'surrounded', 'me', 'at', 'first', 'were', 'gone', 'it', 'is'], ['odd', 'too', 'how', 'speedily', 'i', 'came', 'to', 'disregard', 'these', 'little', 'people', 'i'], ['went', 'out', 'through', 'the', 'portal', 'into', 'the', 'sunlit', 'world', 'again', 'as', 'soon', 'as'], ['my', 'hunger', 'was', 'satisfied', 'i', 'was', 'continually', 'meeting', 'more', 'of', 'these', 'men'], ['of', 'the', 'future', 'who', 'would', 'follow', 'me', 'a', 'little', 'distance', 'chatter', 'and'], ['laugh', 'about', 'me', 'and', 'having', 'smiled', 'and', 'gesticulated', 'in', 'a', 'friendly'], ['way', 'leave', 'me', 'again', 'to', 'my', 'own', 'devices'], [], ['the', 'calm', 'of', 'evening', 'was', 'upon', 'the', 'world', 'as', 'i', 'emerged', 'from', 'the', 'great'], ['hall', 'and', 'the', 'scene', 'was', 'lit', 'by', 'the', 'warm', 'glow', 'of', 'the', 'setting', 'sun'], ['at', 'first', 'things', 'were', 'very', 'confusing', 'everything', 'was', 'so', 'entirely'], ['different', 'from', 'the', 'world', 'i', 'had', 'known', 'even', 'the', 'flowers', 'the', 'big'], ['building', 'i', 'had', 'left', 'was', 'situated', 'on', 'the', 'slope', 'of', 'a', 'broad', 'river'], ['valley', 'but', 'the', 'thames', 'had', 'shifted', 'perhaps', 'a', 'mile', 'from', 'its', 'present'], ['position', 'i', 'resolved', 'to', 'mount', 'to', 'the', 'summit', 'of', 'a', 'crest', 'perhaps', 'a'], ['mile', 'and', 'a', 'half', 'away', 'from', 'which', 'i', 'could', 'get', 'a', 'wider', 'view', 'of', 'this'], ['our', 'planet', 'in', 'the', 'year', 'eight', 'hundred', 'and', 'two', 'thousand', 'seven', 'hundred'], ['and', 'one', 'a', 'd', 'for', 'that', 'i', 'should', 'explain', 'was', 'the', 'date', 'the', 'little'], ['dials', 'of', 'my', 'machine', 'recorded'], [], ['as', 'i', 'walked', 'i', 'was', 'watching', 'for', 'every', 'impression', 'that', 'could', 'possibly'], ['help', 'to', 'explain', 'the', 'condition', 'of', 'ruinous', 'splendour', 'in', 'which', 'i'], ['found', 'the', 'world', 'for', 'ruinous', 'it', 'was', 'a', 'little', 'way', 'up', 'the', 'hill', 'for'], ['instance', 'was', 'a', 'great', 'heap', 'of', 'granite', 'bound', 'together', 'by', 'masses', 'of'], ['aluminium', 'a', 'vast', 'labyrinth', 'of', 'precipitous', 'walls', 'and', 'crumpled'], ['heaps', 'amidst', 'which', 'were', 'thick', 'heaps', 'of', 'very', 'beautiful', 'pagoda', 'like'], ['plants', 'nettles', 'possibly', 'but', 'wonderfully', 'tinted', 'with', 'brown', 'about'], ['the', 'leaves', 'and', 'incapable', 'of', 'stinging', 'it', 'was', 'evidently', 'the', 'derelict'], ['remains', 'of', 'some', 'vast', 'structure', 'to', 'what', 'end', 'built', 'i', 'could', 'not'], ['determine', 'it', 'was', 'here', 'that', 'i', 'was', 'destined', 'at', 'a', 'later', 'date', 'to', 'have'], ['a', 'very', 'strange', 'experience', 'the', 'first', 'intimation', 'of', 'a', 'still', 'stranger'], ['discovery', 'but', 'of', 'that', 'i', 'will', 'speak', 'in', 'its', 'proper', 'place'], [], ['looking', 'round', 'with', 'a', 'sudden', 'thought', 'from', 'a', 'terrace', 'on', 'which', 'i'], ['rested', 'for', 'a', 'while', 'i', 'realized', 'that', 'there', 'were', 'no', 'small', 'houses', 'to', 'be'], ['seen', 'apparently', 'the', 'single', 'house', 'and', 'possibly', 'even', 'the', 'household'], ['had', 'vanished', 'here', 'and', 'there', 'among', 'the', 'greenery', 'were', 'palace', 'like'], ['buildings', 'but', 'the', 'house', 'and', 'the', 'cottage', 'which', 'form', 'such'], ['characteristic', 'features', 'of', 'our', 'own', 'english', 'landscape', 'had'], ['disappeared'], [], ['communism', 'said', 'i', 'to', 'myself'], [], ['and', 'on', 'the', 'heels', 'of', 'that', 'came', 'another', 'thought', 'i', 'looked', 'at', 'the'], ['half', 'dozen', 'little', 'figures', 'that', 'were', 'following', 'me', 'then', 'in', 'a', 'flash'], ['i', 'perceived', 'that', 'all', 'had', 'the', 'same', 'form', 'of', 'costume', 'the', 'same', 'soft'], ['hairless', 'visage', 'and', 'the', 'same', 'girlish', 'rotundity', 'of', 'limb', 'it', 'may', 'seem'], ['strange', 'perhaps', 'that', 'i', 'had', 'not', 'noticed', 'this', 'before', 'but', 'everything'], ['was', 'so', 'strange', 'now', 'i', 'saw', 'the', 'fact', 'plainly', 'enough', 'in', 'costume', 'and'], ['in', 'all', 'the', 'differences', 'of', 'texture', 'and', 'bearing', 'that', 'now', 'mark', 'off', 'the'], ['sexes', 'from', 'each', 'other', 'these', 'people', 'of', 'the', 'future', 'were', 'alike', 'and'], ['the', 'children', 'seemed', 'to', 'my', 'eyes', 'to', 'be', 'but', 'the', 'miniatures', 'of', 'their'], ['parents', 'i', 'judged', 'then', 'that', 'the', 'children', 'of', 'that', 'time', 'were'], ['extremely', 'precocious', 'physically', 'at', 'least', 'and', 'i', 'found', 'afterwards'], ['abundant', 'verification', 'of', 'my', 'opinion'], [], ['seeing', 'the', 'ease', 'and', 'security', 'in', 'which', 'these', 'people', 'were', 'living', 'i'], ['felt', 'that', 'this', 'close', 'resemblance', 'of', 'the', 'sexes', 'was', 'after', 'all', 'what'], ['one', 'would', 'expect', 'for', 'the', 'strength', 'of', 'a', 'man', 'and', 'the', 'softness', 'of', 'a'], ['woman', 'the', 'institution', 'of', 'the', 'family', 'and', 'the', 'differentiation', 'of'], ['occupations', 'are', 'mere', 'militant', 'necessities', 'of', 'an', 'age', 'of', 'physical'], ['force', 'where', 'population', 'is', 'balanced', 'and', 'abundant', 'much', 'childbearing'], ['becomes', 'an', 'evil', 'rather', 'than', 'a', 'blessing', 'to', 'the', 'state', 'where'], ['violence', 'comes', 'but', 'rarely', 'and', 'off', 'spring', 'are', 'secure', 'there', 'is', 'less'], ['necessity', 'indeed', 'there', 'is', 'no', 'necessity', 'for', 'an', 'efficient', 'family'], ['and', 'the', 'specialization', 'of', 'the', 'sexes', 'with', 'reference', 'to', 'their'], ['children', 's', 'needs', 'disappears', 'we', 'see', 'some', 'beginnings', 'of', 'this', 'even'], ['in', 'our', 'own', 'time', 'and', 'in', 'this', 'future', 'age', 'it', 'was', 'complete', 'this', 'i'], ['must', 'remind', 'you', 'was', 'my', 'speculation', 'at', 'the', 'time', 'later', 'i', 'was', 'to'], ['appreciate', 'how', 'far', 'it', 'fell', 'short', 'of', 'the', 'reality'], [], ['while', 'i', 'was', 'musing', 'upon', 'these', 'things', 'my', 'attention', 'was', 'attracted', 'by'], ['a', 'pretty', 'little', 'structure', 'like', 'a', 'well', 'under', 'a', 'cupola', 'i', 'thought', 'in'], ['a', 'transitory', 'way', 'of', 'the', 'oddness', 'of', 'wells', 'still', 'existing', 'and', 'then'], ['resumed', 'the', 'thread', 'of', 'my', 'speculations', 'there', 'were', 'no', 'large', 'buildings'], ['towards', 'the', 'top', 'of', 'the', 'hill', 'and', 'as', 'my', 'walking', 'powers', 'were', 'evidently'], ['miraculous', 'i', 'was', 'presently', 'left', 'alone', 'for', 'the', 'first', 'time', 'with', 'a'], ['strange', 'sense', 'of', 'freedom', 'and', 'adventure', 'i', 'pushed', 'on', 'up', 'to', 'the', 'crest'], [], ['there', 'i', 'found', 'a', 'seat', 'of', 'some', 'yellow', 'metal', 'that', 'i', 'did', 'not', 'recognize'], ['corroded', 'in', 'places', 'with', 'a', 'kind', 'of', 'pinkish', 'rust', 'and', 'half', 'smothered'], ['in', 'soft', 'moss', 'the', 'arm', 'rests', 'cast', 'and', 'filed', 'into', 'the', 'resemblance', 'of'], ['griffins', 'heads', 'i', 'sat', 'down', 'on', 'it', 'and', 'i', 'surveyed', 'the', 'broad', 'view', 'of'], ['our', 'old', 'world', 'under', 'the', 'sunset', 'of', 'that', 'long', 'day', 'it', 'was', 'as', 'sweet', 'and'], ['fair', 'a', 'view', 'as', 'i', 'have', 'ever', 'seen', 'the', 'sun', 'had', 'already', 'gone', 'below', 'the'], ['horizon', 'and', 'the', 'west', 'was', 'flaming', 'gold', 'touched', 'with', 'some', 'horizontal'], ['bars', 'of', 'purple', 'and', 'crimson', 'below', 'was', 'the', 'valley', 'of', 'the', 'thames', 'in'], ['which', 'the', 'river', 'lay', 'like', 'a', 'band', 'of', 'burnished', 'steel', 'i', 'have', 'already'], ['spoken', 'of', 'the', 'great', 'palaces', 'dotted', 'about', 'among', 'the', 'variegated'], ['greenery', 'some', 'in', 'ruins', 'and', 'some', 'still', 'occupied', 'here', 'and', 'there', 'rose'], ['a', 'white', 'or', 'silvery', 'figure', 'in', 'the', 'waste', 'garden', 'of', 'the', 'earth', 'here', 'and'], ['there', 'came', 'the', 'sharp', 'vertical', 'line', 'of', 'some', 'cupola', 'or', 'obelisk', 'there'], ['were', 'no', 'hedges', 'no', 'signs', 'of', 'proprietary', 'rights', 'no', 'evidences', 'of'], ['agriculture', 'the', 'whole', 'earth', 'had', 'become', 'a', 'garden'], [], ['so', 'watching', 'i', 'began', 'to', 'put', 'my', 'interpretation', 'upon', 'the', 'things', 'i', 'had'], ['seen', 'and', 'as', 'it', 'shaped', 'itself', 'to', 'me', 'that', 'evening', 'my', 'interpretation'], ['was', 'something', 'in', 'this', 'way', 'afterwards', 'i', 'found', 'i', 'had', 'got', 'only', 'a'], ['half', 'truth', 'or', 'only', 'a', 'glimpse', 'of', 'one', 'facet', 'of', 'the', 'truth'], [], ['it', 'seemed', 'to', 'me', 'that', 'i', 'had', 'happened', 'upon', 'humanity', 'upon', 'the', 'wane'], ['the', 'ruddy', 'sunset', 'set', 'me', 'thinking', 'of', 'the', 'sunset', 'of', 'mankind', 'for', 'the'], ['first', 'time', 'i', 'began', 'to', 'realize', 'an', 'odd', 'consequence', 'of', 'the', 'social'], ['effort', 'in', 'which', 'we', 'are', 'at', 'present', 'engaged', 'and', 'yet', 'come', 'to', 'think'], ['it', 'is', 'a', 'logical', 'consequence', 'enough', 'strength', 'is', 'the', 'outcome', 'of', 'need'], ['security', 'sets', 'a', 'premium', 'on', 'feebleness', 'the', 'work', 'of', 'ameliorating', 'the'], ['conditions', 'of', 'life', 'the', 'true', 'civilizing', 'process', 'that', 'makes', 'life', 'more'], ['and', 'more', 'secure', 'had', 'gone', 'steadily', 'on', 'to', 'a', 'climax', 'one', 'triumph', 'of', 'a'], ['united', 'humanity', 'over', 'nature', 'had', 'followed', 'another', 'things', 'that', 'are'], ['now', 'mere', 'dreams', 'had', 'become', 'projects', 'deliberately', 'put', 'in', 'hand', 'and'], ['carried', 'forward', 'and', 'the', 'harvest', 'was', 'what', 'i', 'saw'], [], ['after', 'all', 'the', 'sanitation', 'and', 'the', 'agriculture', 'of', 'to', 'day', 'are', 'still'], ['in', 'the', 'rudimentary', 'stage', 'the', 'science', 'of', 'our', 'time', 'has', 'attacked', 'but'], ['a', 'little', 'department', 'of', 'the', 'field', 'of', 'human', 'disease', 'but', 'even', 'so'], ['it', 'spreads', 'its', 'operations', 'very', 'steadily', 'and', 'persistently', 'our'], ['agriculture', 'and', 'horticulture', 'destroy', 'a', 'weed', 'just', 'here', 'and', 'there', 'and'], ['cultivate', 'perhaps', 'a', 'score', 'or', 'so', 'of', 'wholesome', 'plants', 'leaving', 'the'], ['greater', 'number', 'to', 'fight', 'out', 'a', 'balance', 'as', 'they', 'can', 'we', 'improve', 'our'], ['favourite', 'plants', 'and', 'animals', 'and', 'how', 'few', 'they', 'are', 'gradually', 'by'], ['selective', 'breeding', 'now', 'a', 'new', 'and', 'better', 'peach', 'now', 'a', 'seedless'], ['grape', 'now', 'a', 'sweeter', 'and', 'larger', 'flower', 'now', 'a', 'more', 'convenient', 'breed'], ['of', 'cattle', 'we', 'improve', 'them', 'gradually', 'because', 'our', 'ideals', 'are', 'vague'], ['and', 'tentative', 'and', 'our', 'knowledge', 'is', 'very', 'limited', 'because', 'nature'], ['too', 'is', 'shy', 'and', 'slow', 'in', 'our', 'clumsy', 'hands', 'some', 'day', 'all', 'this', 'will'], ['be', 'better', 'organized', 'and', 'still', 'better', 'that', 'is', 'the', 'drift', 'of', 'the'], ['current', 'in', 'spite', 'of', 'the', 'eddies', 'the', 'whole', 'world', 'will', 'be', 'intelligent'], ['educated', 'and', 'co', 'operating', 'things', 'will', 'move', 'faster', 'and', 'faster'], ['towards', 'the', 'subjugation', 'of', 'nature', 'in', 'the', 'end', 'wisely', 'and', 'carefully'], ['we', 'shall', 'readjust', 'the', 'balance', 'of', 'animal', 'and', 'vegetable', 'life', 'to', 'suit'], ['our', 'human', 'needs'], [], ['this', 'adjustment', 'i', 'say', 'must', 'have', 'been', 'done', 'and', 'done', 'well', 'done'], ['indeed', 'for', 'all', 'time', 'in', 'the', 'space', 'of', 'time', 'across', 'which', 'my', 'machine'], ['had', 'leaped', 'the', 'air', 'was', 'free', 'from', 'gnats', 'the', 'earth', 'from', 'weeds', 'or'], ['fungi', 'everywhere', 'were', 'fruits', 'and', 'sweet', 'and', 'delightful', 'flowers'], ['brilliant', 'butterflies', 'flew', 'hither', 'and', 'thither', 'the', 'ideal', 'of'], ['preventive', 'medicine', 'was', 'attained', 'diseases', 'had', 'been', 'stamped', 'out', 'i'], ['saw', 'no', 'evidence', 'of', 'any', 'contagious', 'diseases', 'during', 'all', 'my', 'stay', 'and', 'i'], ['shall', 'have', 'to', 'tell', 'you', 'later', 'that', 'even', 'the', 'processes', 'of', 'putrefaction'], ['and', 'decay', 'had', 'been', 'profoundly', 'affected', 'by', 'these', 'changes'], [], ['social', 'triumphs', 'too', 'had', 'been', 'effected', 'i', 'saw', 'mankind', 'housed', 'in'], ['splendid', 'shelters', 'gloriously', 'clothed', 'and', 'as', 'yet', 'i', 'had', 'found', 'them'], ['engaged', 'in', 'no', 'toil', 'there', 'were', 'no', 'signs', 'of', 'struggle', 'neither', 'social'], ['nor', 'economical', 'struggle', 'the', 'shop', 'the', 'advertisement', 'traffic', 'all'], ['that', 'commerce', 'which', 'constitutes', 'the', 'body', 'of', 'our', 'world', 'was', 'gone', 'it'], ['was', 'natural', 'on', 'that', 'golden', 'evening', 'that', 'i', 'should', 'jump', 'at', 'the', 'idea', 'of'], ['a', 'social', 'paradise', 'the', 'difficulty', 'of', 'increasing', 'population', 'had', 'been'], ['met', 'i', 'guessed', 'and', 'population', 'had', 'ceased', 'to', 'increase'], [], ['but', 'with', 'this', 'change', 'in', 'condition', 'comes', 'inevitably', 'adaptations', 'to'], ['the', 'change', 'what', 'unless', 'biological', 'science', 'is', 'a', 'mass', 'of', 'errors', 'is'], ['the', 'cause', 'of', 'human', 'intelligence', 'and', 'vigour', 'hardship', 'and', 'freedom'], ['conditions', 'under', 'which', 'the', 'active', 'strong', 'and', 'subtle', 'survive', 'and'], ['the', 'weaker', 'go', 'to', 'the', 'wall', 'conditions', 'that', 'put', 'a', 'premium', 'upon', 'the'], ['loyal', 'alliance', 'of', 'capable', 'men', 'upon', 'self', 'restraint', 'patience', 'and'], ['decision', 'and', 'the', 'institution', 'of', 'the', 'family', 'and', 'the', 'emotions', 'that'], ['arise', 'therein', 'the', 'fierce', 'jealousy', 'the', 'tenderness', 'for', 'offspring'], ['parental', 'self', 'devotion', 'all', 'found', 'their', 'justification', 'and', 'support', 'in'], ['the', 'imminent', 'dangers', 'of', 'the', 'young', 'now', 'where', 'are', 'these', 'imminent'], ['dangers', 'there', 'is', 'a', 'sentiment', 'arising', 'and', 'it', 'will', 'grow', 'against'], ['connubial', 'jealousy', 'against', 'fierce', 'maternity', 'against', 'passion'], ['of', 'all', 'sorts', 'unnecessary', 'things', 'now', 'and', 'things', 'that', 'make', 'us'], ['uncomfortable', 'savage', 'survivals', 'discords', 'in', 'a', 'refined', 'and', 'pleasant'], ['life'], [], ['i', 'thought', 'of', 'the', 'physical', 'slightness', 'of', 'the', 'people', 'their', 'lack', 'of'], ['intelligence', 'and', 'those', 'big', 'abundant', 'ruins', 'and', 'it', 'strengthened', 'my'], ['belief', 'in', 'a', 'perfect', 'conquest', 'of', 'nature', 'for', 'after', 'the', 'battle', 'comes'], ['quiet', 'humanity', 'had', 'been', 'strong', 'energetic', 'and', 'intelligent', 'and', 'had'], ['used', 'all', 'its', 'abundant', 'vitality', 'to', 'alter', 'the', 'conditions', 'under', 'which'], ['it', 'lived', 'and', 'now', 'came', 'the', 'reaction', 'of', 'the', 'altered', 'conditions'], [], ['under', 'the', 'new', 'conditions', 'of', 'perfect', 'comfort', 'and', 'security', 'that'], ['restless', 'energy', 'that', 'with', 'us', 'is', 'strength', 'would', 'become', 'weakness'], ['even', 'in', 'our', 'own', 'time', 'certain', 'tendencies', 'and', 'desires', 'once', 'necessary'], ['to', 'survival', 'are', 'a', 'constant', 'source', 'of', 'failure', 'physical', 'courage', 'and'], ['the', 'love', 'of', 'battle', 'for', 'instance', 'are', 'no', 'great', 'help', 'may', 'even', 'be'], ['hindrances', 'to', 'a', 'civilized', 'man', 'and', 'in', 'a', 'state', 'of', 'physical', 'balance'], ['and', 'security', 'power', 'intellectual', 'as', 'well', 'as', 'physical', 'would', 'be', 'out'], ['of', 'place', 'for', 'countless', 'years', 'i', 'judged', 'there', 'had', 'been', 'no', 'danger', 'of'], ['war', 'or', 'solitary', 'violence', 'no', 'danger', 'from', 'wild', 'beasts', 'no', 'wasting'], ['disease', 'to', 'require', 'strength', 'of', 'constitution', 'no', 'need', 'of', 'toil', 'for'], ['such', 'a', 'life', 'what', 'we', 'should', 'call', 'the', 'weak', 'are', 'as', 'well', 'equipped', 'as'], ['the', 'strong', 'are', 'indeed', 'no', 'longer', 'weak', 'better', 'equipped', 'indeed', 'they'], ['are', 'for', 'the', 'strong', 'would', 'be', 'fretted', 'by', 'an', 'energy', 'for', 'which', 'there'], ['was', 'no', 'outlet', 'no', 'doubt', 'the', 'exquisite', 'beauty', 'of', 'the', 'buildings', 'i', 'saw'], ['was', 'the', 'outcome', 'of', 'the', 'last', 'surgings', 'of', 'the', 'now', 'purposeless', 'energy'], ['of', 'mankind', 'before', 'it', 'settled', 'down', 'into', 'perfect', 'harmony', 'with', 'the'], ['conditions', 'under', 'which', 'it', 'lived', 'the', 'flourish', 'of', 'that', 'triumph', 'which'], ['began', 'the', 'last', 'great', 'peace', 'this', 'has', 'ever', 'been', 'the', 'fate', 'of', 'energy', 'in'], ['security', 'it', 'takes', 'to', 'art', 'and', 'to', 'eroticism', 'and', 'then', 'come', 'languor'], ['and', 'decay'], [], ['even', 'this', 'artistic', 'impetus', 'would', 'at', 'last', 'die', 'away', 'had', 'almost', 'died'], ['in', 'the', 'time', 'i', 'saw', 'to', 'adorn', 'themselves', 'with', 'flowers', 'to', 'dance', 'to'], ['sing', 'in', 'the', 'sunlight', 'so', 'much', 'was', 'left', 'of', 'the', 'artistic', 'spirit', 'and'], ['no', 'more', 'even', 'that', 'would', 'fade', 'in', 'the', 'end', 'into', 'a', 'contented'], ['inactivity', 'we', 'are', 'kept', 'keen', 'on', 'the', 'grindstone', 'of', 'pain', 'and'], ['necessity', 'and', 'it', 'seemed', 'to', 'me', 'that', 'here', 'was', 'that', 'hateful'], ['grindstone', 'broken', 'at', 'last'], [], ['as', 'i', 'stood', 'there', 'in', 'the', 'gathering', 'dark', 'i', 'thought', 'that', 'in', 'this'], ['simple', 'explanation', 'i', 'had', 'mastered', 'the', 'problem', 'of', 'the', 'world', 'mastered'], ['the', 'whole', 'secret', 'of', 'these', 'delicious', 'people', 'possibly', 'the', 'checks', 'they'], ['had', 'devised', 'for', 'the', 'increase', 'of', 'population', 'had', 'succeeded', 'too', 'well'], ['and', 'their', 'numbers', 'had', 'rather', 'diminished', 'than', 'kept', 'stationary'], ['that', 'would', 'account', 'for', 'the', 'abandoned', 'ruins', 'very', 'simple', 'was', 'my'], ['explanation', 'and', 'plausible', 'enough', 'as', 'most', 'wrong', 'theories', 'are'], [], [], [], [], ['v'], [], [], ['as', 'i', 'stood', 'there', 'musing', 'over', 'this', 'too', 'perfect', 'triumph', 'of', 'man', 'the'], ['full', 'moon', 'yellow', 'and', 'gibbous', 'came', 'up', 'out', 'of', 'an', 'overflow', 'of', 'silver'], ['light', 'in', 'the', 'north', 'east', 'the', 'bright', 'little', 'figures', 'ceased', 'to', 'move'], ['about', 'below', 'a', 'noiseless', 'owl', 'flitted', 'by', 'and', 'i', 'shivered', 'with', 'the'], ['chill', 'of', 'the', 'night', 'i', 'determined', 'to', 'descend', 'and', 'find', 'where', 'i', 'could'], ['sleep'], [], ['i', 'looked', 'for', 'the', 'building', 'i', 'knew', 'then', 'my', 'eye', 'travelled', 'along', 'to'], ['the', 'figure', 'of', 'the', 'white', 'sphinx', 'upon', 'the', 'pedestal', 'of', 'bronze', 'growing'], ['distinct', 'as', 'the', 'light', 'of', 'the', 'rising', 'moon', 'grew', 'brighter', 'i', 'could', 'see'], ['the', 'silver', 'birch', 'against', 'it', 'there', 'was', 'the', 'tangle', 'of', 'rhododendron'], ['bushes', 'black', 'in', 'the', 'pale', 'light', 'and', 'there', 'was', 'the', 'little', 'lawn'], ['i', 'looked', 'at', 'the', 'lawn', 'again', 'a', 'queer', 'doubt', 'chilled', 'my', 'complacency'], ['no', 'said', 'i', 'stoutly', 'to', 'myself', 'that', 'was', 'not', 'the', 'lawn'], [], ['but', 'it', 'was', 'the', 'lawn', 'for', 'the', 'white', 'leprous', 'face', 'of', 'the', 'sphinx', 'was'], ['towards', 'it', 'can', 'you', 'imagine', 'what', 'i', 'felt', 'as', 'this', 'conviction', 'came'], ['home', 'to', 'me', 'but', 'you', 'cannot', 'the', 'time', 'machine', 'was', 'gone'], [], ['at', 'once', 'like', 'a', 'lash', 'across', 'the', 'face', 'came', 'the', 'possibility', 'of'], ['losing', 'my', 'own', 'age', 'of', 'being', 'left', 'helpless', 'in', 'this', 'strange', 'new', 'world'], ['the', 'bare', 'thought', 'of', 'it', 'was', 'an', 'actual', 'physical', 'sensation', 'i', 'could'], ['feel', 'it', 'grip', 'me', 'at', 'the', 'throat', 'and', 'stop', 'my', 'breathing', 'in', 'another'], ['moment', 'i', 'was', 'in', 'a', 'passion', 'of', 'fear', 'and', 'running', 'with', 'great', 'leaping'], ['strides', 'down', 'the', 'slope', 'once', 'i', 'fell', 'headlong', 'and', 'cut', 'my', 'face', 'i', 'lost'], ['no', 'time', 'in', 'stanching', 'the', 'blood', 'but', 'jumped', 'up', 'and', 'ran', 'on', 'with', 'a'], ['warm', 'trickle', 'down', 'my', 'cheek', 'and', 'chin', 'all', 'the', 'time', 'i', 'ran', 'i', 'was', 'saying'], ['to', 'myself', 'they', 'have', 'moved', 'it', 'a', 'little', 'pushed', 'it', 'under', 'the', 'bushes'], ['out', 'of', 'the', 'way', 'nevertheless', 'i', 'ran', 'with', 'all', 'my', 'might', 'all', 'the'], ['time', 'with', 'the', 'certainty', 'that', 'sometimes', 'comes', 'with', 'excessive', 'dread'], ['i', 'knew', 'that', 'such', 'assurance', 'was', 'folly', 'knew', 'instinctively', 'that', 'the'], ['machine', 'was', 'removed', 'out', 'of', 'my', 'reach', 'my', 'breath', 'came', 'with', 'pain', 'i'], ['suppose', 'i', 'covered', 'the', 'whole', 'distance', 'from', 'the', 'hill', 'crest', 'to', 'the'], ['little', 'lawn', 'two', 'miles', 'perhaps', 'in', 'ten', 'minutes', 'and', 'i', 'am', 'not', 'a', 'young'], ['man', 'i', 'cursed', 'aloud', 'as', 'i', 'ran', 'at', 'my', 'confident', 'folly', 'in', 'leaving', 'the'], ['machine', 'wasting', 'good', 'breath', 'thereby', 'i', 'cried', 'aloud', 'and', 'none'], ['answered', 'not', 'a', 'creature', 'seemed', 'to', 'be', 'stirring', 'in', 'that', 'moonlit'], ['world'], [], ['when', 'i', 'reached', 'the', 'lawn', 'my', 'worst', 'fears', 'were', 'realized', 'not', 'a', 'trace'], ['of', 'the', 'thing', 'was', 'to', 'be', 'seen', 'i', 'felt', 'faint', 'and', 'cold', 'when', 'i', 'faced', 'the'], ['empty', 'space', 'among', 'the', 'black', 'tangle', 'of', 'bushes', 'i', 'ran', 'round', 'it'], ['furiously', 'as', 'if', 'the', 'thing', 'might', 'be', 'hidden', 'in', 'a', 'corner', 'and', 'then'], ['stopped', 'abruptly', 'with', 'my', 'hands', 'clutching', 'my', 'hair', 'above', 'me', 'towered'], ['the', 'sphinx', 'upon', 'the', 'bronze', 'pedestal', 'white', 'shining', 'leprous', 'in'], ['the', 'light', 'of', 'the', 'rising', 'moon', 'it', 'seemed', 'to', 'smile', 'in', 'mockery', 'of', 'my'], ['dismay'], [], ['i', 'might', 'have', 'consoled', 'myself', 'by', 'imagining', 'the', 'little', 'people', 'had', 'put'], ['the', 'mechanism', 'in', 'some', 'shelter', 'for', 'me', 'had', 'i', 'not', 'felt', 'assured', 'of'], ['their', 'physical', 'and', 'intellectual', 'inadequacy', 'that', 'is', 'what', 'dismayed'], ['me', 'the', 'sense', 'of', 'some', 'hitherto', 'unsuspected', 'power', 'through', 'whose'], ['intervention', 'my', 'invention', 'had', 'vanished', 'yet', 'for', 'one', 'thing', 'i', 'felt'], ['assured', 'unless', 'some', 'other', 'age', 'had', 'produced', 'its', 'exact', 'duplicate'], ['the', 'machine', 'could', 'not', 'have', 'moved', 'in', 'time', 'the', 'attachment', 'of', 'the'], ['levers', 'i', 'will', 'show', 'you', 'the', 'method', 'later', 'prevented', 'any', 'one', 'from'], ['tampering', 'with', 'it', 'in', 'that', 'way', 'when', 'they', 'were', 'removed', 'it', 'had', 'moved'], ['and', 'was', 'hid', 'only', 'in', 'space', 'but', 'then', 'where', 'could', 'it', 'be'], [], ['i', 'think', 'i', 'must', 'have', 'had', 'a', 'kind', 'of', 'frenzy', 'i', 'remember', 'running'], ['violently', 'in', 'and', 'out', 'among', 'the', 'moonlit', 'bushes', 'all', 'round', 'the', 'sphinx'], ['and', 'startling', 'some', 'white', 'animal', 'that', 'in', 'the', 'dim', 'light', 'i', 'took', 'for', 'a'], ['small', 'deer', 'i', 'remember', 'too', 'late', 'that', 'night', 'beating', 'the', 'bushes'], ['with', 'my', 'clenched', 'fist', 'until', 'my', 'knuckles', 'were', 'gashed', 'and', 'bleeding'], ['from', 'the', 'broken', 'twigs', 'then', 'sobbing', 'and', 'raving', 'in', 'my', 'anguish', 'of'], ['mind', 'i', 'went', 'down', 'to', 'the', 'great', 'building', 'of', 'stone', 'the', 'big', 'hall', 'was'], ['dark', 'silent', 'and', 'deserted', 'i', 'slipped', 'on', 'the', 'uneven', 'floor', 'and', 'fell'], ['over', 'one', 'of', 'the', 'malachite', 'tables', 'almost', 'breaking', 'my', 'shin', 'i', 'lit', 'a'], ['match', 'and', 'went', 'on', 'past', 'the', 'dusty', 'curtains', 'of', 'which', 'i', 'have', 'told', 'you'], [], ['there', 'i', 'found', 'a', 'second', 'great', 'hall', 'covered', 'with', 'cushions', 'upon'], ['which', 'perhaps', 'a', 'score', 'or', 'so', 'of', 'the', 'little', 'people', 'were', 'sleeping', 'i'], ['have', 'no', 'doubt', 'they', 'found', 'my', 'second', 'appearance', 'strange', 'enough', 'coming'], ['suddenly', 'out', 'of', 'the', 'quiet', 'darkness', 'with', 'inarticulate', 'noises', 'and', 'the'], ['splutter', 'and', 'flare', 'of', 'a', 'match', 'for', 'they', 'had', 'forgotten', 'about', 'matches'], ['where', 'is', 'my', 'time', 'machine', 'i', 'began', 'bawling', 'like', 'an', 'angry', 'child'], ['laying', 'hands', 'upon', 'them', 'and', 'shaking', 'them', 'up', 'together', 'it', 'must', 'have'], ['been', 'very', 'queer', 'to', 'them', 'some', 'laughed', 'most', 'of', 'them', 'looked', 'sorely'], ['frightened', 'when', 'i', 'saw', 'them', 'standing', 'round', 'me', 'it', 'came', 'into', 'my', 'head'], ['that', 'i', 'was', 'doing', 'as', 'foolish', 'a', 'thing', 'as', 'it', 'was', 'possible', 'for', 'me', 'to', 'do'], ['under', 'the', 'circumstances', 'in', 'trying', 'to', 'revive', 'the', 'sensation', 'of', 'fear'], ['for', 'reasoning', 'from', 'their', 'daylight', 'behaviour', 'i', 'thought', 'that', 'fear'], ['must', 'be', 'forgotten'], [], ['abruptly', 'i', 'dashed', 'down', 'the', 'match', 'and', 'knocking', 'one', 'of', 'the', 'people'], ['over', 'in', 'my', 'course', 'went', 'blundering', 'across', 'the', 'big', 'dining', 'hall', 'again'], ['out', 'under', 'the', 'moonlight', 'i', 'heard', 'cries', 'of', 'terror', 'and', 'their', 'little'], ['feet', 'running', 'and', 'stumbling', 'this', 'way', 'and', 'that', 'i', 'do', 'not', 'remember', 'all'], ['i', 'did', 'as', 'the', 'moon', 'crept', 'up', 'the', 'sky', 'i', 'suppose', 'it', 'was', 'the', 'unexpected'], ['nature', 'of', 'my', 'loss', 'that', 'maddened', 'me', 'i', 'felt', 'hopelessly', 'cut', 'off', 'from'], ['my', 'own', 'kind', 'a', 'strange', 'animal', 'in', 'an', 'unknown', 'world', 'i', 'must', 'have', 'raved'], ['to', 'and', 'fro', 'screaming', 'and', 'crying', 'upon', 'god', 'and', 'fate', 'i', 'have', 'a', 'memory'], ['of', 'horrible', 'fatigue', 'as', 'the', 'long', 'night', 'of', 'despair', 'wore', 'away', 'of'], ['looking', 'in', 'this', 'impossible', 'place', 'and', 'that', 'of', 'groping', 'among', 'moon', 'lit'], ['ruins', 'and', 'touching', 'strange', 'creatures', 'in', 'the', 'black', 'shadows', 'at', 'last'], ['of', 'lying', 'on', 'the', 'ground', 'near', 'the', 'sphinx', 'and', 'weeping', 'with', 'absolute'], ['wretchedness', 'i', 'had', 'nothing', 'left', 'but', 'misery', 'then', 'i', 'slept', 'and', 'when'], ['i', 'woke', 'again', 'it', 'was', 'full', 'day', 'and', 'a', 'couple', 'of', 'sparrows', 'were', 'hopping'], ['round', 'me', 'on', 'the', 'turf', 'within', 'reach', 'of', 'my', 'arm'], [], ['i', 'sat', 'up', 'in', 'the', 'freshness', 'of', 'the', 'morning', 'trying', 'to', 'remember', 'how'], ['i', 'had', 'got', 'there', 'and', 'why', 'i', 'had', 'such', 'a', 'profound', 'sense', 'of', 'desertion'], ['and', 'despair', 'then', 'things', 'came', 'clear', 'in', 'my', 'mind', 'with', 'the', 'plain'], ['reasonable', 'daylight', 'i', 'could', 'look', 'my', 'circumstances', 'fairly', 'in', 'the'], ['face', 'i', 'saw', 'the', 'wild', 'folly', 'of', 'my', 'frenzy', 'overnight', 'and', 'i', 'could'], ['reason', 'with', 'myself', 'suppose', 'the', 'worst', 'i', 'said', 'suppose', 'the'], ['machine', 'altogether', 'lost', 'perhaps', 'destroyed', 'it', 'behoves', 'me', 'to', 'be'], ['calm', 'and', 'patient', 'to', 'learn', 'the', 'way', 'of', 'the', 'people', 'to', 'get', 'a', 'clear'], ['idea', 'of', 'the', 'method', 'of', 'my', 'loss', 'and', 'the', 'means', 'of', 'getting', 'materials'], ['and', 'tools', 'so', 'that', 'in', 'the', 'end', 'perhaps', 'i', 'may', 'make', 'another', 'that'], ['would', 'be', 'my', 'only', 'hope', 'perhaps', 'but', 'better', 'than', 'despair', 'and', 'after'], ['all', 'it', 'was', 'a', 'beautiful', 'and', 'curious', 'world'], [], ['but', 'probably', 'the', 'machine', 'had', 'only', 'been', 'taken', 'away', 'still', 'i', 'must'], ['be', 'calm', 'and', 'patient', 'find', 'its', 'hiding', 'place', 'and', 'recover', 'it', 'by', 'force'], ['or', 'cunning', 'and', 'with', 'that', 'i', 'scrambled', 'to', 'my', 'feet', 'and', 'looked', 'about'], ['me', 'wondering', 'where', 'i', 'could', 'bathe', 'i', 'felt', 'weary', 'stiff', 'and'], ['travel', 'soiled', 'the', 'freshness', 'of', 'the', 'morning', 'made', 'me', 'desire', 'an', 'equal'], ['freshness', 'i', 'had', 'exhausted', 'my', 'emotion', 'indeed', 'as', 'i', 'went', 'about'], ['my', 'business', 'i', 'found', 'myself', 'wondering', 'at', 'my', 'intense', 'excitement'], ['overnight', 'i', 'made', 'a', 'careful', 'examination', 'of', 'the', 'ground', 'about', 'the'], ['little', 'lawn', 'i', 'wasted', 'some', 'time', 'in', 'futile', 'questionings', 'conveyed', 'as'], ['well', 'as', 'i', 'was', 'able', 'to', 'such', 'of', 'the', 'little', 'people', 'as', 'came', 'by', 'they'], ['all', 'failed', 'to', 'understand', 'my', 'gestures', 'some', 'were', 'simply', 'stolid', 'some'], ['thought', 'it', 'was', 'a', 'jest', 'and', 'laughed', 'at', 'me', 'i', 'had', 'the', 'hardest', 'task', 'in'], ['the', 'world', 'to', 'keep', 'my', 'hands', 'off', 'their', 'pretty', 'laughing', 'faces', 'it', 'was'], ['a', 'foolish', 'impulse', 'but', 'the', 'devil', 'begotten', 'of', 'fear', 'and', 'blind', 'anger'], ['was', 'ill', 'curbed', 'and', 'still', 'eager', 'to', 'take', 'advantage', 'of', 'my', 'perplexity'], ['the', 'turf', 'gave', 'better', 'counsel', 'i', 'found', 'a', 'groove', 'ripped', 'in', 'it', 'about'], ['midway', 'between', 'the', 'pedestal', 'of', 'the', 'sphinx', 'and', 'the', 'marks', 'of', 'my', 'feet'], ['where', 'on', 'arrival', 'i', 'had', 'struggled', 'with', 'the', 'overturned', 'machine'], ['there', 'were', 'other', 'signs', 'of', 'removal', 'about', 'with', 'queer', 'narrow'], ['footprints', 'like', 'those', 'i', 'could', 'imagine', 'made', 'by', 'a', 'sloth', 'this', 'directed'], ['my', 'closer', 'attention', 'to', 'the', 'pedestal', 'it', 'was', 'as', 'i', 'think', 'i', 'have', 'said'], ['of', 'bronze', 'it', 'was', 'not', 'a', 'mere', 'block', 'but', 'highly', 'decorated', 'with', 'deep'], ['framed', 'panels', 'on', 'either', 'side', 'i', 'went', 'and', 'rapped', 'at', 'these', 'the'], ['pedestal', 'was', 'hollow', 'examining', 'the', 'panels', 'with', 'care', 'i', 'found', 'them'], ['discontinuous', 'with', 'the', 'frames', 'there', 'were', 'no', 'handles', 'or', 'keyholes'], ['but', 'possibly', 'the', 'panels', 'if', 'they', 'were', 'doors', 'as', 'i', 'supposed', 'opened'], ['from', 'within', 'one', 'thing', 'was', 'clear', 'enough', 'to', 'my', 'mind', 'it', 'took', 'no', 'very'], ['great', 'mental', 'effort', 'to', 'infer', 'that', 'my', 'time', 'machine', 'was', 'inside', 'that'], ['pedestal', 'but', 'how', 'it', 'got', 'there', 'was', 'a', 'different', 'problem'], [], ['i', 'saw', 'the', 'heads', 'of', 'two', 'orange', 'clad', 'people', 'coming', 'through', 'the', 'bushes'], ['and', 'under', 'some', 'blossom', 'covered', 'apple', 'trees', 'towards', 'me', 'i', 'turned'], ['smiling', 'to', 'them', 'and', 'beckoned', 'them', 'to', 'me', 'they', 'came', 'and', 'then'], ['pointing', 'to', 'the', 'bronze', 'pedestal', 'i', 'tried', 'to', 'intimate', 'my', 'wish', 'to', 'open'], ['it', 'but', 'at', 'my', 'first', 'gesture', 'towards', 'this', 'they', 'behaved', 'very', 'oddly', 'i'], ['don', 't', 'know', 'how', 'to', 'convey', 'their', 'expression', 'to', 'you', 'suppose', 'you', 'were'], ['to', 'use', 'a', 'grossly', 'improper', 'gesture', 'to', 'a', 'delicate', 'minded', 'woman', 'it', 'is'], ['how', 'she', 'would', 'look', 'they', 'went', 'off', 'as', 'if', 'they', 'had', 'received', 'the', 'last'], ['possible', 'insult', 'i', 'tried', 'a', 'sweet', 'looking', 'little', 'chap', 'in', 'white', 'next'], ['with', 'exactly', 'the', 'same', 'result', 'somehow', 'his', 'manner', 'made', 'me', 'feel'], ['ashamed', 'of', 'myself', 'but', 'as', 'you', 'know', 'i', 'wanted', 'the', 'time', 'machine', 'and'], ['i', 'tried', 'him', 'once', 'more', 'as', 'he', 'turned', 'off', 'like', 'the', 'others', 'my', 'temper'], ['got', 'the', 'better', 'of', 'me', 'in', 'three', 'strides', 'i', 'was', 'after', 'him', 'had', 'him', 'by'], ['the', 'loose', 'part', 'of', 'his', 'robe', 'round', 'the', 'neck', 'and', 'began', 'dragging', 'him'], ['towards', 'the', 'sphinx', 'then', 'i', 'saw', 'the', 'horror', 'and', 'repugnance', 'of', 'his'], ['face', 'and', 'all', 'of', 'a', 'sudden', 'i', 'let', 'him', 'go'], [], ['but', 'i', 'was', 'not', 'beaten', 'yet', 'i', 'banged', 'with', 'my', 'fist', 'at', 'the', 'bronze'], ['panels', 'i', 'thought', 'i', 'heard', 'something', 'stir', 'inside', 'to', 'be', 'explicit'], ['i', 'thought', 'i', 'heard', 'a', 'sound', 'like', 'a', 'chuckle', 'but', 'i', 'must', 'have', 'been'], ['mistaken', 'then', 'i', 'got', 'a', 'big', 'pebble', 'from', 'the', 'river', 'and', 'came', 'and'], ['hammered', 'till', 'i', 'had', 'flattened', 'a', 'coil', 'in', 'the', 'decorations', 'and', 'the'], ['verdigris', 'came', 'off', 'in', 'powdery', 'flakes', 'the', 'delicate', 'little', 'people'], ['must', 'have', 'heard', 'me', 'hammering', 'in', 'gusty', 'outbreaks', 'a', 'mile', 'away', 'on'], ['either', 'hand', 'but', 'nothing', 'came', 'of', 'it', 'i', 'saw', 'a', 'crowd', 'of', 'them', 'upon', 'the'], ['slopes', 'looking', 'furtively', 'at', 'me', 'at', 'last', 'hot', 'and', 'tired', 'i', 'sat', 'down'], ['to', 'watch', 'the', 'place', 'but', 'i', 'was', 'too', 'restless', 'to', 'watch', 'long', 'i', 'am', 'too'], ['occidental', 'for', 'a', 'long', 'vigil', 'i', 'could', 'work', 'at', 'a', 'problem', 'for', 'years'], ['but', 'to', 'wait', 'inactive', 'for', 'twenty', 'four', 'hours', 'that', 'is', 'another', 'matter'], [], ['i', 'got', 'up', 'after', 'a', 'time', 'and', 'began', 'walking', 'aimlessly', 'through', 'the'], ['bushes', 'towards', 'the', 'hill', 'again', 'patience', 'said', 'i', 'to', 'myself', 'if', 'you'], ['want', 'your', 'machine', 'again', 'you', 'must', 'leave', 'that', 'sphinx', 'alone', 'if', 'they'], ['mean', 'to', 'take', 'your', 'machine', 'away', 'it', 's', 'little', 'good', 'your', 'wrecking', 'their'], ['bronze', 'panels', 'and', 'if', 'they', 'don', 't', 'you', 'will', 'get', 'it', 'back', 'as', 'soon', 'as'], ['you', 'can', 'ask', 'for', 'it', 'to', 'sit', 'among', 'all', 'those', 'unknown', 'things', 'before', 'a'], ['puzzle', 'like', 'that', 'is', 'hopeless', 'that', 'way', 'lies', 'monomania', 'face', 'this'], ['world', 'learn', 'its', 'ways', 'watch', 'it', 'be', 'careful', 'of', 'too', 'hasty', 'guesses'], ['at', 'its', 'meaning', 'in', 'the', 'end', 'you', 'will', 'find', 'clues', 'to', 'it', 'all', 'then'], ['suddenly', 'the', 'humour', 'of', 'the', 'situation', 'came', 'into', 'my', 'mind', 'the', 'thought'], ['of', 'the', 'years', 'i', 'had', 'spent', 'in', 'study', 'and', 'toil', 'to', 'get', 'into', 'the', 'future'], ['age', 'and', 'now', 'my', 'passion', 'of', 'anxiety', 'to', 'get', 'out', 'of', 'it', 'i', 'had', 'made'], ['myself', 'the', 'most', 'complicated', 'and', 'the', 'most', 'hopeless', 'trap', 'that', 'ever', 'a'], ['man', 'devised', 'although', 'it', 'was', 'at', 'my', 'own', 'expense', 'i', 'could', 'not', 'help'], ['myself', 'i', 'laughed', 'aloud'], [], ['going', 'through', 'the', 'big', 'palace', 'it', 'seemed', 'to', 'me', 'that', 'the', 'little'], ['people', 'avoided', 'me', 'it', 'may', 'have', 'been', 'my', 'fancy', 'or', 'it', 'may', 'have', 'had'], ['something', 'to', 'do', 'with', 'my', 'hammering', 'at', 'the', 'gates', 'of', 'bronze', 'yet', 'i', 'felt'], ['tolerably', 'sure', 'of', 'the', 'avoidance', 'i', 'was', 'careful', 'however', 'to', 'show', 'no'], ['concern', 'and', 'to', 'abstain', 'from', 'any', 'pursuit', 'of', 'them', 'and', 'in', 'the', 'course'], ['of', 'a', 'day', 'or', 'two', 'things', 'got', 'back', 'to', 'the', 'old', 'footing', 'i', 'made', 'what'], ['progress', 'i', 'could', 'in', 'the', 'language', 'and', 'in', 'addition', 'i', 'pushed', 'my'], ['explorations', 'here', 'and', 'there', 'either', 'i', 'missed', 'some', 'subtle', 'point', 'or'], ['their', 'language', 'was', 'excessively', 'simple', 'almost', 'exclusively', 'composed'], ['of', 'concrete', 'substantives', 'and', 'verbs', 'there', 'seemed', 'to', 'be', 'few', 'if', 'any'], ['abstract', 'terms', 'or', 'little', 'use', 'of', 'figurative', 'language', 'their'], ['sentences', 'were', 'usually', 'simple', 'and', 'of', 'two', 'words', 'and', 'i', 'failed', 'to'], ['convey', 'or', 'understand', 'any', 'but', 'the', 'simplest', 'propositions', 'i', 'determined'], ['to', 'put', 'the', 'thought', 'of', 'my', 'time', 'machine', 'and', 'the', 'mystery', 'of', 'the', 'bronze'], ['doors', 'under', 'the', 'sphinx', 'as', 'much', 'as', 'possible', 'in', 'a', 'corner', 'of', 'memory'], ['until', 'my', 'growing', 'knowledge', 'would', 'lead', 'me', 'back', 'to', 'them', 'in', 'a', 'natural'], ['way', 'yet', 'a', 'certain', 'feeling', 'you', 'may', 'understand', 'tethered', 'me', 'in', 'a'], ['circle', 'of', 'a', 'few', 'miles', 'round', 'the', 'point', 'of', 'my', 'arrival'], [], ['so', 'far', 'as', 'i', 'could', 'see', 'all', 'the', 'world', 'displayed', 'the', 'same', 'exuberant'], ['richness', 'as', 'the', 'thames', 'valley', 'from', 'every', 'hill', 'i', 'climbed', 'i', 'saw', 'the'], ['same', 'abundance', 'of', 'splendid', 'buildings', 'endlessly', 'varied', 'in', 'material'], ['and', 'style', 'the', 'same', 'clustering', 'thickets', 'of', 'evergreens', 'the', 'same'], ['blossom', 'laden', 'trees', 'and', 'tree', 'ferns', 'here', 'and', 'there', 'water', 'shone', 'like'], ['silver', 'and', 'beyond', 'the', 'land', 'rose', 'into', 'blue', 'undulating', 'hills', 'and'], ['so', 'faded', 'into', 'the', 'serenity', 'of', 'the', 'sky', 'a', 'peculiar', 'feature', 'which'], ['presently', 'attracted', 'my', 'attention', 'was', 'the', 'presence', 'of', 'certain'], ['circular', 'wells', 'several', 'as', 'it', 'seemed', 'to', 'me', 'of', 'a', 'very', 'great', 'depth'], ['one', 'lay', 'by', 'the', 'path', 'up', 'the', 'hill', 'which', 'i', 'had', 'followed', 'during', 'my'], ['first', 'walk', 'like', 'the', 'others', 'it', 'was', 'rimmed', 'with', 'bronze', 'curiously'], ['wrought', 'and', 'protected', 'by', 'a', 'little', 'cupola', 'from', 'the', 'rain', 'sitting', 'by'], ['the', 'side', 'of', 'these', 'wells', 'and', 'peering', 'down', 'into', 'the', 'shafted', 'darkness'], ['i', 'could', 'see', 'no', 'gleam', 'of', 'water', 'nor', 'could', 'i', 'start', 'any', 'reflection'], ['with', 'a', 'lighted', 'match', 'but', 'in', 'all', 'of', 'them', 'i', 'heard', 'a', 'certain', 'sound'], ['a', 'thud', 'thud', 'thud', 'like', 'the', 'beating', 'of', 'some', 'big', 'engine', 'and', 'i'], ['discovered', 'from', 'the', 'flaring', 'of', 'my', 'matches', 'that', 'a', 'steady', 'current', 'of'], ['air', 'set', 'down', 'the', 'shafts', 'further', 'i', 'threw', 'a', 'scrap', 'of', 'paper', 'into', 'the'], ['throat', 'of', 'one', 'and', 'instead', 'of', 'fluttering', 'slowly', 'down', 'it', 'was', 'at'], ['once', 'sucked', 'swiftly', 'out', 'of', 'sight'], [], ['after', 'a', 'time', 'too', 'i', 'came', 'to', 'connect', 'these', 'wells', 'with', 'tall', 'towers'], ['standing', 'here', 'and', 'there', 'upon', 'the', 'slopes', 'for', 'above', 'them', 'there', 'was'], ['often', 'just', 'such', 'a', 'flicker', 'in', 'the', 'air', 'as', 'one', 'sees', 'on', 'a', 'hot', 'day', 'above'], ['a', 'sun', 'scorched', 'beach', 'putting', 'things', 'together', 'i', 'reached', 'a', 'strong'], ['suggestion', 'of', 'an', 'extensive', 'system', 'of', 'subterranean', 'ventilation', 'whose'], ['true', 'import', 'it', 'was', 'difficult', 'to', 'imagine', 'i', 'was', 'at', 'first', 'inclined', 'to'], ['associate', 'it', 'with', 'the', 'sanitary', 'apparatus', 'of', 'these', 'people', 'it', 'was', 'an'], ['obvious', 'conclusion', 'but', 'it', 'was', 'absolutely', 'wrong'], [], ['and', 'here', 'i', 'must', 'admit', 'that', 'i', 'learned', 'very', 'little', 'of', 'drains', 'and'], ['bells', 'and', 'modes', 'of', 'conveyance', 'and', 'the', 'like', 'conveniences', 'during', 'my'], ['time', 'in', 'this', 'real', 'future', 'in', 'some', 'of', 'these', 'visions', 'of', 'utopias', 'and'], ['coming', 'times', 'which', 'i', 'have', 'read', 'there', 'is', 'a', 'vast', 'amount', 'of', 'detail'], ['about', 'building', 'and', 'social', 'arrangements', 'and', 'so', 'forth', 'but', 'while'], ['such', 'details', 'are', 'easy', 'enough', 'to', 'obtain', 'when', 'the', 'whole', 'world', 'is'], ['contained', 'in', 'one', 's', 'imagination', 'they', 'are', 'altogether', 'inaccessible', 'to'], ['a', 'real', 'traveller', 'amid', 'such', 'realities', 'as', 'i', 'found', 'here', 'conceive', 'the'], ['tale', 'of', 'london', 'which', 'a', 'negro', 'fresh', 'from', 'central', 'africa', 'would', 'take'], ['back', 'to', 'his', 'tribe', 'what', 'would', 'he', 'know', 'of', 'railway', 'companies', 'of'], ['social', 'movements', 'of', 'telephone', 'and', 'telegraph', 'wires', 'of', 'the', 'parcels'], ['delivery', 'company', 'and', 'postal', 'orders', 'and', 'the', 'like', 'yet', 'we', 'at', 'least'], ['should', 'be', 'willing', 'enough', 'to', 'explain', 'these', 'things', 'to', 'him', 'and', 'even', 'of'], ['what', 'he', 'knew', 'how', 'much', 'could', 'he', 'make', 'his', 'untravelled', 'friend', 'either'], ['apprehend', 'or', 'believe', 'then', 'think', 'how', 'narrow', 'the', 'gap', 'between', 'a', 'negro'], ['and', 'a', 'white', 'man', 'of', 'our', 'own', 'times', 'and', 'how', 'wide', 'the', 'interval', 'between'], ['myself', 'and', 'these', 'of', 'the', 'golden', 'age', 'i', 'was', 'sensible', 'of', 'much', 'which', 'was'], ['unseen', 'and', 'which', 'contributed', 'to', 'my', 'comfort', 'but', 'save', 'for', 'a', 'general'], ['impression', 'of', 'automatic', 'organization', 'i', 'fear', 'i', 'can', 'convey', 'very'], ['little', 'of', 'the', 'difference', 'to', 'your', 'mind'], [], ['in', 'the', 'matter', 'of', 'sepulture', 'for', 'instance', 'i', 'could', 'see', 'no', 'signs', 'of'], ['crematoria', 'nor', 'anything', 'suggestive', 'of', 'tombs', 'but', 'it', 'occurred', 'to', 'me'], ['that', 'possibly', 'there', 'might', 'be', 'cemeteries', 'or', 'crematoria', 'somewhere'], ['beyond', 'the', 'range', 'of', 'my', 'explorings', 'this', 'again', 'was', 'a', 'question', 'i'], ['deliberately', 'put', 'to', 'myself', 'and', 'my', 'curiosity', 'was', 'at', 'first', 'entirely'], ['defeated', 'upon', 'the', 'point', 'the', 'thing', 'puzzled', 'me', 'and', 'i', 'was', 'led', 'to', 'make'], ['a', 'further', 'remark', 'which', 'puzzled', 'me', 'still', 'more', 'that', 'aged', 'and', 'infirm'], ['among', 'this', 'people', 'there', 'were', 'none'], [], ['i', 'must', 'confess', 'that', 'my', 'satisfaction', 'with', 'my', 'first', 'theories', 'of', 'an'], ['automatic', 'civilization', 'and', 'a', 'decadent', 'humanity', 'did', 'not', 'long', 'endure'], ['yet', 'i', 'could', 'think', 'of', 'no', 'other', 'let', 'me', 'put', 'my', 'difficulties', 'the'], ['several', 'big', 'palaces', 'i', 'had', 'explored', 'were', 'mere', 'living', 'places', 'great'], ['dining', 'halls', 'and', 'sleeping', 'apartments', 'i', 'could', 'find', 'no', 'machinery', 'no'], ['appliances', 'of', 'any', 'kind', 'yet', 'these', 'people', 'were', 'clothed', 'in', 'pleasant'], ['fabrics', 'that', 'must', 'at', 'times', 'need', 'renewal', 'and', 'their', 'sandals', 'though'], ['undecorated', 'were', 'fairly', 'complex', 'specimens', 'of', 'metalwork', 'somehow'], ['such', 'things', 'must', 'be', 'made', 'and', 'the', 'little', 'people', 'displayed', 'no', 'vestige'], ['of', 'a', 'creative', 'tendency', 'there', 'were', 'no', 'shops', 'no', 'workshops', 'no', 'sign'], ['of', 'importations', 'among', 'them', 'they', 'spent', 'all', 'their', 'time', 'in', 'playing'], ['gently', 'in', 'bathing', 'in', 'the', 'river', 'in', 'making', 'love', 'in', 'a', 'half', 'playful'], ['fashion', 'in', 'eating', 'fruit', 'and', 'sleeping', 'i', 'could', 'not', 'see', 'how', 'things'], ['were', 'kept', 'going'], [], ['then', 'again', 'about', 'the', 'time', 'machine', 'something', 'i', 'knew', 'not', 'what'], ['had', 'taken', 'it', 'into', 'the', 'hollow', 'pedestal', 'of', 'the', 'white', 'sphinx', 'why', 'for'], ['the', 'life', 'of', 'me', 'i', 'could', 'not', 'imagine', 'those', 'waterless', 'wells', 'too'], ['those', 'flickering', 'pillars', 'i', 'felt', 'i', 'lacked', 'a', 'clue', 'i', 'felt', 'how', 'shall'], ['i', 'put', 'it', 'suppose', 'you', 'found', 'an', 'inscription', 'with', 'sentences', 'here', 'and'], ['there', 'in', 'excellent', 'plain', 'english', 'and', 'interpolated', 'therewith', 'others'], ['made', 'up', 'of', 'words', 'of', 'letters', 'even', 'absolutely', 'unknown', 'to', 'you', 'well'], ['on', 'the', 'third', 'day', 'of', 'my', 'visit', 'that', 'was', 'how', 'the', 'world', 'of', 'eight'], ['hundred', 'and', 'two', 'thousand', 'seven', 'hundred', 'and', 'one', 'presented', 'itself', 'to'], ['me'], [], ['that', 'day', 'too', 'i', 'made', 'a', 'friend', 'of', 'a', 'sort', 'it', 'happened', 'that', 'as', 'i'], ['was', 'watching', 'some', 'of', 'the', 'little', 'people', 'bathing', 'in', 'a', 'shallow', 'one', 'of'], ['them', 'was', 'seized', 'with', 'cramp', 'and', 'began', 'drifting', 'downstream', 'the', 'main'], ['current', 'ran', 'rather', 'swiftly', 'but', 'not', 'too', 'strongly', 'for', 'even', 'a', 'moderate'], ['swimmer', 'it', 'will', 'give', 'you', 'an', 'idea', 'therefore', 'of', 'the', 'strange'], ['deficiency', 'in', 'these', 'creatures', 'when', 'i', 'tell', 'you', 'that', 'none', 'made', 'the'], ['slightest', 'attempt', 'to', 'rescue', 'the', 'weakly', 'crying', 'little', 'thing', 'which'], ['was', 'drowning', 'before', 'their', 'eyes', 'when', 'i', 'realized', 'this', 'i', 'hurriedly'], ['slipped', 'off', 'my', 'clothes', 'and', 'wading', 'in', 'at', 'a', 'point', 'lower', 'down', 'i'], ['caught', 'the', 'poor', 'mite', 'and', 'drew', 'her', 'safe', 'to', 'land', 'a', 'little', 'rubbing', 'of'], ['the', 'limbs', 'soon', 'brought', 'her', 'round', 'and', 'i', 'had', 'the', 'satisfaction', 'of'], ['seeing', 'she', 'was', 'all', 'right', 'before', 'i', 'left', 'her', 'i', 'had', 'got', 'to', 'such', 'a', 'low'], ['estimate', 'of', 'her', 'kind', 'that', 'i', 'did', 'not', 'expect', 'any', 'gratitude', 'from', 'her'], ['in', 'that', 'however', 'i', 'was', 'wrong'], [], ['this', 'happened', 'in', 'the', 'morning', 'in', 'the', 'afternoon', 'i', 'met', 'my', 'little'], ['woman', 'as', 'i', 'believe', 'it', 'was', 'as', 'i', 'was', 'returning', 'towards', 'my', 'centre'], ['from', 'an', 'exploration', 'and', 'she', 'received', 'me', 'with', 'cries', 'of', 'delight', 'and'], ['presented', 'me', 'with', 'a', 'big', 'garland', 'of', 'flowers', 'evidently', 'made', 'for', 'me'], ['and', 'me', 'alone', 'the', 'thing', 'took', 'my', 'imagination', 'very', 'possibly', 'i', 'had'], ['been', 'feeling', 'desolate', 'at', 'any', 'rate', 'i', 'did', 'my', 'best', 'to', 'display', 'my'], ['appreciation', 'of', 'the', 'gift', 'we', 'were', 'soon', 'seated', 'together', 'in', 'a', 'little'], ['stone', 'arbour', 'engaged', 'in', 'conversation', 'chiefly', 'of', 'smiles', 'the'], ['creature', 's', 'friendliness', 'affected', 'me', 'exactly', 'as', 'a', 'child', 's', 'might', 'have'], ['done', 'we', 'passed', 'each', 'other', 'flowers', 'and', 'she', 'kissed', 'my', 'hands', 'i', 'did'], ['the', 'same', 'to', 'hers', 'then', 'i', 'tried', 'talk', 'and', 'found', 'that', 'her', 'name', 'was'], ['weena', 'which', 'though', 'i', 'don', 't', 'know', 'what', 'it', 'meant', 'somehow', 'seemed'], ['appropriate', 'enough', 'that', 'was', 'the', 'beginning', 'of', 'a', 'queer', 'friendship'], ['which', 'lasted', 'a', 'week', 'and', 'ended', 'as', 'i', 'will', 'tell', 'you'], [], ['she', 'was', 'exactly', 'like', 'a', 'child', 'she', 'wanted', 'to', 'be', 'with', 'me', 'always', 'she'], ['tried', 'to', 'follow', 'me', 'everywhere', 'and', 'on', 'my', 'next', 'journey', 'out', 'and', 'about'], ['it', 'went', 'to', 'my', 'heart', 'to', 'tire', 'her', 'down', 'and', 'leave', 'her', 'at', 'last'], ['exhausted', 'and', 'calling', 'after', 'me', 'rather', 'plaintively', 'but', 'the', 'problems'], ['of', 'the', 'world', 'had', 'to', 'be', 'mastered', 'i', 'had', 'not', 'i', 'said', 'to', 'myself', 'come'], ['into', 'the', 'future', 'to', 'carry', 'on', 'a', 'miniature', 'flirtation', 'yet', 'her', 'distress'], ['when', 'i', 'left', 'her', 'was', 'very', 'great', 'her', 'expostulations', 'at', 'the', 'parting'], ['were', 'sometimes', 'frantic', 'and', 'i', 'think', 'altogether', 'i', 'had', 'as', 'much'], ['trouble', 'as', 'comfort', 'from', 'her', 'devotion', 'nevertheless', 'she', 'was', 'somehow'], ['a', 'very', 'great', 'comfort', 'i', 'thought', 'it', 'was', 'mere', 'childish', 'affection', 'that'], ['made', 'her', 'cling', 'to', 'me', 'until', 'it', 'was', 'too', 'late', 'i', 'did', 'not', 'clearly', 'know'], ['what', 'i', 'had', 'inflicted', 'upon', 'her', 'when', 'i', 'left', 'her', 'nor', 'until', 'it', 'was', 'too'], ['late', 'did', 'i', 'clearly', 'understand', 'what', 'she', 'was', 'to', 'me', 'for', 'by', 'merely'], ['seeming', 'fond', 'of', 'me', 'and', 'showing', 'in', 'her', 'weak', 'futile', 'way', 'that', 'she'], ['cared', 'for', 'me', 'the', 'little', 'doll', 'of', 'a', 'creature', 'presently', 'gave', 'my', 'return'], ['to', 'the', 'neighbourhood', 'of', 'the', 'white', 'sphinx', 'almost', 'the', 'feeling', 'of'], ['coming', 'home', 'and', 'i', 'would', 'watch', 'for', 'her', 'tiny', 'figure', 'of', 'white', 'and', 'gold'], ['so', 'soon', 'as', 'i', 'came', 'over', 'the', 'hill'], [], ['it', 'was', 'from', 'her', 'too', 'that', 'i', 'learned', 'that', 'fear', 'had', 'not', 'yet', 'left', 'the'], ['world', 'she', 'was', 'fearless', 'enough', 'in', 'the', 'daylight', 'and', 'she', 'had', 'the'], ['oddest', 'confidence', 'in', 'me', 'for', 'once', 'in', 'a', 'foolish', 'moment', 'i', 'made'], ['threatening', 'grimaces', 'at', 'her', 'and', 'she', 'simply', 'laughed', 'at', 'them', 'but', 'she'], ['dreaded', 'the', 'dark', 'dreaded', 'shadows', 'dreaded', 'black', 'things', 'darkness'], ['to', 'her', 'was', 'the', 'one', 'thing', 'dreadful', 'it', 'was', 'a', 'singularly', 'passionate'], ['emotion', 'and', 'it', 'set', 'me', 'thinking', 'and', 'observing', 'i', 'discovered', 'then'], ['among', 'other', 'things', 'that', 'these', 'little', 'people', 'gathered', 'into', 'the', 'great'], ['houses', 'after', 'dark', 'and', 'slept', 'in', 'droves', 'to', 'enter', 'upon', 'them', 'without', 'a'], ['light', 'was', 'to', 'put', 'them', 'into', 'a', 'tumult', 'of', 'apprehension', 'i', 'never', 'found'], ['one', 'out', 'of', 'doors', 'or', 'one', 'sleeping', 'alone', 'within', 'doors', 'after', 'dark'], ['yet', 'i', 'was', 'still', 'such', 'a', 'blockhead', 'that', 'i', 'missed', 'the', 'lesson', 'of', 'that'], ['fear', 'and', 'in', 'spite', 'of', 'weena', 's', 'distress', 'i', 'insisted', 'upon', 'sleeping', 'away'], ['from', 'these', 'slumbering', 'multitudes'], [], ['it', 'troubled', 'her', 'greatly', 'but', 'in', 'the', 'end', 'her', 'odd', 'affection', 'for', 'me'], ['triumphed', 'and', 'for', 'five', 'of', 'the', 'nights', 'of', 'our', 'acquaintance', 'including'], ['the', 'last', 'night', 'of', 'all', 'she', 'slept', 'with', 'her', 'head', 'pillowed', 'on', 'my', 'arm'], ['but', 'my', 'story', 'slips', 'away', 'from', 'me', 'as', 'i', 'speak', 'of', 'her', 'it', 'must', 'have', 'been'], ['the', 'night', 'before', 'her', 'rescue', 'that', 'i', 'was', 'awakened', 'about', 'dawn', 'i', 'had'], ['been', 'restless', 'dreaming', 'most', 'disagreeably', 'that', 'i', 'was', 'drowned', 'and'], ['that', 'sea', 'anemones', 'were', 'feeling', 'over', 'my', 'face', 'with', 'their', 'soft', 'palps'], ['i', 'woke', 'with', 'a', 'start', 'and', 'with', 'an', 'odd', 'fancy', 'that', 'some', 'greyish', 'animal'], ['had', 'just', 'rushed', 'out', 'of', 'the', 'chamber', 'i', 'tried', 'to', 'get', 'to', 'sleep', 'again'], ['but', 'i', 'felt', 'restless', 'and', 'uncomfortable', 'it', 'was', 'that', 'dim', 'grey', 'hour'], ['when', 'things', 'are', 'just', 'creeping', 'out', 'of', 'darkness', 'when', 'everything', 'is'], ['colourless', 'and', 'clear', 'cut', 'and', 'yet', 'unreal', 'i', 'got', 'up', 'and', 'went', 'down'], ['into', 'the', 'great', 'hall', 'and', 'so', 'out', 'upon', 'the', 'flagstones', 'in', 'front', 'of', 'the'], ['palace', 'i', 'thought', 'i', 'would', 'make', 'a', 'virtue', 'of', 'necessity', 'and', 'see', 'the'], ['sunrise'], [], ['the', 'moon', 'was', 'setting', 'and', 'the', 'dying', 'moonlight', 'and', 'the', 'first', 'pallor'], ['of', 'dawn', 'were', 'mingled', 'in', 'a', 'ghastly', 'half', 'light', 'the', 'bushes', 'were', 'inky'], ['black', 'the', 'ground', 'a', 'sombre', 'grey', 'the', 'sky', 'colourless', 'and', 'cheerless'], ['and', 'up', 'the', 'hill', 'i', 'thought', 'i', 'could', 'see', 'ghosts', 'there', 'several', 'times'], ['as', 'i', 'scanned', 'the', 'slope', 'i', 'saw', 'white', 'figures', 'twice', 'i', 'fancied', 'i', 'saw'], ['a', 'solitary', 'white', 'ape', 'like', 'creature', 'running', 'rather', 'quickly', 'up', 'the'], ['hill', 'and', 'once', 'near', 'the', 'ruins', 'i', 'saw', 'a', 'leash', 'of', 'them', 'carrying', 'some'], ['dark', 'body', 'they', 'moved', 'hastily', 'i', 'did', 'not', 'see', 'what', 'became', 'of', 'them'], ['it', 'seemed', 'that', 'they', 'vanished', 'among', 'the', 'bushes', 'the', 'dawn', 'was', 'still'], ['indistinct', 'you', 'must', 'understand', 'i', 'was', 'feeling', 'that', 'chill'], ['uncertain', 'early', 'morning', 'feeling', 'you', 'may', 'have', 'known', 'i', 'doubted'], ['my', 'eyes'], [], ['as', 'the', 'eastern', 'sky', 'grew', 'brighter', 'and', 'the', 'light', 'of', 'the', 'day', 'came', 'on'], ['and', 'its', 'vivid', 'colouring', 'returned', 'upon', 'the', 'world', 'once', 'more', 'i', 'scanned'], ['the', 'view', 'keenly', 'but', 'i', 'saw', 'no', 'vestige', 'of', 'my', 'white', 'figures', 'they', 'were'], ['mere', 'creatures', 'of', 'the', 'half', 'light', 'they', 'must', 'have', 'been', 'ghosts', 'i'], ['said', 'i', 'wonder', 'whence', 'they', 'dated', 'for', 'a', 'queer', 'notion', 'of', 'grant'], ['allen', 's', 'came', 'into', 'my', 'head', 'and', 'amused', 'me', 'if', 'each', 'generation', 'die', 'and'], ['leave', 'ghosts', 'he', 'argued', 'the', 'world', 'at', 'last', 'will', 'get', 'overcrowded', 'with'], ['them', 'on', 'that', 'theory', 'they', 'would', 'have', 'grown', 'innumerable', 'some', 'eight'], ['hundred', 'thousand', 'years', 'hence', 'and', 'it', 'was', 'no', 'great', 'wonder', 'to', 'see', 'four'], ['at', 'once', 'but', 'the', 'jest', 'was', 'unsatisfying', 'and', 'i', 'was', 'thinking', 'of', 'these'], ['figures', 'all', 'the', 'morning', 'until', 'weena', 's', 'rescue', 'drove', 'them', 'out', 'of', 'my'], ['head', 'i', 'associated', 'them', 'in', 'some', 'indefinite', 'way', 'with', 'the', 'white', 'animal'], ['i', 'had', 'startled', 'in', 'my', 'first', 'passionate', 'search', 'for', 'the', 'time', 'machine'], ['but', 'weena', 'was', 'a', 'pleasant', 'substitute', 'yet', 'all', 'the', 'same', 'they', 'were'], ['soon', 'destined', 'to', 'take', 'far', 'deadlier', 'possession', 'of', 'my', 'mind'], [], ['i', 'think', 'i', 'have', 'said', 'how', 'much', 'hotter', 'than', 'our', 'own', 'was', 'the', 'weather'], ['of', 'this', 'golden', 'age', 'i', 'cannot', 'account', 'for', 'it', 'it', 'may', 'be', 'that', 'the', 'sun'], ['was', 'hotter', 'or', 'the', 'earth', 'nearer', 'the', 'sun', 'it', 'is', 'usual', 'to', 'assume', 'that'], ['the', 'sun', 'will', 'go', 'on', 'cooling', 'steadily', 'in', 'the', 'future', 'but', 'people'], ['unfamiliar', 'with', 'such', 'speculations', 'as', 'those', 'of', 'the', 'younger', 'darwin'], ['forget', 'that', 'the', 'planets', 'must', 'ultimately', 'fall', 'back', 'one', 'by', 'one', 'into'], ['the', 'parent', 'body', 'as', 'these', 'catastrophes', 'occur', 'the', 'sun', 'will', 'blaze'], ['with', 'renewed', 'energy', 'and', 'it', 'may', 'be', 'that', 'some', 'inner', 'planet', 'had'], ['suffered', 'this', 'fate', 'whatever', 'the', 'reason', 'the', 'fact', 'remains', 'that', 'the'], ['sun', 'was', 'very', 'much', 'hotter', 'than', 'we', 'know', 'it'], [], ['well', 'one', 'very', 'hot', 'morning', 'my', 'fourth', 'i', 'think', 'as', 'i', 'was', 'seeking'], ['shelter', 'from', 'the', 'heat', 'and', 'glare', 'in', 'a', 'colossal', 'ruin', 'near', 'the', 'great'], ['house', 'where', 'i', 'slept', 'and', 'fed', 'there', 'happened', 'this', 'strange', 'thing'], ['clambering', 'among', 'these', 'heaps', 'of', 'masonry', 'i', 'found', 'a', 'narrow', 'gallery'], ['whose', 'end', 'and', 'side', 'windows', 'were', 'blocked', 'by', 'fallen', 'masses', 'of', 'stone'], ['by', 'contrast', 'with', 'the', 'brilliancy', 'outside', 'it', 'seemed', 'at', 'first'], ['impenetrably', 'dark', 'to', 'me', 'i', 'entered', 'it', 'groping', 'for', 'the', 'change', 'from'], ['light', 'to', 'blackness', 'made', 'spots', 'of', 'colour', 'swim', 'before', 'me', 'suddenly', 'i'], ['halted', 'spellbound', 'a', 'pair', 'of', 'eyes', 'luminous', 'by', 'reflection', 'against'], ['the', 'daylight', 'without', 'was', 'watching', 'me', 'out', 'of', 'the', 'darkness'], [], ['the', 'old', 'instinctive', 'dread', 'of', 'wild', 'beasts', 'came', 'upon', 'me', 'i', 'clenched'], ['my', 'hands', 'and', 'steadfastly', 'looked', 'into', 'the', 'glaring', 'eyeballs', 'i', 'was'], ['afraid', 'to', 'turn', 'then', 'the', 'thought', 'of', 'the', 'absolute', 'security', 'in', 'which'], ['humanity', 'appeared', 'to', 'be', 'living', 'came', 'to', 'my', 'mind', 'and', 'then', 'i'], ['remembered', 'that', 'strange', 'terror', 'of', 'the', 'dark', 'overcoming', 'my', 'fear', 'to'], ['some', 'extent', 'i', 'advanced', 'a', 'step', 'and', 'spoke', 'i', 'will', 'admit', 'that', 'my'], ['voice', 'was', 'harsh', 'and', 'ill', 'controlled', 'i', 'put', 'out', 'my', 'hand', 'and', 'touched'], ['something', 'soft', 'at', 'once', 'the', 'eyes', 'darted', 'sideways', 'and', 'something'], ['white', 'ran', 'past', 'me', 'i', 'turned', 'with', 'my', 'heart', 'in', 'my', 'mouth', 'and', 'saw', 'a'], ['queer', 'little', 'ape', 'like', 'figure', 'its', 'head', 'held', 'down', 'in', 'a', 'peculiar'], ['manner', 'running', 'across', 'the', 'sunlit', 'space', 'behind', 'me', 'it', 'blundered'], ['against', 'a', 'block', 'of', 'granite', 'staggered', 'aside', 'and', 'in', 'a', 'moment', 'was'], ['hidden', 'in', 'a', 'black', 'shadow', 'beneath', 'another', 'pile', 'of', 'ruined', 'masonry'], [], ['my', 'impression', 'of', 'it', 'is', 'of', 'course', 'imperfect', 'but', 'i', 'know', 'it', 'was', 'a'], ['dull', 'white', 'and', 'had', 'strange', 'large', 'greyish', 'red', 'eyes', 'also', 'that', 'there'], ['was', 'flaxen', 'hair', 'on', 'its', 'head', 'and', 'down', 'its', 'back', 'but', 'as', 'i', 'say', 'it'], ['went', 'too', 'fast', 'for', 'me', 'to', 'see', 'distinctly', 'i', 'cannot', 'even', 'say', 'whether', 'it'], ['ran', 'on', 'all', 'fours', 'or', 'only', 'with', 'its', 'forearms', 'held', 'very', 'low', 'after', 'an'], ['instant', 's', 'pause', 'i', 'followed', 'it', 'into', 'the', 'second', 'heap', 'of', 'ruins', 'i', 'could'], ['not', 'find', 'it', 'at', 'first', 'but', 'after', 'a', 'time', 'in', 'the', 'profound', 'obscurity', 'i'], ['came', 'upon', 'one', 'of', 'those', 'round', 'well', 'like', 'openings', 'of', 'which', 'i', 'have', 'told'], ['you', 'half', 'closed', 'by', 'a', 'fallen', 'pillar', 'a', 'sudden', 'thought', 'came', 'to', 'me'], ['could', 'this', 'thing', 'have', 'vanished', 'down', 'the', 'shaft', 'i', 'lit', 'a', 'match', 'and'], ['looking', 'down', 'i', 'saw', 'a', 'small', 'white', 'moving', 'creature', 'with', 'large'], ['bright', 'eyes', 'which', 'regarded', 'me', 'steadfastly', 'as', 'it', 'retreated', 'it', 'made'], ['me', 'shudder', 'it', 'was', 'so', 'like', 'a', 'human', 'spider', 'it', 'was', 'clambering', 'down'], ['the', 'wall', 'and', 'now', 'i', 'saw', 'for', 'the', 'first', 'time', 'a', 'number', 'of', 'metal', 'foot'], ['and', 'hand', 'rests', 'forming', 'a', 'kind', 'of', 'ladder', 'down', 'the', 'shaft', 'then', 'the'], ['light', 'burned', 'my', 'fingers', 'and', 'fell', 'out', 'of', 'my', 'hand', 'going', 'out', 'as', 'it'], ['dropped', 'and', 'when', 'i', 'had', 'lit', 'another', 'the', 'little', 'monster', 'had'], ['disappeared'], [], ['i', 'do', 'not', 'know', 'how', 'long', 'i', 'sat', 'peering', 'down', 'that', 'well', 'it', 'was', 'not', 'for'], ['some', 'time', 'that', 'i', 'could', 'succeed', 'in', 'persuading', 'myself', 'that', 'the', 'thing', 'i'], ['had', 'seen', 'was', 'human', 'but', 'gradually', 'the', 'truth', 'dawned', 'on', 'me', 'that'], ['man', 'had', 'not', 'remained', 'one', 'species', 'but', 'had', 'differentiated', 'into', 'two'], ['distinct', 'animals', 'that', 'my', 'graceful', 'children', 'of', 'the', 'upper', 'world', 'were'], ['not', 'the', 'sole', 'descendants', 'of', 'our', 'generation', 'but', 'that', 'this', 'bleached'], ['obscene', 'nocturnal', 'thing', 'which', 'had', 'flashed', 'before', 'me', 'was', 'also', 'heir'], ['to', 'all', 'the', 'ages'], [], ['i', 'thought', 'of', 'the', 'flickering', 'pillars', 'and', 'of', 'my', 'theory', 'of', 'an'], ['underground', 'ventilation', 'i', 'began', 'to', 'suspect', 'their', 'true', 'import', 'and'], ['what', 'i', 'wondered', 'was', 'this', 'lemur', 'doing', 'in', 'my', 'scheme', 'of', 'a', 'perfectly'], ['balanced', 'organization', 'how', 'was', 'it', 'related', 'to', 'the', 'indolent', 'serenity'], ['of', 'the', 'beautiful', 'upper', 'worlders', 'and', 'what', 'was', 'hidden', 'down', 'there'], ['at', 'the', 'foot', 'of', 'that', 'shaft', 'i', 'sat', 'upon', 'the', 'edge', 'of', 'the', 'well', 'telling'], ['myself', 'that', 'at', 'any', 'rate', 'there', 'was', 'nothing', 'to', 'fear', 'and', 'that', 'there'], ['i', 'must', 'descend', 'for', 'the', 'solution', 'of', 'my', 'difficulties', 'and', 'withal', 'i'], ['was', 'absolutely', 'afraid', 'to', 'go', 'as', 'i', 'hesitated', 'two', 'of', 'the', 'beautiful'], ['upper', 'world', 'people', 'came', 'running', 'in', 'their', 'amorous', 'sport', 'across', 'the'], ['daylight', 'in', 'the', 'shadow', 'the', 'male', 'pursued', 'the', 'female', 'flinging'], ['flowers', 'at', 'her', 'as', 'he', 'ran'], [], ['they', 'seemed', 'distressed', 'to', 'find', 'me', 'my', 'arm', 'against', 'the', 'overturned'], ['pillar', 'peering', 'down', 'the', 'well', 'apparently', 'it', 'was', 'considered', 'bad', 'form'], ['to', 'remark', 'these', 'apertures', 'for', 'when', 'i', 'pointed', 'to', 'this', 'one', 'and', 'tried'], ['to', 'frame', 'a', 'question', 'about', 'it', 'in', 'their', 'tongue', 'they', 'were', 'still', 'more'], ['visibly', 'distressed', 'and', 'turned', 'away', 'but', 'they', 'were', 'interested', 'by', 'my'], ['matches', 'and', 'i', 'struck', 'some', 'to', 'amuse', 'them', 'i', 'tried', 'them', 'again', 'about'], ['the', 'well', 'and', 'again', 'i', 'failed', 'so', 'presently', 'i', 'left', 'them', 'meaning', 'to'], ['go', 'back', 'to', 'weena', 'and', 'see', 'what', 'i', 'could', 'get', 'from', 'her', 'but', 'my', 'mind', 'was'], ['already', 'in', 'revolution', 'my', 'guesses', 'and', 'impressions', 'were', 'slipping', 'and'], ['sliding', 'to', 'a', 'new', 'adjustment', 'i', 'had', 'now', 'a', 'clue', 'to', 'the', 'import', 'of', 'these'], ['wells', 'to', 'the', 'ventilating', 'towers', 'to', 'the', 'mystery', 'of', 'the', 'ghosts', 'to'], ['say', 'nothing', 'of', 'a', 'hint', 'at', 'the', 'meaning', 'of', 'the', 'bronze', 'gates', 'and', 'the'], ['fate', 'of', 'the', 'time', 'machine', 'and', 'very', 'vaguely', 'there', 'came', 'a', 'suggestion'], ['towards', 'the', 'solution', 'of', 'the', 'economic', 'problem', 'that', 'had', 'puzzled', 'me'], [], ['here', 'was', 'the', 'new', 'view', 'plainly', 'this', 'second', 'species', 'of', 'man', 'was'], ['subterranean', 'there', 'were', 'three', 'circumstances', 'in', 'particular', 'which'], ['made', 'me', 'think', 'that', 'its', 'rare', 'emergence', 'above', 'ground', 'was', 'the', 'outcome'], ['of', 'a', 'long', 'continued', 'underground', 'habit', 'in', 'the', 'first', 'place', 'there', 'was'], ['the', 'bleached', 'look', 'common', 'in', 'most', 'animals', 'that', 'live', 'largely', 'in', 'the'], ['dark', 'the', 'white', 'fish', 'of', 'the', 'kentucky', 'caves', 'for', 'instance', 'then'], ['those', 'large', 'eyes', 'with', 'that', 'capacity', 'for', 'reflecting', 'light', 'are'], ['common', 'features', 'of', 'nocturnal', 'things', 'witness', 'the', 'owl', 'and', 'the', 'cat'], ['and', 'last', 'of', 'all', 'that', 'evident', 'confusion', 'in', 'the', 'sunshine', 'that', 'hasty'], ['yet', 'fumbling', 'awkward', 'flight', 'towards', 'dark', 'shadow', 'and', 'that', 'peculiar'], ['carriage', 'of', 'the', 'head', 'while', 'in', 'the', 'light', 'all', 'reinforced', 'the', 'theory'], ['of', 'an', 'extreme', 'sensitiveness', 'of', 'the', 'retina'], [], ['beneath', 'my', 'feet', 'then', 'the', 'earth', 'must', 'be', 'tunnelled', 'enormously', 'and'], ['these', 'tunnellings', 'were', 'the', 'habitat', 'of', 'the', 'new', 'race', 'the', 'presence', 'of'], ['ventilating', 'shafts', 'and', 'wells', 'along', 'the', 'hill', 'slopes', 'everywhere', 'in'], ['fact', 'except', 'along', 'the', 'river', 'valley', 'showed', 'how', 'universal', 'were', 'its'], ['ramifications', 'what', 'so', 'natural', 'then', 'as', 'to', 'assume', 'that', 'it', 'was', 'in'], ['this', 'artificial', 'underworld', 'that', 'such', 'work', 'as', 'was', 'necessary', 'to', 'the'], ['comfort', 'of', 'the', 'daylight', 'race', 'was', 'done', 'the', 'notion', 'was', 'so', 'plausible'], ['that', 'i', 'at', 'once', 'accepted', 'it', 'and', 'went', 'on', 'to', 'assume', 'the', 'how', 'of', 'this'], ['splitting', 'of', 'the', 'human', 'species', 'i', 'dare', 'say', 'you', 'will', 'anticipate', 'the'], ['shape', 'of', 'my', 'theory', 'though', 'for', 'myself', 'i', 'very', 'soon', 'felt', 'that', 'it'], ['fell', 'far', 'short', 'of', 'the', 'truth'], [], ['at', 'first', 'proceeding', 'from', 'the', 'problems', 'of', 'our', 'own', 'age', 'it', 'seemed'], ['clear', 'as', 'daylight', 'to', 'me', 'that', 'the', 'gradual', 'widening', 'of', 'the', 'present'], ['merely', 'temporary', 'and', 'social', 'difference', 'between', 'the', 'capitalist', 'and'], ['the', 'labourer', 'was', 'the', 'key', 'to', 'the', 'whole', 'position', 'no', 'doubt', 'it', 'will'], ['seem', 'grotesque', 'enough', 'to', 'you', 'and', 'wildly', 'incredible', 'and', 'yet', 'even'], ['now', 'there', 'are', 'existing', 'circumstances', 'to', 'point', 'that', 'way', 'there', 'is'], ['a', 'tendency', 'to', 'utilize', 'underground', 'space', 'for', 'the', 'less', 'ornamental'], ['purposes', 'of', 'civilization', 'there', 'is', 'the', 'metropolitan', 'railway', 'in'], ['london', 'for', 'instance', 'there', 'are', 'new', 'electric', 'railways', 'there', 'are'], ['subways', 'there', 'are', 'underground', 'workrooms', 'and', 'restaurants', 'and', 'they'], ['increase', 'and', 'multiply', 'evidently', 'i', 'thought', 'this', 'tendency', 'had'], ['increased', 'till', 'industry', 'had', 'gradually', 'lost', 'its', 'birthright', 'in', 'the'], ['sky', 'i', 'mean', 'that', 'it', 'had', 'gone', 'deeper', 'and', 'deeper', 'into', 'larger', 'and', 'ever'], ['larger', 'underground', 'factories', 'spending', 'a', 'still', 'increasing', 'amount', 'of'], ['its', 'time', 'therein', 'till', 'in', 'the', 'end', 'even', 'now', 'does', 'not', 'an', 'east', 'end'], ['worker', 'live', 'in', 'such', 'artificial', 'conditions', 'as', 'practically', 'to', 'be', 'cut'], ['off', 'from', 'the', 'natural', 'surface', 'of', 'the', 'earth'], [], ['again', 'the', 'exclusive', 'tendency', 'of', 'richer', 'people', 'due', 'no', 'doubt', 'to'], ['the', 'increasing', 'refinement', 'of', 'their', 'education', 'and', 'the', 'widening', 'gulf'], ['between', 'them', 'and', 'the', 'rude', 'violence', 'of', 'the', 'poor', 'is', 'already', 'leading'], ['to', 'the', 'closing', 'in', 'their', 'interest', 'of', 'considerable', 'portions', 'of', 'the'], ['surface', 'of', 'the', 'land', 'about', 'london', 'for', 'instance', 'perhaps', 'half', 'the'], ['prettier', 'country', 'is', 'shut', 'in', 'against', 'intrusion', 'and', 'this', 'same'], ['widening', 'gulf', 'which', 'is', 'due', 'to', 'the', 'length', 'and', 'expense', 'of', 'the', 'higher'], ['educational', 'process', 'and', 'the', 'increased', 'facilities', 'for', 'and', 'temptations'], ['towards', 'refined', 'habits', 'on', 'the', 'part', 'of', 'the', 'rich', 'will', 'make', 'that'], ['exchange', 'between', 'class', 'and', 'class', 'that', 'promotion', 'by', 'intermarriage'], ['which', 'at', 'present', 'retards', 'the', 'splitting', 'of', 'our', 'species', 'along', 'lines'], ['of', 'social', 'stratification', 'less', 'and', 'less', 'frequent', 'so', 'in', 'the', 'end'], ['above', 'ground', 'you', 'must', 'have', 'the', 'haves', 'pursuing', 'pleasure', 'and', 'comfort'], ['and', 'beauty', 'and', 'below', 'ground', 'the', 'have', 'nots', 'the', 'workers', 'getting'], ['continually', 'adapted', 'to', 'the', 'conditions', 'of', 'their', 'labour', 'once', 'they'], ['were', 'there', 'they', 'would', 'no', 'doubt', 'have', 'to', 'pay', 'rent', 'and', 'not', 'a', 'little'], ['of', 'it', 'for', 'the', 'ventilation', 'of', 'their', 'caverns', 'and', 'if', 'they', 'refused'], ['they', 'would', 'starve', 'or', 'be', 'suffocated', 'for', 'arrears', 'such', 'of', 'them', 'as', 'were'], ['so', 'constituted', 'as', 'to', 'be', 'miserable', 'and', 'rebellious', 'would', 'die', 'and', 'in'], ['the', 'end', 'the', 'balance', 'being', 'permanent', 'the', 'survivors', 'would', 'become', 'as'], ['well', 'adapted', 'to', 'the', 'conditions', 'of', 'underground', 'life', 'and', 'as', 'happy', 'in'], ['their', 'way', 'as', 'the', 'upper', 'world', 'people', 'were', 'to', 'theirs', 'as', 'it', 'seemed', 'to'], ['me', 'the', 'refined', 'beauty', 'and', 'the', 'etiolated', 'pallor', 'followed', 'naturally'], ['enough'], [], ['the', 'great', 'triumph', 'of', 'humanity', 'i', 'had', 'dreamed', 'of', 'took', 'a', 'different'], ['shape', 'in', 'my', 'mind', 'it', 'had', 'been', 'no', 'such', 'triumph', 'of', 'moral', 'education', 'and'], ['general', 'co', 'operation', 'as', 'i', 'had', 'imagined', 'instead', 'i', 'saw', 'a', 'real'], ['aristocracy', 'armed', 'with', 'a', 'perfected', 'science', 'and', 'working', 'to', 'a', 'logical'], ['conclusion', 'the', 'industrial', 'system', 'of', 'to', 'day', 'its', 'triumph', 'had', 'not', 'been'], ['simply', 'a', 'triumph', 'over', 'nature', 'but', 'a', 'triumph', 'over', 'nature', 'and', 'the'], ['fellow', 'man', 'this', 'i', 'must', 'warn', 'you', 'was', 'my', 'theory', 'at', 'the', 'time', 'i', 'had'], ['no', 'convenient', 'cicerone', 'in', 'the', 'pattern', 'of', 'the', 'utopian', 'books', 'my'], ['explanation', 'may', 'be', 'absolutely', 'wrong', 'i', 'still', 'think', 'it', 'is', 'the'], ['most', 'plausible', 'one', 'but', 'even', 'on', 'this', 'supposition', 'the', 'balanced'], ['civilization', 'that', 'was', 'at', 'last', 'attained', 'must', 'have', 'long', 'since', 'passed'], ['its', 'zenith', 'and', 'was', 'now', 'far', 'fallen', 'into', 'decay', 'the', 'too', 'perfect'], ['security', 'of', 'the', 'upper', 'worlders', 'had', 'led', 'them', 'to', 'a', 'slow', 'movement', 'of'], ['degeneration', 'to', 'a', 'general', 'dwindling', 'in', 'size', 'strength', 'and'], ['intelligence', 'that', 'i', 'could', 'see', 'clearly', 'enough', 'already', 'what', 'had'], ['happened', 'to', 'the', 'under', 'grounders', 'i', 'did', 'not', 'yet', 'suspect', 'but', 'from', 'what'], ['i', 'had', 'seen', 'of', 'the', 'morlocks', 'that', 'by', 'the', 'by', 'was', 'the', 'name', 'by', 'which'], ['these', 'creatures', 'were', 'called', 'i', 'could', 'imagine', 'that', 'the', 'modification'], ['of', 'the', 'human', 'type', 'was', 'even', 'far', 'more', 'profound', 'than', 'among', 'the', 'eloi'], ['the', 'beautiful', 'race', 'that', 'i', 'already', 'knew'], [], ['then', 'came', 'troublesome', 'doubts', 'why', 'had', 'the', 'morlocks', 'taken', 'my', 'time'], ['machine', 'for', 'i', 'felt', 'sure', 'it', 'was', 'they', 'who', 'had', 'taken', 'it', 'why', 'too', 'if'], ['the', 'eloi', 'were', 'masters', 'could', 'they', 'not', 'restore', 'the', 'machine', 'to', 'me', 'and'], ['why', 'were', 'they', 'so', 'terribly', 'afraid', 'of', 'the', 'dark', 'i', 'proceeded', 'as', 'i', 'have'], ['said', 'to', 'question', 'weena', 'about', 'this', 'under', 'world', 'but', 'here', 'again', 'i', 'was'], ['disappointed', 'at', 'first', 'she', 'would', 'not', 'understand', 'my', 'questions', 'and'], ['presently', 'she', 'refused', 'to', 'answer', 'them', 'she', 'shivered', 'as', 'though', 'the'], ['topic', 'was', 'unendurable', 'and', 'when', 'i', 'pressed', 'her', 'perhaps', 'a', 'little'], ['harshly', 'she', 'burst', 'into', 'tears', 'they', 'were', 'the', 'only', 'tears', 'except', 'my'], ['own', 'i', 'ever', 'saw', 'in', 'that', 'golden', 'age', 'when', 'i', 'saw', 'them', 'i', 'ceased'], ['abruptly', 'to', 'trouble', 'about', 'the', 'morlocks', 'and', 'was', 'only', 'concerned', 'in'], ['banishing', 'these', 'signs', 'of', 'the', 'human', 'inheritance', 'from', 'weena', 's', 'eyes'], ['and', 'very', 'soon', 'she', 'was', 'smiling', 'and', 'clapping', 'her', 'hands', 'while', 'i'], ['solemnly', 'burned', 'a', 'match'], [], [], [], [], ['vi'], [], [], ['it', 'may', 'seem', 'odd', 'to', 'you', 'but', 'it', 'was', 'two', 'days', 'before', 'i', 'could', 'follow'], ['up', 'the', 'new', 'found', 'clue', 'in', 'what', 'was', 'manifestly', 'the', 'proper', 'way', 'i', 'felt'], ['a', 'peculiar', 'shrinking', 'from', 'those', 'pallid', 'bodies', 'they', 'were', 'just', 'the'], ['half', 'bleached', 'colour', 'of', 'the', 'worms', 'and', 'things', 'one', 'sees', 'preserved', 'in'], ['spirit', 'in', 'a', 'zoological', 'museum', 'and', 'they', 'were', 'filthily', 'cold', 'to', 'the'], ['touch', 'probably', 'my', 'shrinking', 'was', 'largely', 'due', 'to', 'the', 'sympathetic'], ['influence', 'of', 'the', 'eloi', 'whose', 'disgust', 'of', 'the', 'morlocks', 'i', 'now', 'began'], ['to', 'appreciate'], [], ['the', 'next', 'night', 'i', 'did', 'not', 'sleep', 'well', 'probably', 'my', 'health', 'was', 'a'], ['little', 'disordered', 'i', 'was', 'oppressed', 'with', 'perplexity', 'and', 'doubt', 'once'], ['or', 'twice', 'i', 'had', 'a', 'feeling', 'of', 'intense', 'fear', 'for', 'which', 'i', 'could', 'perceive'], ['no', 'definite', 'reason', 'i', 'remember', 'creeping', 'noiselessly', 'into', 'the', 'great'], ['hall', 'where', 'the', 'little', 'people', 'were', 'sleeping', 'in', 'the', 'moonlight', 'that'], ['night', 'weena', 'was', 'among', 'them', 'and', 'feeling', 'reassured', 'by', 'their', 'presence'], ['it', 'occurred', 'to', 'me', 'even', 'then', 'that', 'in', 'the', 'course', 'of', 'a', 'few', 'days', 'the'], ['moon', 'must', 'pass', 'through', 'its', 'last', 'quarter', 'and', 'the', 'nights', 'grow', 'dark'], ['when', 'the', 'appearances', 'of', 'these', 'unpleasant', 'creatures', 'from', 'below', 'these'], ['whitened', 'lemurs', 'this', 'new', 'vermin', 'that', 'had', 'replaced', 'the', 'old', 'might', 'be'], ['more', 'abundant', 'and', 'on', 'both', 'these', 'days', 'i', 'had', 'the', 'restless', 'feeling', 'of'], ['one', 'who', 'shirks', 'an', 'inevitable', 'duty', 'i', 'felt', 'assured', 'that', 'the', 'time'], ['machine', 'was', 'only', 'to', 'be', 'recovered', 'by', 'boldly', 'penetrating', 'these'], ['underground', 'mysteries', 'yet', 'i', 'could', 'not', 'face', 'the', 'mystery', 'if', 'only', 'i'], ['had', 'had', 'a', 'companion', 'it', 'would', 'have', 'been', 'different', 'but', 'i', 'was', 'so'], ['horribly', 'alone', 'and', 'even', 'to', 'clamber', 'down', 'into', 'the', 'darkness', 'of', 'the'], ['well', 'appalled', 'me', 'i', 'don', 't', 'know', 'if', 'you', 'will', 'understand', 'my', 'feeling'], ['but', 'i', 'never', 'felt', 'quite', 'safe', 'at', 'my', 'back'], [], ['it', 'was', 'this', 'restlessness', 'this', 'insecurity', 'perhaps', 'that', 'drove', 'me'], ['further', 'and', 'further', 'afield', 'in', 'my', 'exploring', 'expeditions', 'going', 'to', 'the'], ['south', 'westward', 'towards', 'the', 'rising', 'country', 'that', 'is', 'now', 'called', 'combe'], ['wood', 'i', 'observed', 'far', 'off', 'in', 'the', 'direction', 'of', 'nineteenth', 'century'], ['banstead', 'a', 'vast', 'green', 'structure', 'different', 'in', 'character', 'from', 'any'], ['i', 'had', 'hitherto', 'seen', 'it', 'was', 'larger', 'than', 'the', 'largest', 'of', 'the', 'palaces'], ['or', 'ruins', 'i', 'knew', 'and', 'the', 'facade', 'had', 'an', 'oriental', 'look', 'the', 'face'], ['of', 'it', 'having', 'the', 'lustre', 'as', 'well', 'as', 'the', 'pale', 'green', 'tint', 'a', 'kind'], ['of', 'bluish', 'green', 'of', 'a', 'certain', 'type', 'of', 'chinese', 'porcelain', 'this'], ['difference', 'in', 'aspect', 'suggested', 'a', 'difference', 'in', 'use', 'and', 'i', 'was', 'minded'], ['to', 'push', 'on', 'and', 'explore', 'but', 'the', 'day', 'was', 'growing', 'late', 'and', 'i', 'had', 'come'], ['upon', 'the', 'sight', 'of', 'the', 'place', 'after', 'a', 'long', 'and', 'tiring', 'circuit', 'so', 'i'], ['resolved', 'to', 'hold', 'over', 'the', 'adventure', 'for', 'the', 'following', 'day', 'and', 'i'], ['returned', 'to', 'the', 'welcome', 'and', 'the', 'caresses', 'of', 'little', 'weena', 'but', 'next'], ['morning', 'i', 'perceived', 'clearly', 'enough', 'that', 'my', 'curiosity', 'regarding', 'the'], ['palace', 'of', 'green', 'porcelain', 'was', 'a', 'piece', 'of', 'self', 'deception', 'to', 'enable'], ['me', 'to', 'shirk', 'by', 'another', 'day', 'an', 'experience', 'i', 'dreaded', 'i', 'resolved', 'i'], ['would', 'make', 'the', 'descent', 'without', 'further', 'waste', 'of', 'time', 'and', 'started'], ['out', 'in', 'the', 'early', 'morning', 'towards', 'a', 'well', 'near', 'the', 'ruins', 'of', 'granite'], ['and', 'aluminium'], [], ['little', 'weena', 'ran', 'with', 'me', 'she', 'danced', 'beside', 'me', 'to', 'the', 'well', 'but'], ['when', 'she', 'saw', 'me', 'lean', 'over', 'the', 'mouth', 'and', 'look', 'downward', 'she', 'seemed'], ['strangely', 'disconcerted', 'good', 'bye', 'little', 'weena', 'i', 'said', 'kissing'], ['her', 'and', 'then', 'putting', 'her', 'down', 'i', 'began', 'to', 'feel', 'over', 'the', 'parapet'], ['for', 'the', 'climbing', 'hooks', 'rather', 'hastily', 'i', 'may', 'as', 'well', 'confess', 'for'], ['i', 'feared', 'my', 'courage', 'might', 'leak', 'away', 'at', 'first', 'she', 'watched', 'me', 'in'], ['amazement', 'then', 'she', 'gave', 'a', 'most', 'piteous', 'cry', 'and', 'running', 'to', 'me', 'she'], ['began', 'to', 'pull', 'at', 'me', 'with', 'her', 'little', 'hands', 'i', 'think', 'her', 'opposition'], ['nerved', 'me', 'rather', 'to', 'proceed', 'i', 'shook', 'her', 'off', 'perhaps', 'a', 'little'], ['roughly', 'and', 'in', 'another', 'moment', 'i', 'was', 'in', 'the', 'throat', 'of', 'the', 'well', 'i'], ['saw', 'her', 'agonized', 'face', 'over', 'the', 'parapet', 'and', 'smiled', 'to', 'reassure', 'her'], ['then', 'i', 'had', 'to', 'look', 'down', 'at', 'the', 'unstable', 'hooks', 'to', 'which', 'i', 'clung'], [], ['i', 'had', 'to', 'clamber', 'down', 'a', 'shaft', 'of', 'perhaps', 'two', 'hundred', 'yards', 'the'], ['descent', 'was', 'effected', 'by', 'means', 'of', 'metallic', 'bars', 'projecting', 'from'], ['the', 'sides', 'of', 'the', 'well', 'and', 'these', 'being', 'adapted', 'to', 'the', 'needs', 'of'], ['a', 'creature', 'much', 'smaller', 'and', 'lighter', 'than', 'myself', 'i', 'was', 'speedily'], ['cramped', 'and', 'fatigued', 'by', 'the', 'descent', 'and', 'not', 'simply', 'fatigued', 'one', 'of'], ['the', 'bars', 'bent', 'suddenly', 'under', 'my', 'weight', 'and', 'almost', 'swung', 'me', 'off', 'into'], ['the', 'blackness', 'beneath', 'for', 'a', 'moment', 'i', 'hung', 'by', 'one', 'hand', 'and', 'after'], ['that', 'experience', 'i', 'did', 'not', 'dare', 'to', 'rest', 'again', 'though', 'my', 'arms', 'and'], ['back', 'were', 'presently', 'acutely', 'painful', 'i', 'went', 'on', 'clambering', 'down', 'the'], ['sheer', 'descent', 'with', 'as', 'quick', 'a', 'motion', 'as', 'possible', 'glancing', 'upward'], ['i', 'saw', 'the', 'aperture', 'a', 'small', 'blue', 'disk', 'in', 'which', 'a', 'star', 'was', 'visible'], ['while', 'little', 'weena', 's', 'head', 'showed', 'as', 'a', 'round', 'black', 'projection', 'the'], ['thudding', 'sound', 'of', 'a', 'machine', 'below', 'grew', 'louder', 'and', 'more', 'oppressive'], ['everything', 'save', 'that', 'little', 'disk', 'above', 'was', 'profoundly', 'dark', 'and', 'when'], ['i', 'looked', 'up', 'again', 'weena', 'had', 'disappeared'], [], ['i', 'was', 'in', 'an', 'agony', 'of', 'discomfort', 'i', 'had', 'some', 'thought', 'of', 'trying', 'to', 'go'], ['up', 'the', 'shaft', 'again', 'and', 'leave', 'the', 'under', 'world', 'alone', 'but', 'even', 'while'], ['i', 'turned', 'this', 'over', 'in', 'my', 'mind', 'i', 'continued', 'to', 'descend', 'at', 'last', 'with'], ['intense', 'relief', 'i', 'saw', 'dimly', 'coming', 'up', 'a', 'foot', 'to', 'the', 'right', 'of', 'me', 'a'], ['slender', 'loophole', 'in', 'the', 'wall', 'swinging', 'myself', 'in', 'i', 'found', 'it', 'was', 'the'], ['aperture', 'of', 'a', 'narrow', 'horizontal', 'tunnel', 'in', 'which', 'i', 'could', 'lie', 'down', 'and'], ['rest', 'it', 'was', 'not', 'too', 'soon', 'my', 'arms', 'ached', 'my', 'back', 'was', 'cramped', 'and', 'i'], ['was', 'trembling', 'with', 'the', 'prolonged', 'terror', 'of', 'a', 'fall', 'besides', 'this', 'the'], ['unbroken', 'darkness', 'had', 'had', 'a', 'distressing', 'effect', 'upon', 'my', 'eyes', 'the', 'air'], ['was', 'full', 'of', 'the', 'throb', 'and', 'hum', 'of', 'machinery', 'pumping', 'air', 'down', 'the'], ['shaft'], [], ['i', 'do', 'not', 'know', 'how', 'long', 'i', 'lay', 'i', 'was', 'roused', 'by', 'a', 'soft', 'hand', 'touching'], ['my', 'face', 'starting', 'up', 'in', 'the', 'darkness', 'i', 'snatched', 'at', 'my', 'matches', 'and'], ['hastily', 'striking', 'one', 'i', 'saw', 'three', 'stooping', 'white', 'creatures', 'similar'], ['to', 'the', 'one', 'i', 'had', 'seen', 'above', 'ground', 'in', 'the', 'ruin', 'hastily', 'retreating'], ['before', 'the', 'light', 'living', 'as', 'they', 'did', 'in', 'what', 'appeared', 'to', 'me'], ['impenetrable', 'darkness', 'their', 'eyes', 'were', 'abnormally', 'large', 'and'], ['sensitive', 'just', 'as', 'are', 'the', 'pupils', 'of', 'the', 'abysmal', 'fishes', 'and', 'they'], ['reflected', 'the', 'light', 'in', 'the', 'same', 'way', 'i', 'have', 'no', 'doubt', 'they', 'could', 'see'], ['me', 'in', 'that', 'rayless', 'obscurity', 'and', 'they', 'did', 'not', 'seem', 'to', 'have', 'any', 'fear'], ['of', 'me', 'apart', 'from', 'the', 'light', 'but', 'so', 'soon', 'as', 'i', 'struck', 'a', 'match', 'in'], ['order', 'to', 'see', 'them', 'they', 'fled', 'incontinently', 'vanishing', 'into', 'dark'], ['gutters', 'and', 'tunnels', 'from', 'which', 'their', 'eyes', 'glared', 'at', 'me', 'in', 'the'], ['strangest', 'fashion'], [], ['i', 'tried', 'to', 'call', 'to', 'them', 'but', 'the', 'language', 'they', 'had', 'was', 'apparently'], ['different', 'from', 'that', 'of', 'the', 'over', 'world', 'people', 'so', 'that', 'i', 'was', 'needs'], ['left', 'to', 'my', 'own', 'unaided', 'efforts', 'and', 'the', 'thought', 'of', 'flight', 'before'], ['exploration', 'was', 'even', 'then', 'in', 'my', 'mind', 'but', 'i', 'said', 'to', 'myself', 'you', 'are'], ['in', 'for', 'it', 'now', 'and', 'feeling', 'my', 'way', 'along', 'the', 'tunnel', 'i', 'found', 'the'], ['noise', 'of', 'machinery', 'grow', 'louder', 'presently', 'the', 'walls', 'fell', 'away', 'from'], ['me', 'and', 'i', 'came', 'to', 'a', 'large', 'open', 'space', 'and', 'striking', 'another', 'match'], ['saw', 'that', 'i', 'had', 'entered', 'a', 'vast', 'arched', 'cavern', 'which', 'stretched', 'into'], ['utter', 'darkness', 'beyond', 'the', 'range', 'of', 'my', 'light', 'the', 'view', 'i', 'had', 'of', 'it'], ['was', 'as', 'much', 'as', 'one', 'could', 'see', 'in', 'the', 'burning', 'of', 'a', 'match'], [], ['necessarily', 'my', 'memory', 'is', 'vague', 'great', 'shapes', 'like', 'big', 'machines', 'rose'], ['out', 'of', 'the', 'dimness', 'and', 'cast', 'grotesque', 'black', 'shadows', 'in', 'which', 'dim'], ['spectral', 'morlocks', 'sheltered', 'from', 'the', 'glare', 'the', 'place', 'by', 'the', 'by'], ['was', 'very', 'stuffy', 'and', 'oppressive', 'and', 'the', 'faint', 'halitus', 'of', 'freshly'], ['shed', 'blood', 'was', 'in', 'the', 'air', 'some', 'way', 'down', 'the', 'central', 'vista', 'was', 'a'], ['little', 'table', 'of', 'white', 'metal', 'laid', 'with', 'what', 'seemed', 'a', 'meal', 'the'], ['morlocks', 'at', 'any', 'rate', 'were', 'carnivorous', 'even', 'at', 'the', 'time', 'i', 'remember'], ['wondering', 'what', 'large', 'animal', 'could', 'have', 'survived', 'to', 'furnish', 'the', 'red'], ['joint', 'i', 'saw', 'it', 'was', 'all', 'very', 'indistinct', 'the', 'heavy', 'smell', 'the', 'big'], ['unmeaning', 'shapes', 'the', 'obscene', 'figures', 'lurking', 'in', 'the', 'shadows', 'and'], ['only', 'waiting', 'for', 'the', 'darkness', 'to', 'come', 'at', 'me', 'again', 'then', 'the', 'match'], ['burned', 'down', 'and', 'stung', 'my', 'fingers', 'and', 'fell', 'a', 'wriggling', 'red', 'spot'], ['in', 'the', 'blackness'], [], ['i', 'have', 'thought', 'since', 'how', 'particularly', 'ill', 'equipped', 'i', 'was', 'for', 'such'], ['an', 'experience', 'when', 'i', 'had', 'started', 'with', 'the', 'time', 'machine', 'i', 'had'], ['started', 'with', 'the', 'absurd', 'assumption', 'that', 'the', 'men', 'of', 'the', 'future', 'would'], ['certainly', 'be', 'infinitely', 'ahead', 'of', 'ourselves', 'in', 'all', 'their', 'appliances'], ['i', 'had', 'come', 'without', 'arms', 'without', 'medicine', 'without', 'anything', 'to'], ['smoke', 'at', 'times', 'i', 'missed', 'tobacco', 'frightfully', 'even', 'without', 'enough'], ['matches', 'if', 'only', 'i', 'had', 'thought', 'of', 'a', 'kodak', 'i', 'could', 'have', 'flashed', 'that'], ['glimpse', 'of', 'the', 'underworld', 'in', 'a', 'second', 'and', 'examined', 'it', 'at', 'leisure'], ['but', 'as', 'it', 'was', 'i', 'stood', 'there', 'with', 'only', 'the', 'weapons', 'and', 'the', 'powers'], ['that', 'nature', 'had', 'endowed', 'me', 'with', 'hands', 'feet', 'and', 'teeth', 'these', 'and'], ['four', 'safety', 'matches', 'that', 'still', 'remained', 'to', 'me'], [], ['i', 'was', 'afraid', 'to', 'push', 'my', 'way', 'in', 'among', 'all', 'this', 'machinery', 'in', 'the'], ['dark', 'and', 'it', 'was', 'only', 'with', 'my', 'last', 'glimpse', 'of', 'light', 'i', 'discovered'], ['that', 'my', 'store', 'of', 'matches', 'had', 'run', 'low', 'it', 'had', 'never', 'occurred', 'to', 'me'], ['until', 'that', 'moment', 'that', 'there', 'was', 'any', 'need', 'to', 'economize', 'them', 'and', 'i'], ['had', 'wasted', 'almost', 'half', 'the', 'box', 'in', 'astonishing', 'the', 'upper', 'worlders', 'to'], ['whom', 'fire', 'was', 'a', 'novelty', 'now', 'as', 'i', 'say', 'i', 'had', 'four', 'left', 'and', 'while', 'i'], ['stood', 'in', 'the', 'dark', 'a', 'hand', 'touched', 'mine', 'lank', 'fingers', 'came', 'feeling'], ['over', 'my', 'face', 'and', 'i', 'was', 'sensible', 'of', 'a', 'peculiar', 'unpleasant', 'odour', 'i'], ['fancied', 'i', 'heard', 'the', 'breathing', 'of', 'a', 'crowd', 'of', 'those', 'dreadful', 'little'], ['beings', 'about', 'me', 'i', 'felt', 'the', 'box', 'of', 'matches', 'in', 'my', 'hand', 'being', 'gently'], ['disengaged', 'and', 'other', 'hands', 'behind', 'me', 'plucking', 'at', 'my', 'clothing', 'the'], ['sense', 'of', 'these', 'unseen', 'creatures', 'examining', 'me', 'was', 'indescribably'], ['unpleasant', 'the', 'sudden', 'realization', 'of', 'my', 'ignorance', 'of', 'their', 'ways', 'of'], ['thinking', 'and', 'doing', 'came', 'home', 'to', 'me', 'very', 'vividly', 'in', 'the', 'darkness', 'i'], ['shouted', 'at', 'them', 'as', 'loudly', 'as', 'i', 'could', 'they', 'started', 'away', 'and', 'then'], ['i', 'could', 'feel', 'them', 'approaching', 'me', 'again', 'they', 'clutched', 'at', 'me', 'more'], ['boldly', 'whispering', 'odd', 'sounds', 'to', 'each', 'other', 'i', 'shivered', 'violently'], ['and', 'shouted', 'again', 'rather', 'discordantly', 'this', 'time', 'they', 'were', 'not', 'so'], ['seriously', 'alarmed', 'and', 'they', 'made', 'a', 'queer', 'laughing', 'noise', 'as', 'they', 'came'], ['back', 'at', 'me', 'i', 'will', 'confess', 'i', 'was', 'horribly', 'frightened', 'i', 'determined'], ['to', 'strike', 'another', 'match', 'and', 'escape', 'under', 'the', 'protection', 'of', 'its'], ['glare', 'i', 'did', 'so', 'and', 'eking', 'out', 'the', 'flicker', 'with', 'a', 'scrap', 'of', 'paper'], ['from', 'my', 'pocket', 'i', 'made', 'good', 'my', 'retreat', 'to', 'the', 'narrow', 'tunnel', 'but', 'i'], ['had', 'scarce', 'entered', 'this', 'when', 'my', 'light', 'was', 'blown', 'out', 'and', 'in', 'the'], ['blackness', 'i', 'could', 'hear', 'the', 'morlocks', 'rustling', 'like', 'wind', 'among', 'leaves'], ['and', 'pattering', 'like', 'the', 'rain', 'as', 'they', 'hurried', 'after', 'me'], [], ['in', 'a', 'moment', 'i', 'was', 'clutched', 'by', 'several', 'hands', 'and', 'there', 'was', 'no'], ['mistaking', 'that', 'they', 'were', 'trying', 'to', 'haul', 'me', 'back', 'i', 'struck', 'another'], ['light', 'and', 'waved', 'it', 'in', 'their', 'dazzled', 'faces', 'you', 'can', 'scarce', 'imagine'], ['how', 'nauseatingly', 'inhuman', 'they', 'looked', 'those', 'pale', 'chinless', 'faces'], ['and', 'great', 'lidless', 'pinkish', 'grey', 'eyes', 'as', 'they', 'stared', 'in', 'their'], ['blindness', 'and', 'bewilderment', 'but', 'i', 'did', 'not', 'stay', 'to', 'look', 'i', 'promise'], ['you', 'i', 'retreated', 'again', 'and', 'when', 'my', 'second', 'match', 'had', 'ended', 'i', 'struck'], ['my', 'third', 'it', 'had', 'almost', 'burned', 'through', 'when', 'i', 'reached', 'the', 'opening'], ['into', 'the', 'shaft', 'i', 'lay', 'down', 'on', 'the', 'edge', 'for', 'the', 'throb', 'of', 'the', 'great'], ['pump', 'below', 'made', 'me', 'giddy', 'then', 'i', 'felt', 'sideways', 'for', 'the', 'projecting'], ['hooks', 'and', 'as', 'i', 'did', 'so', 'my', 'feet', 'were', 'grasped', 'from', 'behind', 'and', 'i'], ['was', 'violently', 'tugged', 'backward', 'i', 'lit', 'my', 'last', 'match', 'and', 'it'], ['incontinently', 'went', 'out', 'but', 'i', 'had', 'my', 'hand', 'on', 'the', 'climbing', 'bars', 'now'], ['and', 'kicking', 'violently', 'i', 'disengaged', 'myself', 'from', 'the', 'clutches', 'of', 'the'], ['morlocks', 'and', 'was', 'speedily', 'clambering', 'up', 'the', 'shaft', 'while', 'they', 'stayed'], ['peering', 'and', 'blinking', 'up', 'at', 'me', 'all', 'but', 'one', 'little', 'wretch', 'who'], ['followed', 'me', 'for', 'some', 'way', 'and', 'well', 'nigh', 'secured', 'my', 'boot', 'as', 'a', 'trophy'], [], ['that', 'climb', 'seemed', 'interminable', 'to', 'me', 'with', 'the', 'last', 'twenty', 'or'], ['thirty', 'feet', 'of', 'it', 'a', 'deadly', 'nausea', 'came', 'upon', 'me', 'i', 'had', 'the', 'greatest'], ['difficulty', 'in', 'keeping', 'my', 'hold', 'the', 'last', 'few', 'yards', 'was', 'a', 'frightful'], ['struggle', 'against', 'this', 'faintness', 'several', 'times', 'my', 'head', 'swam', 'and', 'i'], ['felt', 'all', 'the', 'sensations', 'of', 'falling', 'at', 'last', 'however', 'i', 'got', 'over', 'the'], ['well', 'mouth', 'somehow', 'and', 'staggered', 'out', 'of', 'the', 'ruin', 'into', 'the', 'blinding'], ['sunlight', 'i', 'fell', 'upon', 'my', 'face', 'even', 'the', 'soil', 'smelt', 'sweet', 'and', 'clean'], ['then', 'i', 'remember', 'weena', 'kissing', 'my', 'hands', 'and', 'ears', 'and', 'the', 'voices', 'of'], ['others', 'among', 'the', 'eloi', 'then', 'for', 'a', 'time', 'i', 'was', 'insensible'], [], [], [], [], ['vii'], [], [], ['now', 'indeed', 'i', 'seemed', 'in', 'a', 'worse', 'case', 'than', 'before', 'hitherto'], ['except', 'during', 'my', 'night', 's', 'anguish', 'at', 'the', 'loss', 'of', 'the', 'time', 'machine'], ['i', 'had', 'felt', 'a', 'sustaining', 'hope', 'of', 'ultimate', 'escape', 'but', 'that', 'hope', 'was'], ['staggered', 'by', 'these', 'new', 'discoveries', 'hitherto', 'i', 'had', 'merely', 'thought'], ['myself', 'impeded', 'by', 'the', 'childish', 'simplicity', 'of', 'the', 'little', 'people', 'and'], ['by', 'some', 'unknown', 'forces', 'which', 'i', 'had', 'only', 'to', 'understand', 'to', 'overcome'], ['but', 'there', 'was', 'an', 'altogether', 'new', 'element', 'in', 'the', 'sickening', 'quality', 'of'], ['the', 'morlocks', 'a', 'something', 'inhuman', 'and', 'malign', 'instinctively', 'i'], ['loathed', 'them', 'before', 'i', 'had', 'felt', 'as', 'a', 'man', 'might', 'feel', 'who', 'had', 'fallen'], ['into', 'a', 'pit', 'my', 'concern', 'was', 'with', 'the', 'pit', 'and', 'how', 'to', 'get', 'out', 'of', 'it'], ['now', 'i', 'felt', 'like', 'a', 'beast', 'in', 'a', 'trap', 'whose', 'enemy', 'would', 'come', 'upon', 'him'], ['soon'], [], ['the', 'enemy', 'i', 'dreaded', 'may', 'surprise', 'you', 'it', 'was', 'the', 'darkness', 'of', 'the'], ['new', 'moon', 'weena', 'had', 'put', 'this', 'into', 'my', 'head', 'by', 'some', 'at', 'first'], ['incomprehensible', 'remarks', 'about', 'the', 'dark', 'nights', 'it', 'was', 'not', 'now'], ['such', 'a', 'very', 'difficult', 'problem', 'to', 'guess', 'what', 'the', 'coming', 'dark', 'nights'], ['might', 'mean', 'the', 'moon', 'was', 'on', 'the', 'wane', 'each', 'night', 'there', 'was', 'a', 'longer'], ['interval', 'of', 'darkness', 'and', 'i', 'now', 'understood', 'to', 'some', 'slight', 'degree', 'at'], ['least', 'the', 'reason', 'of', 'the', 'fear', 'of', 'the', 'little', 'upper', 'world', 'people', 'for'], ['the', 'dark', 'i', 'wondered', 'vaguely', 'what', 'foul', 'villainy', 'it', 'might', 'be', 'that'], ['the', 'morlocks', 'did', 'under', 'the', 'new', 'moon', 'i', 'felt', 'pretty', 'sure', 'now', 'that'], ['my', 'second', 'hypothesis', 'was', 'all', 'wrong', 'the', 'upper', 'world', 'people', 'might'], ['once', 'have', 'been', 'the', 'favoured', 'aristocracy', 'and', 'the', 'morlocks', 'their'], ['mechanical', 'servants', 'but', 'that', 'had', 'long', 'since', 'passed', 'away', 'the', 'two'], ['species', 'that', 'had', 'resulted', 'from', 'the', 'evolution', 'of', 'man', 'were', 'sliding'], ['down', 'towards', 'or', 'had', 'already', 'arrived', 'at', 'an', 'altogether', 'new'], ['relationship', 'the', 'eloi', 'like', 'the', 'carolingian', 'kings', 'had', 'decayed'], ['to', 'a', 'mere', 'beautiful', 'futility', 'they', 'still', 'possessed', 'the', 'earth', 'on'], ['sufferance', 'since', 'the', 'morlocks', 'subterranean', 'for', 'innumerable'], ['generations', 'had', 'come', 'at', 'last', 'to', 'find', 'the', 'daylit', 'surface'], ['intolerable', 'and', 'the', 'morlocks', 'made', 'their', 'garments', 'i', 'inferred', 'and'], ['maintained', 'them', 'in', 'their', 'habitual', 'needs', 'perhaps', 'through', 'the'], ['survival', 'of', 'an', 'old', 'habit', 'of', 'service', 'they', 'did', 'it', 'as', 'a', 'standing', 'horse'], ['paws', 'with', 'his', 'foot', 'or', 'as', 'a', 'man', 'enjoys', 'killing', 'animals', 'in', 'sport'], ['because', 'ancient', 'and', 'departed', 'necessities', 'had', 'impressed', 'it', 'on', 'the'], ['organism', 'but', 'clearly', 'the', 'old', 'order', 'was', 'already', 'in', 'part', 'reversed'], ['the', 'nemesis', 'of', 'the', 'delicate', 'ones', 'was', 'creeping', 'on', 'apace', 'ages', 'ago'], ['thousands', 'of', 'generations', 'ago', 'man', 'had', 'thrust', 'his', 'brother', 'man', 'out', 'of'], ['the', 'ease', 'and', 'the', 'sunshine', 'and', 'now', 'that', 'brother', 'was', 'coming', 'back'], ['changed', 'already', 'the', 'eloi', 'had', 'begun', 'to', 'learn', 'one', 'old', 'lesson', 'anew'], ['they', 'were', 'becoming', 'reacquainted', 'with', 'fear', 'and', 'suddenly', 'there', 'came'], ['into', 'my', 'head', 'the', 'memory', 'of', 'the', 'meat', 'i', 'had', 'seen', 'in', 'the', 'under', 'world'], ['it', 'seemed', 'odd', 'how', 'it', 'floated', 'into', 'my', 'mind', 'not', 'stirred', 'up', 'as', 'it'], ['were', 'by', 'the', 'current', 'of', 'my', 'meditations', 'but', 'coming', 'in', 'almost', 'like', 'a'], ['question', 'from', 'outside', 'i', 'tried', 'to', 'recall', 'the', 'form', 'of', 'it', 'i', 'had', 'a'], ['vague', 'sense', 'of', 'something', 'familiar', 'but', 'i', 'could', 'not', 'tell', 'what', 'it', 'was'], ['at', 'the', 'time'], [], ['still', 'however', 'helpless', 'the', 'little', 'people', 'in', 'the', 'presence', 'of', 'their'], ['mysterious', 'fear', 'i', 'was', 'differently', 'constituted', 'i', 'came', 'out', 'of', 'this'], ['age', 'of', 'ours', 'this', 'ripe', 'prime', 'of', 'the', 'human', 'race', 'when', 'fear', 'does', 'not'], ['paralyse', 'and', 'mystery', 'has', 'lost', 'its', 'terrors', 'i', 'at', 'least', 'would', 'defend'], ['myself', 'without', 'further', 'delay', 'i', 'determined', 'to', 'make', 'myself', 'arms', 'and', 'a'], ['fastness', 'where', 'i', 'might', 'sleep', 'with', 'that', 'refuge', 'as', 'a', 'base', 'i', 'could'], ['face', 'this', 'strange', 'world', 'with', 'some', 'of', 'that', 'confidence', 'i', 'had', 'lost', 'in'], ['realizing', 'to', 'what', 'creatures', 'night', 'by', 'night', 'i', 'lay', 'exposed', 'i', 'felt'], ['i', 'could', 'never', 'sleep', 'again', 'until', 'my', 'bed', 'was', 'secure', 'from', 'them', 'i'], ['shuddered', 'with', 'horror', 'to', 'think', 'how', 'they', 'must', 'already', 'have', 'examined'], ['me'], [], ['i', 'wandered', 'during', 'the', 'afternoon', 'along', 'the', 'valley', 'of', 'the', 'thames', 'but'], ['found', 'nothing', 'that', 'commended', 'itself', 'to', 'my', 'mind', 'as', 'inaccessible', 'all'], ['the', 'buildings', 'and', 'trees', 'seemed', 'easily', 'practicable', 'to', 'such', 'dexterous'], ['climbers', 'as', 'the', 'morlocks', 'to', 'judge', 'by', 'their', 'wells', 'must', 'be', 'then', 'the'], ['tall', 'pinnacles', 'of', 'the', 'palace', 'of', 'green', 'porcelain', 'and', 'the', 'polished'], ['gleam', 'of', 'its', 'walls', 'came', 'back', 'to', 'my', 'memory', 'and', 'in', 'the', 'evening'], ['taking', 'weena', 'like', 'a', 'child', 'upon', 'my', 'shoulder', 'i', 'went', 'up', 'the', 'hills'], ['towards', 'the', 'south', 'west', 'the', 'distance', 'i', 'had', 'reckoned', 'was', 'seven', 'or'], ['eight', 'miles', 'but', 'it', 'must', 'have', 'been', 'nearer', 'eighteen', 'i', 'had', 'first', 'seen'], ['the', 'place', 'on', 'a', 'moist', 'afternoon', 'when', 'distances', 'are', 'deceptively'], ['diminished', 'in', 'addition', 'the', 'heel', 'of', 'one', 'of', 'my', 'shoes', 'was', 'loose', 'and'], ['a', 'nail', 'was', 'working', 'through', 'the', 'sole', 'they', 'were', 'comfortable', 'old', 'shoes'], ['i', 'wore', 'about', 'indoors', 'so', 'that', 'i', 'was', 'lame', 'and', 'it', 'was', 'already', 'long'], ['past', 'sunset', 'when', 'i', 'came', 'in', 'sight', 'of', 'the', 'palace', 'silhouetted', 'black'], ['against', 'the', 'pale', 'yellow', 'of', 'the', 'sky'], [], ['weena', 'had', 'been', 'hugely', 'delighted', 'when', 'i', 'began', 'to', 'carry', 'her', 'but'], ['after', 'a', 'while', 'she', 'desired', 'me', 'to', 'let', 'her', 'down', 'and', 'ran', 'along', 'by', 'the'], ['side', 'of', 'me', 'occasionally', 'darting', 'off', 'on', 'either', 'hand', 'to', 'pick', 'flowers'], ['to', 'stick', 'in', 'my', 'pockets', 'my', 'pockets', 'had', 'always', 'puzzled', 'weena', 'but', 'at'], ['the', 'last', 'she', 'had', 'concluded', 'that', 'they', 'were', 'an', 'eccentric', 'kind', 'of', 'vase'], ['for', 'floral', 'decoration', 'at', 'least', 'she', 'utilized', 'them', 'for', 'that', 'purpose'], ['and', 'that', 'reminds', 'me', 'in', 'changing', 'my', 'jacket', 'i', 'found'], [], ['the', 'time', 'traveller', 'paused', 'put', 'his', 'hand', 'into', 'his', 'pocket', 'and'], ['silently', 'placed', 'two', 'withered', 'flowers', 'not', 'unlike', 'very', 'large', 'white'], ['mallows', 'upon', 'the', 'little', 'table', 'then', 'he', 'resumed', 'his', 'narrative'], [], ['as', 'the', 'hush', 'of', 'evening', 'crept', 'over', 'the', 'world', 'and', 'we', 'proceeded', 'over'], ['the', 'hill', 'crest', 'towards', 'wimbledon', 'weena', 'grew', 'tired', 'and', 'wanted', 'to'], ['return', 'to', 'the', 'house', 'of', 'grey', 'stone', 'but', 'i', 'pointed', 'out', 'the', 'distant'], ['pinnacles', 'of', 'the', 'palace', 'of', 'green', 'porcelain', 'to', 'her', 'and', 'contrived', 'to'], ['make', 'her', 'understand', 'that', 'we', 'were', 'seeking', 'a', 'refuge', 'there', 'from', 'her'], ['fear', 'you', 'know', 'that', 'great', 'pause', 'that', 'comes', 'upon', 'things', 'before', 'the'], ['dusk', 'even', 'the', 'breeze', 'stops', 'in', 'the', 'trees', 'to', 'me', 'there', 'is', 'always', 'an'], ['air', 'of', 'expectation', 'about', 'that', 'evening', 'stillness', 'the', 'sky', 'was', 'clear'], ['remote', 'and', 'empty', 'save', 'for', 'a', 'few', 'horizontal', 'bars', 'far', 'down', 'in', 'the'], ['sunset', 'well', 'that', 'night', 'the', 'expectation', 'took', 'the', 'colour', 'of', 'my'], ['fears', 'in', 'that', 'darkling', 'calm', 'my', 'senses', 'seemed', 'preternaturally'], ['sharpened', 'i', 'fancied', 'i', 'could', 'even', 'feel', 'the', 'hollowness', 'of', 'the', 'ground'], ['beneath', 'my', 'feet', 'could', 'indeed', 'almost', 'see', 'through', 'it', 'the', 'morlocks'], ['on', 'their', 'ant', 'hill', 'going', 'hither', 'and', 'thither', 'and', 'waiting', 'for', 'the', 'dark'], ['in', 'my', 'excitement', 'i', 'fancied', 'that', 'they', 'would', 'receive', 'my', 'invasion', 'of'], ['their', 'burrows', 'as', 'a', 'declaration', 'of', 'war', 'and', 'why', 'had', 'they', 'taken', 'my'], ['time', 'machine'], [], ['so', 'we', 'went', 'on', 'in', 'the', 'quiet', 'and', 'the', 'twilight', 'deepened', 'into', 'night'], ['the', 'clear', 'blue', 'of', 'the', 'distance', 'faded', 'and', 'one', 'star', 'after', 'another'], ['came', 'out', 'the', 'ground', 'grew', 'dim', 'and', 'the', 'trees', 'black', 'weena', 's', 'fears', 'and'], ['her', 'fatigue', 'grew', 'upon', 'her', 'i', 'took', 'her', 'in', 'my', 'arms', 'and', 'talked', 'to', 'her'], ['and', 'caressed', 'her', 'then', 'as', 'the', 'darkness', 'grew', 'deeper', 'she', 'put', 'her'], ['arms', 'round', 'my', 'neck', 'and', 'closing', 'her', 'eyes', 'tightly', 'pressed', 'her', 'face'], ['against', 'my', 'shoulder', 'so', 'we', 'went', 'down', 'a', 'long', 'slope', 'into', 'a', 'valley', 'and'], ['there', 'in', 'the', 'dimness', 'i', 'almost', 'walked', 'into', 'a', 'little', 'river', 'this', 'i'], ['waded', 'and', 'went', 'up', 'the', 'opposite', 'side', 'of', 'the', 'valley', 'past', 'a', 'number'], ['of', 'sleeping', 'houses', 'and', 'by', 'a', 'statue', 'a', 'faun', 'or', 'some', 'such', 'figure'], ['minus', 'the', 'head', 'here', 'too', 'were', 'acacias', 'so', 'far', 'i', 'had', 'seen', 'nothing', 'of'], ['the', 'morlocks', 'but', 'it', 'was', 'yet', 'early', 'in', 'the', 'night', 'and', 'the', 'darker', 'hours'], ['before', 'the', 'old', 'moon', 'rose', 'were', 'still', 'to', 'come'], [], ['from', 'the', 'brow', 'of', 'the', 'next', 'hill', 'i', 'saw', 'a', 'thick', 'wood', 'spreading', 'wide'], ['and', 'black', 'before', 'me', 'i', 'hesitated', 'at', 'this', 'i', 'could', 'see', 'no', 'end', 'to'], ['it', 'either', 'to', 'the', 'right', 'or', 'the', 'left', 'feeling', 'tired', 'my', 'feet', 'in'], ['particular', 'were', 'very', 'sore', 'i', 'carefully', 'lowered', 'weena', 'from', 'my'], ['shoulder', 'as', 'i', 'halted', 'and', 'sat', 'down', 'upon', 'the', 'turf', 'i', 'could', 'no'], ['longer', 'see', 'the', 'palace', 'of', 'green', 'porcelain', 'and', 'i', 'was', 'in', 'doubt', 'of', 'my'], ['direction', 'i', 'looked', 'into', 'the', 'thickness', 'of', 'the', 'wood', 'and', 'thought', 'of'], ['what', 'it', 'might', 'hide', 'under', 'that', 'dense', 'tangle', 'of', 'branches', 'one', 'would'], ['be', 'out', 'of', 'sight', 'of', 'the', 'stars', 'even', 'were', 'there', 'no', 'other', 'lurking'], ['danger', 'a', 'danger', 'i', 'did', 'not', 'care', 'to', 'let', 'my', 'imagination', 'loose'], ['upon', 'there', 'would', 'still', 'be', 'all', 'the', 'roots', 'to', 'stumble', 'over', 'and', 'the'], ['tree', 'boles', 'to', 'strike', 'against'], [], ['i', 'was', 'very', 'tired', 'too', 'after', 'the', 'excitements', 'of', 'the', 'day', 'so', 'i'], ['decided', 'that', 'i', 'would', 'not', 'face', 'it', 'but', 'would', 'pass', 'the', 'night', 'upon', 'the'], ['open', 'hill'], [], ['weena', 'i', 'was', 'glad', 'to', 'find', 'was', 'fast', 'asleep', 'i', 'carefully', 'wrapped', 'her'], ['in', 'my', 'jacket', 'and', 'sat', 'down', 'beside', 'her', 'to', 'wait', 'for', 'the', 'moonrise', 'the'], ['hill', 'side', 'was', 'quiet', 'and', 'deserted', 'but', 'from', 'the', 'black', 'of', 'the', 'wood'], ['there', 'came', 'now', 'and', 'then', 'a', 'stir', 'of', 'living', 'things', 'above', 'me', 'shone', 'the'], ['stars', 'for', 'the', 'night', 'was', 'very', 'clear', 'i', 'felt', 'a', 'certain', 'sense', 'of'], ['friendly', 'comfort', 'in', 'their', 'twinkling', 'all', 'the', 'old', 'constellations'], ['had', 'gone', 'from', 'the', 'sky', 'however', 'that', 'slow', 'movement', 'which', 'is'], ['imperceptible', 'in', 'a', 'hundred', 'human', 'lifetimes', 'had', 'long', 'since'], ['rearranged', 'them', 'in', 'unfamiliar', 'groupings', 'but', 'the', 'milky', 'way', 'it'], ['seemed', 'to', 'me', 'was', 'still', 'the', 'same', 'tattered', 'streamer', 'of', 'star', 'dust', 'as'], ['of', 'yore', 'southward', 'as', 'i', 'judged', 'it', 'was', 'a', 'very', 'bright', 'red', 'star', 'that'], ['was', 'new', 'to', 'me', 'it', 'was', 'even', 'more', 'splendid', 'than', 'our', 'own', 'green', 'sirius'], ['and', 'amid', 'all', 'these', 'scintillating', 'points', 'of', 'light', 'one', 'bright', 'planet'], ['shone', 'kindly', 'and', 'steadily', 'like', 'the', 'face', 'of', 'an', 'old', 'friend'], [], ['looking', 'at', 'these', 'stars', 'suddenly', 'dwarfed', 'my', 'own', 'troubles', 'and', 'all'], ['the', 'gravities', 'of', 'terrestrial', 'life', 'i', 'thought', 'of', 'their', 'unfathomable'], ['distance', 'and', 'the', 'slow', 'inevitable', 'drift', 'of', 'their', 'movements', 'out', 'of'], ['the', 'unknown', 'past', 'into', 'the', 'unknown', 'future', 'i', 'thought', 'of', 'the', 'great'], ['precessional', 'cycle', 'that', 'the', 'pole', 'of', 'the', 'earth', 'describes', 'only', 'forty'], ['times', 'had', 'that', 'silent', 'revolution', 'occurred', 'during', 'all', 'the', 'years', 'that'], ['i', 'had', 'traversed', 'and', 'during', 'these', 'few', 'revolutions', 'all', 'the', 'activity'], ['all', 'the', 'traditions', 'the', 'complex', 'organizations', 'the', 'nations'], ['languages', 'literatures', 'aspirations', 'even', 'the', 'mere', 'memory', 'of', 'man', 'as'], ['i', 'knew', 'him', 'had', 'been', 'swept', 'out', 'of', 'existence', 'instead', 'were', 'these'], ['frail', 'creatures', 'who', 'had', 'forgotten', 'their', 'high', 'ancestry', 'and', 'the', 'white'], ['things', 'of', 'which', 'i', 'went', 'in', 'terror', 'then', 'i', 'thought', 'of', 'the', 'great', 'fear'], ['that', 'was', 'between', 'the', 'two', 'species', 'and', 'for', 'the', 'first', 'time', 'with', 'a'], ['sudden', 'shiver', 'came', 'the', 'clear', 'knowledge', 'of', 'what', 'the', 'meat', 'i', 'had', 'seen'], ['might', 'be', 'yet', 'it', 'was', 'too', 'horrible', 'i', 'looked', 'at', 'little', 'weena', 'sleeping'], ['beside', 'me', 'her', 'face', 'white', 'and', 'starlike', 'under', 'the', 'stars', 'and'], ['forthwith', 'dismissed', 'the', 'thought'], [], ['through', 'that', 'long', 'night', 'i', 'held', 'my', 'mind', 'off', 'the', 'morlocks', 'as', 'well', 'as'], ['i', 'could', 'and', 'whiled', 'away', 'the', 'time', 'by', 'trying', 'to', 'fancy', 'i', 'could', 'find'], ['signs', 'of', 'the', 'old', 'constellations', 'in', 'the', 'new', 'confusion', 'the', 'sky', 'kept'], ['very', 'clear', 'except', 'for', 'a', 'hazy', 'cloud', 'or', 'so', 'no', 'doubt', 'i', 'dozed', 'at'], ['times', 'then', 'as', 'my', 'vigil', 'wore', 'on', 'came', 'a', 'faintness', 'in', 'the', 'eastward'], ['sky', 'like', 'the', 'reflection', 'of', 'some', 'colourless', 'fire', 'and', 'the', 'old', 'moon'], ['rose', 'thin', 'and', 'peaked', 'and', 'white', 'and', 'close', 'behind', 'and', 'overtaking'], ['it', 'and', 'overflowing', 'it', 'the', 'dawn', 'came', 'pale', 'at', 'first', 'and', 'then'], ['growing', 'pink', 'and', 'warm', 'no', 'morlocks', 'had', 'approached', 'us', 'indeed', 'i', 'had'], ['seen', 'none', 'upon', 'the', 'hill', 'that', 'night', 'and', 'in', 'the', 'confidence', 'of', 'renewed'], ['day', 'it', 'almost', 'seemed', 'to', 'me', 'that', 'my', 'fear', 'had', 'been', 'unreasonable', 'i'], ['stood', 'up', 'and', 'found', 'my', 'foot', 'with', 'the', 'loose', 'heel', 'swollen', 'at', 'the', 'ankle'], ['and', 'painful', 'under', 'the', 'heel', 'so', 'i', 'sat', 'down', 'again', 'took', 'off', 'my', 'shoes'], ['and', 'flung', 'them', 'away'], [], ['i', 'awakened', 'weena', 'and', 'we', 'went', 'down', 'into', 'the', 'wood', 'now', 'green', 'and'], ['pleasant', 'instead', 'of', 'black', 'and', 'forbidding', 'we', 'found', 'some', 'fruit'], ['wherewith', 'to', 'break', 'our', 'fast', 'we', 'soon', 'met', 'others', 'of', 'the', 'dainty', 'ones'], ['laughing', 'and', 'dancing', 'in', 'the', 'sunlight', 'as', 'though', 'there', 'was', 'no', 'such'], ['thing', 'in', 'nature', 'as', 'the', 'night', 'and', 'then', 'i', 'thought', 'once', 'more', 'of', 'the'], ['meat', 'that', 'i', 'had', 'seen', 'i', 'felt', 'assured', 'now', 'of', 'what', 'it', 'was', 'and', 'from'], ['the', 'bottom', 'of', 'my', 'heart', 'i', 'pitied', 'this', 'last', 'feeble', 'rill', 'from', 'the', 'great'], ['flood', 'of', 'humanity', 'clearly', 'at', 'some', 'time', 'in', 'the', 'long', 'ago', 'of', 'human'], ['decay', 'the', 'morlocks', 'food', 'had', 'run', 'short', 'possibly', 'they', 'had', 'lived', 'on'], ['rats', 'and', 'such', 'like', 'vermin', 'even', 'now', 'man', 'is', 'far', 'less', 'discriminating'], ['and', 'exclusive', 'in', 'his', 'food', 'than', 'he', 'was', 'far', 'less', 'than', 'any', 'monkey', 'his'], ['prejudice', 'against', 'human', 'flesh', 'is', 'no', 'deep', 'seated', 'instinct', 'and', 'so'], ['these', 'inhuman', 'sons', 'of', 'men', 'i', 'tried', 'to', 'look', 'at', 'the', 'thing', 'in', 'a'], ['scientific', 'spirit', 'after', 'all', 'they', 'were', 'less', 'human', 'and', 'more', 'remote'], ['than', 'our', 'cannibal', 'ancestors', 'of', 'three', 'or', 'four', 'thousand', 'years', 'ago'], ['and', 'the', 'intelligence', 'that', 'would', 'have', 'made', 'this', 'state', 'of', 'things', 'a'], ['torment', 'had', 'gone', 'why', 'should', 'i', 'trouble', 'myself', 'these', 'eloi', 'were', 'mere'], ['fatted', 'cattle', 'which', 'the', 'ant', 'like', 'morlocks', 'preserved', 'and', 'preyed'], ['upon', 'probably', 'saw', 'to', 'the', 'breeding', 'of', 'and', 'there', 'was', 'weena', 'dancing'], ['at', 'my', 'side'], [], ['then', 'i', 'tried', 'to', 'preserve', 'myself', 'from', 'the', 'horror', 'that', 'was', 'coming'], ['upon', 'me', 'by', 'regarding', 'it', 'as', 'a', 'rigorous', 'punishment', 'of', 'human'], ['selfishness', 'man', 'had', 'been', 'content', 'to', 'live', 'in', 'ease', 'and', 'delight', 'upon'], ['the', 'labours', 'of', 'his', 'fellow', 'man', 'had', 'taken', 'necessity', 'as', 'his', 'watchword'], ['and', 'excuse', 'and', 'in', 'the', 'fullness', 'of', 'time', 'necessity', 'had', 'come', 'home', 'to'], ['him', 'i', 'even', 'tried', 'a', 'carlyle', 'like', 'scorn', 'of', 'this', 'wretched', 'aristocracy'], ['in', 'decay', 'but', 'this', 'attitude', 'of', 'mind', 'was', 'impossible', 'however', 'great'], ['their', 'intellectual', 'degradation', 'the', 'eloi', 'had', 'kept', 'too', 'much', 'of', 'the'], ['human', 'form', 'not', 'to', 'claim', 'my', 'sympathy', 'and', 'to', 'make', 'me', 'perforce', 'a'], ['sharer', 'in', 'their', 'degradation', 'and', 'their', 'fear'], [], ['i', 'had', 'at', 'that', 'time', 'very', 'vague', 'ideas', 'as', 'to', 'the', 'course', 'i', 'should'], ['pursue', 'my', 'first', 'was', 'to', 'secure', 'some', 'safe', 'place', 'of', 'refuge', 'and', 'to'], ['make', 'myself', 'such', 'arms', 'of', 'metal', 'or', 'stone', 'as', 'i', 'could', 'contrive', 'that'], ['necessity', 'was', 'immediate', 'in', 'the', 'next', 'place', 'i', 'hoped', 'to', 'procure', 'some'], ['means', 'of', 'fire', 'so', 'that', 'i', 'should', 'have', 'the', 'weapon', 'of', 'a', 'torch', 'at', 'hand'], ['for', 'nothing', 'i', 'knew', 'would', 'be', 'more', 'efficient', 'against', 'these', 'morlocks'], ['then', 'i', 'wanted', 'to', 'arrange', 'some', 'contrivance', 'to', 'break', 'open', 'the', 'doors', 'of'], ['bronze', 'under', 'the', 'white', 'sphinx', 'i', 'had', 'in', 'mind', 'a', 'battering', 'ram', 'i', 'had'], ['a', 'persuasion', 'that', 'if', 'i', 'could', 'enter', 'those', 'doors', 'and', 'carry', 'a', 'blaze', 'of'], ['light', 'before', 'me', 'i', 'should', 'discover', 'the', 'time', 'machine', 'and', 'escape', 'i'], ['could', 'not', 'imagine', 'the', 'morlocks', 'were', 'strong', 'enough', 'to', 'move', 'it', 'far'], ['away', 'weena', 'i', 'had', 'resolved', 'to', 'bring', 'with', 'me', 'to', 'our', 'own', 'time', 'and'], ['turning', 'such', 'schemes', 'over', 'in', 'my', 'mind', 'i', 'pursued', 'our', 'way', 'towards', 'the'], ['building', 'which', 'my', 'fancy', 'had', 'chosen', 'as', 'our', 'dwelling'], [], [], [], [], ['viii'], [], [], ['i', 'found', 'the', 'palace', 'of', 'green', 'porcelain', 'when', 'we', 'approached', 'it', 'about'], ['noon', 'deserted', 'and', 'falling', 'into', 'ruin', 'only', 'ragged', 'vestiges', 'of', 'glass'], ['remained', 'in', 'its', 'windows', 'and', 'great', 'sheets', 'of', 'the', 'green', 'facing', 'had'], ['fallen', 'away', 'from', 'the', 'corroded', 'metallic', 'framework', 'it', 'lay', 'very', 'high'], ['upon', 'a', 'turfy', 'down', 'and', 'looking', 'north', 'eastward', 'before', 'i', 'entered', 'it', 'i'], ['was', 'surprised', 'to', 'see', 'a', 'large', 'estuary', 'or', 'even', 'creek', 'where', 'i', 'judged'], ['wandsworth', 'and', 'battersea', 'must', 'once', 'have', 'been', 'i', 'thought', 'then', 'though'], ['i', 'never', 'followed', 'up', 'the', 'thought', 'of', 'what', 'might', 'have', 'happened', 'or'], ['might', 'be', 'happening', 'to', 'the', 'living', 'things', 'in', 'the', 'sea'], [], ['the', 'material', 'of', 'the', 'palace', 'proved', 'on', 'examination', 'to', 'be', 'indeed'], ['porcelain', 'and', 'along', 'the', 'face', 'of', 'it', 'i', 'saw', 'an', 'inscription', 'in', 'some'], ['unknown', 'character', 'i', 'thought', 'rather', 'foolishly', 'that', 'weena', 'might'], ['help', 'me', 'to', 'interpret', 'this', 'but', 'i', 'only', 'learned', 'that', 'the', 'bare', 'idea', 'of'], ['writing', 'had', 'never', 'entered', 'her', 'head', 'she', 'always', 'seemed', 'to', 'me', 'i'], ['fancy', 'more', 'human', 'than', 'she', 'was', 'perhaps', 'because', 'her', 'affection', 'was', 'so'], ['human'], [], ['within', 'the', 'big', 'valves', 'of', 'the', 'door', 'which', 'were', 'open', 'and', 'broken', 'we'], ['found', 'instead', 'of', 'the', 'customary', 'hall', 'a', 'long', 'gallery', 'lit', 'by', 'many'], ['side', 'windows', 'at', 'the', 'first', 'glance', 'i', 'was', 'reminded', 'of', 'a', 'museum'], ['the', 'tiled', 'floor', 'was', 'thick', 'with', 'dust', 'and', 'a', 'remarkable', 'array', 'of'], ['miscellaneous', 'objects', 'was', 'shrouded', 'in', 'the', 'same', 'grey', 'covering', 'then'], ['i', 'perceived', 'standing', 'strange', 'and', 'gaunt', 'in', 'the', 'centre', 'of', 'the', 'hall'], ['what', 'was', 'clearly', 'the', 'lower', 'part', 'of', 'a', 'huge', 'skeleton', 'i', 'recognized'], ['by', 'the', 'oblique', 'feet', 'that', 'it', 'was', 'some', 'extinct', 'creature', 'after', 'the'], ['fashion', 'of', 'the', 'megatherium', 'the', 'skull', 'and', 'the', 'upper', 'bones', 'lay'], ['beside', 'it', 'in', 'the', 'thick', 'dust', 'and', 'in', 'one', 'place', 'where', 'rain', 'water', 'had'], ['dropped', 'through', 'a', 'leak', 'in', 'the', 'roof', 'the', 'thing', 'itself', 'had', 'been', 'worn'], ['away', 'further', 'in', 'the', 'gallery', 'was', 'the', 'huge', 'skeleton', 'barrel', 'of', 'a'], ['brontosaurus', 'my', 'museum', 'hypothesis', 'was', 'confirmed', 'going', 'towards', 'the'], ['side', 'i', 'found', 'what', 'appeared', 'to', 'be', 'sloping', 'shelves', 'and', 'clearing', 'away'], ['the', 'thick', 'dust', 'i', 'found', 'the', 'old', 'familiar', 'glass', 'cases', 'of', 'our', 'own'], ['time', 'but', 'they', 'must', 'have', 'been', 'air', 'tight', 'to', 'judge', 'from', 'the', 'fair'], ['preservation', 'of', 'some', 'of', 'their', 'contents'], [], ['clearly', 'we', 'stood', 'among', 'the', 'ruins', 'of', 'some', 'latter', 'day', 'south'], ['kensington', 'here', 'apparently', 'was', 'the', 'palaeontological', 'section'], ['and', 'a', 'very', 'splendid', 'array', 'of', 'fossils', 'it', 'must', 'have', 'been', 'though', 'the'], ['inevitable', 'process', 'of', 'decay', 'that', 'had', 'been', 'staved', 'off', 'for', 'a', 'time', 'and'], ['had', 'through', 'the', 'extinction', 'of', 'bacteria', 'and', 'fungi', 'lost', 'ninety', 'nine'], ['hundredths', 'of', 'its', 'force', 'was', 'nevertheless', 'with', 'extreme', 'sureness', 'if'], ['with', 'extreme', 'slowness', 'at', 'work', 'again', 'upon', 'all', 'its', 'treasures', 'here', 'and'], ['there', 'i', 'found', 'traces', 'of', 'the', 'little', 'people', 'in', 'the', 'shape', 'of', 'rare'], ['fossils', 'broken', 'to', 'pieces', 'or', 'threaded', 'in', 'strings', 'upon', 'reeds', 'and', 'the'], ['cases', 'had', 'in', 'some', 'instances', 'been', 'bodily', 'removed', 'by', 'the', 'morlocks', 'as'], ['i', 'judged', 'the', 'place', 'was', 'very', 'silent', 'the', 'thick', 'dust', 'deadened', 'our'], ['footsteps', 'weena', 'who', 'had', 'been', 'rolling', 'a', 'sea', 'urchin', 'down', 'the', 'sloping'], ['glass', 'of', 'a', 'case', 'presently', 'came', 'as', 'i', 'stared', 'about', 'me', 'and', 'very'], ['quietly', 'took', 'my', 'hand', 'and', 'stood', 'beside', 'me'], [], ['and', 'at', 'first', 'i', 'was', 'so', 'much', 'surprised', 'by', 'this', 'ancient', 'monument', 'of', 'an'], ['intellectual', 'age', 'that', 'i', 'gave', 'no', 'thought', 'to', 'the', 'possibilities', 'it'], ['presented', 'even', 'my', 'preoccupation', 'about', 'the', 'time', 'machine', 'receded', 'a'], ['little', 'from', 'my', 'mind'], [], ['to', 'judge', 'from', 'the', 'size', 'of', 'the', 'place', 'this', 'palace', 'of', 'green', 'porcelain'], ['had', 'a', 'great', 'deal', 'more', 'in', 'it', 'than', 'a', 'gallery', 'of', 'palaeontology'], ['possibly', 'historical', 'galleries', 'it', 'might', 'be', 'even', 'a', 'library', 'to', 'me'], ['at', 'least', 'in', 'my', 'present', 'circumstances', 'these', 'would', 'be', 'vastly', 'more'], ['interesting', 'than', 'this', 'spectacle', 'of', 'oldtime', 'geology', 'in', 'decay'], ['exploring', 'i', 'found', 'another', 'short', 'gallery', 'running', 'transversely', 'to', 'the'], ['first', 'this', 'appeared', 'to', 'be', 'devoted', 'to', 'minerals', 'and', 'the', 'sight', 'of', 'a'], ['block', 'of', 'sulphur', 'set', 'my', 'mind', 'running', 'on', 'gunpowder', 'but', 'i', 'could', 'find'], ['no', 'saltpeter', 'indeed', 'no', 'nitrates', 'of', 'any', 'kind', 'doubtless', 'they', 'had'], ['deliquesced', 'ages', 'ago', 'yet', 'the', 'sulphur', 'hung', 'in', 'my', 'mind', 'and', 'set', 'up', 'a'], ['train', 'of', 'thinking', 'as', 'for', 'the', 'rest', 'of', 'the', 'contents', 'of', 'that', 'gallery'], ['though', 'on', 'the', 'whole', 'they', 'were', 'the', 'best', 'preserved', 'of', 'all', 'i', 'saw', 'i', 'had'], ['little', 'interest', 'i', 'am', 'no', 'specialist', 'in', 'mineralogy', 'and', 'i', 'went', 'on'], ['down', 'a', 'very', 'ruinous', 'aisle', 'running', 'parallel', 'to', 'the', 'first', 'hall', 'i', 'had'], ['entered', 'apparently', 'this', 'section', 'had', 'been', 'devoted', 'to', 'natural'], ['history', 'but', 'everything', 'had', 'long', 'since', 'passed', 'out', 'of', 'recognition', 'a'], ['few', 'shrivelled', 'and', 'blackened', 'vestiges', 'of', 'what', 'had', 'once', 'been', 'stuffed'], ['animals', 'desiccated', 'mummies', 'in', 'jars', 'that', 'had', 'once', 'held', 'spirit', 'a'], ['brown', 'dust', 'of', 'departed', 'plants', 'that', 'was', 'all', 'i', 'was', 'sorry', 'for', 'that'], ['because', 'i', 'should', 'have', 'been', 'glad', 'to', 'trace', 'the', 'patent', 'readjustments', 'by'], ['which', 'the', 'conquest', 'of', 'animated', 'nature', 'had', 'been', 'attained', 'then', 'we'], ['came', 'to', 'a', 'gallery', 'of', 'simply', 'colossal', 'proportions', 'but', 'singularly'], ['ill', 'lit', 'the', 'floor', 'of', 'it', 'running', 'downward', 'at', 'a', 'slight', 'angle', 'from', 'the'], ['end', 'at', 'which', 'i', 'entered', 'at', 'intervals', 'white', 'globes', 'hung', 'from', 'the'], ['ceiling', 'many', 'of', 'them', 'cracked', 'and', 'smashed', 'which', 'suggested', 'that'], ['originally', 'the', 'place', 'had', 'been', 'artificially', 'lit', 'here', 'i', 'was', 'more', 'in'], ['my', 'element', 'for', 'rising', 'on', 'either', 'side', 'of', 'me', 'were', 'the', 'huge', 'bulks', 'of'], ['big', 'machines', 'all', 'greatly', 'corroded', 'and', 'many', 'broken', 'down', 'but', 'some'], ['still', 'fairly', 'complete', 'you', 'know', 'i', 'have', 'a', 'certain', 'weakness', 'for'], ['mechanism', 'and', 'i', 'was', 'inclined', 'to', 'linger', 'among', 'these', 'the', 'more', 'so', 'as'], ['for', 'the', 'most', 'part', 'they', 'had', 'the', 'interest', 'of', 'puzzles', 'and', 'i', 'could', 'make'], ['only', 'the', 'vaguest', 'guesses', 'at', 'what', 'they', 'were', 'for', 'i', 'fancied', 'that', 'if'], ['i', 'could', 'solve', 'their', 'puzzles', 'i', 'should', 'find', 'myself', 'in', 'possession', 'of'], ['powers', 'that', 'might', 'be', 'of', 'use', 'against', 'the', 'morlocks'], [], ['suddenly', 'weena', 'came', 'very', 'close', 'to', 'my', 'side', 'so', 'suddenly', 'that', 'she'], ['startled', 'me', 'had', 'it', 'not', 'been', 'for', 'her', 'i', 'do', 'not', 'think', 'i', 'should', 'have'], ['noticed', 'that', 'the', 'floor', 'of', 'the', 'gallery', 'sloped', 'at', 'all', 'footnote', 'it'], ['may', 'be', 'of', 'course', 'that', 'the', 'floor', 'did', 'not', 'slope', 'but', 'that', 'the', 'museum'], ['was', 'built', 'into', 'the', 'side', 'of', 'a', 'hill', 'ed', 'the', 'end', 'i', 'had', 'come', 'in', 'at'], ['was', 'quite', 'above', 'ground', 'and', 'was', 'lit', 'by', 'rare', 'slit', 'like', 'windows', 'as'], ['you', 'went', 'down', 'the', 'length', 'the', 'ground', 'came', 'up', 'against', 'these', 'windows'], ['until', 'at', 'last', 'there', 'was', 'a', 'pit', 'like', 'the', 'area', 'of', 'a', 'london', 'house'], ['before', 'each', 'and', 'only', 'a', 'narrow', 'line', 'of', 'daylight', 'at', 'the', 'top', 'i', 'went'], ['slowly', 'along', 'puzzling', 'about', 'the', 'machines', 'and', 'had', 'been', 'too', 'intent'], ['upon', 'them', 'to', 'notice', 'the', 'gradual', 'diminution', 'of', 'the', 'light', 'until'], ['weena', 's', 'increasing', 'apprehensions', 'drew', 'my', 'attention', 'then', 'i', 'saw', 'that'], ['the', 'gallery', 'ran', 'down', 'at', 'last', 'into', 'a', 'thick', 'darkness', 'i', 'hesitated', 'and'], ['then', 'as', 'i', 'looked', 'round', 'me', 'i', 'saw', 'that', 'the', 'dust', 'was', 'less', 'abundant'], ['and', 'its', 'surface', 'less', 'even', 'further', 'away', 'towards', 'the', 'dimness', 'it'], ['appeared', 'to', 'be', 'broken', 'by', 'a', 'number', 'of', 'small', 'narrow', 'footprints', 'my'], ['sense', 'of', 'the', 'immediate', 'presence', 'of', 'the', 'morlocks', 'revived', 'at', 'that'], ['i', 'felt', 'that', 'i', 'was', 'wasting', 'my', 'time', 'in', 'the', 'academic', 'examination', 'of'], ['machinery', 'i', 'called', 'to', 'mind', 'that', 'it', 'was', 'already', 'far', 'advanced', 'in', 'the'], ['afternoon', 'and', 'that', 'i', 'had', 'still', 'no', 'weapon', 'no', 'refuge', 'and', 'no', 'means'], ['of', 'making', 'a', 'fire', 'and', 'then', 'down', 'in', 'the', 'remote', 'blackness', 'of', 'the'], ['gallery', 'i', 'heard', 'a', 'peculiar', 'pattering', 'and', 'the', 'same', 'odd', 'noises', 'i', 'had'], ['heard', 'down', 'the', 'well'], [], ['i', 'took', 'weena', 's', 'hand', 'then', 'struck', 'with', 'a', 'sudden', 'idea', 'i', 'left', 'her'], ['and', 'turned', 'to', 'a', 'machine', 'from', 'which', 'projected', 'a', 'lever', 'not', 'unlike'], ['those', 'in', 'a', 'signal', 'box', 'clambering', 'upon', 'the', 'stand', 'and', 'grasping', 'this'], ['lever', 'in', 'my', 'hands', 'i', 'put', 'all', 'my', 'weight', 'upon', 'it', 'sideways', 'suddenly'], ['weena', 'deserted', 'in', 'the', 'central', 'aisle', 'began', 'to', 'whimper', 'i', 'had', 'judged'], ['the', 'strength', 'of', 'the', 'lever', 'pretty', 'correctly', 'for', 'it', 'snapped', 'after', 'a'], ['minute', 's', 'strain', 'and', 'i', 'rejoined', 'her', 'with', 'a', 'mace', 'in', 'my', 'hand', 'more', 'than'], ['sufficient', 'i', 'judged', 'for', 'any', 'morlock', 'skull', 'i', 'might', 'encounter', 'and', 'i'], ['longed', 'very', 'much', 'to', 'kill', 'a', 'morlock', 'or', 'so', 'very', 'inhuman', 'you', 'may'], ['think', 'to', 'want', 'to', 'go', 'killing', 'one', 's', 'own', 'descendants', 'but', 'it', 'was'], ['impossible', 'somehow', 'to', 'feel', 'any', 'humanity', 'in', 'the', 'things', 'only', 'my'], ['disinclination', 'to', 'leave', 'weena', 'and', 'a', 'persuasion', 'that', 'if', 'i', 'began', 'to'], ['slake', 'my', 'thirst', 'for', 'murder', 'my', 'time', 'machine', 'might', 'suffer', 'restrained'], ['me', 'from', 'going', 'straight', 'down', 'the', 'gallery', 'and', 'killing', 'the', 'brutes', 'i'], ['heard'], [], ['well', 'mace', 'in', 'one', 'hand', 'and', 'weena', 'in', 'the', 'other', 'i', 'went', 'out', 'of', 'that'], ['gallery', 'and', 'into', 'another', 'and', 'still', 'larger', 'one', 'which', 'at', 'the', 'first'], ['glance', 'reminded', 'me', 'of', 'a', 'military', 'chapel', 'hung', 'with', 'tattered', 'flags'], ['the', 'brown', 'and', 'charred', 'rags', 'that', 'hung', 'from', 'the', 'sides', 'of', 'it', 'i'], ['presently', 'recognized', 'as', 'the', 'decaying', 'vestiges', 'of', 'books', 'they', 'had'], ['long', 'since', 'dropped', 'to', 'pieces', 'and', 'every', 'semblance', 'of', 'print', 'had', 'left'], ['them', 'but', 'here', 'and', 'there', 'were', 'warped', 'boards', 'and', 'cracked', 'metallic'], ['clasps', 'that', 'told', 'the', 'tale', 'well', 'enough', 'had', 'i', 'been', 'a', 'literary', 'man', 'i'], ['might', 'perhaps', 'have', 'moralized', 'upon', 'the', 'futility', 'of', 'all', 'ambition'], ['but', 'as', 'it', 'was', 'the', 'thing', 'that', 'struck', 'me', 'with', 'keenest', 'force', 'was', 'the'], ['enormous', 'waste', 'of', 'labour', 'to', 'which', 'this', 'sombre', 'wilderness', 'of', 'rotting'], ['paper', 'testified', 'at', 'the', 'time', 'i', 'will', 'confess', 'that', 'i', 'thought', 'chiefly'], ['of', 'the', 'philosophical', 'transactions', 'and', 'my', 'own', 'seventeen', 'papers', 'upon'], ['physical', 'optics'], [], ['then', 'going', 'up', 'a', 'broad', 'staircase', 'we', 'came', 'to', 'what', 'may', 'once', 'have'], ['been', 'a', 'gallery', 'of', 'technical', 'chemistry', 'and', 'here', 'i', 'had', 'not', 'a', 'little'], ['hope', 'of', 'useful', 'discoveries', 'except', 'at', 'one', 'end', 'where', 'the', 'roof', 'had'], ['collapsed', 'this', 'gallery', 'was', 'well', 'preserved', 'i', 'went', 'eagerly', 'to', 'every'], ['unbroken', 'case', 'and', 'at', 'last', 'in', 'one', 'of', 'the', 'really', 'air', 'tight', 'cases'], ['i', 'found', 'a', 'box', 'of', 'matches', 'very', 'eagerly', 'i', 'tried', 'them', 'they', 'were'], ['perfectly', 'good', 'they', 'were', 'not', 'even', 'damp', 'i', 'turned', 'to', 'weena', 'dance'], ['i', 'cried', 'to', 'her', 'in', 'her', 'own', 'tongue', 'for', 'now', 'i', 'had', 'a', 'weapon', 'indeed'], ['against', 'the', 'horrible', 'creatures', 'we', 'feared', 'and', 'so', 'in', 'that', 'derelict'], ['museum', 'upon', 'the', 'thick', 'soft', 'carpeting', 'of', 'dust', 'to', 'weena', 's', 'huge'], ['delight', 'i', 'solemnly', 'performed', 'a', 'kind', 'of', 'composite', 'dance', 'whistling'], ['the', 'land', 'of', 'the', 'leal', 'as', 'cheerfully', 'as', 'i', 'could', 'in', 'part', 'it', 'was', 'a'], ['modest', 'cancan', 'in', 'part', 'a', 'step', 'dance', 'in', 'part', 'a', 'skirt', 'dance', 'so', 'far'], ['as', 'my', 'tail', 'coat', 'permitted', 'and', 'in', 'part', 'original', 'for', 'i', 'am', 'naturally'], ['inventive', 'as', 'you', 'know'], [], ['now', 'i', 'still', 'think', 'that', 'for', 'this', 'box', 'of', 'matches', 'to', 'have', 'escaped'], ['the', 'wear', 'of', 'time', 'for', 'immemorial', 'years', 'was', 'a', 'most', 'strange', 'as', 'for'], ['me', 'it', 'was', 'a', 'most', 'fortunate', 'thing', 'yet', 'oddly', 'enough', 'i', 'found', 'a', 'far'], ['unlikelier', 'substance', 'and', 'that', 'was', 'camphor', 'i', 'found', 'it', 'in', 'a', 'sealed'], ['jar', 'that', 'by', 'chance', 'i', 'suppose', 'had', 'been', 'really', 'hermetically', 'sealed'], ['i', 'fancied', 'at', 'first', 'that', 'it', 'was', 'paraffin', 'wax', 'and', 'smashed', 'the', 'glass'], ['accordingly', 'but', 'the', 'odour', 'of', 'camphor', 'was', 'unmistakable', 'in', 'the'], ['universal', 'decay', 'this', 'volatile', 'substance', 'had', 'chanced', 'to', 'survive'], ['perhaps', 'through', 'many', 'thousands', 'of', 'centuries', 'it', 'reminded', 'me', 'of', 'a'], ['sepia', 'painting', 'i', 'had', 'once', 'seen', 'done', 'from', 'the', 'ink', 'of', 'a', 'fossil'], ['belemnite', 'that', 'must', 'have', 'perished', 'and', 'become', 'fossilized', 'millions'], ['of', 'years', 'ago', 'i', 'was', 'about', 'to', 'throw', 'it', 'away', 'but', 'i', 'remembered', 'that'], ['it', 'was', 'inflammable', 'and', 'burned', 'with', 'a', 'good', 'bright', 'flame', 'was', 'in'], ['fact', 'an', 'excellent', 'candle', 'and', 'i', 'put', 'it', 'in', 'my', 'pocket', 'i', 'found', 'no'], ['explosives', 'however', 'nor', 'any', 'means', 'of', 'breaking', 'down', 'the', 'bronze'], ['doors', 'as', 'yet', 'my', 'iron', 'crowbar', 'was', 'the', 'most', 'helpful', 'thing', 'i', 'had'], ['chanced', 'upon', 'nevertheless', 'i', 'left', 'that', 'gallery', 'greatly', 'elated'], [], ['i', 'cannot', 'tell', 'you', 'all', 'the', 'story', 'of', 'that', 'long', 'afternoon', 'it', 'would'], ['require', 'a', 'great', 'effort', 'of', 'memory', 'to', 'recall', 'my', 'explorations', 'in', 'at', 'all'], ['the', 'proper', 'order', 'i', 'remember', 'a', 'long', 'gallery', 'of', 'rusting', 'stands', 'of'], ['arms', 'and', 'how', 'i', 'hesitated', 'between', 'my', 'crowbar', 'and', 'a', 'hatchet', 'or', 'a'], ['sword', 'i', 'could', 'not', 'carry', 'both', 'however', 'and', 'my', 'bar', 'of', 'iron', 'promised'], ['best', 'against', 'the', 'bronze', 'gates', 'there', 'were', 'numbers', 'of', 'guns', 'pistols'], ['and', 'rifles', 'the', 'most', 'were', 'masses', 'of', 'rust', 'but', 'many', 'were', 'of', 'some'], ['new', 'metal', 'and', 'still', 'fairly', 'sound', 'but', 'any', 'cartridges', 'or', 'powder'], ['there', 'may', 'once', 'have', 'been', 'had', 'rotted', 'into', 'dust', 'one', 'corner', 'i', 'saw', 'was'], ['charred', 'and', 'shattered', 'perhaps', 'i', 'thought', 'by', 'an', 'explosion', 'among', 'the'], ['specimens', 'in', 'another', 'place', 'was', 'a', 'vast', 'array', 'of', 'idols', 'polynesian'], ['mexican', 'grecian', 'phoenician', 'every', 'country', 'on', 'earth', 'i', 'should', 'think'], ['and', 'here', 'yielding', 'to', 'an', 'irresistible', 'impulse', 'i', 'wrote', 'my', 'name', 'upon'], ['the', 'nose', 'of', 'a', 'steatite', 'monster', 'from', 'south', 'america', 'that', 'particularly'], ['took', 'my', 'fancy'], [], ['as', 'the', 'evening', 'drew', 'on', 'my', 'interest', 'waned', 'i', 'went', 'through', 'gallery'], ['after', 'gallery', 'dusty', 'silent', 'often', 'ruinous', 'the', 'exhibits', 'sometimes'], ['mere', 'heaps', 'of', 'rust', 'and', 'lignite', 'sometimes', 'fresher', 'in', 'one', 'place', 'i'], ['suddenly', 'found', 'myself', 'near', 'the', 'model', 'of', 'a', 'tin', 'mine', 'and', 'then', 'by', 'the'], ['merest', 'accident', 'i', 'discovered', 'in', 'an', 'air', 'tight', 'case', 'two', 'dynamite'], ['cartridges', 'i', 'shouted', 'eureka', 'and', 'smashed', 'the', 'case', 'with', 'joy', 'then'], ['came', 'a', 'doubt', 'i', 'hesitated', 'then', 'selecting', 'a', 'little', 'side', 'gallery'], ['i', 'made', 'my', 'essay', 'i', 'never', 'felt', 'such', 'a', 'disappointment', 'as', 'i', 'did', 'in'], ['waiting', 'five', 'ten', 'fifteen', 'minutes', 'for', 'an', 'explosion', 'that', 'never', 'came'], ['of', 'course', 'the', 'things', 'were', 'dummies', 'as', 'i', 'might', 'have', 'guessed', 'from'], ['their', 'presence', 'i', 'really', 'believe', 'that', 'had', 'they', 'not', 'been', 'so', 'i', 'should'], ['have', 'rushed', 'off', 'incontinently', 'and', 'blown', 'sphinx', 'bronze', 'doors', 'and'], ['as', 'it', 'proved', 'my', 'chances', 'of', 'finding', 'the', 'time', 'machine', 'all', 'together'], ['into', 'non', 'existence'], [], ['it', 'was', 'after', 'that', 'i', 'think', 'that', 'we', 'came', 'to', 'a', 'little', 'open', 'court'], ['within', 'the', 'palace', 'it', 'was', 'turfed', 'and', 'had', 'three', 'fruit', 'trees', 'so', 'we'], ['rested', 'and', 'refreshed', 'ourselves', 'towards', 'sunset', 'i', 'began', 'to', 'consider'], ['our', 'position', 'night', 'was', 'creeping', 'upon', 'us', 'and', 'my', 'inaccessible'], ['hiding', 'place', 'had', 'still', 'to', 'be', 'found', 'but', 'that', 'troubled', 'me', 'very', 'little'], ['now', 'i', 'had', 'in', 'my', 'possession', 'a', 'thing', 'that', 'was', 'perhaps', 'the', 'best', 'of'], ['all', 'defences', 'against', 'the', 'morlocks', 'i', 'had', 'matches', 'i', 'had', 'the', 'camphor'], ['in', 'my', 'pocket', 'too', 'if', 'a', 'blaze', 'were', 'needed', 'it', 'seemed', 'to', 'me', 'that'], ['the', 'best', 'thing', 'we', 'could', 'do', 'would', 'be', 'to', 'pass', 'the', 'night', 'in', 'the', 'open'], ['protected', 'by', 'a', 'fire', 'in', 'the', 'morning', 'there', 'was', 'the', 'getting', 'of', 'the'], ['time', 'machine', 'towards', 'that', 'as', 'yet', 'i', 'had', 'only', 'my', 'iron', 'mace', 'but'], ['now', 'with', 'my', 'growing', 'knowledge', 'i', 'felt', 'very', 'differently', 'towards'], ['those', 'bronze', 'doors', 'up', 'to', 'this', 'i', 'had', 'refrained', 'from', 'forcing', 'them'], ['largely', 'because', 'of', 'the', 'mystery', 'on', 'the', 'other', 'side', 'they', 'had', 'never'], ['impressed', 'me', 'as', 'being', 'very', 'strong', 'and', 'i', 'hoped', 'to', 'find', 'my', 'bar', 'of'], ['iron', 'not', 'altogether', 'inadequate', 'for', 'the', 'work'], [], [], [], [], ['ix'], [], [], ['we', 'emerged', 'from', 'the', 'palace', 'while', 'the', 'sun', 'was', 'still', 'in', 'part', 'above'], ['the', 'horizon', 'i', 'was', 'determined', 'to', 'reach', 'the', 'white', 'sphinx', 'early', 'the'], ['next', 'morning', 'and', 'ere', 'the', 'dusk', 'i', 'purposed', 'pushing', 'through', 'the', 'woods'], ['that', 'had', 'stopped', 'me', 'on', 'the', 'previous', 'journey', 'my', 'plan', 'was', 'to', 'go', 'as'], ['far', 'as', 'possible', 'that', 'night', 'and', 'then', 'building', 'a', 'fire', 'to', 'sleep'], ['in', 'the', 'protection', 'of', 'its', 'glare', 'accordingly', 'as', 'we', 'went', 'along', 'i'], ['gathered', 'any', 'sticks', 'or', 'dried', 'grass', 'i', 'saw', 'and', 'presently', 'had', 'my', 'arms'], ['full', 'of', 'such', 'litter', 'thus', 'loaded', 'our', 'progress', 'was', 'slower', 'than', 'i', 'had'], ['anticipated', 'and', 'besides', 'weena', 'was', 'tired', 'and', 'i', 'began', 'to', 'suffer', 'from'], ['sleepiness', 'too', 'so', 'that', 'it', 'was', 'full', 'night', 'before', 'we', 'reached', 'the'], ['wood', 'upon', 'the', 'shrubby', 'hill', 'of', 'its', 'edge', 'weena', 'would', 'have', 'stopped'], ['fearing', 'the', 'darkness', 'before', 'us', 'but', 'a', 'singular', 'sense', 'of', 'impending'], ['calamity', 'that', 'should', 'indeed', 'have', 'served', 'me', 'as', 'a', 'warning', 'drove', 'me'], ['onward', 'i', 'had', 'been', 'without', 'sleep', 'for', 'a', 'night', 'and', 'two', 'days', 'and', 'i', 'was'], ['feverish', 'and', 'irritable', 'i', 'felt', 'sleep', 'coming', 'upon', 'me', 'and', 'the'], ['morlocks', 'with', 'it'], [], ['while', 'we', 'hesitated', 'among', 'the', 'black', 'bushes', 'behind', 'us', 'and', 'dim'], ['against', 'their', 'blackness', 'i', 'saw', 'three', 'crouching', 'figures', 'there', 'was'], ['scrub', 'and', 'long', 'grass', 'all', 'about', 'us', 'and', 'i', 'did', 'not', 'feel', 'safe', 'from'], ['their', 'insidious', 'approach', 'the', 'forest', 'i', 'calculated', 'was', 'rather'], ['less', 'than', 'a', 'mile', 'across', 'if', 'we', 'could', 'get', 'through', 'it', 'to', 'the', 'bare'], ['hill', 'side', 'there', 'as', 'it', 'seemed', 'to', 'me', 'was', 'an', 'altogether', 'safer'], ['resting', 'place', 'i', 'thought', 'that', 'with', 'my', 'matches', 'and', 'my', 'camphor', 'i', 'could'], ['contrive', 'to', 'keep', 'my', 'path', 'illuminated', 'through', 'the', 'woods', 'yet', 'it', 'was'], ['evident', 'that', 'if', 'i', 'was', 'to', 'flourish', 'matches', 'with', 'my', 'hands', 'i', 'should'], ['have', 'to', 'abandon', 'my', 'firewood', 'so', 'rather', 'reluctantly', 'i', 'put', 'it', 'down'], ['and', 'then', 'it', 'came', 'into', 'my', 'head', 'that', 'i', 'would', 'amaze', 'our', 'friends', 'behind'], ['by', 'lighting', 'it', 'i', 'was', 'to', 'discover', 'the', 'atrocious', 'folly', 'of', 'this'], ['proceeding', 'but', 'it', 'came', 'to', 'my', 'mind', 'as', 'an', 'ingenious', 'move', 'for', 'covering'], ['our', 'retreat'], [], ['i', 'don', 't', 'know', 'if', 'you', 'have', 'ever', 'thought', 'what', 'a', 'rare', 'thing', 'flame', 'must'], ['be', 'in', 'the', 'absence', 'of', 'man', 'and', 'in', 'a', 'temperate', 'climate', 'the', 'sun', 's'], ['heat', 'is', 'rarely', 'strong', 'enough', 'to', 'burn', 'even', 'when', 'it', 'is', 'focused', 'by'], ['dewdrops', 'as', 'is', 'sometimes', 'the', 'case', 'in', 'more', 'tropical', 'districts'], ['lightning', 'may', 'blast', 'and', 'blacken', 'but', 'it', 'rarely', 'gives', 'rise', 'to'], ['widespread', 'fire', 'decaying', 'vegetation', 'may', 'occasionally', 'smoulder', 'with'], ['the', 'heat', 'of', 'its', 'fermentation', 'but', 'this', 'rarely', 'results', 'in', 'flame', 'in'], ['this', 'decadence', 'too', 'the', 'art', 'of', 'fire', 'making', 'had', 'been', 'forgotten', 'on'], ['the', 'earth', 'the', 'red', 'tongues', 'that', 'went', 'licking', 'up', 'my', 'heap', 'of', 'wood', 'were'], ['an', 'altogether', 'new', 'and', 'strange', 'thing', 'to', 'weena'], [], ['she', 'wanted', 'to', 'run', 'to', 'it', 'and', 'play', 'with', 'it', 'i', 'believe', 'she', 'would', 'have'], ['cast', 'herself', 'into', 'it', 'had', 'i', 'not', 'restrained', 'her', 'but', 'i', 'caught', 'her', 'up'], ['and', 'in', 'spite', 'of', 'her', 'struggles', 'plunged', 'boldly', 'before', 'me', 'into', 'the'], ['wood', 'for', 'a', 'little', 'way', 'the', 'glare', 'of', 'my', 'fire', 'lit', 'the', 'path', 'looking'], ['back', 'presently', 'i', 'could', 'see', 'through', 'the', 'crowded', 'stems', 'that', 'from', 'my'], ['heap', 'of', 'sticks', 'the', 'blaze', 'had', 'spread', 'to', 'some', 'bushes', 'adjacent', 'and', 'a'], ['curved', 'line', 'of', 'fire', 'was', 'creeping', 'up', 'the', 'grass', 'of', 'the', 'hill', 'i', 'laughed'], ['at', 'that', 'and', 'turned', 'again', 'to', 'the', 'dark', 'trees', 'before', 'me', 'it', 'was', 'very'], ['black', 'and', 'weena', 'clung', 'to', 'me', 'convulsively', 'but', 'there', 'was', 'still', 'as'], ['my', 'eyes', 'grew', 'accustomed', 'to', 'the', 'darkness', 'sufficient', 'light', 'for', 'me', 'to'], ['avoid', 'the', 'stems', 'overhead', 'it', 'was', 'simply', 'black', 'except', 'where', 'a', 'gap', 'of'], ['remote', 'blue', 'sky', 'shone', 'down', 'upon', 'us', 'here', 'and', 'there', 'i', 'struck', 'none', 'of'], ['my', 'matches', 'because', 'i', 'had', 'no', 'hand', 'free', 'upon', 'my', 'left', 'arm', 'i', 'carried', 'my'], ['little', 'one', 'in', 'my', 'right', 'hand', 'i', 'had', 'my', 'iron', 'bar'], [], ['for', 'some', 'way', 'i', 'heard', 'nothing', 'but', 'the', 'crackling', 'twigs', 'under', 'my', 'feet'], ['the', 'faint', 'rustle', 'of', 'the', 'breeze', 'above', 'and', 'my', 'own', 'breathing', 'and', 'the'], ['throb', 'of', 'the', 'blood', 'vessels', 'in', 'my', 'ears', 'then', 'i', 'seemed', 'to', 'know', 'of', 'a'], ['pattering', 'about', 'me', 'i', 'pushed', 'on', 'grimly', 'the', 'pattering', 'grew', 'more'], ['distinct', 'and', 'then', 'i', 'caught', 'the', 'same', 'queer', 'sound', 'and', 'voices', 'i', 'had'], ['heard', 'in', 'the', 'under', 'world', 'there', 'were', 'evidently', 'several', 'of', 'the'], ['morlocks', 'and', 'they', 'were', 'closing', 'in', 'upon', 'me', 'indeed', 'in', 'another'], ['minute', 'i', 'felt', 'a', 'tug', 'at', 'my', 'coat', 'then', 'something', 'at', 'my', 'arm', 'and', 'weena'], ['shivered', 'violently', 'and', 'became', 'quite', 'still'], [], ['it', 'was', 'time', 'for', 'a', 'match', 'but', 'to', 'get', 'one', 'i', 'must', 'put', 'her', 'down', 'i', 'did'], ['so', 'and', 'as', 'i', 'fumbled', 'with', 'my', 'pocket', 'a', 'struggle', 'began', 'in', 'the'], ['darkness', 'about', 'my', 'knees', 'perfectly', 'silent', 'on', 'her', 'part', 'and', 'with', 'the'], ['same', 'peculiar', 'cooing', 'sounds', 'from', 'the', 'morlocks', 'soft', 'little', 'hands'], ['too', 'were', 'creeping', 'over', 'my', 'coat', 'and', 'back', 'touching', 'even', 'my', 'neck'], ['then', 'the', 'match', 'scratched', 'and', 'fizzed', 'i', 'held', 'it', 'flaring', 'and', 'saw', 'the'], ['white', 'backs', 'of', 'the', 'morlocks', 'in', 'flight', 'amid', 'the', 'trees', 'i', 'hastily', 'took'], ['a', 'lump', 'of', 'camphor', 'from', 'my', 'pocket', 'and', 'prepared', 'to', 'light', 'it', 'as', 'soon'], ['as', 'the', 'match', 'should', 'wane', 'then', 'i', 'looked', 'at', 'weena', 'she', 'was', 'lying'], ['clutching', 'my', 'feet', 'and', 'quite', 'motionless', 'with', 'her', 'face', 'to', 'the', 'ground'], ['with', 'a', 'sudden', 'fright', 'i', 'stooped', 'to', 'her', 'she', 'seemed', 'scarcely', 'to'], ['breathe', 'i', 'lit', 'the', 'block', 'of', 'camphor', 'and', 'flung', 'it', 'to', 'the', 'ground'], ['and', 'as', 'it', 'split', 'and', 'flared', 'up', 'and', 'drove', 'back', 'the', 'morlocks', 'and', 'the'], ['shadows', 'i', 'knelt', 'down', 'and', 'lifted', 'her', 'the', 'wood', 'behind', 'seemed', 'full', 'of'], ['the', 'stir', 'and', 'murmur', 'of', 'a', 'great', 'company'], [], ['she', 'seemed', 'to', 'have', 'fainted', 'i', 'put', 'her', 'carefully', 'upon', 'my', 'shoulder'], ['and', 'rose', 'to', 'push', 'on', 'and', 'then', 'there', 'came', 'a', 'horrible', 'realization', 'in'], ['manoeuvring', 'with', 'my', 'matches', 'and', 'weena', 'i', 'had', 'turned', 'myself', 'about'], ['several', 'times', 'and', 'now', 'i', 'had', 'not', 'the', 'faintest', 'idea', 'in', 'what', 'direction'], ['lay', 'my', 'path', 'for', 'all', 'i', 'knew', 'i', 'might', 'be', 'facing', 'back', 'towards', 'the'], ['palace', 'of', 'green', 'porcelain', 'i', 'found', 'myself', 'in', 'a', 'cold', 'sweat', 'i', 'had', 'to'], ['think', 'rapidly', 'what', 'to', 'do', 'i', 'determined', 'to', 'build', 'a', 'fire', 'and', 'encamp'], ['where', 'we', 'were', 'i', 'put', 'weena', 'still', 'motionless', 'down', 'upon', 'a', 'turfy'], ['bole', 'and', 'very', 'hastily', 'as', 'my', 'first', 'lump', 'of', 'camphor', 'waned', 'i', 'began'], ['collecting', 'sticks', 'and', 'leaves', 'here', 'and', 'there', 'out', 'of', 'the', 'darkness'], ['round', 'me', 'the', 'morlocks', 'eyes', 'shone', 'like', 'carbuncles'], [], ['the', 'camphor', 'flickered', 'and', 'went', 'out', 'i', 'lit', 'a', 'match', 'and', 'as', 'i', 'did', 'so'], ['two', 'white', 'forms', 'that', 'had', 'been', 'approaching', 'weena', 'dashed', 'hastily', 'away'], ['one', 'was', 'so', 'blinded', 'by', 'the', 'light', 'that', 'he', 'came', 'straight', 'for', 'me', 'and', 'i'], ['felt', 'his', 'bones', 'grind', 'under', 'the', 'blow', 'of', 'my', 'fist', 'he', 'gave', 'a', 'whoop', 'of'], ['dismay', 'staggered', 'a', 'little', 'way', 'and', 'fell', 'down', 'i', 'lit', 'another', 'piece'], ['of', 'camphor', 'and', 'went', 'on', 'gathering', 'my', 'bonfire', 'presently', 'i', 'noticed'], ['how', 'dry', 'was', 'some', 'of', 'the', 'foliage', 'above', 'me', 'for', 'since', 'my', 'arrival'], ['on', 'the', 'time', 'machine', 'a', 'matter', 'of', 'a', 'week', 'no', 'rain', 'had', 'fallen', 'so'], ['instead', 'of', 'casting', 'about', 'among', 'the', 'trees', 'for', 'fallen', 'twigs', 'i', 'began'], ['leaping', 'up', 'and', 'dragging', 'down', 'branches', 'very', 'soon', 'i', 'had', 'a', 'choking'], ['smoky', 'fire', 'of', 'green', 'wood', 'and', 'dry', 'sticks', 'and', 'could', 'economize', 'my'], ['camphor', 'then', 'i', 'turned', 'to', 'where', 'weena', 'lay', 'beside', 'my', 'iron', 'mace', 'i'], ['tried', 'what', 'i', 'could', 'to', 'revive', 'her', 'but', 'she', 'lay', 'like', 'one', 'dead', 'i', 'could'], ['not', 'even', 'satisfy', 'myself', 'whether', 'or', 'not', 'she', 'breathed'], [], ['now', 'the', 'smoke', 'of', 'the', 'fire', 'beat', 'over', 'towards', 'me', 'and', 'it', 'must', 'have'], ['made', 'me', 'heavy', 'of', 'a', 'sudden', 'moreover', 'the', 'vapour', 'of', 'camphor', 'was', 'in'], ['the', 'air', 'my', 'fire', 'would', 'not', 'need', 'replenishing', 'for', 'an', 'hour', 'or', 'so', 'i'], ['felt', 'very', 'weary', 'after', 'my', 'exertion', 'and', 'sat', 'down', 'the', 'wood', 'too', 'was'], ['full', 'of', 'a', 'slumbrous', 'murmur', 'that', 'i', 'did', 'not', 'understand', 'i', 'seemed', 'just'], ['to', 'nod', 'and', 'open', 'my', 'eyes', 'but', 'all', 'was', 'dark', 'and', 'the', 'morlocks', 'had'], ['their', 'hands', 'upon', 'me', 'flinging', 'off', 'their', 'clinging', 'fingers', 'i', 'hastily'], ['felt', 'in', 'my', 'pocket', 'for', 'the', 'match', 'box', 'and', 'it', 'had', 'gone', 'then', 'they'], ['gripped', 'and', 'closed', 'with', 'me', 'again', 'in', 'a', 'moment', 'i', 'knew', 'what', 'had'], ['happened', 'i', 'had', 'slept', 'and', 'my', 'fire', 'had', 'gone', 'out', 'and', 'the', 'bitterness'], ['of', 'death', 'came', 'over', 'my', 'soul', 'the', 'forest', 'seemed', 'full', 'of', 'the', 'smell', 'of'], ['burning', 'wood', 'i', 'was', 'caught', 'by', 'the', 'neck', 'by', 'the', 'hair', 'by', 'the', 'arms'], ['and', 'pulled', 'down', 'it', 'was', 'indescribably', 'horrible', 'in', 'the', 'darkness', 'to'], ['feel', 'all', 'these', 'soft', 'creatures', 'heaped', 'upon', 'me', 'i', 'felt', 'as', 'if', 'i', 'was', 'in'], ['a', 'monstrous', 'spider', 's', 'web', 'i', 'was', 'overpowered', 'and', 'went', 'down', 'i', 'felt'], ['little', 'teeth', 'nipping', 'at', 'my', 'neck', 'i', 'rolled', 'over', 'and', 'as', 'i', 'did', 'so', 'my'], ['hand', 'came', 'against', 'my', 'iron', 'lever', 'it', 'gave', 'me', 'strength', 'i', 'struggled'], ['up', 'shaking', 'the', 'human', 'rats', 'from', 'me', 'and', 'holding', 'the', 'bar', 'short'], ['i', 'thrust', 'where', 'i', 'judged', 'their', 'faces', 'might', 'be', 'i', 'could', 'feel', 'the'], ['succulent', 'giving', 'of', 'flesh', 'and', 'bone', 'under', 'my', 'blows', 'and', 'for', 'a', 'moment'], ['i', 'was', 'free'], [], ['the', 'strange', 'exultation', 'that', 'so', 'often', 'seems', 'to', 'accompany', 'hard'], ['fighting', 'came', 'upon', 'me', 'i', 'knew', 'that', 'both', 'i', 'and', 'weena', 'were', 'lost', 'but', 'i'], ['determined', 'to', 'make', 'the', 'morlocks', 'pay', 'for', 'their', 'meat', 'i', 'stood', 'with', 'my'], ['back', 'to', 'a', 'tree', 'swinging', 'the', 'iron', 'bar', 'before', 'me', 'the', 'whole', 'wood', 'was'], ['full', 'of', 'the', 'stir', 'and', 'cries', 'of', 'them', 'a', 'minute', 'passed', 'their', 'voices'], ['seemed', 'to', 'rise', 'to', 'a', 'higher', 'pitch', 'of', 'excitement', 'and', 'their', 'movements'], ['grew', 'faster', 'yet', 'none', 'came', 'within', 'reach', 'i', 'stood', 'glaring', 'at', 'the'], ['blackness', 'then', 'suddenly', 'came', 'hope', 'what', 'if', 'the', 'morlocks', 'were'], ['afraid', 'and', 'close', 'on', 'the', 'heels', 'of', 'that', 'came', 'a', 'strange', 'thing', 'the'], ['darkness', 'seemed', 'to', 'grow', 'luminous', 'very', 'dimly', 'i', 'began', 'to', 'see', 'the'], ['morlocks', 'about', 'me', 'three', 'battered', 'at', 'my', 'feet', 'and', 'then', 'i', 'recognized'], ['with', 'incredulous', 'surprise', 'that', 'the', 'others', 'were', 'running', 'in', 'an'], ['incessant', 'stream', 'as', 'it', 'seemed', 'from', 'behind', 'me', 'and', 'away', 'through', 'the'], ['wood', 'in', 'front', 'and', 'their', 'backs', 'seemed', 'no', 'longer', 'white', 'but', 'reddish'], ['as', 'i', 'stood', 'agape', 'i', 'saw', 'a', 'little', 'red', 'spark', 'go', 'drifting', 'across', 'a', 'gap'], ['of', 'starlight', 'between', 'the', 'branches', 'and', 'vanish', 'and', 'at', 'that', 'i'], ['understood', 'the', 'smell', 'of', 'burning', 'wood', 'the', 'slumbrous', 'murmur', 'that', 'was'], ['growing', 'now', 'into', 'a', 'gusty', 'roar', 'the', 'red', 'glow', 'and', 'the', 'morlocks'], ['flight'], [], ['stepping', 'out', 'from', 'behind', 'my', 'tree', 'and', 'looking', 'back', 'i', 'saw', 'through'], ['the', 'black', 'pillars', 'of', 'the', 'nearer', 'trees', 'the', 'flames', 'of', 'the', 'burning'], ['forest', 'it', 'was', 'my', 'first', 'fire', 'coming', 'after', 'me', 'with', 'that', 'i', 'looked', 'for'], ['weena', 'but', 'she', 'was', 'gone', 'the', 'hissing', 'and', 'crackling', 'behind', 'me', 'the'], ['explosive', 'thud', 'as', 'each', 'fresh', 'tree', 'burst', 'into', 'flame', 'left', 'little'], ['time', 'for', 'reflection', 'my', 'iron', 'bar', 'still', 'gripped', 'i', 'followed', 'in', 'the'], ['morlocks', 'path', 'it', 'was', 'a', 'close', 'race', 'once', 'the', 'flames', 'crept', 'forward'], ['so', 'swiftly', 'on', 'my', 'right', 'as', 'i', 'ran', 'that', 'i', 'was', 'outflanked', 'and', 'had', 'to'], ['strike', 'off', 'to', 'the', 'left', 'but', 'at', 'last', 'i', 'emerged', 'upon', 'a', 'small', 'open'], ['space', 'and', 'as', 'i', 'did', 'so', 'a', 'morlock', 'came', 'blundering', 'towards', 'me', 'and'], ['past', 'me', 'and', 'went', 'on', 'straight', 'into', 'the', 'fire'], [], ['and', 'now', 'i', 'was', 'to', 'see', 'the', 'most', 'weird', 'and', 'horrible', 'thing', 'i', 'think', 'of'], ['all', 'that', 'i', 'beheld', 'in', 'that', 'future', 'age', 'this', 'whole', 'space', 'was', 'as', 'bright'], ['as', 'day', 'with', 'the', 'reflection', 'of', 'the', 'fire', 'in', 'the', 'centre', 'was', 'a', 'hillock'], ['or', 'tumulus', 'surmounted', 'by', 'a', 'scorched', 'hawthorn', 'beyond', 'this', 'was'], ['another', 'arm', 'of', 'the', 'burning', 'forest', 'with', 'yellow', 'tongues', 'already'], ['writhing', 'from', 'it', 'completely', 'encircling', 'the', 'space', 'with', 'a', 'fence', 'of'], ['fire', 'upon', 'the', 'hill', 'side', 'were', 'some', 'thirty', 'or', 'forty', 'morlocks', 'dazzled'], ['by', 'the', 'light', 'and', 'heat', 'and', 'blundering', 'hither', 'and', 'thither', 'against'], ['each', 'other', 'in', 'their', 'bewilderment', 'at', 'first', 'i', 'did', 'not', 'realize', 'their'], ['blindness', 'and', 'struck', 'furiously', 'at', 'them', 'with', 'my', 'bar', 'in', 'a', 'frenzy', 'of'], ['fear', 'as', 'they', 'approached', 'me', 'killing', 'one', 'and', 'crippling', 'several', 'more'], ['but', 'when', 'i', 'had', 'watched', 'the', 'gestures', 'of', 'one', 'of', 'them', 'groping', 'under', 'the'], ['hawthorn', 'against', 'the', 'red', 'sky', 'and', 'heard', 'their', 'moans', 'i', 'was', 'assured'], ['of', 'their', 'absolute', 'helplessness', 'and', 'misery', 'in', 'the', 'glare', 'and', 'i', 'struck'], ['no', 'more', 'of', 'them'], [], ['yet', 'every', 'now', 'and', 'then', 'one', 'would', 'come', 'straight', 'towards', 'me', 'setting'], ['loose', 'a', 'quivering', 'horror', 'that', 'made', 'me', 'quick', 'to', 'elude', 'him', 'at', 'one'], ['time', 'the', 'flames', 'died', 'down', 'somewhat', 'and', 'i', 'feared', 'the', 'foul', 'creatures'], ['would', 'presently', 'be', 'able', 'to', 'see', 'me', 'i', 'was', 'thinking', 'of', 'beginning', 'the'], ['fight', 'by', 'killing', 'some', 'of', 'them', 'before', 'this', 'should', 'happen', 'but', 'the'], ['fire', 'burst', 'out', 'again', 'brightly', 'and', 'i', 'stayed', 'my', 'hand', 'i', 'walked', 'about'], ['the', 'hill', 'among', 'them', 'and', 'avoided', 'them', 'looking', 'for', 'some', 'trace', 'of'], ['weena', 'but', 'weena', 'was', 'gone'], [], ['at', 'last', 'i', 'sat', 'down', 'on', 'the', 'summit', 'of', 'the', 'hillock', 'and', 'watched', 'this'], ['strange', 'incredible', 'company', 'of', 'blind', 'things', 'groping', 'to', 'and', 'fro', 'and'], ['making', 'uncanny', 'noises', 'to', 'each', 'other', 'as', 'the', 'glare', 'of', 'the', 'fire', 'beat'], ['on', 'them', 'the', 'coiling', 'uprush', 'of', 'smoke', 'streamed', 'across', 'the', 'sky', 'and'], ['through', 'the', 'rare', 'tatters', 'of', 'that', 'red', 'canopy', 'remote', 'as', 'though', 'they'], ['belonged', 'to', 'another', 'universe', 'shone', 'the', 'little', 'stars', 'two', 'or', 'three'], ['morlocks', 'came', 'blundering', 'into', 'me', 'and', 'i', 'drove', 'them', 'off', 'with', 'blows'], ['of', 'my', 'fists', 'trembling', 'as', 'i', 'did', 'so'], [], ['for', 'the', 'most', 'part', 'of', 'that', 'night', 'i', 'was', 'persuaded', 'it', 'was', 'a', 'nightmare'], ['i', 'bit', 'myself', 'and', 'screamed', 'in', 'a', 'passionate', 'desire', 'to', 'awake', 'i', 'beat'], ['the', 'ground', 'with', 'my', 'hands', 'and', 'got', 'up', 'and', 'sat', 'down', 'again', 'and'], ['wandered', 'here', 'and', 'there', 'and', 'again', 'sat', 'down', 'then', 'i', 'would', 'fall', 'to'], ['rubbing', 'my', 'eyes', 'and', 'calling', 'upon', 'god', 'to', 'let', 'me', 'awake', 'thrice', 'i', 'saw'], ['morlocks', 'put', 'their', 'heads', 'down', 'in', 'a', 'kind', 'of', 'agony', 'and', 'rush', 'into', 'the'], ['flames', 'but', 'at', 'last', 'above', 'the', 'subsiding', 'red', 'of', 'the', 'fire', 'above', 'the'], ['streaming', 'masses', 'of', 'black', 'smoke', 'and', 'the', 'whitening', 'and', 'blackening'], ['tree', 'stumps', 'and', 'the', 'diminishing', 'numbers', 'of', 'these', 'dim', 'creatures'], ['came', 'the', 'white', 'light', 'of', 'the', 'day'], [], ['i', 'searched', 'again', 'for', 'traces', 'of', 'weena', 'but', 'there', 'were', 'none', 'it', 'was'], ['plain', 'that', 'they', 'had', 'left', 'her', 'poor', 'little', 'body', 'in', 'the', 'forest', 'i'], ['cannot', 'describe', 'how', 'it', 'relieved', 'me', 'to', 'think', 'that', 'it', 'had', 'escaped', 'the'], ['awful', 'fate', 'to', 'which', 'it', 'seemed', 'destined', 'as', 'i', 'thought', 'of', 'that', 'i', 'was'], ['almost', 'moved', 'to', 'begin', 'a', 'massacre', 'of', 'the', 'helpless', 'abominations', 'about'], ['me', 'but', 'i', 'contained', 'myself', 'the', 'hillock', 'as', 'i', 'have', 'said', 'was', 'a', 'kind'], ['of', 'island', 'in', 'the', 'forest', 'from', 'its', 'summit', 'i', 'could', 'now', 'make', 'out'], ['through', 'a', 'haze', 'of', 'smoke', 'the', 'palace', 'of', 'green', 'porcelain', 'and', 'from', 'that'], ['i', 'could', 'get', 'my', 'bearings', 'for', 'the', 'white', 'sphinx', 'and', 'so', 'leaving', 'the'], ['remnant', 'of', 'these', 'damned', 'souls', 'still', 'going', 'hither', 'and', 'thither', 'and'], ['moaning', 'as', 'the', 'day', 'grew', 'clearer', 'i', 'tied', 'some', 'grass', 'about', 'my', 'feet'], ['and', 'limped', 'on', 'across', 'smoking', 'ashes', 'and', 'among', 'black', 'stems', 'that', 'still'], ['pulsated', 'internally', 'with', 'fire', 'towards', 'the', 'hiding', 'place', 'of', 'the', 'time'], ['machine', 'i', 'walked', 'slowly', 'for', 'i', 'was', 'almost', 'exhausted', 'as', 'well', 'as'], ['lame', 'and', 'i', 'felt', 'the', 'intensest', 'wretchedness', 'for', 'the', 'horrible', 'death'], ['of', 'little', 'weena', 'it', 'seemed', 'an', 'overwhelming', 'calamity', 'now', 'in', 'this'], ['old', 'familiar', 'room', 'it', 'is', 'more', 'like', 'the', 'sorrow', 'of', 'a', 'dream', 'than', 'an'], ['actual', 'loss', 'but', 'that', 'morning', 'it', 'left', 'me', 'absolutely', 'lonely'], ['again', 'terribly', 'alone', 'i', 'began', 'to', 'think', 'of', 'this', 'house', 'of', 'mine', 'of'], ['this', 'fireside', 'of', 'some', 'of', 'you', 'and', 'with', 'such', 'thoughts', 'came', 'a', 'longing'], ['that', 'was', 'pain'], [], ['but', 'as', 'i', 'walked', 'over', 'the', 'smoking', 'ashes', 'under', 'the', 'bright', 'morning'], ['sky', 'i', 'made', 'a', 'discovery', 'in', 'my', 'trouser', 'pocket', 'were', 'still', 'some', 'loose'], ['matches', 'the', 'box', 'must', 'have', 'leaked', 'before', 'it', 'was', 'lost'], [], [], [], [], ['x'], [], [], ['about', 'eight', 'or', 'nine', 'in', 'the', 'morning', 'i', 'came', 'to', 'the', 'same', 'seat', 'of'], ['yellow', 'metal', 'from', 'which', 'i', 'had', 'viewed', 'the', 'world', 'upon', 'the', 'evening', 'of'], ['my', 'arrival', 'i', 'thought', 'of', 'my', 'hasty', 'conclusions', 'upon', 'that', 'evening', 'and'], ['could', 'not', 'refrain', 'from', 'laughing', 'bitterly', 'at', 'my', 'confidence', 'here'], ['was', 'the', 'same', 'beautiful', 'scene', 'the', 'same', 'abundant', 'foliage', 'the', 'same'], ['splendid', 'palaces', 'and', 'magnificent', 'ruins', 'the', 'same', 'silver', 'river'], ['running', 'between', 'its', 'fertile', 'banks', 'the', 'gay', 'robes', 'of', 'the', 'beautiful'], ['people', 'moved', 'hither', 'and', 'thither', 'among', 'the', 'trees', 'some', 'were', 'bathing'], ['in', 'exactly', 'the', 'place', 'where', 'i', 'had', 'saved', 'weena', 'and', 'that', 'suddenly', 'gave'], ['me', 'a', 'keen', 'stab', 'of', 'pain', 'and', 'like', 'blots', 'upon', 'the', 'landscape', 'rose', 'the'], ['cupolas', 'above', 'the', 'ways', 'to', 'the', 'under', 'world', 'i', 'understood', 'now', 'what', 'all'], ['the', 'beauty', 'of', 'the', 'over', 'world', 'people', 'covered', 'very', 'pleasant', 'was', 'their'], ['day', 'as', 'pleasant', 'as', 'the', 'day', 'of', 'the', 'cattle', 'in', 'the', 'field', 'like', 'the'], ['cattle', 'they', 'knew', 'of', 'no', 'enemies', 'and', 'provided', 'against', 'no', 'needs', 'and'], ['their', 'end', 'was', 'the', 'same'], [], ['i', 'grieved', 'to', 'think', 'how', 'brief', 'the', 'dream', 'of', 'the', 'human', 'intellect', 'had'], ['been', 'it', 'had', 'committed', 'suicide', 'it', 'had', 'set', 'itself', 'steadfastly'], ['towards', 'comfort', 'and', 'ease', 'a', 'balanced', 'society', 'with', 'security', 'and'], ['permanency', 'as', 'its', 'watchword', 'it', 'had', 'attained', 'its', 'hopes', 'to', 'come'], ['to', 'this', 'at', 'last', 'once', 'life', 'and', 'property', 'must', 'have', 'reached', 'almost'], ['absolute', 'safety', 'the', 'rich', 'had', 'been', 'assured', 'of', 'his', 'wealth', 'and'], ['comfort', 'the', 'toiler', 'assured', 'of', 'his', 'life', 'and', 'work', 'no', 'doubt', 'in', 'that'], ['perfect', 'world', 'there', 'had', 'been', 'no', 'unemployed', 'problem', 'no', 'social'], ['question', 'left', 'unsolved', 'and', 'a', 'great', 'quiet', 'had', 'followed'], [], ['it', 'is', 'a', 'law', 'of', 'nature', 'we', 'overlook', 'that', 'intellectual', 'versatility'], ['is', 'the', 'compensation', 'for', 'change', 'danger', 'and', 'trouble', 'an', 'animal'], ['perfectly', 'in', 'harmony', 'with', 'its', 'environment', 'is', 'a', 'perfect', 'mechanism'], ['nature', 'never', 'appeals', 'to', 'intelligence', 'until', 'habit', 'and', 'instinct', 'are'], ['useless', 'there', 'is', 'no', 'intelligence', 'where', 'there', 'is', 'no', 'change', 'and', 'no'], ['need', 'of', 'change', 'only', 'those', 'animals', 'partake', 'of', 'intelligence', 'that', 'have'], ['to', 'meet', 'a', 'huge', 'variety', 'of', 'needs', 'and', 'dangers'], [], ['so', 'as', 'i', 'see', 'it', 'the', 'upper', 'world', 'man', 'had', 'drifted', 'towards', 'his'], ['feeble', 'prettiness', 'and', 'the', 'under', 'world', 'to', 'mere', 'mechanical', 'industry'], ['but', 'that', 'perfect', 'state', 'had', 'lacked', 'one', 'thing', 'even', 'for', 'mechanical'], ['perfection', 'absolute', 'permanency', 'apparently', 'as', 'time', 'went', 'on', 'the'], ['feeding', 'of', 'the', 'under', 'world', 'however', 'it', 'was', 'effected', 'had', 'become'], ['disjointed', 'mother', 'necessity', 'who', 'had', 'been', 'staved', 'off', 'for', 'a'], ['few', 'thousand', 'years', 'came', 'back', 'again', 'and', 'she', 'began', 'below', 'the'], ['under', 'world', 'being', 'in', 'contact', 'with', 'machinery', 'which', 'however', 'perfect'], ['still', 'needs', 'some', 'little', 'thought', 'outside', 'habit', 'had', 'probably', 'retained'], ['perforce', 'rather', 'more', 'initiative', 'if', 'less', 'of', 'every', 'other', 'human'], ['character', 'than', 'the', 'upper', 'and', 'when', 'other', 'meat', 'failed', 'them', 'they'], ['turned', 'to', 'what', 'old', 'habit', 'had', 'hitherto', 'forbidden', 'so', 'i', 'say', 'i', 'saw', 'it'], ['in', 'my', 'last', 'view', 'of', 'the', 'world', 'of', 'eight', 'hundred', 'and', 'two', 'thousand', 'seven'], ['hundred', 'and', 'one', 'it', 'may', 'be', 'as', 'wrong', 'an', 'explanation', 'as', 'mortal', 'wit'], ['could', 'invent', 'it', 'is', 'how', 'the', 'thing', 'shaped', 'itself', 'to', 'me', 'and', 'as', 'that', 'i'], ['give', 'it', 'to', 'you'], [], ['after', 'the', 'fatigues', 'excitements', 'and', 'terrors', 'of', 'the', 'past', 'days', 'and'], ['in', 'spite', 'of', 'my', 'grief', 'this', 'seat', 'and', 'the', 'tranquil', 'view', 'and', 'the', 'warm'], ['sunlight', 'were', 'very', 'pleasant', 'i', 'was', 'very', 'tired', 'and', 'sleepy', 'and', 'soon'], ['my', 'theorizing', 'passed', 'into', 'dozing', 'catching', 'myself', 'at', 'that', 'i', 'took', 'my'], ['own', 'hint', 'and', 'spreading', 'myself', 'out', 'upon', 'the', 'turf', 'i', 'had', 'a', 'long', 'and'], ['refreshing', 'sleep'], [], ['i', 'awoke', 'a', 'little', 'before', 'sunsetting', 'i', 'now', 'felt', 'safe', 'against', 'being'], ['caught', 'napping', 'by', 'the', 'morlocks', 'and', 'stretching', 'myself', 'i', 'came', 'on'], ['down', 'the', 'hill', 'towards', 'the', 'white', 'sphinx', 'i', 'had', 'my', 'crowbar', 'in', 'one'], ['hand', 'and', 'the', 'other', 'hand', 'played', 'with', 'the', 'matches', 'in', 'my', 'pocket'], [], ['and', 'now', 'came', 'a', 'most', 'unexpected', 'thing', 'as', 'i', 'approached', 'the', 'pedestal'], ['of', 'the', 'sphinx', 'i', 'found', 'the', 'bronze', 'valves', 'were', 'open', 'they', 'had', 'slid'], ['down', 'into', 'grooves'], [], ['at', 'that', 'i', 'stopped', 'short', 'before', 'them', 'hesitating', 'to', 'enter'], [], ['within', 'was', 'a', 'small', 'apartment', 'and', 'on', 'a', 'raised', 'place', 'in', 'the', 'corner'], ['of', 'this', 'was', 'the', 'time', 'machine', 'i', 'had', 'the', 'small', 'levers', 'in', 'my', 'pocket'], ['so', 'here', 'after', 'all', 'my', 'elaborate', 'preparations', 'for', 'the', 'siege', 'of', 'the'], ['white', 'sphinx', 'was', 'a', 'meek', 'surrender', 'i', 'threw', 'my', 'iron', 'bar', 'away', 'almost'], ['sorry', 'not', 'to', 'use', 'it'], [], ['a', 'sudden', 'thought', 'came', 'into', 'my', 'head', 'as', 'i', 'stooped', 'towards', 'the', 'portal'], ['for', 'once', 'at', 'least', 'i', 'grasped', 'the', 'mental', 'operations', 'of', 'the', 'morlocks'], ['suppressing', 'a', 'strong', 'inclination', 'to', 'laugh', 'i', 'stepped', 'through', 'the'], ['bronze', 'frame', 'and', 'up', 'to', 'the', 'time', 'machine', 'i', 'was', 'surprised', 'to', 'find', 'it'], ['had', 'been', 'carefully', 'oiled', 'and', 'cleaned', 'i', 'have', 'suspected', 'since', 'that'], ['the', 'morlocks', 'had', 'even', 'partially', 'taken', 'it', 'to', 'pieces', 'while', 'trying', 'in'], ['their', 'dim', 'way', 'to', 'grasp', 'its', 'purpose'], [], ['now', 'as', 'i', 'stood', 'and', 'examined', 'it', 'finding', 'a', 'pleasure', 'in', 'the', 'mere'], ['touch', 'of', 'the', 'contrivance', 'the', 'thing', 'i', 'had', 'expected', 'happened', 'the'], ['bronze', 'panels', 'suddenly', 'slid', 'up', 'and', 'struck', 'the', 'frame', 'with', 'a', 'clang'], ['i', 'was', 'in', 'the', 'dark', 'trapped', 'so', 'the', 'morlocks', 'thought', 'at', 'that', 'i'], ['chuckled', 'gleefully'], [], ['i', 'could', 'already', 'hear', 'their', 'murmuring', 'laughter', 'as', 'they', 'came', 'towards'], ['me', 'very', 'calmly', 'i', 'tried', 'to', 'strike', 'the', 'match', 'i', 'had', 'only', 'to', 'fix', 'on'], ['the', 'levers', 'and', 'depart', 'then', 'like', 'a', 'ghost', 'but', 'i', 'had', 'overlooked', 'one'], ['little', 'thing', 'the', 'matches', 'were', 'of', 'that', 'abominable', 'kind', 'that', 'light'], ['only', 'on', 'the', 'box'], [], ['you', 'may', 'imagine', 'how', 'all', 'my', 'calm', 'vanished', 'the', 'little', 'brutes', 'were'], ['close', 'upon', 'me', 'one', 'touched', 'me', 'i', 'made', 'a', 'sweeping', 'blow', 'in', 'the', 'dark', 'at'], ['them', 'with', 'the', 'levers', 'and', 'began', 'to', 'scramble', 'into', 'the', 'saddle', 'of', 'the'], ['machine', 'then', 'came', 'one', 'hand', 'upon', 'me', 'and', 'then', 'another', 'then', 'i', 'had'], ['simply', 'to', 'fight', 'against', 'their', 'persistent', 'fingers', 'for', 'my', 'levers', 'and'], ['at', 'the', 'same', 'time', 'feel', 'for', 'the', 'studs', 'over', 'which', 'these', 'fitted', 'one'], ['indeed', 'they', 'almost', 'got', 'away', 'from', 'me', 'as', 'it', 'slipped', 'from', 'my', 'hand'], ['i', 'had', 'to', 'butt', 'in', 'the', 'dark', 'with', 'my', 'head', 'i', 'could', 'hear', 'the', 'morlock', 's'], ['skull', 'ring', 'to', 'recover', 'it', 'it', 'was', 'a', 'nearer', 'thing', 'than', 'the', 'fight', 'in'], ['the', 'forest', 'i', 'think', 'this', 'last', 'scramble'], [], ['but', 'at', 'last', 'the', 'lever', 'was', 'fitted', 'and', 'pulled', 'over', 'the', 'clinging'], ['hands', 'slipped', 'from', 'me', 'the', 'darkness', 'presently', 'fell', 'from', 'my', 'eyes'], ['i', 'found', 'myself', 'in', 'the', 'same', 'grey', 'light', 'and', 'tumult', 'i', 'have', 'already'], ['described'], [], [], [], [], ['xi'], [], [], ['i', 'have', 'already', 'told', 'you', 'of', 'the', 'sickness', 'and', 'confusion', 'that', 'comes'], ['with', 'time', 'travelling', 'and', 'this', 'time', 'i', 'was', 'not', 'seated', 'properly', 'in', 'the'], ['saddle', 'but', 'sideways', 'and', 'in', 'an', 'unstable', 'fashion', 'for', 'an', 'indefinite'], ['time', 'i', 'clung', 'to', 'the', 'machine', 'as', 'it', 'swayed', 'and', 'vibrated', 'quite'], ['unheeding', 'how', 'i', 'went', 'and', 'when', 'i', 'brought', 'myself', 'to', 'look', 'at', 'the', 'dials'], ['again', 'i', 'was', 'amazed', 'to', 'find', 'where', 'i', 'had', 'arrived', 'one', 'dial', 'records'], ['days', 'and', 'another', 'thousands', 'of', 'days', 'another', 'millions', 'of', 'days', 'and'], ['another', 'thousands', 'of', 'millions', 'now', 'instead', 'of', 'reversing', 'the', 'levers'], ['i', 'had', 'pulled', 'them', 'over', 'so', 'as', 'to', 'go', 'forward', 'with', 'them', 'and', 'when', 'i'], ['came', 'to', 'look', 'at', 'these', 'indicators', 'i', 'found', 'that', 'the', 'thousands', 'hand', 'was'], ['sweeping', 'round', 'as', 'fast', 'as', 'the', 'seconds', 'hand', 'of', 'a', 'watch', 'into'], ['futurity'], [], ['as', 'i', 'drove', 'on', 'a', 'peculiar', 'change', 'crept', 'over', 'the', 'appearance', 'of'], ['things', 'the', 'palpitating', 'greyness', 'grew', 'darker', 'then', 'though', 'i', 'was'], ['still', 'travelling', 'with', 'prodigious', 'velocity', 'the', 'blinking', 'succession'], ['of', 'day', 'and', 'night', 'which', 'was', 'usually', 'indicative', 'of', 'a', 'slower', 'pace'], ['returned', 'and', 'grew', 'more', 'and', 'more', 'marked', 'this', 'puzzled', 'me', 'very', 'much'], ['at', 'first', 'the', 'alternations', 'of', 'night', 'and', 'day', 'grew', 'slower', 'and', 'slower'], ['and', 'so', 'did', 'the', 'passage', 'of', 'the', 'sun', 'across', 'the', 'sky', 'until', 'they', 'seemed'], ['to', 'stretch', 'through', 'centuries', 'at', 'last', 'a', 'steady', 'twilight', 'brooded', 'over'], ['the', 'earth', 'a', 'twilight', 'only', 'broken', 'now', 'and', 'then', 'when', 'a', 'comet', 'glared'], ['across', 'the', 'darkling', 'sky', 'the', 'band', 'of', 'light', 'that', 'had', 'indicated', 'the'], ['sun', 'had', 'long', 'since', 'disappeared', 'for', 'the', 'sun', 'had', 'ceased', 'to', 'set', 'it'], ['simply', 'rose', 'and', 'fell', 'in', 'the', 'west', 'and', 'grew', 'ever', 'broader', 'and', 'more'], ['red', 'all', 'trace', 'of', 'the', 'moon', 'had', 'vanished', 'the', 'circling', 'of', 'the', 'stars'], ['growing', 'slower', 'and', 'slower', 'had', 'given', 'place', 'to', 'creeping', 'points', 'of'], ['light', 'at', 'last', 'some', 'time', 'before', 'i', 'stopped', 'the', 'sun', 'red', 'and', 'very'], ['large', 'halted', 'motionless', 'upon', 'the', 'horizon', 'a', 'vast', 'dome', 'glowing', 'with'], ['a', 'dull', 'heat', 'and', 'now', 'and', 'then', 'suffering', 'a', 'momentary', 'extinction', 'at'], ['one', 'time', 'it', 'had', 'for', 'a', 'little', 'while', 'glowed', 'more', 'brilliantly', 'again'], ['but', 'it', 'speedily', 'reverted', 'to', 'its', 'sullen', 'red', 'heat', 'i', 'perceived', 'by', 'this'], ['slowing', 'down', 'of', 'its', 'rising', 'and', 'setting', 'that', 'the', 'work', 'of', 'the', 'tidal'], ['drag', 'was', 'done', 'the', 'earth', 'had', 'come', 'to', 'rest', 'with', 'one', 'face', 'to', 'the', 'sun'], ['even', 'as', 'in', 'our', 'own', 'time', 'the', 'moon', 'faces', 'the', 'earth', 'very', 'cautiously'], ['for', 'i', 'remembered', 'my', 'former', 'headlong', 'fall', 'i', 'began', 'to', 'reverse'], ['my', 'motion', 'slower', 'and', 'slower', 'went', 'the', 'circling', 'hands', 'until', 'the'], ['thousands', 'one', 'seemed', 'motionless', 'and', 'the', 'daily', 'one', 'was', 'no', 'longer', 'a'], ['mere', 'mist', 'upon', 'its', 'scale', 'still', 'slower', 'until', 'the', 'dim', 'outlines', 'of', 'a'], ['desolate', 'beach', 'grew', 'visible'], [], ['i', 'stopped', 'very', 'gently', 'and', 'sat', 'upon', 'the', 'time', 'machine', 'looking', 'round'], ['the', 'sky', 'was', 'no', 'longer', 'blue', 'north', 'eastward', 'it', 'was', 'inky', 'black'], ['and', 'out', 'of', 'the', 'blackness', 'shone', 'brightly', 'and', 'steadily', 'the', 'pale'], ['white', 'stars', 'overhead', 'it', 'was', 'a', 'deep', 'indian', 'red', 'and', 'starless', 'and'], ['south', 'eastward', 'it', 'grew', 'brighter', 'to', 'a', 'glowing', 'scarlet', 'where', 'cut', 'by'], ['the', 'horizon', 'lay', 'the', 'huge', 'hull', 'of', 'the', 'sun', 'red', 'and', 'motionless', 'the'], ['rocks', 'about', 'me', 'were', 'of', 'a', 'harsh', 'reddish', 'colour', 'and', 'all', 'the', 'trace', 'of'], ['life', 'that', 'i', 'could', 'see', 'at', 'first', 'was', 'the', 'intensely', 'green', 'vegetation'], ['that', 'covered', 'every', 'projecting', 'point', 'on', 'their', 'south', 'eastern', 'face', 'it'], ['was', 'the', 'same', 'rich', 'green', 'that', 'one', 'sees', 'on', 'forest', 'moss', 'or', 'on', 'the'], ['lichen', 'in', 'caves', 'plants', 'which', 'like', 'these', 'grow', 'in', 'a', 'perpetual'], ['twilight'], [], ['the', 'machine', 'was', 'standing', 'on', 'a', 'sloping', 'beach', 'the', 'sea', 'stretched', 'away'], ['to', 'the', 'south', 'west', 'to', 'rise', 'into', 'a', 'sharp', 'bright', 'horizon', 'against', 'the'], ['wan', 'sky', 'there', 'were', 'no', 'breakers', 'and', 'no', 'waves', 'for', 'not', 'a', 'breath', 'of'], ['wind', 'was', 'stirring', 'only', 'a', 'slight', 'oily', 'swell', 'rose', 'and', 'fell', 'like', 'a'], ['gentle', 'breathing', 'and', 'showed', 'that', 'the', 'eternal', 'sea', 'was', 'still', 'moving'], ['and', 'living', 'and', 'along', 'the', 'margin', 'where', 'the', 'water', 'sometimes', 'broke', 'was'], ['a', 'thick', 'incrustation', 'of', 'salt', 'pink', 'under', 'the', 'lurid', 'sky', 'there', 'was', 'a'], ['sense', 'of', 'oppression', 'in', 'my', 'head', 'and', 'i', 'noticed', 'that', 'i', 'was', 'breathing'], ['very', 'fast', 'the', 'sensation', 'reminded', 'me', 'of', 'my', 'only', 'experience', 'of'], ['mountaineering', 'and', 'from', 'that', 'i', 'judged', 'the', 'air', 'to', 'be', 'more', 'rarefied'], ['than', 'it', 'is', 'now'], [], ['far', 'away', 'up', 'the', 'desolate', 'slope', 'i', 'heard', 'a', 'harsh', 'scream', 'and', 'saw', 'a'], ['thing', 'like', 'a', 'huge', 'white', 'butterfly', 'go', 'slanting', 'and', 'fluttering', 'up', 'into'], ['the', 'sky', 'and', 'circling', 'disappear', 'over', 'some', 'low', 'hillocks', 'beyond', 'the'], ['sound', 'of', 'its', 'voice', 'was', 'so', 'dismal', 'that', 'i', 'shivered', 'and', 'seated', 'myself'], ['more', 'firmly', 'upon', 'the', 'machine', 'looking', 'round', 'me', 'again', 'i', 'saw', 'that'], ['quite', 'near', 'what', 'i', 'had', 'taken', 'to', 'be', 'a', 'reddish', 'mass', 'of', 'rock', 'was', 'moving'], ['slowly', 'towards', 'me', 'then', 'i', 'saw', 'the', 'thing', 'was', 'really', 'a', 'monstrous'], ['crab', 'like', 'creature', 'can', 'you', 'imagine', 'a', 'crab', 'as', 'large', 'as', 'yonder', 'table'], ['with', 'its', 'many', 'legs', 'moving', 'slowly', 'and', 'uncertainly', 'its', 'big', 'claws'], ['swaying', 'its', 'long', 'antennae', 'like', 'carters', 'whips', 'waving', 'and', 'feeling'], ['and', 'its', 'stalked', 'eyes', 'gleaming', 'at', 'you', 'on', 'either', 'side', 'of', 'its', 'metallic'], ['front', 'its', 'back', 'was', 'corrugated', 'and', 'ornamented', 'with', 'ungainly', 'bosses'], ['and', 'a', 'greenish', 'incrustation', 'blotched', 'it', 'here', 'and', 'there', 'i', 'could', 'see'], ['the', 'many', 'palps', 'of', 'its', 'complicated', 'mouth', 'flickering', 'and', 'feeling', 'as', 'it'], ['moved'], [], ['as', 'i', 'stared', 'at', 'this', 'sinister', 'apparition', 'crawling', 'towards', 'me', 'i', 'felt'], ['a', 'tickling', 'on', 'my', 'cheek', 'as', 'though', 'a', 'fly', 'had', 'lighted', 'there', 'i', 'tried', 'to'], ['brush', 'it', 'away', 'with', 'my', 'hand', 'but', 'in', 'a', 'moment', 'it', 'returned', 'and', 'almost'], ['immediately', 'came', 'another', 'by', 'my', 'ear', 'i', 'struck', 'at', 'this', 'and', 'caught'], ['something', 'threadlike', 'it', 'was', 'drawn', 'swiftly', 'out', 'of', 'my', 'hand', 'with', 'a'], ['frightful', 'qualm', 'i', 'turned', 'and', 'i', 'saw', 'that', 'i', 'had', 'grasped', 'the', 'antenna'], ['of', 'another', 'monster', 'crab', 'that', 'stood', 'just', 'behind', 'me', 'its', 'evil', 'eyes'], ['were', 'wriggling', 'on', 'their', 'stalks', 'its', 'mouth', 'was', 'all', 'alive', 'with'], ['appetite', 'and', 'its', 'vast', 'ungainly', 'claws', 'smeared', 'with', 'an', 'algal', 'slime'], ['were', 'descending', 'upon', 'me', 'in', 'a', 'moment', 'my', 'hand', 'was', 'on', 'the', 'lever', 'and'], ['i', 'had', 'placed', 'a', 'month', 'between', 'myself', 'and', 'these', 'monsters', 'but', 'i', 'was'], ['still', 'on', 'the', 'same', 'beach', 'and', 'i', 'saw', 'them', 'distinctly', 'now', 'as', 'soon', 'as', 'i'], ['stopped', 'dozens', 'of', 'them', 'seemed', 'to', 'be', 'crawling', 'here', 'and', 'there', 'in', 'the'], ['sombre', 'light', 'among', 'the', 'foliated', 'sheets', 'of', 'intense', 'green'], [], ['i', 'cannot', 'convey', 'the', 'sense', 'of', 'abominable', 'desolation', 'that', 'hung', 'over'], ['the', 'world', 'the', 'red', 'eastern', 'sky', 'the', 'northward', 'blackness', 'the', 'salt'], ['dead', 'sea', 'the', 'stony', 'beach', 'crawling', 'with', 'these', 'foul', 'slow', 'stirring'], ['monsters', 'the', 'uniform', 'poisonous', 'looking', 'green', 'of', 'the', 'lichenous'], ['plants', 'the', 'thin', 'air', 'that', 'hurts', 'one', 's', 'lungs', 'all', 'contributed', 'to', 'an'], ['appalling', 'effect', 'i', 'moved', 'on', 'a', 'hundred', 'years', 'and', 'there', 'was', 'the', 'same'], ['red', 'sun', 'a', 'little', 'larger', 'a', 'little', 'duller', 'the', 'same', 'dying', 'sea', 'the'], ['same', 'chill', 'air', 'and', 'the', 'same', 'crowd', 'of', 'earthy', 'crustacea', 'creeping', 'in'], ['and', 'out', 'among', 'the', 'green', 'weed', 'and', 'the', 'red', 'rocks', 'and', 'in', 'the', 'westward'], ['sky', 'i', 'saw', 'a', 'curved', 'pale', 'line', 'like', 'a', 'vast', 'new', 'moon'], [], ['so', 'i', 'travelled', 'stopping', 'ever', 'and', 'again', 'in', 'great', 'strides', 'of', 'a'], ['thousand', 'years', 'or', 'more', 'drawn', 'on', 'by', 'the', 'mystery', 'of', 'the', 'earth', 's', 'fate'], ['watching', 'with', 'a', 'strange', 'fascination', 'the', 'sun', 'grow', 'larger', 'and', 'duller'], ['in', 'the', 'westward', 'sky', 'and', 'the', 'life', 'of', 'the', 'old', 'earth', 'ebb', 'away', 'at'], ['last', 'more', 'than', 'thirty', 'million', 'years', 'hence', 'the', 'huge', 'red', 'hot', 'dome', 'of'], ['the', 'sun', 'had', 'come', 'to', 'obscure', 'nearly', 'a', 'tenth', 'part', 'of', 'the', 'darkling'], ['heavens', 'then', 'i', 'stopped', 'once', 'more', 'for', 'the', 'crawling', 'multitude', 'of'], ['crabs', 'had', 'disappeared', 'and', 'the', 'red', 'beach', 'save', 'for', 'its', 'livid', 'green'], ['liverworts', 'and', 'lichens', 'seemed', 'lifeless', 'and', 'now', 'it', 'was', 'flecked', 'with'], ['white', 'a', 'bitter', 'cold', 'assailed', 'me', 'rare', 'white', 'flakes', 'ever', 'and', 'again'], ['came', 'eddying', 'down', 'to', 'the', 'north', 'eastward', 'the', 'glare', 'of', 'snow', 'lay'], ['under', 'the', 'starlight', 'of', 'the', 'sable', 'sky', 'and', 'i', 'could', 'see', 'an', 'undulating'], ['crest', 'of', 'hillocks', 'pinkish', 'white', 'there', 'were', 'fringes', 'of', 'ice', 'along', 'the'], ['sea', 'margin', 'with', 'drifting', 'masses', 'further', 'out', 'but', 'the', 'main', 'expanse'], ['of', 'that', 'salt', 'ocean', 'all', 'bloody', 'under', 'the', 'eternal', 'sunset', 'was', 'still'], ['unfrozen'], [], ['i', 'looked', 'about', 'me', 'to', 'see', 'if', 'any', 'traces', 'of', 'animal', 'life', 'remained', 'a'], ['certain', 'indefinable', 'apprehension', 'still', 'kept', 'me', 'in', 'the', 'saddle', 'of', 'the'], ['machine', 'but', 'i', 'saw', 'nothing', 'moving', 'in', 'earth', 'or', 'sky', 'or', 'sea', 'the', 'green'], ['slime', 'on', 'the', 'rocks', 'alone', 'testified', 'that', 'life', 'was', 'not', 'extinct', 'a'], ['shallow', 'sandbank', 'had', 'appeared', 'in', 'the', 'sea', 'and', 'the', 'water', 'had', 'receded'], ['from', 'the', 'beach', 'i', 'fancied', 'i', 'saw', 'some', 'black', 'object', 'flopping', 'about'], ['upon', 'this', 'bank', 'but', 'it', 'became', 'motionless', 'as', 'i', 'looked', 'at', 'it', 'and', 'i'], ['judged', 'that', 'my', 'eye', 'had', 'been', 'deceived', 'and', 'that', 'the', 'black', 'object', 'was'], ['merely', 'a', 'rock', 'the', 'stars', 'in', 'the', 'sky', 'were', 'intensely', 'bright', 'and', 'seemed'], ['to', 'me', 'to', 'twinkle', 'very', 'little'], [], ['suddenly', 'i', 'noticed', 'that', 'the', 'circular', 'westward', 'outline', 'of', 'the', 'sun'], ['had', 'changed', 'that', 'a', 'concavity', 'a', 'bay', 'had', 'appeared', 'in', 'the', 'curve', 'i'], ['saw', 'this', 'grow', 'larger', 'for', 'a', 'minute', 'perhaps', 'i', 'stared', 'aghast', 'at', 'this'], ['blackness', 'that', 'was', 'creeping', 'over', 'the', 'day', 'and', 'then', 'i', 'realized', 'that'], ['an', 'eclipse', 'was', 'beginning', 'either', 'the', 'moon', 'or', 'the', 'planet', 'mercury', 'was'], ['passing', 'across', 'the', 'sun', 's', 'disk', 'naturally', 'at', 'first', 'i', 'took', 'it', 'to', 'be'], ['the', 'moon', 'but', 'there', 'is', 'much', 'to', 'incline', 'me', 'to', 'believe', 'that', 'what', 'i'], ['really', 'saw', 'was', 'the', 'transit', 'of', 'an', 'inner', 'planet', 'passing', 'very', 'near', 'to'], ['the', 'earth'], [], ['the', 'darkness', 'grew', 'apace', 'a', 'cold', 'wind', 'began', 'to', 'blow', 'in', 'freshening'], ['gusts', 'from', 'the', 'east', 'and', 'the', 'showering', 'white', 'flakes', 'in', 'the', 'air'], ['increased', 'in', 'number', 'from', 'the', 'edge', 'of', 'the', 'sea', 'came', 'a', 'ripple', 'and'], ['whisper', 'beyond', 'these', 'lifeless', 'sounds', 'the', 'world', 'was', 'silent', 'silent'], ['it', 'would', 'be', 'hard', 'to', 'convey', 'the', 'stillness', 'of', 'it', 'all', 'the', 'sounds', 'of'], ['man', 'the', 'bleating', 'of', 'sheep', 'the', 'cries', 'of', 'birds', 'the', 'hum', 'of', 'insects'], ['the', 'stir', 'that', 'makes', 'the', 'background', 'of', 'our', 'lives', 'all', 'that', 'was', 'over'], ['as', 'the', 'darkness', 'thickened', 'the', 'eddying', 'flakes', 'grew', 'more', 'abundant'], ['dancing', 'before', 'my', 'eyes', 'and', 'the', 'cold', 'of', 'the', 'air', 'more', 'intense', 'at'], ['last', 'one', 'by', 'one', 'swiftly', 'one', 'after', 'the', 'other', 'the', 'white', 'peaks', 'of'], ['the', 'distant', 'hills', 'vanished', 'into', 'blackness', 'the', 'breeze', 'rose', 'to', 'a'], ['moaning', 'wind', 'i', 'saw', 'the', 'black', 'central', 'shadow', 'of', 'the', 'eclipse', 'sweeping'], ['towards', 'me', 'in', 'another', 'moment', 'the', 'pale', 'stars', 'alone', 'were', 'visible', 'all'], ['else', 'was', 'rayless', 'obscurity', 'the', 'sky', 'was', 'absolutely', 'black'], [], ['a', 'horror', 'of', 'this', 'great', 'darkness', 'came', 'on', 'me', 'the', 'cold', 'that', 'smote'], ['to', 'my', 'marrow', 'and', 'the', 'pain', 'i', 'felt', 'in', 'breathing', 'overcame', 'me', 'i'], ['shivered', 'and', 'a', 'deadly', 'nausea', 'seized', 'me', 'then', 'like', 'a', 'red', 'hot', 'bow'], ['in', 'the', 'sky', 'appeared', 'the', 'edge', 'of', 'the', 'sun', 'i', 'got', 'off', 'the', 'machine', 'to'], ['recover', 'myself', 'i', 'felt', 'giddy', 'and', 'incapable', 'of', 'facing', 'the', 'return'], ['journey', 'as', 'i', 'stood', 'sick', 'and', 'confused', 'i', 'saw', 'again', 'the', 'moving', 'thing'], ['upon', 'the', 'shoal', 'there', 'was', 'no', 'mistake', 'now', 'that', 'it', 'was', 'a', 'moving'], ['thing', 'against', 'the', 'red', 'water', 'of', 'the', 'sea', 'it', 'was', 'a', 'round', 'thing', 'the'], ['size', 'of', 'a', 'football', 'perhaps', 'or', 'it', 'may', 'be', 'bigger', 'and', 'tentacles'], ['trailed', 'down', 'from', 'it', 'it', 'seemed', 'black', 'against', 'the', 'weltering'], ['blood', 'red', 'water', 'and', 'it', 'was', 'hopping', 'fitfully', 'about', 'then', 'i', 'felt', 'i'], ['was', 'fainting', 'but', 'a', 'terrible', 'dread', 'of', 'lying', 'helpless', 'in', 'that', 'remote'], ['and', 'awful', 'twilight', 'sustained', 'me', 'while', 'i', 'clambered', 'upon', 'the', 'saddle'], [], [], [], [], ['xii'], [], [], ['so', 'i', 'came', 'back', 'for', 'a', 'long', 'time', 'i', 'must', 'have', 'been', 'insensible', 'upon'], ['the', 'machine', 'the', 'blinking', 'succession', 'of', 'the', 'days', 'and', 'nights', 'was'], ['resumed', 'the', 'sun', 'got', 'golden', 'again', 'the', 'sky', 'blue', 'i', 'breathed', 'with'], ['greater', 'freedom', 'the', 'fluctuating', 'contours', 'of', 'the', 'land', 'ebbed', 'and'], ['flowed', 'the', 'hands', 'spun', 'backward', 'upon', 'the', 'dials', 'at', 'last', 'i', 'saw', 'again'], ['the', 'dim', 'shadows', 'of', 'houses', 'the', 'evidences', 'of', 'decadent', 'humanity'], ['these', 'too', 'changed', 'and', 'passed', 'and', 'others', 'came', 'presently', 'when', 'the'], ['million', 'dial', 'was', 'at', 'zero', 'i', 'slackened', 'speed', 'i', 'began', 'to', 'recognize'], ['our', 'own', 'pretty', 'and', 'familiar', 'architecture', 'the', 'thousands', 'hand', 'ran', 'back'], ['to', 'the', 'starting', 'point', 'the', 'night', 'and', 'day', 'flapped', 'slower', 'and', 'slower'], ['then', 'the', 'old', 'walls', 'of', 'the', 'laboratory', 'came', 'round', 'me', 'very', 'gently'], ['now', 'i', 'slowed', 'the', 'mechanism', 'down'], [], ['i', 'saw', 'one', 'little', 'thing', 'that', 'seemed', 'odd', 'to', 'me', 'i', 'think', 'i', 'have', 'told'], ['you', 'that', 'when', 'i', 'set', 'out', 'before', 'my', 'velocity', 'became', 'very', 'high', 'mrs'], ['watchett', 'had', 'walked', 'across', 'the', 'room', 'travelling', 'as', 'it', 'seemed', 'to', 'me'], ['like', 'a', 'rocket', 'as', 'i', 'returned', 'i', 'passed', 'again', 'across', 'that', 'minute', 'when'], ['she', 'traversed', 'the', 'laboratory', 'but', 'now', 'her', 'every', 'motion', 'appeared', 'to'], ['be', 'the', 'exact', 'inversion', 'of', 'her', 'previous', 'ones', 'the', 'door', 'at', 'the', 'lower'], ['end', 'opened', 'and', 'she', 'glided', 'quietly', 'up', 'the', 'laboratory', 'back', 'foremost'], ['and', 'disappeared', 'behind', 'the', 'door', 'by', 'which', 'she', 'had', 'previously', 'entered'], ['just', 'before', 'that', 'i', 'seemed', 'to', 'see', 'hillyer', 'for', 'a', 'moment', 'but', 'he', 'passed'], ['like', 'a', 'flash'], [], ['then', 'i', 'stopped', 'the', 'machine', 'and', 'saw', 'about', 'me', 'again', 'the', 'old', 'familiar'], ['laboratory', 'my', 'tools', 'my', 'appliances', 'just', 'as', 'i', 'had', 'left', 'them', 'i', 'got'], ['off', 'the', 'thing', 'very', 'shakily', 'and', 'sat', 'down', 'upon', 'my', 'bench', 'for', 'several'], ['minutes', 'i', 'trembled', 'violently', 'then', 'i', 'became', 'calmer', 'around', 'me', 'was'], ['my', 'old', 'workshop', 'again', 'exactly', 'as', 'it', 'had', 'been', 'i', 'might', 'have', 'slept'], ['there', 'and', 'the', 'whole', 'thing', 'have', 'been', 'a', 'dream'], [], ['and', 'yet', 'not', 'exactly', 'the', 'thing', 'had', 'started', 'from', 'the', 'south', 'east'], ['corner', 'of', 'the', 'laboratory', 'it', 'had', 'come', 'to', 'rest', 'again', 'in', 'the'], ['north', 'west', 'against', 'the', 'wall', 'where', 'you', 'saw', 'it', 'that', 'gives', 'you', 'the'], ['exact', 'distance', 'from', 'my', 'little', 'lawn', 'to', 'the', 'pedestal', 'of', 'the', 'white'], ['sphinx', 'into', 'which', 'the', 'morlocks', 'had', 'carried', 'my', 'machine'], [], ['for', 'a', 'time', 'my', 'brain', 'went', 'stagnant', 'presently', 'i', 'got', 'up', 'and', 'came'], ['through', 'the', 'passage', 'here', 'limping', 'because', 'my', 'heel', 'was', 'still'], ['painful', 'and', 'feeling', 'sorely', 'begrimed', 'i', 'saw', 'the', 'pall', 'mall', 'gazette'], ['on', 'the', 'table', 'by', 'the', 'door', 'i', 'found', 'the', 'date', 'was', 'indeed', 'to', 'day', 'and'], ['looking', 'at', 'the', 'timepiece', 'saw', 'the', 'hour', 'was', 'almost', 'eight', 'o', 'clock', 'i'], ['heard', 'your', 'voices', 'and', 'the', 'clatter', 'of', 'plates', 'i', 'hesitated', 'i', 'felt', 'so'], ['sick', 'and', 'weak', 'then', 'i', 'sniffed', 'good', 'wholesome', 'meat', 'and', 'opened', 'the'], ['door', 'on', 'you', 'you', 'know', 'the', 'rest', 'i', 'washed', 'and', 'dined', 'and', 'now', 'i', 'am'], ['telling', 'you', 'the', 'story'], [], ['i', 'know', 'he', 'said', 'after', 'a', 'pause', 'that', 'all', 'this', 'will', 'be', 'absolutely'], ['incredible', 'to', 'you', 'to', 'me', 'the', 'one', 'incredible', 'thing', 'is', 'that', 'i', 'am', 'here'], ['to', 'night', 'in', 'this', 'old', 'familiar', 'room', 'looking', 'into', 'your', 'friendly', 'faces'], ['and', 'telling', 'you', 'these', 'strange', 'adventures'], [], ['he', 'looked', 'at', 'the', 'medical', 'man', 'no', 'i', 'cannot', 'expect', 'you', 'to', 'believe'], ['it', 'take', 'it', 'as', 'a', 'lie', 'or', 'a', 'prophecy', 'say', 'i', 'dreamed', 'it', 'in', 'the'], ['workshop', 'consider', 'i', 'have', 'been', 'speculating', 'upon', 'the', 'destinies', 'of', 'our'], ['race', 'until', 'i', 'have', 'hatched', 'this', 'fiction', 'treat', 'my', 'assertion', 'of', 'its'], ['truth', 'as', 'a', 'mere', 'stroke', 'of', 'art', 'to', 'enhance', 'its', 'interest', 'and', 'taking'], ['it', 'as', 'a', 'story', 'what', 'do', 'you', 'think', 'of', 'it'], [], ['he', 'took', 'up', 'his', 'pipe', 'and', 'began', 'in', 'his', 'old', 'accustomed', 'manner', 'to', 'tap'], ['with', 'it', 'nervously', 'upon', 'the', 'bars', 'of', 'the', 'grate', 'there', 'was', 'a', 'momentary'], ['stillness', 'then', 'chairs', 'began', 'to', 'creak', 'and', 'shoes', 'to', 'scrape', 'upon', 'the'], ['carpet', 'i', 'took', 'my', 'eyes', 'off', 'the', 'time', 'traveller', 's', 'face', 'and', 'looked'], ['round', 'at', 'his', 'audience', 'they', 'were', 'in', 'the', 'dark', 'and', 'little', 'spots', 'of'], ['colour', 'swam', 'before', 'them', 'the', 'medical', 'man', 'seemed', 'absorbed', 'in', 'the'], ['contemplation', 'of', 'our', 'host', 'the', 'editor', 'was', 'looking', 'hard', 'at', 'the', 'end'], ['of', 'his', 'cigar', 'the', 'sixth', 'the', 'journalist', 'fumbled', 'for', 'his', 'watch', 'the'], ['others', 'as', 'far', 'as', 'i', 'remember', 'were', 'motionless'], [], ['the', 'editor', 'stood', 'up', 'with', 'a', 'sigh', 'what', 'a', 'pity', 'it', 'is', 'you', 're', 'not'], ['a', 'writer', 'of', 'stories', 'he', 'said', 'putting', 'his', 'hand', 'on', 'the', 'time'], ['traveller', 's', 'shoulder'], [], ['you', 'don', 't', 'believe', 'it'], [], ['well'], [], ['i', 'thought', 'not'], [], ['the', 'time', 'traveller', 'turned', 'to', 'us', 'where', 'are', 'the', 'matches', 'he', 'said'], ['he', 'lit', 'one', 'and', 'spoke', 'over', 'his', 'pipe', 'puffing', 'to', 'tell', 'you', 'the', 'truth'], ['i', 'hardly', 'believe', 'it', 'myself', 'and', 'yet'], [], ['his', 'eye', 'fell', 'with', 'a', 'mute', 'inquiry', 'upon', 'the', 'withered', 'white', 'flowers'], ['upon', 'the', 'little', 'table', 'then', 'he', 'turned', 'over', 'the', 'hand', 'holding', 'his'], ['pipe', 'and', 'i', 'saw', 'he', 'was', 'looking', 'at', 'some', 'half', 'healed', 'scars', 'on', 'his'], ['knuckles'], [], ['the', 'medical', 'man', 'rose', 'came', 'to', 'the', 'lamp', 'and', 'examined', 'the', 'flowers'], ['the', 'gynaeceum', 's', 'odd', 'he', 'said', 'the', 'psychologist', 'leant', 'forward', 'to'], ['see', 'holding', 'out', 'his', 'hand', 'for', 'a', 'specimen'], [], ['i', 'm', 'hanged', 'if', 'it', 'isn', 't', 'a', 'quarter', 'to', 'one', 'said', 'the', 'journalist'], ['how', 'shall', 'we', 'get', 'home'], [], ['plenty', 'of', 'cabs', 'at', 'the', 'station', 'said', 'the', 'psychologist'], [], ['it', 's', 'a', 'curious', 'thing', 'said', 'the', 'medical', 'man', 'but', 'i', 'certainly', 'don', 't'], ['know', 'the', 'natural', 'order', 'of', 'these', 'flowers', 'may', 'i', 'have', 'them'], [], ['the', 'time', 'traveller', 'hesitated', 'then', 'suddenly', 'certainly', 'not'], [], ['where', 'did', 'you', 'really', 'get', 'them', 'said', 'the', 'medical', 'man'], [], ['the', 'time', 'traveller', 'put', 'his', 'hand', 'to', 'his', 'head', 'he', 'spoke', 'like', 'one', 'who'], ['was', 'trying', 'to', 'keep', 'hold', 'of', 'an', 'idea', 'that', 'eluded', 'him', 'they', 'were', 'put'], ['into', 'my', 'pocket', 'by', 'weena', 'when', 'i', 'travelled', 'into', 'time', 'he', 'stared'], ['round', 'the', 'room', 'i', 'm', 'damned', 'if', 'it', 'isn', 't', 'all', 'going', 'this', 'room', 'and', 'you'], ['and', 'the', 'atmosphere', 'of', 'every', 'day', 'is', 'too', 'much', 'for', 'my', 'memory', 'did', 'i'], ['ever', 'make', 'a', 'time', 'machine', 'or', 'a', 'model', 'of', 'a', 'time', 'machine', 'or', 'is', 'it', 'all'], ['only', 'a', 'dream', 'they', 'say', 'life', 'is', 'a', 'dream', 'a', 'precious', 'poor', 'dream', 'at'], ['times', 'but', 'i', 'can', 't', 'stand', 'another', 'that', 'won', 't', 'fit', 'it', 's', 'madness', 'and'], ['where', 'did', 'the', 'dream', 'come', 'from', 'i', 'must', 'look', 'at', 'that', 'machine', 'if'], ['there', 'is', 'one'], [], ['he', 'caught', 'up', 'the', 'lamp', 'swiftly', 'and', 'carried', 'it', 'flaring', 'red', 'through'], ['the', 'door', 'into', 'the', 'corridor', 'we', 'followed', 'him', 'there', 'in', 'the', 'flickering'], ['light', 'of', 'the', 'lamp', 'was', 'the', 'machine', 'sure', 'enough', 'squat', 'ugly', 'and'], ['askew', 'a', 'thing', 'of', 'brass', 'ebony', 'ivory', 'and', 'translucent', 'glimmering'], ['quartz', 'solid', 'to', 'the', 'touch', 'for', 'i', 'put', 'out', 'my', 'hand', 'and', 'felt', 'the', 'rail'], ['of', 'it', 'and', 'with', 'brown', 'spots', 'and', 'smears', 'upon', 'the', 'ivory', 'and', 'bits', 'of'], ['grass', 'and', 'moss', 'upon', 'the', 'lower', 'parts', 'and', 'one', 'rail', 'bent', 'awry'], [], ['the', 'time', 'traveller', 'put', 'the', 'lamp', 'down', 'on', 'the', 'bench', 'and', 'ran', 'his', 'hand'], ['along', 'the', 'damaged', 'rail', 'it', 's', 'all', 'right', 'now', 'he', 'said', 'the', 'story', 'i'], ['told', 'you', 'was', 'true', 'i', 'm', 'sorry', 'to', 'have', 'brought', 'you', 'out', 'here', 'in', 'the'], ['cold', 'he', 'took', 'up', 'the', 'lamp', 'and', 'in', 'an', 'absolute', 'silence', 'we'], ['returned', 'to', 'the', 'smoking', 'room'], [], ['he', 'came', 'into', 'the', 'hall', 'with', 'us', 'and', 'helped', 'the', 'editor', 'on', 'with', 'his'], ['coat', 'the', 'medical', 'man', 'looked', 'into', 'his', 'face', 'and', 'with', 'a', 'certain'], ['hesitation', 'told', 'him', 'he', 'was', 'suffering', 'from', 'overwork', 'at', 'which', 'he'], ['laughed', 'hugely', 'i', 'remember', 'him', 'standing', 'in', 'the', 'open', 'doorway', 'bawling'], ['good', 'night'], [], ['i', 'shared', 'a', 'cab', 'with', 'the', 'editor', 'he', 'thought', 'the', 'tale', 'a', 'gaudy', 'lie'], ['for', 'my', 'own', 'part', 'i', 'was', 'unable', 'to', 'come', 'to', 'a', 'conclusion', 'the', 'story', 'was'], ['so', 'fantastic', 'and', 'incredible', 'the', 'telling', 'so', 'credible', 'and', 'sober', 'i'], ['lay', 'awake', 'most', 'of', 'the', 'night', 'thinking', 'about', 'it', 'i', 'determined', 'to', 'go'], ['next', 'day', 'and', 'see', 'the', 'time', 'traveller', 'again', 'i', 'was', 'told', 'he', 'was', 'in', 'the'], ['laboratory', 'and', 'being', 'on', 'easy', 'terms', 'in', 'the', 'house', 'i', 'went', 'up', 'to', 'him'], ['the', 'laboratory', 'however', 'was', 'empty', 'i', 'stared', 'for', 'a', 'minute', 'at', 'the'], ['time', 'machine', 'and', 'put', 'out', 'my', 'hand', 'and', 'touched', 'the', 'lever', 'at', 'that', 'the'], ['squat', 'substantial', 'looking', 'mass', 'swayed', 'like', 'a', 'bough', 'shaken', 'by', 'the'], ['wind', 'its', 'instability', 'startled', 'me', 'extremely', 'and', 'i', 'had', 'a', 'queer'], ['reminiscence', 'of', 'the', 'childish', 'days', 'when', 'i', 'used', 'to', 'be', 'forbidden', 'to'], ['meddle', 'i', 'came', 'back', 'through', 'the', 'corridor', 'the', 'time', 'traveller', 'met', 'me'], ['in', 'the', 'smoking', 'room', 'he', 'was', 'coming', 'from', 'the', 'house', 'he', 'had', 'a', 'small'], ['camera', 'under', 'one', 'arm', 'and', 'a', 'knapsack', 'under', 'the', 'other', 'he', 'laughed', 'when'], ['he', 'saw', 'me', 'and', 'gave', 'me', 'an', 'elbow', 'to', 'shake', 'i', 'm', 'frightfully', 'busy'], ['said', 'he', 'with', 'that', 'thing', 'in', 'there'], [], ['but', 'is', 'it', 'not', 'some', 'hoax', 'i', 'said', 'do', 'you', 'really', 'travel', 'through'], ['time'], [], ['really', 'and', 'truly', 'i', 'do', 'and', 'he', 'looked', 'frankly', 'into', 'my', 'eyes', 'he'], ['hesitated', 'his', 'eye', 'wandered', 'about', 'the', 'room', 'i', 'only', 'want', 'half', 'an'], ['hour', 'he', 'said', 'i', 'know', 'why', 'you', 'came', 'and', 'it', 's', 'awfully', 'good', 'of', 'you'], ['there', 's', 'some', 'magazines', 'here', 'if', 'you', 'll', 'stop', 'to', 'lunch', 'i', 'll', 'prove', 'you'], ['this', 'time', 'travelling', 'up', 'to', 'the', 'hilt', 'specimen', 'and', 'all', 'if', 'you', 'll'], ['forgive', 'my', 'leaving', 'you', 'now'], [], ['i', 'consented', 'hardly', 'comprehending', 'then', 'the', 'full', 'import', 'of', 'his', 'words'], ['and', 'he', 'nodded', 'and', 'went', 'on', 'down', 'the', 'corridor', 'i', 'heard', 'the', 'door', 'of'], ['the', 'laboratory', 'slam', 'seated', 'myself', 'in', 'a', 'chair', 'and', 'took', 'up', 'a', 'daily'], ['paper', 'what', 'was', 'he', 'going', 'to', 'do', 'before', 'lunch', 'time', 'then', 'suddenly'], ['i', 'was', 'reminded', 'by', 'an', 'advertisement', 'that', 'i', 'had', 'promised', 'to', 'meet'], ['richardson', 'the', 'publisher', 'at', 'two', 'i', 'looked', 'at', 'my', 'watch', 'and', 'saw'], ['that', 'i', 'could', 'barely', 'save', 'that', 'engagement', 'i', 'got', 'up', 'and', 'went', 'down', 'the'], ['passage', 'to', 'tell', 'the', 'time', 'traveller'], [], ['as', 'i', 'took', 'hold', 'of', 'the', 'handle', 'of', 'the', 'door', 'i', 'heard', 'an', 'exclamation'], ['oddly', 'truncated', 'at', 'the', 'end', 'and', 'a', 'click', 'and', 'a', 'thud', 'a', 'gust', 'of', 'air'], ['whirled', 'round', 'me', 'as', 'i', 'opened', 'the', 'door', 'and', 'from', 'within', 'came', 'the'], ['sound', 'of', 'broken', 'glass', 'falling', 'on', 'the', 'floor', 'the', 'time', 'traveller', 'was'], ['not', 'there', 'i', 'seemed', 'to', 'see', 'a', 'ghostly', 'indistinct', 'figure', 'sitting', 'in'], ['a', 'whirling', 'mass', 'of', 'black', 'and', 'brass', 'for', 'a', 'moment', 'a', 'figure', 'so'], ['transparent', 'that', 'the', 'bench', 'behind', 'with', 'its', 'sheets', 'of', 'drawings', 'was'], ['absolutely', 'distinct', 'but', 'this', 'phantasm', 'vanished', 'as', 'i', 'rubbed', 'my', 'eyes'], ['the', 'time', 'machine', 'had', 'gone', 'save', 'for', 'a', 'subsiding', 'stir', 'of', 'dust', 'the'], ['further', 'end', 'of', 'the', 'laboratory', 'was', 'empty', 'a', 'pane', 'of', 'the', 'skylight', 'had'], ['apparently', 'just', 'been', 'blown', 'in'], [], ['i', 'felt', 'an', 'unreasonable', 'amazement', 'i', 'knew', 'that', 'something', 'strange', 'had'], ['happened', 'and', 'for', 'the', 'moment', 'could', 'not', 'distinguish', 'what', 'the', 'strange'], ['thing', 'might', 'be', 'as', 'i', 'stood', 'staring', 'the', 'door', 'into', 'the', 'garden', 'opened'], ['and', 'the', 'man', 'servant', 'appeared'], [], ['we', 'looked', 'at', 'each', 'other', 'then', 'ideas', 'began', 'to', 'come', 'has', 'mr'], ['gone', 'out', 'that', 'way', 'said', 'i'], [], ['no', 'sir', 'no', 'one', 'has', 'come', 'out', 'this', 'way', 'i', 'was', 'expecting', 'to', 'find', 'him'], ['here'], [], ['at', 'that', 'i', 'understood', 'at', 'the', 'risk', 'of', 'disappointing', 'richardson', 'i'], ['stayed', 'on', 'waiting', 'for', 'the', 'time', 'traveller', 'waiting', 'for', 'the', 'second'], ['perhaps', 'still', 'stranger', 'story', 'and', 'the', 'specimens', 'and', 'photographs', 'he'], ['would', 'bring', 'with', 'him', 'but', 'i', 'am', 'beginning', 'now', 'to', 'fear', 'that', 'i', 'must'], ['wait', 'a', 'lifetime', 'the', 'time', 'traveller', 'vanished', 'three', 'years', 'ago', 'and'], ['as', 'everybody', 'knows', 'now', 'he', 'has', 'never', 'returned'], [], [], [], [], ['epilogue'], [], [], ['one', 'cannot', 'choose', 'but', 'wonder', 'will', 'he', 'ever', 'return', 'it', 'may', 'be', 'that', 'he'], ['swept', 'back', 'into', 'the', 'past', 'and', 'fell', 'among', 'the', 'blood', 'drinking', 'hairy'], ['savages', 'of', 'the', 'age', 'of', 'unpolished', 'stone', 'into', 'the', 'abysses', 'of', 'the'], ['cretaceous', 'sea', 'or', 'among', 'the', 'grotesque', 'saurians', 'the', 'huge', 'reptilian'], ['brutes', 'of', 'the', 'jurassic', 'times', 'he', 'may', 'even', 'now', 'if', 'i', 'may', 'use', 'the'], ['phrase', 'be', 'wandering', 'on', 'some', 'plesiosaurus', 'haunted', 'oolitic', 'coral'], ['reef', 'or', 'beside', 'the', 'lonely', 'saline', 'lakes', 'of', 'the', 'triassic', 'age', 'or', 'did'], ['he', 'go', 'forward', 'into', 'one', 'of', 'the', 'nearer', 'ages', 'in', 'which', 'men', 'are', 'still'], ['men', 'but', 'with', 'the', 'riddles', 'of', 'our', 'own', 'time', 'answered', 'and', 'its', 'wearisome'], ['problems', 'solved', 'into', 'the', 'manhood', 'of', 'the', 'race', 'for', 'i', 'for', 'my', 'own'], ['part', 'cannot', 'think', 'that', 'these', 'latter', 'days', 'of', 'weak', 'experiment'], ['fragmentary', 'theory', 'and', 'mutual', 'discord', 'are', 'indeed', 'man', 's', 'culminating'], ['time', 'i', 'say', 'for', 'my', 'own', 'part', 'he', 'i', 'know', 'for', 'the', 'question', 'had', 'been'], ['discussed', 'among', 'us', 'long', 'before', 'the', 'time', 'machine', 'was', 'made', 'thought'], ['but', 'cheerlessly', 'of', 'the', 'advancement', 'of', 'mankind', 'and', 'saw', 'in', 'the'], ['growing', 'pile', 'of', 'civilization', 'only', 'a', 'foolish', 'heaping', 'that', 'must'], ['inevitably', 'fall', 'back', 'upon', 'and', 'destroy', 'its', 'makers', 'in', 'the', 'end', 'if', 'that'], ['is', 'so', 'it', 'remains', 'for', 'us', 'to', 'live', 'as', 'though', 'it', 'were', 'not', 'so', 'but', 'to', 'me'], ['the', 'future', 'is', 'still', 'black', 'and', 'blank', 'is', 'a', 'vast', 'ignorance', 'lit', 'at', 'a'], ['few', 'casual', 'places', 'by', 'the', 'memory', 'of', 'his', 'story', 'and', 'i', 'have', 'by', 'me', 'for'], ['my', 'comfort', 'two', 'strange', 'white', 'flowers', 'shrivelled', 'now', 'and', 'brown', 'and'], ['flat', 'and', 'brittle', 'to', 'witness', 'that', 'even', 'when', 'mind', 'and', 'strength', 'had'], ['gone', 'gratitude', 'and', 'a', 'mutual', 'tenderness', 'still', 'lived', 'on', 'in', 'the', 'heart'], ['of', 'man']]
indices: [[1, 19, 50, 40, 2183, 2184, 400], [], [], [], [], [2], [], [], [1, 19, 71, 16, 37, 11, 115, 42, 680, 6, 586, 4, 108], [7, 1420, 5, 2185, 587, 6, 126, 25, 330, 127, 439, 3], [2186, 3, 25, 1044, 362, 113, 7, 1421, 3, 1045, 1], [148, 588, 825, 3, 1, 244, 2187, 4, 1, 2188], [2189, 8, 1, 2190, 4, 589, 363, 1, 2191, 9, 826, 3], [288, 8, 75, 2192, 75, 1422, 274, 25, 2193, 2194, 3], [1423, 126, 230, 131, 2195, 6, 42, 186, 35, 3, 26, 7, 9], [2196, 116, 289, 1424, 78, 76, 2197, 2198], [827, 4, 1, 2199, 4, 2200, 3, 27, 132, 11, 6, 126, 8, 21], [114, 1425, 1, 1046, 17, 5, 1426, 1427, 14, 55, 186, 3, 2201], [2202, 25, 2203, 79, 21, 153, 681, 14, 55, 76, 11], [3, 25, 2204], [], [22, 85, 440, 13, 590, 2, 502, 28, 6, 2205, 31, 53, 154], [1047, 9, 91, 180, 2206, 682, 1, 828, 16], [364, 29, 1428, 22, 15, 2207, 38, 2208, 23, 5, 2209], [], [38, 33, 9, 230, 5, 275, 69, 6, 829, 126, 6, 830, 35], [46, 235, 54, 2210, 1429, 17, 164, 591], [], [2, 187, 33, 503, 6, 1430, 22, 6, 2211, 683, 276, 1431], [236, 16, 11, 22, 115, 197, 831, 14, 181, 14, 2, 504, 30, 22, 22], [151, 4, 313, 9, 5, 1048, 331, 5, 331, 4, 684, 2212], [188, 43, 401, 592, 29, 1428, 22, 9, 1432, 188, 5], [1048, 2213, 59, 133, 91, 245, 2214], [], [9, 38, 32, 277, 46, 1, 171], [], [402, 832, 95, 441, 1049, 3, 684, 189, 5, 1050, 28, 5], [401, 592], [], [26, 2, 685, 46, 235, 4, 313, 5, 1051, 593, 137, 1433, 32], [401, 133], [], [37, 159, 96, 120, 18, 594, 5, 145, 189, 54, 2215], [1050, 1433], [], [246, 160, 440, 22, 46, 235], [], [189, 5, 1050, 9, 833, 33, 93, 16, 109, 19, 15, 32, 28, 5, 401], [592], [], [235, 442, 2216, 314, 1, 19, 71, 834, 109], [401, 593, 85, 28, 2217, 8, 262, 1434, 11, 85, 28], [441, 1049, 684, 3, 2218, 18, 86, 5, 505], [2219, 4, 1, 1052, 51, 2, 115, 403, 6, 22, 8, 5, 145, 55], [1435, 6, 1436, 21, 443, 26, 91, 332, 262, 263], [175, 51, 55, 835, 1, 175, 1437, 4, 172, 3, 5, 595, 19], [26, 38, 247, 5, 686, 6, 2220, 54, 1053, 2221, 248], [1, 1438, 175, 263, 3, 1, 836, 333, 11, 2222, 9], [75, 1439, 1440, 2223, 8, 31, 596, 198, 1], [836, 30, 1, 687, 6, 1, 173, 4, 75, 1441], [], [9, 46, 5, 52, 444, 65, 597, 1442, 1054, 6, 2224], [25, 837, 79, 1, 290, 9, 52, 291, 206], [], [56, 11, 38, 52, 1055, 9, 21, 38, 37, 2225, 1443], [1056, 1, 19, 71, 17, 5, 688, 2226, 4], [2227, 332, 21, 38, 57, 38, 1057, 40, 1, 595, 445], [219, 41, 96, 165, 1444, 66, 1, 595, 445, 187, 33, 151], [29, 503, 11, 11, 38, 95, 117, 114, 4, 176, 15, 19, 26, 38], [43, 689, 248, 19, 3, 109, 4, 1, 175, 263, 4, 172], [506, 9, 75, 1439, 1440, 198, 11, 18, 41, 690], [96, 28, 174, 691, 4, 1, 365, 199, 4, 9, 366, 22, 28, 32], [207, 57, 29, 28, 6, 208, 66, 21, 595, 445], [], [2, 28, 33, 46, 1, 838, 839], [], [11, 38, 334, 21, 9, 172, 14, 75, 2228, 28, 11, 38], [1445, 4, 14, 832, 175, 263, 51, 31, 137, 835, 441], [1049, 3, 684, 3, 38, 367, 2229, 40, 1446, 6], [175, 1437, 264, 15, 277, 1447, 6, 1, 315, 18, 41], [1448, 96, 28, 58, 2230, 249, 175, 263], [840, 249, 33, 117, 596, 15, 277, 1447, 6, 1, 121], [175, 3, 28, 84, 190, 6, 2231, 5, 262, 445, 828], [2232, 2233, 2234, 7, 1420, 21, 6, 1, 153, 2235], [1048, 1058, 95, 5, 1449, 53, 37, 404, 22, 151, 102, 23, 5, 1450], [446, 51, 188, 95, 154, 263, 55, 189, 1451, 5, 335, 4], [5, 175, 1452, 1051, 3, 2236, 29, 120, 9, 40, 2237], [4, 175, 263, 29, 44, 1451, 31, 4, 262, 87, 29, 44], [2238, 1, 2239, 4, 1, 69, 99], [], [2, 120, 37, 2240, 1, 838, 839, 3, 2241, 25], [2242, 27, 2243, 34, 54, 2244, 692, 25, 693, 405, 14, 31], [165, 2245, 2246, 598, 1059, 2, 120, 2, 99, 11, 56, 27, 46, 116], [41, 19, 2247, 8, 5, 368, 1453, 841], [], [118, 2, 187, 33, 128, 447, 22, 2, 28, 58, 15, 369, 35, 21], [828, 4, 262, 263, 16, 41, 19, 41, 4, 10, 1454], [91, 842, 16, 364, 103, 38, 5, 2248, 4, 5, 65, 15, 336], [237, 155, 117, 15, 1455, 117, 15, 1456, 117, 15], [1060, 175, 3, 37, 23, 32, 59, 91, 599, 2249, 14, 11], [20, 175, 1452, 2250, 4, 25, 262, 2251], [274, 51, 38, 5, 2252, 3, 2253, 69], [], [1061, 96, 834, 1, 19, 71, 116, 1, 694], [2254, 16, 1, 843, 2255, 4, 21, 151, 52, 118, 9], [19, 38, 95, 5, 209, 4, 172, 103, 38, 5, 2256, 1061, 2257], [5, 844, 2258, 21, 331, 2, 507, 17, 10, 1062, 2259, 1], [845, 4, 1, 2260, 1457, 11, 7, 37, 508, 1457, 112], [11, 250, 24, 21, 251, 11, 292, 70, 3, 37, 695, 1458, 6], [103, 2261, 1, 1459, 107, 33, 507, 21, 331, 8, 109, 4, 1], [263, 4, 172, 1460, 696, 18, 509, 11, 2262], [140, 5, 331, 3, 9, 331, 1461, 55, 85, 2263, 7, 198], [1, 19, 445], [], [18, 46, 1, 177, 65, 1063, 510, 15, 5, 2264, 8, 1, 148, 87], [19, 38, 332, 95, 5, 595, 445, 4, 172, 249, 38, 11, 3, 249], [188, 11, 367, 58, 1462, 14, 252, 511, 3, 249, 231], [55, 293, 8, 19, 14, 55, 293, 66, 8, 1, 121, 263, 4, 172], [], [1, 19, 71, 697, 91, 22, 512, 55, 189, 293, 1064, 8], [172, 277, 3, 166, 55, 189, 220, 1065, 3, 448, 1064, 156], [3, 278, 367, 28, 337, 37, 2, 831, 55, 293, 1064, 8, 154], [263, 18, 102, 66, 64, 3, 48, 1463, 2265, 126, 26], [], [33, 370, 46, 1, 177, 65, 26, 91, 1464], [], [18, 92, 1, 1464, 338, 16, 1442, 2266, 3, 1], [2267, 4, 1, 446, 65, 12, 43, 846, 4, 1465], [845], [], [81, 29, 44, 293, 5, 36, 64, 3, 48, 46, 1, 177, 65], [], [1466, 191, 1466, 48, 131, 64], [], [3, 22, 231, 293, 15, 32, 8, 19, 22, 231, 200, 122, 30, 1], [513, 145], [], [10, 2268, 1467, 9, 38, 238, 146, 22, 91, 365, 9, 38, 238, 146], [1, 265, 82, 188, 210, 365, 55, 91, 367, 600, 122, 30, 1], [513, 145, 75, 1066, 2269, 51, 91, 2270, 3, 28], [43, 263, 91, 847, 198, 1, 19, 445, 17, 5, 1468], [698, 30, 1, 2271, 6, 1, 1469, 238, 14, 55, 182, 406, 48], [87, 55, 110, 75, 592, 1470, 848, 183, 1, 201, 67, 446], [], [18, 1, 105, 849, 38, 21, 2272, 1, 171], [22, 189, 293, 66, 8, 32, 1434, 4, 172, 18, 22, 231], [293, 66, 8, 19], [], [9, 38, 1, 2273, 4, 10, 105, 1067, 18, 22, 91, 365, 6, 208], [9, 55, 231, 293, 66, 8, 19, 16, 364, 87, 2, 316, 2274], [54, 2275, 52, 1068, 2, 220, 111, 6, 1, 1471, 4, 68, 2276], [2, 514, 2277, 1069, 14, 22, 208, 2, 1472, 111, 16, 5, 145, 4], [313, 55, 28, 43, 601, 4, 1473, 111, 16, 109, 441, 4, 19, 109], [73, 131, 5, 850, 53, 54, 371, 188, 4, 1473, 2278, 232, 183, 1], [236, 18, 5, 1474, 65, 38, 372, 152, 131, 1, 850, 8, 21], [2279, 27, 189, 220, 64, 141, 1463, 8, 5, 2280, 3, 249], [182, 27, 33, 602, 9, 1475, 27, 137, 42, 1070, 6, 515, 53], [2281, 25, 1071, 198, 1, 19, 445, 53, 84, 1072, 66], [3, 406, 1, 121, 114], [], [2282, 21, 110, 235, 38, 32], [], [249, 33, 46, 1, 19, 71], [], [11, 67, 141, 603, 46, 235], [], [57, 603, 46, 1, 19, 71], [], [22, 189, 851, 149, 38, 74, 40, 2283, 46, 235, 18, 22, 115], [211, 2284, 13], [], [339, 33, 46, 1, 19, 71, 18, 56, 22, 830, 6, 99], [1, 685, 4, 10, 2285, 34, 1, 828, 4, 262], [263, 134, 404, 2, 12, 5, 604, 2286, 4, 5, 50], [], [6, 406, 86, 19, 2287, 1, 52, 444, 65], [], [9, 502, 406, 2288, 8, 109, 596, 4, 172, 3, 19], [14, 1, 2289, 2290], [], [235, 1476, 699, 17, 852], [], [18, 2, 28, 1477, 1073, 46, 1, 19, 71], [], [11, 72, 42, 2291, 680, 16, 1, 2292, 1], [171, 605, 31, 129, 406, 111, 3, 1478, 1], [682, 516, 4, 1, 1074, 4, 2293, 16, 364], [], [246, 160, 22, 120, 22, 72, 2294, 517, 46, 1, 177, 65], [75, 1479, 12, 43, 105, 2295, 16, 2296], [], [31, 129, 200, 31, 67, 1480, 30, 1, 52, 693, 4, 2297, 3, 2298], [1, 52, 444, 65, 76], [], [8, 51, 518, 29, 72, 509, 2299, 22, 16, 1, 36, 220], [1, 2300, 2301, 28, 2302, 1480, 37, 181], [], [24, 26, 38, 1, 202, 46, 1, 52, 444, 65, 238, 120], [31, 129, 2303, 32, 31, 67, 2304, 519, 11, 6, 2305, 15], [407, 3, 2306, 23, 1481], [], [6, 1075, 5, 1058, 46, 2, 2307, 23, 5, 2308, 2309], [2310], [], [4, 32, 1, 700, 2311, 1076, 110, 1, 171], [], [1059, 37, 11, 63, 6, 13, 3, 37, 2, 211, 1482, 4, 11, 212], [], [1477, 1073, 606, 2, 22, 91, 253, 6, 1478], [9], [], [1, 1077, 606, 235, 165, 7, 600, 1483, 853], [], [373, 67, 99, 449, 1077, 2312, 46, 1, 171, 219], [11, 67, 32, 2313, 22, 151], [], [1, 19, 71, 697, 123, 15, 126, 24, 81, 854, 1484], [3, 17, 25, 157, 701, 8, 25, 2314, 1078, 27, 374, 520], [62, 4, 1, 221, 3, 55, 207, 25, 2315, 2316, 48, 1, 134], [855, 6, 25, 222], [], [1, 171, 135, 15, 126, 2, 702, 57, 27, 67, 174], [], [41, 2317, 4, 88, 607, 53, 121, 46, 1, 177, 65, 3], [235, 190, 6, 294, 126, 66, 5, 2318, 27, 12, 192, 15, 2319, 18], [92, 27, 12, 1485, 25, 2320, 1, 19, 71, 39, 111, 3], [235, 67, 2321, 1486], [], [1, 69, 1, 19, 71, 521, 8, 25, 88, 7, 5, 1487], [703, 1488, 856, 375, 131, 5, 295, 704, 3, 52], [2322, 124, 26, 7, 608, 8, 11, 3, 41, 1489], [1490, 857, 3, 56, 2, 85, 42, 1491, 16, 21, 9], [2323, 1079, 25, 705, 38, 6, 42, 682, 38, 54, 340], [2324, 69, 27, 142, 31, 4, 1, 295, 2325, 706, 9], [20, 1080, 66, 1, 221, 3, 296, 11, 8, 609, 4, 1, 148, 17], [154, 858, 23, 1, 2326, 23, 21, 239, 27, 1081, 1, 522], [24, 27, 610, 64, 5, 611, 3, 186, 48, 1, 95, 121, 685, 23, 1], [239, 7, 5, 295, 2327, 290, 1, 266, 104, 4, 51, 250, 35], [1, 450, 26, 20, 707, 130, 5, 1082, 1083, 66, 154, 8], [708, 2328, 35, 1, 1084, 3, 341, 8, 2329, 37, 9], [1, 221, 7, 1492, 1085, 2, 186, 8, 5, 709, 408, 611], [1493, 1, 148, 3, 2, 610, 21, 448, 37, 14, 6, 42, 180, 248], [1, 19, 71, 3, 1, 2330, 235, 186, 254, 108, 176], [79, 25, 409, 1, 177, 65, 3, 1, 838, 839, 710], [108, 8, 2331, 30, 1, 277, 1, 171, 30, 1, 166, 1], [52, 444, 65, 178, 254, 1, 171, 55, 20, 32, 23, 1], [2332, 11, 2333, 612, 6, 13, 9, 109, 209, 4, 607, 247], [2334, 2335, 3, 247, 2336, 337, 44, 28, 58, 1494], [35, 126, 106, 59, 342], [], [1, 19, 71, 135, 15, 126, 3, 24, 15, 1, 522, 118], [46, 1, 171], [], [21, 36, 2337, 46, 1, 19, 71, 1495, 25, 2338], [35, 1, 239, 3, 2339, 25, 157, 451, 183, 1, 1086], [38, 95, 5, 450, 11, 38, 10, 1496, 16, 5, 50, 6, 406, 86], [19, 22, 115, 1497, 9, 11, 2340, 859, 1498, 3, 9, 26], [38, 54, 279, 1087, 1088, 66, 21, 410, 14, 219, 11, 7, 8], [41, 114, 1053, 27, 613, 6, 1, 203, 17, 25, 1062, 707], [103, 38, 31, 36, 74, 240, 3, 103, 38, 117], [], [1, 177, 65, 174, 64, 62, 4, 25, 611, 3, 2341, 34, 1, 69], [11, 67, 2342, 124, 27, 46], [], [11, 142, 154, 237, 6, 213, 2343, 1, 19, 71, 24, 78], [55, 12, 32, 2344, 1, 2345, 4, 1, 177, 65, 27, 46, 56, 2], [523, 22, 314, 6, 297, 9, 21, 240, 274, 711, 79], [2346, 1, 50, 2347, 34, 1, 202, 3, 21, 121, 2348], [1, 452, 21, 524, 2349, 1, 860, 4, 5, 19, 71], [158, 2, 316, 253, 6, 2350, 1, 240, 3, 152, 1, 50, 115], [220, 11, 115, 1089, 712, 34, 202, 19, 3, 1499, 28, 5], [280, 214, 15, 1, 69, 214, 15, 1, 239, 100, 3, 1500], [2351, 26, 38, 43, 1501, 2, 246, 160, 523, 6, 713, 21, 450], [3, 24, 42, 281, 2, 376, 5, 2352], [], [26, 7, 5, 193, 67, 694, 130, 1, 171, 63, 66, 6], [586, 6, 13, 18, 714, 25, 128, 24, 1, 19, 71, 132, 614], [25, 1062, 94, 1, 240, 43, 27, 46, 194, 2353, 13, 449], [88, 3, 861, 6, 1, 171, 27, 142, 9, 2354, 67], [88, 8, 25, 136, 3, 281, 108, 6, 132, 62, 25, 1427, 37, 9, 11], [7, 1, 171, 699, 165, 2355, 614, 1, 450, 19, 50], [23, 68, 1502, 1503, 55, 32, 47, 1, 240, 1072, 2, 316], [340, 233, 26, 7, 43, 1501, 26, 7, 5, 715, 4], [615, 3, 1, 290, 716, 1504, 31, 4, 1, 1083, 23, 1, 1084], [7, 862, 62, 3, 1, 36, 50, 194, 1505, 123, 442], [863, 7, 192, 14, 5, 717, 16, 5, 343, 130, 14, 54, 2356, 4], [1484, 1487, 708, 3, 608, 3, 11, 7, 210, 317, 338], [16, 1, 290, 1, 239, 7, 616], [], [2357, 7, 298, 16, 5, 193, 24, 235, 46, 27, 7, 864], [], [1, 171, 1090, 30, 25, 2358, 3, 194, 135], [106, 1, 239, 15, 9, 1, 19, 71, 411, 1091], [118, 27, 46, 17, 5, 1506, 4, 1, 171, 24], [600, 64, 27, 89, 6, 1, 1507, 1508, 23, 1, 1084, 3, 17, 25], [111, 6, 126, 110, 6, 2359, 25, 718], [], [55, 412, 15, 264, 121, 214, 103, 46, 1, 177, 65, 91, 22], [8, 2360, 66, 21, 187, 22, 1092, 377, 9, 9, 50], [188, 378, 34, 19], [], [509, 46, 1, 19, 71, 1509, 6, 104, 5, 2361, 15], [1, 148, 24, 27, 204, 1510, 25, 718, 6, 214, 15, 1], [171, 67, 113, 1, 171, 6, 851, 9, 27, 7, 33], [2362, 1511, 699, 6, 5, 837, 3, 190, 6, 104, 11, 2363], [57, 38, 73, 2, 28, 5, 241, 50, 525, 1485, 8, 26, 27], [1512, 1, 222, 3, 78, 9, 38, 132, 451, 2, 503, 6], [28, 5, 865, 23, 10, 136, 516], [], [22, 503, 6, 208, 9, 9, 50, 188, 378, 34, 1, 202], [46, 235], [], [34, 1, 202, 53, 1, 255, 2, 246, 160, 16, 233, 151, 51], [], [116, 54, 719, 1, 171, 12, 54, 2364, 11, 85, 28], [210, 34, 1, 255, 87, 11, 188, 210, 2365, 27, 46], [], [249, 46, 1, 19, 71], [], [333, 2, 2366, 9, 11, 188, 33, 413, 8, 172, 3, 87, 11], [378, 34, 1, 202, 11, 72, 81, 42, 103, 32, 21, 19], [318, 11, 85, 28, 378, 86, 21, 19], [], [18, 2, 46, 87, 11, 378, 34, 1, 255, 11, 72, 28, 58], [866, 78, 55, 39, 90, 34, 21, 221, 3, 93, 720, 78, 55], [20, 103, 3, 1, 720, 92, 9, 3, 37, 614], [], [867, 1513, 868, 1, 838, 839, 17, 54, 184, 4], [2367, 861, 94, 1, 19, 71], [], [33, 5, 1093, 46, 1, 19, 71, 3, 6, 1, 171, 22], [120, 22, 189, 403, 9, 11, 67, 1514, 414, 1, 2368], [22, 151, 2369, 1514], [], [4, 313, 46, 1, 171, 3, 1515, 126, 9, 67, 5], [721, 415, 4, 2370, 2, 182, 28, 76, 4, 11, 11, 67, 526], [156, 3, 2371, 1, 681, 2372, 55, 231, 99, 11, 402], [189, 55, 1094, 21, 50, 109, 73, 131, 55, 189, 1, 527, 4], [5, 2373, 1516, 53, 5, 2374, 2375, 86, 1, 184, 87, 11, 38], [319, 86, 19, 1470, 299, 53, 5, 300, 299, 453, 131], [55, 91, 87, 11, 2376, 86, 5, 193, 215, 55, 200, 86, 5, 343], [1, 617, 11, 2377, 115, 4, 313, 42, 95, 31, 2378, 53], [31, 2379, 4, 57, 11, 72, 213, 87, 11, 20, 33, 319, 8], [19, 9, 67, 526, 156, 27, 288, 25, 88, 86, 1, 172, 8], [51, 1, 50, 12, 58, 22, 99, 27, 46, 528], [], [55, 186, 3, 412, 15, 1, 2380, 239, 16, 5, 193, 53, 37, 24, 1], [19, 71, 869, 126, 57, 55, 76, 4, 11, 32], [], [11, 529, 870, 156, 6, 112, 46, 1, 177, 65, 18], [594, 212, 6, 871, 594, 16, 1, 722, 344, 4, 1, 251], [], [72, 22, 60, 6, 99, 1, 19, 50, 454, 869, 1, 19], [71, 3, 1095, 1096, 1, 290, 8, 25, 88, 27, 723, 1], [114, 48, 1, 134, 2381, 724, 6, 25, 222, 2, 320], [1068, 1, 618, 104, 25, 345, 872, 185, 8, 2382], [1, 619, 4, 1, 530, 102, 55, 32, 256, 108, 531, 18], [1097, 3, 102, 26, 8, 1, 222, 55, 1517, 5, 375], [2383, 4, 1, 36, 522, 51, 55, 12, 192, 1089, 30, 92], [75, 127, 873, 20, 4, 1518, 873, 4, 608, 873, 12, 509], [58, 1519, 53, 2384, 62, 4, 1098, 2385, 1, 69, 7, 1460], [725, 18, 1, 2386, 1490, 379, 257, 2387, 35, 1], [874, 455, 41, 875, 4, 1520, 3, 2, 142, 31, 64, 16, 5, 372], [214, 15, 11, 1099, 11, 63, 6, 42], [], [214, 103, 46, 1, 177, 65, 91, 22, 726, 867], [53, 38, 21, 5, 607, 60, 9, 717, 22, 620, 126, 93, 2388], [], [35, 9, 50, 46, 1, 19, 71, 727, 1, 290], [2389, 2, 2390, 6, 1521, 19, 38, 9, 526, 2, 7, 211, 73], [867, 8, 10, 258], [], [416, 4, 126, 368, 267, 102, 6, 456, 11], [], [2, 363, 235, 67, 457, 79, 1, 409, 4, 1, 177, 65, 3, 27], [2391, 15, 13, 1100], [], [], [], [], [2392], [], [], [2, 120, 9, 15, 9, 19, 416, 4, 126, 368, 1522, 8, 1, 19], [50, 1, 443, 38, 1, 19, 71, 7, 31, 4, 234, 278, 165], [91, 100, 1523, 6, 42, 1522, 22, 211, 77, 9, 22, 47, 32, 123], [108, 22, 367, 1101, 41, 1102, 2393, 41, 2394, 8], [2395, 254, 25, 2396, 2397, 12, 235, 1524, 1, 450, 3], [1525, 1, 587, 8, 1, 19, 71, 67, 598, 55, 182, 28], [1524, 108, 191, 259, 2398, 16, 55, 182, 28, 728, 25], [2399, 5, 2400, 2401, 44, 297, 235, 18, 1, 19], [71, 12, 73, 131, 5, 876, 4, 2402, 138, 25, 2403, 3, 55], [2404, 108, 133, 9, 72, 28, 124, 1, 877, 4, 5, 259], [1523, 65, 63, 2405, 8, 25, 157, 11, 38, 5, 1526, 6, 187, 133], [100, 1103, 1, 867, 96, 165, 142, 108, 1092, 211, 77], [368, 512, 4, 25, 2406, 29, 20, 532, 2407, 9, 2408], [45, 2409, 16, 1527, 17, 108, 7, 60, 2410, 5], [2411, 17, 2412, 2413, 1528, 37, 2, 246, 160, 120, 109, 4, 126, 46, 52], [181, 66, 19, 319, 8, 1, 719, 248, 9, 720, 3], [1, 282, 219, 68, 279, 2414, 242, 43, 301, 8, 159, 4], [75, 2415, 68, 2416, 9, 38, 68, 2417, 2418], [1, 842, 1529, 4, 2419, 3, 4, 1530, 621, 11], [605, 16, 10, 136, 203, 2, 7, 840, 2420, 17, 1], [607, 4, 1, 450, 9, 2, 320, 2421, 17, 1, 177, 65], [1104, 2, 417, 23, 1105, 15, 1, 2422, 27, 46, 27, 12, 192, 5, 1531], [69, 15, 2423, 3, 1532, 1106, 2424, 23, 1, 2425, 62], [4, 1, 1533, 18, 102, 1, 607, 7, 337, 27, 44, 33, 403], [], [1, 282, 720, 2, 89, 70, 6, 2426, 2, 302, 2, 7, 31, 4], [1, 19, 71, 67, 159, 1534, 1107, 3, 2427, 622, 101], [262, 53, 878, 278, 223, 2428, 8, 25, 2429, 221, 1, 177], [65, 7, 418, 92, 1, 148, 17, 5, 2430, 4, 623, 8, 31, 88], [3, 25, 380, 8, 1, 121, 2, 135, 123, 16, 1, 19, 71], [3, 11, 67, 216, 255, 624, 56, 46, 1, 177, 65, 2, 302], [55, 1108, 372, 28, 289], [], [146, 67, 46, 2, 1535, 75, 1536], [], [22, 879, 238, 150, 11, 67, 230, 279, 27, 67, 2431, 2432, 27], [2433, 13, 8, 21, 1537, 6, 1538, 152, 17, 289, 15, 624, 87, 27, 67, 33], [111, 2434, 27, 729, 403, 78, 27, 533], [], [11, 1539, 5, 1540, 6, 373, 1, 289, 2435, 46, 1, 217, 4, 5], [118, 1109, 1110, 623, 3, 2436, 1, 1111, 1112, 1, 1113], [], [1, 171, 7, 1, 95, 1429, 880, 1, 1111, 3, 83], [165, 12, 2437, 1, 881, 289, 1, 121, 278, 20, 1114, 1], [217, 2438, 5, 233, 419, 3, 117, 5, 625], [1541, 65, 17, 5, 2439, 1104, 2, 2440, 160, 151, 3, 165, 14, 191, 14, 10], [2441, 89, 211, 420, 25, 534, 32, 1, 346, 26, 7], [41, 1542, 15, 1, 289, 239, 66, 1, 19, 71, 67], [882, 3, 2, 605, 19, 319, 8, 5, 216, 2442, 730], [1, 217, 458, 9, 1525, 6, 108, 3, 1, 171], [2443, 5, 2444, 516, 4, 1, 1543, 681, 3, 607, 55], [12, 2445, 9, 125, 883, 27, 7, 8, 1, 2446, 4, 25, 2447], [78, 1, 243, 30, 1, 724, 420, 520, 3, 276, 1115, 2], [7, 884, 1, 243, 3, 47, 11, 90, 2448, 2, 46, 15, 93], [3, 1, 243, 420, 1544, 3, 1, 19, 71, 178, 92, 126], [2, 321, 5, 1545, 4, 731, 280, 1546, 65, 57, 67, 1, 587], [606, 1, 177, 65, 165, 47, 108, 282, 3, 1, 265, 2449], [204, 94, 1, 243], [], [27, 7, 8, 54, 1547, 2450, 25, 732, 7, 1116, 3, 2451, 3], [1548, 17, 167, 48, 1, 2452, 25, 591, 1549, 3, 14, 11], [63, 6, 13, 2453, 381, 17, 303, 3, 2454, 53, 333, 68, 535], [12, 2455, 1117, 25, 113, 7, 1550, 362, 25, 1118, 12, 5, 421], [459, 23, 11, 5, 459, 216, 1551, 25, 1119, 7, 1552, 3, 1120], [14, 40, 536, 1121, 16, 5, 145, 27, 347, 8, 1, 733], [14, 87, 27, 12, 58, 1122, 40, 1, 104, 24, 27, 39, 34, 1, 221], [27, 374, 17, 238, 140, 5, 2456, 14, 2, 28, 192, 8, 2457, 2458], [55, 412, 15, 108, 8, 1553, 1554, 108, 6, 586], [], [27, 46, 33, 5, 734, 18, 39, 1555, 6, 1, 239, 3, 124, 5], [452, 94, 1, 1556, 1, 217, 1557, 5, 348, 4, 1558, 3], [537, 11, 94, 108, 27, 2459, 11, 3, 11, 63, 6, 187, 108, 280], [16, 27, 135, 123, 1, 239, 3, 1, 717, 4, 25, 155, 885], [1123, 195, 25, 113, 57, 23, 201, 28, 22, 58, 64, 6, 65], [46, 1, 1111, 1, 19, 71, 107, 33, 538, 6, 626, 246, 160, 373], [13, 2460, 22, 27, 46, 17, 5, 233, 2461, 2462], [2, 376, 32, 277, 27, 382, 521, 62, 25, 348, 16, 73, 3, 142], [11, 152, 15, 5, 2463, 9, 67, 280, 27, 46, 25, 127, 168, 735], [3, 5, 422, 535, 39, 34, 25, 2464, 25, 1124, 1123, 79], [75, 460, 17, 5, 233, 1125, 2465, 3, 24, 89, 123, 1, 627], [3, 1559, 221, 24, 27, 527, 70, 81, 14, 11, 20, 218], [25, 114, 138, 25, 598, 2, 376, 253, 6, 2466, 3, 2467, 3, 24, 2, 729], [150, 48, 3, 403, 133, 338, 13, 41, 4, 9, 1560, 2, 376], [1561, 16, 5, 1093, 4, 461], [], [27, 135, 195, 15, 1, 217, 165, 7, 5, 539, 2468, 3, 1126, 27], [7, 32, 277, 1, 217, 110, 5, 423, 294, 22, 158], [46, 1, 19, 71, 2, 376, 2469, 42, 32, 277, 8, 5, 193], [], [27, 132, 48, 25, 348, 3, 374, 94, 1, 1562, 243, 70], [2, 868, 25, 1563, 3, 1, 244, 2470, 322, 4, 25, 2471], [3, 418, 64, 8, 10, 169, 2, 47, 25, 232, 14, 27, 89, 62, 27, 12], [304, 23, 49, 18, 5, 1564, 4, 1127, 628, 1565, 2472, 24, 1], [243, 1128, 35, 108, 2, 12, 216, 5, 128, 6, 440, 736, 2, 886], [102, 27, 2473, 109, 2474, 66, 699, 16, 5, 193, 130, 10], [128, 7, 2475, 1129, 24, 1055, 1566, 4, 54, 2476], [2477, 2, 207, 1, 217, 208, 462, 116, 25, 2478, 8], [2479, 3, 21, 887, 10, 517, 111, 6, 1, 266], [289, 239], [], [57, 67, 1, 2480, 46, 1, 419, 188, 27, 58, 888, 1], [2481, 2482, 2, 246, 160, 440, 2, 417, 1, 457, 4, 1, 171], [3, 1130, 10, 136, 1131, 8, 25, 113, 2, 76, 4, 1, 19], [71, 1567, 1555, 2483, 2, 246, 160, 120, 109, 31, 1132, 12], [463, 25, 1563], [], [1, 90, 6, 889, 1568, 30, 21, 731, 7, 1, 177], [65, 165, 1112, 1, 1113, 1, 19, 71, 2484, 6, 28, 1569], [629, 15, 289, 16, 5, 630, 1570, 15, 9, 1, 217, 204, 6, 25], [2485, 3, 1571, 17, 5, 2486, 3, 1, 298, 65, 256, 1572, 1], [289, 7, 890, 1133, 7, 2487, 16, 5, 36, 215], [17, 2488, 4, 2489, 3, 24, 1, 217, 174, 2490, 8, 25], [891, 833, 75, 892, 2491, 62, 25, 1573, 2492, 17, 5], [2493, 53, 188, 27, 25, 2494, 2495, 27, 2496, 2, 283], [464, 11, 67, 21, 893, 4, 1, 19, 50, 2, 46, 3, 142, 64], [1, 171, 67, 516, 4, 75, 881, 1574, 1, 153, 1107], [20, 1575, 1097, 1, 217, 1134, 1513, 57, 7], [21, 19, 319, 5, 65, 2497, 160, 2498, 699, 17, 303, 40], [1576, 8, 5, 681, 44, 27, 3, 24, 14, 1, 366, 39, 631, 6], [108, 27, 2499, 6, 2500, 2501, 160, 29, 109, 894, 2502, 8], [1, 202, 1, 419, 100, 72, 33, 377, 15, 109, 2503, 3], [2504, 1, 217, 8, 1, 895, 369, 4, 1577, 2505, 23, 1, 265], [69, 29, 20, 737, 1, 153, 209, 4, 419, 52, 2506], [2507, 444, 278, 75, 2508, 2509, 8, 1, 125], [116, 6, 871, 2510, 1, 419, 7, 1578, 53, 230], [2511, 78, 1, 19, 71, 39, 111, 27, 7, 1579, 8], [2512, 346, 894, 3, 304, 338, 25, 1552, 214, 738], [4, 1, 465, 9, 12, 739, 13], [], [2, 208, 46, 1, 217, 2513, 59, 2514, 103, 208, 22, 28], [58, 319, 34, 1, 2515, 4, 282, 883, 294, 126, 32, 66], [36, 2516, 115, 22, 57, 115, 22, 456, 16, 1, 2517], [], [1, 19, 71, 39, 6, 1, 169, 2518, 16, 108, 276, 5], [734, 27, 697, 1135, 8, 25, 155, 114, 146, 67, 10, 1560, 27], [46, 57, 5, 1580, 11, 38, 6, 1581, 5, 1571, 34, 461, 70], [], [268, 606, 1, 217], [], [268, 42, 864, 46, 1, 19, 71, 2, 523, 252, 6], [1136, 2, 1582, 160, 208, 5, 734, 212, 2, 200, 41, 2519, 34, 10, 2520], [2521, 3, 1, 896], [], [31, 734, 46, 2, 28, 22, 58, 19, 319], [], [1059, 46, 1, 19, 71, 17, 25, 534, 305, 2522, 25], [185], [], [2, 1108, 897, 5, 2523, 5, 331, 16, 5, 2524, 1537, 46, 1, 217], [1, 19, 71, 537, 25, 348, 94, 1, 298, 65, 3, 1112], [11, 17, 25, 2525, 15, 51, 1, 298, 65, 165, 12, 58], [1063, 15, 25, 113, 632, 1583, 3, 2526, 108, 1556], [1, 424, 4, 1, 289, 7, 1137, 16, 10, 136, 203, 349], [1584, 540, 23, 541, 6, 10, 693, 3, 2, 1138, 208, 11, 7, 1, 119], [17, 1, 315, 1, 419, 190, 6, 2527, 1, 2528, 40], [447, 2529, 4, 2530, 2531, 1, 19, 71, 1139, 25], [517, 6, 25, 289, 3, 898, 1, 1140, 4, 5, 2532], [1, 177, 65, 2533, 5, 2534, 3, 710, 1, 19, 71], [86, 25, 2535, 1, 298, 65, 63, 84, 73, 1141, 131], [1585, 3, 2536, 1558, 17, 2537, 3, 2538, 62, 4], [1586, 2539, 15, 93, 1, 19, 71, 537, 25, 1570, 122], [3, 135, 123, 126, 2, 302, 2, 85, 2540, 27, 46, 2, 7], [334, 1561, 2, 879, 12, 5, 159, 1547, 19, 27, 633, 62, 25], [88, 16, 5, 837, 3, 459, 1, 173, 18, 150, 34, 1, 634, 221], [11, 67, 100, 134, 5, 268, 6, 294, 79, 2541, 1142, 3, 2542, 1], [1113, 8, 847, 27, 723, 1, 114, 34, 1, 2543, 221], [], [22, 28, 281, 1114, 3, 2544, 3, 2545, 66, 1, 50, 27], [46, 6, 13, 2546, 111, 8, 25, 895, 611, 3, 1535, 1, 175, 153], [1107], [], [18, 1, 69, 67, 5, 245, 681, 46, 1, 217], [], [2, 189, 160, 1587, 6, 112, 2, 246, 160, 128, 447, 22, 1, 268, 18], [2, 189, 160, 1587, 2, 115, 27, 89, 23, 294, 22, 1, 268, 4, 57], [188, 323, 6, 13, 87, 22, 60, 18, 22, 85, 1588, 30], [1589, 2, 523, 6, 294, 11, 1590, 159, 4, 11, 115, 322, 60], [899, 37, 42, 11, 11, 67, 740, 306, 734, 4, 11, 32, 1, 119, 2, 7, 8], [10, 222, 15, 262, 1143, 704, 3, 318, 24, 2, 879, 635, 336], [307, 140, 307, 14, 43, 205, 274, 284, 635, 92, 2, 376, 525], [542, 62, 18, 2, 2547, 160, 383, 736, 2, 879, 281, 21, 69, 79, 6, 22], [24, 2, 502, 220, 6, 1591, 18, 43, 1589, 38, 11, 1144], [], [1144, 46, 1, 217, 3, 1, 424, 4, 126, 2548, 1144, 3], [17, 9, 1, 19, 71, 110, 25, 268, 14, 2, 28, 296, 11, 614], [27, 186, 111, 8, 25, 611, 15, 90, 3, 527, 60, 5, 853, 65], [900, 27, 174, 73, 1045, 8, 1592, 11, 48, 2, 283, 17, 95], [100, 181, 2549, 1, 1145, 4, 2550, 3, 1593, 3, 183, 32, 10], [136, 1145, 6, 1594, 68, 1595, 22, 1130, 2, 115, 302], [2551, 156, 18, 22, 231, 99, 1, 2552, 67, 74], [2553, 113, 8, 1, 266, 1146, 4, 1, 36, 290, 402, 626, 1], [2554, 4, 25, 901, 22, 231, 151, 102, 25, 1119, 256], [1, 2555, 4, 25, 268, 159, 4, 126, 2556, 20, 8, 543, 16, 1], [1083, 8, 1, 634, 221, 12, 33, 58, 1147, 3, 95, 1, 113], [4, 1, 419, 3, 1, 858, 4, 1, 298, 65, 30, 1, 1148], [1149, 20, 1085, 15, 90, 55, 2557, 56, 3, 70, 15, 264], [121, 116, 5, 19, 55, 741, 6, 187, 9, 3, 135, 95, 15, 1], [19, 71, 67, 113], [], [], [], [], [2558], [], [], [2, 281, 41, 4, 22, 93, 720, 4, 1, 2559, 4, 1, 19], [50, 3, 620, 22, 1, 1150, 69, 454, 2560, 8, 1], [1151, 26, 11, 38, 56, 5, 36, 406, 542, 1596, 3, 31, 4], [1, 608, 379, 38, 1152, 3, 5, 708, 902, 1153, 18, 1, 424, 4], [11, 67, 322, 156, 2, 1154, 6, 2561, 11, 23, 1105, 18, 23, 1105], [78, 1, 903, 451, 7, 525, 337, 2, 101, 9, 31, 4, 1], [1518, 379, 7, 370, 31, 2562, 100, 544, 3, 21, 2, 12, 6, 200], [2563, 37, 9, 1, 69, 7, 33, 725, 212, 21, 251, 11], [7, 15, 742, 1143, 704, 6, 125, 9, 1, 90, 4, 32, 19, 904, 110], [68, 2564, 2, 321, 11, 5, 93, 1597, 190, 32, 1, 2565, 70, 132], [31, 73, 2566, 4, 2567, 23, 1, 1099, 2568, 3, 186, 83, 8, 1], [524, 2, 302, 5, 1598, 165, 2569, 5, 2570, 6, 25, 905, 2571], [181, 1, 119, 702, 15, 57, 115, 150, 282, 14, 2, 77, 24, 2, 142], [1, 906, 240, 8, 31, 88, 3, 1, 907, 31, 8, 1, 121], [711, 1, 90, 3, 180, 1599, 1, 343, 2, 63, 6], [2572, 2, 77, 5, 1600, 908, 4, 743, 3, 176, 123], [2, 47, 1, 222, 370, 14, 92, 12, 683, 323, 16], [5, 145, 2, 1101, 9, 10, 1601, 12, 2573, 13, 24, 2, 1155], [1, 704, 5, 145, 92, 14, 11, 63, 11, 12, 178, 15, 5, 193], [53, 37, 255, 742, 56, 11, 7, 525, 216, 255, 175], [], [2, 610, 5, 715, 296, 10, 909, 1156, 1, 906, 240, 17, 737], [157, 3, 89, 152, 17, 5, 636, 1, 222, 174, 744, 3, 89], [161, 1602, 1603, 39, 8, 3, 374, 425, 276, 1157], [13, 94, 1, 637, 243, 2, 302, 11, 142, 61, 5, 193, 53, 37, 6], [2574, 1, 169, 18, 6, 13, 97, 63, 6, 2575, 195, 1, 221], [60, 5, 1604, 2, 711, 1, 240, 79, 6, 68, 910, 911, 1], [112, 39, 60, 1, 861, 62, 4, 5, 290, 3, 8, 117, 145], [39, 6, 871, 1, 222, 168, 422, 3, 744, 24, 1158], [3, 284, 1158, 6, 871, 112, 39, 149, 24, 125, 70, 112], [70, 125, 70, 453, 3, 453, 81, 54, 912, 913, 1557], [10, 545, 3, 5, 143, 2576, 2577, 2578, 23, 10, 128], [], [2, 316, 638, 2, 231, 639, 1, 384, 745, 4, 19], [319, 29, 91, 1159, 640, 26, 38, 5, 218], [370, 60, 9, 31, 188, 35, 5, 2579, 4, 5, 746, 914], [452, 2, 77, 1, 119, 466, 2580, 100, 4, 54, 1160], [2581, 14, 2, 132, 23, 915, 112, 256, 125, 60, 1, 2582, 4, 5], [149, 2583, 1, 308, 747, 4, 1, 222, 63, 158, 6], [641, 122, 30, 13, 3, 2, 47, 1, 147, 1161, 467, 195, 1, 139], [1162, 11, 306, 193, 3, 306, 193, 1425, 5, 125, 2, 1605], [1, 222, 12, 58, 1606, 3, 2, 12, 150, 34, 1, 309, 184], [2, 12, 5, 308, 617, 4, 2584, 18, 2, 7, 223, 253, 100], [546, 6, 42, 2585, 4, 109, 405, 133, 1, 2586, 2587, 9], [284, 2588, 1163, 40, 100, 546, 16, 13, 1, 1087, 1164, 4], [162, 3, 104, 7, 1159, 916, 6, 1, 457, 24, 8, 1], [2589, 2590, 2, 47, 1, 224, 1516, 467, 86, 61], [2591, 30, 153, 6, 305, 3, 12, 5, 422, 917, 4, 1, 918], [350, 158, 14, 2, 89, 23, 81, 2592, 698, 1], [2593, 4, 112, 3, 125, 1607, 34, 31, 2594, 1608], [1, 139, 142, 23, 5, 1165, 2595, 4, 426, 5, 547, 1166], [2596, 60, 9, 4, 748, 642, 1, 2597, 147, 442, 5, 2598], [4, 148, 5, 1609, 1610, 8, 172, 1, 224, 5, 1158, 1611], [1167, 3, 2, 44, 99, 304, 4, 1, 350, 338, 56, 3, 24, 5], [735, 1146, 618, 8, 1, 426], [], [1, 1168, 7, 2599, 3, 604, 2, 7, 81, 23, 1, 170, 199], [35, 51, 21, 385, 56, 1612, 3, 1, 409, 292, 183, 13], [330, 3, 308, 2, 47, 324, 351, 3, 1613, 60, 2600, 4, 1169], [56, 421, 56, 167, 29, 168, 919, 548, 3, 288, 122], [2, 47, 310, 427, 920, 64, 422, 3, 749, 3, 712, 60, 1614], [1, 265, 446, 4, 1, 201, 63, 714, 2601, 3, 2602], [106, 10, 127, 1, 36, 157, 35, 1, 921, 9, 2603, 10], [1615, 1616, 123, 453, 3, 453, 158, 2, 1155, 9, 1, 147], [1617, 1170, 64, 3, 48, 30, 1618, 6, 1618, 8, 5, 193, 53], [259, 3, 9, 2604, 10, 915, 7, 79, 5, 922, 5, 193, 3], [193, 40, 193, 1, 74, 1619, 826, 195, 1, 82, 3], [317, 3, 7, 256, 40, 1, 266, 1620, 167, 4, 1621], [], [1, 640, 745, 4, 1, 1171, 20, 259, 2605, 56, 29], [1607, 15, 93, 34, 5, 209, 4, 2606, 2607, 2, 868], [206, 5, 1141, 1172, 4, 1, 50, 16, 51, 2, 7, 1622, 6], [516, 18, 10, 128, 7, 100, 1623, 6, 2608, 6, 11, 37, 17, 5], [209, 4, 1624, 351, 35, 13, 2, 923, 83, 34, 1173, 15], [90, 2, 924, 76, 4, 907, 924, 76, 4, 683, 18], [59, 153, 745, 18, 158, 5, 1174, 1625, 4, 1626], [168, 64, 8, 10, 128, 5, 233, 891, 3, 1095, 5, 233], [925, 212, 15, 93, 29, 142, 725, 926, 4, 13, 57], [143, 2609, 4, 386, 57, 1165, 2610, 35, 75], [1627, 750, 2, 76, 129, 33, 1628, 78, 2, 39, 6], [214, 525, 34, 1, 308, 2611, 82, 9, 1616, 3, 2612], [92, 10, 127, 2, 47, 105, 3, 547, 1629, 541, 66], [13, 73, 2613, 131, 109, 427, 4, 75, 136, 19, 3, 144, 14, 11], [63, 927, 4, 2614, 3, 1630, 2, 47, 5, 1631, 167, 1632, 64, 1], [170, 199, 3, 2615, 26, 276, 109, 2616, 2617, 84], [86, 1, 2618, 4, 10, 621, 1, 201, 63, 52, 749, 3, 37], [10, 128, 39, 123, 6, 1, 893, 4, 907], [], [1, 384, 928, 257, 8, 1, 1175, 4, 10, 1176, 41], [857, 8, 1, 172, 51, 2, 53, 1, 50, 1177, 37, 134], [14, 2, 378, 15, 5, 508, 698, 86, 19, 21, 856], [2619, 2, 7, 37, 6, 586, 2620, 7, 1633, 60, 5, 1169], [86, 1, 2621, 4, 2622, 2623, 18, 6, 150, 6], [5, 515, 2624, 1, 2625, 4, 83, 1634, 40, 1634, 34], [1635, 257, 8, 10, 114, 1057, 2626, 10, 2627, 34, 140, 1636], [1637, 17, 234, 4, 1, 2628, 9, 5, 929, 2629], [1638, 339, 5, 191, 1639, 1178, 72, 1640, 3, 930], [83, 3, 10, 1086, 62, 4, 32, 643, 263, 34, 1], [468, 21, 1175, 12, 751, 6, 13, 70, 3, 70, 215, 2], [7, 597, 1, 50, 18, 24, 2, 12, 1091, 682, 11, 14, 54], [2630, 928, 31, 4, 1, 2631, 5, 65, 188, 174, 6, 456, 56, 1], [928, 7, 931, 2, 43, 549, 47, 11, 8, 1, 119, 2632, 104], [1, 443, 38, 9, 2633, 1, 550, 2634, 4, 469], [1, 2635, 2636, 3, 1172, 4, 1, 50, 183, 32, 1], [218, 4, 1641, 743, 12, 340, 2637, 10, 2638, 2, 281], [83, 9, 2, 44, 211, 515, 3, 17, 5, 1642, 4, 2639, 2], [752, 6, 515, 1643, 60, 54, 2640, 1644, 2, 2641, 79], [1, 240, 3, 753, 1, 69, 89, 2642, 79, 3, 2, 7], [923, 914, 86, 1, 184], [], [26, 7, 1, 322, 4, 5, 2643, 4, 1645, 8, 10, 545, 2, 137, 28], [58, 2644, 16, 5, 145, 5, 2645, 644, 7, 1646, 123, 13], [3, 2, 7, 1179, 23, 244, 645, 8, 609, 4, 1, 2646, 50], [469, 81, 63, 330, 18, 158, 2, 868, 9, 1], [621, 8, 10, 545, 7, 210, 2, 135, 123, 13, 2, 7, 23, 57], [63, 6, 42, 5, 36, 387, 8, 5, 637, 1180, 40, 1647], [285, 3, 2, 463, 9, 45, 2647, 3, 932, 2648, 20], [2649, 8, 5, 2650, 106, 1, 1181, 4, 1, 644, 2651, 1], [2652, 933, 644, 428, 8, 5, 1182, 79, 1, 50, 3, 470], [198, 1, 236, 60, 646, 8, 5, 145, 2, 7, 1183, 6, 1, 2653], [2654, 2655, 46, 2, 6, 5, 65, 165, 188, 378, 934], [237, 6, 99, 22], [], [158, 2, 76, 57, 5, 1644, 2, 7, 6, 200, 1183, 2, 178, 64, 3], [135, 123, 13, 5, 935, 335, 1648, 425, 8, 41, 74], [429, 2656, 2657, 551, 1, 1649, 86, 1, 744], [1650, 18, 32, 1132, 4, 1, 82, 7, 2658], [], [10, 745, 72, 42, 510, 6, 1651, 14, 1, 1652, 4, 644], [168, 1653, 2, 47, 1, 74, 335, 73, 1184, 11, 7, 52], [275, 16, 5, 589, 1654, 552, 553, 68, 409, 11, 7, 4, 74], [1185, 8, 754, 252, 60, 5, 2659, 196, 18, 1, 1655], [471, 4, 274, 755, 2660, 15, 1, 936, 20, 919, 37], [9, 11, 63, 6, 2661, 1, 352, 11, 353, 6, 13, 7, 4], [225, 3, 7, 354, 17, 1656, 11, 1186, 9, 1, 113, 7], [94, 13, 1, 2662, 127, 63, 6, 380, 13, 26, 7, 1], [422, 543, 4, 5, 885, 23, 1, 693, 11, 7, 937, 844, 542], [3, 9, 2663, 54, 640, 747, 4, 1187, 2, 178], [176, 15, 11, 16, 5, 36, 172, 216, 5, 193, 130, 53, 216, 54], [756, 11, 63, 6, 2664, 3, 6, 2665, 14, 1, 644, 470, 92, 11], [2666, 53, 1653, 15, 93, 2, 2667, 10, 127, 30, 11, 16, 5, 145, 3], [47, 9, 1, 644, 1657, 12, 542, 2668, 3, 9, 1, 139, 7], [2669, 17, 1, 1658, 4, 1, 147], [], [2, 135, 64, 70, 15, 1, 1659, 74, 754, 3, 1, 305], [2670, 4, 10, 1503, 39, 194, 35, 13, 57, 129, 1628, 78], [9, 744, 1657, 7, 355, 2671, 57, 129, 33, 28], [323, 6, 278, 57, 87, 2672, 12, 1660, 34, 5, 722, 938], [57, 87, 8, 21, 719, 1, 472, 12, 430, 68, 2673, 3, 12], [2674, 34, 252, 757, 2675, 3, 2676], [2677, 2, 129, 538, 41, 155, 82, 850, 371, 95, 1, 73], [1188, 3, 2678, 16, 75, 722, 2679, 5, 939, 325, 6], [42, 753, 2680], [], [223, 2, 47, 121, 326, 1189, 310, 427, 17, 2681], [2682, 3, 940, 1652, 17, 5, 2683, 170, 199, 1190, 388], [8, 35, 13, 86, 1, 2684, 2685, 2, 7, 1191, 17, 5, 2686], [179, 2, 204, 2687, 6, 1, 19, 50, 3, 2688, 510, 6], [1661, 11, 14, 2, 107, 37, 1, 1192, 4, 1, 147, 1662, 86, 1], [1193, 1, 330, 1650, 7, 1194, 1663, 3, 317, 60], [1, 2689, 1195, 4, 5, 717, 183, 13, 8, 1, 536, 426], [4, 1, 2690, 139, 41, 422, 421, 2691, 4, 1182, 1664, 34], [2692, 1, 105, 427, 66, 13, 178, 62, 291, 3], [758, 941, 17, 1, 1183, 4, 1, 1193, 3, 2693, 62], [8, 74, 40, 1, 2694, 2695, 2696, 198, 45, 2697, 2], [77, 2698, 8, 5, 143, 82, 2, 77, 14, 130, 5, 2699, 137, 283, 8], [1, 291, 184, 2700, 1, 2701, 1655, 183, 3, 115, 2702, 10, 179], [168, 6, 942, 2, 142, 5, 554, 172, 296, 10, 909, 3, 70], [2703, 2704, 2705, 3, 2706, 17, 1, 50, 11, 321, 106], [10, 2707, 2708, 3, 204, 79, 11, 260, 10, 1118, 555, 31], [88, 23, 1, 524, 1, 121, 23, 1, 240, 2, 178, 2709, 2710], [8, 1665, 6, 1666, 70], [], [18, 17, 21, 2711, 4, 5, 2712, 1196, 10, 1197, 1090, 2], [135, 73, 1667, 3, 259, 2713, 15, 21, 82, 4, 1, 473], [202, 8, 5, 1198, 1668, 508, 64, 8, 1, 759, 4, 1, 647], [385, 2, 47, 5, 1669, 4, 474, 760, 8, 761, 244, 1199, 29, 12], [192, 13, 3, 45, 460, 20, 1670, 94, 13], [], [24, 2, 207, 762, 1200, 13, 286, 86, 1, 285, 40], [1, 74, 196, 20, 1, 763, 3, 1671, 4, 278, 269, 31, 4], [59, 943, 8, 5, 2714, 1672, 648, 6, 1, 36, 387, 35], [51, 2, 178, 17, 10, 50, 27, 7, 5, 688, 325, 130], [262, 232, 508, 760, 8, 5, 932, 2715, 2716, 15, 1, 2717, 17, 5], [2718, 1617, 1673, 53, 2719, 2, 44, 33, 314, 1674], [51, 20, 23, 25, 232, 25, 858, 20, 616, 6, 1, 1148, 3, 25], [185, 7, 616, 2720, 9, 2, 463, 16, 1, 90, 19, 102, 627], [1, 184, 7], [], [27, 260, 13, 14, 274, 5, 52, 327, 3, 1201, 325, 18], [1202, 944, 25, 1421, 113, 649, 13, 4, 1, 73], [327, 209, 4, 2721, 9, 2722, 764, 4, 51, 55, 1203], [6, 626, 37, 181, 15, 1, 650, 4, 108, 2, 194, 2723, 651], [2, 142, 10, 157, 30, 1, 50], [], [], [], [], [2724], [], [], [8, 117, 145, 55, 20, 418, 113, 6, 113, 2, 3, 21, 1675], [69, 62, 4, 1173, 27, 39, 648, 64, 6, 13, 3, 411, 34, 10], [127, 1, 882, 30, 25, 1676, 4, 109, 1677, 4, 179, 260, 13, 15], [163, 24, 27, 204, 6, 1, 154, 315, 165, 20, 1204, 108, 3], [527, 6, 49, 8, 5, 143, 3, 52, 765, 3, 2725, 1205], [], [26, 20, 315, 286, 3, 158, 5, 36, 1669, 4, 130], [336, 53, 742, 4, 59, 1206, 270, 20, 66, 13, 31, 4, 49], [2726, 13, 11, 39, 34, 10, 185, 945, 156, 9, 10, 901, 7], [100, 946, 3, 701, 16, 49, 37, 2, 1207, 10, 185, 3, 1678, 6, 10], [545, 1207, 11, 70, 27, 39, 5, 1208, 448, 347, 3, 24], [553, 10, 88, 24, 2, 77, 121, 244, 36, 1679, 35, 10], [111, 3, 1671, 29, 458, 6, 213, 512, 2, 7, 401, 26, 7], [304, 8, 21, 15, 32, 2727, 206, 26, 7, 252, 8], [59, 475, 36, 96, 9, 2728, 651, 5, 1201], [2729, 5, 233, 2730, 766, 3, 880, 29, 135, 37], [944, 9, 2, 44, 556, 83, 767, 1, 265, 1082, 4, 49], [66, 60, 1209, 2731, 18, 2, 124, 5, 349, 452, 6, 1680, 49, 78, 2], [47, 45, 36, 1210, 157, 218, 15, 1, 19, 50, 2732], [24, 78, 11, 7, 33, 100, 622, 2, 76, 4, 5, 652, 2, 12, 653], [768, 3, 1639, 79, 1, 379, 4, 1, 50, 2, 2733, 1], [36, 557, 9, 72, 296, 11, 8, 452, 3, 132, 59, 8, 10], [328, 24, 2, 204, 70, 6, 99, 57, 2, 44, 187, 8, 1, 114, 4], [2734], [], [3, 24, 176, 73, 525, 34, 45, 947, 2, 47, 41], [356, 2735, 8, 45, 2736, 1528, 1211, 4, 1681], [45, 591, 51, 7, 2737, 2738, 39, 6, 5, 1212, 173, 15, 1], [558, 3, 1213, 26, 7, 33, 1, 1682, 747, 4, 11, 23, 1], [113, 3, 45, 545, 20, 859, 193, 1, 2739, 20, 295], [17, 266, 164, 230, 1214, 693, 3, 1, 36, 2740, 242, 6, 5], [415, 1, 127, 20, 275, 3, 2741, 3, 21, 137, 538, 2742, 23], [10, 203, 2, 431, 84, 9, 26, 7, 5, 233, 1215, 4, 1], [407, 2, 129, 28, 1154, 8, 49], [], [14, 29, 124, 43, 948, 6, 2743, 17, 13, 18, 334, 178], [123, 13, 854, 3, 2744, 8, 244, 1683, 2745, 6, 264, 121, 2], [110, 1, 1133, 2, 613, 6, 1, 19, 50, 3, 6, 83], [24, 1684, 16, 5, 145, 102, 6, 1594, 19, 2, 613, 6, 1], [147, 15, 163, 5, 2746, 475, 36, 335, 8, 2747, 932, 3], [74, 256, 10, 949, 3, 24, 2748, 13, 40, 2749, 1], [322, 4, 1645], [], [16, 5, 145, 2, 7, 769, 219, 1, 654, 4, 25, 949, 7], [526, 156, 1, 423, 12, 150, 34, 10, 128, 950, 20], [59, 270, 2750, 22, 137, 1216, 297, 102, 11, 142, 13], [22, 99, 2, 12, 367, 1685, 9, 1, 96, 4, 1, 922, 336], [300, 3, 154, 476, 279, 72, 42, 2751, 8, 609, 4, 126, 8], [770, 951, 469, 24, 31, 4, 49, 194, 869, 13, 5], [423, 9, 620, 108, 6, 42, 23, 1, 559, 2752, 4, 31, 4], [75, 878, 922, 155, 477, 869, 13, 8, 443, 87, 2, 12, 150, 30], [1, 147, 8, 5, 1193, 11, 373, 560, 1, 1527, 2, 12, 2753], [35, 45, 894, 45, 944, 104, 1217, 3, 1675, 947], [5, 1632, 4, 1686, 1218, 195, 10, 128, 16, 5, 145, 2, 77], [9, 2, 12, 927, 1, 19, 50, 8, 2754], [], [2, 1687, 613, 6, 1, 147, 3, 321, 49, 140, 5, 1688, 2755], [4, 5, 2756, 14, 739, 49, 29, 32, 2757, 5, 915, 53, 37], [3, 2758, 24, 39, 31, 528, 94, 13, 1689, 5, 2759, 4], [327, 226, 355, 153, 6, 13, 3, 132, 11, 66, 10, 558], [1, 366, 7, 1219, 17, 1690, 2760, 3, 158, 29], [20, 32, 269, 6, 3, 952, 16, 226, 3, 2761, 767], [49, 35, 13, 212, 2, 7, 180, 1691, 17, 1220, 22, 165], [28, 211, 192, 1, 60, 189, 856, 389, 57, 953, 3], [1165, 226, 1692, 237, 4, 2762, 12, 2763, 24], [2764, 605, 9, 45, 2765, 182, 42, 2766, 8, 1], [1493, 478, 3, 37, 2, 7, 723, 255, 1, 196, 4, 74, 1185], [51, 12, 63, 6, 380, 13, 32, 1, 215, 17, 5, 885, 15, 10], [1693, 94, 5, 326, 330, 2767, 4, 1694, 429, 14, 2], [89, 17, 49, 1, 390, 4, 10, 1695, 2768, 4, 5], [1221, 1469, 3, 559, 2769, 39, 17, 1696], [2770, 6, 10, 128], [], [1, 478, 12, 5, 310, 2771, 3, 7, 355, 4, 935], [263, 2, 7, 771, 159, 1177, 17, 1, 351, 954, 4], [36, 96, 3, 17, 1, 241, 309, 2772, 9, 2773, 92, 13], [2774, 3, 1697, 10, 772, 617, 4, 1, 82, 2, 47], [79, 45, 763, 7, 5, 2775, 713, 4, 327, 285, 3], [226, 5, 134, 2776, 3, 144, 2777, 637, 2, 47, 5, 561], [4, 940, 2778, 4, 143, 74, 226, 2779, 5, 562, 130], [195, 1, 919, 4, 1, 2780, 2781, 29, 168, 1080, 14, 87], [700, 138, 1, 1698, 2782, 18, 14, 2, 208, 2, 107, 33, 2783], [49, 2784, 15, 21, 19, 1, 19, 50, 7, 166, 773, 23, 1], [645, 138, 1, 1649], [], [1, 1610, 4, 1, 733, 7, 2785, 1648, 18, 771, 2, 107], [33, 2786, 1, 2787, 52, 2788, 219, 2, 431, 2, 47], [2789, 4, 155, 1699, 1700, 14, 2, 288, 86, 3], [11, 260, 13, 9, 29, 20, 52, 1590, 391, 3, 844, 542], [341, 73, 825, 760, 96, 417, 13, 8, 1, 733, 3, 37, 55], [432, 2, 1579, 8, 2790, 1701, 1702, 1195, 176], [955, 156, 2791, 17, 226, 3, 1180, 40, 54], [912, 774, 4, 266, 244, 2792, 1199, 3, 941, 74, 1217], [8, 5, 1690, 2793, 4, 852, 3, 528, 1703], [], [1, 241, 733, 420, 34, 5, 2794, 105, 311, 428, 17], [421, 1, 1222, 7, 8, 543, 3, 1, 563, 1223, 2795], [17, 2796, 348, 3, 1223, 2797, 2798, 5, 2799], [104, 1, 479, 7, 124, 64, 4, 310, 1704, 4, 41, 52, 510, 74], [564, 33, 1142, 402, 1705, 1704, 3, 11, 7, 37, 181, 542, 14, 2], [357, 40, 1, 253, 6, 3, 952, 4, 255, 1224, 14, 6, 42, 2800], [2801, 198, 1, 73, 2802, 956, 2803, 6, 1, 441], [20, 934, 706, 124, 4, 1705, 4, 1706, 429, 1134], [130, 5, 562, 30, 1, 479, 3, 35, 59, 20, 775, 4, 776], [41, 2, 696, 14, 5, 209, 4, 2804, 2805, 3, 1707], [18, 16, 1, 159, 203, 29, 20, 143], [], [248, 1, 706, 7, 1080, 5, 105, 561, 4, 1708], [35, 59, 10, 2806, 565, 1709, 2807, 16, 13, 6, 187], [2808, 17, 5, 475, 882, 4, 2809, 29, 110, 6, 1136, 1], [566, 17, 45, 157, 767, 2810, 3, 1710, 3, 37, 614, 34], [1, 123, 1711, 8, 1, 936, 4, 1, 706, 2, 7, 33, 2811, 6], [440, 45, 2812, 16, 2, 77, 2813, 3, 2814, 14, 2, 107, 37, 2], [1712, 1, 311, 15, 10, 1713], [], [3, 130, 1, 69, 9, 260, 13, 159, 7, 68, 2815, 214], [1, 1565, 348, 563, 51, 898, 95, 5, 2816], [1714, 20, 391, 8, 480, 957, 3, 1, 1715, 9, 428], [195, 1, 777, 173, 20, 354, 17, 303, 3, 11, 363, 10, 457, 9], [1, 655, 4, 1, 1185, 239, 433, 13, 7, 2817, 778], [1, 772, 1225, 7, 1226, 761, 3, 2818, 26, 20], [130, 5, 1716, 4, 300, 96, 1227, 8, 1, 311, 3, 159, 4], [49, 565, 14, 433, 6, 13, 14, 29, 44, 150, 20, 656, 13, 17], [407, 45, 36, 127, 941, 79, 1, 566, 29, 20, 1717], [32, 20, 760, 8, 1, 119, 244, 3, 144, 392, 2819, 1228], [], [566, 40, 1, 40, 7, 32, 45, 2820, 59, 96, 4, 1, 473], [202, 20, 2821, 2822, 3, 215, 2, 7, 17, 49, 8, 779], [4, 41, 2823, 2824, 2, 12, 6, 42, 2825, 707, 206, 2], [101, 900, 9, 2826, 780, 1718, 2827, 12, 256, 1], [2828, 34, 1229, 18, 1, 776, 20, 52, 1719], [31, 8, 1230, 9, 63, 6, 42, 8, 2829, 32, 1, 19, 2, 7], [26, 5, 2830, 69, 8, 5, 175, 2831, 2832, 7, 2833, 280], [3, 2, 124, 11, 10, 2834, 15, 90, 2, 7, 531, 40, 32, 59, 143], [776, 3, 40, 1, 143, 226, 2, 47, 18, 781, 2, 110, 6], [1720, 45, 654], [], [247, 2, 316, 447, 22, 4, 10, 566, 289, 8, 1, 1231, 202], [56, 37, 197, 14, 10, 1140, 7, 5, 36, 2835, 2, 393, 6], [213, 5, 2836, 1721, 6, 958, 1, 1703, 4, 59, 153, 278, 4], [959, 314, 9, 7, 1, 282, 69, 6, 187, 1, 776, 63, 5], [680, 69, 6, 830, 35, 3, 727, 31, 4, 59, 64, 2, 110], [5, 1625, 4, 2837, 529, 3, 1232, 2, 12, 41], [1106, 849, 8, 2838, 10, 960, 15, 90, 10, 1054], [417, 17, 5, 2839, 4, 731, 53, 2840, 852, 18], [158, 5, 749, 2841, 36, 325, 63, 6, 1722, 10, 2842], [3, 2843, 5, 961, 29, 12, 6, 1723, 3, 403, 1, 893], [15, 105, 441, 6, 264, 121, 3, 10, 90, 2844, 6, 213, 1], [1206, 36, 529, 4, 45, 782, 2845, 54, 2846, 1233], [4, 2847, 247, 2, 77, 60, 5, 2848, 1724, 477], [3, 2849, 3, 158, 2, 12, 5, 1234, 4, 2850, 1725, 15], [481, 15, 10, 2851, 3, 24, 2, 174, 6, 2852, 2853, 3], [84, 1, 2854, 6, 1136, 18, 11, 7, 657, 369, 3, 1, 36, 96], [197, 567, 3, 458, 6, 200, 122, 30, 10, 2855, 37, 2], [393, 230, 4, 434, 6, 373, 49, 897, 45, 2856, 8], [36, 1726, 78, 29, 77, 1235, 3, 52, 36, 1726, 2, 101], [29, 20, 92, 134, 16, 2, 211, 417, 96, 73, 1727, 53, 73], [1103, 1236], [], [5, 345, 69, 2, 197, 783, 66, 10, 36, 2857, 3, 9, 7], [45, 1215, 4, 407, 29, 72, 150, 6, 13, 17, 1728, 784, 4], [1693, 60, 477, 18, 60, 477, 29, 72, 197, 515], [1237, 13, 3, 2858, 122, 116, 41, 121, 2859, 1, 289, 3, 10], [2860, 1729, 1238, 2, 1155, 16, 1, 90, 19, 9], [180, 32, 234, 165, 12, 1180, 13, 15, 90, 20, 210, 11, 38], [279, 100, 102, 962, 2, 39, 6, 2861, 59, 36, 96, 2], [89, 62, 86, 1, 1730, 34, 1, 1731, 82, 70, 14, 197, 14], [10, 2862, 7, 2863, 2, 7, 1732, 1574, 73, 4, 59, 278], [4, 1, 202, 165, 72, 440, 13, 5, 36, 658, 1723, 3], [1733, 66, 13, 3, 832, 697, 3, 2864, 8, 5, 1239], [114, 519, 13, 70, 6, 10, 136, 2865], [], [1, 785, 4, 346, 7, 35, 1, 82, 14, 2, 943, 30, 1, 105], [311, 3, 1, 1734, 7, 261, 40, 1, 627, 1735, 4, 1, 963, 147], [15, 90, 133, 20, 52, 2866, 469, 7, 37, 1736], [511, 30, 1, 82, 2, 12, 1109, 84, 1, 226, 1, 241], [478, 2, 12, 166, 7, 2867, 23, 1, 659, 4, 5, 872, 568], [569, 18, 1, 964, 12, 2868, 130, 5, 965, 30, 68, 513], [911, 2, 752, 6, 1666, 6, 1, 1240, 4, 5, 786, 130, 5], [965, 3, 5, 216, 122, 30, 51, 2, 44, 200, 5, 1544, 482, 4, 21], [75, 787, 8, 1, 922, 336, 300, 3, 154, 476, 624, 300], [3, 31, 5, 1108, 16, 9, 2, 182, 403, 7, 1, 1241, 1, 36], [921, 4, 10, 50, 2869], [], [14, 2, 374, 2, 7, 656, 16, 306, 617, 9, 44, 339], [966, 6, 403, 1, 1737, 4, 967, 2870, 8, 51, 2], [101, 1, 82, 16, 967, 11, 7, 5, 36, 114, 64, 1, 170, 16], [364, 7, 5, 105, 968, 4, 1242, 2871, 451, 40, 788, 4], [1738, 5, 326, 2872, 4, 2873, 969, 3, 2874], [775, 1724, 51, 20, 354, 775, 4, 52, 327, 2875, 60], [660, 2876, 339, 18, 2877, 2878, 17, 421, 66], [1, 1243, 3, 1739, 4, 2879, 11, 7, 599, 1, 1740], [1244, 4, 41, 326, 1245, 6, 57, 173, 927, 2, 44, 33], [2880, 11, 7, 103, 9, 2, 7, 1246, 15, 5, 781, 1241, 6, 28], [5, 52, 143, 789, 1, 90, 2881, 4, 5, 81, 1741], [1067, 18, 4, 9, 2, 115, 586, 8, 68, 843, 169], [], [176, 123, 17, 5, 349, 76, 30, 5, 2882, 23, 51, 2], [1742, 16, 5, 215, 2, 970, 9, 26, 20, 43, 295, 971, 6, 42], [192, 425, 1, 2883, 385, 3, 339, 84, 1, 2884], [12, 317, 103, 3, 26, 138, 1, 1743, 20, 271, 60], [427, 18, 1, 385, 3, 1, 2885, 51, 790, 140], [2886, 947, 4, 75, 136, 1744, 1168, 12], [661], [], [2887, 46, 2, 6, 83], [], [3, 23, 1, 1745, 4, 9, 39, 117, 76, 2, 135, 15, 1], [216, 1082, 36, 474, 9, 20, 1204, 13, 24, 8, 5, 1746], [2, 728, 9, 32, 12, 1, 119, 790, 4, 1747, 1, 119, 244], [2888, 2889, 3, 1, 119, 2890, 2891, 4, 2892, 11, 137, 538], [143, 130, 9, 2, 12, 33, 463, 21, 92, 18, 469], [7, 37, 143, 56, 2, 47, 1, 443, 1748, 156, 8, 1747, 3], [8, 32, 1, 2893, 4, 2894, 3, 1676, 9, 56, 2895, 152, 1], [1247, 30, 264, 121, 59, 96, 4, 1, 202, 20, 2896, 3], [1, 477, 63, 6, 10, 127, 6, 42, 18, 1, 2897, 4, 45], [2898, 2, 357, 24, 9, 1, 477, 4, 9, 19, 20], [1226, 2899, 2900, 15, 481, 3, 2, 101, 900], [483, 1073, 4, 10, 2901], [], [1157, 1, 766, 3, 484, 8, 51, 59, 96, 20, 570, 2], [77, 9, 21, 662, 1749, 4, 1, 1247, 7, 116, 32, 57], [31, 72, 829, 16, 1, 485, 4, 5, 65, 3, 1, 2902, 4, 5], [1248, 1, 1750, 4, 1, 1249, 3, 1, 2903, 4], [2904, 91, 245, 2905, 1751, 4, 54, 287, 4, 486], [972, 146, 973, 38, 974, 3, 483, 181, 2906], [2907, 54, 1752, 230, 131, 5, 2908, 6, 1, 692, 146], [1250, 533, 18, 975, 3, 152, 1621, 91, 976, 26, 38, 259], [434, 206, 26, 38, 43, 434, 16, 54, 1753, 1249], [3, 1, 2909, 4, 1, 1247, 17, 1446, 6, 45], [477, 67, 487, 2910, 55, 99, 41, 1729, 4, 21, 84], [8, 75, 136, 19, 3, 8, 21, 202, 287, 11, 7, 725, 21, 2], [85, 2911, 22, 7, 10, 1542, 15, 1, 19, 781, 2, 7, 6], [1094, 102, 191, 11, 250, 544, 4, 1, 2912], [], [215, 2, 7, 1754, 35, 59, 133, 10, 517, 7, 1755, 40], [5, 475, 36, 1245, 60, 5, 118, 106, 5, 1251, 2, 76, 8], [5, 1453, 114, 4, 1, 2913, 4, 400, 81, 1756, 3, 24], [890, 1, 2914, 4, 10, 1757, 26, 20, 43, 275, 427], [94, 1, 1758, 4, 1, 170, 3, 14, 10, 1759, 1252, 20, 599], [2915, 2, 7, 158, 166, 435, 16, 1, 90, 19, 17, 5], [143, 344, 4, 846, 3, 1760, 2, 537, 23, 64, 6, 1, 786], [], [26, 2, 101, 5, 860, 4, 41, 791, 564, 9, 2, 107, 33, 1761], [1253, 8, 957, 17, 5, 209, 4, 1254, 1255, 3, 216, 1691], [8, 244, 1256, 1, 408, 1762, 1257, 3, 1519, 34, 1, 1749, 4], [2916, 763, 2, 186, 48, 23, 11, 3, 2, 1712, 1, 872, 482, 4], [75, 155, 82, 106, 1, 571, 4, 9, 134, 125, 11, 7, 14, 765, 3], [749, 5, 482, 14, 2, 28, 284, 192, 1, 147, 12, 223, 210, 414, 1], [792, 3, 1, 793, 7, 2917, 1763, 553, 17, 41, 1258], [379, 4, 932, 3, 2918, 414, 7, 1, 569, 4, 1, 964, 8], [51, 1, 568, 257, 60, 5, 1167, 4, 2919, 2920, 2, 28, 223], [1445, 4, 1, 105, 977, 2921, 66, 138, 1, 1698], [1743, 41, 8, 394, 3, 41, 81, 1177, 103, 3, 26, 292], [5, 74, 53, 2922, 335, 8, 1, 713, 637, 4, 1, 201, 103, 3], [26, 39, 1, 1212, 1465, 331, 4, 41, 1251, 53, 2923, 26], [20, 43, 2924, 43, 663, 4, 2925, 2926, 43, 1764, 4], [1259, 1, 265, 201, 12, 514, 5, 637], [], [37, 656, 2, 110, 6, 132, 10, 1131, 35, 1, 133, 2, 12], [192, 3, 14, 11, 1765, 454, 6, 13, 9, 346, 10, 1131], [7, 252, 8, 21, 114, 900, 2, 101, 2, 12, 174, 95, 5], [216, 664, 53, 95, 5, 917, 4, 31, 2927, 4, 1, 664], [], [11, 63, 6, 13, 9, 2, 12, 323, 35, 386, 35, 1, 1260], [1, 2928, 571, 296, 13, 462, 4, 1, 571, 4, 978, 16, 1], [90, 19, 2, 110, 6, 1766, 54, 279, 1767, 4, 1, 436], [948, 8, 51, 55, 91, 15, 513, 1261, 3, 144, 150, 6, 120], [11, 38, 5, 1768, 1767, 156, 485, 38, 1, 1262, 4, 504], [484, 2929, 5, 1769, 23, 2930, 1, 369, 4, 2931, 1], [342, 4, 258, 1, 740, 2932, 1263, 9, 1770, 258, 73], [3, 73, 976, 12, 210, 794, 23, 6, 5, 2933, 31, 488, 4, 5], [2934, 386, 79, 329, 12, 256, 117, 133, 9, 91], [56, 245, 1614, 12, 514, 2935, 1771, 132, 8, 88, 3], [755, 448, 3, 1, 2936, 7, 57, 2, 47], [], [116, 32, 1, 2937, 3, 1, 1259, 4, 6, 125, 91, 81], [8, 1, 1627, 2938, 1, 1264, 4, 75, 19, 188, 2939, 18], [5, 36, 2940, 4, 1, 1772, 4, 205, 1187, 18, 84, 37], [11, 2941, 68, 1773, 52, 794, 3, 2942, 75], [1259, 3, 2943, 1774, 5, 1775, 238, 103, 3, 26, 3], [2944, 130, 5, 1234, 53, 37, 4, 1776, 660, 979, 1], [1777, 561, 6, 980, 62, 5, 981, 14, 29, 189, 55, 1778, 75], [2945, 660, 3, 665, 3, 102, 395, 29, 91, 982, 40], [2946, 1779, 56, 5, 153, 3, 372, 2947, 56, 5, 2948], [2949, 56, 5, 2950, 3, 375, 2951, 56, 5, 73, 680, 2952], [4, 780, 55, 1778, 49, 982, 333, 75, 2953, 91, 604], [3, 2954, 3, 75, 770, 38, 52, 2955, 333, 329], [100, 38, 1541, 3, 657, 8, 75, 1141, 157, 41, 125, 32, 21, 115], [42, 372, 2956, 3, 81, 372, 9, 38, 1, 1071, 4, 1], [983, 8, 779, 4, 1, 2957, 1, 265, 82, 115, 42, 1780], [2958, 3, 1781, 2959, 133, 115, 293, 453, 3, 453], [94, 1, 2960, 4, 329, 8, 1, 173, 2961, 3, 590], [55, 502, 1661, 1, 981, 4, 371, 3, 2962, 258, 6, 1572], [75, 205, 487], [], [21, 1782, 2, 208, 85, 28, 58, 337, 3, 337, 118, 337], [206, 16, 32, 19, 8, 1, 172, 4, 19, 195, 51, 10, 50], [12, 2963, 1, 184, 7, 827, 30, 2964, 1, 201, 30, 2965, 53], [1783, 1265, 20, 776, 3, 765, 3, 1719, 226], [1609, 2966, 2967, 795, 3, 796, 1, 2968, 4], [2969, 1784, 7, 984, 1785, 12, 58, 2970, 62, 2], [47, 43, 2971, 4, 109, 2972, 1785, 572, 32, 10, 1786, 3, 2], [502, 28, 6, 294, 22, 781, 9, 84, 1, 2973, 4, 2974], [3, 489, 12, 58, 1221, 1787, 40, 59, 2975], [], [436, 2976, 100, 12, 58, 1266, 2, 47, 978, 2977, 8], [547, 2978, 2979, 1788, 3, 14, 144, 2, 12, 101, 49], [1261, 8, 43, 1267, 26, 20, 43, 663, 4, 985, 1432, 436], [402, 2980, 985, 1, 2981, 1, 1789, 2982, 32], [9, 2983, 51, 2984, 1, 593, 4, 75, 82, 7, 210, 11], [7, 505, 23, 9, 797, 346, 9, 2, 182, 1472, 15, 1, 366, 4], [5, 436, 2985, 1, 849, 4, 986, 973, 12, 58], [417, 2, 1790, 3, 973, 12, 741, 6, 1268], [], [18, 17, 21, 465, 8, 1737, 533, 1791, 2986, 6], [1, 465, 57, 1079, 2987, 1264, 38, 5, 774, 4, 2988, 38], [1, 2989, 4, 205, 573, 3, 2990, 2991, 3, 846], [342, 106, 51, 1, 2992, 392, 3, 1102, 1792, 3], [1, 2993, 220, 6, 1, 759, 342, 9, 132, 5, 1769, 35, 1], [2994, 2995, 4, 2996, 278, 35, 1269, 2997, 1793, 3], [2998, 3, 1, 1750, 4, 1, 1249, 3, 1, 2999, 9], [3000, 1794, 1, 1795, 1796, 1, 1797, 16, 3001], [3002, 1269, 1798, 32, 101, 45, 3003, 3, 3004, 8], [1, 1160, 1270, 4, 1, 444, 56, 146, 91, 59, 1160], [1270, 26, 38, 5, 3005, 3006, 3, 11, 115, 574, 141], [3007, 1796, 141, 1795, 3008, 141, 938], [4, 32, 3009, 3010, 133, 56, 3, 133, 9, 213, 126], [1137, 850, 3011, 3012, 8, 5, 1271, 3, 575], [258], [], [2, 76, 4, 1, 486, 3013, 4, 1, 96, 45, 1215, 4], [573, 3, 234, 241, 483, 394, 3, 11, 3014, 10], [3015, 8, 5, 437, 1799, 4, 329, 16, 116, 1, 1074, 533], [625, 386, 12, 58, 392, 3016, 3, 1780, 3, 12], [1203, 32, 68, 483, 3017, 6, 3018, 1, 342, 106, 51], [11, 635, 3, 56, 39, 1, 1638, 4, 1, 3019, 342], [], [106, 1, 153, 342, 4, 437, 396, 3, 484, 9], [798, 799, 9, 17, 126, 38, 485, 72, 514, 1800], [84, 8, 75, 136, 19, 233, 3020, 3, 3021, 163, 1801], [6, 1802, 91, 5, 1534, 3022, 4, 3023, 486, 1197, 3], [1, 1803, 4, 1074, 16, 364, 91, 43, 105, 966, 137, 84, 42], [3024, 6, 5, 1474, 65, 3, 8, 5, 692, 4, 486, 981], [3, 484, 1804, 559, 14, 118, 14, 486, 72, 42, 62], [4, 169, 16, 1692, 237, 2, 357, 26, 12, 58, 43, 652, 4], [1805, 53, 1806, 1250, 43, 652, 30, 700, 1807, 43, 1272], [1187, 6, 1808, 485, 4, 3025, 43, 504, 4, 1267, 16], [140, 5, 258, 57, 55, 182, 835, 1, 800, 91, 14, 118, 1273, 14], [1, 392, 91, 206, 43, 549, 800, 372, 1273, 206, 29], [91, 16, 1, 392, 72, 42, 1694, 40, 54, 799, 16, 51, 26], [7, 43, 3026, 43, 301, 1, 1206, 764, 4, 1, 427, 2, 47], [7, 1, 1262, 4, 1, 93, 3027, 4, 1, 56, 3028, 799], [4, 978, 92, 11, 3029, 48, 34, 437, 1809, 17, 1], [342, 106, 51, 11, 635, 1, 1810, 4, 9, 488, 51], [110, 1, 93, 105, 3030, 21, 188, 284, 58, 1, 666, 4, 799, 8], [484, 11, 3031, 6, 951, 3, 6, 3032, 3, 24, 150, 3033], [3, 489], [], [84, 21, 1811, 3034, 72, 15, 93, 1274, 122, 12, 180, 1812], [8, 1, 19, 2, 47, 6, 3035, 1709, 17, 226, 6, 619, 6], [3036, 8, 1, 987, 37, 181, 7, 166, 4, 1, 1811, 730, 3], [43, 73, 84, 9, 72, 3037, 8, 1, 173, 34, 5, 1476], [3038, 55, 91, 540, 1813, 23, 1, 1814, 4, 801, 3], [434, 3, 11, 63, 6, 13, 9, 103, 7, 9, 3039], [1814, 391, 15, 93], [], [14, 2, 178, 26, 8, 1, 1129, 161, 2, 76, 9, 8, 21], [721, 705, 2, 12, 1275, 1, 667, 4, 1, 82, 1275], [1, 265, 3040, 4, 59, 3041, 96, 339, 1, 3042, 29], [12, 1815, 16, 1, 1268, 4, 973, 12, 3043, 100, 118], [3, 45, 1276, 12, 230, 1816, 131, 540, 3044], [9, 72, 516, 16, 1, 3045, 394, 52, 721, 7, 10], [705, 3, 870, 156, 14, 159, 365, 1076, 91], [], [], [], [], [3046], [], [], [14, 2, 178, 26, 1754, 79, 21, 100, 437, 488, 4, 65, 1], [305, 224, 791, 3, 3047, 39, 64, 62, 4, 54, 3048, 4, 589], [104, 8, 1, 802, 988, 1, 266, 36, 474, 741, 6, 293], [66, 414, 5, 3049, 1817, 3050, 40, 3, 2, 548, 17, 1], [1277, 4, 1, 112, 2, 393, 6, 1278, 3, 272, 146, 2, 44], [383], [], [2, 135, 16, 1, 478, 2, 267, 24, 10, 457, 378, 198, 6], [1, 335, 4, 1, 74, 196, 35, 1, 352, 4, 225, 351], [758, 14, 1, 104, 4, 1, 541, 224, 168, 735, 2, 44, 99], [1, 589, 1654, 141, 11, 26, 7, 1, 1279, 4, 1647], [285, 149, 8, 1, 362, 104, 3, 26, 7, 1, 36, 387], [2, 135, 15, 1, 387, 70, 5, 345, 301, 3051, 10, 3052], [43, 46, 2, 3053, 6, 83, 9, 7, 33, 1, 387], [], [18, 11, 7, 1, 387, 16, 1, 74, 1818, 113, 4, 1, 196, 7], [94, 11, 189, 22, 389, 57, 2, 77, 14, 21, 3054, 39], [631, 6, 13, 18, 22, 231, 1, 19, 50, 7, 210], [], [15, 163, 60, 5, 3055, 195, 1, 113, 39, 1, 1175, 4], [3056, 10, 136, 287, 4, 274, 166, 746, 8, 21, 143, 153, 82], [1, 616, 76, 4, 11, 7, 54, 1150, 486, 908, 2, 44], [283, 11, 3057, 13, 15, 1, 1280, 3, 515, 10, 554, 8, 117], [145, 2, 7, 8, 5, 938, 4, 179, 3, 269, 17, 105, 1162], [1281, 48, 1, 659, 163, 2, 250, 914, 3, 459, 10, 113, 2, 430], [43, 19, 8, 3058, 1, 628, 18, 1504, 64, 3, 242, 23, 17, 5], [627, 3059, 48, 10, 1213, 3, 1118, 32, 1, 19, 2, 242, 2, 7, 1578], [6, 83, 29, 28, 413, 11, 5, 36, 537, 11, 106, 1, 285], [62, 4, 1, 114, 778, 2, 242, 17, 32, 10, 129, 32, 1], [19, 17, 1, 3060, 9, 668, 533, 17, 3061, 925], [2, 267, 9, 140, 3062, 7, 989, 267, 1819, 9, 1], [50, 7, 1282, 62, 4, 10, 990, 10, 715, 39, 17, 801, 2], [302, 2, 803, 1, 265, 658, 30, 1, 170, 786, 6, 1], [36, 387, 154, 848, 130, 8, 742, 1283, 3, 2, 316, 33, 5, 444], [65, 2, 3063, 1284, 14, 2, 242, 15, 10, 1695, 989, 8, 979, 1], [50, 1272, 280, 715, 3064, 2, 606, 1284, 3, 416], [1820, 33, 5, 325, 63, 6, 42, 1285, 8, 9, 1821], [82], [], [78, 2, 633, 1, 387, 10, 1822, 1286, 20, 970, 33, 5, 507], [4, 1, 69, 7, 6, 42, 192, 2, 77, 422, 3, 490, 78, 2, 3065, 1], [991, 172, 138, 1, 149, 1279, 4, 285, 2, 242, 123, 11], [1823, 14, 87, 1, 69, 129, 42, 1287, 8, 5, 655, 3, 24], [382, 950, 17, 10, 157, 1824, 10, 591, 183, 13, 3066], [1, 196, 35, 1, 225, 352, 74, 941, 1818, 8], [1, 104, 4, 1, 541, 224, 11, 63, 6, 885, 8, 3067, 4, 10], [1825], [], [2, 129, 28, 3068, 83, 40, 3069, 1, 36, 96, 12, 132], [1, 522, 8, 41, 1826, 16, 13, 12, 2, 33, 77, 464, 4], [45, 486, 3, 559, 1145, 9, 38, 57, 3070], [13, 1, 344, 4, 41, 653, 3071, 1804, 86, 804], [3072, 10, 3073, 12, 317, 144, 16, 31, 69, 2, 77], [464, 1079, 41, 121, 287, 12, 3074, 68, 1288, 3075], [1, 50, 44, 33, 28, 413, 8, 19, 1, 3076, 4, 1], [557, 2, 115, 851, 22, 1, 1827, 781, 3077, 109, 31, 30], [3078, 17, 11, 8, 9, 114, 78, 29, 20, 1282, 11, 12, 413], [3, 7, 3079, 95, 8, 172, 18, 24, 146, 44, 11, 42], [], [2, 120, 2, 85, 28, 12, 5, 209, 4, 942, 2, 320, 269], [555, 8, 3, 62, 138, 1, 1821, 285, 32, 123, 1, 196], [3, 3080, 41, 74, 371, 9, 8, 1, 308, 104, 2, 142, 16, 5], [295, 3081, 2, 320, 100, 622, 9, 112, 1181, 1, 285], [17, 10, 1828, 1289, 212, 10, 1829, 20, 3082, 3, 3083], [30, 1, 391, 1290, 24, 3084, 3, 3085, 8, 10, 1830, 4], [128, 2, 89, 48, 6, 1, 105, 478, 4, 429, 1, 241, 311, 7], [161, 298, 3, 773, 2, 992, 23, 1, 3086, 479, 3, 250], [79, 31, 4, 1, 3087, 706, 180, 1831, 10, 3088, 2, 261, 5], [227, 3, 89, 23, 255, 1, 1116, 1715, 4, 51, 2, 28, 281, 22], [], [26, 2, 101, 5, 343, 105, 311, 803, 17, 1708, 35], [51, 130, 5, 1234, 53, 37, 4, 1, 36, 96, 20, 491, 2], [28, 43, 301, 29, 101, 10, 343, 1088, 143, 156, 286], [194, 62, 4, 1, 625, 162, 17, 3089, 1291, 3, 1], [3090, 3, 3091, 4, 5, 227, 16, 29, 12, 768, 66, 228], [146, 38, 10, 19, 50, 2, 110, 1832, 60, 54, 3092, 993], [3093, 157, 35, 49, 3, 1833, 49, 64, 451, 11, 85, 28], [58, 52, 345, 6, 49, 41, 411, 159, 4, 49, 135, 1834], [1835, 78, 2, 47, 49, 418, 123, 13, 11, 39, 34, 10, 185], [9, 2, 7, 888, 14, 690, 5, 69, 14, 11, 7, 643, 16, 13, 6, 187], [106, 1, 805, 8, 576, 6, 1836, 1, 908, 4, 179], [16, 3094, 30, 45, 492, 1566, 2, 76, 9, 179], [85, 42, 768], [], [950, 2, 1163, 48, 1, 227, 3, 3095, 31, 4, 1, 96], [79, 8, 10, 313, 89, 994, 195, 1, 241, 1227, 311, 70], [62, 106, 1, 1292, 2, 207, 784, 4, 995, 3, 45, 36], [232, 269, 3, 3096, 21, 114, 3, 9, 2, 187, 33, 320, 32], [2, 107, 14, 1, 224, 996, 64, 1, 139, 2, 302, 11, 7, 1, 1837], [329, 4, 10, 997, 9, 3097, 13, 2, 77, 3098, 459, 152, 30], [10, 136, 209, 5, 143, 371, 8, 54, 468, 82, 2, 85, 28, 3099], [6, 3, 952, 3100, 3, 1838, 35, 1839, 3, 666, 2, 28, 5, 390], [4, 466, 1840, 14, 1, 134, 112, 4, 1293, 1294, 122, 4], [176, 8, 21, 1295, 169, 3, 9, 4, 998, 138, 224, 261], [394, 3, 1296, 143, 270, 8, 1, 149, 530, 15, 93], [4, 899, 23, 1, 236, 433, 1, 196, 3, 3101, 17, 550], [1841, 2, 12, 304, 166, 18, 1842, 24, 2, 669, 3, 78], [2, 1843, 70, 11, 7, 305, 125, 3, 5, 1716, 4, 3102, 20, 1161], [123, 13, 23, 1, 645, 493, 990, 4, 10, 408], [], [2, 186, 64, 8, 1, 1297, 4, 1, 251, 576, 6, 320, 102], [2, 12, 174, 26, 3, 249, 2, 12, 140, 5, 929, 344, 4, 3103], [3, 1293, 24, 133, 39, 291, 8, 10, 128, 17, 1, 526], [1431, 492, 2, 44, 214, 10, 805, 999, 8, 1], [113, 2, 47, 1, 700, 989, 4, 10, 942, 1844, 3, 2, 44], [603, 17, 83, 302, 1, 1822, 2, 46, 302, 1], [50, 355, 430, 130, 1606, 11, 3104, 13, 6, 42], [785, 3, 1845, 6, 958, 1, 114, 4, 1, 96, 6, 200, 5, 291], [366, 4, 1, 1827, 4, 10, 997, 3, 1, 601, 4, 600, 3105], [3, 1846, 37, 9, 8, 1, 173, 130, 2, 137, 213, 117, 9], [72, 42, 10, 95, 602, 130, 18, 372, 131, 1293, 3, 116], [32, 11, 7, 5, 327, 3, 842, 82], [], [18, 806, 1, 50, 12, 95, 58, 494, 122, 81, 2, 85], [42, 785, 3, 1845, 272, 68, 1298, 169, 3, 889, 11, 40, 972], [53, 3106, 3, 17, 9, 2, 3107, 6, 10, 232, 3, 135, 66], [13, 1299, 146, 2, 44, 3108, 2, 77, 853, 3109, 3], [406, 3110, 1, 1297, 4, 1, 251, 124, 13, 1847, 54, 3111], [1297, 2, 12, 1300, 10, 1848, 206, 14, 2, 89, 66], [10, 893, 2, 101, 83, 1299, 15, 10, 536, 1301], [1844, 2, 124, 5, 1302, 1303, 4, 1, 236, 66, 1], [36, 387, 2, 1849, 41, 19, 8, 1850, 3112, 3113, 14], [118, 14, 2, 7, 1070, 6, 140, 4, 1, 36, 96, 14, 39, 40, 29], [32, 1000, 6, 297, 10, 1232, 41, 20, 334, 3114, 41], [76, 11, 7, 5, 1851, 3, 411, 15, 13, 2, 12, 1, 3115, 3116, 8], [1, 82, 6, 1304, 10, 157, 152, 45, 475, 528, 460, 11, 7], [5, 690, 1852, 18, 1, 3117, 3118, 4, 179, 3, 1853, 3119], [7, 1001, 3120, 3, 81, 1728, 6, 456, 3121, 4, 10, 1854], [1, 645, 321, 372, 3122, 2, 101, 5, 3123, 3124, 8, 11, 66], [3125, 248, 1, 352, 4, 1, 196, 3, 1, 3126, 4, 10, 232], [146, 23, 1002, 2, 12, 1855, 17, 1, 1856, 50], [26, 20, 121, 663, 4, 3127, 66, 17, 345, 577], [1857, 60, 234, 2, 44, 389, 124, 40, 5, 3128, 21, 1670], [10, 3129, 517, 6, 1, 352, 11, 7, 14, 2, 120, 2, 28, 46], [4, 225, 11, 7, 33, 5, 245, 1003, 18, 3130, 3131, 17, 701], [3132, 670, 23, 381, 199, 2, 89, 3, 3133, 15, 59, 1], [352, 7, 1858, 1237, 1, 670, 17, 1859, 2, 101, 49], [3134, 17, 1, 3135, 26, 20, 43, 3136, 53, 3137], [18, 339, 1, 670, 87, 29, 20, 438, 14, 2, 1605, 420], [30, 493, 31, 69, 7, 291, 156, 6, 10, 128, 11, 142, 43, 52], [105, 1066, 948, 6, 3138, 9, 10, 19, 50, 7, 1860, 9], [352, 18, 102, 11, 174, 26, 7, 5, 511, 667], [], [2, 47, 1, 763, 4, 154, 1707, 760, 96, 286, 86, 1, 285], [3, 106, 41, 1220, 803, 3139, 324, 94, 13, 2, 204], [854, 6, 49, 3, 3140, 49, 6, 13, 29, 39, 3, 24], [1678, 6, 1, 225, 352, 2, 190, 6, 1636, 10, 3141, 6, 309], [11, 18, 15, 10, 90, 949, 94, 21, 29, 3142, 52, 945, 2], [246, 160, 151, 102, 6, 639, 45, 1119, 6, 22, 302, 22, 20], [6, 671, 5, 3143, 3144, 949, 6, 5, 953, 1069, 1248, 11, 38], [102, 97, 72, 214, 29, 89, 152, 14, 87, 29, 12, 1219, 1, 93], [643, 3145, 2, 190, 5, 765, 176, 36, 3146, 8, 74, 282], [17, 370, 1, 119, 1640, 532, 25, 841, 124, 13, 283], [3147, 4, 83, 18, 14, 22, 151, 2, 458, 1, 19, 50, 3], [2, 190, 108, 163, 73, 14, 27, 204, 152, 60, 1, 315, 10, 3148], [174, 1, 372, 4, 13, 8, 175, 1281, 2, 7, 116, 108, 12, 108, 40], [1, 560, 203, 4, 25, 3149, 123, 1, 558, 3, 110, 1861, 108], [94, 1, 196, 24, 2, 47, 1, 807, 3, 3150, 4, 25], [113, 3, 32, 4, 5, 349, 2, 373, 108, 220], [], [18, 2, 7, 33, 3151, 144, 2, 3152, 17, 10, 1289, 15, 1, 225], [670, 2, 76, 2, 207, 252, 672, 1860, 6, 42, 1491], [2, 76, 2, 207, 5, 322, 60, 5, 3153, 18, 2, 85, 28, 58], [3154, 24, 2, 174, 5, 241, 3155, 30, 1, 568, 3, 39, 3], [3156, 736, 2, 12, 3157, 5, 3158, 8, 1, 1700, 3, 1], [1656, 39, 152, 8, 3159, 1004, 1, 953, 36, 96], [85, 28, 207, 13, 1862, 8, 1863, 3160, 5, 965, 122, 23], [381, 88, 18, 304, 39, 4, 11, 2, 47, 5, 954, 4, 49, 35, 1], [1305, 176, 3161, 15, 13, 15, 93, 630, 3, 567, 2, 186, 48], [6, 380, 1, 169, 18, 2, 7, 100, 798, 6, 380, 134, 2, 316, 100], [3162, 16, 5, 134, 1864, 2, 44, 369, 15, 5, 667, 16, 237], [18, 6, 594, 3163, 16, 1060, 262, 1865, 9, 38, 117, 587], [], [2, 174, 64, 116, 5, 19, 3, 110, 1759, 3164, 86, 1], [285, 94, 1, 170, 70, 1793, 46, 2, 6, 83, 87, 22], [523, 449, 50, 70, 22, 85, 519, 9, 196, 435, 87, 29], [503, 6, 456, 449, 50, 122, 11, 67, 36, 280, 449, 3165, 45], [225, 670, 3, 87, 29, 246, 160, 22, 115, 200, 11, 111, 14, 197, 14], [22, 189, 1430, 16, 11, 6, 3166, 138, 32, 234, 468, 133, 92, 5], [3167, 60, 9, 38, 1866, 9, 114, 3168, 3169, 113, 21], [82, 958, 68, 956, 380, 11, 42, 1302, 4, 100, 1306, 1307], [15, 68, 960, 8, 1, 173, 22, 115, 272, 3170, 6, 11, 32, 24], [194, 1, 3171, 4, 1, 3172, 39, 34, 10, 128, 1, 76], [4, 1, 237, 2, 12, 1867, 8, 3173, 3, 1267, 6, 200, 34, 1, 202], [287, 3, 56, 10, 938, 4, 3174, 6, 200, 62, 4, 11, 2, 12, 124], [83, 1, 159, 1868, 3, 1, 159, 1866, 1869, 9, 284, 5], [65, 1815, 3175, 11, 7, 15, 10, 136, 1870, 2, 44, 33, 966], [83, 2, 411, 1284], [], [253, 86, 1, 241, 271, 11, 63, 6, 13, 9, 1, 36], [96, 1871, 13, 11, 137, 28, 58, 10, 556, 53, 11, 137, 28, 12], [252, 6, 187, 17, 10, 1862, 15, 1, 1308, 4, 225, 144, 2, 77], [3176, 512, 4, 1, 3177, 2, 7, 1302, 247, 6, 851, 43], [1872, 3, 6, 3178, 30, 109, 3179, 4, 49, 3, 8, 1, 313], [4, 5, 125, 53, 154, 133, 174, 111, 6, 1, 155, 3180, 2, 124, 57], [1873, 2, 44, 8, 1, 782, 3, 8, 1874, 2, 537, 10], [1875, 103, 3, 26, 381, 2, 1309, 41, 1102, 415, 53], [45, 782, 7, 1159, 721, 180, 3181, 3182], [4, 3183, 1725, 3, 3184, 26, 63, 6, 42, 395, 87, 109], [3185, 1876, 53, 36, 671, 4, 3186, 782, 45], [1877, 20, 1044, 721, 3, 4, 154, 598, 3, 2, 1000, 6], [639, 53, 297, 109, 18, 1, 3187, 3188, 2, 393], [6, 132, 1, 76, 4, 10, 19, 50, 3, 1, 673, 4, 1, 225], [438, 106, 1, 196, 14, 181, 14, 643, 8, 5, 655, 4, 390], [212, 10, 351, 770, 72, 1538, 13, 111, 6, 49, 8, 5, 505], [114, 144, 5, 233, 218, 22, 137, 297, 3189, 13, 8, 5], [1146, 4, 5, 395, 848, 123, 1, 415, 4, 10, 1002], [], [37, 191, 14, 2, 44, 99, 32, 1, 82, 898, 1, 119, 3190], [3191, 14, 1, 964, 569, 30, 306, 170, 2, 3192, 2, 47, 1], [119, 3193, 4, 547, 427, 3194, 3195, 8, 1228], [3, 3196, 1, 119, 3197, 3198, 4, 3199, 1, 119], [1220, 3200, 324, 3, 552, 3201, 103, 3, 26, 578, 439, 60], [589, 3, 551, 1, 808, 292, 34, 426, 1878, 1310, 3], [37, 1117, 34, 1, 1879, 4, 1, 139, 5, 384, 3202, 51], [158, 1755, 10, 517, 7, 1, 674, 4, 233], [1198, 400, 341, 14, 11, 63, 6, 13, 4, 5, 52, 105, 3203], [31, 257, 40, 1, 809, 64, 1, 170, 51, 2, 12, 256, 572, 10], [90, 3204, 60, 1, 315, 11, 7, 3205, 17, 225, 1667], [3206, 3, 1880, 40, 5, 36, 1251, 30, 1, 1005, 1179, 40], [1, 199, 4, 59, 400, 3, 1006, 48, 34, 1, 3207, 162], [2, 44, 99, 43, 1881, 4, 578, 402, 44, 2, 1171, 109, 810], [17, 5, 1147, 227, 18, 8, 32, 4, 49, 2, 207, 5, 233, 322], [5, 636, 636, 636, 60, 1, 1181, 4, 41, 241, 3208, 3, 2], [783, 30, 1, 1311, 4, 10, 228, 9, 5, 1882, 983, 4], [184, 296, 48, 1, 1192, 356, 2, 1883, 5, 1884, 4, 623, 34, 1], [1280, 4, 31, 3, 471, 4, 1885, 520, 48, 11, 7, 15], [163, 3209, 467, 62, 4, 650], [], [116, 5, 19, 100, 2, 39, 6, 3210, 59, 400, 17, 940, 1886], [418, 103, 3, 26, 35, 1, 1305, 16, 183, 49, 26, 7], [1312, 238, 140, 5, 1887, 8, 1, 184, 14, 31, 1313, 23, 5, 630, 125, 183], [5, 147, 1888, 579, 903, 133, 451, 2, 633, 5, 392], [747, 4, 54, 3211, 1889, 4, 1314, 1315, 804], [740, 654, 11, 7, 1890, 6, 389, 2, 7, 15, 90, 1235, 6], [3212, 11, 17, 1, 3213, 1086, 4, 59, 96, 11, 7, 54], [3214, 1316, 18, 11, 7, 340, 365], [], [3, 103, 2, 85, 831, 9, 2, 1317, 52, 36, 4, 3215, 3], [3216, 3, 3217, 4, 3218, 3, 1, 60, 3219, 572, 10], [19, 8, 21, 401, 202, 8, 41, 4, 59, 3220, 4, 3221, 3], [286, 299, 51, 2, 28, 1130, 26, 38, 5, 326, 1233, 4, 3222], [66, 478, 3, 436, 3223, 3, 37, 614, 18, 215], [140, 3224, 91, 895, 156, 6, 3225, 78, 1, 265, 82, 38], [1891, 8, 31, 67, 1318, 29, 91, 355, 1319, 6], [5, 401, 71, 1320, 140, 3226, 14, 2, 101, 103, 3227, 1], [1321, 4, 1007, 51, 5, 1892, 1174, 30, 1008, 3228, 72, 456], [111, 6, 25, 3229, 57, 72, 27, 151, 4, 1893, 3230, 4], [436, 1322, 4, 3231, 3, 3232, 3233, 4, 1, 3234], [3235, 1323, 3, 3236, 3237, 3, 1, 60, 144, 55, 15, 481], [182, 42, 3238, 156, 6, 403, 59, 133, 6, 108, 3, 84, 4], [57, 27, 267, 102, 181, 44, 27, 213, 25, 3239, 892, 381], [3240, 53, 377, 24, 120, 102, 577, 1, 1324, 248, 5, 1892], [3, 5, 74, 65, 4, 75, 136, 299, 3, 102, 1894, 1, 719, 248], [83, 3, 59, 4, 1, 797, 287, 2, 7, 1895, 4, 181, 51, 7], [1896, 3, 51, 1897, 6, 10, 396, 18, 338, 16, 5, 772], [617, 4, 1898, 1899, 2, 179, 2, 189, 639, 52], [36, 4, 1, 689, 6, 449, 128], [], [8, 1, 587, 4, 3241, 16, 364, 2, 44, 99, 43, 663, 4], [1900, 402, 683, 3242, 4, 3243, 18, 11, 751, 6, 13], [9, 339, 26, 129, 42, 3244, 53, 1900, 3245], [551, 1, 1901, 4, 10, 3246, 21, 70, 7, 5, 423, 2], [1771, 132, 6, 83, 3, 10, 891, 7, 15, 90, 1736], [3247, 35, 1, 415, 1, 69, 531, 13, 3, 2, 7, 723, 6, 213], [5, 356, 1902, 51, 531, 13, 81, 73, 9, 3248, 3, 3249], [138, 21, 96, 26, 20, 416], [], [2, 85, 1009, 9, 10, 1903, 17, 10, 90, 1076, 4, 54], [1898, 750, 3, 5, 1904, 386, 107, 33, 134, 3250], [144, 2, 44, 120, 4, 43, 121, 373, 13, 132, 10, 1905, 1], [341, 241, 977, 2, 12, 3251, 20, 245, 570, 957, 105], [1227, 3252, 3, 491, 3253, 2, 44, 272, 43, 675, 43], [1325, 4, 109, 209, 144, 59, 96, 20, 1788, 8, 575], [3254, 9, 85, 15, 299, 504, 3255, 3, 45, 1673, 219], [3256, 20, 999, 1906, 1326, 4, 3257, 532], [140, 133, 85, 42, 124, 3, 1, 36, 96, 898, 43, 1907], [4, 5, 3258, 686, 26, 20, 43, 3259, 43, 3260, 43, 1677], [4, 3261, 138, 49, 29, 1867, 32, 45, 19, 8, 3262], [695, 8, 1327, 8, 1, 568, 8, 597, 1803, 8, 5, 216, 3263], [1010, 8, 1717, 566, 3, 491, 2, 44, 33, 99, 102, 133], [20, 540, 253], [], [24, 70, 66, 1, 19, 50, 252, 2, 267, 33, 57], [12, 494, 11, 34, 1, 1858, 352, 4, 1, 74, 196, 249, 16], [1, 258, 4, 13, 2, 44, 33, 389, 234, 3264, 400, 100], [234, 618, 1328, 2, 77, 2, 1908, 5, 1329, 2, 77, 102, 502], [2, 132, 11, 302, 22, 101, 54, 1909, 17, 1877, 103, 3], [26, 8, 1910, 526, 1744, 3, 3265, 1095, 315], [124, 64, 4, 598, 4, 3266, 84, 340, 468, 6, 22, 118], [23, 1, 1911, 125, 4, 10, 3267, 9, 7, 102, 1, 82, 4, 336], [300, 3, 154, 476, 624, 300, 3, 31, 1330, 454, 6], [13], [], [9, 125, 100, 2, 124, 5, 892, 4, 5, 3268, 11, 323, 9, 14, 2], [7, 656, 41, 4, 1, 36, 96, 1327, 8, 5, 1912, 31, 4], [49, 7, 1191, 17, 3269, 3, 110, 1331, 3270, 1, 1913], [983, 242, 230, 467, 18, 33, 100, 3271, 16, 84, 5, 3272], [3273, 11, 115, 897, 22, 54, 366, 1461, 4, 1, 143], [3274, 8, 59, 270, 78, 2, 294, 22, 9, 416, 124, 1], [3275, 1721, 6, 1332, 1, 3276, 1838, 36, 69, 51], [7, 3277, 92, 45, 127, 78, 2, 970, 21, 2, 3278], [992, 152, 10, 894, 3, 3279, 8, 15, 5, 415, 777, 48, 2], [363, 1, 1011, 3280, 3, 610, 61, 811, 6, 808, 5, 36, 1914, 4], [1, 1217, 197, 887, 61, 123, 3, 2, 12, 1, 1903, 4], [1157, 97, 7, 32, 277, 92, 2, 166, 61, 2, 12, 174, 6, 140, 5, 709], [3281, 4, 61, 209, 9, 2, 107, 33, 829, 109, 1915, 30, 61], [8, 9, 247, 2, 7, 365], [], [21, 323, 8, 1, 251, 8, 1, 812, 2, 417, 10, 36], [1248, 14, 2, 377, 11, 7, 14, 2, 7, 3282, 94, 10, 1333], [30, 54, 1916, 3, 97, 1219, 13, 17, 784, 4, 1334, 3], [1330, 13, 17, 5, 241, 3283, 4, 226, 599, 124, 16, 13], [3, 13, 435, 1, 69, 142, 10, 1318, 52, 339, 2, 12], [58, 218, 1335, 15, 109, 1336, 2, 107, 10, 813, 6, 3284, 10], [3285, 4, 1, 3286, 55, 20, 197, 565, 451, 8, 5, 36], [429, 3287, 1261, 8, 1133, 1917, 4, 3288, 1], [325, 67, 3289, 1787, 13, 370, 14, 5, 993, 67, 129, 28], [337, 55, 288, 264, 121, 226, 3, 97, 3290, 10, 157, 2, 107], [1, 119, 6, 3291, 24, 2, 190, 1444, 3, 101, 9, 61, 961, 7], [80, 51, 219, 2, 246, 160, 151, 57, 11, 1057, 532, 63], [3292, 156, 9, 7, 1, 687, 4, 5, 345, 3293], [51, 3294, 5, 883, 3, 1238, 14, 2, 115, 294, 22], [], [97, 7, 370, 60, 5, 993, 97, 458, 6, 42, 17, 13, 367, 97], [190, 6, 440, 13, 1265, 3, 23, 10, 282, 865, 62, 3, 66], [11, 89, 6, 10, 1012, 6, 3295, 61, 48, 3, 519, 61, 15, 93], [1300, 3, 1918, 116, 13, 230, 3296, 18, 1, 1337], [4, 1, 82, 12, 6, 42, 1275, 2, 12, 33, 2, 46, 6, 83, 150], [34, 1, 202, 6, 1013, 23, 5, 3297, 3298, 144, 61, 1919], [78, 2, 166, 61, 7, 52, 105, 61, 3299, 15, 1, 3300], [20, 668, 3301, 3, 2, 120, 355, 2, 12, 14, 181], [1014, 14, 396, 30, 61, 1798, 778, 97, 7, 532], [5, 52, 105, 396, 2, 76, 11, 7, 245, 1338, 1339, 9], [124, 61, 3302, 6, 13, 212, 11, 7, 100, 622, 2, 107, 33, 314, 151], [57, 2, 12, 3303, 35, 61, 78, 2, 166, 61, 402, 212, 11, 7, 100], [622, 107, 2, 314, 297, 57, 97, 7, 6, 13, 16, 40, 1015], [3304, 3305, 4, 13, 3, 3306, 8, 61, 800, 1850, 114, 9, 97], [3307, 16, 13, 1, 36, 3308, 4, 5, 325, 158, 321, 10, 1016], [6, 1, 3309, 4, 1, 74, 196, 180, 1, 218, 4], [286, 631, 3, 2, 72, 380, 16, 61, 3310, 335, 4, 74, 3, 1763], [37, 197, 14, 2, 39, 79, 1, 170], [], [11, 7, 30, 61, 100, 9, 2, 1317, 9, 179, 12, 33, 144, 166, 1], [82, 97, 7, 3311, 156, 8, 1, 492, 3, 97, 12, 1], [3312, 651, 8, 13, 16, 163, 8, 5, 690, 145, 2, 124], [3313, 3314, 15, 61, 3, 97, 334, 411, 15, 49, 18, 97], [814, 1, 161, 814, 530, 814, 149, 133, 162], [6, 61, 7, 1, 31, 69, 1188, 11, 7, 5, 859, 1340], [1848, 3, 11, 296, 13, 462, 3, 3315, 2, 783, 24], [138, 121, 133, 9, 59, 36, 96, 1920, 34, 1, 105], [971, 116, 161, 3, 669, 8, 3316, 6, 1341, 35, 49, 276, 5], [104, 7, 6, 132, 49, 34, 5, 1921, 4, 1922, 2, 211, 101], [31, 62, 4, 438, 53, 31, 491, 435, 493, 438, 116, 161], [144, 2, 7, 81, 140, 5, 3317, 9, 2, 1309, 1, 1923, 4, 9], [179, 3, 8, 779, 4, 80, 67, 1919, 2, 3318, 35, 491, 122], [30, 59, 3319, 3320], [], [11, 1924, 61, 937, 18, 8, 1, 173, 61, 279, 1339, 16, 13], [3321, 3, 16, 878, 4, 1, 815, 4, 75, 3322, 3323], [1, 93, 112, 4, 32, 97, 669, 17, 61, 185, 3324, 23, 10, 408], [18, 10, 268, 3325, 122, 30, 13, 14, 2, 586, 4, 61, 11, 85, 28, 58], [1, 112, 92, 61, 1332, 9, 2, 7, 1925, 66, 1017, 2, 12], [58, 798, 3326, 159, 3327, 9, 2, 7, 3328, 3], [9, 312, 3329, 20, 218, 79, 10, 113, 17, 45, 244, 1926], [2, 1843, 17, 5, 1171, 3, 17, 54, 279, 556, 9, 41, 1927, 371], [12, 238, 1218, 62, 4, 1, 3330, 2, 190, 6, 200, 6, 383, 70], [18, 2, 77, 798, 3, 1137, 11, 7, 9, 308, 330, 756], [78, 133, 91, 238, 388, 62, 4, 162, 78, 469, 38], [1342, 3, 291, 459, 3, 144, 1053, 2, 174, 64, 3, 89, 48], [34, 1, 105, 311, 3, 37, 62, 35, 1, 3331, 8, 609, 4, 1], [271, 2, 76, 2, 72, 213, 5, 3332, 4, 434, 3, 99, 1], [3333], [], [1, 224, 7, 963, 3, 1, 1928, 1292, 3, 1, 90, 1929], [4, 1017, 20, 3334, 8, 5, 1550, 216, 104, 1, 285, 20, 1930], [149, 1, 236, 5, 1343, 330, 1, 139, 1342, 3, 3335], [3, 64, 1, 170, 2, 76, 2, 44, 99, 1018, 26, 341, 299], [14, 2, 1931, 1, 659, 2, 47, 74, 474, 1932, 2, 431, 2, 47], [5, 1806, 74, 1933, 60, 325, 269, 230, 3336, 64, 1], [170, 3, 163, 433, 1, 394, 2, 47, 5, 3337, 4, 49, 1689, 41], [161, 593, 29, 413, 495, 2, 107, 33, 99, 57, 442, 4, 49], [11, 63, 9, 29, 317, 138, 1, 285, 1, 1017, 7, 81], [863, 22, 85, 297, 2, 7, 218, 9, 1277], [3338, 748, 251, 218, 22, 137, 28, 1109, 2, 3339], [10, 127], [], [14, 1, 1344, 139, 168, 735, 3, 1, 104, 4, 1, 125, 39, 23], [3, 68, 1688, 3340, 580, 35, 1, 82, 163, 73, 2, 1931], [1, 482, 3341, 18, 2, 47, 43, 1907, 4, 10, 74, 474, 29, 20], [245, 270, 4, 1, 216, 104, 29, 85, 28, 58, 1018, 2], [46, 2, 702, 3342, 29, 3343, 16, 5, 345, 1934, 4, 3344], [3345, 67, 39, 34, 10, 185, 3, 3346, 13, 87, 264, 1935, 1274, 3], [519, 1018, 27, 3347, 1, 82, 15, 93, 115, 200, 3348, 17], [49, 23, 9, 676, 29, 72, 28, 1660, 934, 41, 336], [300, 476, 237, 1936, 3, 11, 7, 43, 105, 702, 6, 99, 262], [15, 163, 18, 1, 1851, 7, 3349, 3, 2, 7, 462, 4, 59], [474, 32, 1, 251, 212, 80, 67, 1332, 470, 49, 62, 4, 10], [185, 2, 3350, 49, 8, 41, 1937, 114, 17, 1, 74, 371], [2, 12, 739, 8, 10, 90, 1340, 3351, 16, 1, 19, 50], [18, 80, 7, 5, 575, 3352, 144, 32, 1, 119, 29, 20], [197, 1246, 6, 456, 191, 3353, 926, 4, 10, 128], [], [2, 120, 2, 28, 46, 102, 181, 1345, 131, 75, 136, 7, 1, 844], [4, 21, 797, 287, 2, 231, 516, 16, 11, 11, 137, 42, 9, 1, 147], [7, 1345, 53, 1, 201, 647, 1, 147, 11, 38, 1585, 6, 1346, 9], [1, 147, 115, 220, 23, 3354, 794, 8, 1, 202, 18, 96], [1938, 17, 140, 1757, 14, 234, 4, 1, 3355, 3356], [3357, 9, 1, 3358, 85, 1475, 641, 111, 31, 40, 31, 34], [1, 3359, 593, 14, 59, 3360, 3361, 1, 147, 115, 1019], [17, 1939, 799, 3, 11, 137, 42, 9, 41, 1940, 787, 12], [3362, 21, 666, 1635, 1, 603, 1, 443, 1244, 9, 1], [147, 7, 52, 181, 1345, 131, 55, 151, 11], [], [118, 31, 52, 630, 251, 10, 595, 2, 120, 14, 2, 7, 1941], [1826, 30, 1, 677, 3, 496, 8, 5, 935, 1020, 433, 1, 105], [385, 146, 2, 669, 3, 3363, 26, 323, 21, 143, 69], [816, 138, 59, 775, 4, 1942, 2, 101, 5, 577, 229], [804, 173, 3, 199, 563, 20, 3364, 40, 581, 788, 4, 429], [40, 3365, 17, 1, 3366, 1347, 11, 63, 15, 90], [3367, 161, 6, 13, 2, 432, 11, 998, 16, 1, 465, 30], [104, 6, 358, 124, 1348, 4, 535, 3368, 92, 13, 194, 2], [1349, 3369, 5, 1564, 4, 127, 1166, 40, 810, 141], [1, 492, 276, 7, 656, 13, 62, 4, 1, 162], [], [1, 155, 3370, 925, 4, 700, 1807, 39, 35, 13, 2, 1828], [10, 157, 3, 1350, 135, 34, 1, 1943, 3371, 2, 7], [638, 6, 1072, 24, 1, 76, 4, 1, 550, 484, 8, 51], [386, 353, 6, 42, 570, 39, 6, 10, 128, 3, 24, 2], [886, 9, 143, 995, 4, 1, 161, 3372, 10, 179, 6], [41, 3373, 2, 1944, 5, 1208, 3, 527, 2, 115, 831, 9, 10], [901, 7, 946, 3, 1001, 3374, 2, 132, 62, 10, 88, 3, 553], [252, 244, 15, 163, 1, 127, 3375, 1021, 3, 252], [74, 242, 255, 13, 2, 204, 17, 10, 1012, 8, 10, 534, 3, 47, 5], [345, 36, 1933, 60, 335, 68, 185, 521, 48, 8, 5, 384], [841, 269, 195, 1, 1731, 172, 254, 13, 11, 3376], [141, 5, 1003, 4, 1242, 769, 1663, 3, 8, 5, 145, 7], [1287, 8, 5, 149, 543, 1022, 117, 1945, 4, 3377, 1942], [], [10, 617, 4, 11, 38, 4, 313, 3378, 18, 2, 151, 11, 7, 5], [1125, 74, 3, 12, 143, 275, 1927, 164, 127, 707, 9, 26], [7, 3379, 591, 23, 68, 185, 3, 48, 68, 111, 18, 14, 2, 208, 11], [89, 100, 546, 16, 13, 6, 99, 1184, 2, 231, 84, 208, 1946, 11], [242, 23, 32, 3380, 53, 95, 17, 68, 3381, 521, 52, 709, 116, 54], [1471, 67, 694, 2, 256, 11, 34, 1, 343, 968, 4, 394, 2, 44], [33, 272, 11, 15, 90, 18, 116, 5, 19, 8, 1, 929, 1351, 2], [39, 35, 31, 4, 234, 123, 118, 60, 1711, 4, 51, 2, 28, 281], [22, 216, 1128, 40, 5, 581, 1947, 5, 349, 76, 39, 6, 13], [44, 21, 69, 28, 317, 48, 1, 497, 2, 261, 5, 227, 3], [176, 48, 2, 47, 5, 295, 74, 405, 325, 17, 275], [266, 127, 51, 1462, 13, 1350, 14, 11, 1948, 11, 124], [13, 3382, 11, 7, 37, 60, 5, 205, 1949, 11, 7, 816, 48], [1, 759, 3, 56, 2, 47, 16, 1, 90, 19, 5, 561, 4, 564, 562], [3, 88, 1762, 3383, 5, 209, 4, 3384, 48, 1, 497, 24, 1], [104, 588, 10, 817, 3, 250, 62, 4, 10, 88, 253, 62, 14, 11], [1352, 3, 78, 2, 12, 261, 117, 1, 36, 1353, 12], [661], [], [2, 187, 33, 151, 102, 134, 2, 186, 1006, 48, 9, 118, 11, 7, 33, 16], [41, 19, 9, 2, 44, 3385, 8, 3386, 83, 9, 1, 69, 2], [12, 192, 7, 205, 18, 982, 1, 664, 3387, 23, 13, 9], [65, 12, 33, 738, 31, 678, 18, 12, 3388, 34, 154], [758, 665, 9, 10, 1201, 477, 4, 1, 359, 82, 20], [33, 1, 1950, 1951, 4, 75, 1935, 18, 9, 21, 1354], [1952, 1953, 69, 51, 12, 826, 92, 13, 7, 707, 3389], [6, 32, 1, 1023], [], [2, 76, 4, 1, 618, 1328, 3, 4, 10, 676, 4, 54], [582, 1315, 2, 110, 6, 1954, 45, 740, 654, 3], [57, 2, 1955, 7, 21, 3390, 888, 8, 10, 3391, 4, 5, 726], [974, 1899, 102, 7, 11, 3392, 6, 1, 1727, 1879], [4, 1, 327, 359, 1355, 3, 57, 7, 1287, 48, 26], [15, 1, 562, 4, 9, 497, 2, 186, 35, 1, 818, 4, 1, 118, 447], [83, 9, 15, 109, 1336, 26, 7, 304, 6, 179, 3, 9, 26], [2, 85, 1278, 16, 1, 1956, 4, 10, 1905, 3, 3393, 2], [7, 340, 638, 6, 220, 14, 2, 347, 154, 4, 1, 327], [359, 82, 96, 39, 269, 8, 45, 3394, 1957, 195, 1], [492, 8, 1, 543, 1, 3395, 1958, 1, 3396, 767], [226, 15, 61, 14, 27, 242], [], [29, 63, 1959, 6, 272, 13, 10, 408, 141, 1, 1856], [1947, 1006, 48, 1, 118, 425, 11, 7, 3397, 3398, 790], [6, 1902, 59, 3399, 16, 78, 2, 613, 6, 21, 31, 3, 190], [6, 877, 5, 423, 66, 11, 8, 45, 1205, 29, 20, 81, 73], [3400, 1959, 3, 204, 122, 18, 29, 20, 3401, 40, 10], [228, 3, 2, 260, 41, 6, 3402, 49, 2, 190, 49, 70, 66], [1, 118, 3, 70, 2, 1000, 37, 158, 2, 166, 49, 960, 6], [220, 111, 6, 80, 3, 99, 57, 2, 44, 200, 30, 61, 18, 10, 128, 7], [223, 8, 1960, 10, 1307, 3, 1626, 20, 1633, 3], [1961, 6, 5, 153, 1782, 2, 12, 56, 5, 1329, 6, 1, 654, 4, 59], [400, 6, 1, 1962, 1886, 6, 1, 673, 4, 1, 1018, 6], [208, 304, 4, 5, 1963, 15, 1, 960, 4, 1, 225, 1308, 3, 1], [666, 4, 1, 19, 50, 3, 52, 1964, 26, 39, 5, 747], [94, 1, 1956, 4, 1, 3403, 667, 9, 12, 531, 13], [], [103, 7, 1, 153, 482, 1748, 21, 343, 678, 4, 65, 7], [1314, 26, 20, 175, 805, 8, 1230, 51], [124, 13, 120, 9, 68, 539, 3404, 183, 236, 7, 1, 1262], [4, 5, 134, 1056, 582, 819, 8, 1, 90, 169, 26, 7], [1, 1354, 214, 722, 8, 159, 665, 9, 1024, 1356, 8, 1], [161, 1, 74, 3405, 4, 1, 3406, 1965, 16, 364, 24], [234, 275, 127, 17, 9, 3407, 16, 3408, 104, 91], [722, 947, 4, 1953, 133, 1966, 1, 1817, 3, 1, 3409], [3, 93, 4, 32, 9, 1967, 621, 8, 1, 1968, 9, 1306], [144, 3410, 3411, 1025, 94, 161, 543, 3, 9, 384], [3412, 4, 1, 185, 215, 8, 1, 104, 32, 3413, 1, 676], [4, 54, 910, 3414, 4, 1, 3415], [], [1022, 10, 232, 24, 1, 201, 85, 42, 3416, 3417, 3], [59, 3418, 20, 1, 3419, 4, 1, 153, 472, 1, 674, 4], [1962, 1192, 3, 400, 198, 1, 170, 1305, 1265, 8], [443, 506, 198, 1, 568, 569, 620, 102, 1969, 20, 68], [3420, 57, 37, 505, 24, 14, 6, 1346, 9, 11, 7, 8], [21, 1970, 1971, 9, 140, 369, 14, 7, 1801, 6, 1], [396, 4, 1, 492, 472, 7, 337, 1, 1934, 7, 37, 870], [9, 2, 15, 163, 682, 11, 3, 89, 23, 6, 1346, 1, 102, 4, 21], [1972, 4, 1, 205, 678, 2, 1138, 208, 22, 115, 3421, 1], [754, 4, 10, 676, 219, 16, 83, 2, 52, 197, 77, 9, 11], [250, 191, 544, 4, 1, 664], [], [15, 90, 1973, 30, 1, 1337, 4, 75, 136, 287, 11, 63], [291, 14, 492, 6, 13, 9, 1, 1974, 1357, 4, 1, 513], [1015, 3422, 3, 436, 689, 248, 1, 3423, 3], [1, 3424, 7, 1, 3425, 6, 1, 265, 911, 43, 301, 11, 115], [538, 955, 156, 6, 22, 3, 3426, 612, 3, 144, 84], [56, 26, 91, 1756, 805, 6, 415, 9, 114, 26, 38], [5, 686, 6, 3427, 582, 172, 16, 1, 259, 3428], [3429, 4, 750, 26, 38, 1, 3430, 1893, 8], [1007, 16, 364, 26, 91, 153, 3431, 3432, 26, 91], [3433, 26, 91, 582, 3434, 3, 3435, 3, 29], [1268, 3, 3436, 599, 2, 76, 21, 686, 12], [1358, 736, 1975, 12, 982, 430, 68, 3437, 8, 1], [139, 2, 503, 9, 11, 12, 210, 1359, 3, 1359, 34, 375, 3, 284], [375, 582, 3438, 3439, 5, 81, 986, 1233, 4], [68, 19, 1794, 736, 8, 1, 173, 84, 56, 833, 33, 54, 988, 173], [3440, 1024, 8, 140, 1970, 342, 14, 3441, 6, 42, 459], [152, 30, 1, 505, 446, 4, 1, 201], [], [70, 1, 1976, 686, 4, 1631, 96, 1360, 43, 301, 6], [1, 986, 3442, 4, 45, 1977, 3, 1, 1357, 1978], [248, 49, 3, 1, 3443, 1250, 4, 1, 1011, 38, 223, 1672], [6, 1, 1361, 8, 45, 407, 4, 1106, 3444, 4, 1], [446, 4, 1, 808, 66, 1007, 16, 364, 130, 216, 1], [3445, 1362, 38, 3446, 8, 141, 3447, 3, 21, 119], [1357, 1978, 51, 38, 1360, 6, 1, 441, 3, 1870, 4, 1, 1979], [3448, 1263, 3, 1, 1358, 3449, 16, 3, 3450], [94, 1271, 3451, 23, 1, 203, 4, 1, 761, 115, 213, 9], [3452, 248, 1980, 3, 1980, 9, 3453, 40, 3454], [51, 15, 513, 3455, 1, 1972, 4, 75, 678, 198, 3456], [4, 436, 3457, 259, 3, 259, 3458, 37, 8, 1, 173], [183, 236, 22, 85, 28, 1, 3459, 3460, 1981, 3, 396], [3, 764, 3, 414, 236, 1, 28, 3461, 1, 3462, 600], [1732, 1363, 6, 1, 342, 4, 45, 1982, 163, 29], [20, 26, 29, 72, 43, 301, 28, 6, 1983, 3463, 3, 33, 5, 36], [4, 11, 16, 1, 1315, 4, 45, 3464, 3, 87, 29, 1984], [29, 72, 3465, 53, 42, 3466, 16, 3467, 140, 4, 49, 14, 20], [37, 1985, 14, 6, 42, 3468, 3, 3469, 72, 1274, 3, 8], [1, 173, 1, 981, 274, 3470, 1, 3471, 72, 514, 14], [118, 1363, 6, 1, 342, 4, 582, 258, 3, 14, 3472, 8], [45, 114, 14, 1, 359, 82, 96, 20, 6, 3473, 14, 11, 63, 6], [13, 1, 1271, 764, 3, 1, 3474, 1929, 256, 771], [156], [], [1, 105, 488, 4, 386, 2, 12, 1986, 4, 142, 5, 511], [754, 8, 10, 128, 11, 12, 58, 43, 140, 488, 4, 3475, 1977, 3], [772, 1781, 3476, 14, 2, 12, 3477, 471, 2, 47, 5, 401], [1364, 3478, 17, 5, 3479, 1264, 3, 1987, 6, 5, 1768], [1316, 1, 3480, 1889, 4, 6, 125, 68, 488, 12, 33, 58], [334, 5, 488, 79, 329, 18, 5, 488, 79, 329, 3, 1], [1988, 65, 21, 2, 85, 1680, 22, 7, 10, 676, 15, 1, 19, 2, 12], [43, 680, 3481, 8, 1, 1714, 4, 1, 3482, 1989, 10], [705, 137, 42, 340, 365, 2, 81, 120, 11, 38, 1], [159, 870, 31, 18, 84, 23, 21, 3483, 1, 974], [750, 9, 7, 15, 93, 984, 85, 28, 134, 318, 288], [68, 3484, 3, 7, 56, 191, 581, 34, 489, 1, 100, 437], [484, 4, 1, 359, 1355, 12, 723, 49, 6, 5, 657, 845, 4], [3485, 6, 5, 772, 3486, 8, 1365, 485, 3], [573, 9, 2, 44, 99, 314, 156, 223, 57, 12], [323, 6, 1, 106, 3487, 2, 107, 33, 144, 1954, 18, 30, 57], [2, 12, 192, 4, 1, 98, 9, 40, 1, 40, 7, 1, 961, 40, 51], [59, 270, 20, 1366, 2, 44, 389, 9, 1, 3488], [4, 1, 205, 1211, 7, 84, 191, 73, 929, 131, 138, 1, 498], [1, 327, 472, 9, 2, 223, 267], [], [24, 39, 3489, 3490, 249, 12, 1, 98, 494, 10, 19], [50, 16, 2, 77, 512, 11, 7, 29, 165, 12, 494, 11, 249, 100, 87], [1, 498, 20, 3491, 44, 29, 33, 3492, 1, 50, 6, 13, 3], [249, 20, 29, 37, 1990, 638, 4, 1, 161, 2, 834, 14, 2, 28], [46, 6, 423, 80, 66, 21, 106, 82, 18, 103, 70, 2, 7], [3493, 15, 90, 97, 72, 33, 297, 10, 1584, 3], [158, 97, 1984, 6, 3494, 49, 97, 548, 14, 219, 1], [3495, 7, 3496, 3, 78, 2, 711, 61, 130, 5, 36], [3497, 97, 1367, 34, 1991, 29, 20, 1, 95, 1991, 506, 10], [136, 2, 284, 47, 8, 9, 797, 287, 78, 2, 47, 49, 2, 741], [950, 6, 1014, 66, 1, 98, 3, 7, 95, 3498, 8], [3499, 59, 663, 4, 1, 205, 3500, 30, 80, 67, 127], [3, 52, 197, 97, 7, 854, 3, 3501, 61, 157, 215, 2], [1100, 588, 5, 227], [], [], [], [], [3502], [], [], [11, 137, 538, 279, 6, 22, 18, 11, 7, 154, 307, 92, 2, 44, 440], [64, 1, 153, 101, 1329, 8, 57, 7, 3503, 1, 843, 114, 2, 77], [5, 384, 1992, 30, 234, 3504, 3505, 29, 20, 238, 1], [216, 1354, 535, 4, 1, 3506, 3, 133, 31, 1313, 1026, 8], [730, 8, 5, 3507, 820, 3, 29, 20, 3508, 490, 6, 1], [876, 806, 10, 1992, 7, 1356, 1360, 6, 1, 3509], [3510, 4, 1, 498, 804, 3511, 4, 1, 98, 2, 56, 110], [6, 1094], [], [1, 282, 112, 2, 107, 33, 383, 118, 806, 10, 3512, 7, 5], [36, 1549, 2, 7, 3513, 17, 1854, 3, 301, 163], [53, 1932, 2, 12, 5, 218, 4, 536, 179, 16, 51, 2, 44, 1720], [43, 3514, 603, 2, 320, 388, 3515, 34, 1, 105], [311, 146, 1, 36, 96, 20, 491, 8, 1, 1292, 9], [112, 80, 7, 138, 49, 3, 218, 1515, 40, 45, 674], [11, 751, 6, 13, 84, 24, 9, 8, 1, 313, 4, 5, 395, 307, 1], [224, 85, 712, 86, 68, 93, 1993, 3, 1, 815, 574, 161], [78, 1, 3516, 4, 59, 640, 270, 30, 414, 59], [3517, 3518, 21, 153, 1994, 9, 12, 3519, 1, 155, 129, 42], [73, 483, 3, 23, 737, 59, 307, 2, 12, 1, 798, 218, 4], [31, 165, 3520, 54, 931, 3521, 2, 77, 464, 9, 1, 19], [50, 7, 95, 6, 42, 1090, 40, 1368, 3522, 59], [582, 3523, 144, 2, 44, 33, 113, 1, 673, 87, 95, 2], [12, 12, 5, 3524, 11, 72, 28, 58, 511, 18, 2, 7, 37], [1995, 435, 3, 84, 6, 1996, 48, 34, 1, 162, 4, 1], [118, 3525, 13, 2, 246, 160, 151, 87, 22, 115, 297, 10, 218], [18, 2, 211, 77, 368, 811, 15, 10, 111], [], [11, 7, 21, 3526, 21, 3527, 130, 9, 470, 13], [356, 3, 356, 3528, 8, 10, 1997, 3529, 253, 6, 1], [499, 1027, 94, 1, 541, 1362, 9, 38, 56, 1366, 3530], [273, 2, 3531, 191, 152, 8, 1, 596, 4, 1701, 1702], [3532, 5, 326, 167, 1245, 511, 8, 1369, 30, 109], [2, 12, 653, 192, 11, 7, 375, 131, 1, 3533, 4, 1, 977], [53, 394, 2, 267, 3, 1, 3534, 12, 54, 3535, 214, 1, 113], [4, 11, 832, 1, 3536, 14, 118, 14, 1, 362, 167, 3537, 5, 209], [4, 3538, 167, 4, 5, 233, 1211, 4, 3539, 397, 21], [689, 8, 3540, 605, 5, 689, 8, 671, 3, 2, 7, 1069], [6, 1370, 23, 3, 1521, 18, 1, 125, 7, 351, 622, 3, 2, 12, 150], [35, 1, 650, 4, 1, 169, 116, 5, 134, 3, 3541, 3542, 37, 2], [752, 6, 691, 79, 1, 1760, 16, 1, 1204, 125, 3, 2], [580, 6, 1, 3543, 3, 1, 3544, 4, 36, 80, 18, 282], [251, 2, 728, 314, 156, 9, 10, 891, 1998, 1], [271, 4, 167, 397, 7, 5, 1999, 4, 1269, 3545, 6, 3546], [13, 6, 3547, 40, 117, 125, 54, 789, 2, 814, 2, 752, 2], [72, 213, 1, 1028, 276, 356, 713, 4, 19, 3, 632], [62, 8, 1, 748, 251, 94, 5, 118, 433, 1, 394, 4, 1242], [3, 1738], [], [36, 80, 242, 17, 13, 97, 3548, 455, 13, 6, 1, 118, 18], [78, 97, 47, 13, 1426, 79, 1, 534, 3, 214, 1149, 97, 63], [3549, 3550, 280, 3551, 36, 80, 2, 46, 2000], [61, 3, 24, 903, 61, 48, 2, 110, 6, 283, 79, 1, 2001], [16, 1, 2002, 1371, 230, 495, 2, 137, 14, 118, 1009, 16], [2, 1372, 10, 1197, 129, 2003, 122, 15, 90, 97, 710, 13, 8], [2004, 24, 97, 321, 5, 159, 3552, 1545, 3, 269, 6, 13, 97], [110, 6, 3553, 15, 13, 17, 61, 36, 157, 2, 120, 61, 3554], [3555, 13, 230, 6, 3556, 2, 1207, 61, 152, 130, 5, 36], [3557, 3, 8, 117, 145, 2, 7, 8, 1, 1280, 4, 1, 118, 2], [47, 61, 3558, 113, 79, 1, 2001, 3, 697, 6, 3559, 61], [24, 2, 12, 6, 214, 48, 15, 1, 2005, 1371, 6, 51, 2, 1373], [], [2, 12, 6, 1996, 48, 5, 497, 4, 130, 154, 300, 2006, 1], [1028, 7, 1266, 40, 601, 4, 703, 379, 1374, 30], [1, 936, 4, 1, 118, 3, 59, 274, 1363, 6, 1, 487, 4], [5, 325, 181, 3560, 3, 3561, 131, 83, 2, 7, 962], [2007, 3, 1236, 40, 1, 1028, 3, 33, 334, 1236, 31, 4], [1, 379, 1153, 194, 106, 10, 2008, 3, 180, 1505, 13, 152, 34], [1, 358, 1022, 16, 5, 145, 2, 428, 40, 31, 88, 3, 116], [9, 789, 2, 107, 33, 1138, 6, 424, 70, 219, 10, 398, 3], [111, 20, 158, 3562, 916, 2, 89, 23, 816, 48, 1], [1586, 1028, 17, 14, 2009, 5, 452, 14, 643, 3563, 1458], [2, 47, 1, 2010, 5, 295, 426, 1375, 8, 51, 5, 1029, 7, 866], [215, 36, 80, 67, 185, 620, 14, 5, 123, 149, 3564, 1], [3565, 322, 4, 5, 50, 414, 168, 2011, 3, 73, 2012], [469, 338, 9, 36, 1375, 183, 7, 1221, 161, 3, 78], [2, 135, 64, 70, 80, 12, 661], [], [2, 7, 8, 54, 2013, 4, 3566, 2, 12, 41, 76, 4, 576, 6, 220], [64, 1, 497, 70, 3, 519, 1, 106, 82, 435, 18, 84, 215], [2, 204, 21, 79, 8, 10, 128, 2, 1056, 6, 1278, 15, 93, 17], [536, 3567, 2, 47, 1190, 286, 64, 5, 562, 6, 1, 277, 4, 13, 5], [3568, 3569, 8, 1, 759, 2014, 83, 8, 2, 101, 11, 7, 1], [2010, 4, 5, 577, 1258, 1376, 8, 51, 2, 44, 1377, 48, 3], [424, 11, 7, 33, 100, 197, 10, 398, 3570, 10, 111, 7, 2007, 3, 2], [7, 2015, 17, 1, 1641, 995, 4, 5, 641, 880, 21, 1], [2016, 162, 12, 12, 5, 3571, 1225, 35, 10, 127, 1, 184], [7, 305, 4, 1, 1378, 3, 2017, 4, 675, 3572, 184, 48, 1], [497], [], [2, 187, 33, 151, 102, 134, 2, 257, 2, 7, 3573, 40, 5, 244, 88, 1296], [10, 113, 906, 64, 8, 1, 162, 2, 3574, 15, 10, 228, 3], [495, 2018, 31, 2, 47, 175, 1509, 74, 270, 1531], [6, 1, 31, 2, 12, 192, 183, 236, 8, 1, 1020, 495, 3575], [92, 1, 104, 570, 14, 29, 107, 8, 57, 353, 6, 13], [3576, 162, 45, 127, 20, 3577, 275, 3], [3578, 238, 14, 91, 1, 3579, 4, 1, 3580, 3581, 3, 29], [3582, 1, 104, 8, 1, 119, 114, 2, 28, 43, 301, 29, 44, 99], [13, 8, 9, 2019, 1351, 3, 29, 107, 33, 538, 6, 28, 109, 179], [4, 13, 3583, 30, 1, 104, 18, 37, 197, 14, 2, 260, 5, 227, 8], [1030, 6, 99, 49, 29, 3584, 753, 3585, 34, 161], [3586, 3, 3587, 30, 51, 45, 127, 2020, 15, 13, 8, 1], [3588, 1010], [], [2, 190, 6, 835, 6, 49, 18, 1, 782, 29, 12, 7, 425], [511, 30, 9, 4, 1, 79, 82, 96, 37, 9, 2, 7, 487], [166, 6, 10, 136, 3589, 1054, 3, 1, 76, 4, 1025, 92], [1916, 7, 84, 24, 8, 10, 128, 18, 2, 46, 6, 83, 22, 91], [8, 16, 11, 56, 3, 218, 10, 114, 198, 1, 1376, 2, 101, 1], [1115, 4, 675, 574, 2011, 158, 1, 969, 250, 122, 30], [13, 3, 2, 39, 6, 5, 275, 309, 172, 3, 2018, 117, 227], [47, 9, 2, 12, 432, 5, 326, 3590, 3591, 51, 2021, 34], [1530, 162, 551, 1, 1901, 4, 10, 104, 1, 482, 2, 12, 4, 11], [7, 14, 181, 14, 31, 44, 99, 8, 1, 821, 4, 5, 227], [], [3592, 10, 390, 38, 604, 105, 1189, 60, 241, 904, 292], [62, 4, 1, 1379, 3, 1257, 955, 149, 530, 8, 51, 308], [3593, 98, 3594, 30, 1, 496, 1, 169, 40, 1, 40], [7, 52, 3595, 3, 2012, 3, 1, 422, 3596, 4, 3597], [3598, 628, 7, 8, 1, 184, 41, 114, 48, 1, 1008, 3599, 7, 5], [36, 239, 4, 74, 564, 1532, 17, 57, 63, 5, 3600, 1], [98, 15, 109, 1336, 20, 3601, 84, 15, 1, 19, 2, 320], [1299, 57, 275, 371, 44, 28, 3602, 6, 3603, 1, 164], [3604, 2, 47, 11, 7, 32, 52, 863, 1, 2022, 1380, 1, 241], [3605, 1189, 1, 1952, 474, 2023, 8, 1, 530, 3], [95, 629, 16, 1, 162, 6, 150, 15, 13, 70, 24, 1, 227], [588, 48, 3, 3606, 10, 817, 3, 250, 5, 2024, 164, 3607], [8, 1, 358], [], [2, 28, 76, 318, 102, 840, 1001, 1273, 2, 7, 16, 140], [54, 789, 78, 2, 12, 632, 17, 1, 19, 50, 2, 12], [632, 17, 1, 3608, 3609, 9, 1, 278, 4, 1, 202, 72], [509, 42, 3610, 1481, 4, 2025, 8, 32, 45, 1325], [2, 12, 150, 276, 398, 276, 1784, 276, 683, 6], [646, 15, 299, 2, 1309, 1507, 2026, 84, 276, 156], [228, 87, 95, 2, 12, 76, 4, 5, 3611, 2, 44, 28, 826, 9], [917, 4, 1, 1971, 8, 5, 343, 3, 1031, 11, 15, 1713], [18, 14, 11, 7, 2, 178, 26, 17, 95, 1, 3612, 3, 1, 1252], [9, 329, 12, 3613, 13, 17, 157, 232, 3, 909, 59, 3], [262, 2027, 228, 9, 81, 738, 6, 13], [], [2, 7, 638, 6, 1370, 10, 114, 8, 138, 32, 21, 675, 8, 1], [161, 3, 11, 7, 95, 17, 10, 93, 917, 4, 104, 2, 783], [9, 10, 3614, 4, 228, 12, 1381, 709, 11, 12, 211, 751, 6, 13], [212, 9, 145, 9, 26, 7, 109, 504, 6, 2028, 49, 3, 2], [12, 1849, 180, 216, 1, 500, 8, 3615, 1, 359, 1355, 6], [1104, 148, 7, 5, 3616, 56, 14, 2, 208, 2, 12, 262, 166, 3, 215, 2], [178, 8, 1, 161, 5, 88, 553, 959, 3617, 817, 39, 218], [79, 10, 113, 3, 2, 7, 1895, 4, 5, 384, 640, 2029, 2], [431, 2, 207, 1, 554, 4, 5, 954, 4, 234, 1188, 36], [3618, 66, 13, 2, 77, 1, 500, 4, 228, 8, 10, 88, 274, 695], [2030, 3, 121, 157, 254, 13, 3619, 15, 10, 3620, 1], [344, 4, 59, 1896, 270, 1237, 13, 7, 1202], [640, 1, 349, 2031, 4, 10, 2032, 4, 45, 956, 4], [462, 3, 888, 39, 631, 6, 13, 52, 1068, 8, 1, 162, 2], [1382, 15, 49, 14, 3621, 14, 2, 44, 29, 632, 122, 3, 24], [2, 44, 283, 49, 1200, 13, 70, 29, 2033, 15, 13, 73], [1368, 3622, 279, 529, 6, 264, 121, 2, 548, 555], [3, 1382, 70, 230, 3623, 21, 19, 29, 20, 33, 37], [1092, 3624, 3, 29, 124, 5, 345, 528, 1115, 14, 29, 39], [111, 15, 13, 2, 115, 1009, 2, 7, 1995, 1835, 2, 393], [6, 1032, 117, 227, 3, 1383, 106, 1, 2034, 4, 68], [496, 2, 107, 37, 3, 3625, 62, 1, 1887, 17, 5, 1884, 4, 623], [30, 10, 328, 2, 124, 280, 10, 1196, 6, 1, 577, 1376, 18, 2], [12, 924, 432, 21, 78, 10, 104, 7, 862, 62, 3, 8, 1], [358, 2, 44, 626, 1, 98, 3626, 60, 615, 138, 1243], [3, 1033, 60, 1, 1005, 14, 29, 3627, 116, 13], [], [8, 5, 145, 2, 7, 2033, 40, 341, 157, 3, 26, 7, 43], [3628, 9, 29, 20, 576, 6, 3629, 13, 111, 2, 260, 117], [104, 3, 3630, 11, 8, 45, 1122, 460, 22, 189, 924, 389], [102, 3631, 757, 29, 135, 234, 362, 3632, 460], [3, 105, 3633, 1254, 330, 127, 14, 29, 412, 8, 45], [2035, 3, 2036, 18, 2, 107, 33, 1786, 6, 214, 2, 1658], [22, 2, 1948, 70, 3, 78, 10, 343, 227, 12, 1238, 2, 260], [10, 1911, 11, 12, 180, 588, 86, 78, 2, 633, 1, 1668], [34, 1, 497, 2, 257, 48, 23, 1, 818, 16, 1, 1378, 4, 1, 105], [3634, 414, 124, 13, 2037, 24, 2, 77, 1021, 16, 1, 1374], [1371, 3, 14, 2, 107, 37, 10, 232, 20, 1384, 30, 254, 3, 2], [7, 555, 3635, 1065, 2, 261, 10, 93, 227, 3, 11], [753, 89, 62, 18, 2, 12, 10, 88, 23, 1, 2002, 379, 56], [3, 3636, 555, 2, 2030, 83, 30, 1, 3637, 4, 1], [98, 3, 7, 962, 816, 64, 1, 497, 215, 29, 1385], [1006, 3, 1386, 64, 15, 13, 32, 18, 31, 36, 3638, 165], [256, 13, 16, 41, 114, 3, 118, 3639, 3640, 10, 3641, 14, 5, 3642], [], [9, 3643, 63, 1502, 6, 13, 17, 1, 93, 1060, 53], [1387, 232, 4, 11, 5, 2038, 2039, 39, 35, 13, 2, 12, 1, 3644], [849, 8, 3645, 10, 691, 1, 93, 395, 2006, 7, 5, 2040], [985, 141, 21, 2041, 341, 299, 10, 185, 2042, 3, 2], [77, 32, 1, 745, 4, 743, 15, 93, 247, 2, 174, 79, 1], [118, 534, 532, 3, 769, 62, 4, 1, 1020, 34, 1, 3646], [987, 2, 250, 35, 10, 113, 84, 1, 3647, 3648, 765, 3, 3649], [24, 2, 320, 80, 2000, 10, 157, 3, 545, 3, 1, 762, 4], [315, 138, 1, 498, 24, 16, 5, 19, 2, 7, 2043], [], [], [], [], [3650], [], [], [56, 206, 2, 63, 8, 5, 3651, 518, 131, 92, 653], [506, 572, 10, 112, 67, 1830, 15, 1, 997, 4, 1, 19, 50], [2, 12, 77, 5, 3652, 602, 4, 3653, 1383, 18, 9, 602, 7], [769, 40, 59, 153, 2044, 653, 2, 12, 1015, 76], [83, 3654, 40, 1, 1338, 3655, 4, 1, 36, 96, 3], [40, 41, 468, 3656, 51, 2, 12, 95, 6, 297, 6, 3657], [18, 26, 7, 54, 355, 153, 2045, 8, 1, 3658, 1595, 4], [1, 98, 5, 252, 757, 3, 3659, 1819, 2], [3660, 49, 92, 2, 12, 77, 14, 5, 65, 129, 283, 165, 12, 581], [34, 5, 1388, 10, 1872, 7, 17, 1, 1388, 3, 102, 6, 200, 62, 4, 11], [56, 2, 77, 60, 5, 3661, 8, 5, 1869, 804, 2046, 72, 150, 35, 108], [197], [], [1, 2046, 2, 814, 137, 731, 22, 11, 7, 1, 162, 4, 1], [153, 224, 80, 12, 132, 21, 34, 10, 185, 40, 41, 15, 90], [3662, 3663, 66, 1, 161, 815, 11, 7, 33, 56], [140, 5, 52, 1890, 667, 6, 3664, 57, 1, 286, 161, 815], [129, 503, 1, 224, 7, 23, 1, 1260, 264, 112, 26, 7, 5, 549], [719, 4, 162, 3, 2, 56, 1034, 6, 41, 688, 3665, 15], [481, 1, 603, 4, 1, 179, 4, 1, 36, 359, 82, 96, 16], [1, 161, 2, 1955, 1964, 57, 939, 3666, 11, 129, 42, 9], [1, 98, 107, 106, 1, 153, 224, 2, 77, 475, 512, 56, 9], [10, 343, 2047, 7, 32, 365, 1, 359, 82, 96, 129], [163, 28, 58, 1, 3667, 1364, 3, 1, 98, 45], [1389, 1569, 18, 9, 12, 134, 318, 288, 122, 1, 154], [678, 9, 12, 3668, 30, 1, 3669, 4, 65, 20, 1961], [48, 94, 53, 12, 223, 2048, 15, 54, 355, 153], [3670, 1, 498, 60, 1, 3671, 3672, 12, 3673], [6, 5, 245, 327, 2049, 29, 81, 3674, 1, 201, 23], [3675, 318, 1, 98, 1314, 16, 934], [1224, 12, 150, 15, 93, 6, 272, 1, 3676, 446], [3677, 3, 1, 98, 124, 45, 1195, 2, 3678, 3], [3679, 49, 8, 45, 3680, 487, 130, 86, 1], [1802, 4, 54, 155, 819, 4, 3681, 29, 107, 11, 14, 5, 418, 3682], [3683, 17, 25, 562, 53, 14, 5, 65, 3684, 822, 665, 8, 1957], [333, 2050, 3, 2051, 1751, 12, 2052, 11, 23, 1], [3685, 18, 314, 1, 155, 1030, 7, 223, 8, 203, 3686], [1, 3687, 4, 1, 953, 1390, 7, 388, 23, 2053, 1023, 404], [583, 4, 1224, 404, 65, 12, 2054, 25, 2055, 65, 62, 4], [1, 766, 3, 1, 1968, 3, 56, 9, 2055, 7, 286, 111], [714, 223, 1, 498, 12, 3688, 6, 958, 31, 155, 1923, 3689], [29, 20, 3690, 3691, 17, 179, 3, 194, 26, 39], [34, 10, 185, 1, 390, 4, 1, 461, 2, 12, 192, 8, 1, 106, 82], [11, 63, 279, 102, 11, 3692, 34, 10, 128, 33, 3693, 64, 14, 11], [20, 40, 1, 983, 4, 10, 3694, 18, 286, 8, 180, 60, 5], [423, 30, 1347, 2, 190, 6, 2056, 1, 790, 4, 11, 2, 12, 5], [604, 344, 4, 252, 679, 18, 2, 44, 33, 294, 57, 11, 7], [15, 1, 19], [], [81, 247, 746, 1, 36, 96, 8, 1, 674, 4, 45], [1697, 179, 2, 7, 2057, 1985, 2, 39, 62, 4, 21], [287, 4, 3695, 21, 3696, 3697, 4, 1, 205, 472, 78, 179, 833, 33], [3698, 3, 673, 188, 430, 68, 2058, 2, 15, 481, 72, 3699], [83, 276, 356, 3700, 2, 393, 6, 213, 83, 398, 3, 5], [3701, 146, 2, 129, 383, 17, 9, 1035, 14, 5, 3702, 2, 44], [113, 21, 143, 82, 17, 41, 4, 9, 651, 2, 12, 430, 8], [3703, 6, 57, 270, 112, 40, 112, 2, 257, 3704, 2, 77], [2, 44, 211, 383, 70, 212, 10, 1591, 7, 976, 30, 49, 2], [3705, 17, 807, 6, 120, 102, 29, 85, 223, 28, 1031], [13], [], [2, 1391, 572, 1, 812, 198, 1, 569, 4, 1, 964, 18], [101, 304, 9, 3706, 454, 6, 10, 128, 14, 1319, 32], [1, 427, 3, 324, 63, 1103, 3707, 6, 140, 3708], [3709, 14, 1, 98, 6, 1392, 40, 45, 400, 85, 42, 24, 1], [940, 2059, 4, 1, 271, 4, 167, 397, 3, 1, 1706], [1881, 4, 68, 969, 39, 111, 6, 10, 390, 3, 8, 1, 346], [1096, 80, 60, 5, 993, 35, 10, 409, 2, 89, 64, 1, 1310], [94, 1, 499, 793, 1, 658, 2, 12, 3710, 7, 624, 53], [336, 848, 18, 11, 85, 28, 58, 647, 3711, 2, 12, 90, 192], [1, 169, 23, 5, 3712, 812, 78, 3713, 91, 3714], [1816, 8, 1874, 1, 1036, 4, 31, 4, 10, 1037, 7, 560, 3], [5, 3715, 7, 1987, 86, 1, 1950, 29, 20, 1559, 155, 1037], [2, 1294, 66, 3716, 37, 9, 2, 7, 2060, 3, 11, 7, 223, 134], [255, 571, 78, 2, 39, 8, 650, 4, 1, 271, 3717, 149], [141, 1, 362, 791, 4, 1, 139], [], [80, 12, 58, 2061, 3718, 78, 2, 110, 6, 1013, 61, 18], [116, 5, 215, 97, 3719, 13, 6, 373, 61, 48, 3, 242, 198, 40, 1], [199, 4, 13, 2062, 3720, 152, 23, 381, 88, 6, 3721, 226], [6, 1581, 8, 10, 1078, 10, 1078, 12, 367, 531, 80, 18, 15], [1, 93, 97, 12, 3722, 9, 29, 20, 54, 3723, 209, 4, 3724], [16, 3725, 3726, 15, 481, 97, 3727, 49, 16, 9, 2063], [3, 9, 3728, 13, 8, 1613, 10, 2064, 2, 101], [], [1, 19, 71, 3729, 132, 25, 88, 34, 25, 328, 3], [3730, 1081, 154, 2065, 226, 33, 2066, 52, 275, 74], [3731, 35, 1, 36, 239, 24, 27, 890, 25, 3732], [], [14, 1, 3733, 4, 346, 996, 79, 1, 82, 3, 55, 834, 79], [1, 170, 786, 94, 3734, 80, 168, 567, 3, 458, 6], [1016, 6, 1, 385, 4, 330, 429, 18, 2, 613, 62, 1, 1231], [2059, 4, 1, 271, 4, 167, 397, 6, 61, 3, 3735, 6], [213, 61, 297, 9, 55, 20, 1941, 5, 1035, 26, 30, 61], [179, 22, 151, 9, 105, 694, 9, 533, 35, 133, 92, 1], [2067, 84, 1, 1393, 3736, 8, 1, 324, 6, 13, 26, 38, 367, 54], [184, 4, 2068, 66, 9, 346, 1394, 1, 139, 7, 291], [473, 3, 991, 338, 16, 5, 395, 1258, 379, 191, 48, 8, 1], [571, 118, 9, 112, 1, 2068, 142, 1, 535, 4, 10], [1286, 8, 9, 1395, 785, 10, 3737, 63, 3738], [3739, 2, 431, 2, 44, 84, 283, 1, 3740, 4, 1, 236], [1022, 10, 232, 44, 206, 180, 99, 86, 11, 1, 98], [23, 45, 2069, 170, 253, 795, 3, 796, 3, 629, 16, 1, 161], [8, 10, 1301, 2, 431, 9, 29, 72, 3741, 10, 3742, 4], [45, 3743, 14, 5, 3744, 4, 1805, 3, 249, 12, 29, 494, 10], [19, 50], [], [37, 55, 89, 23, 8, 1, 625, 3, 1, 642, 3745, 34, 112], [1, 291, 426, 4, 1, 658, 1117, 3, 31, 1029, 116, 117], [39, 62, 1, 236, 168, 308, 3, 1, 324, 149, 80, 67, 1286, 3], [61, 1840, 168, 35, 61, 2, 142, 61, 8, 10, 398, 3, 1482, 6, 61], [3, 1423, 61, 24, 14, 1, 162, 168, 1359, 97, 132, 61], [398, 123, 10, 558, 3, 1361, 61, 127, 3746, 711, 61, 113], [141, 10, 409, 37, 55, 89, 48, 5, 134, 659, 34, 5, 569, 3], [26, 8, 1, 1379, 2, 180, 374, 34, 5, 36, 568, 21, 2], [3747, 3, 89, 64, 1, 3748, 199, 4, 1, 569, 255, 5, 561], [4, 491, 971, 3, 40, 5, 3749, 5, 3750, 53, 41, 140, 335], [3751, 1, 185, 103, 100, 20, 3752, 37, 191, 2, 12, 192, 304, 4], [1, 98, 18, 11, 7, 144, 748, 8, 1, 112, 3, 1, 2070, 1865], [92, 1, 155, 224, 292, 20, 81, 6, 150], [], [30, 1, 3753, 4, 1, 282, 170, 2, 47, 5, 354, 273, 2071, 1894], [3, 149, 92, 13, 2, 347, 15, 21, 2, 44, 99, 43, 173, 6], [11, 381, 6, 1, 277, 53, 1, 166, 218, 567, 10, 232, 8], [1230, 20, 52, 3754, 2, 590, 3755, 80, 30, 10], [409, 14, 2, 1349, 3, 186, 48, 35, 1, 645, 2, 44, 43], [549, 99, 1, 271, 4, 167, 397, 3, 2, 7, 8, 301, 4, 10], [596, 2, 135, 34, 1, 684, 4, 1, 273, 3, 76, 4], [57, 11, 129, 3756, 106, 9, 3757, 1279, 4, 1396, 31, 72], [42, 62, 4, 650, 4, 1, 350, 84, 20, 26, 43, 121, 2023], [652, 5, 652, 2, 107, 33, 1859, 6, 373, 10, 1318, 560], [35, 26, 72, 81, 42, 32, 1, 3758, 6, 3759, 79, 3, 1], [552, 3760, 6, 1032, 141], [], [2, 7, 52, 567, 100, 116, 1, 2072, 4, 1, 125, 37, 2], [3761, 9, 2, 72, 33, 113, 11, 18, 72, 712, 1, 112, 35, 1], [309, 170], [], [80, 2, 7, 2073, 6, 272, 7, 546, 3762, 2, 590, 3763, 61], [8, 10, 2064, 3, 186, 48, 455, 61, 6, 594, 16, 1, 3764, 1], [170, 199, 7, 625, 3, 773, 18, 30, 1, 149, 4, 1, 273], [26, 39, 56, 3, 24, 5, 672, 4, 570, 133, 183, 13, 439, 1], [350, 16, 1, 112, 7, 52, 291, 2, 77, 5, 233, 344, 4], [1239, 396, 8, 45, 1087, 32, 1, 155, 2074], [12, 210, 30, 1, 139, 247, 9, 657, 845, 51, 38], [3765, 8, 5, 300, 205, 3766, 12, 134, 318], [3767, 49, 8, 1938, 3768, 18, 1, 3769, 114, 11], [63, 6, 13, 7, 81, 1, 119, 1127, 3770, 4, 1029, 303, 14], [4, 3771, 3772, 14, 2, 357, 11, 7, 5, 52, 266, 164, 1029, 9], [7, 153, 6, 13, 11, 7, 84, 73, 547, 131, 75, 136, 167, 3773], [3, 1320, 32, 59, 3774, 1046, 4, 104, 31, 266, 787], [439, 3775, 3, 794, 60, 1, 113, 4, 54, 155, 892], [], [176, 15, 59, 350, 194, 3776, 10, 136, 3777, 3, 32], [1, 3778, 4, 3779, 258, 2, 76, 4, 45, 3780], [658, 3, 1, 657, 931, 1071, 4, 45, 1322, 62, 4], [1, 468, 255, 34, 1, 468, 202, 2, 76, 4, 1, 105], [3781, 3782, 9, 1, 3783, 4, 1, 201, 3784, 95, 2075], [299, 12, 9, 298, 1960, 751, 572, 32, 1, 237, 9], [2, 12, 2076, 3, 572, 59, 395, 3785, 32, 1, 3786], [32, 1, 3787, 1, 1906, 3788, 1, 3789], [3790, 3791, 3792, 84, 1, 245, 390, 4, 65, 14], [2, 267, 108, 12, 58, 1194, 62, 4, 592, 471, 20, 59], [944, 270, 165, 12, 768, 45, 508, 3793, 3, 1, 74], [133, 4, 51, 2, 89, 8, 995, 24, 2, 76, 4, 1, 105, 179], [9, 7, 248, 1, 154, 678, 3, 16, 1, 90, 19, 17, 5], [349, 3794, 39, 1, 291, 770, 4, 57, 1, 461, 2, 12, 192], [129, 42, 144, 11, 7, 100, 466, 2, 135, 15, 36, 80, 491], [455, 13, 61, 113, 74, 3, 3795, 106, 1, 350, 3], [1643, 3796, 1, 76], [], [86, 9, 134, 112, 2, 521, 10, 128, 152, 1, 98, 14, 118, 14], [2, 44, 3, 3797, 122, 1, 19, 40, 576, 6, 556, 2, 44, 272], [663, 4, 1, 155, 2074, 8, 1, 153, 621, 1, 139, 540], [52, 291, 506, 16, 5, 744, 1182, 53, 37, 43, 301, 2, 3798, 15], [299, 24, 14, 10, 1864, 1294, 23, 39, 5, 2041, 8, 1, 823], [139, 60, 1, 810, 4, 41, 1342, 148, 3, 1, 155, 224], [292, 1214, 3, 3799, 3, 74, 3, 662, 254, 3, 3800], [11, 3, 3801, 11, 1, 1017, 39, 362, 15, 90, 3, 24], [351, 1210, 3, 627, 43, 98, 12, 1038, 126, 206, 2, 12], [192, 416, 35, 1, 170, 9, 112, 3, 8, 1, 651, 4, 1939], [125, 11, 180, 63, 6, 13, 9, 10, 179, 12, 58, 2077, 2], [178, 64, 3, 101, 10, 562, 17, 1, 560, 1036, 3802, 15, 1, 3803], [3, 916, 106, 1, 1036, 37, 2, 186, 48, 70, 142, 152, 10, 1037], [3, 923, 49, 122], [], [2, 1925, 80, 3, 55, 89, 48, 34, 1, 273, 56, 167, 3], [575, 471, 4, 149, 3, 3804, 55, 101, 41, 566], [3805, 6, 2078, 75, 546, 55, 197, 417, 315, 4, 1, 3806, 1390], [528, 3, 933, 8, 1, 987, 14, 219, 26, 7, 43, 140], [69, 8, 329, 14, 1, 112, 3, 24, 2, 76, 163, 73, 4, 1], [461, 9, 2, 12, 192, 2, 77, 464, 56, 4, 57, 11, 7, 3, 30], [1, 3807, 4, 10, 1012, 2, 3808, 21, 93, 2079, 3809, 30, 1, 105], [3810, 4, 386, 314, 15, 41, 19, 8, 1, 134, 404, 4, 205], [489, 1, 98, 2080, 12, 1381, 544, 339, 29, 12, 635, 23], [2081, 3, 140, 60, 1994, 84, 56, 65, 38, 191, 259, 3811], [3, 1976, 8, 25, 2080, 131, 27, 7, 191, 259, 131, 109, 3812, 25], [3813, 141, 205, 1052, 38, 43, 701, 565, 2082, 3, 37], [59, 757, 3814, 4, 278, 2, 190, 6, 214, 15, 1, 69, 8, 5], [1061, 730, 116, 32, 29, 20, 259, 205, 3, 73, 473], [131, 75, 3815, 1479, 4, 175, 53, 262, 476, 237, 404], [3, 1, 573, 9, 72, 28, 124, 21, 692, 4, 133, 5], [3816, 12, 210, 249, 182, 2, 1014, 83, 59, 498, 20, 245], [3817, 780, 51, 1, 2069, 60, 98, 1026, 3, 3818], [35, 806, 47, 6, 1, 1779, 4, 3, 26, 7, 80, 933], [15, 10, 199], [], [24, 2, 190, 6, 3819, 83, 30, 1, 807, 9, 7, 286], [35, 13, 40, 1998, 11, 14, 5, 3820, 3821, 4, 205], [3822, 65, 12, 58, 3823, 6, 1024, 8, 766, 3, 1334, 35], [1, 3824, 4, 25, 1988, 65, 12, 494, 434, 14, 25, 2083], [3, 3825, 3, 8, 1, 3826, 4, 19, 434, 12, 150, 631, 6], [108, 2, 84, 190, 5, 3827, 60, 3828, 4, 21, 3829, 1364], [8, 489, 18, 21, 1665, 4, 128, 7, 1295, 247, 105], [45, 559, 2084, 1, 498, 12, 540, 100, 181, 4, 1], [205, 790, 33, 6, 3830, 10, 3831, 3, 6, 213, 13, 2085, 5], [3832, 8, 45, 2084, 3, 45, 179], [], [2, 12, 15, 9, 19, 52, 604, 1047, 14, 6, 1, 313, 2, 182], [3833, 10, 90, 7, 6, 976, 41, 811, 169, 4, 1035, 3, 6], [213, 83, 140, 398, 4, 564, 53, 429, 14, 2, 44, 2086, 9], [434, 7, 2087, 8, 1, 282, 169, 2, 1126, 6, 3834, 41], [601, 4, 148, 37, 9, 2, 182, 28, 1, 1397, 4, 5, 3835, 15, 88], [16, 304, 2, 267, 72, 42, 73, 1753, 141, 59, 98], [24, 2, 458, 6, 3836, 41, 2088, 6, 2078, 309, 1, 438, 4], [225, 106, 1, 74, 196, 2, 12, 8, 128, 5, 3837, 3838, 2, 12], [5, 2089, 9, 87, 2, 44, 1341, 234, 438, 3, 1013, 5, 1019, 4], [104, 92, 13, 2, 182, 1075, 1, 19, 50, 3, 1383, 2], [44, 33, 389, 1, 98, 20, 392, 156, 6, 293, 11, 191], [122, 80, 2, 12, 752, 6, 2090, 17, 13, 6, 75, 136, 19, 3], [861, 140, 3839, 79, 8, 10, 128, 2, 1958, 75, 114, 94, 1], [478, 51, 10, 556, 12, 3840, 14, 75, 3841], [], [], [], [], [3842], [], [], [2, 101, 1, 271, 4, 167, 397, 78, 55, 1038, 11, 66], [3843, 773, 3, 743, 34, 1020, 95, 3844, 1398, 4, 348], [738, 8, 68, 563, 3, 105, 875, 4, 1, 167, 884, 12], [581, 122, 30, 1, 1253, 703, 1488, 11, 257, 52, 508], [35, 5, 2091, 48, 3, 176, 802, 823, 92, 2, 432, 11, 2], [7, 1399, 6, 99, 5, 275, 3845, 53, 84, 3846, 146, 2, 357], [3847, 3, 3848, 85, 163, 28, 58, 2, 76, 24, 219], [2, 211, 256, 64, 1, 76, 4, 57, 129, 28, 323, 53], [129, 42, 3849, 6, 1, 570, 133, 8, 1, 312], [], [1, 1228, 4, 1, 271, 2092, 23, 1303, 6, 42, 206], [397, 3, 198, 1, 113, 4, 11, 2, 47, 54, 1909, 8, 41], [468, 1369, 2, 76, 230, 3850, 9, 80, 129], [966, 13, 6, 3851, 21, 18, 2, 95, 1317, 9, 1, 616, 366, 4], [1592, 12, 211, 432, 61, 185, 97, 367, 63, 6, 13, 2], [556, 73, 205, 131, 97, 7, 130, 333, 61, 1339, 7, 37], [205], [], [493, 1, 241, 2093, 4, 1, 243, 51, 20, 309, 3, 391, 55], [101, 471, 4, 1, 3852, 311, 5, 134, 229, 261, 40, 480], [199, 563, 15, 1, 90, 1124, 2, 7, 649, 4, 5, 820], [1, 3853, 479, 7, 354, 17, 303, 3, 5, 1055, 1400, 4], [3854, 3855, 7, 3856, 8, 1, 119, 330, 2094, 24], [2, 728, 418, 143, 3, 3857, 8, 1, 1333, 4, 1, 311], [57, 7, 314, 1, 777, 203, 4, 5, 310, 2095, 2, 696], [40, 1, 3858, 232, 9, 11, 7, 41, 2096, 325, 116, 1], [1010, 4, 1, 3859, 1, 905, 3, 1, 359, 2097, 257], [455, 11, 8, 1, 354, 303, 3, 8, 31, 169, 146, 1005, 578, 12], [1352, 86, 5, 2003, 8, 1, 1222, 1, 69, 454, 12, 58, 542], [122, 356, 8, 1, 229, 7, 1, 310, 2095, 3860, 4, 5], [3861, 10, 820, 2047, 7, 3862, 253, 94, 1], [199, 2, 101, 57, 353, 6, 42, 1401, 3863, 3, 3864, 122], [1, 354, 303, 2, 101, 1, 155, 679, 348, 1402, 4, 75, 136], [19, 18, 29, 85, 28, 58, 184, 1403, 6, 1392, 30, 1, 749], [3865, 4, 41, 4, 45, 2098], [], [314, 55, 178, 138, 1, 394, 4, 41, 836, 125, 499], [3866, 103, 425, 7, 1, 3867, 2099], [3, 5, 52, 547, 1400, 4, 2100, 11, 85, 28, 58, 219, 1], [931, 1263, 4, 489, 9, 12, 58, 2101, 152, 16, 5, 19, 3], [12, 86, 1, 1229, 4, 3868, 3, 1783, 430, 3869, 1209], [3870, 4, 68, 972, 7, 778, 17, 910, 3871, 87], [17, 910, 3872, 15, 369, 70, 35, 32, 68, 3873, 103, 3], [26, 2, 101, 1404, 4, 1, 36, 96, 8, 1, 754, 4, 539], [2100, 391, 6, 1405, 53, 3874, 8, 3875, 35, 3876, 3, 1], [1402, 12, 8, 41, 3877, 58, 3878, 1282, 40, 1, 98, 14], [2, 357, 1, 169, 7, 52, 298, 1, 354, 303, 3879, 75], [3880, 80, 165, 12, 58, 1576, 5, 312, 3881, 48, 1, 1401], [348, 4, 5, 518, 158, 39, 14, 2, 412, 66, 13, 3, 52], [1135, 142, 10, 88, 3, 178, 455, 13], [], [3, 15, 90, 2, 7, 37, 181, 1399, 40, 21, 2050, 3882, 4, 54], [559, 287, 9, 2, 321, 43, 76, 6, 1, 1529, 11], [1330, 84, 10, 3883, 66, 1, 19, 50, 2102, 5], [36, 30, 10, 128], [], [6, 1392, 30, 1, 1365, 4, 1, 169, 21, 271, 4, 167, 397], [12, 5, 105, 3884, 73, 8, 11, 131, 5, 229, 4, 3885], [339, 3886, 3887, 11, 129, 42, 84, 5, 3888, 6, 13], [15, 481, 8, 10, 513, 805, 59, 72, 42, 3889, 73], [3890, 131, 21, 3891, 4, 3892, 3893, 8, 489], [1997, 2, 101, 117, 544, 229, 269, 3894, 6, 1], [90, 21, 353, 6, 42, 1139, 6, 3895, 3, 1, 650, 4, 5], [1003, 4, 2103, 296, 10, 128, 269, 23, 3896, 18, 2, 44, 272], [43, 3897, 206, 43, 3898, 4, 109, 209, 3899, 29, 12], [3900, 1023, 404, 144, 1, 2103, 428, 8, 10, 128, 3, 296, 64, 5], [3901, 4, 462, 14, 16, 1, 424, 4, 1, 2098, 4, 9, 229], [219, 23, 1, 265, 29, 20, 1, 813, 1026, 4, 32, 2, 47, 2, 12], [36, 407, 2, 316, 43, 3902, 8, 3903, 3, 2, 89, 23], [48, 5, 52, 967, 2104, 269, 3904, 6, 1, 90, 311, 2, 12], [432, 425, 21, 2099, 12, 58, 1139, 6, 505], [3905, 18, 469, 12, 134, 318, 288, 62, 4, 3906, 5], [395, 2105, 3, 3907, 1398, 4, 57, 12, 163, 58, 3908], [665, 3909, 3910, 8, 3911, 9, 12, 163, 521, 730, 5], [421, 303, 4, 2051, 660, 9, 7, 32, 2, 7, 1406, 16, 9], [333, 2, 182, 28, 58, 2073, 6, 507, 1, 3912, 3913, 40], [51, 1, 1799, 4, 1045, 329, 12, 58, 984, 24, 55], [39, 6, 5, 229, 4, 334, 935, 3914, 18, 859], [1001, 261, 1, 479, 4, 11, 269, 1149, 15, 5, 688, 3915, 30, 1], [173, 15, 51, 2, 432, 15, 3916, 74, 3917, 428, 30, 1], [3918, 480, 4, 49, 1152, 3, 1407, 51, 605, 9], [3919, 1, 169, 12, 58, 3920, 261, 103, 2, 7, 73, 8], [10, 2045, 16, 541, 23, 381, 199, 4, 13, 20, 1, 310, 3921, 4], [241, 904, 32, 937, 1253, 3, 480, 391, 48, 18, 41], [81, 999, 725, 22, 151, 2, 28, 5, 233, 1800, 16], [522, 3, 2, 7, 1235, 6, 3922, 138, 59, 1, 73, 37, 14], [16, 1, 159, 203, 29, 12, 1, 407, 4, 2106, 3, 2, 44, 213], [95, 1, 3923, 1307, 15, 57, 29, 20, 16, 2, 431, 9, 87], [2, 44, 3924, 45, 2106, 2, 182, 272, 83, 8, 926, 4], [1252, 9, 129, 42, 4, 671, 141, 1, 98], [], [194, 80, 39, 52, 662, 6, 10, 199, 37, 194, 9, 97], [739, 13, 12, 11, 33, 58, 16, 61, 2, 187, 33, 120, 2, 182, 28], [463, 9, 1, 479, 4, 1, 229, 3925, 15, 32, 3926, 11], [137, 42, 4, 313, 9, 1, 479, 107, 33, 659, 18, 9, 1, 820], [7, 927, 34, 1, 199, 4, 5, 170, 3927, 1, 173, 2, 12, 150, 8, 15], [7, 368, 183, 236, 3, 7, 261, 40, 539, 3928, 60, 563, 14], [22, 89, 48, 1, 441, 1, 236, 39, 64, 141, 59, 563], [212, 15, 93, 26, 7, 5, 1388, 60, 1, 3929, 4, 5, 1007, 385], [92, 264, 3, 95, 5, 577, 331, 4, 492, 15, 1, 1758, 2, 89], [520, 198, 3930, 66, 1, 904, 3, 12, 58, 100, 3931], [35, 49, 6, 1497, 1, 1974, 3932, 4, 1, 104, 212], [80, 67, 986, 3933, 610, 10, 517, 24, 2, 47, 9], [1, 229, 242, 48, 15, 93, 34, 5, 354, 162, 2, 347, 3], [24, 14, 2, 135, 123, 13, 2, 47, 9, 1, 303, 7, 259, 483], [3, 68, 446, 259, 84, 356, 122, 94, 1, 1379, 11], [353, 6, 42, 391, 40, 5, 561, 4, 295, 577, 1857, 10], [344, 4, 1, 2087, 674, 4, 1, 98, 3934, 15, 9], [2, 77, 9, 2, 7, 1272, 10, 19, 8, 1, 3935, 1303, 4], [675, 2, 1366, 6, 128, 9, 11, 7, 223, 191, 1944, 8, 1], [812, 3, 9, 2, 12, 81, 43, 1397, 43, 1035, 3, 43, 601], [4, 597, 5, 148, 3, 24, 48, 8, 1, 473, 358, 4, 1], [229, 2, 207, 5, 384, 1033, 3, 1, 119, 279, 1291, 2, 12], [207, 48, 1, 118], [], [2, 142, 80, 67, 88, 24, 260, 17, 5, 349, 366, 2, 166, 61], [3, 204, 6, 5, 50, 30, 51, 3936, 5, 240, 33, 2066], [234, 8, 5, 3937, 500, 816, 35, 1, 2107, 3, 3938, 21], [240, 8, 10, 157, 2, 132, 32, 10, 2008, 35, 11, 1021, 194], [80, 773, 8, 1, 1008, 2104, 110, 6, 3939, 2, 12, 357], [1, 485, 4, 1, 240, 475, 3940, 16, 11, 3941, 116, 5], [193, 67, 3942, 3, 2, 3943, 61, 17, 5, 1039, 8, 10, 88, 73, 131], [2108, 2, 357, 16, 109, 1040, 905, 2, 129, 3944, 3, 2], [3945, 52, 181, 6, 3946, 5, 1040, 53, 37, 52, 757, 22, 137], [120, 6, 523, 6, 220, 822, 31, 67, 136, 1951, 18, 11, 7], [1295, 532, 6, 283, 109, 386, 8, 1, 133, 95, 10], [3947, 6, 519, 80, 3, 5, 2089, 9, 87, 2, 110, 6], [3948, 10, 3949, 16, 3950, 10, 19, 50, 129, 2109, 2110], [13, 30, 253, 648, 48, 1, 229, 3, 822, 1, 1408, 2], [207], [], [118, 1039, 8, 31, 88, 3, 80, 8, 1, 121, 2, 89, 62, 4, 9], [229, 3, 34, 117, 3, 81, 375, 31, 51, 15, 1, 90], [1124, 649, 13, 4, 5, 3951, 3952, 428, 17, 1127, 3953], [1, 421, 3, 2111, 3954, 9, 428, 30, 1, 936, 4, 11, 2], [158, 696, 14, 1, 2112, 1398, 4, 1989, 29, 12], [134, 318, 1352, 6, 1405, 3, 306, 3955, 4, 3956, 12, 166], [49, 18, 103, 3, 26, 20, 3957, 3958, 3, 1152, 703], [3959, 9, 281, 1, 1321, 118, 156, 12, 2, 58, 5, 3960, 65, 2], [129, 130, 28, 3961, 35, 1, 2049, 4, 32, 3962], [18, 14, 11, 7, 1, 69, 9, 260, 13, 17, 3963, 972, 7, 1], [3964, 713, 4, 1982, 6, 51, 21, 1343, 3965, 4, 3966], [623, 2113, 15, 1, 19, 2, 115, 1009, 9, 2, 76, 1917], [4, 1, 1448, 3967, 3, 10, 136, 1456, 3968, 35], [486, 3969], [], [24, 253, 64, 5, 872, 1562, 55, 39, 6, 57, 137, 163, 28], [58, 5, 229, 4, 3970, 3971, 3, 103, 2, 12, 33, 5, 36], [602, 4, 3972, 2044, 506, 15, 31, 173, 146, 1, 1222, 12], [1486, 21, 229, 7, 118, 1026, 2, 89, 2114, 6, 306], [2016, 518, 3, 15, 93, 8, 31, 4, 1, 332, 184, 1403, 1402], [2, 101, 5, 500, 4, 228, 52, 2114, 2, 190, 49, 29, 20], [726, 280, 29, 20, 33, 84, 3973, 2, 204, 6, 80, 619], [2, 606, 6, 61, 8, 61, 136, 1205, 16, 56, 2, 12, 5, 1397, 206], [141, 1, 466, 270, 55, 1372, 3, 37, 8, 9, 1740], [820, 35, 1, 354, 244, 3974, 4, 303, 6, 80, 67, 310], [1334, 2, 1100, 3975, 5, 209, 4, 3976, 619, 3977], [1, 808, 4, 1, 3978, 14, 1091, 14, 2, 44, 8, 203, 11, 7, 5], [1573, 3979, 8, 203, 5, 1208, 619, 8, 203, 5, 3980, 619, 37, 191], [14, 10, 3981, 732, 3982, 3, 8, 203, 3983, 16, 2, 316, 771], [3984, 14, 22, 151], [], [56, 2, 81, 120, 9, 16, 21, 500, 4, 228, 6, 28, 2115], [1, 3985, 4, 19, 16, 3986, 237, 7, 5, 159, 143, 14, 16], [13, 11, 7, 5, 159, 3987, 69, 144, 945, 156, 2, 101, 5, 191], [3988, 857, 3, 9, 7, 360, 2, 101, 11, 8, 5, 2116], [1508, 9, 40, 3989, 2, 302, 12, 58, 332, 3990, 2116], [2, 431, 15, 90, 9, 11, 7, 3991, 3992, 3, 1407, 1, 348], [2117, 18, 1, 2029, 4, 360, 7, 3993, 8, 1], [1969, 489, 21, 3994, 857, 12, 1186, 6, 1792], [130, 86, 480, 583, 4, 2118, 11, 649, 13, 4, 5], [3995, 3996, 2, 12, 163, 192, 337, 30, 1, 1593, 4, 5, 3997], [3998, 9, 85, 28, 3999, 3, 514, 4000, 1409], [4, 237, 404, 2, 7, 66, 6, 4001, 11, 122, 18, 2, 886, 9], [11, 7, 4002, 3, 588, 17, 5, 280, 266, 716, 7, 8], [443, 54, 1910, 1533, 3, 2, 132, 11, 8, 10, 328, 2, 101, 43], [4003, 247, 402, 109, 601, 4, 1831, 48, 1, 225], [438, 14, 144, 10, 399, 1410, 7, 1, 159, 4004, 69, 2, 12], [1186, 35, 778, 2, 166, 9, 229, 937, 4005], [], [2, 231, 294, 22, 32, 1, 268, 4, 9, 134, 812, 11, 72], [1808, 5, 105, 948, 4, 390, 6, 2056, 10, 1875, 8, 15, 32], [1, 843, 1030, 2, 320, 5, 134, 229, 4, 4006, 1612, 4], [398, 3, 102, 2, 347, 248, 10, 1410, 3, 5, 4007, 53, 5], [4008, 2, 44, 33, 1013, 737, 247, 3, 10, 410, 4, 399, 2119], [813, 141, 1, 225, 1308, 26, 20, 1276, 4, 4009, 4010], [3, 4011, 1, 159, 20, 788, 4, 1255, 18, 480, 20, 4, 41], [153, 564, 3, 81, 999, 322, 18, 109, 2120, 53, 4012], [26, 137, 163, 28, 58, 12, 4013, 34, 303, 31, 655, 2, 47, 7], [2111, 3, 4014, 130, 2, 76, 40, 54, 1178, 138, 1], [1326, 8, 117, 169, 7, 5, 326, 1400, 4, 4015, 4016], [4017, 4018, 1699, 306, 1362, 23, 201, 2, 182, 120], [3, 103, 4019, 6, 54, 1696, 1852, 2, 4020, 10, 961, 35], [1, 4021, 4, 5, 4022, 1353, 30, 499, 4023, 9, 840], [142, 10, 556], [], [14, 1, 346, 610, 23, 10, 407, 2121, 2, 89, 86, 229], [116, 229, 1116, 298, 1312, 967, 1, 4024, 668], [245, 775, 4, 1255, 3, 4025, 668, 4026, 8, 31, 169, 2], [194, 101, 83, 433, 1, 450, 4, 5, 4027, 959, 3, 24, 40, 1], [4028, 4029, 2, 783, 8, 54, 184, 1403, 518, 154, 4030], [2120, 2, 1382, 4031, 3, 1407, 1, 518, 17, 4032, 24], [39, 5, 301, 2, 347, 24, 4033, 5, 36, 199, 229], [2, 124, 10, 4034, 2, 211, 77, 140, 5, 1686, 14, 2, 107, 8], [629, 878, 742, 1455, 1283, 16, 54, 1178, 9, 211, 39], [4, 313, 1, 133, 20, 4035, 14, 2, 129, 28, 1790, 30], [45, 674, 2, 332, 377, 9, 12, 29, 33, 58, 37, 2, 182], [28, 1218, 152, 753, 3, 862, 196, 225, 438, 3], [14, 11, 2092, 10, 4036, 4, 1176, 1, 19, 50, 32, 451], [34, 4037, 592], [], [11, 7, 116, 9, 2, 120, 9, 55, 39, 6, 5, 36, 309, 4038], [493, 1, 271, 11, 7, 4039, 3, 12, 175, 566, 324, 37, 55], [1742, 3, 4040, 2025, 94, 571, 2, 110, 6, 2122], [75, 911, 112, 7, 388, 35, 126, 3, 10, 1319], [1298, 169, 12, 81, 6, 42, 101, 18, 9, 1924, 13, 52, 36], [56, 2, 12, 8, 10, 926, 5, 69, 9, 7, 130, 1, 813, 4], [32, 4041, 141, 1, 98, 2, 12, 228, 2, 12, 1, 360], [8, 10, 328, 100, 87, 5, 1019, 20, 4042, 11, 63, 6, 13, 9], [1, 813, 69, 55, 44, 187, 72, 42, 6, 712, 1, 112, 8, 1, 309], [1880, 40, 5, 148, 8, 1, 251, 26, 7, 1, 600, 4, 1], [19, 50, 94, 9, 14, 144, 2, 12, 95, 10, 399, 1039, 18], [56, 17, 10, 351, 770, 2, 77, 52, 2057, 94], [234, 225, 438, 64, 6, 21, 2, 12, 4043, 30, 4044, 49], [1356, 333, 4, 1, 673, 23, 1, 121, 199, 29, 12, 211], [2052, 13, 14, 274, 52, 392, 3, 2, 1126, 6, 272, 10, 410, 4], [399, 33, 355, 4045, 16, 1, 369], [], [], [], [], [4046], [], [], [55, 943, 30, 1, 271, 215, 1, 147, 7, 81, 8, 203, 183], [1, 792, 2, 7, 393, 6, 990, 1, 74, 196, 748, 1], [282, 251, 3, 4047, 1, 2067, 2, 4048, 4049, 86, 1, 2123], [9, 12, 382, 13, 23, 1, 881, 865, 10, 1496, 7, 6, 220, 14], [191, 14, 643, 9, 112, 3, 24, 478, 5, 148, 6, 383], [8, 1, 2034, 4, 68, 496, 2117, 14, 55, 89, 198, 2], [1920, 109, 1041, 53, 4050, 824, 2, 47, 3, 158, 12, 10, 398], [305, 4, 140, 4051, 4052, 4053, 75, 1873, 7, 361, 131, 2, 12], [1685, 3, 880, 80, 7, 567, 3, 2, 110, 6, 2109, 30], [4054, 100, 37, 9, 11, 7, 305, 112, 92, 55, 633, 1], [273, 35, 1, 4055, 170, 4, 68, 818, 80, 72, 28, 382], [4056, 1, 162, 92, 126, 18, 5, 4057, 344, 4, 4058], [2124, 9, 182, 206, 28, 4059, 13, 14, 5, 4060, 470, 13], [4061, 2, 12, 58, 276, 383, 16, 5, 112, 3, 154, 307, 3, 2, 7], [4062, 3, 4063, 2, 77, 383, 286, 35, 13, 3, 1], [98, 17, 11], [], [215, 55, 347, 138, 1, 149, 285, 254, 126, 3, 308], [141, 45, 358, 2, 47, 175, 1659, 474, 26, 7], [4064, 3, 134, 824, 32, 66, 126, 3, 2, 107, 33, 283, 811, 30], [45, 4065, 4066, 1, 501, 2, 4067, 7, 230], [259, 131, 5, 965, 195, 87, 55, 44, 200, 86, 11, 6, 1, 616], [170, 199, 26, 14, 11, 63, 6, 13, 7, 54, 355, 4068], [1495, 169, 2, 76, 9, 17, 10, 228, 3, 10, 360, 2, 44], [2086, 6, 1304, 10, 809, 1085, 86, 1, 2123, 144, 11, 7], [1967, 9, 87, 2, 7, 6, 1810, 228, 17, 10, 157, 2, 182], [28, 6, 4069, 10, 4070, 37, 230, 4071, 2, 132, 11, 48], [3, 24, 11, 39, 34, 10, 185, 9, 2, 72, 4072, 75, 4073, 254], [40, 1510, 11, 2, 7, 6, 1075, 1, 4074, 989, 4, 21], [1973, 18, 11, 39, 6, 10, 128, 14, 54, 1543, 293, 16, 2094], [75, 1196], [], [2, 246, 160, 151, 87, 22, 28, 284, 76, 57, 5, 539, 69, 716, 85], [42, 8, 1, 882, 4, 65, 3, 8, 5, 4075, 4076, 1, 147, 67], [677, 38, 975, 392, 156, 6, 4077, 84, 78, 11, 38, 4078, 40], [4079, 14, 38, 668, 1, 518, 8, 73, 4080, 4081], [4082, 137, 4083, 3, 4084, 18, 11, 975, 2125, 920, 6], [4085, 148, 2112, 2126, 137, 2062, 4086, 17], [1, 677, 4, 68, 4087, 18, 21, 975, 1454, 8, 716, 8], [21, 4088, 100, 1, 951, 4, 148, 597, 12, 58, 768, 23], [1, 201, 1, 164, 2127, 9, 89, 4089, 64, 10, 968, 4, 273, 20], [54, 355, 153, 3, 143, 69, 6, 80], [], [97, 458, 6, 1381, 6, 11, 3, 4090, 17, 11, 2, 377, 97, 72, 28], [1257, 4091, 34, 11, 12, 2, 33, 2110, 61, 18, 2, 363, 61, 64], [3, 8, 779, 4, 61, 4092, 4093, 1368, 92, 13, 34, 1], [273, 16, 5, 36, 114, 1, 496, 4, 10, 148, 261, 1, 809, 176], [111, 158, 2, 44, 99, 86, 1, 4094, 1411, 9, 30, 10], [968, 4, 1041, 1, 1019, 12, 919, 6, 41, 285, 4095, 3, 5], [2128, 331, 4, 148, 7, 388, 64, 1, 824, 4, 1, 170, 2, 411], [15, 9, 3, 204, 70, 6, 1, 161, 324, 92, 13, 11, 7, 52], [149, 3, 80, 1373, 6, 13, 1583, 18, 26, 7, 81, 14], [10, 127, 168, 2129, 6, 1, 162, 2108, 104, 16, 13, 6], [4096, 1, 1411, 2130, 11, 7, 334, 149, 506, 146, 5, 1324, 4], [473, 426, 139, 439, 48, 35, 126, 103, 3, 26, 2, 260, 416, 4], [10, 228, 333, 2, 12, 43, 88, 827, 35, 10, 166, 408, 2, 755, 10], [36, 31, 8, 10, 277, 88, 2, 12, 10, 399, 410], [], [16, 41, 114, 2, 207, 304, 18, 1, 2131, 1290, 106, 10, 232], [1, 422, 4097, 4, 1, 1393, 183, 3, 10, 136, 554, 3, 1], [1378, 4, 1, 628, 4098, 8, 10, 545, 24, 2, 63, 6, 151, 4, 5], [1033, 66, 13, 2, 537, 23, 4099, 1, 1033, 168, 73], [758, 3, 24, 2, 363, 1, 119, 345, 322, 3, 762, 2, 12], [207, 8, 1, 106, 82, 26, 20, 599, 341, 4, 1], [98, 3, 29, 20, 1361, 8, 35, 13, 206, 8, 117], [193, 2, 77, 5, 4100, 15, 10, 732, 24, 252, 15, 10, 408, 3, 80], [548, 555, 3, 442, 368, 81], [], [11, 7, 19, 16, 5, 227, 18, 6, 200, 31, 2, 85, 132, 61, 48, 2, 107], [37, 3, 14, 2, 2132, 17, 10, 328, 5, 985, 110, 8, 1], [162, 66, 10, 1148, 726, 298, 23, 61, 203, 3, 17, 1], [119, 384, 1683, 529, 30, 1, 98, 244, 36, 157], [100, 20, 388, 79, 10, 732, 3, 111, 1296, 84, 10, 558], [24, 1, 227, 4101, 3, 4102, 2, 521, 11, 1311, 3, 47, 1], [74, 2133, 4, 1, 98, 8, 1025, 1320, 1, 324, 2, 495, 142], [5, 2134, 4, 360, 30, 10, 328, 3, 4103, 6, 104, 11, 14, 197], [14, 1, 227, 182, 1260, 24, 2, 135, 15, 80, 97, 7, 899], [1824, 10, 232, 3, 368, 584, 17, 61, 113, 6, 1, 236], [17, 5, 349, 4104, 2, 2135, 6, 61, 97, 63, 856, 6], [4105, 2, 261, 1, 1003, 4, 360, 3, 923, 11, 6, 1, 236], [3, 14, 11, 4106, 3, 4107, 64, 3, 470, 111, 1, 98, 3, 1], [530, 2, 4108, 48, 3, 4109, 61, 1, 273, 254, 63, 305, 4], [1, 672, 3, 913, 4, 5, 105, 1323], [], [97, 63, 6, 28, 4110, 2, 132, 61, 590, 35, 10, 409], [3, 292, 6, 1370, 23, 3, 24, 26, 39, 5, 466, 2031, 8], [4111, 17, 10, 228, 3, 80, 2, 12, 204, 83, 66], [341, 299, 3, 56, 2, 12, 33, 1, 1682, 366, 8, 57, 596], [257, 10, 809, 16, 32, 2, 267, 2, 129, 42, 884, 111, 94, 1], [271, 4, 167, 397, 2, 101, 83, 8, 5, 490, 4112, 2, 12, 6], [120, 4113, 57, 6, 187, 2, 393, 6, 4114, 5, 148, 3, 4115], [146, 55, 20, 2, 132, 80, 81, 584, 48, 35, 5, 2091], [4116, 3, 52, 495, 14, 10, 90, 2134, 4, 360, 2121, 2, 110], [4117, 1041, 3, 1243, 103, 3, 26, 62, 4, 1, 162], [123, 13, 1, 98, 127, 439, 60, 4118], [], [1, 360, 1123, 3, 89, 62, 2, 261, 5, 227, 3, 14, 2, 107, 37], [154, 74, 4119, 9, 12, 58, 1200, 80, 1163, 495, 122], [31, 7, 37, 4120, 40, 1, 104, 9, 27, 39, 648, 16, 13, 3, 2], [77, 25, 2097, 4121, 106, 1, 930, 4, 10, 1289, 27, 321, 5, 4122, 4], [1825, 769, 5, 36, 114, 3, 250, 48, 2, 261, 117, 1999], [4, 360, 3, 89, 23, 1129, 10, 4123, 158, 2, 463], [102, 2136, 7, 41, 4, 1, 2137, 183, 13, 16, 318, 10, 1002], [23, 1, 19, 50, 5, 587, 4, 5, 883, 43, 1005, 12, 581, 37], [471, 4, 4124, 66, 138, 1, 324, 16, 581, 1290, 2, 110], [1162, 64, 3, 1861, 48, 1396, 52, 197, 2, 12, 5, 4125], [4126, 148, 4, 167, 273, 3, 2136, 1041, 3, 44, 2028, 10], [360, 24, 2, 204, 6, 146, 80, 257, 455, 10, 399, 1039, 2], [190, 57, 2, 44, 6, 1836, 61, 18, 97, 257, 60, 31, 2138, 2, 44], [33, 84, 1500, 83, 1946, 53, 33, 97, 2139], [], [56, 1, 646, 4, 1, 148, 1412, 79, 94, 13, 3, 11, 85, 28], [124, 13, 2022, 4, 5, 349, 4127, 1, 1169, 4, 360, 7, 8], [1, 184, 10, 148, 72, 33, 504, 4128, 16, 54, 756, 53, 37, 2], [77, 52, 853, 116, 10, 4129, 3, 186, 48, 1, 273, 100, 7], [305, 4, 5, 2140, 913, 9, 2, 107, 33, 297, 2, 63, 238], [6, 4130, 3, 309, 10, 127, 18, 32, 7, 161, 3, 1, 98, 12], [45, 157, 35, 13, 767, 152, 45, 2141, 817, 2, 495], [77, 8, 10, 328, 16, 1, 227, 500, 3, 11, 12, 210, 24, 29], [1156, 3, 1128, 17, 13, 70, 8, 5, 145, 2, 267, 57, 12], [323, 2, 12, 669, 3, 10, 148, 12, 210, 62, 3, 1, 4131], [4, 2142, 39, 79, 10, 4132, 1, 501, 63, 305, 4, 1, 1380, 4], [821, 273, 2, 7, 363, 40, 1, 558, 40, 1, 591, 40, 1, 398], [3, 1413, 48, 11, 7, 1202, 466, 8, 1, 162, 6], [283, 32, 59, 244, 270, 4133, 35, 13, 2, 77, 14, 87, 2, 7, 8], [5, 2143, 1949, 67, 4134, 2, 7, 4135, 3, 89, 48, 2, 77], [36, 909, 4136, 15, 10, 558, 2, 4137, 79, 3, 14, 2, 107, 37, 10], [88, 39, 141, 10, 399, 240, 11, 321, 13, 485, 2, 1855], [64, 1833, 1, 205, 2081, 30, 13, 3, 727, 1, 410, 544], [2, 2054, 146, 2, 357, 45, 460, 129, 42, 2, 44, 283, 1], [4138, 4139, 4, 1052, 3, 4140, 106, 10, 2144, 3, 16, 5, 145], [2, 7, 827], [], [1, 143, 4141, 9, 37, 1312, 1539, 6, 4142, 510], [4143, 39, 35, 13, 2, 267, 9, 737, 2, 3, 80, 20, 430, 18, 2], [393, 6, 213, 1, 98, 1983, 16, 45, 461, 2, 178, 17, 10], [111, 6, 5, 552, 2014, 1, 399, 410, 92, 13, 1, 265, 273, 7], [305, 4, 1, 672, 3, 784, 4, 49, 5, 193, 288, 45, 762], [63, 6, 920, 6, 5, 1979, 4144, 4, 1301, 3, 45, 1322], [168, 453, 144, 416, 39, 493, 990, 2, 178, 1943, 15, 1], [358, 24, 194, 39, 602, 57, 87, 1, 98, 20], [638, 3, 662, 23, 1, 1745, 4, 9, 39, 5, 143, 69, 1], [162, 63, 6, 574, 1166, 52, 1190, 2, 110, 6, 99, 1], [98, 66, 13, 175, 4145, 15, 10, 232, 3, 24, 2, 696], [17, 1097, 731, 9, 1, 315, 20, 269, 8, 54], [4146, 4147, 14, 11, 63, 30, 254, 13, 3, 122, 86, 1], [273, 8, 609, 3, 45, 2133, 63, 43, 549, 74, 18, 1414], [14, 2, 178, 4148, 2, 47, 5, 36, 164, 4149, 220, 1331, 195, 5, 1324], [4, 2145, 248, 1, 1396, 3, 1089, 3, 15, 9, 2], [1034, 1, 1380, 4, 821, 273, 1, 2140, 913, 9, 7], [351, 56, 34, 5, 1863, 4150, 1, 164, 1735, 3, 1, 98], [1025], [], [4151, 62, 30, 254, 10, 552, 3, 176, 111, 2, 47, 86], [1, 149, 1328, 4, 1, 647, 324, 1, 1042, 4, 1, 821], [501, 11, 7, 10, 90, 148, 286, 116, 13, 17, 9, 2, 135, 16], [80, 18, 97, 7, 210, 1, 1646, 3, 2131, 254, 13, 1], [4152, 636, 14, 264, 1174, 552, 1367, 34, 716, 166, 36], [19, 16, 810, 10, 399, 410, 81, 1156, 2, 256, 8, 1], [98, 809, 11, 7, 5, 662, 472, 163, 1, 1042, 996, 448], [37, 467, 23, 10, 277, 14, 2, 242, 9, 2, 7, 4153, 3, 12, 6], [1032, 152, 6, 1, 166, 18, 15, 93, 2, 943, 35, 5, 295, 309], [172, 3, 14, 2, 107, 37, 5, 1040, 39, 994, 94, 13, 3], [255, 13, 3, 89, 23, 648, 34, 1, 148], [], [3, 56, 2, 7, 6, 99, 1, 159, 4154, 3, 466, 69, 2, 120, 4], [32, 9, 2, 1517, 8, 9, 202, 287, 21, 265, 172, 7, 14, 266], [14, 125, 17, 1, 810, 4, 1, 148, 8, 1, 1333, 7, 5, 1415], [53, 4155, 4156, 40, 5, 1888, 2146, 551, 21, 7], [117, 408, 4, 1, 821, 501, 17, 791, 2127, 223], [4157, 30, 11, 1568, 4158, 1, 172, 17, 5, 4159, 4], [148, 35, 1, 170, 199, 20, 41, 1387, 53, 2075, 98, 1122], [40, 1, 104, 3, 677, 3, 994, 795, 3, 796, 141], [264, 121, 8, 45, 2036, 15, 90, 2, 107, 33, 1766, 45], [2035, 3, 260, 1823, 15, 49, 17, 10, 410, 8, 5, 942, 4], [179, 14, 29, 1038, 13, 822, 31, 3, 4160, 341, 73], [18, 78, 2, 12, 710, 1, 1232, 4, 31, 4, 49, 998, 106, 1], [2146, 141, 1, 164, 139, 3, 207, 45, 4161, 2, 7, 464], [4, 45, 550, 4162, 3, 1842, 8, 1, 496, 3, 2, 260], [43, 73, 4, 49], [], [144, 306, 56, 3, 24, 31, 72, 150, 648, 94, 13, 963], [560, 5, 4163, 807, 9, 124, 13, 2009, 6, 4164, 108, 15, 31], [19, 1, 1042, 1812, 48, 4165, 3, 2, 1372, 1, 939, 270], [72, 158, 42, 1070, 6, 99, 13, 2, 7, 462, 4, 687, 1], [980, 40, 822, 41, 4, 49, 92, 21, 182, 4166, 18, 1], [148, 1367, 62, 70, 825, 3, 2, 1385, 10, 88, 2, 374, 66], [1, 170, 138, 49, 3, 1871, 49, 176, 16, 41, 507, 4], [80, 18, 80, 7, 210], [], [15, 93, 2, 186, 48, 23, 1, 1240, 4, 1, 1415, 3, 710, 21], [143, 612, 1323, 4, 1853, 133, 998, 6, 3, 952, 3], [597, 4167, 1291, 6, 264, 121, 14, 1, 496, 4, 1, 148, 1412], [23, 49, 1, 4168, 4169, 4, 646, 4170, 195, 1, 139, 3], [86, 1, 539, 4171, 4, 9, 164, 4172, 473, 14, 219, 29], [4173, 6, 117, 4174, 439, 1, 36, 350, 154, 53, 175], [98, 39, 994, 34, 13, 3, 2, 470, 49, 152, 17, 2144], [4, 10, 4175, 2015, 14, 2, 107, 37], [], [16, 1, 159, 203, 4, 9, 112, 2, 7, 4176, 11, 7, 5, 1600], [2, 1093, 83, 3, 4177, 8, 5, 1340, 1847, 6, 1416, 2, 1412], [1, 236, 17, 10, 157, 3, 174, 64, 3, 186, 48, 70, 3], [1391, 103, 3, 26, 3, 70, 186, 48, 24, 2, 72, 641, 6], [1914, 10, 127, 3, 1918, 35, 1839, 6, 373, 13, 1416, 4178, 2, 47], [98, 132, 45, 763, 48, 8, 5, 209, 4, 2013, 3, 4179, 34, 1], [1042, 18, 15, 93, 183, 1, 2147, 164, 4, 1, 148, 183, 1], [4180, 788, 4, 149, 646, 3, 1, 4181, 3, 4182], [552, 4183, 3, 1, 4184, 1276, 4, 59, 308, 270], [39, 1, 74, 104, 4, 1, 125], [], [2, 4185, 70, 16, 1404, 4, 80, 18, 26, 20, 416, 11, 7], [526, 9, 29, 12, 166, 61, 1011, 36, 593, 8, 1, 501, 2], [231, 1651, 102, 11, 4186, 13, 6, 120, 9, 11, 12, 2115, 1], [2148, 666, 6, 51, 11, 63, 1246, 14, 2, 76, 4, 9, 2, 7], [180, 413, 6, 830, 5, 4187, 4, 1, 746, 4188, 66], [13, 18, 2, 1891, 83, 1, 1415, 14, 2, 28, 46, 7, 5, 209], [4, 4189, 8, 1, 501, 30, 68, 1240, 2, 44, 56, 213, 62], [86, 5, 4190, 4, 646, 1, 271, 4, 167, 397, 3, 30, 9], [2, 44, 200, 10, 4191, 16, 1, 74, 196, 3, 37, 979, 1], [4192, 4, 59, 864, 4193, 81, 253, 795, 3, 796, 3], [2149, 14, 1, 125, 168, 4194, 2, 4195, 41, 824, 66, 10, 232], [3, 4196, 23, 195, 634, 2150, 3, 138, 149, 1411, 9, 81], [4197, 4198, 17, 148, 94, 1, 1298, 169, 4, 1, 19], [50, 2, 374, 520, 16, 2, 7, 180, 1300, 14, 118, 14], [2060, 3, 2, 77, 1, 4199, 1841, 16, 1, 466, 2142], [4, 36, 80, 11, 63, 54, 4200, 2124, 56, 8, 21], [155, 679, 221, 11, 38, 73, 60, 1, 4201, 4, 5, 585, 131, 54], [1150, 997, 18, 9, 251, 11, 166, 13, 340, 2151], [70, 1990, 435, 2, 110, 6, 120, 4, 21, 385, 4, 959, 4], [21, 4202, 4, 41, 4, 22, 3, 17, 140, 4203, 39, 5, 4204], [9, 7, 801], [], [18, 14, 2, 374, 79, 1, 634, 2150, 106, 1, 266, 251], [139, 2, 124, 5, 1067, 8, 10, 4205, 328, 20, 81, 41, 560], [228, 1, 500, 85, 28, 4206, 92, 11, 7, 430], [], [], [], [], [4207], [], [], [66, 336, 53, 1209, 8, 1, 251, 2, 39, 6, 1, 119, 860, 4], [791, 564, 30, 51, 2, 12, 4208, 1, 82, 35, 1, 346, 4], [10, 1002, 2, 76, 4, 10, 1306, 4209, 35, 9, 346, 3], [44, 33, 1588, 30, 528, 4210, 15, 10, 651, 103], [7, 1, 119, 327, 1734, 1, 119, 483, 2137, 1, 119], [547, 977, 3, 4211, 394, 1, 119, 589, 568], [269, 248, 68, 4212, 4213, 1, 4214, 1199, 4, 1, 327], [96, 413, 795, 3, 796, 138, 1, 324, 41, 20, 1327], [8, 370, 1, 169, 146, 2, 12, 4215, 80, 3, 9, 194, 321], [13, 5, 1813, 4216, 4, 801, 3, 60, 4217, 35, 1, 1168, 292, 1], [4218, 183, 1, 956, 6, 1, 106, 82, 2, 1034, 56, 57, 32], [1, 764, 4, 1, 79, 82, 96, 803, 52, 575, 7, 45], [125, 14, 575, 14, 1, 125, 4, 1, 780, 8, 1, 1772, 60, 1], [780, 29, 267, 4, 43, 4219, 3, 4220, 141, 43, 487, 3], [45, 173, 7, 1, 119], [], [2, 4221, 6, 120, 102, 1620, 1, 585, 4, 1, 205, 1601, 12], [58, 11, 12, 4222, 1598, 11, 12, 296, 454, 1350], [94, 396, 3, 766, 5, 974, 1058, 17, 484, 3], [2152, 14, 68, 2083, 11, 12, 984, 68, 4223, 6, 150], [6, 21, 15, 93, 163, 258, 3, 4224, 85, 28, 633, 180], [550, 2027, 1, 761, 12, 58, 464, 4, 25, 4225, 3], [396, 1, 4226, 464, 4, 25, 258, 3, 369, 43, 301, 8, 9], [437, 82, 26, 12, 58, 43, 4227, 667, 43, 436], [423, 166, 4228, 3, 5, 105, 625, 12, 256], [], [11, 38, 5, 4229, 4, 329, 55, 1436, 9, 559, 4230], [38, 1, 4231, 16, 465, 652, 3, 1014, 54, 371], [726, 8, 1809, 17, 68, 4232, 38, 5, 437, 522], [329, 211, 4233, 6, 573, 212, 819, 3, 2082, 91], [4234, 26, 38, 43, 573, 146, 26, 38, 43, 465, 3, 43], [504, 4, 465, 95, 234, 665, 4235, 4, 573, 9, 28], [6, 2153, 5, 310, 4236, 4, 487, 3, 1270], [], [37, 14, 2, 99, 11, 1, 359, 82, 65, 12, 4237, 94, 25], [2079, 1681, 3, 1, 106, 82, 6, 245, 1389, 1975], [18, 9, 437, 692, 12, 1908, 31, 69, 84, 16, 1389], [4238, 550, 2152, 425, 14, 19, 89, 23, 1], [4239, 4, 1, 106, 82, 247, 11, 7, 1266, 12, 514], [4240, 4241, 434, 165, 12, 58, 2101, 152, 16, 5], [395, 476, 237, 39, 111, 70, 3, 97, 110, 414, 1], [106, 82, 274, 8, 1637, 17, 675, 51, 247, 437], [81, 487, 41, 36, 76, 1347, 819, 12, 806, 4242], [2085, 230, 73, 4243, 87, 259, 4, 306, 121, 205], [1369, 131, 1, 359, 3, 78, 121, 461, 1000, 49, 29], [204, 6, 57, 155, 819, 12, 653, 2154, 37, 2, 208, 2, 47, 11], [8, 10, 93, 482, 4, 1, 82, 4, 336, 300, 3, 154, 476, 624], [300, 3, 31, 11, 137, 42, 14, 365, 54, 705, 14, 4244, 4245], [44, 4246, 11, 38, 102, 1, 69, 1765, 454, 6, 13, 3, 14, 9, 2], [897, 11, 6, 22], [], [116, 1, 4247, 2072, 3, 2058, 4, 1, 255, 307, 3], [8, 779, 4, 10, 4248, 21, 860, 3, 1, 4249, 482, 3, 1, 627], [987, 20, 52, 575, 2, 7, 52, 567, 3, 4250, 3, 197], [10, 4251, 288, 34, 4252, 4253, 83, 15, 9, 2, 142, 10], [136, 1963, 3, 2071, 83, 62, 35, 1, 645, 2, 12, 5, 134, 3], [4254, 383], [], [2, 4255, 5, 36, 92, 4256, 2, 56, 77, 811, 141, 274], [363, 4257, 40, 1, 98, 3, 4258, 83, 2, 39, 23], [48, 1, 170, 94, 1, 74, 196, 2, 12, 10, 1410, 8, 31], [88, 3, 1, 121, 88, 1494, 17, 1, 228, 8, 10, 328], [], [3, 56, 39, 5, 159, 1837, 69, 14, 2, 1038, 1, 352], [4, 1, 196, 2, 101, 1, 225, 2093, 20, 309, 29, 12, 2155], [48, 34, 4259], [], [15, 9, 2, 382, 544, 92, 49, 1684, 6, 1341], [], [493, 7, 5, 295, 4260, 3, 23, 5, 1134, 169, 8, 1, 655], [4, 21, 7, 1, 19, 50, 2, 12, 1, 295, 557, 8, 10, 328], [37, 103, 116, 32, 10, 4261, 4262, 16, 1, 4263, 4, 1], [74, 196, 7, 5, 4264, 4265, 2, 1883, 10, 399, 410, 122, 180], [1406, 33, 6, 671, 11], [], [5, 349, 76, 39, 34, 10, 185, 14, 2, 2135, 94, 1, 1730], [16, 163, 15, 481, 2, 1384, 1, 1066, 1773, 4, 1, 98], [4266, 5, 392, 4267, 6, 1733, 2, 4268, 86, 1], [225, 877, 3, 64, 6, 1, 19, 50, 2, 7, 1399, 6, 272, 11], [12, 58, 590, 4269, 3, 4270, 2, 28, 1101, 318, 9], [1, 98, 12, 84, 1223, 494, 11, 6, 1405, 215, 576, 8], [45, 308, 114, 6, 1722, 68, 2063], [], [56, 14, 2, 178, 3, 1031, 11, 1176, 5, 1981, 8, 1, 245], [876, 4, 1, 2088, 1, 69, 2, 12, 1154, 323, 1], [225, 670, 194, 2155, 64, 3, 260, 1, 877, 17, 5, 4271], [2, 7, 8, 1, 161, 4272, 37, 1, 98, 76, 15, 9, 2], [4273, 4274], [], [2, 44, 223, 626, 45, 4275, 852, 14, 29, 39, 94], [13, 52, 4276, 2, 190, 6, 1032, 1, 227, 2, 12, 95, 6, 4277, 23], [1, 557, 3, 4278, 24, 60, 5, 717, 18, 2, 12, 1443, 31], [36, 69, 1, 228, 20, 4, 9, 2156, 209, 9, 104], [95, 23, 1, 500], [], [22, 137, 389, 102, 32, 10, 785, 317, 1, 36, 1408, 20], [662, 35, 13, 31, 553, 13, 2, 124, 5, 1417, 930, 8, 1, 161, 15], [49, 17, 1, 557, 3, 110, 6, 2157, 34, 1, 524, 4, 1], [50, 24, 39, 31, 88, 35, 13, 3, 24, 117, 24, 2, 12], [334, 6, 980, 141, 45, 4279, 817, 16, 10, 557, 3], [15, 1, 119, 19, 283, 16, 1, 4280, 79, 51, 59, 2158, 31], [206, 29, 180, 174, 122, 30, 13, 14, 11, 992, 30, 10, 88], [2, 12, 6, 4281, 8, 1, 161, 17, 10, 185, 2, 44, 626, 1, 1040, 67], [905, 4282, 6, 889, 11, 11, 7, 5, 647, 69, 131, 1, 980, 8], [1, 501, 2, 120, 21, 93, 2157], [], [18, 15, 93, 1, 240, 7, 2158, 3, 1413, 79, 1, 2141], [157, 992, 30, 13, 1, 162, 158, 250, 30, 10, 127], [2, 101, 83, 8, 1, 119, 330, 104, 3, 1921, 2, 28, 223], [4283], [], [], [], [], [4284], [], [], [2, 28, 223, 281, 22, 4, 1, 4285, 3, 621, 9, 533], [17, 19, 319, 3, 21, 19, 2, 7, 33, 565, 4286, 8, 1], [524, 18, 1021, 3, 8, 54, 2005, 1010, 16, 54, 1937], [19, 2, 1373, 6, 1, 50, 14, 11, 1170, 3, 4287, 368], [4288, 102, 2, 89, 3, 78, 2, 887, 83, 6, 214, 15, 1, 921], [70, 2, 7, 4289, 6, 272, 146, 2, 12, 2048, 31, 2159, 4290], [307, 3, 117, 583, 4, 307, 117, 1409, 4, 307, 3], [117, 583, 4, 1409, 56, 471, 4, 4291, 1, 557], [2, 12, 1413, 49, 79, 37, 14, 6, 220, 448, 17, 49, 3, 78, 2], [39, 6, 214, 15, 59, 4292, 2, 101, 9, 1, 583, 88, 7], [1417, 123, 14, 546, 14, 1, 4293, 88, 4, 5, 380, 34], [1173], [], [14, 2, 470, 23, 5, 384, 465, 996, 79, 1, 1088, 4], [133, 1, 4294, 1608, 168, 2070, 24, 219, 2, 7], [81, 319, 17, 4295, 698, 1, 1386, 1164], [4, 125, 3, 112, 51, 7, 1044, 4296, 4, 5, 361, 915], [580, 3, 168, 73, 3, 73, 4297, 21, 531, 13, 52, 181], [15, 90, 1, 4298, 4, 112, 3, 125, 168, 361, 3, 361], [3, 37, 107, 1, 855, 4, 1, 147, 195, 1, 139, 212, 29, 63], [6, 4299, 86, 2118, 15, 93, 5, 1882, 642, 4300, 79], [1, 201, 5, 642, 95, 391, 56, 3, 24, 78, 5, 4301, 2020], [195, 1, 1395, 139, 1, 1167, 4, 104, 9, 12, 1512, 1], [147, 12, 134, 318, 661, 16, 1, 147, 12, 741, 6, 296, 11], [334, 292, 3, 250, 8, 1, 793, 3, 168, 284, 4302, 3, 73], [164, 32, 507, 4, 1, 224, 12, 317, 1, 918, 4, 1, 350], [351, 361, 3, 361, 12, 4303, 169, 6, 388, 1046, 4], [104, 15, 93, 41, 19, 92, 2, 382, 1, 147, 164, 3, 52], [275, 1349, 584, 35, 1, 792, 5, 326, 2160, 2161, 17], [5, 1125, 677, 3, 56, 3, 24, 1121, 5, 2162, 1229, 15], [31, 19, 11, 12, 16, 5, 36, 215, 4304, 73, 1492, 70], [18, 11, 962, 4305, 6, 68, 4306, 164, 677, 2, 728, 40, 21], [4307, 48, 4, 68, 541, 3, 963, 9, 1, 369, 4, 1, 4308], [4309, 7, 337, 1, 201, 12, 150, 6, 424, 17, 31, 113, 6, 1, 147], [84, 14, 8, 75, 136, 19, 1, 224, 460, 1, 201, 52, 4310], [16, 2, 886, 10, 1438, 914, 641, 2, 110, 6, 4311], [10, 452, 361, 3, 361, 89, 1, 918, 157, 212, 1], [583, 31, 63, 584, 3, 1, 1110, 31, 7, 43, 549, 5], [245, 1630, 35, 68, 4312, 81, 361, 212, 1, 308, 4313, 4, 5], [1335, 579, 168, 866], [], [2, 382, 52, 695, 3, 186, 35, 1, 19, 50, 176, 123], [1, 139, 7, 43, 549, 426, 802, 823, 11, 7, 1930, 149], [3, 62, 4, 1, 358, 439, 825, 3, 794, 1, 362], [74, 350, 2130, 11, 7, 5, 701, 4314, 164, 3, 4315, 3], [499, 823, 11, 168, 735, 6, 5, 2161, 4316, 146, 459, 40], [1, 792, 257, 1, 310, 4317, 4, 1, 147, 164, 3, 584, 1], [1418, 66, 13, 20, 4, 5, 946, 1414, 535, 3, 32, 1, 507, 4], [258, 9, 2, 44, 99, 15, 90, 7, 1, 2163, 167, 2126], [9, 803, 306, 1374, 415, 23, 45, 499, 1344, 113, 11], [7, 1, 119, 761, 167, 9, 31, 1313, 23, 501, 1256, 53, 23, 1], [4318, 8, 1965, 660, 51, 60, 59, 574, 8, 5, 4319], [642], [], [1, 50, 7, 418, 23, 5, 1401, 579, 1, 312, 2021, 122], [6, 1, 499, 793, 6, 920, 34, 5, 1212, 266, 792, 141, 1], [4320, 139, 26, 20, 43, 4321, 3, 43, 4322, 16, 33, 5, 715, 4], [615, 7, 1285, 95, 5, 688, 4323, 4324, 292, 3, 250, 60, 5], [4325, 554, 3, 620, 9, 1, 2164, 312, 7, 81, 405], [3, 570, 3, 198, 1, 2165, 146, 1, 578, 668, 4326, 7], [5, 354, 2166, 4, 896, 1210, 106, 1, 4327, 139, 26, 7, 5], [344, 4, 4328, 8, 10, 185, 3, 2, 463, 9, 2, 7, 554], [52, 546, 1, 908, 649, 13, 4, 10, 95, 789, 4], [4329, 3, 30, 9, 2, 357, 1, 184, 6, 42, 73, 4330], [131, 11, 38, 56], [], [191, 122, 64, 1, 1335, 659, 2, 207, 5, 946, 4331, 3, 47, 5], [69, 60, 5, 310, 74, 4332, 220, 4333, 3, 1885, 64, 34], [1, 139, 3, 918, 1499, 79, 41, 709, 2167, 551, 1], [322, 4, 68, 901, 7, 37, 4334, 9, 2, 548, 3, 565, 83], [73, 4335, 35, 1, 50, 176, 123, 13, 70, 2, 47, 9], [368, 433, 57, 2, 12, 494, 6, 42, 5, 1414, 774, 4, 1098, 7, 405], [520, 94, 13, 24, 2, 47, 1, 69, 7, 332, 5, 2143], [1419, 60, 325, 189, 22, 389, 5, 1419, 14, 275, 14, 4336, 239], [17, 68, 480, 858, 405, 520, 3, 4337, 68, 241, 2168], [1172, 68, 134, 4338, 60, 4339, 4340, 4341, 3, 218], [3, 68, 4342, 127, 4343, 15, 22, 23, 381, 199, 4, 68, 703], [609, 68, 111, 7, 4344, 3, 4345, 17, 2169, 4346], [3, 5, 4347, 2166, 4348, 11, 103, 3, 26, 2, 44, 99], [1, 480, 1926, 4, 68, 1868, 534, 618, 3, 218, 14, 11], [413], [], [14, 2, 412, 15, 21, 4349, 4350, 1043, 94, 13, 2, 77], [5, 4351, 23, 10, 1213, 14, 219, 5, 4352, 12, 1147, 26, 2, 190, 6], [4353, 11, 122, 17, 10, 88, 18, 8, 5, 145, 11, 580, 3, 180], [1599, 39, 117, 40, 10, 4354, 2, 260, 15, 21, 3, 363], [252, 4355, 11, 7, 1120, 467, 62, 4, 10, 88, 17, 5], [2040, 4356, 2, 204, 3, 2, 47, 9, 2, 12, 1384, 1, 4357], [4, 117, 1353, 1419, 9, 178, 238, 254, 13, 68, 1752, 127], [20, 2024, 23, 45, 1710, 68, 534, 7, 32, 4358, 17], [1140, 3, 68, 326, 2169, 2168, 1548, 17, 54, 4359, 2170], [20, 4360, 35, 13, 8, 5, 145, 10, 88, 7, 23, 1, 240, 3], [2, 12, 1081, 5, 1449, 248, 83, 3, 59, 2171, 18, 2, 7], [81, 23, 1, 119, 579, 3, 2, 47, 49, 1184, 56, 14, 197, 14, 2], [382, 4361, 4, 49, 63, 6, 42, 1043, 103, 3, 26, 8, 1], [1343, 104, 138, 1, 4362, 875, 4, 536, 167], [], [2, 231, 639, 1, 344, 4, 2156, 4363, 9, 428, 79], [1, 82, 1, 164, 1344, 139, 1, 4364, 358, 1, 896], [2138, 312, 1, 4365, 579, 1043, 17, 59, 939, 657, 1285], [2171, 1, 1468, 4366, 176, 167, 4, 1, 4367], [660, 1, 1214, 184, 9, 4368, 31, 67, 4369, 32, 1897, 6, 54], [4370, 1225, 2, 413, 23, 5, 300, 237, 3, 26, 7, 1, 119], [164, 147, 5, 36, 375, 5, 36, 2172, 1, 119, 1928, 312, 1], [119, 1277, 184, 3, 1, 119, 954, 4, 4371, 4372, 388, 8], [3, 62, 138, 1, 167, 1775, 3, 1, 164, 1418, 3, 8, 1, 1027], [139, 2, 47, 5, 2128, 362, 331, 60, 5, 326, 153, 224], [], [37, 2, 378, 907, 284, 3, 70, 8, 105, 1281, 4, 5], [476, 237, 53, 73, 1120, 23, 40, 1, 673, 4, 1, 201, 67, 666], [656, 17, 5, 143, 4373, 1, 147, 574, 375, 3, 2172], [8, 1, 1027, 139, 3, 1, 258, 4, 1, 155, 201, 4374, 122, 15], [93, 73, 131, 1387, 2173, 237, 1936, 1, 310, 164, 630, 2160, 4], [1, 147, 12, 150, 6, 4375, 525, 5, 4376, 203, 4, 1, 1395], [1546, 24, 2, 382, 163, 73, 16, 1, 1043, 4377, 4], [4378, 12, 661, 3, 1, 164, 579, 338, 16, 68, 4379, 167], [4380, 3, 4381, 63, 2174, 3, 56, 11, 7, 4382, 17], [74, 5, 4383, 490, 4384, 13, 539, 74, 1004, 284, 3, 70], [39, 912, 48, 6, 1, 802, 823, 1, 496, 4, 1619, 257], [106, 1, 2145, 4, 1, 4385, 139, 3, 2, 44, 99, 54, 1878], [786, 4, 2167, 1254, 74, 26, 20, 4386, 4, 4387, 198, 1], [312, 2165, 17, 1331, 788, 356, 62, 18, 1, 1913, 4388], [4, 9, 896, 4389, 32, 4390, 106, 1, 2164, 571, 7, 81], [4391], [], [2, 135, 66, 13, 6, 99, 87, 109, 1404, 4, 371, 258, 738, 5], [233, 4392, 1922, 81, 540, 13, 8, 1, 524, 4, 1], [50, 18, 2, 47, 304, 405, 8, 201, 53, 139, 53, 312, 1, 167], [2170, 23, 1, 1418, 435, 2113, 9, 258, 7, 33, 2096, 5], [1912, 4393, 12, 353, 8, 1, 312, 3, 1, 578, 12, 2102], [30, 1, 579, 2, 431, 2, 47, 41, 149, 685, 4394, 66], [35, 21, 4395, 18, 11, 442, 584, 14, 2, 135, 15, 11, 3, 2], [357, 9, 10, 457, 12, 58, 4396, 3, 9, 1, 149, 685, 7], [1015, 5, 1098, 1, 350, 8, 1, 139, 20, 2163, 266, 3, 63], [6, 13, 6, 4397, 52, 36], [], [194, 2, 463, 9, 1, 1198, 1027, 4398, 4, 1, 147], [12, 714, 9, 5, 4399, 5, 4400, 12, 353, 8, 1, 4401, 2], [47, 21, 574, 375, 16, 5, 193, 130, 2, 412, 4402, 15, 21], [358, 9, 7, 388, 79, 1, 125, 3, 24, 2, 970, 9], [54, 2175, 7, 687, 381, 1, 224, 53, 1, 787, 1459, 7], [847, 195, 1, 147, 67, 1375, 771, 15, 90, 2, 142, 11, 6, 42], [1, 224, 18, 26, 38, 181, 6, 1435, 13, 6, 377, 9, 57, 2], [332, 47, 7, 1, 4403, 4, 54, 1940, 787, 847, 52, 433, 6], [1, 201], [], [1, 162, 168, 2053, 5, 490, 615, 110, 6, 930, 8, 4404], [4405, 30, 1, 988, 3, 1, 4406, 74, 1004, 8, 1, 184], [1358, 8, 561, 30, 1, 818, 4, 1, 312, 39, 5, 4407, 3], [4408, 551, 59, 2174, 529, 1, 82, 7, 298, 298], [11, 72, 42, 510, 6, 639, 1, 1394, 4, 11, 32, 1, 529, 4], [65, 1, 4409, 4, 1718, 1, 784, 4, 4410, 1, 2017, 4, 4411], [1, 672, 9, 1770, 1, 4412, 4, 75, 1441, 32, 9, 7, 79], [14, 1, 162, 4413, 1, 912, 1004, 168, 73, 483], [933, 92, 10, 127, 3, 1, 490, 4, 1, 184, 73, 536, 15], [93, 31, 40, 31, 467, 31, 116, 1, 121, 1, 74, 4414, 4], [1, 1231, 1310, 317, 34, 358, 1, 1393, 292, 6, 5], [2149, 615, 2, 47, 1, 149, 1008, 543, 4, 1, 2175, 1417], [94, 13, 8, 117, 145, 1, 362, 350, 435, 20, 866, 32], [1132, 7, 2019, 1351, 1, 139, 7, 340, 149], [], [5, 807, 4, 21, 105, 162, 39, 23, 13, 1, 490, 9, 1662], [6, 10, 4415, 3, 1, 801, 2, 77, 8, 554, 4416, 13, 2], [548, 3, 5, 2038, 2039, 1191, 13, 24, 60, 5, 164, 630, 4417], [8, 1, 139, 353, 1, 818, 4, 1, 147, 2, 174, 152, 1, 50, 6], [889, 83, 2, 77, 2037, 3, 1739, 4, 884, 1, 1016], [865, 14, 2, 178, 2176, 3, 1623, 2, 47, 70, 1, 405, 69], [35, 1, 4418, 26, 7, 43, 1526, 56, 9, 11, 7, 5, 405], [69, 141, 1, 164, 578, 4, 1, 312, 11, 7, 5, 123, 69, 1], [1365, 4, 5, 4419, 130, 53, 11, 137, 42, 4420, 3, 1679], [4421, 48, 30, 11, 11, 63, 149, 141, 1, 4422], [628, 164, 578, 3, 11, 7, 1161, 4423, 66, 24, 2, 77, 2], [7, 4424, 18, 5, 4425, 925, 4, 899, 746, 8, 9, 473], [3, 2148, 642, 4426, 13, 215, 2, 4427, 35, 1, 524], [], [], [], [], [4428], [], [], [37, 2, 39, 111, 16, 5, 134, 19, 2, 85, 28, 58, 2043, 35], [1, 50, 1, 1386, 1164, 4, 1, 307, 3, 815, 7], [890, 1, 147, 174, 797, 70, 1, 139, 426, 2, 2139, 17], [1777, 846, 1, 1611, 4429, 4, 1, 808, 4430, 3], [4431, 1, 157, 4432, 1065, 35, 1, 921, 15, 93, 2, 47, 70], [1, 308, 530, 4, 971, 1, 1764, 4, 1904, 386], [59, 100, 714, 3, 288, 3, 315, 39, 158, 78, 1], [2173, 2159, 7, 15, 4433, 2, 4434, 1615, 2, 110, 6, 1761], [75, 136, 475, 3, 679, 1629, 1, 583, 88, 242, 111], [6, 1, 906, 415, 1, 112, 3, 125, 4435, 361, 3, 361], [24, 1, 155, 969, 4, 1, 222, 39, 123, 13, 52, 695], [56, 2, 4436, 1, 522, 48], [], [2, 47, 31, 36, 69, 9, 63, 279, 6, 13, 2, 120, 2, 28, 281], [22, 9, 78, 2, 296, 62, 92, 10, 698, 442, 52, 508, 1602], [1603, 12, 374, 195, 1, 221, 319, 14, 11, 63, 6, 13], [60, 5, 1604, 14, 2, 580, 2, 288, 70, 195, 9, 193, 78], [97, 2076, 1, 222, 18, 56, 61, 306, 452, 353, 6], [42, 1, 1288, 4437, 4, 61, 881, 1390, 1, 243, 15, 1, 777], [173, 420, 3, 97, 4438, 1135, 64, 1, 222, 111, 4439], [3, 661, 254, 1, 243, 40, 51, 97, 12, 4440, 432], [238, 92, 9, 2, 63, 6, 99, 4441, 16, 5, 145, 18, 27, 288], [60, 5, 1746], [], [24, 2, 382, 1, 50, 3, 47, 66, 13, 70, 1, 155, 679], [222, 10, 1846, 10, 1325, 238, 14, 2, 12, 166, 49, 2, 174], [152, 1, 69, 52, 4442, 3, 186, 48, 35, 10, 874, 16, 341], [1283, 2, 4443, 555, 24, 2, 442, 4444, 4445, 13, 7], [10, 155, 1151, 70, 370, 14, 11, 12, 58, 2, 129, 28, 669], [26, 3, 1, 265, 69, 28, 58, 5, 585], [], [3, 144, 33, 370, 1, 69, 12, 632, 30, 1, 499, 988], [655, 4, 1, 222, 11, 12, 150, 6, 424, 70, 8, 1], [802, 793, 141, 1, 759, 146, 22, 47, 11, 9, 2125, 22, 1], [1288, 658, 30, 10, 36, 387, 6, 1, 352, 4, 1, 74], [196, 34, 51, 1, 98, 12, 755, 10, 50], [], [16, 5, 19, 10, 1483, 89, 4446, 158, 2, 174, 64, 3, 39], [86, 1, 855, 103, 1567, 333, 10, 1036, 7, 81], [916, 3, 218, 1834, 4447, 2, 47, 1, 4448, 4449, 4450], [23, 1, 239, 40, 1, 243, 2, 101, 1, 1241, 7, 206, 6, 125, 3], [176, 15, 1, 4451, 47, 1, 756, 7, 180, 336, 1143, 704, 2], [207, 449, 762, 3, 1, 4452, 4, 1142, 2, 347, 2, 77, 37], [2176, 3, 800, 24, 2, 4453, 280, 1776, 461, 3, 420, 1], [243, 23, 22, 22, 151, 1, 424, 2, 4454, 3, 4455, 3, 56, 2, 316], [447, 22, 1, 268], [], [2, 151, 27, 46, 116, 5, 694, 9, 32, 21, 115, 42, 340], [612, 6, 22, 6, 13, 1, 31, 612, 69, 38, 9, 2, 316, 103], [6, 112, 8, 21, 155, 679, 221, 176, 34, 449, 1239, 460], [3, 447, 22, 59, 143, 4456], [], [27, 135, 15, 1, 177, 65, 43, 2, 231, 829, 22, 6, 377], [11, 456, 11, 14, 5, 1377, 53, 5, 4457, 208, 2, 1986, 11, 8, 1], [1151, 2122, 2, 28, 58, 4458, 35, 1, 4459, 4, 75], [472, 212, 2, 28, 4460, 21, 4461, 1580, 10, 4462, 4, 68], [664, 14, 5, 245, 4463, 4, 951, 6, 4464, 68, 407, 3, 1096], [11, 14, 5, 268, 57, 187, 22, 120, 4, 11], [], [27, 142, 64, 25, 718, 3, 110, 8, 25, 155, 2129, 841, 6, 1597], [17, 11, 4465, 35, 1, 379, 4, 1, 4466, 26, 7, 5, 2162], [1394, 24, 1422, 110, 6, 4467, 3, 1037, 6, 4468, 35, 1], [4469, 2, 142, 10, 127, 152, 1, 19, 71, 67, 113, 3, 135], [123, 15, 25, 4470, 29, 20, 8, 1, 161, 3, 36, 1348, 4], [535, 2042, 92, 49, 1, 177, 65, 63, 4471, 8, 1], [4472, 4, 75, 1536, 1, 217, 7, 176, 510, 15, 1, 173], [4, 25, 837, 1, 4473, 1, 419, 2132, 16, 25, 380, 1], [315, 14, 191, 14, 2, 320, 20, 584], [], [1, 217, 178, 64, 17, 5, 4474, 57, 5, 1540, 11, 38, 22, 4475, 33], [5, 4476, 4, 4477, 27, 46, 903, 25, 88, 23, 1, 19], [71, 67, 409], [], [22, 246, 160, 377, 11], [], [118], [], [2, 76, 33], [], [1, 19, 71, 204, 6, 126, 146, 91, 1, 228, 27, 46], [27, 261, 31, 3, 527, 79, 25, 718, 4478, 6, 294, 22, 1, 664], [2, 1216, 377, 11, 83, 3, 144], [], [25, 457, 250, 17, 5, 4479, 4480, 35, 1, 2065, 74, 226], [35, 1, 36, 239, 24, 27, 204, 79, 1, 88, 727, 25], [718, 3, 2, 47, 27, 7, 176, 15, 41, 216, 1551, 4481, 23, 25], [1829], [], [1, 177, 65, 292, 39, 6, 1, 290, 3, 1031, 1, 226], [1, 4482, 67, 279, 27, 46, 1, 171, 4483, 448, 6], [99, 727, 62, 25, 88, 16, 5, 2177], [], [2, 376, 4484, 87, 11, 2178, 160, 5, 1993, 6, 31, 46, 1, 419], [102, 502, 55, 200, 631], [], [4485, 4, 4486, 15, 1, 4487, 46, 1, 171], [], [11, 67, 5, 842, 69, 46, 1, 177, 65, 18, 2, 509, 246, 160], [151, 1, 505, 1030, 4, 59, 226, 137, 2, 28, 49], [], [1, 19, 71, 347, 24, 194, 509, 33], [], [146, 107, 22, 332, 200, 49, 46, 1, 177, 65], [], [1, 19, 71, 132, 25, 88, 6, 25, 185, 27, 527, 60, 31, 165], [7, 576, 6, 1304, 691, 4, 54, 366, 9, 4488, 108, 29, 20, 132], [34, 10, 328, 40, 80, 78, 2, 378, 34, 19, 27, 412], [123, 1, 221, 2, 376, 864, 87, 11, 2178, 160, 32, 253, 21, 221, 3, 22], [3, 1, 1424, 4, 306, 125, 38, 100, 181, 16, 10, 390, 107, 2], [284, 213, 5, 19, 50, 53, 5, 450, 4, 5, 19, 50, 53, 38, 11, 32], [95, 5, 585, 29, 208, 258, 38, 5, 585, 5, 4489, 1011, 585, 15], [299, 18, 2, 189, 160, 2107, 117, 9, 1582, 160, 4490, 11, 67, 1624, 3], [146, 107, 1, 585, 150, 30, 2, 85, 214, 15, 9, 50, 87], [26, 38, 31], [], [27, 363, 64, 1, 290, 467, 3, 755, 11, 1311, 164, 86], [1, 243, 34, 1, 724, 55, 256, 108, 26, 8, 1, 618], [104, 4, 1, 290, 7, 1, 50, 512, 156, 2179, 4491, 3], [1498, 5, 69, 4, 708, 4492, 608, 3, 4493, 4494], [1099, 1051, 6, 1, 876, 16, 2, 132, 62, 10, 88, 3, 77, 1, 902], [4, 11, 3, 17, 421, 1348, 3, 4495, 35, 1, 608, 3, 4496, 4], [824, 3, 1256, 35, 1, 777, 873, 3, 31, 902, 1153, 4497], [], [1, 19, 71, 132, 1, 290, 48, 23, 1, 874, 3, 242, 25, 88], [198, 1, 4498, 902, 11, 67, 32, 277, 56, 27, 46, 1, 268, 2], [281, 22, 7, 740, 2, 376, 1406, 6, 28, 887, 22, 62, 103, 8, 1], [490, 27, 142, 64, 1, 290, 3, 8, 54, 550, 1553, 55], [580, 6, 1, 634, 221], [], [27, 39, 34, 1, 311, 17, 126, 3, 1511, 1, 217, 23, 17, 25], [732, 1, 177, 65, 135, 34, 25, 113, 3, 17, 5, 233], [4499, 281, 108, 27, 7, 1121, 30, 4500, 15, 51, 27], [411, 2061, 2, 320, 108, 418, 8, 1, 309, 733, 1832], [280, 112], [], [2, 4501, 5, 4502, 17, 1, 217, 27, 76, 1, 1321, 5, 4503, 1377], [16, 10, 136, 203, 2, 7, 1622, 6, 150, 6, 5, 1316, 1, 268, 7], [37, 4504, 3, 612, 1, 447, 37, 4505, 3, 4506, 2], [257, 1416, 159, 4, 1, 112, 462, 66, 11, 2, 393, 6, 220], [282, 125, 3, 99, 1, 19, 71, 70, 2, 7, 281, 27, 7, 8, 1], [222, 3, 274, 23, 895, 1876, 8, 1, 385, 2, 89, 64, 6, 108], [1, 222, 247, 7, 991, 2, 412, 16, 5, 193, 15, 1], [19, 50, 3, 132, 62, 10, 88, 3, 553, 1, 240, 15, 9, 1], [2179, 4507, 176, 774, 1170, 60, 5, 4508, 4509, 40, 1], [615, 68, 4510, 739, 13, 1226, 3, 2, 12, 5, 345], [1506, 4, 1, 1338, 307, 78, 2, 1203, 6, 42, 2154, 6], [4511, 2, 39, 111, 86, 1, 724, 1, 19, 71, 417, 13], [8, 1, 634, 221, 27, 7, 286, 30, 1, 385, 27, 12, 5, 295], [4512, 106, 31, 408, 3, 5, 4513, 106, 1, 121, 27, 411, 78], [27, 47, 13, 3, 321, 13, 54, 4514, 6, 4515, 2, 376, 2026, 4516], [46, 27, 17, 9, 69, 8, 26], [], [18, 38, 11, 33, 41, 4517, 2, 46, 187, 22, 332, 406, 86], [19], [], [332, 3, 1596, 2, 187, 3, 27, 135, 1575, 34, 10, 127, 27], [347, 25, 457, 1391, 66, 1, 221, 2, 95, 523, 216, 54], [756, 27, 46, 2, 151, 249, 22, 39, 3, 11, 67, 4518, 280, 4, 22], [26, 67, 41, 4519, 103, 87, 22, 729, 515, 6, 2180, 2, 729, 4520, 22], [21, 19, 319, 64, 6, 1, 4521, 2177, 3, 32, 87, 22, 729], [4522, 10, 979, 22, 56], [], [2, 4523, 1216, 4524, 24, 1, 305, 654, 4, 25, 598], [3, 27, 1687, 3, 89, 23, 48, 1, 724, 2, 207, 1, 243, 4], [1, 222, 4525, 565, 83, 8, 5, 611, 3, 142, 64, 5, 1110], [623, 57, 7, 27, 253, 6, 187, 92, 2180, 19, 24, 194], [2, 7, 649, 40, 54, 1789, 9, 2, 12, 2119, 6, 2153], [2181, 1, 4526, 15, 154, 2, 135, 15, 10, 380, 3, 47], [9, 2, 44, 4527, 338, 9, 4528, 2, 174, 64, 3, 89, 48, 1], [855, 6, 294, 1, 19, 71], [], [14, 2, 142, 691, 4, 1, 4529, 4, 1, 243, 2, 207, 54, 4530], [945, 4531, 15, 1, 173, 3, 5, 4532, 3, 5, 636, 5, 1642, 4, 184], [1664, 123, 13, 14, 2, 420, 1, 243, 3, 30, 493, 39, 1], [322, 4, 391, 348, 743, 23, 1, 479, 1, 19, 71, 7], [33, 26, 2, 63, 6, 99, 5, 4533, 863, 335, 1179, 8], [5, 4534, 774, 4, 149, 3, 708, 16, 5, 145, 5, 335, 37], [1489, 9, 1, 874, 254, 17, 68, 875, 4, 1520, 7], [340, 758, 18, 21, 4535, 317, 14, 2, 4536, 10, 127], [1, 19, 50, 12, 210, 338, 16, 5, 2147, 672, 4, 303, 1], [356, 173, 4, 1, 222, 7, 991, 5, 4537, 4, 1, 4538, 12], [425, 238, 58, 862, 8], [], [2, 77, 54, 2077, 2004, 2, 267, 9, 252, 143, 12], [323, 3, 16, 1, 145, 44, 33, 1674, 57, 1, 143], [69, 129, 42, 14, 2, 178, 1063, 1, 243, 34, 1, 637, 420], [3, 1, 65, 4539, 353], [], [55, 135, 15, 264, 121, 24, 1047, 110, 6, 150, 188, 4540], [210, 62, 9, 114, 46, 2], [], [43, 1467, 43, 31, 188, 150, 62, 21, 114, 2, 7, 1554, 6, 272, 108], [103], [], [15, 9, 2, 1034, 15, 1, 928, 4, 4541, 2181, 2], [1385, 23, 629, 16, 1, 19, 71, 629, 16, 1, 343], [130, 81, 1741, 268, 3, 1, 1326, 3, 4542, 27], [72, 2090, 17, 108, 18, 2, 316, 687, 56, 6, 179, 9, 2, 85], [594, 5, 4543, 1, 19, 71, 317, 175, 237, 404, 3], [14, 4544, 4545, 56, 27, 188, 211, 580], [], [], [], [], [4546], [], [], [31, 231, 4547, 18, 702, 115, 27, 284, 1016, 11, 137, 42, 9, 27], [1194, 111, 34, 1, 255, 3, 250, 138, 1, 628, 4548, 4549], [4550, 4, 1, 287, 4, 4551, 429, 34, 1, 4552, 4, 1], [4553, 312, 53, 138, 1, 955, 4554, 1, 310, 4555], [1408, 4, 1, 4556, 299, 27, 137, 84, 56, 87, 2, 137, 671, 1], [4557, 42, 4558, 23, 41, 4559, 4560, 4561, 4562], [4563, 53, 455, 1, 2151, 4564, 4565, 4, 1, 4566, 287, 53, 107], [27, 220, 448, 34, 31, 4, 1, 647, 1023, 8, 51, 278, 91, 81], [278, 18, 17, 1, 4567, 4, 75, 136, 19, 1820, 3, 68, 4568], [1337, 4569, 34, 1, 4570, 4, 1, 472, 16, 2, 16, 10, 136], [203, 231, 120, 9, 59, 836, 307, 4, 800, 1077], [4571, 676, 3, 2182, 4572, 91, 206, 65, 67, 4573], [19, 2, 208, 16, 10, 136, 203, 27, 2, 151, 16, 1, 423, 12, 58], [4574, 138, 126, 134, 92, 1, 19, 50, 7, 124, 76], [18, 4575, 4, 1, 4576, 4, 978, 3, 47, 8, 1], [351, 1945, 4, 750, 95, 5, 690, 1577, 9, 85], [1791, 641, 111, 35, 3, 1774, 68, 4577, 8, 1, 173, 87, 9], [38, 37, 11, 1244, 16, 126, 6, 1024, 14, 219, 11, 20, 33, 37, 18, 6, 13], [1, 202, 38, 81, 149, 3, 1114, 38, 5, 326, 2032, 261, 15, 5], [395, 4578, 957, 40, 1, 390, 4, 25, 268, 3, 2, 28, 40, 13, 16], [10, 396, 154, 143, 74, 226, 2105, 56, 3, 421, 3], [1450, 3, 4579, 6, 1966, 9, 84, 78, 128, 3, 485, 12], [210, 1915, 3, 5, 2182, 1797, 81, 635, 23, 8, 1, 1012], [4, 65]]
整合所有功能
def load_corpus_time_machine(max_tokens=-1):
"""返回时光机器数据集的词元索引列表和词汇表。"""
lines = read_time_machine()
tokens = tokenize(lines, 'char')
vocab = Vocab(tokens)
# 因为时光机器数据集中的每个文本行不一定是一个句子或一个段落,
# 所以将所有文本行展平到一个列表中
corpus = [vocab[token] for line in tokens for token in line]
if max_tokens > 0:
corpus = corpus[:max_tokens]
return corpus, vocab
corpus, vocab = load_corpus_time_machine()
len(corpus), len(vocab)
(170580, 28)
corpus
[3,
9,
2,
1,
3,
5,
13,
2,
1,
13,
4,
15,
9,
5,
6,
2,
1,
21,
19,
1,
9,
...]
for i in range(20):
print(vocab.to_tokens(corpus[i]))
t
h
e
t
i
m
e
m
a
c
h
i
n
e
b
y